lwc 2.5.10-alpha1 → 2.7.0

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.
Files changed (54) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +168 -134
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +169 -135
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +2 -2
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +154 -133
  5. package/dist/engine-dom/iife/es5/engine-dom.js +185 -145
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +2 -2
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +172 -145
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +170 -136
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +2 -2
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +155 -134
  11. package/dist/engine-dom/umd/es5/engine-dom.js +186 -146
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +2 -2
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +173 -146
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +179 -142
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +2 -2
  16. package/dist/engine-server/esm/es2017/engine-server.js +179 -142
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +29 -130
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +30 -131
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +30 -131
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +37 -128
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +37 -128
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +31 -132
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +31 -132
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +38 -129
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +38 -129
  30. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/iife/es2017/wire-service.js +3 -3
  32. package/dist/wire-service/iife/es2017/wire-service_debug.js +3 -3
  33. package/dist/wire-service/iife/es5/wire-service.js +12 -12
  34. package/dist/wire-service/iife/es5/wire-service.min.js +1 -1
  35. package/dist/wire-service/iife/es5/wire-service_debug.js +12 -12
  36. package/dist/wire-service/umd/es2017/wire-service.js +4 -4
  37. package/dist/wire-service/umd/es2017/wire-service_debug.js +4 -4
  38. package/dist/wire-service/umd/es5/wire-service.js +13 -13
  39. package/dist/wire-service/umd/es5/wire-service.min.js +1 -1
  40. package/dist/wire-service/umd/es5/wire-service_debug.js +13 -13
  41. package/package.json +8 -8
  42. package/dist/engine/esm/es2017/engine.js +0 -7981
  43. package/dist/engine/iife/es2017/engine.js +0 -8013
  44. package/dist/engine/iife/es2017/engine.min.js +0 -9
  45. package/dist/engine/iife/es2017/engine_debug.js +0 -6541
  46. package/dist/engine/iife/es5/engine.js +0 -6060
  47. package/dist/engine/iife/es5/engine.min.js +0 -23
  48. package/dist/engine/iife/es5/engine_debug.js +0 -4856
  49. package/dist/engine/umd/es2017/engine.js +0 -8014
  50. package/dist/engine/umd/es2017/engine.min.js +0 -9
  51. package/dist/engine/umd/es2017/engine_debug.js +0 -6542
  52. package/dist/engine/umd/es5/engine.js +0 -6061
  53. package/dist/engine/umd/es5/engine.min.js +0 -23
  54. package/dist/engine/umd/es5/engine_debug.js +0 -4857
@@ -5,9 +5,13 @@
5
5
 
6
6
  function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
7
 
8
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
9
+
10
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
11
+
8
12
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
9
13
 
10
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
14
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
11
15
 
12
16
  /* proxy-compat-disable */
13
17
 
@@ -193,7 +197,7 @@
193
197
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
194
198
  return Symbol('x').toString() === 'Symbol(x)';
195
199
  }();
196
- /** version: 2.5.10-alpha1 */
200
+ /** version: 2.7.0 */
197
201
 
198
202
  /*
199
203
  * Copyright (c) 2018, salesforce.com, inc.
@@ -426,9 +430,9 @@
426
430
  function apply$4() {
427
431
  // IE11 does not have this element definition
428
432
  // we don't care much about the construction phase, just the prototype
429
- var HTMLSlotElement = function HTMLSlotElement() {
433
+ var HTMLSlotElement = /*#__PURE__*/_createClass(function HTMLSlotElement() {
430
434
  _classCallCheck(this, HTMLSlotElement);
431
- }; // prototype inheritance dance
435
+ }); // prototype inheritance dance
432
436
 
433
437
 
434
438
  setPrototypeOf(HTMLSlotElement, HTMLElement.constructor);
@@ -514,20 +518,6 @@
514
518
 
515
519
  return cloned;
516
520
  }
517
- /**
518
- * Copyright (C) 2018 salesforce.com, inc.
519
- */
520
-
521
-
522
- if (!_globalThis.lwcRuntimeFlags) {
523
- Object.defineProperty(_globalThis, 'lwcRuntimeFlags', {
524
- value: create(null)
525
- });
526
- }
527
-
528
- var runtimeFlags = _globalThis.lwcRuntimeFlags;
529
- /** version: 2.5.10-alpha1 */
530
-
531
521
  /*
532
522
  * Copyright (c) 2018, salesforce.com, inc.
533
523
  * All rights reserved.
@@ -535,6 +525,7 @@
535
525
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
536
526
  */
537
527
 
528
+
538
529
  var eventTargetPrototype = typeof EventTarget !== 'undefined' ? EventTarget.prototype : _Node.prototype;
539
530
  var addEventListener = eventTargetPrototype.addEventListener,
540
531
  dispatchEvent = eventTargetPrototype.dispatchEvent,
@@ -587,17 +578,9 @@
587
578
  assert.invariant(isFalse(isSyntheticShadowHost(currentTarget)), 'This routine should not be used to wrap event listeners for host elements and shadow roots.');
588
579
  }
589
580
 
590
- var composed = event.composed;
591
- var shouldInvoke;
581
+ var actualTarget = getActualTarget(event);
592
582
 
593
- if (runtimeFlags.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE) {
594
- shouldInvoke = !(eventToShadowRootMap.has(event) && isFalse(composed));
595
- } else {
596
- var actualTarget = getActualTarget(event);
597
- shouldInvoke = shouldInvokeListener(event, actualTarget, currentTarget);
598
- }
599
-
600
- if (!shouldInvoke) {
583
+ if (!shouldInvokeListener(event, actualTarget, currentTarget)) {
601
584
  return;
602
585
  }
603
586
 
@@ -618,25 +601,6 @@
618
601
 
619
602
 
620
603
  var eventToContextMap = new WeakMap();
621
-
622
- function isChildNode(root, node) {
623
- return !!(compareDocumentPosition.call(root, node) & DOCUMENT_POSITION_CONTAINED_BY);
624
- }
625
-
626
- var GET_ROOT_NODE_CONFIG_FALSE = {
627
- composed: false
628
- };
629
-
630
- function getRootNodeHost(node, options) {
631
- var rootNode = node.getRootNode(options);
632
-
633
- if (isSyntheticShadowRoot(rootNode)) {
634
- rootNode = getHost(rootNode);
635
- }
636
-
637
- return rootNode;
638
- }
639
-
640
604
  var customElementToWrappedListeners = new WeakMap();
641
605
 
642
606
  function getEventMap(elm) {
@@ -681,16 +645,9 @@
681
645
  currentTarget = getShadowRoot(currentTarget);
682
646
  }
683
647
 
684
- var shouldInvoke;
648
+ var actualTarget = getActualTarget(event);
685
649
 
686
- if (runtimeFlags.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE) {
687
- shouldInvoke = shouldInvokeShadowRootListener(event);
688
- } else {
689
- var actualTarget = getActualTarget(event);
690
- shouldInvoke = shouldInvokeListener(event, actualTarget, currentTarget);
691
- }
692
-
693
- if (shouldInvoke) {
650
+ if (shouldInvokeListener(event, actualTarget, currentTarget)) {
694
651
  listener.call(currentTarget, event);
695
652
  }
696
653
  };
@@ -717,16 +674,9 @@
717
674
  customElementWrappedListener = function customElementWrappedListener(event) {
718
675
  // currentTarget is always defined inside an event listener
719
676
  var currentTarget = eventCurrentTargetGetter.call(event);
720
- var shouldInvoke;
721
-
722
- if (runtimeFlags.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE) {
723
- shouldInvoke = shouldInvokeCustomElementListener(event);
724
- } else {
725
- var actualTarget = getActualTarget(event);
726
- shouldInvoke = shouldInvokeListener(event, actualTarget, currentTarget);
727
- }
677
+ var actualTarget = getActualTarget(event);
728
678
 
729
- if (shouldInvoke) {
679
+ if (shouldInvokeListener(event, actualTarget, currentTarget)) {
730
680
  listener.call(currentTarget, event);
731
681
  }
732
682
  };
@@ -843,66 +793,6 @@
843
793
  }
844
794
  }
845
795
 
846
- function shouldInvokeCustomElementListener(event) {
847
- var composed = event.composed;
848
-
849
- if (isTrue(composed)) {
850
- // Listeners on host elements should always be invoked for {composed: true} events.
851
- return true;
852
- } // If this {composed: false} event was dispatched on any root.
853
-
854
-
855
- if (eventToShadowRootMap.has(event)) {
856
- return false;
857
- }
858
-
859
- var target = eventTargetGetter.call(event);
860
- var currentTarget = eventCurrentTargetGetter.call(event); // If this {composed: false} event was dispatched on the current target host.
861
-
862
- if (target === currentTarget) {
863
- return true;
864
- } // At this point the event must be {bubbles: true, composed: false} and was dispatched from a
865
- // shadow-excluding descendant node. In this case, we only invoke the listener if the target
866
- // host was assigned to a slot in the composed subtree of the current target host.
867
-
868
-
869
- var targetHost = getRootNodeHost(target, GET_ROOT_NODE_CONFIG_FALSE);
870
- var currentTargetHost = currentTarget;
871
- return isChildNode(targetHost, currentTargetHost);
872
- }
873
-
874
- function shouldInvokeShadowRootListener(event) {
875
- var composed = event.composed;
876
- var target = eventTargetGetter.call(event);
877
- var currentTarget = eventCurrentTargetGetter.call(event); // If the event was dispatched on the host or its root.
878
-
879
- if (target === currentTarget) {
880
- // Invoke the listener if the event was dispatched directly on the root.
881
- return eventToShadowRootMap.get(event) === getShadowRoot(target);
882
- } // At this point the event is {bubbles: true} and was dispatched from a shadow-including descendant node.
883
-
884
-
885
- if (isTrue(composed)) {
886
- // Invoke the listener if the event is {composed: true}.
887
- return true;
888
- } // At this point the event must be {bubbles: true, composed: false}.
889
-
890
-
891
- if (isTrue(eventToShadowRootMap.has(event))) {
892
- // Don't invoke the listener because the event was dispatched on a descendant root.
893
- return false;
894
- }
895
-
896
- var targetHost = getRootNodeHost(target, GET_ROOT_NODE_CONFIG_FALSE);
897
- var currentTargetHost = currentTarget;
898
- var isCurrentTargetSlotted = isChildNode(targetHost, currentTargetHost); // At this point the event must be {bubbles: true, composed: false} and was dispatched from a
899
- // shadow-excluding descendant node. In this case, we only invoke the listener if the target
900
- // host was assigned to a slot in the composed subtree of the current target host, or the
901
- // descendant node is in the shadow tree of the current root.
902
-
903
- return isCurrentTargetSlotted || targetHost === currentTargetHost;
904
- }
905
-
906
796
  function addCustomElementEventListener(type, listener, _options) {
907
797
  if (process.env.NODE_ENV !== 'production') {
908
798
  if (!isFunction(listener)) {
@@ -1618,6 +1508,20 @@
1618
1508
  }
1619
1509
  }
1620
1510
  }
1511
+ /**
1512
+ * Copyright (C) 2018 salesforce.com, inc.
1513
+ */
1514
+
1515
+
1516
+ if (!_globalThis.lwcRuntimeFlags) {
1517
+ Object.defineProperty(_globalThis, 'lwcRuntimeFlags', {
1518
+ value: create(null)
1519
+ });
1520
+ }
1521
+
1522
+ var runtimeFlags = _globalThis.lwcRuntimeFlags;
1523
+ /** version: 2.7.0 */
1524
+
1621
1525
  /*
1622
1526
  * Copyright (c) 2018, salesforce.com, inc.
1623
1527
  * All rights reserved.
@@ -1632,7 +1536,6 @@
1632
1536
  * because we don't want to patch the children getters for those elements.
1633
1537
  */
1634
1538
 
1635
-
1636
1539
  function hasMountedChildren(node) {
1637
1540
  return isSyntheticSlotElement(node) || isSyntheticShadowHost(node);
1638
1541
  }
@@ -2234,6 +2137,12 @@
2234
2137
  value: function value() {
2235
2138
  return "[object ShadowRoot]";
2236
2139
  }
2140
+ },
2141
+ synthetic: {
2142
+ writable: false,
2143
+ enumerable: false,
2144
+ configurable: false,
2145
+ value: true
2237
2146
  }
2238
2147
  };
2239
2148
  var ShadowRootDescriptors = {
@@ -5631,6 +5540,6 @@
5631
5540
  },
5632
5541
  configurable: true
5633
5542
  });
5634
- /** version: 2.5.10-alpha1 */
5543
+ /** version: 2.7.0 */
5635
5544
 
5636
- }());
5545
+ })();
@@ -1,4 +1,4 @@
1
- !function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var l=Object.assign,o=Object.create,a=Object.defineProperties,i=Object.defineProperty,u=Object.getOwnPropertyDescriptor,c=Object.getPrototypeOf,s=Object.hasOwnProperty,f=Object.setPrototypeOf,h=Array.prototype,p=h.filter,g=h.find,m=h.indexOf,v=h.map,b=h.push,d=h.reduce,E=h.reverse,y=h.slice,w=h.splice,T=h.forEach,N=String.prototype.charCodeAt;function L(e){return void 0===e}function M(e){return null===e}function C(e){return!0===e}function S(e){return!1===e}function O(e){return"function"==typeof e}function A(e){return"object"===r(e)}var H,_,R=function(){if("object"===("undefined"==typeof globalThis?"undefined":r(globalThis)))return globalThis;var e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),P="$shadowResolver$",D="$shadowToken$",$=Node,B=$.prototype,I=$.DOCUMENT_POSITION_CONTAINED_BY,k=$.DOCUMENT_POSITION_PRECEDING,x=$.DOCUMENT_POSITION_FOLLOWING,F=$.ELEMENT_NODE,W=$.TEXT_NODE,j=$.CDATA_SECTION_NODE,U=$.PROCESSING_INSTRUCTION_NODE,K=$.COMMENT_NODE,G=B.appendChild,q=B.cloneNode,X=B.compareDocumentPosition,V=B.insertBefore,Y=B.removeChild,z=B.replaceChild,J=B.hasChildNodes,Q=HTMLElement.prototype.contains,Z=u(B,"firstChild").get,ee=u(B,"lastChild").get,te=u(B,"textContent").get,ne=u(B,"parentNode").get,re=u(B,"ownerDocument").get,le=s.call(B,"parentElement")?u(B,"parentElement").get:u(HTMLElement.prototype,"parentElement").get,oe=u(B,"textContent").set,ae=s.call(B,"childNodes")?u(B,"childNodes").get:u(HTMLElement.prototype,"childNodes").get,ie=s.call(B,"isConnected")?u(B,"isConnected").get:function(){var e=re.call(this);return null===e||0!=(X.call(e,this)&I)},ue=Element.prototype,ce=ue.getAttribute,se=ue.getBoundingClientRect,fe=ue.getElementsByTagName,he=ue.getElementsByTagNameNS,pe=ue.hasAttribute,ge=ue.querySelector,me=ue.querySelectorAll,ve=ue.removeAttribute,be=ue.setAttribute,de=s.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},Ee=u(Element.prototype,"childElementCount").get,ye=u(Element.prototype,"firstElementChild").get,we=u(Element.prototype,"lastElementChild").get,Te=u(HTMLElement.prototype,"innerText"),Ne=Te?Te.get:null,Le=Te?Te.set:null,Me=u(HTMLElement.prototype,"outerText"),Ce=Me?Me.get:null,Se=Me?Me.set:null,Oe=s.call(Element.prototype,"innerHTML")?u(Element.prototype,"innerHTML"):u(HTMLElement.prototype,"innerHTML"),Ae=Oe.get,He=Oe.set,_e=s.call(Element.prototype,"outerHTML")?u(Element.prototype,"outerHTML"):u(HTMLElement.prototype,"outerHTML"),Re=_e.get,Pe=_e.set,De=u(Element.prototype,"tagName").get,$e=u(HTMLElement.prototype,"tabIndex"),Be=$e.get,Ie=$e.set,ke=s.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,xe=s.call(Element.prototype,"children")?u(Element.prototype,"children").get:u(HTMLElement.prototype,"children").get,Fe=HTMLElement.prototype.getElementsByClassName,We=s.call(Element.prototype,"shadowRoot")?u(Element.prototype,"shadowRoot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(H=HTMLSlotElement.prototype.assignedNodes,_=HTMLSlotElement.prototype.assignedElements):(H=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},_=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var je=u(Event.prototype,"target").get,Ue=u(Event.prototype,"currentTarget").get,Ke=u(FocusEvent.prototype,"relatedTarget").get,Ge=s.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},qe=u(Document.prototype,"activeElement").get,Xe=s.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,Ve=s.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Ye=u(Document.prototype,"defaultView").get,ze=Document.prototype,Je=ze.querySelectorAll,Qe=ze.getElementById,Ze=ze.getElementsByClassName,et=ze.getElementsByTagName,tt=ze.getElementsByTagNameNS,nt=HTMLDocument.prototype.getElementsByName,rt=window,lt=rt.addEventListener,ot=rt.removeEventListener,at=rt.getComputedStyle,it=rt.getSelection,ut=MutationObserver,ct=ut.prototype.observe,st=null;"undefined"!=typeof ShadowRoot&&(st=ShadowRoot);var ft=!M(st),ht=M(st)?function(){return!1}:function(e){return e instanceof st};var pt,gt=Document.prototype.createElement;function mt(e){var t=re.call(e);return null===t?e:t}function vt(e){var t=mt(e),n=Ye.call(t);if(null===n)throw new TypeError;return n}function bt(e){if(L(pt)){var t=mt(e);pt=t.body&&"temporary-bypass"===ce.call(t.body,"data-global-patching-bypass")}return C(pt)}function dt(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)};f(e,HTMLElement.constructor),f(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,i(Document.prototype,"createElement",{value:function(t,n){var r=gt.apply(this,y.call(arguments));return 4===t.length&&115===N.call(t,0)&&108===N.call(t,1)&&111===N.call(t,2)&&116===N.call(t,3)&&f(r,e.prototype),r}})}(),R.lwcRuntimeFlags||Object.defineProperty(R,"lwcRuntimeFlags",{value:o(null)});var Et=R.lwcRuntimeFlags,yt="undefined"!=typeof EventTarget?EventTarget.prototype:$.prototype,wt=yt.addEventListener,Tt=yt.dispatchEvent,Nt=yt.removeEventListener,Lt=new WeakMap,Mt=new WeakMap;function Ct(e,t,n){if(t===n)return!0;var r=Mt.get(e);return L(r)&&(r=e.composedPath(),Mt.set(e,r)),r.includes(n)}function St(e){if(!function(e){return O(e)||A(e)&&!M(e)&&O(e.handleEvent)}(e))return e;var t=Lt.get(e);return L(t)&&(t=function(t){var n,r=Ue.call(t),l=t.composed;Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=!(lr.has(t)&&S(l)):n=Ct(t,Dt(t),r);if(n)return O(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Lt.set(e,t)),t}var Ot=new WeakMap;function At(e,t){return!!(X.call(e,t)&I)}var Ht={composed:!1};function _t(e,t){var n=e.getRootNode(t);return Zn(n)&&(n=zn(n)),n}var Rt=new WeakMap;function Pt(e){var t=Rt.get(e);return L(t)&&(t=o(null),Rt.set(e,t)),t}function Dt(e){var t;return null!==(t=lr.get(e))&&void 0!==t?t:je.call(e)}var $t=new WeakMap;function Bt(e){if(!O(e))throw new TypeError;var t=$t.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);(ht(r)||(r=Jn(r)),Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE)?n=function(e){var t=e.composed,n=je.call(e),r=Ue.call(e);if(n===r)return lr.get(e)===Jn(n);if(C(t))return!0;if(C(lr.has(e)))return!1;var l=_t(n,Ht),o=r;return At(l,o)||l===o}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=1,$t.set(e,t)),t}var It=new WeakMap;function kt(e){if(!O(e))throw new TypeError;var t=It.get(e);return L(t)&&((t=function(t){var n,r=Ue.call(t);Et.ENABLE_NON_COMPOSED_EVENTS_LEAKAGE?n=function(e){if(C(e.composed))return!0;if(lr.has(e))return!1;var t=je.call(e),n=Ue.call(e);if(t===n)return!0;return At(_t(t,Ht),n)}(t):n=Ct(t,Dt(t),r);n&&e.call(r,t)}).placement=0,It.set(e,t)),t}function xt(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Pt(Ue.call(e))[r];i(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),i(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var u=y.call(a);function c(n){T.call(u,(function(r){S(t)&&r.placement===n&&-1!==m.call(a,r)&&r.call(void 0,e)}))}Ot.set(e,1),c(1),S(t)&&S(n)&&(Ot.set(e,0),c(0)),Ot.set(e,2)}function Ft(e,t,n){var r=Pt(e),l=r[t];L(l)&&(l=r[t]=[]),-1===m.call(l,n)&&(0===l.length&&wt.call(e,t,xt),b.call(l,n))}function Wt(e,t,n){var r,l;L(l=Pt(e)[t])||-1===(r=m.call(l,n))||(w.call(l,r,1),0===l.length&&Nt.call(e,t,xt))}function jt(e,t,n){O(t)&&Ft(this,e,kt(t))}function Ut(e,t,n){O(t)&&Wt(this,e,kt(t))}var Kt="$$HostElementKey$$",Gt="$$ShadowedNodeKey$$";function qt(e,t,n){var r=e,l=n.value;r[t]=l}function Xt(e){return e[Kt]}function Vt(e){for(var t,n=e;!M(n);){if(!L(t=Xt(n)))return t;n=ne.call(n)}}function Yt(e){return e[Gt]}function zt(e){return!L(Xt(e))}function Jt(e){for(var t=le.call(e);!M(t)&&tn(t);)e=t,t=le.call(e);return e}function Qt(e,t){for(var n=Yt(e),r=t instanceof Element?t:le.call(t);!M(r)&&r!==e;){var l=Vt(r),o=le.call(r);if(l===n)return tn(r);if(o===e)return!1;if(M(o)||Vt(o)===l)r=o;else{if(!tn(o))return!1;if(!M(r=Zt(Jt(o)))){if(r===e)return!0;if(Vt(r)===n)return!0}}}return!1}function Zt(e){if(!(e instanceof $))return null;var t=Vt(e);if(L(t))return null;for(var n=e;!M(n)&&Yt(n)!==t;)n=ne.call(n);return M(n)?null:n}function en(e){return tn(e)&&zt(e)}function tn(e){return e instanceof HTMLSlotElement}function nn(e,t){var n=Vt(t);return L(n)||Yt(e)===n}function rn(e){var t=zn(e);return an(t,dt(ae.call(t)))}function ln(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!nn(e,o)&&Qt(e,o)&&b.call(n,o)}return n}function on(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!nn(e,l)&&Qt(e,l))return l}return null}function an(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];nn(e,o)&&b.call(n,o)}return n}function un(e,t){for(var n=0,r=t.length;n<r;n+=1)if(nn(e,t[n]))return t[n];return null}function cn(e){if(!Qn(e)&&!tn(e))return dt(ae.call(e));if(Qn(e)){var t=dt(me.call(e,"slot")),n=Xn(Jn(e));return d.call(t,(function(e,t){return n===Xn(t)&&b.apply(e,sn(t)),e}),[])}var r=dt(ae.call(e)),l=Xn(e);return p.call(r,(function(e){return l===Xn(e)}))}function sn(e){var t=Zt(e);if(M(t))return[];var n=dt(ae.call(e));return p.call(n,(function(e){return!zt(e)||!nn(t,e)}))}function fn(e){switch(e.nodeType){case F:for(var t=cn(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==K&&(n+=fn(o))}return n;default:return e.nodeValue}}var hn=new WeakMap;function pn(){throw new TypeError("Illegal constructor")}function gn(e){var t=o(pn.prototype);return hn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}pn.prototype=o(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:pn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return hn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){T.call(hn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return v.call(hn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return hn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=hn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),f(pn,NodeList);var mn=new WeakMap;function vn(){throw new TypeError("Illegal constructor")}function bn(e){var t=o(vn.prototype);return mn.set(t,e),T.call(e,(function(e,n){i(t,n,{value:e,enumerable:!0,configurable:!0})})),t}vn.prototype=o(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:vn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return mn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=mn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===ce.call(l,"id")||e===ce.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),f(vn,HTMLCollection);var dn=/[&\u00A0"]/g,En=/[&\u00A0<>]/g,yn=String.prototype,wn=yn.replace,Tn=yn.toLowerCase;function Nn(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function Ln(e){return wn.call(e,dn,Nn)}var Mn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Cn=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Sn(e){switch(e.nodeType){case F:for(var t,n=e.attributes,r=De.call(e),l="<"+Tn.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Ln(t.value)+'"';return l+=">",Mn.has(r)?l:l+function(e){for(var t="",n=cn(e),r=0,l=n.length;r<l;r+=1)t+=Sn(n[r]);return t}(e)+"</"+Tn.call(r)+">";case W:var a=e.data,i=e.parentNode;return i instanceof Element&&Cn.has(De.call(i))?a:function(e){return wn.call(e,En,Nn)}(a);case j:return"<!CDATA[[".concat(e.data,"]]>");case U:return"<?".concat(e.target," ").concat(e.data,"?>");case K:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}function On(e){return en(e)||Qn(e)}function An(e,t){var n=Zt(e);if(t===n)return Jn(n);if(t instanceof Element){if(Vt(e)===Vt(t))return t;if(!M(n)&&tn(t)){var r=Zt(t);if(!M(r)&&nn(n,r))return r}}return null}function Hn(){return jn(this).length>0}function _n(){return jn(this)[0]||null}function Rn(){var e=jn(this);return e[e.length-1]||null}function Pn(){return fn(this)}function Dn(){var e=ne.call(this);return M(e)?e:An(this,e)}function $n(){var e=ne.call(this);if(M(e))return null;var t=An(this,e);return t instanceof Element?t:null}function Bn(e){return this.getRootNode()===e?10:Xt(this)!==Xt(e)?35:X.call(this,e)}function In(e){return null!=e&&Xt(this)===Xt(e)&&0!=(X.call(this,e)&I)}function kn(e){var t=q.call(this,!1);if(!e)return t;for(var n=jn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function xn(){if(Qn(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)}var Fn=$.prototype.getRootNode,Wn=L(Fn)?function(){for(var e,t=this;!M(e=ne.call(t));)t=e;return t}:Fn;a($.prototype,{firstChild:{get:function(){return On(this)?_n.call(this):Z.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return On(this)?Rn.call(this):ee.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return Et.ENABLE_NODE_PATCH?bt(this)?te.call(this):Pn.call(this):zt(this)||Qn(this)?Pn.call(this):te.call(this)},set:function(e){oe.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(zt(this))return Dn.call(this);var e=ne.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(zt(this))return $n.call(this);var e=le.call(this);return!M(e)&&en(e)?Zt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return On(this)?xn.call(this):ae.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return On(this)?Hn.call(this):J.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return bt(this)?X.call(this,e):Bn.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(Et.ENABLE_NODE_PATCH?bt(this)?Q.call(this,e):In.call(this,e):null!=e&&(zt(this)||Qn(this)?In.call(this,e):Q.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return Et.ENABLE_NODE_PATCH?C(e)?bt(this)?q.call(this,e):kn.call(this,e):q.call(this,e):zt(this)||Qn(this)?kn.call(this,e):q.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return C(!L(e)&&!!e.composed)?Wn.call(this,e):M(n=Zt(t=this))?Wn.call(t):Jn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(this)}}});var jn=function(e){return e.childNodes};function Un(e,t,n,r){var l=Ve.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!L(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!M(l))for(var i=0;i<l.length;i++){var u=l[i];-1===a.indexOf(u.getRootNode())||en(u)||o.push(u)}return o}s.call(HTMLElement.prototype,"contains")&&i(HTMLElement.prototype,"contains",u($.prototype,"contains")),s.call(HTMLElement.prototype,"parentElement")&&i(HTMLElement.prototype,"parentElement",u($.prototype,"parentElement"));var Kn=new WeakMap,Gn=document.createDocumentFragment;function qn(e){var t=Kn.get(e);if(L(t))throw new TypeError;return t}function Xn(e){return e.$shadowResolver$}function Vn(e,t){e.$shadowResolver$=t}function Yn(e){return qn(e).delegatesFocus}function zn(e){return qn(e).host}function Jn(e){return qn(e).shadowRoot}function Qn(e){var t=Kn.get(e);return!L(t)&&e===t.host}function Zn(e){var t=Kn.get(e);return!L(t)&&e===t.shadowRoot}i($.prototype,P,{set:function(e){var t,n;L(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,qt(t,Kt,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),i(R,"$isNativeShadowRootDefined$",{value:ft});var er=0;function tr(e,t){if(Kn.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=mt(e),o=Gn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Kn.set(o,a),Kn.set(e,a);var i=function(){return o},u=i.nodeKey=er++;return qt(e,Gt,{value:u}),Vn(o,i),f(o,or.prototype),o}var nr={constructor:{writable:!0,configurable:!0,value:or},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}}},rr={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=zn(this),t=mt(e),n=qe.call(t);if(M(n))return n;if(0==(X.call(e,n)&I))return null;for(var r=n;!nn(e,r);)r=le.call(r);return tn(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return qn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ur(this,mt(zn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Un(this,mt(zn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return zn(this)}},mode:{configurable:!0,get:function(){return qn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},lr=new WeakMap;function or(){throw new TypeError("Illegal constructor")}function ar(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof $))return r;n=e.getRootNode()}for(var l,o=e;!M(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=M(a)?o.parentNode:a}else o=!Zn(o)&&!ht(o)||!t&&o===n?o instanceof $?o.parentNode:null:o.host;return l=e instanceof Window?e.document:mt(e),r[r.length-1]===l&&r.push(window),r}
1
+ !function(){"use strict";var e,t;function n(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function l(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var a=Object.assign,i=Object.create,u=Object.defineProperties,c=Object.defineProperty,s=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,h=Object.hasOwnProperty,p=Object.setPrototypeOf,g=Array.prototype,m=g.filter,v=g.find,b=g.indexOf,d=g.map,y=g.push,E=g.reduce,w=g.reverse,T=g.slice,N=g.splice,L=g.forEach,M=String.prototype.charCodeAt;function C(e){return void 0===e}function S(e){return null===e}function O(e){return!0===e}function H(e){return!1===e}function A(e){return"function"==typeof e}function R(e){return"object"===o(e)}var _,P,D=function(){if("object"===("undefined"==typeof globalThis?"undefined":o(globalThis)))return globalThis;var e;try{Object.defineProperty(Object.prototype,"__magic__",{get:function(){return this},configurable:!0}),e=__magic__,delete Object.prototype.__magic__}catch(e){}finally{void 0===e&&(e=window)}return e}(),$="$shadowResolver$",B="$shadowToken$",I=Node,k=I.prototype,x=I.DOCUMENT_POSITION_CONTAINED_BY,F=I.DOCUMENT_POSITION_PRECEDING,j=I.DOCUMENT_POSITION_FOLLOWING,W=I.ELEMENT_NODE,U=I.TEXT_NODE,K=I.CDATA_SECTION_NODE,G=I.PROCESSING_INSTRUCTION_NODE,q=I.COMMENT_NODE,X=k.appendChild,Y=k.cloneNode,V=k.compareDocumentPosition,z=k.insertBefore,J=k.removeChild,Q=k.replaceChild,Z=k.hasChildNodes,ee=HTMLElement.prototype.contains,te=s(k,"firstChild").get,ne=s(k,"lastChild").get,re=s(k,"textContent").get,le=s(k,"parentNode").get,oe=s(k,"ownerDocument").get,ae=h.call(k,"parentElement")?s(k,"parentElement").get:s(HTMLElement.prototype,"parentElement").get,ie=s(k,"textContent").set,ue=h.call(k,"childNodes")?s(k,"childNodes").get:s(HTMLElement.prototype,"childNodes").get,ce=h.call(k,"isConnected")?s(k,"isConnected").get:function(){var e=oe.call(this);return null===e||0!=(V.call(e,this)&x)},se=Element.prototype,fe=se.getAttribute,he=se.getBoundingClientRect,pe=se.getElementsByTagName,ge=se.getElementsByTagNameNS,me=se.hasAttribute,ve=se.querySelector,be=se.querySelectorAll,de=se.removeAttribute,ye=se.setAttribute,Ee=h.call(Element.prototype,"attachShadow")?Element.prototype.attachShadow:function(){throw new TypeError("attachShadow() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill and use Lightning Web Components")},we=s(Element.prototype,"childElementCount").get,Te=s(Element.prototype,"firstElementChild").get,Ne=s(Element.prototype,"lastElementChild").get,Le=s(HTMLElement.prototype,"innerText"),Me=Le?Le.get:null,Ce=Le?Le.set:null,Se=s(HTMLElement.prototype,"outerText"),Oe=Se?Se.get:null,He=Se?Se.set:null,Ae=h.call(Element.prototype,"innerHTML")?s(Element.prototype,"innerHTML"):s(HTMLElement.prototype,"innerHTML"),Re=Ae.get,_e=Ae.set,Pe=h.call(Element.prototype,"outerHTML")?s(Element.prototype,"outerHTML"):s(HTMLElement.prototype,"outerHTML"),De=Pe.get,$e=Pe.set,Be=s(Element.prototype,"tagName").get,Ie=s(HTMLElement.prototype,"tabIndex"),ke=Ie.get,xe=Ie.set,Fe=h.call(Element.prototype,"matches")?Element.prototype.matches:Element.prototype.msMatchesSelector,je=h.call(Element.prototype,"children")?s(Element.prototype,"children").get:s(HTMLElement.prototype,"children").get,We=HTMLElement.prototype.getElementsByClassName,Ue=h.call(Element.prototype,"shadowRoot")?s(Element.prototype,"shadowRoot").get:function(){return null};"undefined"!=typeof HTMLSlotElement?(_=HTMLSlotElement.prototype.assignedNodes,P=HTMLSlotElement.prototype.assignedElements):(_=function(){throw new TypeError("assignedNodes() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")},P=function(){throw new TypeError("assignedElements() is not supported in current browser. Load the @lwc/synthetic-shadow polyfill to start using <slot> elements in your Lightning Web Component's template")});var Ke=s(Event.prototype,"target").get,Ge=s(Event.prototype,"currentTarget").get,qe=s(FocusEvent.prototype,"relatedTarget").get,Xe=h.call(Event.prototype,"composedPath")?Event.prototype.composedPath:function(){return[]},Ye=s(Document.prototype,"activeElement").get,Ve=h.call(Document.prototype,"elementFromPoint")?Document.prototype.elementFromPoint:Document.prototype.msElementFromPoint,ze=h.call(Document.prototype,"elementsFromPoint")?Document.prototype.elementsFromPoint:Document.prototype.msElementsFromPoint,Je=s(Document.prototype,"defaultView").get,Qe=Document.prototype,Ze=Qe.querySelectorAll,et=Qe.getElementById,tt=Qe.getElementsByClassName,nt=Qe.getElementsByTagName,rt=Qe.getElementsByTagNameNS,lt=HTMLDocument.prototype.getElementsByName,ot=window,at=ot.addEventListener,it=ot.removeEventListener,ut=ot.getComputedStyle,ct=ot.getSelection,st=MutationObserver,ft=st.prototype.observe,ht=null;"undefined"!=typeof ShadowRoot&&(ht=ShadowRoot);var pt=!S(ht),gt=S(ht)?function(){return!1}:function(e){return e instanceof ht};var mt,vt=Document.prototype.createElement;function bt(e){var t=oe.call(e);return null===t?e:t}function dt(e){var t=bt(e),n=Je.call(t);if(null===n)throw new TypeError;return n}function yt(e){if(C(mt)){var t=bt(e);mt=t.body&&"temporary-bypass"===fe.call(t.body,"data-global-patching-bypass")}return O(mt)}function Et(e){var t=e.length,n=[];if(t>0)for(var r=0;r<t;r++)n[r]=e[r];return n}"undefined"==typeof HTMLSlotElement&&function(){var e=l((function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}));p(e,HTMLElement.constructor),p(e.prototype,HTMLElement.prototype),Window.prototype.HTMLSlotElement=e,c(Document.prototype,"createElement",{value:function(t,n){var r=vt.apply(this,T.call(arguments));return 4===t.length&&115===M.call(t,0)&&108===M.call(t,1)&&111===M.call(t,2)&&116===M.call(t,3)&&p(r,e.prototype),r}})}();var wt="undefined"!=typeof EventTarget?EventTarget.prototype:I.prototype,Tt=wt.addEventListener,Nt=wt.dispatchEvent,Lt=wt.removeEventListener,Mt=new WeakMap,Ct=new WeakMap;function St(e,t,n){if(t===n)return!0;var r=Ct.get(e);return C(r)&&(r=e.composedPath(),Ct.set(e,r)),r.includes(n)}function Ot(e){if(!function(e){return A(e)||R(e)&&!S(e)&&A(e.handleEvent)}(e))return e;var t=Mt.get(e);return C(t)&&(t=function(t){var n=Ge.call(t);if(St(t,_t(t),n))return A(e)?e.call(this,t):e.handleEvent&&e.handleEvent(t)},Mt.set(e,t)),t}var Ht=new WeakMap,At=new WeakMap;function Rt(e){var t=At.get(e);return C(t)&&(t=i(null),At.set(e,t)),t}function _t(e){var t;return null!==(t=rr.get(e))&&void 0!==t?t:Ke.call(e)}var Pt=new WeakMap;function Dt(e){if(!A(e))throw new TypeError;var t=Pt.get(e);return C(t)&&((t=function(t){var n=Ge.call(t);gt(n)||(n=zn(n)),St(t,_t(t),n)&&e.call(n,t)}).placement=1,Pt.set(e,t)),t}var $t=new WeakMap;function Bt(e){if(!A(e))throw new TypeError;var t=$t.get(e);return C(t)&&((t=function(t){var n=Ge.call(t);St(t,_t(t),n)&&e.call(n,t)}).placement=0,$t.set(e,t)),t}function It(e){var t=!1,n=!1,r=e.type,l=e.stopImmediatePropagation,o=e.stopPropagation,a=Rt(Ge.call(e))[r];c(e,"stopImmediatePropagation",{value:function(){t=!0,l.call(e)},writable:!0,enumerable:!0,configurable:!0}),c(e,"stopPropagation",{value:function(){n=!0,o.call(e)},writable:!0,enumerable:!0,configurable:!0});var i=T.call(a);function u(n){L.call(i,(function(r){H(t)&&r.placement===n&&-1!==b.call(a,r)&&r.call(void 0,e)}))}Ht.set(e,1),u(1),H(t)&&H(n)&&(Ht.set(e,0),u(0)),Ht.set(e,2)}function kt(e,t,n){var r=Rt(e),l=r[t];C(l)&&(l=r[t]=[]),-1===b.call(l,n)&&(0===l.length&&Tt.call(e,t,It),y.call(l,n))}function xt(e,t,n){var r,l;C(l=Rt(e)[t])||-1===(r=b.call(l,n))||(N.call(l,r,1),0===l.length&&Lt.call(e,t,It))}function Ft(e,t,n){A(t)&&kt(this,e,Bt(t))}function jt(e,t,n){A(t)&&xt(this,e,Bt(t))}var Wt="$$HostElementKey$$",Ut="$$ShadowedNodeKey$$";function Kt(e,t,n){var r=e,l=n.value;r[t]=l}function Gt(e){return e[Wt]}function qt(e){for(var t,n=e;!S(n);){if(!C(t=Gt(n)))return t;n=le.call(n)}}function Xt(e){return e[Ut]}function Yt(e){return!C(Gt(e))}function Vt(e){for(var t=ae.call(e);!S(t)&&Zt(t);)e=t,t=ae.call(e);return e}function zt(e,t){for(var n=Xt(e),r=t instanceof Element?t:ae.call(t);!S(r)&&r!==e;){var l=qt(r),o=ae.call(r);if(l===n)return Zt(r);if(o===e)return!1;if(S(o)||qt(o)===l)r=o;else{if(!Zt(o))return!1;if(!S(r=Jt(Vt(o)))){if(r===e)return!0;if(qt(r)===n)return!0}}}return!1}function Jt(e){if(!(e instanceof I))return null;var t=qt(e);if(C(t))return null;for(var n=e;!S(n)&&Xt(n)!==t;)n=le.call(n);return S(n)?null:n}function Qt(e){return Zt(e)&&Yt(e)}function Zt(e){return e instanceof HTMLSlotElement}function en(e,t){var n=qt(t);return C(n)||Xt(e)===n}function tn(e){var t=Vn(e);return ln(t,Et(ue.call(t)))}function nn(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];!en(e,o)&&zt(e,o)&&y.call(n,o)}return n}function rn(e,t){for(var n=0,r=t.length;n<r;n+=1){var l=t[n];if(!en(e,l)&&zt(e,l))return l}return null}function ln(e,t){for(var n=[],r=0,l=t.length;r<l;r+=1){var o=t[r];en(e,o)&&y.call(n,o)}return n}function on(e,t){for(var n=0,r=t.length;n<r;n+=1)if(en(e,t[n]))return t[n];return null}function an(e){if(!Jn(e)&&!Zt(e))return Et(ue.call(e));if(Jn(e)){var t=Et(be.call(e,"slot")),n=qn(zn(e));return E.call(t,(function(e,t){return n===qn(t)&&y.apply(e,un(t)),e}),[])}var r=Et(ue.call(e)),l=qn(e);return m.call(r,(function(e){return l===qn(e)}))}function un(e){var t=Jt(e);if(S(t))return[];var n=Et(ue.call(e));return m.call(n,(function(e){return!Yt(e)||!en(t,e)}))}function cn(e){if(e.nodeType===W){for(var t=an(e),n="",r=0,l=t.length;r<l;r+=1){var o=t[r];o.nodeType!==q&&(n+=cn(o))}return n}return e.nodeValue}var sn=new WeakMap;function fn(){throw new TypeError("Illegal constructor")}function hn(e){var t=i(fn.prototype);return sn.set(t,e),L.call(e,(function(e,n){c(t,n,{value:e,enumerable:!0,configurable:!0})})),t}fn.prototype=i(NodeList.prototype,(n(e={constructor:{writable:!0,configurable:!0,value:fn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return sn.get(this).length}},forEach:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){L.call(sn.get(this),e,t)}},entries:{writable:!0,enumerable:!0,configurable:!0,value:function(){return d.call(sn.get(this),(function(e,t){return[t,e]}))}},keys:{writable:!0,enumerable:!0,configurable:!0,value:function(){return d.call(sn.get(this),(function(e,t){return t}))}},values:{writable:!0,enumerable:!0,configurable:!0,value:function(){return sn.get(this)}}},Symbol.iterator,{writable:!0,configurable:!0,value:function(){var e=this,t=0;return{next:function(){var n=sn.get(e);return t<n.length?{value:n[t++],done:!1}:{done:!0}}}}}),n(e,Symbol.toStringTag,{configurable:!0,get:function(){return"NodeList"}}),n(e,"toString",{writable:!0,configurable:!0,value:function(){return"[object NodeList]"}}),e)),p(fn,NodeList);var pn=new WeakMap;function gn(){throw new TypeError("Illegal constructor")}function mn(e){var t=i(gn.prototype);return pn.set(t,e),L.call(e,(function(e,n){c(t,n,{value:e,enumerable:!0,configurable:!0})})),t}gn.prototype=i(HTMLCollection.prototype,(n(t={constructor:{writable:!0,configurable:!0,value:gn},item:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return this[e]}},length:{enumerable:!0,configurable:!0,get:function(){return pn.get(this).length}},namedItem:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(""===e)return null;for(var t=pn.get(this),n=0,r=t.length;n<r;n++){var l=t[r];if(e===fe.call(l,"id")||e===fe.call(l,"name"))return l}return null}}},Symbol.toStringTag,{configurable:!0,get:function(){return"HTMLCollection"}}),n(t,"toString",{writable:!0,configurable:!0,value:function(){return"[object HTMLCollection]"}}),t)),p(gn,HTMLCollection);var vn=/[&\u00A0"]/g,bn=/[&\u00A0<>]/g,dn=String.prototype,yn=dn.replace,En=dn.toLowerCase;function wn(e){switch(e){case"&":return"&amp;";case"<":return"&lt;";case">":return"&gt;";case'"':return"&quot;";case" ":return"&nbsp;";default:return""}}function Tn(e){return yn.call(e,vn,wn)}var Nn=new Set(["AREA","BASE","BR","COL","COMMAND","EMBED","HR","IMG","INPUT","KEYGEN","LINK","META","PARAM","SOURCE","TRACK","WBR"]),Ln=new Set(["STYLE","SCRIPT","XMP","IFRAME","NOEMBED","NOFRAMES","PLAINTEXT","NOSCRIPT"]);function Mn(e){switch(e.nodeType){case W:for(var t,n=e.attributes,r=Be.call(e),l="<"+En.call(r),o=0;t=n[o];o++)l+=" "+t.name+'="'+Tn(t.value)+'"';return l+=">",Nn.has(r)?l:l+function(e){for(var t="",n=an(e),r=0,l=n.length;r<l;r+=1)t+=Mn(n[r]);return t}(e)+"</"+En.call(r)+">";case U:var a=e.data,i=e.parentNode;return i instanceof Element&&Ln.has(Be.call(i))?a:function(e){return yn.call(e,bn,wn)}(a);case K:return"<!CDATA[[".concat(e.data,"]]>");case G:return"<?".concat(e.target," ").concat(e.data,"?>");case q:return"\x3c!--".concat(e.data,"--\x3e");default:return""}}D.lwcRuntimeFlags||Object.defineProperty(D,"lwcRuntimeFlags",{value:i(null)});var Cn=D.lwcRuntimeFlags;function Sn(e){return Qt(e)||Jn(e)}function On(e,t){var n=Jt(e);if(t===n)return zn(n);if(t instanceof Element){if(qt(e)===qt(t))return t;if(!S(n)&&Zt(t)){var r=Jt(t);if(!S(r)&&en(n,r))return r}}return null}function Hn(){return jn(this).length>0}function An(){return jn(this)[0]||null}function Rn(){var e=jn(this);return e[e.length-1]||null}function _n(){return cn(this)}function Pn(){var e=le.call(this);return S(e)?e:On(this,e)}function Dn(){var e=le.call(this);if(S(e))return null;var t=On(this,e);return t instanceof Element?t:null}function $n(e){return this.getRootNode()===e?10:Gt(this)!==Gt(e)?35:V.call(this,e)}function Bn(e){return null!=e&&Gt(this)===Gt(e)&&0!=(V.call(this,e)&x)}function In(e){var t=Y.call(this,!1);if(!e)return t;for(var n=jn(this),r=0,l=n.length;r<l;r+=1)t.appendChild(n[r].cloneNode(!0));return t}function kn(){if(Jn(this)){var e=Jt(this);return hn(S(e)?[]:ln(e,an(this)))}return ue.call(this)}var xn=I.prototype.getRootNode,Fn=C(xn)?function(){for(var e,t=this;!S(e=le.call(t));)t=e;return t}:xn;u(I.prototype,{firstChild:{get:function(){return Sn(this)?An.call(this):te.call(this)},enumerable:!0,configurable:!0},lastChild:{get:function(){return Sn(this)?Rn.call(this):ne.call(this)},enumerable:!0,configurable:!0},textContent:{get:function(){return Cn.ENABLE_NODE_PATCH?yt(this)?re.call(this):_n.call(this):Yt(this)||Jn(this)?_n.call(this):re.call(this)},set:function(e){ie.call(this,e)},enumerable:!0,configurable:!0},parentNode:{get:function(){if(Yt(this))return Pn.call(this);var e=le.call(this);return!S(e)&&Qt(e)?Jt(e):e},enumerable:!0,configurable:!0},parentElement:{get:function(){if(Yt(this))return Dn.call(this);var e=ae.call(this);return!S(e)&&Qt(e)?Jt(e):e},enumerable:!0,configurable:!0},childNodes:{get:function(){return Sn(this)?kn.call(this):ue.call(this)},enumerable:!0,configurable:!0},hasChildNodes:{value:function(){return Sn(this)?Hn.call(this):Z.call(this)},enumerable:!0,writable:!0,configurable:!0},compareDocumentPosition:{value:function(e){return yt(this)?V.call(this,e):$n.call(this,e)},enumerable:!0,writable:!0,configurable:!0},contains:{value:function(e){return this===e||(Cn.ENABLE_NODE_PATCH?yt(this)?ee.call(this,e):Bn.call(this,e):null!=e&&(Yt(this)||Jn(this)?Bn.call(this,e):ee.call(this,e)))},enumerable:!0,writable:!0,configurable:!0},cloneNode:{value:function(e){return Cn.ENABLE_NODE_PATCH?O(e)?yt(this)?Y.call(this,e):In.call(this,e):Y.call(this,e):Yt(this)||Jn(this)?In.call(this,e):Y.call(this,e)},enumerable:!0,writable:!0,configurable:!0},getRootNode:{value:function(e){var t,n;return O(!C(e)&&!!e.composed)?Fn.call(this,e):S(n=Jt(t=this))?Fn.call(t):zn(n)},enumerable:!0,configurable:!0,writable:!0},isConnected:{enumerable:!0,configurable:!0,get:function(){return ce.call(this)}}});var jn=function(e){return e.childNodes};function Wn(e,t,n,r){var l=ze.call(t,n,r),o=[],a=function(e){for(var t,n=[],r=e.getRootNode();!C(r);)n.push(r),r=null===(t=r.host)||void 0===t?void 0:t.getRootNode();return n}(e);if(!S(l))for(var i=0;i<l.length;i++){var u=l[i];-1===a.indexOf(u.getRootNode())||Qt(u)||o.push(u)}return o}h.call(HTMLElement.prototype,"contains")&&c(HTMLElement.prototype,"contains",s(I.prototype,"contains")),h.call(HTMLElement.prototype,"parentElement")&&c(HTMLElement.prototype,"parentElement",s(I.prototype,"parentElement"));var Un=new WeakMap,Kn=document.createDocumentFragment;function Gn(e){var t=Un.get(e);if(C(t))throw new TypeError;return t}function qn(e){return e.$shadowResolver$}function Xn(e,t){e.$shadowResolver$=t}function Yn(e){return Gn(e).delegatesFocus}function Vn(e){return Gn(e).host}function zn(e){return Gn(e).shadowRoot}function Jn(e){var t=Un.get(e);return!C(t)&&e===t.host}function Qn(e){var t=Un.get(e);return!C(t)&&e===t.shadowRoot}c(I.prototype,$,{set:function(e){var t,n;C(e)||(this.$$ShadowResolverKey$$=e,t=this,n=e.nodeKey,Kt(t,Wt,{value:n,configurable:!0}))},get:function(){return this.$$ShadowResolverKey$$},configurable:!0,enumerable:!0}),c(D,"$isNativeShadowRootDefined$",{value:pt});var Zn=0;function er(e,t){if(Un.has(e))throw new Error("Failed to execute 'attachShadow' on 'Element': Shadow root cannot be created on a host which already hosts a shadow tree.");var n=t.mode,r=t.delegatesFocus,l=bt(e),o=Kn.call(l),a={mode:n,delegatesFocus:!!r,host:e,shadowRoot:o};Un.set(o,a),Un.set(e,a);var i=function(){return o},u=i.nodeKey=Zn++;return Kt(e,Ut,{value:u}),Xn(o,i),p(o,or.prototype),o}var tr={constructor:{writable:!0,configurable:!0,value:or},toString:{writable:!0,configurable:!0,value:function(){return"[object ShadowRoot]"}},synthetic:{writable:!1,enumerable:!1,configurable:!1,value:!0}},nr={activeElement:{enumerable:!0,configurable:!0,get:function(){var e=Vn(this),t=bt(e),n=Ye.call(t);if(S(n))return n;if(0==(V.call(e,n)&x))return null;for(var r=n;!en(e,r);)r=ae.call(r);return Zt(r)?null:r}},delegatesFocus:{configurable:!0,get:function(){return Gn(this).delegatesFocus}},elementFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return ur(this,bt(Vn(this)),e,t)}},elementsFromPoint:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Wn(this,bt(Vn(this)),e,t)}},getSelection:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getSelection" on ShadowRoot.')}},host:{enumerable:!0,configurable:!0,get:function(){return Vn(this)}},mode:{configurable:!0,get:function(){return Gn(this).mode}},styleSheets:{enumerable:!0,configurable:!0,get:function(){throw new Error}}},rr=new WeakMap,lr={insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(Vn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return J.call(Vn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return X.call(Vn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return Q.call(Vn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){A(n)&&kt(Vn(e),t,Dt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return rr.set(e,this),Nt.apply(Vn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){A(n)&&xt(Vn(e),t,Dt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return Vn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return hn(tn(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=Vn(this);return this===e?0:this.contains(e)?20:V.call(t,e)&x?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=Vn(this);return 0!=(V.call(t,e)&x)&&en(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return jn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=jn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return jn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ce.call(Vn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return Vn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==q&&(t+=cn(l))}return t},set:function(e){var t=Vn(this);ie.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!C(e)&&O(e.composed)?Vn(this).getRootNode(e):this}}};function or(){throw new TypeError("Illegal constructor")}function ar(e,t){var n,r=[];if(e instanceof Window)n=e;else{if(!(e instanceof I))return r;n=e.getRootNode()}for(var l,o=e;!S(o);)if(r.push(o),o instanceof Element||o instanceof Text){var a=o.assignedSlot;o=S(a)?o.parentNode:a}else o=!Qn(o)&&!gt(o)||!t&&o===n?o instanceof I?o.parentNode:null:o.host;return l=e instanceof Window?e.document:bt(e),r[r.length-1]===l&&r.push(window),r}
2
2
  /**
3
3
  @license
4
4
  Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
@@ -7,4 +7,4 @@
7
7
  The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
8
8
  Code distributed by Google as part of the polymer project is also
9
9
  subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
10
- */function ir(e,t){if(M(e))return null;for(var n,r,l,o,a=ar(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!Zn(l)||!L(o)&&o>-1)return n;return null}function ur(e,t,n,r){var l=Xe.call(t,n,r);return M(l)?l:ir(e,ar(l,!0))}l(nr,{insertBefore:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return V.call(zn(this),e,t),e}},removeChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return Y.call(zn(this),e),e}},appendChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return G.call(zn(this),e),e}},replaceChild:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t){return z.call(zn(this),e,t),t}},addEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Ft(zn(e),t,Bt(n))}(this,e,t)}},dispatchEvent:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return lr.set(e,this),Tt.apply(zn(this),arguments)}},removeEventListener:{writable:!0,enumerable:!0,configurable:!0,value:function(e,t,n){!function(e,t,n,r){O(n)&&Wt(zn(e),t,Bt(n))}(this,e,t)}},baseURI:{enumerable:!0,configurable:!0,get:function(){return zn(this).baseURI}},childNodes:{enumerable:!0,configurable:!0,get:function(){return gn(rn(this))}},cloneNode:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "cloneNode" on ShadowRoot.')}},compareDocumentPosition:{writable:!0,enumerable:!0,configurable:!0,value:function(e){var t=zn(this);return this===e?0:this.contains(e)?20:X.call(t,e)&I?37:35}},contains:{writable:!0,enumerable:!0,configurable:!0,value:function(e){if(this===e)return!0;var t=zn(this);return 0!=(X.call(t,e)&I)&&nn(t,e)}},firstChild:{enumerable:!0,configurable:!0,get:function(){return jn(this)[0]||null}},lastChild:{enumerable:!0,configurable:!0,get:function(){var e=jn(this);return e[e.length-1]||null}},hasChildNodes:{writable:!0,enumerable:!0,configurable:!0,value:function(){return jn(this).length>0}},isConnected:{enumerable:!0,configurable:!0,get:function(){return ie.call(zn(this))}},nextSibling:{enumerable:!0,configurable:!0,get:function(){return null}},previousSibling:{enumerable:!0,configurable:!0,get:function(){return null}},nodeName:{enumerable:!0,configurable:!0,get:function(){return"#document-fragment"}},nodeType:{enumerable:!0,configurable:!0,get:function(){return 11}},nodeValue:{enumerable:!0,configurable:!0,get:function(){return null}},ownerDocument:{enumerable:!0,configurable:!0,get:function(){return zn(this).ownerDocument}},parentElement:{enumerable:!0,configurable:!0,get:function(){return null}},parentNode:{enumerable:!0,configurable:!0,get:function(){return null}},textContent:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1){var l=e[n];l.nodeType!==K&&(t+=fn(l))}return t},set:function(e){var t=zn(this);oe.call(t,e)}},getRootNode:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return!L(e)&&C(e.composed)?zn(this).getRootNode(e):this}}},{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return bn(p.call(rn(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,un(n=zn(this),dt(me.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return gn((t=e,an(n=zn(this),dt(me.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t},set:function(e){var t=zn(this);He.call(t,e)}}},rr),or.prototype=o(DocumentFragment.prototype,nr),i(or,Symbol.hasInstance,{value:function(e){return A(e)&&!M(e)&&(ht(e)||c(e)===or.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return ur(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Un(this,this,e,t)},i(Document.prototype,"activeElement",{get:function(){var e=qe.call(this);if(M(e))return e;for(;!L(Xt(e));)if(M(e=le.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),i(Document.prototype,"getElementById",{value:function(){var e=Qe.apply(this,y.call(arguments));return M(e)?null:L(Xt(e))||bt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelector",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=g.call(e,(function(e){return L(Xt(e))||bt(e)}));return L(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"querySelectorAll",{value:function(){var e=dt(Je.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByClassName",{value:function(){var e=dt(Ze.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagName",{value:function(){var e=dt(et.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=dt(tt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return bn(t)},writable:!0,enumerable:!0,configurable:!0}),i(u(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=dt(nt.apply(this,y.call(arguments))),t=p.call(e,(function(e){return L(Xt(e))||bt(e)}));return gn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:or,configurable:!0,writable:!0});var cr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var sr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function fr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!cr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!cr.get.call(e)})()&&(HTMLElement.prototype.click=function(){wt.call(this,"click",fr);try{sr.value.call(this)}finally{Nt.call(this,"click",fr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=l(o(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var hr,pr,gr=CustomEvent;function mr(e,t){var n=new gr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(mr.prototype=gr.prototype,window.CustomEvent=mr,"undefined"!=typeof ClipboardEvent){var vr=l(o(null),{copy:1,cut:1,paste:1});a(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===vr[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(hr=u(HTMLIFrameElement.prototype,"contentWindow"),pr=hr.get,hr.get=function(){var e,t=pr.call(this);return M(t)||L(Xt(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},i(HTMLIFrameElement.prototype,"contentWindow",hr));var br,dr=MutationObserver,Er=dr.prototype,yr=Er.disconnect,wr=Er.observe,Tr=Er.takeRecords,Nr="$$lwcObserverCallbackWrapper$$",Lr=new WeakMap;function Mr(e){return e.$$lwcNodeObservers$$}function Cr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,i=o(MutationRecord.prototype);return a(i,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),i}function Sr(e,t){for(var n=t;!M(n);){var r=Mr(n);if(!L(r)&&(r[0]===e||-1!==m.call(r,e)))return!0;n=n.parentNode}return!1}function Or(e,t){return d.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||L(Yt(r)))Sr(t,r)&&b.call(e,n);else if(l.length>0){var a=l[0];if(Sr(t,a)){var i=Mr(r);!i||i[0]!==t&&-1===m.call(i,t)?b.call(e,Cr(n)):b.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(Vt(r)===Vt(c)&&Sr(t,r))b.call(e,n);else if(u){var s=Mr(u);!s||s[0]!==t&&-1===m.call(s,t)||b.call(e,Cr(n))}}return e}),[])}function Ar(e){var t=function(e){var t=e[Nr];return L(t)&&(t=e[Nr]=function(t,n){var r=Or(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new dr(t)}function Hr(e,t,n){if(arguments.length>1){var r=y.call(arguments);return r[1]=St(r[1]),lt.apply(this,r)}return lt.apply(this,arguments)}function _r(e,t,n){if(arguments.length>1){var r=y.call(arguments);r[1]=St(r[1]),ot.apply(this,r)}ot.apply(this,arguments)}function Rr(){var e=je.call(this);if(!(e instanceof $))return e;var t=mt(e),n=ar(e,this.composed),r=Ue.call(this);if(!(r instanceof $))return M(r)&&L(Xt(e))?e:ir(t,n);if(r===t||r===t.body)return L(Xt(e))?e:ir(t,n);var l=r,o=n;Qn(r)&&(1===Ot.get(this)&&(l=Jn(r)));return Qn(e)&&lr.has(this)&&(o=ar(Jn(e),this.composed)),ir(l,o)}function Pr(){var e=je.call(this);if(!(e instanceof $))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Kn.has(t));if(n&&!r)return Ge.call(this);if(M(Ue.call(this)))return[];var l=e;return Qn(e)&&lr.has(this)&&(l=Jn(e)),ar(l,this.composed)}function Dr(e){var t=u(e.prototype,"relatedTarget").get;i(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(M(e))return null;if(!(e instanceof $&&zt(e)))return e;var n=Ue.call(this);return M(n)&&(n=mt(e)),ir(n,ar(e,!0))},enumerable:!0,configurable:!0})}Ar.prototype=dr.prototype,Ar.prototype.disconnect=function(){var e=this;yr.call(this);var t=Lr.get(this);L(t)||(T.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!L(n)){var r=m.call(n,e);-1!==r&&w.call(n,r,1)}})),t.length=0)},Ar.prototype.observe=function(e,t){var n,r=Mr(e);if(L(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===m.call(r,this)&&b.call(r,this),Zn(e)&&(e=e.host),Lr.has(this)){var l=Lr.get(this);-1===m.call(l,e)&&b.call(l,e)}else Lr.set(this,[e]);return wr.call(this,e,t)},Ar.prototype.takeRecords=function(){return Or(Tr.call(this),this)},i(window,"MutationObserver",{value:Ar,configurable:!0,writable:!0}),a(yt,{addEventListener:{value:function(e,t,n){if(Qn(this))return jt.apply(this,arguments);if(arguments.length<2){var r=y.call(arguments);return r.length>1&&(r[1]=St(r[1])),wt.apply(this,r)}var l=St(t);return wt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(Qn(this))return Ut.apply(this,arguments);var r=y.call(arguments);arguments.length>1&&(r[1]=St(r[1])),Nt.apply(this,r),Nt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&a(Window.prototype,{addEventListener:{value:Hr,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:_r,enumerable:!0,writable:!0,configurable:!0}}),a(Event.prototype,{target:{get:Rr,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Ue.call(this);return M(e)?null:1===Ot.get(this)?Jn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Pr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:Rr,enumerable:!0,configurable:!0},path:{get:Pr,enumerable:!0,configurable:!0}}),Dr(FocusEvent),Dr(MouseEvent);var $r={childList:!0},Br=new WeakMap;function Ir(e){var t=dt(ae.call(e));return d.call(t,(function(e,t){return t instanceof Element&&tn(t)?b.apply(e,Ir(t)):b.call(e,t),e}),[])}function kr(){var e=ne.call(this);return!M(e)&&tn(e)&&Xt(e)!==Xt(this)?e:null}function xr(e,t){var n,r=Xt(e);if(L(r))n=e instanceof HTMLBodyElement?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);else if(Qn(e)){var l=Zt(e);n=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else n=p.call(t,(function(e){return Vt(e)===r}));return n}function Fr(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Sn(e[n]);return t}function Wr(){return Sn(this)}function jr(){var e=Zt(this),t=M(e)?[]:an(e,cn(this));return bn(p.call(t,(function(e){return e instanceof Element})))}function Ur(){return this.children.length}function Kr(){return this.children[0]||null}function Gr(){var e=this.children;return e.item(e.length-1)||null}function qr(e,t,n){var r;if(Qn(e)){var l=Zt(e);r=M(l)?[]:Yt(e)?ln(e,t):an(l,t)}else if(zt(e)){var o=Xt(e);if(L(o))if(1===n){var a=Vt(e);r=p.call(t,(function(e){return Vt(e)===a}))}else r=y.call(t);else r=p.call(t,(function(e){return Vt(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?p.call(t,(function(t){return L(Xt(t))||bt(e)})):y.call(t);return r}a(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Br.get(this)||(Br.set(this,!0),br||(br=new ut((function(e){var t=[];T.call(e,(function(e){var n=e.target;-1===m.call(t,n)&&(b.call(t,n),Tt.call(n,new CustomEvent("slotchange")))}))}))),ct.call(br,this,$r))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten),n=t?Ir(this):sn(this);return p.call(n,(function(e){return e instanceof Element}))}return _.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(zt(this)){var t=!L(e)&&C(e.flatten);return t?Ir(this):sn(this)}return H.apply(this,y.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=ce.call(this,"name");return M(e)?"":e},set:function(e){be.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(zt(this)){var e=Zt(this);return gn(M(e)?[]:an(e,cn(this)))}return ae.call(this)},enumerable:!0,configurable:!0}}),a(Text.prototype,{assignedSlot:{get:kr,enumerable:!0,configurable:!0}}),a(Element.prototype,{innerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Ae.call(this):Fr.call(this):zt(this)||Qn(this)?Fr.call(this):Ae.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Et.ENABLE_ELEMENT_PATCH?bt(this)?Re.call(this):Wr.call(this):zt(this)||Qn(this)?Wr.call(this):Re.call(this)},set:function(e){Pe.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?tr(this,e):de.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Qn(this)){var e=Jn(this);if("open"===e.mode)return e}return We.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return On(this)?jr.call(this):xe.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return On(this)?Ur.call(this):Ee.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return On(this)?Kr.call(this):ye.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return On(this)?Gr.call(this):we.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:kr,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"innerHTML")&&i(HTMLElement.prototype,"innerHTML",u(Element.prototype,"innerHTML")),s.call(HTMLElement.prototype,"outerHTML")&&i(HTMLElement.prototype,"outerHTML",u(Element.prototype,"outerHTML")),s.call(HTMLElement.prototype,"children")&&i(HTMLElement.prototype,"children",u(Element.prototype,"children")),a(Element.prototype,{querySelector:{value:function(){var e=this,t=dt(me.apply(this,y.call(arguments)));if(Qn(this)){var n=Zt(this);return M(n)?null:Yt(this)?on(this,t):un(n,t)}if(zt(this)){var r=Xt(this);if(L(r)){if(!Et.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=Vt(this),o=g.call(t,(function(e){return Vt(e)===l}));return L(o)?null:o}var a=g.call(t,(function(e){return Vt(e)===r}));return L(a)?null:a}if(!(Et.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return L(i)?null:i}var u=g.call(t,(function(t){return L(Xt(t))||bt(e)}));return L(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=dt(me.apply(this,y.call(arguments)));if(!Et.ENABLE_NODE_LIST_PATCH){var t=qr(this,e,0);return gn(t)}return gn(qr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),a(Element.prototype,{getElementsByClassName:{value:function(){var e=dt(Fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(xr(this,e));var t=qr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=dt(fe.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(xr(this,e));var t=qr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=dt(he.apply(this,y.call(arguments)));if(!Et.ENABLE_HTML_COLLECTIONS_PATCH)return bn(xr(this,e));var t=qr(this,e,1);return bn(t)},writable:!0,enumerable:!0,configurable:!0}}),s.call(HTMLElement.prototype,"getElementsByClassName")&&i(HTMLElement.prototype,"getElementsByClassName",u(Element.prototype,"getElementsByClassName"));var Xr="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",Vr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function Yr(e){return e.filter((function(e){return pe.call(e,"tabindex")?"0"===ce.call(e,"tabindex"):!Vr.has(De.call(e))||!pe.call(e,"disabled")}))}var zr=new WeakMap;function Jr(e){return(!Qn(e)||!Yn(e))&&(ke.call(e,Xr)&&function(e){var t=se.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function Qr(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=dt(me.call(this,Xr)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ge.call(this,Xr);M(a)||a.focus.apply(a,arguments)}}function Zr(e){var t=mt(e),n=Yr(dt(Je.call(t,Xr))),r=Yr(dt(me.call(e,Xr))),l=r[0],o=r[r.length-1],a=m.call(n,e),i=a>-1?a:m.call(n,l),u=0===r.length?i+1:m.call(n,o)+1;return{prev:y.call(n,0,i),inner:r,next:y.call(n,u)}}function el(e,t){var n=X.call(e,t);return n&I?0:n&k?1:n&x?2:-1}function tl(e){e.preventDefault(),e.stopPropagation()}function nl(e,t){lt.call(e,"focusin",tl,!0),lt.call(e,"focusout",tl,!0),t(),ot.call(e,"focusin",tl,!0),ot.call(e,"focusout",tl,!0)}function rl(e,t,n){var r=vt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(sl(t.getRootNode(),l))return l}return null}(e,n);M(l)?nl(r,(function(){t.blur()})):nl(r,(function(){l.focus()}))}var ll=!1;function ol(){ll=!0}function al(){ll=!1}function il(){return!ll}function ul(e){if(!ll){var t=Ue.call(e),n=je.call(e);if(t===n){var r=Ke.call(e);if(!M(r)){var l=Zr(t);if(1===el(t,r)){var o=sl.bind(null,t.getRootNode()),a=g.call(l.inner,o);if(L(a))rl(l.next,n,r);else nl(vt(a),(function(){a.focus()}))}else t===n&&rl(E.call(l.prev),n,r)}}}}function cl(e){if(!ll){var t=Ke.call(e);if(!M(t)){var n=Ue.call(e),r=Zr(n);if(-1===m.call(r.inner,t)){var l=je.call(e),o=el(n,t);1===o&&rl(r.next,l,t),2===o&&rl(E.call(r.prev),l,t)}}}}function sl(e,t){if(!Jr(t))return!1;for(var n=mt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===ce.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function fl(e){Nt.call(e,"focusin",ul,!0)}function hl(e){var t=mt(e);zr.get(t)||(zr.set(t,!0),wt.call(t,"mousedown",ol,!0),wt.call(t,"mouseup",(function(){setTimeout(al)}),!0),wt.call(t,"dragstart",al,!0))}function pl(e){Nt.call(e,"focusin",cl,!0)}function gl(e){var t=vt(e);return at.call(t,e)}function ml(e){var t=vt(e);return it.call(t)}function vl(e){return"visible"===e.visibility&&"none"!==e.display}function bl(e){var t=[];if(function(e){return e.nodeType===F}(e)){var n=e.tagName,r=gl(e);if("OPTION"===n)return[1,Ne.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)b.apply(t,bl(l[o]));if(!vl(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===W})(e)&&t.push(function(e){var t=ml(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function dl(e){if(!vl(gl(e)))return fn(e)||"";for(var t=function(e){var t=vt(e),n=ml(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)b.apply(n,bl(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=vt(t),i=ml(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var El=HTMLElement.prototype,yl=El.blur,wl=El.focus;function Tl(){return Yn(this)&&S(pe.call(this,"tabindex"))?0:Be.call(this)}function Nl(e){var t=Yn(this),n=Be.call(this),r=pe.call(this,"tabindex");Ie.call(this,e);var l,o=Be.call(this),a=pe.call(this,"tabindex"),i=n!==o;(r&&(i||S(a))&&(-1===n&&pl(this),0===n&&t&&fl(this)),S(a))||(r&&a&&S(i)||(-1===o&&(hl(l=this),fl(l),wt.call(l,"focusin",cl,!0)),0===o&&t&&function(e){hl(e),pl(e),wt.call(e,"focusin",ul,!0)}(this)))}function Ll(){if(Yn(this)){var e=(n=mt(t=this),M(r=qe.call(n))||0!=(X.call(t,r)&I)?r:null);if(!M(e))return void e.blur()}var t,n,r;return yl.call(this)}function Ml(){var e=il();e&&ol(),Qn(this)&&Yn(this)?Qr.call(this):(wl.apply(this,arguments),e&&al())}a(HTMLElement.prototype,{tabIndex:{get:function(){return Qn(this)?Tl.call(this):Be.call(this)},set:function(e){return Qn(this)?Nl.call(this,e):Ie.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Qn(this))return Ll.call(this);yl.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Ml.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Ne&&null!==Le&&i(HTMLElement.prototype,"innerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ne.call(this):dl(this):zt(this)||Qn(this)?dl(this):Ne.call(this):Ne.call(this)},set:function(e){Le.call(this,e)},enumerable:!0,configurable:!0}),null!==Ce&&null!==Se&&i(HTMLElement.prototype,"outerText",{get:function(){return Et.ENABLE_INNER_OUTER_TEXT_PATCH?Et.ENABLE_ELEMENT_PATCH?bt(this)?Ce.call(this):dl(this):zt(this)||Qn(this)?dl(this):Ce.call(this):Ce.call(this)},set:function(e){Se.call(this,e)},enumerable:!0,configurable:!0}),i(Element.prototype,D,{set:function(e){var t=this.$$ShadowTokenKey$$;L(t)||t===e||ve.call(this,t),L(e)||be.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Cl,Sl=function(){},Ol={childList:!0};function Al(e,t,n){var r=Xn(e);if(r!==t&&(Vn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Qn(e))return;L(r)&&ct.call(Cl,e,Ol);for(var l=ae.call(e),o=0,a=l.length;o<a;o+=1)Al(l[o],t,n)}}function Hl(e){if(L(Cl)&&(Cl=new ut((function(e){T.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=Xn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];X.call(t,u)&$.DOCUMENT_POSITION_CONTAINED_BY||Al(u,Sl,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];X.call(t,f)&$.DOCUMENT_POSITION_CONTAINED_BY&&Al(f,l,o)}}))}))),L(Xn(e)))throw new Error("Invalid Element");ct.call(Cl,e,Ol)}i(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,C(e)&&Hl(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}();
10
+ */function ir(e,t){if(S(e))return null;for(var n,r,l,o,a=ar(e,!0),i=t,u=0;u<i.length;u++)if((l=(n=i[u])instanceof Window?n:n.getRootNode())!==r&&(o=a.indexOf(l),r=l),!Qn(l)||!C(o)&&o>-1)return n;return null}function ur(e,t,n,r){var l=Ve.call(t,n,r);return S(l)?l:ir(e,ar(l,!0))}a(tr,lr,{childElementCount:{enumerable:!0,configurable:!0,get:function(){return this.children.length}},children:{enumerable:!0,configurable:!0,get:function(){return mn(m.call(tn(this),(function(e){return e instanceof Element})))}},firstElementChild:{enumerable:!0,configurable:!0,get:function(){return this.children[0]||null}},lastElementChild:{enumerable:!0,configurable:!0,get:function(){var e=this.children;return e.item(e.length-1)||null}},getElementById:{writable:!0,enumerable:!0,configurable:!0,value:function(){throw new Error('Disallowed method "getElementById" on ShadowRoot.')}},querySelector:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return t=e,on(n=Vn(this),Et(be.call(n,t)));var t,n}},querySelectorAll:{writable:!0,enumerable:!0,configurable:!0,value:function(e){return hn((t=e,ln(n=Vn(this),Et(be.call(n,t)))));var t,n}}},{innerHTML:{enumerable:!0,configurable:!0,get:function(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Mn(e[n]);return t},set:function(e){var t=Vn(this);_e.call(t,e)}}},nr),or.prototype=i(DocumentFragment.prototype,tr),c(or,Symbol.hasInstance,{value:function(e){return R(e)&&!S(e)&&(gt(e)||f(e)===or.prototype)}}),Document.prototype.elementFromPoint=function(e,t){return ur(this,this,e,t)},Document.prototype.elementsFromPoint=function(e,t){return Wn(this,this,e,t)},c(Document.prototype,"activeElement",{get:function(){var e=Ye.call(this);if(S(e))return e;for(;!C(Gt(e));)if(S(e=ae.call(e)))return null;return"HTML"===e.tagName&&(e=this.body),e},enumerable:!0,configurable:!0}),c(Document.prototype,"getElementById",{value:function(){var e=et.apply(this,T.call(arguments));return S(e)?null:C(Gt(e))||yt(e)?e:null},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"querySelector",{value:function(){var e=Et(Ze.apply(this,T.call(arguments))),t=v.call(e,(function(e){return C(Gt(e))||yt(e)}));return C(t)?null:t},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"querySelectorAll",{value:function(){var e=Et(Ze.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Gt(e))||yt(e)}));return hn(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByClassName",{value:function(){var e=Et(tt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Gt(e))||yt(e)}));return mn(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByTagName",{value:function(){var e=Et(nt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Gt(e))||yt(e)}));return mn(t)},writable:!0,enumerable:!0,configurable:!0}),c(Document.prototype,"getElementsByTagNameNS",{value:function(){var e=Et(rt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Gt(e))||yt(e)}));return mn(t)},writable:!0,enumerable:!0,configurable:!0}),c(s(HTMLDocument.prototype,"getElementsByName")?HTMLDocument.prototype:Document.prototype,"getElementsByName",{value:function(){var e=Et(lt.apply(this,T.call(arguments))),t=m.call(e,(function(e){return C(Gt(e))||yt(e)}));return hn(t)},writable:!0,enumerable:!0,configurable:!0}),Object.defineProperty(window,"ShadowRoot",{value:or,configurable:!0,writable:!0});var cr=Object.getOwnPropertyDescriptor(Event.prototype,"composed");var sr=Object.getOwnPropertyDescriptor(HTMLElement.prototype,"click");function fr(e){Object.defineProperty(e,"composed",{configurable:!0,enumerable:!0,get:function(){return!0}})}(function(){if(!cr)return!1;var e=new Event("click"),t=document.createElement("button");return t.addEventListener("click",(function(t){return e=t})),t.click(),!cr.get.call(e)})()&&(HTMLElement.prototype.click=function(){Tt.call(this,"click",fr);try{sr.value.call(this)}finally{Lt.call(this,"click",fr)}}),!0!==new Event("test",{composed:!0}).composed&&function(){var e=a(i(null),{beforeinput:1,blur:1,click:1,compositionend:1,compositionstart:1,compositionupdate:1,copy:1,cut:1,dblclick:1,DOMActivate:1,DOMFocusIn:1,DOMFocusOut:1,drag:1,dragend:1,dragenter:1,dragleave:1,dragover:1,dragstart:1,drop:1,focus:1,focusin:1,focusout:1,gotpointercapture:1,input:1,keydown:1,keypress:1,keyup:1,lostpointercapture:1,mousedown:1,mouseenter:1,mouseleave:1,mousemove:1,mouseout:1,mouseover:1,mouseup:1,paste:1,pointercancel:1,pointerdown:1,pointerenter:1,pointerleave:1,pointermove:1,pointerout:1,pointerover:1,pointerup:1,touchcancel:1,touchend:1,touchmove:1,touchstart:1,wheel:1}),t=Event;function n(e,n){var r=new t(e,n),l=!(!n||!n.composed);return Object.defineProperties(r,{composed:{get:function(){return l},configurable:!0,enumerable:!0}}),r}n.prototype=t.prototype,n.AT_TARGET=t.AT_TARGET,n.BUBBLING_PHASE=t.BUBBLING_PHASE,n.CAPTURING_PHASE=t.CAPTURING_PHASE,n.NONE=t.NONE,window.Event=n,Object.defineProperties(Event.prototype,{composed:{get:function(){var t=this.type;return 1===e[t]},configurable:!0,enumerable:!0}})}();var hr,pr,gr=CustomEvent;function mr(e,t){var n=new gr(e,t),r=!(!t||!t.composed);return Object.defineProperties(n,{composed:{get:function(){return r},configurable:!0,enumerable:!0}}),n}if(mr.prototype=gr.prototype,window.CustomEvent=mr,"undefined"!=typeof ClipboardEvent){var vr=a(i(null),{copy:1,cut:1,paste:1});u(ClipboardEvent.prototype,{composed:{get:function(){var e=this.type;return 1===vr[e]},configurable:!0,enumerable:!0}})}"undefined"!=typeof HTMLIFrameElement&&(hr=s(HTMLIFrameElement.prototype,"contentWindow"),pr=hr.get,hr.get=function(){var e,t=pr.call(this);return S(t)||C(Gt(this))?t:(e=t,{addEventListener:function(){return e.addEventListener.apply(e,arguments)},blur:function(){return e.blur.apply(e,arguments)},close:function(){return e.close.apply(e,arguments)},focus:function(){return e.focus.apply(e,arguments)},postMessage:function(){return e.postMessage.apply(e,arguments)},removeEventListener:function(){return e.removeEventListener.apply(e,arguments)},get closed(){return e.closed},get frames(){return e.frames},get length(){return e.length},get location(){return e.location},set location(t){e.location=t},get opener(){return e.opener},get parent(){return e.parent},get self(){return e.self},get top(){return e.top},get window(){return e.window}})},c(HTMLIFrameElement.prototype,"contentWindow",hr));var br,dr=MutationObserver,yr=dr.prototype,Er=yr.disconnect,wr=yr.observe,Tr=yr.takeRecords,Nr="$$lwcObserverCallbackWrapper$$",Lr=new WeakMap;function Mr(e){return e.$$lwcNodeObservers$$}function Cr(e){var t=e.addedNodes,n=e.removedNodes,r=e.target,l=e.type,o=i(MutationRecord.prototype);return u(o,{addedNodes:{get:function(){return t},enumerable:!0,configurable:!0},removedNodes:{get:function(){return n},enumerable:!0,configurable:!0},type:{get:function(){return l},enumerable:!0,configurable:!0},target:{get:function(){return r.shadowRoot},enumerable:!0,configurable:!0}}),o}function Sr(e,t){for(var n=t;!S(n);){var r=Mr(n);if(!C(r)&&(r[0]===e||-1!==b.call(r,e)))return!0;n=n.parentNode}return!1}function Or(e,t){return E.call(e,(function(e,n){var r=n.target,l=n.addedNodes,o=n.removedNodes;if("childList"!==n.type||C(Xt(r)))Sr(t,r)&&y.call(e,n);else if(l.length>0){var a=l[0];if(Sr(t,a)){var i=Mr(r);!i||i[0]!==t&&-1===b.call(i,t)?y.call(e,Cr(n)):y.call(e,n)}}else{var u=r.shadowRoot,c=o[0];if(qt(r)===qt(c)&&Sr(t,r))y.call(e,n);else if(u){var s=Mr(u);!s||s[0]!==t&&-1===b.call(s,t)||y.call(e,Cr(n))}}return e}),[])}function Hr(e){var t=function(e){var t=e[Nr];return C(t)&&(t=e[Nr]=function(t,n){var r=Or(t,n);0!==r.length&&e.call(n,r,n)}),t}(e);return new dr(t)}function Ar(e,t,n){if(arguments.length>1){var r=T.call(arguments);return r[1]=Ot(r[1]),at.apply(this,r)}return at.apply(this,arguments)}function Rr(e,t,n){if(arguments.length>1){var r=T.call(arguments);r[1]=Ot(r[1]),it.apply(this,r)}it.apply(this,arguments)}function _r(){var e=Ke.call(this);if(!(e instanceof I))return e;var t=bt(e),n=ar(e,this.composed),r=Ge.call(this);if(!(r instanceof I))return S(r)&&C(Gt(e))?e:ir(t,n);if(r===t||r===t.body)return C(Gt(e))?e:ir(t,n);var l=r,o=n;Jn(r)&&(1===Ht.get(this)&&(l=zn(r)));return Jn(e)&&rr.has(this)&&(o=ar(zn(e),this.composed)),ir(l,o)}function Pr(){var e=Ke.call(this);if(!(e instanceof I))return[];var t,n=Boolean(e.shadowRoot),r=(t=e,Un.has(t));if(n&&!r)return Xe.call(this);if(S(Ge.call(this)))return[];var l=e;return Jn(e)&&rr.has(this)&&(l=zn(e)),ar(l,this.composed)}function Dr(e){var t=s(e.prototype,"relatedTarget").get;c(e.prototype,"relatedTarget",{get:function(){var e=t.call(this);if(S(e))return null;if(!(e instanceof I&&Yt(e)))return e;var n=Ge.call(this);return S(n)&&(n=bt(e)),ir(n,ar(e,!0))},enumerable:!0,configurable:!0})}Hr.prototype=dr.prototype,Hr.prototype.disconnect=function(){var e=this;Er.call(this);var t=Lr.get(this);C(t)||(L.call(t,(function(t){var n=t.$$lwcNodeObservers$$;if(!C(n)){var r=b.call(n,e);-1!==r&&N.call(n,r,1)}})),t.length=0)},Hr.prototype.observe=function(e,t){var n,r=Mr(e);if(C(r)&&(n=r=[],e.$$lwcNodeObservers$$=n),-1===b.call(r,this)&&y.call(r,this),Qn(e)&&(e=e.host),Lr.has(this)){var l=Lr.get(this);-1===b.call(l,e)&&y.call(l,e)}else Lr.set(this,[e]);return wr.call(this,e,t)},Hr.prototype.takeRecords=function(){return Or(Tr.call(this),this)},c(window,"MutationObserver",{value:Hr,configurable:!0,writable:!0}),u(wt,{addEventListener:{value:function(e,t,n){if(Jn(this))return Ft.apply(this,arguments);if(arguments.length<2){var r=T.call(arguments);return r.length>1&&(r[1]=Ot(r[1])),Tt.apply(this,r)}var l=Ot(t);return Tt.call(this,e,l,n)},enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:function(e,t,n){if(Jn(this))return jt.apply(this,arguments);var r=T.call(arguments);arguments.length>1&&(r[1]=Ot(r[1])),Lt.apply(this,r),Lt.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),"undefined"==typeof EventTarget&&u(Window.prototype,{addEventListener:{value:Ar,enumerable:!0,writable:!0,configurable:!0},removeEventListener:{value:Rr,enumerable:!0,writable:!0,configurable:!0}}),u(Event.prototype,{target:{get:_r,enumerable:!0,configurable:!0},currentTarget:{get:function(){var e=Ge.call(this);return S(e)?null:1===Ht.get(this)?zn(e):e},enumerable:!0,configurable:!0},composedPath:{value:Pr,writable:!0,enumerable:!0,configurable:!0},srcElement:{get:_r,enumerable:!0,configurable:!0},path:{get:Pr,enumerable:!0,configurable:!0}}),Dr(FocusEvent),Dr(MouseEvent);var $r={childList:!0},Br=new WeakMap;function Ir(e){var t=Et(ue.call(e));return E.call(t,(function(e,t){return t instanceof Element&&Zt(t)?y.apply(e,Ir(t)):y.call(e,t),e}),[])}function kr(){var e=le.call(this);return!S(e)&&Zt(e)&&Gt(e)!==Gt(this)?e:null}function xr(e,t){var n,r=Gt(e);if(C(r))n=e instanceof HTMLBodyElement?m.call(t,(function(t){return C(Gt(t))||yt(e)})):T.call(t);else if(Jn(e)){var l=Jt(e);n=S(l)?[]:Xt(e)?nn(e,t):ln(l,t)}else n=m.call(t,(function(e){return qt(e)===r}));return n}function Fr(){for(var e=jn(this),t="",n=0,r=e.length;n<r;n+=1)t+=Mn(e[n]);return t}function jr(){return Mn(this)}function Wr(){var e=Jt(this),t=S(e)?[]:ln(e,an(this));return mn(m.call(t,(function(e){return e instanceof Element})))}function Ur(){return this.children.length}function Kr(){return this.children[0]||null}function Gr(){var e=this.children;return e.item(e.length-1)||null}function qr(e,t,n){var r;if(Jn(e)){var l=Jt(e);r=S(l)?[]:Xt(e)?nn(e,t):ln(l,t)}else if(Yt(e)){var o=Gt(e);if(C(o))if(1===n){var a=qt(e);r=m.call(t,(function(e){return qt(e)===a}))}else r=T.call(t);else r=m.call(t,(function(e){return qt(e)===o}))}else r=e instanceof HTMLBodyElement||1===n?m.call(t,(function(t){return C(Gt(t))||yt(e)})):T.call(t);return r}u(HTMLSlotElement.prototype,{addEventListener:{value:function(e,t,n){HTMLElement.prototype.addEventListener.call(this,e,t,n),"slotchange"!==e||Br.get(this)||(Br.set(this,!0),br||(br=new st((function(e){var t=[];L.call(e,(function(e){var n=e.target;-1===b.call(t,n)&&(y.call(t,n),Nt.call(n,new CustomEvent("slotchange")))}))}))),ft.call(br,this,$r))},writable:!0,enumerable:!0,configurable:!0},assignedElements:{value:function(e){if(Yt(this)){var t=!C(e)&&O(e.flatten),n=t?Ir(this):un(this);return m.call(n,(function(e){return e instanceof Element}))}return P.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},assignedNodes:{value:function(e){if(Yt(this)){var t=!C(e)&&O(e.flatten);return t?Ir(this):un(this)}return _.apply(this,T.call(arguments))},writable:!0,enumerable:!0,configurable:!0},name:{get:function(){var e=fe.call(this,"name");return S(e)?"":e},set:function(e){ye.call(this,"name",e)},enumerable:!0,configurable:!0},childNodes:{get:function(){if(Yt(this)){var e=Jt(this);return hn(S(e)?[]:ln(e,an(this)))}return ue.call(this)},enumerable:!0,configurable:!0}}),u(Text.prototype,{assignedSlot:{get:kr,enumerable:!0,configurable:!0}}),u(Element.prototype,{innerHTML:{get:function(){return Cn.ENABLE_ELEMENT_PATCH?yt(this)?Re.call(this):Fr.call(this):Yt(this)||Jn(this)?Fr.call(this):Re.call(this)},set:function(e){_e.call(this,e)},enumerable:!0,configurable:!0},outerHTML:{get:function(){return Cn.ENABLE_ELEMENT_PATCH?yt(this)?De.call(this):jr.call(this):Yt(this)||Jn(this)?jr.call(this):De.call(this)},set:function(e){$e.call(this,e)},enumerable:!0,configurable:!0},attachShadow:{value:function(e){return e["$$lwc-synthetic-mode"]?er(this,e):Ee.call(this,e)},enumerable:!0,writable:!0,configurable:!0},shadowRoot:{get:function(){if(Jn(this)){var e=zn(this);if("open"===e.mode)return e}return Ue.call(this)},enumerable:!0,configurable:!0},children:{get:function(){return Sn(this)?Wr.call(this):je.call(this)},enumerable:!0,configurable:!0},childElementCount:{get:function(){return Sn(this)?Ur.call(this):we.call(this)},enumerable:!0,configurable:!0},firstElementChild:{get:function(){return Sn(this)?Kr.call(this):Te.call(this)},enumerable:!0,configurable:!0},lastElementChild:{get:function(){return Sn(this)?Gr.call(this):Ne.call(this)},enumerable:!0,configurable:!0},assignedSlot:{get:kr,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"innerHTML")&&c(HTMLElement.prototype,"innerHTML",s(Element.prototype,"innerHTML")),h.call(HTMLElement.prototype,"outerHTML")&&c(HTMLElement.prototype,"outerHTML",s(Element.prototype,"outerHTML")),h.call(HTMLElement.prototype,"children")&&c(HTMLElement.prototype,"children",s(Element.prototype,"children")),u(Element.prototype,{querySelector:{value:function(){var e=this,t=Et(be.apply(this,T.call(arguments)));if(Jn(this)){var n=Jt(this);return S(n)?null:Xt(this)?rn(this,t):on(n,t)}if(Yt(this)){var r=Gt(this);if(C(r)){if(!Cn.ENABLE_NODE_LIST_PATCH)return 0===t.length?null:t[0];var l=qt(this),o=v.call(t,(function(e){return qt(e)===l}));return C(o)?null:o}var a=v.call(t,(function(e){return qt(e)===r}));return C(a)?null:a}if(!(Cn.ENABLE_NODE_LIST_PATCH||this instanceof HTMLBodyElement)){var i=t[0];return C(i)?null:i}var u=v.call(t,(function(t){return C(Gt(t))||yt(e)}));return C(u)?null:u},writable:!0,enumerable:!0,configurable:!0},querySelectorAll:{value:function(){var e=Et(be.apply(this,T.call(arguments)));if(!Cn.ENABLE_NODE_LIST_PATCH){var t=qr(this,e,0);return hn(t)}return hn(qr(this,e,1))},writable:!0,enumerable:!0,configurable:!0}}),u(Element.prototype,{getElementsByClassName:{value:function(){var e=Et(We.apply(this,T.call(arguments)));if(!Cn.ENABLE_HTML_COLLECTIONS_PATCH)return mn(xr(this,e));var t=qr(this,e,1);return mn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagName:{value:function(){var e=Et(pe.apply(this,T.call(arguments)));if(!Cn.ENABLE_HTML_COLLECTIONS_PATCH)return mn(xr(this,e));var t=qr(this,e,1);return mn(t)},writable:!0,enumerable:!0,configurable:!0},getElementsByTagNameNS:{value:function(){var e=Et(ge.apply(this,T.call(arguments)));if(!Cn.ENABLE_HTML_COLLECTIONS_PATCH)return mn(xr(this,e));var t=qr(this,e,1);return mn(t)},writable:!0,enumerable:!0,configurable:!0}}),h.call(HTMLElement.prototype,"getElementsByClassName")&&c(HTMLElement.prototype,"getElementsByClassName",s(Element.prototype,"getElementsByClassName"));var Xr="\n [contenteditable],\n [tabindex],\n a[href],\n area[href],\n audio[controls],\n button,\n iframe,\n input,\n select,\n textarea,\n video[controls]\n",Yr=new Set(["BUTTON","INPUT","SELECT","TEXTAREA"]);function Vr(e){return e.filter((function(e){return me.call(e,"tabindex")?"0"===fe.call(e,"tabindex"):!Yr.has(Be.call(e))||!me.call(e,"disabled")}))}var zr=new WeakMap;function Jr(e){return(!Jn(e)||!Yn(e))&&(Fe.call(e,Xr)&&function(e){var t=he.call(e),n=t.width,r=t.height,l=n>0||r>0,o="AREA"===e.tagName;return(l||o)&&"hidden"!==getComputedStyle(e).visibility}(e))}function Qr(){var e=this.getRootNode();if(e!==this){var t=e;if(t.activeElement!==this)for(var n=Et(be.call(this,Xr)),r=!1;!r&&0!==n.length;){var l=n.shift();l.focus.apply(l,arguments);var o=l.getRootNode();r=o.activeElement===l}}else{var a=ve.call(this,Xr);S(a)||a.focus.apply(a,arguments)}}function Zr(e){var t=bt(e),n=Vr(Et(Ze.call(t,Xr))),r=Vr(Et(be.call(e,Xr))),l=r[0],o=r[r.length-1],a=b.call(n,e),i=a>-1?a:b.call(n,l),u=0===r.length?i+1:b.call(n,o)+1;return{prev:T.call(n,0,i),inner:r,next:T.call(n,u)}}function el(e,t){var n=V.call(e,t);return n&x?0:n&F?1:n&j?2:-1}function tl(e){e.preventDefault(),e.stopPropagation()}function nl(e,t){at.call(e,"focusin",tl,!0),at.call(e,"focusout",tl,!0),t(),it.call(e,"focusin",tl,!0),it.call(e,"focusout",tl,!0)}function rl(e,t,n){var r=dt(n),l=function(e,t){var n=e.length;if(n>0)for(var r=0;r<n;r+=1){var l=e[r];if(sl(t.getRootNode(),l))return l}return null}(e,n);S(l)?nl(r,(function(){t.blur()})):nl(r,(function(){l.focus()}))}var ll=!1;function ol(){ll=!0}function al(){ll=!1}function il(){return!ll}function ul(e){if(!ll){var t=Ge.call(e),n=Ke.call(e);if(t===n){var r=qe.call(e);if(!S(r)){var l=Zr(t);if(1===el(t,r)){var o=sl.bind(null,t.getRootNode()),a=v.call(l.inner,o);if(C(a))rl(l.next,n,r);else nl(dt(a),(function(){a.focus()}))}else t===n&&rl(w.call(l.prev),n,r)}}}}function cl(e){if(!ll){var t=qe.call(e);if(!S(t)){var n=Ge.call(e),r=Zr(n);if(-1===b.call(r.inner,t)){var l=Ke.call(e),o=el(n,t);1===o&&rl(r.next,l,t),2===o&&rl(w.call(r.prev),l,t)}}}}function sl(e,t){if(!Jr(t))return!1;for(var n=bt(t),r=t.getRootNode();r!==n&&r!==e;){var l=r.host;if("-1"===fe.call(l,"tabindex"))return!1;r=l&&l.getRootNode()}return!0}function fl(e){Lt.call(e,"focusin",ul,!0)}function hl(e){var t=bt(e);zr.get(t)||(zr.set(t,!0),Tt.call(t,"mousedown",ol,!0),Tt.call(t,"mouseup",(function(){setTimeout(al)}),!0),Tt.call(t,"dragstart",al,!0))}function pl(e){Lt.call(e,"focusin",cl,!0)}function gl(e){var t=dt(e);return ut.call(t,e)}function ml(e){var t=dt(e);return ct.call(t)}function vl(e){return"visible"===e.visibility&&"none"!==e.display}function bl(e){var t=[];if(function(e){return e.nodeType===W}(e)){var n=e.tagName,r=gl(e);if("OPTION"===n)return[1,Me.call(e),1];if("TEXTAREA"===n)return[];for(var l=e.childNodes,o=0,a=l.length;o<a;o++)y.apply(t,bl(l[o]));if(!vl(r))return"SELECT"===n||"DATALIST"===n?[]:t;"BR"===n&&t.push("\n");var i=r.display;"table-cell"===i&&t.push("\t"),"table-row"===i&&t.push("\n"),"P"===n&&(t.unshift(2),t.push(2)),"block"!==i&&"table-caption"!==i&&"flex"!==i&&"table"!==i||(t.unshift(1),t.push(1))}else(function(e){return e.nodeType===U})(e)&&t.push(function(e){var t=ml(e);if(null===t)return e.textContent||"";var n=document.createRange();n.selectNodeContents(e);var r=n.getBoundingClientRect();return r.height<=0||r.width<=0?"":(t.removeAllRanges(),t.addRange(n),t.toString()||e.textContent||"")}(e));return t}function dl(e){if(!vl(gl(e)))return cn(e)||"";for(var t=function(e){var t=dt(e),n=ml(e);if(null===n)return null;for(var r=[],l=0;l<n.rangeCount;l++)r.push(n.getRangeAt(l));var o={element:e,onselect:t.onselect,onselectstart:t.onselectstart,onselectionchange:t.onselectionchange,ranges:r};return t.onselect=null,t.onselectstart=null,t.onselectionchange=null,o}(e),n=[],r=e.childNodes,l=0,o=r.length;l<o;l++)y.apply(n,bl(r[l]));!function(e){if(null!==e){var t=e.element,n=e.onselect,r=e.onselectstart,l=e.onselectionchange,o=e.ranges,a=dt(t),i=ml(t);i.removeAllRanges();for(var u=0;u<o.length;u++)i.addRange(o[u]);a.onselect=n,a.onselectstart=r,a.onselectionchange=l}}(t);for(var a="",i=0,u=0,c=n.length;u<c;u++){var s=n[u];if("string"==typeof s){if(i>0){for(var f=0;f<i;f++)a+="\n";i=0}s.length>0&&(a+=s)}else{if(0==a.length)continue;s>i&&(i=s)}}return a}var yl=HTMLElement.prototype,El=yl.blur,wl=yl.focus;function Tl(){return Yn(this)&&H(me.call(this,"tabindex"))?0:ke.call(this)}function Nl(e){var t=Yn(this),n=ke.call(this),r=me.call(this,"tabindex");xe.call(this,e);var l,o=ke.call(this),a=me.call(this,"tabindex"),i=n!==o;(r&&(i||H(a))&&(-1===n&&pl(this),0===n&&t&&fl(this)),H(a))||(r&&a&&H(i)||(-1===o&&(hl(l=this),fl(l),Tt.call(l,"focusin",cl,!0)),0===o&&t&&function(e){hl(e),pl(e),Tt.call(e,"focusin",ul,!0)}(this)))}function Ll(){if(Yn(this)){var e=(n=bt(t=this),S(r=Ye.call(n))||0!=(V.call(t,r)&x)?r:null);if(!S(e))return void e.blur()}var t,n,r;return El.call(this)}function Ml(){var e=il();e&&ol(),Jn(this)&&Yn(this)?Qr.call(this):(wl.apply(this,arguments),e&&al())}u(HTMLElement.prototype,{tabIndex:{get:function(){return Jn(this)?Tl.call(this):ke.call(this)},set:function(e){return Jn(this)?Nl.call(this,e):xe.call(this,e)},enumerable:!0,configurable:!0},blur:{value:function(){if(Jn(this))return Ll.call(this);El.call(this)},enumerable:!0,writable:!0,configurable:!0},focus:{value:function(){Ml.apply(this,arguments)},enumerable:!0,writable:!0,configurable:!0}}),null!==Me&&null!==Ce&&c(HTMLElement.prototype,"innerText",{get:function(){return Cn.ENABLE_INNER_OUTER_TEXT_PATCH?Cn.ENABLE_ELEMENT_PATCH?yt(this)?Me.call(this):dl(this):Yt(this)||Jn(this)?dl(this):Me.call(this):Me.call(this)},set:function(e){Ce.call(this,e)},enumerable:!0,configurable:!0}),null!==Oe&&null!==He&&c(HTMLElement.prototype,"outerText",{get:function(){return Cn.ENABLE_INNER_OUTER_TEXT_PATCH?Cn.ENABLE_ELEMENT_PATCH?yt(this)?Oe.call(this):dl(this):Yt(this)||Jn(this)?dl(this):Oe.call(this):Oe.call(this)},set:function(e){He.call(this,e)},enumerable:!0,configurable:!0}),c(Element.prototype,B,{set:function(e){var t=this.$$ShadowTokenKey$$;C(t)||t===e||de.call(this,t),C(e)||ye.call(this,e,""),this.$$ShadowTokenKey$$=e},get:function(){return this.$$ShadowTokenKey$$},configurable:!0});var Cl,Sl=function(){},Ol={childList:!0};function Hl(e,t,n){var r=qn(e);if(r!==t&&(Xn(e,t),e instanceof Element)){if(function(e,t){e.$shadowToken$=t}(e,n),Jn(e))return;C(r)&&ft.call(Cl,e,Ol);for(var l=ue.call(e),o=0,a=l.length;o<a;o+=1)Hl(l[o],t,n)}}function Al(e){if(C(Cl)&&(Cl=new st((function(e){L.call(e,(function(e){for(var t=e.target,n=e.addedNodes,r=e.removedNodes,l=qn(t),o=function(e){return e.$shadowToken$}(t),a=0,i=r.length;a<i;a+=1){var u=r[a];V.call(t,u)&I.DOCUMENT_POSITION_CONTAINED_BY||Hl(u,Sl,void 0)}for(var c=0,s=n.length;c<s;c+=1){var f=n[c];V.call(t,f)&I.DOCUMENT_POSITION_CONTAINED_BY&&Hl(f,l,o)}}))}))),C(qn(e)))throw new Error("Invalid Element");ft.call(Cl,e,Ol)}c(Element.prototype,"$domManual$",{set:function(e){this.$$DomManualKey$$=e,O(e)&&Al(this)},get:function(){return this.$$DomManualKey$$},configurable:!0})}();