@angular/core 9.0.0-rc.7 → 9.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/core-testing.umd.js +18 -16
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core-testing.umd.min.js +7 -7
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +6386 -6384
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +182 -175
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +726 -734
- package/core.metadata.json +1 -1
- package/esm2015/core.externs.js +5 -5
- package/esm2015/core.js +17 -15
- package/esm2015/index.js +2 -2
- package/esm2015/public_api.js +2 -2
- package/esm2015/src/application_init.js +10 -2
- package/esm2015/src/application_module.js +6 -3
- package/esm2015/src/application_ref.js +7 -7
- package/esm2015/src/core.js +4 -4
- package/esm2015/src/core_private_export.js +7 -7
- package/esm2015/src/core_render3_private_export.js +2 -2
- package/esm2015/src/debug/debug_node.js +55 -16
- package/esm2015/src/di/injectable.js +1 -13
- package/esm2015/src/di/injector.js +12 -10
- package/esm2015/src/di/interface/provider.js +1 -1
- package/esm2015/src/di/r3_injector.js +5 -4
- package/esm2015/src/i18n/locale_data_api.js +22 -6
- package/esm2015/src/i18n/locale_en.js +16 -5
- package/esm2015/src/i18n/localization.js +7 -1
- package/esm2015/src/i18n/tokens.js +41 -1
- package/esm2015/src/interface/type.js +1 -1
- package/esm2015/src/metadata/ng_module.js +1 -1
- package/esm2015/src/render/api.js +4 -1
- package/esm2015/src/render3/assert.js +9 -1
- package/esm2015/src/render3/bindings.js +16 -5
- package/esm2015/src/render3/component.js +54 -25
- package/esm2015/src/render3/component_ref.js +28 -18
- package/esm2015/src/render3/definition.js +3 -1
- package/esm2015/src/render3/di.js +3 -4
- package/esm2015/src/render3/di_setup.js +5 -7
- package/esm2015/src/render3/errors.js +3 -1
- package/esm2015/src/render3/features/inherit_definition_feature.js +89 -52
- package/esm2015/src/render3/features/ng_onchanges_feature.js +2 -2
- package/esm2015/src/render3/global_utils_api.js +3 -3
- package/esm2015/src/render3/i18n.js +60 -56
- package/esm2015/src/render3/index.js +2 -2
- package/esm2015/src/render3/instructions/advance.js +10 -11
- package/esm2015/src/render3/instructions/all.js +4 -5
- package/esm2015/src/render3/instructions/attribute.js +12 -5
- package/esm2015/src/render3/instructions/attribute_interpolation.js +66 -14
- package/esm2015/src/render3/instructions/change_detection.js +8 -23
- package/esm2015/src/render3/instructions/class_map_interpolation.js +13 -12
- package/esm2015/src/render3/instructions/container.js +15 -12
- package/esm2015/src/render3/instructions/element.js +45 -132
- package/esm2015/src/render3/instructions/element_container.js +8 -10
- package/esm2015/src/render3/instructions/embedded_view.js +7 -7
- package/esm2015/src/render3/instructions/host_property.js +10 -7
- package/esm2015/src/render3/instructions/listener.js +18 -16
- package/esm2015/src/render3/instructions/lview_debug.js +160 -23
- package/esm2015/src/render3/instructions/projection.js +7 -5
- package/esm2015/src/render3/instructions/property.js +27 -6
- package/esm2015/src/render3/instructions/property_interpolation.js +42 -23
- package/esm2015/src/render3/instructions/shared.js +279 -244
- package/esm2015/src/render3/instructions/storage.js +6 -8
- package/esm2015/src/render3/instructions/style_prop_interpolation.js +12 -12
- package/esm2015/src/render3/instructions/styling.js +731 -475
- package/esm2015/src/render3/instructions/text.js +5 -5
- package/esm2015/src/render3/interfaces/definition.js +41 -1
- package/esm2015/src/render3/interfaces/node.js +160 -115
- package/esm2015/src/render3/interfaces/styling.js +183 -375
- package/esm2015/src/render3/interfaces/view.js +10 -2
- package/esm2015/src/render3/jit/environment.js +1 -3
- package/esm2015/src/render3/namespaces.js +17 -0
- package/esm2015/src/render3/node_manipulation.js +177 -57
- package/esm2015/src/render3/node_selector_matcher.js +128 -24
- package/esm2015/src/render3/node_util.js +12 -7
- package/esm2015/src/render3/pipe.js +10 -14
- package/esm2015/src/render3/pure_function.js +107 -42
- package/esm2015/src/render3/query.js +32 -26
- package/esm2015/src/render3/state.js +57 -185
- package/esm2015/src/render3/styling/class_differ.js +47 -0
- package/esm2015/src/render3/styling/static_styling.js +54 -0
- package/esm2015/src/render3/styling/style_binding_list.js +437 -0
- package/esm2015/src/render3/styling/styling_parser.js +336 -0
- package/esm2015/src/render3/tokens.js +2 -2
- package/esm2015/src/render3/util/attrs_utils.js +125 -2
- package/esm2015/src/render3/util/change_detection_utils.js +33 -0
- package/esm2015/src/render3/util/discovery_utils.js +146 -119
- package/esm2015/src/render3/util/global_utils.js +5 -5
- package/esm2015/src/render3/util/view_utils.js +6 -6
- package/esm2015/src/render3/view_engine_compatibility.js +16 -17
- package/esm2015/src/render3/view_ref.js +16 -13
- package/esm2015/src/sanitization/bypass.js +1 -1
- package/esm2015/src/sanitization/sanitization.js +20 -5
- package/esm2015/src/util/array_utils.js +240 -1
- package/esm2015/src/util/assert.js +37 -21
- package/esm2015/src/util/char_code.js +8 -0
- package/esm2015/src/util/iterable.js +4 -1
- package/esm2015/src/util/ng_dev_mode.js +1 -12
- package/esm2015/src/util/stringify.js +14 -1
- package/esm2015/src/version.js +1 -1
- package/esm2015/src/view/services.js +1 -1
- package/esm2015/testing/src/r3_test_bed.js +5 -1
- package/esm2015/testing/src/r3_test_bed_compiler.js +5 -13
- package/esm2015/testing/src/styling.js +103 -0
- package/esm5/core.js +17 -15
- package/esm5/src/application_init.js +10 -2
- package/esm5/src/application_module.js +6 -3
- package/esm5/src/application_ref.js +6 -6
- package/esm5/src/core.js +2 -2
- package/esm5/src/core_private_export.js +7 -7
- package/esm5/src/core_render3_private_export.js +2 -2
- package/esm5/src/debug/debug_node.js +39 -14
- package/esm5/src/di/injectable.js +1 -1
- package/esm5/src/di/injector.js +12 -12
- package/esm5/src/di/interface/provider.js +1 -1
- package/esm5/src/di/r3_injector.js +5 -4
- package/esm5/src/i18n/locale_data_api.js +20 -6
- package/esm5/src/i18n/locale_en.js +16 -5
- package/esm5/src/i18n/localization.js +6 -1
- package/esm5/src/i18n/tokens.js +40 -1
- package/esm5/src/interface/type.js +1 -1
- package/esm5/src/metadata/ng_module.js +1 -1
- package/esm5/src/render/api.js +4 -1
- package/esm5/src/render3/assert.js +4 -1
- package/esm5/src/render3/bindings.js +19 -2
- package/esm5/src/render3/component.js +47 -22
- package/esm5/src/render3/component_ref.js +20 -17
- package/esm5/src/render3/definition.js +3 -1
- package/esm5/src/render3/di.js +3 -4
- package/esm5/src/render3/di_setup.js +4 -5
- package/esm5/src/render3/errors.js +3 -1
- package/esm5/src/render3/features/inherit_definition_feature.js +74 -42
- package/esm5/src/render3/features/ng_onchanges_feature.js +1 -1
- package/esm5/src/render3/global_utils_api.js +3 -3
- package/esm5/src/render3/i18n.js +51 -51
- package/esm5/src/render3/index.js +2 -2
- package/esm5/src/render3/instructions/advance.js +9 -11
- package/esm5/src/render3/instructions/all.js +1 -2
- package/esm5/src/render3/instructions/attribute.js +9 -5
- package/esm5/src/render3/instructions/attribute_interpolation.js +49 -13
- package/esm5/src/render3/instructions/change_detection.js +8 -21
- package/esm5/src/render3/instructions/class_map_interpolation.js +13 -12
- package/esm5/src/render3/instructions/container.js +13 -12
- package/esm5/src/render3/instructions/element.js +41 -113
- package/esm5/src/render3/instructions/element_container.js +8 -9
- package/esm5/src/render3/instructions/embedded_view.js +7 -7
- package/esm5/src/render3/instructions/host_property.js +8 -7
- package/esm5/src/render3/instructions/listener.js +13 -13
- package/esm5/src/render3/instructions/lview_debug.js +56 -15
- package/esm5/src/render3/instructions/projection.js +6 -5
- package/esm5/src/render3/instructions/property.js +17 -6
- package/esm5/src/render3/instructions/property_interpolation.js +32 -24
- package/esm5/src/render3/instructions/shared.js +258 -210
- package/esm5/src/render3/instructions/storage.js +4 -6
- package/esm5/src/render3/instructions/style_prop_interpolation.js +12 -12
- package/esm5/src/render3/instructions/styling.js +685 -367
- package/esm5/src/render3/instructions/text.js +5 -5
- package/esm5/src/render3/interfaces/definition.js +1 -1
- package/esm5/src/render3/interfaces/node.js +49 -1
- package/esm5/src/render3/interfaces/styling.js +57 -1
- package/esm5/src/render3/interfaces/view.js +1 -1
- package/esm5/src/render3/jit/environment.js +1 -3
- package/esm5/src/render3/namespaces.js +10 -0
- package/esm5/src/render3/node_manipulation.js +167 -54
- package/esm5/src/render3/node_selector_matcher.js +113 -20
- package/esm5/src/render3/node_util.js +12 -7
- package/esm5/src/render3/pipe.js +10 -14
- package/esm5/src/render3/pure_function.js +103 -33
- package/esm5/src/render3/query.js +25 -24
- package/esm5/src/render3/state.js +37 -133
- package/esm5/src/render3/styling/class_differ.js +39 -0
- package/esm5/src/render3/styling/static_styling.js +42 -0
- package/esm5/src/render3/styling/style_binding_list.js +411 -0
- package/esm5/src/render3/styling/styling_parser.js +265 -0
- package/esm5/src/render3/tokens.js +2 -2
- package/esm5/src/render3/util/attrs_utils.js +117 -2
- package/esm5/src/render3/util/change_detection_utils.js +23 -0
- package/esm5/src/render3/util/discovery_utils.js +115 -99
- package/esm5/src/render3/util/global_utils.js +5 -5
- package/esm5/src/render3/util/view_utils.js +5 -5
- package/esm5/src/render3/view_engine_compatibility.js +37 -39
- package/esm5/src/render3/view_ref.js +14 -13
- package/esm5/src/sanitization/bypass.js +1 -1
- package/esm5/src/sanitization/sanitization.js +16 -5
- package/esm5/src/util/array_utils.js +240 -1
- package/esm5/src/util/assert.js +37 -21
- package/esm5/src/util/char_code.js +8 -0
- package/esm5/src/util/iterable.js +4 -1
- package/esm5/src/util/ng_dev_mode.js +1 -12
- package/esm5/src/util/stringify.js +14 -1
- package/esm5/src/version.js +1 -1
- package/esm5/src/view/services.js +1 -1
- package/esm5/testing/src/r3_test_bed.js +9 -1
- package/esm5/testing/src/r3_test_bed_compiler.js +9 -15
- package/esm5/testing/src/styling.js +82 -0
- package/fesm2015/core.js +6431 -7075
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +10 -14
- package/fesm2015/testing.js.map +1 -1
- package/fesm5/core.js +6354 -6361
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +18 -16
- package/fesm5/testing.js.map +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +46 -23
- package/testing/testing.d.ts +3 -5
- package/testing/testing.metadata.json +1 -1
- package/testing.d.ts +2 -2
- package/esm2015/global.js +0 -7
- package/esm2015/src/render3/instructions/alloc_host_vars.js +0 -80
- package/esm2015/src/render3/styling/bindings.js +0 -1248
- package/esm2015/src/render3/styling/map_based_bindings.js +0 -384
- package/esm2015/src/render3/styling/state.js +0 -135
- package/esm2015/src/render3/styling/styling_debug.js +0 -655
- package/esm2015/src/render3/util/styling_utils.js +0 -625
- package/esm5/global.js +0 -9
- package/esm5/src/render3/instructions/alloc_host_vars.js +0 -62
- package/esm5/src/render3/styling/bindings.js +0 -949
- package/esm5/src/render3/styling/map_based_bindings.js +0 -310
- package/esm5/src/render3/styling/state.js +0 -56
- package/esm5/src/render3/styling/styling_debug.js +0 -315
- package/esm5/src/render3/util/styling_utils.js +0 -378
package/bundles/core.umd.min.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v9.0.
|
|
3
|
-
* (c) 2010-
|
|
2
|
+
* @license Angular v9.0.1
|
|
3
|
+
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("rxjs"),require("rxjs/operators")):"function"==typeof define&&define.amd?define("@angular/core",["exports","rxjs","rxjs/operators"],t):t(((e=e||self).ng=e.ng||{},e.ng.core={}),e.rxjs,e.rxjs.operators)}(this,(function(e,t,n){"use strict";
|
|
@@ -55,7 +55,7 @@ function P(e){for(var t in e)if(e[t]===P)return t;throw Error("Could not find re
|
|
|
55
55
|
* Use of this source code is governed by an MIT-style license that can be
|
|
56
56
|
* found in the LICENSE file at https://angular.io/license
|
|
57
57
|
*/
|
|
58
|
-
_=e.InjectFlags||(e.InjectFlags={}))[_.Default=0]="Default",_[_.Host=1]="Host",_[_.Self=2]="Self",_[_.SkipSelf=4]="SkipSelf",_[_.Optional=8]="Optional";var
|
|
58
|
+
_=e.InjectFlags||(e.InjectFlags={}))[_.Default=0]="Default",_[_.Host=1]="Host",_[_.Self=2]="Self",_[_.SkipSelf=4]="SkipSelf",_[_.Optional=8]="Optional";var j=T;function D(e){return{factory:e.factory,providers:e.providers||[],imports:e.imports||[]}}function A(e){return S(e,e[V])||S(e,e[H])}function S(e,t){return t&&t.token===e?t:null}function R(e){return e&&(e.hasOwnProperty(F)||e.hasOwnProperty(L))?e[F]:null}var V=P({"ɵprov":P}),F=P({"ɵinj":P}),M=P({"ɵprovFallback":P}),H=P({ngInjectableDef:P}),L=P({ngInjectorDef:P});
|
|
59
59
|
/**
|
|
60
60
|
* @license
|
|
61
61
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -63,21 +63,21 @@ _=e.InjectFlags||(e.InjectFlags={}))[_.Default=0]="Default",_[_.Host=1]="Host",_
|
|
|
63
63
|
* Use of this source code is governed by an MIT-style license that can be
|
|
64
64
|
* found in the LICENSE file at https://angular.io/license
|
|
65
65
|
*/
|
|
66
|
-
function B(e){if("string"==typeof e)return e;if(Array.isArray(e))return"["+e.map(B).join(", ")+"]";if(null==e)return""+e;if(e.overriddenName)return""+e.overriddenName;if(e.name)return""+e.name;var t=e.toString();if(null==t)return""+t;var n=t.indexOf("\n");return-1===n?t:t.substring(0,n)}
|
|
66
|
+
function B(e){if("string"==typeof e)return e;if(Array.isArray(e))return"["+e.map(B).join(", ")+"]";if(null==e)return""+e;if(e.overriddenName)return""+e.overriddenName;if(e.name)return""+e.name;var t=e.toString();if(null==t)return""+t;var n=t.indexOf("\n");return-1===n?t:t.substring(0,n)}function U(e,t){return null==e||""===e?null===t?"":t:null==t||""===t?e:e+" "+t}
|
|
67
67
|
/**
|
|
68
68
|
* @license
|
|
69
69
|
* Copyright Google Inc. All Rights Reserved.
|
|
70
70
|
*
|
|
71
71
|
* Use of this source code is governed by an MIT-style license that can be
|
|
72
72
|
* found in the LICENSE file at https://angular.io/license
|
|
73
|
-
*/var
|
|
73
|
+
*/var Q=P({__forward_ref__:P});function z(e){return e.__forward_ref__=z,e.toString=function(){return B(this())},e}function q(e){return Z(e)?e():e}function Z(e){return"function"==typeof e&&e.hasOwnProperty(Q)&&e.__forward_ref__===z}
|
|
74
74
|
/**
|
|
75
75
|
* @license
|
|
76
76
|
* Copyright Google Inc. All Rights Reserved.
|
|
77
77
|
*
|
|
78
78
|
* Use of this source code is governed by an MIT-style license that can be
|
|
79
79
|
* found in the LICENSE file at https://angular.io/license
|
|
80
|
-
*/var
|
|
80
|
+
*/var W,K,G,J="undefined"!=typeof globalThis&&globalThis,Y="undefined"!=typeof window&&window,$="undefined"!=typeof self&&"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope&&self,X="undefined"!=typeof global&&global,ee=J||X||Y||$;
|
|
81
81
|
/**
|
|
82
82
|
* @license
|
|
83
83
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -85,28 +85,28 @@ function B(e){if("string"==typeof e)return e;if(Array.isArray(e))return"["+e.map
|
|
|
85
85
|
* Use of this source code is governed by an MIT-style license that can be
|
|
86
86
|
* found in the LICENSE file at https://angular.io/license
|
|
87
87
|
*/
|
|
88
|
-
function
|
|
88
|
+
function te(){var e=ee.ng;if(!e||!e.ɵcompilerFacade)throw new Error("Angular JIT compilation failed: '@angular/compiler' not loaded!\n - JIT compilation is discouraged for production use-cases! Consider AOT mode instead.\n - Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?\n - Alternatively provide the compiler with 'import \"@angular/compiler\";' before bootstrapping.");return e.ɵcompilerFacade}
|
|
89
89
|
/**
|
|
90
90
|
* @license
|
|
91
91
|
* Copyright Google Inc. All Rights Reserved.
|
|
92
92
|
*
|
|
93
93
|
* Use of this source code is governed by an MIT-style license that can be
|
|
94
94
|
* found in the LICENSE file at https://angular.io/license
|
|
95
|
-
*/!function(e){e[e.Token=0]="Token",e[e.Attribute=1]="Attribute",e[e.ChangeDetectorRef=2]="ChangeDetectorRef",e[e.Invalid=3]="Invalid"}(
|
|
95
|
+
*/!function(e){e[e.Token=0]="Token",e[e.Attribute=1]="Attribute",e[e.ChangeDetectorRef=2]="ChangeDetectorRef",e[e.Invalid=3]="Invalid"}(W||(W={})),function(e){e[e.Directive=0]="Directive",e[e.Component=1]="Component",e[e.Injectable=2]="Injectable",e[e.Pipe=3]="Pipe",e[e.NgModule=4]="NgModule"}(K||(K={})),function(e){e[e.Emulated=0]="Emulated",e[e.Native=1]="Native",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom"}(G||(G={}));var ne,re=P({"ɵcmp":P}),oe=P({"ɵdir":P}),ie=P({"ɵpipe":P}),ae=P({"ɵmod":P}),ue=P({"ɵloc":P}),se=P({"ɵfac":P}),le=P({__NG_ELEMENT_ID__:P}),ce=function(){function e(e,t){this._desc=e,this.ngMetadataName="InjectionToken",this.ɵprov=void 0,"number"==typeof t?this.__NG_ELEMENT_ID__=t:void 0!==t&&(this.ɵprov=T({token:this,providedIn:t.providedIn||"root",factory:t.factory}))}return e.prototype.toString=function(){return"InjectionToken "+this._desc},e}(),fe=new ce("INJECTOR",-1),de={},pe="ngTempTokenPath",he="ngTokenPath",ve=/\n/gm,ye="ɵ",ge="__source",me=P({provide:String,useValue:P}),_e=void 0;function we(e){var t=_e;return _e=e,t}function be(e){var t=ne;return ne=e,t}function Ce(t,n){if(void 0===n&&(n=e.InjectFlags.Default),void 0===_e)throw new Error("inject() must be called from an injection context");return null===_e?ke(t,void 0,n):_e.get(t,n&e.InjectFlags.Optional?null:void 0,n)}function Ie(t,n){return void 0===n&&(n=e.InjectFlags.Default),(ne||Ce)(q(t),n)}function xe(e){throw new Error("invalid")}var Ee=Ie;function ke(t,n,r){var o=A(t);if(o&&"root"==o.providedIn)return void 0===o.value?o.value=o.factory():o.value;if(r&e.InjectFlags.Optional)return null;if(void 0!==n)return n;throw new Error("Injector: NOT_FOUND ["+B(t)+"]")}function Oe(t){for(var n=[],r=0;r<t.length;r++){var o=q(t[r]);if(Array.isArray(o)){if(0===o.length)throw new Error("Arguments array must have arguments.");for(var i=void 0,a=e.InjectFlags.Default,u=0;u<o.length;u++){var s=o[u];s instanceof C||"Optional"===s.ngMetadataName||s===C?a|=e.InjectFlags.Optional:s instanceof x||"SkipSelf"===s.ngMetadataName||s===x?a|=e.InjectFlags.SkipSelf:s instanceof I||"Self"===s.ngMetadataName||s===I?a|=e.InjectFlags.Self:i=s instanceof b||s===b?s.token:s}n.push(Ie(i,a))}else n.push(Ie(o))}return n}var Pe=function(){function e(){}return e.prototype.get=function(e,t){if(void 0===t&&(t=de),t===de){var n=new Error("NullInjectorError: No provider for "+B(e)+"!");throw n.name="NullInjectorError",n}return t},e}();function Ne(e,t,n,r){var o=e[pe];throw t[ge]&&o.unshift(t[ge]),e.message=Te("\n"+e.message,o,n,r),e[he]=o,e[pe]=null,e}function Te(e,t,n,r){void 0===r&&(r=null),e=e&&"\n"===e.charAt(0)&&e.charAt(1)==ye?e.substr(2):e;var o=B(t);if(Array.isArray(t))o=t.map(B).join(" -> ");else if("object"==typeof t){var i=[];for(var a in t)if(t.hasOwnProperty(a)){var u=t[a];i.push(a+":"+("string"==typeof u?JSON.stringify(u):B(u)))}o="{"+i.join(", ")+"}"}return n+(r?"("+r+")":"")+"["+o+"]: "+e.replace(ve,"\n ")}
|
|
96
96
|
/**
|
|
97
97
|
* @license
|
|
98
98
|
* Copyright Google Inc. All Rights Reserved.
|
|
99
99
|
*
|
|
100
100
|
* Use of this source code is governed by an MIT-style license that can be
|
|
101
101
|
* found in the LICENSE file at https://angular.io/license
|
|
102
|
-
*/var
|
|
102
|
+
*/var je,De,Ae={"ɵɵdefineInjectable":T,"ɵɵdefineInjector":D,"ɵɵinject":Ie,"ɵɵgetFactoryOf":function e(t){var n=t;if(Z(t))return function(){var t=e(q(n));return t?t():null};var r=A(n)||R(n);return r&&void 0!==r.factory?r.factory:null}
|
|
103
103
|
/**
|
|
104
104
|
* @license
|
|
105
105
|
* Copyright Google Inc. All Rights Reserved.
|
|
106
106
|
*
|
|
107
107
|
* Use of this source code is governed by an MIT-style license that can be
|
|
108
108
|
* found in the LICENSE file at https://angular.io/license
|
|
109
|
-
*/,"ɵɵinvalidFactoryDep":
|
|
109
|
+
*/,"ɵɵinvalidFactoryDep":xe},Se=function Se(){},Re=function Re(){};function Ve(e,t){null==e&&function n(e,t,r,o){throw new Error("ASSERTION ERROR: "+e+(null==o?"":" [Expected=> "+r+" "+o+" "+t+" <=Actual]"))}(t,e,null,"!=")}
|
|
110
110
|
/**
|
|
111
111
|
* @license
|
|
112
112
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -114,14 +114,14 @@ function ee(){var e=X.ng;if(!e||!e.ɵcompilerFacade)throw new Error("Angular JIT
|
|
|
114
114
|
* Use of this source code is governed by an MIT-style license that can be
|
|
115
115
|
* found in the LICENSE file at https://angular.io/license
|
|
116
116
|
*/
|
|
117
|
-
function
|
|
117
|
+
function Fe(e,t){for(var n=0;n<e.length;n++)t.push(e[n])}function Me(e,t){void 0===t&&(t=e);for(var n=0;n<e.length;n++){var r=e[n];Array.isArray(r)?(t===e&&(t=e.slice(0,n)),Me(r,t)):t!==e&&t.push(r)}return t}function He(e,t){e.forEach((function(e){return Array.isArray(e)?He(e,t):t(e)}))}function Le(e,t,n){t>=e.length?e.push(n):e.splice(t,0,n)}function Be(e,t){return t>=e.length-1?e.pop():e.splice(t,1)[0]}function Ue(e,t){for(var n=[],r=0;r<e;r++)n.push(t);return n}function Qe(e,t,n){var r=qe(e,t);return r>=0?e[1|r]=n:function o(e,t,n,r){var o=e.length;if(o==t)e.push(n,r);else if(1===o)e.push(r,e[0]),e[0]=n;else{for(o--,e.push(e[o-1],e[o]);o>t;)e[o]=e[o-2],o--;e[t]=n,e[t+1]=r}}(e,r=~r,t,n),r}function ze(e,t){var n=qe(e,t);if(n>=0)return e[1|n]}function qe(e,t){return function n(e,t,r){for(var o=0,i=e.length>>r;i!==o;){var a=o+(i-o>>1),u=e[a<<r];if(t===u)return a<<r;u>t?i=a:o=a+1}return~(i<<r)}
|
|
118
118
|
/**
|
|
119
119
|
* @license
|
|
120
120
|
* Copyright Google Inc. All Rights Reserved.
|
|
121
121
|
*
|
|
122
122
|
* Use of this source code is governed by an MIT-style license that can be
|
|
123
123
|
* found in the LICENSE file at https://angular.io/license
|
|
124
|
-
*/
|
|
124
|
+
*/(e,t,1)}
|
|
125
125
|
/**
|
|
126
126
|
* @license
|
|
127
127
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -129,14 +129,14 @@ function Se(e,t){for(var n=0;n<e.length;n++)t.push(e[n])}function Ve(e,t){void 0
|
|
|
129
129
|
* Use of this source code is governed by an MIT-style license that can be
|
|
130
130
|
* found in the LICENSE file at https://angular.io/license
|
|
131
131
|
*/
|
|
132
|
-
function
|
|
132
|
+
function Ze(e){return""+{toString:e}}
|
|
133
133
|
/**
|
|
134
134
|
* @license
|
|
135
135
|
* Copyright Google Inc. All Rights Reserved.
|
|
136
136
|
*
|
|
137
137
|
* Use of this source code is governed by an MIT-style license that can be
|
|
138
138
|
* found in the LICENSE file at https://angular.io/license
|
|
139
|
-
*/(
|
|
139
|
+
*/(je=e.ChangeDetectionStrategy||(e.ChangeDetectionStrategy={}))[je.OnPush=0]="OnPush",je[je.Default=1]="Default",(De=e.ɵChangeDetectorStatus||(e.ɵChangeDetectorStatus={}))[De.CheckOnce=0]="CheckOnce",De[De.Checked=1]="Checked",De[De.CheckAlways=2]="CheckAlways",De[De.Detached=3]="Detached",De[De.Errored=4]="Errored",De[De.Destroyed=5]="Destroyed",
|
|
140
140
|
/**
|
|
141
141
|
* @license
|
|
142
142
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -144,7 +144,7 @@ function Ue(e){return""+{toString:e}}
|
|
|
144
144
|
* Use of this source code is governed by an MIT-style license that can be
|
|
145
145
|
* found in the LICENSE file at https://angular.io/license
|
|
146
146
|
*/
|
|
147
|
-
|
|
147
|
+
function(e){e[e.Emulated=0]="Emulated",e[e.Native=1]="Native",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom"}(e.ViewEncapsulation||(e.ViewEncapsulation={}));var We={},Ke=[],Ge=0;function Je(t){var n=t.type,r=n.prototype,o={},i={type:n,providersResolver:null,decls:t.decls,vars:t.vars,factory:null,template:t.template||null,consts:t.consts||null,ngContentSelectors:t.ngContentSelectors,hostBindings:t.hostBindings||null,hostVars:t.hostVars||0,hostAttrs:t.hostAttrs||null,contentQueries:t.contentQueries||null,declaredInputs:o,inputs:null,outputs:null,exportAs:t.exportAs||null,onChanges:null,onInit:r.ngOnInit||null,doCheck:r.ngDoCheck||null,afterContentInit:r.ngAfterContentInit||null,afterContentChecked:r.ngAfterContentChecked||null,afterViewInit:r.ngAfterViewInit||null,afterViewChecked:r.ngAfterViewChecked||null,onDestroy:r.ngOnDestroy||null,onPush:t.changeDetection===e.ChangeDetectionStrategy.OnPush,directiveDefs:null,pipeDefs:null,selectors:t.selectors||Ke,viewQuery:t.viewQuery||null,features:t.features||null,data:t.data||{},encapsulation:t.encapsulation||e.ViewEncapsulation.Emulated,id:"c",styles:t.styles||Ke,_:null,setInput:null,schemas:t.schemas||null,tView:null};return i._=Ze((function(){var e=t.directives,n=t.features,r=t.pipes;i.id+=Ge++,i.inputs=rt(t.inputs,o),i.outputs=rt(t.outputs),n&&n.forEach((function(e){return e(i)})),i.directiveDefs=e?function(){return("function"==typeof e?e():e).map($e)}:null,i.pipeDefs=r?function(){return("function"==typeof r?r():r).map(Xe)}:null})),i}function Ye(e,t,n){var r=e.ɵcmp;r.directiveDefs=function(){return t.map($e)},r.pipeDefs=function(){return n.map(Xe)}}function $e(e){return at(e)||ut(e)}function Xe(e){return st(e)}var et={};function tt(e){var t={type:e.type,bootstrap:e.bootstrap||Ke,declarations:e.declarations||Ke,imports:e.imports||Ke,exports:e.exports||Ke,transitiveCompileScopes:null,schemas:e.schemas||null,id:e.id||null};return null!=e.id&&Ze((function(){et[e.id]=e.type})),t}function nt(e,t){return Ze((function(){var n=ct(e,!0);n.declarations=t.declarations||Ke,n.imports=t.imports||Ke,n.exports=t.exports||Ke}))}function rt(e,t){if(null==e)return We;var n={};for(var r in e)if(e.hasOwnProperty(r)){var o=e[r],i=o;Array.isArray(o)&&(i=o[1],o=o[0]),n[o]=r,t&&(t[o]=i)}return n}var ot=Je;function it(e){return{type:e.type,name:e.name,factory:null,pure:!1!==e.pure,onDestroy:e.type.prototype.ngOnDestroy||null}}function at(e){return e[re]||null}function ut(e){return e[oe]||null}function st(e){return e[ie]||null}function lt(e,t){return e.hasOwnProperty(se)?e[se]:null}function ct(e,t){var n=e[ae]||null;if(!n&&!0===t)throw new Error("Type "+B(e)+" does not have 'ɵmod' property.");return n}
|
|
148
148
|
/**
|
|
149
149
|
* @license
|
|
150
150
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -152,7 +152,7 @@ Te=e.ChangeDetectionStrategy||(e.ChangeDetectionStrategy={}))[Te.OnPush=0]="OnPu
|
|
|
152
152
|
* Use of this source code is governed by an MIT-style license that can be
|
|
153
153
|
* found in the LICENSE file at https://angular.io/license
|
|
154
154
|
*/
|
|
155
|
-
|
|
155
|
+
var ft=0,dt=1,pt=2,ht=3,vt=4,yt=5,gt=6,mt=7,_t=8,wt=9,bt=10,Ct=11,It=12,xt=13,Et=14,kt=15,Ot=16,Pt=17,Nt=18,Tt=19,jt=1,Dt=2,At=5,St=7,Rt=8,Vt=9;
|
|
156
156
|
/**
|
|
157
157
|
* @license
|
|
158
158
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -160,7 +160,7 @@ function(e){e[e.Emulated=0]="Emulated",e[e.Native=1]="Native",e[e.None=2]="None"
|
|
|
160
160
|
* Use of this source code is governed by an MIT-style license that can be
|
|
161
161
|
* found in the LICENSE file at https://angular.io/license
|
|
162
162
|
*/
|
|
163
|
-
|
|
163
|
+
function Ft(e){return Array.isArray(e)&&"object"==typeof e[jt]}function Mt(e){return Array.isArray(e)&&!0===e[jt]}function Ht(e){return 0!=(8&e.flags)}function Lt(e){return 2==(2&e.flags)}function Bt(e){return 1==(1&e.flags)}function Ut(e){return null!==e.template}function Qt(e){return 0!=(512&e[pt])}
|
|
164
164
|
/**
|
|
165
165
|
* @license
|
|
166
166
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -168,7 +168,6 @@ var ut=0,st=1,lt=2,ct=3,ft=4,dt=5,pt=6,ht=7,vt=8,yt=9,gt=10,mt=11,_t=12,wt=13,bt
|
|
|
168
168
|
* Use of this source code is governed by an MIT-style license that can be
|
|
169
169
|
* found in the LICENSE file at https://angular.io/license
|
|
170
170
|
*/
|
|
171
|
-
function At(e){return Array.isArray(e)&&"object"==typeof e[Ot]}function Rt(e){return Array.isArray(e)&&!0===e[Ot]}function St(e){return 0!=(8&e.flags)}function Vt(e){return 2==(2&e.flags)}function Mt(e){return 1==(1&e.flags)}function Ft(e){return null!==e.template}function Ht(e){return 0!=(512&e[lt])}
|
|
172
171
|
/**
|
|
173
172
|
* @license
|
|
174
173
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -176,209 +175,196 @@ function At(e){return Array.isArray(e)&&"object"==typeof e[Ot]}function Rt(e){re
|
|
|
176
175
|
* Use of this source code is governed by an MIT-style license that can be
|
|
177
176
|
* found in the LICENSE file at https://angular.io/license
|
|
178
177
|
*/
|
|
178
|
+
var zt="http://www.w3.org/2000/svg",qt="http://www.w3.org/1998/MathML/",Zt={lFrame:mn(null),bindingsEnabled:!0,checkNoChangesMode:!1};function Wt(){return Zt.bindingsEnabled}function Kt(){Zt.bindingsEnabled=!0}function Gt(){Zt.bindingsEnabled=!1}function Jt(){return Zt.lFrame.lView}function Yt(){return Zt.lFrame.tView}function $t(e){Zt.lFrame.contextLView=e}function Xt(){return Zt.lFrame.previousOrParentTNode}function en(e,t){Zt.lFrame.previousOrParentTNode=e,Zt.lFrame.isParent=t}function tn(){return Zt.lFrame.isParent}function nn(){Zt.lFrame.isParent=!1}function rn(){return Zt.checkNoChangesMode}function on(e){Zt.checkNoChangesMode=e}function an(){var e=Zt.lFrame,t=e.bindingRootIndex;return-1===t&&(t=e.bindingRootIndex=e.tView.bindingStartIndex),t}function un(){return Zt.lFrame.bindingIndex}function sn(e){return Zt.lFrame.bindingIndex=e}function ln(){return Zt.lFrame.bindingIndex++}function cn(e){var t=Zt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function fn(e,t){var n=Zt.lFrame;n.bindingIndex=n.bindingRootIndex=e,n.currentDirectiveIndex=t}function dn(){return Zt.lFrame.currentQueryIndex}function pn(e){Zt.lFrame.currentQueryIndex=e}function hn(e,t){var n=gn();Zt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}var vn=_n;function yn(e,t){var n=gn(),r=e[dt];Zt.lFrame=n,n.previousOrParentTNode=t,n.isParent=!0,n.lView=e,n.tView=r,n.selectedIndex=0,n.contextLView=e,n.elementDepthCount=0,n.currentDirectiveIndex=-1,n.currentNamespace=null,n.currentSanitizer=null,n.bindingRootIndex=-1,n.bindingIndex=r.bindingStartIndex,n.currentQueryIndex=0}function gn(){var e=Zt.lFrame,t=null===e?null:e.child;return null===t?mn(e):t}function mn(e){var t={previousOrParentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function _n(){Zt.lFrame=Zt.lFrame.parent}function wn(e){return(Zt.lFrame.contextLView=function t(e,n){for(;e>0;)n=n[kt],e--;return n}(e,Zt.lFrame.contextLView))[_t]}function bn(){return Zt.lFrame.selectedIndex}function Cn(e){Zt.lFrame.selectedIndex=e}function In(){Zt.lFrame.currentNamespace=zt}function xn(){Zt.lFrame.currentNamespace=qt}function En(){!function e(){Zt.lFrame.currentNamespace=null}()}function kn(e,t){for(var n=t.directiveStart,r=t.directiveEnd;n<r;n++){var o=e.data[n];o.afterContentInit&&(e.contentHooks||(e.contentHooks=[])).push(-n,o.afterContentInit),o.afterContentChecked&&((e.contentHooks||(e.contentHooks=[])).push(n,o.afterContentChecked),(e.contentCheckHooks||(e.contentCheckHooks=[])).push(n,o.afterContentChecked)),o.afterViewInit&&(e.viewHooks||(e.viewHooks=[])).push(-n,o.afterViewInit),o.afterViewChecked&&((e.viewHooks||(e.viewHooks=[])).push(n,o.afterViewChecked),(e.viewCheckHooks||(e.viewCheckHooks=[])).push(n,o.afterViewChecked)),null!=o.onDestroy&&(e.destroyHooks||(e.destroyHooks=[])).push(n,o.onDestroy)}}function On(e,t,n){Tn(e,t,3,n)}function Pn(e,t,n,r){(3&e[pt])===n&&Tn(e,t,n,r)}function Nn(e,t){var n=e[pt];(3&n)===t&&(n&=1023,e[pt]=n+=1)}function Tn(e,t,n,r){for(var o=null!=r?r:-1,i=0,a=void 0!==r?65535&e[Nt]:0;a<t.length;a++)if("number"==typeof t[a+1]){if(i=t[a],null!=r&&i>=r)break}else t[a]<0&&(e[Nt]+=65536),(i<o||-1==o)&&(jn(e,n,t,a),e[Nt]=(4294901760&e[Nt])+a+2),a++}function jn(e,t,n,r){var o=n[r]<0,i=n[r+1],a=e[o?-n[r]:n[r]];o?e[pt]>>10<e[Nt]>>16&&(3&e[pt])===t&&(e[pt]+=1024,i.call(a)):i.call(a)}
|
|
179
179
|
/**
|
|
180
180
|
* @license
|
|
181
181
|
* Copyright Google Inc. All Rights Reserved.
|
|
182
182
|
*
|
|
183
183
|
* Use of this source code is governed by an MIT-style license that can be
|
|
184
184
|
* found in the LICENSE file at https://angular.io/license
|
|
185
|
-
*/
|
|
186
|
-
var Lt={lFrame:mn(null),bindingsEnabled:!0,elementExitFn:null,checkNoChangesMode:!1};function Bt(e){Lt.lFrame.currentDirectiveDef=e}function Ut(){return Lt.bindingsEnabled}function zt(){Lt.bindingsEnabled=!0}function Qt(){Lt.bindingsEnabled=!1}function qt(){var e=Lt.lFrame;return null===e?null:e.lView}function Zt(e){return(Lt.lFrame.selectedIndex&e)===e}function Wt(e){Zt(1)&&Kt(),In(null===e?-1:e),Lt.lFrame.activeDirectiveId=0}function Kt(){Lt.elementExitFn(),Lt.lFrame.selectedIndex&=-2}function Gt(e){!function t(e){Lt.lFrame.selectedIndex|=e}(1),null===Lt.elementExitFn&&(Lt.elementExitFn=e)}function Jt(){return Lt.lFrame.activeDirectiveId}function Yt(){Lt.lFrame.activeDirectiveId+=1}function $t(e){Lt.lFrame.contextLView=e}function Xt(){return Lt.lFrame.previousOrParentTNode}function en(e,t){Lt.lFrame.previousOrParentTNode=e,Lt.lFrame.isParent=t}function tn(){return Lt.lFrame.isParent}function nn(){Lt.lFrame.isParent=!1}function rn(){return Lt.checkNoChangesMode}function on(e){Lt.checkNoChangesMode=e}function an(){var e=Lt.lFrame,t=e.bindingRootIndex;return-1===t&&(t=e.bindingRootIndex=e.lView[st].bindingStartIndex),t}function un(){return Lt.lFrame.bindingIndex}function sn(e){return Lt.lFrame.bindingIndex=e}function ln(){return Lt.lFrame.bindingIndex++}function cn(e){var t=Lt.lFrame,n=t.bindingIndex;return t.bindingIndex=t.bindingIndex+e,n}function fn(e){Lt.lFrame.bindingRootIndex=e}function dn(){return Lt.lFrame.currentQueryIndex}function pn(e){Lt.lFrame.currentQueryIndex=e}function hn(e,t){var n=gn();Lt.lFrame=n,n.previousOrParentTNode=t,n.lView=e}var vn=wn;function yn(e,t){var n=gn();Lt.lFrame=n,n.previousOrParentTNode=t,n.isParent=!0,n.lView=e,n.selectedIndex=0,n.contextLView=e,n.elementDepthCount=0,n.currentNamespace=null,n.currentSanitizer=null,n.currentDirectiveDef=null,n.activeDirectiveId=0,n.bindingRootIndex=-1,n.bindingIndex=null===e?-1:e[st].bindingStartIndex,n.currentQueryIndex=0}function gn(){var e=Lt.lFrame,t=null===e?null:e.child;return null===t?mn(e):t}function mn(e){var t={previousOrParentTNode:null,isParent:!0,lView:null,selectedIndex:0,contextLView:null,elementDepthCount:0,currentNamespace:null,currentSanitizer:null,currentDirectiveDef:null,activeDirectiveId:0,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:e,child:null};return null!==e&&(e.child=t),t}function _n(){Zt(1)&&Kt(),wn()}function wn(){Lt.lFrame=Lt.lFrame.parent}function bn(e){return(Lt.lFrame.contextLView=function t(e,n){for(;e>0;)n=n[Ct],e--;return n}(e,Lt.lFrame.contextLView))[vt]}function Cn(){return Lt.lFrame.selectedIndex>>1}function In(e){Lt.lFrame.selectedIndex=e<<1}function xn(){Lt.lFrame.currentNamespace="http://www.w3.org/2000/svg"}function En(){Lt.lFrame.currentNamespace="http://www.w3.org/1998/MathML/"}function kn(){!function e(){Lt.lFrame.currentNamespace=null}()}function On(e){Lt.lFrame.currentSanitizer=e}function Pn(){var e=Lt.lFrame;return null===e?null:e.currentSanitizer}
|
|
185
|
+
*/var Dn,An=8,Sn=8,Rn=9,Vn=-1,Fn=function Fn(e,t,n){this.factory=e,this.resolving=!1,this.canSeeViewProviders=t,this.injectImpl=n},Mn=void 0;function Hn(){return void 0!==Mn?Mn:"undefined"!=typeof document?document:void 0}
|
|
187
186
|
/**
|
|
188
187
|
* @license
|
|
189
188
|
* Copyright Google Inc. All Rights Reserved.
|
|
190
189
|
*
|
|
191
190
|
* Use of this source code is governed by an MIT-style license that can be
|
|
192
191
|
* found in the LICENSE file at https://angular.io/license
|
|
193
|
-
*/function
|
|
192
|
+
*/function Ln(e){return!!e.listen}!function(e){e[e.Important=1]="Important",e[e.DashCase=2]="DashCase"}(Dn||(Dn={}));var Bn={createRenderer:function(e,t){return Hn()}};function Un(e,t,n){for(var r=Ln(e),o=0;o<n.length;){var i=n[o];if("number"==typeof i){if(0!==i)break;o++;var a=n[o++],u=n[o++],s=n[o++];r?e.setAttribute(t,u,s,a):t.setAttributeNS(a,u,s)}else s=n[++o],zn(u=i)?r&&e.setProperty(t,u,s):r?e.setAttribute(t,u,s):t.setAttribute(u,s),o++}return o}function Qn(e){return 3===e||4===e||6===e}function zn(e){return 64===e.charCodeAt(0)}function qn(e,t){if(null===t||0===t.length);else if(null===e||0===e.length)e=t.slice();else for(var n=-1,r=0;r<t.length;r++){var o=t[r];"number"==typeof o?n=o:0===n||Zn(e,n,o,null,-1===n||2===n?t[++r]:null)}return e}function Zn(e,t,n,r,o){var i=0,a=e.length;if(-1===t)a=-1;else for(;i<e.length;){var u=e[i++];if("number"==typeof u){if(u===t){a=-1;break}if(u>t){a=i-1;break}}}for(;i<e.length;){var s=e[i];if("number"==typeof s)break;if(s===n){if(null===r)return void(null!==o&&(e[i+1]=o));if(r===e[i+1])return void(e[i+2]=o)}i++,null!==r&&i++,null!==o&&i++}-1!==a&&(e.splice(a,0,t),i=a+1),e.splice(i++,0,n),null!==r&&e.splice(i++,0,r),null!==o&&e.splice(i++,0,o)}
|
|
194
193
|
/**
|
|
195
194
|
* @license
|
|
196
195
|
* Copyright Google Inc. All Rights Reserved.
|
|
197
196
|
*
|
|
198
197
|
* Use of this source code is governed by an MIT-style license that can be
|
|
199
198
|
* found in the LICENSE file at https://angular.io/license
|
|
200
|
-
*/
|
|
199
|
+
*/function Wn(e){return e!==Vn}function Kn(e){return 32767&e}function Gn(e){return e>>16}function Jn(e,t){for(var n=Gn(e),r=t;n>0;)r=r[kt],n--;return r}
|
|
201
200
|
/**
|
|
202
201
|
* @license
|
|
203
202
|
* Copyright Google Inc. All Rights Reserved.
|
|
204
203
|
*
|
|
205
204
|
* Use of this source code is governed by an MIT-style license that can be
|
|
206
205
|
* found in the LICENSE file at https://angular.io/license
|
|
207
|
-
*/function
|
|
206
|
+
*/function Yn(e){return"string"==typeof e?e:null==e?"":""+e}function $n(e){return"function"==typeof e?e.name||e.toString():"object"==typeof e&&null!=e&&"function"==typeof e.type?e.type.name||e.type.toString():Yn(e)}var Xn=("undefined"!=typeof requestAnimationFrame&&requestAnimationFrame||setTimeout).bind(ee);function er(e){return{name:"window",target:e.ownerDocument.defaultView}}function tr(e){return{name:"document",target:e.ownerDocument}}function nr(e){return{name:"body",target:e.ownerDocument.body}}function rr(e){return e instanceof Function?e():e}
|
|
208
207
|
/**
|
|
209
208
|
* @license
|
|
210
209
|
* Copyright Google Inc. All Rights Reserved.
|
|
211
210
|
*
|
|
212
211
|
* Use of this source code is governed by an MIT-style license that can be
|
|
213
212
|
* found in the LICENSE file at https://angular.io/license
|
|
214
|
-
*/function
|
|
213
|
+
*/var or=!0;function ir(e){var t=or;return or=e,t}var ar=255,ur=0;function sr(e,t){var n=cr(e,t);if(-1!==n)return n;var r=t[dt];r.firstCreatePass&&(e.injectorIndex=t.length,lr(r.data,e),lr(t,null),lr(r.blueprint,null));var o=fr(e,t),i=e.injectorIndex;if(Wn(o))for(var a=Kn(o),u=Jn(o,t),s=u[dt].data,l=0;l<8;l++)t[i+l]=u[a+l]|s[a+l];return t[i+Sn]=o,i}function lr(e,t){e.push(0,0,0,0,0,0,0,0,t)}function cr(e,t){return-1===e.injectorIndex||e.parent&&e.parent.injectorIndex===e.injectorIndex||null==t[e.injectorIndex+Sn]?-1:e.injectorIndex}function fr(e,t){if(e.parent&&-1!==e.parent.injectorIndex)return e.parent.injectorIndex;for(var n=t[gt],r=1;n&&-1===n.injectorIndex;)n=(t=t[kt])?t[gt]:null,r++;return n?n.injectorIndex|r<<16:-1}function dr(e,t,n){!function r(e,t,n){var r="string"!=typeof n?n[le]:n.charCodeAt(0)||0;null==r&&(r=n[le]=ur++);var o=r&ar,i=1<<o,a=64&o,u=32&o,s=t.data;128&o?a?u?s[e+7]|=i:s[e+6]|=i:u?s[e+5]|=i:s[e+4]|=i:a?u?s[e+3]|=i:s[e+2]|=i:u?s[e+1]|=i:s[e]|=i}(e,t,n)}function pr(e,t){if("class"===t)return e.classes;if("style"===t)return e.styles;var n=e.attrs;if(n)for(var r=n.length,o=0;o<r;){var i=n[o];if(Qn(i))break;if(0===i)o+=2;else if("number"==typeof i)for(o++;o<r&&"string"==typeof n[o];)o++;else{if(i===t)return n[o+1];o+=2}}return null}function hr(t,n,r,o,i){if(void 0===o&&(o=e.InjectFlags.Default),null!==t){var a=function u(e){if("string"==typeof e)return e.charCodeAt(0)||0;var t=e[le];return"number"==typeof t&&t>0?t&ar:t}(r);if("function"==typeof a){hn(n,t);try{var s=a();if(null!=s||o&e.InjectFlags.Optional)return s;throw new Error("No provider for "+$n(r)+"!")}finally{vn()}}else if("number"==typeof a){if(-1===a)return new br(t,n);var l=null,c=cr(t,n),f=Vn,d=o&e.InjectFlags.Host?n[Ot][gt]:null;for((-1===c||o&e.InjectFlags.SkipSelf)&&(f=-1===c?fr(t,n):n[c+Sn],wr(o,!1)?(l=n[dt],c=Kn(f),n=Jn(f,n)):c=-1);-1!==c;){f=n[c+Sn];var p=n[dt];if(_r(a,c,p.data)){var h=yr(c,n,r,l,o,d);if(h!==vr)return h}wr(o,n[dt].data[c+An]===d)&&_r(a,c,n)?(l=p,c=Kn(f),n=Jn(f,n)):c=-1}}}if(o&e.InjectFlags.Optional&&void 0===i&&(i=null),0==(o&(e.InjectFlags.Self|e.InjectFlags.Host))){var v=n[wt],y=be(void 0);try{return v?v.get(r,i,o&e.InjectFlags.Optional):ke(r,i,o&e.InjectFlags.Optional)}finally{be(y)}}if(o&e.InjectFlags.Optional)return i;throw new Error("NodeInjector: NOT_FOUND ["+$n(r)+"]")}var vr={};function yr(t,n,r,o,i,a){var u=n[dt],s=u.data[t+An],l=gr(s,u,r,null==o?Lt(s)&&or:o!=u&&3===s.type,i&e.InjectFlags.Host&&a===s);return null!==l?mr(n,u,l,s):vr}function gr(e,t,n,r,o){for(var i=e.providerIndexes,a=t.data,u=65535&i,s=e.directiveStart,l=i>>16,c=o?u+l:e.directiveEnd,f=r?u:u+l;f<c;f++){var d=a[f];if(f<s&&n===d||f>=s&&d.type===n)return f}if(o){var p=a[s];if(p&&Ut(p)&&p.type===n)return s}return null}function mr(e,t,n,r){var o=e[n],i=t.data;if(function a(e){return e instanceof Fn}(o)){var u=o;if(u.resolving)throw new Error("Circular dep for "+$n(i[n]));var s=ir(u.canSeeViewProviders);u.resolving=!0;var l=void 0;u.injectImpl&&(l=be(u.injectImpl)),hn(e,r);try{o=e[n]=u.factory(void 0,i,e,r),t.firstCreatePass&&n>=r.directiveStart&&
|
|
215
214
|
/**
|
|
216
215
|
* @license
|
|
217
216
|
* Copyright Google Inc. All Rights Reserved.
|
|
218
217
|
*
|
|
219
218
|
* Use of this source code is governed by an MIT-style license that can be
|
|
220
219
|
* found in the LICENSE file at https://angular.io/license
|
|
221
|
-
*/
|
|
220
|
+
*/
|
|
221
|
+
function c(e,t,n){var r=t.onChanges,o=t.onInit,i=t.doCheck;r&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,r),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,r)),o&&(n.preOrderHooks||(n.preOrderHooks=[])).push(-e,o),i&&((n.preOrderHooks||(n.preOrderHooks=[])).push(e,i),(n.preOrderCheckHooks||(n.preOrderCheckHooks=[])).push(e,i))}(n,i[n],t)}finally{u.injectImpl&&be(l),ir(s),u.resolving=!1,vn()}}return o}function _r(e,t,n){var r=64&e,o=32&e;return!!((128&e?r?o?n[t+7]:n[t+6]:o?n[t+5]:n[t+4]:r?o?n[t+3]:n[t+2]:o?n[t+1]:n[t])&1<<e)}function wr(t,n){return!(t&e.InjectFlags.Self||t&e.InjectFlags.Host&&n)}var br=function(){function e(e,t){this._tNode=e,this._lView=t}return e.prototype.get=function(e,t){return hr(this._tNode,this._lView,e,void 0,t)},e}();function Cr(e){var t=e;if(Z(e))return function(){var e=Cr(q(t));return e?e():null};var n=lt(t);if(null===n){var r=R(t);n=r&&r.factory}return n||null}function Ir(e){var t=Object.getPrototypeOf(e.prototype).constructor,n=t[se]||Cr(t);return null!==n?n:function(e){return new e}}
|
|
222
222
|
/**
|
|
223
223
|
* @license
|
|
224
224
|
* Copyright Google Inc. All Rights Reserved.
|
|
225
225
|
*
|
|
226
226
|
* Use of this source code is governed by an MIT-style license that can be
|
|
227
227
|
* found in the LICENSE file at https://angular.io/license
|
|
228
|
-
*/var
|
|
228
|
+
*/var xr="ngDebugContext",Er="ngOriginalError",kr="ngErrorLogger";function Or(e){return e[xr]}function Pr(e){return e[Er]}function Nr(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];e.error.apply(e,f(t))}
|
|
229
229
|
/**
|
|
230
230
|
* @license
|
|
231
231
|
* Copyright Google Inc. All Rights Reserved.
|
|
232
232
|
*
|
|
233
233
|
* Use of this source code is governed by an MIT-style license that can be
|
|
234
234
|
* found in the LICENSE file at https://angular.io/license
|
|
235
|
-
*/
|
|
236
|
-
var hr={},vr="[MAP]",yr=0,gr=null,mr=0,_r=1,wr=1;
|
|
237
|
-
/**
|
|
238
|
-
* @license
|
|
239
|
-
* Copyright Google Inc. All Rights Reserved.
|
|
240
|
-
*
|
|
241
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
242
|
-
* found in the LICENSE file at https://angular.io/license
|
|
243
|
-
*/function br(e){return[e]}function Cr(e,t){return 0!=(e.flags&t)}function Ir(e,t,n){var r=!1;if(Cr(e,128)){if(!n){var o=t?1536:49152;r=!Cr(e,t?8192:262144)&&(e.flags&o)!==o}}else r=!0;return r}function xr(e,t){e.flags|=t}function Er(e,t){return e[t+3]}function kr(e,t){return 0!=(1&function n(e,t){return 1&e[t+0]}(e,t))}function Or(e,t,n){return e[t+(n?2:1)]}function Pr(e){return Nr(e)+1}function Nr(e){return e[0]}function Tr(e,t,n){return e[t+4+n]}function Dr(e,t){return e[t+4+Nr(e)]}function jr(e,t,n){e[t]=n}function Ar(e,t){return 0!==t?e[t]:null}function Rr(e,t,n){var r=2;return Cr(t,n?512:16384)&&(r+=4+Pr(e)),r}function Sr(e,t){if(t===hr)return!1;var n=Array.isArray(e)?e[0]:e,r=Array.isArray(t)?t[0]:t;return!Object.is(n,r)}function Vr(e){return null!=e&&""!==e}function Mr(e,t,n){return void 0===n&&(n=" "),e+(t.length&&e.length?n:"")+t}function Fr(e){return e.replace(/[a-z][A-Z]/g,(function(e){return e.charAt(0)+"-"+e.charAt(1)})).toLowerCase()}function Hr(e){return Lr(e)?e[1]:e}function Lr(e){return Array.isArray(e)&&e.length>=2&&"string"!=typeof e[1]}function Br(e){var t=Hr(e);return t&&t[0]||""}function Ur(e){return 0!=(16&e.flags)}function zr(e){return 0!=(32&e.flags)}function Qr(e,t){return e[t+0]}var qr={MAP_DIRTY_VALUE:!0};function Zr(e,t,n){e[t+1]=n}function Wr(e,t){return e[t+1]}function Kr(e,t){if("string"==typeof e)return e;var n="";if(e)for(var r=Object.keys(e),o=0;o<r.length;o++){var i=r[o],a=t?Fr(i):i,u=e[i];null!==u&&(n=Mr(n,a+":"+u,";"))}return n}function Gr(e){return e!==yr}function Jr(e,t){for(var n="",r=1;r<e.length;r+=2){var o=Qr(e,r),i=Wr(e,r),a=Mr(o,t?"":i,":");n=Mr(n,a,t?" ":"; ")}return n}function Yr(e,t,n,r){for(var o=1;o<e.length;o+=2){var i=Qr(e,o);if(t<=i){var a=!1;return i===t?!r&&Vr(e[o])||(a=!0,Zr(e,o,n)):(a=!0,e.splice(o,0,t,n)),a}}return e.push(t,n),!0}function $r(e,t,n){var r=Array.isArray(e)?e:br(null);r[0]=t;for(var o=1;o<r.length;o+=2)Zr(r,o,null);var i,a=null,u=!1;if("string"==typeof t?u=null!==(a=function s(e){for(var t=null,n=e.length,r=0,o=!1,i=0;i<n;i++)e.charCodeAt(i)<=32?(o&&(null===t&&(t=[]),t.push(e.substring(r,i)),o=!1),r=i+1):o=!0;return o&&(null===t&&(t=[]),t.push(e.substring(r,n)),o=!1),t}(t)):(a=t?Object.keys(t):null,i=t),a)for(var l=0;l<a.length;l++){var c=a[l];Yr(r,n?Fr(c):c,!!u||i[c],!0)}return r}function Xr(e){return e.hasOwnProperty("class")?"class":"className"}
|
|
235
|
+
*/var Tr=function(){function e(){this._console=console}return e.prototype.handleError=function(e){var t=this._findOriginalError(e),n=this._findContext(e),r=function o(e){return e[kr]||Nr}(e);r(this._console,"ERROR",e),t&&r(this._console,"ORIGINAL ERROR",t),n&&r(this._console,"ERROR CONTEXT",n)},e.prototype._findContext=function(e){return e?Or(e)?Or(e):this._findContext(Pr(e)):null},e.prototype._findOriginalError=function(e){for(var t=Pr(e);t&&Pr(t);)t=Pr(t);return t},e}(),jr=function(){function e(e){this.changingThisBreaksApplicationSecurity=e}return e.prototype.toString=function(){return"SafeValue must use [property]=binding: "+this.changingThisBreaksApplicationSecurity+" (see http://g.co/ng/security#xss)"},e}(),Dr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.getTypeName=function(){return"HTML"},t}(jr),Ar=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.getTypeName=function(){return"Style"},t}(jr),Sr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.getTypeName=function(){return"Script"},t}(jr),Rr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.getTypeName=function(){return"URL"},t}(jr),Vr=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t.prototype.getTypeName=function(){return"ResourceURL"},t}(jr);
|
|
244
236
|
/**
|
|
245
237
|
* @license
|
|
246
238
|
* Copyright Google Inc. All Rights Reserved.
|
|
247
239
|
*
|
|
248
240
|
* Use of this source code is governed by an MIT-style license that can be
|
|
249
241
|
* found in the LICENSE file at https://angular.io/license
|
|
250
|
-
*/
|
|
242
|
+
*/function Fr(e){return e instanceof jr?e.changingThisBreaksApplicationSecurity:e}function Mr(e,t){var n=Hr(e);if(null!=n&&n!==t){if("ResourceURL"===n&&"URL"===t)return!0;throw new Error("Required a safe "+t+", got a "+n+" (see http://g.co/ng/security#xss)")}return n===t}function Hr(e){return e instanceof jr&&e.getTypeName()||null}
|
|
251
243
|
/**
|
|
252
244
|
* @license
|
|
253
245
|
* Copyright Google Inc. All Rights Reserved.
|
|
254
246
|
*
|
|
255
247
|
* Use of this source code is governed by an MIT-style license that can be
|
|
256
248
|
* found in the LICENSE file at https://angular.io/license
|
|
257
|
-
*/
|
|
249
|
+
*/
|
|
250
|
+
var Lr=!0,Br=!1;function Ur(){return Br=!0,Lr}
|
|
258
251
|
/**
|
|
259
252
|
* @license
|
|
260
253
|
* Copyright Google Inc. All Rights Reserved.
|
|
261
254
|
*
|
|
262
255
|
* Use of this source code is governed by an MIT-style license that can be
|
|
263
256
|
* found in the LICENSE file at https://angular.io/license
|
|
264
|
-
*/
|
|
257
|
+
*/
|
|
258
|
+
var Qr=function(){function e(e){this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert");var t=this.inertDocument.body;if(null==t){var n=this.inertDocument.createElement("html");this.inertDocument.appendChild(n),t=this.inertDocument.createElement("body"),n.appendChild(t)}t.innerHTML='<svg><g onload="this.parentNode.remove()"></g></svg>',!t.querySelector||t.querySelector("svg")?(t.innerHTML='<svg><p><style><img src="</style><img src=x onerror=alert(1)//">',this.getInertBodyElement=t.querySelector&&t.querySelector("svg img")&&function r(){try{return!!window.DOMParser}catch(e){return!1}}
|
|
265
259
|
/**
|
|
266
260
|
* @license
|
|
267
261
|
* Copyright Google Inc. All Rights Reserved.
|
|
268
262
|
*
|
|
269
263
|
* Use of this source code is governed by an MIT-style license that can be
|
|
270
264
|
* found in the LICENSE file at https://angular.io/license
|
|
271
|
-
*/function
|
|
265
|
+
*/()?this.getInertBodyElement_DOMParser:this.getInertBodyElement_InertDocument):this.getInertBodyElement=this.getInertBodyElement_XHR}return e.prototype.getInertBodyElement_XHR=function(e){e="<body><remove></remove>"+e+"</body>";try{e=encodeURI(e)}catch(e){return null}var t=new XMLHttpRequest;t.responseType="document",t.open("GET","data:text/html;charset=utf-8,"+e,!1),t.send(void 0);var n=t.response.body;return n.removeChild(n.firstChild),n},e.prototype.getInertBodyElement_DOMParser=function(e){e="<body><remove></remove>"+e+"</body>";try{var t=(new window.DOMParser).parseFromString(e,"text/html").body;return t.removeChild(t.firstChild),t}catch(e){return null}},e.prototype.getInertBodyElement_InertDocument=function(e){var t=this.inertDocument.createElement("template");if("content"in t)return t.innerHTML=e,t;var n=this.inertDocument.createElement("body");return n.innerHTML=e,this.defaultDoc.documentMode&&this.stripCustomNsAttrs(n),n},e.prototype.stripCustomNsAttrs=function(e){for(var t=e.attributes,n=t.length-1;0<n;n--){var r=t.item(n).name;"xmlns:ns1"!==r&&0!==r.indexOf("ns1:")||e.removeAttribute(r)}for(var o=e.firstChild;o;)o.nodeType===Node.ELEMENT_NODE&&this.stripCustomNsAttrs(o),o=o.nextSibling},e}(),zr=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,qr=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+\/]+=*$/i;function Zr(e){return(e=String(e)).match(zr)||e.match(qr)?e:(Ur()&&console.warn("WARNING: sanitizing unsafe URL value "+e+" (see http://g.co/ng/security#xss)"),"unsafe:"+e)}function Wr(e){return(e=String(e)).split(",").map((function(e){return Zr(e.trim())})).join(", ")}
|
|
272
266
|
/**
|
|
273
267
|
* @license
|
|
274
268
|
* Copyright Google Inc. All Rights Reserved.
|
|
275
269
|
*
|
|
276
270
|
* Use of this source code is governed by an MIT-style license that can be
|
|
277
271
|
* found in the LICENSE file at https://angular.io/license
|
|
278
|
-
*/
|
|
279
|
-
var Do=function(){function e(e){this.defaultDoc=e,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert");var t=this.inertDocument.body;if(null==t){var n=this.inertDocument.createElement("html");this.inertDocument.appendChild(n),t=this.inertDocument.createElement("body"),n.appendChild(t)}t.innerHTML='<svg><g onload="this.parentNode.remove()"></g></svg>',!t.querySelector||t.querySelector("svg")?(t.innerHTML='<svg><p><style><img src="</style><img src=x onerror=alert(1)//">',this.getInertBodyElement=t.querySelector&&t.querySelector("svg img")&&function r(){try{return!!window.DOMParser}catch(e){return!1}}
|
|
272
|
+
*/function Kr(e){var t,n,r={};try{for(var o=l(e.split(",")),i=o.next();!i.done;i=o.next())r[i.value]=!0}catch(e){t={error:e}}finally{try{i&&!i.done&&(n=o.return)&&n.call(o)}finally{if(t)throw t.error}}return r}function Gr(){for(var e,t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var o={};try{for(var i=l(n),a=i.next();!a.done;a=i.next()){var u=a.value;for(var s in u)u.hasOwnProperty(s)&&(o[s]=!0)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=i.return)&&t.call(i)}finally{if(e)throw e.error}}return o}var Jr,Yr,$r=Kr("area,br,col,hr,img,wbr"),Xr=Kr("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),eo=Kr("rp,rt"),to=Gr(eo,Xr),no=Gr(Xr,Kr("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),ro=Gr(eo,Kr("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),oo=Gr($r,no,ro,to),io=Kr("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),ao=Kr("srcset"),uo=Kr("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),so=Kr("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext"),lo=Gr(io,ao,uo,so),co=Kr("script,style,template"),fo=function(){function e(){this.sanitizedSomething=!1,this.buf=[]}return e.prototype.sanitizeChildren=function(e){for(var t=e.firstChild,n=!0;t;)if(t.nodeType===Node.ELEMENT_NODE?n=this.startElement(t):t.nodeType===Node.TEXT_NODE?this.chars(t.nodeValue):this.sanitizedSomething=!0,n&&t.firstChild)t=t.firstChild;else for(;t;){t.nodeType===Node.ELEMENT_NODE&&this.endElement(t);var r=this.checkClobberedElement(t,t.nextSibling);if(r){t=r;break}t=this.checkClobberedElement(t,t.parentNode)}return this.buf.join("")},e.prototype.startElement=function(e){var t=e.nodeName.toLowerCase();if(!oo.hasOwnProperty(t))return this.sanitizedSomething=!0,!co.hasOwnProperty(t);this.buf.push("<"),this.buf.push(t);for(var n=e.attributes,r=0;r<n.length;r++){var o=n.item(r),i=o.name,a=i.toLowerCase();if(lo.hasOwnProperty(a)){var u=o.value;io[a]&&(u=Zr(u)),ao[a]&&(u=Wr(u)),this.buf.push(" ",i,'="',vo(u),'"')}else this.sanitizedSomething=!0}return this.buf.push(">"),!0},e.prototype.endElement=function(e){var t=e.nodeName.toLowerCase();oo.hasOwnProperty(t)&&!$r.hasOwnProperty(t)&&(this.buf.push("</"),this.buf.push(t),this.buf.push(">"))},e.prototype.chars=function(e){this.buf.push(vo(e))},e.prototype.checkClobberedElement=function(e,t){if(t&&(e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)===Node.DOCUMENT_POSITION_CONTAINED_BY)throw new Error("Failed to sanitize html because the element is clobbered: "+e.outerHTML);return t},e}(),po=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,ho=/([^\#-~ |!])/g;function vo(e){return e.replace(/&/g,"&").replace(po,(function(e){return"&#"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+";"})).replace(ho,(function(e){return"&#"+e.charCodeAt(0)+";"})).replace(/</g,"<").replace(/>/g,">")}function yo(e,t){var n=null;try{Jr=Jr||new Qr(e);var r=t?String(t):"";n=Jr.getInertBodyElement(r);var o=5,i=r;do{if(0===o)throw new Error("Failed to sanitize html because the input is unstable");o--,r=i,i=n.innerHTML,n=Jr.getInertBodyElement(r)}while(r!==i);var a=new fo,u=a.sanitizeChildren(go(n)||n);return Ur()&&a.sanitizedSomething&&console.warn("WARNING: sanitizing HTML stripped some content, see http://g.co/ng/security#xss"),u}finally{if(n)for(var s=go(n)||n;s.firstChild;)s.removeChild(s.firstChild)}}function go(e){return"content"in e&&function t(e){return e.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===e.nodeName}
|
|
280
273
|
/**
|
|
281
274
|
* @license
|
|
282
275
|
* Copyright Google Inc. All Rights Reserved.
|
|
283
276
|
*
|
|
284
277
|
* Use of this source code is governed by an MIT-style license that can be
|
|
285
278
|
* found in the LICENSE file at https://angular.io/license
|
|
286
|
-
*/()?
|
|
279
|
+
*/(e)?e.content:null}(Yr=e.SecurityContext||(e.SecurityContext={}))[Yr.NONE=0]="NONE",Yr[Yr.HTML=1]="HTML",Yr[Yr.STYLE=2]="STYLE",Yr[Yr.SCRIPT=3]="SCRIPT",Yr[Yr.URL=4]="URL",Yr[Yr.RESOURCE_URL=5]="RESOURCE_URL";
|
|
287
280
|
/**
|
|
288
281
|
* @license
|
|
289
282
|
* Copyright Google Inc. All Rights Reserved.
|
|
290
283
|
*
|
|
291
284
|
* Use of this source code is governed by an MIT-style license that can be
|
|
292
285
|
* found in the LICENSE file at https://angular.io/license
|
|
293
|
-
*/
|
|
286
|
+
*/
|
|
287
|
+
var mo=new RegExp("^([-,.\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\([-0-9.%, #a-zA-Z]+\\))$","g"),_o=/^url\(([^)]+)\)$/;function wo(e){if(!(e=String(e).trim()))return"";var t=e.match(_o);return t&&Zr(t[1])===t[1]||e.match(mo)&&function n(e){for(var t=!0,n=!0,r=0;r<e.length;r++){var o=e.charAt(r);"'"===o&&n?t=!t:'"'===o&&t&&(n=!n)}return t&&n}(e)?e:(Ur()&&console.warn("WARNING: sanitizing unsafe style value "+e+" (see http://g.co/ng/security#xss)."),"unsafe")}
|
|
294
288
|
/**
|
|
295
289
|
* @license
|
|
296
290
|
* Copyright Google Inc. All Rights Reserved.
|
|
297
291
|
*
|
|
298
292
|
* Use of this source code is governed by an MIT-style license that can be
|
|
299
293
|
* found in the LICENSE file at https://angular.io/license
|
|
300
|
-
*/(
|
|
294
|
+
*/function bo(t){var n=To();return n?n.sanitize(e.SecurityContext.HTML,t)||"":Mr(t,"HTML")?Fr(t):yo(Hn(),Yn(t))}function Co(t){var n=To();return n?n.sanitize(e.SecurityContext.STYLE,t)||"":Mr(t,"Style")?Fr(t):wo(Yn(t))}function Io(t){var n=To();return n?n.sanitize(e.SecurityContext.URL,t)||"":Mr(t,"URL")?Fr(t):Zr(Yn(t))}function xo(t){var n=To();if(n)return n.sanitize(e.SecurityContext.RESOURCE_URL,t)||"";if(Mr(t,"ResourceURL"))return Fr(t);throw new Error("unsafe value used in a resource URL context (see http://g.co/ng/security#xss)")}function Eo(t){var n=To();if(n)return n.sanitize(e.SecurityContext.SCRIPT,t)||"";if(Mr(t,"Script"))return Fr(t);throw new Error("unsafe value used in a script context")}function ko(e,t){return"src"===t&&("embed"===e||"frame"===e||"iframe"===e||"media"===e||"script"===e)||"href"===t&&("base"===e||"link"===e)?xo:Io}function Oo(e,t,n){return ko(t,n)(e)}var Po=function(e,t,n){if(void 0===t&&void 0===n)return Co(e);var r=!0;return 1&(n=n||3)&&(r=No(e)),2&n?r?Co(t):Fr(t):r};function No(e){return"background-image"===e||"backgroundImage"===e||"background"===e||"border-image"===e||"borderImage"===e||"border-image-source"===e||"borderImageSource"===e||"filter"===e||"list-style"===e||"listStyle"===e||"list-style-image"===e||"listStyleImage"===e||"clip-path"===e||"clipPath"===e}function To(){var e=Jt();return e&&e[It]}
|
|
301
295
|
/**
|
|
302
296
|
* @license
|
|
303
297
|
* Copyright Google Inc. All Rights Reserved.
|
|
304
298
|
*
|
|
305
299
|
* Use of this source code is governed by an MIT-style license that can be
|
|
306
300
|
* found in the LICENSE file at https://angular.io/license
|
|
307
|
-
*/
|
|
308
|
-
var ii=new RegExp("^([-,.\"'%_!# a-zA-Z0-9]+|(?:(?:matrix|translate|scale|rotate|skew|perspective)(?:X|Y|Z|3d)?|(?:rgb|hsl)a?|(?:repeating-)?(?:linear|radial)-gradient|(?:attr|calc|var))\\([-0-9.%, #a-zA-Z]+\\))$","g"),ai=/^url\(([^)]+)\)$/;function ui(e){if(!(e=String(e).trim()))return"";var t=e.match(ai);return t&&Ro(t[1])===t[1]||e.match(ii)&&function n(e){for(var t=!0,n=!0,r=0;r<e.length;r++){var o=e.charAt(r);"'"===o&&n?t=!t:'"'===o&&t&&(n=!n)}return t&&n}(e)?e:(To()&&console.warn("WARNING: sanitizing unsafe style value "+e+" (see http://g.co/ng/security#xss)."),"unsafe")}
|
|
301
|
+
*/var jo=/([A-Z])/g;function Do(e){try{return null!=e?e.toString().slice(0,30):e}catch(e){return"[ERROR] Exception while trying to serialize the value"}}
|
|
309
302
|
/**
|
|
310
303
|
* @license
|
|
311
304
|
* Copyright Google Inc. All Rights Reserved.
|
|
312
305
|
*
|
|
313
306
|
* Use of this source code is governed by an MIT-style license that can be
|
|
314
307
|
* found in the LICENSE file at https://angular.io/license
|
|
315
|
-
*/
|
|
308
|
+
*/var Ao="__ngContext__";
|
|
316
309
|
/**
|
|
317
310
|
* @license
|
|
318
311
|
* Copyright Google Inc. All Rights Reserved.
|
|
319
312
|
*
|
|
320
313
|
* Use of this source code is governed by an MIT-style license that can be
|
|
321
314
|
* found in the LICENSE file at https://angular.io/license
|
|
322
|
-
*/
|
|
315
|
+
*/function So(e){for(;Array.isArray(e);)e=e[ft];return e}function Ro(e,t){return So(t[e+Tt])}function Vo(e,t){return So(t[e.index])}function Fo(e,t){var n=e.index;return-1!==n?So(t[n]):null}function Mo(e,t){return e.data[t+Tt]}function Ho(e,t){return e[t+Tt]}function Lo(e,t){var n=t[e];return Ft(n)?n:n[ft]}function Bo(e){return e[Ao]||null}function Uo(e){var t=Bo(e);return t?Array.isArray(t)?t:t.lView:null}function Qo(e){return 4==(4&e[pt])}function zo(e){return 128==(128&e[pt])}function qo(e,t){return null===e||null==t?null:e[t]}function Zo(e){e[Nt]=0}function Wo(e){return e[Dt]>>1}
|
|
323
316
|
/**
|
|
324
317
|
* @license
|
|
325
318
|
* Copyright Google Inc. All Rights Reserved.
|
|
326
319
|
*
|
|
327
320
|
* Use of this source code is governed by an MIT-style license that can be
|
|
328
321
|
* found in the LICENSE file at https://angular.io/license
|
|
329
|
-
*/
|
|
322
|
+
*/
|
|
323
|
+
function Ko(e){var t=Bo(e);if(t){if(Array.isArray(t)){var n=t,r=void 0,o=void 0,i=void 0;if(function a(e){return e&&e.constructor&&e.constructor.ɵcmp}(e)){if(-1==(r=ei(n,e)))throw new Error("The provided component was not found in the application");o=e}else if(function u(e){return e&&e.constructor&&e.constructor.ɵdir}(e)){if(-1==(r=function s(e,t){for(var n=e[dt].firstChild;n;){for(var r=n.directiveEnd,o=n.directiveStart;o<r;o++)if(e[o]===t)return n.index;n=Xo(n)}return-1}(n,e)))throw new Error("The provided directive was not found in the application");i=ti(r,n,!1)}else if(-1==(r=$o(n,e)))return null;var l=Bo(y=So(n[r])),c=l&&!Array.isArray(l)?l:Go(n,r,y);if(o&&void 0===c.component&&(c.component=o,Yo(c.component,c)),i&&void 0===c.directives){c.directives=i;for(var f=0;f<i.length;f++)Yo(i[f],c)}Yo(c.native,c),t=c}}else for(var d=e,p=d;p=p.parentNode;){var h=Bo(p);if(h){if(n=void 0,!(n=Array.isArray(h)?h:h.lView))return null;var v=$o(n,d);if(v>=0){var y;Yo(y=So(n[v]),c=Go(n,v,y)),t=c;break}}}return t||null}function Go(e,t,n){return{lView:e,nodeIndex:t,native:n,component:void 0,directives:void 0,localRefs:void 0}}function Jo(e){var t,n=Bo(e);if(Array.isArray(n)){var r=ei(n,e);(o=Go(n,r,(t=Lo(r,n))[ft])).component=e,Yo(e,o),Yo(o.native,o)}else{var o;t=Lo((o=n).nodeIndex,o.lView)}return t}function Yo(e,t){e[Ao]=t}function $o(e,t){for(var n=e[dt].firstChild;n;){if(Fo(n,e)===t)return n.index;n=Xo(n)}return-1}function Xo(e){if(e.child)return e.child;if(e.next)return e.next;for(;e.parent&&!e.parent.next;)e=e.parent;return e.parent&&e.parent.next}function ei(e,t){var n=e[dt].components;if(n)for(var r=0;r<n.length;r++){var o=n[r];if(Lo(o,e)[_t]===t)return o}else if(Lo(Tt,e)[_t]===t)return Tt;return-1}function ti(e,t,n){var r=t[dt].data[e],o=r.directiveStart;return 0==o?Ke:(!n&&2&r.flags&&o++,t.slice(o,r.directiveEnd))}function ni(e){throw new Error("Multiple components match node with tagname "+e.tagName)}function ri(){throw new Error("Cannot mix multi providers and regular providers")}
|
|
330
324
|
/**
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
325
|
+
* @license
|
|
326
|
+
* Copyright Google Inc. All Rights Reserved.
|
|
327
|
+
*
|
|
328
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
329
|
+
* found in the LICENSE file at https://angular.io/license
|
|
330
|
+
*/
|
|
331
|
+
function oi(e,t,n){for(var r=e.length;;){var o=e.indexOf(t,n);if(-1===o)return o;if(0===o||e.charCodeAt(o-1)<=32){var i=t.length;if(o+i===r||e.charCodeAt(o+i)<=32)return o}n=o+1}}
|
|
337
332
|
/**
|
|
338
333
|
* @license
|
|
339
334
|
* Copyright Google Inc. All Rights Reserved.
|
|
340
335
|
*
|
|
341
336
|
* Use of this source code is governed by an MIT-style license that can be
|
|
342
337
|
* found in the LICENSE file at https://angular.io/license
|
|
343
|
-
*/
|
|
344
|
-
function Ai(e){var t=Oi(e);if(t){if(Array.isArray(t)){var n=t,r=void 0,o=void 0,i=void 0;if(function a(e){return e&&e.constructor&&e.constructor.ɵcmp}(e)){if(-1==(r=Hi(n,e)))throw new Error("The provided component was not found in the application");o=e}else if(function u(e){return e&&e.constructor&&e.constructor.ɵdir}(e)){if(-1==(r=function s(e,t){for(var n=e[st].firstChild;n;){for(var r=n.directiveEnd,o=n.directiveStart;o<r;o++)if(e[o]===t)return n.index;n=Fi(n)}return-1}(n,e)))throw new Error("The provided directive was not found in the application");i=Li(r,n,!1)}else if(-1==(r=Mi(n,e)))return null;var l=Oi(y=wi(n[r])),c=l&&!Array.isArray(l)?l:Ri(n,r,y);if(o&&void 0===c.component&&(c.component=o,Vi(c.component,c)),i&&void 0===c.directives){c.directives=i;for(var f=0;f<i.length;f++)Vi(i[f],c)}Vi(c.native,c),t=c}}else for(var d=e,p=d;p=p.parentNode;){var h=Oi(p);if(h){if(n=void 0,!(n=Array.isArray(h)?h:h.lView))return null;var v=Mi(n,d);if(v>=0){var y;Vi(y=wi(n[v]),c=Ri(n,v,y)),t=c;break}}}return t||null}function Ri(e,t,n){return{lView:e,nodeIndex:t,native:n,component:void 0,directives:void 0,localRefs:void 0}}function Si(e){var t,n=Oi(e);if(Array.isArray(n)){var r=Hi(n,e);(o=Ri(n,r,(t=ki(r,n))[ut])).component=e,Vi(e,o),Vi(o.native,o)}else{var o;t=ki((o=n).nodeIndex,o.lView)}return t}function Vi(e,t){e[_i]=t}function Mi(e,t){for(var n=e[st].firstChild;n;){if(Ii(n,e)===t)return n.index;n=Fi(n)}return-1}function Fi(e){if(e.child)return e.child;if(e.next)return e.next;for(;e.parent&&!e.parent.next;)e=e.parent;return e.parent&&e.parent.next}function Hi(e,t){var n=e[st].components;if(n)for(var r=0;r<n.length;r++){var o=n[r];if(ki(o,e)[vt]===t)return o}else if(ki(kt,e)[vt]===t)return kt;return-1}function Li(e,t,n){var r=t[st].data[e],o=r.directiveStart;return 0==o?Qe:(!n&&2&r.flags&&o++,t.slice(o,r.directiveEnd))}function Bi(e){throw new Error("Multiple components match node with tagname "+e.tagName)}function Ui(){throw new Error("Cannot mix multi providers and regular providers")}var zi="ng-template";
|
|
338
|
+
*/var ii="ng-template";function ai(e,t,n){for(var r=0;r<e.length;){var o=e[r++];if(n&&"class"===o){if(-1!==oi((o=e[r]).toLowerCase(),t,0))return!0}else if(1===o){for(;r<e.length&&"string"==typeof(o=e[r++]);)if(o.toLowerCase()===t)return!0;return!1}}return!1}function ui(e,t,n){return t===(0!==e.type||n?e.tagName:ii)}function si(e,t,n){for(var r=4,o=e.attrs||[],i=function a(e){for(var t=0;t<e.length;t++)if(Qn(e[t]))return t;return e.length}(o),u=!1,s=0;s<t.length;s++){var l=t[s];if("number"!=typeof l){if(!u)if(4&r){if(r=2|1&r,""!==l&&!ui(e,l,n)||""===l&&1===t.length){if(li(r))return!1;u=!0}}else{var c=8&r?l:t[++s];if(8&r&&null!==e.attrs){if(!ai(e.attrs,c,n)){if(li(r))return!1;u=!0}continue}var f=ci(8&r?"class":l,o,0==e.type&&e.tagName!==ii,n);if(-1===f){if(li(r))return!1;u=!0;continue}if(""!==c){var d;d=f>i?"":o[f+1].toLowerCase();var p=8&r?d:null;if(p&&-1!==oi(p,c,0)||2&r&&c!==d){if(li(r))return!1;u=!0}}}}else{if(!u&&!li(r)&&!li(l))return!1;if(u&&li(l))continue;u=!1,r=l|1&r}}return li(r)||u}function li(e){return 0==(1&e)}function ci(e,t,n,r){if(null===t)return-1;var o=0;if(r||!n){for(var i=!1;o<t.length;){var a=t[o];if(a===e)return o;if(3===a||6===a)i=!0;else{if(1===a||2===a){for(var u=t[++o];"string"==typeof u;)u=t[++o];continue}if(4===a)break;if(0===a){o+=4;continue}}o+=i?1:2}return-1}return function s(e,t){var n=e.indexOf(4);if(n>-1)for(n++;n<e.length;){if(e[n]===t)return n;n++}return-1}(t,e)}function fi(e,t,n){void 0===n&&(n=!1);for(var r=0;r<t.length;r++)if(si(e,t[r],n))return!0;return!1}function di(e,t){e:for(var n=0;n<t.length;n++){var r=t[n];if(e.length===r.length){for(var o=0;o<e.length;o++)if(e[o]!==r[o])continue e;return!0}}return!1}function pi(e,t){return e?":not("+t.trim()+")":t}function hi(e){for(var t=e[0],n=1,r=2,o="",i=!1;n<e.length;){var a=e[n];if("string"==typeof a)if(2&r){var u=e[++n];o+="["+a+(u.length>0?'="'+u+'"':"")+"]"}else 8&r?o+="."+a:4&r&&(o+=" "+a);else""===o||li(a)||(t+=pi(i,o),o=""),r=a,i=i||!li(r);n++}return""!==o&&(t+=pi(i,o)),t}
|
|
345
339
|
/**
|
|
346
340
|
* @license
|
|
347
341
|
* Copyright Google Inc. All Rights Reserved.
|
|
348
342
|
*
|
|
349
343
|
* Use of this source code is governed by an MIT-style license that can be
|
|
350
344
|
* found in the LICENSE file at https://angular.io/license
|
|
351
|
-
*/
|
|
352
|
-
|
|
353
|
-
* @license
|
|
354
|
-
* Copyright Google Inc. All Rights Reserved.
|
|
355
|
-
*
|
|
356
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
357
|
-
* found in the LICENSE file at https://angular.io/license
|
|
358
|
-
*/
|
|
359
|
-
var ta={},na=0;function ra(e,t,n,r,o,i,a,u,s,l){var c=!i,f=ea(r,o),d=c?na:f.classesIndex++;return!(!l&&u===hr||!ia(e,t,n,d,f.sourceIndex,i,a,u,s,!1,l,!0)&&!s||(f.classesBitMask|=1<<d,0))}function oa(e,t,n,r,o,i,a,u,s,l,c){var f=!i,d=ea(r,o),p=f?na:d.stylesIndex++;if(c||u!==hr){var h=!!f||!!s&&s(i,null,1);if(ia(e,t,n,p,d.sourceIndex,i,a,u,l,h,c,!1)||l)return d.stylesBitMask|=1<<p,!0}return!1}function ia(e,t,n,r,o,i,a,u,s,l,c,f){var d=Gr(o),p=f?4096:131072;c&&aa(e,t,r,o,i,a,l,f);var h=s||Sr(n[a],u);return h&&(jr(n,a,u),Cr(t,p)&&!d&&(!i||!u)&&function v(e,t,n,r,o){var i,a=Pr(e);if(null!==r&&Cr(t,o?4096:131072)){for(var u=4+a,s=2,l=!1;s<e.length;){if(Er(e,s)===r){l=!0;break}s+=u}if(l)for(var c=(i=s+4)+a-1,f=i+1;f<c;f++){var d=e[f];0!==d&&jr(n,d,null)}}if(Cr(t,o?512:16384))for(c=(i=6)+a-1,s=i+1;s<c;s++){var p=Ar(n,e[s]);p&&(p[0]=qr)}}(e,t,n,i,f)),h}function aa(e,t,n,r,o,i,a,u){var s=!1;o=o||vr;for(var l=Nr(e);l<=r;)la(e),l++;for(var c=u?8192:262144,f="number"==typeof i,d=4+Pr(e),p=2;p<e.length;){var h=Er(e,p);if(o<=h){o<h?ua(e,p,o,a):f&&xr(t,c),sa(e,p,i,n,r),s=!0;break}p+=d}s||(ua(e,e.length,o,a),sa(e,p,i,n,r))}function ua(e,t,n,r){e.splice(t,0,r?1:0,wr,wr,n),t+=4;for(var o=Nr(e),i=0;i<o;i++)e.splice(t,0,mr),t++;e.splice(t,0,gr)}function sa(e,t,n,r,o){if("number"==typeof n){var i=Gr(o);e[t+4+o]=n,function a(e,t,n,r){e[t+(r?2:1)]=n}(e,t,Or(e,t,i)|1<<r,i)}else null!==n&&null===Dr(e,t)&&function u(e,t,n){e[t+4+Nr(e)]=n}(e,t,n)}function la(e){for(var t=4+Pr(e)-1,n=2;n<e.length;)n+=t,e.splice(n++,0,mr),n++;e[0]++}function ca(e,t,n){!function r(e,t,n,o){for(var i=!1,a=1;a<n.length;a+=2){var u=Wr(n,a);u&&(aa(e,t,-1,0,Qr(n,a),u,!1,o),i=!0)}i&&xr(t,256)}(e,t,Hr(e),n)}function fa(e,t,n,r,o,i,a,u,s,l){var c=function f(e){return!0===e?-1:!1===e?0:e}(i),d=null,p=!1;Cr(t,l?512:16384)&&(d=function h(){return va}(),p=0!=(c&Or(e,2,s)));var v=Pr(e),y=1,g=p?1:0;s&&(g|=8,y=v-1);for(var m=Rr(e,t,l);m<e.length;){if(c&Or(e,m,s)){for(var _=!1,w=Er(e,m),b=Dr(e,m),C=0;C<y;C++){var I=Tr(e,m,C);if(!_&&0!==I){var x=Ar(o,I);Vr(x)&&(s&&0===C||a(n,r,w,u&&kr(e,m)?u(w,x,2):fr(x),I),_=!0)}if(d){var E=g|(_?4:2);s&&0===C&&(E|=16);var k=d(e,n,r,o,C,a,u,E,w,b);_=_||k}}_||a(n,r,w,b)}m+=4+v}d&&(s&&(g|=16),d(e,n,r,o,0,a,u,g))}function da(e,t,n,r,o){var i;return r?(i="string"==typeof n?n:function a(e){var t="";if(e)for(var n in e)e[n]&&(t+=(t.length?" ":"")+n);return t}(n),null!==o&&(i=Mr(o,i," ")),ma(e,t,i)):(i=Kr(n,!0),null!==o&&(i=o+";"+i),_a(e,t,i)),i}function pa(e,t,n,r,o,i,a){var u=fr(r);return!!Vr(u)&&(o(e,t,n,u=a?a(n,r,3):u,i),!0)}function ha(e,t,n,r,o,i,a){for(var u=1;u<r.length;u+=2){var s=Qr(r,u);if(s===o){var l=Wr(r,u);return n(e,t,o,l=a?a(o,l,3):l,i),!0}if(s>o)break}return!1}var va=null,ya=function(e,t,n,r){var o;null!==e&&(Vr(r)?(r=r.toString(),zn(e)?e.setStyle(t,n,r,Sn.DashCase):null!=(o=t.style)&&o.setProperty(n,r)):zn(e)?e.removeStyle(t,n,Sn.DashCase):null!=(o=t.style)&&o.removeProperty(n))},ga=function(e,t,n,r){var o;null!==e&&""!==n&&(r?zn(e)?e.addClass(t,n):null!=(o=t.classList)&&o.add(n):zn(e)?e.removeClass(t,n):null!=(o=t.classList)&&o.remove(n))},ma=function(e,t,n){null!==e&&(zn(e)?e.setAttribute(t,"class",n):t.className=n)},_a=function(e,t,n){null!==e&&(zn(e)?e.setAttribute(t,"style",n):t.setAttribute("style",n))};function wa(e,t,n,r){var o=Hr(n);if(o)for(var i=1;i<o.length;i+=2){var a=Qr(o,i),u=Wr(o,i);r?ga(e,t,a,u,null):ya(e,t,a,u,null)}}
|
|
345
|
+
*/
|
|
346
|
+
var vi={};
|
|
360
347
|
/**
|
|
361
348
|
* @license
|
|
362
349
|
* Copyright Google Inc. All Rights Reserved.
|
|
363
350
|
*
|
|
364
351
|
* Use of this source code is governed by an MIT-style license that can be
|
|
365
352
|
* found in the LICENSE file at https://angular.io/license
|
|
366
|
-
*/
|
|
367
|
-
function ba(e){var t=e[ct];return Rt(t)?t[ct]:t}function Ca(e){return function t(e){for(var t=At(e)?e:Pi(e);t&&!(512&t[lt]);)t=ba(t);return t}(e)[vt]}
|
|
353
|
+
*/function yi(e){var t=e[ht];return Mt(t)?t[ht]:t}function gi(e){return function t(e){for(var t=Ft(e)?e:Uo(e);t&&!(512&t[pt]);)t=yi(t);return t}(e)[_t]}
|
|
368
354
|
/**
|
|
369
355
|
* @license
|
|
370
356
|
* Copyright Google Inc. All Rights Reserved.
|
|
371
357
|
*
|
|
372
358
|
* Use of this source code is governed by an MIT-style license that can be
|
|
373
359
|
* found in the LICENSE file at https://angular.io/license
|
|
374
|
-
*/function
|
|
360
|
+
*/function mi(e){wi(Yt(),Jt(),bn()+e,rn())}function _i(e){wi(Yt(),Jt(),e,rn())}function wi(e,t,n,r){if(!r)if(3==(3&t[pt])){var o=e.preOrderCheckHooks;null!==o&&On(t,o,n)}else{var i=e.preOrderHooks;null!==i&&Pn(t,i,0,n)}Cn(n)}
|
|
375
361
|
/**
|
|
376
362
|
* @license
|
|
377
363
|
* Copyright Google Inc. All Rights Reserved.
|
|
378
364
|
*
|
|
379
365
|
* Use of this source code is governed by an MIT-style license that can be
|
|
380
366
|
* found in the LICENSE file at https://angular.io/license
|
|
381
|
-
*/var
|
|
367
|
+
*/var bi={marker:"element"},Ci={marker:"comment"};
|
|
382
368
|
/**
|
|
383
369
|
* @license
|
|
384
370
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -386,28 +372,21 @@ function ba(e){var t=e[ct];return Rt(t)?t[ct]:t}function Ca(e){return function t
|
|
|
386
372
|
* Use of this source code is governed by an MIT-style license that can be
|
|
387
373
|
* found in the LICENSE file at https://angular.io/license
|
|
388
374
|
*/
|
|
389
|
-
function Pa(){!function e(t){va=t}(Na)}var Na=function(e,t,n,r,o,i,a,u,s,l){var c=!1;if(Pr(e)){var f=!0,d=!s;d&&0==(1&u)&&(f=!1,c=!0),f&&(c=function e(t,n,r,o,i,a,u,s,l,c){var f=Pr(t)-1-1,d=l<f&&0!=(8&u),p=0!=(16&u);p&&(u&=-17);var h=!1;if(l<=f){var v=function y(e){return e>=ja.length&&ja.push(1),ja[e]}(l),g=Tr(t,2,l),m=Ar(o,g);if(m){for(;v<m.length;){var _=Qr(m,v),w=s&&_>s,b=!w&&_===s,C=Wr(m,v),I=Vr(C),x=w?u:Ta(u,I,b),E=!!d&&e(t,n,r,o,i,a,x,w?s:_,l+1,c);if(w){h||(h=E);break}if(!E&&Da(u,b)&&(E=!0,!p)){var k=b?g:null;i(n,r,_,b&&!I?c:a?a(_,C,3):C?fr(C):null,k)}h=E&&b,v+=2}!function O(e,t){ja[e]=t}(l,v),!d||1!==m.length&&s||(h=e(t,n,r,o,i,a,u,s,l+1,c))}else d&&(h=e(t,n,r,o,i,a,u,s,l+1,c))}return h}(e,t,n,r,i,a,u,s||null,o,l||null)),d&&function p(){for(var e=0;e<ja.length;e++)ja[e]=1}()}return c};function Ta(e,t,n){var r=e;return!t&&(n?2&e:1&e)?(r|=2,r&=-5):(r|=4,r&=-3),r}function Da(e,t){var n=0!=(1&e);return n?4&e&&t&&(n=!1):2&e&&(n=t),n}var ja=[],Aa=function(){function e(e,t,n){this.context=e,this._tNode=t,this._isClassBased=n}return Object.defineProperty(e.prototype,"config",{get:function(){return Fa(this._tNode,this._isClassBased)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"entries",{get:function(){for(var e=this.context,t=Pr(e),n={},r=Rr(e,this._tNode,this._isClassBased);r<e.length;){for(var o=Er(e,r),i=Or(e,r,!1),a=Or(e,r,!0),u=Dr(e,r),s=kr(e,r),l=r+4,c=[],f=0;f<t;f++){var d=e[l+f];0!==d&&c.push(d)}n[o]={prop:o,templateBitMask:i,hostBindingsBitMask:a,sanitizationRequired:s,valuesCount:c.length,defaultValue:u,sources:c},r+=4+t}return n},enumerable:!0,configurable:!0}),e.prototype.printSources=function(){for(var e="\n",t=this.context,n=this._isClassBased?"class":"style",r=[],o=Pr(t),i=4+o,a=0;a<o;a++){for(var u=a===o-1,s=a!==yr,l=Sa(a,o),c=[],f=2;f<t.length;){var d=Tr(t,f,a);if(u||d>0){var p=Or(t,f,s),h=u?-1:d,v=Er(t,f);c.push({binding:n+(v===vr?"":"."+v),value:d,bindingIndex:h,bitMask:p})}f+=i}r.push({type:l,entries:c.sort((function(e,t){return e.bindingIndex-t.bindingIndex}))})}r.forEach((function(t){e+="["+t.type.toUpperCase()+"]\n",e+=Va("-",t.type.length+2)+"\n",t.entries.forEach((function(t){var n=t.value;"number"!=typeof t.value&&null===n||(e+=" ["+t.binding+"] = `"+n+"`",e+="\n")})),e+="\n"})),console.log(e)},e.prototype.printTable=function(){if(!console.table)throw new Error("This feature is not supported in your browser");for(var e=this.context,t=[],n=Pr(e),r=4+n,o=Math.floor(e.length/r),i=2;i<e.length;){for(var a=Er(e,i),u=a===vr,s={prop:a,"tpl mask":Ra(Or(e,i,!1),u,o),"host mask":Ra(Or(e,i,!0),u,o)},l=0;l<n;l++){var c=Sa(l,n),f=Tr(e,i,l);s[c]=f}i+=r,t.push(s)}console.table(t)},e}();function Ra(e,t,n){return t||e>1?"0b"+function r(e,t,n){return Va(n,t-e.length)+e}(e.toString(2),n,"0"):null}function Sa(e,t){return e===yr?"template":e===t-1?"defaults":"dir #"+e}function Va(e,t){for(var n="",r=0;r<t;r++)n+=e;return n}var Ma=function(){function e(e,t,n,r){this._tNode=t,this._data=n,this._isClassBased=r,this._sanitizer=null,this._debugContext=Lr(e)?new Aa(e,t,r):e}return Object.defineProperty(e.prototype,"context",{get:function(){return this._debugContext},enumerable:!0,configurable:!0}),e.prototype.overrideSanitizer=function(e){this._sanitizer=e},Object.defineProperty(e.prototype,"summary",{get:function(){var e={},t=this.config,n=this._data;return t.allowDirectStyling&&t.hasMapBindings&&(n=n.concat([]),this._convertMapBindingsToStylingMapArrays(n)),this._mapValues(n,(function(t,n,r){e[t]={prop:t,value:n,bindingIndex:r}})),e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"config",{get:function(){return Fa(this._tNode,this._isClassBased)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"values",{get:function(){var e={},t=this.config,n=this._data;return t.allowDirectStyling&&t.hasMapBindings&&(n=n.concat([]),this._convertMapBindingsToStylingMapArrays(n)),this._mapValues(n,(function(t,n){e[t]=n})),e},enumerable:!0,configurable:!0}),e.prototype._convertMapBindingsToStylingMapArrays=function(e){for(var t=this.context.context,n=Rr(t,this._tNode,this._isClassBased),r=6;r<n;r++){var o=t[r],i=0!==o?Ar(e,o):null;i&&!Array.isArray(i)&&jr(e,o,$r(null,i,!this._isClassBased))}},e.prototype._mapValues=function(e,t){var n={};Cr(this._tNode,this._isClassBased?512:16384)&&Pa();var r=function(e,n,r,o,i){return t(r,o,i||null)},o=this._isClassBased?null:this._sanitizer||Pn();fa(this.context.context,this._tNode,null,n,e,!0,r,o,!1,this._isClassBased),fa(this.context.context,this._tNode,null,n,e,!0,r,o,!0,this._isClassBased)},e}();function Fa(e,t){return{hasMapBindings:Cr(e,t?512:16384),hasPropBindings:Cr(e,t?1024:32768),hasCollisions:Cr(e,t?8192:262144),hasTemplateBindings:Cr(e,t?2048:65536),hasHostBindings:Cr(e,t?4096:131072),allowDirectStyling:Ir(e,t,!1)}}
|
|
390
|
-
/**
|
|
391
|
-
* @license
|
|
392
|
-
* Copyright Google Inc. All Rights Reserved.
|
|
393
|
-
*
|
|
394
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
395
|
-
* found in the LICENSE file at https://angular.io/license
|
|
396
|
-
*/function Ha(e,t){for(;e;)t.push(e.template_),e=e.next}function La(e){if(e){var t=e.debug;return Be(t,"Object does not have a debug representation."),t}return e}function Ba(e,t){void 0===t&&(t=!1);var n=wi(e);if(n){var r=n.nodeType===Node.TEXT_NODE,o=(r?n.textContent:n.outerHTML)||"";return t||r?o:o.split(">"+n.innerHTML+"<")[0]+">"}return null}function Ua(e,t){if(e){for(var n=[],r=e;r;)n.push(za(r,t,r.index)),r=r.next;return n}return null}function za(e,t,n){var r=t[n],o=wi(r),i=La(function a(e){for(;Array.isArray(e);){if(e.length>=kt-1)return e;e=e[ut]}return null}(r)),u=Lr(e.styles)?new Ma(e.styles,e,t,!1):null,s=Lr(e.classes)?new Ma(e.classes,e,t,!0):null;return{html:Ba(o),native:o,styles:u,classes:s,nodes:Ua(e.child,t),component:i}}Object.defineProperty(function Qa(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m,_,w,b,C,I,x,E,k,O,P,N){this.type=e,this.id=t,this.blueprint=n,this.template=r,this.queries=o,this.viewQuery=i,this.node=a,this.data=u,this.bindingStartIndex=s,this.expandoStartIndex=l,this.expandoInstructions=c,this.firstCreatePass=f,this.firstUpdatePass=d,this.staticViewQueries=p,this.staticContentQueries=h,this.preOrderHooks=v,this.preOrderCheckHooks=y,this.contentHooks=g,this.contentCheckHooks=m,this.viewHooks=_,this.viewCheckHooks=w,this.destroyHooks=b,this.cleanup=C,this.contentQueries=I,this.components=x,this.directiveRegistry=E,this.pipeRegistry=k,this.firstChild=O,this.schemas=P,this.consts=N}.prototype,"template_",{get:function(){var e=[];return Ha(this.firstChild,e),e.join("")},enumerable:!0,configurable:!0}),function(){function e(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m,_,w,b,C){this.tView_=e,this.type=t,this.index=n,this.injectorIndex=r,this.directiveStart=o,this.directiveEnd=i,this.propertyBindings=a,this.flags=u,this.providerIndexes=s,this.tagName=l,this.attrs=c,this.localNames=f,this.initialInputs=d,this.inputs=p,this.outputs=h,this.tViews=v,this.next=y,this.projectionNext=g,this.child=m,this.parent=_,this.projection=w,this.styles=b,this.classes=C}Object.defineProperty(e.prototype,"type_",{get:function(){switch(this.type){case 0:return"TNodeType.Container";case 3:return"TNodeType.Element";case 4:return"TNodeType.ElementContainer";case 5:return"TNodeType.IcuContainer";case 1:return"TNodeType.Projection";case 2:return"TNodeType.View";default:return"TNodeType.???"}},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"flags_",{get:function(){var e=[];return 16&this.flags&&e.push("TNodeFlags.hasClassInput"),8&this.flags&&e.push("TNodeFlags.hasContentQuery"),32&this.flags&&e.push("TNodeFlags.hasStyleInput"),256&this.flags&&e.push("TNodeFlags.hasInitialStyling"),128&this.flags&&e.push("TNodeFlags.hasHostBindings"),2&this.flags&&e.push("TNodeFlags.isComponentHost"),1&this.flags&&e.push("TNodeFlags.isDirectiveHost"),64&this.flags&&e.push("TNodeFlags.isDetached"),4&this.flags&&e.push("TNodeFlags.isProjected"),e.join("|")},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"template_",{get:function(){var e=[];if(e.push("<",this.tagName||this.type_),this.attrs)for(var t=0;t<this.attrs.length;){var n=this.attrs[t++];if("number"==typeof n)break;var r=this.attrs[t++];e.push(" ",n,'="',r,'"')}return e.push(">"),Ha(this.child,e),e.push("</",this.tagName||this.type_,">"),e.join("")},enumerable:!0,configurable:!0})}(),function(){function e(e){this._raw_lView=e}Object.defineProperty(e.prototype,"flags",{get:function(){var e=this._raw_lView[lt];return{__raw__flags__:e,initPhaseState:3&e,creationMode:!!(4&e),firstViewPass:!!(8&e),checkAlways:!!(16&e),dirty:!!(64&e),attached:!!(128&e),destroyed:!!(256&e),isRoot:!!(512&e),indexWithinInitPhase:e>>10}},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parent",{get:function(){return La(this._raw_lView[ct])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"host",{get:function(){return Ba(this._raw_lView[ut],!0)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"html",{get:function(){return(this.nodes||[]).map((function(e){return Ba(e.native,!0)})).join("")},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._raw_lView[vt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"nodes",{get:function(){var e=this._raw_lView;return Ua(e[st].firstChild,e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"tView",{get:function(){return this._raw_lView[st]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"cleanup",{get:function(){return this._raw_lView[ht]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return this._raw_lView[yt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"rendererFactory",{get:function(){return this._raw_lView[gt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"renderer",{get:function(){return this._raw_lView[mt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"sanitizer",{get:function(){return this._raw_lView[_t]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"childHead",{get:function(){return La(this._raw_lView[wt])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"next",{get:function(){return La(this._raw_lView[ft])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"childTail",{get:function(){return La(this._raw_lView[bt])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"declarationView",{get:function(){return La(this._raw_lView[Ct])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"queries",{get:function(){return this._raw_lView[dt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"tHost",{get:function(){return this._raw_lView[pt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"childViews",{get:function(){for(var e=[],t=this.childHead;t;)e.push(t),t=t.next;return e},enumerable:!0,configurable:!0})}(),function(){function e(e){this._raw_lContainer=e}Object.defineProperty(e.prototype,"activeIndex",{get:function(){return ji(this._raw_lContainer)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hasTransplantedViews",{get:function(){return 1==(1&this._raw_lContainer[Pt])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"views",{get:function(){return this._raw_lContainer.slice(jt).map(La)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parent",{get:function(){return La(this._raw_lContainer[ct])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"movedViews",{get:function(){return this._raw_lContainer[Nt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"host",{get:function(){return this._raw_lContainer[ut]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"native",{get:function(){return this._raw_lContainer[Tt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"next",{get:function(){return La(this._raw_lContainer[ft])},enumerable:!0,configurable:!0})}();var qa=function(){function e(e,t,n,r){this.__raw_opCode=e,this._lView=t,this.nodeIndex=n,this.type=r}return Object.defineProperty(e.prototype,"tNode",{get:function(){return xi(this.nodeIndex,this._lView)},enumerable:!0,configurable:!0}),e}();Object.defineProperty(function Za(e,t){this.__raw_opCodes=e,this.__lView=t}.prototype,"operations",{get:function(){for(var e=this.__lView,t=this.__raw_opCodes,n=[],r=0;r<t.length;r++){var o=t[r],i=void 0;if("string"==typeof o&&(i={__raw_opCode:o,type:"Create Text Node",nodeIndex:t[++r],text:o}),"number"==typeof o)switch(7&o){case 1:i=new qa(o,e,o>>>17,"AppendChild");break;case 0:i=new qa(o,e,o>>>3,"Select");break;case 5:var a=o>>>3;i=new qa(o,e,a,"ElementEnd");break;case 4:(i=new qa(o,e,a=o>>>3,"Attr")).attrName=t[++r],i.attrValue=t[++r]}if(!i)switch(o){case Oa:i={__raw_opCode:o,type:"COMMENT_MARKER",commentValue:t[++r],nodeIndex:t[++r]};break;case ka:i={__raw_opCode:o,type:"ELEMENT_MARKER"}}i||(i={__raw_opCode:o,type:"Unknown Op Code",code:o}),n.push(i)}return n},enumerable:!0,configurable:!0}),Object.defineProperty(function Wa(e,t,n){this.__raw_opCodes=e,this.icus=t,this.__lView=n}.prototype,"operations",{get:function(){for(var e=this.__lView,t=this.__raw_opCodes,n=this.icus,r=[],o=0;o<t.length;o++){for(var i=t[o],a=t[++o],u="",s=o+1;s<=o+a;s++){var l=t[s];if("string"==typeof l)u+=l;else if("number"==typeof l)if(l<0)u+="�"+(-l-1)+"�";else{var c=l>>>2,f=void 0,d=void 0;switch(3&l){case 1:var p=t[++s],h=t[++s];r.push({__raw_opCode:l,checkBit:i,type:"Attr",attrValue:u,attrName:p,sanitizeFn:h});break;case 0:r.push({__raw_opCode:l,checkBit:i,type:"Text",nodeIndex:c,text:u});break;case 2:d=n[f=t[++s]];var v=new qa(l,e,c,"IcuSwitch");v.tIcuIndex=f,v.checkBit=i,v.mainBinding=u,v.tIcu=d,r.push(v);break;case 3:d=n[f=t[++s]],(v=new qa(l,e,c,"IcuUpdate")).tIcuIndex=f,v.checkBit=i,v.tIcu=d,r.push(v)}}}o+=a}return r},enumerable:!0,configurable:!0});var Ka=Promise.resolve(null);function Ga(e,t){var n=e.contentQueries;if(null!==n)for(var r=0;r<n.length;r+=2){var o=n[r+1];if(-1!==o){var i=e.data[o];pn(n[r]),i.contentQueries(2,t[o],o)}}}function Ja(e,t,n){return zn(t)?t.createElement(e,n):null===n?t.createElement(e):t.createElementNS(n,e)}function Ya(e,t,n,r,o,i,a,u,s,l){var c=t.blueprint.slice();return c[ut]=o,c[lt]=140|r,Di(c),c[ct]=c[Ct]=e,c[vt]=n,c[gt]=a||e&&e[gt],c[mt]=u||e&&e[mt],c[_t]=s||e&&e[_t]||null,c[yt]=l||e&&e[yt]||null,c[pt]=i,c[It]=2==t.type?e[It]:c,c}function $a(e,t,n,r,o,i){var a=n+kt,u=e.data[a]||function s(e,t,n,r,o,i){var a=Xt(),u=tn(),s=u?a:a&&a.parent,l=e.data[n]=cu(0,s&&s!==t?s:null,r,n,o,i);return null===e.firstChild&&(e.firstChild=l),a&&(!u||null!=a.child||null===l.parent&&2!==a.type?u||(a.next=l):a.child=l),l}(e,t,a,r,o,i);return en(u,!0),u}function Xa(e,t,n,r){var o=e.node;return null==o&&(e.node=o=cu(0,t,2,n,null,null)),r[pt]=o}function eu(e,t,n){yn(e,e[pt]);try{var r=t.viewQuery;null!==r&&Au(1,r,n);var o=t.template;null!==o&&ru(e,o,1,n),t.firstCreatePass&&(t.firstCreatePass=!1),t.staticContentQueries&&Ga(t,e),t.staticViewQueries&&Au(2,t.viewQuery,n);var i=t.components;null!==i&&function a(e,t){for(var n=0;n<t.length;n++)Ou(e,t[n])}(e,i)}finally{e[lt]&=-5,wn()}}function tu(e,t,n,r){var o=e[lt];if(256!=(256&o)){yn(e,e[pt]);try{Di(e),sn(t.bindingStartIndex),null!==n&&ru(e,n,2,r);var i=rn(),a=3==(3&o);if(!i)if(a){var u=t.preOrderCheckHooks;null!==u&&Tn(e,u,null)}else{var s=t.preOrderHooks;null!==s&&Dn(e,s,0,null),jn(e,0)}if(function l(e){for(var t=e[wt];null!==t;){var n=void 0;if(Rt(t)&&(n=t[Pt])>>1==-1){for(var r=jt;r<t.length;r++){var o=t[r],i=o[st];tu(o,i,i.template,o[vt])}0!=(1&n)&&Eu(t,e[It])}t=t[ft]}}(e),null!==t.contentQueries&&Ga(t,e),!i)if(a){var c=t.contentCheckHooks;null!==c&&Tn(e,c)}else{var f=t.contentHooks;null!==f&&Dn(e,f,1),jn(e,1)}!function d(e,t){var n=Cn();try{var r=e.expandoInstructions;if(null!==r){var o=sn(e.expandoStartIndex);fn(o);for(var i=-1,a=-1,u=0;u<r.length;u++){var s=r[u];if("number"==typeof s){if(s<=0){Wt(a=-s);var l=r[++u];i=o+=Fn+l}else o+=s;fn(o)}else null!==s&&(Yt(),sn(o),s(2,wi(t[i]),a)),i++}}}finally{Wt(n)}}(t,e);var p=t.components;null!==p&&function h(e,t){for(var n=0;n<t.length;n++)ku(e,t[n])}(e,p);var v=t.viewQuery;if(null!==v&&Au(2,v,r),!i)if(a){var y=t.viewCheckHooks;null!==y&&Tn(e,y)}else{var g=t.viewHooks;null!==g&&Dn(e,g,2),jn(e,2)}}finally{!0===t.firstUpdatePass&&(t.firstUpdatePass=!1),e[lt]&=-73,_n()}}}function nu(e,t,n){var r=e[gt],o=!rn(),i=Ni(e);try{o&&!i&&r.begin&&r.begin();var a=e[st];i&&eu(e,a,n),tu(e,a,t,n)}finally{o&&!i&&r.end&&r.end()}}function ru(e,t,n,r){var o=Cn();try{Wt(null),2&n&&e.length>kt&&Ea(e,0,rn()),t(n,r)}finally{Zt(1)&&Kt(),In(o)}}function ou(e,t,n){if(St(t))for(var r=t.directiveEnd,o=t.directiveStart;o<r;o++){var i=e.data[o];i.contentQueries&&i.contentQueries(1,n[o],o)}}function iu(e,t,n){Ut()&&(function r(e,t,n,o){var i=n.directiveStart,a=n.directiveEnd;e.firstCreatePass||oo(n,t),Vi(o,t);for(var u=n.initialInputs,s=i;s<a;s++){var l=e.data[s],c=Ft(l);c&&wu(t,n,l);var f=vo(t,e,s,n);Vi(f,t),null!==u&&Cu(0,s-i,f,l,0,u),c&&(ki(n.index,t)[vt]=f)}}(e,t,n,Ci(n,t)),128==(128&n.flags)&&function o(e,t,n){var r=n.directiveStart,o=n.directiveEnd,i=e.expandoInstructions,a=e.firstCreatePass,u=n.index-kt;try{Wt(u);for(var s=r;s<o;s++){var l=e.data[s],c=t[s];l.hostBindings?(Yt(),hu(l,i,c,n,a)):a&&i.push(null)}}finally{Wt(null)}}(e,t,n))}function au(e,t,n){void 0===n&&(n=Ci);var r=t.localNames;if(null!==r)for(var o=t.index+1,i=0;i<r.length;i+=2){var a=r[i+1],u=-1===a?n(t,e):e[a];e[o++]=u}}function uu(e){return e.tView||(e.tView=su(1,-1,e.template,e.decls,e.vars,e.directiveDefs,e.pipeDefs,e.viewQuery,e.schemas,e.consts))}function su(e,t,n,r,o,i,a,u,s,l){var c=kt+r,f=c+o,d=function p(e,t){for(var n=[],r=0;r<t;r++)n.push(r<e?null:hr);return n}(c,f);return d[st]={type:e,id:t,blueprint:d,template:n,queries:null,viewQuery:u,node:null,data:d.slice().fill(null,c),bindingStartIndex:c,expandoStartIndex:f,expandoInstructions:null,firstCreatePass:!0,firstUpdatePass:!0,staticViewQueries:!1,staticContentQueries:!1,preOrderHooks:null,preOrderCheckHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:"function"==typeof i?i():i,pipeRegistry:"function"==typeof a?a():a,firstChild:null,schemas:s,consts:l}}function lu(t,n,r){var o=t.createRenderer(null,null);if(zn(o))return o.selectRootElement(n,r===e.ViewEncapsulation.ShadowDom);var i="string"==typeof n?o.querySelector(n):n;return i.textContent="",i}function cu(e,t,n,r,o,i){return{type:n,index:r,injectorIndex:t?t.injectorIndex:-1,directiveStart:-1,directiveEnd:-1,propertyBindings:null,flags:0,providerIndexes:0,tagName:o,attrs:i,localNames:null,initialInputs:void 0,inputs:null,outputs:null,tViews:null,next:null,projectionNext:null,child:null,parent:t,projection:null,styles:null,classes:null}}function fu(e,t,n){for(var r in e)if(e.hasOwnProperty(r)){var o=e[r];(n=null===n?{}:n).hasOwnProperty(r)?n[r].push(t,o):n[r]=[t,o]}return n}function du(e,t,n,r,o,i,a){var u,s=bi(t,e),l=xi(t,e),c=l.inputs;if(!i&&null!=c&&(u=c[n]))Hu(e,u,n,r),Vt(l)&&function f(e,t){var n=ki(t,e);16&n[lt]||(n[lt]|=64)}(e,t+kt);else if(3===l.type){n=function d(e){return"class"===e?"className":"for"===e?"htmlFor":"formaction"===e?"formAction":"innerHtml"===e?"innerHTML":"readonly"===e?"readOnly":"tabindex"===e?"tabIndex":e}(n);var p=a?a(l,e):e[mt];r=null!=o?o(r,l.tagName||"",n):r,zn(p)?p.setProperty(s,n,r):Wn(n)||(s.setProperty?s.setProperty(n,r):s[n]=r)}}function pu(e,t,n,r){if(!Ut())return!1;var o=function i(e,t,n){var r=e.directiveRegistry,o=null;if(r)for(var i=0;i<r.length;i++){var a=r[i];Gi(n,a.selectors,!1)&&(o||(o=[]),so(oo(n,t),e,a.type),Ft(a)?(2&n.flags&&Bi(n),yu(e,n),o.unshift(a)):o.push(a))}return o}(e,t,n),a=null===r?null:{"":-1},u=!1;if(null!==o){u=!0,mu(n,e.data.length,o.length);for(var s=0;s<o.length;s++)(f=o[s]).providersResolver&&f.providersResolver(f);vu(e,n,o.length);var l=!1,c=!1;for(s=0;s<o.length;s++){var f;_u(e,t,f=o[s]),gu(e.data.length-1,f,a),null!==f.contentQueries&&(n.flags|=8),null!==f.hostBindings&&(n.flags|=128),!l&&(f.onChanges||f.onInit||f.doCheck)&&((e.preOrderHooks||(e.preOrderHooks=[])).push(n.index-kt),l=!0),c||!f.onChanges&&!f.doCheck||((e.preOrderCheckHooks||(e.preOrderCheckHooks=[])).push(n.index-kt),c=!0)}!function d(e,t){for(var n=t.directiveEnd,r=e.data,o=t.attrs,i=[],a=null,u=null,s=t.directiveStart;s<n;s++){var l=r[s],c=l.inputs;i.push(null!==o?Iu(c,o):null),a=fu(c,s,a),u=fu(l.outputs,s,u)}null!==a&&((a.hasOwnProperty("class")||a.hasOwnProperty("className"))&&(t.flags|=16),a.hasOwnProperty("style")&&(t.flags|=32)),t.initialInputs=i,t.inputs=a,t.outputs=u}(e,n)}return a&&function p(e,t,n){if(t)for(var r=e.localNames=[],o=0;o<t.length;o+=2){var i=n[t[o+1]];if(null==i)throw new Error("Export of name '"+t[o+1]+"' not found!");r.push(t[o],i)}}(n,r,a),u}function hu(e,t,n,r,o){var i=t.length;Bt(e),e.hostBindings(1,n,r.index-kt),Bt(null),i===t.length&&o&&t.push(e.hostBindings)}function vu(e,t,n){var r=kt-t.index,o=e.data.length-(65535&t.providerIndexes);(e.expandoInstructions||(e.expandoInstructions=[])).push(r,o,n)}function yu(e,t){t.flags|=2,(e.components||(e.components=[])).push(t.index)}function gu(e,t,n){if(n){if(t.exportAs)for(var r=0;r<t.exportAs.length;r++)n[t.exportAs[r]]=e;Ft(t)&&(n[""]=e)}}function mu(e,t,n){e.flags|=1,e.directiveStart=t,e.directiveEnd=t+n,e.providerIndexes=t}function _u(e,t,n){e.data.push(n);var r=n.factory||(n.factory=it(n.type)),o=new Ln(r,Ft(n),null);e.blueprint.push(o),t.push(o)}function wu(e,t,n){var r=Ci(t,e),o=uu(n),i=e[gt],a=Pu(e,Ya(e,o,null,n.onPush?64:16,r,t,i,i.createRenderer(r,n)));e[t.index]=a}function bu(e,t,n,r,o,i){var a=bi(e,r),u=r[mt];if(null==n)zn(u)?u.removeAttribute(a,t,i):a.removeAttribute(t);else{var s=xi(e,r),l=null==o?$n(n):o(n,s.tagName||"",t);zn(u)?u.setAttribute(a,t,l,i):i?a.setAttributeNS(i,t,l):a.setAttribute(t,l)}}function Cu(e,t,n,r,o,i){var a=i[t];if(null!==a)for(var u=r.setInput,s=0;s<a.length;){var l=a[s++],c=a[s++],f=a[s++];null!==u?r.setInput(n,f,l,c):n[c]=f}}function Iu(e,t){for(var n=null,r=0;r<t.length;){var o=t[r];if(0!==o)if(5!==o){if("number"==typeof o)break;e.hasOwnProperty(o)&&(null===n&&(n=[]),n.push(o,e[o],t[r+1])),r+=2}else r+=2;else r+=4}return n}function xu(e,t,n,r){return new Array(e,!0,-2,t,null,null,r,n,null)}function Eu(e,t){for(var n=e[Nt],r=0;r<n.length;r++){var o=n[r],i=o[ct][ct][It];if(i!==t&&0==(16&i[lt])){var a=o[st];tu(o,a,a.template,o[vt])}}}function ku(e,t){var n=ki(t,e);if(function r(e){return 128==(128&e[lt])}(n)&&80&n[lt]){var o=n[st];tu(n,o,o.template,n[vt])}}function Ou(e,t){var n=ki(t,e);!function r(e){for(var t=e[st],n=e.length;n<t.blueprint.length;n++)e.push(t.blueprint[n])}(n),eu(n,n[st],n[vt])}function Pu(e,t){return e[wt]?e[bt][ft]=t:e[wt]=t,e[bt]=t,t}function Nu(e){for(;e;){e[lt]|=64;var t=ba(e);if(Ht(e)&&!t)return e;e=t}return null}function Tu(e){for(var t=0;t<e.components.length;t++){var n=e.components[t],r=Pi(n);nu(r,r[st].template,n)}}function Du(e,t){var n=e[gt];n.begin&&n.begin();try{var r=e[st];tu(e,r,r.template,t)}catch(t){throw Fu(e,t),t}finally{n.end&&n.end()}}function ju(e){Tu(e[vt])}function Au(e,t,n){pn(0),t(e,n)}var Ru=Ka;function Su(e){return e[ht]||(e[ht]=[])}function Vu(e){return e[st].cleanup||(e[st].cleanup=[])}function Mu(e,t){return t[e.index][mt]}function Fu(e,t){var n=e[yt],r=n?n.get(Oo,null):null;r&&r.handleError(t)}function Hu(e,t,n,r){for(var o=e[st],i=0;i<t.length;){var a=t[i++],u=t[i++],s=e[a],l=o.data[a];null!==l.setInput?l.setInput(s,r,n,u):s[u]=r}}function Lu(e,t,n){var r=bi(t,e),o=e[mt];zn(o)?o.setValue(r,n):r.textContent=n}function Bu(e,t,n,r){null!==n.classes&&(r?wa(e,t,n.classes,!0):da(e,t,Br(n.classes),!0,null)),null!==n.styles&&(r?wa(e,t,n.styles,!1):da(e,t,Br(n.styles),!1,null))}
|
|
375
|
+
function Ii(e,t){return e<<17|t<<2}function xi(e){return e>>17&32767}function Ei(e){return 2==(2&e)}function ki(e){return 2|e}function Oi(e){return(131068&e)>>2}function Pi(e,t){return-131069&e|t<<2}function Ni(e){return 1==(1&e)}function Ti(e){return 1|e}function ji(e,t){for(var n=e.tView_.data,r=[],o=t?e.classBindings:e.styleBindings,i=xi(o),a=Oi(o),u=0!==a,s=u?a:i;0!==s;){var l=n[s+1];r.unshift({key:n[s],index:s,isTemplate:u,prevDuplicate:Ei(l),nextDuplicate:Ni(l),nextIndex:Oi(l),prevIndex:xi(l)}),s===i&&(u=!1),s=xi(l)}return r.push((t?e.residualClasses:e.residualStyles)||null),r}function Di(e,t){for(;e;)t.push(e.template_),e=e.next}function Ai(e){if(e){var t=e.debug;return Ve(t,"Object does not have a debug representation."),t}return e}function Si(e,t){void 0===t&&(t=!1);var n=So(e);if(n){var r=n.nodeType===Node.TEXT_NODE,o=(r?n.textContent:n.outerHTML)||"";return t||r?o:o.split(">"+n.innerHTML+"<")[0]+">"}return null}function Ri(e,t){if(e){for(var n=[],r=e;r;)n.push(Vi(r,t,r.index)),r=r.next;return n}return null}function Vi(e,t,n){var r=t[n],o=So(r),i=Ai(function a(e){for(;Array.isArray(e);){if(e.length>=Tt-1)return e;e=e[ft]}return null}(r));return{html:Si(o),native:o,nodes:Ri(e.child,t),component:i}}Object.defineProperty(function Fi(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m,_,w,b,C,I,x,E,k,O,P,N){this.type=e,this.id=t,this.blueprint=n,this.template=r,this.queries=o,this.viewQuery=i,this.node=a,this.data=u,this.bindingStartIndex=s,this.expandoStartIndex=l,this.expandoInstructions=c,this.firstCreatePass=f,this.firstUpdatePass=d,this.staticViewQueries=p,this.staticContentQueries=h,this.preOrderHooks=v,this.preOrderCheckHooks=y,this.contentHooks=g,this.contentCheckHooks=m,this.viewHooks=_,this.viewCheckHooks=w,this.destroyHooks=b,this.cleanup=C,this.contentQueries=I,this.components=x,this.directiveRegistry=E,this.pipeRegistry=k,this.firstChild=O,this.schemas=P,this.consts=N}.prototype,"template_",{get:function(){var e=[];return Di(this.firstChild,e),e.join("")},enumerable:!0,configurable:!0}),function(){function e(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m,_,w,b,C,I,x,E,k,O,P){this.tView_=e,this.type=t,this.index=n,this.injectorIndex=r,this.directiveStart=o,this.directiveEnd=i,this.directiveStylingLast=a,this.propertyBindings=u,this.flags=s,this.providerIndexes=l,this.tagName=c,this.attrs=f,this.mergedAttrs=d,this.localNames=p,this.initialInputs=h,this.inputs=v,this.outputs=y,this.tViews=g,this.next=m,this.projectionNext=_,this.child=w,this.parent=b,this.projection=C,this.styles=I,this.residualStyles=x,this.classes=E,this.residualClasses=k,this.classBindings=O,this.styleBindings=P}Object.defineProperty(e.prototype,"type_",{get:function(){switch(this.type){case 0:return"TNodeType.Container";case 3:return"TNodeType.Element";case 4:return"TNodeType.ElementContainer";case 5:return"TNodeType.IcuContainer";case 1:return"TNodeType.Projection";case 2:return"TNodeType.View";default:return"TNodeType.???"}},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"flags_",{get:function(){var e=[];return 16&this.flags&&e.push("TNodeFlags.hasClassInput"),8&this.flags&&e.push("TNodeFlags.hasContentQuery"),32&this.flags&&e.push("TNodeFlags.hasStyleInput"),128&this.flags&&e.push("TNodeFlags.hasHostBindings"),2&this.flags&&e.push("TNodeFlags.isComponentHost"),1&this.flags&&e.push("TNodeFlags.isDirectiveHost"),64&this.flags&&e.push("TNodeFlags.isDetached"),4&this.flags&&e.push("TNodeFlags.isProjected"),e.join("|")},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"template_",{get:function(){var e=[];if(e.push("<",this.tagName||this.type_),this.attrs)for(var t=0;t<this.attrs.length;){var n=this.attrs[t++];if("number"==typeof n)break;var r=this.attrs[t++];e.push(" ",n,'="',r,'"')}return e.push(">"),Di(this.child,e),e.push("</",this.tagName||this.type_,">"),e.join("")},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"styleBindings_",{get:function(){return ji(this,!1)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"classBindings_",{get:function(){return ji(this,!0)},enumerable:!0,configurable:!0})}(),function(){function e(e){this._raw_lView=e}Object.defineProperty(e.prototype,"flags",{get:function(){var e=this._raw_lView[pt];return{__raw__flags__:e,initPhaseState:3&e,creationMode:!!(4&e),firstViewPass:!!(8&e),checkAlways:!!(16&e),dirty:!!(64&e),attached:!!(128&e),destroyed:!!(256&e),isRoot:!!(512&e),indexWithinInitPhase:e>>10}},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parent",{get:function(){return Ai(this._raw_lView[ht])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"host",{get:function(){return Si(this._raw_lView[ft],!0)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"html",{get:function(){return(this.nodes||[]).map((function(e){return Si(e.native,!0)})).join("")},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._raw_lView[_t]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"nodes",{get:function(){var e=this._raw_lView;return Ri(e[dt].firstChild,e)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"tView",{get:function(){return this._raw_lView[dt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"cleanup",{get:function(){return this._raw_lView[mt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return this._raw_lView[wt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"rendererFactory",{get:function(){return this._raw_lView[bt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"renderer",{get:function(){return this._raw_lView[Ct]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"sanitizer",{get:function(){return this._raw_lView[It]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"childHead",{get:function(){return Ai(this._raw_lView[xt])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"next",{get:function(){return Ai(this._raw_lView[vt])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"childTail",{get:function(){return Ai(this._raw_lView[Et])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"declarationView",{get:function(){return Ai(this._raw_lView[kt])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"queries",{get:function(){return this._raw_lView[yt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"tHost",{get:function(){return this._raw_lView[gt]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"childViews",{get:function(){for(var e=[],t=this.childHead;t;)e.push(t),t=t.next;return e},enumerable:!0,configurable:!0})}(),function(){function e(e){this._raw_lContainer=e}Object.defineProperty(e.prototype,"activeIndex",{get:function(){return Wo(this._raw_lContainer)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"hasTransplantedViews",{get:function(){return 1==(1&this._raw_lContainer[Dt])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"views",{get:function(){return this._raw_lContainer.slice(Vt).map(Ai)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parent",{get:function(){return Ai(this._raw_lContainer[ht])},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"movedViews",{get:function(){return this._raw_lContainer[At]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"host",{get:function(){return this._raw_lContainer[ft]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"native",{get:function(){return this._raw_lContainer[St]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"next",{get:function(){return Ai(this._raw_lContainer[vt])},enumerable:!0,configurable:!0})}();var Mi=function(){function e(e,t,n,r){this.__raw_opCode=e,this._lView=t,this.nodeIndex=n,this.type=r}return Object.defineProperty(e.prototype,"tNode",{get:function(){return Mo(this._lView[dt],this.nodeIndex)},enumerable:!0,configurable:!0}),e}();Object.defineProperty(function Hi(e,t){this.__raw_opCodes=e,this.__lView=t}.prototype,"operations",{get:function(){for(var e=this.__lView,t=this.__raw_opCodes,n=[],r=0;r<t.length;r++){var o=t[r],i=void 0;if("string"==typeof o&&(i={__raw_opCode:o,type:"Create Text Node",nodeIndex:t[++r],text:o}),"number"==typeof o)switch(7&o){case 1:i=new Mi(o,e,o>>>17,"AppendChild");break;case 0:i=new Mi(o,e,o>>>3,"Select");break;case 5:var a=o>>>3;i=new Mi(o,e,a,"ElementEnd");break;case 4:(i=new Mi(o,e,a=o>>>3,"Attr")).attrName=t[++r],i.attrValue=t[++r]}if(!i)switch(o){case Ci:i={__raw_opCode:o,type:"COMMENT_MARKER",commentValue:t[++r],nodeIndex:t[++r]};break;case bi:i={__raw_opCode:o,type:"ELEMENT_MARKER"}}i||(i={__raw_opCode:o,type:"Unknown Op Code",code:o}),n.push(i)}return n},enumerable:!0,configurable:!0}),Object.defineProperty(function Li(e,t,n){this.__raw_opCodes=e,this.icus=t,this.__lView=n}.prototype,"operations",{get:function(){for(var e=this.__lView,t=this.__raw_opCodes,n=this.icus,r=[],o=0;o<t.length;o++){for(var i=t[o],a=t[++o],u="",s=o+1;s<=o+a;s++){var l=t[s];if("string"==typeof l)u+=l;else if("number"==typeof l)if(l<0)u+="�"+(-l-1)+"�";else{var c=l>>>2,f=void 0,d=void 0;switch(3&l){case 1:var p=t[++s],h=t[++s];r.push({__raw_opCode:l,checkBit:i,type:"Attr",attrValue:u,attrName:p,sanitizeFn:h});break;case 0:r.push({__raw_opCode:l,checkBit:i,type:"Text",nodeIndex:c,text:u});break;case 2:d=n[f=t[++s]];var v=new Mi(l,e,c,"IcuSwitch");v.tIcuIndex=f,v.checkBit=i,v.mainBinding=u,v.tIcu=d,r.push(v);break;case 3:d=n[f=t[++s]],(v=new Mi(l,e,c,"IcuUpdate")).tIcuIndex=f,v.checkBit=i,v.tIcu=d,r.push(v)}}}o+=a}return r},enumerable:!0,configurable:!0});var Bi=Promise.resolve(null);function Ui(e,t){var n=e.contentQueries;if(null!==n)for(var r=0;r<n.length;r+=2){var o=n[r+1];if(-1!==o){var i=e.data[o];pn(n[r]),i.contentQueries(2,t[o],o)}}}function Qi(e,t,n){return Ln(t)?t.createElement(e,n):null===n?t.createElement(e):t.createElementNS(n,e)}function zi(e,t,n,r,o,i,a,u,s,l){var c=t.blueprint.slice();return c[ft]=o,c[pt]=140|r,Zo(c),c[ht]=c[kt]=e,c[_t]=n,c[bt]=a||e&&e[bt],c[Ct]=u||e&&e[Ct],c[It]=s||e&&e[It]||null,c[wt]=l||e&&e[wt]||null,c[gt]=i,c[Ot]=2==t.type?e[Ot]:c,c}function qi(e,t,n,r,o,i){var a=n+Tt,u=e.data[a]||function s(e,t,n,r,o,i){var a=Xt(),u=tn(),s=u?a:a&&a.parent,l=e.data[n]=ra(0,s&&s!==t?s:null,r,n,o,i);return null===e.firstChild&&(e.firstChild=l),a&&(!u||null!=a.child||null===l.parent&&2!==a.type?u||(a.next=l):a.child=l),l}(e,t,a,r,o,i);return en(u,!0),u}function Zi(e,t,n,r){var o=e.node;return null==o&&(e.node=o=ra(0,t,2,n,null,null)),r[gt]=o}function Wi(e,t,n){yn(t,t[gt]);try{var r=e.viewQuery;null!==r&&Pa(1,r,n);var o=e.template;null!==o&&Ji(e,t,o,1,n),e.firstCreatePass&&(e.firstCreatePass=!1),e.staticContentQueries&&Ui(e,t),e.staticViewQueries&&Pa(2,e.viewQuery,n);var i=e.components;null!==i&&function a(e,t){for(var n=0;n<t.length;n++)Ca(e,t[n])}(t,i)}finally{t[pt]&=-5,_n()}}function Ki(e,t,n,r){var o=t[pt];if(256!=(256&o)){yn(t,t[gt]);var i=rn();try{Zo(t),sn(e.bindingStartIndex),null!==n&&Ji(e,t,n,2,r);var a=3==(3&o);if(!i)if(a){var u=e.preOrderCheckHooks;null!==u&&On(t,u,null)}else{var s=e.preOrderHooks;null!==s&&Pn(t,s,0,null),Nn(t,0)}if(function l(e){for(var t=e[xt];null!==t;){var n=void 0;if(Mt(t)&&(n=t[Dt])>>1==-1){for(var r=Vt;r<t.length;r++){var o=t[r],i=o[dt];zo(o)&&Ki(i,o,i.template,o[_t])}0!=(1&n)&&wa(t,e[Ot])}t=t[vt]}}(t),null!==e.contentQueries&&Ui(e,t),!i)if(a){var c=e.contentCheckHooks;null!==c&&On(t,c)}else{var f=e.contentHooks;null!==f&&Pn(t,f,1),Nn(t,1)}!function d(e,t){try{var n=e.expandoInstructions;if(null!==n)for(var r=e.expandoStartIndex,o=-1,i=0;i<n.length;i++){var a=n[i];if("number"==typeof a)if(a<=0){Cn(0-a);var u=n[++i];o=r+=Rn+u}else r+=a;else null!==a&&(fn(r,o),a(2,t[o])),o++}}finally{Cn(-1)}}(e,t);var p=e.components;null!==p&&function h(e,t){for(var n=0;n<t.length;n++)ba(e,t[n])}(t,p);var v=e.viewQuery;if(null!==v&&Pa(2,v,r),!i)if(a){var y=e.viewCheckHooks;null!==y&&On(t,y)}else{var g=e.viewHooks;null!==g&&Pn(t,g,2),Nn(t,2)}!0===e.firstUpdatePass&&(e.firstUpdatePass=!1),i||(t[pt]&=-73)}finally{_n()}}}function Gi(e,t,n,r){var o=t[bt],i=!rn(),a=Qo(t);try{i&&!a&&o.begin&&o.begin(),a&&Wi(e,t,r),Ki(e,t,n,r)}finally{i&&!a&&o.end&&o.end()}}function Ji(e,t,n,r,o){var i=bn();try{Cn(-1),2&r&&t.length>Tt&&wi(e,t,0,rn()),n(r,o)}finally{Cn(i)}}function Yi(e,t,n){if(Ht(t))for(var r=t.directiveEnd,o=t.directiveStart;o<r;o++){var i=e.data[o];i.contentQueries&&i.contentQueries(1,n[o],o)}}function $i(e,t,n){Wt()&&(function r(e,t,n,o){var i=n.directiveStart,a=n.directiveEnd;e.firstCreatePass||sr(n,t),Yo(o,t);for(var u=n.initialInputs,s=i;s<a;s++){var l=e.data[s],c=Ut(l);c&&va(t,n,l);var f=mr(t,e,s,n);Yo(f,t),null!==u&&ga(0,s-i,f,l,0,u),c&&(Lo(n.index,t)[_t]=f)}}(e,t,n,Vo(n,t)),128==(128&n.flags)&&function o(e,t,n){var r=n.directiveStart,o=n.directiveEnd,i=e.expandoInstructions,a=e.firstCreatePass,u=n.index-Tt;try{Cn(u);for(var s=r;s<o;s++){var l=e.data[s];null!==l.hostBindings||0!==l.hostVars||null!==l.hostAttrs?la(l,t[s]):a&&i.push(null)}}finally{Cn(-1)}}(e,t,n))}function Xi(e,t,n){void 0===n&&(n=Vo);var r=t.localNames;if(null!==r)for(var o=t.index+1,i=0;i<r.length;i+=2){var a=r[i+1],u=-1===a?n(t,e):e[a];e[o++]=u}}function ea(e){return e.tView||(e.tView=ta(1,-1,e.template,e.decls,e.vars,e.directiveDefs,e.pipeDefs,e.viewQuery,e.schemas,e.consts))}function ta(e,t,n,r,o,i,a,u,s,l){var c=Tt+r,f=c+o,d=function p(e,t){for(var n=[],r=0;r<t;r++)n.push(r<e?null:vi);return n}(c,f);return d[dt]={type:e,id:t,blueprint:d,template:n,queries:null,viewQuery:u,node:null,data:d.slice().fill(null,c),bindingStartIndex:c,expandoStartIndex:f,expandoInstructions:null,firstCreatePass:!0,firstUpdatePass:!0,staticViewQueries:!1,staticContentQueries:!1,preOrderHooks:null,preOrderCheckHooks:null,contentHooks:null,contentCheckHooks:null,viewHooks:null,viewCheckHooks:null,destroyHooks:null,cleanup:null,contentQueries:null,components:null,directiveRegistry:"function"==typeof i?i():i,pipeRegistry:"function"==typeof a?a():a,firstChild:null,schemas:s,consts:l}}function na(t,n,r){if(Ln(t))return t.selectRootElement(n,r===e.ViewEncapsulation.ShadowDom);var o="string"==typeof n?t.querySelector(n):n;return o.textContent="",o}function ra(e,t,n,r,o,i){return{type:n,index:r,injectorIndex:t?t.injectorIndex:-1,directiveStart:-1,directiveEnd:-1,directiveStylingLast:-1,propertyBindings:null,flags:0,providerIndexes:0,tagName:o,attrs:i,mergedAttrs:null,localNames:null,initialInputs:void 0,inputs:null,outputs:null,tViews:null,next:null,projectionNext:null,child:null,parent:t,projection:null,styles:null,residualStyles:void 0,classes:null,residualClasses:void 0,classBindings:0,styleBindings:0}}function oa(e,t,n){for(var r in e)if(e.hasOwnProperty(r)){var o=e[r];(n=null===n?{}:n).hasOwnProperty(r)?n[r].push(t,o):n[r]=[t,o]}return n}function ia(e,t,n,r,o,i,a,u){var s,l=Ro(n,t),c=Mo(e,n),f=c.inputs;if(!a&&null!=f&&(s=f[r]))Sa(e,t,s,r,o),Lt(c)&&function d(e,t){var n=Lo(t,e);16&n[pt]||(n[pt]|=64)}(t,n+Tt);else if(3===c.type){r=function p(e){return"class"===e?"className":"for"===e?"htmlFor":"formaction"===e?"formAction":"innerHtml"===e?"innerHTML":"readonly"===e?"readOnly":"tabindex"===e?"tabIndex":e}(r);var h=u?u(c,t):t[Ct];o=null!=i?i(o,c.tagName||"",r):o,Ln(h)?h.setProperty(l,r,o):zn(r)||(l.setProperty?l.setProperty(r,o):l[r]=o)}}function aa(e,t,n,r){var o=!1;if(Wt()){var i=function a(e,t,n){var r=e.directiveRegistry,o=null;if(r)for(var i=0;i<r.length;i++){var a=r[i];fi(n,a.selectors,!1)&&(o||(o=[]),dr(sr(n,t),e,a.type),Ut(a)?(2&n.flags&&ni(n),fa(e,n),o.unshift(a)):o.push(a))}return o}(e,t,n),u=null===r?null:{"":-1};if(null!==i){var s=0;o=!0,pa(n,e.data.length,i.length);for(var l=0;l<i.length;l++)(d=i[l]).providersResolver&&d.providersResolver(d);ca(e,n,i.length);var c=!1,f=!1;for(l=0;l<i.length;l++){var d;n.mergedAttrs=qn(n.mergedAttrs,(d=i[l]).hostAttrs),ha(e,t,d),da(e.data.length-1,d,u),null!==d.contentQueries&&(n.flags|=8),null===d.hostBindings&&null===d.hostAttrs&&0===d.hostVars||(n.flags|=128),!c&&(d.onChanges||d.onInit||d.doCheck)&&((e.preOrderHooks||(e.preOrderHooks=[])).push(n.index-Tt),c=!0),f||!d.onChanges&&!d.doCheck||((e.preOrderCheckHooks||(e.preOrderCheckHooks=[])).push(n.index-Tt),f=!0),ua(e,d),s+=d.hostVars}!function p(e,t){for(var n=t.directiveEnd,r=e.data,o=t.attrs,i=[],a=null,u=null,s=t.directiveStart;s<n;s++){var l=r[s],c=l.inputs;i.push(null!==o?ma(c,o):null),a=oa(c,s,a),u=oa(l.outputs,s,u)}null!==a&&((a.hasOwnProperty("class")||a.hasOwnProperty("className"))&&(t.flags|=16),a.hasOwnProperty("style")&&(t.flags|=32)),t.initialInputs=i,t.inputs=a,t.outputs=u}(e,n),sa(e,t,s)}u&&function h(e,t,n){if(t)for(var r=e.localNames=[],o=0;o<t.length;o+=2){var i=n[t[o+1]];if(null==i)throw new Error("Export of name '"+t[o+1]+"' not found!");r.push(t[o],i)}}(n,r,u)}return n.mergedAttrs=qn(n.mergedAttrs,n.attrs),o}function ua(e,t){var n=e.expandoInstructions;n.push(t.hostBindings),0!==t.hostVars&&n.push(t.hostVars)}function sa(e,t,n){for(var r=0;r<n;r++)t.push(vi),e.blueprint.push(vi),e.data.push(null)}function la(e,t){null!==e.hostBindings&&e.hostBindings(1,t)}function ca(e,t,n){var r=Tt-t.index,o=e.data.length-(65535&t.providerIndexes);(e.expandoInstructions||(e.expandoInstructions=[])).push(r,o,n)}function fa(e,t){t.flags|=2,(e.components||(e.components=[])).push(t.index)}function da(e,t,n){if(n){if(t.exportAs)for(var r=0;r<t.exportAs.length;r++)n[t.exportAs[r]]=e;Ut(t)&&(n[""]=e)}}function pa(e,t,n){e.flags|=1,e.directiveStart=t,e.directiveEnd=t+n,e.providerIndexes=t}function ha(e,t,n){e.data.push(n);var r=n.factory||(n.factory=lt(n.type)),o=new Fn(r,Ut(n),null);e.blueprint.push(o),t.push(o)}function va(e,t,n){var r=Vo(t,e),o=ea(n),i=e[bt],a=Ia(e,zi(e,o,null,n.onPush?64:16,r,t,i,i.createRenderer(r,n)));e[t.index]=a}function ya(e,t,n,r,o,i,a){var u=Ro(e,o),s=o[Ct];if(null==n)Ln(s)?s.removeAttribute(u,t,a):u.removeAttribute(t);else{var l=Mo(r,e),c=null==i?Yn(n):i(n,l.tagName||"",t);Ln(s)?s.setAttribute(u,t,c,a):a?u.setAttributeNS(a,t,c):u.setAttribute(t,c)}}function ga(e,t,n,r,o,i){var a=i[t];if(null!==a)for(var u=r.setInput,s=0;s<a.length;){var l=a[s++],c=a[s++],f=a[s++];null!==u?r.setInput(n,f,l,c):n[c]=f}}function ma(e,t){for(var n=null,r=0;r<t.length;){var o=t[r];if(0!==o)if(5!==o){if("number"==typeof o)break;e.hasOwnProperty(o)&&(null===n&&(n=[]),n.push(o,e[o],t[r+1])),r+=2}else r+=2;else r+=4}return n}function _a(e,t,n,r){return new Array(e,!0,-2,t,null,null,r,n,null)}function wa(e,t){for(var n=e[At],r=0;r<n.length;r++){var o=n[r],i=o[ht][ht][Ot];if(i!==t&&0==(16&i[pt])){var a=o[dt];Ki(a,o,a.template,o[_t])}}}function ba(e,t){var n=Lo(t,e);if(zo(n)&&80&n[pt]){var r=n[dt];Ki(r,n,r.template,n[_t])}}function Ca(e,t){var n=Lo(t,e),r=n[dt];!function o(e,t){for(var n=t.length;n<e.blueprint.length;n++)t.push(e.blueprint[n])}(r,n),Wi(r,n,n[_t])}function Ia(e,t){return e[xt]?e[Et][vt]=t:e[xt]=t,e[Et]=t,t}function xa(e){for(;e;){e[pt]|=64;var t=yi(e);if(Qt(e)&&!t)return e;e=t}return null}function Ea(e){for(var t=0;t<e.components.length;t++){var n=e.components[t],r=Uo(n),o=r[dt];Gi(o,r,o.template,n)}}function ka(e,t,n){var r=t[bt];r.begin&&r.begin();try{Ki(e,t,e.template,n)}catch(e){throw Aa(t,e),e}finally{r.end&&r.end()}}function Oa(e){Ea(e[_t])}function Pa(e,t,n){pn(0),t(e,n)}var Na=Bi;function Ta(e){return e[mt]||(e[mt]=[])}function ja(e){return e.cleanup||(e.cleanup=[])}function Da(e,t){return t[e.index][Ct]}function Aa(e,t){var n=e[wt],r=n?n.get(Tr,null):null;r&&r.handleError(t)}function Sa(e,t,n,r,o){for(var i=0;i<n.length;){var a=n[i++],u=n[i++],s=t[a],l=e.data[a];null!==l.setInput?l.setInput(s,o,r,u):s[u]=o}}function Ra(e,t,n){var r=Ro(t,e),o=e[Ct];Ln(o)?o.setValue(r,n):r.textContent=n}
|
|
397
376
|
/**
|
|
398
377
|
* @license
|
|
399
378
|
* Copyright Google Inc. All Rights Reserved.
|
|
400
379
|
*
|
|
401
380
|
* Use of this source code is governed by an MIT-style license that can be
|
|
402
381
|
* found in the LICENSE file at https://angular.io/license
|
|
403
|
-
*/function
|
|
382
|
+
*/function Va(e,t){var n=t[ht];return-1===e.index?Mt(n)?n:null:n}function Fa(e,t){var n=Va(e,t);return n?$a(t[Ct],n[St]):null}function Ma(e,t,n,r,o){if(null!=r){var i=void 0,a=!1;Mt(r)?i=r:Ft(r)&&(a=!0,r=r[ft]);var u=So(r);0===e&&null!==n?null==o?Ja(t,n,u):Ga(t,n,u,o||null):1===e&&null!==n?Ga(t,n,u,o||null):2===e?nu(t,u,a):3===e&&t.destroyNode(u),null!=i&&function s(e,t,n,r,o){var i=n[St];i!==So(n)&&Ma(t,e,r,i,o);for(var a=Vt;a<n.length;a++){var u=n[a];ou(u[dt],u,e,t,r,i)}}(t,e,i,n,o)}}function Ha(e,t){return Ln(t)?t.createText(e):t.createTextNode(e)}function La(e,t,n,r){var o=Fa(e.node,t);o&&ou(e,t,t[Ct],n?1:2,o,r)}function Ba(e,t,n,r){var o=Vt+r,i=n.length;r>0&&(n[o-1][vt]=t),r<i-Vt?(t[vt]=n[o],Le(n,Vt+r,t)):(n.push(t),t[vt]=null),t[ht]=n;var a=t[Pt];null!==a&&n!==a&&function u(e,t){var n=e[At],r=t[ht][ht][Ot];16!=(16&r[pt])&&t[Ot]!==r&&(e[Dt]|=1),null===n?e[At]=[t]:n.push(t)}(a,t);var s=t[yt];null!==s&&s.insertView(e),t[pt]|=128}function Ua(e,t){var n=e[At],r=n.indexOf(t);n.splice(r,1)}function Qa(e,t){if(!(e.length<=Vt)){var n=Vt+t,r=e[n];if(r){var o=r[Pt];null!==o&&o!==e&&Ua(o,r),t>0&&(e[n-1][vt]=r[vt]);var i=Be(e,Vt+t);La(r[dt],r,!1,null);var a=i[yt];null!==a&&a.detachView(i[dt]),r[ht]=null,r[vt]=null,r[pt]&=-129}return r}}function za(e,t){var n=Qa(e,t);n&&qa(n[dt],n)}function qa(e,t){if(!(256&t[pt])){var n=t[Ct];Ln(n)&&n.destroyNode&&ou(e,t,n,3,null,null),function r(e){var t=e[xt];if(!t)return Wa(e[dt],e);for(;t;){var n=null;if(Ft(t))n=t[xt];else{var r=t[Vt];r&&(n=r)}if(!n){for(;t&&!t[vt]&&t!==e;)Ft(t)&&Wa(t[dt],t),t=Za(t,e);null===t&&(t=e),Ft(t)&&Wa(t[dt],t),n=t&&t[vt]}t=n}}(t)}}function Za(e,t){var n;return Ft(e)&&(n=e[gt])&&2===n.type?Va(n,e):e[ht]===t?null:e[ht]}function Wa(e,t){if(!(256&t[pt])){t[pt]&=-129,t[pt]|=256,function n(e,t){var n;if(null!=e&&null!=(n=e.destroyHooks))for(var r=0;r<n.length;r+=2){var o=t[n[r]];o instanceof Fn||n[r+1].call(o)}}(e,t),function r(e,t){var n=e.cleanup;if(null!==n){for(var r=t[mt],o=0;o<n.length-1;o+=2)if("string"==typeof n[o]){var i=n[o+1],a="function"==typeof i?i(t):So(t[i]),u=n[o+3];"boolean"==typeof u?a.removeEventListener(n[o],r[n[o+2]],u):u>=0?r[u]():r[-u].unsubscribe(),o+=2}else n[o].call(r[n[o+1]]);t[mt]=null}}(e,t);var o=t[gt];o&&3===o.type&&Ln(t[Ct])&&t[Ct].destroy();var i=t[Pt];if(null!==i&&Mt(t[ht])){i!==t[ht]&&Ua(i,t);var a=t[yt];null!==a&&a.detachView(e)}}}function Ka(t,n,r){for(var o=n.parent;null!=o&&(4===o.type||5===o.type);)o=(n=o).parent;if(null==o){var i=r[gt];return 2===i.type?Fa(i,r):r[ft]}if(n&&5===n.type&&4&n.flags)return Vo(n,r).parentNode;if(2&o.flags){var a=t.data,u=a[a[o.index].directiveStart].encapsulation;if(u!==e.ViewEncapsulation.ShadowDom&&u!==e.ViewEncapsulation.Native)return null}return Vo(o,r)}function Ga(e,t,n,r){Ln(e)?e.insertBefore(t,n,r):t.insertBefore(n,r,!0)}function Ja(e,t,n){Ln(e)?e.appendChild(t,n):t.appendChild(n)}function Ya(e,t,n,r){null!==r?Ga(e,t,n,r):Ja(e,t,n)}function $a(e,t){return Ln(e)?e.parentNode(t):t.parentNode}function Xa(e,t){if(2===e.type){var n=Va(e,t);return null===n?null:tu(n.indexOf(t,Vt)-Vt,n)}return 4===e.type||5===e.type?Vo(e,t):null}function eu(e,t,n,r){var o=Ka(e,r,t);if(null!=o){var i=t[Ct],a=Xa(r.parent||t[gt],t);if(Array.isArray(n))for(var u=0;u<n.length;u++)Ya(i,o,n[u],a);else Ya(i,o,n,a)}}function tu(e,t){var n=Vt+e+1;if(n<t.length){var r=t[n],o=r[dt].firstChild;if(null!==o)return function e(t,n){if(null!==n){var r=n.type;if(3===r)return Vo(n,t);if(0===r)return tu(-1,t[n.index]);if(4===r||5===r){var o=n.child;if(null!==o)return e(t,o);var i=t[n.index];return Mt(i)?tu(-1,i):So(i)}var a=t[Ot],u=a[gt],s=yi(a),l=u.projection[n.projection];return null!=l?e(s,l):e(t,n.next)}return null}(r,o)}return t[St]}function nu(e,t,n){var r=$a(e,t);r&&function o(e,t,n,r){Ln(e)?e.removeChild(t,n,r):t.removeChild(n)}(e,r,t,n)}function ru(e,t,n,r,o,i,a){for(;null!=n;){var u=r[n.index],s=n.type;a&&0===t&&(u&&Yo(So(u),r),n.flags|=4),64!=(64&n.flags)&&(4===s||5===s?(ru(e,t,n.child,r,o,i,!1),Ma(t,e,o,u,i)):1===s?au(e,t,r,n,o,i):Ma(t,e,o,u,i)),n=a?n.projectionNext:n.next}}function ou(e,t,n,r,o,i){ru(n,r,e.node.child,t,o,i,!1)}function iu(e,t,n){au(t[Ct],0,t,n,Ka(e,n,t),Xa(n.parent||t[gt],t))}function au(e,t,n,r,o,i){var a=n[Ot],u=a[gt].projection[r.projection];if(Array.isArray(u))for(var s=0;s<u.length;s++)Ma(t,e,o,u[s],i);else ru(e,t,u,a[ht],o,i,!0)}function uu(e,t,n){Ln(e)?e.setAttribute(t,"style",n):t.style.cssText=n}function su(e,t,n){Ln(e)?""===n?e.removeAttribute(t,"class"):e.setAttribute(t,"class",n):t.className=n}
|
|
404
383
|
/**
|
|
405
384
|
* @license
|
|
406
385
|
* Copyright Google Inc. All Rights Reserved.
|
|
407
386
|
*
|
|
408
387
|
* Use of this source code is governed by an MIT-style license that can be
|
|
409
388
|
* found in the LICENSE file at https://angular.io/license
|
|
410
|
-
*/
|
|
389
|
+
*/
|
|
411
390
|
/**
|
|
412
391
|
* @license
|
|
413
392
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -415,14 +394,14 @@ function Pa(){!function e(t){va=t}(Na)}var Na=function(e,t,n,r,o,i,a,u,s,l){var
|
|
|
415
394
|
* Use of this source code is governed by an MIT-style license that can be
|
|
416
395
|
* found in the LICENSE file at https://angular.io/license
|
|
417
396
|
*/
|
|
418
|
-
var
|
|
397
|
+
var lu,cu,fu,du=function(){function e(e,t){this._lView=e,this._cdRefInjectingView=t,this._appRef=null,this._viewContainerRef=null,this._tViewNode=null}return Object.defineProperty(e.prototype,"rootNodes",{get:function(){var e=this._lView;return null==e[ft]?function e(t,n,r,o,i){for(void 0===i&&(i=!1);null!==r;){var a=n[r.index];if(null!==a&&o.push(So(a)),Mt(a))for(var u=Vt;u<a.length;u++){var s=a[u],l=s[dt].firstChild;null!==l&&e(s[dt],s,l,o)}var c=r.type;if(4===c||5===c)e(t,n,r.child,o);else if(1===c){var f=n[Ot],d=f[gt],p=yi(f),h=d.projection[r.projection];null!==h&&null!==p&&e(p[dt],p,h,o,!0)}r=i?r.projectionNext:r.next}return o}
|
|
419
398
|
/**
|
|
420
399
|
* @license
|
|
421
400
|
* Copyright Google Inc. All Rights Reserved.
|
|
422
401
|
*
|
|
423
402
|
* Use of this source code is governed by an MIT-style license that can be
|
|
424
403
|
* found in the LICENSE file at https://angular.io/license
|
|
425
|
-
*/(
|
|
404
|
+
*/(e[dt],e,e[gt].child,[]):[]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._lView[_t]},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return 256==(256&this._lView[pt])},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){if(this._appRef)this._appRef.detachView(this);else if(this._viewContainerRef){var e=this._viewContainerRef.indexOf(this);e>-1&&this._viewContainerRef.detach(e),this._viewContainerRef=null}qa(this._lView[dt],this._lView)},e.prototype.onDestroy=function(e){!function t(e,n,r){Ta(n).push(r),e.firstCreatePass&&ja(e).push(n[mt].length-1,null)}(this._lView[dt],this._lView,e)},e.prototype.markForCheck=function(){xa(this._cdRefInjectingView||this._lView)},e.prototype.detach=function(){this._lView[pt]&=-129},e.prototype.reattach=function(){this._lView[pt]|=128},e.prototype.detectChanges=function(){ka(this._lView[dt],this._lView,this.context)},e.prototype.checkNoChanges=function(){!function e(t,n,r){on(!0);try{ka(t,n,r)}finally{on(!1)}}(this._lView[dt],this._lView,this.context)},e.prototype.attachToViewContainerRef=function(e){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=e},e.prototype.detachFromAppRef=function(){this._appRef=null,function e(t,n){ou(t,n,n[Ct],2,null,null)}(this._lView[dt],this._lView)},e.prototype.attachToAppRef=function(e){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=e},e}(),pu=function(e){function t(t){var n=e.call(this,t)||this;return n._view=t,n}return o(t,e),t.prototype.detectChanges=function(){Oa(this._view)},t.prototype.checkNoChanges=function(){!function e(t){on(!0);try{Oa(t)}finally{on(!1)}}(this._view)},Object.defineProperty(t.prototype,"context",{get:function(){return null},enumerable:!0,configurable:!0}),t}(du);function hu(e,t,n){return lu||(lu=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(e)),new lu(Vo(t,n))}function vu(e,t,n,r){return cu||(cu=function(e){function t(t,n,r){var o=e.call(this)||this;return o._declarationView=t,o._declarationTContainer=n,o.elementRef=r,o}return o(t,e),t.prototype.createEmbeddedView=function(e){var t=this._declarationTContainer.tViews,n=zi(this._declarationView,t,e,16,null,t.node);n[Pt]=this._declarationView[this._declarationTContainer.index];var r=this._declarationView[yt];null!==r&&(n[yt]=r.createEmbeddedView(t)),Wi(t,n,e);var o=new du(n);return o._tViewNode=n[gt],o},t}(e)),0===n.type?new cu(r,n,hu(t,n,r)):null}function yu(e,t,n,r){var i;fu||(fu=function(e){function n(t,n,r){var o=e.call(this)||this;return o._lContainer=t,o._hostTNode=n,o._hostView=r,o}return o(n,e),Object.defineProperty(n.prototype,"element",{get:function(){return hu(t,this._hostTNode,this._hostView)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"injector",{get:function(){return new br(this._hostTNode,this._hostView)},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"parentInjector",{get:function(){var e=fr(this._hostTNode,this._hostView),t=Jn(e,this._hostView),n=function r(e,t,n){if(n.parent&&-1!==n.parent.injectorIndex){for(var r=n.parent.injectorIndex,o=n.parent;null!=o.parent&&r==o.parent.injectorIndex;)o=o.parent;return o}for(var i=Gn(e),a=t,u=t[gt];i>1;)u=(a=a[kt])[gt],i--;return u}(e,this._hostView,this._hostTNode);return Wn(e)&&null!=n?new br(n,t):new br(null,this._hostView)},enumerable:!0,configurable:!0}),n.prototype.clear=function(){for(;this.length>0;)this.remove(this.length-1)},n.prototype.get=function(e){return null!==this._lContainer[Rt]&&this._lContainer[Rt][e]||null},Object.defineProperty(n.prototype,"length",{get:function(){return this._lContainer.length-Vt},enumerable:!0,configurable:!0}),n.prototype.createEmbeddedView=function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r},n.prototype.createComponent=function(e,t,n,r,o){var i=n||this.parentInjector;if(!o&&null==e.ngModule&&i){var a=i.get(Se,null);a&&(o=a)}var u=e.create(i,r,void 0,o);return this.insert(u.hostView,t),u},n.prototype.insert=function(e,t){var n=e._lView,r=n[dt];if(e.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");if(this.allocateContainerIfNeeded(),function o(e){return Mt(e[ht])}(n)){var i=this.indexOf(e);if(-1!==i)this.detach(i);else{var a=n[ht],u=new fu(a,a[gt],a[ht]);u.detach(u.indexOf(e))}}var s=this._adjustIndex(t);return Ba(r,n,this._lContainer,s),La(r,n,!0,tu(s,this._lContainer)),e.attachToViewContainerRef(this),Le(this._lContainer[Rt],s,e),e},n.prototype.move=function(e,t){if(e.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");return this.insert(e,t)},n.prototype.indexOf=function(e){var t=this._lContainer[Rt];return null!==t?t.indexOf(e):-1},n.prototype.remove=function(e){this.allocateContainerIfNeeded();var t=this._adjustIndex(e,-1);za(this._lContainer,t),Be(this._lContainer[Rt],t)},n.prototype.detach=function(e){this.allocateContainerIfNeeded();var t=this._adjustIndex(e,-1),n=Qa(this._lContainer,t);return n&&null!=Be(this._lContainer[Rt],t)?new du(n):null},n.prototype._adjustIndex=function(e,t){return void 0===t&&(t=0),null==e?this.length+t:e},n.prototype.allocateContainerIfNeeded=function(){null===this._lContainer[Rt]&&(this._lContainer[Rt]=[])},n}(e));var a=r[n.index];if(Mt(a))!function u(e,t){e[Dt]=t<<1}(i=a,-1);else{var s=void 0;if(4===n.type)s=So(a);else if(s=r[Ct].createComment(""),Qt(r)){var l=r[Ct],c=Vo(n,r);Ga(l,$a(l,c),s,function f(e,t){return Ln(e)?e.nextSibling(t):t.nextSibling}(l,c))}else eu(r[dt],r,s,n);r[n.index]=i=_a(a,r,s,n),Ia(r,i)}return new fu(i,n,r)}function gu(e){return void 0===e&&(e=!1),function t(e,n,r){if(!r&&Lt(e)){var o=Lo(e.index,n);return new du(o,o)}return 3===e.type||0===e.type||4===e.type||5===e.type?new du(n[Ot],n):null}(Xt(),Jt(),e)}
|
|
426
405
|
/**
|
|
427
406
|
* @license
|
|
428
407
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -430,63 +409,63 @@ var ps,hs,vs,ys=function(){function e(e,t){this._lView=e,this._cdRefInjectingVie
|
|
|
430
409
|
* Use of this source code is governed by an MIT-style license that can be
|
|
431
410
|
* found in the LICENSE file at https://angular.io/license
|
|
432
411
|
*/
|
|
433
|
-
var
|
|
412
|
+
var mu=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return wu()},e}(),_u=gu,wu=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]},bu=Function;function Cu(e){return"function"==typeof e}
|
|
434
413
|
/**
|
|
435
414
|
* @license
|
|
436
415
|
* Copyright Google Inc. All Rights Reserved.
|
|
437
416
|
*
|
|
438
417
|
* Use of this source code is governed by an MIT-style license that can be
|
|
439
418
|
* found in the LICENSE file at https://angular.io/license
|
|
440
|
-
*/var
|
|
419
|
+
*/var Iu=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*arguments\)/,xu=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,Eu=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,ku=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{\s+super\(\.\.\.arguments\)/,Ou=function(){function e(e){this._reflect=e||ee.Reflect}return e.prototype.isReflectionEnabled=function(){return!0},e.prototype.factory=function(e){return function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return new(e.bind.apply(e,f([void 0],t)))}},e.prototype._zipTypesAndAnnotations=function(e,t){var n;n=Ue(void 0===e?t.length:e.length);for(var r=0;r<n.length;r++)n[r]=void 0===e?[]:e[r]&&e[r]!=Object?[e[r]]:[],t&&null!=t[r]&&(n[r]=n[r].concat(t[r]));return n},e.prototype._ownParameters=function(e,t){if(function n(e){return Iu.test(e)||ku.test(e)||xu.test(e)&&!Eu.test(e)}(e.toString()))return null;if(e.parameters&&e.parameters!==t.parameters)return e.parameters;var r=e.ctorParameters;if(r&&r!==t.ctorParameters){var o="function"==typeof r?r():r,i=o.map((function(e){return e&&e.type})),a=o.map((function(e){return e&&Pu(e.decorators)}));return this._zipTypesAndAnnotations(i,a)}var u=e.hasOwnProperty(p)&&e[p],s=this._reflect&&this._reflect.getOwnMetadata&&this._reflect.getOwnMetadata("design:paramtypes",e);return s||u?this._zipTypesAndAnnotations(s,u):Ue(e.length)},e.prototype.parameters=function(e){if(!Cu(e))return[];var t=Nu(e),n=this._ownParameters(e,t);return n||t===Object||(n=this.parameters(t)),n||[]},e.prototype._ownAnnotations=function(e,t){if(e.annotations&&e.annotations!==t.annotations){var n=e.annotations;return"function"==typeof n&&n.annotations&&(n=n.annotations),n}return e.decorators&&e.decorators!==t.decorators?Pu(e.decorators):e.hasOwnProperty(d)?e[d]:null},e.prototype.annotations=function(e){if(!Cu(e))return[];var t=Nu(e),n=this._ownAnnotations(e,t)||[];return(t!==Object?this.annotations(t):[]).concat(n)},e.prototype._ownPropMetadata=function(e,t){if(e.propMetadata&&e.propMetadata!==t.propMetadata){var n=e.propMetadata;return"function"==typeof n&&n.propMetadata&&(n=n.propMetadata),n}if(e.propDecorators&&e.propDecorators!==t.propDecorators){var r=e.propDecorators,o={};return Object.keys(r).forEach((function(e){o[e]=Pu(r[e])})),o}return e.hasOwnProperty(h)?e[h]:null},e.prototype.propMetadata=function(e){if(!Cu(e))return{};var t=Nu(e),n={};if(t!==Object){var r=this.propMetadata(t);Object.keys(r).forEach((function(e){n[e]=r[e]}))}var o=this._ownPropMetadata(e,t);return o&&Object.keys(o).forEach((function(e){var t=[];n.hasOwnProperty(e)&&t.push.apply(t,f(n[e])),t.push.apply(t,f(o[e])),n[e]=t})),n},e.prototype.ownPropMetadata=function(e){return Cu(e)&&this._ownPropMetadata(e,Nu(e))||{}},e.prototype.hasLifecycleHook=function(e,t){return e instanceof bu&&t in e.prototype},e.prototype.guards=function(e){return{}},e.prototype.getter=function(e){return new Function("o","return o."+e+";")},e.prototype.setter=function(e){return new Function("o","v","return o."+e+" = v;")},e.prototype.method=function(e){return new Function("o","args","if (!o."+e+") throw new Error('\""+e+"\" is undefined');\n return o."+e+".apply(o, args);")},e.prototype.importUri=function(e){return"object"==typeof e&&e.filePath?e.filePath:"./"+B(e)},e.prototype.resourceUri=function(e){return"./"+B(e)},e.prototype.resolveIdentifier=function(e,t,n,r){return r},e.prototype.resolveEnum=function(e,t){return e[t]},e}();function Pu(e){return e?e.map((function(e){var t=e.type.annotationCls;return new(t.bind.apply(t,f([void 0],e.args?e.args:[])))})):[]}function Nu(e){var t=e.prototype?Object.getPrototypeOf(e.prototype):null;return(t?t.constructor:null)||Object}
|
|
441
420
|
/**
|
|
442
421
|
* @license
|
|
443
422
|
* Copyright Google Inc. All Rights Reserved.
|
|
444
423
|
*
|
|
445
424
|
* Use of this source code is governed by an MIT-style license that can be
|
|
446
425
|
* found in the LICENSE file at https://angular.io/license
|
|
447
|
-
*/var
|
|
426
|
+
*/var Tu=null;function ju(){return Tu=Tu||new Ou}function Du(e){return Au(ju().parameters(e))}function Au(e){var t=te();return e.map((function(e){return function n(e,t){var n={token:null,host:!1,optional:!1,resolved:e.R3ResolvedDependencyType.Token,self:!1,skipSelf:!1};function r(t){n.resolved=e.R3ResolvedDependencyType.Token,n.token=t}if(Array.isArray(t)&&t.length>0)for(var o=0;o<t.length;o++){var i=t[o];if(void 0!==i){var a=Object.getPrototypeOf(i);if(i instanceof C||"Optional"===a.ngMetadataName)n.optional=!0;else if(i instanceof x||"SkipSelf"===a.ngMetadataName)n.skipSelf=!0;else if(i instanceof I||"Self"===a.ngMetadataName)n.self=!0;else if(i instanceof E||"Host"===a.ngMetadataName)n.host=!0;else if(i instanceof b)n.token=i.token;else if(i instanceof O){if(void 0===i.attributeName)throw new Error("Attribute name must be defined.");n.token=i.attributeName,n.resolved=e.R3ResolvedDependencyType.Attribute}else i===mu?(n.token=i,n.resolved=e.R3ResolvedDependencyType.ChangeDetectorRef):r(i)}}else void 0===t||Array.isArray(t)&&0===t.length?(n.token=void 0,n.resolved=W.Invalid):r(t);return n}
|
|
448
427
|
/**
|
|
449
428
|
* @license
|
|
450
429
|
* Copyright Google Inc. All Rights Reserved.
|
|
451
430
|
*
|
|
452
431
|
* Use of this source code is governed by an MIT-style license that can be
|
|
453
432
|
* found in the LICENSE file at https://angular.io/license
|
|
454
|
-
*/(t,e)}))}var
|
|
433
|
+
*/(t,e)}))}var Su=P({provide:String,useValue:P});function Ru(e){return void 0!==e.useClass}function Vu(e){return void 0!==e.useFactory}function Fu(e,t){var n=t||{providedIn:null},r={name:e.name,type:e,typeArgumentCount:0,providedIn:n.providedIn,userDeps:void 0};return(Ru(n)||Vu(n))&&void 0!==n.deps&&(r.userDeps=Au(n.deps)),Ru(n)?r.useClass=q(n.useClass):function o(e){return Su in e}(n)?r.useValue=q(n.useValue):Vu(n)?r.useFactory=n.useFactory:function i(e){return void 0!==e.useExisting}(n)&&(r.useExisting=q(n.useExisting)),r}
|
|
455
434
|
/**
|
|
456
435
|
* @license
|
|
457
436
|
* Copyright Google Inc. All Rights Reserved.
|
|
458
437
|
*
|
|
459
438
|
* Use of this source code is governed by an MIT-style license that can be
|
|
460
439
|
* found in the LICENSE file at https://angular.io/license
|
|
461
|
-
*/var
|
|
440
|
+
*/var Mu=P({provide:String,useValue:P}),Hu=[];function Lu(e,t){if(!t){var n=(s=new Ou).parameters(e);return function(){return new(e.bind.apply(e,f([void 0],Oe(n))))}}if(Mu in t){var r=t;return function(){return r.useValue}}if(t.useExisting){var o=t;return function(){return Ie(q(o.useExisting))}}if(t.useFactory){var i=t;return function(){return i.useFactory.apply(i,f(Oe(i.deps||Hu)))}}if(t.useClass){var a=t,u=t.deps;if(!u){var s=new Ou;u=s.parameters(e)}return function(){var e;return new((e=q(a.useClass)).bind.apply(e,f([void 0],Oe(u))))}}var l=t.deps;return l||(s=new Ou,l=s.parameters(e)),function(){return new(e.bind.apply(e,f([void 0],Oe(l))))}}
|
|
462
441
|
/**
|
|
463
442
|
* @license
|
|
464
443
|
* Copyright Google Inc. All Rights Reserved.
|
|
465
444
|
*
|
|
466
445
|
* Use of this source code is governed by an MIT-style license that can be
|
|
467
446
|
* found in the LICENSE file at https://angular.io/license
|
|
468
|
-
*/var
|
|
447
|
+
*/var Bu=v("Injectable",void 0,void 0,void 0,(function(e,t){return Uu(e,t)})),Uu=function Qu(e,t){t&&void 0!==t.providedIn&&!A(e)&&(e.ɵprov=T({token:e,providedIn:t.providedIn,factory:Lu(e,t)}))},zu=new ce("Set Injector scope."),qu={},Zu={},Wu=[],Ku=void 0;function Gu(){return void 0===Ku&&(Ku=new Pe),Ku}function Ju(e,t,n,r){return void 0===t&&(t=null),void 0===n&&(n=null),t=t||Gu(),new Yu(e,n,t,r)}var Yu=function(){function t(e,t,n,r){var o=this;void 0===r&&(r=null),this.parent=n,this.records=new Map,this.injectorDefTypes=new Set,this.onDestroy=new Set,this._destroyed=!1;var i=[];t&&He(t,(function(n){return o.processProvider(n,e,t)})),He([e],(function(e){return o.processInjectorType(e,[],i)})),this.records.set(fe,es(void 0,this));var a=this.records.get(zu);this.scope=null!=a?a.value:null,this.injectorDefTypes.forEach((function(e){return o.get(e)})),this.source=r||("object"==typeof e?null:B(e))}return Object.defineProperty(t.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this.assertNotDestroyed(),this._destroyed=!0;try{this.onDestroy.forEach((function(e){return e.ngOnDestroy()}))}finally{this.records.clear(),this.onDestroy.clear(),this.injectorDefTypes.clear()}},t.prototype.get=function(t,n,r){void 0===n&&(n=de),void 0===r&&(r=e.InjectFlags.Default),this.assertNotDestroyed();var o=we(this);try{if(!(r&e.InjectFlags.SkipSelf)){var i=this.records.get(t);if(void 0===i){var a=function u(e){return"function"==typeof e||"object"==typeof e&&e instanceof ce}
|
|
469
448
|
/**
|
|
470
449
|
* @license
|
|
471
450
|
* Copyright Google Inc. All Rights Reserved.
|
|
472
451
|
*
|
|
473
452
|
* Use of this source code is governed by an MIT-style license that can be
|
|
474
453
|
* found in the LICENSE file at https://angular.io/license
|
|
475
|
-
*/(t)&&A(t);i=a&&this.injectableDefInScope(a)?
|
|
454
|
+
*/(t)&&A(t);i=a&&this.injectableDefInScope(a)?es($u(t),qu):null,this.records.set(t,i)}if(null!=i)return this.hydrate(t,i)}return(r&e.InjectFlags.Self?Gu():this.parent).get(t,n=r&e.InjectFlags.Optional&&n===de?null:n)}catch(e){if("NullInjectorError"===e.name){if((e[pe]=e[pe]||[]).unshift(B(t)),o)throw e;return Ne(e,t,"R3InjectorError",this.source)}throw e}finally{we(o)}},t.prototype.toString=function(){var e=[];return this.records.forEach((function(t,n){return e.push(B(n))})),"R3Injector["+e.join(", ")+"]"},t.prototype.assertNotDestroyed=function(){if(this._destroyed)throw new Error("Injector has already been destroyed.")},t.prototype.processInjectorType=function(e,t,n){var r=this;if(!(e=q(e)))return!1;var o=R(e),i=null==o&&e.ngModule||void 0,a=void 0===i?e:i,u=-1!==n.indexOf(a);if(void 0!==i&&(o=R(i)),null==o)return!1;if(null!=o.imports&&!u){var s;n.push(a);try{He(o.imports,(function(e){r.processInjectorType(e,t,n)&&(void 0===s&&(s=[]),s.push(e))}))}finally{}if(void 0!==s)for(var l=function(e){var t=s[e],n=t.ngModule,o=t.providers;He(o,(function(e){return r.processProvider(e,n,o||Wu)}))},c=0;c<s.length;c++)l(c)}this.injectorDefTypes.add(a),this.records.set(a,es(o.factory,qu));var f=o.providers;if(null!=f&&!u){var d=e;He(f,(function(e){return r.processProvider(e,d,f)}))}return void 0!==i&&void 0!==e.providers},t.prototype.processProvider=function(e,t,n){var r=ns(e=q(e))?e:q(e&&e.provide),o=function i(e,t,n){return ts(e)?es(void 0,e.useValue):es(Xu(e,t,n),qu)}(e,t,n);if(ns(e)||!0!==e.multi){var a=this.records.get(r);a&&void 0!==a.multi&&ri()}else{var u=this.records.get(r);u?void 0===u.multi&&ri():((u=es(void 0,qu,!0)).factory=function(){return Oe(u.multi)},this.records.set(r,u)),r=e,u.multi.push(e)}this.records.set(r,o)},t.prototype.hydrate=function(e,t){return t.value===Zu?function n(e){throw new Error("Cannot instantiate cyclic dependency! "+e)}(B(e)):t.value===qu&&(t.value=Zu,t.value=t.factory()),"object"==typeof t.value&&t.value&&function r(e){return null!==e&&"object"==typeof e&&"function"==typeof e.ngOnDestroy}(t.value)&&this.onDestroy.add(t.value),t.value},t.prototype.injectableDefInScope=function(e){return!!e.providedIn&&("string"==typeof e.providedIn?"any"===e.providedIn||e.providedIn===this.scope:this.injectorDefTypes.has(e.providedIn))},t}();function $u(e){var t=A(e),n=null!==t?t.factory:lt(e);if(null!==n)return n;var r=R(e);if(null!==r)return r.factory;if(e instanceof ce)throw new Error("Token "+B(e)+" is missing a ɵprov definition.");if(e instanceof Function)return function o(e){var t=e.length;if(t>0){var n=Ue(t,"?");throw new Error("Can't resolve all parameters for "+B(e)+": ("+n.join(", ")+").")}var r=function o(e){var t=e&&(e[V]||e[H]||e[M]&&e[M]());if(t){var n=function r(e){if(e.hasOwnProperty("name"))return e.name;var t=(""+e).match(/^function\s*([^\s(]+)/);return null===t?"":t[1]}(e);return console.warn('DEPRECATED: DI is instantiating a token "'+n+'" that inherits its @Injectable decorator but does not provide one itself.\nThis will become an error in v10. Please add @Injectable() to the "'+n+'" class.'),t}return null}(e);return null!==r?function(){return r.factory(e)}:function(){return new e}}(e);throw new Error("unreachable")}function Xu(e,t,n){var r=void 0;if(ns(e))return $u(q(e));if(ts(e))r=function(){return q(e.useValue)};else if(function o(e){return!(!e||!e.useFactory)}(e))r=function(){return e.useFactory.apply(e,f(Oe(e.deps||[])))};else if(function i(e){return!(!e||!e.useExisting)}(e))r=function(){return Ie(q(e.useExisting))};else{var a=q(e&&(e.useClass||e.provide));if(a||function u(e,t,n){var r="";throw e&&t&&(r=" - only instances of Provider and Type are allowed, got: ["+t.map((function(e){return e==n?"?"+n+"?":"..."})).join(", ")+"]"),new Error("Invalid provider for the NgModule '"+B(e)+"'"+r)}(t,n,e),!function s(e){return!!e.deps}(e))return $u(a);r=function(){return new(a.bind.apply(a,f([void 0],Oe(e.deps))))}}return r}function es(e,t,n){return void 0===n&&(n=!1),{factory:e,value:t,multi:n?[]:void 0}}function ts(e){return null!==e&&"object"==typeof e&&me in e}function ns(e){return"function"==typeof e}var rs=function os(e,t,n){return new cs(e,t,n)},is=function(){function e(){}return e.create=function(e,t){return Array.isArray(e)?rs(e,t,""):rs(e.providers,e.parent,e.name||"")},e.THROW_IF_NOT_FOUND=de,e.NULL=new Pe,e.ɵprov=T({token:e,providedIn:"any",factory:function(){return Ie(fe)}}),e.__NG_ELEMENT_ID__=-1,e}(),as=function(e){return e},us=[],ss=as,ls=function(){return Array.prototype.slice.call(arguments)},cs=function(){function t(e,t,n){void 0===t&&(t=is.NULL),void 0===n&&(n=null),this.parent=t,this.source=n;var r=this._records=new Map;r.set(is,{token:is,fn:as,deps:us,value:this,useNew:!1}),r.set(fe,{token:fe,fn:as,deps:us,value:this,useNew:!1}),this.scope=function e(t,n){var r=null;if(n)if(n=q(n),Array.isArray(n))for(var o=0;o<n.length;o++)r=e(t,n[o])||r;else{if("function"==typeof n)throw ps("Function/Class not supported",n);if(!n||"object"!=typeof n||!n.provide)throw ps("Unexpected provider",n);var i=q(n.provide),a=fs(n);if(!0===n.multi){var u=t.get(i);if(u){if(u.fn!==ls)throw ds(i)}else t.set(i,u={token:n.provide,deps:[],useNew:!1,fn:ls,value:us});u.deps.push({token:i=n,options:6})}var s=t.get(i);if(s&&s.fn==ls)throw ds(i);i===zu&&(r=a.value),t.set(i,a)}return r}(r,e)}return t.prototype.get=function(t,n,r){void 0===r&&(r=e.InjectFlags.Default);var o=this._records,i=o.get(t);if(void 0===i){var a=A(t);if(a){var u=a&&a.providedIn;("any"===u||null!=u&&u===this.scope)&&o.set(t,i=fs({provide:t,useFactory:a.factory,deps:us}))}void 0===i&&o.set(t,null)}var s=we(this);try{return function t(n,r,o,i,a,u){try{return function s(n,r,o,i,a,u){var s,l;if(!r||u&e.InjectFlags.SkipSelf)l=u&e.InjectFlags.Self?is.NULL.get(n,u&e.InjectFlags.Optional?void 0!==a?a:null:a):i.get(n,a,e.InjectFlags.Default);else{if((l=r.value)==ss)throw Error("ɵCircular dependency");if(l===us){r.value=ss;var c=r.useNew,d=r.fn,p=r.deps,h=us;if(p.length){h=[];for(var v=0;v<p.length;v++){var y=p[v],g=y.options,m=2&g?o.get(y.token):void 0;h.push(t(y.token,m,o,m||4&g?i:is.NULL,1&g?null:is.THROW_IF_NOT_FOUND,e.InjectFlags.Default))}}r.value=l=c?new((s=d).bind.apply(s,f([void 0],h))):d.apply(void 0,h)}}return l}(n,r,o,i,a,u)}catch(e){throw e instanceof Error||(e=new Error(e)),(e[pe]=e[pe]||[]).unshift(n),r&&r.value==ss&&(r.value=us),e}}(t,i,o,this.parent,n,r)}catch(e){return Ne(e,t,"StaticInjectorError",this.source)}finally{we(s)}},t.prototype.toString=function(){var e=[];return this._records.forEach((function(t,n){return e.push(B(n))})),"StaticInjector["+e.join(", ")+"]"},t}();function fs(e){var t=function n(e){var t=us,n=e.deps;if(n&&n.length){t=[];for(var r=0;r<n.length;r++){var o=6,i=q(n[r]);if(Array.isArray(i))for(var a=0,u=i;a<u.length;a++){var s=u[a];s instanceof C||s==C?o|=1:s instanceof x||s==x?o&=-3:s instanceof I||s==I?o&=-5:i=s instanceof b?s.token:q(s)}t.push({token:i,options:o})}}else if(e.useExisting)t=[{token:i=q(e.useExisting),options:6}];else if(!(n||me in e))throw ps("'deps' required",e);return t}(e),r=as,o=us,i=!1,a=q(e.provide);if(me in e)o=e.useValue;else if(e.useFactory)r=e.useFactory;else if(e.useExisting);else if(e.useClass)i=!0,r=q(e.useClass);else{if("function"!=typeof a)throw ps("StaticProvider does not have [useValue|useFactory|useExisting|useClass] or [provide] is not newable",e);i=!0,r=a}return{deps:t,fn:r,useNew:i,value:o}}function ds(e){return ps("Cannot mix multi providers and regular providers",e)}function ps(e,t){return new Error(Te(e,t,"StaticInjectorError"))}
|
|
476
455
|
/**
|
|
477
456
|
* @license
|
|
478
457
|
* Copyright Google Inc. All Rights Reserved.
|
|
479
458
|
*
|
|
480
459
|
* Use of this source code is governed by an MIT-style license that can be
|
|
481
460
|
* found in the LICENSE file at https://angular.io/license
|
|
482
|
-
*/function
|
|
461
|
+
*/function hs(e){return e.length>1?" ("+function t(e){for(var t=[],n=0;n<e.length;++n){if(t.indexOf(e[n])>-1)return t.push(e[n]),t;t.push(e[n])}return t}(e.slice().reverse()).map((function(e){return B(e.token)})).join(" -> ")+")":""}function vs(e,t,n,r){var o=[t],i=n(o),a=r?function u(e,t){var n=e+" caused by: "+(t instanceof Error?t.message:t),r=Error(n);return r[Er]=t,r}
|
|
483
462
|
/**
|
|
484
463
|
* @license
|
|
485
464
|
* Copyright Google Inc. All Rights Reserved.
|
|
486
465
|
*
|
|
487
466
|
* Use of this source code is governed by an MIT-style license that can be
|
|
488
467
|
* found in the LICENSE file at https://angular.io/license
|
|
489
|
-
*/(i,r):Error(i);return a.addKey=
|
|
468
|
+
*/(i,r):Error(i);return a.addKey=ys,a.keys=o,a.injectors=[e],a.constructResolvingMessage=n,a[Er]=r,a}function ys(e,t){this.injectors.push(e),this.keys.push(t),this.message=this.constructResolvingMessage(this.keys)}function gs(e,t){for(var n=[],r=0,o=t.length;r<o;r++){var i=t[r];n.push(i&&0!=i.length?i.map(B).join(" "):"?")}return Error("Cannot resolve all parameters for '"+B(e)+"'("+n.join(", ")+"). Make sure that all the parameters are decorated with Inject or have valid type annotations and that '"+B(e)+"' is decorated with Injectable.")}
|
|
490
469
|
/**
|
|
491
470
|
* @license
|
|
492
471
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -494,14 +473,14 @@ var Cs=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return xs(
|
|
|
494
473
|
* Use of this source code is governed by an MIT-style license that can be
|
|
495
474
|
* found in the LICENSE file at https://angular.io/license
|
|
496
475
|
*/
|
|
497
|
-
var
|
|
476
|
+
var ms=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("Token must be defined!");this.displayName=B(this.token)}return e.get=function(e){return _s.get(q(e))},Object.defineProperty(e,"numberOfKeys",{get:function(){return _s.numberOfKeys},enumerable:!0,configurable:!0}),e}(),_s=new(function(){function e(){this._allKeys=new Map}return e.prototype.get=function(e){if(e instanceof ms)return e;if(this._allKeys.has(e))return this._allKeys.get(e);var t=new ms(e,ms.numberOfKeys);return this._allKeys.set(e,t),t},Object.defineProperty(e.prototype,"numberOfKeys",{get:function(){return this._allKeys.size},enumerable:!0,configurable:!0}),e}()),ws=new(function(){function e(e){this.reflectionCapabilities=e}return e.prototype.updateCapabilities=function(e){this.reflectionCapabilities=e},e.prototype.factory=function(e){return this.reflectionCapabilities.factory(e)},e.prototype.parameters=function(e){return this.reflectionCapabilities.parameters(e)},e.prototype.annotations=function(e){return this.reflectionCapabilities.annotations(e)},e.prototype.propMetadata=function(e){return this.reflectionCapabilities.propMetadata(e)},e.prototype.hasLifecycleHook=function(e,t){return this.reflectionCapabilities.hasLifecycleHook(e,t)},e.prototype.getter=function(e){return this.reflectionCapabilities.getter(e)},e.prototype.setter=function(e){return this.reflectionCapabilities.setter(e)},e.prototype.method=function(e){return this.reflectionCapabilities.method(e)},e.prototype.importUri=function(e){return this.reflectionCapabilities.importUri(e)},e.prototype.resourceUri=function(e){return this.reflectionCapabilities.resourceUri(e)},e.prototype.resolveIdentifier=function(e,t,n,r){return this.reflectionCapabilities.resolveIdentifier(e,t,n,r)},e.prototype.resolveEnum=function(e,t){return this.reflectionCapabilities.resolveEnum(e,t)},e}())(new Ou),bs=function(){function e(e,t,n){this.key=e,this.optional=t,this.visibility=n}return e.fromKey=function(t){return new e(t,!1,null)},e}(),Cs=[],Is=function Is(e,t,n){this.key=e,this.resolvedFactories=t,this.multiProvider=n,this.resolvedFactory=this.resolvedFactories[0]},xs=function xs(e,t){this.factory=e,this.dependencies=t};function Es(e){var t,n;if(e.useClass){var r=q(e.useClass);t=ws.factory(r),n=Ps(r)}else e.useExisting?(t=function(e){return e},n=[bs.fromKey(ms.get(e.useExisting))]):e.useFactory?(t=e.useFactory,n=function o(e,t){if(t){var n=t.map((function(e){return[e]}));return t.map((function(t){return Ns(e,t,n)}))}return Ps(e)}(e.useFactory,e.deps)):(t=function(){return e.useValue},n=Cs);return new xs(t,n)}function ks(e){return new Is(ms.get(e.provide),[Es(e)],e.multi||!1)}function Os(e){var t=function n(e,t){for(var n=0;n<e.length;n++){var r=e[n],o=t.get(r.key.id);if(o){if(r.multiProvider!==o.multiProvider)throw Error("Cannot mix multi providers and regular providers, got: "+o+" "+r);if(r.multiProvider)for(var i=0;i<r.resolvedFactories.length;i++)o.resolvedFactories.push(r.resolvedFactories[i]);else t.set(r.key.id,r)}else{var a;a=r.multiProvider?new Is(r.key,r.resolvedFactories.slice(),r.multiProvider):r,t.set(r.key.id,a)}}return t}(function e(t,n){return t.forEach((function(t){if(t instanceof bu)n.push({provide:t,useClass:t});else if(t&&"object"==typeof t&&void 0!==t.provide)n.push(t);else{if(!Array.isArray(t))throw function r(e){return Error("Invalid provider - only instances of Provider and Type are allowed, got: "+e)}(t);e(t,n)}})),n}(e,[]).map(ks),new Map);return Array.from(t.values())}function Ps(e){var t=ws.parameters(e);if(!t)return[];if(t.some((function(e){return null==e})))throw gs(e,t);return t.map((function(n){return Ns(e,n,t)}))}function Ns(e,t,n){var r=null,o=!1;if(!Array.isArray(t))return Ts(t instanceof b?t.token:t,o,null);for(var i=null,a=0;a<t.length;++a){var u=t[a];u instanceof bu?r=u:u instanceof b?r=u.token:u instanceof C?o=!0:u instanceof I||u instanceof x?i=u:u instanceof ce&&(r=u)}if(null!=(r=q(r)))return Ts(r,o,i);throw gs(e,n)}function Ts(e,t,n){return new bs(ms.get(e),t,n)}
|
|
498
477
|
/**
|
|
499
478
|
* @license
|
|
500
479
|
* Copyright Google Inc. All Rights Reserved.
|
|
501
480
|
*
|
|
502
481
|
* Use of this source code is governed by an MIT-style license that can be
|
|
503
482
|
* found in the LICENSE file at https://angular.io/license
|
|
504
|
-
*/var
|
|
483
|
+
*/var js,Ds={},As=function(){function e(){}return e.resolve=function(e){return Os(e)},e.resolveAndCreate=function(t,n){var r=e.resolve(t);return e.fromResolvedProviders(r,n)},e.fromResolvedProviders=function(e,t){return new Ss(e,t)},e}(),Ss=function(){function e(e,t){this._constructionCounter=0,this._providers=e,this.parent=t||null;var n=e.length;this.keyIds=[],this.objs=[];for(var r=0;r<n;r++)this.keyIds[r]=e[r].key.id,this.objs[r]=Ds}return e.prototype.get=function(e,t){return void 0===t&&(t=de),this._getByKey(ms.get(e),null,t)},e.prototype.resolveAndCreateChild=function(e){var t=As.resolve(e);return this.createChildFromResolved(t)},e.prototype.createChildFromResolved=function(t){var n=new e(t);return n.parent=this,n},e.prototype.resolveAndInstantiate=function(e){return this.instantiateResolved(As.resolve([e])[0])},e.prototype.instantiateResolved=function(e){return this._instantiateProvider(e)},e.prototype.getProviderAtIndex=function(e){if(e<0||e>=this._providers.length)throw function t(e){return Error("Index "+e+" is out-of-bounds.")}(e);return this._providers[e]},e.prototype._new=function(e){if(this._constructionCounter++>this._getMaxNumberOfObjects())throw function t(e,n){return vs(e,n,(function(e){return"Cannot instantiate cyclic dependency!"+hs(e)}))}(this,e.key);return this._instantiateProvider(e)},e.prototype._getMaxNumberOfObjects=function(){return this.objs.length},e.prototype._instantiateProvider=function(e){if(e.multiProvider){for(var t=[],n=0;n<e.resolvedFactories.length;++n)t[n]=this._instantiate(e,e.resolvedFactories[n]);return t}return this._instantiate(e,e.resolvedFactories[0])},e.prototype._instantiate=function(e,t){var n,r,o=this,i=t.factory;try{n=t.dependencies.map((function(e){return o._getByReflectiveDependency(e)}))}catch(t){throw t.addKey&&t.addKey(this,e.key),t}try{r=i.apply(void 0,f(n))}catch(t){throw function a(e,t,n,r){return vs(e,r,(function(e){var n=B(e[0].token);return t.message+": Error during instantiation of "+n+"!"+hs(e)+"."}),t)}(this,t,0,e.key)}return r},e.prototype._getByReflectiveDependency=function(e){return this._getByKey(e.key,e.visibility,e.optional?null:de)},e.prototype._getByKey=function(t,n,r){return t===e.INJECTOR_KEY?this:n instanceof I?this._getByKeySelf(t,r):this._getByKeyDefault(t,r,n)},e.prototype._getObjByKeyId=function(e){for(var t=0;t<this.keyIds.length;t++)if(this.keyIds[t]===e)return this.objs[t]===Ds&&(this.objs[t]=this._new(this._providers[t])),this.objs[t];return Ds},e.prototype._throwOrNull=function(e,t){if(t!==de)return t;throw function n(e,t){return vs(e,t,(function(e){return"No provider for "+B(e[0].token)+"!"+hs(e)}))}(this,e)},e.prototype._getByKeySelf=function(e,t){var n=this._getObjByKeyId(e.id);return n!==Ds?n:this._throwOrNull(e,t)},e.prototype._getByKeyDefault=function(t,n,r){var o;for(o=r instanceof x?this.parent:this;o instanceof e;){var i=o,a=i._getObjByKeyId(t.id);if(a!==Ds)return a;o=i.parent}return null!==o?o.get(t.token,n):this._throwOrNull(t,n)},Object.defineProperty(e.prototype,"displayName",{get:function(){return"ReflectiveInjector(providers: ["+function e(t,n){for(var r=[],o=0;o<t._providers.length;++o)r[o]=n(t.getProviderAtIndex(o));return r}
|
|
505
484
|
/**
|
|
506
485
|
* @license
|
|
507
486
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -522,7 +501,7 @@ var Cl=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("
|
|
|
522
501
|
*
|
|
523
502
|
* Use of this source code is governed by an MIT-style license that can be
|
|
524
503
|
* found in the LICENSE file at https://angular.io/license
|
|
525
|
-
*/(this,(function(e){return' "'+e.key.displayName+'" '})).join(", ")+"])"},enumerable:!0,configurable:!0}),e.prototype.toString=function(){return this.displayName},e.INJECTOR_KEY=
|
|
504
|
+
*/(this,(function(e){return' "'+e.key.displayName+'" '})).join(", ")+"])"},enumerable:!0,configurable:!0}),e.prototype.toString=function(){return this.displayName},e.INJECTOR_KEY=ms.get(is),e}(),Rs=new ce("AnalyzeForEntryComponents"),Vs=m("ContentChildren",(function(e,t){return void 0===t&&(t={}),i({selector:e,first:!1,isViewQuery:!1,descendants:!1},t)}),js=function js(){}),Fs=m("ContentChild",(function(e,t){return void 0===t&&(t={}),i({selector:e,first:!0,isViewQuery:!1,descendants:!0},t)}),js),Ms=m("ViewChildren",(function(e,t){return void 0===t&&(t={}),i({selector:e,first:!1,isViewQuery:!0,descendants:!0},t)}),js),Hs=m("ViewChild",(function(e,t){return i({selector:e,first:!0,isViewQuery:!0,descendants:!0},t)}),js);
|
|
526
505
|
/**
|
|
527
506
|
* @license
|
|
528
507
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -530,21 +509,28 @@ var Cl=function(){function e(e,t){if(this.token=e,this.id=t,!e)throw new Error("
|
|
|
530
509
|
* Use of this source code is governed by an MIT-style license that can be
|
|
531
510
|
* found in the LICENSE file at https://angular.io/license
|
|
532
511
|
*/
|
|
533
|
-
function
|
|
512
|
+
function Ls(e){var t=[],n=new Map;function r(t){var r=n.get(t);if(!r){var o=e(t);n.set(t,r=o.then(qs))}return r}return Bs.forEach((function(e,n){var o=[];e.templateUrl&&o.push(r(e.templateUrl).then((function(t){e.template=t})));var i=e.styleUrls,a=e.styles||(e.styles=[]),u=e.styles.length;i&&i.forEach((function(t,n){a.push(""),o.push(r(t).then((function(r){a[u+n]=r,i.splice(i.indexOf(t),1),0==i.length&&(e.styleUrls=void 0)})))}));var s=Promise.all(o).then((function(){return function e(t){Us.delete(t)}
|
|
513
|
+
/**
|
|
514
|
+
* @license
|
|
515
|
+
* Copyright Google Inc. All Rights Reserved.
|
|
516
|
+
*
|
|
517
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
518
|
+
* found in the LICENSE file at https://angular.io/license
|
|
519
|
+
*/(n)}));t.push(s)})),zs(),Promise.all(t).then((function(){}))}var Bs=new Map,Us=new Set;function Qs(e){return!!(e.templateUrl&&!e.hasOwnProperty("template")||e.styleUrls&&e.styleUrls.length)}function zs(){var e=Bs;return Bs=new Map,e}function qs(e){return"string"==typeof e?e:e.text()}function Zs(e,t){for(var n=e.styles,r=e.classes,o=0,i=0;i<t.length;i++){var a=t[i];"number"==typeof a?o=a:1==o?r=U(r,a):2==o&&(n=U(n,a+": "+t[++i]+";"))}null!==n&&(e.styles=n),null!==r&&(e.classes=r)}
|
|
534
520
|
/**
|
|
535
521
|
* @license
|
|
536
522
|
* Copyright Google Inc. All Rights Reserved.
|
|
537
523
|
*
|
|
538
524
|
* Use of this source code is governed by an MIT-style license that can be
|
|
539
525
|
* found in the LICENSE file at https://angular.io/license
|
|
540
|
-
*/
|
|
526
|
+
*/var Ws=null;function Ks(){if(!Ws){var e=ee.Symbol;if(e&&e.iterator)Ws=e.iterator;else for(var t=Object.getOwnPropertyNames(Map.prototype),n=0;n<t.length;++n){var r=t[n];"entries"!==r&&"size"!==r&&Map.prototype[r]===Map.prototype.entries&&(Ws=r)}}return Ws}
|
|
541
527
|
/**
|
|
542
528
|
* @license
|
|
543
529
|
* Copyright Google Inc. All Rights Reserved.
|
|
544
530
|
*
|
|
545
531
|
* Use of this source code is governed by an MIT-style license that can be
|
|
546
532
|
* found in the LICENSE file at https://angular.io/license
|
|
547
|
-
*/
|
|
533
|
+
*/
|
|
548
534
|
/**
|
|
549
535
|
* @license
|
|
550
536
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -552,6 +538,7 @@ function Ql(e){var t=[],n=new Map;function r(t){var r=n.get(t);if(!r){var o=e(t)
|
|
|
552
538
|
* Use of this source code is governed by an MIT-style license that can be
|
|
553
539
|
* found in the LICENSE file at https://angular.io/license
|
|
554
540
|
*/
|
|
541
|
+
function Gs(e,t){return e===t||"number"==typeof e&&"number"==typeof t&&isNaN(e)&&isNaN(t)}
|
|
555
542
|
/**
|
|
556
543
|
* @license
|
|
557
544
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -559,72 +546,78 @@ function Ql(e){var t=[],n=new Map;function r(t){var r=n.get(t);if(!r){var o=e(t)
|
|
|
559
546
|
* Use of this source code is governed by an MIT-style license that can be
|
|
560
547
|
* found in the LICENSE file at https://angular.io/license
|
|
561
548
|
*/
|
|
562
|
-
function
|
|
549
|
+
function Js(e,t){var n=$s(e),r=$s(t);return n&&r?function o(e,t,n){for(var r=e[Ks()](),o=t[Ks()]();;){var i=r.next(),a=o.next();if(i.done&&a.done)return!0;if(i.done||a.done)return!1;if(!n(i.value,a.value))return!1}}(e,t,Js):!(n||!e||"object"!=typeof e&&"function"!=typeof e||r||!t||"object"!=typeof t&&"function"!=typeof t)||Gs(e,t)}var Ys=function(){function e(e){this.wrapped=e}return e.wrap=function(t){return new e(t)},e.unwrap=function(t){return e.isWrapped(t)?t.wrapped:t},e.isWrapped=function(t){return t instanceof e},e}();function $s(e){return!!Xs(e)&&(Array.isArray(e)||!(e instanceof Map)&&Ks()in e)}function Xs(e){return null!==e&&("function"==typeof e||"object"==typeof e)}
|
|
563
550
|
/**
|
|
564
551
|
* @license
|
|
565
552
|
* Copyright Google Inc. All Rights Reserved.
|
|
566
553
|
*
|
|
567
554
|
* Use of this source code is governed by an MIT-style license that can be
|
|
568
555
|
* found in the LICENSE file at https://angular.io/license
|
|
569
|
-
*/
|
|
570
|
-
function ec(e,t){var n=nc(e),r=nc(t);return n&&r?function o(e,t,n){for(var r=e[$l()](),o=t[$l()]();;){var i=r.next(),a=o.next();if(i.done&&a.done)return!0;if(i.done||a.done)return!1;if(!n(i.value,a.value))return!1}}(e,t,ec):!(n||!e||"object"!=typeof e&&"function"!=typeof e||r||!t||"object"!=typeof t&&"function"!=typeof t)||Xl(e,t)}var tc=function(){function e(e){this.wrapped=e}return e.wrap=function(t){return new e(t)},e.unwrap=function(t){return e.isWrapped(t)?t.wrapped:t},e.isWrapped=function(t){return t instanceof e},e}();function nc(e){return!!rc(e)&&(Array.isArray(e)||!(e instanceof Map)&&$l()in e)}function rc(e){return null!==e&&("function"==typeof e||"object"==typeof e)}
|
|
556
|
+
*/function el(e,t,n){return e[t]=n}function tl(e,t){return e[t]}function nl(e,t,n){return!Object.is(e[t],n)&&(e[t]=n,!0)}function rl(e,t,n,r){var o=nl(e,t,n);return nl(e,t+1,r)||o}function ol(e,t,n,r,o){var i=rl(e,t,n,r);return nl(e,t+2,o)||i}function il(e,t,n,r,o,i){var a=rl(e,t,n,r);return rl(e,t+2,o,i)||a}
|
|
571
557
|
/**
|
|
572
558
|
* @license
|
|
573
559
|
* Copyright Google Inc. All Rights Reserved.
|
|
574
560
|
*
|
|
575
561
|
* Use of this source code is governed by an MIT-style license that can be
|
|
576
562
|
* found in the LICENSE file at https://angular.io/license
|
|
577
|
-
*/function
|
|
563
|
+
*/function al(e,t,n,r){var o=Jt();return nl(o,ln(),t)&&ya(bn(),e,t,Yt(),o,n,r),al}
|
|
578
564
|
/**
|
|
579
565
|
* @license
|
|
580
566
|
* Copyright Google Inc. All Rights Reserved.
|
|
581
567
|
*
|
|
582
568
|
* Use of this source code is governed by an MIT-style license that can be
|
|
583
569
|
* found in the LICENSE file at https://angular.io/license
|
|
584
|
-
*/function
|
|
570
|
+
*/function ul(e,t){for(var n=!1,r=un(),o=1;o<t.length;o+=2)n=nl(e,r++,t[o])||n;if(sn(r),!n)return vi;var i=t[0];for(o=1;o<t.length;o+=2)i+=Yn(t[o])+t[o+1];return i}function sl(e,t,n,r){return nl(e,ln(),n)?t+Yn(n)+r:vi}function ll(e,t,n,r,o,i){var a=rl(e,un(),n,o);return cn(2),a?t+Yn(n)+r+Yn(o)+i:vi}function cl(e,t,n,r,o,i,a,u){var s=ol(e,un(),n,o,a);return cn(3),s?t+Yn(n)+r+Yn(o)+i+Yn(a)+u:vi}function fl(e,t,n,r,o,i,a,u,s,l){var c=il(e,un(),n,o,a,s);return cn(4),c?t+Yn(n)+r+Yn(o)+i+Yn(a)+u+Yn(s)+l:vi}function dl(e,t,n,r,o,i,a,u,s,l,c,f){var d=un(),p=il(e,d,n,o,a,s);return p=nl(e,d+4,c)||p,cn(5),p?t+Yn(n)+r+Yn(o)+i+Yn(a)+u+Yn(s)+l+Yn(c)+f:vi}function pl(e,t,n,r,o,i,a,u,s,l,c,f,d,p){var h=un(),v=il(e,h,n,o,a,s);return v=rl(e,h+4,c,d)||v,cn(6),v?t+Yn(n)+r+Yn(o)+i+Yn(a)+u+Yn(s)+l+Yn(c)+f+Yn(d)+p:vi}function hl(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v){var y=un(),g=il(e,y,n,o,a,s);return g=ol(e,y+4,c,d,h)||g,cn(7),g?t+Yn(n)+r+Yn(o)+i+Yn(a)+u+Yn(s)+l+Yn(c)+f+Yn(d)+p+Yn(h)+v:vi}function vl(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g){var m=un(),_=il(e,m,n,o,a,s);return _=il(e,m+4,c,d,h,y)||_,cn(8),_?t+Yn(n)+r+Yn(o)+i+Yn(a)+u+Yn(s)+l+Yn(c)+f+Yn(d)+p+Yn(h)+v+Yn(y)+g:vi}function yl(e,t,n,r,o,i){var a=Jt(),u=sl(a,t,n,r);return u!==vi&&ya(bn(),e,u,Yt(),a,o,i),yl}function gl(e,t,n,r,o,i,a,u){var s=Jt(),l=ll(s,t,n,r,o,i);return l!==vi&&ya(bn(),e,l,Yt(),s,a,u),gl}function ml(e,t,n,r,o,i,a,u,s,l){var c=Jt(),f=cl(c,t,n,r,o,i,a,u);return f!==vi&&ya(bn(),e,f,Yt(),c,s,l),ml}function _l(e,t,n,r,o,i,a,u,s,l,c,f){var d=Jt(),p=fl(d,t,n,r,o,i,a,u,s,l);return p!==vi&&ya(bn(),e,p,Yt(),d,c,f),_l}function wl(e,t,n,r,o,i,a,u,s,l,c,f,d,p){var h=Jt(),v=dl(h,t,n,r,o,i,a,u,s,l,c,f);return v!==vi&&ya(bn(),e,v,Yt(),h,d,p),wl}function bl(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v){var y=Jt(),g=pl(y,t,n,r,o,i,a,u,s,l,c,f,d,p);return g!==vi&&ya(bn(),e,g,Yt(),y,h,v),bl}function Cl(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g){var m=Jt(),_=hl(m,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v);return _!==vi&&ya(bn(),e,_,Yt(),m,y,g),Cl}function Il(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m,_){var w=Jt(),b=vl(w,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g);return b!==vi&&ya(bn(),e,b,Yt(),w,m,_),Il}function xl(e,t,n,r){var o=Jt(),i=ul(o,t);if(i!==vi){var a=Yt();ya(bn(),e,i,a,o,n,r)}return xl}
|
|
585
571
|
/**
|
|
586
572
|
* @license
|
|
587
573
|
* Copyright Google Inc. All Rights Reserved.
|
|
588
574
|
*
|
|
589
575
|
* Use of this source code is governed by an MIT-style license that can be
|
|
590
576
|
* found in the LICENSE file at https://angular.io/license
|
|
591
|
-
*/function
|
|
577
|
+
*/function El(e){var t=Jo(e);ka(t[dt],t,e)}function kl(e){!function t(e,n){var r,o=0===e.flags;e.flags|=n,o&&e.clean==Bi&&(e.clean=new Promise((function(e){return r=e})),e.scheduler((function(){if(1&e.flags&&(e.flags&=-2,Ea(e)),2&e.flags){e.flags&=-3;var t=e.playerHandler;t&&t.flushPlayers()}e.clean=Bi,r(null)})))}(xa(Jo(e))[_t],1)}
|
|
592
578
|
/**
|
|
593
579
|
* @license
|
|
594
580
|
* Copyright Google Inc. All Rights Reserved.
|
|
595
581
|
*
|
|
596
582
|
* Use of this source code is governed by an MIT-style license that can be
|
|
597
583
|
* found in the LICENSE file at https://angular.io/license
|
|
598
|
-
*/
|
|
584
|
+
*/
|
|
585
|
+
function Ol(e){var t=Jt(),n=Yt(),r=function o(e,t,n,r,i){var a=n+Tt,u=t[a]=t[Ct].createComment(""),s=qi(e,t[gt],n,0,r,i),l=t[a]=_a(u,t,u,s);return eu(e,t,u,s),Yo(u,t),Ia(t,l),s}
|
|
599
586
|
/**
|
|
600
587
|
* @license
|
|
601
588
|
* Copyright Google Inc. All Rights Reserved.
|
|
602
589
|
*
|
|
603
590
|
* Use of this source code is governed by an MIT-style license that can be
|
|
604
591
|
* found in the LICENSE file at https://angular.io/license
|
|
605
|
-
*/
|
|
606
|
-
function Tc(e){var t=qt(),n=function r(e,t,n,o){var i=t+kt,a=e[i]=e[mt].createComment(""),u=$a(e[st],e[pt],t,0,n,o),s=e[i]=xu(a,e,a,u);return as(a,u,e),Vi(a,e),Pu(e,s),u}
|
|
592
|
+
*/(n,t,e,null,null);n.firstCreatePass&&(r.tViews=[]),nn()}function Pl(e,t,n,r,o,i,a,u){var s=Jt(),l=Yt(),c=e+Tt,f=l.firstCreatePass?function d(e,t,n,r,o,i,a,u,s){var l=t.consts,c=qi(t,n[gt],e,0,a||null,qo(l,u));aa(t,n,c,qo(l,s)),kn(t,c);var f=c.tViews=ta(2,-1,r,o,i,t.directiveRegistry,t.pipeRegistry,null,t.schemas,l),d=ra(0,null,2,-1,null,null);return d.injectorIndex=c.injectorIndex,f.node=d,null!==t.queries&&(t.queries.template(t,c),f.queries=t.queries.embeddedTView(c)),c}(e,l,s,t,n,r,o,i,a):l.data[c];en(f,!1);var p=s[Ct].createComment("");eu(l,s,p,f),Yo(p,s),Ia(s,s[c]=_a(p,s,p,f)),Bt(f)&&$i(l,s,f),null!=a&&Xi(s,f,u)}function Nl(e){var t=Jt(),n=Yt();if(en(Ho(n.data,e),!0),t[e+Tt][Dt]=0,!rn())if(3==(3&t[pt])){var r=n.preOrderCheckHooks;null!==r&&On(t,r,null)}else{var o=n.preOrderHooks;null!==o&&Pn(t,o,0,null),Nn(t,0)}}function Tl(){var e=Xt();tn()?nn():en(e=e.parent,!1);for(var t=Jt()[e.index],n=Wo(t);n<t.length-Vt;)za(t,n)}function jl(e,t,n,r){var o=n+Tt;o>=e.data.length&&(e.data[o]=null,e.blueprint[o]=null),t[o]=r}function Dl(e){return Ho(function t(){return Zt.lFrame.contextLView}(),e)}
|
|
607
593
|
/**
|
|
608
594
|
* @license
|
|
609
595
|
* Copyright Google Inc. All Rights Reserved.
|
|
610
596
|
*
|
|
611
597
|
* Use of this source code is governed by an MIT-style license that can be
|
|
612
598
|
* found in the LICENSE file at https://angular.io/license
|
|
613
|
-
*/
|
|
599
|
+
*/function Al(t,n){void 0===n&&(n=e.InjectFlags.Default);var r=Jt();return null==r?Ie(t,n):hr(Xt(),r,q(t),n)}function Sl(e){return pr(Xt(),e)}function Rl(){throw new Error("invalid")}
|
|
614
600
|
/**
|
|
615
601
|
* @license
|
|
616
602
|
* Copyright Google Inc. All Rights Reserved.
|
|
617
603
|
*
|
|
618
604
|
* Use of this source code is governed by an MIT-style license that can be
|
|
619
605
|
* found in the LICENSE file at https://angular.io/license
|
|
620
|
-
*/function
|
|
606
|
+
*/function Vl(e,t,n){var r=Jt();if(nl(r,ln(),t)){var o=bn();ia(Yt(),r,o,e,t,n)}return Vl}function Fl(e,t,n,r,o){var i=t.inputs,a=o?"class":"style";Sa(e,n,i[a]||o&&i.className,a,r)}
|
|
621
607
|
/**
|
|
622
608
|
* @license
|
|
623
609
|
* Copyright Google Inc. All Rights Reserved.
|
|
624
610
|
*
|
|
625
611
|
* Use of this source code is governed by an MIT-style license that can be
|
|
626
612
|
* found in the LICENSE file at https://angular.io/license
|
|
627
|
-
*/function
|
|
613
|
+
*/function Ml(e,t,n,r){var o=Jt(),i=Yt(),a=Tt+e,u=o[Ct],s=o[a]=Qi(t,u,function l(){return Zt.lFrame.currentNamespace}()),c=i.firstCreatePass?function f(e,t,n,r,o,i,a){var u=t.consts,s=qo(u,i),l=qi(t,n[gt],e,3,o,s);return aa(t,n,l,qo(u,a)),null!==l.mergedAttrs&&Zs(l,l.mergedAttrs),null!==t.queries&&t.queries.elementStart(t,l),l}(e,i,o,0,t,n,r):i.data[a];en(c,!0);var d=c.mergedAttrs;null!==d&&Un(u,s,d);var p=c.classes;null!==p&&su(u,s,p);var h=c.styles;null!==h&&uu(u,s,h),eu(i,o,s,c),0===function v(){return Zt.lFrame.elementDepthCount}()&&Yo(s,o),function y(){Zt.lFrame.elementDepthCount++}(),Bt(c)&&($i(i,o,c),Yi(i,c,o)),null!==r&&Xi(o,c)}function Hl(){var e=Xt();tn()?nn():en(e=e.parent,!1);var t=e;!function n(){Zt.lFrame.elementDepthCount--}();var r=Yt();r.firstCreatePass&&(kn(r,e),Ht(e)&&r.queries.elementEnd(e)),null!==t.classes&&function o(e){return 0!=(16&e.flags)}(t)&&Fl(r,t,Jt(),t.classes,!0),null!==t.styles&&function i(e){return 0!=(32&e.flags)}
|
|
614
|
+
/**
|
|
615
|
+
* @license
|
|
616
|
+
* Copyright Google Inc. All Rights Reserved.
|
|
617
|
+
*
|
|
618
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
619
|
+
* found in the LICENSE file at https://angular.io/license
|
|
620
|
+
*/(t)&&Fl(r,t,Jt(),t.styles,!1)}function Ll(e,t,n,r){Ml(e,t,n,r),Hl()}function Bl(e,t,n){var r=Jt(),o=Yt(),i=e+Tt,a=o.firstCreatePass?
|
|
628
621
|
/**
|
|
629
622
|
* @license
|
|
630
623
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -632,28 +625,28 @@ function Tc(e){var t=qt(),n=function r(e,t,n,o){var i=t+kt,a=e[i]=e[mt].createCo
|
|
|
632
625
|
* Use of this source code is governed by an MIT-style license that can be
|
|
633
626
|
* found in the LICENSE file at https://angular.io/license
|
|
634
627
|
*/
|
|
635
|
-
function u(e,t,n,r,o){var i=t.consts,a=
|
|
628
|
+
function u(e,t,n,r,o){var i=t.consts,a=qo(i,r),u=qi(t,n[gt],e,4,"ng-container",a);return null!==a&&Zs(u,a),aa(t,n,u,qo(i,o)),null!==t.queries&&t.queries.elementStart(t,u),u}(e,o,r,t,n):o.data[i];en(a,!0);var s=r[i]=r[Ct].createComment("");eu(o,r,s,a),Yo(s,r),Bt(a)&&($i(o,r,a),Yi(o,a,r)),null!=n&&Xi(r,a)}function Ul(){var e=Xt(),t=Yt();tn()?nn():en(e=e.parent,!1),t.firstCreatePass&&(kn(t,e),Ht(e)&&t.queries.elementEnd(e))}function Ql(e,t,n){Bl(e,t,n),Ul()}
|
|
636
629
|
/**
|
|
637
630
|
* @license
|
|
638
631
|
* Copyright Google Inc. All Rights Reserved.
|
|
639
632
|
*
|
|
640
633
|
* Use of this source code is governed by an MIT-style license that can be
|
|
641
634
|
* found in the LICENSE file at https://angular.io/license
|
|
642
|
-
*/function
|
|
635
|
+
*/function zl(e,t,n){var r=Jt(),o=Xt(),i=2===o.type?o.parent:o,a=r[i.index],u=function s(e,t,n){for(var r=t+Vt;r<e.length;r++){var o=e[r][dt].id;if(o===n)return e[r];if(!(o<n))break;za(e,r-Vt)}return null}(a,Wo(a),e);if(u)!function l(){Zt.lFrame.isParent=!0}(),yn(u,u[dt].node);else{u=zi(r,function c(e,t,n,r){var o=Jt()[dt],i=r.tViews;return(e>=i.length||null==i[e])&&(i[e]=ta(2,e,null,t,n,o.directiveRegistry,o.pipeRegistry,null,null,o.consts)),i[e]}(e,t,n,i),null,16,null,null);var f=tn()?o:o&&o.parent;Zi(u[dt],f,e,u),yn(u,u[dt].node)}return a&&(Qo(u)&&Ba(u[dt],u,a,Wo(a)),a[Dt]+=2),Qo(u)?3:2}function ql(){var e=Jt(),t=Yt(),n=e[gt],r=e[_t];Qo(e)&&Wi(t,e,r),Ki(t,e,t.template,r),_n(),en(n,!1)}function Zl(){return Jt()}
|
|
643
636
|
/**
|
|
644
637
|
* @license
|
|
645
638
|
* Copyright Google Inc. All Rights Reserved.
|
|
646
639
|
*
|
|
647
640
|
* Use of this source code is governed by an MIT-style license that can be
|
|
648
641
|
* found in the LICENSE file at https://angular.io/license
|
|
649
|
-
*/function
|
|
642
|
+
*/function Wl(e){return!!e&&"function"==typeof e.then}function Kl(e){return!!e&&"function"==typeof e.subscribe}
|
|
650
643
|
/**
|
|
651
644
|
* @license
|
|
652
645
|
* Copyright Google Inc. All Rights Reserved.
|
|
653
646
|
*
|
|
654
647
|
* Use of this source code is governed by an MIT-style license that can be
|
|
655
648
|
* found in the LICENSE file at https://angular.io/license
|
|
656
|
-
*/function
|
|
649
|
+
*/function Gl(e,t,n,r){void 0===n&&(n=!1);var o=Jt(),i=Yt(),a=Xt();return Yl(i,o,o[Ct],a,e,t,n,r),Gl}function Jl(e,t,n,r){void 0===n&&(n=!1);var o=Xt(),i=Jt(),a=Da(o,i);return Yl(Yt(),i,a,o,e,t,n,r),Jl}function Yl(e,t,n,r,o,i,a,u){void 0===a&&(a=!1);var s=Bt(r),l=e.firstCreatePass&&(e.cleanup||(e.cleanup=[])),c=Ta(t),f=!0;if(3===r.type){var d=Vo(r,t),p=u?u(d):We,h=p.target||d,v=c.length,y=u?function(e){return u(So(e[r.index])).target}:r.index;if(Ln(n)){var g=null;if(!u&&s&&(g=function m(e,t,n,r){var o=e.cleanup;if(null!=o)for(var i=0;i<o.length-1;i+=2){var a=o[i];if(a===n&&o[i+1]===r){var u=t[mt],s=o[i+2];return u.length>s?u[s]:null}"string"==typeof a&&(i+=2)}return null}(e,t,o,r.index)),null!==g)(g.__ngLastListenerFn__||g).__ngNextListenerFn__=i,g.__ngLastListenerFn__=i,f=!1;else{i=Xl(r,t,i,!1);var _=n.listen(p.name||h,o,i);c.push(i,_),l&&l.push(o,y,v,v+1)}}else i=Xl(r,t,i,!0),h.addEventListener(o,i,a),c.push(i),l&&l.push(o,y,v,a)}var w,b=r.outputs;if(f&&null!==b&&(w=b[o])){var C=w.length;if(C)for(var I=0;I<C;I+=2){var x=t[w[I]][w[I+1]].subscribe(i),E=c.length;c.push(i,x),l&&l.push(o,r.index,E,-(E+1))}}}function $l(e,t,n){try{return!1!==t(n)}catch(t){return Aa(e,t),!1}}function Xl(e,t,n,r){return function o(i){if(i===Function)return n;var a=2&e.flags?Lo(e.index,t):t;0==(32&t[pt])&&xa(a);for(var u=$l(t,n,i),s=o.__ngNextListenerFn__;s;)u=$l(t,s,i)&&u,s=s.__ngNextListenerFn__;return r&&!1===u&&(i.preventDefault(),i.returnValue=!1),u}}
|
|
657
650
|
/**
|
|
658
651
|
* @license
|
|
659
652
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -667,56 +660,71 @@ function u(e,t,n,r,o){var i=t.consts,a=Ti(i,r),u=$a(t,n[pt],e,4,"ng-container",a
|
|
|
667
660
|
*
|
|
668
661
|
* Use of this source code is governed by an MIT-style license that can be
|
|
669
662
|
* found in the LICENSE file at https://angular.io/license
|
|
670
|
-
*/function
|
|
663
|
+
*/function ec(e){return void 0===e&&(e=1),wn(e)}
|
|
671
664
|
/**
|
|
672
665
|
* @license
|
|
673
666
|
* Copyright Google Inc. All Rights Reserved.
|
|
674
667
|
*
|
|
675
668
|
* Use of this source code is governed by an MIT-style license that can be
|
|
676
669
|
* found in the LICENSE file at https://angular.io/license
|
|
677
|
-
*/function
|
|
670
|
+
*/function tc(e,t){for(var n=null,r=function o(e){var t=e.attrs;if(null!=t){var n=t.indexOf(5);if(0==(1&n))return t[n+1]}return null}(e),i=0;i<t.length;i++){var a=t[i];if("*"!==a){if(null===r?fi(e,a,!0):di(r,a))return i}else n=i}return n}function nc(e){var t=Jt()[Ot][gt];if(!t.projection)for(var n=t.projection=Ue(e?e.length:1,null),r=n.slice(),o=t.child;null!==o;){var i=e?tc(o,e):0;null!==i&&(r[i]?r[i].projectionNext=o:n[i]=o,r[i]=o),o=o.next}}var rc=!1;function oc(e){rc=e}function ic(e,t,n){void 0===t&&(t=0);var r=Jt(),o=Yt(),i=qi(o,r[gt],e,1,null,n||null);null===i.projection&&(i.projection=t),nn(),rc||iu(o,r,i)}function ac(e,t,n){return uc(e,"",t,"",n),ac}function uc(e,t,n,r,o){var i=Jt(),a=sl(i,t,n,r);if(a!==vi){var u=bn();ia(Yt(),i,u,e,a,o)}return uc}function sc(e,t,n,r,o,i,a){var u=Jt(),s=ll(u,t,n,r,o,i);if(s!==vi){var l=bn();ia(Yt(),u,l,e,s,a)}return sc}function lc(e,t,n,r,o,i,a,u,s){var l=Jt(),c=cl(l,t,n,r,o,i,a,u);if(c!==vi){var f=bn();ia(Yt(),l,f,e,c,s)}return lc}function cc(e,t,n,r,o,i,a,u,s,l,c){var f=Jt(),d=fl(f,t,n,r,o,i,a,u,s,l);if(d!==vi){var p=bn();ia(Yt(),f,p,e,d,c)}return cc}function fc(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=Jt(),h=dl(p,t,n,r,o,i,a,u,s,l,c,f);if(h!==vi){var v=bn();ia(Yt(),p,v,e,h,d)}return fc}function dc(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h){var v=Jt(),y=pl(v,t,n,r,o,i,a,u,s,l,c,f,d,p);if(y!==vi){var g=bn();ia(Yt(),v,g,e,y,h)}return dc}function pc(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y){var g=Jt(),m=hl(g,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v);if(m!==vi){var _=bn();ia(Yt(),g,_,e,m,y)}return pc}function hc(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m){var _=Jt(),w=vl(_,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g);if(w!==vi){var b=bn();ia(Yt(),_,b,e,w,m)}return hc}function vc(e,t,n){var r=Jt(),o=ul(r,t);if(o!==vi){var i=bn();ia(Yt(),r,i,e,o,n)}return vc}
|
|
671
|
+
/**
|
|
672
|
+
* @license
|
|
673
|
+
* Copyright Google Inc. All Rights Reserved.
|
|
674
|
+
*
|
|
675
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
676
|
+
* found in the LICENSE file at https://angular.io/license
|
|
677
|
+
*/var yc=[];function gc(e,t,n,r,o){for(var i=e[n+1],a=null===t,u=r?xi(i):Oi(i),s=!1;0!==u&&(!1===s||a);){var l=e[u+1];mc(e[u],t)&&(s=!0,e[u+1]=r?Ti(l):ki(l)),u=r?xi(l):Oi(l)}s&&(e[n+1]=r?ki(i):Ti(i))}function mc(e,t){return null===e||null==t||(Array.isArray(e)?e[1]:e)===t||!(!Array.isArray(e)||"string"!=typeof t)&&qe(e,t)>=0}
|
|
678
678
|
/**
|
|
679
679
|
* @license
|
|
680
680
|
* Copyright Google Inc. All Rights Reserved.
|
|
681
681
|
*
|
|
682
682
|
* Use of this source code is governed by an MIT-style license that can be
|
|
683
683
|
* found in the LICENSE file at https://angular.io/license
|
|
684
|
-
*/function
|
|
684
|
+
*/var _c={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function wc(e){return e.substring(_c.key,_c.keyEnd)}function bc(e){return e.substring(_c.value,_c.valueEnd)}function Cc(e,t){var n=_c.textEnd;return n===t?-1:(t=_c.keyEnd=function r(e,t,n){for(;t<n&&e.charCodeAt(t)>32;)t++;return t}(e,_c.key=t,n),Ec(e,t,n))}function Ic(e,t){var n=_c.textEnd,r=_c.key=Ec(e,t,n);return n===r?-1:(r=_c.keyEnd=function o(e,t,n){for(var r;t<n&&(45===(r=e.charCodeAt(t))||95===r||(-33&r)>=65&&(-33&r)<=90);)t++;return t}(e,r,n),r=kc(e,r,n),r=_c.value=Ec(e,r,n),r=_c.valueEnd=function i(e,t,n){for(var r=-1,o=-1,i=-1,a=t,u=a;a<n;){var s=e.charCodeAt(a++);if(59===s)return u;34===s||39===s?u=a=Oc(e,s,a,n):t===a-4&&85===i&&82===o&&76===r&&40===s?u=a=Oc(e,41,a,n):s>32&&(u=a),i=o,o=r,r=-33&s}return u}(e,r,n),kc(e,r,n))}function xc(e){_c.key=0,_c.keyEnd=0,_c.value=0,_c.valueEnd=0,_c.textEnd=e.length}function Ec(e,t,n){for(;t<n&&e.charCodeAt(t)<=32;)t++;return t}function kc(e,t,n,r){return(t=Ec(e,t,n))<n&&t++,t}function Oc(e,t,n,r){for(var o=-1,i=n;i<r;){var a=e.charCodeAt(i++);if(a==t&&92!==o)return i;o=92==a&&92===o?0:a}throw new Error}
|
|
685
|
+
/**
|
|
686
|
+
* @license
|
|
687
|
+
* Copyright Google Inc. All Rights Reserved.
|
|
688
|
+
*
|
|
689
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
690
|
+
* found in the LICENSE file at https://angular.io/license
|
|
691
|
+
*/
|
|
692
|
+
function Pc(e){!function t(e){Zt.lFrame.currentSanitizer=e}(e)}function Nc(e,t,n){return Rc(e,t,n,!1),Nc}function Tc(e,t){return Rc(e,t,null,!0),Tc}function jc(e){Vc(Bc,Dc,e,!1)}function Dc(e,t){for(var n=function r(e){return xc(e),Ic(e,Ec(e,0,_c.textEnd))}(t);n>=0;n=Ic(t,n))Bc(e,wc(t),bc(t))}function Ac(e){Vc(Qe,Sc,e,!0)}function Sc(e,t){for(var n=function r(e){return xc(e),Cc(e,Ec(e,0,_c.textEnd))}(t);n>=0;n=Cc(t,n))Qe(e,wc(t),!0)}function Rc(e,t,n,r){var o=Jt(),i=Yt(),a=cn(2);if(i.firstUpdatePass&&Mc(i,e,a,r),t!==vi&&nl(o,a,t)){var u=void 0;null==n&&(u=function s(){var e=Zt.lFrame;return null===e?null:e.currentSanitizer}())&&(n=u),Uc(i,i.data[bn()+Tt],o,o[Ct],e,o[a+1]=function l(e,t){return null==e||("function"==typeof t?e=t(e):"string"==typeof t?e+=t:"object"==typeof e&&(e=B(Fr(e)))),e}(t,n),r,a)}}function Vc(e,t,n,r){var o=Yt(),i=cn(2);o.firstUpdatePass&&Mc(o,null,i,r);var a=Jt();if(n!==vi&&nl(a,i,n)){var u=o.data[bn()+Tt];qc(u,r)&&!Fc(o,i)?("string"==typeof n&&(n=U(r?u.classes:u.styles,n)),Fl(o,u,a,n,r)):function l(e,t,n,r,o,i,a,u){o===vi&&(o=yc);for(var s=0,l=0,c=0<o.length?o[0]:null,f=0<i.length?i[0]:null;null!==c||null!==f;){var d=s<o.length?o[s+1]:void 0,p=l<i.length?i[l+1]:void 0,h=null,v=void 0;c===f?(s+=2,l+=2,d!==p&&(h=f,v=p)):null===f||null!==c&&c<f?(s+=2,h=c):(l+=2,h=f,v=p),null!==h&&Uc(e,t,n,r,h,v,a,u),c=s<o.length?o[s]:null,f=l<i.length?i[l]:null}}(o,u,a,a[Ct],a[i+1],a[i+1]=function s(e,t,n){if(null==n||""===n)return yc;var r=[];if(Array.isArray(n))for(var o=0;o<n.length;o++)e(r,n[o],!0);else if("object"==typeof n)if(n instanceof Map)n.forEach((function(t,n){return e(r,n,t)}));else if(n instanceof Set)n.forEach((function(t){return e(r,t,!0)}));else for(var i in n)n.hasOwnProperty(i)&&e(r,i,n[i]);else"string"==typeof n&&t(r,n);return r}(e,t,n),r,i)}}function Fc(e,t){return t>=e.expandoStartIndex}function Mc(e,t,n,r){var o=e.data;if(null===o[n+1]){var i=o[bn()+Tt],a=Fc(e,n);qc(i,r)&&null===t&&!a&&(t=!1),t=function u(e,t,n,r){var o=function i(e){var t=function n(){return Zt.lFrame.currentDirectiveIndex}();return-1===t?null:e[t]}(e),a=r?t.residualClasses:t.residualStyles;if(null===o)0===(r?t.classBindings:t.styleBindings)&&(n=Lc(n=Hc(null,e,t,n,r),t.attrs,r),a=null);else{var u=t.directiveStylingLast;if(-1===u||e[u]!==o)if(n=Hc(o,e,t,n,r),null===a){var s=function l(e,t,n){var r=n?t.classBindings:t.styleBindings;if(0!==Oi(r))return e[xi(r)]}(e,t,r);void 0!==s&&Array.isArray(s)&&function c(e,t,n,r){e[xi(n?t.classBindings:t.styleBindings)]=r}(e,t,r,s=Lc(s=Hc(null,e,t,s[1],r),t.attrs,r))}else a=function f(e,t,n){for(var r=void 0,o=t.directiveEnd,i=1+t.directiveStylingLast;i<o;i++)r=Lc(r,e[i].hostAttrs,n);return Lc(r,t.attrs,n)}(e,t,r)}return void 0!==a&&(r?t.residualClasses=a:t.residualStyles=a),n}(o,i,t,r),function s(e,t,n,r,o,i){var a=i?t.classBindings:t.styleBindings,u=xi(a),s=Oi(a);e[r]=n;var l,c=!1;if(Array.isArray(n)?(null===(l=n[1])||qe(n,l)>0)&&(c=!0):l=n,o)if(0!==s){var f=xi(e[u+1]);e[r+1]=Ii(f,u),0!==f&&(e[f+1]=Pi(e[f+1],r)),e[u+1]=function d(e,t){return 131071&e|t<<17}(e[u+1],r)}else e[r+1]=Ii(u,0),0!==u&&(e[u+1]=Pi(e[u+1],r)),u=r;else e[r+1]=Ii(s,0),0===u?u=r:e[s+1]=Pi(e[s+1],r),s=r;c&&(e[r+1]=ki(e[r+1])),gc(e,l,r,!0),gc(e,l,r,!1),function p(e,t,n,r,o){var i=o?e.residualClasses:e.residualStyles;null!=i&&"string"==typeof t&&qe(i,t)>=0&&(n[r+1]=Ti(n[r+1]))}(t,l,e,r,i),a=Ii(u,s),i?t.classBindings=a:t.styleBindings=a}(o,i,t,n,a,r)}}function Hc(e,t,n,r,o){var i=null,a=n.directiveEnd,u=n.directiveStylingLast;for(-1===u?u=n.directiveStart:u++;u<a&&(r=Lc(r,(i=t[u]).hostAttrs,o),i!==e);)u++;return null!==e&&(n.directiveStylingLast=u),r}function Lc(e,t,n){var r=n?1:2,o=-1;if(null!==t)for(var i=0;i<t.length;i++){var a=t[i];"number"==typeof a?o=a:o===r&&(Array.isArray(e)||(e=void 0===e?[]:["",e]),Qe(e,a,!!n||t[++i]))}return void 0===e?null:e}function Bc(e,t,n){No(t)&&(n=Co(n)),Qe(e,t,n)}function Uc(e,t,n,r,o,i,a,u){if(3===t.type){var s=e.data,l=s[u+1];zc(Ni(l)?Qc(s,t,n,o,Oi(l),a):void 0)||(zc(i)||Ei(l)&&(i=Qc(s,null,n,o,u,a)),function c(e,t,n,r,o){var i=Ln(e);if(t)o?i?e.addClass(n,r):n.classList.add(r):i?e.removeClass(n,r):n.classList.remove(r);else{var a=-1==r.indexOf("-")?void 0:2;null==o?i?e.removeStyle(n,r,a):n.style.removeProperty(r):i?e.setStyle(n,r,o,a):n.style.setProperty(r,o)}}(r,a,Ro(bn(),n),o,i))}}function Qc(e,t,n,r,o,i){for(var a=null===t,u=void 0;o>0;){var s=e[o],l=Array.isArray(s),c=l?s[1]:s,f=null===c,d=n[o+1];d===vi&&(d=f?yc:void 0);var p=f?ze(d,r):c===r?d:void 0;if(l&&!zc(p)&&(p=ze(s,r)),zc(p)&&(u=p,a))return u;var h=e[o+1];o=a?xi(h):Oi(h)}if(null!==t){var v=i?t.residualClasses:t.residualStyles;null!=v&&(u=ze(v,r))}return u}function zc(e){return void 0!==e}function qc(e,t){return 0!=(e.flags&(t?16:32))}
|
|
685
693
|
/**
|
|
686
694
|
* @license
|
|
687
695
|
* Copyright Google Inc. All Rights Reserved.
|
|
688
696
|
*
|
|
689
697
|
* Use of this source code is governed by an MIT-style license that can be
|
|
690
698
|
* found in the LICENSE file at https://angular.io/license
|
|
691
|
-
*/function
|
|
699
|
+
*/function Zc(e,t){void 0===t&&(t="");var n=Jt(),r=Yt(),o=e+Tt,i=r.firstCreatePass?qi(r,n[gt],e,3,null,null):r.data[o],a=n[o]=Ha(t,n[Ct]);eu(r,n,a,i),en(i,!1)}
|
|
692
700
|
/**
|
|
693
701
|
* @license
|
|
694
702
|
* Copyright Google Inc. All Rights Reserved.
|
|
695
703
|
*
|
|
696
704
|
* Use of this source code is governed by an MIT-style license that can be
|
|
697
705
|
* found in the LICENSE file at https://angular.io/license
|
|
698
|
-
*/function
|
|
706
|
+
*/function Wc(e){return Kc("",e,""),Wc}function Kc(e,t,n){var r=Jt(),o=sl(r,e,t,n);return o!==vi&&Ra(r,bn(),o),Kc}function Gc(e,t,n,r,o){var i=Jt(),a=ll(i,e,t,n,r,o);return a!==vi&&Ra(i,bn(),a),Gc}function Jc(e,t,n,r,o,i,a){var u=Jt(),s=cl(u,e,t,n,r,o,i,a);return s!==vi&&Ra(u,bn(),s),Jc}function Yc(e,t,n,r,o,i,a,u,s){var l=Jt(),c=fl(l,e,t,n,r,o,i,a,u,s);return c!==vi&&Ra(l,bn(),c),Yc}function $c(e,t,n,r,o,i,a,u,s,l,c){var f=Jt(),d=dl(f,e,t,n,r,o,i,a,u,s,l,c);return d!==vi&&Ra(f,bn(),d),$c}function Xc(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=Jt(),h=pl(p,e,t,n,r,o,i,a,u,s,l,c,f,d);return h!==vi&&Ra(p,bn(),h),Xc}function ef(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h){var v=Jt(),y=hl(v,e,t,n,r,o,i,a,u,s,l,c,f,d,p,h);return y!==vi&&Ra(v,bn(),y),ef}function tf(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y){var g=Jt(),m=vl(g,e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y);return m!==vi&&Ra(g,bn(),m),tf}function nf(e){var t=Jt(),n=ul(t,e);return n!==vi&&Ra(t,bn(),n),nf}
|
|
699
707
|
/**
|
|
700
708
|
* @license
|
|
701
709
|
* Copyright Google Inc. All Rights Reserved.
|
|
702
710
|
*
|
|
703
711
|
* Use of this source code is governed by an MIT-style license that can be
|
|
704
712
|
* found in the LICENSE file at https://angular.io/license
|
|
705
|
-
*/function
|
|
713
|
+
*/function rf(e,t,n){Vc(Qe,Sc,sl(Jt(),e,t,n),!0)}function of(e,t,n,r,o){Vc(Qe,Sc,ll(Jt(),e,t,n,r,o),!0)}function af(e,t,n,r,o,i,a){Vc(Qe,Sc,cl(Jt(),e,t,n,r,o,i,a),!0)}function uf(e,t,n,r,o,i,a,u,s){Vc(Qe,Sc,fl(Jt(),e,t,n,r,o,i,a,u,s),!0)}function sf(e,t,n,r,o,i,a,u,s,l,c){Vc(Qe,Sc,dl(Jt(),e,t,n,r,o,i,a,u,s,l,c),!0)}function lf(e,t,n,r,o,i,a,u,s,l,c,f,d){Vc(Qe,Sc,pl(Jt(),e,t,n,r,o,i,a,u,s,l,c,f,d),!0)}function cf(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h){Vc(Qe,Sc,hl(Jt(),e,t,n,r,o,i,a,u,s,l,c,f,d,p,h),!0)}function ff(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y){Vc(Qe,Sc,vl(Jt(),e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y),!0)}function df(e){Vc(Qe,Sc,ul(Jt(),e),!0)}
|
|
706
714
|
/**
|
|
707
715
|
* @license
|
|
708
716
|
* Copyright Google Inc. All Rights Reserved.
|
|
709
717
|
*
|
|
710
718
|
* Use of this source code is governed by an MIT-style license that can be
|
|
711
719
|
* found in the LICENSE file at https://angular.io/license
|
|
712
|
-
*/function
|
|
720
|
+
*/function pf(e,t,n,r,o){return Rc(e,sl(Jt(),t,n,r),o,!1),pf}function hf(e,t,n,r,o,i,a){return Rc(e,ll(Jt(),t,n,r,o,i),a,!1),hf}function vf(e,t,n,r,o,i,a,u,s){return Rc(e,cl(Jt(),t,n,r,o,i,a,u),s,!1),vf}function yf(e,t,n,r,o,i,a,u,s,l,c){return Rc(e,fl(Jt(),t,n,r,o,i,a,u,s,l),c,!1),yf}function gf(e,t,n,r,o,i,a,u,s,l,c,f,d){return Rc(e,dl(Jt(),t,n,r,o,i,a,u,s,l,c,f),d,!1),gf}function mf(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h){return Rc(e,pl(Jt(),t,n,r,o,i,a,u,s,l,c,f,d,p),h,!1),mf}function _f(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y){return Rc(e,hl(Jt(),t,n,r,o,i,a,u,s,l,c,f,d,p,h,v),y,!1),_f}function wf(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m){return Rc(e,vl(Jt(),t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g),m,!1),wf}function bf(e,t,n){return Rc(e,ul(Jt(),t),n,!1),bf}
|
|
713
721
|
/**
|
|
714
722
|
* @license
|
|
715
723
|
* Copyright Google Inc. All Rights Reserved.
|
|
716
724
|
*
|
|
717
725
|
* Use of this source code is governed by an MIT-style license that can be
|
|
718
726
|
* found in the LICENSE file at https://angular.io/license
|
|
719
|
-
*/function
|
|
727
|
+
*/function Cf(e,t,n){var r=Jt();if(nl(r,ln(),t)){var o=bn();ia(Yt(),r,o,e,t,n,!0)}return Cf}function If(e,t,n){var r=Jt();if(nl(r,ln(),t)){var o=bn();ia(Yt(),r,o,e,t,n,!0,Da)}return If}
|
|
720
728
|
/**
|
|
721
729
|
* @license
|
|
722
730
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -730,29 +738,28 @@ function u(e,t,n,r,o){var i=t.consts,a=Ti(i,r),u=$a(t,n[pt],e,4,"ng-container",a
|
|
|
730
738
|
*
|
|
731
739
|
* Use of this source code is governed by an MIT-style license that can be
|
|
732
740
|
* found in the LICENSE file at https://angular.io/license
|
|
733
|
-
*/function
|
|
741
|
+
*/function xf(e){Sf(e);var t=Tf(e,!1);return null===t?null:(void 0===t.component&&(t.component=function n(e,t){var n=t[dt].data[e];return 2&n.flags?t[n.directiveStart]:null}(t.nodeIndex,t.lView)),t.component)}function Ef(e){Sf(e);var t=Tf(e,!1);return null===t?null:t.lView[_t]}function kf(e){var t=Tf(e,!1);if(null===t)return null;for(var n,r=t.lView;null===r[ft]&&(n=yi(r));)r=n;return 512&r[pt]?null:r[_t]}function Of(e){return f(gi(e).components)}function Pf(e){var t=Tf(e,!1);return null===t?is.NULL:new br(t.lView[dt].data[t.nodeIndex],t.lView)}function Nf(e){var t=Tf(e);return void 0===t.directives&&(t.directives=ti(t.nodeIndex,t.lView,!1)),null===t.directives?[]:f(t.directives)}function Tf(e,t){void 0===t&&(t=!0);var n=Ko(e);if(!n&&t)throw new Error("Invalid ng target");return n}function jf(e){return Ko(e).native}function Df(e){Sf(e);var t=Tf(e,!1);if(null===t)return[];var n=t.lView,r=n[mt],o=n[dt].cleanup,i=[];if(o&&r)for(var a=0;a<o.length;){var u=o[a++],s=o[a++];if("string"==typeof u){var l=u,c=So(n[s]),f=r[o[a++]],d=o[a++];e==c&&i.push({element:e,name:l,callback:f,useCapture:"boolean"==typeof d&&d,type:"boolean"==typeof d||d>=0?"dom":"output"})}}return i.sort(Af),i}function Af(e,t){return e.name==t.name?0:e.name<t.name?-1:1}function Sf(e){if("undefined"!=typeof Element&&!(e instanceof Element))throw new Error("Expecting instance of DOM Element")}
|
|
734
742
|
/**
|
|
735
743
|
* @license
|
|
736
744
|
* Copyright Google Inc. All Rights Reserved.
|
|
737
745
|
*
|
|
738
746
|
* Use of this source code is governed by an MIT-style license that can be
|
|
739
747
|
* found in the LICENSE file at https://angular.io/license
|
|
740
|
-
*/
|
|
748
|
+
*/function Rf(e){kl(e),Of(e).forEach((function(e){return El(e)}))}
|
|
741
749
|
/**
|
|
742
750
|
* @license
|
|
743
751
|
* Copyright Google Inc. All Rights Reserved.
|
|
744
752
|
*
|
|
745
753
|
* Use of this source code is governed by an MIT-style license that can be
|
|
746
754
|
* found in the LICENSE file at https://angular.io/license
|
|
747
|
-
*/
|
|
748
|
-
var Nd="ng",Td=!1;function Dd(e,t){if(("undefined"==typeof COMPILED||!COMPILED)&&X){var n=X[Nd];n||(n=X[Nd]={}),n[e]=t}}
|
|
755
|
+
*/var Vf="ng",Ff=!1;function Mf(e,t){if(("undefined"==typeof COMPILED||!COMPILED)&&ee){var n=ee[Vf];n||(n=ee[Vf]={}),n[e]=t}}
|
|
749
756
|
/**
|
|
750
757
|
* @license
|
|
751
758
|
* Copyright Google Inc. All Rights Reserved.
|
|
752
759
|
*
|
|
753
760
|
* Use of this source code is governed by an MIT-style license that can be
|
|
754
761
|
* found in the LICENSE file at https://angular.io/license
|
|
755
|
-
*/function
|
|
762
|
+
*/function Hf(e,t,n,r,o,i,a){var u=n[dt];n[0+Tt]=e;var s=qi(u,null,0,3,null,null),l=s.mergedAttrs=t.hostAttrs;null!==l&&(Zs(s,l),null!==e&&(Un(o,e,l),null!==s.classes&&su(o,e,s.classes),null!==s.styles&&uu(o,e,s.styles)));var c=r.createRenderer(e,t);null!==e&&i&&(Ln(o)?o.setAttribute(e,"ng-version",i):e.setAttribute("ng-version",i));var f=zi(n,ea(t),null,t.onPush?64:16,n[Tt],s,r,c,a);return u.firstCreatePass&&(dr(sr(s,n),u,t.type),fa(u,s),pa(s,n.length,1)),Ia(n,f),n[Tt]=f}function Lf(e,t,n,r,o){var i=n[dt],a=function u(e,t,n){var r=Xt();e.firstCreatePass&&(n.providersResolver&&n.providersResolver(n),ca(e,r,1),ha(e,t,n));var o=mr(t,e,t.length-1,r);Yo(o,t);var i=Vo(r,t);return i&&Yo(i,t),o}(i,n,t);r.components.push(a),e[_t]=a,o&&o.forEach((function(e){return e(a,t)})),t.contentQueries&&t.contentQueries(1,a,n.length-1);var s=Xt();if(i.firstCreatePass&&(null!==t.hostBindings||null!==t.hostAttrs)){Cn(s.index-Tt);var l=n[dt];ua(l,t),sa(l,n,t.hostVars),la(t,a)}return a}function Bf(e,t){return{components:[],scheduler:e||Xn,clean:Na,playerHandler:t||null,flags:0}}function Uf(e,t){var n=Uo(e)[dt],r=n.data.length-1;kn(n,{directiveStart:r,directiveEnd:r+1})}
|
|
756
763
|
/**
|
|
757
764
|
* @license
|
|
758
765
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -760,42 +767,42 @@ var Nd="ng",Td=!1;function Dd(e,t){if(("undefined"==typeof COMPILED||!COMPILED)&
|
|
|
760
767
|
* Use of this source code is governed by an MIT-style license that can be
|
|
761
768
|
* found in the LICENSE file at https://angular.io/license
|
|
762
769
|
*/
|
|
763
|
-
function
|
|
770
|
+
function Qf(e){return Object.getPrototypeOf(e.prototype).constructor}function zf(e){for(var t=Qf(e.type),n=!0,r=[e];t;){var o=void 0;if(Ut(e))o=t.ɵcmp||t.ɵdir;else{if(t.ɵcmp)throw new Error("Directives cannot inherit Components");o=t.ɵdir}if(o){if(n){r.push(o);var i=e;i.inputs=qf(e.inputs),i.declaredInputs=qf(e.declaredInputs),i.outputs=qf(e.outputs);var a=o.hostBindings;a&&Kf(e,a);var u=o.viewQuery,s=o.contentQueries;u&&Zf(e,u),s&&Wf(e,s),N(e.inputs,o.inputs),N(e.declaredInputs,o.declaredInputs),N(e.outputs,o.outputs),i.afterContentChecked=i.afterContentChecked||o.afterContentChecked,i.afterContentInit=e.afterContentInit||o.afterContentInit,i.afterViewChecked=e.afterViewChecked||o.afterViewChecked,i.afterViewInit=e.afterViewInit||o.afterViewInit,i.doCheck=e.doCheck||o.doCheck,i.onDestroy=e.onDestroy||o.onDestroy,i.onInit=e.onInit||o.onInit}var l=o.features;if(l)for(var c=0;c<l.length;c++){var f=l[c];f&&f.ngInherit&&f(e),f===zf&&(n=!1)}}t=Object.getPrototypeOf(t)}!function d(e){for(var t=0,n=null,r=e.length-1;r>=0;r--){var o=e[r];o.hostVars=t+=o.hostVars,o.hostAttrs=qn(o.hostAttrs,n=qn(n,o.hostAttrs))}}(r)}function qf(e){return e===We?{}:e===Ke?[]:e}function Zf(e,t){var n=e.viewQuery;e.viewQuery=n?function(e,r){t(e,r),n(e,r)}:t}function Wf(e,t){var n=e.contentQueries;e.contentQueries=n?function(e,r,o){t(e,r,o),n(e,r,o)}:t}function Kf(e,t){var n=e.hostBindings;e.hostBindings=n?function(e,r){t(e,r),n(e,r)}:t}
|
|
764
771
|
/**
|
|
765
772
|
* @license
|
|
766
773
|
* Copyright Google Inc. All Rights Reserved.
|
|
767
774
|
*
|
|
768
775
|
* Use of this source code is governed by an MIT-style license that can be
|
|
769
776
|
* found in the LICENSE file at https://angular.io/license
|
|
770
|
-
*/var
|
|
777
|
+
*/var Gf=["providersResolver"],Jf=["template","decls","consts","vars","onPush","ngContentSelectors","styles","encapsulation","schemas"];function Yf(e){var t,n,r,o,i,a=Qf(e.type);i=Ut(e)?a.ɵcmp:a.ɵdir;var u=e;try{for(var s=l(Gf),c=s.next();!c.done;c=s.next())u[p=c.value]=i[p]}catch(e){t={error:e}}finally{try{c&&!c.done&&(n=s.return)&&n.call(s)}finally{if(t)throw t.error}}if(Ut(i))try{for(var f=l(Jf),d=f.next();!d.done;d=f.next()){var p;u[p=d.value]=i[p]}}catch(e){r={error:e}}finally{try{d&&!d.done&&(o=f.return)&&o.call(f)}finally{if(r)throw r.error}}}
|
|
771
778
|
/**
|
|
772
779
|
* @license
|
|
773
780
|
* Copyright Google Inc. All Rights Reserved.
|
|
774
781
|
*
|
|
775
782
|
* Use of this source code is governed by an MIT-style license that can be
|
|
776
783
|
* found in the LICENSE file at https://angular.io/license
|
|
777
|
-
*/var
|
|
784
|
+
*/var $f=function(){function e(e,t,n){this.previousValue=e,this.currentValue=t,this.firstChange=n}return e.prototype.isFirstChange=function(){return this.firstChange},e}();
|
|
778
785
|
/**
|
|
779
786
|
* @license
|
|
780
787
|
* Copyright Google Inc. All Rights Reserved.
|
|
781
788
|
*
|
|
782
789
|
* Use of this source code is governed by an MIT-style license that can be
|
|
783
790
|
* found in the LICENSE file at https://angular.io/license
|
|
784
|
-
*/function
|
|
791
|
+
*/function Xf(){return ed.ngInherit=!0,ed}function ed(e){e.type.prototype.ngOnChanges&&(e.setInput=td,e.onChanges=function t(){return function e(){var t=rd(this),n=t&&t.current;if(n){var r=t.previous;if(r===We)t.previous=n;else for(var o in n)r[o]=n[o];t.current=null,this.ngOnChanges(n)}}}())}function td(e,t,n,r){var o=rd(e)||function i(e,t){return e[nd]=t}
|
|
785
792
|
/**
|
|
786
793
|
* @license
|
|
787
794
|
* Copyright Google Inc. All Rights Reserved.
|
|
788
795
|
*
|
|
789
796
|
* Use of this source code is governed by an MIT-style license that can be
|
|
790
797
|
* found in the LICENSE file at https://angular.io/license
|
|
791
|
-
*/(e,{previous:
|
|
798
|
+
*/(e,{previous:We,current:null}),a=o.current||(o.current={}),u=o.previous,s=this.declaredInputs[n],l=u[s];a[s]=new $f(l&&l.currentValue,t,u===We),e[r]=t}var nd="__ngSimpleChanges__";function rd(e){return e[nd]||null}function od(e,t,n,r,o){if(e=q(e),Array.isArray(e))for(var i=0;i<e.length;i++)od(e[i],t,n,r,o);else{var a=Yt(),u=Jt(),s=ns(e)?e:q(e.provide),l=Xu(e),c=Xt(),f=65535&c.providerIndexes,d=c.directiveStart,p=c.providerIndexes>>16;if(function h(e){return!!e.useClass}(e)||ns(e)){var v=(e.useClass||e).prototype.ngOnDestroy;v&&(a.destroyHooks||(a.destroyHooks=[])).push(t.length,v)}if(ns(e)||!e.multi){var y=new Fn(l,o,Al),g=ad(s,t,o?f:f+p,d);-1==g?(dr(sr(c,u),a,s),t.push(s),c.directiveStart++,c.directiveEnd++,o&&(c.providerIndexes+=65536),n.push(y),u.push(y)):(n[g]=y,u[g]=y)}else{var m=ad(s,t,f+p,d),_=ad(s,t,f,f+p),w=_>=0&&n[_];o&&!w||!o&&!(m>=0&&n[m])?(dr(sr(c,u),a,s),y=function b(e,t,n,r,o){var i=new Fn(e,n,Al);return i.multi=[],i.index=t,i.componentProviders=0,id(i,o,r&&!n),i}(o?sd:ud,n.length,o,r,l),!o&&w&&(n[_].providerFactory=y),t.push(s),c.directiveStart++,c.directiveEnd++,o&&(c.providerIndexes+=65536),n.push(y),u.push(y)):id(n[o?_:m],l,!o&&r),!o&&r&&w&&n[_].componentProviders++}}}function id(e,t,n){e.multi.push(t),n&&e.componentProviders++}function ad(e,t,n,r){for(var o=n;o<r;o++)if(t[o]===e)return o;return-1}function ud(e,t,n,r){return ld(this.multi,[])}function sd(e,t,n,r){var o,i=this.multi;if(this.providerFactory){var a=this.providerFactory.componentProviders,u=mr(n,n[dt],this.providerFactory.index,r);ld(i,o=u.slice(0,a));for(var s=a;s<u.length;s++)o.push(u[s])}else ld(i,o=[]);return o}function ld(e,t){for(var n=0;n<e.length;n++)t.push((0,e[n])());return t}function cd(e,t){return void 0===t&&(t=[]),function(n){n.providersResolver=function(n,r){return function o(e,t,n){var r=Yt();if(r.firstCreatePass){var o=Ut(e);od(n,r.data,r.blueprint,o,!0),od(t,r.data,r.blueprint,o,!1)}}(n,r?r(e):e,t)}}}
|
|
792
799
|
/**
|
|
793
800
|
* @license
|
|
794
801
|
* Copyright Google Inc. All Rights Reserved.
|
|
795
802
|
*
|
|
796
803
|
* Use of this source code is governed by an MIT-style license that can be
|
|
797
804
|
* found in the LICENSE file at https://angular.io/license
|
|
798
|
-
*/var
|
|
805
|
+
*/var fd=function fd(){},dd=function dd(){};
|
|
799
806
|
/**
|
|
800
807
|
* @license
|
|
801
808
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -803,7 +810,7 @@ function Vd(e){return Object.getPrototypeOf(e.prototype).constructor}function Md
|
|
|
803
810
|
* Use of this source code is governed by an MIT-style license that can be
|
|
804
811
|
* found in the LICENSE file at https://angular.io/license
|
|
805
812
|
*/
|
|
806
|
-
function
|
|
813
|
+
function pd(e){var t=Error("No component factory found for "+B(e)+". Did you add it to @NgModule.entryComponents?");return t[hd]=e,t}var hd="ngComponent",vd=function(){function e(){}return e.prototype.resolveComponentFactory=function(e){throw pd(e)},e}(),yd=function(){function e(){}return e.NULL=new vd,e}(),gd=function(){function e(e,t,n){this._parent=t,this._ngModule=n,this._factories=new Map;for(var r=0;r<e.length;r++){var o=e[r];this._factories.set(o.componentType,o)}}return e.prototype.resolveComponentFactory=function(e){var t=this._factories.get(e);if(!t&&this._parent&&(t=this._parent.resolveComponentFactory(e)),!t)throw pd(e);return new md(t,this._ngModule)},e}(),md=function(e){function t(t,n){var r=e.call(this)||this;return r.factory=t,r.ngModule=n,r.selector=t.selector,r.componentType=t.componentType,r.ngContentSelectors=t.ngContentSelectors,r.inputs=t.inputs,r.outputs=t.outputs,r}return o(t,e),t.prototype.create=function(e,t,n,r){return this.factory.create(e,t,n,r||this.ngModule)},t}(dd);
|
|
807
814
|
/**
|
|
808
815
|
* @license
|
|
809
816
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -811,28 +818,28 @@ function ap(e){var t=Error("No component factory found for "+B(e)+". Did you add
|
|
|
811
818
|
* Use of this source code is governed by an MIT-style license that can be
|
|
812
819
|
* found in the LICENSE file at https://angular.io/license
|
|
813
820
|
*/
|
|
814
|
-
function
|
|
821
|
+
function _d(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]}
|
|
815
822
|
/**
|
|
816
823
|
* @license
|
|
817
824
|
* Copyright Google Inc. All Rights Reserved.
|
|
818
825
|
*
|
|
819
826
|
* Use of this source code is governed by an MIT-style license that can be
|
|
820
827
|
* found in the LICENSE file at https://angular.io/license
|
|
821
|
-
*/var
|
|
828
|
+
*/var wd,bd=function(){function e(e){this.nativeElement=e}return e.__NG_ELEMENT_ID__=function(){return Cd(e)},e}(),Cd=_d,Id=(new ce("Renderer2Interceptor"),function Id(){});(wd=e.RendererStyleFlags2||(e.RendererStyleFlags2={}))[wd.Important=1]="Important",wd[wd.DashCase=2]="DashCase";var xd,Ed=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return kd()},e}(),kd=_d,Od=function(){function e(){}return e.ɵprov=T({token:e,providedIn:"root",factory:function(){return null}}),e}(),Pd=new(xd=function xd(e){this.full=e,this.major=e.split(".")[0],this.minor=e.split(".")[1],this.patch=e.split(".").slice(2).join(".")})("9.0.1"),Nd=function(){function e(){}return e.prototype.supports=function(e){return $s(e)},e.prototype.create=function(e){return new jd(e)},e}(),Td=function(e,t){return t},jd=function(){function e(e){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=e||Td}return e.prototype.forEachItem=function(e){var t;for(t=this._itHead;null!==t;t=t._next)e(t)},e.prototype.forEachOperation=function(e){for(var t=this._itHead,n=this._removalsHead,r=0,o=null;t||n;){var i=!n||t&&t.currentIndex<Rd(n,r,o)?t:n,a=Rd(i,r,o),u=i.currentIndex;if(i===n)r--,n=n._nextRemoved;else if(t=t._next,null==i.previousIndex)r++;else{o||(o=[]);var s=a-r,l=u-r;if(s!=l){for(var c=0;c<s;c++){var f=c<o.length?o[c]:o[c]=0,d=f+c;l<=d&&d<s&&(o[c]=f+1)}o[i.previousIndex]=l-s}}a!==u&&e(i,a,u)}},e.prototype.forEachPreviousItem=function(e){var t;for(t=this._previousItHead;null!==t;t=t._nextPrevious)e(t)},e.prototype.forEachAddedItem=function(e){var t;for(t=this._additionsHead;null!==t;t=t._nextAdded)e(t)},e.prototype.forEachMovedItem=function(e){var t;for(t=this._movesHead;null!==t;t=t._nextMoved)e(t)},e.prototype.forEachRemovedItem=function(e){var t;for(t=this._removalsHead;null!==t;t=t._nextRemoved)e(t)},e.prototype.forEachIdentityChange=function(e){var t;for(t=this._identityChangesHead;null!==t;t=t._nextIdentityChange)e(t)},e.prototype.diff=function(e){if(null==e&&(e=[]),!$s(e))throw new Error("Error trying to diff '"+B(e)+"'. Only arrays and iterables are allowed");return this.check(e)?this:null},e.prototype.onDestroy=function(){},e.prototype.check=function(e){var t=this;this._reset();var n,r,o,i=this._itHead,a=!1;if(Array.isArray(e)){this.length=e.length;for(var u=0;u<this.length;u++)o=this._trackByFn(u,r=e[u]),null!==i&&Gs(i.trackById,o)?(a&&(i=this._verifyReinsertion(i,r,o,u)),Gs(i.item,r)||this._addIdentityChange(i,r)):(i=this._mismatch(i,r,o,u),a=!0),i=i._next}else n=0,function s(e,t){if(Array.isArray(e))for(var n=0;n<e.length;n++)t(e[n]);else for(var r=e[Ks()](),o=void 0;!(o=r.next()).done;)t(o.value)}(e,(function(e){o=t._trackByFn(n,e),null!==i&&Gs(i.trackById,o)?(a&&(i=t._verifyReinsertion(i,e,o,n)),Gs(i.item,e)||t._addIdentityChange(i,e)):(i=t._mismatch(i,e,o,n),a=!0),i=i._next,n++})),this.length=n;return this._truncate(i),this.collection=e,this.isDirty},Object.defineProperty(e.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead},enumerable:!0,configurable:!0}),e.prototype._reset=function(){if(this.isDirty){var e=void 0,t=void 0;for(e=this._previousItHead=this._itHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._additionsHead;null!==e;e=e._nextAdded)e.previousIndex=e.currentIndex;for(this._additionsHead=this._additionsTail=null,e=this._movesHead;null!==e;e=t)e.previousIndex=e.currentIndex,t=e._nextMoved;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}},e.prototype._mismatch=function(e,t,n,r){var o;return null===e?o=this._itTail:(o=e._prev,this._remove(e)),null!==(e=null===this._linkedRecords?null:this._linkedRecords.get(n,r))?(Gs(e.item,t)||this._addIdentityChange(e,t),this._moveAfter(e,o,r)):null!==(e=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null))?(Gs(e.item,t)||this._addIdentityChange(e,t),this._reinsertAfter(e,o,r)):e=this._addAfter(new Dd(t,n),o,r),e},e.prototype._verifyReinsertion=function(e,t,n,r){var o=null===this._unlinkedRecords?null:this._unlinkedRecords.get(n,null);return null!==o?e=this._reinsertAfter(o,e._prev,r):e.currentIndex!=r&&(e.currentIndex=r,this._addToMoves(e,r)),e},e.prototype._truncate=function(e){for(;null!==e;){var t=e._next;this._addToRemovals(this._unlink(e)),e=t}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)},e.prototype._reinsertAfter=function(e,t,n){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(e);var r=e._prevRemoved,o=e._nextRemoved;return null===r?this._removalsHead=o:r._nextRemoved=o,null===o?this._removalsTail=r:o._prevRemoved=r,this._insertAfter(e,t,n),this._addToMoves(e,n),e},e.prototype._moveAfter=function(e,t,n){return this._unlink(e),this._insertAfter(e,t,n),this._addToMoves(e,n),e},e.prototype._addAfter=function(e,t,n){return this._insertAfter(e,t,n),this._additionsTail=null===this._additionsTail?this._additionsHead=e:this._additionsTail._nextAdded=e,e},e.prototype._insertAfter=function(e,t,n){var r=null===t?this._itHead:t._next;return e._next=r,e._prev=t,null===r?this._itTail=e:r._prev=e,null===t?this._itHead=e:t._next=e,null===this._linkedRecords&&(this._linkedRecords=new Sd),this._linkedRecords.put(e),e.currentIndex=n,e},e.prototype._remove=function(e){return this._addToRemovals(this._unlink(e))},e.prototype._unlink=function(e){null!==this._linkedRecords&&this._linkedRecords.remove(e);var t=e._prev,n=e._next;return null===t?this._itHead=n:t._next=n,null===n?this._itTail=t:n._prev=t,e},e.prototype._addToMoves=function(e,t){return e.previousIndex===t?e:(this._movesTail=null===this._movesTail?this._movesHead=e:this._movesTail._nextMoved=e,e)},e.prototype._addToRemovals=function(e){return null===this._unlinkedRecords&&(this._unlinkedRecords=new Sd),this._unlinkedRecords.put(e),e.currentIndex=null,e._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=e,e._prevRemoved=null):(e._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=e),e},e.prototype._addIdentityChange=function(e,t){return e.item=t,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=e:this._identityChangesTail._nextIdentityChange=e,e},e}(),Dd=function Dd(e,t){this.item=e,this.trackById=t,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null},Ad=function(){function e(){this._head=null,this._tail=null}return e.prototype.add=function(e){null===this._head?(this._head=this._tail=e,e._nextDup=null,e._prevDup=null):(this._tail._nextDup=e,e._prevDup=this._tail,e._nextDup=null,this._tail=e)},e.prototype.get=function(e,t){var n;for(n=this._head;null!==n;n=n._nextDup)if((null===t||t<=n.currentIndex)&&Gs(n.trackById,e))return n;return null},e.prototype.remove=function(e){var t=e._prevDup,n=e._nextDup;return null===t?this._head=n:t._nextDup=n,null===n?this._tail=t:n._prevDup=t,null===this._head},e}(),Sd=function(){function e(){this.map=new Map}return e.prototype.put=function(e){var t=e.trackById,n=this.map.get(t);n||(n=new Ad,this.map.set(t,n)),n.add(e)},e.prototype.get=function(e,t){var n=this.map.get(e);return n?n.get(e,t):null},e.prototype.remove=function(e){var t=e.trackById;return this.map.get(t).remove(e)&&this.map.delete(t),e},Object.defineProperty(e.prototype,"isEmpty",{get:function(){return 0===this.map.size},enumerable:!0,configurable:!0}),e.prototype.clear=function(){this.map.clear()},e}();function Rd(e,t,n){var r=e.previousIndex;if(null===r)return r;var o=0;return n&&r<n.length&&(o=n[r]),r+t+o}
|
|
822
829
|
/**
|
|
823
830
|
* @license
|
|
824
831
|
* Copyright Google Inc. All Rights Reserved.
|
|
825
832
|
*
|
|
826
833
|
* Use of this source code is governed by an MIT-style license that can be
|
|
827
834
|
* found in the LICENSE file at https://angular.io/license
|
|
828
|
-
*/var
|
|
835
|
+
*/var Vd=function(){function e(){}return e.prototype.supports=function(e){return e instanceof Map||Xs(e)},e.prototype.create=function(){return new Fd},e}(),Fd=function(){function e(){this._records=new Map,this._mapHead=null,this._appendAfter=null,this._previousMapHead=null,this._changesHead=null,this._changesTail=null,this._additionsHead=null,this._additionsTail=null,this._removalsHead=null,this._removalsTail=null}return Object.defineProperty(e.prototype,"isDirty",{get:function(){return null!==this._additionsHead||null!==this._changesHead||null!==this._removalsHead},enumerable:!0,configurable:!0}),e.prototype.forEachItem=function(e){var t;for(t=this._mapHead;null!==t;t=t._next)e(t)},e.prototype.forEachPreviousItem=function(e){var t;for(t=this._previousMapHead;null!==t;t=t._nextPrevious)e(t)},e.prototype.forEachChangedItem=function(e){var t;for(t=this._changesHead;null!==t;t=t._nextChanged)e(t)},e.prototype.forEachAddedItem=function(e){var t;for(t=this._additionsHead;null!==t;t=t._nextAdded)e(t)},e.prototype.forEachRemovedItem=function(e){var t;for(t=this._removalsHead;null!==t;t=t._nextRemoved)e(t)},e.prototype.diff=function(e){if(e){if(!(e instanceof Map||Xs(e)))throw new Error("Error trying to diff '"+B(e)+"'. Only maps and objects are allowed")}else e=new Map;return this.check(e)?this:null},e.prototype.onDestroy=function(){},e.prototype.check=function(e){var t=this;this._reset();var n=this._mapHead;if(this._appendAfter=null,this._forEach(e,(function(e,r){if(n&&n.key===r)t._maybeAddToChanges(n,e),t._appendAfter=n,n=n._next;else{var o=t._getOrCreateRecordForKey(r,e);n=t._insertBeforeOrAppend(n,o)}})),n){n._prev&&(n._prev._next=null),this._removalsHead=n;for(var r=n;null!==r;r=r._nextRemoved)r===this._mapHead&&(this._mapHead=null),this._records.delete(r.key),r._nextRemoved=r._next,r.previousValue=r.currentValue,r.currentValue=null,r._prev=null,r._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty},e.prototype._insertBeforeOrAppend=function(e,t){if(e){var n=e._prev;return t._next=e,t._prev=n,e._prev=t,n&&(n._next=t),e===this._mapHead&&(this._mapHead=t),this._appendAfter=e,e}return this._appendAfter?(this._appendAfter._next=t,t._prev=this._appendAfter):this._mapHead=t,this._appendAfter=t,null},e.prototype._getOrCreateRecordForKey=function(e,t){if(this._records.has(e)){var n=this._records.get(e);this._maybeAddToChanges(n,t);var r=n._prev,o=n._next;return r&&(r._next=o),o&&(o._prev=r),n._next=null,n._prev=null,n}var i=new Md(e);return this._records.set(e,i),i.currentValue=t,this._addToAdditions(i),i},e.prototype._reset=function(){if(this.isDirty){var e=void 0;for(this._previousMapHead=this._mapHead,e=this._previousMapHead;null!==e;e=e._next)e._nextPrevious=e._next;for(e=this._changesHead;null!==e;e=e._nextChanged)e.previousValue=e.currentValue;for(e=this._additionsHead;null!=e;e=e._nextAdded)e.previousValue=e.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}},e.prototype._maybeAddToChanges=function(e,t){Gs(t,e.currentValue)||(e.previousValue=e.currentValue,e.currentValue=t,this._addToChanges(e))},e.prototype._addToAdditions=function(e){null===this._additionsHead?this._additionsHead=this._additionsTail=e:(this._additionsTail._nextAdded=e,this._additionsTail=e)},e.prototype._addToChanges=function(e){null===this._changesHead?this._changesHead=this._changesTail=e:(this._changesTail._nextChanged=e,this._changesTail=e)},e.prototype._forEach=function(e,t){e instanceof Map?e.forEach(t):Object.keys(e).forEach((function(n){return t(e[n],n)}))},e}(),Md=function Md(e){this.key=e,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null},Hd=function(){function e(e){this.factories=e}return e.create=function(t,n){if(null!=n){var r=n.factories.slice();t=t.concat(r)}return new e(t)},e.extend=function(t){return{provide:e,useFactory:function(n){if(!n)throw new Error("Cannot extend IterableDiffers without a parent injector");return e.create(t,n)},deps:[[e,new x,new C]]}},e.prototype.find=function(e){var t=this.factories.find((function(t){return t.supports(e)}));if(null!=t)return t;throw new Error("Cannot find a differ supporting object '"+e+"' of type '"+function n(e){return e.name||typeof e}
|
|
829
836
|
/**
|
|
830
837
|
* @license
|
|
831
838
|
* Copyright Google Inc. All Rights Reserved.
|
|
832
839
|
*
|
|
833
840
|
* Use of this source code is governed by an MIT-style license that can be
|
|
834
841
|
* found in the LICENSE file at https://angular.io/license
|
|
835
|
-
*/(e)+"'")},e.ɵprov=T({token:e,providedIn:"root",factory:function(){return new e([new
|
|
842
|
+
*/(e)+"'")},e.ɵprov=T({token:e,providedIn:"root",factory:function(){return new e([new Nd])}}),e}(),Ld=function(){function e(e){this.factories=e}return e.create=function(t,n){if(n){var r=n.factories.slice();t=t.concat(r)}return new e(t)},e.extend=function(t){return{provide:e,useFactory:function(n){if(!n)throw new Error("Cannot extend KeyValueDiffers without a parent injector");return e.create(t,n)},deps:[[e,new x,new C]]}},e.prototype.find=function(e){var t=this.factories.find((function(t){return t.supports(e)}));if(t)return t;throw new Error("Cannot find a differ supporting object '"+e+"'")},e.ɵprov=T({token:e,providedIn:"root",factory:function(){return new e([new Vd])}}),e}(),Bd=[new Vd],Ud=new Hd([new Nd]),Qd=new Ld(Bd),zd=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return qd(e,bd)},e}(),qd=_d,Zd=function(){function e(){}return e.__NG_ELEMENT_ID__=function(){return Wd(e,bd)},e}(),Wd=_d;
|
|
836
843
|
/**
|
|
837
844
|
* @license
|
|
838
845
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -840,21 +847,21 @@ function dp(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t]}
|
|
|
840
847
|
* Use of this source code is governed by an MIT-style license that can be
|
|
841
848
|
* found in the LICENSE file at https://angular.io/license
|
|
842
849
|
*/
|
|
843
|
-
function
|
|
850
|
+
function Kd(e,t,n,r){var o="ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: '"+t+"'. Current value: '"+n+"'.";return r&&(o+=" It seems like the view has been created after its parent and its children have been dirty checked. Has it been created in a change detection hook ?"),function i(e,t){var n=new Error(e);return Gd(n,t),n}(o,e)}function Gd(e,t){e[xr]=t,e[kr]=t.logError.bind(t)}function Jd(e){return new Error("ViewDestroyedError: Attempt to use a destroyed view: "+e)}
|
|
844
851
|
/**
|
|
845
852
|
* @license
|
|
846
853
|
* Copyright Google Inc. All Rights Reserved.
|
|
847
854
|
*
|
|
848
855
|
* Use of this source code is governed by an MIT-style license that can be
|
|
849
856
|
* found in the LICENSE file at https://angular.io/license
|
|
850
|
-
*/function
|
|
857
|
+
*/function Yd(e,t,n){var r=e.state,o=1792&r;return o===t?(e.state=-1793&r|n,e.initIndex=-1,!0):o===n}function $d(e,t,n){return(1792&e.state)===t&&e.initIndex<=n&&(e.initIndex=n+1,!0)}function Xd(e,t){return e.nodes[t]}function ep(e,t){return e.nodes[t]}function tp(e,t){return e.nodes[t]}function np(e,t){return e.nodes[t]}function rp(e,t){return e.nodes[t]}var op=function op(){},ip={setCurrentNode:void 0,createRootView:void 0,createEmbeddedView:void 0,createComponentView:void 0,createNgModuleRef:void 0,overrideProvider:void 0,overrideComponentView:void 0,clearOverrides:void 0,checkAndUpdateView:void 0,checkNoChangesView:void 0,destroyView:void 0,resolveDep:void 0,createDebugContext:void 0,handleEvent:void 0,updateDirectives:void 0,updateRenderer:void 0,dirtyParentQueries:void 0},ap=function(){},up=new Map;function sp(e){var t=up.get(e);return t||(t=B(e)+"_"+up.size,up.set(e,t)),t}var lp=0;function cp(e,t,n,r){return!(!(2&e.state)&&Gs(e.oldValues[t.bindingIndex+n],r))}function fp(e,t,n,r){return!!cp(e,t,n,r)&&(e.oldValues[t.bindingIndex+n]=r,!0)}function dp(e,t,n,r){var o=e.oldValues[t.bindingIndex+n];if(1&e.state||!Js(o,r)){var i=t.bindings[n].name;throw Kd(ip.createDebugContext(e,t.nodeIndex),i+": "+o,i+": "+r,0!=(1&e.state))}}function pp(e){for(var t=e;t;)2&t.def.flags&&(t.state|=8),t=t.viewContainerParent||t.parent}function hp(e,t){for(var n=e;n&&n!==t;)n.state|=64,n=n.viewContainerParent||n.parent}function vp(e,t,n,r){try{return pp(33554432&e.def.nodes[t].flags?ep(e,t).componentView:e),ip.handleEvent(e,t,n,r)}catch(t){e.root.errorHandler.handleError(t)}}function yp(e){return e.parent?ep(e.parent,e.parentNodeDef.nodeIndex):null}function gp(e){return e.parent?e.parentNodeDef.parent:null}function mp(e,t){switch(201347067&t.flags){case 1:return ep(e,t.nodeIndex).renderElement;case 2:return Xd(e,t.nodeIndex).renderText}}function _p(e){return!!e.parent&&!!(32768&e.parentNodeDef.flags)}function wp(e){return!(!e.parent||32768&e.parentNodeDef.flags)}function bp(e){return 1<<e%32}function Cp(e){var t={},n=0,r={};return e&&e.forEach((function(e){var o=c(e,2),i=o[0],a=o[1];"number"==typeof i?(t[i]=a,n|=bp(i)):r[i]=a})),{matchedQueries:t,references:r,matchedQueryIds:n}}function Ip(e,t){return e.map((function(e){var n,r,o;return Array.isArray(e)?(o=(n=c(e,2))[0],r=n[1]):(o=0,r=e),r&&("function"==typeof r||"object"==typeof r)&&t&&Object.defineProperty(r,ge,{value:t,configurable:!0}),{flags:o,token:r,tokenKey:sp(r)}}))}function xp(t,n,r){var o=r.renderParent;return o?0==(1&o.flags)||0==(33554432&o.flags)||o.element.componentRendererType&&o.element.componentRendererType.encapsulation===e.ViewEncapsulation.Native?ep(t,r.renderParent.nodeIndex).renderElement:void 0:n}var Ep=new WeakMap;function kp(e){var t=Ep.get(e);return t||((t=e((function(){return ap}))).factory=e,Ep.set(e,t)),t}function Op(e,t,n,r,o){3===t&&(n=e.renderer.parentNode(mp(e,e.def.lastRenderRootNode))),Pp(e,t,0,e.def.nodes.length-1,n,r,o)}function Pp(e,t,n,r,o,i,a){for(var u=n;u<=r;u++){var s=e.def.nodes[u];11&s.flags&&Tp(e,s,t,o,i,a),u+=s.childCount}}function Np(e,t,n,r,o,i){for(var a=e;a&&!_p(a);)a=a.parent;for(var u=a.parent,s=gp(a),l=s.nodeIndex+s.childCount,c=s.nodeIndex+1;c<=l;c++){var f=u.def.nodes[c];f.ngContentIndex===t&&Tp(u,f,n,r,o,i),c+=f.childCount}if(!u.parent){var d=e.root.projectableNodes[t];if(d)for(c=0;c<d.length;c++)jp(e,d[c],n,r,o,i)}}function Tp(e,t,n,r,o,i){if(8&t.flags)Np(e,t.ngContent.index,n,r,o,i);else{var a=mp(e,t);if(3===n&&33554432&t.flags&&48&t.bindingFlags?(16&t.bindingFlags&&jp(e,a,n,r,o,i),32&t.bindingFlags&&jp(ep(e,t.nodeIndex).componentView,a,n,r,o,i)):jp(e,a,n,r,o,i),16777216&t.flags)for(var u=ep(e,t.nodeIndex).viewContainer._embeddedViews,s=0;s<u.length;s++)Op(u[s],n,r,o,i);1&t.flags&&!t.element.name&&Pp(e,n,t.nodeIndex+1,t.nodeIndex+t.childCount,r,o,i)}}function jp(e,t,n,r,o,i){var a=e.renderer;switch(n){case 1:a.appendChild(r,t);break;case 2:a.insertBefore(r,t,o);break;case 3:a.removeChild(r,t);break;case 0:i.push(t)}}var Dp=/^:([^:]+):(.+)$/;function Ap(e){if(":"===e[0]){var t=e.match(Dp);return[t[1],t[2]]}return["",e]}function Sp(e){for(var t=0,n=0;n<e.length;n++)t|=e[n].flags;return t}function Rp(e){return null!=e?e.toString():""}var Vp={},Fp=sp(is),Mp=sp(fe),Hp=sp(Se);function Lp(e,t,n){void 0===n&&(n=is.THROW_IF_NOT_FOUND);var r=we(e);try{if(8&t.flags)return t.token;if(2&t.flags&&(n=null),1&t.flags)return e._parent.get(t.token,n);var o=t.tokenKey;switch(o){case Fp:case Mp:case Hp:return e}var i,a=e._def.providersByKey[o];if(a){var u=e._providers[a.index];return void 0===u&&(u=e._providers[a.index]=Bp(e,a)),u===Vp?void 0:u}if((i=A(t.token))&&function s(e,t){var n=t.providedIn;return null!=n&&("any"===n||n===e._def.scope||function r(e,t){return e._def.modules.indexOf(t)>-1}(e,n))}(e,i)){var l=e._providers.length;return e._def.providers[l]=e._def.providersByKey[t.tokenKey]={flags:5120,value:i.factory,deps:[],index:l,token:t.token},e._providers[l]=Vp,e._providers[l]=Bp(e,e._def.providersByKey[t.tokenKey])}return 4&t.flags?n:e._parent.get(t.token,n)}finally{we(r)}}function Bp(e,t){var n;switch(201347067&t.flags){case 512:n=function r(e,t,n){var r=n.length;switch(r){case 0:return new t;case 1:return new t(Lp(e,n[0]));case 2:return new t(Lp(e,n[0]),Lp(e,n[1]));case 3:return new t(Lp(e,n[0]),Lp(e,n[1]),Lp(e,n[2]));default:for(var o=[],i=0;i<r;i++)o[i]=Lp(e,n[i]);return new(t.bind.apply(t,f([void 0],o)))}}(e,t.value,t.deps);break;case 1024:n=function o(e,t,n){var r=n.length;switch(r){case 0:return t();case 1:return t(Lp(e,n[0]));case 2:return t(Lp(e,n[0]),Lp(e,n[1]));case 3:return t(Lp(e,n[0]),Lp(e,n[1]),Lp(e,n[2]));default:for(var o=[],i=0;i<r;i++)o[i]=Lp(e,n[i]);return t.apply(void 0,f(o))}}(e,t.value,t.deps);break;case 2048:n=Lp(e,t.deps[0]);break;case 256:n=t.value}return n===Vp||null===n||"object"!=typeof n||131072&t.flags||"function"!=typeof n.ngOnDestroy||(t.flags|=131072),void 0===n?Vp:n}function Up(e,t){var n=e.viewContainer._embeddedViews;if((null==t||t>=n.length)&&(t=n.length-1),t<0)return null;var r=n[t];return r.viewContainerParent=null,Be(n,t),ip.dirtyParentQueries(r),zp(r),r}function Qp(e,t,n){var r=t?mp(t,t.def.lastRenderRootNode):e.renderElement,o=n.renderer.parentNode(r),i=n.renderer.nextSibling(r);Op(n,2,o,i,void 0)}function zp(e){Op(e,3,null,null,void 0)}
|
|
851
858
|
/**
|
|
852
859
|
* @license
|
|
853
860
|
* Copyright Google Inc. All Rights Reserved.
|
|
854
861
|
*
|
|
855
862
|
* Use of this source code is governed by an MIT-style license that can be
|
|
856
863
|
* found in the LICENSE file at https://angular.io/license
|
|
857
|
-
*/var
|
|
864
|
+
*/var qp={};function Zp(e){return e.viewDefFactory}var Wp=function(e){function t(t,n,r,o,i,a){var u=e.call(this)||this;return u.selector=t,u.componentType=n,u._inputs=o,u._outputs=i,u.ngContentSelectors=a,u.viewDefFactory=r,u}return o(t,e),Object.defineProperty(t.prototype,"inputs",{get:function(){var e=[],t=this._inputs;for(var n in t)e.push({propName:n,templateName:t[n]});return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"outputs",{get:function(){var e=[];for(var t in this._outputs)e.push({propName:t,templateName:this._outputs[t]});return e},enumerable:!0,configurable:!0}),t.prototype.create=function(e,t,n,r){if(!r)throw new Error("ngModule should be provided");var o=kp(this.viewDefFactory),i=o.nodes[0].element.componentProvider.nodeIndex,a=ip.createRootView(e,t||[],n,o,r,qp),u=tp(a,i).instance;return n&&a.renderer.setAttribute(ep(a,0).renderElement,"ng-version",Pd.full),new Kp(a,new $p(a),u)},t}(dd),Kp=function(e){function t(t,n,r){var o=e.call(this)||this;return o._view=t,o._viewRef=n,o._component=r,o._elDef=o._view.def.nodes[0],o.hostView=n,o.changeDetectorRef=n,o.instance=r,o}return o(t,e),Object.defineProperty(t.prototype,"location",{get:function(){return new bd(ep(this._view,this._elDef.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"injector",{get:function(){return new nh(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentType",{get:function(){return this._component.constructor},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this._viewRef.destroy()},t.prototype.onDestroy=function(e){this._viewRef.onDestroy(e)},t}(fd);function Gp(e,t,n){return new Jp(e,t,n)}var Jp=function(){function e(e,t,n){this._view=e,this._elDef=t,this._data=n,this._embeddedViews=[]}return Object.defineProperty(e.prototype,"element",{get:function(){return new bd(this._data.renderElement)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return new nh(this._view,this._elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"parentInjector",{get:function(){for(var e=this._view,t=this._elDef.parent;!t&&e;)t=gp(e),e=e.parent;return e?new nh(e,t):new nh(this._view,null)},enumerable:!0,configurable:!0}),e.prototype.clear=function(){for(var e=this._embeddedViews.length-1;e>=0;e--){var t=Up(this._data,e);ip.destroyView(t)}},e.prototype.get=function(e){var t=this._embeddedViews[e];if(t){var n=new $p(t);return n.attachToViewContainerRef(this),n}return null},Object.defineProperty(e.prototype,"length",{get:function(){return this._embeddedViews.length},enumerable:!0,configurable:!0}),e.prototype.createEmbeddedView=function(e,t,n){var r=e.createEmbeddedView(t||{});return this.insert(r,n),r},e.prototype.createComponent=function(e,t,n,r,o){var i=n||this.parentInjector;o||e instanceof md||(o=i.get(Se));var a=e.create(i,r,void 0,o);return this.insert(a.hostView,t),a},e.prototype.insert=function(e,t){if(e.destroyed)throw new Error("Cannot insert a destroyed View in a ViewContainer!");var n=e;
|
|
858
865
|
/**
|
|
859
866
|
* @license
|
|
860
867
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -862,49 +869,49 @@ function Bp(e,t,n,r){var o="ExpressionChangedAfterItHasBeenCheckedError: Express
|
|
|
862
869
|
* Use of this source code is governed by an MIT-style license that can be
|
|
863
870
|
* found in the LICENSE file at https://angular.io/license
|
|
864
871
|
*/
|
|
865
|
-
return function r(e,t,n,o){var i=t.viewContainer._embeddedViews;null==n&&(n=i.length),o.viewContainerParent=e,
|
|
872
|
+
return function r(e,t,n,o){var i=t.viewContainer._embeddedViews;null==n&&(n=i.length),o.viewContainerParent=e,Le(i,n,o),function a(e,t){var n=yp(t);if(n&&n!==e&&!(16&t.state)){t.state|=16;var r=n.template._projectedViews;r||(r=n.template._projectedViews=[]),r.push(t),function o(e,t){if(!(4&t.flags)){e.nodeFlags|=4,t.flags|=4;for(var n=t.parent;n;)n.childFlags|=4,n=n.parent}}(t.parent.def,t.parentNodeDef)}}(t,o),ip.dirtyParentQueries(o),Qp(t,n>0?i[n-1]:null,o)}(this._view,this._data,t,n._view),n.attachToViewContainerRef(this),e},e.prototype.move=function(e,t){if(e.destroyed)throw new Error("Cannot move a destroyed View in a ViewContainer!");var n=this._embeddedViews.indexOf(e._view);return function r(e,t,n){var r=e.viewContainer._embeddedViews,o=r[t];Be(r,t),null==n&&(n=r.length),Le(r,n,o),ip.dirtyParentQueries(o),zp(o),Qp(e,n>0?r[n-1]:null,o)}(this._data,n,t),e},e.prototype.indexOf=function(e){return this._embeddedViews.indexOf(e._view)},e.prototype.remove=function(e){var t=Up(this._data,e);t&&ip.destroyView(t)},e.prototype.detach=function(e){var t=Up(this._data,e);return t?new $p(t):null},e}();function Yp(e){return new $p(e)}var $p=function(){function e(e){this._view=e,this._viewContainerRef=null,this._appRef=null}return Object.defineProperty(e.prototype,"rootNodes",{get:function(){return function e(t){var n=[];return Op(t,0,void 0,void 0,n),n}(this._view)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._view.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"destroyed",{get:function(){return 0!=(128&this._view.state)},enumerable:!0,configurable:!0}),e.prototype.markForCheck=function(){pp(this._view)},e.prototype.detach=function(){this._view.state&=-5},e.prototype.detectChanges=function(){var e=this._view.root.rendererFactory;e.begin&&e.begin();try{ip.checkAndUpdateView(this._view)}finally{e.end&&e.end()}},e.prototype.checkNoChanges=function(){ip.checkNoChangesView(this._view)},e.prototype.reattach=function(){this._view.state|=4},e.prototype.onDestroy=function(e){this._view.disposables||(this._view.disposables=[]),this._view.disposables.push(e)},e.prototype.destroy=function(){this._appRef?this._appRef.detachView(this):this._viewContainerRef&&this._viewContainerRef.detach(this._viewContainerRef.indexOf(this)),ip.destroyView(this._view)},e.prototype.detachFromAppRef=function(){this._appRef=null,zp(this._view),ip.dirtyParentQueries(this._view)},e.prototype.attachToAppRef=function(e){if(this._viewContainerRef)throw new Error("This view is already attached to a ViewContainer!");this._appRef=e},e.prototype.attachToViewContainerRef=function(e){if(this._appRef)throw new Error("This view is already attached directly to the ApplicationRef!");this._viewContainerRef=e},e}();function Xp(e,t){return new eh(e,t)}var eh=function(e){function t(t,n){var r=e.call(this)||this;return r._parentView=t,r._def=n,r}return o(t,e),t.prototype.createEmbeddedView=function(e){return new $p(ip.createEmbeddedView(this._parentView,this._def,this._def.element.template,e))},Object.defineProperty(t.prototype,"elementRef",{get:function(){return new bd(ep(this._parentView,this._def.nodeIndex).renderElement)},enumerable:!0,configurable:!0}),t}(zd);function th(e,t){return new nh(e,t)}var nh=function(){function e(e,t){this.view=e,this.elDef=t}return e.prototype.get=function(e,t){return void 0===t&&(t=is.THROW_IF_NOT_FOUND),ip.resolveDep(this.view,this.elDef,!!this.elDef&&0!=(33554432&this.elDef.flags),{flags:0,token:e,tokenKey:sp(e)},t)},e}();function rh(e,t,n,r){return new oh(e,t,n,r)}var oh=function(){function t(e,t,n,r){this._moduleType=e,this._parent=t,this._bootstrapComponents=n,this._def=r,this._destroyListeners=[],this._destroyed=!1,this.injector=this,function o(e){for(var t=e._def,n=e._providers=Ue(t.providers.length),r=0;r<t.providers.length;r++){var o=t.providers[r];4096&o.flags||void 0===n[r]&&(n[r]=Bp(e,o))}}(this)}return t.prototype.get=function(t,n,r){void 0===n&&(n=is.THROW_IF_NOT_FOUND),void 0===r&&(r=e.InjectFlags.Default);var o=0;return r&e.InjectFlags.SkipSelf?o|=1:r&e.InjectFlags.Self&&(o|=4),Lp(this,{token:t,tokenKey:sp(t),flags:o},n)},Object.defineProperty(t.prototype,"instance",{get:function(){return this.get(this._moduleType)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"componentFactoryResolver",{get:function(){return this.get(yd)},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){if(this._destroyed)throw new Error("The ng module "+B(this.instance.constructor)+" has already been destroyed.");this._destroyed=!0,function e(t,n){for(var r=t._def,o=new Set,i=0;i<r.providers.length;i++)if(131072&r.providers[i].flags){var a=t._providers[i];if(a&&a!==Vp){var u=a.ngOnDestroy;"function"!=typeof u||o.has(a)||(u.apply(a),o.add(a))}}}(this),this._destroyListeners.forEach((function(e){return e()}))},t.prototype.onDestroy=function(e){this._destroyListeners.push(e)},t}(),ih=sp(Ed),ah=sp(bd),uh=sp(Zd),sh=sp(zd),lh=sp(mu),ch=sp(is),fh=sp(fe);
|
|
866
873
|
/**
|
|
867
874
|
* @license
|
|
868
875
|
* Copyright Google Inc. All Rights Reserved.
|
|
869
876
|
*
|
|
870
877
|
* Use of this source code is governed by an MIT-style license that can be
|
|
871
878
|
* found in the LICENSE file at https://angular.io/license
|
|
872
|
-
*/function
|
|
879
|
+
*/function dh(e,t,n,r,o,i,a,u,s){var l=Cp(n),c=l.matchedQueries,f=l.references,d=l.matchedQueryIds;s||(s=[]),u||(u=[]),i=q(i);var p=Ip(a,B(o));return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:e,flags:t,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:c,matchedQueryIds:d,references:f,ngContentIndex:-1,childCount:r,bindings:u,bindingFlags:Sp(u),outputs:s,element:null,provider:{token:o,value:i,deps:p},text:null,query:null,ngContent:null}}function ph(e,t){return gh(e,t)}function hh(e,t){for(var n=e;n.parent&&!_p(n);)n=n.parent;return mh(n.parent,gp(n),!0,t.provider.value,t.provider.deps)}function vh(e,t){var n=mh(e,t.parent,(32768&t.flags)>0,t.provider.value,t.provider.deps);if(t.outputs.length)for(var r=0;r<t.outputs.length;r++){var o=t.outputs[r],i=n[o.propName];if(!Kl(i))throw new Error("@Output "+o.propName+" not initialized in '"+n.constructor.name+"'.");var a=i.subscribe(yh(e,t.parent.nodeIndex,o.eventName));e.disposables[t.outputIndex+r]=a.unsubscribe.bind(a)}return n}function yh(e,t,n){return function(r){return vp(e,t,n,r)}}function gh(e,t){var n=(8192&t.flags)>0,r=t.provider;switch(201347067&t.flags){case 512:return mh(e,t.parent,n,r.value,r.deps);case 1024:return function o(e,t,n,r,i){var a=i.length;switch(a){case 0:return r();case 1:return r(wh(e,t,n,i[0]));case 2:return r(wh(e,t,n,i[0]),wh(e,t,n,i[1]));case 3:return r(wh(e,t,n,i[0]),wh(e,t,n,i[1]),wh(e,t,n,i[2]));default:for(var u=[],s=0;s<a;s++)u.push(wh(e,t,n,i[s]));return r.apply(void 0,f(u))}}(e,t.parent,n,r.value,r.deps);case 2048:return wh(e,t.parent,n,r.deps[0]);case 256:return r.value}}function mh(e,t,n,r,o){var i=o.length;switch(i){case 0:return new r;case 1:return new r(wh(e,t,n,o[0]));case 2:return new r(wh(e,t,n,o[0]),wh(e,t,n,o[1]));case 3:return new r(wh(e,t,n,o[0]),wh(e,t,n,o[1]),wh(e,t,n,o[2]));default:for(var a=[],u=0;u<i;u++)a.push(wh(e,t,n,o[u]));return new(r.bind.apply(r,f([void 0],a)))}}var _h={};function wh(e,t,n,r,o){if(void 0===o&&(o=is.THROW_IF_NOT_FOUND),8&r.flags)return r.token;var i=e;2&r.flags&&(o=null);var a=r.tokenKey;a===lh&&(n=!(!t||!t.element.componentView)),t&&1&r.flags&&(n=!1,t=t.parent);for(var u=e;u;){if(t)switch(a){case ih:return bh(u,t,n).renderer;case ah:return new bd(ep(u,t.nodeIndex).renderElement);case uh:return ep(u,t.nodeIndex).viewContainer;case sh:if(t.element.template)return ep(u,t.nodeIndex).template;break;case lh:return Yp(bh(u,t,n));case ch:case fh:return th(u,t);default:var s=(n?t.element.allProviders:t.element.publicProviders)[a];if(s){var l=tp(u,s.nodeIndex);return l||(l={instance:gh(u,s)},u.nodes[s.nodeIndex]=l),l.instance}}n=_p(u),t=gp(u),u=u.parent,4&r.flags&&(u=null)}var c=i.root.injector.get(r.token,_h);return c!==_h||o===_h?c:i.root.ngModule.injector.get(r.token,o)}function bh(e,t,n){var r;if(n)r=ep(e,t.nodeIndex).componentView;else for(r=e;r.parent&&!_p(r);)r=r.parent;return r}function Ch(e,t,n,r,o,i){if(32768&n.flags){var a=ep(e,n.parent.nodeIndex).componentView;2&a.def.flags&&(a.state|=8)}if(t.instance[n.bindings[r].name]=o,524288&n.flags){i=i||{};var u=Ys.unwrap(e.oldValues[n.bindingIndex+r]);i[n.bindings[r].nonMinifiedName]=new $f(u,o,0!=(2&e.state))}return e.oldValues[n.bindingIndex+r]=o,i}function Ih(e,t){if(e.def.nodeFlags&t)for(var n=e.def.nodes,r=0,o=0;o<n.length;o++){var i=n[o],a=i.parent;for(!a&&i.flags&t&&Eh(e,o,i.flags&t,r++),0==(i.childFlags&t)&&(o+=i.childCount);a&&1&a.flags&&o===a.nodeIndex+a.childCount;)a.directChildFlags&t&&(r=xh(e,a,t,r)),a=a.parent}}function xh(e,t,n,r){for(var o=t.nodeIndex+1;o<=t.nodeIndex+t.childCount;o++){var i=e.def.nodes[o];i.flags&n&&Eh(e,o,i.flags&n,r++),o+=i.childCount}return r}function Eh(e,t,n,r){var o=tp(e,t);if(o){var i=o.instance;i&&(ip.setCurrentNode(e,t),1048576&n&&$d(e,512,r)&&i.ngAfterContentInit(),2097152&n&&i.ngAfterContentChecked(),4194304&n&&$d(e,768,r)&&i.ngAfterViewInit(),8388608&n&&i.ngAfterViewChecked(),131072&n&&i.ngOnDestroy())}}
|
|
873
880
|
/**
|
|
874
881
|
* @license
|
|
875
882
|
* Copyright Google Inc. All Rights Reserved.
|
|
876
883
|
*
|
|
877
884
|
* Use of this source code is governed by an MIT-style license that can be
|
|
878
885
|
* found in the LICENSE file at https://angular.io/license
|
|
879
|
-
*/var
|
|
886
|
+
*/var kh=function(e){function t(t){var n=e.call(this)||this;return n.ngModule=t,n}return o(t,e),t.prototype.resolveComponentFactory=function(e){var t=at(e);return new Nh(t,this.ngModule)},t}(yd);function Oh(e){var t=[];for(var n in e)e.hasOwnProperty(n)&&t.push({propName:e[n],templateName:n});return t}var Ph=new ce("SCHEDULER_TOKEN",{providedIn:"root",factory:function(){return Xn}}),Nh=function(e){function t(t,n){var r=e.call(this)||this;return r.componentDef=t,r.ngModule=n,r.componentType=t.type,r.selector=function o(e){return e.map(hi).join(",")}(t.selectors),r.ngContentSelectors=t.ngContentSelectors?t.ngContentSelectors:[],r.isBoundToModule=!!n,r}return o(t,e),Object.defineProperty(t.prototype,"inputs",{get:function(){return Oh(this.componentDef.inputs)},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"outputs",{get:function(){return Oh(this.componentDef.outputs)},enumerable:!0,configurable:!0}),t.prototype.create=function(e,t,n,r){var o,i,a=(r=r||this.ngModule)?function u(e,t){return{get:function(n,r,o){var i=e.get(n,_h,o);return i!==_h||r===_h?i:t.get(n,r,o)}}}(e,r.injector):e,s=a.get(Id,Bn),l=a.get(Od,null),c=s.createRenderer(null,this.componentDef),f=this.componentDef.selectors[0][0]||"div",d=n?na(c,n,this.componentDef.encapsulation):Qi(f,s.createRenderer(null,this.componentDef),function p(e){var t=e.toLowerCase();return"svg"===t?zt:"math"===t?qt:null}(f)),h=this.componentDef.onPush?576:528,v="string"==typeof n&&/^#root-ng-internal-isolated-\d+/.test(n),y=Bf(),g=ta(0,-1,null,1,0,null,null,null,null,null),m=zi(null,g,y,h,null,null,s,c,l,a),_=n&&d?Pd.full:null;yn(m,null);try{var w=Hf(d,this.componentDef,m,s,c,_,null);i=Mo(m[dt],0),t&&(i.projection=t.map((function(e){return Array.from(e)}))),o=Lf(w,this.componentDef,m,y,[Uf]),Wi(g,m,null)}finally{_n()}var b=new jh(this.componentType,o,hu(bd,i,m),m,i);return n&&!v||(b.hostView._tViewNode.child=i),b},t}(dd);new kh;var Th,jh=function(e){function t(t,n,r,o,i){var a=e.call(this)||this;return a.location=r,a._rootLView=o,a._tNode=i,a.destroyCbs=[],a.instance=n,a.hostView=a.changeDetectorRef=new pu(o),a.hostView._tViewNode=Zi(o[dt],null,-1,o),a.componentType=t,a}return o(t,e),Object.defineProperty(t.prototype,"injector",{get:function(){return new br(this._tNode,this._rootLView)},enumerable:!0,configurable:!0}),t.prototype.destroy=function(){this.destroyCbs&&(this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null,!this.hostView.destroyed&&this.hostView.destroy())},t.prototype.onDestroy=function(e){this.destroyCbs&&this.destroyCbs.push(e)},t}(fd),Dh=void 0,Ah=["en",[["a","p"],["AM","PM"],Dh],[["AM","PM"],Dh,Dh],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],Dh,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],Dh,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",Dh,"{1} 'at' {0}",Dh],[".",",",";","%","+","-","E","×","‰","∞","NaN",":"],["#,##0.###","#,##0%","¤#,##0.00","#E0"],"USD","$","US Dollar",{},function Sh(e){var t=Math.floor(Math.abs(e)),n=e.toString().replace(/^[^.]*\.?/,"").length;return 1===t&&0===n?1:5}],Rh={};
|
|
880
887
|
/**
|
|
881
888
|
* @license
|
|
882
889
|
* Copyright Google Inc. All Rights Reserved.
|
|
883
890
|
*
|
|
884
891
|
* Use of this source code is governed by an MIT-style license that can be
|
|
885
892
|
* found in the LICENSE file at https://angular.io/license
|
|
886
|
-
*/function
|
|
893
|
+
*/function Vh(e){var t=function n(e){return e.toLowerCase().replace(/_/g,"-")}
|
|
887
894
|
/**
|
|
888
895
|
* @license
|
|
889
896
|
* Copyright Google Inc. All Rights Reserved.
|
|
890
897
|
*
|
|
891
898
|
* Use of this source code is governed by an MIT-style license that can be
|
|
892
899
|
* found in the LICENSE file at https://angular.io/license
|
|
893
|
-
*/(e),r=
|
|
900
|
+
*/(e),r=Mh(t);if(r)return r;var o=t.split("-")[0];if(r=Mh(o))return r;if("en"===o)return Ah;throw new Error('Missing locale data for the locale "'+e+'".')}function Fh(t){return Vh(t)[e.ɵLocaleDataIndex.PluralCase]}function Mh(e){return e in Rh||(Rh[e]=ee.ng&&ee.ng.common&&ee.ng.common.locales&&ee.ng.common.locales[e]),Rh[e]}(Th=e.ɵLocaleDataIndex||(e.ɵLocaleDataIndex={}))[Th.LocaleId=0]="LocaleId",Th[Th.DayPeriodsFormat=1]="DayPeriodsFormat",Th[Th.DayPeriodsStandalone=2]="DayPeriodsStandalone",Th[Th.DaysFormat=3]="DaysFormat",Th[Th.DaysStandalone=4]="DaysStandalone",Th[Th.MonthsFormat=5]="MonthsFormat",Th[Th.MonthsStandalone=6]="MonthsStandalone",Th[Th.Eras=7]="Eras",Th[Th.FirstDayOfWeek=8]="FirstDayOfWeek",Th[Th.WeekendRange=9]="WeekendRange",Th[Th.DateFormat=10]="DateFormat",Th[Th.TimeFormat=11]="TimeFormat",Th[Th.DateTimeFormat=12]="DateTimeFormat",Th[Th.NumberSymbols=13]="NumberSymbols",Th[Th.NumberFormats=14]="NumberFormats",Th[Th.CurrencyCode=15]="CurrencyCode",Th[Th.CurrencySymbol=16]="CurrencySymbol",Th[Th.CurrencyName=17]="CurrencyName",Th[Th.Currencies=18]="Currencies",Th[Th.PluralCase=19]="PluralCase",Th[Th.ExtraData=20]="ExtraData";var Hh="en-US",Lh="�",Bh=/^\s*(�\d+:?\d*�)\s*,\s*(select|plural)\s*,/,Uh=/�\/?\*(\d+:\d+)�/gi,Qh=/�(\/?[#*!]\d+):?\d*�/gi,zh=/�(\d+):?\d*�/gi,qh=/({\s*�\d+:?\d*�\s*,\s*\S{6}\s*,[\s\S]*})/gi,Zh=0,Wh=/\[(�.+?�?)\]/,Kh=/\[(�.+?�?)\]|(�\/?\*\d+:\d+�)/g,Gh=/({\s*)(VAR_(PLURAL|SELECT)(_\d+)?)(\s*,)/g,Jh=/{([A-Z0-9_]+)}/g,Yh=/�I18N_EXP_(ICU(_\d+)?)�/g,$h=/\/\*/,Xh=/\d+\:(\d+)/;function ev(e){if(!e)return[];var t,n=0,r=[],o=[],i=/[{}]/g;for(i.lastIndex=0;t=i.exec(e);){var a=t.index;if("}"==t[0]){if(r.pop(),0==r.length){var u=e.substring(n,a);Bh.test(u)?o.push(tv(u)):o.push(u),n=a+1}}else{if(0==r.length){var s=e.substring(n,a);o.push(s),n=a+1}r.push("{")}}var l=e.substring(n);return o.push(l),o}function tv(e){for(var t=[],n=[],r=1,o=0,i=ev(e=e.replace(Bh,(function(e,t,n){return r="select"===n?0:1,o=parseInt(t.substr(1),10),""}))),a=0;a<i.length;){var u=i[a++].trim();1===r&&(u=u.replace(/\s*(?:=)?(\w+)\s*/,"$1")),u.length&&t.push(u);var s=ev(i[a++]);t.length>n.length&&n.push(s)}return{type:r,mainBinding:o,cases:t,values:n}}function nv(e){for(var t,n,r="",o=0,i=!1;null!==(t=Uh.exec(e));)i?t[0]===Lh+"/*"+n+Lh&&(o=t.index,i=!1):(r+=e.substring(o,t.index+t[0].length),n=t[1],i=!0);return r+e.substr(o)}function rv(e,t,n,r){void 0===r&&(r=null);for(var o=[null,null],i=e.split(zh),a=0,u=0;u<i.length;u++){var s=i[u];if(1&u){var l=parseInt(s,10);o.push(-1-l),a|=uv(l)}else""!==s&&o.push(s)}return o.push(t<<2|(n?1:0)),n&&o.push(n,r),o[0]=a,o[1]=o.length-2,o}function ov(e,t){var n;void 0===t&&(t=0),t|=uv(e.mainBinding);for(var r=0;r<e.values.length;r++)for(var o=e.values[r],i=0;i<o.length;i++){var a=o[i];if("string"==typeof a)for(;n=zh.exec(a);)t|=uv(parseInt(n[1],10));else t=ov(a,t)}return t}var iv=[],av=-1;function uv(e){return 1<<Math.min(e,31)}var sv,lv=[];function cv(e,t,n){var r=Yt();iv[++av]=e,oc(!0),r.firstCreatePass&&null===r.data[e+Tt]&&function o(e,t,n,r,i){var a=t.blueprint.length-Tt;sv=0;var u=Xt(),s=tn()?u:u&&u.parent,l=s&&s!==e[gt]?s.index-Tt:n,c=0;lv[c]=l;var f=[];n>0&&u!==s&&f.push(u.index<<3|0);for(var d=[],p=[],h=function y(e){return e.replace(Ov," ")}(function v(e,t){if("number"!=typeof t)return nv(e);var n=e.indexOf(":"+t+Lh)+2+t.toString().length,r=e.search(new RegExp(Lh+"\\/\\*\\d+:"+t+Lh));return nv(e.substring(n,r))}(r,i)).split(Qh),g=0;g<h.length;g++){var m=h[g];if(1&g)if("/"===m.charAt(0)){if("#"===m.charAt(1)){var _=parseInt(m.substr(2),10);l=lv[--c],f.push(_<<3|5)}}else _=parseInt(m.substr(1),10),f.push(_<<3|0,l<<17|1),"#"===m.charAt(0)&&(lv[++c]=l=_);else for(var w=ev(m),b=0;b<w.length;b++)if(1&b){var C=a+sv++;f.push(Ci,"",C,l<<17|1);var I=w[b],x=ov(I);xv(p,I,C,C);var E=p.length-1;d.push(uv(I.mainBinding),3,-1-I.mainBinding,C<<2|2,E,x,2,C<<2|3,E)}else if(""!==w[b]){var k=w[b],O=k.match(zh),P=a+sv++;f.push(O?"":k,P,l<<17|1),O&&Fe(rv(k,P),d)}}sv>0&&function N(e,t,n){if(n>0&&e.firstCreatePass){for(var r=0;r<n;r++)e.blueprint.push(null),e.data.push(null),t.push(null);e.expandoInstructions?e.expandoInstructions.push(n):e.expandoStartIndex+=n}}(t,e,sv),t.data[n+Tt]={vars:sv,create:f,update:d,icus:p.length?p:null}}(Jt(),r,e,t,n)}function fv(e,t,n,r,o){var i=t.next;r||(r=n),r===n&&t!==n.child?(t.next=n.child,n.child=t):r!==n&&t!==r.next?(t.next=r.next,r.next=t):t.next=null,n!==o[gt]&&(t.parent=n);for(var a=t.next;a;)a.next===t&&(a.next=i),a=a.next;if(1===t.type)return iu(e,o,t),t;eu(e,o,Vo(t,o),t);var u=o[t.index];return 0!==t.type&&Mt(u)&&eu(e,o,u[St],t),t}function dv(e,t){void 0===t&&(t={});var n=e;if(Wh.test(e)){var r={},o=[Zh];n=n.replace(Kh,(function(e,t,n){var i=t||n,a=r[i]||[];if(a.length||(i.split("|").forEach((function(e){var t=e.match(Xh),n=t?parseInt(t[1],10):Zh,r=$h.test(e);a.push([n,r,e])})),r[i]=a),!a.length)throw new Error("i18n postprocess: unmatched placeholder - "+i);for(var u=o[o.length-1],s=0,l=0;l<a.length;l++)if(a[l][0]===u){s=l;break}var f=c(a[s],3),d=f[0],p=f[2];return f[1]?o.pop():u!==d&&o.push(d),a.splice(s,1),p}))}return Object.keys(t).length?n=(n=(n=n.replace(Gh,(function(e,n,r,o,i,a){return t.hasOwnProperty(r)?""+n+t[r]+a:e}))).replace(Jh,(function(e,n){return t.hasOwnProperty(n)?t[n]:e}))).replace(Yh,(function(e,n){if(t.hasOwnProperty(n)){var r=t[n];if(!r.length)throw new Error("i18n postprocess: unmatched ICU - "+e+" with key: "+n);return r.shift()}return e})):n}function pv(){var e=Jt();!function t(e,n){for(var r=iv[av--],o=e.data[r+Tt],i=Xt(),a=vv(r,o.create,e,n),u=r+1;u<=i.index-Tt;){-1===a.indexOf(u)&&yv(e,n,u,!0);var s=Mo(e,u);!s||3!==s.type&&4!==s.type||null===s.localNames||(u+=s.localNames.length>>1),u++}}(Yt(),e),oc(!1)}function hv(e,t,n,r,o,i){var a=Xt();t[n+Tt]=o;var u=qi(e,t[gt],n,r,i,null);return a&&a.next===u&&(a.next=null),u}function vv(e,t,n,r){for(var o=r[Ct],i=null,a=null,u=[],s=0;s<t.length;s++){var l=t[s];if("string"==typeof l){var c=Ha(l,o),f=t[++s];a=i,i=hv(n,r,f,3,c,null),u.push(f),nn()}else if("number"==typeof l)switch(7&l){case 1:var d=l>>>17;a=fv(n,i,d===e?r[gt]:Mo(n,d),a,r);break;case 0:var p=l>>>3;u.push(p),a=i,(i=Mo(n,p))&&en(i,3===i.type);break;case 5:a=i=Mo(n,l>>>3),en(i,!1);break;case 4:ya(g=l>>>3,t[++s],t[++s],n,r);break;default:throw new Error('Unable to determine the type of mutate operation for "'+l+'"')}else switch(l){case Ci:var h=t[++s],v=t[++s],y=o.createComment(h);a=i,i=hv(n,r,v,5,y,null),u.push(v),Yo(y,r),i.activeCaseIndex=null,nn();break;case bi:var g,m=t[++s];a=i,i=hv(n,r,g=t[++s],3,o.createElement(m),m),u.push(g);break;default:throw new Error('Unable to determine the type of mutate operation for "'+l+'"')}}return nn(),u}function yv(e,t,n,r){var o=Mo(e,n),i=Ro(n,t);i&&nu(t[Ct],i);var a=Ho(t,n);Mt(a)&&0!==o.type&&nu(t[Ct],a[St]),r&&(o.flags|=64)}function gv(e,t,n){cv(e,t,n),pv()}function mv(e,t){!function n(e,t,r,o){for(var i=Xt().index-Tt,a=[],u=0;u<o.length;u+=2)for(var s=o[u],l=o[u+1].split(qh),c=0;c<l.length;c++){var f=l[c];if(1&c)throw new Error("ICU expressions are not yet supported in attributes");if(""!==f)if(f.match(zh))t.firstCreatePass&&null===t.data[r+Tt]&&Fe(rv(f,i,s),a);else{var d=Mo(t,i);3===d.type&&ya(i,s,f,t,e);var p=null!==d.inputs&&d.inputs[s];p&&Sa(t,e,p,s,f)}}t.firstCreatePass&&null===t.data[r+Tt]&&(t.data[r+Tt]=a)}(Jt(),Yt(),e,t)}var _v=0,wv=0;function bv(e){return nl(Jt(),ln(),e)&&(_v|=1<<wv),wv++,bv}function Cv(e){if(wv){var t=Yt(),n=t.data[e+Tt],r=void 0,o=null;Array.isArray(n)?r=n:(r=n.update,o=n.icus);var i=un()-wv-1,a=Jt();!function e(t,n,r,o,i,a,u){void 0===u&&(u=!1);for(var s=!1,l=0;l<t.length;l++){var c=t[l],f=t[++l];if(u||c&o)for(var d="",p=l+1;p<=l+f;p++){var h=t[p];if("string"==typeof h)d+=h;else if("number"==typeof h)if(h<0)d+=Yn(a[r-h]);else{var v=h>>>2,y=void 0,g=void 0;switch(3&h){case 1:ia(i,a,v,t[++p],d,t[++p]);break;case 0:Ra(a,v,d);break;case 2:if(y=n[t[++p]],null!==(g=Mo(i,v)).activeCaseIndex)for(var m=y.remove[g.activeCaseIndex],_=0;_<m.length;_++){var w=m[_];switch(7&w){case 3:yv(i,a,w>>>3,!1);break;case 6:var b=Mo(i,m[_+1]>>>3).activeCaseIndex;null!==b&&Fe(n[w>>>3].remove[b],m)}}var C=Iv(y,d);g.activeCaseIndex=-1!==C?C:null,C>-1&&(vv(-1,y.create[C],i,a),s=!0);break;case 3:y=n[t[++p]],null!==(g=Mo(i,v)).activeCaseIndex&&e(y.update[g.activeCaseIndex],n,r,o,i,a,s)}}}l+=f}}(r,o,i,_v,t,a),_v=0,wv=0}}function Iv(e,t){var n=e.cases.indexOf(t);if(-1===n)switch(e.type){case 1:var r=function i(e,t){switch(Fh(t)(e)){case 0:return"zero";case 1:return"one";case 2:return"two";case 3:return"few";case 4:return"many";default:return"other"}}(t,function o(){return Pv}
|
|
894
901
|
/**
|
|
895
902
|
* @license
|
|
896
903
|
* Copyright Google Inc. All Rights Reserved.
|
|
897
904
|
*
|
|
898
905
|
* Use of this source code is governed by an MIT-style license that can be
|
|
899
906
|
* found in the LICENSE file at https://angular.io/license
|
|
900
|
-
*/());-1===(n=e.cases.indexOf(r))&&"other"!==r&&(n=e.cases.indexOf("other"));break;case 0:n=e.cases.indexOf("other")}return n}function
|
|
907
|
+
*/());-1===(n=e.cases.indexOf(r))&&"other"!==r&&(n=e.cases.indexOf("other"));break;case 0:n=e.cases.indexOf("other")}return n}function xv(e,t,n,r){for(var o=[],i=[],a=[],u=[],s=[],l=0;l<t.values.length;l++){for(var c=t.values[l],d=[],p=0;p<c.length;p++){var h=c[p];if("string"!=typeof h){var v=d.push(h)-1;c[p]="\x3c!--�"+v+"�--\x3e"}}var y=Ev(c.join(""),n,d,e,r);o.push(y.create),i.push(y.remove),a.push(y.update),u.push(y.vars),s.push(y.childIcus)}e.push({type:t.type,vars:u,childIcus:s,cases:t.cases,create:o,remove:i,update:a}),sv+=Math.max.apply(Math,f(u))}function Ev(e,t,n,r,o){var i=new Qr(Hn()).getInertBodyElement(e);if(!i)throw new Error("Unable to generate inert body element");var a={vars:0,childIcus:[],create:[],remove:[],update:[]};return function e(t,n,r,o,i,a){if(t){for(var u=[];t;){var s=t.nextSibling,l=a+ ++n.vars;switch(t.nodeType){case Node.ELEMENT_NODE:var c=t,d=c.tagName.toLowerCase();if(oo.hasOwnProperty(d)){n.create.push(bi,d,l,r<<17|1);for(var p=c.attributes,h=0;h<p.length;h++){var v=p.item(h),y=v.name.toLowerCase();v.value.match(zh)?lo.hasOwnProperty(y)&&Fe(io[y]?rv(v.value,l,v.name,Zr):ao[y]?rv(v.value,l,v.name,Wr):rv(v.value,l,v.name),n.update):n.create.push(l<<3|4,v.name,v.value)}e(t.firstChild,n,l,o,i,a),n.remove.push(l<<3|3)}else n.vars--;break;case Node.TEXT_NODE:var g=t.textContent||"",m=g.match(zh);n.create.push(m?"":g,l,r<<17|1),n.remove.push(l<<3|3),m&&Fe(rv(g,l),n.update);break;case Node.COMMENT_NODE:var _=kv.exec(t.textContent||"");if(_){var w=parseInt(_[1],10);n.create.push(Ci,"",l,r<<17|1),u.push([b=o[w],l])}else n.vars--;break;default:n.vars--}t=s}for(h=0;h<u.length;h++){var b,C=u[h][1];xv(i,b=u[h][0],C,a+n.vars);var I=i.length-1;n.vars+=Math.max.apply(Math,f(i[I].vars)),n.childIcus.push(I);var x=ov(b);n.update.push(uv(b.mainBinding),3,-1-b.mainBinding,C<<2|2,I,x,2,C<<2|3,I),n.remove.push(I<<3|6,C<<3|3)}}}((go(i)||i).firstChild,a,t,n,r,o),a}var kv=/�(\d+)�/,Ov=/\uE500/g,Pv=Hh;function Nv(e){Ve(e,"Expected localeId to be defined"),"string"==typeof e&&(Pv=e.toLowerCase().replace(/_/g,"-"))}var Tv=new Map;function jv(e,t,n){if(t&&t!==n)throw new Error("Duplicate module registered for "+e+" - "+B(t)+" vs "+B(t.name))}function Dv(e){if(null!==e.ɵmod.id){var t=e.ɵmod.id;jv(t,Tv.get(t),e),Tv.set(t,e)}var n=e.ɵmod.imports;n instanceof Function&&(n=n()),n&&n.forEach((function(e){return Dv(e)}))}function Av(e){return Tv.get(e)||et[e]}
|
|
901
908
|
/**
|
|
902
909
|
* @license
|
|
903
910
|
* Copyright Google Inc. All Rights Reserved.
|
|
904
911
|
*
|
|
905
912
|
* Use of this source code is governed by an MIT-style license that can be
|
|
906
913
|
* found in the LICENSE file at https://angular.io/license
|
|
907
|
-
*/var
|
|
914
|
+
*/var Sv={provide:yd,useClass:kh,deps:[Se]},Rv=function(t){function n(e,n){var r=t.call(this)||this;r._parent=n,r._bootstrapComponents=[],r.injector=r,r.destroyCbs=[];var o=ct(e),i=function a(e){return e[ue]||null}(e);return i&&Nv(i),r._bootstrapComponents=rr(o.bootstrap),r._r3Injector=Ju(e,n,[{provide:Se,useValue:r},Sv],B(e)),r.instance=r.get(e),r}return o(n,t),n.prototype.get=function(t,n,r){return void 0===n&&(n=is.THROW_IF_NOT_FOUND),void 0===r&&(r=e.InjectFlags.Default),t===is||t===Se||t===fe?this:this._r3Injector.get(t,n,r)},Object.defineProperty(n.prototype,"componentFactoryResolver",{get:function(){return this.get(yd)},enumerable:!0,configurable:!0}),n.prototype.destroy=function(){var e=this._r3Injector;!e.destroyed&&e.destroy(),this.destroyCbs.forEach((function(e){return e()})),this.destroyCbs=null},n.prototype.onDestroy=function(e){this.destroyCbs.push(e)},n}(Se),Vv=function(e){function t(t){var n=e.call(this)||this;return n.moduleType=t,null!==ct(t)&&Dv(t),n}return o(t,e),t.prototype.create=function(e){return new Rv(this.moduleType,e)},t}(Re);
|
|
908
915
|
/**
|
|
909
916
|
* @license
|
|
910
917
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -912,42 +919,42 @@ return function r(e,t,n,o){var i=t.viewContainer._embeddedViews;null==n&&(n=i.le
|
|
|
912
919
|
* Use of this source code is governed by an MIT-style license that can be
|
|
913
920
|
* found in the LICENSE file at https://angular.io/license
|
|
914
921
|
*/
|
|
915
|
-
function
|
|
922
|
+
function Fv(e,t,n){var r=an()+e,o=Jt();return o[r]===vi?el(o,r,n?t.call(n):t()):tl(o,r)}function Mv(e,t,n,r){return Wv(Jt(),an(),e,t,n,r)}function Hv(e,t,n,r,o){return Kv(Jt(),an(),e,t,n,r,o)}function Lv(e,t,n,r,o,i){return Gv(Jt(),an(),e,t,n,r,o,i)}function Bv(e,t,n,r,o,i,a){return Jv(Jt(),an(),e,t,n,r,o,i,a)}function Uv(e,t,n,r,o,i,a,u){var s=an()+e,l=Jt(),c=il(l,s,n,r,o,i);return nl(l,s+4,a)||c?el(l,s+5,u?t.call(u,n,r,o,i,a):t(n,r,o,i,a)):tl(l,s+5)}function Qv(e,t,n,r,o,i,a,u,s){var l=an()+e,c=Jt(),f=il(c,l,n,r,o,i);return rl(c,l+4,a,u)||f?el(c,l+6,s?t.call(s,n,r,o,i,a,u):t(n,r,o,i,a,u)):tl(c,l+6)}function zv(e,t,n,r,o,i,a,u,s,l){var c=an()+e,f=Jt(),d=il(f,c,n,r,o,i);return ol(f,c+4,a,u,s)||d?el(f,c+7,l?t.call(l,n,r,o,i,a,u,s):t(n,r,o,i,a,u,s)):tl(f,c+7)}function qv(e,t,n,r,o,i,a,u,s,l,c){var f=an()+e,d=Jt(),p=il(d,f,n,r,o,i);return il(d,f+4,a,u,s,l)||p?el(d,f+8,c?t.call(c,n,r,o,i,a,u,s,l):t(n,r,o,i,a,u,s,l)):tl(d,f+8)}function Zv(e,t,n,r){return Yv(Jt(),an(),e,t,n,r)}function Wv(e,t,n,r,o,i){var a=t+n;return nl(e,a,o)?el(e,a+1,i?r.call(i,o):r(o)):tl(e,a+1)}function Kv(e,t,n,r,o,i,a){var u=t+n;return rl(e,u,o,i)?el(e,u+2,a?r.call(a,o,i):r(o,i)):tl(e,u+2)}function Gv(e,t,n,r,o,i,a,u){var s=t+n;return ol(e,s,o,i,a)?el(e,s+3,u?r.call(u,o,i,a):r(o,i,a)):tl(e,s+3)}function Jv(e,t,n,r,o,i,a,u,s){var l=t+n;return il(e,l,o,i,a,u)?el(e,l+4,s?r.call(s,o,i,a,u):r(o,i,a,u)):tl(e,l+4)}function Yv(e,t,n,r,o,i){for(var a=t+n,u=!1,s=0;s<o.length;s++)nl(e,a++,o[s])&&(u=!0);return u?el(e,a,r.apply(i,o)):tl(e,a)}
|
|
916
923
|
/**
|
|
917
924
|
* @license
|
|
918
925
|
* Copyright Google Inc. All Rights Reserved.
|
|
919
926
|
*
|
|
920
927
|
* Use of this source code is governed by an MIT-style license that can be
|
|
921
928
|
* found in the LICENSE file at https://angular.io/license
|
|
922
|
-
*/function
|
|
929
|
+
*/function $v(e,t){var n,r=Yt(),o=e+Tt;r.firstCreatePass?(n=function i(e,t){if(t)for(var n=t.length-1;n>=0;n--){var r=t[n];if(e===r.name)return r}throw new Error("The pipe '"+e+"' could not be found!")}(t,r.pipeRegistry),r.data[o]=n,n.onDestroy&&(r.destroyHooks||(r.destroyHooks=[])).push(o,n.onDestroy)):n=r.data[o];var a=(n.factory||(n.factory=lt(n.type)))();return jl(r,Jt(),e,a),a}function Xv(e,t,n){var r=Jt(),o=Ho(r,e);return iy(r,oy(r,e)?Wv(r,an(),t,o.transform,n,o):o.transform(n))}function ey(e,t,n,r){var o=Jt(),i=Ho(o,e);return iy(o,oy(o,e)?Kv(o,an(),t,i.transform,n,r,i):i.transform(n,r))}function ty(e,t,n,r,o){var i=Jt(),a=Ho(i,e);return iy(i,oy(i,e)?Gv(i,an(),t,a.transform,n,r,o,a):a.transform(n,r,o))}function ny(e,t,n,r,o,i){var a=Jt(),u=Ho(a,e);return iy(a,oy(a,e)?Jv(a,an(),t,u.transform,n,r,o,i,u):u.transform(n,r,o,i))}function ry(e,t,n){var r=Jt(),o=Ho(r,e);return iy(r,oy(r,e)?Yv(r,an(),t,o.transform,n,o):o.transform.apply(o,n))}function oy(e,t){return e[dt].data[t+Tt].pure}function iy(e,t){return Ys.isWrapped(t)&&(t=Ys.unwrap(t),e[un()]=vi),t}
|
|
923
930
|
/**
|
|
924
931
|
* @license
|
|
925
932
|
* Copyright Google Inc. All Rights Reserved.
|
|
926
933
|
*
|
|
927
934
|
* Use of this source code is governed by an MIT-style license that can be
|
|
928
935
|
* found in the LICENSE file at https://angular.io/license
|
|
929
|
-
*/var
|
|
936
|
+
*/var ay=function(e){function n(t){void 0===t&&(t=!1);var n=e.call(this)||this;return n.__isAsync=t,n}return o(n,e),n.prototype.emit=function(t){e.prototype.next.call(this,t)},n.prototype.subscribe=function(n,r,o){var i,a=function(e){return null},u=function(){return null};n&&"object"==typeof n?(i=this.__isAsync?function(e){setTimeout((function(){return n.next(e)}))}:function(e){n.next(e)},n.error&&(a=this.__isAsync?function(e){setTimeout((function(){return n.error(e)}))}:function(e){n.error(e)}),n.complete&&(u=this.__isAsync?function(){setTimeout((function(){return n.complete()}))}:function(){n.complete()})):(i=this.__isAsync?function(e){setTimeout((function(){return n(e)}))}:function(e){n(e)},r&&(a=this.__isAsync?function(e){setTimeout((function(){return r(e)}))}:function(e){r(e)}),o&&(u=this.__isAsync?function(){setTimeout((function(){return o()}))}:function(){o()}));var s=e.prototype.subscribe.call(this,i,a,u);return n instanceof t.Subscription&&n.add(s),s},n}(t.Subject);
|
|
930
937
|
/**
|
|
931
938
|
* @license
|
|
932
939
|
* Copyright Google Inc. All Rights Reserved.
|
|
933
940
|
*
|
|
934
941
|
* Use of this source code is governed by an MIT-style license that can be
|
|
935
942
|
* found in the LICENSE file at https://angular.io/license
|
|
936
|
-
*/function
|
|
943
|
+
*/function uy(){return this._results[Ks()]()}var sy=function(){function e(){this.dirty=!0,this._results=[],this.changes=new ay,this.length=0;var t=Ks(),n=e.prototype;n[t]||(n[t]=uy)}return e.prototype.map=function(e){return this._results.map(e)},e.prototype.filter=function(e){return this._results.filter(e)},e.prototype.find=function(e){return this._results.find(e)},e.prototype.reduce=function(e,t){return this._results.reduce(e,t)},e.prototype.forEach=function(e){this._results.forEach(e)},e.prototype.some=function(e){return this._results.some(e)},e.prototype.toArray=function(){return this._results.slice()},e.prototype.toString=function(){return this._results.toString()},e.prototype.reset=function(e){this._results=Me(e),this.dirty=!1,this.length=this._results.length,this.last=this._results[this.length-1],this.first=this._results[0]},e.prototype.notifyOnChanges=function(){this.changes.emit(this)},e.prototype.setDirty=function(){this.dirty=!0},e.prototype.destroy=function(){this.changes.complete(),this.changes.unsubscribe()},e}(),ly=function(){function e(e){this.queryList=e,this.matches=null}return e.prototype.clone=function(){return new e(this.queryList)},e.prototype.setDirty=function(){this.queryList.setDirty()},e}(),cy=function(){function e(e){void 0===e&&(e=[]),this.queries=e}return e.prototype.createEmbeddedView=function(t){var n=t.queries;if(null!==n){for(var r=null!==t.contentQueries?t.contentQueries[0]:n.length,o=[],i=0;i<r;i++){var a=n.getByIndex(i);o.push(this.queries[a.indexInDeclarationView].clone())}return new e(o)}return null},e.prototype.insertView=function(e){this.dirtyQueriesWithMatches(e)},e.prototype.detachView=function(e){this.dirtyQueriesWithMatches(e)},e.prototype.dirtyQueriesWithMatches=function(e){for(var t=0;t<this.queries.length;t++)null!==Oy(e,t).matches&&this.queries[t].setDirty()},e}(),fy=function fy(e,t,n,r){void 0===r&&(r=null),this.predicate=e,this.descendants=t,this.isStatic=n,this.read=r},dy=function(){function e(e){void 0===e&&(e=[]),this.queries=e}return e.prototype.elementStart=function(e,t){for(var n=0;n<this.queries.length;n++)this.queries[n].elementStart(e,t)},e.prototype.elementEnd=function(e){for(var t=0;t<this.queries.length;t++)this.queries[t].elementEnd(e)},e.prototype.embeddedTView=function(t){for(var n=null,r=0;r<this.length;r++){var o=null!==n?n.length:0,i=this.getByIndex(r).embeddedTView(t,o);i&&(i.indexInDeclarationView=r,null!==n?n.push(i):n=[i])}return null!==n?new e(n):null},e.prototype.template=function(e,t){for(var n=0;n<this.queries.length;n++)this.queries[n].template(e,t)},e.prototype.getByIndex=function(e){return this.queries[e]},Object.defineProperty(e.prototype,"length",{get:function(){return this.queries.length},enumerable:!0,configurable:!0}),e.prototype.track=function(e){this.queries.push(e)},e}(),py=function(){function e(e,t){void 0===t&&(t=-1),this.metadata=e,this.matches=null,this.indexInDeclarationView=-1,this.crossesNgTemplate=!1,this._appliesToNextNode=!0,this._declarationNodeIndex=t}return e.prototype.elementStart=function(e,t){this.isApplyingToNode(t)&&this.matchTNode(e,t)},e.prototype.elementEnd=function(e){this._declarationNodeIndex===e.index&&(this._appliesToNextNode=!1)},e.prototype.template=function(e,t){this.elementStart(e,t)},e.prototype.embeddedTView=function(t,n){return this.isApplyingToNode(t)?(this.crossesNgTemplate=!0,this.addMatch(-t.index,n),new e(this.metadata)):null},e.prototype.isApplyingToNode=function(e){return this._appliesToNextNode&&!1===this.metadata.descendants?this._declarationNodeIndex===(e.parent?e.parent.index:-1):this._appliesToNextNode},e.prototype.matchTNode=function(e,t){if(Array.isArray(this.metadata.predicate))for(var n=this.metadata.predicate,r=0;r<n.length;r++)this.matchTNodeWithReadOption(e,t,hy(t,n[r]));else{var o=this.metadata.predicate;o===zd?0===t.type&&this.matchTNodeWithReadOption(e,t,-1):this.matchTNodeWithReadOption(e,t,gr(t,e,o,!1,!1))}},e.prototype.matchTNodeWithReadOption=function(e,t,n){if(null!==n){var r=this.metadata.read;if(null!==r)if(r===bd||r===Zd||r===zd&&0===t.type)this.addMatch(t.index,-2);else{var o=gr(t,e,r,!1,!1);null!==o&&this.addMatch(t.index,o)}else this.addMatch(t.index,n)}},e.prototype.addMatch=function(e,t){null===this.matches?this.matches=[e,t]:this.matches.push(e,t)},e}();
|
|
937
944
|
/**
|
|
938
945
|
* @license
|
|
939
946
|
* Copyright Google Inc. All Rights Reserved.
|
|
940
947
|
*
|
|
941
948
|
* Use of this source code is governed by an MIT-style license that can be
|
|
942
949
|
* found in the LICENSE file at https://angular.io/license
|
|
943
|
-
*/function
|
|
950
|
+
*/function hy(e,t){var n=e.localNames;if(null!==n)for(var r=0;r<n.length;r+=2)if(n[r]===t)return n[r+1];return null}function vy(e,t,n,r){return-1===n?function o(e,t){return 3===e.type||4===e.type?hu(bd,e,t):0===e.type?vu(zd,bd,e,t):null}(t,e):-2===n?function i(e,t,n){return n===bd?hu(bd,t,e):n===zd?vu(zd,bd,t,e):n===Zd?yu(Zd,bd,t,e):void 0}(e,t,r):mr(e,e[dt],n,t)}function yy(e,t,n,r){var o=t[yt].queries[r];if(null===o.matches){for(var i=e.data,a=n.matches,u=[],s=0;s<a.length;s+=2){var l=a[s];u.push(l<0?null:vy(t,i[l],a[s+1],n.metadata.read))}o.matches=u}return o.matches}function gy(e){var t=Jt(),n=Yt(),r=dn();pn(r+1);var o=Oy(n,r);if(e.dirty&&Qo(t)===o.metadata.isStatic){if(null===o.matches)e.reset([]);else{var i=o.crossesNgTemplate?function e(t,n,r,o){var i=t.queries.getByIndex(r),a=i.matches;if(null!==a)for(var u=yy(t,n,i,r),s=0;s<a.length;s+=2){var l=a[s];if(l>0)o.push(u[s/2]);else{for(var c=a[s+1],f=n[-l],d=Vt;d<f.length;d++)(v=f[d])[Pt]===v[ht]&&e(v[dt],v,c,o);if(null!==f[At])for(var p=f[At],h=0;h<p.length;h++){var v;e((v=p[h])[dt],v,c,o)}}}return o}(n,t,r,[]):yy(n,t,o,r);e.reset(i),e.notifyOnChanges()}return!0}return!1}function my(e,t,n){wy(Yt(),Jt(),e,t,n,!0)}function _y(e,t,n){wy(Yt(),Jt(),e,t,n,!1)}function wy(e,t,n,r,o,i){e.firstCreatePass&&(ky(e,new fy(n,r,i,o),-1),i&&(e.staticViewQueries=!0)),Ey(e,t)}function by(e,t,n,r){Iy(Yt(),Jt(),t,n,r,!1,Xt(),e)}function Cy(e,t,n,r){Iy(Yt(),Jt(),t,n,r,!0,Xt(),e)}function Iy(e,t,n,r,o,i,a,u){e.firstCreatePass&&(ky(e,new fy(n,r,i,o),a.index),function s(e,t){var n=e.contentQueries||(e.contentQueries=[]);t!==(e.contentQueries.length?n[n.length-1]:-1)&&n.push(e.queries.length-1,t)}(e,u),i&&(e.staticContentQueries=!0)),Ey(e,t)}function xy(){return function e(t,n){return t[yt].queries[n].queryList}(Jt(),dn())}function Ey(e,t){var n=new sy;!function r(e,t,n,o){var i=Ta(t);i.push(n),e.firstCreatePass&&ja(e).push(o,i.length-1)}(e,t,n,n.destroy),null===t[yt]&&(t[yt]=new cy),t[yt].queries.push(new ly(n))}function ky(e,t,n){null===e.queries&&(e.queries=new dy),e.queries.track(new py(t,n))}function Oy(e,t){return e.queries.getByIndex(t)}
|
|
944
951
|
/**
|
|
945
952
|
* @license
|
|
946
953
|
* Copyright Google Inc. All Rights Reserved.
|
|
947
954
|
*
|
|
948
955
|
* Use of this source code is governed by an MIT-style license that can be
|
|
949
956
|
* found in the LICENSE file at https://angular.io/license
|
|
950
|
-
*/function
|
|
957
|
+
*/function Py(e,t){return vu(zd,bd,e,t)}function Ny(t){void 0===t&&(t=e.InjectFlags.Default);var n=gu(!0);if(null!=n||t&e.InjectFlags.Optional)return n;throw new Error("No provider for ChangeDetectorRef!")}
|
|
951
958
|
/**
|
|
952
959
|
* @license
|
|
953
960
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -961,28 +968,28 @@ function Ty(e,t,n){var r=an()+e,o=qt();return o[r]===hr?oc(o,r,n?t.call(n):t()):
|
|
|
961
968
|
*
|
|
962
969
|
* Use of this source code is governed by an MIT-style license that can be
|
|
963
970
|
* found in the LICENSE file at https://angular.io/license
|
|
964
|
-
*/var
|
|
971
|
+
*/var Ty={"ɵɵattribute":al,"ɵɵattributeInterpolate1":yl,"ɵɵattributeInterpolate2":gl,"ɵɵattributeInterpolate3":ml,"ɵɵattributeInterpolate4":_l,"ɵɵattributeInterpolate5":wl,"ɵɵattributeInterpolate6":bl,"ɵɵattributeInterpolate7":Cl,"ɵɵattributeInterpolate8":Il,"ɵɵattributeInterpolateV":xl,"ɵɵdefineComponent":Je,"ɵɵdefineDirective":ot,"ɵɵdefineInjectable":T,"ɵɵdefineInjector":D,"ɵɵdefineNgModule":tt,"ɵɵdefinePipe":it,"ɵɵdirectiveInject":Al,"ɵɵgetFactoryOf":Cr,"ɵɵgetInheritedFactory":Ir,"ɵɵinject":Ie,"ɵɵinjectAttribute":Sl,"ɵɵinvalidFactory":Rl,"ɵɵinvalidFactoryDep":xe,"ɵɵinjectPipeChangeDetectorRef":Ny,"ɵɵtemplateRefExtractor":Py,"ɵɵNgOnChangesFeature":Xf,"ɵɵProvidersFeature":cd,"ɵɵCopyDefinitionFeature":Yf,"ɵɵInheritDefinitionFeature":zf,"ɵɵcontainer":Ol,"ɵɵnextContext":ec,"ɵɵcontainerRefreshStart":Nl,"ɵɵcontainerRefreshEnd":Tl,"ɵɵnamespaceHTML":En,"ɵɵnamespaceMathML":xn,"ɵɵnamespaceSVG":In,"ɵɵenableBindings":Kt,"ɵɵdisableBindings":Gt,"ɵɵelementStart":Ml,"ɵɵelementEnd":Hl,"ɵɵelement":Ll,"ɵɵelementContainerStart":Bl,"ɵɵelementContainerEnd":Ul,"ɵɵelementContainer":Ql,"ɵɵpureFunction0":Fv,"ɵɵpureFunction1":Mv,"ɵɵpureFunction2":Hv,"ɵɵpureFunction3":Lv,"ɵɵpureFunction4":Bv,"ɵɵpureFunction5":Uv,"ɵɵpureFunction6":Qv,"ɵɵpureFunction7":zv,"ɵɵpureFunction8":qv,"ɵɵpureFunctionV":Zv,"ɵɵgetCurrentView":Zl,"ɵɵrestoreView":$t,"ɵɵlistener":Gl,"ɵɵprojection":ic,"ɵɵupdateSyntheticHostBinding":If,"ɵɵcomponentHostSyntheticListener":Jl,"ɵɵpipeBind1":Xv,"ɵɵpipeBind2":ey,"ɵɵpipeBind3":ty,"ɵɵpipeBind4":ny,"ɵɵpipeBindV":ry,"ɵɵprojectionDef":nc,"ɵɵhostProperty":Cf,"ɵɵproperty":Vl,"ɵɵpropertyInterpolate":ac,"ɵɵpropertyInterpolate1":uc,"ɵɵpropertyInterpolate2":sc,"ɵɵpropertyInterpolate3":lc,"ɵɵpropertyInterpolate4":cc,"ɵɵpropertyInterpolate5":fc,"ɵɵpropertyInterpolate6":dc,"ɵɵpropertyInterpolate7":pc,"ɵɵpropertyInterpolate8":hc,"ɵɵpropertyInterpolateV":vc,"ɵɵpipe":$v,"ɵɵqueryRefresh":gy,"ɵɵviewQuery":_y,"ɵɵstaticViewQuery":my,"ɵɵstaticContentQuery":Cy,"ɵɵloadQuery":xy,"ɵɵcontentQuery":by,"ɵɵreference":Dl,"ɵɵclassMap":Ac,"ɵɵclassMapInterpolate1":rf,"ɵɵclassMapInterpolate2":of,"ɵɵclassMapInterpolate3":af,"ɵɵclassMapInterpolate4":uf,"ɵɵclassMapInterpolate5":sf,"ɵɵclassMapInterpolate6":lf,"ɵɵclassMapInterpolate7":cf,"ɵɵclassMapInterpolate8":ff,"ɵɵclassMapInterpolateV":df,"ɵɵstyleMap":jc,"ɵɵstyleProp":Nc,"ɵɵstylePropInterpolate1":pf,"ɵɵstylePropInterpolate2":hf,"ɵɵstylePropInterpolate3":vf,"ɵɵstylePropInterpolate4":yf,"ɵɵstylePropInterpolate5":gf,"ɵɵstylePropInterpolate6":mf,"ɵɵstylePropInterpolate7":_f,"ɵɵstylePropInterpolate8":wf,"ɵɵstylePropInterpolateV":bf,"ɵɵstyleSanitizer":Pc,"ɵɵclassProp":Tc,"ɵɵselect":_i,"ɵɵadvance":mi,"ɵɵtemplate":Pl,"ɵɵtext":Zc,"ɵɵtextInterpolate":Wc,"ɵɵtextInterpolate1":Kc,"ɵɵtextInterpolate2":Gc,"ɵɵtextInterpolate3":Jc,"ɵɵtextInterpolate4":Yc,"ɵɵtextInterpolate5":$c,"ɵɵtextInterpolate6":Xc,"ɵɵtextInterpolate7":ef,"ɵɵtextInterpolate8":tf,"ɵɵtextInterpolateV":nf,"ɵɵembeddedViewStart":zl,"ɵɵembeddedViewEnd":ql,"ɵɵi18n":gv,"ɵɵi18nAttributes":mv,"ɵɵi18nExp":bv,"ɵɵi18nStart":cv,"ɵɵi18nEnd":pv,"ɵɵi18nApply":Cv,"ɵɵi18nPostprocess":dv,"ɵɵresolveWindow":er,"ɵɵresolveDocument":tr,"ɵɵresolveBody":nr,"ɵɵsetComponentScope":Ye,"ɵɵsetNgModuleScope":nt,"ɵɵsanitizeHtml":bo,"ɵɵsanitizeStyle":Co,"ɵɵdefaultStyleSanitizer":Po,"ɵɵsanitizeResourceUrl":xo,"ɵɵsanitizeScript":Eo,"ɵɵsanitizeUrl":Io,"ɵɵsanitizeUrlOrResourceUrl":Oo},jy=[],Dy=[],Ay=!1;function Sy(){if(!Ay){Ay=!0;try{for(var e=Dy.length-1;e>=0;e--){var t=Dy[e],n=t.moduleType,r=t.ngModule;r.declarations&&r.declarations.every(Ry)&&(Dy.splice(e,1),My(n,r))}}finally{Ay=!1}}}function Ry(e){return Array.isArray(e)?e.every(Ry):!!q(e)}function Vy(e,t){void 0===t&&(t={}),Fy(e,t),function n(e,t){Dy.push({moduleType:e,ngModule:t})}(e,t)}function Fy(e,t,n){void 0===n&&(n=!1);var r=Me(t.declarations||jy),o=null;Object.defineProperty(e,ae,{configurable:!0,get:function(){return null===o&&((o=te().compileNgModule(Ty,"ng:///"+e.name+"/ɵmod.js",{type:e,bootstrap:Me(t.bootstrap||jy).map(q),declarations:r.map(q),imports:Me(t.imports||jy).map(q).map(By),exports:Me(t.exports||jy).map(q).map(By),schemas:t.schemas?Me(t.schemas):null,id:t.id||null})).schemas||(o.schemas=[])),o}});var i=null;Object.defineProperty(e,F,{get:function(){if(null===i){var n={name:e.name,type:e,deps:Du(e),providers:t.providers||jy,imports:[(t.imports||jy).map(q),(t.exports||jy).map(q)]};i=te().compileInjector(Ty,"ng:///"+e.name+"/ɵinj.js",n)}return i},configurable:!1})}function My(e,t){var n=Me(t.declarations||jy),r=Ly(e);n.forEach((function(t){t.hasOwnProperty(re)?Hy(at(t),r):t.hasOwnProperty(oe)||t.hasOwnProperty(ie)||(t.ngSelectorScope=e)}))}function Hy(e,t){e.directiveDefs=function(){return Array.from(t.compilation.directives).map((function(e){return e.hasOwnProperty(re)?at(e):ut(e)})).filter((function(e){return!!e}))},e.pipeDefs=function(){return Array.from(t.compilation.pipes).map((function(e){return st(e)}))},e.schemas=t.schemas,e.tView=null}function Ly(e,t){if(void 0===t&&(t=!1),!Uy(e))throw new Error(e.name+" does not have a module def (ɵmod property)");var n=ct(e);if(!t&&null!==n.transitiveCompileScopes)return n.transitiveCompileScopes;var r={schemas:n.schemas||null,compilation:{directives:new Set,pipes:new Set},exported:{directives:new Set,pipes:new Set}};return rr(n.declarations).forEach((function(e){st(e)?r.compilation.pipes.add(e):r.compilation.directives.add(e)})),rr(n.imports).forEach((function(e){var n=e;if(!Uy(n))throw new Error("Importing "+n.name+" which does not have a ɵmod property");var o=Ly(n,t);o.exported.directives.forEach((function(e){return r.compilation.directives.add(e)})),o.exported.pipes.forEach((function(e){return r.compilation.pipes.add(e)}))})),rr(n.exports).forEach((function(e){var n=e;if(Uy(n)){var o=Ly(n,t);o.exported.directives.forEach((function(e){r.compilation.directives.add(e),r.exported.directives.add(e)})),o.exported.pipes.forEach((function(e){r.compilation.pipes.add(e),r.exported.pipes.add(e)}))}else st(n)?r.exported.pipes.add(n):r.exported.directives.add(n)})),t||(n.transitiveCompileScopes=r),r}function By(e){return function t(e){return void 0!==e.ngModule}(e)?e.ngModule:e}function Uy(e){return!!ct(e)}
|
|
965
972
|
/**
|
|
966
973
|
* @license
|
|
967
974
|
* Copyright Google Inc. All Rights Reserved.
|
|
968
975
|
*
|
|
969
976
|
* Use of this source code is governed by an MIT-style license that can be
|
|
970
977
|
* found in the LICENSE file at https://angular.io/license
|
|
971
|
-
*/function
|
|
978
|
+
*/function Qy(t,n){var r=null;!function o(e,t){Qs(t)&&(Bs.set(e,t),Us.add(e))}(t,n),Zy(t,n),Object.defineProperty(t,re,{get:function(){if(null===r){var o=te();if(Qs(n)){var a=["Component '"+t.name+"' is not resolved:"];throw n.templateUrl&&a.push(" - templateUrl: "+n.templateUrl),n.styleUrls&&n.styleUrls.length&&a.push(" - styleUrls: "+JSON.stringify(n.styleUrls)),a.push("Did you run and wait for 'resolveComponentResources()'?"),new Error(a.join("\n"))}var u=n.templateUrl||"ng:///"+t.name+"/template.html",s=i(i({},Ky(t,n)),{typeSourceSpan:o.createParseSourceSpan("Component",t.name,u),template:n.template||"",preserveWhitespaces:n.preserveWhitespaces||!1,styles:n.styles||Ke,animations:n.animations,directives:[],changeDetection:n.changeDetection,pipes:new Map,encapsulation:n.encapsulation||e.ViewEncapsulation.Emulated,interpolation:n.interpolation,viewProviders:n.viewProviders||null});if(s.usesInheritance&&Gy(t),r=o.compileComponent(Ty,u,s),Sy(),function l(e){return void 0!==e.ngSelectorScope}(t)){var c=Ly(t.ngSelectorScope);Hy(r,c)}}return r},configurable:!1})}function zy(e,t){var n=null;Zy(e,t||{}),Object.defineProperty(e,oe,{get:function(){if(null===n){var r=qy(e,t||{});n=te().compileDirective(Ty,r.sourceMapUrl,r.metadata)}return n},configurable:!1})}function qy(e,t){var n=e&&e.name,r="ng:///"+n+"/ɵdir.js",o=te(),i=Ky(e,t);return i.typeSourceSpan=o.createParseSourceSpan("Directive",n,r),i.usesInheritance&&Gy(e),{metadata:i,sourceMapUrl:r}}function Zy(e,t){var n=null;Object.defineProperty(e,se,{get:function(){if(null===n){var r=qy(e,t),o=te();n=o.compileFactory(Ty,"ng:///"+e.name+"/ɵfac.js",i(i({},r.metadata),{injectFn:"directiveInject",target:o.R3FactoryTarget.Directive}))}return n},configurable:!1})}function Wy(e){return Object.getPrototypeOf(e.prototype)===Object.prototype}function Ky(e,t){var n,r=ju(),o=r.ownPropMetadata(e);return{name:e.name,type:e,typeArgumentCount:0,selector:void 0!==t.selector?t.selector:null,deps:Du(e),host:t.host||We,propMetadata:o,inputs:t.inputs||Ke,outputs:t.outputs||Ke,queries:Jy(e,o,Yy),lifecycle:{usesOnChanges:r.hasLifecycleHook(e,"ngOnChanges")},typeSourceSpan:null,usesInheritance:!Wy(e),exportAs:(n=t.exportAs,void 0===n?null:eg(n)),providers:t.providers||null,viewQueries:Jy(e,o,$y)}}function Gy(e){for(var t=Object.prototype,n=Object.getPrototypeOf(e.prototype).constructor;n&&n!==t;)ut(n)||at(n)||!ng(n)||zy(n,null),n=Object.getPrototypeOf(n)}function Jy(e,t,n){var r=[],o=function(o){if(t.hasOwnProperty(o)){var i=t[o];i.forEach((function(t){if(n(t)){if(!t.selector)throw new Error("Can't construct a query for the property \""+o+'" of "'+$n(e)+"\" since the query selector wasn't defined.");if(i.some(Xy))throw new Error("Cannot combine @Input decorators with query decorators");r.push(function a(e,t){return{propertyName:e,predicate:(n=t.selector,"string"==typeof n?eg(n):q(n)),descendants:t.descendants,first:t.first,read:t.read?t.read:null,static:!!t.static};var n}(o,t))}}))}};for(var i in t)o(i);return r}function Yy(e){var t=e.ngMetadataName;return"ContentChild"===t||"ContentChildren"===t}function $y(e){var t=e.ngMetadataName;return"ViewChild"===t||"ViewChildren"===t}function Xy(e){return"Input"===e.ngMetadataName}function eg(e){return e.split(",").map((function(e){return e.trim()}))}new Map,new Map;var tg=["ngOnChanges","ngOnInit","ngOnDestroy","ngDoCheck","ngAfterViewInit","ngAfterViewChecked","ngAfterContentInit","ngAfterContentChecked"];function ng(e){var t=ju();if(tg.some((function(n){return t.hasLifecycleHook(e,n)})))return!0;var n=t.propMetadata(e);for(var r in n)for(var o=n[r],i=0;i<o.length;i++){var a=o[i],u=a.ngMetadataName;if(Xy(a)||Yy(a)||$y(a)||"Output"===u||"HostBinding"===u||"HostListener"===u)return!0}return!1}
|
|
972
979
|
/**
|
|
973
980
|
* @license
|
|
974
981
|
* Copyright Google Inc. All Rights Reserved.
|
|
975
982
|
*
|
|
976
983
|
* Use of this source code is governed by an MIT-style license that can be
|
|
977
984
|
* found in the LICENSE file at https://angular.io/license
|
|
978
|
-
*/function
|
|
985
|
+
*/function rg(e,t){var n=null,r=null;Object.defineProperty(e,se,{get:function(){if(null===r){var n=og(e,t),o=te();r=o.compileFactory(Ty,"ng:///"+n.name+"/ɵfac.js",i(i({},n),{injectFn:"directiveInject",target:o.R3FactoryTarget.Pipe}))}return r},configurable:!1}),Object.defineProperty(e,ie,{get:function(){if(null===n){var r=og(e,t);n=te().compilePipe(Ty,"ng:///"+r.name+"/ɵpipe.js",r)}return n},configurable:!1})}function og(e,t){return{type:e,typeArgumentCount:0,name:e.name,deps:Du(e),pipeName:t.name,pure:void 0===t.pure||t.pure}}
|
|
979
986
|
/**
|
|
980
987
|
* @license
|
|
981
988
|
* Copyright Google Inc. All Rights Reserved.
|
|
982
989
|
*
|
|
983
990
|
* Use of this source code is governed by an MIT-style license that can be
|
|
984
991
|
* found in the LICENSE file at https://angular.io/license
|
|
985
|
-
*/var
|
|
992
|
+
*/var ig=v("Directive",(function(e){return void 0===e&&(e={}),e}),void 0,void 0,(function(e,t){return yg(e,t)})),ag=v("Component",(function(t){return void 0===t&&(t={}),i({changeDetection:e.ChangeDetectionStrategy.Default},t)}),ig,void 0,(function(e,t){return vg(e,t)})),ug=v("Pipe",(function(e){return i({pure:!0},e)}),void 0,void 0,(function(e,t){return gg(e,t)})),sg=m("Input",(function(e){return{bindingPropertyName:e}})),lg=m("Output",(function(e){return{bindingPropertyName:e}})),cg=m("HostBinding",(function(e){return{hostPropertyName:e}})),fg=m("HostListener",(function(e,t){return{eventName:e,args:t}})),dg=Qy,pg=zy,hg=rg,vg=_d,yg=_d,gg=_d,mg=v("NgModule",(function(e){return e}),void 0,void 0,(function(e,t){return wg(e,t)})),_g=Vy,wg=function bg(e,t){var n=t&&t.imports||[];t&&t.exports&&(n=f(n,[t.exports])),e.ɵinj=D({factory:Lu(e,{useClass:e}),providers:t&&t.providers,imports:n})},Cg=new ce("Application Initializer"),Ig=function(){function e(e){var t=this;this.appInits=e,this.initialized=!1,this.done=!1,this.donePromise=new Promise((function(e,n){t.resolve=e,t.reject=n}))}return e.prototype.runInitializers=function(){var e=this;if(!this.initialized){var t=[],n=function(){e.done=!0,e.resolve()};if(this.appInits)for(var r=0;r<this.appInits.length;r++){var o=this.appInits[r]();Wl(o)&&t.push(o)}Promise.all(t).then((function(){n()})).catch((function(t){e.reject(t)})),0===t.length&&n(),this.initialized=!0}},a([Bu(),u(0,b(Cg)),u(0,C()),s("design:paramtypes",[Array])],e)}(),xg=new ce("AppId");function Eg(){return""+Og()+Og()+Og()}var kg={provide:xg,useFactory:Eg,deps:[]};function Og(){return String.fromCharCode(97+Math.floor(25*Math.random()))}var Pg,Ng=new ce("Platform Initializer"),Tg=new ce("Platform ID"),jg=new ce("appBootstrapListener"),Dg=new ce("Application Packages Root URL"),Ag=function(){function e(){}return e.prototype.log=function(e){console.log(e)},e.prototype.warn=function(e){console.warn(e)},a([Bu()],e)}(),Sg=new ce("LocaleId"),Rg=new ce("DefaultCurrencyCode"),Vg=new ce("Translations"),Fg=new ce("TranslationsFormat");(Pg=e.MissingTranslationStrategy||(e.MissingTranslationStrategy={}))[Pg.Error=0]="Error",Pg[Pg.Warning=1]="Warning",Pg[Pg.Ignore=2]="Ignore";
|
|
986
993
|
/**
|
|
987
994
|
* @license
|
|
988
995
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -990,7 +997,7 @@ function Ty(e,t,n){var r=an()+e,o=qt();return o[r]===hr?oc(o,r,n?t.call(n):t()):
|
|
|
990
997
|
* Use of this source code is governed by an MIT-style license that can be
|
|
991
998
|
* found in the LICENSE file at https://angular.io/license
|
|
992
999
|
*/
|
|
993
|
-
var
|
|
1000
|
+
var Mg=!1,Hg=function Hg(e,t){this.ngModuleFactory=e,this.componentFactories=t};function Lg(){throw new Error("Runtime compiler is not loaded")}var Bg=function(e){return new Vv(e)},Ug=Lg,Qg=Lg,zg=function(e){var t=Bg(e),n=rr(ct(e).declarations).reduce((function(e,t){var n=at(t);return n&&e.push(new Nh(n)),e}),[]);return new Hg(t,n)},qg=Lg,Zg=Lg,Wg=function(){function e(){this.compileModuleSync=Ug,this.compileModuleAsync=Qg,this.compileModuleAndAllComponentsSync=qg,this.compileModuleAndAllComponentsAsync=Zg}return e.prototype.clearCache=function(){},e.prototype.clearCacheFor=function(e){},e.prototype.getModuleId=function(e){},a([Bu()],e)}(),Kg=new ce("compilerOptions"),Gg=function Gg(){},Jg=Promise.resolve(0);function Yg(e){"undefined"==typeof Zone?Jg.then((function(){e&&e.apply(null,null)})):Zone.current.scheduleMicroTask("scheduleMicrotask",e)}
|
|
994
1001
|
/**
|
|
995
1002
|
* @license
|
|
996
1003
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -1005,14 +1012,14 @@ var Em=!1,km=function km(e,t){this.ngModuleFactory=e,this.componentFactories=t};
|
|
|
1005
1012
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1006
1013
|
* found in the LICENSE file at https://angular.io/license
|
|
1007
1014
|
*/
|
|
1008
|
-
var
|
|
1015
|
+
var $g=function(){function e(e){var t=e.enableLongStackTrace,n=void 0!==t&&t,r=e.shouldCoalesceEventChangeDetection,o=void 0!==r&&r;if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new ay(!1),this.onMicrotaskEmpty=new ay(!1),this.onStable=new ay(!1),this.onError=new ay(!1),"undefined"==typeof Zone)throw new Error("In this configuration Angular requires Zone.js");Zone.assertZonePatched(),this._nesting=0,this._outer=this._inner=Zone.current,Zone.wtfZoneSpec&&(this._inner=this._inner.fork(Zone.wtfZoneSpec)),Zone.TaskTrackingZoneSpec&&(this._inner=this._inner.fork(new Zone.TaskTrackingZoneSpec)),n&&Zone.longStackTraceZoneSpec&&(this._inner=this._inner.fork(Zone.longStackTraceZoneSpec)),this.shouldCoalesceEventChangeDetection=o,this.lastRequestAnimationFrameId=-1,this.nativeRequestAnimationFrame=function i(){var e=ee.requestAnimationFrame,t=ee.cancelAnimationFrame;if("undefined"!=typeof Zone&&e&&t){var n=e[Zone.__symbol__("OriginalDelegate")];n&&(e=n);var r=t[Zone.__symbol__("OriginalDelegate")];r&&(t=r)}return{nativeRequestAnimationFrame:e,nativeCancelAnimationFrame:t}}().nativeRequestAnimationFrame,function a(e){var t=!!e.shouldCoalesceEventChangeDetection&&e.nativeRequestAnimationFrame&&function(){!function t(e){-1===e.lastRequestAnimationFrameId&&(e.lastRequestAnimationFrameId=e.nativeRequestAnimationFrame.call(ee,(function(){e.lastRequestAnimationFrameId=-1,nm(e),tm(e)})),nm(e))}(e)};e._inner=e._inner.fork({name:"angular",properties:{isAngularZone:!0,maybeDelayChangeDetection:t},onInvokeTask:function(n,r,o,i,a,u){try{return rm(e),n.invokeTask(o,i,a,u)}finally{t&&"eventTask"===i.type&&t(),om(e)}},onInvoke:function(t,n,r,o,i,a,u){try{return rm(e),t.invoke(r,o,i,a,u)}finally{om(e)}},onHasTask:function(t,n,r,o){t.hasTask(r,o),n===r&&("microTask"==o.change?(e._hasPendingMicrotasks=o.microTask,nm(e),tm(e)):"macroTask"==o.change&&(e.hasPendingMacrotasks=o.macroTask))},onHandleError:function(t,n,r,o){return t.handleError(r,o),e.runOutsideAngular((function(){return e.onError.emit(o)})),!1}})}(this)}return e.isInAngularZone=function(){return!0===Zone.current.get("isAngularZone")},e.assertInAngularZone=function(){if(!e.isInAngularZone())throw new Error("Expected to be in Angular Zone, but it is not!")},e.assertNotInAngularZone=function(){if(e.isInAngularZone())throw new Error("Expected to not be in Angular Zone, but it is!")},e.prototype.run=function(e,t,n){return this._inner.run(e,t,n)},e.prototype.runTask=function(e,t,n,r){var o=this._inner,i=o.scheduleEventTask("NgZoneEvent: "+r,e,em,Xg,Xg);try{return o.runTask(i,t,n)}finally{o.cancelTask(i)}},e.prototype.runGuarded=function(e,t,n){return this._inner.runGuarded(e,t,n)},e.prototype.runOutsideAngular=function(e){return this._outer.run(e)},e}();function Xg(){}var em={};function tm(e){if(0==e._nesting&&!e.hasPendingMicrotasks&&!e.isStable)try{e._nesting++,e.onMicrotaskEmpty.emit(null)}finally{if(e._nesting--,!e.hasPendingMicrotasks)try{e.runOutsideAngular((function(){return e.onStable.emit(null)}))}finally{e.isStable=!0}}}function nm(e){e.hasPendingMicrotasks=!!(e._hasPendingMicrotasks||e.shouldCoalesceEventChangeDetection&&-1!==e.lastRequestAnimationFrameId)}function rm(e){e._nesting++,e.isStable&&(e.isStable=!1,e.onUnstable.emit(null))}function om(e){e._nesting--,tm(e)}var im,am=function(){function e(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new ay,this.onMicrotaskEmpty=new ay,this.onStable=new ay,this.onError=new ay}return e.prototype.run=function(e,t,n){return e.apply(t,n)},e.prototype.runGuarded=function(e,t,n){return e.apply(t,n)},e.prototype.runOutsideAngular=function(e){return e()},e.prototype.runTask=function(e,t,n,r){return e.apply(t,n)},e}(),um=function(){function e(e){var t=this;this._ngZone=e,this._pendingCount=0,this._isZoneStable=!0,this._didWork=!1,this._callbacks=[],this.taskTrackingZone=null,this._watchAngularEvents(),e.run((function(){t.taskTrackingZone="undefined"==typeof Zone?null:Zone.current.get("TaskTrackingZone")}))}return e.prototype._watchAngularEvents=function(){var e=this;this._ngZone.onUnstable.subscribe({next:function(){e._didWork=!0,e._isZoneStable=!1}}),this._ngZone.runOutsideAngular((function(){e._ngZone.onStable.subscribe({next:function(){$g.assertNotInAngularZone(),Yg((function(){e._isZoneStable=!0,e._runCallbacksIfReady()}))}})}))},e.prototype.increasePendingRequestCount=function(){return this._pendingCount+=1,this._didWork=!0,this._pendingCount},e.prototype.decreasePendingRequestCount=function(){if(this._pendingCount-=1,this._pendingCount<0)throw new Error("pending async requests below zero");return this._runCallbacksIfReady(),this._pendingCount},e.prototype.isStable=function(){return this._isZoneStable&&0===this._pendingCount&&!this._ngZone.hasPendingMacrotasks},e.prototype._runCallbacksIfReady=function(){var e=this;if(this.isStable())Yg((function(){for(;0!==e._callbacks.length;){var t=e._callbacks.pop();clearTimeout(t.timeoutId),t.doneCb(e._didWork)}e._didWork=!1}));else{var t=this.getPendingTasks();this._callbacks=this._callbacks.filter((function(e){return!e.updateCb||!e.updateCb(t)||(clearTimeout(e.timeoutId),!1)})),this._didWork=!0}},e.prototype.getPendingTasks=function(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map((function(e){return{source:e.source,creationLocation:e.creationLocation,data:e.data}})):[]},e.prototype.addCallback=function(e,t,n){var r=this,o=-1;t&&t>0&&(o=setTimeout((function(){r._callbacks=r._callbacks.filter((function(e){return e.timeoutId!==o})),e(r._didWork,r.getPendingTasks())}),t)),this._callbacks.push({doneCb:e,timeoutId:o,updateCb:n})},e.prototype.whenStable=function(e,t,n){if(n&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/dist/task-tracking.js" loaded?');this.addCallback(e,t,n),this._runCallbacksIfReady()},e.prototype.getPendingRequestCount=function(){return this._pendingCount},e.prototype.findProviders=function(e,t,n){return[]},a([Bu(),s("design:paramtypes",[$g])],e)}(),sm=function(){function e(){this._applications=new Map,lm.addToWindow(this)}return e.prototype.registerApplication=function(e,t){this._applications.set(e,t)},e.prototype.unregisterApplication=function(e){this._applications.delete(e)},e.prototype.unregisterAllApplications=function(){this._applications.clear()},e.prototype.getTestability=function(e){return this._applications.get(e)||null},e.prototype.getAllTestabilities=function(){return Array.from(this._applications.values())},e.prototype.getAllRootElements=function(){return Array.from(this._applications.keys())},e.prototype.findTestabilityInTree=function(e,t){return void 0===t&&(t=!0),lm.findTestabilityInTree(this,e,t)},a([Bu(),s("design:paramtypes",[])],e)}(),lm=new(function(){function e(){}return e.prototype.addToWindow=function(e){},e.prototype.findTestabilityInTree=function(e,t,n){return null},e}()),cm=function fm(){},dm=new ce("AllowMultipleToken"),pm=function pm(e,t){this.name=e,this.token=t};
|
|
1009
1016
|
/**
|
|
1010
1017
|
* @license
|
|
1011
1018
|
* Copyright Google Inc. All Rights Reserved.
|
|
1012
1019
|
*
|
|
1013
1020
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1014
1021
|
* found in the LICENSE file at https://angular.io/license
|
|
1015
|
-
*/function
|
|
1022
|
+
*/function hm(e){if(im&&!im.destroyed&&!im.injector.get(dm,!1))throw new Error("There can be only one platform. Destroy the previous one to create a new one.");cm(),im=e.get(mm);var t=e.get(Ng,null);return t&&t.forEach((function(e){return e()})),im}function vm(e,t,n){void 0===n&&(n=[]);var r="Platform: "+t,o=new ce(r);return function(t){void 0===t&&(t=[]);var i=gm();if(!i||i.injector.get(dm,!1))if(e)e(n.concat(t).concat({provide:o,useValue:!0}));else{var a=n.concat(t).concat({provide:o,useValue:!0},{provide:zu,useValue:"platform"});hm(is.create({providers:a,name:r}))}return ym(o)}}function ym(e){var t=gm();if(!t)throw new Error("No platform exists!");if(!t.injector.get(e,null))throw new Error("A platform with a different configuration has been created. Please destroy it first.");return t}function gm(){return im&&!im.destroyed?im:null}var mm=function(){function e(e){this._injector=e,this._modules=[],this._destroyListeners=[],this._destroyed=!1}return e.prototype.bootstrapModuleFactory=function(e,t){var n=this,r=function o(e,t){return"noop"===e?new am:("zone.js"===e?void 0:e)||new $g({enableLongStackTrace:Ur(),shouldCoalesceEventChangeDetection:t})}(t?t.ngZone:void 0,t&&t.ngZoneEventCoalescing||!1),i=[{provide:$g,useValue:r}];return r.run((function(){var t=is.create({providers:i,parent:n.injector,name:e.moduleType.name}),o=e.create(t),a=o.injector.get(Tr,null);if(!a)throw new Error("No ErrorHandler. Is platform module (BrowserModule) included?");return o.onDestroy((function(){return bm(n._modules,o)})),r.runOutsideAngular((function(){return r.onError.subscribe({next:function(e){a.handleError(e)}})})),function u(e,t,n){try{var r=n();return Wl(r)?r.catch((function(n){throw t.runOutsideAngular((function(){return e.handleError(n)})),n})):r}catch(n){throw t.runOutsideAngular((function(){return e.handleError(n)})),n}}(a,r,(function(){var e=o.injector.get(Ig);return e.runInitializers(),e.donePromise.then((function(){return Mg&&Nv(o.injector.get(Sg,Hh)||Hh),n._moduleDoBootstrap(o),o}))}))}))},e.prototype.bootstrapModule=function(e,t){var n=this;void 0===t&&(t=[]);var r=_m({},t);return function o(e,t,n){return e.get(Gg).createCompiler([t]).compileModuleAsync(n)}(this.injector,r,e).then((function(e){return n.bootstrapModuleFactory(e,r)}))},e.prototype._moduleDoBootstrap=function(e){var t=e.injector.get(wm);if(e._bootstrapComponents.length>0)e._bootstrapComponents.forEach((function(e){return t.bootstrap(e)}));else{if(!e.instance.ngDoBootstrap)throw new Error("The module "+B(e.instance.constructor)+' was bootstrapped, but it does not declare "@NgModule.bootstrap" components nor a "ngDoBootstrap" method. Please define one of these.');e.instance.ngDoBootstrap(t)}this._modules.push(e)},e.prototype.onDestroy=function(e){this._destroyListeners.push(e)},Object.defineProperty(e.prototype,"injector",{get:function(){return this._injector},enumerable:!0,configurable:!0}),e.prototype.destroy=function(){if(this._destroyed)throw new Error("The platform has already been destroyed!");this._modules.slice().forEach((function(e){return e.destroy()})),this._destroyListeners.forEach((function(e){return e()})),this._destroyed=!0},Object.defineProperty(e.prototype,"destroyed",{get:function(){return this._destroyed},enumerable:!0,configurable:!0}),a([Bu(),s("design:paramtypes",[is])],e)}();function _m(e,t){return Array.isArray(t)?t.reduce(_m,e):i(i({},e),t)}var wm=function(){function e(e,r,o,i,a,u){var s=this;this._zone=e,this._console=r,this._injector=o,this._exceptionHandler=i,this._componentFactoryResolver=a,this._initStatus=u,this._bootstrapListeners=[],this._views=[],this._runningTick=!1,this._enforceNoNewChanges=!1,this._stable=!0,this.componentTypes=[],this.components=[],this._enforceNoNewChanges=Ur(),this._zone.onMicrotaskEmpty.subscribe({next:function(){s._zone.run((function(){s.tick()}))}});var l=new t.Observable((function(e){s._stable=s._zone.isStable&&!s._zone.hasPendingMacrotasks&&!s._zone.hasPendingMicrotasks,s._zone.runOutsideAngular((function(){e.next(s._stable),e.complete()}))})),c=new t.Observable((function(e){var t;s._zone.runOutsideAngular((function(){t=s._zone.onStable.subscribe((function(){$g.assertNotInAngularZone(),Yg((function(){s._stable||s._zone.hasPendingMacrotasks||s._zone.hasPendingMicrotasks||(s._stable=!0,e.next(!0))}))}))}));var n=s._zone.onUnstable.subscribe((function(){$g.assertInAngularZone(),s._stable&&(s._stable=!1,s._zone.runOutsideAngular((function(){e.next(!1)})))}));return function(){t.unsubscribe(),n.unsubscribe()}}));this.isStable=t.merge(l,c.pipe(n.share()))}return e.prototype.bootstrap=function(e,t){var n,r=this;if(!this._initStatus.done)throw new Error("Cannot bootstrap as there are still asynchronous initializers running. Bootstrap components in the `ngDoBootstrap` method of the root module.");n=e instanceof dd?e:this._componentFactoryResolver.resolveComponentFactory(e),this.componentTypes.push(n.componentType);var o=function i(e){return e instanceof md}(n)?void 0:this._injector.get(Se),a=n.create(is.NULL,[],t||n.selector,o);a.onDestroy((function(){r._unloadComponent(a)}));var u=a.injector.get(um,null);return u&&a.injector.get(sm).registerApplication(a.location.nativeElement,u),this._loadComponent(a),Ur()&&this._console.log("Angular is running in the development mode. Call enableProdMode() to enable the production mode."),a},e.prototype.tick=function(){var e,t,n,r,o=this;if(this._runningTick)throw new Error("ApplicationRef.tick is called recursively");try{this._runningTick=!0;try{for(var i=l(this._views),a=i.next();!a.done;a=i.next())a.value.detectChanges()}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=i.return)&&t.call(i)}finally{if(e)throw e.error}}if(this._enforceNoNewChanges)try{for(var u=l(this._views),s=u.next();!s.done;s=u.next())s.value.checkNoChanges()}catch(e){n={error:e}}finally{try{s&&!s.done&&(r=u.return)&&r.call(u)}finally{if(n)throw n.error}}}catch(e){this._zone.runOutsideAngular((function(){return o._exceptionHandler.handleError(e)}))}finally{this._runningTick=!1}},e.prototype.attachView=function(e){var t=e;this._views.push(t),t.attachToAppRef(this)},e.prototype.detachView=function(e){var t=e;bm(this._views,t),t.detachFromAppRef()},e.prototype._loadComponent=function(e){this.attachView(e.hostView),this.tick(),this.components.push(e),this._injector.get(jg,[]).concat(this._bootstrapListeners).forEach((function(t){return t(e)}))},e.prototype._unloadComponent=function(e){this.detachView(e.hostView),bm(this.components,e)},e.prototype.ngOnDestroy=function(){this._views.slice().forEach((function(e){return e.destroy()}))},Object.defineProperty(e.prototype,"viewCount",{get:function(){return this._views.length},enumerable:!0,configurable:!0}),a([Bu(),s("design:paramtypes",[$g,Ag,is,Tr,yd,Ig])],e)}();function bm(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}
|
|
1016
1023
|
/**
|
|
1017
1024
|
* @license
|
|
1018
1025
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -1034,21 +1041,21 @@ var Hm=function(){function e(e){var t=e.enableLongStackTrace,n=void 0!==t&&t,r=e
|
|
|
1034
1041
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1035
1042
|
* found in the LICENSE file at https://angular.io/license
|
|
1036
1043
|
*/
|
|
1037
|
-
var
|
|
1044
|
+
var Cm=function Cm(){};function Im(e){var t=Av(e);if(!t)throw Em(e);return t}var xm=Im;function Em(e){return new Error("No module with ID "+e+" loaded")}
|
|
1038
1045
|
/**
|
|
1039
1046
|
* @license
|
|
1040
1047
|
* Copyright Google Inc. All Rights Reserved.
|
|
1041
1048
|
*
|
|
1042
1049
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1043
1050
|
* found in the LICENSE file at https://angular.io/license
|
|
1044
|
-
*/var
|
|
1051
|
+
*/var km=function km(){},Om={factoryPathPrefix:"",factoryPathSuffix:".ngfactory"},Pm=function(){function e(e,t){this._compiler=e,this._config=t||Om}return e.prototype.load=function(e){return!Mg&&this._compiler instanceof Wg?this.loadFactory(e):this.loadAndCompile(e)},e.prototype.loadAndCompile=function(e){var t=this,n=c(e.split("#"),2),r=n[0],o=n[1];return void 0===o&&(o="default"),System.import(r).then((function(e){return e[o]})).then((function(e){return Nm(e,r,o)})).then((function(e){return t._compiler.compileModuleAsync(e)}))},e.prototype.loadFactory=function(e){var t=c(e.split("#"),2),n=t[0],r=t[1],o="NgFactory";return void 0===r&&(r="default",o=""),System.import(this._config.factoryPathPrefix+n+this._config.factoryPathSuffix).then((function(e){return e[r+o]})).then((function(e){return Nm(e,n,r)}))},a([Bu(),u(1,C()),s("design:paramtypes",[Wg,km])],e)}();function Nm(e,t,n){if(!e)throw new Error("Cannot find '"+n+"' in '"+t+"'");return e}
|
|
1045
1052
|
/**
|
|
1046
1053
|
* @license
|
|
1047
1054
|
* Copyright Google Inc. All Rights Reserved.
|
|
1048
1055
|
*
|
|
1049
1056
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1050
1057
|
* found in the LICENSE file at https://angular.io/license
|
|
1051
|
-
*/var
|
|
1058
|
+
*/var Tm=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(mu),jm=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return o(t,e),t}(Tm),Dm=function Dm(e,t){this.name=e,this.callback=t},Am=function(){function e(e,t,n){this.listeners=[],this.parent=null,this._debugContext=n,this.nativeNode=e,t&&t instanceof Sm&&t.addChild(this)}return Object.defineProperty(e.prototype,"injector",{get:function(){return this._debugContext.injector},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentInstance",{get:function(){return this._debugContext.component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this._debugContext.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){return this._debugContext.references},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){return this._debugContext.providerTokens},enumerable:!0,configurable:!0}),e}(),Sm=function(e){function t(t,n,r){var o=e.call(this,t,n,r)||this;return o.properties={},o.attributes={},o.classes={},o.styles={},o.childNodes=[],o.nativeElement=t,o}return o(t,e),t.prototype.addChild=function(e){e&&(this.childNodes.push(e),e.parent=this)},t.prototype.removeChild=function(e){var t=this.childNodes.indexOf(e);-1!==t&&(e.parent=null,this.childNodes.splice(t,1))},t.prototype.insertChildrenAfter=function(e,t){var n,r=this,o=this.childNodes.indexOf(e);-1!==o&&((n=this.childNodes).splice.apply(n,f([o+1,0],t)),t.forEach((function(t){t.parent&&t.parent.removeChild(t),e.parent=r})))},t.prototype.insertBefore=function(e,t){var n=this.childNodes.indexOf(e);-1===n?this.addChild(t):(t.parent&&t.parent.removeChild(t),t.parent=this,this.childNodes.splice(n,0,t))},t.prototype.query=function(e){return this.queryAll(e)[0]||null},t.prototype.queryAll=function(e){var t=[];return Rm(this,e,t),t},t.prototype.queryAllNodes=function(e){var t=[];return Vm(this,e,t),t},Object.defineProperty(t.prototype,"children",{get:function(){return this.childNodes.filter((function(e){return e instanceof t}))},enumerable:!0,configurable:!0}),t.prototype.triggerEventHandler=function(e,t){this.listeners.forEach((function(n){n.name==e&&n.callback(t)}))},t}(Am);function Rm(e,t,n){e.childNodes.forEach((function(e){e instanceof Sm&&(t(e)&&n.push(e),Rm(e,t,n))}))}function Vm(e,t,n){e instanceof Sm&&e.childNodes.forEach((function(e){t(e)&&n.push(e),e instanceof Sm&&Vm(e,t,n)}))}var Fm=function(){function e(e){this.nativeNode=e}return Object.defineProperty(e.prototype,"parent",{get:function(){var e=this.nativeNode.parentNode;return e?new Mm(e):null},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return Pf(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentInstance",{get:function(){var e=this.nativeNode;return e&&(xf(e)||kf(e))},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return xf(this.nativeNode)||Ef(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"listeners",{get:function(){return Df(this.nativeNode).filter((function(e){return"dom"===e.type}))},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){return function e(t){var n=Tf(t,!1);return null===n?{}:(void 0===n.localRefs&&(n.localRefs=function r(e,t){var n=e[dt].data[t];if(n&&n.localNames){for(var r={},o=n.index+1,i=0;i<n.localNames.length;i+=2)r[n.localNames[i]]=e[o],o++;return r}return null}(n.lView,n.nodeIndex)),n.localRefs||{})}(this.nativeNode)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){return function e(t){var n=Tf(t,!1);if(null===n)return[];for(var r,o=n.lView[dt],i=o.data[n.nodeIndex],a=[],u=i.directiveEnd,s=65535&i.providerIndexes;s<u;s++){var l=o.data[s];void 0!==(r=l).type&&void 0!==r.template&&void 0!==r.declaredInputs&&(l=l.type),a.push(l)}return a}(this.nativeNode)},enumerable:!0,configurable:!0}),e}(),Mm=function(e){function t(t){return e.call(this,t)||this}return o(t,e),Object.defineProperty(t.prototype,"nativeElement",{get:function(){return this.nativeNode.nodeType==Node.ELEMENT_NODE?this.nativeNode:null},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"name",{get:function(){try{var e=Tf(this.nativeNode);return e.lView[dt].data[e.nodeIndex].tagName}catch(e){return this.nativeNode.nodeName}},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"properties",{get:function(){var e=Tf(this.nativeNode,!1);if(null==e)return{};var t=e.lView,n=t[dt].data,r=n[e.nodeIndex],o={};return function i(e,t){if(e)for(var n=Object.getPrototypeOf(e),r=Node.prototype;null!==n&&n!==r;){var o=Object.getOwnPropertyDescriptors(n);for(var i in o)if(!i.startsWith("__")&&!i.startsWith("on")){var a=e[i];Hm(a)&&(t[i]=a)}n=Object.getPrototypeOf(n)}}(this.nativeElement,o),function a(e,t,n,r){var o=t.propertyBindings;if(null!==o)for(var i=0;i<o.length;i++){var a=o[i],u=r[a].split("�"),s=u[0];if(u.length>1){for(var l=u[1],c=1;c<u.length-1;c++)l+=Yn(n[a+c-1])+u[c+1];e[s]=l}else e[s]=n[a]}}(o,r,t,n),o},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e={},t=this.nativeElement;if(!t)return e;var n=Tf(t,!1);if(null==n)return{};var r=n.lView[dt].data[n.nodeIndex].attrs,o=[];if(r)for(var i=0;i<r.length;){var a=r[i];if("string"!=typeof a)break;e[a]=r[i+1],o.push(a.toLowerCase()),i+=2}var u=t.attributes;for(i=0;i<u.length;i++){var s=u[i],l=s.name.toLowerCase();-1===o.indexOf(l)&&(e[l]=s.value)}return e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"styles",{get:function(){return this.nativeElement&&this.nativeElement.style?this.nativeElement.style:{}},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"classes",{get:function(){var e={},t=this.nativeElement.className;return(t&&"string"!=typeof t?t.baseVal.split(" "):t.split(" ")).forEach((function(t){return e[t]=!0})),e},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){for(var e=this.nativeNode.childNodes,t=[],n=0;n<e.length;n++)t.push(Km(e[n]));return t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"children",{get:function(){var e=this.nativeElement;if(!e)return[];for(var t=e.children,n=[],r=0;r<t.length;r++)n.push(Km(t[r]));return n},enumerable:!0,configurable:!0}),t.prototype.query=function(e){return this.queryAll(e)[0]||null},t.prototype.queryAll=function(e){var t=[];return Lm(this,e,t,!0),t},t.prototype.queryAllNodes=function(e){var t=[];return Lm(this,e,t,!1),t},t.prototype.triggerEventHandler=function(e,t){var n=this.nativeNode,r=[];this.listeners.forEach((function(o){if(o.name===e){var i=o.callback;i.call(n,t),r.push(i)}})),"function"==typeof n.eventListeners&&n.eventListeners(e).forEach((function(e){if(-1!==e.toString().indexOf("__ngUnwrap__")){var o=e("__ngUnwrap__");return-1===r.indexOf(o)&&o.call(n,t)}}))},t}(Fm);function Hm(e){return"string"==typeof e||"boolean"==typeof e||"number"==typeof e||null===e}function Lm(e,t,n,r){var o=Tf(e.nativeNode,!1);null!==o?Bm(o.lView[dt].data[o.nodeIndex],o.lView,t,n,r,e.nativeNode):zm(e.nativeNode,t,n,r)}function Bm(e,t,n,r,o,i){var a,u,s=Fo(e,t);if(3===e.type||4===e.type){Qm(s,n,r,o,i),Lt(e)?(d=Lo(e.index,t))&&d[dt].firstChild&&Bm(d[dt].firstChild,d,n,r,o,i):(e.child&&Bm(e.child,t,n,r,o,i),s&&zm(s,n,r,o));var c=t[e.index];Mt(c)&&Um(c,n,r,o,i)}else if(0===e.type){var f=t[e.index];Qm(f[St],n,r,o,i),Um(f,n,r,o,i)}else if(1===e.type){var d,p=(d=t[Ot])[gt].projection[e.projection];if(Array.isArray(p))try{for(var h=l(p),v=h.next();!v.done;v=h.next())Qm(v.value,n,r,o,i)}catch(e){a={error:e}}finally{try{v&&!v.done&&(u=h.return)&&u.call(h)}finally{if(a)throw a.error}}else if(p){var y,g=d[ht];Bm(y=g[dt].data[p.index],g,n,r,o,i)}}else e.child&&Bm(e.child,t,n,r,o,i);i!==s&&(y=4&e.flags?e.projectionNext:e.next)&&Bm(y,t,n,r,o,i)}function Um(e,t,n,r,o){for(var i=Vt;i<e.length;i++){var a=e[i];Bm(a[dt].node,a,t,n,r,o)}}function Qm(e,t,n,r,o){if(o!==e){var i=Gm(e);if(!i)return;r&&i instanceof Mm&&t(i)&&-1===n.indexOf(i)?n.push(i):!r&&t(i)&&-1===n.indexOf(i)&&n.push(i)}}function zm(e,t,n,r){for(var o=e.childNodes,i=o.length,a=0;a<i;a++){var u=o[a],s=Gm(u);s&&(r&&s instanceof Mm&&t(s)&&-1===n.indexOf(s)?n.push(s):!r&&t(s)&&-1===n.indexOf(s)&&n.push(s),zm(u,t,n,r))}}var qm=new Map;function Zm(e){return qm.get(e)||null}var Wm="__ng_debug__";function Km(e){return e instanceof Node?(e.hasOwnProperty(Wm)||(e[Wm]=e.nodeType==Node.ELEMENT_NODE?new Mm(e):new Fm(e)),e[Wm]):null}var Gm=Zm;function Jm(e){return Zm(e)}var Ym=Jm;function $m(e){qm.set(e.nativeNode,e)}var Xm=Am,e_=Sm,t_=vm(null,"core",[{provide:Tg,useValue:"unknown"},{provide:mm,deps:[is]},{provide:sm,deps:[]},{provide:Ag,deps:[]}]);
|
|
1052
1059
|
/**
|
|
1053
1060
|
* @license
|
|
1054
1061
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -1056,56 +1063,56 @@ var l_=function l_(){};function c_(e){var t=ky(e);if(!t)throw d_(e);return t}var
|
|
|
1056
1063
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1057
1064
|
* found in the LICENSE file at https://angular.io/license
|
|
1058
1065
|
*/
|
|
1059
|
-
function
|
|
1066
|
+
function n_(){return Ud}function r_(){return Qd}function o_(e){return e=e||function t(){return Mg&&"undefined"!=typeof $localize&&$localize.locale||Hh}(),Mg&&Nv(e),e}var i_=[{provide:wm,useClass:wm,deps:[$g,Ag,is,Tr,yd,Ig]},{provide:Ph,deps:[$g],useFactory:a_},{provide:Ig,useClass:Ig,deps:[[new C,Cg]]},{provide:Wg,useClass:Wg,deps:[]},kg,{provide:Hd,useFactory:n_,deps:[]},{provide:Ld,useFactory:r_,deps:[]},{provide:Sg,useFactory:o_,deps:[[new b(Sg),new C,new x]]},{provide:Rg,useValue:"USD"}];function a_(e){var t=[];return e.onStable.subscribe((function(){for(;t.length;)t.pop()()})),function(e){t.push(e)}}var u_,s_=a([mg({providers:i_}),s("design:paramtypes",[wm])],(function s_(e){}));
|
|
1060
1067
|
/**
|
|
1061
1068
|
* @license
|
|
1062
1069
|
* Copyright Google Inc. All Rights Reserved.
|
|
1063
1070
|
*
|
|
1064
1071
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1065
1072
|
* found in the LICENSE file at https://angular.io/license
|
|
1066
|
-
*/function
|
|
1073
|
+
*/function l_(t,n,r){var o,i=r.element,a=t.root.selectorOrNode,u=t.renderer;if(t.parent||!a){o=i.name?u.createElement(i.name,i.ns):u.createComment("");var s=xp(t,n,r);s&&u.appendChild(s,o)}else o=u.selectRootElement(a,!!i.componentRendererType&&i.componentRendererType.encapsulation===e.ViewEncapsulation.ShadowDom);if(i.attrs)for(var l=0;l<i.attrs.length;l++){var f=c(i.attrs[l],3);u.setAttribute(o,f[1],f[2],f[0])}return o}function c_(e,t,n,r){for(var o=0;o<n.outputs.length;o++){var i=n.outputs[o],a=f_(e,n.nodeIndex,(f=i.eventName,(c=i.target)?c+":"+f:f)),u=i.target,s=e;"component"===i.target&&(u=null,s=t);var l=s.renderer.listen(u||r,i.eventName,a);e.disposables[n.outputIndex+o]=l}var c,f}function f_(e,t,n){return function(r){return vp(e,t,n,r)}}function d_(t,n,r,o){if(!fp(t,n,r,o))return!1;var i=n.bindings[r],a=ep(t,n.nodeIndex),u=a.renderElement,s=i.name;switch(15&i.flags){case 1:!function l(e,t,n,r,o,i){var a=t.securityContext,u=a?e.root.sanitizer.sanitize(a,i):i;u=null!=u?u.toString():null;var s=e.renderer;null!=i?s.setAttribute(n,o,u,r):s.removeAttribute(n,o,r)}(t,i,u,i.ns,s,o);break;case 2:!function c(e,t,n,r){var o=e.renderer;r?o.addClass(t,n):o.removeClass(t,n)}(t,u,s,o);break;case 4:!function f(t,n,r,o,i){var a=t.root.sanitizer.sanitize(e.SecurityContext.STYLE,i);if(null!=a){a=a.toString();var u=n.suffix;null!=u&&(a+=u)}else a=null;var s=t.renderer;null!=a?s.setStyle(r,o,a):s.removeStyle(r,o)}(t,i,u,s,o);break;case 8:!function d(e,t,n,r,o){var i=t.securityContext,a=i?e.root.sanitizer.sanitize(i,o):o;e.renderer.setProperty(n,r,a)}
|
|
1067
1074
|
/**
|
|
1068
1075
|
* @license
|
|
1069
1076
|
* Copyright Google Inc. All Rights Reserved.
|
|
1070
1077
|
*
|
|
1071
1078
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1072
1079
|
* found in the LICENSE file at https://angular.io/license
|
|
1073
|
-
*/(33554432&n.flags&&32&i.flags?a.componentView:t,i,u,s,o)}return!0}function
|
|
1080
|
+
*/(33554432&n.flags&&32&i.flags?a.componentView:t,i,u,s,o)}return!0}function p_(e){for(var t=e.def.nodeMatchedQueries;e.parent&&wp(e);){var n=e.parentNodeDef;e=e.parent;for(var r=n.nodeIndex+n.childCount,o=0;o<=r;o++)67108864&(i=e.def.nodes[o]).flags&&536870912&i.flags&&(i.query.filterId&t)===i.query.filterId&&rp(e,o).setDirty(),!(1&i.flags&&o+i.childCount<n.nodeIndex)&&67108864&i.childFlags&&536870912&i.childFlags||(o+=i.childCount)}if(134217728&e.def.nodeFlags)for(o=0;o<e.def.nodes.length;o++){var i;134217728&(i=e.def.nodes[o]).flags&&536870912&i.flags&&rp(e,o).setDirty(),o+=i.childCount}}function h_(e,t){var n=rp(e,t.nodeIndex);if(n.dirty){var r,o=void 0;if(67108864&t.flags){var i=t.parent.parent;o=v_(e,i.nodeIndex,i.nodeIndex+i.childCount,t.query,[]),r=tp(e,t.parent.nodeIndex).instance}else 134217728&t.flags&&(o=v_(e,0,e.def.nodes.length-1,t.query,[]),r=e.component);n.reset(o);for(var a=t.query.bindings,u=!1,s=0;s<a.length;s++){var l=a[s],c=void 0;switch(l.bindingType){case 0:c=n.first;break;case 1:c=n,u=!0}r[l.propName]=c}u&&n.notifyOnChanges()}}function v_(e,t,n,r,o){for(var i=t;i<=n;i++){var a=e.def.nodes[i],u=a.matchedQueries[r.id];if(null!=u&&o.push(y_(e,a,u)),1&a.flags&&a.element.template&&(a.element.template.nodeMatchedQueries&r.filterId)===r.filterId){var s=ep(e,i);if((a.childMatchedQueries&r.filterId)===r.filterId&&(v_(e,i+1,i+a.childCount,r,o),i+=a.childCount),16777216&a.flags)for(var l=s.viewContainer._embeddedViews,c=0;c<l.length;c++){var f=l[c],d=yp(f);d&&d===s&&v_(f,0,f.def.nodes.length-1,r,o)}var p=s.template._projectedViews;if(p)for(c=0;c<p.length;c++){var h=p[c];v_(h,0,h.def.nodes.length-1,r,o)}}(a.childMatchedQueries&r.filterId)!==r.filterId&&(i+=a.childCount)}return o}function y_(e,t,n){if(null!=n)switch(n){case 1:return ep(e,t.nodeIndex).renderElement;case 0:return new bd(ep(e,t.nodeIndex).renderElement);case 2:return ep(e,t.nodeIndex).template;case 3:return ep(e,t.nodeIndex).viewContainer;case 4:return tp(e,t.nodeIndex).instance}}
|
|
1074
1081
|
/**
|
|
1075
1082
|
* @license
|
|
1076
1083
|
* Copyright Google Inc. All Rights Reserved.
|
|
1077
1084
|
*
|
|
1078
1085
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1079
1086
|
* found in the LICENSE file at https://angular.io/license
|
|
1080
|
-
*/function
|
|
1087
|
+
*/function g_(e,t,n){var r=xp(e,t,n);r&&Np(e,n.ngContent.index,1,r,null,void 0)}
|
|
1081
1088
|
/**
|
|
1082
1089
|
* @license
|
|
1083
1090
|
* Copyright Google Inc. All Rights Reserved.
|
|
1084
1091
|
*
|
|
1085
1092
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1086
1093
|
* found in the LICENSE file at https://angular.io/license
|
|
1087
|
-
*/function
|
|
1094
|
+
*/function m_(e,t,n){for(var r=[],o=0;o<n.length;o++){var i=n[o];r.push({flags:8,name:i,ns:null,nonMinifiedName:i,securityContext:null,suffix:null})}return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:t,flags:e,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:-1,childCount:0,bindings:r,bindingFlags:Sp(r),outputs:[],element:null,provider:null,text:null,query:null,ngContent:null}}function __(e,t,n){var r,o=e.renderer;r=o.createText(n.text.prefix);var i=xp(e,t,n);return i&&o.appendChild(i,r),{renderText:r}}function w_(e,t){return(null!=e?e.toString():"")+t.suffix}
|
|
1088
1095
|
/**
|
|
1089
1096
|
* @license
|
|
1090
1097
|
* Copyright Google Inc. All Rights Reserved.
|
|
1091
1098
|
*
|
|
1092
1099
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1093
1100
|
* found in the LICENSE file at https://angular.io/license
|
|
1094
|
-
*/function
|
|
1101
|
+
*/function b_(e){return 0!=(1&e.flags)&&null===e.element.name}function C_(e,t,n){var r=t.element&&t.element.template;if(r){if(!r.lastRenderRootNode)throw new Error("Illegal State: Embedded templates without nodes are not allowed!");if(r.lastRenderRootNode&&16777216&r.lastRenderRootNode.flags)throw new Error("Illegal State: Last root node of a template can't have embedded views, at index "+t.nodeIndex+"!")}if(20224&t.flags&&0==(1&(e?e.flags:0)))throw new Error("Illegal State: StaticProvider/Directive nodes need to be children of elements or anchors, at index "+t.nodeIndex+"!");if(t.query){if(67108864&t.flags&&(!e||0==(16384&e.flags)))throw new Error("Illegal State: Content Query nodes need to be children of directives, at index "+t.nodeIndex+"!");if(134217728&t.flags&&e)throw new Error("Illegal State: View Query nodes have to be top level nodes, at index "+t.nodeIndex+"!")}if(t.childCount){var o=e?e.nodeIndex+e.childCount:n-1;if(t.nodeIndex<=o&&t.nodeIndex+t.childCount>o)throw new Error("Illegal State: childCount of node leads outside of parent, at index "+t.nodeIndex+"!")}}function I_(e,t,n,r){var o=k_(e.root,e.renderer,e,t,n);return O_(o,e.component,r),P_(o),o}function x_(e,t,n){var r=k_(e,e.renderer,null,null,t);return O_(r,n,n),P_(r),r}function E_(e,t,n,r){var o,i=t.element.componentRendererType;return o=i?e.root.rendererFactory.createRenderer(r,i):e.root.renderer,k_(e.root,o,e,t.element.componentProvider,n)}function k_(e,t,n,r,o){var i=new Array(o.nodes.length),a=o.outputCount?new Array(o.outputCount):null;return{def:o,parent:n,viewContainerParent:null,parentNodeDef:r,context:null,component:null,nodes:i,state:13,root:e,renderer:t,oldValues:new Array(o.bindingCount),disposables:a,initIndex:-1}}function O_(e,t,n){e.component=t,e.context=n}function P_(e){var t;_p(e)&&(t=ep(e.parent,e.parentNodeDef.parent.nodeIndex).renderElement);for(var n=e.def,r=e.nodes,o=0;o<n.nodes.length;o++){var i=n.nodes[o];ip.setCurrentNode(e,o);var a=void 0;switch(201347067&i.flags){case 1:var u=l_(e,t,i),s=void 0;if(33554432&i.flags){var l=kp(i.element.componentView);s=ip.createComponentView(e,i,l,u)}c_(e,s,i,u),a={renderElement:u,componentView:s,viewContainer:null,template:i.element.template?Xp(e,i):void 0},16777216&i.flags&&(a.viewContainer=Gp(e,i,a));break;case 2:a=__(e,t,i);break;case 512:case 1024:case 2048:case 256:(a=r[o])||4096&i.flags||(a={instance:ph(e,i)});break;case 16:a={instance:hh(e,i)};break;case 16384:(a=r[o])||(a={instance:vh(e,i)}),32768&i.flags&&O_(ep(e,i.parent.nodeIndex).componentView,a.instance,a.instance);break;case 32:case 64:case 128:a={value:void 0};break;case 67108864:case 134217728:a=new sy;break;case 8:g_(e,t,i),a=void 0}r[o]=a}V_(e,u_.CreateViewNodes),L_(e,201326592,268435456,0)}function N_(e){D_(e),ip.updateDirectives(e,1),F_(e,u_.CheckNoChanges),ip.updateRenderer(e,1),V_(e,u_.CheckNoChanges),e.state&=-97}function T_(e){1&e.state?(e.state&=-2,e.state|=2):e.state&=-3,Yd(e,0,256),D_(e),ip.updateDirectives(e,0),F_(e,u_.CheckAndUpdate),L_(e,67108864,536870912,0);var t=Yd(e,256,512);Ih(e,2097152|(t?1048576:0)),ip.updateRenderer(e,0),V_(e,u_.CheckAndUpdate),L_(e,134217728,536870912,0),Ih(e,8388608|((t=Yd(e,512,768))?4194304:0)),2&e.def.flags&&(e.state&=-9),e.state&=-97,Yd(e,768,1024)}function j_(e,t,n,r,o,i,a,u,s,l,c,d,p){return 0===n?function h(e,t,n,r,o,i,a,u,s,l,c,f){switch(201347067&t.flags){case 1:return function d(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings.length,p=!1;return d>0&&d_(e,t,0,n)&&(p=!0),d>1&&d_(e,t,1,r)&&(p=!0),d>2&&d_(e,t,2,o)&&(p=!0),d>3&&d_(e,t,3,i)&&(p=!0),d>4&&d_(e,t,4,a)&&(p=!0),d>5&&d_(e,t,5,u)&&(p=!0),d>6&&d_(e,t,6,s)&&(p=!0),d>7&&d_(e,t,7,l)&&(p=!0),d>8&&d_(e,t,8,c)&&(p=!0),d>9&&d_(e,t,9,f)&&(p=!0),p}(e,t,n,r,o,i,a,u,s,l,c,f);case 2:return function p(e,t,n,r,o,i,a,u,s,l,c,f){var d=!1,p=t.bindings,h=p.length;if(h>0&&fp(e,t,0,n)&&(d=!0),h>1&&fp(e,t,1,r)&&(d=!0),h>2&&fp(e,t,2,o)&&(d=!0),h>3&&fp(e,t,3,i)&&(d=!0),h>4&&fp(e,t,4,a)&&(d=!0),h>5&&fp(e,t,5,u)&&(d=!0),h>6&&fp(e,t,6,s)&&(d=!0),h>7&&fp(e,t,7,l)&&(d=!0),h>8&&fp(e,t,8,c)&&(d=!0),h>9&&fp(e,t,9,f)&&(d=!0),d){var v=t.text.prefix;h>0&&(v+=w_(n,p[0])),h>1&&(v+=w_(r,p[1])),h>2&&(v+=w_(o,p[2])),h>3&&(v+=w_(i,p[3])),h>4&&(v+=w_(a,p[4])),h>5&&(v+=w_(u,p[5])),h>6&&(v+=w_(s,p[6])),h>7&&(v+=w_(l,p[7])),h>8&&(v+=w_(c,p[8])),h>9&&(v+=w_(f,p[9]));var y=Xd(e,t.nodeIndex).renderText;e.renderer.setValue(y,v)}return d}(e,t,n,r,o,i,a,u,s,l,c,f);case 16384:return function h(e,t,n,r,o,i,a,u,s,l,c,f){var d=tp(e,t.nodeIndex),p=d.instance,h=!1,v=void 0,y=t.bindings.length;return y>0&&cp(e,t,0,n)&&(h=!0,v=Ch(e,d,t,0,n,v)),y>1&&cp(e,t,1,r)&&(h=!0,v=Ch(e,d,t,1,r,v)),y>2&&cp(e,t,2,o)&&(h=!0,v=Ch(e,d,t,2,o,v)),y>3&&cp(e,t,3,i)&&(h=!0,v=Ch(e,d,t,3,i,v)),y>4&&cp(e,t,4,a)&&(h=!0,v=Ch(e,d,t,4,a,v)),y>5&&cp(e,t,5,u)&&(h=!0,v=Ch(e,d,t,5,u,v)),y>6&&cp(e,t,6,s)&&(h=!0,v=Ch(e,d,t,6,s,v)),y>7&&cp(e,t,7,l)&&(h=!0,v=Ch(e,d,t,7,l,v)),y>8&&cp(e,t,8,c)&&(h=!0,v=Ch(e,d,t,8,c,v)),y>9&&cp(e,t,9,f)&&(h=!0,v=Ch(e,d,t,9,f,v)),v&&p.ngOnChanges(v),65536&t.flags&&$d(e,256,t.nodeIndex)&&p.ngOnInit(),262144&t.flags&&p.ngDoCheck(),h}(e,t,n,r,o,i,a,u,s,l,c,f);case 32:case 64:case 128:return function v(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings,p=!1,h=d.length;if(h>0&&fp(e,t,0,n)&&(p=!0),h>1&&fp(e,t,1,r)&&(p=!0),h>2&&fp(e,t,2,o)&&(p=!0),h>3&&fp(e,t,3,i)&&(p=!0),h>4&&fp(e,t,4,a)&&(p=!0),h>5&&fp(e,t,5,u)&&(p=!0),h>6&&fp(e,t,6,s)&&(p=!0),h>7&&fp(e,t,7,l)&&(p=!0),h>8&&fp(e,t,8,c)&&(p=!0),h>9&&fp(e,t,9,f)&&(p=!0),p){var v=np(e,t.nodeIndex),y=void 0;switch(201347067&t.flags){case 32:y=[],h>0&&y.push(n),h>1&&y.push(r),h>2&&y.push(o),h>3&&y.push(i),h>4&&y.push(a),h>5&&y.push(u),h>6&&y.push(s),h>7&&y.push(l),h>8&&y.push(c),h>9&&y.push(f);break;case 64:y={},h>0&&(y[d[0].name]=n),h>1&&(y[d[1].name]=r),h>2&&(y[d[2].name]=o),h>3&&(y[d[3].name]=i),h>4&&(y[d[4].name]=a),h>5&&(y[d[5].name]=u),h>6&&(y[d[6].name]=s),h>7&&(y[d[7].name]=l),h>8&&(y[d[8].name]=c),h>9&&(y[d[9].name]=f);break;case 128:var g=n;switch(h){case 1:y=g.transform(n);break;case 2:y=g.transform(r);break;case 3:y=g.transform(r,o);break;case 4:y=g.transform(r,o,i);break;case 5:y=g.transform(r,o,i,a);break;case 6:y=g.transform(r,o,i,a,u);break;case 7:y=g.transform(r,o,i,a,u,s);break;case 8:y=g.transform(r,o,i,a,u,s,l);break;case 9:y=g.transform(r,o,i,a,u,s,l,c);break;case 10:y=g.transform(r,o,i,a,u,s,l,c,f)}}v.value=y}return p}(e,t,n,r,o,i,a,u,s,l,c,f);default:throw"unreachable"}}(e,t,r,o,i,a,u,s,l,c,d,p):function v(e,t,n){switch(201347067&t.flags){case 1:return function r(e,t,n){for(var r=!1,o=0;o<n.length;o++)d_(e,t,o,n[o])&&(r=!0);return r}(e,t,n);case 2:return function o(e,t,n){for(var r=t.bindings,o=!1,i=0;i<n.length;i++)fp(e,t,i,n[i])&&(o=!0);if(o){var a="";for(i=0;i<n.length;i++)a+=w_(n[i],r[i]);a=t.text.prefix+a;var u=Xd(e,t.nodeIndex).renderText;e.renderer.setValue(u,a)}return o}(e,t,n);case 16384:return function i(e,t,n){for(var r=tp(e,t.nodeIndex),o=r.instance,i=!1,a=void 0,u=0;u<n.length;u++)cp(e,t,u,n[u])&&(i=!0,a=Ch(e,r,t,u,n[u],a));return a&&o.ngOnChanges(a),65536&t.flags&&$d(e,256,t.nodeIndex)&&o.ngOnInit(),262144&t.flags&&o.ngDoCheck(),i}(e,t,n);case 32:case 64:case 128:return function a(e,t,n){for(var r=t.bindings,o=!1,i=0;i<n.length;i++)fp(e,t,i,n[i])&&(o=!0);if(o){var a=np(e,t.nodeIndex),u=void 0;switch(201347067&t.flags){case 32:u=n;break;case 64:for(u={},i=0;i<n.length;i++)u[r[i].name]=n[i];break;case 128:var s=n[0],l=n.slice(1);u=s.transform.apply(s,f(l))}a.value=u}return o}
|
|
1095
1102
|
/**
|
|
1096
1103
|
* @license
|
|
1097
1104
|
* Copyright Google Inc. All Rights Reserved.
|
|
1098
1105
|
*
|
|
1099
1106
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1100
1107
|
* found in the LICENSE file at https://angular.io/license
|
|
1101
|
-
*/(e,t,n);default:throw"unreachable"}}(e,t,r)}function
|
|
1108
|
+
*/(e,t,n);default:throw"unreachable"}}(e,t,r)}function D_(e){var t=e.def;if(4&t.nodeFlags)for(var n=0;n<t.nodes.length;n++){var r=t.nodes[n];if(4&r.flags){var o=ep(e,n).template._projectedViews;if(o)for(var i=0;i<o.length;i++){var a=o[i];a.state|=32,hp(a,e)}}else 0==(4&r.childFlags)&&(n+=r.childCount)}}function A_(e,t,n,r,o,i,a,u,s,l,c,f,d){return 0===n?function p(e,t,n,r,o,i,a,u,s,l,c,f){var d=t.bindings.length;d>0&&dp(e,t,0,n),d>1&&dp(e,t,1,r),d>2&&dp(e,t,2,o),d>3&&dp(e,t,3,i),d>4&&dp(e,t,4,a),d>5&&dp(e,t,5,u),d>6&&dp(e,t,6,s),d>7&&dp(e,t,7,l),d>8&&dp(e,t,8,c),d>9&&dp(e,t,9,f)}(e,t,r,o,i,a,u,s,l,c,f,d):function h(e,t,n){for(var r=0;r<n.length;r++)dp(e,t,r,n[r])}(e,t,r),!1}function S_(e,t){if(rp(e,t.nodeIndex).dirty)throw Kd(ip.createDebugContext(e,t.nodeIndex),"Query "+t.query.id+" not dirty","Query "+t.query.id+" dirty",0!=(1&e.state))}function R_(e){if(!(128&e.state)){if(F_(e,u_.Destroy),V_(e,u_.Destroy),Ih(e,131072),e.disposables)for(var t=0;t<e.disposables.length;t++)e.disposables[t]();!function n(e){if(16&e.state){var t=yp(e);if(t){var n=t.template._projectedViews;n&&(Be(n,n.indexOf(e)),ip.dirtyParentQueries(e))}}}(e),e.renderer.destroyNode&&function r(e){for(var t=e.def.nodes.length,n=0;n<t;n++){var r=e.def.nodes[n];1&r.flags?e.renderer.destroyNode(ep(e,n).renderElement):2&r.flags?e.renderer.destroyNode(Xd(e,n).renderText):(67108864&r.flags||134217728&r.flags)&&rp(e,n).destroy()}}(e),_p(e)&&e.renderer.destroy(),e.state|=128}}function V_(e,t){var n=e.def;if(33554432&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var o=n.nodes[r];33554432&o.flags?M_(ep(e,r).componentView,t):0==(33554432&o.childFlags)&&(r+=o.childCount)}}function F_(e,t){var n=e.def;if(16777216&n.nodeFlags)for(var r=0;r<n.nodes.length;r++){var o=n.nodes[r];if(16777216&o.flags)for(var i=ep(e,r).viewContainer._embeddedViews,a=0;a<i.length;a++)M_(i[a],t);else 0==(16777216&o.childFlags)&&(r+=o.childCount)}}function M_(e,t){var n=e.state;switch(t){case u_.CheckNoChanges:0==(128&n)&&(12==(12&n)?N_(e):64&n&&H_(e,u_.CheckNoChangesProjectedViews));break;case u_.CheckNoChangesProjectedViews:0==(128&n)&&(32&n?N_(e):64&n&&H_(e,t));break;case u_.CheckAndUpdate:0==(128&n)&&(12==(12&n)?T_(e):64&n&&H_(e,u_.CheckAndUpdateProjectedViews));break;case u_.CheckAndUpdateProjectedViews:0==(128&n)&&(32&n?T_(e):64&n&&H_(e,t));break;case u_.Destroy:R_(e);break;case u_.CreateViewNodes:P_(e)}}function H_(e,t){F_(e,t),V_(e,t)}function L_(e,t,n,r){if(e.def.nodeFlags&t&&e.def.nodeFlags&n)for(var o=e.def.nodes.length,i=0;i<o;i++){var a=e.def.nodes[i];if(a.flags&t&&a.flags&n)switch(ip.setCurrentNode(e,a.nodeIndex),r){case 0:h_(e,a);break;case 1:S_(e,a)}a.childFlags&t&&a.childFlags&n||(i+=a.childCount)}}
|
|
1102
1109
|
/**
|
|
1103
1110
|
* @license
|
|
1104
1111
|
* Copyright Google Inc. All Rights Reserved.
|
|
1105
1112
|
*
|
|
1106
1113
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1107
1114
|
* found in the LICENSE file at https://angular.io/license
|
|
1108
|
-
*/!function(e){e[e.CreateViewNodes=0]="CreateViewNodes",e[e.CheckNoChanges=1]="CheckNoChanges",e[e.CheckNoChangesProjectedViews=2]="CheckNoChangesProjectedViews",e[e.CheckAndUpdate=3]="CheckAndUpdate",e[e.CheckAndUpdateProjectedViews=4]="CheckAndUpdateProjectedViews",e[e.Destroy=5]="Destroy"}(
|
|
1115
|
+
*/!function(e){e[e.CreateViewNodes=0]="CreateViewNodes",e[e.CheckNoChanges=1]="CheckNoChanges",e[e.CheckNoChangesProjectedViews=2]="CheckNoChangesProjectedViews",e[e.CheckAndUpdate=3]="CheckAndUpdate",e[e.CheckAndUpdateProjectedViews=4]="CheckAndUpdateProjectedViews",e[e.Destroy=5]="Destroy"}(u_||(u_={}));var B_=!1;function U_(){if(!B_){B_=!0;var e=Ur()?function t(){return{setCurrentNode:fw,createRootView:z_,createEmbeddedView:Z_,createComponentView:W_,createNgModuleRef:K_,overrideProvider:nw,overrideComponentView:rw,clearOverrides:ow,checkAndUpdateView:sw,checkNoChangesView:lw,destroyView:cw,createDebugContext:function(e,t){return new _w(e,t)},handleEvent:dw,updateDirectives:pw,updateRenderer:hw}}():function n(){return{setCurrentNode:function(){},createRootView:Q_,createEmbeddedView:I_,createComponentView:E_,createNgModuleRef:rh,overrideProvider:ap,overrideComponentView:ap,clearOverrides:ap,checkAndUpdateView:T_,checkNoChangesView:N_,destroyView:R_,createDebugContext:function(e,t){return new _w(e,t)},handleEvent:function(e,t,n,r){return e.def.handleEvent(e,t,n,r)},updateDirectives:function(e,t){return e.def.updateDirectives(0===t?aw:uw,e)},updateRenderer:function(e,t){return e.def.updateRenderer(0===t?aw:uw,e)}}}();ip.setCurrentNode=e.setCurrentNode,ip.createRootView=e.createRootView,ip.createEmbeddedView=e.createEmbeddedView,ip.createComponentView=e.createComponentView,ip.createNgModuleRef=e.createNgModuleRef,ip.overrideProvider=e.overrideProvider,ip.overrideComponentView=e.overrideComponentView,ip.clearOverrides=e.clearOverrides,ip.checkAndUpdateView=e.checkAndUpdateView,ip.checkNoChangesView=e.checkNoChangesView,ip.destroyView=e.destroyView,ip.resolveDep=wh,ip.createDebugContext=e.createDebugContext,ip.handleEvent=e.handleEvent,ip.updateDirectives=e.updateDirectives,ip.updateRenderer=e.updateRenderer,ip.dirtyParentQueries=p_}}function Q_(e,t,n,r,o,i){var a=o.injector.get(Id);return x_(q_(e,o,a,t,n),r,i)}function z_(e,t,n,r,o,i){var a=o.injector.get(Id),u=q_(e,o,new xw(a),t,n),s=iw(r);return Cw(G_.create,x_,null,[u,s,i])}function q_(e,t,n,r,o){var i=t.injector.get(Od),a=t.injector.get(Tr),u=n.createRenderer(null,null);return{ngModule:t,injector:e,projectableNodes:r,selectorOrNode:o,sanitizer:i,rendererFactory:n,renderer:u,errorHandler:a}}function Z_(e,t,n,r){var o=iw(n);return Cw(G_.create,I_,null,[e,t,o,r])}function W_(e,t,n,r){return n=tw.get(t.element.componentProvider.provider.token)||iw(n),Cw(G_.create,E_,null,[e,t,n,r])}function K_(e,t,n,r){return rh(e,t,n,function o(e){var t=function n(e){var t=!1,n=!1;return 0===X_.size?{hasOverrides:t,hasDeprecatedOverrides:n}:(e.providers.forEach((function(e){var r=X_.get(e.token);3840&e.flags&&r&&(t=!0,n=n||r.deprecatedBehavior)})),e.modules.forEach((function(e){ew.forEach((function(r,o){A(o).providedIn===e&&(t=!0,n=n||r.deprecatedBehavior)}))})),{hasOverrides:t,hasDeprecatedOverrides:n})}(e),r=t.hasDeprecatedOverrides;return t.hasOverrides?(function o(e){for(var t=0;t<e.providers.length;t++){var n=e.providers[t];r&&(n.flags|=4096);var o=X_.get(n.token);o&&(n.flags=-3841&n.flags|o.flags,n.deps=Ip(o.deps),n.value=o.value)}if(ew.size>0){var i=new Set(e.modules);ew.forEach((function(t,n){if(i.has(A(n).providedIn)){var o={token:n,flags:t.flags|(r?4096:0),deps:Ip(t.deps),value:t.value,index:e.providers.length};e.providers.push(o),e.providersByKey[sp(n)]=o}}))}}(e=e.factory((function(){return ap}))),e):e}(r))}var G_,J_,Y_,$_,X_=new Map,ew=new Map,tw=new Map;function nw(e){var t;X_.set(e.token,e),"function"==typeof e.token&&(t=A(e.token))&&"function"==typeof t.providedIn&&ew.set(e.token,e)}function rw(e,t){var n=kp(Zp(t)),r=kp(n.nodes[0].element.componentView);tw.set(e,r)}function ow(){X_.clear(),ew.clear(),tw.clear()}function iw(e){if(0===X_.size)return e;var t=function n(e){for(var t=[],n=null,r=0;r<e.nodes.length;r++){var o=e.nodes[r];1&o.flags&&(n=o),n&&3840&o.flags&&X_.has(o.provider.token)&&(t.push(n.nodeIndex),n=null)}return t}(e);if(0===t.length)return e;e=e.factory((function(){return ap}));for(var r=0;r<t.length;r++)o(e,t[r]);return e;function o(e,t){for(var n=t+1;n<e.nodes.length;n++){var r=e.nodes[n];if(1&r.flags)return;if(3840&r.flags){var o=r.provider,i=X_.get(o.token);i&&(r.flags=-3841&r.flags|i.flags,o.deps=Ip(i.deps),o.value=i.value)}}}}function aw(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=e.def.nodes[t];return j_(e,p,n,r,o,i,a,u,s,l,c,f,d),224&p.flags?np(e,t).value:void 0}function uw(e,t,n,r,o,i,a,u,s,l,c,f,d){var p=e.def.nodes[t];return A_(e,p,n,r,o,i,a,u,s,l,c,f,d),224&p.flags?np(e,t).value:void 0}function sw(e){return Cw(G_.detectChanges,T_,null,[e])}function lw(e){return Cw(G_.checkNoChanges,N_,null,[e])}function cw(e){return Cw(G_.destroy,R_,null,[e])}function fw(e,t){Y_=e,$_=t}function dw(e,t,n,r){return fw(e,t),Cw(G_.handleEvent,e.def.handleEvent,null,[e,t,n,r])}function pw(e,t){if(128&e.state)throw Jd(G_[J_]);return fw(e,gw(e,0)),e.def.updateDirectives((function n(e,r,o){for(var i=[],a=3;a<arguments.length;a++)i[a-3]=arguments[a];var u=e.def.nodes[r];return 0===t?vw(e,u,o,i):yw(e,u,o,i),16384&u.flags&&fw(e,gw(e,r)),224&u.flags?np(e,u.nodeIndex).value:void 0}),e)}function hw(e,t){if(128&e.state)throw Jd(G_[J_]);return fw(e,mw(e,0)),e.def.updateRenderer((function n(e,r,o){for(var i=[],a=3;a<arguments.length;a++)i[a-3]=arguments[a];var u=e.def.nodes[r];return 0===t?vw(e,u,o,i):yw(e,u,o,i),3&u.flags&&fw(e,mw(e,r)),224&u.flags?np(e,u.nodeIndex).value:void 0}),e)}function vw(e,t,n,r){if(j_.apply(void 0,f([e,t,n],r))){var o=1===n?r[0]:r;if(16384&t.flags){for(var i={},a=0;a<t.bindings.length;a++){var u=t.bindings[a],s=o[a];8&u.flags&&(i[(h=u.nonMinifiedName,"ng-reflect-"+function l(e){return e.replace(jo,(function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return"-"+e[1].toLowerCase()}))}(h.replace(/[$@]/g,"_")))]=Do(s))}var c=t.parent,d=ep(e,c.nodeIndex).renderElement;if(c.element.name)for(var p in i)null!=(s=i[p])?e.renderer.setAttribute(d,p,s):e.renderer.removeAttribute(d,p);else e.renderer.setValue(d,"bindings="+JSON.stringify(i,null,2))}}
|
|
1109
1116
|
/**
|
|
1110
1117
|
* @license
|
|
1111
1118
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -1113,7 +1120,7 @@ function L_(){return Sp}function B_(){return Vp}function U_(e){return e=e||funct
|
|
|
1113
1120
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1114
1121
|
* found in the LICENSE file at https://angular.io/license
|
|
1115
1122
|
*/
|
|
1116
|
-
var h}function
|
|
1123
|
+
var h}function yw(e,t,n,r){A_.apply(void 0,f([e,t,n],r))}function gw(e,t){for(var n=t;n<e.def.nodes.length;n++){var r=e.def.nodes[n];if(16384&r.flags&&r.bindings&&r.bindings.length)return n}return null}function mw(e,t){for(var n=t;n<e.def.nodes.length;n++){var r=e.def.nodes[n];if(3&r.flags&&r.bindings&&r.bindings.length)return n}return null}!function(e){e[e.create=0]="create",e[e.detectChanges=1]="detectChanges",e[e.checkNoChanges=2]="checkNoChanges",e[e.destroy=3]="destroy",e[e.handleEvent=4]="handleEvent"}(G_||(G_={}));var _w=function(){function e(e,t){this.view=e,this.nodeIndex=t,null==t&&(this.nodeIndex=t=0),this.nodeDef=e.def.nodes[t];for(var n=this.nodeDef,r=e;n&&0==(1&n.flags);)n=n.parent;if(!n)for(;!n&&r;)n=gp(r),r=r.parent;this.elDef=n,this.elView=r}return Object.defineProperty(e.prototype,"elOrCompView",{get:function(){return ep(this.elView,this.elDef.nodeIndex).componentView||this.view},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"injector",{get:function(){return th(this.elView,this.elDef)},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"component",{get:function(){return this.elOrCompView.component},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"context",{get:function(){return this.elOrCompView.context},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"providerTokens",{get:function(){var e=[];if(this.elDef)for(var t=this.elDef.nodeIndex+1;t<=this.elDef.nodeIndex+this.elDef.childCount;t++){var n=this.elView.def.nodes[t];20224&n.flags&&e.push(n.provider.token),t+=n.childCount}return e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"references",{get:function(){var e={};if(this.elDef){bw(this.elView,this.elDef,e);for(var t=this.elDef.nodeIndex+1;t<=this.elDef.nodeIndex+this.elDef.childCount;t++){var n=this.elView.def.nodes[t];20224&n.flags&&bw(this.elView,n,e),t+=n.childCount}}return e},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"componentRenderElement",{get:function(){var e=function t(e){for(;e&&!_p(e);)e=e.parent;return e.parent?ep(e.parent,gp(e).nodeIndex):null}(this.elOrCompView);return e?e.renderElement:void 0},enumerable:!0,configurable:!0}),Object.defineProperty(e.prototype,"renderNode",{get:function(){return 2&this.nodeDef.flags?mp(this.view,this.nodeDef):mp(this.elView,this.elDef)},enumerable:!0,configurable:!0}),e.prototype.logError=function(e){for(var t,n,r=[],o=1;o<arguments.length;o++)r[o-1]=arguments[o];2&this.nodeDef.flags?(t=this.view.def,n=this.nodeDef.nodeIndex):(t=this.elView.def,n=this.elDef.nodeIndex);var i=ww(t,n),a=-1,u=function(){var t;return++a===i?(t=e.error).bind.apply(t,f([e],r)):ap};t.factory(u),a<i&&(e.error("Illegal state: the ViewDefinitionFactory did not call the logger!"),e.error.apply(e,f(r)))},e}();function ww(e,t){for(var n=-1,r=0;r<=t;r++)3&e.nodes[r].flags&&n++;return n}function bw(e,t,n){for(var r in t.references)n[r]=y_(e,t,t.references[r])}function Cw(e,t,n,r){var o=J_,i=Y_,a=$_;try{J_=e;var u=t.apply(n,r);return Y_=i,$_=a,J_=o,u}catch(e){if(function s(e){return!!Or(e)}(e)||!Y_)throw e;throw function l(e,t){return e instanceof Error||(e=new Error(e.toString())),Gd(e,t),e}(e,Iw())}}function Iw(){return Y_?new _w(Y_,$_):null}var xw=function(){function e(e){this.delegate=e}return e.prototype.createRenderer=function(e,t){return new Ew(this.delegate.createRenderer(e,t))},e.prototype.begin=function(){this.delegate.begin&&this.delegate.begin()},e.prototype.end=function(){this.delegate.end&&this.delegate.end()},e.prototype.whenRenderingDone=function(){return this.delegate.whenRenderingDone?this.delegate.whenRenderingDone():Promise.resolve(null)},e}(),Ew=function(){function e(e){this.delegate=e,this.debugContextFactory=Iw,this.data=this.delegate.data}return e.prototype.createDebugContext=function(e){return this.debugContextFactory(e)},e.prototype.destroyNode=function(e){var t=Gm(e);!function n(e){qm.delete(e.nativeNode)}(t),t instanceof Am&&(t.listeners.length=0),this.delegate.destroyNode&&this.delegate.destroyNode(e)},e.prototype.destroy=function(){this.delegate.destroy()},e.prototype.createElement=function(e,t){var n=this.delegate.createElement(e,t),r=this.createDebugContext(n);if(r){var o=new Sm(n,null,r);o.name=e,$m(o)}return n},e.prototype.createComment=function(e){var t=this.delegate.createComment(e),n=this.createDebugContext(t);return n&&$m(new Am(t,null,n)),t},e.prototype.createText=function(e){var t=this.delegate.createText(e),n=this.createDebugContext(t);return n&&$m(new Am(t,null,n)),t},e.prototype.appendChild=function(e,t){var n=Gm(e),r=Gm(t);n&&r&&n instanceof Sm&&n.addChild(r),this.delegate.appendChild(e,t)},e.prototype.insertBefore=function(e,t,n){var r=Gm(e),o=Gm(t),i=Gm(n);r&&o&&r instanceof Sm&&r.insertBefore(i,o),this.delegate.insertBefore(e,t,n)},e.prototype.removeChild=function(e,t){var n=Gm(e),r=Gm(t);n&&r&&n instanceof Sm&&n.removeChild(r),this.delegate.removeChild(e,t)},e.prototype.selectRootElement=function(e,t){var n=this.delegate.selectRootElement(e,t),r=Iw();return r&&$m(new Sm(n,null,r)),n},e.prototype.setAttribute=function(e,t,n,r){var o=Gm(e);o&&o instanceof Sm&&(o.attributes[r?r+":"+t:t]=n),this.delegate.setAttribute(e,t,n,r)},e.prototype.removeAttribute=function(e,t,n){var r=Gm(e);r&&r instanceof Sm&&(r.attributes[n?n+":"+t:t]=null),this.delegate.removeAttribute(e,t,n)},e.prototype.addClass=function(e,t){var n=Gm(e);n&&n instanceof Sm&&(n.classes[t]=!0),this.delegate.addClass(e,t)},e.prototype.removeClass=function(e,t){var n=Gm(e);n&&n instanceof Sm&&(n.classes[t]=!1),this.delegate.removeClass(e,t)},e.prototype.setStyle=function(e,t,n,r){var o=Gm(e);o&&o instanceof Sm&&(o.styles[t]=n),this.delegate.setStyle(e,t,n,r)},e.prototype.removeStyle=function(e,t,n){var r=Gm(e);r&&r instanceof Sm&&(r.styles[t]=null),this.delegate.removeStyle(e,t,n)},e.prototype.setProperty=function(e,t,n){var r=Gm(e);r&&r instanceof Sm&&(r.properties[t]=n),this.delegate.setProperty(e,t,n)},e.prototype.listen=function(e,t,n){if("string"!=typeof e){var r=Gm(e);r&&r.listeners.push(new Dm(t,n))}return this.delegate.listen(e,t,n)},e.prototype.parentNode=function(e){return this.delegate.parentNode(e)},e.prototype.nextSibling=function(e){return this.delegate.nextSibling(e)},e.prototype.setValue=function(e,t){return this.delegate.setValue(e,t)},e}(),kw=function(e){function t(t,n,r){var o=e.call(this)||this;return o.moduleType=t,o._bootstrapComponents=n,o._ngModuleDefFactory=r,o}return o(t,e),t.prototype.create=function(e){U_();var t=function n(e){var t=Array.from(e.providers),n=Array.from(e.modules),r={};for(var o in e.providersByKey)r[o]=e.providersByKey[o];return{factory:e.factory,scope:e.scope,providers:t,modules:n,providersByKey:r}}(kp(this._ngModuleDefFactory));return ip.createNgModuleRef(this.moduleType,e||is.NULL,this._bootstrapComponents,t)},t}(Re);
|
|
1117
1124
|
/**
|
|
1118
1125
|
* @license
|
|
1119
1126
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -1128,7 +1135,7 @@ var h}function eb(e,t,n,r){gw.apply(void 0,f([e,t,n],r))}function tb(e,t){for(va
|
|
|
1128
1135
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1129
1136
|
* found in the LICENSE file at https://angular.io/license
|
|
1130
1137
|
*/
|
|
1131
|
-
e.ANALYZE_FOR_ENTRY_COMPONENTS=Hl,e.APP_BOOTSTRAP_LISTENER=_m,e.APP_ID=dm,e.APP_INITIALIZER=cm,e.ApplicationInitStatus=fm,e.ApplicationModule=Z_,e.ApplicationRef=u_,e.Attribute=O,e.COMPILER_OPTIONS=Sm,e.CUSTOM_ELEMENTS_SCHEMA={name:"custom-elements"},e.ChangeDetectorRef=Cs,e.Compiler=Rm,e.CompilerFactory=Vm,e.Component=Kg,e.ComponentFactory=ip,e.ComponentFactoryResolver=lp,e.ComponentRef=op,e.ContentChild=Bl,e.ContentChildren=Ll,e.DebugElement=F_,e.DebugEventListener=__,e.DebugNode=M_,e.DefaultIterableDiffer=xp,e.Directive=Wg,e.ElementRef=hp,e.EmbeddedViewRef=m_,e.ErrorHandler=Oo,e.EventEmitter=Ky,e.Host=E,e.HostBinding=$g,e.HostListener=Xg,e.INJECTOR=ce,e.Inject=b,e.Injectable=qs,e.InjectionToken=le,e.Injector=ll,e.Input=Jg,e.IterableDiffers=jp,e.KeyValueDiffers=Ap,e.LOCALE_ID=Cm,e.ModuleWithComponentFactories=km,e.NO_ERRORS_SCHEMA={name:"no-errors-schema"},e.NgModule=am,e.NgModuleFactory=Re,e.NgModuleFactoryLoader=l_,e.NgModuleRef=Ae,e.NgProbeToken=e_,e.NgZone=Hm,e.Optional=C,e.Output=Yg,e.PACKAGE_ROOT_URL=wm,e.PLATFORM_ID=mm,e.PLATFORM_INITIALIZER=gm,e.Pipe=Gg,e.PlatformRef=i_,e.Query=Sl,e.QueryList=Jy,e.ReflectiveInjector=Ml,e.ReflectiveKey=Cl,e.Renderer2=mp,e.RendererFactory2=yp,e.ResolvedReflectiveFactory=Pl,e.Sanitizer=wp,e.Self=I,e.SimpleChange=qd,e.SkipSelf=x,e.SystemJsNgModuleLoader=v_,e.SystemJsNgModuleLoaderConfig=p_,e.TRANSLATIONS=Im,e.TRANSLATIONS_FORMAT=xm,e.TemplateRef=Mp,e.Testability=Km,e.TestabilityRegistry=Gm,e.Type=Es,e.VERSION=bp,e.Version=gp,e.ViewChild=zl,e.ViewChildren=Ul,e.ViewContainerRef=Hp,e.ViewRef=g_,e.WrappedValue=tc,e.asNativeElements=function fb(e){return e.map((function(e){return e.nativeElement}))},e.assertPlatform=r_,e.createPlatform=t_,e.createPlatformFactory=n_,e.defineInjectable=D,e.destroyPlatform=function db(){Zm&&!Zm.destroyed&&Zm.destroy()},e.enableProdMode=function pb(){if(No)throw new Error("Cannot enable prod mode after platform setup.");Po=!1},e.forwardRef=z,e.getDebugNode=R_,e.getModuleFactory=f_,e.getPlatform=o_,e.inject=xe,e.isDevMode=To,e.platformCore=H_,e.resolveForwardRef=Q,e.setTestabilityGetter=function hb(e){Jm=e},e.ɵ0=w,e.ɵ1=k,e.ɵALLOW_MULTIPLE_PLATFORMS=Xm,e.ɵAPP_ID_RANDOM_PROVIDER=hm,e.ɵCodegenComponentFactoryResolver=cp,e.ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__=function(e){return Promise.resolve(Dm(e))},e.ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__=Dm,e.ɵCompiler_compileModuleAsync__POST_R3__=function(e){return Promise.resolve(Pm(e))},e.ɵCompiler_compileModuleSync__POST_R3__=Pm,e.ɵComponentFactory=ip,e.ɵConsole=bm,e.ɵDEFAULT_LOCALE_ID=jv,e.ɵEMPTY_ARRAY=[],e.ɵEMPTY_MAP={},e.ɵINJECTOR_IMPL__POST_R3__=function vb(e,t,n){return el({name:n},t,e,n)},e.ɵINJECTOR_SCOPE=Ks,e.ɵLifecycleHooksFeature=Sd,e.ɵNG_COMP_DEF=ne,e.ɵNG_DIR_DEF=re,e.ɵNG_ELEMENT_ID=se,e.ɵNG_INJ_DEF=M,e.ɵNG_MOD_DEF=ie,e.ɵNG_PIPE_DEF=oe,e.ɵNG_PROV_DEF=V,e.ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR=dv,e.ɵNO_CHANGE=hr,e.ɵNgModuleFactory=Ny,e.ɵNoopNgZone=Wm,e.ɵReflectionCapabilities=Ds,e.ɵRender3ComponentFactory=Cv,e.ɵRender3ComponentRef=xv,e.ɵRender3NgModuleRef=Py,e.ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__=Is,e.ɵSWITCH_COMPILE_COMPONENT__POST_R3__=em,e.ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__=tm,e.ɵSWITCH_COMPILE_INJECTABLE__POST_R3__=function yb(e,t){var n=null,r=null;e.hasOwnProperty(V)||(Object.defineProperty(e,V,{get:function(){return null===n&&(n=ee().compileInjectable(je,"ng:///"+e.name+"/ɵprov.js",Bs(e,t))),n}}),e.hasOwnProperty(F)||(e[F]=function(){return e[V]})),e.hasOwnProperty(ue)||Object.defineProperty(e,ue,{get:function(){if(null===r){var n=Bs(e,t),o=ee();r=o.compileFactory(je,"ng:///"+e.name+"/ɵfac.js",{name:n.name,type:n.type,typeArgumentCount:n.typeArgumentCount,deps:Vs(e),injectFn:"inject",target:o.R3FactoryTarget.Pipe})}return r},configurable:!0})},e.ɵSWITCH_COMPILE_NGMODULE__POST_R3__=um,e.ɵSWITCH_COMPILE_PIPE__POST_R3__=nm,e.ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__=function gb(e){return ms(e,Xt(),qt())},e.ɵSWITCH_IVY_ENABLED__POST_R3__=!0,e.ɵSWITCH_RENDERER2_FACTORY__POST_R3__=function mb(){var e=qt(),t=ki(Xt().index,e);return function n(e){var t=e[mt];if(zn(t))return t;throw new Error("Cannot inject Renderer2 when the application uses Renderer3!")}(At(t)?t:e)},e.ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__=function _b(e,t){return _s(e,t,Xt(),qt())},e.ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__=function wb(e,t){return ws(e,t,Xt(),qt())},e.ɵ_sanitizeHtml=ri,e.ɵ_sanitizeStyle=ui,e.ɵ_sanitizeUrl=Ro,e.ɵallowSanitizationBypassAndThrow=dr,e.ɵand=function bb(e,t,n,r,o,i){e|=1;var a=vh(t);return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:e,checkIndex:-1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:a.matchedQueries,matchedQueryIds:a.matchedQueryIds,references:a.references,ngContentIndex:n,childCount:r,bindings:[],bindingFlags:0,outputs:[],element:{ns:null,name:null,attrs:null,template:i?_h(i):null,componentProvider:null,componentView:null,componentRendererType:null,publicProviders:null,allProviders:null,handleEvent:o||Xp},provider:null,text:null,query:null,ngContent:null}},e.ɵangular_packages_core_core_a=q,e.ɵangular_packages_core_core_b=be,e.ɵangular_packages_core_core_ba=bn,e.ɵangular_packages_core_core_bc=pi,e.ɵangular_packages_core_core_bd=g,e.ɵangular_packages_core_core_be=m,e.ɵangular_packages_core_core_bf=P,e.ɵangular_packages_core_core_bh=Ue,e.ɵangular_packages_core_core_bi=Ca,e.ɵangular_packages_core_core_c=Oe,e.ɵangular_packages_core_core_d=Fl,e.ɵangular_packages_core_core_e=El,e.ɵangular_packages_core_core_f=Dl,e.ɵangular_packages_core_core_g=pm,e.ɵangular_packages_core_core_h=ms,e.ɵangular_packages_core_core_i=_s,e.ɵangular_packages_core_core_j=c_,e.ɵangular_packages_core_core_k=w_,e.ɵangular_packages_core_core_l=b_,e.ɵangular_packages_core_core_m=Cp,e.ɵangular_packages_core_core_n=Np,e.ɵangular_packages_core_core_o=L_,e.ɵangular_packages_core_core_p=B_,e.ɵangular_packages_core_core_q=U_,e.ɵangular_packages_core_core_r=z_,e.ɵangular_packages_core_core_s=Q_,e.ɵangular_packages_core_core_t=iv,e.ɵangular_packages_core_core_u=Yp,e.ɵangular_packages_core_core_v=bv,e.ɵangular_packages_core_core_w=lo,e.ɵangular_packages_core_core_x=Lt,e.ɵangular_packages_core_core_y=qt,e.ɵangular_packages_core_core_z=Xt,e.ɵbypassSanitizationTrustHtml=function Cb(e){return new ar(e)},e.ɵbypassSanitizationTrustResourceUrl=function Ib(e){return new cr(e)},e.ɵbypassSanitizationTrustScript=function xb(e){return new sr(e)},e.ɵbypassSanitizationTrustStyle=function Eb(e){return new ur(e)},e.ɵbypassSanitizationTrustUrl=function kb(e){return new lr(e)},e.ɵccf=function Ob(e,t,n,r,o,i){return new Lh(e,t,n,r,o,i)},e.ɵclearOverrides=function Pb(){return kw(),$p.clearOverrides()},e.ɵclearResolutionOfComponentResourcesQueue=Kl,e.ɵcmf=function Nb(e,t,n){return new cb(e,t,n)},e.ɵcompileComponent=Dg,e.ɵcompileDirective=jg,e.ɵcompileNgModule=xg,e.ɵcompileNgModuleDefs=Eg,e.ɵcompileNgModuleFactory__POST_R3__=function Tb(e,t,n){var r=new Ny(n);if(function o(){return 0===ql.size}())return Promise.resolve(r);var i=function a(e){var t=[];return e.forEach((function(e){return e&&t.push.apply(t,f(e))})),t}(e.get(Sm,[]).concat(t).map((function(e){return e.providers})));if(0===i.length)return Promise.resolve(r);var u=ee(),s=ll.create({providers:i}).get(u.ResourceLoader);return Ql((function(e){return Promise.resolve(s.get(e))})).then((function(){return r}))},e.ɵcompilePipe=qg,e.ɵcreateInjector=el,e.ɵcrt=function Db(e){return{id:"$$undefined",styles:e.styles,encapsulation:e.encapsulation,data:e.data}},e.ɵdefaultIterableDiffers=Sp,e.ɵdefaultKeyValueDiffers=Vp,e.ɵdetectChanges=function jb(e){Du(Si(e),e)},e.ɵdevModeEqual=ec,e.ɵdid=function Ab(e,t,n,r,o,i,a,u){var s=[];if(a)for(var l in a){var f=c(a[l],2);s[f[0]]={flags:8,name:l,nonMinifiedName:f[1],ns:null,securityContext:null,suffix:null}}var d=[];if(u)for(var p in u)d.push({type:1,propName:p,target:null,eventName:u[p]});return iv(e,t|=16384,n,r,o,o,i,s,d)},e.ɵeld=function Rb(t,n,r,o,i,a,u,s,l,f,d,p){var h;void 0===u&&(u=[]),f||(f=Xp);var v=vh(r),y=v.matchedQueries,g=v.references,m=v.matchedQueryIds,_=null,w=null;a&&(_=(h=c(kh(a),2))[0],w=h[1]),s=s||[];for(var b=[],C=0;C<s.length;C++){var I=c(s[C],3),x=I[0],E=I[2],k=c(kh(I[1]),2),O=k[0],P=k[1],N=void 0,T=void 0;switch(15&x){case 4:T=E;break;case 1:case 8:N=E}b[C]={flags:x,ns:O,name:P,nonMinifiedName:P,securityContext:N,suffix:T}}l=l||[];var D=[];for(C=0;C<l.length;C++){var j=c(l[C],2);D[C]={type:0,target:j[0],eventName:j[1],propName:null}}var A=(u=u||[]).map((function(e){var t=c(e,2),n=t[1],r=c(kh(t[0]),2);return[r[0],r[1],n]}));return p=function R(t){if(t&&"$$undefined"===t.id){var n=null!=t.encapsulation&&t.encapsulation!==e.ViewEncapsulation.None||t.styles.length||Object.keys(t.data).length;t.id=n?"c"+nh++:"$$empty"}return t&&"$$empty"===t.id&&(t=null),t||null}(p),d&&(n|=33554432),{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:t,flags:n|=1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:y,matchedQueryIds:m,references:g,ngContentIndex:o,childCount:i,bindings:b,bindingFlags:Oh(b),outputs:D,element:{ns:_,name:w,attrs:A,template:null,componentProvider:null,componentView:d||null,componentRendererType:p,publicProviders:null,allProviders:null,handleEvent:f||Xp},provider:null,text:null,query:null,ngContent:null}},e.ɵfindLocaleData=Nv,e.ɵflushModuleScopingQueueAsMuchAsPossible=Cg,e.ɵgetComponentViewDefinitionFactory=Hh,e.ɵgetDebugNode__POST_R3__=A_,e.ɵgetDirectives=Cd,e.ɵgetHostElement=xd,e.ɵgetInjectableDef=A,e.ɵgetLContext=Ai,e.ɵgetLocalePluralCase=Tv,e.ɵgetModuleFactory__POST_R3__=function Sb(e){var t=ky(e);if(!t)throw d_(e);return new Ny(t)},e.ɵgetSanitizationBypassType=pr,e.ɵglobal=X,e.ɵinitServicesIfNeeded=kw,e.ɵinlineInterpolate=function Vb(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m,_){switch(e){case 1:return t+Ph(n)+r;case 2:return t+Ph(n)+r+Ph(o)+i;case 3:return t+Ph(n)+r+Ph(o)+i+Ph(a)+u;case 4:return t+Ph(n)+r+Ph(o)+i+Ph(a)+u+Ph(s)+l;case 5:return t+Ph(n)+r+Ph(o)+i+Ph(a)+u+Ph(s)+l+Ph(c)+f;case 6:return t+Ph(n)+r+Ph(o)+i+Ph(a)+u+Ph(s)+l+Ph(c)+f+Ph(d)+p;case 7:return t+Ph(n)+r+Ph(o)+i+Ph(a)+u+Ph(s)+l+Ph(c)+f+Ph(d)+p+Ph(h)+v;case 8:return t+Ph(n)+r+Ph(o)+i+Ph(a)+u+Ph(s)+l+Ph(c)+f+Ph(d)+p+Ph(h)+v+Ph(y)+g;case 9:return t+Ph(n)+r+Ph(o)+i+Ph(a)+u+Ph(s)+l+Ph(c)+f+Ph(d)+p+Ph(h)+v+Ph(y)+g+Ph(m)+_;default:throw new Error("Does not support more than 9 expressions")}},e.ɵinterpolate=function Mb(e,t){for(var n="",r=0;r<2*e;r+=2)n=n+t[r]+Ph(t[r+1]);return n+t[2*e]},e.ɵisBoundToModule__POST_R3__=function Fb(e){return e.isBoundToModule},e.ɵisDefaultChangeDetectionStrategy=function Hb(t){return null==t||t===e.ChangeDetectionStrategy.Default},e.ɵisListLikeIterable=nc,e.ɵisObservable=gf,e.ɵisPromise=yf,e.ɵivyEnabled=Em,e.ɵlooseIdentical=Xl,e.ɵmakeDecorator=v,e.ɵmarkDirty=Nc,e.ɵmod=function Lb(e){for(var t={},n=[],r=null,o=0;o<e.length;o++){var i=e[o];i.token===Ks&&(r=i.value),1073741824&i.flags&&n.push(i.token),i.index=o,t[th(i.token)]=i}return{factory:null,providersByKey:t,providers:e,modules:n,scope:r}},e.ɵmpd=function Bb(e,t,n,r){return n=Q(n),{index:-1,deps:yh(r,B(t)),flags:e,token:t,value:n}},e.ɵncd=function Ub(e,t){return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:-1,flags:8,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:e,childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:null,ngContent:{index:t}}},e.ɵnov=function zb(e,t){var n=e.def.nodes[t];if(1&n.flags){var r=Wp(e,n.nodeIndex);return n.element.template?r.template:r.renderElement}if(2&n.flags)return Zp(e,n.nodeIndex).renderText;if(20240&n.flags)return Kp(e,n.nodeIndex).instance;throw new Error("Illegal state: read nodeValue for node index "+t)},e.ɵoverrideComponentView=function Qb(e,t){return kw(),$p.overrideComponentView(e,t)},e.ɵoverrideProvider=
|
|
1138
|
+
e.ANALYZE_FOR_ENTRY_COMPONENTS=Rs,e.APP_BOOTSTRAP_LISTENER=jg,e.APP_ID=xg,e.APP_INITIALIZER=Cg,e.ApplicationInitStatus=Ig,e.ApplicationModule=s_,e.ApplicationRef=wm,e.Attribute=O,e.COMPILER_OPTIONS=Kg,e.CUSTOM_ELEMENTS_SCHEMA={name:"custom-elements"},e.ChangeDetectorRef=mu,e.Compiler=Wg,e.CompilerFactory=Gg,e.Component=ag,e.ComponentFactory=dd,e.ComponentFactoryResolver=yd,e.ComponentRef=fd,e.ContentChild=Fs,e.ContentChildren=Vs,e.DEFAULT_CURRENCY_CODE=Rg,e.DebugElement=e_,e.DebugEventListener=Dm,e.DebugNode=Xm,e.DefaultIterableDiffer=jd,e.Directive=ig,e.ElementRef=bd,e.EmbeddedViewRef=jm,e.ErrorHandler=Tr,e.EventEmitter=ay,e.Host=E,e.HostBinding=cg,e.HostListener=fg,e.INJECTOR=fe,e.Inject=b,e.Injectable=Bu,e.InjectionToken=ce,e.Injector=is,e.Input=sg,e.IterableDiffers=Hd,e.KeyValueDiffers=Ld,e.LOCALE_ID=Sg,e.ModuleWithComponentFactories=Hg,e.NO_ERRORS_SCHEMA={name:"no-errors-schema"},e.NgModule=mg,e.NgModuleFactory=Re,e.NgModuleFactoryLoader=Cm,e.NgModuleRef=Se,e.NgProbeToken=pm,e.NgZone=$g,e.Optional=C,e.Output=lg,e.PACKAGE_ROOT_URL=Dg,e.PLATFORM_ID=Tg,e.PLATFORM_INITIALIZER=Ng,e.Pipe=ug,e.PlatformRef=mm,e.Query=js,e.QueryList=sy,e.ReflectiveInjector=As,e.ReflectiveKey=ms,e.Renderer2=Ed,e.RendererFactory2=Id,e.ResolvedReflectiveFactory=xs,e.Sanitizer=Od,e.Self=I,e.SimpleChange=$f,e.SkipSelf=x,e.SystemJsNgModuleLoader=Pm,e.SystemJsNgModuleLoaderConfig=km,e.TRANSLATIONS=Vg,e.TRANSLATIONS_FORMAT=Fg,e.TemplateRef=zd,e.Testability=um,e.TestabilityRegistry=sm,e.Type=bu,e.VERSION=Pd,e.Version=xd,e.ViewChild=Hs,e.ViewChildren=Ms,e.ViewContainerRef=Zd,e.ViewRef=Tm,e.WrappedValue=Ys,e.asNativeElements=function Ow(e){return e.map((function(e){return e.nativeElement}))},e.assertPlatform=ym,e.createPlatform=hm,e.createPlatformFactory=vm,e.defineInjectable=j,e.destroyPlatform=function Pw(){im&&!im.destroyed&&im.destroy()},e.enableProdMode=function Nw(){if(Br)throw new Error("Cannot enable prod mode after platform setup.");Lr=!1},e.forwardRef=z,e.getDebugNode=Gm,e.getModuleFactory=xm,e.getPlatform=gm,e.inject=Ee,e.isDevMode=Ur,e.platformCore=t_,e.resolveForwardRef=q,e.setTestabilityGetter=function Tw(e){lm=e},e.ɵ0=w,e.ɵ1=k,e.ɵALLOW_MULTIPLE_PLATFORMS=dm,e.ɵAPP_ID_RANDOM_PROVIDER=kg,e.ɵCodegenComponentFactoryResolver=gd,e.ɵCompiler_compileModuleAndAllComponentsAsync__POST_R3__=function(e){return Promise.resolve(zg(e))},e.ɵCompiler_compileModuleAndAllComponentsSync__POST_R3__=zg,e.ɵCompiler_compileModuleAsync__POST_R3__=function(e){return Promise.resolve(Bg(e))},e.ɵCompiler_compileModuleSync__POST_R3__=Bg,e.ɵComponentFactory=dd,e.ɵConsole=Ag,e.ɵDEFAULT_LOCALE_ID=Hh,e.ɵEMPTY_ARRAY=[],e.ɵEMPTY_MAP={},e.ɵINJECTOR_IMPL__POST_R3__=function jw(e,t,n){return Ju({name:n},t,e,n)},e.ɵINJECTOR_SCOPE=zu,e.ɵLifecycleHooksFeature=Uf,e.ɵNG_COMP_DEF=re,e.ɵNG_DIR_DEF=oe,e.ɵNG_ELEMENT_ID=le,e.ɵNG_INJ_DEF=F,e.ɵNG_MOD_DEF=ae,e.ɵNG_PIPE_DEF=ie,e.ɵNG_PROV_DEF=V,e.ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR=_h,e.ɵNO_CHANGE=vi,e.ɵNgModuleFactory=Vv,e.ɵNoopNgZone=am,e.ɵReflectionCapabilities=Ou,e.ɵRender3ComponentFactory=Nh,e.ɵRender3ComponentRef=jh,e.ɵRender3NgModuleRef=Rv,e.ɵSWITCH_CHANGE_DETECTOR_REF_FACTORY__POST_R3__=_u,e.ɵSWITCH_COMPILE_COMPONENT__POST_R3__=dg,e.ɵSWITCH_COMPILE_DIRECTIVE__POST_R3__=pg,e.ɵSWITCH_COMPILE_INJECTABLE__POST_R3__=function Dw(e,t){var n=null,r=null;e.hasOwnProperty(V)||(Object.defineProperty(e,V,{get:function(){return null===n&&(n=te().compileInjectable(Ae,"ng:///"+e.name+"/ɵprov.js",Fu(e,t))),n}}),e.hasOwnProperty(M)||(e[M]=function(){return e[V]})),e.hasOwnProperty(se)||Object.defineProperty(e,se,{get:function(){if(null===r){var n=Fu(e,t),o=te();r=o.compileFactory(Ae,"ng:///"+e.name+"/ɵfac.js",{name:n.name,type:n.type,typeArgumentCount:n.typeArgumentCount,deps:Du(e),injectFn:"inject",target:o.R3FactoryTarget.Pipe})}return r},configurable:!0})},e.ɵSWITCH_COMPILE_NGMODULE__POST_R3__=_g,e.ɵSWITCH_COMPILE_PIPE__POST_R3__=hg,e.ɵSWITCH_ELEMENT_REF_FACTORY__POST_R3__=function Aw(e){return hu(e,Xt(),Jt())},e.ɵSWITCH_IVY_ENABLED__POST_R3__=!0,e.ɵSWITCH_RENDERER2_FACTORY__POST_R3__=function Sw(){var e=Jt(),t=Lo(Xt().index,e);return function n(e){var t=e[Ct];if(Ln(t))return t;throw new Error("Cannot inject Renderer2 when the application uses Renderer3!")}(Ft(t)?t:e)},e.ɵSWITCH_TEMPLATE_REF_FACTORY__POST_R3__=function Rw(e,t){return vu(e,t,Xt(),Jt())},e.ɵSWITCH_VIEW_CONTAINER_REF_FACTORY__POST_R3__=function Vw(e,t){return yu(e,t,Xt(),Jt())},e.ɵ_sanitizeHtml=yo,e.ɵ_sanitizeStyle=wo,e.ɵ_sanitizeUrl=Zr,e.ɵallowSanitizationBypassAndThrow=Mr,e.ɵand=function Fw(e,t,n,r,o,i){e|=1;var a=Cp(t);return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,flags:e,checkIndex:-1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:a.matchedQueries,matchedQueryIds:a.matchedQueryIds,references:a.references,ngContentIndex:n,childCount:r,bindings:[],bindingFlags:0,outputs:[],element:{ns:null,name:null,attrs:null,template:i?kp(i):null,componentProvider:null,componentView:null,componentRendererType:null,publicProviders:null,allProviders:null,handleEvent:o||ap},provider:null,text:null,query:null,ngContent:null}},e.ɵangular_packages_core_core_a=Z,e.ɵangular_packages_core_core_b=Ce,e.ɵangular_packages_core_core_ba=Jt,e.ɵangular_packages_core_core_bb=Xt,e.ɵangular_packages_core_core_bc=an,e.ɵangular_packages_core_core_bd=wn,e.ɵangular_packages_core_core_bf=Wv,e.ɵangular_packages_core_core_bg=Kv,e.ɵangular_packages_core_core_bh=Gv,e.ɵangular_packages_core_core_bi=Jv,e.ɵangular_packages_core_core_bj=Yv,e.ɵangular_packages_core_core_bk=ko,e.ɵangular_packages_core_core_bl=g,e.ɵangular_packages_core_core_bm=m,e.ɵangular_packages_core_core_bn=P,e.ɵangular_packages_core_core_bp=Ze,e.ɵangular_packages_core_core_bq=gi,e.ɵangular_packages_core_core_c=Pe,e.ɵangular_packages_core_core_d=Ss,e.ɵangular_packages_core_core_e=bs,e.ɵangular_packages_core_core_f=Os,e.ɵangular_packages_core_core_g=Eg,e.ɵangular_packages_core_core_h=hu,e.ɵangular_packages_core_core_i=vu,e.ɵangular_packages_core_core_j=Im,e.ɵangular_packages_core_core_k=Am,e.ɵangular_packages_core_core_l=Sm,e.ɵangular_packages_core_core_m=Jm,e.ɵangular_packages_core_core_n=Nd,e.ɵangular_packages_core_core_o=Vd,e.ɵangular_packages_core_core_p=n_,e.ɵangular_packages_core_core_q=r_,e.ɵangular_packages_core_core_r=o_,e.ɵangular_packages_core_core_s=i_,e.ɵangular_packages_core_core_t=a_,e.ɵangular_packages_core_core_u="USD",e.ɵangular_packages_core_core_v=dh,e.ɵangular_packages_core_core_w=op,e.ɵangular_packages_core_core_x=Ph,e.ɵangular_packages_core_core_y=pr,e.ɵangular_packages_core_core_z=Zt,e.ɵbypassSanitizationTrustHtml=function Mw(e){return new Dr(e)},e.ɵbypassSanitizationTrustResourceUrl=function Hw(e){return new Vr(e)},e.ɵbypassSanitizationTrustScript=function Lw(e){return new Sr(e)},e.ɵbypassSanitizationTrustStyle=function Bw(e){return new Ar(e)},e.ɵbypassSanitizationTrustUrl=function Uw(e){return new Rr(e)},e.ɵccf=function Qw(e,t,n,r,o,i){return new Wp(e,t,n,r,o,i)},e.ɵclearOverrides=function zw(){return U_(),ip.clearOverrides()},e.ɵclearResolutionOfComponentResourcesQueue=zs,e.ɵcmf=function qw(e,t,n){return new kw(e,t,n)},e.ɵcompileComponent=Qy,e.ɵcompileDirective=zy,e.ɵcompileNgModule=Vy,e.ɵcompileNgModuleDefs=Fy,e.ɵcompileNgModuleFactory__POST_R3__=function Zw(e,t,n){var r=new Vv(n);if(function o(){return 0===Bs.size}())return Promise.resolve(r);var i=function a(e){var t=[];return e.forEach((function(e){return e&&t.push.apply(t,f(e))})),t}(e.get(Kg,[]).concat(t).map((function(e){return e.providers})));if(0===i.length)return Promise.resolve(r);var u=te(),s=is.create({providers:i}).get(u.ResourceLoader);return Ls((function(e){return Promise.resolve(s.get(e))})).then((function(){return r}))},e.ɵcompilePipe=rg,e.ɵcreateInjector=Ju,e.ɵcrt=function Ww(e){return{id:"$$undefined",styles:e.styles,encapsulation:e.encapsulation,data:e.data}},e.ɵdefaultIterableDiffers=Ud,e.ɵdefaultKeyValueDiffers=Qd,e.ɵdetectChanges=El,e.ɵdevModeEqual=Js,e.ɵdid=function Kw(e,t,n,r,o,i,a,u){var s=[];if(a)for(var l in a){var f=c(a[l],2);s[f[0]]={flags:8,name:l,nonMinifiedName:f[1],ns:null,securityContext:null,suffix:null}}var d=[];if(u)for(var p in u)d.push({type:1,propName:p,target:null,eventName:u[p]});return dh(e,t|=16384,n,r,o,o,i,s,d)},e.ɵeld=function Gw(t,n,r,o,i,a,u,s,l,f,d,p){var h;void 0===u&&(u=[]),f||(f=ap);var v=Cp(r),y=v.matchedQueries,g=v.references,m=v.matchedQueryIds,_=null,w=null;a&&(_=(h=c(Ap(a),2))[0],w=h[1]),s=s||[];for(var b=[],C=0;C<s.length;C++){var I=c(s[C],3),x=I[0],E=I[2],k=c(Ap(I[1]),2),O=k[0],P=k[1],N=void 0,T=void 0;switch(15&x){case 4:T=E;break;case 1:case 8:N=E}b[C]={flags:x,ns:O,name:P,nonMinifiedName:P,securityContext:N,suffix:T}}l=l||[];var j=[];for(C=0;C<l.length;C++){var D=c(l[C],2);j[C]={type:0,target:D[0],eventName:D[1],propName:null}}var A=(u=u||[]).map((function(e){var t=c(e,2),n=t[1],r=c(Ap(t[0]),2);return[r[0],r[1],n]}));return p=function S(t){if(t&&"$$undefined"===t.id){var n=null!=t.encapsulation&&t.encapsulation!==e.ViewEncapsulation.None||t.styles.length||Object.keys(t.data).length;t.id=n?"c"+lp++:"$$empty"}return t&&"$$empty"===t.id&&(t=null),t||null}(p),d&&(n|=33554432),{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:t,flags:n|=1,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:y,matchedQueryIds:m,references:g,ngContentIndex:o,childCount:i,bindings:b,bindingFlags:Sp(b),outputs:j,element:{ns:_,name:w,attrs:A,template:null,componentProvider:null,componentView:d||null,componentRendererType:p,publicProviders:null,allProviders:null,handleEvent:f||ap},provider:null,text:null,query:null,ngContent:null}},e.ɵfindLocaleData=Vh,e.ɵflushModuleScopingQueueAsMuchAsPossible=Sy,e.ɵgetComponentViewDefinitionFactory=Zp,e.ɵgetDebugNodeR2=Ym,e.ɵgetDebugNode__POST_R3__=Km,e.ɵgetDirectives=Nf,e.ɵgetHostElement=jf,e.ɵgetInjectableDef=A,e.ɵgetLContext=Ko,e.ɵgetLocaleCurrencyCode=function Jw(t){return Vh(t)[e.ɵLocaleDataIndex.CurrencyCode]||null},e.ɵgetLocalePluralCase=Fh,e.ɵgetModuleFactory__POST_R3__=function Yw(e){var t=Av(e);if(!t)throw Em(e);return new Vv(t)},e.ɵgetSanitizationBypassType=Hr,e.ɵglobal=ee,e.ɵinitServicesIfNeeded=U_,e.ɵinlineInterpolate=function $w(e,t,n,r,o,i,a,u,s,l,c,f,d,p,h,v,y,g,m,_){switch(e){case 1:return t+Rp(n)+r;case 2:return t+Rp(n)+r+Rp(o)+i;case 3:return t+Rp(n)+r+Rp(o)+i+Rp(a)+u;case 4:return t+Rp(n)+r+Rp(o)+i+Rp(a)+u+Rp(s)+l;case 5:return t+Rp(n)+r+Rp(o)+i+Rp(a)+u+Rp(s)+l+Rp(c)+f;case 6:return t+Rp(n)+r+Rp(o)+i+Rp(a)+u+Rp(s)+l+Rp(c)+f+Rp(d)+p;case 7:return t+Rp(n)+r+Rp(o)+i+Rp(a)+u+Rp(s)+l+Rp(c)+f+Rp(d)+p+Rp(h)+v;case 8:return t+Rp(n)+r+Rp(o)+i+Rp(a)+u+Rp(s)+l+Rp(c)+f+Rp(d)+p+Rp(h)+v+Rp(y)+g;case 9:return t+Rp(n)+r+Rp(o)+i+Rp(a)+u+Rp(s)+l+Rp(c)+f+Rp(d)+p+Rp(h)+v+Rp(y)+g+Rp(m)+_;default:throw new Error("Does not support more than 9 expressions")}},e.ɵinterpolate=function Xw(e,t){for(var n="",r=0;r<2*e;r+=2)n=n+t[r]+Rp(t[r+1]);return n+t[2*e]},e.ɵisBoundToModule__POST_R3__=function eb(e){return e.isBoundToModule},e.ɵisDefaultChangeDetectionStrategy=function tb(t){return null==t||t===e.ChangeDetectionStrategy.Default},e.ɵisListLikeIterable=$s,e.ɵisObservable=Kl,e.ɵisPromise=Wl,e.ɵivyEnabled=Mg,e.ɵlooseIdentical=Gs,e.ɵmakeDecorator=v,e.ɵmarkDirty=kl,e.ɵmod=function nb(e){for(var t={},n=[],r=null,o=0;o<e.length;o++){var i=e[o];i.token===zu&&(r=i.value),1073741824&i.flags&&n.push(i.token),i.index=o,t[sp(i.token)]=i}return{factory:null,providersByKey:t,providers:e,modules:n,scope:r}},e.ɵmpd=function rb(e,t,n,r){return n=q(n),{index:-1,deps:Ip(r,B(t)),flags:e,token:t,value:n}},e.ɵncd=function ob(e,t){return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:-1,flags:8,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:e,childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:null,ngContent:{index:t}}},e.ɵnov=function ib(e,t){var n=e.def.nodes[t];if(1&n.flags){var r=ep(e,n.nodeIndex);return n.element.template?r.template:r.renderElement}if(2&n.flags)return Xd(e,n.nodeIndex).renderText;if(20240&n.flags)return tp(e,n.nodeIndex).instance;throw new Error("Illegal state: read nodeValue for node index "+t)},e.ɵoverrideComponentView=function ab(e,t){return U_(),ip.overrideComponentView(e,t)},e.ɵoverrideProvider=
|
|
1132
1139
|
/**
|
|
1133
1140
|
* @license
|
|
1134
1141
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -1136,7 +1143,7 @@ e.ANALYZE_FOR_ENTRY_COMPONENTS=Hl,e.APP_BOOTSTRAP_LISTENER=_m,e.APP_ID=dm,e.APP_
|
|
|
1136
1143
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1137
1144
|
* found in the LICENSE file at https://angular.io/license
|
|
1138
1145
|
*/
|
|
1139
|
-
function
|
|
1146
|
+
function ub(e){return U_(),ip.overrideProvider(e)},e.ɵpad=function sb(e,t){return m_(32,e,Ue(t))},e.ɵpatchComponentDefWithScope=Hy,e.ɵpid=function lb(e,t,n){return dh(-1,e|=16,null,0,t,t,n)},e.ɵpod=function cb(e,t){for(var n=Object.keys(t),r=n.length,o=[],i=0;i<r;i++)o.push(n[i]);return m_(64,e,o)},e.ɵppd=function fb(e,t){return m_(128,e,Ue(t+1))},e.ɵprd=function db(e,t,n,r,o){return dh(-1,e,t,0,n,r,o)},e.ɵpublishDefaultGlobalUtils=function pb(){Ff||(Ff=!0,Mf("getComponent",xf),Mf("getContext",Ef),Mf("getListeners",Df),Mf("getOwningComponent",kf),Mf("getHostElement",jf),Mf("getInjector",Pf),Mf("getRootComponents",Of),Mf("getDirectives",Nf),Mf("applyChanges",Rf))},e.ɵpublishGlobalUtil=Mf,e.ɵqud=function hb(e,t,n){var r=[];for(var o in n)r.push({propName:o,bindingType:n[o]});return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:-1,flags:e,childFlags:0,directChildFlags:0,childMatchedQueries:0,ngContentIndex:-1,matchedQueries:{},matchedQueryIds:0,references:{},childCount:0,bindings:[],bindingFlags:0,outputs:[],element:null,provider:null,text:null,query:{id:t,filterId:bp(t),bindings:r},ngContent:null}},e.ɵregisterLocaleData=function vb(t,n,r){"string"!=typeof n&&(r=n,n=t[e.ɵLocaleDataIndex.LocaleId]),n=n.toLowerCase().replace(/_/g,"-"),Rh[n]=t,r&&(Rh[n][e.ɵLocaleDataIndex.ExtraData]=r)},e.ɵregisterModuleFactory=function yb(e,t){var n=Tv.get(e);jv(e,n&&n.moduleType,t.moduleType),Tv.set(e,t)},e.ɵregisterNgModuleType=Dv,e.ɵrenderComponent=function gb(e,t){void 0===t&&(t={});var n=t.rendererFactory||Bn,r=t.sanitizer||null,o=at(e);o.type!=e&&(o.type=e);var i,a=o.selectors[0][0],u=na(n.createRenderer(null,null),t.host||a,o.encapsulation),s=o.onPush?576:528,l=Bf(t.scheduler,t.playerHandler),c=n.createRenderer(u,o),f=ta(0,-1,null,1,0,null,null,null,null,null),d=zi(null,f,l,s,null,null,n,c,void 0,t.injector||null);yn(d,null);try{n.begin&&n.begin(),i=Lf(Hf(u,o,d,n,c,null,r),o,d,l,t.hostFeatures||null),Wi(f,d,null),Ki(f,d,null,null)}finally{_n(),n.end&&n.end()}return i},e.ɵresetCompiledComponents=function mb(){new Map,new Map,Dy.length=0},e.ɵresolveComponentResources=Ls,e.ɵsetClassMetadata=
|
|
1140
1147
|
/**
|
|
1141
1148
|
* @license
|
|
1142
1149
|
* Copyright Google Inc. All Rights Reserved.
|
|
@@ -1144,4 +1151,4 @@ function qb(e){return kw(),$p.overrideProvider(e)},e.ɵpad=function Zb(e,t){retu
|
|
|
1144
1151
|
* Use of this source code is governed by an MIT-style license that can be
|
|
1145
1152
|
* found in the LICENSE file at https://angular.io/license
|
|
1146
1153
|
*/
|
|
1147
|
-
function
|
|
1154
|
+
function _b(e,t,n,r){return Ze((function(){var o,a=e,u=a.prototype?Object.getPrototypeOf(a.prototype):null,s=u&&u.constructor;null!==t&&(void 0===a.decorators||s&&s.decorators===a.decorators?a.decorators=t:(o=a.decorators).push.apply(o,f(t))),null!==n&&(a.ctorParameters=n),null!==r&&(a.propDecorators=void 0===a.propDecorators||s&&s.propDecorators===a.propDecorators?r:i(i({},a.propDecorators),r))}))},e.ɵsetCurrentInjector=we,e.ɵsetDocument=function wb(e){Mn=e},e.ɵsetLocaleId=Nv,e.ɵstore=jl,e.ɵstringify=B,e.ɵted=function bb(e,t,n){for(var r=[],o=1;o<n.length;o++)r[o-1]={flags:8,name:null,ns:null,nonMinifiedName:null,securityContext:null,suffix:n[o]};return{nodeIndex:-1,parent:null,renderParent:null,bindingIndex:-1,outputIndex:-1,checkIndex:e,flags:2,childFlags:0,directChildFlags:0,childMatchedQueries:0,matchedQueries:{},matchedQueryIds:0,references:{},ngContentIndex:t,childCount:0,bindings:r,bindingFlags:8,outputs:[],element:null,provider:null,text:{prefix:n[0]},query:null,ngContent:null}},e.ɵtransitiveScopesFor=Ly,e.ɵunregisterLocaleData=function Cb(){Rh={}},e.ɵunv=function Ib(e,t,n,r){if(Ys.isWrapped(r)){r=Ys.unwrap(r);var o=e.def.nodes[t].bindingIndex+n,i=Ys.unwrap(e.oldValues[o]);e.oldValues[o]=new Ys(i)}return r},e.ɵunwrapSafeValue=Fr,e.ɵvid=function xb(e,t,n,r){for(var o=0,i=0,a=0,u=0,s=0,l=null,c=null,f=!1,d=!1,p=null,h=0;h<t.length;h++){var v=t[h];if(v.nodeIndex=h,v.parent=l,v.bindingIndex=o,v.outputIndex=i,v.renderParent=c,a|=v.flags,s|=v.matchedQueryIds,v.element){var y=v.element;y.publicProviders=l?l.element.publicProviders:Object.create(null),y.allProviders=y.publicProviders,f=!1,d=!1,v.element.template&&(s|=v.element.template.nodeMatchedQueries)}if(C_(l,v,t.length),o+=v.bindings.length,i+=v.outputs.length,!c&&3&v.flags&&(p=v),20224&v.flags){f||(f=!0,l.element.publicProviders=Object.create(l.element.publicProviders),l.element.allProviders=l.element.publicProviders);var g=0!=(32768&v.flags);0==(8192&v.flags)||g?l.element.publicProviders[sp(v.provider.token)]=v:(d||(d=!0,l.element.allProviders=Object.create(l.element.publicProviders)),l.element.allProviders[sp(v.provider.token)]=v),g&&(l.element.componentProvider=v)}if(l?(l.childFlags|=v.flags,l.directChildFlags|=v.flags,l.childMatchedQueries|=v.matchedQueryIds,v.element&&v.element.template&&(l.childMatchedQueries|=v.element.template.nodeMatchedQueries)):u|=v.flags,v.childCount>0)l=v,b_(v)||(c=v);else for(;l&&h===l.nodeIndex+l.childCount;){var m=l.parent;m&&(m.childFlags|=l.childFlags,m.childMatchedQueries|=l.childMatchedQueries),c=(l=m)&&b_(l)?l.renderParent:l}}return{factory:null,nodeFlags:a,rootNodeFlags:u,nodeMatchedQueries:s,flags:e,nodes:t,updateDirectives:n||ap,updateRenderer:r||ap,handleEvent:function(e,n,r,o){return t[n].element.handleEvent(e,r,o)},bindingCount:o,outputCount:i,lastRenderRootNode:p}},e.ɵwhenRendered=function Eb(e){return gi(e).clean},e.ɵɵCopyDefinitionFeature=Yf,e.ɵɵInheritDefinitionFeature=zf,e.ɵɵNgOnChangesFeature=Xf,e.ɵɵProvidersFeature=cd,e.ɵɵadvance=mi,e.ɵɵattribute=al,e.ɵɵattributeInterpolate1=yl,e.ɵɵattributeInterpolate2=gl,e.ɵɵattributeInterpolate3=ml,e.ɵɵattributeInterpolate4=_l,e.ɵɵattributeInterpolate5=wl,e.ɵɵattributeInterpolate6=bl,e.ɵɵattributeInterpolate7=Cl,e.ɵɵattributeInterpolate8=Il,e.ɵɵattributeInterpolateV=xl,e.ɵɵclassMap=Ac,e.ɵɵclassMapInterpolate1=rf,e.ɵɵclassMapInterpolate2=of,e.ɵɵclassMapInterpolate3=af,e.ɵɵclassMapInterpolate4=uf,e.ɵɵclassMapInterpolate5=sf,e.ɵɵclassMapInterpolate6=lf,e.ɵɵclassMapInterpolate7=cf,e.ɵɵclassMapInterpolate8=ff,e.ɵɵclassMapInterpolateV=df,e.ɵɵclassProp=Tc,e.ɵɵcomponentHostSyntheticListener=Jl,e.ɵɵcontainer=Ol,e.ɵɵcontainerRefreshEnd=Tl,e.ɵɵcontainerRefreshStart=Nl,e.ɵɵcontentQuery=by,e.ɵɵdefaultStyleSanitizer=Po,e.ɵɵdefineComponent=Je,e.ɵɵdefineDirective=ot,e.ɵɵdefineInjectable=T,e.ɵɵdefineInjector=D,e.ɵɵdefineNgModule=tt,e.ɵɵdefinePipe=it,e.ɵɵdirectiveInject=Al,e.ɵɵdisableBindings=Gt,e.ɵɵelement=Ll,e.ɵɵelementContainer=Ql,e.ɵɵelementContainerEnd=Ul,e.ɵɵelementContainerStart=Bl,e.ɵɵelementEnd=Hl,e.ɵɵelementStart=Ml,e.ɵɵembeddedViewEnd=ql,e.ɵɵembeddedViewStart=zl,e.ɵɵenableBindings=Kt,e.ɵɵgetCurrentView=Zl,e.ɵɵgetFactoryOf=Cr,e.ɵɵgetInheritedFactory=Ir,e.ɵɵhostProperty=Cf,e.ɵɵi18n=gv,e.ɵɵi18nApply=Cv,e.ɵɵi18nAttributes=mv,e.ɵɵi18nEnd=pv,e.ɵɵi18nExp=bv,e.ɵɵi18nPostprocess=dv,e.ɵɵi18nStart=cv,e.ɵɵinject=Ie,e.ɵɵinjectAttribute=Sl,e.ɵɵinjectPipeChangeDetectorRef=Ny,e.ɵɵinvalidFactory=Rl,e.ɵɵinvalidFactoryDep=xe,e.ɵɵlistener=Gl,e.ɵɵloadQuery=xy,e.ɵɵnamespaceHTML=En,e.ɵɵnamespaceMathML=xn,e.ɵɵnamespaceSVG=In,e.ɵɵnextContext=ec,e.ɵɵpipe=$v,e.ɵɵpipeBind1=Xv,e.ɵɵpipeBind2=ey,e.ɵɵpipeBind3=ty,e.ɵɵpipeBind4=ny,e.ɵɵpipeBindV=ry,e.ɵɵprojection=ic,e.ɵɵprojectionDef=nc,e.ɵɵproperty=Vl,e.ɵɵpropertyInterpolate=ac,e.ɵɵpropertyInterpolate1=uc,e.ɵɵpropertyInterpolate2=sc,e.ɵɵpropertyInterpolate3=lc,e.ɵɵpropertyInterpolate4=cc,e.ɵɵpropertyInterpolate5=fc,e.ɵɵpropertyInterpolate6=dc,e.ɵɵpropertyInterpolate7=pc,e.ɵɵpropertyInterpolate8=hc,e.ɵɵpropertyInterpolateV=vc,e.ɵɵpureFunction0=Fv,e.ɵɵpureFunction1=Mv,e.ɵɵpureFunction2=Hv,e.ɵɵpureFunction3=Lv,e.ɵɵpureFunction4=Bv,e.ɵɵpureFunction5=Uv,e.ɵɵpureFunction6=Qv,e.ɵɵpureFunction7=zv,e.ɵɵpureFunction8=qv,e.ɵɵpureFunctionV=Zv,e.ɵɵqueryRefresh=gy,e.ɵɵreference=Dl,e.ɵɵresolveBody=nr,e.ɵɵresolveDocument=tr,e.ɵɵresolveWindow=er,e.ɵɵrestoreView=$t,e.ɵɵsanitizeHtml=bo,e.ɵɵsanitizeResourceUrl=xo,e.ɵɵsanitizeScript=Eo,e.ɵɵsanitizeStyle=Co,e.ɵɵsanitizeUrl=Io,e.ɵɵsanitizeUrlOrResourceUrl=Oo,e.ɵɵselect=_i,e.ɵɵsetComponentScope=Ye,e.ɵɵsetNgModuleScope=nt,e.ɵɵstaticContentQuery=Cy,e.ɵɵstaticViewQuery=my,e.ɵɵstyleMap=jc,e.ɵɵstyleProp=Nc,e.ɵɵstylePropInterpolate1=pf,e.ɵɵstylePropInterpolate2=hf,e.ɵɵstylePropInterpolate3=vf,e.ɵɵstylePropInterpolate4=yf,e.ɵɵstylePropInterpolate5=gf,e.ɵɵstylePropInterpolate6=mf,e.ɵɵstylePropInterpolate7=_f,e.ɵɵstylePropInterpolate8=wf,e.ɵɵstylePropInterpolateV=bf,e.ɵɵstyleSanitizer=Pc,e.ɵɵtemplate=Pl,e.ɵɵtemplateRefExtractor=Py,e.ɵɵtext=Zc,e.ɵɵtextInterpolate=Wc,e.ɵɵtextInterpolate1=Kc,e.ɵɵtextInterpolate2=Gc,e.ɵɵtextInterpolate3=Jc,e.ɵɵtextInterpolate4=Yc,e.ɵɵtextInterpolate5=$c,e.ɵɵtextInterpolate6=Xc,e.ɵɵtextInterpolate7=ef,e.ɵɵtextInterpolate8=tf,e.ɵɵtextInterpolateV=nf,e.ɵɵupdateSyntheticHostBinding=If,e.ɵɵviewQuery=_y,Object.defineProperty(e,"__esModule",{value:!0})}));
|