@fluid-topics/ft-wc-utils 1.1.41 → 1.1.43

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.
@@ -40,7 +40,7 @@ export function optionalNumberProperty(options) {
40
40
  return isNumber(value) ? +value : undefined;
41
41
  },
42
42
  toAttribute: (value) => {
43
- return "" + value;
43
+ return value == null ? undefined : "" + value;
44
44
  }
45
45
  },
46
46
  ...(options !== null && options !== void 0 ? options : {})
package/build/index.d.ts CHANGED
@@ -1,4 +1,12 @@
1
1
  import "./silent-define";
2
+ declare global {
3
+ interface Window {
4
+ safari?: {
5
+ pushNotification?: any;
6
+ };
7
+ ftGlobals?: any;
8
+ }
9
+ }
2
10
  export declare const isSafari: boolean;
3
11
  export declare const isTouchScreen: boolean;
4
12
  export * from "./CacheRegistry";
@@ -14,7 +22,7 @@ export * from "./FtLitElement";
14
22
  export * from "./generic-types";
15
23
  export * from "./helpers";
16
24
  export * from "./highlight-html";
17
- export * from "./mixins.css";
25
+ export * from "./mixins.styles";
18
26
  export * from "./models";
19
27
  export * from "./ParametrizedLabelResolver";
20
28
  export * from "./redux";
package/build/index.js CHANGED
@@ -1,11 +1,69 @@
1
- var _a, _b, _c;
1
+ var _a, _b, _c, _d;
2
2
  import "./silent-define";
3
+ import * as lit from "lit";
4
+ import * as litDecorators from "lit/decorators.js";
5
+ import * as litRepeat from "lit/directives/repeat.js";
6
+ import * as litClassMap from "lit/directives/class-map.js";
7
+ import * as litStyleMap from "lit/directives/style-map.js";
8
+ import * as litUnsafeHTML from "lit/directives/unsafe-html.js";
9
+ import * as CacheRegistry from "./CacheRegistry";
10
+ import * as CancelablePromise from "./CancelablePromise";
11
+ import * as ClusteringHelper from "./ClusteringHelper";
12
+ import * as Debouncer from "./Debouncer";
13
+ import * as decorators from "./decorators";
14
+ import * as designSystemVariables from "./designSystemVariables";
15
+ import * as events from "./events";
16
+ import * as floating from "./floating";
17
+ import * as FtCssVariables from "./FtCssVariables";
18
+ import * as FtLitElement from "./FtLitElement";
19
+ import * as genericTypes from "./generic-types";
20
+ import * as helpers from "./helpers";
21
+ import * as highlightHtml from "./highlight-html";
22
+ import * as mixinsCss from "./mixins.styles";
23
+ import * as models from "./models";
24
+ import * as ParametrizedLabelResolver from "./ParametrizedLabelResolver";
25
+ import * as redux from "./redux";
26
+ import * as ScopedRegistryLitElement from "./ScopedRegistryLitElement";
27
+ import * as urlHelpers from "./urlHelpers";
28
+ import * as FtFormComponent from "./FtFormComponent";
3
29
  export const isSafari = (navigator.vendor && !!navigator.vendor.match(/apple/i))
4
30
  || ((_c = (_b = (_a = window.safari) === null || _a === void 0 ? void 0 : _a.pushNotification) === null || _b === void 0 ? void 0 : _b.toString()) !== null && _c !== void 0 ? _c : "") === "[object SafariRemoteNotification]";
5
- export const isTouchScreen = (('ontouchstart' in window)
31
+ export const isTouchScreen = (("ontouchstart" in window)
6
32
  || (navigator.maxTouchPoints > 0)
7
33
  // @ts-ignore
8
34
  || (navigator.msMaxTouchPoints > 0));
35
+ window.ftGlobals = (_d = window.ftGlobals) !== null && _d !== void 0 ? _d : {
36
+ lit,
37
+ litDecorators,
38
+ litRepeat,
39
+ litClassMap,
40
+ litStyleMap,
41
+ litUnsafeHTML,
42
+ wcUtils: {
43
+ ...CacheRegistry,
44
+ ...CancelablePromise,
45
+ ...ClusteringHelper,
46
+ ...Debouncer,
47
+ ...decorators,
48
+ ...designSystemVariables,
49
+ ...events,
50
+ ...floating,
51
+ ...FtCssVariables,
52
+ ...FtLitElement,
53
+ ...genericTypes,
54
+ ...helpers,
55
+ ...highlightHtml,
56
+ ...mixinsCss,
57
+ ...models,
58
+ ...ParametrizedLabelResolver,
59
+ ...redux,
60
+ ...ScopedRegistryLitElement,
61
+ ...urlHelpers,
62
+ ...FtFormComponent,
63
+ isSafari,
64
+ isTouchScreen
65
+ }
66
+ };
9
67
  export * from "./CacheRegistry";
10
68
  export * from "./CancelablePromise";
11
69
  export * from "./ClusteringHelper";
@@ -19,7 +77,7 @@ export * from "./FtLitElement";
19
77
  export * from "./generic-types";
20
78
  export * from "./helpers";
21
79
  export * from "./highlight-html";
22
- export * from "./mixins.css";
80
+ export * from "./mixins.styles";
23
81
  export * from "./models";
24
82
  export * from "./ParametrizedLabelResolver";
25
83
  export * from "./redux";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-wc-utils",
3
- "version": "1.1.41",
3
+ "version": "1.1.43",
4
4
  "description": "Internal web components tools",
5
5
  "author": "Fluid Topics <devtopics@antidot.net>",
6
6
  "license": "ISC",
@@ -14,7 +14,7 @@
14
14
  ],
15
15
  "dependencies": {
16
16
  "@floating-ui/dom": "1.5.3",
17
- "@fluid-topics/design-system-variables": "0.0.20",
17
+ "@fluid-topics/design-system-variables": "0.0.21",
18
18
  "@fluid-topics/public-api": "1.0.60",
19
19
  "@reduxjs/toolkit": "1.9.5",
20
20
  "@types/mark.js": "8.11.12",
@@ -23,5 +23,5 @@
23
23
  "lit": "3.1.0",
24
24
  "mark.js": "8.11.1"
25
25
  },
26
- "gitHead": "9842020c30f172387107ab92ffa3d2c5a33edce6"
26
+ "gitHead": "c6f6bcb506f87c05a46c67d364abc285eec41894"
27
27
  }
@@ -1,7 +0,0 @@
1
- export * as lit from "lit";
2
- export * as litDecorators from "lit/decorators.js";
3
- export * as litRepeat from "lit/directives/repeat.js";
4
- export * as litClassMap from "lit/directives/class-map.js";
5
- export * as litStyleMap from "lit/directives/style-map.js";
6
- export * as litUnsafeHTML from "lit-html/directives/unsafe-html.js";
7
- export * as wcUtils from "./index";
package/build/globals.js DELETED
@@ -1,7 +0,0 @@
1
- export * as lit from "lit";
2
- export * as litDecorators from "lit/decorators.js";
3
- export * as litRepeat from "lit/directives/repeat.js";
4
- export * as litClassMap from "lit/directives/class-map.js";
5
- export * as litStyleMap from "lit/directives/style-map.js";
6
- export * as litUnsafeHTML from "lit-html/directives/unsafe-html.js";
7
- export * as wcUtils from "./index";
@@ -1,190 +0,0 @@
1
- !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).ftGlobals={})}(this,(function(t){
2
- /**
3
- * @license
4
- * Copyright 2019 Google LLC
5
- * SPDX-License-Identifier: BSD-3-Clause
6
- */
7
- const e=globalThis,o=e.ShadowRoot&&(void 0===e.ShadyCSS||e.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,r=Symbol(),n=new WeakMap;const i=t=>new class{constructor(t,e,o){if(this._$cssResult$=!0,o!==r)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(o&&void 0===t){const o=void 0!==e&&1===e.length;o&&(t=n.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),o&&n.set(e,t))}return t}toString(){return this.cssText}}("string"==typeof t?t:t+"",void 0,r),a=o?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const o of t.cssRules)e+=o.cssText;return i(e)})(t):t
8
- /**
9
- * @license
10
- * Copyright 2017 Google LLC
11
- * SPDX-License-Identifier: BSD-3-Clause
12
- */,{is:s,defineProperty:c,getOwnPropertyDescriptor:l,getOwnPropertyNames:f,getOwnPropertySymbols:u,getPrototypeOf:h}=Object,p=globalThis,d=p.trustedTypes,y=d?d.emptyScript:"",g=p.reactiveElementPolyfillSupport,b=(t,e)=>t,m={toAttribute(t,e){switch(e){case Boolean:t=t?y:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let o=t;switch(e){case Boolean:o=null!==t;break;case Number:o=null===t?null:Number(t);break;case Object:case Array:try{o=JSON.parse(t)}catch(t){o=null}}return o}},v=(t,e)=>!s(t,e),O={attribute:!0,type:String,converter:m,reflect:!1,hasChanged:v};Symbol.metadata??=Symbol("metadata"),p.litPropertyMetadata??=new WeakMap;let S=class extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=O){if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){const o=Symbol(),r=this.getPropertyDescriptor(t,o,e);void 0!==r&&c(this.prototype,t,r)}}static getPropertyDescriptor(t,e,o){const{get:r,set:n}=l(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get(){return r?.call(this)},set(e){const i=r?.call(this);n.call(this,e),this.requestUpdate(t,i,o)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??O}static _$Ei(){if(this.hasOwnProperty(b("elementProperties")))return;const t=h(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(b("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(b("properties"))){const t=this.properties,e=[...f(t),...u(t)];for(const o of e)this.createProperty(o,t[o])}const t=this[Symbol.metadata];if(null!==t){const e=litPropertyMetadata.get(t);if(void 0!==e)for(const[t,o]of e)this.elementProperties.set(t,o)}this._$Eh=new Map;for(const[t,e]of this.elementProperties){const o=this._$Eu(t,e);void 0!==o&&this._$Eh.set(o,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const o=new Set(t.flat(1/0).reverse());for(const t of o)e.unshift(a(t))}else void 0!==t&&e.push(a(t));return e}static _$Eu(t,e){const o=e.attribute;return!1===o?void 0:"string"==typeof o?o:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$Eg=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$ES(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$E_??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$E_?.delete(t)}_$ES(){const t=new Map,e=this.constructor.elementProperties;for(const o of e.keys())this.hasOwnProperty(o)&&(t.set(o,this[o]),delete this[o]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return((t,r)=>{if(o)t.adoptedStyleSheets=r.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const o of r){const r=document.createElement("style"),n=e.litNonce;void 0!==n&&r.setAttribute("nonce",n),r.textContent=o.cssText,t.appendChild(r)}})(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$E_?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$E_?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,e,o){this._$AK(t,o)}_$EO(t,e){const o=this.constructor.elementProperties.get(t),r=this.constructor._$Eu(t,o);if(void 0!==r&&!0===o.reflect){const n=(void 0!==o.converter?.toAttribute?o.converter:m).toAttribute(e,o.type);this._$Em=t,null==n?this.removeAttribute(r):this.setAttribute(r,n),this._$Em=null}}_$AK(t,e){const o=this.constructor,r=o._$Eh.get(t);if(void 0!==r&&this._$Em!==r){const t=o.getPropertyOptions(r),n="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:m;this._$Em=r,this[r]=n.fromAttribute(e,t.type),this._$Em=null}}requestUpdate(t,e,o,r=!1,n){if(void 0!==t){if(o??=this.constructor.getPropertyOptions(t),!(o.hasChanged??v)(r?n:this[t],e))return;this.C(t,e,o)}!1===this.isUpdatePending&&(this._$Eg=this._$EP())}C(t,e,o){this._$AL.has(t)||this._$AL.set(t,e),!0===o.reflect&&this._$Em!==t&&(this._$Ej??=new Set).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,e]of this._$Ep)this[t]=e;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[e,o]of t)!0!==o.wrapped||this._$AL.has(e)||void 0===this[e]||this.C(e,this[e],o)}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$E_?.forEach((t=>t.hostUpdate?.())),this.update(e)):this._$ET()}catch(e){throw t=!1,this._$ET(),e}t&&this._$AE(e)}willUpdate(t){}_$AE(t){this._$E_?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&=this._$Ej.forEach((t=>this._$EO(t,this[t]))),this._$ET()}updated(t){}firstUpdated(t){}};S.elementStyles=[],S.shadowRootOptions={mode:"open"},S[b("elementProperties")]=new Map,S[b("finalized")]=new Map,g?.({ReactiveElement:S}),(p.reactiveElementVersions??=[]).push("2.0.2");
13
- /**
14
- * @license
15
- * Copyright 2017 Google LLC
16
- * SPDX-License-Identifier: BSD-3-Clause
17
- */
18
- const w=globalThis,N=w.trustedTypes,x=N?N.createPolicy("lit-html",{createHTML:t=>t}):void 0,C="$lit$",E=`lit$${(Math.random()+"").slice(9)}$`,R="?"+E,L=`<${R}>`,I=document,U=()=>I.createComment(""),W=t=>null===t||"object"!=typeof t&&"function"!=typeof t,k=Array.isArray,A=t=>k(t)||"function"==typeof t?.[Symbol.iterator],F="[ \t\n\f\r]",$=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,K=/-->/g,P=/>/g,B=RegExp(`>|${F}(?:([^\\s"'>=/]+)(${F}*=${F}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),j=/'/g,M=/"/g,D=/^(?:script|style|textarea|title)$/i,Z=Symbol.for("lit-noChange"),z=Symbol.for("lit-nothing"),_=new WeakMap,H=I.createTreeWalker(I,129);function T(t,e){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==x?x.createHTML(e):e}const G=(t,e)=>{const o=t.length-1,r=[];let n,i=2===e?"<svg>":"",a=$;for(let e=0;e<o;e++){const o=t[e];let s,c,l=-1,f=0;for(;f<o.length&&(a.lastIndex=f,c=a.exec(o),null!==c);)f=a.lastIndex,a===$?"!--"===c[1]?a=K:void 0!==c[1]?a=P:void 0!==c[2]?(D.test(c[2])&&(n=RegExp("</"+c[2],"g")),a=B):void 0!==c[3]&&(a=B):a===B?">"===c[0]?(a=n??$,l=-1):void 0===c[1]?l=-2:(l=a.lastIndex-c[2].length,s=c[1],a=void 0===c[3]?B:'"'===c[3]?M:j):a===M||a===j?a=B:a===K||a===P?a=$:(a=B,n=void 0);const u=a===B&&t[e+1].startsWith("/>")?" ":"";i+=a===$?o+L:l>=0?(r.push(s),o.slice(0,l)+C+o.slice(l)+E+u):o+E+(-2===l?e:u)}return[T(t,i+(t[o]||"<?>")+(2===e?"</svg>":"")),r]};let V=class t{constructor({strings:e,_$litType$:o},r){let n;this.parts=[];let i=0,a=0;const s=e.length-1,c=this.parts,[l,f]=G(e,o);if(this.el=t.createElement(l,r),H.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(n=H.nextNode())&&c.length<s;){if(1===n.nodeType){if(n.hasAttributes())for(const t of n.getAttributeNames())if(t.endsWith(C)){const e=f[a++],o=n.getAttribute(t).split(E),r=/([.?@])?(.*)/.exec(e);c.push({type:1,index:i,name:r[2],strings:o,ctor:"."===r[1]?Q:"?"===r[1]?tt:"@"===r[1]?et:X}),n.removeAttribute(t)}else t.startsWith(E)&&(c.push({type:6,index:i}),n.removeAttribute(t));if(D.test(n.tagName)){const t=n.textContent.split(E),e=t.length-1;if(e>0){n.textContent=N?N.emptyScript:"";for(let o=0;o<e;o++)n.append(t[o],U()),H.nextNode(),c.push({type:2,index:++i});n.append(t[e],U())}}}else if(8===n.nodeType)if(n.data===R)c.push({type:2,index:i});else{let t=-1;for(;-1!==(t=n.data.indexOf(E,t+1));)c.push({type:7,index:i}),t+=E.length-1}i++}}static createElement(t,e){const o=I.createElement("template");return o.innerHTML=t,o}};function q(t,e,o=t,r){if(e===Z)return e;let n=void 0!==r?o._$Co?.[r]:o._$Cl;const i=W(e)?void 0:e._$litDirective$;return n?.constructor!==i&&(n?._$AO?.(!1),void 0===i?n=void 0:(n=new i(t),n._$AT(t,o,r)),void 0!==r?(o._$Co??=[])[r]=n:o._$Cl=n),void 0!==n&&(e=q(t,n._$AS(t,e.values),n,r)),e}let Y=class{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:o}=this._$AD,r=(t?.creationScope??I).importNode(e,!0);H.currentNode=r;let n=H.nextNode(),i=0,a=0,s=o[0];for(;void 0!==s;){if(i===s.index){let e;2===s.type?e=new J(n,n.nextSibling,this,t):1===s.type?e=new s.ctor(n,s.name,s.strings,this,t):6===s.type&&(e=new ot(n,this,t)),this._$AV.push(e),s=o[++a]}i!==s?.index&&(n=H.nextNode(),i++)}return H.currentNode=I,r}p(t){let e=0;for(const o of this._$AV)void 0!==o&&(void 0!==o.strings?(o._$AI(t,o,e),e+=o.strings.length-2):o._$AI(t[e])),e++}},J=class t{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,o,r){this.type=2,this._$AH=z,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=o,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t?.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=q(this,t,e),W(t)?t===z||null==t||""===t?(this._$AH!==z&&this._$AR(),this._$AH=z):t!==this._$AH&&t!==Z&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):A(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==z&&W(this._$AH)?this._$AA.nextSibling.data=t:this.$(I.createTextNode(t)),this._$AH=t}g(t){const{values:e,_$litType$:o}=t,r="number"==typeof o?this._$AC(t):(void 0===o.el&&(o.el=V.createElement(T(o.h,o.h[0]),this.options)),o);if(this._$AH?._$AD===r)this._$AH.p(e);else{const t=new Y(r,this),o=t.u(this.options);t.p(e),this.$(o),this._$AH=t}}_$AC(t){let e=_.get(t.strings);return void 0===e&&_.set(t.strings,e=new V(t)),e}T(e){k(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let r,n=0;for(const i of e)n===o.length?o.push(r=new t(this.k(U()),this.k(U()),this,this.options)):r=o[n],r._$AI(i),n++;n<o.length&&(this._$AR(r&&r._$AB.nextSibling,n),o.length=n)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}},X=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,o,r,n){this.type=1,this._$AH=z,this._$AN=void 0,this.element=t,this.name=e,this._$AM=r,this.options=n,o.length>2||""!==o[0]||""!==o[1]?(this._$AH=Array(o.length-1).fill(new String),this.strings=o):this._$AH=z}_$AI(t,e=this,o,r){const n=this.strings;let i=!1;if(void 0===n)t=q(this,t,e,0),i=!W(t)||t!==this._$AH&&t!==Z,i&&(this._$AH=t);else{const r=t;let a,s;for(t=n[0],a=0;a<n.length-1;a++)s=q(this,r[o+a],e,a),s===Z&&(s=this._$AH[a]),i||=!W(s)||s!==this._$AH[a],s===z?t=z:t!==z&&(t+=(s??"")+n[a+1]),this._$AH[a]=s}i&&!r&&this.O(t)}O(t){t===z?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}},Q=class extends X{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===z?void 0:t}},tt=class extends X{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==z)}},et=class extends X{constructor(t,e,o,r,n){super(t,e,o,r,n),this.type=5}_$AI(t,e=this){if((t=q(this,t,e,0)??z)===Z)return;const o=this._$AH,r=t===z&&o!==z||t.capture!==o.capture||t.once!==o.once||t.passive!==o.passive,n=t!==z&&(o===z||r);r&&this.element.removeEventListener(this.name,this,o),n&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}},ot=class{constructor(t,e,o){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=o}get _$AU(){return this._$AM._$AU}_$AI(t){q(this,t)}};const rt={j:C,P:E,A:R,C:1,M:G,L:Y,R:A,V:q,D:J,I:X,H:tt,N:et,U:Q,B:ot},nt=w.litHtmlPolyfillSupport;nt?.(V,J),(w.litHtmlVersions??=[]).push("3.1.0");
19
- /**
20
- * @license
21
- * Copyright 2019 Google LLC
22
- * SPDX-License-Identifier: BSD-3-Clause
23
- */
24
- const it=globalThis,at=it.ShadowRoot&&(void 0===it.ShadyCSS||it.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,st=Symbol(),ct=new WeakMap;let lt=class{constructor(t,e,o){if(this._$cssResult$=!0,o!==st)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=e}get styleSheet(){let t=this.o;const e=this.t;if(at&&void 0===t){const o=void 0!==e&&1===e.length;o&&(t=ct.get(e)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),o&&ct.set(e,t))}return t}toString(){return this.cssText}};const ft=t=>new lt("string"==typeof t?t:t+"",void 0,st),ut=(t,...e)=>{const o=1===t.length?t[0]:e.reduce(((e,o,r)=>e+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(o)+t[r+1]),t[0]);return new lt(o,t,st)},ht=(t,e)=>{if(at)t.adoptedStyleSheets=e.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const o of e){const e=document.createElement("style"),r=it.litNonce;void 0!==r&&e.setAttribute("nonce",r),e.textContent=o.cssText,t.appendChild(e)}},pt=at?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let e="";for(const o of t.cssRules)e+=o.cssText;return ft(e)})(t):t
25
- /**
26
- * @license
27
- * Copyright 2017 Google LLC
28
- * SPDX-License-Identifier: BSD-3-Clause
29
- */,{is:dt,defineProperty:yt,getOwnPropertyDescriptor:gt,getOwnPropertyNames:bt,getOwnPropertySymbols:mt,getPrototypeOf:vt}=Object,Ot=globalThis,St=Ot.trustedTypes,wt=St?St.emptyScript:"",Nt=Ot.reactiveElementPolyfillSupport,xt=(t,e)=>t,Ct={toAttribute(t,e){switch(e){case Boolean:t=t?wt:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,e){let o=t;switch(e){case Boolean:o=null!==t;break;case Number:o=null===t?null:Number(t);break;case Object:case Array:try{o=JSON.parse(t)}catch(t){o=null}}return o}},Et=(t,e)=>!dt(t,e),Rt={attribute:!0,type:String,converter:Ct,reflect:!1,hasChanged:Et};Symbol.metadata??=Symbol("metadata"),Ot.litPropertyMetadata??=new WeakMap;let Lt=class extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,e=Rt){if(e.state&&(e.attribute=!1),this._$Ei(),this.elementProperties.set(t,e),!e.noAccessor){const o=Symbol(),r=this.getPropertyDescriptor(t,o,e);void 0!==r&&yt(this.prototype,t,r)}}static getPropertyDescriptor(t,e,o){const{get:r,set:n}=gt(this.prototype,t)??{get(){return this[e]},set(t){this[e]=t}};return{get(){return r?.call(this)},set(e){const i=r?.call(this);n.call(this,e),this.requestUpdate(t,i,o)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??Rt}static _$Ei(){if(this.hasOwnProperty(xt("elementProperties")))return;const t=vt(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(xt("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(xt("properties"))){const t=this.properties,e=[...bt(t),...mt(t)];for(const o of e)this.createProperty(o,t[o])}const t=this[Symbol.metadata];if(null!==t){const e=litPropertyMetadata.get(t);if(void 0!==e)for(const[t,o]of e)this.elementProperties.set(t,o)}this._$Eh=new Map;for(const[t,e]of this.elementProperties){const o=this._$Eu(t,e);void 0!==o&&this._$Eh.set(o,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const e=[];if(Array.isArray(t)){const o=new Set(t.flat(1/0).reverse());for(const t of o)e.unshift(pt(t))}else void 0!==t&&e.push(pt(t));return e}static _$Eu(t,e){const o=e.attribute;return!1===o?void 0:"string"==typeof o?o:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$Eg=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$ES(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$E_??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$E_?.delete(t)}_$ES(){const t=new Map,e=this.constructor.elementProperties;for(const o of e.keys())this.hasOwnProperty(o)&&(t.set(o,this[o]),delete this[o]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return ht(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$E_?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$E_?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,e,o){this._$AK(t,o)}_$EO(t,e){const o=this.constructor.elementProperties.get(t),r=this.constructor._$Eu(t,o);if(void 0!==r&&!0===o.reflect){const n=(void 0!==o.converter?.toAttribute?o.converter:Ct).toAttribute(e,o.type);this._$Em=t,null==n?this.removeAttribute(r):this.setAttribute(r,n),this._$Em=null}}_$AK(t,e){const o=this.constructor,r=o._$Eh.get(t);if(void 0!==r&&this._$Em!==r){const t=o.getPropertyOptions(r),n="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:Ct;this._$Em=r,this[r]=n.fromAttribute(e,t.type),this._$Em=null}}requestUpdate(t,e,o,r=!1,n){if(void 0!==t){if(o??=this.constructor.getPropertyOptions(t),!(o.hasChanged??Et)(r?n:this[t],e))return;this.C(t,e,o)}!1===this.isUpdatePending&&(this._$Eg=this._$EP())}C(t,e,o){this._$AL.has(t)||this._$AL.set(t,e),!0===o.reflect&&this._$Em!==t&&(this._$Ej??=new Set).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,e]of this._$Ep)this[t]=e;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[e,o]of t)!0!==o.wrapped||this._$AL.has(e)||void 0===this[e]||this.C(e,this[e],o)}let t=!1;const e=this._$AL;try{t=this.shouldUpdate(e),t?(this.willUpdate(e),this._$E_?.forEach((t=>t.hostUpdate?.())),this.update(e)):this._$ET()}catch(e){throw t=!1,this._$ET(),e}t&&this._$AE(e)}willUpdate(t){}_$AE(t){this._$E_?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&=this._$Ej.forEach((t=>this._$EO(t,this[t]))),this._$ET()}updated(t){}firstUpdated(t){}};Lt.elementStyles=[],Lt.shadowRootOptions={mode:"open"},Lt[xt("elementProperties")]=new Map,Lt[xt("finalized")]=new Map,Nt?.({ReactiveElement:Lt}),(Ot.reactiveElementVersions??=[]).push("2.0.2");
30
- /**
31
- * @license
32
- * Copyright 2017 Google LLC
33
- * SPDX-License-Identifier: BSD-3-Clause
34
- */
35
- const It=globalThis,Ut=It.trustedTypes,Wt=Ut?Ut.createPolicy("lit-html",{createHTML:t=>t}):void 0,kt="$lit$",At=`lit$${(Math.random()+"").slice(9)}$`,Ft="?"+At,$t=`<${Ft}>`,Kt=document,Pt=()=>Kt.createComment(""),Bt=t=>null===t||"object"!=typeof t&&"function"!=typeof t,jt=Array.isArray,Mt=t=>jt(t)||"function"==typeof t?.[Symbol.iterator],Dt="[ \t\n\f\r]",Zt=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,zt=/-->/g,_t=/>/g,Ht=RegExp(`>|${Dt}(?:([^\\s"'>=/]+)(${Dt}*=${Dt}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),Tt=/'/g,Gt=/"/g,Vt=/^(?:script|style|textarea|title)$/i,qt=t=>(e,...o)=>({_$litType$:t,strings:e,values:o}),Yt=qt(1),Jt=qt(2),Xt=Symbol.for("lit-noChange"),Qt=Symbol.for("lit-nothing"),te=new WeakMap,ee=Kt.createTreeWalker(Kt,129);function oe(t,e){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==Wt?Wt.createHTML(e):e}const re=(t,e)=>{const o=t.length-1,r=[];let n,i=2===e?"<svg>":"",a=Zt;for(let e=0;e<o;e++){const o=t[e];let s,c,l=-1,f=0;for(;f<o.length&&(a.lastIndex=f,c=a.exec(o),null!==c);)f=a.lastIndex,a===Zt?"!--"===c[1]?a=zt:void 0!==c[1]?a=_t:void 0!==c[2]?(Vt.test(c[2])&&(n=RegExp("</"+c[2],"g")),a=Ht):void 0!==c[3]&&(a=Ht):a===Ht?">"===c[0]?(a=n??Zt,l=-1):void 0===c[1]?l=-2:(l=a.lastIndex-c[2].length,s=c[1],a=void 0===c[3]?Ht:'"'===c[3]?Gt:Tt):a===Gt||a===Tt?a=Ht:a===zt||a===_t?a=Zt:(a=Ht,n=void 0);const u=a===Ht&&t[e+1].startsWith("/>")?" ":"";i+=a===Zt?o+$t:l>=0?(r.push(s),o.slice(0,l)+kt+o.slice(l)+At+u):o+At+(-2===l?e:u)}return[oe(t,i+(t[o]||"<?>")+(2===e?"</svg>":"")),r]};let ne=class t{constructor({strings:e,_$litType$:o},r){let n;this.parts=[];let i=0,a=0;const s=e.length-1,c=this.parts,[l,f]=re(e,o);if(this.el=t.createElement(l,r),ee.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(n=ee.nextNode())&&c.length<s;){if(1===n.nodeType){if(n.hasAttributes())for(const t of n.getAttributeNames())if(t.endsWith(kt)){const e=f[a++],o=n.getAttribute(t).split(At),r=/([.?@])?(.*)/.exec(e);c.push({type:1,index:i,name:r[2],strings:o,ctor:"."===r[1]?le:"?"===r[1]?fe:"@"===r[1]?ue:ce}),n.removeAttribute(t)}else t.startsWith(At)&&(c.push({type:6,index:i}),n.removeAttribute(t));if(Vt.test(n.tagName)){const t=n.textContent.split(At),e=t.length-1;if(e>0){n.textContent=Ut?Ut.emptyScript:"";for(let o=0;o<e;o++)n.append(t[o],Pt()),ee.nextNode(),c.push({type:2,index:++i});n.append(t[e],Pt())}}}else if(8===n.nodeType)if(n.data===Ft)c.push({type:2,index:i});else{let t=-1;for(;-1!==(t=n.data.indexOf(At,t+1));)c.push({type:7,index:i}),t+=At.length-1}i++}}static createElement(t,e){const o=Kt.createElement("template");return o.innerHTML=t,o}};function ie(t,e,o=t,r){if(e===Xt)return e;let n=void 0!==r?o._$Co?.[r]:o._$Cl;const i=Bt(e)?void 0:e._$litDirective$;return n?.constructor!==i&&(n?._$AO?.(!1),void 0===i?n=void 0:(n=new i(t),n._$AT(t,o,r)),void 0!==r?(o._$Co??=[])[r]=n:o._$Cl=n),void 0!==n&&(e=ie(t,n._$AS(t,e.values),n,r)),e}let ae=class{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:e},parts:o}=this._$AD,r=(t?.creationScope??Kt).importNode(e,!0);ee.currentNode=r;let n=ee.nextNode(),i=0,a=0,s=o[0];for(;void 0!==s;){if(i===s.index){let e;2===s.type?e=new se(n,n.nextSibling,this,t):1===s.type?e=new s.ctor(n,s.name,s.strings,this,t):6===s.type&&(e=new he(n,this,t)),this._$AV.push(e),s=o[++a]}i!==s?.index&&(n=ee.nextNode(),i++)}return ee.currentNode=Kt,r}p(t){let e=0;for(const o of this._$AV)void 0!==o&&(void 0!==o.strings?(o._$AI(t,o,e),e+=o.strings.length-2):o._$AI(t[e])),e++}},se=class t{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,e,o,r){this.type=2,this._$AH=Qt,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=o,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===t?.nodeType&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=ie(this,t,e),Bt(t)?t===Qt||null==t||""===t?(this._$AH!==Qt&&this._$AR(),this._$AH=Qt):t!==this._$AH&&t!==Xt&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):Mt(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==Qt&&Bt(this._$AH)?this._$AA.nextSibling.data=t:this.$(Kt.createTextNode(t)),this._$AH=t}g(t){const{values:e,_$litType$:o}=t,r="number"==typeof o?this._$AC(t):(void 0===o.el&&(o.el=ne.createElement(oe(o.h,o.h[0]),this.options)),o);if(this._$AH?._$AD===r)this._$AH.p(e);else{const t=new ae(r,this),o=t.u(this.options);t.p(e),this.$(o),this._$AH=t}}_$AC(t){let e=te.get(t.strings);return void 0===e&&te.set(t.strings,e=new ne(t)),e}T(e){jt(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let r,n=0;for(const i of e)n===o.length?o.push(r=new t(this.k(Pt()),this.k(Pt()),this,this.options)):r=o[n],r._$AI(i),n++;n<o.length&&(this._$AR(r&&r._$AB.nextSibling,n),o.length=n)}_$AR(t=this._$AA.nextSibling,e){for(this._$AP?.(!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}},ce=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,e,o,r,n){this.type=1,this._$AH=Qt,this._$AN=void 0,this.element=t,this.name=e,this._$AM=r,this.options=n,o.length>2||""!==o[0]||""!==o[1]?(this._$AH=Array(o.length-1).fill(new String),this.strings=o):this._$AH=Qt}_$AI(t,e=this,o,r){const n=this.strings;let i=!1;if(void 0===n)t=ie(this,t,e,0),i=!Bt(t)||t!==this._$AH&&t!==Xt,i&&(this._$AH=t);else{const r=t;let a,s;for(t=n[0],a=0;a<n.length-1;a++)s=ie(this,r[o+a],e,a),s===Xt&&(s=this._$AH[a]),i||=!Bt(s)||s!==this._$AH[a],s===Qt?t=Qt:t!==Qt&&(t+=(s??"")+n[a+1]),this._$AH[a]=s}i&&!r&&this.O(t)}O(t){t===Qt?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}},le=class extends ce{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===Qt?void 0:t}},fe=class extends ce{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==Qt)}},ue=class extends ce{constructor(t,e,o,r,n){super(t,e,o,r,n),this.type=5}_$AI(t,e=this){if((t=ie(this,t,e,0)??Qt)===Xt)return;const o=this._$AH,r=t===Qt&&o!==Qt||t.capture!==o.capture||t.once!==o.once||t.passive!==o.passive,n=t!==Qt&&(o===Qt||r);r&&this.element.removeEventListener(this.name,this,o),n&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}},he=class{constructor(t,e,o){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=o}get _$AU(){return this._$AM._$AU}_$AI(t){ie(this,t)}};const pe={j:kt,P:At,A:Ft,C:1,M:re,L:ae,R:Mt,V:ie,D:se,I:ce,H:fe,N:ue,U:le,B:he},de=It.litHtmlPolyfillSupport;de?.(ne,se),(It.litHtmlVersions??=[]).push("3.1.0");const ye=(t,e,o)=>{const r=o?.renderBefore??e;let n=r._$litPart$;if(void 0===n){const t=o?.renderBefore??null;r._$litPart$=n=new se(e.insertBefore(Pt(),t),t,void 0,o??{})}return n._$AI(t),n
36
- /**
37
- * @license
38
- * Copyright 2017 Google LLC
39
- * SPDX-License-Identifier: BSD-3-Clause
40
- */};let ge=class extends Lt{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const e=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=ye(e,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return Xt}};ge._$litElement$=!0,ge.finalized=!0,globalThis.litElementHydrateSupport?.({LitElement:ge});const be=globalThis.litElementPolyfillSupport;be?.({LitElement:ge});(globalThis.litElementVersions??=[]).push("4.0.2");var me=Object.freeze({__proto__:null,CSSResult:lt,LitElement:ge,ReactiveElement:Lt,_$LE:{_$AK:(t,e,o)=>{t._$AK(e,o)},_$AL:t=>t._$AL},_$LH:pe,adoptStyles:ht,css:ut,defaultConverter:Ct,getCompatibleStyle:pt,html:Yt,isServer:!1,noChange:Xt,notEqual:Et,nothing:Qt,render:ye,supportsAdoptingStyleSheets:at,svg:Jt,unsafeCSS:ft});
41
- /**
42
- * @license
43
- * Copyright 2017 Google LLC
44
- * SPDX-License-Identifier: BSD-3-Clause
45
- */const ve={attribute:!0,type:String,converter:m,reflect:!1,hasChanged:v},Oe=(t=ve,e,o)=>{const{kind:r,metadata:n}=o;let i=globalThis.litPropertyMetadata.get(n);if(void 0===i&&globalThis.litPropertyMetadata.set(n,i=new Map),i.set(o.name,t),"accessor"===r){const{name:r}=o;return{set(o){const n=e.get.call(this);e.set.call(this,o),this.requestUpdate(r,n,t)},init(e){return void 0!==e&&this.C(r,void 0,t),e}}}if("setter"===r){const{name:r}=o;return function(o){const n=this[r];e.call(this,o),this.requestUpdate(r,n,t)}}throw Error("Unsupported decorator location: "+r)};
46
- /**
47
- * @license
48
- * Copyright 2017 Google LLC
49
- * SPDX-License-Identifier: BSD-3-Clause
50
- */function Se(t){return(e,o)=>"object"==typeof o?Oe(t,e,o):((t,e,o)=>{const r=e.hasOwnProperty(o);return e.constructor.createProperty(o,r?{...t,wrapped:!0}:t),r?Object.getOwnPropertyDescriptor(e,o):void 0})(t,e,o)
51
- /**
52
- * @license
53
- * Copyright 2017 Google LLC
54
- * SPDX-License-Identifier: BSD-3-Clause
55
- */}
56
- /**
57
- * @license
58
- * Copyright 2017 Google LLC
59
- * SPDX-License-Identifier: BSD-3-Clause
60
- */
61
- const we=(t,e,o)=>(o.configurable=!0,o.enumerable=!0,o)
62
- /**
63
- * @license
64
- * Copyright 2017 Google LLC
65
- * SPDX-License-Identifier: BSD-3-Clause
66
- */;
67
- /**
68
- * @license
69
- * Copyright 2017 Google LLC
70
- * SPDX-License-Identifier: BSD-3-Clause
71
- */
72
- let Ne;var xe=Object.freeze({__proto__:null,customElement:t=>(e,o)=>{void 0!==o?o.addInitializer((()=>{customElements.define(t,e)})):customElements.define(t,e)},eventOptions:
73
- /**
74
- * @license
75
- * Copyright 2017 Google LLC
76
- * SPDX-License-Identifier: BSD-3-Clause
77
- */
78
- function(t){return(e,o)=>{const r="function"==typeof e?e:e[o];Object.assign(r,t)}},property:Se,query:function(t,e){return(o,r,n)=>{const i=e=>e.renderRoot?.querySelector(t)??null;if(e){const{get:t,set:e}="object"==typeof r?o:n??(()=>{const t=Symbol();return{get(){return this[t]},set(e){this[t]=e}}})();return we(0,0,{get(){let o=t.call(this);return void 0===o&&(o=i(this),(null!==o||this.hasUpdated)&&e.call(this,o)),o}})}return we(0,0,{get(){return i(this)}})}},queryAll:function(t){return(e,o)=>we(0,0,{get(){return(this.renderRoot??(Ne??=document.createDocumentFragment())).querySelectorAll(t)}})
79
- /**
80
- * @license
81
- * Copyright 2017 Google LLC
82
- * SPDX-License-Identifier: BSD-3-Clause
83
- */},queryAssignedElements:
84
- /**
85
- * @license
86
- * Copyright 2021 Google LLC
87
- * SPDX-License-Identifier: BSD-3-Clause
88
- */
89
- function(t){return(e,o)=>{const{slot:r,selector:n}=t??{},i="slot"+(r?`[name=${r}]`:":not([name])");return we(0,0,{get(){const e=this.renderRoot?.querySelector(i),o=e?.assignedElements(t)??[];return void 0===n?o:o.filter((t=>t.matches(n)))}})}}
90
- /**
91
- * @license
92
- * Copyright 2017 Google LLC
93
- * SPDX-License-Identifier: BSD-3-Clause
94
- */,queryAssignedNodes:function(t){return(e,o)=>{const{slot:r}=t??{},n="slot"+(r?`[name=${r}]`:":not([name])");return we(0,0,{get(){const e=this.renderRoot?.querySelector(n);return e?.assignedNodes(t)??[]}})}},queryAsync:function(t){return(e,o)=>we(0,0,{async get(){return await this.updateComplete,this.renderRoot?.querySelector(t)??null}})},standardProperty:Oe,state:function(t){return Se({...t,state:!0,attribute:!1})}});
95
- /**
96
- * @license
97
- * Copyright 2017 Google LLC
98
- * SPDX-License-Identifier: BSD-3-Clause
99
- */const Ce=1,Ee=2,Re=t=>(...e)=>({_$litDirective$:t,values:e});let Le=class{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,o){this._$Ct=t,this._$AM=e,this._$Ci=o}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}};
100
- /**
101
- * @license
102
- * Copyright 2020 Google LLC
103
- * SPDX-License-Identifier: BSD-3-Clause
104
- */const{D:Ie}=rt,Ue=()=>document.createComment(""),We=(t,e,o)=>{const r=t._$AA.parentNode,n=void 0===e?t._$AB:e._$AA;if(void 0===o){const e=r.insertBefore(Ue(),n),i=r.insertBefore(Ue(),n);o=new Ie(e,i,t,t.options)}else{const e=o._$AB.nextSibling,i=o._$AM,a=i!==t;if(a){let e;o._$AQ?.(t),o._$AM=t,void 0!==o._$AP&&(e=t._$AU)!==i._$AU&&o._$AP(e)}if(e!==n||a){let t=o._$AA;for(;t!==e;){const e=t.nextSibling;r.insertBefore(t,n),t=e}}}return o},ke=(t,e,o=t)=>(t._$AI(e,o),t),Ae={},Fe=t=>{t._$AP?.(!1,!0);let e=t._$AA;const o=t._$AB.nextSibling;for(;e!==o;){const t=e.nextSibling;e.remove(),e=t}},$e=(t,e,o)=>{const r=new Map;for(let n=e;n<=o;n++)r.set(t[n],n);return r},Ke=Re(class extends Le{constructor(t){if(super(t),t.type!==Ee)throw Error("repeat() can only be used in text expressions")}ht(t,e,o){let r;void 0===o?o=e:void 0!==e&&(r=e);const n=[],i=[];let a=0;for(const e of t)n[a]=r?r(e,a):a,i[a]=o(e,a),a++;return{values:i,keys:n}}render(t,e,o){return this.ht(t,e,o).values}update(t,[e,o,r]){const n=(t=>t._$AH)(t),{values:i,keys:a}=this.ht(e,o,r);if(!Array.isArray(n))return this.dt=a,i;const s=this.dt??=[],c=[];let l,f,u=0,h=n.length-1,p=0,d=i.length-1;for(;u<=h&&p<=d;)if(null===n[u])u++;else if(null===n[h])h--;else if(s[u]===a[p])c[p]=ke(n[u],i[p]),u++,p++;else if(s[h]===a[d])c[d]=ke(n[h],i[d]),h--,d--;else if(s[u]===a[d])c[d]=ke(n[u],i[d]),We(t,c[d+1],n[u]),u++,d--;else if(s[h]===a[p])c[p]=ke(n[h],i[p]),We(t,n[u],n[h]),h--,p++;else if(void 0===l&&(l=$e(a,p,d),f=$e(s,u,h)),l.has(s[u]))if(l.has(s[h])){const e=f.get(a[p]),o=void 0!==e?n[e]:null;if(null===o){const e=We(t,n[u]);ke(e,i[p]),c[p]=e}else c[p]=ke(o,i[p]),We(t,n[u],o),n[e]=null;p++}else Fe(n[h]),h--;else Fe(n[u]),u++;for(;p<=d;){const e=We(t,c[d+1]);ke(e,i[p]),c[p++]=e}for(;u<=h;){const t=n[u++];null!==t&&Fe(t)}return this.dt=a,((t,e=Ae)=>{t._$AH=e})(t,c),Z}});
105
- /**
106
- * @license
107
- * Copyright 2017 Google LLC
108
- * SPDX-License-Identifier: BSD-3-Clause
109
- */var Pe=Object.freeze({__proto__:null,repeat:Ke});
110
- /**
111
- * @license
112
- * Copyright 2018 Google LLC
113
- * SPDX-License-Identifier: BSD-3-Clause
114
- */const Be=Re(class extends Le{constructor(t){if(super(t),t.type!==Ce||"class"!==t.name||t.strings?.length>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return" "+Object.keys(t).filter((e=>t[e])).join(" ")+" "}update(t,[e]){if(void 0===this.it){this.it=new Set,void 0!==t.strings&&(this.st=new Set(t.strings.join(" ").split(/\s/).filter((t=>""!==t))));for(const t in e)e[t]&&!this.st?.has(t)&&this.it.add(t);return this.render(e)}const o=t.element.classList;for(const t of this.it)t in e||(o.remove(t),this.it.delete(t));for(const t in e){const r=!!e[t];r===this.it.has(t)||this.st?.has(t)||(r?(o.add(t),this.it.add(t)):(o.remove(t),this.it.delete(t)))}return Z}});var je=Object.freeze({__proto__:null,classMap:Be});
115
- /**
116
- * @license
117
- * Copyright 2018 Google LLC
118
- * SPDX-License-Identifier: BSD-3-Clause
119
- */const Me="important",De=" !"+Me,Ze=Re(class extends Le{constructor(t){if(super(t),t.type!==Ce||"style"!==t.name||t.strings?.length>2)throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.")}render(t){return Object.keys(t).reduce(((e,o)=>{const r=t[o];return null==r?e:e+`${o=o.includes("-")?o:o.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${r};`}),"")}update(t,[e]){const{style:o}=t.element;if(void 0===this.ut)return this.ut=new Set(Object.keys(e)),this.render(e);for(const t of this.ut)null==e[t]&&(this.ut.delete(t),t.includes("-")?o.removeProperty(t):o[t]=null);for(const t in e){const r=e[t];if(null!=r){this.ut.add(t);const e="string"==typeof r&&r.endsWith(De);t.includes("-")||e?o.setProperty(t,e?r.slice(0,-11):r,e?Me:""):o[t]=r}}return Z}});var ze,_e=Object.freeze({__proto__:null,styleMap:Ze});
120
- /**
121
- * @license
122
- * Copyright 2017 Google LLC
123
- * SPDX-License-Identifier: BSD-3-Clause
124
- */const He=window,Te=He.trustedTypes,Ge=Te?Te.createPolicy("lit-html",{createHTML:t=>t}):void 0,Ve="$lit$",qe=`lit$${(Math.random()+"").slice(9)}$`,Ye="?"+qe,Je=`<${Ye}>`,Xe=document,Qe=()=>Xe.createComment(""),to=t=>null===t||"object"!=typeof t&&"function"!=typeof t,eo=Array.isArray,oo="[ \t\n\f\r]",ro=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,no=/-->/g,io=/>/g,ao=RegExp(`>|${oo}(?:([^\\s"'>=/]+)(${oo}*=${oo}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),so=/'/g,co=/"/g,lo=/^(?:script|style|textarea|title)$/i,fo=Symbol.for("lit-noChange"),uo=Symbol.for("lit-nothing"),ho=new WeakMap,po=Xe.createTreeWalker(Xe,129,null,!1);class yo{constructor({strings:t,_$litType$:e},o){let r;this.parts=[];let n=0,i=0;const a=t.length-1,s=this.parts,[c,l]=((t,e)=>{const o=t.length-1,r=[];let n,i=2===e?"<svg>":"",a=ro;for(let e=0;e<o;e++){const o=t[e];let s,c,l=-1,f=0;for(;f<o.length&&(a.lastIndex=f,c=a.exec(o),null!==c);)f=a.lastIndex,a===ro?"!--"===c[1]?a=no:void 0!==c[1]?a=io:void 0!==c[2]?(lo.test(c[2])&&(n=RegExp("</"+c[2],"g")),a=ao):void 0!==c[3]&&(a=ao):a===ao?">"===c[0]?(a=null!=n?n:ro,l=-1):void 0===c[1]?l=-2:(l=a.lastIndex-c[2].length,s=c[1],a=void 0===c[3]?ao:'"'===c[3]?co:so):a===co||a===so?a=ao:a===no||a===io?a=ro:(a=ao,n=void 0);const u=a===ao&&t[e+1].startsWith("/>")?" ":"";i+=a===ro?o+Je:l>=0?(r.push(s),o.slice(0,l)+Ve+o.slice(l)+qe+u):o+qe+(-2===l?(r.push(void 0),e):u)}const s=i+(t[o]||"<?>")+(2===e?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==Ge?Ge.createHTML(s):s,r]})(t,e);if(this.el=yo.createElement(c,o),po.currentNode=this.el.content,2===e){const t=this.el.content,e=t.firstChild;e.remove(),t.append(...e.childNodes)}for(;null!==(r=po.nextNode())&&s.length<a;){if(1===r.nodeType){if(r.hasAttributes()){const t=[];for(const e of r.getAttributeNames())if(e.endsWith(Ve)||e.startsWith(qe)){const o=l[i++];if(t.push(e),void 0!==o){const t=r.getAttribute(o.toLowerCase()+Ve).split(qe),e=/([.?@])?(.*)/.exec(o);s.push({type:1,index:n,name:e[2],strings:t,ctor:"."===e[1]?vo:"?"===e[1]?So:"@"===e[1]?wo:mo})}else s.push({type:6,index:n})}for(const e of t)r.removeAttribute(e)}if(lo.test(r.tagName)){const t=r.textContent.split(qe),e=t.length-1;if(e>0){r.textContent=Te?Te.emptyScript:"";for(let o=0;o<e;o++)r.append(t[o],Qe()),po.nextNode(),s.push({type:2,index:++n});r.append(t[e],Qe())}}}else if(8===r.nodeType)if(r.data===Ye)s.push({type:2,index:n});else{let t=-1;for(;-1!==(t=r.data.indexOf(qe,t+1));)s.push({type:7,index:n}),t+=qe.length-1}n++}}static createElement(t,e){const o=Xe.createElement("template");return o.innerHTML=t,o}}function go(t,e,o=t,r){var n,i,a,s;if(e===fo)return e;let c=void 0!==r?null===(n=o._$Co)||void 0===n?void 0:n[r]:o._$Cl;const l=to(e)?void 0:e._$litDirective$;return(null==c?void 0:c.constructor)!==l&&(null===(i=null==c?void 0:c._$AO)||void 0===i||i.call(c,!1),void 0===l?c=void 0:(c=new l(t),c._$AT(t,o,r)),void 0!==r?(null!==(a=(s=o)._$Co)&&void 0!==a?a:s._$Co=[])[r]=c:o._$Cl=c),void 0!==c&&(e=go(t,c._$AS(t,e.values),c,r)),e}let bo=class t{constructor(t,e,o,r){var n;this.type=2,this._$AH=uo,this._$AN=void 0,this._$AA=t,this._$AB=e,this._$AM=o,this.options=r,this._$Cp=null===(n=null==r?void 0:r.isConnected)||void 0===n||n}get _$AU(){var t,e;return null!==(e=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==e?e:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const e=this._$AM;return void 0!==e&&11===(null==t?void 0:t.nodeType)&&(t=e.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,e=this){t=go(this,t,e),to(t)?t===uo||null==t||""===t?(this._$AH!==uo&&this._$AR(),this._$AH=uo):t!==this._$AH&&t!==fo&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>eo(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]))(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==uo&&to(this._$AH)?this._$AA.nextSibling.data=t:this.$(Xe.createTextNode(t)),this._$AH=t}g(t){var e;const{values:o,_$litType$:r}=t,n="number"==typeof r?this._$AC(t):(void 0===r.el&&(r.el=yo.createElement(r.h,this.options)),r);if((null===(e=this._$AH)||void 0===e?void 0:e._$AD)===n)this._$AH.v(o);else{const t=new class{constructor(t,e){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=e}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var e;const{el:{content:o},parts:r}=this._$AD,n=(null!==(e=null==t?void 0:t.creationScope)&&void 0!==e?e:Xe).importNode(o,!0);po.currentNode=n;let i=po.nextNode(),a=0,s=0,c=r[0];for(;void 0!==c;){if(a===c.index){let e;2===c.type?e=new bo(i,i.nextSibling,this,t):1===c.type?e=new c.ctor(i,c.name,c.strings,this,t):6===c.type&&(e=new No(i,this,t)),this._$AV.push(e),c=r[++s]}a!==(null==c?void 0:c.index)&&(i=po.nextNode(),a++)}return n}v(t){let e=0;for(const o of this._$AV)void 0!==o&&(void 0!==o.strings?(o._$AI(t,o,e),e+=o.strings.length-2):o._$AI(t[e])),e++}}(n,this),e=t.u(this.options);t.v(o),this.$(e),this._$AH=t}}_$AC(t){let e=ho.get(t.strings);return void 0===e&&ho.set(t.strings,e=new yo(t)),e}T(e){eo(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let r,n=0;for(const i of e)n===o.length?o.push(r=new t(this.k(Qe()),this.k(Qe()),this,this.options)):r=o[n],r._$AI(i),n++;n<o.length&&(this._$AR(r&&r._$AB.nextSibling,n),o.length=n)}_$AR(t=this._$AA.nextSibling,e){var o;for(null===(o=this._$AP)||void 0===o||o.call(this,!1,!0,e);t&&t!==this._$AB;){const e=t.nextSibling;t.remove(),t=e}}setConnected(t){var e;void 0===this._$AM&&(this._$Cp=t,null===(e=this._$AP)||void 0===e||e.call(this,t))}},mo=class{constructor(t,e,o,r,n){this.type=1,this._$AH=uo,this._$AN=void 0,this.element=t,this.name=e,this._$AM=r,this.options=n,o.length>2||""!==o[0]||""!==o[1]?(this._$AH=Array(o.length-1).fill(new String),this.strings=o):this._$AH=uo}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,e=this,o,r){const n=this.strings;let i=!1;if(void 0===n)t=go(this,t,e,0),i=!to(t)||t!==this._$AH&&t!==fo,i&&(this._$AH=t);else{const r=t;let a,s;for(t=n[0],a=0;a<n.length-1;a++)s=go(this,r[o+a],e,a),s===fo&&(s=this._$AH[a]),i||(i=!to(s)||s!==this._$AH[a]),s===uo?t=uo:t!==uo&&(t+=(null!=s?s:"")+n[a+1]),this._$AH[a]=s}i&&!r&&this.j(t)}j(t){t===uo?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}},vo=class extends mo{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===uo?void 0:t}};const Oo=Te?Te.emptyScript:"";let So=class extends mo{constructor(){super(...arguments),this.type=4}j(t){t&&t!==uo?this.element.setAttribute(this.name,Oo):this.element.removeAttribute(this.name)}},wo=class extends mo{constructor(t,e,o,r,n){super(t,e,o,r,n),this.type=5}_$AI(t,e=this){var o;if((t=null!==(o=go(this,t,e,0))&&void 0!==o?o:uo)===fo)return;const r=this._$AH,n=t===uo&&r!==uo||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==uo&&(r===uo||n);n&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var e,o;"function"==typeof this._$AH?this._$AH.call(null!==(o=null===(e=this.options)||void 0===e?void 0:e.host)&&void 0!==o?o:this.element,t):this._$AH.handleEvent(t)}},No=class{constructor(t,e,o){this.element=t,this.type=6,this._$AN=void 0,this._$AM=e,this.options=o}get _$AU(){return this._$AM._$AU}_$AI(t){go(this,t)}};const xo=He.litHtmlPolyfillSupport;null==xo||xo(yo,bo),(null!==(ze=He.litHtmlVersions)&&void 0!==ze?ze:He.litHtmlVersions=[]).push("2.7.3");
125
- /**
126
- * @license
127
- * Copyright 2017 Google LLC
128
- * SPDX-License-Identifier: BSD-3-Clause
129
- */
130
- const Co=2;let Eo=class{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,e,o){this._$Ct=t,this._$AM=e,this._$Ci=o}_$AS(t,e){return this.update(t,e)}update(t,e){return this.render(...e)}},Ro=class extends Eo{constructor(t){if(super(t),this.et=uo,t.type!==Co)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===uo||null==t)return this.ft=void 0,this.et=t;if(t===fo)return t;if("string"!=typeof t)throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.et)return this.ft;this.et=t;const e=[t];return e.raw=e,this.ft={_$litType$:this.constructor.resultType,strings:e,values:[]}}};
131
- /**
132
- * @license
133
- * Copyright 2017 Google LLC
134
- * SPDX-License-Identifier: BSD-3-Clause
135
- */Ro.directiveName="unsafeHTML",Ro.resultType=1;const Lo=(t=>(...e)=>({_$litDirective$:t,values:e}))(Ro);var Io=Object.freeze({__proto__:null,UnsafeHTMLDirective:Ro,unsafeHTML:Lo});
136
- /**
137
- * @license
138
- * Copyright (c) 2020 The Polymer Project Authors. All rights reserved.
139
- * This code may only be used under the BSD style license found at
140
- * http://polymer.github.io/LICENSE.txt
141
- * The complete set of authors may be found at
142
- * http://polymer.github.io/AUTHORS.txt
143
- * The complete set of contributors may be found at
144
- * http://polymer.github.io/CONTRIBUTORS.txt
145
- * Code distributed by Google as part of the polymer project is also
146
- * subject to an additional IP rights grant found at
147
- * http://polymer.github.io/PATENTS.txt
148
- */if(!ShadowRoot.prototype.createElement){const t=window.HTMLElement,e=window.customElements.define,o=window.customElements.get,r=window.customElements,n=new WeakMap,i=new WeakMap,a=new WeakMap,s=new WeakMap;let c;window.CustomElementRegistry=class{constructor(){this._definitionsByTag=new Map,this._definitionsByClass=new Map,this._whenDefinedPromises=new Map,this._awaitingUpgrade=new Map}define(t,n){if(t=t.toLowerCase(),void 0!==this._getDefinition(t))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${t}" has already been used with this registry`);if(void 0!==this._definitionsByClass.get(n))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry");const s=n.prototype.attributeChangedCallback,c=new Set(n.observedAttributes||[]);h(n,c,s);const l={elementClass:n,connectedCallback:n.prototype.connectedCallback,disconnectedCallback:n.prototype.disconnectedCallback,adoptedCallback:n.prototype.adoptedCallback,attributeChangedCallback:s,formAssociated:n.formAssociated,formAssociatedCallback:n.prototype.formAssociatedCallback,formDisabledCallback:n.prototype.formDisabledCallback,formResetCallback:n.prototype.formResetCallback,formStateRestoreCallback:n.prototype.formStateRestoreCallback,observedAttributes:c};this._definitionsByTag.set(t,l),this._definitionsByClass.set(n,l);let f=o.call(r,t);f||(f=u(t),e.call(r,t,f)),this===window.customElements&&(a.set(n,l),l.standInClass=f);const p=this._awaitingUpgrade.get(t);if(p){this._awaitingUpgrade.delete(t);for(const t of p)i.delete(t),d(t,l,!0)}const y=this._whenDefinedPromises.get(t);return void 0!==y&&(y.resolve(n),this._whenDefinedPromises.delete(t)),n}upgrade(){g.push(this),r.upgrade.apply(r,arguments),g.pop()}get(t){const e=this._definitionsByTag.get(t);return e?.elementClass}_getDefinition(t){return this._definitionsByTag.get(t)}whenDefined(t){const e=this._getDefinition(t);if(void 0!==e)return Promise.resolve(e.elementClass);let o=this._whenDefinedPromises.get(t);return void 0===o&&(o={},o.promise=new Promise((t=>o.resolve=t)),this._whenDefinedPromises.set(t,o)),o.promise}_upgradeWhenDefined(t,e,o){let r=this._awaitingUpgrade.get(e);r||this._awaitingUpgrade.set(e,r=new Set),o?r.add(t):r.delete(t)}},window.HTMLElement=function(){let e=c;if(e)return c=void 0,e;const o=a.get(this.constructor);if(!o)throw new TypeError("Illegal constructor (custom element class must be registered with global customElements registry to be newable)");return e=Reflect.construct(t,[],o.standInClass),Object.setPrototypeOf(e,this.constructor.prototype),n.set(e,o),e},window.HTMLElement.prototype=t.prototype;const l=t=>t===document||t instanceof ShadowRoot,f=t=>{let e=t.getRootNode();if(!l(e)){const t=g[g.length-1];if(t instanceof CustomElementRegistry)return t;e=t.getRootNode(),l(e)||(e=s.get(e)?.getRootNode()||document)}return e.customElements},u=e=>class{static get formAssociated(){return!0}constructor(){const o=Reflect.construct(t,[],this.constructor);Object.setPrototypeOf(o,HTMLElement.prototype);const r=f(o)||window.customElements,n=r._getDefinition(e);return n?d(o,n):i.set(o,r),o}connectedCallback(){const t=n.get(this);t?t.connectedCallback&&t.connectedCallback.apply(this,arguments):i.get(this)._upgradeWhenDefined(this,e,!0)}disconnectedCallback(){const t=n.get(this);t?t.disconnectedCallback&&t.disconnectedCallback.apply(this,arguments):i.get(this)._upgradeWhenDefined(this,e,!1)}adoptedCallback(){const t=n.get(this);t?.adoptedCallback?.apply(this,arguments)}formAssociatedCallback(){const t=n.get(this);t&&t.formAssociated&&t?.formAssociatedCallback?.apply(this,arguments)}formDisabledCallback(){const t=n.get(this);t?.formAssociated&&t?.formDisabledCallback?.apply(this,arguments)}formResetCallback(){const t=n.get(this);t?.formAssociated&&t?.formResetCallback?.apply(this,arguments)}formStateRestoreCallback(){const t=n.get(this);t?.formAssociated&&t?.formStateRestoreCallback?.apply(this,arguments)}},h=(t,e,o)=>{if(0===e.size||void 0===o)return;const r=t.prototype.setAttribute;r&&(t.prototype.setAttribute=function(t,n){const i=t.toLowerCase();if(e.has(i)){const t=this.getAttribute(i);r.call(this,i,n),o.call(this,i,t,n)}else r.call(this,i,n)});const n=t.prototype.removeAttribute;n&&(t.prototype.removeAttribute=function(t){const r=t.toLowerCase();if(e.has(r)){const t=this.getAttribute(r);n.call(this,r),o.call(this,r,t,null)}else n.call(this,r)});const i=t.prototype.toggleAttribute;i&&(t.prototype.toggleAttribute=function(t,r){const n=t.toLowerCase();if(e.has(n)){const t=this.getAttribute(n);i.call(this,n,r);const e=this.getAttribute(n);o.call(this,n,t,e)}else i.call(this,n,r)})},p=e=>{const o=Object.getPrototypeOf(e);if(o!==window.HTMLElement)return o===t?Object.setPrototypeOf(e,window.HTMLElement):p(o)},d=(t,e,o=!1)=>{Object.setPrototypeOf(t,e.elementClass.prototype),n.set(t,e),c=t;try{new e.elementClass}catch(t){p(e.elementClass),new e.elementClass}e.attributeChangedCallback&&e.observedAttributes.forEach((o=>{t.hasAttribute(o)&&e.attributeChangedCallback.call(t,o,null,t.getAttribute(o))})),o&&e.connectedCallback&&t.isConnected&&e.connectedCallback.call(t)},y=Element.prototype.attachShadow;Element.prototype.attachShadow=function(t){const e=y.apply(this,arguments);return t.customElements&&(e.customElements=t.customElements),e};let g=[document];const b=(t,e,o=void 0)=>{const r=(o?Object.getPrototypeOf(o):t.prototype)[e];t.prototype[e]=function(){g.push(this);const t=r.apply(o||this,arguments);return void 0!==t&&s.set(t,this),g.pop(),t}};b(ShadowRoot,"createElement",document),b(ShadowRoot,"importNode",document),b(Element,"insertAdjacentHTML");const m=(t,e)=>{const o=Object.getOwnPropertyDescriptor(t.prototype,e);Object.defineProperty(t.prototype,e,{...o,set(t){g.push(this),o.set.call(this,t),g.pop()}})};if(m(Element,"innerHTML"),m(ShadowRoot,"innerHTML"),Object.defineProperty(window,"customElements",{value:new CustomElementRegistry,configurable:!0,writable:!0}),window.ElementInternals&&window.ElementInternals.prototype.setFormValue){const t=new WeakMap,e=HTMLElement.prototype.attachInternals,o=["setFormValue","setValidity","checkValidity","reportValidity"];HTMLElement.prototype.attachInternals=function(...o){const r=e.call(this,...o);return t.set(r,this),r},o.forEach((e=>{const o=window.ElementInternals.prototype,r=o[e];o[e]=function(...e){const o=t.get(this);if(!0===n.get(o).formAssociated)return r?.call(this,...e);throw new DOMException(`Failed to execute ${r} on 'ElementInternals': The target element is not a form-associated custom element.`)}}));class r extends Array{constructor(t){super(...t),this._elements=t}get value(){return this._elements.find((t=>!0===t.checked))?.value||""}}class i{constructor(t){const e=new Map;t.forEach(((t,o)=>{const r=t.getAttribute("name"),n=e.get(r)||[];this[+o]=t,n.push(t),e.set(r,n)})),this.length=t.length,e.forEach(((t,e)=>{t&&(1===t.length?this[e]=t[0]:this[e]=new r(t))}))}namedItem(t){return this[t]}}const a=Object.getOwnPropertyDescriptor(HTMLFormElement.prototype,"elements");Object.defineProperty(HTMLFormElement.prototype,"elements",{get:function(){const t=a.get.call(this,[]),e=[];for(const o of t){const t=n.get(o);t&&!0!==t.formAssociated||e.push(o)}return new i(e)}})}}try{window.customElements.define("custom-element",null)}catch(Pn){const t=window.customElements.define;window.customElements.define=(e,o,r)=>{if(null!==o)try{t.bind(window.customElements)(e,o,r)}catch(t){console.info(e,o,r,t)}}}class Uo extends Error{constructor(t,e,o){super(t),this.canceledPromiseResult=e,this.canceledPromiseError=o}}class Wo extends Promise{constructor(t){super(((e,o)=>t((t=>{this.isCanceled?o(new Uo("Promise has been canceled",t)):e(t)}),(t=>{this.isCanceled?o(new Uo("Promise has been canceled",void 0,t)):o(t)})))),this.isCanceled=!1}cancel(){this.isCanceled=!0}}const ko=t=>new Wo(((e,o)=>t.then(e).catch(o)));class Ao{constructor(t,e,o,r){this.allResults=t,this.selectedResult=e,this.clusteringMetadata=o,this.metadataDescriptors=r}static extractResultMetadata(t){var e,o;return(null!==(o=null!==(e=null==t?void 0:t.map)&&void 0!==e?e:null==t?void 0:t.document)&&void 0!==o?o:null==t?void 0:t.topic).metadata.map((t=>Ao.flattenMetadata(t)))}static flattenMetadata(t){if(t.hierarchicalValues){const e=[],o=[];return t.hierarchicalValues.forEach((t=>{e.push(t.join(" > ")),t.length>2?o.push(`... > ${t[t.length-1]}`):o.push(t.join(" > "))})),{key:t.key,value:e.join(", "),displayValue:o.join(", ")}}{const e=t.values.join(", ");return{key:t.key,value:e,displayValue:e}}}computeClustersItemsForMetadata(t,e){let o=Ao.extractResultMetadata(this.selectedResult).find((e=>e.key===t));const r=this.allResults.flatMap((e=>Ao.extractResultMetadata(e).filter((e=>e.key===t)))).filter((t=>!(t.key===(null==o?void 0:o.key)&&t.value===(null==o?void 0:o.value)))).filter(((t,e,o)=>o.findIndex((e=>e.value===t.value))===e));return r.map((e=>({result:this.findBestResultForMetadataValue(t,e.value),metadata:e}))).sort(((o,r)=>this.compareMetadata(o.metadata.value,r.metadata.value,t,e)))}compareMetadata(t,e,o,r){let n=this.metadataDescriptors.find((t=>o==t.key)),i=(null==n?void 0:n.sortRule)||"NONE",a=(null==n?void 0:n.reverseSort)||!1;if("ALPHABET"==i||"VERSION"==i){let o=t.localeCompare(e,r,{numeric:!0});return a?-1*o:o}return 0}findBestResultForMetadataValue(t,e){const o=this.allResults.filter((o=>Ao.extractResultMetadata(o).find((o=>o.key===t&&o.value===e))));let r,n=Ao.extractResultMetadata(this.selectedResult).filter((t=>this.clusteringMetadata.has(t.key))),i=[...n.filter((e=>e.key!==t))],a=-1;for(let t of o){let e=this.countMatchingMetadata(t,i);if(e>a&&(a=e,r=t,e===i.length))break}return r}countMatchingMetadata(t,e){return Ao.extractResultMetadata(t).filter((t=>e.some((e=>e.key===t.key&&e.value===t.value)))).length}}class Fo{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,e){return this.callbacks=[t],this.debounce(e)}queue(t,e){return this.callbacks.push(t),this.debounce(e)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(t){return null==this.promise&&(this.promise=new Promise(((t,e)=>{this.resolvePromise=t,this.rejectPromise=e}))),this.clearTimeout(),this._debounce=window.setTimeout((()=>this.runCallbacks()),null!=t?t:this.timeout),this.promise}async runCallbacks(){var t,e;const o=[...this.callbacks];this.callbacks=[];const r=null!==(t=this.rejectPromise)&&void 0!==t?t:()=>null,n=null!==(e=this.resolvePromise)&&void 0!==e?e:()=>null;this.clearPromise();for(let t of o)try{await t()}catch(t){return void r(t)}n(!0)}clearTimeout(){null!=this._debounce&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}}const $o=t=>new Promise((e=>setTimeout(e,t)));async function Ko(t,e=10,o=2e4){let r,n,i=await t();for(r=n=performance.now();null==i&&(!o||n-r<o);)await $o(e),i=await t(),n=performance.now();if(null==i)throw new Error("Timeout exceeded");return i}function Po(t){return t.match(/^\d{4}-\d{2}-\d{2}$/)&&(t=t.replace(/-/g,"/")),t=t.replace(" ","T").replace(/^(.+)(\+\d{2})(\d{2})$/,((t,e,o,r)=>e+o+":"+r)),new Date(t)}function Bo(t,e){try{return function(t,e){if(t===e)return!0;if(t&&e&&"object"==typeof t&&"object"==typeof e){if(t.constructor!==e.constructor)return!1;var o,r,n;if(Array.isArray(t)){if((o=t.length)!=e.length)return!1;for(r=o;0!=r--;)if(!Bo(t[r],e[r]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(r of t.entries())if(!e.has(r[0]))return!1;for(r of t.entries())if(!Bo(r[1],e.get(r[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(r of t.entries())if(!e.has(r[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if((o=(n=Object.keys(t)).length)!==Object.keys(e).length)return!1;for(r=o;0!=r--;)if(!Object.prototype.hasOwnProperty.call(e,n[r]))return!1;for(r=o;0!=r--;){var i=n[r];if(!Bo(t[i],e[i]))return!1}return!0}return t!=t&&e!=e}(t,e)}catch(t){return!1}}function jo(t,e){const o=()=>JSON.parse(JSON.stringify(t));return Se({type:Object,converter:{fromAttribute:t=>{if(null==t)return o();try{return JSON.parse(t)}catch{return o()}},toAttribute:t=>JSON.stringify(t)},hasChanged:(t,e)=>!Bo(t,e),...null!=e?e:{}})}function Mo(t){return!isNaN(parseFloat(t))}const Do=t=>"string"==typeof t?ft(t):t;class Zo{static create(t,e,o,r){const n=t=>Do(null!=t?t:r),i=ut`var(${Do(t)}, ${n(r)})`;return i.name=t,i.description=e,i.category=o,i.defaultValue=r,i.defaultCssValue=n,i.get=e=>ut`var(${Do(t)}, ${n(e)})`,i.breadcrumb=()=>[],i.lastResortDefaultValue=()=>r,i}static extend(t,e,o,r){const n=t=>o.get(null!=t?t:r),i=ut`var(${Do(t)}, ${n(r)})`;return i.name=t,i.description=e,i.category=o.category,i.fallbackVariable=o,i.defaultValue=r,i.defaultCssValue=n,i.get=e=>ut`var(${Do(t)}, ${n(e)})`,i.breadcrumb=()=>[o.name,...o.breadcrumb()],i.lastResortDefaultValue=()=>null!=r?r:o.lastResortDefaultValue(),i}static external(t,e){const o=e=>t.fallbackVariable?t.fallbackVariable.get(null!=e?e:t.defaultValue):Do(null!=e?e:t.lastResortDefaultValue()),r=ut`var(${Do(t.name)}, ${o(t.defaultValue)})`;return r.name=t.name,r.category=t.category,r.fallbackVariable=t.fallbackVariable,r.defaultValue=t.defaultValue,r.context=e,r.defaultCssValue=o,r.get=e=>ut`var(${Do(t.name)}, ${o(e)})`,r.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],r.lastResortDefaultValue=()=>t.lastResortDefaultValue(),r}}const zo={colorWhite:Zo.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:Zo.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:Zo.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:Zo.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:Zo.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:Zo.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:Zo.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:Zo.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:Zo.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:Zo.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:Zo.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:Zo.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:Zo.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:Zo.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:Zo.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:Zo.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:Zo.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:Zo.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:Zo.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:Zo.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:Zo.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:Zo.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:Zo.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:Zo.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:Zo.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:Zo.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:Zo.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:Zo.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:Zo.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:Zo.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:Zo.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:Zo.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:Zo.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:Zo.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:Zo.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:Zo.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:Zo.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:Zo.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:Zo.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:Zo.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:Zo.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:Zo.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:Zo.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:Zo.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:Zo.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:Zo.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:Zo.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:Zo.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:Zo.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:Zo.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:Zo.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:Zo.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:Zo.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:Zo.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:Zo.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:Zo.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:Zo.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:Zo.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:Zo.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:Zo.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:Zo.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:Zo.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:Zo.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:Zo.create("--ft-color-orange-0","","COLOR","#ee8d17"),colorOrange10:Zo.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:Zo.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:Zo.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:Zo.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:Zo.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:Zo.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:Zo.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:Zo.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:Zo.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:Zo.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:Zo.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:Zo.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:Zo.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:Zo.create("--ft-color-orange-700","","COLOR","#140c02"),colorRed0:Zo.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:Zo.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:Zo.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:Zo.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:Zo.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:Zo.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:Zo.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:Zo.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:Zo.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:Zo.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:Zo.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:Zo.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:Zo.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:Zo.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:Zo.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:Zo.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:Zo.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:Zo.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:Zo.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:Zo.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:Zo.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:Zo.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:Zo.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:Zo.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:Zo.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:Zo.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:Zo.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:Zo.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:Zo.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:Zo.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:Zo.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:Zo.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:Zo.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:Zo.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:Zo.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:Zo.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:Zo.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:Zo.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:Zo.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:Zo.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:Zo.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:Zo.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:Zo.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:Zo.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:Zo.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:Zo.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:Zo.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:Zo.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:Zo.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:Zo.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:Zo.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:Zo.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:Zo.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:Zo.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:Zo.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:Zo.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:Zo.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:Zo.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:Zo.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:Zo.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:Zo.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:Zo.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:Zo.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:Zo.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:Zo.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:Zo.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:Zo.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:Zo.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:Zo.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:Zo.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:Zo.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:Zo.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:Zo.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:Zo.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:Zo.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:Zo.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:Zo.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:Zo.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:Zo.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:Zo.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:Zo.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:Zo.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:Zo.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:Zo.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:Zo.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:Zo.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:Zo.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:Zo.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:Zo.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:Zo.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:Zo.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:Zo.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:Zo.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:Zo.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:Zo.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:Zo.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:Zo.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:Zo.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:Zo.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:Zo.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:Zo.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:Zo.create("--ft-icon-size-6","","SIZE","48px"),opacity0:Zo.create("--ft-opacity-0","","NUMBER","0"),opacity8:Zo.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:Zo.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:Zo.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:Zo.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:Zo.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:Zo.create("--ft-shadow-elevation-01","","SHADOW","0px 1px 4px 0px rgba(0,0,0,0.06), 0px 1px 2px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation02:Zo.create("--ft-shadow-elevation-02","","SHADOW","0px 4px 10px 0px rgba(0,0,0,0.06), 0px 2px 5px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation03:Zo.create("--ft-shadow-elevation-03","","SHADOW","0px 6px 13px 0px rgba(0,0,0,0.06), 0px 3px 7px 0px rgba(0,0,0,0.14), 0px 1px 2px 0px rgba(0,0,0,0.06)"),shadowElevation04:Zo.create("--ft-shadow-elevation-04","","SHADOW","0px 8px 16px 0px rgba(0,0,0,0.06), 0px 4px 9px 0px rgba(0,0,0,0.14), 0px 2px 3px 0px rgba(0,0,0,0.06)"),shadowElevation06:Zo.create("--ft-shadow-elevation-06","","SHADOW","0px 12px 22px 0px rgba(0,0,0,0.06), 0px 6px 13px 0px rgba(0,0,0,0.14), 0px 4px 5px 0px rgba(0,0,0,0.06)"),shadowElevation08:Zo.create("--ft-shadow-elevation-08","","SHADOW","0px 16px 28px 0px rgba(0,0,0,0.06), 0px 8px 17px 0px rgba(0,0,0,0.14), 0px 6px 7px 0px rgba(0,0,0,0.06)"),shadowElevation12:Zo.create("--ft-shadow-elevation-12","","SHADOW","0px 22px 40px 0px rgba(0,0,0,0.06), 0px 12px 23px 0px rgba(0,0,0,0.14), 0px 10px 11px 0px rgba(0,0,0,0.06)"),shadowElevation16:Zo.create("--ft-shadow-elevation-16","","SHADOW","0px 28px 52px 0px rgba(0,0,0,0.06), 0px 16px 29px 0px rgba(0,0,0,0.14), 0px 14px 15px 0px rgba(0,0,0,0.06)"),shadowElevation24:Zo.create("--ft-shadow-elevation-24","","SHADOW","0px 40px 76px 0px rgba(0,0,0,0.06), 0px 24px 41px 0px rgba(0,0,0,0.14), 0px 22px 23px 0px rgba(0,0,0,0.06)")},_o={fontFamily:Zo.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:Zo.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:Zo.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:Zo.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-display-textCase","","UNKNOWN","none")},Ho={fontFamily:Zo.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:Zo.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:Zo.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:Zo.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},To={fontFamily:Zo.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:Zo.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:Zo.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:Zo.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},Go={fontFamily:Zo.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:Zo.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:Zo.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:Zo.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},Vo={fontFamily:Zo.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:Zo.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:Zo.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:Zo.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:Zo.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},qo={fontFamily:Zo.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:Zo.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:Zo.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:Zo.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},Yo={fontFamily:Zo.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:Zo.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:Zo.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:Zo.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},Jo={fontFamily:Zo.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:Zo.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:Zo.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:Zo.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:Zo.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},Xo={fontFamily:Zo.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:Zo.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:Zo.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:Zo.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},Qo={fontFamily:Zo.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:Zo.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:Zo.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:Zo.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:Zo.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},tr={fontFamily:Zo.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:Zo.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:Zo.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:Zo.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Zo.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},er={fontFamily:Zo.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:Zo.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:Zo.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:Zo.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Zo.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},or={fontFamily:Zo.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:Zo.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:Zo.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:Zo.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:Zo.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Zo.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},rr={fontFamily:Zo.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:Zo.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:Zo.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:Zo.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Zo.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},nr={fontFamily:Zo.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:Zo.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:Zo.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:Zo.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Zo.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},ir={fontFamily:Zo.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:Zo.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:Zo.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:Zo.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:Zo.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Zo.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},ar={fontFamily:Zo.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:Zo.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},sr={fontFamily:Zo.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:Zo.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},cr={fontFamily:Zo.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:Zo.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:Zo.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},lr={fontFamily:Zo.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:Zo.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},fr={fontFamily:Zo.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:Zo.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},ur={fontFamily:Zo.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:Zo.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:Zo.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},hr={fontFamily:Zo.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:Zo.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:Zo.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},pr={fontFamily:Zo.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Zo.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:Zo.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},dr={fontFamily:Zo.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Zo.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:Zo.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:Zo.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:Zo.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:Zo.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:Zo.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Zo.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Zo.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")},yr={display:_o,"title-1":Ho,"title-2":To,"title-3":Go,"body-1-regular":Vo,"body-1-medium":qo,"body-1-semibold":Yo,"body-2-regular":Jo,"body-2-medium":Xo,"body-2-semibold":Qo,"label-1-medium":tr,"label-1-semibold":er,"label-1-bold":or,"label-2-medium":rr,"label-2-semibold":nr,"label-2-bold":ir,"caption-1-medium":ar,"caption-1-semibold":sr,"caption-1-bold":cr,"caption-2-medium":lr,"caption-2-semibold":fr,"caption-2-bold":ur,"caption-3-medium":hr,"caption-3-semibold":pr,"caption-3-bold":dr},gr={backgroundActionPrimary:Zo.extend("--ft-background-action-primary","Used as backgorund of primary action components.",zo.colorBrand0),backgroundErrorPrimary:Zo.extend("--ft-background-error-primary","Used as background of error components.",zo.colorRed0),backgroundErrorSubtle:Zo.extend("--ft-background-error-subtle","Used as background of subtle error components.",zo.colorRed10),backgroundInfoPrimary:Zo.extend("--ft-background-info-primary","Used as background of information components.",zo.colorCyan200),backgroundInfoSubtle:Zo.extend("--ft-background-info-subtle","Used as background of subtle information components.",zo.colorCyan10),backgroundWarningPrimary:Zo.extend("--ft-background-warning-primary","Used as background of warning components.",zo.colorOrange300),backgroundWarningSubtle:Zo.extend("--ft-background-warning-subtle","Used as background of subtle information components.",zo.colorOrange10),backgroundSuccessPrimary:Zo.extend("--ft-background-success-primary","Used as background of success components.",zo.colorGreen200),backgroundSuccessSubtle:Zo.extend("--ft-background-success-subtle","Used as background of subtle success components.",zo.colorGreen10),backgroundGlobalSurface:Zo.extend("--ft-background-global-surface","Used as app background.",zo.colorWhite),backgroundGlobalOnSurface:Zo.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",zo.colorGray10),backgroundGlobalOnSurfaceDark:Zo.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",zo.colorGray30),contentActionPrimary:Zo.extend("--ft-content-action-primary","Used on label of primary action on light surface.",zo.colorBrand0),contentWarningPrimary:Zo.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",zo.colorOrange300),contentWarningIconOnly:Zo.extend("--ft-content-warning-icon-only","Used on warning status icons alone",zo.colorOrange0),contentErrorPrimary:Zo.extend("--ft-content-error-primary","Used on label of error messages on light surface.",zo.colorRed0),contentErrorIconOnly:Zo.extend("--ft-content-error-icon-only","Used on error status icons alone",zo.colorRed0),contentInfoPrimary:Zo.extend("--ft-content-info-primary","Used on label of information messages on light surface.",zo.colorCyan200),contentInfoIconOnly:Zo.extend("--ft-content-info-icon-only","Used on info status icons alone",zo.colorCyan0),contentSuccessPrimary:Zo.extend("--ft-content-success-primary","Used on label of success messages on light surface.",zo.colorGreen200),contentSuccessIconOnly:Zo.extend("--ft-content-success-icon-only","Used on success status icons alone",zo.colorGreen0),contentGlobalPrimary:Zo.extend("--ft-content-global-primary","Used for main content on the page.",zo.colorGray500),contentGlobalSecondary:Zo.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",zo.colorGray200),contentGlobalSubtle:Zo.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",zo.colorGray0),contentGlobalOnColor:Zo.extend("--ft-content-global-on-color","Used for content on a dominant color.",zo.colorWhite),borderActionPrimary:Zo.extend("--ft-border-action-primary","Used as border for primary action components.",zo.colorBrand0),borderActionFocusRing:Zo.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",zo.colorCyan0),borderWarningPrimary:Zo.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",zo.colorOrange300),borderWarningSubtle:Zo.extend("--ft-border-warning-subtle","Used as border for warning components.",zo.colorOrange30),borderSuccessPrimary:Zo.extend("--ft-border-success-primary","Used as border for success buttons.",zo.colorGreen200),borderSuccessSubtle:Zo.extend("--ft-border-success-subtle","Used as border for success components.",zo.colorGreen30),borderErrorPrimary:Zo.extend("--ft-border-error-primary","Used as border for text fields in error states.",zo.colorRed0),borderErrorSubtle:Zo.extend("--ft-border-error-subtle","Used as border for error components.",zo.colorRed30),borderInfoPrimary:Zo.extend("--ft-border-info-primary","Used as border for buttons in info color.",zo.colorCyan200),borderInfoSubtle:Zo.extend("--ft-border-info-subtle","Used as border for information components.",zo.colorCyan30),borderGlobalPrimary:Zo.extend("--ft-border-global-primary","Used as border for element like input.",zo.colorGray50),borderGlobalSubtle:Zo.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",zo.colorGray30),borderInputPrimary:Zo.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",zo.colorGray80)},br={largeHeight:Zo.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:Zo.extend("--ft-button-large-horizontal-padding","",zo.spacing4),largeGap:Zo.extend("--ft-button-large-gap","",zo.spacing2),largeBorderRadius:Zo.extend("--ft-button-large-border-radius","",zo.borderRadiusS),largeIconSize:Zo.extend("--ft-button-large-icon-size","",zo.iconSize3),largeBorderWidth:Zo.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:Zo.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:Zo.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:Zo.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:Zo.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:Zo.extend("--ft-button-small-horizontal-padding","",zo.spacing3),smallGap:Zo.extend("--ft-button-small-gap","",zo.spacing2),smallBorderRadius:Zo.extend("--ft-button-small-border-radius","",zo.borderRadiusS),smallIconSize:Zo.extend("--ft-button-small-icon-size","",zo.iconSize2),smallBorderWidth:Zo.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:Zo.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:Zo.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:Zo.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:Zo.extend("--ft-button-primary-background-color","",gr.backgroundActionPrimary),primaryColor:Zo.extend("--ft-button-primary-color","",gr.contentGlobalOnColor),primaryIconColor:Zo.extend("--ft-button-primary-icon-color","",gr.contentGlobalOnColor),primaryStateLayerColor:Zo.extend("--ft-button-primary-state-layer-color","",gr.contentGlobalOnColor),primaryStateLayerOpacityHover:Zo.extend("--ft-button-primary-state-layer-opacity-hover","",zo.opacity16),primaryStateLayerOpacityFocus:Zo.extend("--ft-button-primary-state-layer-opacity-focus","",zo.opacity16),primaryStateLayerOpacityActive:Zo.extend("--ft-button-primary-state-layer-opacity-active","",zo.opacity24),primaryComponentOpacityDisabled:Zo.extend("--ft-button-primary-component-opacity-disabled","",zo.opacity40),focusFocusRingColor:Zo.extend("--ft-button-focus-focus-ring-color","",gr.borderActionFocusRing),tertiaryBackgroundColor:Zo.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:Zo.extend("--ft-button-tertiary-color","",gr.contentActionPrimary),tertiaryIconColor:Zo.extend("--ft-button-tertiary-icon-color","",gr.contentActionPrimary),tertiaryStateLayerColor:Zo.extend("--ft-button-tertiary-state-layer-color","",gr.contentActionPrimary),tertiaryStateLayerOpacityHover:Zo.extend("--ft-button-tertiary-state-layer-opacity-hover","",zo.opacity8),tertiaryStateLayerOpacityFocus:Zo.extend("--ft-button-tertiary-state-layer-opacity-focus","",zo.opacity8),tertiaryStateLayerOpacityActive:Zo.extend("--ft-button-tertiary-state-layer-opacity-active","",zo.opacity16),tertiaryComponentOpacityDisabled:Zo.extend("--ft-button-tertiary-component-opacity-disabled","",zo.opacity40),secondaryBackgroundColor:Zo.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:Zo.extend("--ft-button-secondary-color","",gr.contentActionPrimary),secondaryIconColor:Zo.extend("--ft-button-secondary-icon-color","",gr.contentActionPrimary),secondaryStateLayerColor:Zo.extend("--ft-button-secondary-state-layer-color","",gr.contentActionPrimary),secondaryStateLayerOpacityHover:Zo.extend("--ft-button-secondary-state-layer-opacity-hover","",zo.opacity8),secondaryStateLayerOpacityFocus:Zo.extend("--ft-button-secondary-state-layer-opacity-focus","",zo.opacity8),secondaryStateLayerOpacityActive:Zo.extend("--ft-button-secondary-state-layer-opacity-active","",zo.opacity16),secondaryComponentOpacityDisabled:Zo.extend("--ft-button-secondary-component-opacity-disabled","",zo.opacity40),secondaryBorderColor:Zo.extend("--ft-button-secondary-border-color","",gr.borderActionPrimary),neutralBackgroundColor:Zo.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:Zo.extend("--ft-button-neutral-icon-color","",gr.contentGlobalSecondary),neutralColor:Zo.extend("--ft-button-neutral-color","",gr.contentGlobalSecondary),neutralStateLayerColor:Zo.extend("--ft-button-neutral-state-layer-color","",gr.contentGlobalSecondary),neutralStateLayerOpacityHover:Zo.extend("--ft-button-neutral-state-layer-opacity-hover","",zo.opacity8),neutralStateLayerOpacityFocus:Zo.extend("--ft-button-neutral-state-layer-opacity-focus","",zo.opacity8),neutralStateLayerOpacityActive:Zo.extend("--ft-button-neutral-state-layer-opacity-active","",zo.opacity16),neutralComponentOpacityDisabled:Zo.extend("--ft-button-neutral-component-opacity-disabled","",zo.opacity40)},mr={horizontalPadding:Zo.extend("--ft-floating-menu-horizontal-padding","",zo.spacing4),verticalPadding:Zo.extend("--ft-floating-menu-vertical-padding","",zo.spacing4),offIconColor:Zo.extend("--ft-floating-menu-off-icon-color","",gr.contentGlobalPrimary),offColor:Zo.extend("--ft-floating-menu-off-color","",gr.contentGlobalPrimary),onColor:Zo.extend("--ft-floating-menu-on-color","",gr.contentActionPrimary),onIconColor:Zo.extend("--ft-floating-menu-on-icon-color","",gr.contentActionPrimary),onStateLayerColor:Zo.extend("--ft-floating-menu-on-state-layer-color","",gr.contentActionPrimary),gap:Zo.extend("--ft-floating-menu-gap","",zo.spacing3),focusFocusRingColor:Zo.extend("--ft-floating-menu-focus-focus-ring-color","",gr.borderActionFocusRing),focusOutlineWidth:Zo.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),stateLayerOpacityHover:Zo.extend("--ft-floating-menu-state-layer-opacity-hover","",zo.opacity8),stateLayerOpacityActive:Zo.extend("--ft-floating-menu-state-layer-opacity-active","",zo.opacity16),stateLayerOpacityFocus:Zo.extend("--ft-floating-menu-state-layer-opacity-focus","",zo.opacity8),componentOpacityDisabled:Zo.extend("--ft-floating-menu-component-opacity-disabled","",zo.opacity40),iconSize:Zo.extend("--ft-floating-menu-icon-size","",zo.iconSize3),backgroundColor:Zo.extend("--ft-floating-menu-background-color","",gr.backgroundGlobalOnSurface)},vr={topLeftBorderRadius:Zo.extend("--ft-tabs-top-left-border-radius","",zo.borderRadiusS),topRightBorderRadius:Zo.extend("--ft-tabs-top-right-border-radius","",zo.borderRadiusS),labelHorizontalPadding:Zo.extend("--ft-tabs-label-horizontal-padding","",zo.spacing4),labelVerticalPadding:Zo.extend("--ft-tabs-label-vertical-padding","",zo.spacing3),labelGap:Zo.extend("--ft-tabs-label-gap","",zo.spacing1),iconHorizontalPadding:Zo.extend("--ft-tabs-icon-horizontal-padding","",zo.spacing1),iconVerticalPadding:Zo.extend("--ft-tabs-icon-vertical-padding","",zo.spacing4),focusOutlineWidth:Zo.create("--ft-tabs-focus-outline-width","","SIZE","2px"),focusFocusRingColor:Zo.extend("--ft-tabs-focus-focus-ring-color","",gr.borderActionFocusRing),offStateLayerOpacityHover:Zo.extend("--ft-tabs-off-state-layer-opacity-hover","",zo.opacity8),offStateLayerOpacityFocus:Zo.extend("--ft-tabs-off-state-layer-opacity-focus","",zo.opacity8),offStateLayerOpacityActive:Zo.extend("--ft-tabs-off-state-layer-opacity-active","",zo.opacity16),offComponentOpacityDisabled:Zo.extend("--ft-tabs-off-component-opacity-disabled","",zo.opacity40),offColor:Zo.extend("--ft-tabs-off-color","",gr.contentGlobalSubtle),offStateLayerColor:Zo.extend("--ft-tabs-off-state-layer-color","",gr.contentGlobalSubtle),onStateLayerOpacityHover:Zo.extend("--ft-tabs-on-state-layer-opacity-hover","",zo.opacity8),onStateLayerOpacityFocus:Zo.extend("--ft-tabs-on-state-layer-opacity-focus","",zo.opacity8),onStateLayerOpacityActive:Zo.extend("--ft-tabs-on-state-layer-opacity-active","",zo.opacity16),onComponentOpacityDisabled:Zo.extend("--ft-tabs-on-component-opacity-disabled","",zo.opacity40),onColor:Zo.extend("--ft-tabs-on-color","",gr.contentActionPrimary),onStateLayerColor:Zo.extend("--ft-tabs-on-state-layer-color","",gr.contentActionPrimary)},Or={stateLayerOpacityHover:Zo.extend("--ft-collapsible-state-layer-opacity-hover","",zo.opacity8),stateLayerOpacityFocus:Zo.extend("--ft-collapsible-state-layer-opacity-focus","",zo.opacity8),stateLayerOpacityActive:Zo.extend("--ft-collapsible-state-layer-opacity-active","",zo.opacity16),componentOpacityDisabled:Zo.extend("--ft-collapsible-component-opacity-disabled","",zo.opacity40),horizontalPadding:Zo.extend("--ft-collapsible-horizontal-padding","",zo.spacing4),verticalPadding:Zo.extend("--ft-collapsible-vertical-padding","",zo.spacing3),focusOutlineWidth:Zo.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),focusFocusRingColor:Zo.extend("--ft-collapsible-focus-focus-ring-color","",gr.borderActionFocusRing),color:Zo.extend("--ft-collapsible-color","",gr.contentGlobalPrimary),stateLayerColor:Zo.extend("--ft-collapsible-state-layer-color","",gr.contentGlobalPrimary),backgroundColor:Zo.extend("--ft-collapsible-background-color","",gr.backgroundGlobalOnSurface),borderColor:Zo.extend("--ft-collapsible-border-color","",gr.borderGlobalSubtle),iconSize:Zo.extend("--ft-collapsible-icon-size","",zo.iconSize3)},Sr={groupHorizontalPadding:Zo.extend("--ft-switch-group-horizontal-padding","",zo.spacing1),groupVerticalPadding:Zo.extend("--ft-switch-group-vertical-padding","",zo.spacing1),groupGap:Zo.extend("--ft-switch-group-gap","",zo.spacing1),groupBackgroundColor:Zo.extend("--ft-switch-group-background-color","",gr.backgroundGlobalSurface),groupBorderColor:Zo.extend("--ft-switch-group-border-color","",gr.borderGlobalSubtle),groupBorderRadius:Zo.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:Zo.extend("--ft-switch-label-horizontal-padding","",zo.spacing2),labelVerticalPadding:Zo.extend("--ft-switch-label-vertical-padding","",zo.spacing1),iconHorizontalPadding:Zo.extend("--ft-switch-icon-horizontal-padding","",zo.spacing1),iconVerticalPadding:Zo.extend("--ft-switch-icon-vertical-padding","",zo.spacing1),focusOutlineWidth:Zo.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:Zo.extend("--ft-switch-focus-focus-ring-color","",gr.borderActionFocusRing),optionBorderRadius:Zo.extend("--ft-switch-option-border-radius","",zo.borderRadiusS),offStateLayerOpacityHover:Zo.extend("--ft-switch-off-state-layer-opacity-hover","",zo.opacity8),offStateLayerOpacityFocus:Zo.extend("--ft-switch-off-state-layer-opacity-focus","",zo.opacity8),offStateLayerOpacityActive:Zo.extend("--ft-switch-off-state-layer-opacity-active","",zo.opacity16),offComponentOpacityDisabled:Zo.extend("--ft-switch-off-component-opacity-disabled","",zo.opacity40),offColor:Zo.extend("--ft-switch-off-color","",gr.contentGlobalSubtle),offStateLayerColor:Zo.extend("--ft-switch-off-state-layer-color","",gr.contentGlobalSubtle),onStateLayerOpacityHover:Zo.extend("--ft-switch-on-state-layer-opacity-hover","",zo.opacity8),onStateLayerOpacityFocus:Zo.extend("--ft-switch-on-state-layer-opacity-focus","",zo.opacity8),onStateLayerOpacityActive:Zo.extend("--ft-switch-on-state-layer-opacity-active","",zo.opacity16),onComponentOpacityDisabled:Zo.extend("--ft-switch-on-component-opacity-disabled","",zo.opacity40),onColor:Zo.extend("--ft-switch-on-color","",gr.contentActionPrimary),onStateLayerColor:Zo.extend("--ft-switch-on-state-layer-color","",gr.contentActionPrimary)},wr={color1Light:Zo.extend("--ft-chart-1-light","for area color charts",zo.colorBrand40),color1Base:Zo.extend("--ft-chart-1-base","for line charts",zo.colorBrand0),color2Light:Zo.extend("--ft-chart-2-light","for area color charts",zo.colorYellow60),color2Base:Zo.extend("--ft-chart-2-base","for line charts",zo.colorYellow100),color3Light:Zo.extend("--ft-chart-3-light","",zo.colorUltramarine40),color3Base:Zo.extend("--ft-chart-3-base","",zo.colorUltramarine70),color4Light:Zo.extend("--ft-chart-4-light","",zo.colorCyan50),color4Base:Zo.extend("--ft-chart-4-base","",zo.colorCyan100),color5Light:Zo.extend("--ft-chart-5-light","",zo.colorRed40),color5Base:Zo.extend("--ft-chart-5-base","",zo.colorRed60),color6Light:Zo.extend("--ft-chart-6-light","",zo.colorGreen40),color6Base:Zo.extend("--ft-chart-6-base","",zo.colorGreen70),color7Light:Zo.extend("--ft-chart-7-light","",zo.colorOrange70),color7Base:Zo.extend("--ft-chart-7-base","",zo.colorOrange100),color8Light:Zo.extend("--ft-chart-8-light","",zo.colorAvocado70),color8Base:Zo.extend("--ft-chart-8-base","",zo.colorAvocado200),color9Light:Zo.extend("--ft-chart-9-light","",zo.colorBrown50),color9Base:Zo.extend("--ft-chart-9-base","",zo.colorBrown200),color10Light:Zo.extend("--ft-chart-10-light","",zo.colorGray50),color10Base:Zo.extend("--ft-chart-10-base","",zo.colorGray80),monochrome10:Zo.extend("--ft-chart-monochrome-10","",zo.colorBrand10),monochrome20:Zo.extend("--ft-chart-monochrome-20","",zo.colorBrand20),monochrome30:Zo.extend("--ft-chart-monochrome-30","",zo.colorBrand40),monochrome40:Zo.extend("--ft-chart-monochrome-40","",zo.colorBrand60),monochrome50:Zo.extend("--ft-chart-monochrome-50","",zo.colorBrand0),monochrome60:Zo.extend("--ft-chart-monochrome-60","",zo.colorBrand200)},Nr={largeHorizontalPadding:Zo.extend("--ft-chip-large-horizontal-padding","",zo.spacing4),largeVerticalPadding:Zo.extend("--ft-chip-large-vertical-padding","",zo.spacing2),largeGap:Zo.extend("--ft-chip-large-gap","",zo.spacing1),largeFocusOutlineOffset:Zo.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:Zo.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),largeBorderRadius:Zo.extend("--ft-chip-large-border-radius","",zo.borderRadiusPill),largeBorderWidth:Zo.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:Zo.extend("--ft-chip-large-icon-size","",zo.iconSize3),mediumHorizontalPadding:Zo.extend("--ft-chip-medium-horizontal-padding","",zo.spacing3),mediumVerticalPadding:Zo.extend("--ft-chip-medium-vertical-padding","",zo.spacing1),mediumGap:Zo.extend("--ft-chip-medium-gap","",zo.spacing1),mediumFocusOutlineOffset:Zo.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:Zo.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mediumBorderRadius:Zo.extend("--ft-chip-medium-border-radius","",zo.borderRadiusPill),mediumBorderWidth:Zo.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:Zo.extend("--ft-chip-medium-icon-size","",zo.iconSize2),smallHorizontalPadding:Zo.extend("--ft-chip-small-horizontal-padding","",zo.spacing2),smallVerticalPadding:Zo.extend("--ft-chip-small-vertical-padding","",zo.spacing05),smallGap:Zo.extend("--ft-chip-small-gap","",zo.spacing1),smallFocusOutlineOffset:Zo.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:Zo.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),smallBorderRadius:Zo.extend("--ft-chip-small-border-radius","",zo.borderRadiusPill),smallBorderWidth:Zo.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:Zo.extend("--ft-chip-small-icon-size","",zo.iconSize1),neutralBackgroundColor:Zo.extend("--ft-chip-neutral-background-color","",gr.backgroundGlobalOnSurface),neutralColor:Zo.extend("--ft-chip-neutral-color","",gr.contentGlobalPrimary),neutralBorderColor:Zo.extend("--ft-chip-neutral-border-color","",gr.borderGlobalSubtle),infoBackgroundColor:Zo.extend("--ft-chip-info-background-color","",gr.backgroundInfoSubtle),infoColor:Zo.extend("--ft-chip-info-color","",gr.contentInfoPrimary),infoBorderColor:Zo.extend("--ft-chip-info-border-color","",gr.borderInfoSubtle),successBackgroundColor:Zo.extend("--ft-chip-success-background-color","",gr.backgroundSuccessSubtle),successColor:Zo.extend("--ft-chip-success-color","",gr.contentSuccessPrimary),successBorderColor:Zo.extend("--ft-chip-success-border-color","",gr.borderSuccessSubtle),warningBackgroundColor:Zo.extend("--ft-chip-warning-background-color","",gr.backgroundWarningSubtle),warningColor:Zo.extend("--ft-chip-warning-color","",gr.contentWarningPrimary),warningBorderColor:Zo.extend("--ft-chip-warning-border-color","",gr.borderWarningSubtle),errorBackgroundColor:Zo.extend("--ft-chip-error-background-color","",gr.backgroundErrorSubtle),errorColor:Zo.extend("--ft-chip-error-color","",gr.contentErrorPrimary),errorBorderColor:Zo.extend("--ft-chip-error-border-color","",gr.borderErrorSubtle)},xr={borderWidth:Zo.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:Zo.extend("--ft-notice-horizontal-padding","",zo.spacing2),verticalPadding:Zo.extend("--ft-notice-vertical-padding","",zo.spacing1),borderRadius:Zo.extend("--ft-notice-border-radius","",zo.borderRadiusS),gap:Zo.extend("--ft-notice-gap","",zo.spacing2),iconSize:Zo.extend("--ft-notice-icon-size","",zo.iconSize3),infoBackgroundColor:Zo.extend("--ft-notice-info-background-color","",gr.backgroundInfoSubtle),infoBorderColor:Zo.extend("--ft-notice-info-border-color","",gr.borderInfoSubtle),infoColor:Zo.extend("--ft-notice-info-color","",gr.contentInfoPrimary),warningBackgroundColor:Zo.extend("--ft-notice-warning-background-color","",gr.backgroundWarningSubtle),warningBorderColor:Zo.extend("--ft-notice-warning-border-color","",gr.borderWarningSubtle),warningColor:Zo.extend("--ft-notice-warning-color","",gr.contentWarningPrimary)},Cr={labelColor:Zo.extend("--ft-checkbox-label-color","",gr.contentGlobalPrimary),checkedBackgroundColor:Zo.extend("--ft-checkbox-checked-background-color","",gr.contentActionPrimary),checkedStateLayerColor:Zo.extend("--ft-checkbox-checked-state-layer-color","",gr.contentActionPrimary),checkedColor:Zo.extend("--ft-checkbox-checked-color","",gr.contentGlobalOnColor),checkedStateLayerOpacityHover:Zo.extend("--ft-checkbox-checked-state-layer-opacity-hover","",zo.opacity16),checkedStateLayerOpacityFocus:Zo.extend("--ft-checkbox-checked-state-layer-opacity-focus","",zo.opacity16),checkedStateLayerOpacityActive:Zo.extend("--ft-checkbox-checked-state-layer-opacity-active","",zo.opacity24),checkedComponentOpacityDisabled:Zo.extend("--ft-checkbox-checked-component-opacity-disabled","",zo.opacity40),uncheckedBorderColor:Zo.extend("--ft-checkbox-unchecked-border-color","",zo.colorGray80),uncheckedStateLayerColor:Zo.extend("--ft-checkbox-unchecked-state-layer-color","",zo.colorGray80),uncheckedStateLayerOpacityHover:Zo.extend("--ft-checkbox-unchecked-state-layer-opacity-hover","",zo.opacity16),uncheckedStateLayerOpacityFocus:Zo.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",zo.opacity16),uncheckedStateLayerOpacityActive:Zo.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",zo.opacity24),uncheckedComponentOpacityDisabled:Zo.extend("--ft-checkbox-unchecked-component-opacity-disabled","",zo.opacity40),focusFocusRingColor:Zo.extend("--ft-checkbox-focus-focus-ring-color","",gr.borderActionFocusRing),focusOutlineOffset:Zo.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:Zo.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),gap:Zo.extend("--ft-checkbox-gap","",zo.spacing3)},Er={offStateLayerOpacityHover:Zo.extend("--ft-toggle-off-state-layer-opacity-hover","",zo.opacity16),offStateLayerOpacityFocus:Zo.extend("--ft-toggle-off-state-layer-opacity-focus","",zo.opacity16),offStateLayerOpacityActive:Zo.extend("--ft-toggle-off-state-layer-opacity-active","",zo.opacity24),offComponentOpacityDisabled:Zo.extend("--ft-toggle-off-component-opacity-disabled","",zo.opacity40),offBackgroundColor:Zo.extend("--ft-toggle-off-background-color","",gr.contentGlobalSubtle),offIconColor:Zo.extend("--ft-toggle-off-icon-color","",gr.contentGlobalSubtle),offStateLayerColor:Zo.extend("--ft-toggle-off-state-layer-color","",gr.contentGlobalSubtle),onStateLayerOpacityHover:Zo.extend("--ft-toggle-on-state-layer-opacity-hover","",zo.opacity16),onStateLayerOpacityFocus:Zo.extend("--ft-toggle-on-state-layer-opacity-focus","",zo.opacity16),onStateLayerOpacityActive:Zo.extend("--ft-toggle-on-state-layer-opacity-active","",zo.opacity24),onComponentOpacityDisabled:Zo.extend("--ft-toggle-on-component-opacity-disabled","",zo.opacity40),onBackgroundColor:Zo.extend("--ft-toggle-on-background-color","",gr.contentActionPrimary),onIconColor:Zo.extend("--ft-toggle-on-icon-color","",gr.contentActionPrimary),onStateLayerColor:Zo.extend("--ft-toggle-on-state-layer-color","",gr.contentActionPrimary),labelColor:Zo.extend("--ft-toggle-label-color","",gr.contentGlobalPrimary),focusFocusRingColor:Zo.extend("--ft-toggle-focus-focus-ring-color","",gr.borderActionFocusRing),gap:Zo.extend("--ft-toggle-gap","",zo.spacing3)},Rr={labelColor:Zo.extend("--ft-radio-label-color","",gr.contentGlobalPrimary),selectedColor:Zo.extend("--ft-radio-selected-color","",gr.contentActionPrimary),selectedStateLayerColor:Zo.extend("--ft-radio-selected-state-layer-color","",gr.contentActionPrimary),selectedStateLayerOpacityHover:Zo.extend("--ft-radio-selected-state-layer-opacity-hover","",zo.opacity16),selectedStateLayerOpacityFocus:Zo.extend("--ft-radio-selected-state-layer-opacity-focus","",zo.opacity16),selectedStateLayerOpacityActive:Zo.extend("--ft-radio-selected-state-layer-opacity-active","",zo.opacity24),selectedComponentOpacityDisabled:Zo.extend("--ft-radio-selected-component-opacity-disabled","",zo.opacity40),unselectedStateLayerColor:Zo.extend("--ft-radio-unselected-state-layer-color","",zo.colorGray80),unselectedStateLayerOpacityHover:Zo.extend("--ft-radio-unselected-state-layer-opacity-hover","",zo.opacity16),unselectedStateLayerOpacityFocus:Zo.extend("--ft-radio-unselected-state-layer-opacity-focus","",zo.opacity16),unselectedStateLayerOpacityActive:Zo.extend("--ft-radio-unselected-state-layer-opacity-active","",zo.opacity24),unselectedComponentOpacityDisabled:Zo.extend("--ft-radio-unselected-component-opacity-disabled","",zo.opacity40),focusFocusRingColor:Zo.extend("--ft-radio-focus-focus-ring-color","",gr.borderActionFocusRing),focusOutlineOffset:Zo.create("--ft-radio-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:Zo.create("--ft-radio-focus-outline-width","","SIZE","2px"),gap:Zo.extend("--ft-radio-gap","",zo.spacing3)},Lr={iconSize:Zo.extend("--ft-notification-icon-size","",zo.iconSize4),horizontalPadding:Zo.extend("--ft-notification-horizontal-padding","",zo.spacing4),verticalPadding:Zo.extend("--ft-notification-vertical-padding","",zo.spacing4),infoBackgroundColor:Zo.extend("--ft-notification-info-background-color","",gr.backgroundInfoSubtle),infoColor:Zo.extend("--ft-notification-info-color","",gr.contentInfoPrimary),infoBorderColor:Zo.extend("--ft-notification-info-border-color","",gr.borderInfoSubtle),successBackgroundColor:Zo.extend("--ft-notification-success-background-color","",gr.backgroundSuccessSubtle),successColor:Zo.extend("--ft-notification-success-color","",gr.contentSuccessPrimary),successBorderColor:Zo.extend("--ft-notification-success-border-color","",gr.borderSuccessSubtle),warningBackgroundColor:Zo.extend("--ft-notification-warning-background-color","",gr.backgroundWarningSubtle),warningColor:Zo.extend("--ft-notification-warning-color","",gr.contentWarningPrimary),warningBorderColor:Zo.extend("--ft-notification-warning-border-color","",gr.borderWarningSubtle),errorBackgroundColor:Zo.extend("--ft-notification-error-background-color","",gr.backgroundErrorSubtle),errorColor:Zo.extend("--ft-notification-error-color","",gr.contentErrorPrimary),errorBorderColor:Zo.extend("--ft-notification-error-border-color","",gr.borderErrorSubtle),borderRadius:Zo.extend("--ft-notification-border-radius","",zo.borderRadiusPill),borderWidth:Zo.create("--ft-notification-border-width","","SIZE","1px"),gapLeading:Zo.extend("--ft-notification-gap-leading","",zo.spacing2),gapTrailing:Zo.extend("--ft-notification-gap-trailing","",zo.spacing8)},Ir={horizontalPadding:Zo.extend("--ft-tooltip-horizontal-padding","",zo.spacing2),verticalPadding:Zo.extend("--ft-tooltip-vertical-padding","",zo.spacing2),borderRadius:Zo.extend("--ft-tooltip-border-radius","",zo.borderRadiusS),label:Zo.extend("--ft-tooltip-label","",gr.contentGlobalOnColor),background:Zo.extend("--ft-tooltip-background","",gr.contentGlobalPrimary),backgroundOpacity:Zo.extend("--ft-tooltip-background-opacity","",zo.opacity80),shadow:Zo.extend("--ft-tooltip-shadow","",zo.shadowElevation03)},Ur={colorPrimary:Zo.create("--ft-color-primary","","COLOR","#2196F3"),colorPrimaryVariant:Zo.create("--ft-color-primary-variant","","COLOR","#1976D2"),colorSecondary:Zo.create("--ft-color-secondary","","COLOR","#FFCC80"),colorSecondaryVariant:Zo.create("--ft-color-secondary-variant","","COLOR","#F57C00"),colorSurface:Zo.create("--ft-color-surface","","COLOR","#FFFFFF"),colorContent:Zo.create("--ft-color-content","","COLOR","rgba(0, 0, 0, 0.87)"),colorError:Zo.create("--ft-color-error","","COLOR","#B00020"),colorOutline:Zo.create("--ft-color-outline","","COLOR","rgba(0, 0, 0, 0.14)"),colorOpacityHigh:Zo.create("--ft-color-opacity-high","","NUMBER","1"),colorOpacityMedium:Zo.create("--ft-color-opacity-medium","","NUMBER","0.74"),colorOpacityDisabled:Zo.create("--ft-color-opacity-disabled","","NUMBER","0.38"),colorOnPrimary:Zo.create("--ft-color-on-primary","","COLOR","#FFFFFF"),colorOnPrimaryHigh:Zo.create("--ft-color-on-primary-high","","COLOR","#FFFFFF"),colorOnPrimaryMedium:Zo.create("--ft-color-on-primary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnPrimaryDisabled:Zo.create("--ft-color-on-primary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSecondary:Zo.create("--ft-color-on-secondary","","COLOR","#FFFFFF"),colorOnSecondaryHigh:Zo.create("--ft-color-on-secondary-high","","COLOR","#FFFFFF"),colorOnSecondaryMedium:Zo.create("--ft-color-on-secondary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnSecondaryDisabled:Zo.create("--ft-color-on-secondary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSurface:Zo.create("--ft-color-on-surface","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceHigh:Zo.create("--ft-color-on-surface-high","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceMedium:Zo.create("--ft-color-on-surface-medium","","COLOR","rgba(0, 0, 0, 0.60)"),colorOnSurfaceDisabled:Zo.create("--ft-color-on-surface-disabled","","COLOR","rgba(0, 0, 0, 0.38)"),opacityContentOnSurfaceDisabled:Zo.create("--ft-opacity-content-on-surface-disabled","","NUMBER","0"),opacityContentOnSurfaceEnable:Zo.create("--ft-opacity-content-on-surface-enable","","NUMBER","0"),opacityContentOnSurfaceHover:Zo.create("--ft-opacity-content-on-surface-hover","","NUMBER","0.04"),opacityContentOnSurfaceFocused:Zo.create("--ft-opacity-content-on-surface-focused","","NUMBER","0.12"),opacityContentOnSurfacePressed:Zo.create("--ft-opacity-content-on-surface-pressed","","NUMBER","0.10"),opacityContentOnSurfaceSelected:Zo.create("--ft-opacity-content-on-surface-selected","","NUMBER","0.08"),opacityContentOnSurfaceDragged:Zo.create("--ft-opacity-content-on-surface-dragged","","NUMBER","0.08"),opacityPrimaryOnSurfaceDisabled:Zo.create("--ft-opacity-primary-on-surface-disabled","","NUMBER","0"),opacityPrimaryOnSurfaceEnable:Zo.create("--ft-opacity-primary-on-surface-enable","","NUMBER","0"),opacityPrimaryOnSurfaceHover:Zo.create("--ft-opacity-primary-on-surface-hover","","NUMBER","0.04"),opacityPrimaryOnSurfaceFocused:Zo.create("--ft-opacity-primary-on-surface-focused","","NUMBER","0.12"),opacityPrimaryOnSurfacePressed:Zo.create("--ft-opacity-primary-on-surface-pressed","","NUMBER","0.10"),opacityPrimaryOnSurfaceSelected:Zo.create("--ft-opacity-primary-on-surface-selected","","NUMBER","0.08"),opacityPrimaryOnSurfaceDragged:Zo.create("--ft-opacity-primary-on-surface-dragged","","NUMBER","0.08"),opacitySurfaceOnPrimaryDisabled:Zo.create("--ft-opacity-surface-on-primary-disabled","","NUMBER","0"),opacitySurfaceOnPrimaryEnable:Zo.create("--ft-opacity-surface-on-primary-enable","","NUMBER","0"),opacitySurfaceOnPrimaryHover:Zo.create("--ft-opacity-surface-on-primary-hover","","NUMBER","0.04"),opacitySurfaceOnPrimaryFocused:Zo.create("--ft-opacity-surface-on-primary-focused","","NUMBER","0.12"),opacitySurfaceOnPrimaryPressed:Zo.create("--ft-opacity-surface-on-primary-pressed","","NUMBER","0.10"),opacitySurfaceOnPrimarySelected:Zo.create("--ft-opacity-surface-on-primary-selected","","NUMBER","0.08"),opacitySurfaceOnPrimaryDragged:Zo.create("--ft-opacity-surface-on-primary-dragged","","NUMBER","0.08"),elevation00:Zo.create("--ft-elevation-00","","UNKNOWN","0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)"),elevation01:Zo.create("--ft-elevation-01","","UNKNOWN","0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation02:Zo.create("--ft-elevation-02","","UNKNOWN","0px 4px 10px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation03:Zo.create("--ft-elevation-03","","UNKNOWN","0px 6px 13px 0px rgba(0, 0, 0, 0.06), 0px 3px 7px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.06)"),elevation04:Zo.create("--ft-elevation-04","","UNKNOWN","0px 8px 16px 0px rgba(0, 0, 0, 0.06), 0px 4px 9px 0px rgba(0, 0, 0, 0.14), 0px 2px 3px 0px rgba(0, 0, 0, 0.06)"),elevation06:Zo.create("--ft-elevation-06","","UNKNOWN","0px 12px 22px 0px rgba(0, 0, 0, 0.06), 0px 6px 13px 0px rgba(0, 0, 0, 0.14), 0px 4px 5px 0px rgba(0, 0, 0, 0.06)"),elevation08:Zo.create("--ft-elevation-08","","UNKNOWN","0px 16px 28px 0px rgba(0, 0, 0, 0.06), 0px 8px 17px 0px rgba(0, 0, 0, 0.14), 0px 6px 7px 0px rgba(0, 0, 0, 0.06)"),elevation12:Zo.create("--ft-elevation-12","","UNKNOWN","0px 22px 40px 0px rgba(0, 0, 0, 0.06), 0px 12px 23px 0px rgba(0, 0, 0, 0.14), 0px 10px 11px 0px rgba(0, 0, 0, 0.06)"),elevation16:Zo.create("--ft-elevation-16","","UNKNOWN","0px 28px 52px 0px rgba(0, 0, 0, 0.06), 0px 16px 29px 0px rgba(0, 0, 0, 0.14), 0px 14px 15px 0px rgba(0, 0, 0, 0.06)"),elevation24:Zo.create("--ft-elevation-24","","UNKNOWN","0px 40px 76px 0px rgba(0, 0, 0, 0.06), 0px 24px 41px 0px rgba(0, 0, 0, 0.14), 0px 22px 23px 0px rgba(0, 0, 0, 0.06)"),borderRadiusS:Zo.create("--ft-border-radius-S","","SIZE","4px"),borderRadiusM:Zo.create("--ft-border-radius-M","","SIZE","8px"),borderRadiusL:Zo.create("--ft-border-radius-L","","SIZE","12px"),borderRadiusXL:Zo.create("--ft-border-radius-XL","","SIZE","16px"),titleFont:Zo.create("--ft-title-font","","UNKNOWN","Ubuntu, system-ui, sans-serif"),contentFont:Zo.create("--ft-content-font","","UNKNOWN","'Open Sans', system-ui, sans-serif"),transitionDuration:Zo.create("--ft-transition-duration","","UNKNOWN","250ms"),transitionTimingFunction:Zo.create("--ft-transition-timing-function","","UNKNOWN","ease-in-out")};class Wr extends CustomEvent{constructor(t){super("ft-notification",{bubbles:!0,composed:!0,detail:t})}}class kr extends Event{constructor(){super("ft-pre-resize",{composed:!0,bubbles:!0})}}class Ar extends Event{constructor(){super("ft-post-resize",{composed:!0,bubbles:!0})}}const Fr=["start","end"],$r=["top","right","bottom","left"].reduce(((t,e)=>t.concat(e,e+"-"+Fr[0],e+"-"+Fr[1])),[]),Kr=Math.min,Pr=Math.max,Br=Math.round,jr=t=>({x:t,y:t}),Mr={left:"right",right:"left",bottom:"top",top:"bottom"},Dr={start:"end",end:"start"};function Zr(t,e,o){return Pr(t,Kr(e,o))}function zr(t,e){return"function"==typeof t?t(e):t}function _r(t){return t.split("-")[0]}function Hr(t){return t.split("-")[1]}function Tr(t){return"x"===t?"y":"x"}function Gr(t){return"y"===t?"height":"width"}function Vr(t){return["top","bottom"].includes(_r(t))?"y":"x"}function qr(t){return Tr(Vr(t))}function Yr(t){return t.replace(/left|right|bottom|top/g,(t=>Mr[t]))}function Jr(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function Xr(t,e,o){let{reference:r,floating:n}=t;const i=Vr(e),a=qr(e),s=Gr(a),c=_r(e),l="y"===i,f=r.x+r.width/2-n.width/2,u=r.y+r.height/2-n.height/2,h=r[s]/2-n[s]/2;let p;switch(c){case"top":p={x:f,y:r.y-n.height};break;case"bottom":p={x:f,y:r.y+r.height};break;case"right":p={x:r.x+r.width,y:u};break;case"left":p={x:r.x-n.width,y:u};break;default:p={x:r.x,y:r.y}}switch(Hr(e)){case"start":p[a]-=h*(o&&l?-1:1);break;case"end":p[a]+=h*(o&&l?-1:1)}return p}async function Qr(t,e){var o;void 0===e&&(e={});const{x:r,y:n,platform:i,rects:a,elements:s,strategy:c}=t,{boundary:l="clippingAncestors",rootBoundary:f="viewport",elementContext:u="floating",altBoundary:h=!1,padding:p=0}=zr(e,t),d=function(t){return"number"!=typeof t?function(t){return{top:0,right:0,bottom:0,left:0,...t}}(t):{top:t,right:t,bottom:t,left:t}}(p),y=s[h?"floating"===u?"reference":"floating":u],g=Jr(await i.getClippingRect({element:null==(o=await(null==i.isElement?void 0:i.isElement(y)))||o?y:y.contextElement||await(null==i.getDocumentElement?void 0:i.getDocumentElement(s.floating)),boundary:l,rootBoundary:f,strategy:c})),b="floating"===u?{...a.floating,x:r,y:n}:a.reference,m=await(null==i.getOffsetParent?void 0:i.getOffsetParent(s.floating)),v=await(null==i.isElement?void 0:i.isElement(m))&&await(null==i.getScale?void 0:i.getScale(m))||{x:1,y:1},O=Jr(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({rect:b,offsetParent:m,strategy:c}):b);return{top:(g.top-O.top+d.top)/v.y,bottom:(O.bottom-g.bottom+d.bottom)/v.y,left:(g.left-O.left+d.left)/v.x,right:(O.right-g.right+d.right)/v.x}}function tn(t,e,o){return(t?[...o.filter((e=>Hr(e)===t)),...o.filter((e=>Hr(e)!==t))]:o.filter((t=>_r(t)===t))).filter((o=>!t||(Hr(o)===t||!!e&&function(t){return t.replace(/start|end/g,(t=>Dr[t]))}(o)!==o)))}const en=function(t){return void 0===t&&(t={}),{name:"autoPlacement",options:t,async fn(e){var o,r,n;const{rects:i,middlewareData:a,placement:s,platform:c,elements:l}=e,{crossAxis:f=!1,alignment:u,allowedPlacements:h=$r,autoAlignment:p=!0,...d}=zr(t,e),y=void 0!==u||h===$r?tn(u||null,p,h):h,g=await Qr(e,d),b=(null==(o=a.autoPlacement)?void 0:o.index)||0,m=y[b];if(null==m)return{};const v=function(t,e,o){void 0===o&&(o=!1);const r=Hr(t),n=qr(t),i=Gr(n);let a="x"===n?r===(o?"end":"start")?"right":"left":"start"===r?"bottom":"top";return e.reference[i]>e.floating[i]&&(a=Yr(a)),[a,Yr(a)]}(m,i,await(null==c.isRTL?void 0:c.isRTL(l.floating)));if(s!==m)return{reset:{placement:y[0]}};const O=[g[_r(m)],g[v[0]],g[v[1]]],S=[...(null==(r=a.autoPlacement)?void 0:r.overflows)||[],{placement:m,overflows:O}],w=y[b+1];if(w)return{data:{index:b+1,overflows:S},reset:{placement:w}};const N=S.map((t=>{const e=Hr(t.placement);return[t.placement,e&&f?t.overflows.slice(0,2).reduce(((t,e)=>t+e),0):t.overflows[0],t.overflows]})).sort(((t,e)=>t[1]-e[1])),x=N.filter((t=>t[2].slice(0,Hr(t[0])?2:3).every((t=>t<=0)))),C=(null==(n=x[0])?void 0:n[0])||N[0][0];return C!==s?{data:{index:b+1,overflows:S},reset:{placement:C}}:{}}}};function on(t){return an(t)?(t.nodeName||"").toLowerCase():"#document"}function rn(t){var e;return(null==t||null==(e=t.ownerDocument)?void 0:e.defaultView)||window}function nn(t){var e;return null==(e=(an(t)?t.ownerDocument:t.document)||window.document)?void 0:e.documentElement}function an(t){return t instanceof Node||t instanceof rn(t).Node}function sn(t){return t instanceof Element||t instanceof rn(t).Element}function cn(t){return t instanceof HTMLElement||t instanceof rn(t).HTMLElement}function ln(t){return"undefined"!=typeof ShadowRoot&&(t instanceof ShadowRoot||t instanceof rn(t).ShadowRoot)}function fn(t){const{overflow:e,overflowX:o,overflowY:r,display:n}=yn(t);return/auto|scroll|overlay|hidden|clip/.test(e+r+o)&&!["inline","contents"].includes(n)}function un(t){return["table","td","th"].includes(on(t))}function hn(t){const e=pn(),o=yn(t);return"none"!==o.transform||"none"!==o.perspective||!!o.containerType&&"normal"!==o.containerType||!e&&!!o.backdropFilter&&"none"!==o.backdropFilter||!e&&!!o.filter&&"none"!==o.filter||["transform","perspective","filter"].some((t=>(o.willChange||"").includes(t)))||["paint","layout","strict","content"].some((t=>(o.contain||"").includes(t)))}function pn(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function dn(t){return["html","body","#document"].includes(on(t))}function yn(t){return rn(t).getComputedStyle(t)}function gn(t){return sn(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function bn(t){if("html"===on(t))return t;const e=t.assignedSlot||t.parentNode||ln(t)&&t.host||nn(t);return ln(e)?e.host:e}function mn(t){const e=bn(t);return dn(e)?t.ownerDocument?t.ownerDocument.body:t.body:cn(e)&&fn(e)?e:mn(e)}function vn(t,e,o){var r;void 0===e&&(e=[]),void 0===o&&(o=!0);const n=mn(t),i=n===(null==(r=t.ownerDocument)?void 0:r.body),a=rn(n);return i?e.concat(a,a.visualViewport||[],fn(n)?n:[],a.frameElement&&o?vn(a.frameElement):[]):e.concat(n,vn(n,[],o))}function On(t){const e=yn(t);let o=parseFloat(e.width)||0,r=parseFloat(e.height)||0;const n=cn(t),i=n?t.offsetWidth:o,a=n?t.offsetHeight:r,s=Br(o)!==i||Br(r)!==a;return s&&(o=i,r=a),{width:o,height:r,$:s}}function Sn(t){return sn(t)?t:t.contextElement}function wn(t){const e=Sn(t);if(!cn(e))return jr(1);const o=e.getBoundingClientRect(),{width:r,height:n,$:i}=On(e);let a=(i?Br(o.width):o.width)/r,s=(i?Br(o.height):o.height)/n;return a&&Number.isFinite(a)||(a=1),s&&Number.isFinite(s)||(s=1),{x:a,y:s}}const Nn=jr(0);function xn(t){const e=rn(t);return pn()&&e.visualViewport?{x:e.visualViewport.offsetLeft,y:e.visualViewport.offsetTop}:Nn}function Cn(t,e,o,r){void 0===e&&(e=!1),void 0===o&&(o=!1);const n=t.getBoundingClientRect(),i=Sn(t);let a=jr(1);e&&(r?sn(r)&&(a=wn(r)):a=wn(t));const s=function(t,e,o){return void 0===e&&(e=!1),!(!o||e&&o!==rn(t))&&e}(i,o,r)?xn(i):jr(0);let c=(n.left+s.x)/a.x,l=(n.top+s.y)/a.y,f=n.width/a.x,u=n.height/a.y;if(i){const t=rn(i),e=r&&sn(r)?rn(r):r;let o=t.frameElement;for(;o&&r&&e!==t;){const t=wn(o),e=o.getBoundingClientRect(),r=yn(o),n=e.left+(o.clientLeft+parseFloat(r.paddingLeft))*t.x,i=e.top+(o.clientTop+parseFloat(r.paddingTop))*t.y;c*=t.x,l*=t.y,f*=t.x,u*=t.y,c+=n,l+=i,o=rn(o).frameElement}}return Jr({width:f,height:u,x:c,y:l})}function En(t){return Cn(nn(t)).left+gn(t).scrollLeft}function Rn(t,e,o){let r;if("viewport"===e)r=function(t,e){const o=rn(t),r=nn(t),n=o.visualViewport;let i=r.clientWidth,a=r.clientHeight,s=0,c=0;if(n){i=n.width,a=n.height;const t=pn();(!t||t&&"fixed"===e)&&(s=n.offsetLeft,c=n.offsetTop)}return{width:i,height:a,x:s,y:c}}(t,o);else if("document"===e)r=function(t){const e=nn(t),o=gn(t),r=t.ownerDocument.body,n=Pr(e.scrollWidth,e.clientWidth,r.scrollWidth,r.clientWidth),i=Pr(e.scrollHeight,e.clientHeight,r.scrollHeight,r.clientHeight);let a=-o.scrollLeft+En(t);const s=-o.scrollTop;return"rtl"===yn(r).direction&&(a+=Pr(e.clientWidth,r.clientWidth)-n),{width:n,height:i,x:a,y:s}}(nn(t));else if(sn(e))r=function(t,e){const o=Cn(t,!0,"fixed"===e),r=o.top+t.clientTop,n=o.left+t.clientLeft,i=cn(t)?wn(t):jr(1);return{width:t.clientWidth*i.x,height:t.clientHeight*i.y,x:n*i.x,y:r*i.y}}(e,o);else{const o=xn(t);r={...e,x:e.x-o.x,y:e.y-o.y}}return Jr(r)}function Ln(t,e){const o=bn(t);return!(o===e||!sn(o)||dn(o))&&("fixed"===yn(o).position||Ln(o,e))}function In(t,e,o){const r=cn(e),n=nn(e),i="fixed"===o,a=Cn(t,!0,i,e);let s={scrollLeft:0,scrollTop:0};const c=jr(0);if(r||!r&&!i)if(("body"!==on(e)||fn(n))&&(s=gn(e)),r){const t=Cn(e,!0,i,e);c.x=t.x+e.clientLeft,c.y=t.y+e.clientTop}else n&&(c.x=En(n));return{x:a.left+s.scrollLeft-c.x,y:a.top+s.scrollTop-c.y,width:a.width,height:a.height}}function Un(t,e){return cn(t)&&"fixed"!==yn(t).position?e?e(t):t.offsetParent:null}function Wn(t,e){const o=rn(t);if(!cn(t))return o;let r=Un(t,e);for(;r&&un(r)&&"static"===yn(r).position;)r=Un(r,e);return r&&("html"===on(r)||"body"===on(r)&&"static"===yn(r).position&&!hn(r))?o:r||function(t){let e=bn(t);for(;cn(e)&&!dn(e);){if(hn(e))return e;e=bn(e)}return null}(t)||o}const kn={convertOffsetParentRelativeRectToViewportRelativeRect:function(t){let{rect:e,offsetParent:o,strategy:r}=t;const n=cn(o),i=nn(o);if(o===i)return e;let a={scrollLeft:0,scrollTop:0},s=jr(1);const c=jr(0);if((n||!n&&"fixed"!==r)&&(("body"!==on(o)||fn(i))&&(a=gn(o)),cn(o))){const t=Cn(o);s=wn(o),c.x=t.x+o.clientLeft,c.y=t.y+o.clientTop}return{width:e.width*s.x,height:e.height*s.y,x:e.x*s.x-a.scrollLeft*s.x+c.x,y:e.y*s.y-a.scrollTop*s.y+c.y}},getDocumentElement:nn,getClippingRect:function(t){let{element:e,boundary:o,rootBoundary:r,strategy:n}=t;const i=[..."clippingAncestors"===o?function(t,e){const o=e.get(t);if(o)return o;let r=vn(t,[],!1).filter((t=>sn(t)&&"body"!==on(t))),n=null;const i="fixed"===yn(t).position;let a=i?bn(t):t;for(;sn(a)&&!dn(a);){const e=yn(a),o=hn(a);o||"fixed"!==e.position||(n=null),(i?!o&&!n:!o&&"static"===e.position&&n&&["absolute","fixed"].includes(n.position)||fn(a)&&!o&&Ln(t,a))?r=r.filter((t=>t!==a)):n=e,a=bn(a)}return e.set(t,r),r}(e,this._c):[].concat(o),r],a=i[0],s=i.reduce(((t,o)=>{const r=Rn(e,o,n);return t.top=Pr(r.top,t.top),t.right=Kr(r.right,t.right),t.bottom=Kr(r.bottom,t.bottom),t.left=Pr(r.left,t.left),t}),Rn(e,a,n));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}},getOffsetParent:Wn,getElementRects:async function(t){let{reference:e,floating:o,strategy:r}=t;const n=this.getOffsetParent||Wn,i=this.getDimensions;return{reference:In(e,await n(o),r),floating:{x:0,y:0,...await i(o)}}},getClientRects:function(t){return Array.from(t.getClientRects())},getDimensions:function(t){return On(t)},getScale:wn,isElement:sn,isRTL:function(t){return"rtl"===yn(t).direction}},An=(t,e,o)=>{const r=new Map,n={platform:kn,...o},i={...n.platform,_c:r};return(async(t,e,o)=>{const{placement:r="bottom",strategy:n="absolute",middleware:i=[],platform:a}=o,s=i.filter(Boolean),c=await(null==a.isRTL?void 0:a.isRTL(e));let l=await a.getElementRects({reference:t,floating:e,strategy:n}),{x:f,y:u}=Xr(l,r,c),h=r,p={},d=0;for(let o=0;o<s.length;o++){const{name:i,fn:y}=s[o],{x:g,y:b,data:m,reset:v}=await y({x:f,y:u,initialPlacement:r,placement:h,strategy:n,middlewareData:p,rects:l,platform:a,elements:{reference:t,floating:e}});f=null!=g?g:f,u=null!=b?b:u,p={...p,[i]:{...p[i],...m}},v&&d<=50&&(d++,"object"==typeof v&&(v.placement&&(h=v.placement),v.rects&&(l=!0===v.rects?await a.getElementRects({reference:t,floating:e,strategy:n}):v.rects),({x:f,y:u}=Xr(l,h,c))),o=-1)}return{x:f,y:u,placement:h,strategy:n,middlewareData:p}})(t,e,{...n,platform:i})};function Fn(t){return function(t){for(let e=t;e;e=$n(e))if(e instanceof Element&&"none"===getComputedStyle(e).display)return null;for(let e=$n(t);e;e=$n(e)){if(!(e instanceof Element))continue;const t=getComputedStyle(e);if("contents"!==t.display){if("static"!==t.position||"none"!==t.filter)return e;if("BODY"===e.tagName)return e}}return null}(t)}function $n(t){return t.assignedSlot?t.assignedSlot:t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}
149
- /**
150
- * @license
151
- * Copyright 2019 Google LLC
152
- * SPDX-License-Identifier: BSD-3-Clause
153
- */
154
- const Kn=window,Pn=Kn.ShadowRoot&&(void 0===Kn.ShadyCSS||Kn.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype;class Bn extends ge{createRenderRoot(){const t=this.constructor;t.elementDefinitions&&!t.registry&&(t.registry=new CustomElementRegistry,Object.entries(t.elementDefinitions).forEach((([e,o])=>t.registry.define(e,o))));const e={...t.shadowRootOptions,customElements:t.registry},o=this.renderOptions.creationScope=this.attachShadow(e);return((t,e)=>{Pn?t.adoptedStyleSheets=e.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):e.forEach((e=>{const o=document.createElement("style"),r=Kn.litNonce;void 0!==r&&o.setAttribute("nonce",r),o.textContent=e.cssText,t.appendChild(o)}))})(o,t.elementStyles),o}}var jn,Mn=function(t,e,o,r){for(var n,i=arguments.length,a=i<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,o):r,s=t.length-1;s>=0;s--)(n=t[s])&&(a=(i<3?n(a):i>3?n(e,o,a):n(e,o))||a);return i>3&&a&&Object.defineProperty(e,o,a),a};const Dn=Symbol("constructorPrototype"),Zn=Symbol("constructorName"),zn=Symbol("exportpartsDebouncer");class _n extends Bn{constructor(){super(),this[jn]=new Fo(5),this[Zn]=this.constructor.name,this[Dn]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Zn]&&Object.setPrototypeOf(this,this[Dn])}updated(t){super.updated(t),this.updateComplete.then((()=>{this.contentAvailableCallback(t),this.insertCustomStylesheet(),this.scheduleExportpartsUpdate()}))}contentAvailableCallback(t){}insertCustomStylesheet(){var t,e;if((null!==(e=null===(t=this.shadowRoot)||void 0===t?void 0:t.querySelectorAll(".ft-lit-element--custom-stylesheet"))&&void 0!==e?e:[]).forEach((t=>t.remove())),this.customStylesheet){const t=document.createElement("style");t.classList.add("ft-lit-element--custom-stylesheet"),t.innerHTML=this.customStylesheet,this.shadowRoot.append(t)}}scheduleExportpartsUpdate(){var t,e,o;((null===(t=this.exportpartsPrefix)||void 0===t?void 0:t.trim())||null!==(o=null===(e=this.exportpartsPrefixes)||void 0===e?void 0:e.length)&&void 0!==o&&o)&&this[zn].run((()=>{var t,e;(null===(t=this.exportpartsPrefix)||void 0===t?void 0:t.trim())?this.setExportpartsAttribute([this.exportpartsPrefix]):null!=this.exportpartsPrefixes&&(null===(e=this.exportpartsPrefixes)||void 0===e?void 0:e.length)>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)}))}setExportpartsAttribute(t){var e,o,r,n,i,a;const s=t=>null!=t&&t.trim().length>0,c=t.filter(s).map((t=>t.trim()));if(0===c.length)return void this.removeAttribute("exportparts");const l=new Set;for(let t of null!==(o=null===(e=this.shadowRoot)||void 0===e?void 0:e.querySelectorAll("[part],[exportparts]"))&&void 0!==o?o:[]){const e=null!==(n=null===(r=t.getAttribute("part"))||void 0===r?void 0:r.split(" "))&&void 0!==n?n:[],o=null!==(a=null===(i=t.getAttribute("exportparts"))||void 0===i?void 0:i.split(",").map((t=>t.split(":")[1])))&&void 0!==a?a:[];new Array(...e,...o).filter(s).map((t=>t.trim())).forEach((t=>l.add(t)))}if(0===l.size)return void this.removeAttribute("exportparts");const f=[...l.values()].flatMap((t=>c.map((e=>`${t}:${e}--${t}`))));this.setAttribute("exportparts",[...this.part,...f].join(", "))}}jn=zn,Mn([Se()],_n.prototype,"exportpartsPrefix",void 0),Mn([jo([])],_n.prototype,"exportpartsPrefixes",void 0),Mn([Se()],_n.prototype,"customStylesheet",void 0);class Hn{constructor(t,e=!0,o=[],r=5e3){this.ctx=t,this.iframes=e,this.exclude=o,this.iframesTimeout=r}static matches(t,e){const o="string"==typeof e?[e]:e,r=t.matches||t.matchesSelector||t.msMatchesSelector||t.mozMatchesSelector||t.oMatchesSelector||t.webkitMatchesSelector;if(r){let e=!1;return o.every((o=>!r.call(t,o)||(e=!0,!1))),e}return!1}getContexts(){let t,e=[];return t=void 0!==this.ctx&&this.ctx?NodeList.prototype.isPrototypeOf(this.ctx)?Array.prototype.slice.call(this.ctx):Array.isArray(this.ctx)?this.ctx:"string"==typeof this.ctx?Array.prototype.slice.call(document.querySelectorAll(this.ctx)):[this.ctx]:[],t.forEach((t=>{const o=e.filter((e=>e.contains(t))).length>0;-1!==e.indexOf(t)||o||e.push(t)})),e}getIframeContents(t,e,o=(()=>{})){let r;try{const e=t.contentWindow;if(r=e.document,!e||!r)throw new Error("iframe inaccessible")}catch(t){o()}r&&e(r)}isIframeBlank(t){const e="about:blank",o=t.getAttribute("src").trim();return t.contentWindow.location.href===e&&o!==e&&o}observeIframeLoad(t,e,o){let r=!1,n=null;const i=()=>{if(!r){r=!0,clearTimeout(n);try{this.isIframeBlank(t)||(t.removeEventListener("load",i),this.getIframeContents(t,e,o))}catch(t){o()}}};t.addEventListener("load",i),n=setTimeout(i,this.iframesTimeout)}onIframeReady(t,e,o){try{"complete"===t.contentWindow.document.readyState?this.isIframeBlank(t)?this.observeIframeLoad(t,e,o):this.getIframeContents(t,e,o):this.observeIframeLoad(t,e,o)}catch(t){o()}}waitForIframes(t,e){let o=0;this.forEachIframe(t,(()=>!0),(t=>{o++,this.waitForIframes(t.querySelector("html"),(()=>{--o||e()}))}),(t=>{t||e()}))}forEachIframe(t,e,o,r=(()=>{})){let n=t.querySelectorAll("iframe"),i=n.length,a=0;n=Array.prototype.slice.call(n);const s=()=>{--i<=0&&r(a)};i||s(),n.forEach((t=>{Hn.matches(t,this.exclude)?s():this.onIframeReady(t,(r=>{e(t)&&(a++,o(r)),s()}),s)}))}createIterator(t,e,o){return document.createNodeIterator(t,e,o,!1)}createInstanceOnIframe(t){return new Hn(t.querySelector("html"),this.iframes)}compareNodeIframe(t,e,o){if(t.compareDocumentPosition(o)&Node.DOCUMENT_POSITION_PRECEDING){if(null===e)return!0;if(e.compareDocumentPosition(o)&Node.DOCUMENT_POSITION_FOLLOWING)return!0}return!1}getIteratorNode(t){const e=t.previousNode();let o;return o=(null===e||t.nextNode())&&t.nextNode(),{prevNode:e,node:o}}checkIframeFilter(t,e,o,r){let n=!1,i=!1;return r.forEach(((t,e)=>{t.val===o&&(n=e,i=t.handled)})),this.compareNodeIframe(t,e,o)?(!1!==n||i?!1===n||i||(r[n].handled=!0):r.push({val:o,handled:!0}),!0):(!1===n&&r.push({val:o,handled:!1}),!1)}handleOpenIframes(t,e,o,r){t.forEach((t=>{t.handled||this.getIframeContents(t.val,(t=>{this.createInstanceOnIframe(t).forEachNode(e,o,r)}))}))}iterateThroughNodes(t,e,o,r,n){const i=this.createIterator(e,t,r);let a,s,c=[],l=[],f=()=>(({prevNode:s,node:a}=this.getIteratorNode(i)),a);for(;f();)this.iframes&&this.forEachIframe(e,(t=>this.checkIframeFilter(a,s,t,c)),(e=>{this.createInstanceOnIframe(e).forEachNode(t,(t=>l.push(t)),r)})),l.push(a);l.forEach((t=>{o(t)})),this.iframes&&this.handleOpenIframes(c,t,o,r),n()}forEachNode(t,e,o,r=(()=>{})){const n=this.getContexts();let i=n.length;i||r(),n.forEach((n=>{const a=()=>{this.iterateThroughNodes(t,n,e,o,(()=>{--i<=0&&r()}))};this.iframes?this.waitForIframes(n,a):a()}))}}const Tn=function(t){const e=new class{constructor(t){this.ctx=t,this.ie=!1;const e=window.navigator.userAgent;(e.indexOf("MSIE")>-1||e.indexOf("Trident")>-1)&&(this.ie=!0)}set opt(t){this._opt=Object.assign({},{element:"",className:"",exclude:[],iframes:!1,iframesTimeout:5e3,separateWordSearch:!0,diacritics:!0,synonyms:{},accuracy:"partially",acrossElements:!1,caseSensitive:!1,ignoreJoiners:!1,ignoreGroups:0,ignorePunctuation:[],wildcards:"disabled",each:()=>{},noMatch:()=>{},filter:()=>!0,done:()=>{},debug:!1,log:window.console},t)}get opt(){return this._opt}get iterator(){return new Hn(this.ctx,this.opt.iframes,this.opt.exclude,this.opt.iframesTimeout)}log(t,e="debug"){const o=this.opt.log;this.opt.debug&&"object"==typeof o&&"function"==typeof o[e]&&o[e](`mark.js: ${t}`)}escapeStr(t){return t.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}createRegExp(t){return"disabled"!==this.opt.wildcards&&(t=this.setupWildcardsRegExp(t)),t=this.escapeStr(t),Object.keys(this.opt.synonyms).length&&(t=this.createSynonymsRegExp(t)),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(t=this.setupIgnoreJoinersRegExp(t)),this.opt.diacritics&&(t=this.createDiacriticsRegExp(t)),t=this.createMergedBlanksRegExp(t),(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(t=this.createJoinersRegExp(t)),"disabled"!==this.opt.wildcards&&(t=this.createWildcardsRegExp(t)),this.createAccuracyRegExp(t)}createSynonymsRegExp(t){const e=this.opt.synonyms,o=this.opt.caseSensitive?"":"i",r=this.opt.ignoreJoiners||this.opt.ignorePunctuation.length?"\0":"";for(let n in e)if(e.hasOwnProperty(n)){const i=e[n],a="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(n):this.escapeStr(n),s="disabled"!==this.opt.wildcards?this.setupWildcardsRegExp(i):this.escapeStr(i);""!==a&&""!==s&&(t=t.replace(new RegExp(`(${this.escapeStr(a)}|${this.escapeStr(s)})`,`gm${o}`),r+`(${this.processSynomyms(a)}|`+`${this.processSynomyms(s)})`+r))}return t}processSynomyms(t){return(this.opt.ignoreJoiners||this.opt.ignorePunctuation.length)&&(t=this.setupIgnoreJoinersRegExp(t)),t}setupWildcardsRegExp(t){return(t=t.replace(/(?:\\)*\?/g,(t=>"\\"===t.charAt(0)?"?":""))).replace(/(?:\\)*\*/g,(t=>"\\"===t.charAt(0)?"*":""))}createWildcardsRegExp(t){let e="withSpaces"===this.opt.wildcards;return t.replace(/\u0001/g,e?"[\\S\\s]?":"\\S?").replace(/\u0002/g,e?"[\\S\\s]*?":"\\S*")}setupIgnoreJoinersRegExp(t){return t.replace(/[^(|)\\]/g,((t,e,o)=>{let r=o.charAt(e+1);return/[(|)\\]/.test(r)||""===r?t:t+"\0"}))}createJoinersRegExp(t){let e=[];const o=this.opt.ignorePunctuation;return Array.isArray(o)&&o.length&&e.push(this.escapeStr(o.join(""))),this.opt.ignoreJoiners&&e.push("\\u00ad\\u200b\\u200c\\u200d"),e.length?t.split(/\u0000+/).join(`[${e.join("")}]*`):t}createDiacriticsRegExp(t){const e=this.opt.caseSensitive?"":"i",o=this.opt.caseSensitive?["aàáảãạăằắẳẵặâầấẩẫậäåāą","AÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćč","CÇĆČ","dđď","DĐĎ","eèéẻẽẹêềếểễệëěēę","EÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïī","IÌÍỈĨỊÎÏĪ","lł","LŁ","nñňń","NÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøō","OÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rř","RŘ","sšśșş","SŠŚȘŞ","tťțţ","TŤȚŢ","uùúủũụưừứửữựûüůū","UÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿ","YÝỲỶỸỴŸ","zžżź","ZŽŻŹ"]:["aàáảãạăằắẳẵặâầấẩẫậäåāąAÀÁẢÃẠĂẰẮẲẴẶÂẦẤẨẪẬÄÅĀĄ","cçćčCÇĆČ","dđďDĐĎ","eèéẻẽẹêềếểễệëěēęEÈÉẺẼẸÊỀẾỂỄỆËĚĒĘ","iìíỉĩịîïīIÌÍỈĨỊÎÏĪ","lłLŁ","nñňńNÑŇŃ","oòóỏõọôồốổỗộơởỡớờợöøōOÒÓỎÕỌÔỒỐỔỖỘƠỞỠỚỜỢÖØŌ","rřRŘ","sšśșşSŠŚȘŞ","tťțţTŤȚŢ","uùúủũụưừứửữựûüůūUÙÚỦŨỤƯỪỨỬỮỰÛÜŮŪ","yýỳỷỹỵÿYÝỲỶỸỴŸ","zžżźZŽŻŹ"];let r=[];return t.split("").forEach((n=>{o.every((o=>{if(-1!==o.indexOf(n)){if(r.indexOf(o)>-1)return!1;t=t.replace(new RegExp(`[${o}]`,`gm${e}`),`[${o}]`),r.push(o)}return!0}))})),t}createMergedBlanksRegExp(t){return t.replace(/[\s]+/gim,"[\\s]+")}createAccuracyRegExp(t){let e=this.opt.accuracy,o="string"==typeof e?e:e.value,r="string"==typeof e?[]:e.limiters,n="";switch(r.forEach((t=>{n+=`|${this.escapeStr(t)}`})),o){case"partially":default:return`()(${t})`;case"complementary":return n="\\s"+(n||this.escapeStr("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~¡¿")),`()([^${n}]*${t}[^${n}]*)`;case"exactly":return`(^|\\s${n})(${t})(?=$|\\s${n})`}}getSeparatedKeywords(t){let e=[];return t.forEach((t=>{this.opt.separateWordSearch?t.split(" ").forEach((t=>{t.trim()&&-1===e.indexOf(t)&&e.push(t)})):t.trim()&&-1===e.indexOf(t)&&e.push(t)})),{keywords:e.sort(((t,e)=>e.length-t.length)),length:e.length}}isNumeric(t){return Number(parseFloat(t))==t}checkRanges(t){if(!Array.isArray(t)||"[object Object]"!==Object.prototype.toString.call(t[0]))return this.log("markRanges() will only accept an array of objects"),this.opt.noMatch(t),[];const e=[];let o=0;return t.sort(((t,e)=>t.start-e.start)).forEach((t=>{let{start:r,end:n,valid:i}=this.callNoMatchOnInvalidRanges(t,o);i&&(t.start=r,t.length=n-r,e.push(t),o=n)})),e}callNoMatchOnInvalidRanges(t,e){let o,r,n=!1;return t&&void 0!==t.start?(o=parseInt(t.start,10),r=o+parseInt(t.length,10),this.isNumeric(t.start)&&this.isNumeric(t.length)&&r-e>0&&r-o>0?n=!0:(this.log(`Ignoring invalid or overlapping range: ${JSON.stringify(t)}`),this.opt.noMatch(t))):(this.log(`Ignoring invalid range: ${JSON.stringify(t)}`),this.opt.noMatch(t)),{start:o,end:r,valid:n}}checkWhitespaceRanges(t,e,o){let r,n=!0,i=o.length,a=e-i,s=parseInt(t.start,10)-a;return s=s>i?i:s,r=s+parseInt(t.length,10),r>i&&(r=i,this.log(`End range automatically set to the max value of ${i}`)),s<0||r-s<0||s>i||r>i?(n=!1,this.log(`Invalid range: ${JSON.stringify(t)}`),this.opt.noMatch(t)):""===o.substring(s,r).replace(/\s+/g,"")&&(n=!1,this.log("Skipping whitespace only range: "+JSON.stringify(t)),this.opt.noMatch(t)),{start:s,end:r,valid:n}}getTextNodes(t){let e="",o=[];this.iterator.forEachNode(NodeFilter.SHOW_TEXT,(t=>{o.push({start:e.length,end:(e+=t.textContent).length,node:t})}),(t=>this.matchesExclude(t.parentNode)?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT),(()=>{t({value:e,nodes:o})}))}matchesExclude(t){return Hn.matches(t,this.opt.exclude.concat(["script","style","title","head","html"]))}wrapRangeInTextNode(t,e,o){const r=this.opt.element?this.opt.element:"mark",n=t.splitText(e),i=n.splitText(o-e);let a=document.createElement(r);return a.setAttribute("data-markjs","true"),this.opt.className&&a.setAttribute("class",this.opt.className),a.textContent=n.textContent,n.parentNode.replaceChild(a,n),i}wrapRangeInMappedTextNode(t,e,o,r,n){t.nodes.every(((i,a)=>{const s=t.nodes[a+1];if(void 0===s||s.start>e){if(!r(i.node))return!1;const s=e-i.start,c=(o>i.end?i.end:o)-i.start,l=t.value.substr(0,i.start),f=t.value.substr(c+i.start);if(i.node=this.wrapRangeInTextNode(i.node,s,c),t.value=l+f,t.nodes.forEach(((e,o)=>{o>=a&&(t.nodes[o].start>0&&o!==a&&(t.nodes[o].start-=c),t.nodes[o].end-=c)})),o-=c,n(i.node.previousSibling,i.start),!(o>i.end))return!1;e=i.end}return!0}))}wrapMatches(t,e,o,r,n){const i=0===e?0:e+1;this.getTextNodes((e=>{e.nodes.forEach((e=>{let n;for(e=e.node;null!==(n=t.exec(e.textContent))&&""!==n[i];){if(!o(n[i],e))continue;let a=n.index;if(0!==i)for(let t=1;t<i;t++)a+=n[t].length;e=this.wrapRangeInTextNode(e,a,a+n[i].length),r(e.previousSibling),t.lastIndex=0}})),n()}))}wrapMatchesAcrossElements(t,e,o,r,n){const i=0===e?0:e+1;this.getTextNodes((e=>{let a;for(;null!==(a=t.exec(e.value))&&""!==a[i];){let n=a.index;if(0!==i)for(let t=1;t<i;t++)n+=a[t].length;const s=n+a[i].length;this.wrapRangeInMappedTextNode(e,n,s,(t=>o(a[i],t)),((e,o)=>{t.lastIndex=o,r(e)}))}n()}))}wrapRangeFromIndex(t,e,o,r){this.getTextNodes((n=>{const i=n.value.length;t.forEach(((t,r)=>{let{start:a,end:s,valid:c}=this.checkWhitespaceRanges(t,i,n.value);c&&this.wrapRangeInMappedTextNode(n,a,s,(o=>e(o,t,n.value.substring(a,s),r)),(e=>{o(e,t)}))})),r()}))}unwrapMatches(t){const e=t.parentNode;let o=document.createDocumentFragment();for(;t.firstChild;)o.appendChild(t.removeChild(t.firstChild));e.replaceChild(o,t),this.ie?this.normalizeTextNode(e):e.normalize()}normalizeTextNode(t){if(t){if(3===t.nodeType)for(;t.nextSibling&&3===t.nextSibling.nodeType;)t.nodeValue+=t.nextSibling.nodeValue,t.parentNode.removeChild(t.nextSibling);else this.normalizeTextNode(t.firstChild);this.normalizeTextNode(t.nextSibling)}}markRegExp(t,e){this.opt=e,this.log(`Searching with expression "${t}"`);let o=0,r="wrapMatches";this.opt.acrossElements&&(r="wrapMatchesAcrossElements"),this[r](t,this.opt.ignoreGroups,((t,e)=>this.opt.filter(e,t,o)),(t=>{o++,this.opt.each(t)}),(()=>{0===o&&this.opt.noMatch(t),this.opt.done(o)}))}mark(t,e){this.opt=e;let o=0,r="wrapMatches";const{keywords:n,length:i}=this.getSeparatedKeywords("string"==typeof t?[t]:t),a=this.opt.caseSensitive?"":"i",s=t=>{let e=new RegExp(this.createRegExp(t),`gm${a}`),c=0;this.log(`Searching with expression "${e}"`),this[r](e,1,((e,r)=>this.opt.filter(r,t,o,c)),(t=>{c++,o++,this.opt.each(t)}),(()=>{0===c&&this.opt.noMatch(t),n[i-1]===t?this.opt.done(o):s(n[n.indexOf(t)+1])}))};this.opt.acrossElements&&(r="wrapMatchesAcrossElements"),0===i?this.opt.done(o):s(n[0])}markRanges(t,e){this.opt=e;let o=0,r=this.checkRanges(t);r&&r.length?(this.log("Starting to mark with the following ranges: "+JSON.stringify(r)),this.wrapRangeFromIndex(r,((t,e,o,r)=>this.opt.filter(t,e,o,r)),((t,e)=>{o++,this.opt.each(t,e)}),(()=>{this.opt.done(o)}))):this.opt.done(o)}unmark(t){this.opt=t;let e=this.opt.element?this.opt.element:"*";e+="[data-markjs]",this.opt.className&&(e+=`.${this.opt.className}`),this.log(`Removal selector "${e}"`),this.iterator.forEachNode(NodeFilter.SHOW_ELEMENT,(t=>{this.unwrapMatches(t)}),(t=>{const o=Hn.matches(t,e),r=this.matchesExclude(t);return!o||r?NodeFilter.FILTER_REJECT:NodeFilter.FILTER_ACCEPT}),this.opt.done)}}(t);return this.mark=(t,o)=>(e.mark(t,o),this),this.markRegExp=(t,o)=>(e.markRegExp(t,o),this),this.markRanges=(t,o)=>(e.markRanges(t,o),this),this.unmark=t=>(e.unmark(t),this),this},Gn=Zo.create("--ft-utils-highlight-html-background-color","","COLOR","#FFF26E"),Vn=ut`
155
- .highlight-html-match {
156
- background: ${Gn};
157
- }
158
- `,qn={className:"highlight-html-match"};const Yn=ut`
159
- .ft-no-text-select {
160
- -webkit-touch-callout: none;
161
- -webkit-user-select: none;
162
- -khtml-user-select: none;
163
- -moz-user-select: none;
164
- -ms-user-select: none;
165
- user-select: none;
166
- }
167
- `,Jn=ut`
168
- .ft-word-wrap {
169
- white-space: normal;
170
- word-wrap: break-word;
171
- -ms-word-break: break-all;
172
- word-break: break-all;
173
- word-break: break-word;
174
- -ms-hyphens: auto;
175
- -moz-hyphens: auto;
176
- -webkit-hyphens: auto;
177
- hyphens: auto
178
- }
179
- `,Xn=ut`
180
- .ft-safari-ellipsis-fix {
181
- margin-right: 0;
182
-
183
- }
184
-
185
- .ft-safari-ellipsis-fix:after {
186
- content: "\\0000a0";
187
- display: inline-block;
188
- width: 0;
189
- }
190
- `;class Qn{constructor(){this.queue=[]}add(t,e=!1){e&&(this.queue=this.queue.filter((e=>e.type!==t.type))),this.queue.push(t)}consume(t){const e=this.queue.find((e=>e.type===t));return e&&(this.queue=this.queue.filter((t=>t!==e))),e}}function ti(t){var e;return null!==(e=null==t?void 0:t.isFtReduxStore)&&void 0!==e&&e}var ei,oi,ri;const ni=Symbol("internalReduxEventsUnsubscribers"),ii=Symbol("internalStoresUnsubscribers"),ai=Symbol("internalStores");class si extends _n{constructor(){super(...arguments),this[ei]=new Map,this[oi]=new Map,this[ri]=[]}get reduxConstructor(){return this.constructor}update(t){super.update(t),[...this.reduxConstructor.reduxReactiveProperties].some((e=>t.has(e)))&&this.updateFromStores()}getUnnamedStore(){if(this[ai].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[ai].values()][0]}getStore(t){return null==t?this.getUnnamedStore():this[ai].get(t)}addStore(t,e){var o;e=null!==(o=null!=e?e:ti(t)?t.name:void 0)&&void 0!==o?o:"default-store",this.unsubscribeFromStore(e),this.setupStore(e,t)}removeStore(t){const e="string"==typeof t?t:t.name;this.unsubscribeFromStore(e),this[ai].delete(e)}setupStore(t,e){this[ai].set(t,e),this.subscribeToStore(t,e),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[ai].forEach(((t,e)=>this.subscribeToStore(e,t))),this.updateFromStores()}updateFromStores(){this.reduxConstructor.reduxProperties.forEach(((t,e)=>{const o=this.constructor.getPropertyOptions(e);if(!(null==o?void 0:o.attribute)||!this.hasAttribute("string"==typeof(null==o?void 0:o.attribute)?o.attribute:e)){const o=this.getStore(t.store);o&&(t.store?this[ii].has(t.store):this[ii].size>0)&&(this[e]=t.selector(o.getState(),this))}}))}subscribeToStore(t,e){var o;this[ii].set(t,e.subscribe((()=>this.updateFromStores()))),ti(e)&&e.eventBus&&(null===(o=this.reduxConstructor.reduxEventListeners)||void 0===o||o.forEach(((t,o)=>{if("function"==typeof this[o]&&(!t.store||e.name===t.store)){const r=t=>this[o](t);e.eventBus.addEventListener(t.eventName,r),this[ni].push((()=>e.eventBus.removeEventListener(t.eventName,r)))}}))),this.onStoreAvailable(t)}unsubscribeFromStores(){this[ii].forEach(((t,e)=>this.unsubscribeFromStore(e))),this[ni].forEach((t=>t())),this[ni]=[]}unsubscribeFromStore(t){this[ii].has(t)&&this[ii].get(t)(),this[ii].delete(t)}onStoreAvailable(t){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}}function ci(t){for(var e=arguments.length,o=Array(e>1?e-1:0),r=1;r<e;r++)o[r-1]=arguments[r];throw Error("[Immer] minified error nr: "+t+(o.length?" "+o.map((function(t){return"'"+t+"'"})).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function li(t){return!!t&&!!t[qi]}function fi(t){var e;return!!t&&(function(t){if(!t||"object"!=typeof t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;var o=Object.hasOwnProperty.call(e,"constructor")&&e.constructor;return o===Object||"function"==typeof o&&Function.toString.call(o)===Yi}(t)||Array.isArray(t)||!!t[Vi]||!!(null===(e=t.constructor)||void 0===e?void 0:e[Vi])||gi(t)||bi(t))}function ui(t,e,o){void 0===o&&(o=!1),0===hi(t)?(o?Object.keys:Ji)(t).forEach((function(r){o&&"symbol"==typeof r||e(r,t[r],t)})):t.forEach((function(o,r){return e(r,o,t)}))}function hi(t){var e=t[qi];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:gi(t)?2:bi(t)?3:0}function pi(t,e){return 2===hi(t)?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function di(t,e,o){var r=hi(t);2===r?t.set(e,o):3===r?t.add(o):t[e]=o}function yi(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}function gi(t){return _i&&t instanceof Map}function bi(t){return Hi&&t instanceof Set}function mi(t){return t.o||t.t}function vi(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=Xi(t);delete e[qi];for(var o=Ji(e),r=0;r<o.length;r++){var n=o[r],i=e[n];!1===i.writable&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(e[n]={configurable:!0,writable:!0,enumerable:i.enumerable,value:t[n]})}return Object.create(Object.getPrototypeOf(t),e)}function Oi(t,e){return void 0===e&&(e=!1),wi(t)||li(t)||!fi(t)||(hi(t)>1&&(t.set=t.add=t.clear=t.delete=Si),Object.freeze(t),e&&ui(t,(function(t,e){return Oi(e,!0)}),!0)),t}function Si(){ci(2)}function wi(t){return null==t||"object"!=typeof t||Object.isFrozen(t)}function Ni(t){var e=Qi[t];return e||ci(18,t),e}function xi(){return Zi}function Ci(t,e){e&&(Ni("Patches"),t.u=[],t.s=[],t.v=e)}function Ei(t){Ri(t),t.p.forEach(Ii),t.p=null}function Ri(t){t===Zi&&(Zi=t.l)}function Li(t){return Zi={p:[],l:Zi,h:t,m:!0,_:0}}function Ii(t){var e=t[qi];0===e.i||1===e.i?e.j():e.g=!0}function Ui(t,e){e._=e.p.length;var o=e.p[0],r=void 0!==t&&t!==o;return e.h.O||Ni("ES5").S(e,t,r),r?(o[qi].P&&(Ei(e),ci(4)),fi(t)&&(t=Wi(e,t),e.l||Ai(e,t)),e.u&&Ni("Patches").M(o[qi].t,t,e.u,e.s)):t=Wi(e,o,[]),Ei(e),e.u&&e.v(e.u,e.s),t!==Gi?t:void 0}function Wi(t,e,o){if(wi(e))return e;var r=e[qi];if(!r)return ui(e,(function(n,i){return ki(t,r,e,n,i,o)}),!0),e;if(r.A!==t)return e;if(!r.P)return Ai(t,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var n=4===r.i||5===r.i?r.o=vi(r.k):r.o,i=n,a=!1;3===r.i&&(i=new Set(n),n.clear(),a=!0),ui(i,(function(e,i){return ki(t,r,n,e,i,o,a)})),Ai(t,n,!1),o&&t.u&&Ni("Patches").N(r,o,t.u,t.s)}return r.o}function ki(t,e,o,r,n,i,a){if(li(n)){var s=Wi(t,n,i&&e&&3!==e.i&&!pi(e.R,r)?i.concat(r):void 0);if(di(o,r,s),!li(s))return;t.m=!1}else a&&o.add(n);if(fi(n)&&!wi(n)){if(!t.h.D&&t._<1)return;Wi(t,n),e&&e.A.l||Ai(t,n)}}function Ai(t,e,o){void 0===o&&(o=!1),!t.l&&t.h.D&&t.m&&Oi(e,o)}function Fi(t,e){var o=t[qi];return(o?mi(o):t)[e]}function $i(t,e){if(e in t)for(var o=Object.getPrototypeOf(t);o;){var r=Object.getOwnPropertyDescriptor(o,e);if(r)return r;o=Object.getPrototypeOf(o)}}function Ki(t){t.P||(t.P=!0,t.l&&Ki(t.l))}function Pi(t){t.o||(t.o=vi(t.t))}function Bi(t,e,o){var r=gi(e)?Ni("MapSet").F(e,o):bi(e)?Ni("MapSet").T(e,o):t.O?function(t,e){var o=Array.isArray(t),r={i:o?1:0,A:e?e.A:xi(),P:!1,I:!1,R:{},l:e,t,k:null,o:null,j:null,C:!1},n=r,i=ta;o&&(n=[r],i=ea);var a=Proxy.revocable(n,i),s=a.revoke,c=a.proxy;return r.k=c,r.j=s,c}(e,o):Ni("ES5").J(e,o);return(o?o.A:xi()).p.push(r),r}function ji(t){return li(t)||ci(22,t),function t(e){if(!fi(e))return e;var o,r=e[qi],n=hi(e);if(r){if(!r.P&&(r.i<4||!Ni("ES5").K(r)))return r.t;r.I=!0,o=Mi(e,n),r.I=!1}else o=Mi(e,n);return ui(o,(function(e,n){r&&function(t,e){return 2===hi(t)?t.get(e):t[e]}(r.t,e)===n||di(o,e,t(n))})),3===n?new Set(o):o}(t)}function Mi(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return vi(t)}ei=ii,oi=ai,ri=ni,si.reduxProperties=new Map,si.reduxReactiveProperties=new Set,si.reduxEventListeners=new Map;var Di,Zi,zi="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),_i="undefined"!=typeof Map,Hi="undefined"!=typeof Set,Ti="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,Gi=zi?Symbol.for("immer-nothing"):((Di={})["immer-nothing"]=!0,Di),Vi=zi?Symbol.for("immer-draftable"):"__$immer_draftable",qi=zi?Symbol.for("immer-state"):"__$immer_state",Yi=""+Object.prototype.constructor,Ji="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,Xi=Object.getOwnPropertyDescriptors||function(t){var e={};return Ji(t).forEach((function(o){e[o]=Object.getOwnPropertyDescriptor(t,o)})),e},Qi={},ta={get:function(t,e){if(e===qi)return t;var o=mi(t);if(!pi(o,e))return function(t,e,o){var r,n=$i(e,o);return n?"value"in n?n.value:null===(r=n.get)||void 0===r?void 0:r.call(t.k):void 0}(t,o,e);var r=o[e];return t.I||!fi(r)?r:r===Fi(t.t,e)?(Pi(t),t.o[e]=Bi(t.A.h,r,t)):r},has:function(t,e){return e in mi(t)},ownKeys:function(t){return Reflect.ownKeys(mi(t))},set:function(t,e,o){var r=$i(mi(t),e);if(null==r?void 0:r.set)return r.set.call(t.k,o),!0;if(!t.P){var n=Fi(mi(t),e),i=null==n?void 0:n[qi];if(i&&i.t===o)return t.o[e]=o,t.R[e]=!1,!0;if(yi(o,n)&&(void 0!==o||pi(t.t,e)))return!0;Pi(t),Ki(t)}return t.o[e]===o&&(void 0!==o||e in t.o)||Number.isNaN(o)&&Number.isNaN(t.o[e])||(t.o[e]=o,t.R[e]=!0),!0},deleteProperty:function(t,e){return void 0!==Fi(t.t,e)||e in t.t?(t.R[e]=!1,Pi(t),Ki(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var o=mi(t),r=Reflect.getOwnPropertyDescriptor(o,e);return r?{writable:!0,configurable:1!==t.i||"length"!==e,enumerable:r.enumerable,value:o[e]}:r},defineProperty:function(){ci(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){ci(12)}},ea={};ui(ta,(function(t,e){ea[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}})),ea.deleteProperty=function(t,e){return ea.set.call(this,t,e,void 0)},ea.set=function(t,e,o){return ta.set.call(this,t[0],e,o,t[0])};var oa=function(){function t(t){var e=this;this.O=Ti,this.D=!0,this.produce=function(t,o,r){if("function"==typeof t&&"function"!=typeof o){var n=o;o=t;var i=e;return function(t){var e=this;void 0===t&&(t=n);for(var r=arguments.length,a=Array(r>1?r-1:0),s=1;s<r;s++)a[s-1]=arguments[s];return i.produce(t,(function(t){var r;return(r=o).call.apply(r,[e,t].concat(a))}))}}var a;if("function"!=typeof o&&ci(6),void 0!==r&&"function"!=typeof r&&ci(7),fi(t)){var s=Li(e),c=Bi(e,t,void 0),l=!0;try{a=o(c),l=!1}finally{l?Ei(s):Ri(s)}return"undefined"!=typeof Promise&&a instanceof Promise?a.then((function(t){return Ci(s,r),Ui(t,s)}),(function(t){throw Ei(s),t})):(Ci(s,r),Ui(a,s))}if(!t||"object"!=typeof t){if(void 0===(a=o(t))&&(a=t),a===Gi&&(a=void 0),e.D&&Oi(a,!0),r){var f=[],u=[];Ni("Patches").M(t,a,f,u),r(f,u)}return a}ci(21,t)},this.produceWithPatches=function(t,o){if("function"==typeof t)return function(o){for(var r=arguments.length,n=Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];return e.produceWithPatches(o,(function(e){return t.apply(void 0,[e].concat(n))}))};var r,n,i=e.produce(t,o,(function(t,e){r=t,n=e}));return"undefined"!=typeof Promise&&i instanceof Promise?i.then((function(t){return[t,r,n]})):[i,r,n]},"boolean"==typeof(null==t?void 0:t.useProxies)&&this.setUseProxies(t.useProxies),"boolean"==typeof(null==t?void 0:t.autoFreeze)&&this.setAutoFreeze(t.autoFreeze)}var e=t.prototype;return e.createDraft=function(t){fi(t)||ci(8),li(t)&&(t=ji(t));var e=Li(this),o=Bi(this,t,void 0);return o[qi].C=!0,Ri(e),o},e.finishDraft=function(t,e){var o=(t&&t[qi]).A;return Ci(o,e),Ui(void 0,o)},e.setAutoFreeze=function(t){this.D=t},e.setUseProxies=function(t){t&&!Ti&&ci(20),this.O=t},e.applyPatches=function(t,e){var o;for(o=e.length-1;o>=0;o--){var r=e[o];if(0===r.path.length&&"replace"===r.op){t=r.value;break}}o>-1&&(e=e.slice(o+1));var n=Ni("Patches").$;return li(t)?n(t,e):this.produce(t,(function(t){return n(t,e)}))},t}(),ra=new oa,na=ra.produce;function ia(t){return ia="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ia(t)}function aa(t){var e=function(t,e){if("object"!==ia(t)||null===t)return t;var o=t[Symbol.toPrimitive];if(void 0!==o){var r=o.call(t,e||"default");if("object"!==ia(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===ia(e)?e:String(e)}function sa(t,e,o){return(e=aa(e))in t?Object.defineProperty(t,e,{value:o,enumerable:!0,configurable:!0,writable:!0}):t[e]=o,t}function ca(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,r)}return o}function la(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?ca(Object(o),!0).forEach((function(e){sa(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):ca(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}function fa(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}ra.produceWithPatches.bind(ra),ra.setAutoFreeze.bind(ra),ra.setUseProxies.bind(ra),ra.applyPatches.bind(ra),ra.createDraft.bind(ra),ra.finishDraft.bind(ra);var ua="function"==typeof Symbol&&Symbol.observable||"@@observable",ha=function(){return Math.random().toString(36).substring(7).split("").join(".")},pa={INIT:"@@redux/INIT"+ha(),REPLACE:"@@redux/REPLACE"+ha(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+ha()}};function da(t,e,o){var r;if("function"==typeof e&&"function"==typeof o||"function"==typeof o&&"function"==typeof arguments[3])throw new Error(fa(0));if("function"==typeof e&&void 0===o&&(o=e,e=void 0),void 0!==o){if("function"!=typeof o)throw new Error(fa(1));return o(da)(t,e)}if("function"!=typeof t)throw new Error(fa(2));var n=t,i=e,a=[],s=a,c=!1;function l(){s===a&&(s=a.slice())}function f(){if(c)throw new Error(fa(3));return i}function u(t){if("function"!=typeof t)throw new Error(fa(4));if(c)throw new Error(fa(5));var e=!0;return l(),s.push(t),function(){if(e){if(c)throw new Error(fa(6));e=!1,l();var o=s.indexOf(t);s.splice(o,1),a=null}}}function h(t){if(!function(t){if("object"!=typeof t||null===t)return!1;for(var e=t;null!==Object.getPrototypeOf(e);)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}(t))throw new Error(fa(7));if(void 0===t.type)throw new Error(fa(8));if(c)throw new Error(fa(9));try{c=!0,i=n(i,t)}finally{c=!1}for(var e=a=s,o=0;o<e.length;o++){(0,e[o])()}return t}return h({type:pa.INIT}),(r={dispatch:h,subscribe:u,getState:f,replaceReducer:function(t){if("function"!=typeof t)throw new Error(fa(10));n=t,h({type:pa.REPLACE})}})[ua]=function(){var t,e=u;return(t={subscribe:function(t){if("object"!=typeof t||null===t)throw new Error(fa(11));function o(){t.next&&t.next(f())}return o(),{unsubscribe:e(o)}}})[ua]=function(){return this},t},r}function ya(t){for(var e=Object.keys(t),o={},r=0;r<e.length;r++){var n=e[r];"function"==typeof t[n]&&(o[n]=t[n])}var i,a=Object.keys(o);try{!function(t){Object.keys(t).forEach((function(e){var o=t[e];if(void 0===o(void 0,{type:pa.INIT}))throw new Error(fa(12));if(void 0===o(void 0,{type:pa.PROBE_UNKNOWN_ACTION()}))throw new Error(fa(13))}))}(o)}catch(t){i=t}return function(t,e){if(void 0===t&&(t={}),i)throw i;for(var r=!1,n={},s=0;s<a.length;s++){var c=a[s],l=o[c],f=t[c],u=l(f,e);if(void 0===u)throw e&&e.type,new Error(fa(14));n[c]=u,r=r||u!==f}return(r=r||a.length!==Object.keys(t).length)?n:t}}function ga(){for(var t=arguments.length,e=new Array(t),o=0;o<t;o++)e[o]=arguments[o];return 0===e.length?function(t){return t}:1===e.length?e[0]:e.reduce((function(t,e){return function(){return t(e.apply(void 0,arguments))}}))}function ba(){for(var t=arguments.length,e=new Array(t),o=0;o<t;o++)e[o]=arguments[o];return function(t){return function(){var o=t.apply(void 0,arguments),r=function(){throw new Error(fa(15))},n={getState:o.getState,dispatch:function(){return r.apply(void 0,arguments)}},i=e.map((function(t){return t(n)}));return r=ga.apply(void 0,i)(o.dispatch),la(la({},o),{},{dispatch:r})}}}function ma(t){return function(e){var o=e.dispatch,r=e.getState;return function(e){return function(n){return"function"==typeof n?n(o,r,t):e(n)}}}}var va=ma();va.withExtraArgument=ma;var Oa,Sa=va,wa=(Oa=function(t,e){return Oa=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])},Oa(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function o(){this.constructor=t}Oa(t,e),t.prototype=null===e?Object.create(e):(o.prototype=e.prototype,new o)}),Na=function(t,e){var o,r,n,i,a={label:0,sent:function(){if(1&n[0])throw n[1];return n[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(o)throw new TypeError("Generator is already executing.");for(;a;)try{if(o=1,r&&(n=2&i[0]?r.return:i[0]?r.throw||((n=r.return)&&n.call(r),0):r.next)&&!(n=n.call(r,i[1])).done)return n;switch(r=0,n&&(i=[2&i[0],n.value]),i[0]){case 0:case 1:n=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,r=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!(n=a.trys,(n=n.length>0&&n[n.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!n||i[1]>n[0]&&i[1]<n[3])){a.label=i[1];break}if(6===i[0]&&a.label<n[1]){a.label=n[1],n=i;break}if(n&&a.label<n[2]){a.label=n[2],a.ops.push(i);break}n[2]&&a.ops.pop(),a.trys.pop();continue}i=e.call(t,a)}catch(t){i=[6,t],r=0}finally{o=n=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,s])}}},xa=function(t,e){for(var o=0,r=e.length,n=t.length;o<r;o++,n++)t[n]=e[o];return t},Ca=Object.defineProperty,Ea=Object.defineProperties,Ra=Object.getOwnPropertyDescriptors,La=Object.getOwnPropertySymbols,Ia=Object.prototype.hasOwnProperty,Ua=Object.prototype.propertyIsEnumerable,Wa=function(t,e,o){return e in t?Ca(t,e,{enumerable:!0,configurable:!0,writable:!0,value:o}):t[e]=o},ka=function(t,e){for(var o in e||(e={}))Ia.call(e,o)&&Wa(t,o,e[o]);if(La)for(var r=0,n=La(e);r<n.length;r++){o=n[r];Ua.call(e,o)&&Wa(t,o,e[o])}return t},Aa=function(t,e){return Ea(t,Ra(e))},Fa="undefined"!=typeof window&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(0!==arguments.length)return"object"==typeof arguments[0]?ga:ga.apply(null,arguments)};var $a=function(t){function e(){for(var o=[],r=0;r<arguments.length;r++)o[r]=arguments[r];var n=t.apply(this,o)||this;return Object.setPrototypeOf(n,e.prototype),n}return wa(e,t),Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var e=[],o=0;o<arguments.length;o++)e[o]=arguments[o];return t.prototype.concat.apply(this,e)},e.prototype.prepend=function(){for(var t=[],o=0;o<arguments.length;o++)t[o]=arguments[o];return 1===t.length&&Array.isArray(t[0])?new(e.bind.apply(e,xa([void 0],t[0].concat(this)))):new(e.bind.apply(e,xa([void 0],t.concat(this))))},e}(Array),Ka=function(t){function e(){for(var o=[],r=0;r<arguments.length;r++)o[r]=arguments[r];var n=t.apply(this,o)||this;return Object.setPrototypeOf(n,e.prototype),n}return wa(e,t),Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var e=[],o=0;o<arguments.length;o++)e[o]=arguments[o];return t.prototype.concat.apply(this,e)},e.prototype.prepend=function(){for(var t=[],o=0;o<arguments.length;o++)t[o]=arguments[o];return 1===t.length&&Array.isArray(t[0])?new(e.bind.apply(e,xa([void 0],t[0].concat(this)))):new(e.bind.apply(e,xa([void 0],t.concat(this))))},e}(Array);function Pa(t){return fi(t)?na(t,(function(){})):t}function Ba(){return function(t){return function(t){void 0===t&&(t={});var e=t.thunk,o=void 0===e||e;t.immutableCheck,t.serializableCheck;var r=new $a;o&&(!function(t){return"boolean"==typeof t}(o)?r.push(Sa.withExtraArgument(o.extraArgument)):r.push(Sa));return r}(t)}}function ja(t){var e,o=Ba(),r=t||{},n=r.reducer,i=void 0===n?void 0:n,a=r.middleware,s=void 0===a?o():a,c=r.devTools,l=void 0===c||c,f=r.preloadedState,u=void 0===f?void 0:f,h=r.enhancers,p=void 0===h?void 0:h;if("function"==typeof i)e=i;else{if(!function(t){if("object"!=typeof t||null===t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;for(var o=e;null!==Object.getPrototypeOf(o);)o=Object.getPrototypeOf(o);return e===o}(i))throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');e=ya(i)}var d=s;"function"==typeof d&&(d=d(o));var y=ba.apply(void 0,d),g=ga;l&&(g=Fa(ka({trace:!1},"object"==typeof l&&l)));var b=new Ka(y),m=b;return Array.isArray(p)?m=xa([y],p):"function"==typeof p&&(m=p(b)),da(e,u,g.apply(void 0,m))}function Ma(t,e){function o(){for(var o=[],r=0;r<arguments.length;r++)o[r]=arguments[r];if(e){var n=e.apply(void 0,o);if(!n)throw new Error("prepareAction did not return an object");return ka(ka({type:t,payload:n.payload},"meta"in n&&{meta:n.meta}),"error"in n&&{error:n.error})}return{type:t,payload:o[0]}}return o.toString=function(){return""+t},o.type=t,o.match=function(e){return e.type===t},o}function Da(t){var e,o={},r=[],n={addCase:function(t,e){var r="string"==typeof t?t:t.type;if(r in o)throw new Error("addCase cannot be called with two reducers for the same action type");return o[r]=e,n},addMatcher:function(t,e){return r.push({matcher:t,reducer:e}),n},addDefaultCase:function(t){return e=t,n}};return t(n),[o,r,e]}function Za(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");var o,r="function"==typeof t.initialState?t.initialState:Pa(t.initialState),n=t.reducers||{},i=Object.keys(n),a={},s={},c={};function l(){var e="function"==typeof t.extraReducers?Da(t.extraReducers):[t.extraReducers],o=e[0],n=void 0===o?{}:o,i=e[1],a=void 0===i?[]:i,c=e[2],l=void 0===c?void 0:c,f=ka(ka({},n),s);return function(t,e,o,r){void 0===o&&(o=[]);var n,i="function"==typeof e?Da(e):[e,o,r],a=i[0],s=i[1],c=i[2];if(function(t){return"function"==typeof t}(t))n=function(){return Pa(t())};else{var l=Pa(t);n=function(){return l}}function f(t,e){void 0===t&&(t=n());var o=xa([a[e.type]],s.filter((function(t){return(0,t.matcher)(e)})).map((function(t){return t.reducer})));return 0===o.filter((function(t){return!!t})).length&&(o=[c]),o.reduce((function(t,o){if(o){var r;if(li(t))return void 0===(r=o(t,e))?t:r;if(fi(t))return na(t,(function(t){return o(t,e)}));if(void 0===(r=o(t,e))){if(null===t)return t;throw Error("A case reducer on a non-draftable value must not return undefined")}return r}return t}),t)}return f.getInitialState=n,f}(r,(function(t){for(var e in f)t.addCase(e,f[e]);for(var o=0,r=a;o<r.length;o++){var n=r[o];t.addMatcher(n.matcher,n.reducer)}l&&t.addDefaultCase(l)}))}return i.forEach((function(t){var o,r,i=n[t],l=e+"/"+t;"reducer"in i?(o=i.reducer,r=i.prepare):o=i,a[t]=o,s[l]=o,c[t]=r?Ma(l,r):Ma(l)})),{name:e,reducer:function(t,e){return o||(o=l()),o(t,e)},actions:c,caseReducers:a,getInitialState:function(){return o||(o=l()),o.getInitialState()}}}var za=["name","message","stack","code"],_a=function(t,e){this.payload=t,this.meta=e},Ha=function(t,e){this.payload=t,this.meta=e},Ta=function(t){if("object"==typeof t&&null!==t){for(var e={},o=0,r=za;o<r.length;o++){var n=r[o];"string"==typeof t[n]&&(e[n]=t[n])}return e}return{message:String(t)}};function Ga(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}!function(){function t(t,e,o){var r=Ma(t+"/fulfilled",(function(t,e,o,r){return{payload:t,meta:Aa(ka({},r||{}),{arg:o,requestId:e,requestStatus:"fulfilled"})}})),n=Ma(t+"/pending",(function(t,e,o){return{payload:void 0,meta:Aa(ka({},o||{}),{arg:e,requestId:t,requestStatus:"pending"})}})),i=Ma(t+"/rejected",(function(t,e,r,n,i){return{payload:n,error:(o&&o.serializeError||Ta)(t||"Rejected"),meta:Aa(ka({},i||{}),{arg:r,requestId:e,rejectedWithValue:!!n,requestStatus:"rejected",aborted:"AbortError"===(null==t?void 0:t.name),condition:"ConditionError"===(null==t?void 0:t.name)})}})),a="undefined"!=typeof AbortController?AbortController:function(){function t(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return t.prototype.abort=function(){},t}();return Object.assign((function(t){return function(s,c,l){var f,u=(null==o?void 0:o.idGenerator)?o.idGenerator(t):function(t){void 0===t&&(t=21);for(var e="",o=t;o--;)e+="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW"[64*Math.random()|0];return e}(),h=new a;function p(t){f=t,h.abort()}var d=function(){return a=this,d=null,y=function(){var a,d,y,g,b,m;return Na(this,(function(v){switch(v.label){case 0:return v.trys.push([0,4,,5]),g=null==(a=null==o?void 0:o.condition)?void 0:a.call(o,t,{getState:c,extra:l}),null===(O=g)||"object"!=typeof O||"function"!=typeof O.then?[3,2]:[4,g];case 1:g=v.sent(),v.label=2;case 2:if(!1===g||h.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return b=new Promise((function(t,e){return h.signal.addEventListener("abort",(function(){return e({name:"AbortError",message:f||"Aborted"})}))})),s(n(u,t,null==(d=null==o?void 0:o.getPendingMeta)?void 0:d.call(o,{requestId:u,arg:t},{getState:c,extra:l}))),[4,Promise.race([b,Promise.resolve(e(t,{dispatch:s,getState:c,extra:l,requestId:u,signal:h.signal,abort:p,rejectWithValue:function(t,e){return new _a(t,e)},fulfillWithValue:function(t,e){return new Ha(t,e)}})).then((function(e){if(e instanceof _a)throw e;return e instanceof Ha?r(e.payload,u,t,e.meta):r(e,u,t)}))])];case 3:return y=v.sent(),[3,5];case 4:return m=v.sent(),y=m instanceof _a?i(null,u,t,m.payload,m.meta):i(m,u,t),[3,5];case 5:return o&&!o.dispatchConditionRejection&&i.match(y)&&y.meta.condition||s(y),[2,y]}var O}))},new Promise((function(t,e){var o=function(t){try{n(y.next(t))}catch(t){e(t)}},r=function(t){try{n(y.throw(t))}catch(t){e(t)}},n=function(e){return e.done?t(e.value):Promise.resolve(e.value).then(o,r)};n((y=y.apply(a,d)).next())}));var a,d,y}();return Object.assign(d,{abort:p,requestId:u,arg:t,unwrap:function(){return d.then(Ga)}})}}),{pending:n,rejected:i,fulfilled:r,typePrefix:t})}t.withTypes=function(){return t}}();var Va="listenerMiddleware";Ma(Va+"/add"),Ma(Va+"/removeAll"),Ma(Va+"/remove"),"function"==typeof queueMicrotask&&queueMicrotask.bind("undefined"!=typeof window?window:"undefined"!=typeof global?global:globalThis),function(){function t(t,e){var o=n[t];return o?o.enumerable=e:n[t]=o={configurable:!0,enumerable:e,get:function(){var e=this[qi];return ta.get(e,t)},set:function(e){var o=this[qi];ta.set(o,t,e)}},o}function e(t){for(var e=t.length-1;e>=0;e--){var n=t[e][qi];if(!n.P)switch(n.i){case 5:r(n)&&Ki(n);break;case 4:o(n)&&Ki(n)}}}function o(t){for(var e=t.t,o=t.k,r=Ji(o),n=r.length-1;n>=0;n--){var i=r[n];if(i!==qi){var a=e[i];if(void 0===a&&!pi(e,i))return!0;var s=o[i],c=s&&s[qi];if(c?c.t!==a:!yi(s,a))return!0}}var l=!!e[qi];return r.length!==Ji(e).length+(l?0:1)}function r(t){var e=t.k;if(e.length!==t.t.length)return!0;var o=Object.getOwnPropertyDescriptor(e,e.length-1);if(o&&!o.get)return!0;for(var r=0;r<e.length;r++)if(!e.hasOwnProperty(r))return!0;return!1}var n={};!function(t,e){Qi[t]||(Qi[t]=e)}("ES5",{J:function(e,o){var r=Array.isArray(e),n=function(e,o){if(e){for(var r=Array(o.length),n=0;n<o.length;n++)Object.defineProperty(r,""+n,t(n,!0));return r}var i=Xi(o);delete i[qi];for(var a=Ji(i),s=0;s<a.length;s++){var c=a[s];i[c]=t(c,e||!!i[c].enumerable)}return Object.create(Object.getPrototypeOf(o),i)}(r,e),i={i:r?5:4,A:o?o.A:xi(),P:!1,I:!1,R:{},l:o,t:e,k:n,o:null,g:!1,C:!1};return Object.defineProperty(n,qi,{value:i,writable:!0}),n},S:function(t,o,n){n?li(o)&&o[qi].A===t&&e(t.p):(t.u&&function t(e){if(e&&"object"==typeof e){var o=e[qi];if(o){var n=o.t,i=o.k,a=o.R,s=o.i;if(4===s)ui(i,(function(e){e!==qi&&(void 0!==n[e]||pi(n,e)?a[e]||t(i[e]):(a[e]=!0,Ki(o)))})),ui(n,(function(t){void 0!==i[t]||pi(i,t)||(a[t]=!1,Ki(o))}));else if(5===s){if(r(o)&&(Ki(o),a.length=!0),i.length<n.length)for(var c=i.length;c<n.length;c++)a[c]=!1;else for(var l=n.length;l<i.length;l++)a[l]=!0;for(var f=Math.min(i.length,n.length),u=0;u<f;u++)i.hasOwnProperty(u)||(a[u]=!0),void 0===a[u]&&t(i[u])}}}}(t.p[0]),e(t.p))},K:function(t){return 4===t.i?o(t):r(t)}})}(),window.ftReduxStores||(window.ftReduxStores={});class qa{static get(t){var e;const o="string"==typeof t?t:t.name,r="string"==typeof t?void 0:t,n=window.ftReduxStores[o];if(ti(n))return n;if(null==r)return;const i=Za({...r,reducers:null!==(e=r.reducers)&&void 0!==e?e:{}}),a=ja({reducer:(t,e)=>{var o;switch(e.type){case"CLEAR_FT_REDUX_STORE":return i.getInitialState();case"DEFAULT_STATE_FIELDS_VALUES_SETTER":return{...t,...null!==(o=e.overwrites)&&void 0!==o?o:{}};default:return i.reducer(t,e)}}});return window.ftReduxStores[r.name]=new qa(i,a)}constructor(t,e){this.reduxSlice=t,this.reduxStore=e,this.isFtReduxStore=!0,this.eventBus=document.createElement("event-bus"),this.commands=new Qn,this.actions=new Proxy(this.reduxSlice.actions,{get:(t,e,o)=>{const r=e,n=t[r];return n?(...t)=>{const e=n(...t);return this.reduxStore.dispatch(e),e}:t=>{this.setState({[r]:t})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(t){this.reduxStore.dispatch({type:"DEFAULT_STATE_FIELDS_VALUES_SETTER",overwrites:t})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(t){throw new Error("Not implemented yet.")}subscribe(t){return this.reduxStore.subscribe(t)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}}const Ya=Symbol("elementInternals");var Ja,Xa,Qa;const ts=navigator.vendor&&!!navigator.vendor.match(/apple/i)||"[object SafariRemoteNotification]"===(null!==(Qa=null===(Xa=null===(Ja=window.safari)||void 0===Ja?void 0:Ja.pushNotification)||void 0===Xa?void 0:Xa.toString())&&void 0!==Qa?Qa:""),es="ontouchstart"in window||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0;var os=Object.freeze({__proto__:null,CacheRegistry:class{constructor(){this.loaders={},this.content={},this.clearTimeouts={},this.finalContent=new Set}register(t,e){this.loaders[t]=e,this.finalContent.delete(t)}registerFinal(t,e){this.loaders[t]=e,this.finalContent.add(t)}clearAll(){for(let t in this.content)this.clear(t)}clear(t){this.finalContent.has(t)||this.forceClear(t)}forceClear(t){this.clearClearTimeout(t),this.content[t]instanceof Wo&&this.content[t].cancel(),delete this.content[t]}clearClearTimeout(t){null!=this.clearTimeouts[t]&&(window.clearTimeout(this.clearTimeouts[t]),delete this.clearTimeouts[t])}set(t,e){this.forceClear(t),this.register(t,(async()=>e)),this.content[t]=e}setFinal(t,e){this.forceClear(t),this.registerFinal(t,(async()=>e)),this.content[t]=e}async get(t,e,o){if(void 0===this.content[t]){if(null==(e=null!=e?e:this.loaders[t]))throw new Error("Unknown cache key "+t);const r=ko(e());return this.content[t]=r,r.then((e=>(this.content[t]=e,null!=o&&(this.clearClearTimeout(t),this.clearTimeouts[t]=window.setTimeout((()=>this.clear(t)),o)),e)))}if(this.content[t]instanceof Error)throw this.content[t];return this.content[t]}isResolvedValue(t){return!(null==t||t instanceof Promise||t instanceof Error)}getNow(t){if(this.isResolvedValue(this.content[t]))return this.content[t]}has(t){return null!=this.content[t]}resolvedKeys(){return Object.keys(this.content).filter((t=>this.isResolvedValue(this.content[t])))}resolvedValues(){return Object.values(this.content).filter((t=>this.isResolvedValue(t)))}keys(){return Object.keys(this.content)}values(){return Object.values(this.content)}},CancelablePromise:Wo,CanceledPromiseError:Uo,ClusteringHelper:Ao,Debouncer:Fo,FtCommandQueue:Qn,FtCssVariableFactory:Zo,FtLitElement:_n,FtLitElementRedux:si,FtNotificationEvent:Wr,FtReduxStore:qa,ParametrizedLabelResolver:class{constructor(t,e){this.defaultLabels=t,this.labels=e}resolve(t,...e){var o,r;t=this.resolvePluralKey(t,e);let n=null!==(r=null!==(o=this.labels[t])&&void 0!==o?o:this.defaultLabels[t])&&void 0!==r?r:"";return e.forEach(((t,e)=>n=n.replace(new RegExp(`\\{${e}([^}]*)\\}`,"g"),((e,o)=>this.formatValue(t,o))))),n}resolvePluralKey(t,e){for(let o of e)if("number"==typeof o){const e=`${String(t)}[\\=${o}]`;if(e in this.labels||e in this.defaultLabels)return e}return t}formatValue(t,e){return t instanceof Date?this.formatDate(t,e):null!=t?t:""}formatDate(t,e){const o=o=>(null==e?void 0:e.includes("date"))?t.toLocaleDateString(o):(null==e?void 0:e.includes("time"))?t.toLocaleTimeString(o):t.toLocaleString(o);try{return o(document.documentElement.lang)}catch(t){return o()}}},PostResizeEvent:Ar,PreResizeEvent:kr,ScopedRegistryLitElement:Bn,button:br,cancelable:ko,chart:wr,checkbox:Cr,chip:Nr,clearAllStores:function(){var t;for(let e of Object.values(null!==(t=window.ftReduxStores)&&void 0!==t?t:{}))ti(e)&&e.clear()},collapsible:Or,computeOffsetPosition:async function(t,e,o){return An(t,e,{platform:{...kn,getOffsetParent:t=>kn.getOffsetParent(t,Fn)},middleware:[(r={crossAxis:!0},void 0===r&&(r={}),{name:"shift",options:r,async fn(t){const{x:e,y:o,placement:n}=t,{mainAxis:i=!0,crossAxis:a=!1,limiter:s={fn:t=>{let{x:e,y:o}=t;return{x:e,y:o}}},...c}=zr(r,t),l={x:e,y:o},f=await Qr(t,c),u=Vr(_r(n)),h=Tr(u);let p=l[h],d=l[u];if(i){const t="y"===h?"bottom":"right";p=Zr(p+f["y"===h?"top":"left"],p,p-f[t])}if(a){const t="y"===u?"bottom":"right";d=Zr(d+f["y"===u?"top":"left"],d,d-f[t])}const y=s.fn({...t,[h]:p,[u]:d});return{...y,data:{x:y.x-e,y:y.y-o}}}}),en({allowedPlacements:[o]})]});var r},customElement:t=>e=>{window.customElements.get(t)||window.customElements.define(t,e)},dateReviver:function(...t){return function(e,o){return t.includes(e)?Po(o):o}},deepEqual:Bo,delay:$o,designSystemVariables:Ur,eventPathContainsMatchingElement:function(t,e,o=window.document.body){if(e.length>0){const r=t.composedPath();for(let t of r){if(t===o)return!1;if(t.matches&&e.some((e=>t.matches(e))))return!0}}return!1},flatDeep:function t(e,o){return e.flatMap((e=>[e,...t(o(e),o)]))},floatingMenu:mr,foundation:zo,highlightHtml:function(t,e){var o;let r=t.getAttribute("data-highlight-html-query");if((null!=r?r:"")!==(null!=e?e:"")){const r=new Tn(t);if(r.unmark(qn),e&&e.trim()){r.mark(e.replace(/"[^"]+"/g,""),{...qn,separateWordSearch:!0});(null!==(o=e.match(/"[^"]+"/g))&&void 0!==o?o:[]).forEach((t=>r.mark(t.replace(/"/g,""),{...qn,separateWordSearch:!1})))}}t.setAttribute("data-highlight-html-query",null!=e?e:"")},highlightHtmlColorCssVariable:Gn,highlightHtmlStyles:Vn,isFtReduxStore:ti,isNumber:Mo,isSafari:ts,isTouchScreen:es,jsonProperty:jo,last:function(t){return t[t.length-1]},minmax:function(t,e,o){return Math.min(Math.max(t,e),o)},noTextSelect:Yn,notice:xr,notification:Lr,optionalNumberProperty:function(t){return Se({type:Object,converter:{fromAttribute:t=>{if(null!=t)return Mo(t)?+t:void 0},toAttribute:t=>""+t},...null!=t?t:{}})},parseDate:Po,radio:Rr,redux:t=>{const e=null!=t?t:{};return(t,o)=>{var r;const n={hasChanged:(t,e)=>!Bo(t,e),attribute:!1,...e};Se(n)(t,o);const i=t.constructor;i.reduxProperties=new Map(i.reduxProperties),i.reduxProperties.set(o,{selector:null!==(r=e.selector)&&void 0!==r?r:t=>t[o],store:e.store})}},reduxEventListener:t=>(e,o)=>{const r=e.constructor;r.reduxEventListeners=new Map(r.reduxEventListeners),r.reduxEventListeners.set(o,t)},reduxReactive:()=>(t,e)=>{var o;const r=t.constructor;r.reduxReactiveProperties=new Set(r.reduxReactiveProperties),null===(o=r.reduxReactiveProperties)||void 0===o||o.add(e)},safariEllipsisFix:Xn,semantic:gr,serializeRequest:function(t,e){var o;const r=new URLSearchParams({"content-lang":null!==(o=e.contentLocale)&&void 0!==o?o:"all",query:e.query});if(e.filters.length>0){const t=e.filters.map((t=>{const e=t.values.map((t=>t.replace(/_/g,"\\\\\\\\_").replace(/~/g,"\\\\~").replace(/\*/g,"\\*"))).map((t=>encodeURIComponent(function(t){return`"${t}"`}(t)))).join("_");return`${t.key}~${e}`})).join("*");r.append("filters",t)}return new URL(`${t.replace(/\/+$/,"")}/search?${r.toString()}`).href},setVariable:function(t,e){return Do(`${t.name}: ${e}`)},switch_:Sr,tabs:vr,toFtFormComponent:function(t,e){return class extends t{static get formAssociated(){return!0}get form(){return this[Ya].form}constructor(...t){super(t),this[Ya]=this.attachInternals(),this[Ya].role=e}setFormValue(t){this[Ya].setFormValue(t)}}},toggle:Er,tooltip:Ir,typographies:yr,typographyBody1Medium:qo,typographyBody1Regular:Vo,typographyBody1Semibold:Yo,typographyBody2Medium:Xo,typographyBody2Regular:Jo,typographyBody2Semibold:Qo,typographyCaption1Bold:cr,typographyCaption1Medium:ar,typographyCaption1Semibold:sr,typographyCaption2Bold:ur,typographyCaption2Medium:lr,typographyCaption2Semibold:fr,typographyCaption3Bold:dr,typographyCaption3Medium:hr,typographyCaption3Semibold:pr,typographyDisplay:_o,typographyLabel1Bold:or,typographyLabel1Medium:tr,typographyLabel1Semibold:er,typographyLabel2Bold:ir,typographyLabel2Medium:rr,typographyLabel2Semibold:nr,typographyTitle1:Ho,typographyTitle2:To,typographyTitle3:Go,typographyVariants:["display","title-1","title-2","title-3","body-1","body-2","label-1","label-2","caption-1","caption-2","caption-3"],waitFor:Ko,waitUntil:async function(t,e=10,o=2e4){await Ko((async()=>await t()||void 0),e,o)},wordWrap:Jn});t.lit=me,t.litClassMap=je,t.litDecorators=xe,t.litRepeat=Pe,t.litStyleMap=_e,t.litUnsafeHTML=Io,t.wcUtils=os}));
File without changes
File without changes