@websolutespa/llm-plugin-maxmeyer 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +159 -0
- package/dist/esm/__tests/example.test.js +9 -0
- package/dist/esm/__tests/example.test.js.map +1 -0
- package/dist/esm/blocks/Action/action.js +32 -0
- package/dist/esm/blocks/Action/action.js.map +1 -0
- package/dist/esm/blocks/Action/action.module.scss +5 -0
- package/dist/esm/blocks/ActionGroup/action-group.js +17 -0
- package/dist/esm/blocks/ActionGroup/action-group.js.map +1 -0
- package/dist/esm/blocks/ActionGroup/action-group.module.scss +8 -0
- package/dist/esm/blocks/AssistantMessage/assistant-message.js +18 -0
- package/dist/esm/blocks/AssistantMessage/assistant-message.js.map +1 -0
- package/dist/esm/blocks/CustomCard/custom-card.js +68 -0
- package/dist/esm/blocks/CustomCard/custom-card.js.map +1 -0
- package/dist/esm/blocks/CustomCard/custom-card.module.scss +64 -0
- package/dist/esm/blocks/CustomCardGroup/custom-card-group.js +65 -0
- package/dist/esm/blocks/CustomCardGroup/custom-card-group.js.map +1 -0
- package/dist/esm/blocks/CustomCardGroup/custom-card-group.module.scss +58 -0
- package/dist/esm/blocks/FormRecap/FormRecap.js +250 -0
- package/dist/esm/blocks/FormRecap/FormRecap.js.map +1 -0
- package/dist/esm/blocks/FormRecap/form-recap.module.scss +103 -0
- package/dist/esm/blocks/FormRecapError/FormRecapError.js +19 -0
- package/dist/esm/blocks/FormRecapError/FormRecapError.js.map +1 -0
- package/dist/esm/blocks/FormRecapError/form-recap-error.module.scss +7 -0
- package/dist/esm/blocks/FormRecapSuccess/FormRecapSuccess.js +19 -0
- package/dist/esm/blocks/FormRecapSuccess/FormRecapSuccess.js.map +1 -0
- package/dist/esm/blocks/FormRecapSuccess/form-recap-success.module.scss +7 -0
- package/dist/esm/blocks/FormRequest/FormRequest.js +36 -0
- package/dist/esm/blocks/FormRequest/FormRequest.js.map +1 -0
- package/dist/esm/blocks/FormRequest/form-request.module.scss +17 -0
- package/dist/esm/blocks/NotFound/not-found.js +15 -0
- package/dist/esm/blocks/NotFound/not-found.js.map +1 -0
- package/dist/esm/blocks/NotFound/not-found.module.scss +5 -0
- package/dist/esm/blocks/StreamError/StreamError.js +46 -0
- package/dist/esm/blocks/StreamError/StreamError.js.map +1 -0
- package/dist/esm/blocks/StreamError/_style.scss +34 -0
- package/dist/esm/blocks/UserMessage/user-message.js +22 -0
- package/dist/esm/blocks/UserMessage/user-message.js.map +1 -0
- package/dist/esm/blocks/UserMessage/user-message.module.scss +13 -0
- package/dist/esm/blocks/index.js +28 -0
- package/dist/esm/blocks/index.js.map +1 -0
- package/dist/esm/components/chat/Root/root.js +36 -0
- package/dist/esm/components/chat/Root/root.js.map +1 -0
- package/dist/esm/components/chat/Root/root.module.scss +58 -0
- package/dist/esm/components/chat/Thread/thread.js +40 -0
- package/dist/esm/components/chat/Thread/thread.js.map +1 -0
- package/dist/esm/components/chat/Thread/thread.module.scss +30 -0
- package/dist/esm/components/chat/index.js +8 -0
- package/dist/esm/components/chat/index.js.map +1 -0
- package/dist/esm/components/index.js +3 -0
- package/dist/esm/components/index.js.map +1 -0
- package/dist/esm/components/page/PageLoading/page-loading.js +32 -0
- package/dist/esm/components/page/PageLoading/page-loading.js.map +1 -0
- package/dist/esm/components/page/PageLoading/page-loading.module.scss +302 -0
- package/dist/esm/components/page/PageRoot/page-root.js +31 -0
- package/dist/esm/components/page/PageRoot/page-root.js.map +1 -0
- package/dist/esm/components/page/PageRoot/page-root.module.scss +24 -0
- package/dist/esm/components/page/PageStreamingIndicator/page-streaming-indicator.js +18 -0
- package/dist/esm/components/page/PageStreamingIndicator/page-streaming-indicator.js.map +1 -0
- package/dist/esm/components/page/PageStreamingIndicator/page-streaming-indicator.module.scss +38 -0
- package/dist/esm/components/page/PageTrigger/page-trigger.js +20 -0
- package/dist/esm/components/page/PageTrigger/page-trigger.js.map +1 -0
- package/dist/esm/components/page/PageTrigger/page-trigger.module.scss +16 -0
- package/dist/esm/components/page/index.js +12 -0
- package/dist/esm/components/page/index.js.map +1 -0
- package/dist/esm/global.d.js +2 -0
- package/dist/esm/global.d.js.map +1 -0
- package/dist/esm/index.js +12 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/llm.js +42 -0
- package/dist/esm/llm.js.map +1 -0
- package/dist/esm/mock/chat/app.js +76 -0
- package/dist/esm/mock/chat/app.js.map +1 -0
- package/dist/esm/mock/chat/theme.js +337 -0
- package/dist/esm/mock/chat/theme.js.map +1 -0
- package/dist/esm/mock/chat/thread.js +450 -0
- package/dist/esm/mock/chat/thread.js.map +1 -0
- package/dist/esm/mock/index.js +8 -0
- package/dist/esm/mock/index.js.map +1 -0
- package/dist/esm/mock/page/app.js +74 -0
- package/dist/esm/mock/page/app.js.map +1 -0
- package/dist/esm/mock/page/theme.js +337 -0
- package/dist/esm/mock/page/theme.js.map +1 -0
- package/dist/esm/mock/page/thread.js +756 -0
- package/dist/esm/mock/page/thread.js.map +1 -0
- package/dist/esm/plugin.js +21 -0
- package/dist/esm/plugin.js.map +1 -0
- package/dist/esm/scss/_base.scss +63 -0
- package/dist/esm/scss/_mixin.scss +10 -0
- package/dist/esm/scss/_reset.scss +63 -0
- package/dist/esm/scss/_thread.scss +35 -0
- package/dist/esm/scss/_typography.scss +19 -0
- package/dist/esm/scss/mixin/_breakpoint.scss +7 -0
- package/dist/esm/scss/mixin/_button.scss +64 -0
- package/dist/esm/scss/mixin/_container.scss +14 -0
- package/dist/esm/scss/mixin/_markdown.scss +180 -0
- package/dist/esm/scss/mixin/_scrollbar.scss +50 -0
- package/dist/esm/scss/mixin/_shadow.scss +19 -0
- package/dist/esm/scss/mixin/_size.scss +42 -0
- package/dist/esm/scss/mixin/_typography.scss +129 -0
- package/dist/esm/scss/mixin/_utils.scss +103 -0
- package/dist/esm/scss/mixin/_vars.scss +4 -0
- package/dist/esm/scss/style.scss +14 -0
- package/dist/index.css +5460 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts +78 -0
- package/dist/umd/index.js +48828 -0
- package/dist/umd/index.js.map +1 -0
- package/dist/umd/index.min.js +20 -0
- package/package.json +119 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n((e="undefined"!=typeof globalThis?globalThis:e||self).llm={})}(this,function(e){"use strict";function n(e,n){return n.forEach(function(n){n&&"string"!=typeof n&&!Array.isArray(n)&&Object.keys(n).forEach(function(t){if("default"!==t&&!(t in e)){var i=Object.getOwnPropertyDescriptor(n,t);Object.defineProperty(e,t,i.get?i:{enumerable:!0,get:function(){return n[t]}})}})}),Object.freeze(e)}var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function i(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function a(e){return Array.isArray(e)}function o(e){return null!=e&&"object"==typeof e&&!a(e)}function r(e){return e.replace(/(^[a-zA-Z])|(\W|_)+(\w?)([a-z0-9]*)?/g,(e,n,t,i,a)=>(n?n.toUpperCase():"")+(i?i.toUpperCase():"")+(a?a.toLowerCase():""))}function s(e){const n=function(e,n="-"){const t=function(e,n="-"){const t=e.replace(/([A-Z]+)/g,(e,t,i)=>(i>0?n:"")+e).toLowerCase();return t}(r(e),n);return t}(e,"-");return n}function u(e,n){const t={...e};return o(e)&&o(n)&&Object.entries(n).forEach(([n,i])=>{if(a(i))t[n]=i.map(e=>u(e,e));else if(o(i)){const a=n in e?e[n]:void 0;t[n]=o(a)?u(a,i):u(i,i)}else t[n]=i}),t}var l="undefined"!=typeof window;function c(e){return"object"==typeof e&&!Array.isArray(e)}function d(e){const n=Object.keys(e),t=n.length;let i="";for(let a=0;a<t;a++){const t=n[a];e[n[a]]&&(i=i?`${i} ${String(t)}`:String(t))}return i}function g(...e){const n=e.length;let t="";if(0===n)return t;for(let i=0;i<n;i++){const n=e[i];n&&(c(n)?t+=` ${d(n)}`:t+=` ${String(n).trim()}`)}return t.trim()}var h=function(){let e="en";return"undefined"!=typeof process&&(e="it"),e}();function p(e,n,t=h){if(e)return function(e){let n=!1;if(e&&!Array.isArray(e)&&"object"==typeof e){const t=Object.keys(e).reduce((e,n)=>e&&/^(\w{2})(-\w{2})?$/.test(n),!0),i=Object.values(e).reduce((e,n)=>e&&("string"==typeof n||!n),!0);n=Boolean(t&&i)}return n}(e)?function(e,n,t=h){return e[n]||e[t]||Object.values(e)[0]}(e,n,t):m(e,n,t)}function m(e,n,t=h){if(a(e))e=e.map(e=>p(e,n,t));else if(o(e)){const i=e={...e};Object.keys(i).forEach(e=>{i[e]=p(i[e],n,t)})}return e}var y={exports:{}},f={},M={exports:{}},j={},b=Symbol.for("react.element"),w=Symbol.for("react.portal"),x=Symbol.for("react.fragment"),L=Symbol.for("react.strict_mode"),N=Symbol.for("react.profiler"),v=Symbol.for("react.provider"),S=Symbol.for("react.context"),T=Symbol.for("react.forward_ref"),D=Symbol.for("react.suspense"),k=Symbol.for("react.memo"),C=Symbol.for("react.lazy"),E=Symbol.iterator;var z={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},I=Object.assign,A={};function Y(e,n,t){this.props=e,this.context=n,this.refs=A,this.updater=t||z}function O(){}function Q(e,n,t){this.props=e,this.context=n,this.refs=A,this.updater=t||z}Y.prototype.isReactComponent={},Y.prototype.setState=function(e,n){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,n,"setState")},Y.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},O.prototype=Y.prototype;var Z=Q.prototype=new O;Z.constructor=Q,I(Z,Y.prototype),Z.isPureReactComponent=!0;var _=Array.isArray,B=Object.prototype.hasOwnProperty,F={current:null},X={key:!0,ref:!0,__self:!0,__source:!0};function U(e,n,t){var i,a={},o=null,r=null;if(null!=n)for(i in void 0!==n.ref&&(r=n.ref),void 0!==n.key&&(o=""+n.key),n)B.call(n,i)&&!X.hasOwnProperty(i)&&(a[i]=n[i]);var s=arguments.length-2;if(1===s)a.children=t;else if(1<s){for(var u=Array(s),l=0;l<s;l++)u[l]=arguments[l+2];a.children=u}if(e&&e.defaultProps)for(i in s=e.defaultProps)void 0===a[i]&&(a[i]=s[i]);return{$$typeof:b,type:e,key:o,ref:r,props:a,_owner:F.current}}function H(e){return"object"==typeof e&&null!==e&&e.$$typeof===b}var J=/\/+/g;function P(e,n){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var n={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(e){return n[e]})}(""+e.key):n.toString(36)}function G(e,n,t,i,a){var o=typeof e;"undefined"!==o&&"boolean"!==o||(e=null);var r=!1;if(null===e)r=!0;else switch(o){case"string":case"number":r=!0;break;case"object":switch(e.$$typeof){case b:case w:r=!0}}if(r)return a=a(r=e),e=""===i?"."+P(r,0):i,_(a)?(t="",null!=e&&(t=e.replace(J,"$&/")+"/"),G(a,n,t,"",function(e){return e})):null!=a&&(H(a)&&(a=function(e,n){return{$$typeof:b,type:e.type,key:n,ref:e.ref,props:e.props,_owner:e._owner}}(a,t+(!a.key||r&&r.key===a.key?"":(""+a.key).replace(J,"$&/")+"/")+e)),n.push(a)),1;if(r=0,i=""===i?".":i+":",_(e))for(var s=0;s<e.length;s++){var u=i+P(o=e[s],s);r+=G(o,n,t,u,a)}else if(u=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=E&&e[E]||e["@@iterator"])?e:null}(e),"function"==typeof u)for(e=u.call(e),s=0;!(o=e.next()).done;)r+=G(o=o.value,n,t,u=i+P(o,s++),a);else if("object"===o)throw n=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===n?"object with keys {"+Object.keys(e).join(", ")+"}":n)+"). If you meant to render a collection of children, use an array instead.");return r}function R(e,n,t){if(null==e)return e;var i=[],a=0;return G(e,i,"","",function(e){return n.call(t,e,a++)}),i}function W(e){if(-1===e._status){var n=e._result;(n=n()).then(function(n){0!==e._status&&-1!==e._status||(e._status=1,e._result=n)},function(n){0!==e._status&&-1!==e._status||(e._status=2,e._result=n)}),-1===e._status&&(e._status=0,e._result=n)}if(1===e._status)return e._result.default;throw e._result}var K={current:null},V={transition:null},$={ReactCurrentDispatcher:K,ReactCurrentBatchConfig:V,ReactCurrentOwner:F};function q(){throw Error("act(...) is not supported in production builds of React.")}j.Children={map:R,forEach:function(e,n,t){R(e,function(){n.apply(this,arguments)},t)},count:function(e){var n=0;return R(e,function(){n++}),n},toArray:function(e){return R(e,function(e){return e})||[]},only:function(e){if(!H(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},j.Component=Y,j.Fragment=x,j.Profiler=N,j.PureComponent=Q,j.StrictMode=L,j.Suspense=D,j.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=$,j.act=q,j.cloneElement=function(e,n,t){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var i=I({},e.props),a=e.key,o=e.ref,r=e._owner;if(null!=n){if(void 0!==n.ref&&(o=n.ref,r=F.current),void 0!==n.key&&(a=""+n.key),e.type&&e.type.defaultProps)var s=e.type.defaultProps;for(u in n)B.call(n,u)&&!X.hasOwnProperty(u)&&(i[u]=void 0===n[u]&&void 0!==s?s[u]:n[u])}var u=arguments.length-2;if(1===u)i.children=t;else if(1<u){s=Array(u);for(var l=0;l<u;l++)s[l]=arguments[l+2];i.children=s}return{$$typeof:b,type:e.type,key:a,ref:o,props:i,_owner:r}},j.createContext=function(e){return(e={$$typeof:S,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:v,_context:e},e.Consumer=e},j.createElement=U,j.createFactory=function(e){var n=U.bind(null,e);return n.type=e,n},j.createRef=function(){return{current:null}},j.forwardRef=function(e){return{$$typeof:T,render:e}},j.isValidElement=H,j.lazy=function(e){return{$$typeof:C,_payload:{_status:-1,_result:e},_init:W}},j.memo=function(e,n){return{$$typeof:k,type:e,compare:void 0===n?null:n}},j.startTransition=function(e){var n=V.transition;V.transition={};try{e()}finally{V.transition=n}},j.unstable_act=q,j.useCallback=function(e,n){return K.current.useCallback(e,n)},j.useContext=function(e){return K.current.useContext(e)},j.useDebugValue=function(){},j.useDeferredValue=function(e){return K.current.useDeferredValue(e)},j.useEffect=function(e,n){return K.current.useEffect(e,n)},j.useId=function(){return K.current.useId()},j.useImperativeHandle=function(e,n,t){return K.current.useImperativeHandle(e,n,t)},j.useInsertionEffect=function(e,n){return K.current.useInsertionEffect(e,n)},j.useLayoutEffect=function(e,n){return K.current.useLayoutEffect(e,n)},j.useMemo=function(e,n){return K.current.useMemo(e,n)},j.useReducer=function(e,n,t){return K.current.useReducer(e,n,t)},j.useRef=function(e){return K.current.useRef(e)},j.useState=function(e){return K.current.useState(e)},j.useSyncExternalStore=function(e,n,t){return K.current.useSyncExternalStore(e,n,t)},j.useTransition=function(){return K.current.useTransition()},j.version="18.3.1",M.exports=j;var ee=M.exports,ne=i(ee),te=n({__proto__:null,default:ne},[ee]),ie=ee,ae=Symbol.for("react.element"),oe=Symbol.for("react.fragment"),re=Object.prototype.hasOwnProperty,se=ie.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,ue={key:!0,ref:!0,__self:!0,__source:!0};function le(e,n,t){var i,a={},o=null,r=null;for(i in void 0!==t&&(o=""+t),void 0!==n.key&&(o=""+n.key),void 0!==n.ref&&(r=n.ref),n)re.call(n,i)&&!ue.hasOwnProperty(i)&&(a[i]=n[i]);if(e&&e.defaultProps)for(i in n=e.defaultProps)void 0===a[i]&&(a[i]=n[i]);return{$$typeof:ae,type:e,key:o,ref:r,props:a,_owner:se.current}}f.Fragment=oe,f.jsx=le,f.jsxs=le,y.exports=f;var ce=y.exports,de={},ge={exports:{}},he={},pe={exports:{}},me={};
|
|
2
|
+
/**
|
|
3
|
+
* @license React
|
|
4
|
+
* scheduler.production.min.js
|
|
5
|
+
*
|
|
6
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
7
|
+
*
|
|
8
|
+
* This source code is licensed under the MIT license found in the
|
|
9
|
+
* LICENSE file in the root directory of this source tree.
|
|
10
|
+
*/
|
|
11
|
+
!function(e){function n(e,n){var t=e.length;e.push(n);e:for(;0<t;){var i=t-1>>>1,o=e[i];if(!(0<a(o,n)))break e;e[i]=n,e[t]=o,t=i}}function t(e){return 0===e.length?null:e[0]}function i(e){if(0===e.length)return null;var n=e[0],t=e.pop();if(t!==n){e[0]=t;e:for(var i=0,o=e.length,r=o>>>1;i<r;){var s=2*(i+1)-1,u=e[s],l=s+1,c=e[l];if(0>a(u,t))l<o&&0>a(c,u)?(e[i]=c,e[l]=t,i=l):(e[i]=u,e[s]=t,i=s);else{if(!(l<o&&0>a(c,t)))break e;e[i]=c,e[l]=t,i=l}}}return n}function a(e,n){var t=e.sortIndex-n.sortIndex;return 0!==t?t:e.id-n.id}if("object"==typeof performance&&"function"==typeof performance.now){var o=performance;e.unstable_now=function(){return o.now()}}else{var r=Date,s=r.now();e.unstable_now=function(){return r.now()-s}}var u=[],l=[],c=1,d=null,g=3,h=!1,p=!1,m=!1,y="function"==typeof setTimeout?setTimeout:null,f="function"==typeof clearTimeout?clearTimeout:null,M="undefined"!=typeof setImmediate?setImmediate:null;function j(e){for(var a=t(l);null!==a;){if(null===a.callback)i(l);else{if(!(a.startTime<=e))break;i(l),a.sortIndex=a.expirationTime,n(u,a)}a=t(l)}}function b(e){if(m=!1,j(e),!p)if(null!==t(u))p=!0,z(w);else{var n=t(l);null!==n&&I(b,n.startTime-e)}}function w(n,a){p=!1,m&&(m=!1,f(v),v=-1),h=!0;var o=g;try{for(j(a),d=t(u);null!==d&&(!(d.expirationTime>a)||n&&!D());){var r=d.callback;if("function"==typeof r){d.callback=null,g=d.priorityLevel;var s=r(d.expirationTime<=a);a=e.unstable_now(),"function"==typeof s?d.callback=s:d===t(u)&&i(u),j(a)}else i(u);d=t(u)}if(null!==d)var c=!0;else{var y=t(l);null!==y&&I(b,y.startTime-a),c=!1}return c}finally{d=null,g=o,h=!1}}"undefined"!=typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var x,L=!1,N=null,v=-1,S=5,T=-1;function D(){return!(e.unstable_now()-T<S)}function k(){if(null!==N){var n=e.unstable_now();T=n;var t=!0;try{t=N(!0,n)}finally{t?x():(L=!1,N=null)}}else L=!1}if("function"==typeof M)x=function(){M(k)};else if("undefined"!=typeof MessageChannel){var C=new MessageChannel,E=C.port2;C.port1.onmessage=k,x=function(){E.postMessage(null)}}else x=function(){y(k,0)};function z(e){N=e,L||(L=!0,x())}function I(n,t){v=y(function(){n(e.unstable_now())},t)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(e){e.callback=null},e.unstable_continueExecution=function(){p||h||(p=!0,z(w))},e.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):S=0<e?Math.floor(1e3/e):5},e.unstable_getCurrentPriorityLevel=function(){return g},e.unstable_getFirstCallbackNode=function(){return t(u)},e.unstable_next=function(e){switch(g){case 1:case 2:case 3:var n=3;break;default:n=g}var t=g;g=n;try{return e()}finally{g=t}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(e,n){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var t=g;g=e;try{return n()}finally{g=t}},e.unstable_scheduleCallback=function(i,a,o){var r=e.unstable_now();switch("object"==typeof o&&null!==o?o="number"==typeof(o=o.delay)&&0<o?r+o:r:o=r,i){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return i={id:c++,callback:a,priorityLevel:i,startTime:o,expirationTime:s=o+s,sortIndex:-1},o>r?(i.sortIndex=o,n(l,i),null===t(u)&&i===t(l)&&(m?(f(v),v=-1):m=!0,I(b,o-r))):(i.sortIndex=s,n(u,i),p||h||(p=!0,z(w))),i},e.unstable_shouldYield=D,e.unstable_wrapCallback=function(e){var n=g;return function(){var t=g;g=n;try{return e.apply(this,arguments)}finally{g=t}}}}(me),pe.exports=me;var ye=pe.exports,fe=ee,Me=ye;
|
|
12
|
+
/**
|
|
13
|
+
* @license React
|
|
14
|
+
* react-dom.production.min.js
|
|
15
|
+
*
|
|
16
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
17
|
+
*
|
|
18
|
+
* This source code is licensed under the MIT license found in the
|
|
19
|
+
* LICENSE file in the root directory of this source tree.
|
|
20
|
+
*/function je(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;t<arguments.length;t++)n+="&args[]="+encodeURIComponent(arguments[t]);return"Minified React error #"+e+"; visit "+n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var be=new Set,we={};function xe(e,n){Le(e,n),Le(e+"Capture",n)}function Le(e,n){for(we[e]=n,e=0;e<n.length;e++)be.add(n[e])}var Ne=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),ve=Object.prototype.hasOwnProperty,Se=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,Te={},De={};function ke(e,n,t,i,a,o,r){this.acceptsBooleans=2===n||3===n||4===n,this.attributeName=i,this.attributeNamespace=a,this.mustUseProperty=t,this.propertyName=e,this.type=n,this.sanitizeURL=o,this.removeEmptyString=r}var Ce={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){Ce[e]=new ke(e,0,!1,e,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var n=e[0];Ce[n]=new ke(n,1,!1,e[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){Ce[e]=new ke(e,2,!1,e.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){Ce[e]=new ke(e,2,!1,e,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){Ce[e]=new ke(e,3,!1,e.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(e){Ce[e]=new ke(e,3,!0,e,null,!1,!1)}),["capture","download"].forEach(function(e){Ce[e]=new ke(e,4,!1,e,null,!1,!1)}),["cols","rows","size","span"].forEach(function(e){Ce[e]=new ke(e,6,!1,e,null,!1,!1)}),["rowSpan","start"].forEach(function(e){Ce[e]=new ke(e,5,!1,e.toLowerCase(),null,!1,!1)});var Ee=/[\-:]([a-z])/g;function ze(e){return e[1].toUpperCase()}function Ie(e,n,t,i){var a=Ce.hasOwnProperty(n)?Ce[n]:null;(null!==a?0!==a.type:i||!(2<n.length)||"o"!==n[0]&&"O"!==n[0]||"n"!==n[1]&&"N"!==n[1])&&(function(e,n,t,i){if(null==n||function(e,n,t,i){if(null!==t&&0===t.type)return!1;switch(typeof n){case"function":case"symbol":return!0;case"boolean":return!i&&(null!==t?!t.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,n,t,i))return!0;if(i)return!1;if(null!==t)switch(t.type){case 3:return!n;case 4:return!1===n;case 5:return isNaN(n);case 6:return isNaN(n)||1>n}return!1}(n,t,a,i)&&(t=null),i||null===a?function(e){return!!ve.call(De,e)||!ve.call(Te,e)&&(Se.test(e)?De[e]=!0:(Te[e]=!0,!1))}(n)&&(null===t?e.removeAttribute(n):e.setAttribute(n,""+t)):a.mustUseProperty?e[a.propertyName]=null===t?3!==a.type&&"":t:(n=a.attributeName,i=a.attributeNamespace,null===t?e.removeAttribute(n):(t=3===(a=a.type)||4===a&&!0===t?"":""+t,i?e.setAttributeNS(i,n,t):e.setAttribute(n,t))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var n=e.replace(Ee,ze);Ce[n]=new ke(n,1,!1,e,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var n=e.replace(Ee,ze);Ce[n]=new ke(n,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var n=e.replace(Ee,ze);Ce[n]=new ke(n,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(e){Ce[e]=new ke(e,1,!1,e.toLowerCase(),null,!1,!1)}),Ce.xlinkHref=new ke("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(e){Ce[e]=new ke(e,1,!1,e.toLowerCase(),null,!0,!0)});var Ae=fe.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,Ye=Symbol.for("react.element"),Oe=Symbol.for("react.portal"),Qe=Symbol.for("react.fragment"),Ze=Symbol.for("react.strict_mode"),_e=Symbol.for("react.profiler"),Be=Symbol.for("react.provider"),Fe=Symbol.for("react.context"),Xe=Symbol.for("react.forward_ref"),Ue=Symbol.for("react.suspense"),He=Symbol.for("react.suspense_list"),Je=Symbol.for("react.memo"),Pe=Symbol.for("react.lazy"),Ge=Symbol.for("react.offscreen"),Re=Symbol.iterator;function We(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=Re&&e[Re]||e["@@iterator"])?e:null}var Ke,Ve=Object.assign;function $e(e){if(void 0===Ke)try{throw Error()}catch(e){var n=e.stack.trim().match(/\n( *(at )?)/);Ke=n&&n[1]||""}return"\n"+Ke+e}var qe=!1;function en(e,n){if(!e||qe)return"";qe=!0;var t=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(n)if(n=function(){throw Error()},Object.defineProperty(n.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(n,[])}catch(e){var i=e}Reflect.construct(e,[],n)}else{try{n.call()}catch(e){i=e}e.call(n.prototype)}else{try{throw Error()}catch(e){i=e}e()}}catch(n){if(n&&i&&"string"==typeof n.stack){for(var a=n.stack.split("\n"),o=i.stack.split("\n"),r=a.length-1,s=o.length-1;1<=r&&0<=s&&a[r]!==o[s];)s--;for(;1<=r&&0<=s;r--,s--)if(a[r]!==o[s]){if(1!==r||1!==s)do{if(r--,0>--s||a[r]!==o[s]){var u="\n"+a[r].replace(" at new "," at ");return e.displayName&&u.includes("<anonymous>")&&(u=u.replace("<anonymous>",e.displayName)),u}}while(1<=r&&0<=s);break}}}finally{qe=!1,Error.prepareStackTrace=t}return(e=e?e.displayName||e.name:"")?$e(e):""}function nn(e){switch(e.tag){case 5:return $e(e.type);case 16:return $e("Lazy");case 13:return $e("Suspense");case 19:return $e("SuspenseList");case 0:case 2:case 15:return e=en(e.type,!1);case 11:return e=en(e.type.render,!1);case 1:return e=en(e.type,!0);default:return""}}function tn(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case Qe:return"Fragment";case Oe:return"Portal";case _e:return"Profiler";case Ze:return"StrictMode";case Ue:return"Suspense";case He:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case Fe:return(e.displayName||"Context")+".Consumer";case Be:return(e._context.displayName||"Context")+".Provider";case Xe:var n=e.render;return(e=e.displayName)||(e=""!==(e=n.displayName||n.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case Je:return null!==(n=e.displayName||null)?n:tn(e.type)||"Memo";case Pe:n=e._payload,e=e._init;try{return tn(e(n))}catch(e){}}return null}function an(e){var n=e.type;switch(e.tag){case 24:return"Cache";case 9:return(n.displayName||"Context")+".Consumer";case 10:return(n._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=(e=n.render).displayName||e.name||"",n.displayName||(""!==e?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return n;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return tn(n);case 8:return n===Ze?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if("function"==typeof n)return n.displayName||n.name||null;if("string"==typeof n)return n}return null}function on(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":case"object":return e;default:return""}}function rn(e){var n=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===n||"radio"===n)}function sn(e){e._valueTracker||(e._valueTracker=function(e){var n=rn(e)?"checked":"value",t=Object.getOwnPropertyDescriptor(e.constructor.prototype,n),i=""+e[n];if(!e.hasOwnProperty(n)&&void 0!==t&&"function"==typeof t.get&&"function"==typeof t.set){var a=t.get,o=t.set;return Object.defineProperty(e,n,{configurable:!0,get:function(){return a.call(this)},set:function(e){i=""+e,o.call(this,e)}}),Object.defineProperty(e,n,{enumerable:t.enumerable}),{getValue:function(){return i},setValue:function(e){i=""+e},stopTracking:function(){e._valueTracker=null,delete e[n]}}}}(e))}function un(e){if(!e)return!1;var n=e._valueTracker;if(!n)return!0;var t=n.getValue(),i="";return e&&(i=rn(e)?e.checked?"true":"false":e.value),(e=i)!==t&&(n.setValue(e),!0)}function ln(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(n){return e.body}}function cn(e,n){var t=n.checked;return Ve({},n,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=t?t:e._wrapperState.initialChecked})}function dn(e,n){var t=null==n.defaultValue?"":n.defaultValue,i=null!=n.checked?n.checked:n.defaultChecked;t=on(null!=n.value?n.value:t),e._wrapperState={initialChecked:i,initialValue:t,controlled:"checkbox"===n.type||"radio"===n.type?null!=n.checked:null!=n.value}}function gn(e,n){null!=(n=n.checked)&&Ie(e,"checked",n,!1)}function hn(e,n){gn(e,n);var t=on(n.value),i=n.type;if(null!=t)"number"===i?(0===t&&""===e.value||e.value!=t)&&(e.value=""+t):e.value!==""+t&&(e.value=""+t);else if("submit"===i||"reset"===i)return void e.removeAttribute("value");n.hasOwnProperty("value")?mn(e,n.type,t):n.hasOwnProperty("defaultValue")&&mn(e,n.type,on(n.defaultValue)),null==n.checked&&null!=n.defaultChecked&&(e.defaultChecked=!!n.defaultChecked)}function pn(e,n,t){if(n.hasOwnProperty("value")||n.hasOwnProperty("defaultValue")){var i=n.type;if(!("submit"!==i&&"reset"!==i||void 0!==n.value&&null!==n.value))return;n=""+e._wrapperState.initialValue,t||n===e.value||(e.value=n),e.defaultValue=n}""!==(t=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==t&&(e.name=t)}function mn(e,n,t){"number"===n&&ln(e.ownerDocument)===e||(null==t?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+t&&(e.defaultValue=""+t))}var yn=Array.isArray;function fn(e,n,t,i){if(e=e.options,n){n={};for(var a=0;a<t.length;a++)n["$"+t[a]]=!0;for(t=0;t<e.length;t++)a=n.hasOwnProperty("$"+e[t].value),e[t].selected!==a&&(e[t].selected=a),a&&i&&(e[t].defaultSelected=!0)}else{for(t=""+on(t),n=null,a=0;a<e.length;a++){if(e[a].value===t)return e[a].selected=!0,void(i&&(e[a].defaultSelected=!0));null!==n||e[a].disabled||(n=e[a])}null!==n&&(n.selected=!0)}}function Mn(e,n){if(null!=n.dangerouslySetInnerHTML)throw Error(je(91));return Ve({},n,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function jn(e,n){var t=n.value;if(null==t){if(t=n.children,n=n.defaultValue,null!=t){if(null!=n)throw Error(je(92));if(yn(t)){if(1<t.length)throw Error(je(93));t=t[0]}n=t}null==n&&(n=""),t=n}e._wrapperState={initialValue:on(t)}}function bn(e,n){var t=on(n.value),i=on(n.defaultValue);null!=t&&((t=""+t)!==e.value&&(e.value=t),null==n.defaultValue&&e.defaultValue!==t&&(e.defaultValue=t)),null!=i&&(e.defaultValue=""+i)}function wn(e){var n=e.textContent;n===e._wrapperState.initialValue&&""!==n&&null!==n&&(e.value=n)}function xn(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function Ln(e,n){return null==e||"http://www.w3.org/1999/xhtml"===e?xn(n):"http://www.w3.org/2000/svg"===e&&"foreignObject"===n?"http://www.w3.org/1999/xhtml":e}var Nn,vn,Sn=(vn=function(e,n){if("http://www.w3.org/2000/svg"!==e.namespaceURI||"innerHTML"in e)e.innerHTML=n;else{for((Nn=Nn||document.createElement("div")).innerHTML="<svg>"+n.valueOf().toString()+"</svg>",n=Nn.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;n.firstChild;)e.appendChild(n.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,n,t,i){MSApp.execUnsafeLocalFunction(function(){return vn(e,n)})}:vn);function Tn(e,n){if(n){var t=e.firstChild;if(t&&t===e.lastChild&&3===t.nodeType)return void(t.nodeValue=n)}e.textContent=n}var Dn={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},kn=["Webkit","ms","Moz","O"];function Cn(e,n,t){return null==n||"boolean"==typeof n||""===n?"":t||"number"!=typeof n||0===n||Dn.hasOwnProperty(e)&&Dn[e]?(""+n).trim():n+"px"}function En(e,n){for(var t in e=e.style,n)if(n.hasOwnProperty(t)){var i=0===t.indexOf("--"),a=Cn(t,n[t],i);"float"===t&&(t="cssFloat"),i?e.setProperty(t,a):e[t]=a}}Object.keys(Dn).forEach(function(e){kn.forEach(function(n){n=n+e.charAt(0).toUpperCase()+e.substring(1),Dn[n]=Dn[e]})});var zn=Ve({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function In(e,n){if(n){if(zn[e]&&(null!=n.children||null!=n.dangerouslySetInnerHTML))throw Error(je(137,e));if(null!=n.dangerouslySetInnerHTML){if(null!=n.children)throw Error(je(60));if("object"!=typeof n.dangerouslySetInnerHTML||!("__html"in n.dangerouslySetInnerHTML))throw Error(je(61))}if(null!=n.style&&"object"!=typeof n.style)throw Error(je(62))}}function An(e,n){if(-1===e.indexOf("-"))return"string"==typeof n.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Yn=null;function On(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Qn=null,Zn=null,_n=null;function Bn(e){if(e=Ao(e)){if("function"!=typeof Qn)throw Error(je(280));var n=e.stateNode;n&&(n=Oo(n),Qn(e.stateNode,e.type,n))}}function Fn(e){Zn?_n?_n.push(e):_n=[e]:Zn=e}function Xn(){if(Zn){var e=Zn,n=_n;if(_n=Zn=null,Bn(e),n)for(e=0;e<n.length;e++)Bn(n[e])}}function Un(e,n){return e(n)}function Hn(){}var Jn=!1;function Pn(e,n,t){if(Jn)return e(n,t);Jn=!0;try{return Un(e,n,t)}finally{Jn=!1,(null!==Zn||null!==_n)&&(Hn(),Xn())}}function Gn(e,n){var t=e.stateNode;if(null===t)return null;var i=Oo(t);if(null===i)return null;t=i[n];e:switch(n){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(i=!i.disabled)||(i=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!i;break e;default:e=!1}if(e)return null;if(t&&"function"!=typeof t)throw Error(je(231,n,typeof t));return t}var Rn=!1;if(Ne)try{var Wn={};Object.defineProperty(Wn,"passive",{get:function(){Rn=!0}}),window.addEventListener("test",Wn,Wn),window.removeEventListener("test",Wn,Wn)}catch(vn){Rn=!1}function Kn(e,n,t,i,a,o,r,s,u){var l=Array.prototype.slice.call(arguments,3);try{n.apply(t,l)}catch(e){this.onError(e)}}var Vn=!1,$n=null,qn=!1,et=null,nt={onError:function(e){Vn=!0,$n=e}};function tt(e,n,t,i,a,o,r,s,u){Vn=!1,$n=null,Kn.apply(nt,arguments)}function it(e){var n=e,t=e;if(e.alternate)for(;n.return;)n=n.return;else{e=n;do{!!(4098&(n=e).flags)&&(t=n.return),e=n.return}while(e)}return 3===n.tag?t:null}function at(e){if(13===e.tag){var n=e.memoizedState;if(null===n&&(null!==(e=e.alternate)&&(n=e.memoizedState)),null!==n)return n.dehydrated}return null}function ot(e){if(it(e)!==e)throw Error(je(188))}function rt(e){return e=function(e){var n=e.alternate;if(!n){if(null===(n=it(e)))throw Error(je(188));return n!==e?null:e}for(var t=e,i=n;;){var a=t.return;if(null===a)break;var o=a.alternate;if(null===o){if(null!==(i=a.return)){t=i;continue}break}if(a.child===o.child){for(o=a.child;o;){if(o===t)return ot(a),e;if(o===i)return ot(a),n;o=o.sibling}throw Error(je(188))}if(t.return!==i.return)t=a,i=o;else{for(var r=!1,s=a.child;s;){if(s===t){r=!0,t=a,i=o;break}if(s===i){r=!0,i=a,t=o;break}s=s.sibling}if(!r){for(s=o.child;s;){if(s===t){r=!0,t=o,i=a;break}if(s===i){r=!0,i=o,t=a;break}s=s.sibling}if(!r)throw Error(je(189))}}if(t.alternate!==i)throw Error(je(190))}if(3!==t.tag)throw Error(je(188));return t.stateNode.current===t?e:n}(e),null!==e?st(e):null}function st(e){if(5===e.tag||6===e.tag)return e;for(e=e.child;null!==e;){var n=st(e);if(null!==n)return n;e=e.sibling}return null}var ut=Me.unstable_scheduleCallback,lt=Me.unstable_cancelCallback,ct=Me.unstable_shouldYield,dt=Me.unstable_requestPaint,gt=Me.unstable_now,ht=Me.unstable_getCurrentPriorityLevel,pt=Me.unstable_ImmediatePriority,mt=Me.unstable_UserBlockingPriority,yt=Me.unstable_NormalPriority,ft=Me.unstable_LowPriority,Mt=Me.unstable_IdlePriority,jt=null,bt=null;var wt=Math.clz32?Math.clz32:function(e){return e>>>=0,0===e?32:31-(xt(e)/Lt|0)|0},xt=Math.log,Lt=Math.LN2;var Nt=64,vt=4194304;function St(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return 4194240&e;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&e;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Tt(e,n){var t=e.pendingLanes;if(0===t)return 0;var i=0,a=e.suspendedLanes,o=e.pingedLanes,r=268435455&t;if(0!==r){var s=r&~a;0!==s?i=St(s):0!==(o&=r)&&(i=St(o))}else 0!==(r=t&~a)?i=St(r):0!==o&&(i=St(o));if(0===i)return 0;if(0!==n&&n!==i&&0===(n&a)&&((a=i&-i)>=(o=n&-n)||16===a&&4194240&o))return n;if(4&i&&(i|=16&t),0!==(n=e.entangledLanes))for(e=e.entanglements,n&=i;0<n;)a=1<<(t=31-wt(n)),i|=e[t],n&=~a;return i}function Dt(e,n){switch(e){case 1:case 2:case 4:return n+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return n+5e3;default:return-1}}function kt(e){return 0!==(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function Ct(){var e=Nt;return!(4194240&(Nt<<=1))&&(Nt=64),e}function Et(e){for(var n=[],t=0;31>t;t++)n.push(e);return n}function zt(e,n,t){e.pendingLanes|=n,536870912!==n&&(e.suspendedLanes=0,e.pingedLanes=0),(e=e.eventTimes)[n=31-wt(n)]=t}function It(e,n){var t=e.entangledLanes|=n;for(e=e.entanglements;t;){var i=31-wt(t),a=1<<i;a&n|e[i]&n&&(e[i]|=n),t&=~a}}var At=0;function Yt(e){return 1<(e&=-e)?4<e?268435455&e?16:536870912:4:1}var Ot,Qt,Zt,_t,Bt,Ft=!1,Xt=[],Ut=null,Ht=null,Jt=null,Pt=new Map,Gt=new Map,Rt=[],Wt="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function Kt(e,n){switch(e){case"focusin":case"focusout":Ut=null;break;case"dragenter":case"dragleave":Ht=null;break;case"mouseover":case"mouseout":Jt=null;break;case"pointerover":case"pointerout":Pt.delete(n.pointerId);break;case"gotpointercapture":case"lostpointercapture":Gt.delete(n.pointerId)}}function Vt(e,n,t,i,a,o){return null===e||e.nativeEvent!==o?(e={blockedOn:n,domEventName:t,eventSystemFlags:i,nativeEvent:o,targetContainers:[a]},null!==n&&(null!==(n=Ao(n))&&Qt(n)),e):(e.eventSystemFlags|=i,n=e.targetContainers,null!==a&&-1===n.indexOf(a)&&n.push(a),e)}function $t(e){var n=Io(e.target);if(null!==n){var t=it(n);if(null!==t)if(13===(n=t.tag)){if(null!==(n=at(t)))return e.blockedOn=n,void Bt(e.priority,function(){Zt(t)})}else if(3===n&&t.stateNode.current.memoizedState.isDehydrated)return void(e.blockedOn=3===t.tag?t.stateNode.containerInfo:null)}e.blockedOn=null}function qt(e){if(null!==e.blockedOn)return!1;for(var n=e.targetContainers;0<n.length;){var t=ci(e.domEventName,e.eventSystemFlags,n[0],e.nativeEvent);if(null!==t)return null!==(n=Ao(t))&&Qt(n),e.blockedOn=t,!1;var i=new(t=e.nativeEvent).constructor(t.type,t);Yn=i,t.target.dispatchEvent(i),Yn=null,n.shift()}return!0}function ei(e,n,t){qt(e)&&t.delete(n)}function ni(){Ft=!1,null!==Ut&&qt(Ut)&&(Ut=null),null!==Ht&&qt(Ht)&&(Ht=null),null!==Jt&&qt(Jt)&&(Jt=null),Pt.forEach(ei),Gt.forEach(ei)}function ti(e,n){e.blockedOn===n&&(e.blockedOn=null,Ft||(Ft=!0,Me.unstable_scheduleCallback(Me.unstable_NormalPriority,ni)))}function ii(e){function n(n){return ti(n,e)}if(0<Xt.length){ti(Xt[0],e);for(var t=1;t<Xt.length;t++){var i=Xt[t];i.blockedOn===e&&(i.blockedOn=null)}}for(null!==Ut&&ti(Ut,e),null!==Ht&&ti(Ht,e),null!==Jt&&ti(Jt,e),Pt.forEach(n),Gt.forEach(n),t=0;t<Rt.length;t++)(i=Rt[t]).blockedOn===e&&(i.blockedOn=null);for(;0<Rt.length&&null===(t=Rt[0]).blockedOn;)$t(t),null===t.blockedOn&&Rt.shift()}var ai=Ae.ReactCurrentBatchConfig,oi=!0;function ri(e,n,t,i){var a=At,o=ai.transition;ai.transition=null;try{At=1,ui(e,n,t,i)}finally{At=a,ai.transition=o}}function si(e,n,t,i){var a=At,o=ai.transition;ai.transition=null;try{At=4,ui(e,n,t,i)}finally{At=a,ai.transition=o}}function ui(e,n,t,i){if(oi){var a=ci(e,n,t,i);if(null===a)ao(e,n,i,li,t),Kt(e,i);else if(function(e,n,t,i,a){switch(n){case"focusin":return Ut=Vt(Ut,e,n,t,i,a),!0;case"dragenter":return Ht=Vt(Ht,e,n,t,i,a),!0;case"mouseover":return Jt=Vt(Jt,e,n,t,i,a),!0;case"pointerover":var o=a.pointerId;return Pt.set(o,Vt(Pt.get(o)||null,e,n,t,i,a)),!0;case"gotpointercapture":return o=a.pointerId,Gt.set(o,Vt(Gt.get(o)||null,e,n,t,i,a)),!0}return!1}(a,e,n,t,i))i.stopPropagation();else if(Kt(e,i),4&n&&-1<Wt.indexOf(e)){for(;null!==a;){var o=Ao(a);if(null!==o&&Ot(o),null===(o=ci(e,n,t,i))&&ao(e,n,i,li,t),o===a)break;a=o}null!==a&&i.stopPropagation()}else ao(e,n,i,null,t)}}var li=null;function ci(e,n,t,i){if(li=null,null!==(e=Io(e=On(i))))if(null===(n=it(e)))e=null;else if(13===(t=n.tag)){if(null!==(e=at(n)))return e;e=null}else if(3===t){if(n.stateNode.current.memoizedState.isDehydrated)return 3===n.tag?n.stateNode.containerInfo:null;e=null}else n!==e&&(e=null);return li=e,null}function di(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(ht()){case pt:return 1;case mt:return 4;case yt:case ft:return 16;case Mt:return 536870912;default:return 16}default:return 16}}var gi=null,hi=null,pi=null;function mi(){if(pi)return pi;var e,n,t=hi,i=t.length,a="value"in gi?gi.value:gi.textContent,o=a.length;for(e=0;e<i&&t[e]===a[e];e++);var r=i-e;for(n=1;n<=r&&t[i-n]===a[o-n];n++);return pi=a.slice(e,1<n?1-n:void 0)}function yi(e){var n=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===n&&(e=13):e=n,10===e&&(e=13),32<=e||13===e?e:0}function fi(){return!0}function Mi(){return!1}function ji(e){function n(n,t,i,a,o){for(var r in this._reactName=n,this._targetInst=i,this.type=t,this.nativeEvent=a,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(r)&&(n=e[r],this[r]=n?n(a):a[r]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?fi:Mi,this.isPropagationStopped=Mi,this}return Ve(n.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=fi)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=fi)},persist:function(){},isPersistent:fi}),n}var bi,wi,xi,Li={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Ni=ji(Li),vi=Ve({},Li,{view:0,detail:0}),Si=ji(vi),Ti=Ve({},vi,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:_i,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==xi&&(xi&&"mousemove"===e.type?(bi=e.screenX-xi.screenX,wi=e.screenY-xi.screenY):wi=bi=0,xi=e),bi)},movementY:function(e){return"movementY"in e?e.movementY:wi}}),Di=ji(Ti),ki=ji(Ve({},Ti,{dataTransfer:0})),Ci=ji(Ve({},vi,{relatedTarget:0})),Ei=ji(Ve({},Li,{animationName:0,elapsedTime:0,pseudoElement:0})),zi=Ve({},Li,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Ii=ji(zi),Ai=ji(Ve({},Li,{data:0})),Yi={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Oi={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Qi={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Zi(e){var n=this.nativeEvent;return n.getModifierState?n.getModifierState(e):!!(e=Qi[e])&&!!n[e]}function _i(){return Zi}var Bi=Ve({},vi,{key:function(e){if(e.key){var n=Yi[e.key]||e.key;if("Unidentified"!==n)return n}return"keypress"===e.type?13===(e=yi(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?Oi[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:_i,charCode:function(e){return"keypress"===e.type?yi(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?yi(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Fi=ji(Bi),Xi=ji(Ve({},Ti,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Ui=ji(Ve({},vi,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:_i})),Hi=ji(Ve({},Li,{propertyName:0,elapsedTime:0,pseudoElement:0})),Ji=Ve({},Ti,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Pi=ji(Ji),Gi=[9,13,27,32],Ri=Ne&&"CompositionEvent"in window,Wi=null;Ne&&"documentMode"in document&&(Wi=document.documentMode);var Ki=Ne&&"TextEvent"in window&&!Wi,Vi=Ne&&(!Ri||Wi&&8<Wi&&11>=Wi),$i=String.fromCharCode(32),qi=!1;function ea(e,n){switch(e){case"keyup":return-1!==Gi.indexOf(n.keyCode);case"keydown":return 229!==n.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function na(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var ta=!1;var ia={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function aa(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===n?!!ia[e.type]:"textarea"===n}function oa(e,n,t,i){Fn(i),0<(n=ro(n,"onChange")).length&&(t=new Ni("onChange","change",null,t,i),e.push({event:t,listeners:n}))}var ra=null,sa=null;function ua(e){$a(e,0)}function la(e){if(un(Yo(e)))return e}function ca(e,n){if("change"===e)return n}var da=!1;if(Ne){var ga;if(Ne){var ha="oninput"in document;if(!ha){var pa=document.createElement("div");pa.setAttribute("oninput","return;"),ha="function"==typeof pa.oninput}ga=ha}else ga=!1;da=ga&&(!document.documentMode||9<document.documentMode)}function ma(){ra&&(ra.detachEvent("onpropertychange",ya),sa=ra=null)}function ya(e){if("value"===e.propertyName&&la(sa)){var n=[];oa(n,sa,e,On(e)),Pn(ua,n)}}function fa(e,n,t){"focusin"===e?(ma(),sa=t,(ra=n).attachEvent("onpropertychange",ya)):"focusout"===e&&ma()}function Ma(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return la(sa)}function ja(e,n){if("click"===e)return la(n)}function ba(e,n){if("input"===e||"change"===e)return la(n)}var wa="function"==typeof Object.is?Object.is:function(e,n){return e===n&&(0!==e||1/e==1/n)||e!=e&&n!=n};function xa(e,n){if(wa(e,n))return!0;if("object"!=typeof e||null===e||"object"!=typeof n||null===n)return!1;var t=Object.keys(e),i=Object.keys(n);if(t.length!==i.length)return!1;for(i=0;i<t.length;i++){var a=t[i];if(!ve.call(n,a)||!wa(e[a],n[a]))return!1}return!0}function La(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Na(e,n){var t,i=La(e);for(e=0;i;){if(3===i.nodeType){if(t=e+i.textContent.length,e<=n&&t>=n)return{node:i,offset:n-e};e=t}e:{for(;i;){if(i.nextSibling){i=i.nextSibling;break e}i=i.parentNode}i=void 0}i=La(i)}}function va(e,n){return!(!e||!n)&&(e===n||(!e||3!==e.nodeType)&&(n&&3===n.nodeType?va(e,n.parentNode):"contains"in e?e.contains(n):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(n))))}function Sa(){for(var e=window,n=ln();n instanceof e.HTMLIFrameElement;){try{var t="string"==typeof n.contentWindow.location.href}catch(e){t=!1}if(!t)break;n=ln((e=n.contentWindow).document)}return n}function Ta(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n&&("input"===n&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===n||"true"===e.contentEditable)}function Da(e){var n=Sa(),t=e.focusedElem,i=e.selectionRange;if(n!==t&&t&&t.ownerDocument&&va(t.ownerDocument.documentElement,t)){if(null!==i&&Ta(t))if(n=i.start,void 0===(e=i.end)&&(e=n),"selectionStart"in t)t.selectionStart=n,t.selectionEnd=Math.min(e,t.value.length);else if((e=(n=t.ownerDocument||document)&&n.defaultView||window).getSelection){e=e.getSelection();var a=t.textContent.length,o=Math.min(i.start,a);i=void 0===i.end?o:Math.min(i.end,a),!e.extend&&o>i&&(a=i,i=o,o=a),a=Na(t,o);var r=Na(t,i);a&&r&&(1!==e.rangeCount||e.anchorNode!==a.node||e.anchorOffset!==a.offset||e.focusNode!==r.node||e.focusOffset!==r.offset)&&((n=n.createRange()).setStart(a.node,a.offset),e.removeAllRanges(),o>i?(e.addRange(n),e.extend(r.node,r.offset)):(n.setEnd(r.node,r.offset),e.addRange(n)))}for(n=[],e=t;e=e.parentNode;)1===e.nodeType&&n.push({element:e,left:e.scrollLeft,top:e.scrollTop});for("function"==typeof t.focus&&t.focus(),t=0;t<n.length;t++)(e=n[t]).element.scrollLeft=e.left,e.element.scrollTop=e.top}}var ka=Ne&&"documentMode"in document&&11>=document.documentMode,Ca=null,Ea=null,za=null,Ia=!1;function Aa(e,n,t){var i=t.window===t?t.document:9===t.nodeType?t:t.ownerDocument;Ia||null==Ca||Ca!==ln(i)||("selectionStart"in(i=Ca)&&Ta(i)?i={start:i.selectionStart,end:i.selectionEnd}:i={anchorNode:(i=(i.ownerDocument&&i.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:i.anchorOffset,focusNode:i.focusNode,focusOffset:i.focusOffset},za&&xa(za,i)||(za=i,0<(i=ro(Ea,"onSelect")).length&&(n=new Ni("onSelect","select",null,n,t),e.push({event:n,listeners:i}),n.target=Ca)))}function Ya(e,n){var t={};return t[e.toLowerCase()]=n.toLowerCase(),t["Webkit"+e]="webkit"+n,t["Moz"+e]="moz"+n,t}var Oa={animationend:Ya("Animation","AnimationEnd"),animationiteration:Ya("Animation","AnimationIteration"),animationstart:Ya("Animation","AnimationStart"),transitionend:Ya("Transition","TransitionEnd")},Qa={},Za={};function _a(e){if(Qa[e])return Qa[e];if(!Oa[e])return e;var n,t=Oa[e];for(n in t)if(t.hasOwnProperty(n)&&n in Za)return Qa[e]=t[n];return e}Ne&&(Za=document.createElement("div").style,"AnimationEvent"in window||(delete Oa.animationend.animation,delete Oa.animationiteration.animation,delete Oa.animationstart.animation),"TransitionEvent"in window||delete Oa.transitionend.transition);var Ba=_a("animationend"),Fa=_a("animationiteration"),Xa=_a("animationstart"),Ua=_a("transitionend"),Ha=new Map,Ja="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function Pa(e,n){Ha.set(e,n),xe(n,[e])}for(var Ga=0;Ga<Ja.length;Ga++){var Ra=Ja[Ga];Pa(Ra.toLowerCase(),"on"+(Ra[0].toUpperCase()+Ra.slice(1)))}Pa(Ba,"onAnimationEnd"),Pa(Fa,"onAnimationIteration"),Pa(Xa,"onAnimationStart"),Pa("dblclick","onDoubleClick"),Pa("focusin","onFocus"),Pa("focusout","onBlur"),Pa(Ua,"onTransitionEnd"),Le("onMouseEnter",["mouseout","mouseover"]),Le("onMouseLeave",["mouseout","mouseover"]),Le("onPointerEnter",["pointerout","pointerover"]),Le("onPointerLeave",["pointerout","pointerover"]),xe("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),xe("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),xe("onBeforeInput",["compositionend","keypress","textInput","paste"]),xe("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),xe("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),xe("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Wa="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Ka=new Set("cancel close invalid load scroll toggle".split(" ").concat(Wa));function Va(e,n,t){var i=e.type||"unknown-event";e.currentTarget=t,function(e,n,t,i,a,o,r,s,u){if(tt.apply(this,arguments),Vn){if(!Vn)throw Error(je(198));var l=$n;Vn=!1,$n=null,qn||(qn=!0,et=l)}}(i,n,void 0,e),e.currentTarget=null}function $a(e,n){n=!!(4&n);for(var t=0;t<e.length;t++){var i=e[t],a=i.event;i=i.listeners;e:{var o=void 0;if(n)for(var r=i.length-1;0<=r;r--){var s=i[r],u=s.instance,l=s.currentTarget;if(s=s.listener,u!==o&&a.isPropagationStopped())break e;Va(a,s,l),o=u}else for(r=0;r<i.length;r++){if(u=(s=i[r]).instance,l=s.currentTarget,s=s.listener,u!==o&&a.isPropagationStopped())break e;Va(a,s,l),o=u}}}if(qn)throw e=et,qn=!1,et=null,e}function qa(e,n){var t=n[Co];void 0===t&&(t=n[Co]=new Set);var i=e+"__bubble";t.has(i)||(io(n,e,2,!1),t.add(i))}function eo(e,n,t){var i=0;n&&(i|=4),io(t,e,i,n)}var no="_reactListening"+Math.random().toString(36).slice(2);function to(e){if(!e[no]){e[no]=!0,be.forEach(function(n){"selectionchange"!==n&&(Ka.has(n)||eo(n,!1,e),eo(n,!0,e))});var n=9===e.nodeType?e:e.ownerDocument;null===n||n[no]||(n[no]=!0,eo("selectionchange",!1,n))}}function io(e,n,t,i){switch(di(n)){case 1:var a=ri;break;case 4:a=si;break;default:a=ui}t=a.bind(null,n,t,e),a=void 0,!Rn||"touchstart"!==n&&"touchmove"!==n&&"wheel"!==n||(a=!0),i?void 0!==a?e.addEventListener(n,t,{capture:!0,passive:a}):e.addEventListener(n,t,!0):void 0!==a?e.addEventListener(n,t,{passive:a}):e.addEventListener(n,t,!1)}function ao(e,n,t,i,a){var o=i;if(!(1&n||2&n||null===i))e:for(;;){if(null===i)return;var r=i.tag;if(3===r||4===r){var s=i.stateNode.containerInfo;if(s===a||8===s.nodeType&&s.parentNode===a)break;if(4===r)for(r=i.return;null!==r;){var u=r.tag;if((3===u||4===u)&&((u=r.stateNode.containerInfo)===a||8===u.nodeType&&u.parentNode===a))return;r=r.return}for(;null!==s;){if(null===(r=Io(s)))return;if(5===(u=r.tag)||6===u){i=o=r;continue e}s=s.parentNode}}i=i.return}Pn(function(){var i=o,a=On(t),r=[];e:{var s=Ha.get(e);if(void 0!==s){var u=Ni,l=e;switch(e){case"keypress":if(0===yi(t))break e;case"keydown":case"keyup":u=Fi;break;case"focusin":l="focus",u=Ci;break;case"focusout":l="blur",u=Ci;break;case"beforeblur":case"afterblur":u=Ci;break;case"click":if(2===t.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":u=Di;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":u=ki;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":u=Ui;break;case Ba:case Fa:case Xa:u=Ei;break;case Ua:u=Hi;break;case"scroll":u=Si;break;case"wheel":u=Pi;break;case"copy":case"cut":case"paste":u=Ii;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":u=Xi}var c=!!(4&n),d=!c&&"scroll"===e,g=c?null!==s?s+"Capture":null:s;c=[];for(var h,p=i;null!==p;){var m=(h=p).stateNode;if(5===h.tag&&null!==m&&(h=m,null!==g&&(null!=(m=Gn(p,g))&&c.push(oo(p,m,h)))),d)break;p=p.return}0<c.length&&(s=new u(s,l,null,t,a),r.push({event:s,listeners:c}))}}if(!(7&n)){if(u="mouseout"===e||"pointerout"===e,(!(s="mouseover"===e||"pointerover"===e)||t===Yn||!(l=t.relatedTarget||t.fromElement)||!Io(l)&&!l[ko])&&(u||s)&&(s=a.window===a?a:(s=a.ownerDocument)?s.defaultView||s.parentWindow:window,u?(u=i,null!==(l=(l=t.relatedTarget||t.toElement)?Io(l):null)&&(l!==(d=it(l))||5!==l.tag&&6!==l.tag)&&(l=null)):(u=null,l=i),u!==l)){if(c=Di,m="onMouseLeave",g="onMouseEnter",p="mouse","pointerout"!==e&&"pointerover"!==e||(c=Xi,m="onPointerLeave",g="onPointerEnter",p="pointer"),d=null==u?s:Yo(u),h=null==l?s:Yo(l),(s=new c(m,p+"leave",u,t,a)).target=d,s.relatedTarget=h,m=null,Io(a)===i&&((c=new c(g,p+"enter",l,t,a)).target=h,c.relatedTarget=d,m=c),d=m,u&&l)e:{for(g=l,p=0,h=c=u;h;h=so(h))p++;for(h=0,m=g;m;m=so(m))h++;for(;0<p-h;)c=so(c),p--;for(;0<h-p;)g=so(g),h--;for(;p--;){if(c===g||null!==g&&c===g.alternate)break e;c=so(c),g=so(g)}c=null}else c=null;null!==u&&uo(r,s,u,c,!1),null!==l&&null!==d&&uo(r,d,l,c,!0)}if("select"===(u=(s=i?Yo(i):window).nodeName&&s.nodeName.toLowerCase())||"input"===u&&"file"===s.type)var y=ca;else if(aa(s))if(da)y=ba;else{y=Ma;var f=fa}else(u=s.nodeName)&&"input"===u.toLowerCase()&&("checkbox"===s.type||"radio"===s.type)&&(y=ja);switch(y&&(y=y(e,i))?oa(r,y,t,a):(f&&f(e,s,i),"focusout"===e&&(f=s._wrapperState)&&f.controlled&&"number"===s.type&&mn(s,"number",s.value)),f=i?Yo(i):window,e){case"focusin":(aa(f)||"true"===f.contentEditable)&&(Ca=f,Ea=i,za=null);break;case"focusout":za=Ea=Ca=null;break;case"mousedown":Ia=!0;break;case"contextmenu":case"mouseup":case"dragend":Ia=!1,Aa(r,t,a);break;case"selectionchange":if(ka)break;case"keydown":case"keyup":Aa(r,t,a)}var M;if(Ri)e:{switch(e){case"compositionstart":var j="onCompositionStart";break e;case"compositionend":j="onCompositionEnd";break e;case"compositionupdate":j="onCompositionUpdate";break e}j=void 0}else ta?ea(e,t)&&(j="onCompositionEnd"):"keydown"===e&&229===t.keyCode&&(j="onCompositionStart");j&&(Vi&&"ko"!==t.locale&&(ta||"onCompositionStart"!==j?"onCompositionEnd"===j&&ta&&(M=mi()):(hi="value"in(gi=a)?gi.value:gi.textContent,ta=!0)),0<(f=ro(i,j)).length&&(j=new Ai(j,e,null,t,a),r.push({event:j,listeners:f}),M?j.data=M:null!==(M=na(t))&&(j.data=M))),(M=Ki?function(e,n){switch(e){case"compositionend":return na(n);case"keypress":return 32!==n.which?null:(qi=!0,$i);case"textInput":return(e=n.data)===$i&&qi?null:e;default:return null}}(e,t):function(e,n){if(ta)return"compositionend"===e||!Ri&&ea(e,n)?(e=mi(),pi=hi=gi=null,ta=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(n.ctrlKey||n.altKey||n.metaKey)||n.ctrlKey&&n.altKey){if(n.char&&1<n.char.length)return n.char;if(n.which)return String.fromCharCode(n.which)}return null;case"compositionend":return Vi&&"ko"!==n.locale?null:n.data}}(e,t))&&(0<(i=ro(i,"onBeforeInput")).length&&(a=new Ai("onBeforeInput","beforeinput",null,t,a),r.push({event:a,listeners:i}),a.data=M))}$a(r,n)})}function oo(e,n,t){return{instance:e,listener:n,currentTarget:t}}function ro(e,n){for(var t=n+"Capture",i=[];null!==e;){var a=e,o=a.stateNode;5===a.tag&&null!==o&&(a=o,null!=(o=Gn(e,t))&&i.unshift(oo(e,o,a)),null!=(o=Gn(e,n))&&i.push(oo(e,o,a))),e=e.return}return i}function so(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function uo(e,n,t,i,a){for(var o=n._reactName,r=[];null!==t&&t!==i;){var s=t,u=s.alternate,l=s.stateNode;if(null!==u&&u===i)break;5===s.tag&&null!==l&&(s=l,a?null!=(u=Gn(t,o))&&r.unshift(oo(t,u,s)):a||null!=(u=Gn(t,o))&&r.push(oo(t,u,s))),t=t.return}0!==r.length&&e.push({event:n,listeners:r})}var lo=/\r\n?/g,co=/\u0000|\uFFFD/g;function go(e){return("string"==typeof e?e:""+e).replace(lo,"\n").replace(co,"")}function ho(e,n,t){if(n=go(n),go(e)!==n&&t)throw Error(je(425))}function po(){}var mo=null,yo=null;function fo(e,n){return"textarea"===e||"noscript"===e||"string"==typeof n.children||"number"==typeof n.children||"object"==typeof n.dangerouslySetInnerHTML&&null!==n.dangerouslySetInnerHTML&&null!=n.dangerouslySetInnerHTML.__html}var Mo="function"==typeof setTimeout?setTimeout:void 0,jo="function"==typeof clearTimeout?clearTimeout:void 0,bo="function"==typeof Promise?Promise:void 0,wo="function"==typeof queueMicrotask?queueMicrotask:void 0!==bo?function(e){return bo.resolve(null).then(e).catch(xo)}:Mo;function xo(e){setTimeout(function(){throw e})}function Lo(e,n){var t=n,i=0;do{var a=t.nextSibling;if(e.removeChild(t),a&&8===a.nodeType)if("/$"===(t=a.data)){if(0===i)return e.removeChild(a),void ii(n);i--}else"$"!==t&&"$?"!==t&&"$!"!==t||i++;t=a}while(t);ii(n)}function No(e){for(;null!=e;e=e.nextSibling){var n=e.nodeType;if(1===n||3===n)break;if(8===n){if("$"===(n=e.data)||"$!"===n||"$?"===n)break;if("/$"===n)return null}}return e}function vo(e){e=e.previousSibling;for(var n=0;e;){if(8===e.nodeType){var t=e.data;if("$"===t||"$!"===t||"$?"===t){if(0===n)return e;n--}else"/$"===t&&n++}e=e.previousSibling}return null}var So=Math.random().toString(36).slice(2),To="__reactFiber$"+So,Do="__reactProps$"+So,ko="__reactContainer$"+So,Co="__reactEvents$"+So,Eo="__reactListeners$"+So,zo="__reactHandles$"+So;function Io(e){var n=e[To];if(n)return n;for(var t=e.parentNode;t;){if(n=t[ko]||t[To]){if(t=n.alternate,null!==n.child||null!==t&&null!==t.child)for(e=vo(e);null!==e;){if(t=e[To])return t;e=vo(e)}return n}t=(e=t).parentNode}return null}function Ao(e){return!(e=e[To]||e[ko])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function Yo(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(je(33))}function Oo(e){return e[Do]||null}var Qo=[],Zo=-1;function _o(e){return{current:e}}function Bo(e){0>Zo||(e.current=Qo[Zo],Qo[Zo]=null,Zo--)}function Fo(e,n){Zo++,Qo[Zo]=e.current,e.current=n}var Xo={},Uo=_o(Xo),Ho=_o(!1),Jo=Xo;function Po(e,n){var t=e.type.contextTypes;if(!t)return Xo;var i=e.stateNode;if(i&&i.__reactInternalMemoizedUnmaskedChildContext===n)return i.__reactInternalMemoizedMaskedChildContext;var a,o={};for(a in t)o[a]=n[a];return i&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=n,e.__reactInternalMemoizedMaskedChildContext=o),o}function Go(e){return null!=(e=e.childContextTypes)}function Ro(){Bo(Ho),Bo(Uo)}function Wo(e,n,t){if(Uo.current!==Xo)throw Error(je(168));Fo(Uo,n),Fo(Ho,t)}function Ko(e,n,t){var i=e.stateNode;if(n=n.childContextTypes,"function"!=typeof i.getChildContext)return t;for(var a in i=i.getChildContext())if(!(a in n))throw Error(je(108,an(e)||"Unknown",a));return Ve({},t,i)}function Vo(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Xo,Jo=Uo.current,Fo(Uo,e),Fo(Ho,Ho.current),!0}function $o(e,n,t){var i=e.stateNode;if(!i)throw Error(je(169));t?(e=Ko(e,n,Jo),i.__reactInternalMemoizedMergedChildContext=e,Bo(Ho),Bo(Uo),Fo(Uo,e)):Bo(Ho),Fo(Ho,t)}var qo=null,er=!1,nr=!1;function tr(e){null===qo?qo=[e]:qo.push(e)}function ir(){if(!nr&&null!==qo){nr=!0;var e=0,n=At;try{var t=qo;for(At=1;e<t.length;e++){var i=t[e];do{i=i(!0)}while(null!==i)}qo=null,er=!1}catch(n){throw null!==qo&&(qo=qo.slice(e+1)),ut(pt,ir),n}finally{At=n,nr=!1}}return null}var ar=[],or=0,rr=null,sr=0,ur=[],lr=0,cr=null,dr=1,gr="";function hr(e,n){ar[or++]=sr,ar[or++]=rr,rr=e,sr=n}function pr(e,n,t){ur[lr++]=dr,ur[lr++]=gr,ur[lr++]=cr,cr=e;var i=dr;e=gr;var a=32-wt(i)-1;i&=~(1<<a),t+=1;var o=32-wt(n)+a;if(30<o){var r=a-a%5;o=(i&(1<<r)-1).toString(32),i>>=r,a-=r,dr=1<<32-wt(n)+a|t<<a|i,gr=o+e}else dr=1<<o|t<<a|i,gr=e}function mr(e){null!==e.return&&(hr(e,1),pr(e,1,0))}function yr(e){for(;e===rr;)rr=ar[--or],ar[or]=null,sr=ar[--or],ar[or]=null;for(;e===cr;)cr=ur[--lr],ur[lr]=null,gr=ur[--lr],ur[lr]=null,dr=ur[--lr],ur[lr]=null}var fr=null,Mr=null,jr=!1,br=null;function wr(e,n){var t=Jc(5,null,null,0);t.elementType="DELETED",t.stateNode=n,t.return=e,null===(n=e.deletions)?(e.deletions=[t],e.flags|=16):n.push(t)}function xr(e,n){switch(e.tag){case 5:var t=e.type;return null!==(n=1!==n.nodeType||t.toLowerCase()!==n.nodeName.toLowerCase()?null:n)&&(e.stateNode=n,fr=e,Mr=No(n.firstChild),!0);case 6:return null!==(n=""===e.pendingProps||3!==n.nodeType?null:n)&&(e.stateNode=n,fr=e,Mr=null,!0);case 13:return null!==(n=8!==n.nodeType?null:n)&&(t=null!==cr?{id:dr,overflow:gr}:null,e.memoizedState={dehydrated:n,treeContext:t,retryLane:1073741824},(t=Jc(18,null,null,0)).stateNode=n,t.return=e,e.child=t,fr=e,Mr=null,!0);default:return!1}}function Lr(e){return!(!(1&e.mode)||128&e.flags)}function Nr(e){if(jr){var n=Mr;if(n){var t=n;if(!xr(e,n)){if(Lr(e))throw Error(je(418));n=No(t.nextSibling);var i=fr;n&&xr(e,n)?wr(i,t):(e.flags=-4097&e.flags|2,jr=!1,fr=e)}}else{if(Lr(e))throw Error(je(418));e.flags=-4097&e.flags|2,jr=!1,fr=e}}}function vr(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;fr=e}function Sr(e){if(e!==fr)return!1;if(!jr)return vr(e),jr=!0,!1;var n;if((n=3!==e.tag)&&!(n=5!==e.tag)&&(n="head"!==(n=e.type)&&"body"!==n&&!fo(e.type,e.memoizedProps)),n&&(n=Mr)){if(Lr(e))throw Tr(),Error(je(418));for(;n;)wr(e,n),n=No(n.nextSibling)}if(vr(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(je(317));e:{for(e=e.nextSibling,n=0;e;){if(8===e.nodeType){var t=e.data;if("/$"===t){if(0===n){Mr=No(e.nextSibling);break e}n--}else"$"!==t&&"$!"!==t&&"$?"!==t||n++}e=e.nextSibling}Mr=null}}else Mr=fr?No(e.stateNode.nextSibling):null;return!0}function Tr(){for(var e=Mr;e;)e=No(e.nextSibling)}function Dr(){Mr=fr=null,jr=!1}function kr(e){null===br?br=[e]:br.push(e)}var Cr=Ae.ReactCurrentBatchConfig;function Er(e,n,t){if(null!==(e=t.ref)&&"function"!=typeof e&&"object"!=typeof e){if(t._owner){if(t=t._owner){if(1!==t.tag)throw Error(je(309));var i=t.stateNode}if(!i)throw Error(je(147,e));var a=i,o=""+e;return null!==n&&null!==n.ref&&"function"==typeof n.ref&&n.ref._stringRef===o?n.ref:(n=function(e){var n=a.refs;null===e?delete n[o]:n[o]=e},n._stringRef=o,n)}if("string"!=typeof e)throw Error(je(284));if(!t._owner)throw Error(je(290,e))}return e}function zr(e,n){throw e=Object.prototype.toString.call(n),Error(je(31,"[object Object]"===e?"object with keys {"+Object.keys(n).join(", ")+"}":e))}function Ir(e){return(0,e._init)(e._payload)}function Ar(e){function n(n,t){if(e){var i=n.deletions;null===i?(n.deletions=[t],n.flags|=16):i.push(t)}}function t(t,i){if(!e)return null;for(;null!==i;)n(t,i),i=i.sibling;return null}function i(e,n){for(e=new Map;null!==n;)null!==n.key?e.set(n.key,n):e.set(n.index,n),n=n.sibling;return e}function a(e,n){return(e=Gc(e,n)).index=0,e.sibling=null,e}function o(n,t,i){return n.index=i,e?null!==(i=n.alternate)?(i=i.index)<t?(n.flags|=2,t):i:(n.flags|=2,t):(n.flags|=1048576,t)}function r(n){return e&&null===n.alternate&&(n.flags|=2),n}function s(e,n,t,i){return null===n||6!==n.tag?((n=Vc(t,e.mode,i)).return=e,n):((n=a(n,t)).return=e,n)}function u(e,n,t,i){var o=t.type;return o===Qe?c(e,n,t.props.children,i,t.key):null!==n&&(n.elementType===o||"object"==typeof o&&null!==o&&o.$$typeof===Pe&&Ir(o)===n.type)?((i=a(n,t.props)).ref=Er(e,n,t),i.return=e,i):((i=Rc(t.type,t.key,t.props,null,e.mode,i)).ref=Er(e,n,t),i.return=e,i)}function l(e,n,t,i){return null===n||4!==n.tag||n.stateNode.containerInfo!==t.containerInfo||n.stateNode.implementation!==t.implementation?((n=$c(t,e.mode,i)).return=e,n):((n=a(n,t.children||[])).return=e,n)}function c(e,n,t,i,o){return null===n||7!==n.tag?((n=Wc(t,e.mode,i,o)).return=e,n):((n=a(n,t)).return=e,n)}function d(e,n,t){if("string"==typeof n&&""!==n||"number"==typeof n)return(n=Vc(""+n,e.mode,t)).return=e,n;if("object"==typeof n&&null!==n){switch(n.$$typeof){case Ye:return(t=Rc(n.type,n.key,n.props,null,e.mode,t)).ref=Er(e,null,n),t.return=e,t;case Oe:return(n=$c(n,e.mode,t)).return=e,n;case Pe:return d(e,(0,n._init)(n._payload),t)}if(yn(n)||We(n))return(n=Wc(n,e.mode,t,null)).return=e,n;zr(e,n)}return null}function g(e,n,t,i){var a=null!==n?n.key:null;if("string"==typeof t&&""!==t||"number"==typeof t)return null!==a?null:s(e,n,""+t,i);if("object"==typeof t&&null!==t){switch(t.$$typeof){case Ye:return t.key===a?u(e,n,t,i):null;case Oe:return t.key===a?l(e,n,t,i):null;case Pe:return g(e,n,(a=t._init)(t._payload),i)}if(yn(t)||We(t))return null!==a?null:c(e,n,t,i,null);zr(e,t)}return null}function h(e,n,t,i,a){if("string"==typeof i&&""!==i||"number"==typeof i)return s(n,e=e.get(t)||null,""+i,a);if("object"==typeof i&&null!==i){switch(i.$$typeof){case Ye:return u(n,e=e.get(null===i.key?t:i.key)||null,i,a);case Oe:return l(n,e=e.get(null===i.key?t:i.key)||null,i,a);case Pe:return h(e,n,t,(0,i._init)(i._payload),a)}if(yn(i)||We(i))return c(n,e=e.get(t)||null,i,a,null);zr(n,i)}return null}function p(a,r,s,u){for(var l=null,c=null,p=r,m=r=0,y=null;null!==p&&m<s.length;m++){p.index>m?(y=p,p=null):y=p.sibling;var f=g(a,p,s[m],u);if(null===f){null===p&&(p=y);break}e&&p&&null===f.alternate&&n(a,p),r=o(f,r,m),null===c?l=f:c.sibling=f,c=f,p=y}if(m===s.length)return t(a,p),jr&&hr(a,m),l;if(null===p){for(;m<s.length;m++)null!==(p=d(a,s[m],u))&&(r=o(p,r,m),null===c?l=p:c.sibling=p,c=p);return jr&&hr(a,m),l}for(p=i(a,p);m<s.length;m++)null!==(y=h(p,a,m,s[m],u))&&(e&&null!==y.alternate&&p.delete(null===y.key?m:y.key),r=o(y,r,m),null===c?l=y:c.sibling=y,c=y);return e&&p.forEach(function(e){return n(a,e)}),jr&&hr(a,m),l}function m(a,r,s,u){var l=We(s);if("function"!=typeof l)throw Error(je(150));if(null==(s=l.call(s)))throw Error(je(151));for(var c=l=null,p=r,m=r=0,y=null,f=s.next();null!==p&&!f.done;m++,f=s.next()){p.index>m?(y=p,p=null):y=p.sibling;var M=g(a,p,f.value,u);if(null===M){null===p&&(p=y);break}e&&p&&null===M.alternate&&n(a,p),r=o(M,r,m),null===c?l=M:c.sibling=M,c=M,p=y}if(f.done)return t(a,p),jr&&hr(a,m),l;if(null===p){for(;!f.done;m++,f=s.next())null!==(f=d(a,f.value,u))&&(r=o(f,r,m),null===c?l=f:c.sibling=f,c=f);return jr&&hr(a,m),l}for(p=i(a,p);!f.done;m++,f=s.next())null!==(f=h(p,a,m,f.value,u))&&(e&&null!==f.alternate&&p.delete(null===f.key?m:f.key),r=o(f,r,m),null===c?l=f:c.sibling=f,c=f);return e&&p.forEach(function(e){return n(a,e)}),jr&&hr(a,m),l}return function e(i,o,s,u){if("object"==typeof s&&null!==s&&s.type===Qe&&null===s.key&&(s=s.props.children),"object"==typeof s&&null!==s){switch(s.$$typeof){case Ye:e:{for(var l=s.key,c=o;null!==c;){if(c.key===l){if((l=s.type)===Qe){if(7===c.tag){t(i,c.sibling),(o=a(c,s.props.children)).return=i,i=o;break e}}else if(c.elementType===l||"object"==typeof l&&null!==l&&l.$$typeof===Pe&&Ir(l)===c.type){t(i,c.sibling),(o=a(c,s.props)).ref=Er(i,c,s),o.return=i,i=o;break e}t(i,c);break}n(i,c),c=c.sibling}s.type===Qe?((o=Wc(s.props.children,i.mode,u,s.key)).return=i,i=o):((u=Rc(s.type,s.key,s.props,null,i.mode,u)).ref=Er(i,o,s),u.return=i,i=u)}return r(i);case Oe:e:{for(c=s.key;null!==o;){if(o.key===c){if(4===o.tag&&o.stateNode.containerInfo===s.containerInfo&&o.stateNode.implementation===s.implementation){t(i,o.sibling),(o=a(o,s.children||[])).return=i,i=o;break e}t(i,o);break}n(i,o),o=o.sibling}(o=$c(s,i.mode,u)).return=i,i=o}return r(i);case Pe:return e(i,o,(c=s._init)(s._payload),u)}if(yn(s))return p(i,o,s,u);if(We(s))return m(i,o,s,u);zr(i,s)}return"string"==typeof s&&""!==s||"number"==typeof s?(s=""+s,null!==o&&6===o.tag?(t(i,o.sibling),(o=a(o,s)).return=i,i=o):(t(i,o),(o=Vc(s,i.mode,u)).return=i,i=o),r(i)):t(i,o)}}var Yr=Ar(!0),Or=Ar(!1),Qr=_o(null),Zr=null,_r=null,Br=null;function Fr(){Br=_r=Zr=null}function Xr(e){var n=Qr.current;Bo(Qr),e._currentValue=n}function Ur(e,n,t){for(;null!==e;){var i=e.alternate;if((e.childLanes&n)!==n?(e.childLanes|=n,null!==i&&(i.childLanes|=n)):null!==i&&(i.childLanes&n)!==n&&(i.childLanes|=n),e===t)break;e=e.return}}function Hr(e,n){Zr=e,Br=_r=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!==(e.lanes&n)&&(Iu=!0),e.firstContext=null)}function Jr(e){var n=e._currentValue;if(Br!==e)if(e={context:e,memoizedValue:n,next:null},null===_r){if(null===Zr)throw Error(je(308));_r=e,Zr.dependencies={lanes:0,firstContext:e}}else _r=_r.next=e;return n}var Pr=null;function Gr(e){null===Pr?Pr=[e]:Pr.push(e)}function Rr(e,n,t,i){var a=n.interleaved;return null===a?(t.next=t,Gr(n)):(t.next=a.next,a.next=t),n.interleaved=t,Wr(e,i)}function Wr(e,n){e.lanes|=n;var t=e.alternate;for(null!==t&&(t.lanes|=n),t=e,e=e.return;null!==e;)e.childLanes|=n,null!==(t=e.alternate)&&(t.childLanes|=n),t=e,e=e.return;return 3===t.tag?t.stateNode:null}var Kr=!1;function Vr(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function $r(e,n){e=e.updateQueue,n.updateQueue===e&&(n.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function qr(e,n){return{eventTime:e,lane:n,tag:0,payload:null,callback:null,next:null}}function es(e,n,t){var i=e.updateQueue;if(null===i)return null;if(i=i.shared,2&Xl){var a=i.pending;return null===a?n.next=n:(n.next=a.next,a.next=n),i.pending=n,Wr(e,t)}return null===(a=i.interleaved)?(n.next=n,Gr(i)):(n.next=a.next,a.next=n),i.interleaved=n,Wr(e,t)}function ns(e,n,t){if(null!==(n=n.updateQueue)&&(n=n.shared,4194240&t)){var i=n.lanes;t|=i&=e.pendingLanes,n.lanes=t,It(e,t)}}function ts(e,n){var t=e.updateQueue,i=e.alternate;if(null!==i&&t===(i=i.updateQueue)){var a=null,o=null;if(null!==(t=t.firstBaseUpdate)){do{var r={eventTime:t.eventTime,lane:t.lane,tag:t.tag,payload:t.payload,callback:t.callback,next:null};null===o?a=o=r:o=o.next=r,t=t.next}while(null!==t);null===o?a=o=n:o=o.next=n}else a=o=n;return t={baseState:i.baseState,firstBaseUpdate:a,lastBaseUpdate:o,shared:i.shared,effects:i.effects},void(e.updateQueue=t)}null===(e=t.lastBaseUpdate)?t.firstBaseUpdate=n:e.next=n,t.lastBaseUpdate=n}function is(e,n,t,i){var a=e.updateQueue;Kr=!1;var o=a.firstBaseUpdate,r=a.lastBaseUpdate,s=a.shared.pending;if(null!==s){a.shared.pending=null;var u=s,l=u.next;u.next=null,null===r?o=l:r.next=l,r=u;var c=e.alternate;null!==c&&((s=(c=c.updateQueue).lastBaseUpdate)!==r&&(null===s?c.firstBaseUpdate=l:s.next=l,c.lastBaseUpdate=u))}if(null!==o){var d=a.baseState;for(r=0,c=l=u=null,s=o;;){var g=s.lane,h=s.eventTime;if((i&g)===g){null!==c&&(c=c.next={eventTime:h,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});e:{var p=e,m=s;switch(g=n,h=t,m.tag){case 1:if("function"==typeof(p=m.payload)){d=p.call(h,d,g);break e}d=p;break e;case 3:p.flags=-65537&p.flags|128;case 0:if(null==(g="function"==typeof(p=m.payload)?p.call(h,d,g):p))break e;d=Ve({},d,g);break e;case 2:Kr=!0}}null!==s.callback&&0!==s.lane&&(e.flags|=64,null===(g=a.effects)?a.effects=[s]:g.push(s))}else h={eventTime:h,lane:g,tag:s.tag,payload:s.payload,callback:s.callback,next:null},null===c?(l=c=h,u=d):c=c.next=h,r|=g;if(null===(s=s.next)){if(null===(s=a.shared.pending))break;s=(g=s).next,g.next=null,a.lastBaseUpdate=g,a.shared.pending=null}}if(null===c&&(u=d),a.baseState=u,a.firstBaseUpdate=l,a.lastBaseUpdate=c,null!==(n=a.shared.interleaved)){a=n;do{r|=a.lane,a=a.next}while(a!==n)}else null===o&&(a.shared.lanes=0);Kl|=r,e.lanes=r,e.memoizedState=d}}function as(e,n,t){if(e=n.effects,n.effects=null,null!==e)for(n=0;n<e.length;n++){var i=e[n],a=i.callback;if(null!==a){if(i.callback=null,i=t,"function"!=typeof a)throw Error(je(191,a));a.call(i)}}}var os={},rs=_o(os),ss=_o(os),us=_o(os);function ls(e){if(e===os)throw Error(je(174));return e}function cs(e,n){switch(Fo(us,n),Fo(ss,e),Fo(rs,os),e=n.nodeType){case 9:case 11:n=(n=n.documentElement)?n.namespaceURI:Ln(null,"");break;default:n=Ln(n=(e=8===e?n.parentNode:n).namespaceURI||null,e=e.tagName)}Bo(rs),Fo(rs,n)}function ds(){Bo(rs),Bo(ss),Bo(us)}function gs(e){ls(us.current);var n=ls(rs.current),t=Ln(n,e.type);n!==t&&(Fo(ss,e),Fo(rs,t))}function hs(e){ss.current===e&&(Bo(rs),Bo(ss))}var ps=_o(0);function ms(e){for(var n=e;null!==n;){if(13===n.tag){var t=n.memoizedState;if(null!==t&&(null===(t=t.dehydrated)||"$?"===t.data||"$!"===t.data))return n}else if(19===n.tag&&void 0!==n.memoizedProps.revealOrder){if(128&n.flags)return n}else if(null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}return null}var ys=[];function fs(){for(var e=0;e<ys.length;e++)ys[e]._workInProgressVersionPrimary=null;ys.length=0}var Ms=Ae.ReactCurrentDispatcher,js=Ae.ReactCurrentBatchConfig,bs=0,ws=null,xs=null,Ls=null,Ns=!1,vs=!1,Ss=0,Ts=0;function Ds(){throw Error(je(321))}function ks(e,n){if(null===n)return!1;for(var t=0;t<n.length&&t<e.length;t++)if(!wa(e[t],n[t]))return!1;return!0}function Cs(e,n,t,i,a,o){if(bs=o,ws=n,n.memoizedState=null,n.updateQueue=null,n.lanes=0,Ms.current=null===e||null===e.memoizedState?hu:pu,e=t(i,a),vs){o=0;do{if(vs=!1,Ss=0,25<=o)throw Error(je(301));o+=1,Ls=xs=null,n.updateQueue=null,Ms.current=mu,e=t(i,a)}while(vs)}if(Ms.current=gu,n=null!==xs&&null!==xs.next,bs=0,Ls=xs=ws=null,Ns=!1,n)throw Error(je(300));return e}function Es(){var e=0!==Ss;return Ss=0,e}function zs(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===Ls?ws.memoizedState=Ls=e:Ls=Ls.next=e,Ls}function Is(){if(null===xs){var e=ws.alternate;e=null!==e?e.memoizedState:null}else e=xs.next;var n=null===Ls?ws.memoizedState:Ls.next;if(null!==n)Ls=n,xs=e;else{if(null===e)throw Error(je(310));e={memoizedState:(xs=e).memoizedState,baseState:xs.baseState,baseQueue:xs.baseQueue,queue:xs.queue,next:null},null===Ls?ws.memoizedState=Ls=e:Ls=Ls.next=e}return Ls}function As(e,n){return"function"==typeof n?n(e):n}function Ys(e){var n=Is(),t=n.queue;if(null===t)throw Error(je(311));t.lastRenderedReducer=e;var i=xs,a=i.baseQueue,o=t.pending;if(null!==o){if(null!==a){var r=a.next;a.next=o.next,o.next=r}i.baseQueue=a=o,t.pending=null}if(null!==a){o=a.next,i=i.baseState;var s=r=null,u=null,l=o;do{var c=l.lane;if((bs&c)===c)null!==u&&(u=u.next={lane:0,action:l.action,hasEagerState:l.hasEagerState,eagerState:l.eagerState,next:null}),i=l.hasEagerState?l.eagerState:e(i,l.action);else{var d={lane:c,action:l.action,hasEagerState:l.hasEagerState,eagerState:l.eagerState,next:null};null===u?(s=u=d,r=i):u=u.next=d,ws.lanes|=c,Kl|=c}l=l.next}while(null!==l&&l!==o);null===u?r=i:u.next=s,wa(i,n.memoizedState)||(Iu=!0),n.memoizedState=i,n.baseState=r,n.baseQueue=u,t.lastRenderedState=i}if(null!==(e=t.interleaved)){a=e;do{o=a.lane,ws.lanes|=o,Kl|=o,a=a.next}while(a!==e)}else null===a&&(t.lanes=0);return[n.memoizedState,t.dispatch]}function Os(e){var n=Is(),t=n.queue;if(null===t)throw Error(je(311));t.lastRenderedReducer=e;var i=t.dispatch,a=t.pending,o=n.memoizedState;if(null!==a){t.pending=null;var r=a=a.next;do{o=e(o,r.action),r=r.next}while(r!==a);wa(o,n.memoizedState)||(Iu=!0),n.memoizedState=o,null===n.baseQueue&&(n.baseState=o),t.lastRenderedState=o}return[o,i]}function Qs(){}function Zs(e,n){var t=ws,i=Is(),a=n(),o=!wa(i.memoizedState,a);if(o&&(i.memoizedState=a,Iu=!0),i=i.queue,Ks(Fs.bind(null,t,i,e),[e]),i.getSnapshot!==n||o||null!==Ls&&1&Ls.memoizedState.tag){if(t.flags|=2048,Js(9,Bs.bind(null,t,i,a,n),void 0,null),null===Ul)throw Error(je(349));30&bs||_s(t,n,a)}return a}function _s(e,n,t){e.flags|=16384,e={getSnapshot:n,value:t},null===(n=ws.updateQueue)?(n={lastEffect:null,stores:null},ws.updateQueue=n,n.stores=[e]):null===(t=n.stores)?n.stores=[e]:t.push(e)}function Bs(e,n,t,i){n.value=t,n.getSnapshot=i,Xs(n)&&Us(e)}function Fs(e,n,t){return t(function(){Xs(n)&&Us(e)})}function Xs(e){var n=e.getSnapshot;e=e.value;try{var t=n();return!wa(e,t)}catch(e){return!0}}function Us(e){var n=Wr(e,1);null!==n&&yc(n,e,1,-1)}function Hs(e){var n=zs();return"function"==typeof e&&(e=e()),n.memoizedState=n.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:As,lastRenderedState:e},n.queue=e,e=e.dispatch=uu.bind(null,ws,e),[n.memoizedState,e]}function Js(e,n,t,i){return e={tag:e,create:n,destroy:t,deps:i,next:null},null===(n=ws.updateQueue)?(n={lastEffect:null,stores:null},ws.updateQueue=n,n.lastEffect=e.next=e):null===(t=n.lastEffect)?n.lastEffect=e.next=e:(i=t.next,t.next=e,e.next=i,n.lastEffect=e),e}function Ps(){return Is().memoizedState}function Gs(e,n,t,i){var a=zs();ws.flags|=e,a.memoizedState=Js(1|n,t,void 0,void 0===i?null:i)}function Rs(e,n,t,i){var a=Is();i=void 0===i?null:i;var o=void 0;if(null!==xs){var r=xs.memoizedState;if(o=r.destroy,null!==i&&ks(i,r.deps))return void(a.memoizedState=Js(n,t,o,i))}ws.flags|=e,a.memoizedState=Js(1|n,t,o,i)}function Ws(e,n){return Gs(8390656,8,e,n)}function Ks(e,n){return Rs(2048,8,e,n)}function Vs(e,n){return Rs(4,2,e,n)}function $s(e,n){return Rs(4,4,e,n)}function qs(e,n){return"function"==typeof n?(e=e(),n(e),function(){n(null)}):null!=n?(e=e(),n.current=e,function(){n.current=null}):void 0}function eu(e,n,t){return t=null!=t?t.concat([e]):null,Rs(4,4,qs.bind(null,n,e),t)}function nu(){}function tu(e,n){var t=Is();n=void 0===n?null:n;var i=t.memoizedState;return null!==i&&null!==n&&ks(n,i[1])?i[0]:(t.memoizedState=[e,n],e)}function iu(e,n){var t=Is();n=void 0===n?null:n;var i=t.memoizedState;return null!==i&&null!==n&&ks(n,i[1])?i[0]:(e=e(),t.memoizedState=[e,n],e)}function au(e,n,t){return 21&bs?(wa(t,n)||(t=Ct(),ws.lanes|=t,Kl|=t,e.baseState=!0),n):(e.baseState&&(e.baseState=!1,Iu=!0),e.memoizedState=t)}function ou(e,n){var t=At;At=0!==t&&4>t?t:4,e(!0);var i=js.transition;js.transition={};try{e(!1),n()}finally{At=t,js.transition=i}}function ru(){return Is().memoizedState}function su(e,n,t){var i=mc(e);if(t={lane:i,action:t,hasEagerState:!1,eagerState:null,next:null},lu(e))cu(n,t);else if(null!==(t=Rr(e,n,t,i))){yc(t,e,i,pc()),du(t,n,i)}}function uu(e,n,t){var i=mc(e),a={lane:i,action:t,hasEagerState:!1,eagerState:null,next:null};if(lu(e))cu(n,a);else{var o=e.alternate;if(0===e.lanes&&(null===o||0===o.lanes)&&null!==(o=n.lastRenderedReducer))try{var r=n.lastRenderedState,s=o(r,t);if(a.hasEagerState=!0,a.eagerState=s,wa(s,r)){var u=n.interleaved;return null===u?(a.next=a,Gr(n)):(a.next=u.next,u.next=a),void(n.interleaved=a)}}catch(e){}null!==(t=Rr(e,n,a,i))&&(yc(t,e,i,a=pc()),du(t,n,i))}}function lu(e){var n=e.alternate;return e===ws||null!==n&&n===ws}function cu(e,n){vs=Ns=!0;var t=e.pending;null===t?n.next=n:(n.next=t.next,t.next=n),e.pending=n}function du(e,n,t){if(4194240&t){var i=n.lanes;t|=i&=e.pendingLanes,n.lanes=t,It(e,t)}}var gu={readContext:Jr,useCallback:Ds,useContext:Ds,useEffect:Ds,useImperativeHandle:Ds,useInsertionEffect:Ds,useLayoutEffect:Ds,useMemo:Ds,useReducer:Ds,useRef:Ds,useState:Ds,useDebugValue:Ds,useDeferredValue:Ds,useTransition:Ds,useMutableSource:Ds,useSyncExternalStore:Ds,useId:Ds,unstable_isNewReconciler:!1},hu={readContext:Jr,useCallback:function(e,n){return zs().memoizedState=[e,void 0===n?null:n],e},useContext:Jr,useEffect:Ws,useImperativeHandle:function(e,n,t){return t=null!=t?t.concat([e]):null,Gs(4194308,4,qs.bind(null,n,e),t)},useLayoutEffect:function(e,n){return Gs(4194308,4,e,n)},useInsertionEffect:function(e,n){return Gs(4,2,e,n)},useMemo:function(e,n){var t=zs();return n=void 0===n?null:n,e=e(),t.memoizedState=[e,n],e},useReducer:function(e,n,t){var i=zs();return n=void 0!==t?t(n):n,i.memoizedState=i.baseState=n,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:n},i.queue=e,e=e.dispatch=su.bind(null,ws,e),[i.memoizedState,e]},useRef:function(e){return e={current:e},zs().memoizedState=e},useState:Hs,useDebugValue:nu,useDeferredValue:function(e){return zs().memoizedState=e},useTransition:function(){var e=Hs(!1),n=e[0];return e=ou.bind(null,e[1]),zs().memoizedState=e,[n,e]},useMutableSource:function(){},useSyncExternalStore:function(e,n,t){var i=ws,a=zs();if(jr){if(void 0===t)throw Error(je(407));t=t()}else{if(t=n(),null===Ul)throw Error(je(349));30&bs||_s(i,n,t)}a.memoizedState=t;var o={value:t,getSnapshot:n};return a.queue=o,Ws(Fs.bind(null,i,o,e),[e]),i.flags|=2048,Js(9,Bs.bind(null,i,o,t,n),void 0,null),t},useId:function(){var e=zs(),n=Ul.identifierPrefix;if(jr){var t=gr;n=":"+n+"R"+(t=(dr&~(1<<32-wt(dr)-1)).toString(32)+t),0<(t=Ss++)&&(n+="H"+t.toString(32)),n+=":"}else n=":"+n+"r"+(t=Ts++).toString(32)+":";return e.memoizedState=n},unstable_isNewReconciler:!1},pu={readContext:Jr,useCallback:tu,useContext:Jr,useEffect:Ks,useImperativeHandle:eu,useInsertionEffect:Vs,useLayoutEffect:$s,useMemo:iu,useReducer:Ys,useRef:Ps,useState:function(){return Ys(As)},useDebugValue:nu,useDeferredValue:function(e){return au(Is(),xs.memoizedState,e)},useTransition:function(){return[Ys(As)[0],Is().memoizedState]},useMutableSource:Qs,useSyncExternalStore:Zs,useId:ru,unstable_isNewReconciler:!1},mu={readContext:Jr,useCallback:tu,useContext:Jr,useEffect:Ks,useImperativeHandle:eu,useInsertionEffect:Vs,useLayoutEffect:$s,useMemo:iu,useReducer:Os,useRef:Ps,useState:function(){return Os(As)},useDebugValue:nu,useDeferredValue:function(e){var n=Is();return null===xs?n.memoizedState=e:au(n,xs.memoizedState,e)},useTransition:function(){return[Os(As)[0],Is().memoizedState]},useMutableSource:Qs,useSyncExternalStore:Zs,useId:ru,unstable_isNewReconciler:!1};function yu(e,n){if(e&&e.defaultProps){for(var t in n=Ve({},n),e=e.defaultProps)void 0===n[t]&&(n[t]=e[t]);return n}return n}function fu(e,n,t,i){t=null==(t=t(i,n=e.memoizedState))?n:Ve({},n,t),e.memoizedState=t,0===e.lanes&&(e.updateQueue.baseState=t)}var Mu={isMounted:function(e){return!!(e=e._reactInternals)&&it(e)===e},enqueueSetState:function(e,n,t){e=e._reactInternals;var i=pc(),a=mc(e),o=qr(i,a);o.payload=n,null!=t&&(o.callback=t),null!==(n=es(e,o,a))&&(yc(n,e,a,i),ns(n,e,a))},enqueueReplaceState:function(e,n,t){e=e._reactInternals;var i=pc(),a=mc(e),o=qr(i,a);o.tag=1,o.payload=n,null!=t&&(o.callback=t),null!==(n=es(e,o,a))&&(yc(n,e,a,i),ns(n,e,a))},enqueueForceUpdate:function(e,n){e=e._reactInternals;var t=pc(),i=mc(e),a=qr(t,i);a.tag=2,null!=n&&(a.callback=n),null!==(n=es(e,a,i))&&(yc(n,e,i,t),ns(n,e,i))}};function ju(e,n,t,i,a,o,r){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(i,o,r):!n.prototype||!n.prototype.isPureReactComponent||(!xa(t,i)||!xa(a,o))}function bu(e,n,t){var i=!1,a=Xo,o=n.contextType;return"object"==typeof o&&null!==o?o=Jr(o):(a=Go(n)?Jo:Uo.current,o=(i=null!=(i=n.contextTypes))?Po(e,a):Xo),n=new n(t,o),e.memoizedState=null!==n.state&&void 0!==n.state?n.state:null,n.updater=Mu,e.stateNode=n,n._reactInternals=e,i&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=a,e.__reactInternalMemoizedMaskedChildContext=o),n}function wu(e,n,t,i){e=n.state,"function"==typeof n.componentWillReceiveProps&&n.componentWillReceiveProps(t,i),"function"==typeof n.UNSAFE_componentWillReceiveProps&&n.UNSAFE_componentWillReceiveProps(t,i),n.state!==e&&Mu.enqueueReplaceState(n,n.state,null)}function xu(e,n,t,i){var a=e.stateNode;a.props=t,a.state=e.memoizedState,a.refs={},Vr(e);var o=n.contextType;"object"==typeof o&&null!==o?a.context=Jr(o):(o=Go(n)?Jo:Uo.current,a.context=Po(e,o)),a.state=e.memoizedState,"function"==typeof(o=n.getDerivedStateFromProps)&&(fu(e,n,o,t),a.state=e.memoizedState),"function"==typeof n.getDerivedStateFromProps||"function"==typeof a.getSnapshotBeforeUpdate||"function"!=typeof a.UNSAFE_componentWillMount&&"function"!=typeof a.componentWillMount||(n=a.state,"function"==typeof a.componentWillMount&&a.componentWillMount(),"function"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount(),n!==a.state&&Mu.enqueueReplaceState(a,a.state,null),is(e,t,a,i),a.state=e.memoizedState),"function"==typeof a.componentDidMount&&(e.flags|=4194308)}function Lu(e,n){try{var t="",i=n;do{t+=nn(i),i=i.return}while(i);var a=t}catch(e){a="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:n,stack:a,digest:null}}function Nu(e,n,t){return{value:e,source:null,stack:null!=t?t:null,digest:null!=n?n:null}}function vu(e,n){try{console.error(n.value)}catch(e){setTimeout(function(){throw e})}}var Su="function"==typeof WeakMap?WeakMap:Map;function Tu(e,n,t){(t=qr(-1,t)).tag=3,t.payload={element:null};var i=n.value;return t.callback=function(){ac||(ac=!0,oc=i),vu(0,n)},t}function Du(e,n,t){(t=qr(-1,t)).tag=3;var i=e.type.getDerivedStateFromError;if("function"==typeof i){var a=n.value;t.payload=function(){return i(a)},t.callback=function(){vu(0,n)}}var o=e.stateNode;return null!==o&&"function"==typeof o.componentDidCatch&&(t.callback=function(){vu(0,n),"function"!=typeof i&&(null===rc?rc=new Set([this]):rc.add(this));var e=n.stack;this.componentDidCatch(n.value,{componentStack:null!==e?e:""})}),t}function ku(e,n,t){var i=e.pingCache;if(null===i){i=e.pingCache=new Su;var a=new Set;i.set(n,a)}else void 0===(a=i.get(n))&&(a=new Set,i.set(n,a));a.has(t)||(a.add(t),e=_c.bind(null,e,n,t),n.then(e,e))}function Cu(e){do{var n;if((n=13===e.tag)&&(n=null===(n=e.memoizedState)||null!==n.dehydrated),n)return e;e=e.return}while(null!==e);return null}function Eu(e,n,t,i,a){return 1&e.mode?(e.flags|=65536,e.lanes=a,e):(e===n?e.flags|=65536:(e.flags|=128,t.flags|=131072,t.flags&=-52805,1===t.tag&&(null===t.alternate?t.tag=17:((n=qr(-1,1)).tag=2,es(t,n,1))),t.lanes|=1),e)}var zu=Ae.ReactCurrentOwner,Iu=!1;function Au(e,n,t,i){n.child=null===e?Or(n,null,t,i):Yr(n,e.child,t,i)}function Yu(e,n,t,i,a){t=t.render;var o=n.ref;return Hr(n,a),i=Cs(e,n,t,i,o,a),t=Es(),null===e||Iu?(jr&&t&&mr(n),n.flags|=1,Au(e,n,i,a),n.child):(n.updateQueue=e.updateQueue,n.flags&=-2053,e.lanes&=~a,al(e,n,a))}function Ou(e,n,t,i,a){if(null===e){var o=t.type;return"function"!=typeof o||Pc(o)||void 0!==o.defaultProps||null!==t.compare||void 0!==t.defaultProps?((e=Rc(t.type,null,i,n,n.mode,a)).ref=n.ref,e.return=n,n.child=e):(n.tag=15,n.type=o,Qu(e,n,o,i,a))}if(o=e.child,0===(e.lanes&a)){var r=o.memoizedProps;if((t=null!==(t=t.compare)?t:xa)(r,i)&&e.ref===n.ref)return al(e,n,a)}return n.flags|=1,(e=Gc(o,i)).ref=n.ref,e.return=n,n.child=e}function Qu(e,n,t,i,a){if(null!==e){var o=e.memoizedProps;if(xa(o,i)&&e.ref===n.ref){if(Iu=!1,n.pendingProps=i=o,0===(e.lanes&a))return n.lanes=e.lanes,al(e,n,a);131072&e.flags&&(Iu=!0)}}return Bu(e,n,t,i,a)}function Zu(e,n,t){var i=n.pendingProps,a=i.children,o=null!==e?e.memoizedState:null;if("hidden"===i.mode)if(1&n.mode){if(!(1073741824&t))return e=null!==o?o.baseLanes|t:t,n.lanes=n.childLanes=1073741824,n.memoizedState={baseLanes:e,cachePool:null,transitions:null},n.updateQueue=null,Fo(Gl,Pl),Pl|=e,null;n.memoizedState={baseLanes:0,cachePool:null,transitions:null},i=null!==o?o.baseLanes:t,Fo(Gl,Pl),Pl|=i}else n.memoizedState={baseLanes:0,cachePool:null,transitions:null},Fo(Gl,Pl),Pl|=t;else null!==o?(i=o.baseLanes|t,n.memoizedState=null):i=t,Fo(Gl,Pl),Pl|=i;return Au(e,n,a,t),n.child}function _u(e,n){var t=n.ref;(null===e&&null!==t||null!==e&&e.ref!==t)&&(n.flags|=512,n.flags|=2097152)}function Bu(e,n,t,i,a){var o=Go(t)?Jo:Uo.current;return o=Po(n,o),Hr(n,a),t=Cs(e,n,t,i,o,a),i=Es(),null===e||Iu?(jr&&i&&mr(n),n.flags|=1,Au(e,n,t,a),n.child):(n.updateQueue=e.updateQueue,n.flags&=-2053,e.lanes&=~a,al(e,n,a))}function Fu(e,n,t,i,a){if(Go(t)){var o=!0;Vo(n)}else o=!1;if(Hr(n,a),null===n.stateNode)il(e,n),bu(n,t,i),xu(n,t,i,a),i=!0;else if(null===e){var r=n.stateNode,s=n.memoizedProps;r.props=s;var u=r.context,l=t.contextType;"object"==typeof l&&null!==l?l=Jr(l):l=Po(n,l=Go(t)?Jo:Uo.current);var c=t.getDerivedStateFromProps,d="function"==typeof c||"function"==typeof r.getSnapshotBeforeUpdate;d||"function"!=typeof r.UNSAFE_componentWillReceiveProps&&"function"!=typeof r.componentWillReceiveProps||(s!==i||u!==l)&&wu(n,r,i,l),Kr=!1;var g=n.memoizedState;r.state=g,is(n,i,r,a),u=n.memoizedState,s!==i||g!==u||Ho.current||Kr?("function"==typeof c&&(fu(n,t,c,i),u=n.memoizedState),(s=Kr||ju(n,t,s,i,g,u,l))?(d||"function"!=typeof r.UNSAFE_componentWillMount&&"function"!=typeof r.componentWillMount||("function"==typeof r.componentWillMount&&r.componentWillMount(),"function"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount()),"function"==typeof r.componentDidMount&&(n.flags|=4194308)):("function"==typeof r.componentDidMount&&(n.flags|=4194308),n.memoizedProps=i,n.memoizedState=u),r.props=i,r.state=u,r.context=l,i=s):("function"==typeof r.componentDidMount&&(n.flags|=4194308),i=!1)}else{r=n.stateNode,$r(e,n),s=n.memoizedProps,l=n.type===n.elementType?s:yu(n.type,s),r.props=l,d=n.pendingProps,g=r.context,"object"==typeof(u=t.contextType)&&null!==u?u=Jr(u):u=Po(n,u=Go(t)?Jo:Uo.current);var h=t.getDerivedStateFromProps;(c="function"==typeof h||"function"==typeof r.getSnapshotBeforeUpdate)||"function"!=typeof r.UNSAFE_componentWillReceiveProps&&"function"!=typeof r.componentWillReceiveProps||(s!==d||g!==u)&&wu(n,r,i,u),Kr=!1,g=n.memoizedState,r.state=g,is(n,i,r,a);var p=n.memoizedState;s!==d||g!==p||Ho.current||Kr?("function"==typeof h&&(fu(n,t,h,i),p=n.memoizedState),(l=Kr||ju(n,t,l,i,g,p,u)||!1)?(c||"function"!=typeof r.UNSAFE_componentWillUpdate&&"function"!=typeof r.componentWillUpdate||("function"==typeof r.componentWillUpdate&&r.componentWillUpdate(i,p,u),"function"==typeof r.UNSAFE_componentWillUpdate&&r.UNSAFE_componentWillUpdate(i,p,u)),"function"==typeof r.componentDidUpdate&&(n.flags|=4),"function"==typeof r.getSnapshotBeforeUpdate&&(n.flags|=1024)):("function"!=typeof r.componentDidUpdate||s===e.memoizedProps&&g===e.memoizedState||(n.flags|=4),"function"!=typeof r.getSnapshotBeforeUpdate||s===e.memoizedProps&&g===e.memoizedState||(n.flags|=1024),n.memoizedProps=i,n.memoizedState=p),r.props=i,r.state=p,r.context=u,i=l):("function"!=typeof r.componentDidUpdate||s===e.memoizedProps&&g===e.memoizedState||(n.flags|=4),"function"!=typeof r.getSnapshotBeforeUpdate||s===e.memoizedProps&&g===e.memoizedState||(n.flags|=1024),i=!1)}return Xu(e,n,t,i,o,a)}function Xu(e,n,t,i,a,o){_u(e,n);var r=!!(128&n.flags);if(!i&&!r)return a&&$o(n,t,!1),al(e,n,o);i=n.stateNode,zu.current=n;var s=r&&"function"!=typeof t.getDerivedStateFromError?null:i.render();return n.flags|=1,null!==e&&r?(n.child=Yr(n,e.child,null,o),n.child=Yr(n,null,s,o)):Au(e,n,s,o),n.memoizedState=i.state,a&&$o(n,t,!0),n.child}function Uu(e){var n=e.stateNode;n.pendingContext?Wo(0,n.pendingContext,n.pendingContext!==n.context):n.context&&Wo(0,n.context,!1),cs(e,n.containerInfo)}function Hu(e,n,t,i,a){return Dr(),kr(a),n.flags|=256,Au(e,n,t,i),n.child}var Ju,Pu,Gu,Ru,Wu={dehydrated:null,treeContext:null,retryLane:0};function Ku(e){return{baseLanes:e,cachePool:null,transitions:null}}function Vu(e,n,t){var i,a=n.pendingProps,o=ps.current,r=!1,s=!!(128&n.flags);if((i=s)||(i=(null===e||null!==e.memoizedState)&&!!(2&o)),i?(r=!0,n.flags&=-129):null!==e&&null===e.memoizedState||(o|=1),Fo(ps,1&o),null===e)return Nr(n),null!==(e=n.memoizedState)&&null!==(e=e.dehydrated)?(1&n.mode?"$!"===e.data?n.lanes=8:n.lanes=1073741824:n.lanes=1,null):(s=a.children,e=a.fallback,r?(a=n.mode,r=n.child,s={mode:"hidden",children:s},1&a||null===r?r=Kc(s,a,0,null):(r.childLanes=0,r.pendingProps=s),e=Wc(e,a,t,null),r.return=n,e.return=n,r.sibling=e,n.child=r,n.child.memoizedState=Ku(t),n.memoizedState=Wu,e):$u(n,s));if(null!==(o=e.memoizedState)&&null!==(i=o.dehydrated))return function(e,n,t,i,a,o,r){if(t)return 256&n.flags?(n.flags&=-257,qu(e,n,r,i=Nu(Error(je(422))))):null!==n.memoizedState?(n.child=e.child,n.flags|=128,null):(o=i.fallback,a=n.mode,i=Kc({mode:"visible",children:i.children},a,0,null),(o=Wc(o,a,r,null)).flags|=2,i.return=n,o.return=n,i.sibling=o,n.child=i,1&n.mode&&Yr(n,e.child,null,r),n.child.memoizedState=Ku(r),n.memoizedState=Wu,o);if(!(1&n.mode))return qu(e,n,r,null);if("$!"===a.data){if(i=a.nextSibling&&a.nextSibling.dataset)var s=i.dgst;return i=s,qu(e,n,r,i=Nu(o=Error(je(419)),i,void 0))}if(s=0!==(r&e.childLanes),Iu||s){if(null!==(i=Ul)){switch(r&-r){case 4:a=2;break;case 16:a=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:a=32;break;case 536870912:a=268435456;break;default:a=0}0!==(a=0!==(a&(i.suspendedLanes|r))?0:a)&&a!==o.retryLane&&(o.retryLane=a,Wr(e,a),yc(i,e,a,-1))}return kc(),qu(e,n,r,i=Nu(Error(je(421))))}return"$?"===a.data?(n.flags|=128,n.child=e.child,n=Fc.bind(null,e),a._reactRetry=n,null):(e=o.treeContext,Mr=No(a.nextSibling),fr=n,jr=!0,br=null,null!==e&&(ur[lr++]=dr,ur[lr++]=gr,ur[lr++]=cr,dr=e.id,gr=e.overflow,cr=n),n=$u(n,i.children),n.flags|=4096,n)}(e,n,s,a,i,o,t);if(r){r=a.fallback,s=n.mode,i=(o=e.child).sibling;var u={mode:"hidden",children:a.children};return 1&s||n.child===o?(a=Gc(o,u)).subtreeFlags=14680064&o.subtreeFlags:((a=n.child).childLanes=0,a.pendingProps=u,n.deletions=null),null!==i?r=Gc(i,r):(r=Wc(r,s,t,null)).flags|=2,r.return=n,a.return=n,a.sibling=r,n.child=a,a=r,r=n.child,s=null===(s=e.child.memoizedState)?Ku(t):{baseLanes:s.baseLanes|t,cachePool:null,transitions:s.transitions},r.memoizedState=s,r.childLanes=e.childLanes&~t,n.memoizedState=Wu,a}return e=(r=e.child).sibling,a=Gc(r,{mode:"visible",children:a.children}),!(1&n.mode)&&(a.lanes=t),a.return=n,a.sibling=null,null!==e&&(null===(t=n.deletions)?(n.deletions=[e],n.flags|=16):t.push(e)),n.child=a,n.memoizedState=null,a}function $u(e,n){return(n=Kc({mode:"visible",children:n},e.mode,0,null)).return=e,e.child=n}function qu(e,n,t,i){return null!==i&&kr(i),Yr(n,e.child,null,t),(e=$u(n,n.pendingProps.children)).flags|=2,n.memoizedState=null,e}function el(e,n,t){e.lanes|=n;var i=e.alternate;null!==i&&(i.lanes|=n),Ur(e.return,n,t)}function nl(e,n,t,i,a){var o=e.memoizedState;null===o?e.memoizedState={isBackwards:n,rendering:null,renderingStartTime:0,last:i,tail:t,tailMode:a}:(o.isBackwards=n,o.rendering=null,o.renderingStartTime=0,o.last=i,o.tail=t,o.tailMode=a)}function tl(e,n,t){var i=n.pendingProps,a=i.revealOrder,o=i.tail;if(Au(e,n,i.children,t),2&(i=ps.current))i=1&i|2,n.flags|=128;else{if(null!==e&&128&e.flags)e:for(e=n.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&el(e,t,n);else if(19===e.tag)el(e,t,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===n)break e;for(;null===e.sibling;){if(null===e.return||e.return===n)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}i&=1}if(Fo(ps,i),1&n.mode)switch(a){case"forwards":for(t=n.child,a=null;null!==t;)null!==(e=t.alternate)&&null===ms(e)&&(a=t),t=t.sibling;null===(t=a)?(a=n.child,n.child=null):(a=t.sibling,t.sibling=null),nl(n,!1,a,t,o);break;case"backwards":for(t=null,a=n.child,n.child=null;null!==a;){if(null!==(e=a.alternate)&&null===ms(e)){n.child=a;break}e=a.sibling,a.sibling=t,t=a,a=e}nl(n,!0,t,null,o);break;case"together":nl(n,!1,null,null,void 0);break;default:n.memoizedState=null}else n.memoizedState=null;return n.child}function il(e,n){!(1&n.mode)&&null!==e&&(e.alternate=null,n.alternate=null,n.flags|=2)}function al(e,n,t){if(null!==e&&(n.dependencies=e.dependencies),Kl|=n.lanes,0===(t&n.childLanes))return null;if(null!==e&&n.child!==e.child)throw Error(je(153));if(null!==n.child){for(t=Gc(e=n.child,e.pendingProps),n.child=t,t.return=n;null!==e.sibling;)e=e.sibling,(t=t.sibling=Gc(e,e.pendingProps)).return=n;t.sibling=null}return n.child}function ol(e,n){if(!jr)switch(e.tailMode){case"hidden":n=e.tail;for(var t=null;null!==n;)null!==n.alternate&&(t=n),n=n.sibling;null===t?e.tail=null:t.sibling=null;break;case"collapsed":t=e.tail;for(var i=null;null!==t;)null!==t.alternate&&(i=t),t=t.sibling;null===i?n||null===e.tail?e.tail=null:e.tail.sibling=null:i.sibling=null}}function rl(e){var n=null!==e.alternate&&e.alternate.child===e.child,t=0,i=0;if(n)for(var a=e.child;null!==a;)t|=a.lanes|a.childLanes,i|=14680064&a.subtreeFlags,i|=14680064&a.flags,a.return=e,a=a.sibling;else for(a=e.child;null!==a;)t|=a.lanes|a.childLanes,i|=a.subtreeFlags,i|=a.flags,a.return=e,a=a.sibling;return e.subtreeFlags|=i,e.childLanes=t,n}function sl(e,n,t){var i=n.pendingProps;switch(yr(n),n.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return rl(n),null;case 1:case 17:return Go(n.type)&&Ro(),rl(n),null;case 3:return i=n.stateNode,ds(),Bo(Ho),Bo(Uo),fs(),i.pendingContext&&(i.context=i.pendingContext,i.pendingContext=null),null!==e&&null!==e.child||(Sr(n)?n.flags|=4:null===e||e.memoizedState.isDehydrated&&!(256&n.flags)||(n.flags|=1024,null!==br&&(bc(br),br=null))),Pu(e,n),rl(n),null;case 5:hs(n);var a=ls(us.current);if(t=n.type,null!==e&&null!=n.stateNode)Gu(e,n,t,i,a),e.ref!==n.ref&&(n.flags|=512,n.flags|=2097152);else{if(!i){if(null===n.stateNode)throw Error(je(166));return rl(n),null}if(e=ls(rs.current),Sr(n)){i=n.stateNode,t=n.type;var o=n.memoizedProps;switch(i[To]=n,i[Do]=o,e=!!(1&n.mode),t){case"dialog":qa("cancel",i),qa("close",i);break;case"iframe":case"object":case"embed":qa("load",i);break;case"video":case"audio":for(a=0;a<Wa.length;a++)qa(Wa[a],i);break;case"source":qa("error",i);break;case"img":case"image":case"link":qa("error",i),qa("load",i);break;case"details":qa("toggle",i);break;case"input":dn(i,o),qa("invalid",i);break;case"select":i._wrapperState={wasMultiple:!!o.multiple},qa("invalid",i);break;case"textarea":jn(i,o),qa("invalid",i)}for(var r in In(t,o),a=null,o)if(o.hasOwnProperty(r)){var s=o[r];"children"===r?"string"==typeof s?i.textContent!==s&&(!0!==o.suppressHydrationWarning&&ho(i.textContent,s,e),a=["children",s]):"number"==typeof s&&i.textContent!==""+s&&(!0!==o.suppressHydrationWarning&&ho(i.textContent,s,e),a=["children",""+s]):we.hasOwnProperty(r)&&null!=s&&"onScroll"===r&&qa("scroll",i)}switch(t){case"input":sn(i),pn(i,o,!0);break;case"textarea":sn(i),wn(i);break;case"select":case"option":break;default:"function"==typeof o.onClick&&(i.onclick=po)}i=a,n.updateQueue=i,null!==i&&(n.flags|=4)}else{r=9===a.nodeType?a:a.ownerDocument,"http://www.w3.org/1999/xhtml"===e&&(e=xn(t)),"http://www.w3.org/1999/xhtml"===e?"script"===t?((e=r.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof i.is?e=r.createElement(t,{is:i.is}):(e=r.createElement(t),"select"===t&&(r=e,i.multiple?r.multiple=!0:i.size&&(r.size=i.size))):e=r.createElementNS(e,t),e[To]=n,e[Do]=i,Ju(e,n,!1,!1),n.stateNode=e;e:{switch(r=An(t,i),t){case"dialog":qa("cancel",e),qa("close",e),a=i;break;case"iframe":case"object":case"embed":qa("load",e),a=i;break;case"video":case"audio":for(a=0;a<Wa.length;a++)qa(Wa[a],e);a=i;break;case"source":qa("error",e),a=i;break;case"img":case"image":case"link":qa("error",e),qa("load",e),a=i;break;case"details":qa("toggle",e),a=i;break;case"input":dn(e,i),a=cn(e,i),qa("invalid",e);break;case"option":default:a=i;break;case"select":e._wrapperState={wasMultiple:!!i.multiple},a=Ve({},i,{value:void 0}),qa("invalid",e);break;case"textarea":jn(e,i),a=Mn(e,i),qa("invalid",e)}for(o in In(t,a),s=a)if(s.hasOwnProperty(o)){var u=s[o];"style"===o?En(e,u):"dangerouslySetInnerHTML"===o?null!=(u=u?u.__html:void 0)&&Sn(e,u):"children"===o?"string"==typeof u?("textarea"!==t||""!==u)&&Tn(e,u):"number"==typeof u&&Tn(e,""+u):"suppressContentEditableWarning"!==o&&"suppressHydrationWarning"!==o&&"autoFocus"!==o&&(we.hasOwnProperty(o)?null!=u&&"onScroll"===o&&qa("scroll",e):null!=u&&Ie(e,o,u,r))}switch(t){case"input":sn(e),pn(e,i,!1);break;case"textarea":sn(e),wn(e);break;case"option":null!=i.value&&e.setAttribute("value",""+on(i.value));break;case"select":e.multiple=!!i.multiple,null!=(o=i.value)?fn(e,!!i.multiple,o,!1):null!=i.defaultValue&&fn(e,!!i.multiple,i.defaultValue,!0);break;default:"function"==typeof a.onClick&&(e.onclick=po)}switch(t){case"button":case"input":case"select":case"textarea":i=!!i.autoFocus;break e;case"img":i=!0;break e;default:i=!1}}i&&(n.flags|=4)}null!==n.ref&&(n.flags|=512,n.flags|=2097152)}return rl(n),null;case 6:if(e&&null!=n.stateNode)Ru(e,n,e.memoizedProps,i);else{if("string"!=typeof i&&null===n.stateNode)throw Error(je(166));if(t=ls(us.current),ls(rs.current),Sr(n)){if(i=n.stateNode,t=n.memoizedProps,i[To]=n,(o=i.nodeValue!==t)&&null!==(e=fr))switch(e.tag){case 3:ho(i.nodeValue,t,!!(1&e.mode));break;case 5:!0!==e.memoizedProps.suppressHydrationWarning&&ho(i.nodeValue,t,!!(1&e.mode))}o&&(n.flags|=4)}else(i=(9===t.nodeType?t:t.ownerDocument).createTextNode(i))[To]=n,n.stateNode=i}return rl(n),null;case 13:if(Bo(ps),i=n.memoizedState,null===e||null!==e.memoizedState&&null!==e.memoizedState.dehydrated){if(jr&&null!==Mr&&1&n.mode&&!(128&n.flags))Tr(),Dr(),n.flags|=98560,o=!1;else if(o=Sr(n),null!==i&&null!==i.dehydrated){if(null===e){if(!o)throw Error(je(318));if(!(o=null!==(o=n.memoizedState)?o.dehydrated:null))throw Error(je(317));o[To]=n}else Dr(),!(128&n.flags)&&(n.memoizedState=null),n.flags|=4;rl(n),o=!1}else null!==br&&(bc(br),br=null),o=!0;if(!o)return 65536&n.flags?n:null}return 128&n.flags?(n.lanes=t,n):((i=null!==i)!==(null!==e&&null!==e.memoizedState)&&i&&(n.child.flags|=8192,1&n.mode&&(null===e||1&ps.current?0===Rl&&(Rl=3):kc())),null!==n.updateQueue&&(n.flags|=4),rl(n),null);case 4:return ds(),Pu(e,n),null===e&&to(n.stateNode.containerInfo),rl(n),null;case 10:return Xr(n.type._context),rl(n),null;case 19:if(Bo(ps),null===(o=n.memoizedState))return rl(n),null;if(i=!!(128&n.flags),null===(r=o.rendering))if(i)ol(o,!1);else{if(0!==Rl||null!==e&&128&e.flags)for(e=n.child;null!==e;){if(null!==(r=ms(e))){for(n.flags|=128,ol(o,!1),null!==(i=r.updateQueue)&&(n.updateQueue=i,n.flags|=4),n.subtreeFlags=0,i=t,t=n.child;null!==t;)e=i,(o=t).flags&=14680066,null===(r=o.alternate)?(o.childLanes=0,o.lanes=e,o.child=null,o.subtreeFlags=0,o.memoizedProps=null,o.memoizedState=null,o.updateQueue=null,o.dependencies=null,o.stateNode=null):(o.childLanes=r.childLanes,o.lanes=r.lanes,o.child=r.child,o.subtreeFlags=0,o.deletions=null,o.memoizedProps=r.memoizedProps,o.memoizedState=r.memoizedState,o.updateQueue=r.updateQueue,o.type=r.type,e=r.dependencies,o.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),t=t.sibling;return Fo(ps,1&ps.current|2),n.child}e=e.sibling}null!==o.tail&>()>tc&&(n.flags|=128,i=!0,ol(o,!1),n.lanes=4194304)}else{if(!i)if(null!==(e=ms(r))){if(n.flags|=128,i=!0,null!==(t=e.updateQueue)&&(n.updateQueue=t,n.flags|=4),ol(o,!0),null===o.tail&&"hidden"===o.tailMode&&!r.alternate&&!jr)return rl(n),null}else 2*gt()-o.renderingStartTime>tc&&1073741824!==t&&(n.flags|=128,i=!0,ol(o,!1),n.lanes=4194304);o.isBackwards?(r.sibling=n.child,n.child=r):(null!==(t=o.last)?t.sibling=r:n.child=r,o.last=r)}return null!==o.tail?(n=o.tail,o.rendering=n,o.tail=n.sibling,o.renderingStartTime=gt(),n.sibling=null,t=ps.current,Fo(ps,i?1&t|2:1&t),n):(rl(n),null);case 22:case 23:return vc(),i=null!==n.memoizedState,null!==e&&null!==e.memoizedState!==i&&(n.flags|=8192),i&&1&n.mode?!!(1073741824&Pl)&&(rl(n),6&n.subtreeFlags&&(n.flags|=8192)):rl(n),null;case 24:case 25:return null}throw Error(je(156,n.tag))}function ul(e,n){switch(yr(n),n.tag){case 1:return Go(n.type)&&Ro(),65536&(e=n.flags)?(n.flags=-65537&e|128,n):null;case 3:return ds(),Bo(Ho),Bo(Uo),fs(),65536&(e=n.flags)&&!(128&e)?(n.flags=-65537&e|128,n):null;case 5:return hs(n),null;case 13:if(Bo(ps),null!==(e=n.memoizedState)&&null!==e.dehydrated){if(null===n.alternate)throw Error(je(340));Dr()}return 65536&(e=n.flags)?(n.flags=-65537&e|128,n):null;case 19:return Bo(ps),null;case 4:return ds(),null;case 10:return Xr(n.type._context),null;case 22:case 23:return vc(),null;default:return null}}Ju=function(e,n){for(var t=n.child;null!==t;){if(5===t.tag||6===t.tag)e.appendChild(t.stateNode);else if(4!==t.tag&&null!==t.child){t.child.return=t,t=t.child;continue}if(t===n)break;for(;null===t.sibling;){if(null===t.return||t.return===n)return;t=t.return}t.sibling.return=t.return,t=t.sibling}},Pu=function(){},Gu=function(e,n,t,i){var a=e.memoizedProps;if(a!==i){e=n.stateNode,ls(rs.current);var o,r=null;switch(t){case"input":a=cn(e,a),i=cn(e,i),r=[];break;case"select":a=Ve({},a,{value:void 0}),i=Ve({},i,{value:void 0}),r=[];break;case"textarea":a=Mn(e,a),i=Mn(e,i),r=[];break;default:"function"!=typeof a.onClick&&"function"==typeof i.onClick&&(e.onclick=po)}for(l in In(t,i),t=null,a)if(!i.hasOwnProperty(l)&&a.hasOwnProperty(l)&&null!=a[l])if("style"===l){var s=a[l];for(o in s)s.hasOwnProperty(o)&&(t||(t={}),t[o]="")}else"dangerouslySetInnerHTML"!==l&&"children"!==l&&"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&"autoFocus"!==l&&(we.hasOwnProperty(l)?r||(r=[]):(r=r||[]).push(l,null));for(l in i){var u=i[l];if(s=null!=a?a[l]:void 0,i.hasOwnProperty(l)&&u!==s&&(null!=u||null!=s))if("style"===l)if(s){for(o in s)!s.hasOwnProperty(o)||u&&u.hasOwnProperty(o)||(t||(t={}),t[o]="");for(o in u)u.hasOwnProperty(o)&&s[o]!==u[o]&&(t||(t={}),t[o]=u[o])}else t||(r||(r=[]),r.push(l,t)),t=u;else"dangerouslySetInnerHTML"===l?(u=u?u.__html:void 0,s=s?s.__html:void 0,null!=u&&s!==u&&(r=r||[]).push(l,u)):"children"===l?"string"!=typeof u&&"number"!=typeof u||(r=r||[]).push(l,""+u):"suppressContentEditableWarning"!==l&&"suppressHydrationWarning"!==l&&(we.hasOwnProperty(l)?(null!=u&&"onScroll"===l&&qa("scroll",e),r||s===u||(r=[])):(r=r||[]).push(l,u))}t&&(r=r||[]).push("style",t);var l=r;(n.updateQueue=l)&&(n.flags|=4)}},Ru=function(e,n,t,i){t!==i&&(n.flags|=4)};var ll=!1,cl=!1,dl="function"==typeof WeakSet?WeakSet:Set,gl=null;function hl(e,n){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){Zc(e,n,t)}else t.current=null}function pl(e,n,t){try{t()}catch(t){Zc(e,n,t)}}var ml=!1;function yl(e,n,t){var i=n.updateQueue;if(null!==(i=null!==i?i.lastEffect:null)){var a=i=i.next;do{if((a.tag&e)===e){var o=a.destroy;a.destroy=void 0,void 0!==o&&pl(n,t,o)}a=a.next}while(a!==i)}}function fl(e,n){if(null!==(n=null!==(n=n.updateQueue)?n.lastEffect:null)){var t=n=n.next;do{if((t.tag&e)===e){var i=t.create;t.destroy=i()}t=t.next}while(t!==n)}}function Ml(e){var n=e.ref;if(null!==n){var t=e.stateNode;e.tag,e=t,"function"==typeof n?n(e):n.current=e}}function jl(e){var n=e.alternate;null!==n&&(e.alternate=null,jl(n)),e.child=null,e.deletions=null,e.sibling=null,5===e.tag&&(null!==(n=e.stateNode)&&(delete n[To],delete n[Do],delete n[Co],delete n[Eo],delete n[zo])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function wl(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||bl(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(2&e.flags)continue e;if(null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}function xl(e,n,t){var i=e.tag;if(5===i||6===i)e=e.stateNode,n?8===t.nodeType?t.parentNode.insertBefore(e,n):t.insertBefore(e,n):(8===t.nodeType?(n=t.parentNode).insertBefore(e,t):(n=t).appendChild(e),null!=(t=t._reactRootContainer)||null!==n.onclick||(n.onclick=po));else if(4!==i&&null!==(e=e.child))for(xl(e,n,t),e=e.sibling;null!==e;)xl(e,n,t),e=e.sibling}function Ll(e,n,t){var i=e.tag;if(5===i||6===i)e=e.stateNode,n?t.insertBefore(e,n):t.appendChild(e);else if(4!==i&&null!==(e=e.child))for(Ll(e,n,t),e=e.sibling;null!==e;)Ll(e,n,t),e=e.sibling}var Nl=null,vl=!1;function Sl(e,n,t){for(t=t.child;null!==t;)Tl(e,n,t),t=t.sibling}function Tl(e,n,t){if(bt&&"function"==typeof bt.onCommitFiberUnmount)try{bt.onCommitFiberUnmount(jt,t)}catch(e){}switch(t.tag){case 5:cl||hl(t,n);case 6:var i=Nl,a=vl;Nl=null,Sl(e,n,t),vl=a,null!==(Nl=i)&&(vl?(e=Nl,t=t.stateNode,8===e.nodeType?e.parentNode.removeChild(t):e.removeChild(t)):Nl.removeChild(t.stateNode));break;case 18:null!==Nl&&(vl?(e=Nl,t=t.stateNode,8===e.nodeType?Lo(e.parentNode,t):1===e.nodeType&&Lo(e,t),ii(e)):Lo(Nl,t.stateNode));break;case 4:i=Nl,a=vl,Nl=t.stateNode.containerInfo,vl=!0,Sl(e,n,t),Nl=i,vl=a;break;case 0:case 11:case 14:case 15:if(!cl&&(null!==(i=t.updateQueue)&&null!==(i=i.lastEffect))){a=i=i.next;do{var o=a,r=o.destroy;o=o.tag,void 0!==r&&(2&o||4&o)&&pl(t,n,r),a=a.next}while(a!==i)}Sl(e,n,t);break;case 1:if(!cl&&(hl(t,n),"function"==typeof(i=t.stateNode).componentWillUnmount))try{i.props=t.memoizedProps,i.state=t.memoizedState,i.componentWillUnmount()}catch(e){Zc(t,n,e)}Sl(e,n,t);break;case 21:Sl(e,n,t);break;case 22:1&t.mode?(cl=(i=cl)||null!==t.memoizedState,Sl(e,n,t),cl=i):Sl(e,n,t);break;default:Sl(e,n,t)}}function Dl(e){var n=e.updateQueue;if(null!==n){e.updateQueue=null;var t=e.stateNode;null===t&&(t=e.stateNode=new dl),n.forEach(function(n){var i=Xc.bind(null,e,n);t.has(n)||(t.add(n),n.then(i,i))})}}function kl(e,n){var t=n.deletions;if(null!==t)for(var i=0;i<t.length;i++){var a=t[i];try{var o=e,r=n,s=r;e:for(;null!==s;){switch(s.tag){case 5:Nl=s.stateNode,vl=!1;break e;case 3:case 4:Nl=s.stateNode.containerInfo,vl=!0;break e}s=s.return}if(null===Nl)throw Error(je(160));Tl(o,r,a),Nl=null,vl=!1;var u=a.alternate;null!==u&&(u.return=null),a.return=null}catch(e){Zc(a,n,e)}}if(12854&n.subtreeFlags)for(n=n.child;null!==n;)Cl(n,e),n=n.sibling}function Cl(e,n){var t=e.alternate,i=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(kl(n,e),El(e),4&i){try{yl(3,e,e.return),fl(3,e)}catch(n){Zc(e,e.return,n)}try{yl(5,e,e.return)}catch(n){Zc(e,e.return,n)}}break;case 1:kl(n,e),El(e),512&i&&null!==t&&hl(t,t.return);break;case 5:if(kl(n,e),El(e),512&i&&null!==t&&hl(t,t.return),32&e.flags){var a=e.stateNode;try{Tn(a,"")}catch(n){Zc(e,e.return,n)}}if(4&i&&null!=(a=e.stateNode)){var o=e.memoizedProps,r=null!==t?t.memoizedProps:o,s=e.type,u=e.updateQueue;if(e.updateQueue=null,null!==u)try{"input"===s&&"radio"===o.type&&null!=o.name&&gn(a,o),An(s,r);var l=An(s,o);for(r=0;r<u.length;r+=2){var c=u[r],d=u[r+1];"style"===c?En(a,d):"dangerouslySetInnerHTML"===c?Sn(a,d):"children"===c?Tn(a,d):Ie(a,c,d,l)}switch(s){case"input":hn(a,o);break;case"textarea":bn(a,o);break;case"select":var g=a._wrapperState.wasMultiple;a._wrapperState.wasMultiple=!!o.multiple;var h=o.value;null!=h?fn(a,!!o.multiple,h,!1):g!==!!o.multiple&&(null!=o.defaultValue?fn(a,!!o.multiple,o.defaultValue,!0):fn(a,!!o.multiple,o.multiple?[]:"",!1))}a[Do]=o}catch(n){Zc(e,e.return,n)}}break;case 6:if(kl(n,e),El(e),4&i){if(null===e.stateNode)throw Error(je(162));a=e.stateNode,o=e.memoizedProps;try{a.nodeValue=o}catch(n){Zc(e,e.return,n)}}break;case 3:if(kl(n,e),El(e),4&i&&null!==t&&t.memoizedState.isDehydrated)try{ii(n.containerInfo)}catch(n){Zc(e,e.return,n)}break;case 4:default:kl(n,e),El(e);break;case 13:kl(n,e),El(e),8192&(a=e.child).flags&&(o=null!==a.memoizedState,a.stateNode.isHidden=o,!o||null!==a.alternate&&null!==a.alternate.memoizedState||(nc=gt())),4&i&&Dl(e);break;case 22:if(c=null!==t&&null!==t.memoizedState,1&e.mode?(cl=(l=cl)||c,kl(n,e),cl=l):kl(n,e),El(e),8192&i){if(l=null!==e.memoizedState,(e.stateNode.isHidden=l)&&!c&&1&e.mode)for(gl=e,c=e.child;null!==c;){for(d=gl=c;null!==gl;){switch(h=(g=gl).child,g.tag){case 0:case 11:case 14:case 15:yl(4,g,g.return);break;case 1:hl(g,g.return);var p=g.stateNode;if("function"==typeof p.componentWillUnmount){i=g,t=g.return;try{n=i,p.props=n.memoizedProps,p.state=n.memoizedState,p.componentWillUnmount()}catch(e){Zc(i,t,e)}}break;case 5:hl(g,g.return);break;case 22:if(null!==g.memoizedState){Yl(d);continue}}null!==h?(h.return=g,gl=h):Yl(d)}c=c.sibling}e:for(c=null,d=e;;){if(5===d.tag){if(null===c){c=d;try{a=d.stateNode,l?"function"==typeof(o=a.style).setProperty?o.setProperty("display","none","important"):o.display="none":(s=d.stateNode,r=null!=(u=d.memoizedProps.style)&&u.hasOwnProperty("display")?u.display:null,s.style.display=Cn("display",r))}catch(n){Zc(e,e.return,n)}}}else if(6===d.tag){if(null===c)try{d.stateNode.nodeValue=l?"":d.memoizedProps}catch(n){Zc(e,e.return,n)}}else if((22!==d.tag&&23!==d.tag||null===d.memoizedState||d===e)&&null!==d.child){d.child.return=d,d=d.child;continue}if(d===e)break e;for(;null===d.sibling;){if(null===d.return||d.return===e)break e;c===d&&(c=null),d=d.return}c===d&&(c=null),d.sibling.return=d.return,d=d.sibling}}break;case 19:kl(n,e),El(e),4&i&&Dl(e);case 21:}}function El(e){var n=e.flags;if(2&n){try{e:{for(var t=e.return;null!==t;){if(bl(t)){var i=t;break e}t=t.return}throw Error(je(160))}switch(i.tag){case 5:var a=i.stateNode;32&i.flags&&(Tn(a,""),i.flags&=-33),Ll(e,wl(e),a);break;case 3:case 4:var o=i.stateNode.containerInfo;xl(e,wl(e),o);break;default:throw Error(je(161))}}catch(n){Zc(e,e.return,n)}e.flags&=-3}4096&n&&(e.flags&=-4097)}function zl(e,n,t){gl=e,Il(e)}function Il(e,n,t){for(var i=!!(1&e.mode);null!==gl;){var a=gl,o=a.child;if(22===a.tag&&i){var r=null!==a.memoizedState||ll;if(!r){var s=a.alternate,u=null!==s&&null!==s.memoizedState||cl;s=ll;var l=cl;if(ll=r,(cl=u)&&!l)for(gl=a;null!==gl;)u=(r=gl).child,22===r.tag&&null!==r.memoizedState?Ol(a):null!==u?(u.return=r,gl=u):Ol(a);for(;null!==o;)gl=o,Il(o),o=o.sibling;gl=a,ll=s,cl=l}Al(e)}else 8772&a.subtreeFlags&&null!==o?(o.return=a,gl=o):Al(e)}}function Al(e){for(;null!==gl;){var n=gl;if(8772&n.flags){var t=n.alternate;try{if(8772&n.flags)switch(n.tag){case 0:case 11:case 15:cl||fl(5,n);break;case 1:var i=n.stateNode;if(4&n.flags&&!cl)if(null===t)i.componentDidMount();else{var a=n.elementType===n.type?t.memoizedProps:yu(n.type,t.memoizedProps);i.componentDidUpdate(a,t.memoizedState,i.__reactInternalSnapshotBeforeUpdate)}var o=n.updateQueue;null!==o&&as(n,o,i);break;case 3:var r=n.updateQueue;if(null!==r){if(t=null,null!==n.child)switch(n.child.tag){case 5:case 1:t=n.child.stateNode}as(n,r,t)}break;case 5:var s=n.stateNode;if(null===t&&4&n.flags){t=s;var u=n.memoizedProps;switch(n.type){case"button":case"input":case"select":case"textarea":u.autoFocus&&t.focus();break;case"img":u.src&&(t.src=u.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:case 25:break;case 13:if(null===n.memoizedState){var l=n.alternate;if(null!==l){var c=l.memoizedState;if(null!==c){var d=c.dehydrated;null!==d&&ii(d)}}}break;default:throw Error(je(163))}cl||512&n.flags&&Ml(n)}catch(e){Zc(n,n.return,e)}}if(n===e){gl=null;break}if(null!==(t=n.sibling)){t.return=n.return,gl=t;break}gl=n.return}}function Yl(e){for(;null!==gl;){var n=gl;if(n===e){gl=null;break}var t=n.sibling;if(null!==t){t.return=n.return,gl=t;break}gl=n.return}}function Ol(e){for(;null!==gl;){var n=gl;try{switch(n.tag){case 0:case 11:case 15:var t=n.return;try{fl(4,n)}catch(e){Zc(n,t,e)}break;case 1:var i=n.stateNode;if("function"==typeof i.componentDidMount){var a=n.return;try{i.componentDidMount()}catch(e){Zc(n,a,e)}}var o=n.return;try{Ml(n)}catch(e){Zc(n,o,e)}break;case 5:var r=n.return;try{Ml(n)}catch(e){Zc(n,r,e)}}}catch(e){Zc(n,n.return,e)}if(n===e){gl=null;break}var s=n.sibling;if(null!==s){s.return=n.return,gl=s;break}gl=n.return}}var Ql,Zl=Math.ceil,_l=Ae.ReactCurrentDispatcher,Bl=Ae.ReactCurrentOwner,Fl=Ae.ReactCurrentBatchConfig,Xl=0,Ul=null,Hl=null,Jl=0,Pl=0,Gl=_o(0),Rl=0,Wl=null,Kl=0,Vl=0,$l=0,ql=null,ec=null,nc=0,tc=1/0,ic=null,ac=!1,oc=null,rc=null,sc=!1,uc=null,lc=0,cc=0,dc=null,gc=-1,hc=0;function pc(){return 6&Xl?gt():-1!==gc?gc:gc=gt()}function mc(e){return 1&e.mode?2&Xl&&0!==Jl?Jl&-Jl:null!==Cr.transition?(0===hc&&(hc=Ct()),hc):0!==(e=At)?e:e=void 0===(e=window.event)?16:di(e.type):1}function yc(e,n,t,i){if(50<cc)throw cc=0,dc=null,Error(je(185));zt(e,t,i),2&Xl&&e===Ul||(e===Ul&&(!(2&Xl)&&(Vl|=t),4===Rl&&wc(e,Jl)),fc(e,i),1===t&&0===Xl&&!(1&n.mode)&&(tc=gt()+500,er&&ir()))}function fc(e,n){var t=e.callbackNode;!function(e,n){for(var t=e.suspendedLanes,i=e.pingedLanes,a=e.expirationTimes,o=e.pendingLanes;0<o;){var r=31-wt(o),s=1<<r,u=a[r];-1===u?0!==(s&t)&&0===(s&i)||(a[r]=Dt(s,n)):u<=n&&(e.expiredLanes|=s),o&=~s}}(e,n);var i=Tt(e,e===Ul?Jl:0);if(0===i)null!==t&<(t),e.callbackNode=null,e.callbackPriority=0;else if(n=i&-i,e.callbackPriority!==n){if(null!=t&<(t),1===n)0===e.tag?function(e){er=!0,tr(e)}(xc.bind(null,e)):tr(xc.bind(null,e)),wo(function(){!(6&Xl)&&ir()}),t=null;else{switch(Yt(i)){case 1:t=pt;break;case 4:t=mt;break;case 16:default:t=yt;break;case 536870912:t=Mt}t=Uc(t,Mc.bind(null,e))}e.callbackPriority=n,e.callbackNode=t}}function Mc(e,n){if(gc=-1,hc=0,6&Xl)throw Error(je(327));var t=e.callbackNode;if(Oc()&&e.callbackNode!==t)return null;var i=Tt(e,e===Ul?Jl:0);if(0===i)return null;if(30&i||0!==(i&e.expiredLanes)||n)n=Cc(e,i);else{n=i;var a=Xl;Xl|=2;var o=Dc();for(Ul===e&&Jl===n||(ic=null,tc=gt()+500,Sc(e,n));;)try{zc();break}catch(n){Tc(e,n)}Fr(),_l.current=o,Xl=a,null!==Hl?n=0:(Ul=null,Jl=0,n=Rl)}if(0!==n){if(2===n&&(0!==(a=kt(e))&&(i=a,n=jc(e,a))),1===n)throw t=Wl,Sc(e,0),wc(e,i),fc(e,gt()),t;if(6===n)wc(e,i);else{if(a=e.current.alternate,!(30&i||function(e){for(var n=e;;){if(16384&n.flags){var t=n.updateQueue;if(null!==t&&null!==(t=t.stores))for(var i=0;i<t.length;i++){var a=t[i],o=a.getSnapshot;a=a.value;try{if(!wa(o(),a))return!1}catch(e){return!1}}}if(t=n.child,16384&n.subtreeFlags&&null!==t)t.return=n,n=t;else{if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return!0;n=n.return}n.sibling.return=n.return,n=n.sibling}}return!0}(a)||(n=Cc(e,i),2===n&&(o=kt(e),0!==o&&(i=o,n=jc(e,o))),1!==n)))throw t=Wl,Sc(e,0),wc(e,i),fc(e,gt()),t;switch(e.finishedWork=a,e.finishedLanes=i,n){case 0:case 1:throw Error(je(345));case 2:case 5:Yc(e,ec,ic);break;case 3:if(wc(e,i),(130023424&i)===i&&10<(n=nc+500-gt())){if(0!==Tt(e,0))break;if(((a=e.suspendedLanes)&i)!==i){pc(),e.pingedLanes|=e.suspendedLanes&a;break}e.timeoutHandle=Mo(Yc.bind(null,e,ec,ic),n);break}Yc(e,ec,ic);break;case 4:if(wc(e,i),(4194240&i)===i)break;for(n=e.eventTimes,a=-1;0<i;){var r=31-wt(i);o=1<<r,(r=n[r])>a&&(a=r),i&=~o}if(i=a,10<(i=(120>(i=gt()-i)?120:480>i?480:1080>i?1080:1920>i?1920:3e3>i?3e3:4320>i?4320:1960*Zl(i/1960))-i)){e.timeoutHandle=Mo(Yc.bind(null,e,ec,ic),i);break}Yc(e,ec,ic);break;default:throw Error(je(329))}}}return fc(e,gt()),e.callbackNode===t?Mc.bind(null,e):null}function jc(e,n){var t=ql;return e.current.memoizedState.isDehydrated&&(Sc(e,n).flags|=256),2!==(e=Cc(e,n))&&(n=ec,ec=t,null!==n&&bc(n)),e}function bc(e){null===ec?ec=e:ec.push.apply(ec,e)}function wc(e,n){for(n&=~$l,n&=~Vl,e.suspendedLanes|=n,e.pingedLanes&=~n,e=e.expirationTimes;0<n;){var t=31-wt(n),i=1<<t;e[t]=-1,n&=~i}}function xc(e){if(6&Xl)throw Error(je(327));Oc();var n=Tt(e,0);if(!(1&n))return fc(e,gt()),null;var t=Cc(e,n);if(0!==e.tag&&2===t){var i=kt(e);0!==i&&(n=i,t=jc(e,i))}if(1===t)throw t=Wl,Sc(e,0),wc(e,n),fc(e,gt()),t;if(6===t)throw Error(je(345));return e.finishedWork=e.current.alternate,e.finishedLanes=n,Yc(e,ec,ic),fc(e,gt()),null}function Lc(e,n){var t=Xl;Xl|=1;try{return e(n)}finally{0===(Xl=t)&&(tc=gt()+500,er&&ir())}}function Nc(e){null!==uc&&0===uc.tag&&!(6&Xl)&&Oc();var n=Xl;Xl|=1;var t=Fl.transition,i=At;try{if(Fl.transition=null,At=1,e)return e()}finally{At=i,Fl.transition=t,!(6&(Xl=n))&&ir()}}function vc(){Pl=Gl.current,Bo(Gl)}function Sc(e,n){e.finishedWork=null,e.finishedLanes=0;var t=e.timeoutHandle;if(-1!==t&&(e.timeoutHandle=-1,jo(t)),null!==Hl)for(t=Hl.return;null!==t;){var i=t;switch(yr(i),i.tag){case 1:null!=(i=i.type.childContextTypes)&&Ro();break;case 3:ds(),Bo(Ho),Bo(Uo),fs();break;case 5:hs(i);break;case 4:ds();break;case 13:case 19:Bo(ps);break;case 10:Xr(i.type._context);break;case 22:case 23:vc()}t=t.return}if(Ul=e,Hl=e=Gc(e.current,null),Jl=Pl=n,Rl=0,Wl=null,$l=Vl=Kl=0,ec=ql=null,null!==Pr){for(n=0;n<Pr.length;n++)if(null!==(i=(t=Pr[n]).interleaved)){t.interleaved=null;var a=i.next,o=t.pending;if(null!==o){var r=o.next;o.next=a,i.next=r}t.pending=i}Pr=null}return e}function Tc(e,n){for(;;){var t=Hl;try{if(Fr(),Ms.current=gu,Ns){for(var i=ws.memoizedState;null!==i;){var a=i.queue;null!==a&&(a.pending=null),i=i.next}Ns=!1}if(bs=0,Ls=xs=ws=null,vs=!1,Ss=0,Bl.current=null,null===t||null===t.return){Rl=1,Wl=n,Hl=null;break}e:{var o=e,r=t.return,s=t,u=n;if(n=Jl,s.flags|=32768,null!==u&&"object"==typeof u&&"function"==typeof u.then){var l=u,c=s,d=c.tag;if(!(1&c.mode||0!==d&&11!==d&&15!==d)){var g=c.alternate;g?(c.updateQueue=g.updateQueue,c.memoizedState=g.memoizedState,c.lanes=g.lanes):(c.updateQueue=null,c.memoizedState=null)}var h=Cu(r);if(null!==h){h.flags&=-257,Eu(h,r,s,0,n),1&h.mode&&ku(o,l,n),u=l;var p=(n=h).updateQueue;if(null===p){var m=new Set;m.add(u),n.updateQueue=m}else p.add(u);break e}if(!(1&n)){ku(o,l,n),kc();break e}u=Error(je(426))}else if(jr&&1&s.mode){var y=Cu(r);if(null!==y){!(65536&y.flags)&&(y.flags|=256),Eu(y,r,s,0,n),kr(Lu(u,s));break e}}o=u=Lu(u,s),4!==Rl&&(Rl=2),null===ql?ql=[o]:ql.push(o),o=r;do{switch(o.tag){case 3:o.flags|=65536,n&=-n,o.lanes|=n,ts(o,Tu(0,u,n));break e;case 1:s=u;var f=o.type,M=o.stateNode;if(!(128&o.flags||"function"!=typeof f.getDerivedStateFromError&&(null===M||"function"!=typeof M.componentDidCatch||null!==rc&&rc.has(M)))){o.flags|=65536,n&=-n,o.lanes|=n,ts(o,Du(o,s,n));break e}}o=o.return}while(null!==o)}Ac(t)}catch(e){n=e,Hl===t&&null!==t&&(Hl=t=t.return);continue}break}}function Dc(){var e=_l.current;return _l.current=gu,null===e?gu:e}function kc(){0!==Rl&&3!==Rl&&2!==Rl||(Rl=4),null===Ul||!(268435455&Kl)&&!(268435455&Vl)||wc(Ul,Jl)}function Cc(e,n){var t=Xl;Xl|=2;var i=Dc();for(Ul===e&&Jl===n||(ic=null,Sc(e,n));;)try{Ec();break}catch(n){Tc(e,n)}if(Fr(),Xl=t,_l.current=i,null!==Hl)throw Error(je(261));return Ul=null,Jl=0,Rl}function Ec(){for(;null!==Hl;)Ic(Hl)}function zc(){for(;null!==Hl&&!ct();)Ic(Hl)}function Ic(e){var n=Ql(e.alternate,e,Pl);e.memoizedProps=e.pendingProps,null===n?Ac(e):Hl=n,Bl.current=null}function Ac(e){var n=e;do{var t=n.alternate;if(e=n.return,32768&n.flags){if(null!==(t=ul(t,n)))return t.flags&=32767,void(Hl=t);if(null===e)return Rl=6,void(Hl=null);e.flags|=32768,e.subtreeFlags=0,e.deletions=null}else if(null!==(t=sl(t,n,Pl)))return void(Hl=t);if(null!==(n=n.sibling))return void(Hl=n);Hl=n=e}while(null!==n);0===Rl&&(Rl=5)}function Yc(e,n,t){var i=At,a=Fl.transition;try{Fl.transition=null,At=1,function(e,n,t,i){do{Oc()}while(null!==uc);if(6&Xl)throw Error(je(327));t=e.finishedWork;var a=e.finishedLanes;if(null===t)return null;if(e.finishedWork=null,e.finishedLanes=0,t===e.current)throw Error(je(177));e.callbackNode=null,e.callbackPriority=0;var o=t.lanes|t.childLanes;if(function(e,n){var t=e.pendingLanes&~n;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=n,e.mutableReadLanes&=n,e.entangledLanes&=n,n=e.entanglements;var i=e.eventTimes;for(e=e.expirationTimes;0<t;){var a=31-wt(t),o=1<<a;n[a]=0,i[a]=-1,e[a]=-1,t&=~o}}(e,o),e===Ul&&(Hl=Ul=null,Jl=0),!(2064&t.subtreeFlags)&&!(2064&t.flags)||sc||(sc=!0,Uc(yt,function(){return Oc(),null})),o=!!(15990&t.flags),!!(15990&t.subtreeFlags)||o){o=Fl.transition,Fl.transition=null;var r=At;At=1;var s=Xl;Xl|=4,Bl.current=null,function(e,n){if(mo=oi,Ta(e=Sa())){if("selectionStart"in e)var t={start:e.selectionStart,end:e.selectionEnd};else{var i=(t=(t=e.ownerDocument)&&t.defaultView||window).getSelection&&t.getSelection();if(i&&0!==i.rangeCount){t=i.anchorNode;var a=i.anchorOffset,o=i.focusNode;i=i.focusOffset;var r=0,s=-1,u=-1,l=0,c=0,d=e,g=null;e:for(;;){for(var h;d!==t||0!==a&&3!==d.nodeType||(s=r+a),d!==o||0!==i&&3!==d.nodeType||(u=r+i),3===d.nodeType&&(r+=d.nodeValue.length),null!==(h=d.firstChild);)g=d,d=h;for(;;){if(d===e)break e;if(g===t&&++l===a&&(s=r),g===o&&++c===i&&(u=r),null!==(h=d.nextSibling))break;g=(d=g).parentNode}d=h}t=-1===s||-1===u?null:{start:s,end:u}}else t=null}t=t||{start:0,end:0}}else t=null;for(yo={focusedElem:e,selectionRange:t},oi=!1,gl=n;null!==gl;)if(e=(n=gl).child,1028&n.subtreeFlags&&null!==e)e.return=n,gl=e;else for(;null!==gl;){n=gl;try{var p=n.alternate;if(1024&n.flags)switch(n.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==p){var m=p.memoizedProps,y=p.memoizedState,f=n.stateNode,M=f.getSnapshotBeforeUpdate(n.elementType===n.type?m:yu(n.type,m),y);f.__reactInternalSnapshotBeforeUpdate=M}break;case 3:var j=n.stateNode.containerInfo;1===j.nodeType?j.textContent="":9===j.nodeType&&j.documentElement&&j.removeChild(j.documentElement);break;default:throw Error(je(163))}}catch(e){Zc(n,n.return,e)}if(null!==(e=n.sibling)){e.return=n.return,gl=e;break}gl=n.return}p=ml,ml=!1}(e,t),Cl(t,e),Da(yo),oi=!!mo,yo=mo=null,e.current=t,zl(t),dt(),Xl=s,At=r,Fl.transition=o}else e.current=t;if(sc&&(sc=!1,uc=e,lc=a),o=e.pendingLanes,0===o&&(rc=null),function(e){if(bt&&"function"==typeof bt.onCommitFiberRoot)try{bt.onCommitFiberRoot(jt,e,void 0,!(128&~e.current.flags))}catch(e){}}(t.stateNode),fc(e,gt()),null!==n)for(i=e.onRecoverableError,t=0;t<n.length;t++)a=n[t],i(a.value,{componentStack:a.stack,digest:a.digest});if(ac)throw ac=!1,e=oc,oc=null,e;!!(1&lc)&&0!==e.tag&&Oc(),o=e.pendingLanes,1&o?e===dc?cc++:(cc=0,dc=e):cc=0,ir()}(e,n,t,i)}finally{Fl.transition=a,At=i}return null}function Oc(){if(null!==uc){var e=Yt(lc),n=Fl.transition,t=At;try{if(Fl.transition=null,At=16>e?16:e,null===uc)var i=!1;else{if(e=uc,uc=null,lc=0,6&Xl)throw Error(je(331));var a=Xl;for(Xl|=4,gl=e.current;null!==gl;){var o=gl,r=o.child;if(16&gl.flags){var s=o.deletions;if(null!==s){for(var u=0;u<s.length;u++){var l=s[u];for(gl=l;null!==gl;){var c=gl;switch(c.tag){case 0:case 11:case 15:yl(8,c,o)}var d=c.child;if(null!==d)d.return=c,gl=d;else for(;null!==gl;){var g=(c=gl).sibling,h=c.return;if(jl(c),c===l){gl=null;break}if(null!==g){g.return=h,gl=g;break}gl=h}}}var p=o.alternate;if(null!==p){var m=p.child;if(null!==m){p.child=null;do{var y=m.sibling;m.sibling=null,m=y}while(null!==m)}}gl=o}}if(2064&o.subtreeFlags&&null!==r)r.return=o,gl=r;else e:for(;null!==gl;){if(2048&(o=gl).flags)switch(o.tag){case 0:case 11:case 15:yl(9,o,o.return)}var f=o.sibling;if(null!==f){f.return=o.return,gl=f;break e}gl=o.return}}var M=e.current;for(gl=M;null!==gl;){var j=(r=gl).child;if(2064&r.subtreeFlags&&null!==j)j.return=r,gl=j;else e:for(r=M;null!==gl;){if(2048&(s=gl).flags)try{switch(s.tag){case 0:case 11:case 15:fl(9,s)}}catch(e){Zc(s,s.return,e)}if(s===r){gl=null;break e}var b=s.sibling;if(null!==b){b.return=s.return,gl=b;break e}gl=s.return}}if(Xl=a,ir(),bt&&"function"==typeof bt.onPostCommitFiberRoot)try{bt.onPostCommitFiberRoot(jt,e)}catch(e){}i=!0}return i}finally{At=t,Fl.transition=n}}return!1}function Qc(e,n,t){e=es(e,n=Tu(0,n=Lu(t,n),1),1),n=pc(),null!==e&&(zt(e,1,n),fc(e,n))}function Zc(e,n,t){if(3===e.tag)Qc(e,e,t);else for(;null!==n;){if(3===n.tag){Qc(n,e,t);break}if(1===n.tag){var i=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof i.componentDidCatch&&(null===rc||!rc.has(i))){n=es(n,e=Du(n,e=Lu(t,e),1),1),e=pc(),null!==n&&(zt(n,1,e),fc(n,e));break}}n=n.return}}function _c(e,n,t){var i=e.pingCache;null!==i&&i.delete(n),n=pc(),e.pingedLanes|=e.suspendedLanes&t,Ul===e&&(Jl&t)===t&&(4===Rl||3===Rl&&(130023424&Jl)===Jl&&500>gt()-nc?Sc(e,0):$l|=t),fc(e,n)}function Bc(e,n){0===n&&(1&e.mode?(n=vt,!(130023424&(vt<<=1))&&(vt=4194304)):n=1);var t=pc();null!==(e=Wr(e,n))&&(zt(e,n,t),fc(e,t))}function Fc(e){var n=e.memoizedState,t=0;null!==n&&(t=n.retryLane),Bc(e,t)}function Xc(e,n){var t=0;switch(e.tag){case 13:var i=e.stateNode,a=e.memoizedState;null!==a&&(t=a.retryLane);break;case 19:i=e.stateNode;break;default:throw Error(je(314))}null!==i&&i.delete(n),Bc(e,t)}function Uc(e,n){return ut(e,n)}function Hc(e,n,t,i){this.tag=e,this.key=t,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=n,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=i,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Jc(e,n,t,i){return new Hc(e,n,t,i)}function Pc(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Gc(e,n){var t=e.alternate;return null===t?((t=Jc(e.tag,n,e.key,e.mode)).elementType=e.elementType,t.type=e.type,t.stateNode=e.stateNode,t.alternate=e,e.alternate=t):(t.pendingProps=n,t.type=e.type,t.flags=0,t.subtreeFlags=0,t.deletions=null),t.flags=14680064&e.flags,t.childLanes=e.childLanes,t.lanes=e.lanes,t.child=e.child,t.memoizedProps=e.memoizedProps,t.memoizedState=e.memoizedState,t.updateQueue=e.updateQueue,n=e.dependencies,t.dependencies=null===n?null:{lanes:n.lanes,firstContext:n.firstContext},t.sibling=e.sibling,t.index=e.index,t.ref=e.ref,t}function Rc(e,n,t,i,a,o){var r=2;if(i=e,"function"==typeof e)Pc(e)&&(r=1);else if("string"==typeof e)r=5;else e:switch(e){case Qe:return Wc(t.children,a,o,n);case Ze:r=8,a|=8;break;case _e:return(e=Jc(12,t,n,2|a)).elementType=_e,e.lanes=o,e;case Ue:return(e=Jc(13,t,n,a)).elementType=Ue,e.lanes=o,e;case He:return(e=Jc(19,t,n,a)).elementType=He,e.lanes=o,e;case Ge:return Kc(t,a,o,n);default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case Be:r=10;break e;case Fe:r=9;break e;case Xe:r=11;break e;case Je:r=14;break e;case Pe:r=16,i=null;break e}throw Error(je(130,null==e?e:typeof e,""))}return(n=Jc(r,t,n,a)).elementType=e,n.type=i,n.lanes=o,n}function Wc(e,n,t,i){return(e=Jc(7,e,i,n)).lanes=t,e}function Kc(e,n,t,i){return(e=Jc(22,e,i,n)).elementType=Ge,e.lanes=t,e.stateNode={isHidden:!1},e}function Vc(e,n,t){return(e=Jc(6,e,null,n)).lanes=t,e}function $c(e,n,t){return(n=Jc(4,null!==e.children?e.children:[],e.key,n)).lanes=t,n.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},n}function qc(e,n,t,i,a){this.tag=n,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Et(0),this.expirationTimes=Et(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Et(0),this.identifierPrefix=i,this.onRecoverableError=a,this.mutableSourceEagerHydrationData=null}function ed(e,n,t,i,a,o,r,s,u){return e=new qc(e,n,t,s,u),1===n?(n=1,!0===o&&(n|=8)):n=0,o=Jc(3,null,null,n),e.current=o,o.stateNode=e,o.memoizedState={element:i,isDehydrated:t,cache:null,transitions:null,pendingSuspenseBoundaries:null},Vr(o),e}function nd(e){if(!e)return Xo;e:{if(it(e=e._reactInternals)!==e||1!==e.tag)throw Error(je(170));var n=e;do{switch(n.tag){case 3:n=n.stateNode.context;break e;case 1:if(Go(n.type)){n=n.stateNode.__reactInternalMemoizedMergedChildContext;break e}}n=n.return}while(null!==n);throw Error(je(171))}if(1===e.tag){var t=e.type;if(Go(t))return Ko(e,t,n)}return n}function td(e,n,t,i,a,o,r,s,u){return(e=ed(t,i,!0,e,0,o,0,s,u)).context=nd(null),t=e.current,(o=qr(i=pc(),a=mc(t))).callback=null!=n?n:null,es(t,o,a),e.current.lanes=a,zt(e,a,i),fc(e,i),e}function id(e,n,t,i){var a=n.current,o=pc(),r=mc(a);return t=nd(t),null===n.context?n.context=t:n.pendingContext=t,(n=qr(o,r)).payload={element:e},null!==(i=void 0===i?null:i)&&(n.callback=i),null!==(e=es(a,n,r))&&(yc(e,a,r,o),ns(e,a,r)),r}function ad(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function od(e,n){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var t=e.retryLane;e.retryLane=0!==t&&t<n?t:n}}function rd(e,n){od(e,n),(e=e.alternate)&&od(e,n)}Ql=function(e,n,t){if(null!==e)if(e.memoizedProps!==n.pendingProps||Ho.current)Iu=!0;else{if(0===(e.lanes&t)&&!(128&n.flags))return Iu=!1,function(e,n,t){switch(n.tag){case 3:Uu(n),Dr();break;case 5:gs(n);break;case 1:Go(n.type)&&Vo(n);break;case 4:cs(n,n.stateNode.containerInfo);break;case 10:var i=n.type._context,a=n.memoizedProps.value;Fo(Qr,i._currentValue),i._currentValue=a;break;case 13:if(null!==(i=n.memoizedState))return null!==i.dehydrated?(Fo(ps,1&ps.current),n.flags|=128,null):0!==(t&n.child.childLanes)?Vu(e,n,t):(Fo(ps,1&ps.current),null!==(e=al(e,n,t))?e.sibling:null);Fo(ps,1&ps.current);break;case 19:if(i=0!==(t&n.childLanes),128&e.flags){if(i)return tl(e,n,t);n.flags|=128}if(null!==(a=n.memoizedState)&&(a.rendering=null,a.tail=null,a.lastEffect=null),Fo(ps,ps.current),i)break;return null;case 22:case 23:return n.lanes=0,Zu(e,n,t)}return al(e,n,t)}(e,n,t);Iu=!!(131072&e.flags)}else Iu=!1,jr&&1048576&n.flags&&pr(n,sr,n.index);switch(n.lanes=0,n.tag){case 2:var i=n.type;il(e,n),e=n.pendingProps;var a=Po(n,Uo.current);Hr(n,t),a=Cs(null,n,i,e,a,t);var o=Es();return n.flags|=1,"object"==typeof a&&null!==a&&"function"==typeof a.render&&void 0===a.$$typeof?(n.tag=1,n.memoizedState=null,n.updateQueue=null,Go(i)?(o=!0,Vo(n)):o=!1,n.memoizedState=null!==a.state&&void 0!==a.state?a.state:null,Vr(n),a.updater=Mu,n.stateNode=a,a._reactInternals=n,xu(n,i,e,t),n=Xu(null,n,i,!0,o,t)):(n.tag=0,jr&&o&&mr(n),Au(null,n,a,t),n=n.child),n;case 16:i=n.elementType;e:{switch(il(e,n),e=n.pendingProps,i=(a=i._init)(i._payload),n.type=i,a=n.tag=function(e){if("function"==typeof e)return Pc(e)?1:0;if(null!=e){if((e=e.$$typeof)===Xe)return 11;if(e===Je)return 14}return 2}(i),e=yu(i,e),a){case 0:n=Bu(null,n,i,e,t);break e;case 1:n=Fu(null,n,i,e,t);break e;case 11:n=Yu(null,n,i,e,t);break e;case 14:n=Ou(null,n,i,yu(i.type,e),t);break e}throw Error(je(306,i,""))}return n;case 0:return i=n.type,a=n.pendingProps,Bu(e,n,i,a=n.elementType===i?a:yu(i,a),t);case 1:return i=n.type,a=n.pendingProps,Fu(e,n,i,a=n.elementType===i?a:yu(i,a),t);case 3:e:{if(Uu(n),null===e)throw Error(je(387));i=n.pendingProps,a=(o=n.memoizedState).element,$r(e,n),is(n,i,null,t);var r=n.memoizedState;if(i=r.element,o.isDehydrated){if(o={element:i,isDehydrated:!1,cache:r.cache,pendingSuspenseBoundaries:r.pendingSuspenseBoundaries,transitions:r.transitions},n.updateQueue.baseState=o,n.memoizedState=o,256&n.flags){n=Hu(e,n,i,t,a=Lu(Error(je(423)),n));break e}if(i!==a){n=Hu(e,n,i,t,a=Lu(Error(je(424)),n));break e}for(Mr=No(n.stateNode.containerInfo.firstChild),fr=n,jr=!0,br=null,t=Or(n,null,i,t),n.child=t;t;)t.flags=-3&t.flags|4096,t=t.sibling}else{if(Dr(),i===a){n=al(e,n,t);break e}Au(e,n,i,t)}n=n.child}return n;case 5:return gs(n),null===e&&Nr(n),i=n.type,a=n.pendingProps,o=null!==e?e.memoizedProps:null,r=a.children,fo(i,a)?r=null:null!==o&&fo(i,o)&&(n.flags|=32),_u(e,n),Au(e,n,r,t),n.child;case 6:return null===e&&Nr(n),null;case 13:return Vu(e,n,t);case 4:return cs(n,n.stateNode.containerInfo),i=n.pendingProps,null===e?n.child=Yr(n,null,i,t):Au(e,n,i,t),n.child;case 11:return i=n.type,a=n.pendingProps,Yu(e,n,i,a=n.elementType===i?a:yu(i,a),t);case 7:return Au(e,n,n.pendingProps,t),n.child;case 8:case 12:return Au(e,n,n.pendingProps.children,t),n.child;case 10:e:{if(i=n.type._context,a=n.pendingProps,o=n.memoizedProps,r=a.value,Fo(Qr,i._currentValue),i._currentValue=r,null!==o)if(wa(o.value,r)){if(o.children===a.children&&!Ho.current){n=al(e,n,t);break e}}else for(null!==(o=n.child)&&(o.return=n);null!==o;){var s=o.dependencies;if(null!==s){r=o.child;for(var u=s.firstContext;null!==u;){if(u.context===i){if(1===o.tag){(u=qr(-1,t&-t)).tag=2;var l=o.updateQueue;if(null!==l){var c=(l=l.shared).pending;null===c?u.next=u:(u.next=c.next,c.next=u),l.pending=u}}o.lanes|=t,null!==(u=o.alternate)&&(u.lanes|=t),Ur(o.return,t,n),s.lanes|=t;break}u=u.next}}else if(10===o.tag)r=o.type===n.type?null:o.child;else if(18===o.tag){if(null===(r=o.return))throw Error(je(341));r.lanes|=t,null!==(s=r.alternate)&&(s.lanes|=t),Ur(r,t,n),r=o.sibling}else r=o.child;if(null!==r)r.return=o;else for(r=o;null!==r;){if(r===n){r=null;break}if(null!==(o=r.sibling)){o.return=r.return,r=o;break}r=r.return}o=r}Au(e,n,a.children,t),n=n.child}return n;case 9:return a=n.type,i=n.pendingProps.children,Hr(n,t),i=i(a=Jr(a)),n.flags|=1,Au(e,n,i,t),n.child;case 14:return a=yu(i=n.type,n.pendingProps),Ou(e,n,i,a=yu(i.type,a),t);case 15:return Qu(e,n,n.type,n.pendingProps,t);case 17:return i=n.type,a=n.pendingProps,a=n.elementType===i?a:yu(i,a),il(e,n),n.tag=1,Go(i)?(e=!0,Vo(n)):e=!1,Hr(n,t),bu(n,i,a),xu(n,i,a,t),Xu(null,n,i,!0,e,t);case 19:return tl(e,n,t);case 22:return Zu(e,n,t)}throw Error(je(156,n.tag))};var sd="function"==typeof reportError?reportError:function(e){console.error(e)};function ud(e){this._internalRoot=e}function ld(e){this._internalRoot=e}function cd(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function dd(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function gd(){}function hd(e,n,t,i,a){var o=t._reactRootContainer;if(o){var r=o;if("function"==typeof a){var s=a;a=function(){var e=ad(r);s.call(e)}}id(n,r,e,a)}else r=function(e,n,t,i,a){if(a){if("function"==typeof i){var o=i;i=function(){var e=ad(r);o.call(e)}}var r=td(n,i,e,0,null,!1,0,"",gd);return e._reactRootContainer=r,e[ko]=r.current,to(8===e.nodeType?e.parentNode:e),Nc(),r}for(;a=e.lastChild;)e.removeChild(a);if("function"==typeof i){var s=i;i=function(){var e=ad(u);s.call(e)}}var u=ed(e,0,!1,null,0,!1,0,"",gd);return e._reactRootContainer=u,e[ko]=u.current,to(8===e.nodeType?e.parentNode:e),Nc(function(){id(n,u,t,i)}),u}(t,n,e,a,i);return ad(r)}ld.prototype.render=ud.prototype.render=function(e){var n=this._internalRoot;if(null===n)throw Error(je(409));id(e,n,null,null)},ld.prototype.unmount=ud.prototype.unmount=function(){var e=this._internalRoot;if(null!==e){this._internalRoot=null;var n=e.containerInfo;Nc(function(){id(null,e,null,null)}),n[ko]=null}},ld.prototype.unstable_scheduleHydration=function(e){if(e){var n=_t();e={blockedOn:null,target:e,priority:n};for(var t=0;t<Rt.length&&0!==n&&n<Rt[t].priority;t++);Rt.splice(t,0,e),0===t&&$t(e)}},Ot=function(e){switch(e.tag){case 3:var n=e.stateNode;if(n.current.memoizedState.isDehydrated){var t=St(n.pendingLanes);0!==t&&(It(n,1|t),fc(n,gt()),!(6&Xl)&&(tc=gt()+500,ir()))}break;case 13:Nc(function(){var n=Wr(e,1);if(null!==n){var t=pc();yc(n,e,1,t)}}),rd(e,1)}},Qt=function(e){if(13===e.tag){var n=Wr(e,134217728);if(null!==n)yc(n,e,134217728,pc());rd(e,134217728)}},Zt=function(e){if(13===e.tag){var n=mc(e),t=Wr(e,n);if(null!==t)yc(t,e,n,pc());rd(e,n)}},_t=function(){return At},Bt=function(e,n){var t=At;try{return At=e,n()}finally{At=t}},Qn=function(e,n,t){switch(n){case"input":if(hn(e,t),n=t.name,"radio"===t.type&&null!=n){for(t=e;t.parentNode;)t=t.parentNode;for(t=t.querySelectorAll("input[name="+JSON.stringify(""+n)+'][type="radio"]'),n=0;n<t.length;n++){var i=t[n];if(i!==e&&i.form===e.form){var a=Oo(i);if(!a)throw Error(je(90));un(i),hn(i,a)}}}break;case"textarea":bn(e,t);break;case"select":null!=(n=t.value)&&fn(e,!!t.multiple,n,!1)}},Un=Lc,Hn=Nc;var pd={usingClientEntryPoint:!1,Events:[Ao,Yo,Oo,Fn,Xn,Lc]},md={findFiberByHostInstance:Io,bundleType:0,version:"18.3.1",rendererPackageName:"react-dom"},yd={bundleType:md.bundleType,version:md.version,rendererPackageName:md.rendererPackageName,rendererConfig:md.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:Ae.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=rt(e))?null:e.stateNode},findFiberByHostInstance:md.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.3.1-next-f1338f8080-20240426"};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var fd=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!fd.isDisabled&&fd.supportsFiber)try{jt=fd.inject(yd),bt=fd}catch(vn){}}he.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=pd,he.createPortal=function(e,n){var t=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!cd(n))throw Error(je(200));return function(e,n,t){var i=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:Oe,key:null==i?null:""+i,children:e,containerInfo:n,implementation:t}}(e,n,null,t)},he.createRoot=function(e,n){if(!cd(e))throw Error(je(299));var t=!1,i="",a=sd;return null!=n&&(!0===n.unstable_strictMode&&(t=!0),void 0!==n.identifierPrefix&&(i=n.identifierPrefix),void 0!==n.onRecoverableError&&(a=n.onRecoverableError)),n=ed(e,1,!1,null,0,t,0,i,a),e[ko]=n.current,to(8===e.nodeType?e.parentNode:e),new ud(n)},he.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var n=e._reactInternals;if(void 0===n){if("function"==typeof e.render)throw Error(je(188));throw e=Object.keys(e).join(","),Error(je(268,e))}return e=null===(e=rt(n))?null:e.stateNode},he.flushSync=function(e){return Nc(e)},he.hydrate=function(e,n,t){if(!dd(n))throw Error(je(200));return hd(null,e,n,!0,t)},he.hydrateRoot=function(e,n,t){if(!cd(e))throw Error(je(405));var i=null!=t&&t.hydratedSources||null,a=!1,o="",r=sd;if(null!=t&&(!0===t.unstable_strictMode&&(a=!0),void 0!==t.identifierPrefix&&(o=t.identifierPrefix),void 0!==t.onRecoverableError&&(r=t.onRecoverableError)),n=td(n,null,e,1,null!=t?t:null,a,0,o,r),e[ko]=n.current,to(e),i)for(e=0;e<i.length;e++)a=(a=(t=i[e])._getVersion)(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,a]:n.mutableSourceEagerHydrationData.push(t,a);return new ld(n)},he.render=function(e,n,t){if(!dd(n))throw Error(je(200));return hd(null,e,n,!1,t)},he.unmountComponentAtNode=function(e){if(!dd(e))throw Error(je(40));return!!e._reactRootContainer&&(Nc(function(){hd(null,null,e,!1,function(){e._reactRootContainer=null,e[ko]=null})}),!0)},he.unstable_batchedUpdates=Lc,he.unstable_renderSubtreeIntoContainer=function(e,n,t,i){if(!dd(t))throw Error(je(200));if(null==e||void 0===e._reactInternals)throw Error(je(38));return hd(e,n,t,!1,i)},he.version="18.3.1-next-f1338f8080-20240426",function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),ge.exports=he;var Md=ge.exports,jd=i(Md),bd=Md;function wd(e,n){var t={};for(var i in e)Object.prototype.hasOwnProperty.call(e,i)&&n.indexOf(i)<0&&(t[i]=e[i]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(i=Object.getOwnPropertySymbols(e);a<i.length;a++)n.indexOf(i[a])<0&&Object.prototype.propertyIsEnumerable.call(e,i[a])&&(t[i[a]]=e[i[a]])}return t}function xd(e,n,t,i){return new(t||(t=Promise))(function(a,o){function r(e){try{u(i.next(e))}catch(e){o(e)}}function s(e){try{u(i.throw(e))}catch(e){o(e)}}function u(e){var n;e.done?a(e.value):(n=e.value,n instanceof t?n:new t(function(e){e(n)})).then(r,s)}u((i=i.apply(e,n||[])).next())})}function Ld(e){var n="function"==typeof Symbol&&Symbol.iterator,t=n&&e[n],i=0;if(t)return t.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&i>=e.length&&(e=void 0),{value:e&&e[i++],done:!e}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")}function Nd(e){return this instanceof Nd?(this.v=e,this):new Nd(e)}function vd(e,n,t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i,a=t.apply(e,n||[]),o=[];return i={},r("next"),r("throw"),r("return",function(e){return function(n){return Promise.resolve(n).then(e,l)}}),i[Symbol.asyncIterator]=function(){return this},i;function r(e,n){a[e]&&(i[e]=function(n){return new Promise(function(t,i){o.push([e,n,t,i])>1||s(e,n)})},n&&(i[e]=n(i[e])))}function s(e,n){try{!function(e){e.value instanceof Nd?Promise.resolve(e.value.v).then(u,l):c(o[0][2],e)}(a[e](n))}catch(e){c(o[0][3],e)}}function u(e){s("next",e)}function l(e){s("throw",e)}function c(e,n){e(n),o.shift(),o.length&&s(o[0][0],o[0][1])}}function Sd(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n,t=e[Symbol.asyncIterator];return t?t.call(e):(e=Ld(e),n={},i("next"),i("throw"),i("return"),n[Symbol.asyncIterator]=function(){return this},n);function i(t){n[t]=e[t]&&function(n){return new Promise(function(i,a){(function(e,n,t,i){Promise.resolve(i).then(function(n){e({value:n,done:t})},n)})(i,a,(n=e[t](n)).done,n.value)})}}}de.createRoot=bd.createRoot,de.hydrateRoot=bd.hydrateRoot;const Td=e=>{let n;const t=new Set,i=(e,i)=>{const a="function"==typeof e?e(n):e;if(!Object.is(a,n)){const e=n;n=(null!=i?i:"object"!=typeof a||null===a)?a:Object.assign({},n,a),t.forEach(t=>t(n,e))}},a=()=>n,o={setState:i,getState:a,getInitialState:()=>r,subscribe:e=>(t.add(e),()=>t.delete(e)),destroy:()=>{console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),t.clear()}},r=n=e(i,a,o);return o},Dd=e=>e?Td(e):Td;var kd={exports:{}},Cd={},Ed={exports:{}},zd={},Id=ee;var Ad="function"==typeof Object.is?Object.is:function(e,n){return e===n&&(0!==e||1/e==1/n)||e!=e&&n!=n},Yd=Id.useState,Od=Id.useEffect,Qd=Id.useLayoutEffect,Zd=Id.useDebugValue;function _d(e){var n=e.getSnapshot;e=e.value;try{var t=n();return!Ad(e,t)}catch(e){return!0}}var Bd="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,n){return n()}:function(e,n){var t=n(),i=Yd({inst:{value:t,getSnapshot:n}}),a=i[0].inst,o=i[1];return Qd(function(){a.value=t,a.getSnapshot=n,_d(a)&&o({inst:a})},[e,t,n]),Od(function(){return _d(a)&&o({inst:a}),e(function(){_d(a)&&o({inst:a})})},[e]),Zd(t),t};zd.useSyncExternalStore=void 0!==Id.useSyncExternalStore?Id.useSyncExternalStore:Bd,Ed.exports=zd;var Fd=Ed.exports,Xd=i(Fd),Ud=ee,Hd=Fd;var Jd="function"==typeof Object.is?Object.is:function(e,n){return e===n&&(0!==e||1/e==1/n)||e!=e&&n!=n},Pd=Hd.useSyncExternalStore,Gd=Ud.useRef,Rd=Ud.useEffect,Wd=Ud.useMemo,Kd=Ud.useDebugValue;Cd.useSyncExternalStoreWithSelector=function(e,n,t,i,a){var o=Gd(null);if(null===o.current){var r={hasValue:!1,value:null};o.current=r}else r=o.current;o=Wd(function(){function e(e){if(!u){if(u=!0,o=e,e=i(e),void 0!==a&&r.hasValue){var n=r.value;if(a(n,e))return s=n}return s=e}if(n=s,Jd(o,e))return n;var t=i(e);return void 0!==a&&a(n,t)?(o=e,n):(o=e,s=t)}var o,s,u=!1,l=void 0===t?null:t;return[function(){return e(n())},null===l?void 0:function(){return e(l())}]},[n,t,i,a]);var s=Pd(e,o[0],o[1]);return Rd(function(){r.hasValue=!0,r.value=s},[s]),Kd(s),s},kd.exports=Cd;var Vd=i(kd.exports);const{useDebugValue:$d}=ne,{useSyncExternalStoreWithSelector:qd}=Vd;let eg=!1;const ng=e=>e;function tg(e,n=ng,t){t&&!eg&&(console.warn("[DEPRECATED] Use `createWithEqualityFn` instead of `create` or use `useStoreWithEqualityFn` instead of `useStore`. They can be imported from 'zustand/traditional'. https://github.com/pmndrs/zustand/discussions/1937"),eg=!0);const i=qd(e.subscribe,e.getState,e.getServerState||e.getInitialState,n,t);return $d(i),i}const ig=e=>{"function"!=typeof e&&console.warn("[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.");const n="function"==typeof e?Dd(e):e,t=(e,t)=>tg(n,e,t);return Object.assign(t,n),t};function ag(e,n){let t;try{t=e()}catch(e){return}const i={getItem:e=>{var i;const a=e=>null===e?null:JSON.parse(e,null==n?void 0:n.reviver),o=null!=(i=t.getItem(e))?i:null;return o instanceof Promise?o.then(a):a(o)},setItem:(e,i)=>t.setItem(e,JSON.stringify(i,null==n?void 0:n.replacer)),removeItem:e=>t.removeItem(e)};return i}const og=e=>n=>{try{const t=e(n);return t instanceof Promise?t:{then:e=>og(e)(t),catch(e){return this}}}catch(e){return{then(e){return this},catch:n=>og(n)(e)}}},rg=(e,n)=>"getStorage"in n||"serialize"in n||"deserialize"in n?(console.warn("[DEPRECATED] `getStorage`, `serialize` and `deserialize` options are deprecated. Use `storage` option instead."),((e,n)=>(t,i,a)=>{let o={getStorage:()=>localStorage,serialize:JSON.stringify,deserialize:JSON.parse,partialize:e=>e,version:0,merge:(e,n)=>({...n,...e}),...n},r=!1;const s=new Set,u=new Set;let l;try{l=o.getStorage()}catch(e){}if(!l)return e((...e)=>{console.warn(`[zustand persist middleware] Unable to update item '${o.name}', the given storage is currently unavailable.`),t(...e)},i,a);const c=og(o.serialize),d=()=>{const e=o.partialize({...i()});let n;const t=c({state:e,version:o.version}).then(e=>l.setItem(o.name,e)).catch(e=>{n=e});if(n)throw n;return t},g=a.setState;a.setState=(e,n)=>{g(e,n),d()};const h=e((...e)=>{t(...e),d()},i,a);let p;const m=()=>{var e;if(!l)return;r=!1,s.forEach(e=>e(i()));const n=(null==(e=o.onRehydrateStorage)?void 0:e.call(o,i()))||void 0;return og(l.getItem.bind(l))(o.name).then(e=>{if(e)return o.deserialize(e)}).then(e=>{if(e){if("number"!=typeof e.version||e.version===o.version)return e.state;if(o.migrate)return o.migrate(e.state,e.version);console.error("State loaded from storage couldn't be migrated since no migrate function was provided")}}).then(e=>{var n;return p=o.merge(e,null!=(n=i())?n:h),t(p,!0),d()}).then(()=>{null==n||n(p,void 0),r=!0,u.forEach(e=>e(p))}).catch(e=>{null==n||n(void 0,e)})};return a.persist={setOptions:e=>{o={...o,...e},e.getStorage&&(l=e.getStorage())},clearStorage:()=>{null==l||l.removeItem(o.name)},getOptions:()=>o,rehydrate:()=>m(),hasHydrated:()=>r,onHydrate:e=>(s.add(e),()=>{s.delete(e)}),onFinishHydration:e=>(u.add(e),()=>{u.delete(e)})},m(),p||h})(e,n)):((e,n)=>(t,i,a)=>{let o={storage:ag(()=>localStorage),partialize:e=>e,version:0,merge:(e,n)=>({...n,...e}),...n},r=!1;const s=new Set,u=new Set;let l=o.storage;if(!l)return e((...e)=>{console.warn(`[zustand persist middleware] Unable to update item '${o.name}', the given storage is currently unavailable.`),t(...e)},i,a);const c=()=>{const e=o.partialize({...i()});return l.setItem(o.name,{state:e,version:o.version})},d=a.setState;a.setState=(e,n)=>{d(e,n),c()};const g=e((...e)=>{t(...e),c()},i,a);let h;a.getInitialState=()=>g;const p=()=>{var e,n;if(!l)return;r=!1,s.forEach(e=>{var n;return e(null!=(n=i())?n:g)});const a=(null==(n=o.onRehydrateStorage)?void 0:n.call(o,null!=(e=i())?e:g))||void 0;return og(l.getItem.bind(l))(o.name).then(e=>{if(e){if("number"!=typeof e.version||e.version===o.version)return[!1,e.state];if(o.migrate)return[!0,o.migrate(e.state,e.version)];console.error("State loaded from storage couldn't be migrated since no migrate function was provided")}return[!1,void 0]}).then(e=>{var n;const[a,r]=e;if(h=o.merge(r,null!=(n=i())?n:g),t(h,!0),a)return c()}).then(()=>{null==a||a(h,void 0),h=i(),r=!0,u.forEach(e=>e(h))}).catch(e=>{null==a||a(void 0,e)})};return a.persist={setOptions:e=>{o={...o,...e},e.storage&&(l=e.storage)},clearStorage:()=>{null==l||l.removeItem(o.name)},getOptions:()=>o,rehydrate:()=>p(),hasHydrated:()=>r,onHydrate:e=>(s.add(e),()=>{s.delete(e)}),onFinishHydration:e=>(u.add(e),()=>{u.delete(e)})},o.skipHydration||p(),h||g})(e,n),sg=ee.createContext({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"}),ug=ee.createContext({});const lg=ee.createContext(null),cg="undefined"!=typeof document,dg=cg?ee.useLayoutEffect:ee.useEffect,gg=ee.createContext({strict:!1});function hg(e,n,t,i){const a=ee.useContext(ug).visualElement,o=ee.useContext(gg),r=ee.useContext(lg),s=ee.useContext(sg).reducedMotion,u=ee.useRef();i=i||o.renderer,!u.current&&i&&(u.current=i(e,{visualState:n,parent:a,props:t,presenceId:r?r.id:void 0,blockInitialAnimation:!!r&&!1===r.initial,reducedMotionConfig:s}));const l=u.current;return dg(()=>{l&&l.render()}),dg(()=>{l&&l.animationState&&l.animationState.animateChanges()}),dg(()=>()=>l&&l.notify("Unmount"),[]),l}function pg(e){return"object"==typeof e&&Object.prototype.hasOwnProperty.call(e,"current")}function mg(e){return"string"==typeof e||Array.isArray(e)}function yg(e){return"object"==typeof e&&"function"==typeof e.start}const fg=["initial","animate","exit","whileHover","whileDrag","whileTap","whileFocus","whileInView"];function Mg(e){return yg(e.animate)||fg.some(n=>mg(e[n]))}function jg(e){return Boolean(Mg(e)||e.variants)}function bg(e){const{initial:n,animate:t}=function(e,n){if(Mg(e)){const{initial:n,animate:t}=e;return{initial:!1===n||mg(n)?n:void 0,animate:mg(t)?t:void 0}}return!1!==e.inherit?n:{}}(e,ee.useContext(ug));return ee.useMemo(()=>({initial:n,animate:t}),[wg(n),wg(t)])}function wg(e){return Array.isArray(e)?e.join(" "):e}const xg=e=>({isEnabled:n=>e.some(e=>!!n[e])}),Lg={measureLayout:xg(["layout","layoutId","drag"]),animation:xg(["animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView"]),exit:xg(["exit"]),drag:xg(["drag","dragControls"]),focus:xg(["whileFocus"]),hover:xg(["whileHover","onHoverStart","onHoverEnd"]),tap:xg(["whileTap","onTap","onTapStart","onTapCancel"]),pan:xg(["onPan","onPanStart","onPanSessionStart","onPanEnd"]),inView:xg(["whileInView","onViewportEnter","onViewportLeave"])};function Ng(e){const n=ee.useRef(null);return null===n.current&&(n.current=e()),n.current}const vg={hasAnimatedSinceResize:!0,hasEverUpdated:!1};let Sg=1;const Tg=ee.createContext({});class Dg extends ne.Component{getSnapshotBeforeUpdate(){const{visualElement:e,props:n}=this.props;return e&&e.setProps(n),null}componentDidUpdate(){}render(){return this.props.children}}const kg=ee.createContext({}),Cg=Symbol.for("motionComponentSymbol");function Eg({preloadedFeatures:e,createVisualElement:n,projectionNodeConstructor:t,useRender:i,useVisualState:a,Component:o}){e&&function(e){for(const n in e)"projectionNodeConstructor"===n?Lg.projectionNodeConstructor=e[n]:Lg[n].Component=e[n]}(e);const r=ee.forwardRef(function(r,s){const u={...ee.useContext(sg),...r,layoutId:zg(r)},{isStatic:l}=u;let c=null;const d=bg(r),g=l?void 0:Ng(()=>{if(vg.hasEverUpdated)return Sg++}),h=a(r,l);if(!l&&cg){d.visualElement=hg(o,h,u,n);const i=ee.useContext(gg).strict,a=ee.useContext(kg);d.visualElement&&(c=d.visualElement.loadFeatures(u,i,e,g,t||Lg.projectionNodeConstructor,a))}return ee.createElement(Dg,{visualElement:d.visualElement,props:u},c,ee.createElement(ug.Provider,{value:d},i(o,r,g,function(e,n,t){return ee.useCallback(i=>{i&&e.mount&&e.mount(i),n&&(i?n.mount(i):n.unmount()),t&&("function"==typeof t?t(i):pg(t)&&(t.current=i))},[n])}(h,d.visualElement,s),h,l,d.visualElement)))});return r[Cg]=o,r}function zg({layoutId:e}){const n=ee.useContext(Tg).id;return n&&void 0!==e?n+"-"+e:e}function Ig(e){function n(n,t={}){return Eg(e(n,t))}if("undefined"==typeof Proxy)return n;const t=new Map;return new Proxy(n,{get:(e,i)=>(t.has(i)||t.set(i,n(i)),t.get(i))})}const Ag=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function Yg(e){return"string"==typeof e&&!e.includes("-")&&!!(Ag.indexOf(e)>-1||/[A-Z]/.test(e))}const Og={};const Qg=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],Zg=new Set(Qg);function _g(e,{layout:n,layoutId:t}){return Zg.has(e)||e.startsWith("origin")||(n||void 0!==t)&&(!!Og[e]||"opacity"===e)}const Bg=e=>!!(null==e?void 0:e.getVelocity),Fg={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},Xg=(e,n)=>Qg.indexOf(e)-Qg.indexOf(n);function Ug(e){return e.startsWith("--")}const Hg=(e,n)=>n&&"number"==typeof e?n.transform(e):e,Jg=(e,n,t)=>Math.min(Math.max(t,e),n),Pg={test:e=>"number"==typeof e,parse:parseFloat,transform:e=>e},Gg={...Pg,transform:e=>Jg(0,1,e)},Rg={...Pg,default:1},Wg=e=>Math.round(1e5*e)/1e5,Kg=/(-)?([\d]*\.?[\d])+/g,Vg=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,$g=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function qg(e){return"string"==typeof e}const eh=e=>({test:n=>qg(n)&&n.endsWith(e)&&1===n.split(" ").length,parse:parseFloat,transform:n=>`${n}${e}`}),nh=eh("deg"),th=eh("%"),ih=eh("px"),ah=eh("vh"),oh=eh("vw"),rh={...th,parse:e=>th.parse(e)/100,transform:e=>th.transform(100*e)},sh={...Pg,transform:Math.round},uh={borderWidth:ih,borderTopWidth:ih,borderRightWidth:ih,borderBottomWidth:ih,borderLeftWidth:ih,borderRadius:ih,radius:ih,borderTopLeftRadius:ih,borderTopRightRadius:ih,borderBottomRightRadius:ih,borderBottomLeftRadius:ih,width:ih,maxWidth:ih,height:ih,maxHeight:ih,size:ih,top:ih,right:ih,bottom:ih,left:ih,padding:ih,paddingTop:ih,paddingRight:ih,paddingBottom:ih,paddingLeft:ih,margin:ih,marginTop:ih,marginRight:ih,marginBottom:ih,marginLeft:ih,rotate:nh,rotateX:nh,rotateY:nh,rotateZ:nh,scale:Rg,scaleX:Rg,scaleY:Rg,scaleZ:Rg,skew:nh,skewX:nh,skewY:nh,distance:ih,translateX:ih,translateY:ih,translateZ:ih,x:ih,y:ih,z:ih,perspective:ih,transformPerspective:ih,opacity:Gg,originX:rh,originY:rh,originZ:ih,zIndex:sh,fillOpacity:Gg,strokeOpacity:Gg,numOctaves:sh};function lh(e,n,t,i){const{style:a,vars:o,transform:r,transformKeys:s,transformOrigin:u}=e;s.length=0;let l=!1,c=!1,d=!0;for(const e in n){const t=n[e];if(Ug(e)){o[e]=t;continue}const i=uh[e],g=Hg(t,i);if(Zg.has(e)){if(l=!0,r[e]=g,s.push(e),!d)continue;t!==(i.default||0)&&(d=!1)}else e.startsWith("origin")?(c=!0,u[e]=g):a[e]=g}if(n.transform||(l||i?a.transform=function({transform:e,transformKeys:n},{enableHardwareAcceleration:t=!0,allowTransformNone:i=!0},a,o){let r="";n.sort(Xg);for(const t of n)r+=`${Fg[t]||t}(${e[t]}) `;return t&&!e.z&&(r+="translateZ(0)"),r=r.trim(),o?r=o(e,a?"":r):i&&a&&(r="none"),r}(e,t,d,i):a.transform&&(a.transform="none")),c){const{originX:e="50%",originY:n="50%",originZ:t=0}=u;a.transformOrigin=`${e} ${n} ${t}`}}const ch=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}});function dh(e,n,t){for(const i in n)Bg(n[i])||_g(i,t)||(e[i]=n[i])}function gh(e,n,t){const i={};return dh(i,e.style||{},e),Object.assign(i,function({transformTemplate:e},n,t){return ee.useMemo(()=>{const i={style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}};return lh(i,n,{enableHardwareAcceleration:!t},e),Object.assign({},i.vars,i.style)},[n])}(e,n,t)),e.transformValues?e.transformValues(i):i}function hh(e,n,t){const i={},a=gh(e,n,t);return e.drag&&!1!==e.dragListener&&(i.draggable=!1,a.userSelect=a.WebkitUserSelect=a.WebkitTouchCallout="none",a.touchAction=!0===e.drag?"none":"pan-"+("x"===e.drag?"y":"x")),i.style=a,i}const ph=new Set(["initial","style","values","variants","transition","transformTemplate","transformValues","custom","inherit","layout","layoutId","layoutDependency","onLayoutAnimationStart","onLayoutAnimationComplete","onLayoutMeasure","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","drag","dragControls","dragListener","dragConstraints","dragDirectionLock","dragSnapToOrigin","_dragX","_dragY","dragElastic","dragMomentum","dragPropagation","dragTransition","onHoverStart","onHoverEnd","layoutScroll","whileInView","onViewportEnter","onViewportLeave","viewport","whileTap","onTap","onTapStart","onTapCancel","animate","exit","variants","whileHover","whileTap","whileFocus","whileDrag","whileInView","onPan","onPanStart","onPanSessionStart","onPanEnd"]);function mh(e){return ph.has(e)}let yh=e=>!mh(e);try{(fh=require("@emotion/is-prop-valid").default)&&(yh=e=>e.startsWith("on")?!mh(e):fh(e))}catch(eS){}var fh;function Mh(e,n,t){return"string"==typeof e?e:ih.transform(n+t*e)}const jh={offset:"stroke-dashoffset",array:"stroke-dasharray"},bh={offset:"strokeDashoffset",array:"strokeDasharray"};function wh(e,{attrX:n,attrY:t,originX:i,originY:a,pathLength:o,pathSpacing:r=1,pathOffset:s=0,...u},l,c,d){if(lh(e,u,l,d),c)return void(e.style.viewBox&&(e.attrs.viewBox=e.style.viewBox));e.attrs=e.style,e.style={};const{attrs:g,style:h,dimensions:p}=e;g.transform&&(p&&(h.transform=g.transform),delete g.transform),p&&(void 0!==i||void 0!==a||h.transform)&&(h.transformOrigin=function(e,n,t){return`${Mh(n,e.x,e.width)} ${Mh(t,e.y,e.height)}`}(p,void 0!==i?i:.5,void 0!==a?a:.5)),void 0!==n&&(g.x=n),void 0!==t&&(g.y=t),void 0!==o&&function(e,n,t=1,i=0,a=!0){e.pathLength=1;const o=a?jh:bh;e[o.offset]=ih.transform(-i);const r=ih.transform(n),s=ih.transform(t);e[o.array]=`${r} ${s}`}(g,o,r,s,!1)}const xh=()=>({style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{},attrs:{}}),Lh=e=>"string"==typeof e&&"svg"===e.toLowerCase();function Nh(e,n,t,i){const a=ee.useMemo(()=>{const t={style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{},attrs:{}};return wh(t,n,{enableHardwareAcceleration:!1},Lh(i),e.transformTemplate),{...t.attrs,style:{...t.style}}},[n]);if(e.style){const n={};dh(n,e.style,e),a.style={...n,...a.style}}return a}function vh(e=!1){return(n,t,i,a,{latestValues:o},r)=>{const s=(Yg(n)?Nh:hh)(t,o,r,n),u=function(e,n,t){const i={};for(const a in e)(yh(a)||!0===t&&mh(a)||!n&&!mh(a)||e.draggable&&a.startsWith("onDrag"))&&(i[a]=e[a]);return i}(t,"string"==typeof n,e),l={...u,...s,ref:a};return i&&(l["data-projection-id"]=i),ee.createElement(n,l)}}const Sh=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();function Th(e,{style:n,vars:t},i,a){Object.assign(e.style,n,a&&a.getProjectionStyles(i));for(const n in t)e.style.setProperty(n,t[n])}const Dh=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function kh(e,n,t,i){Th(e,n,void 0,i);for(const t in n.attrs)e.setAttribute(Dh.has(t)?t:Sh(t),n.attrs[t])}function Ch(e){const{style:n}=e,t={};for(const i in n)(Bg(n[i])||_g(i,e))&&(t[i]=n[i]);return t}function Eh(e){const n=Ch(e);for(const t in e)if(Bg(e[t])){n["x"===t||"y"===t?"attr"+t.toUpperCase():t]=e[t]}return n}function zh(e,n,t,i={},a={}){return"function"==typeof n&&(n=n(void 0!==t?t:e.custom,i,a)),"string"==typeof n&&(n=e.variants&&e.variants[n]),"function"==typeof n&&(n=n(void 0!==t?t:e.custom,i,a)),n}const Ih=e=>Array.isArray(e),Ah=e=>Ih(e)?e[e.length-1]||0:e;function Yh(e){const n=Bg(e)?e.get():e;return(e=>Boolean(e&&"object"==typeof e&&e.mix&&e.toValue))(n)?n.toValue():n}const Oh=e=>(n,t)=>{const i=ee.useContext(ug),a=ee.useContext(lg),o=()=>function({scrapeMotionValuesFromProps:e,createRenderState:n,onMount:t},i,a,o){const r={latestValues:Qh(i,a,o,e),renderState:n()};return t&&(r.mount=e=>t(i,e,r)),r}(e,n,i,a);return t?o():Ng(o)};function Qh(e,n,t,i){const a={},o=i(e);for(const e in o)a[e]=Yh(o[e]);let{initial:r,animate:s}=e;const u=Mg(e),l=jg(e);n&&l&&!u&&!1!==e.inherit&&(void 0===r&&(r=n.initial),void 0===s&&(s=n.animate));let c=!!t&&!1===t.initial;c=c||!1===r;const d=c?s:r;if(d&&"boolean"!=typeof d&&!yg(d)){(Array.isArray(d)?d:[d]).forEach(n=>{const t=zh(e,n);if(!t)return;const{transitionEnd:i,transition:o,...r}=t;for(const e in r){let n=r[e];if(Array.isArray(n)){n=n[c?n.length-1:0]}null!==n&&(a[e]=n)}for(const e in i)a[e]=i[e]})}return a}const Zh={useVisualState:Oh({scrapeMotionValuesFromProps:Eh,createRenderState:xh,onMount:(e,n,{renderState:t,latestValues:i})=>{try{t.dimensions="function"==typeof n.getBBox?n.getBBox():n.getBoundingClientRect()}catch(e){t.dimensions={x:0,y:0,width:0,height:0}}wh(t,i,{enableHardwareAcceleration:!1},Lh(n.tagName),e.transformTemplate),kh(n,t)}})},_h={useVisualState:Oh({scrapeMotionValuesFromProps:Ch,createRenderState:ch})};var Bh;function Fh(e,n,t,i={passive:!0}){return e.addEventListener(n,t,i),()=>e.removeEventListener(n,t)}function Xh(e,n,t,i){ee.useEffect(()=>{const a=e.current;if(t&&a)return Fh(a,n,t,i)},[e,n,t,i])}function Uh(e){return"undefined"!=typeof PointerEvent&&e instanceof PointerEvent?!("mouse"!==e.pointerType):e instanceof MouseEvent}function Hh(e){return!!e.touches}!function(e){e.Animate="animate",e.Hover="whileHover",e.Tap="whileTap",e.Drag="whileDrag",e.Focus="whileFocus",e.InView="whileInView",e.Exit="exit"}(Bh||(Bh={}));const Jh={pageX:0,pageY:0};function Ph(e,n="page"){const t=e.touches[0]||e.changedTouches[0]||Jh;return{x:t[n+"X"],y:t[n+"Y"]}}function Gh(e,n="page"){return{x:e[n+"X"],y:e[n+"Y"]}}function Rh(e,n="page"){return{point:Hh(e)?Ph(e,n):Gh(e,n)}}const Wh=(e,n=!1)=>{const t=n=>e(n,Rh(n));return n?(i=t,e=>{const n=e instanceof MouseEvent;(!n||n&&0===e.button)&&i(e)}):t;var i},Kh={pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointercancel:"mousecancel",pointerover:"mouseover",pointerout:"mouseout",pointerenter:"mouseenter",pointerleave:"mouseleave"},Vh={pointerdown:"touchstart",pointermove:"touchmove",pointerup:"touchend",pointercancel:"touchcancel"};function $h(e){return cg&&null===window.onpointerdown?e:cg&&null===window.ontouchstart?Vh[e]:cg&&null===window.onmousedown?Kh[e]:e}function qh(e,n,t,i){return Fh(e,$h(n),Wh(t,"pointerdown"===n),i)}function ep(e,n,t,i){return Xh(e,$h(n),t&&Wh(t,"pointerdown"===n),i)}function np(e){let n=null;return()=>{const t=()=>{n=null};return null===n&&(n=e,t)}}const tp=np("dragHorizontal"),ip=np("dragVertical");function ap(e){let n=!1;if("y"===e)n=ip();else if("x"===e)n=tp();else{const e=tp(),t=ip();e&&t?n=()=>{e(),t()}:(e&&e(),t&&t())}return n}function op(){const e=ap(!0);return!e||(e(),!1)}function rp(e,n,t){return(i,a)=>{Uh(i)&&!op()&&(e.animationState&&e.animationState.setActive(Bh.Hover,n),t&&t(i,a))}}const sp=(e,n)=>!!n&&(e===n||sp(e,n.parentElement));function up(e){return ee.useEffect(()=>()=>e(),[])}const lp=(e,n)=>t=>n(e(t)),cp=(...e)=>e.reduce(lp);const dp=("undefined"==typeof process||process.env,"production"),gp=new Set;function hp(e,n,t){e||gp.has(n)||(console.warn(n),t&&console.warn(t),gp.add(n))}const pp=new WeakMap,mp=new WeakMap,yp=e=>{const n=pp.get(e.target);n&&n(e)},fp=e=>{e.forEach(yp)};function Mp(e,n,t){const i=function({root:e,...n}){const t=e||document;mp.has(t)||mp.set(t,{});const i=mp.get(t),a=JSON.stringify(n);return i[a]||(i[a]=new IntersectionObserver(fp,{root:e,...n})),i[a]}(n);return pp.set(e,t),i.observe(e),()=>{pp.delete(e),i.unobserve(e)}}const jp={some:0,all:1};function bp(e,n,t,{root:i,margin:a,amount:o="some",once:r}){ee.useEffect(()=>{if(!e||!t.current)return;const s={root:null==i?void 0:i.current,rootMargin:a,threshold:"number"==typeof o?o:jp[o]};return Mp(t.current,s,e=>{const{isIntersecting:i}=e;if(n.isInView===i)return;if(n.isInView=i,r&&!i&&n.hasEnteredView)return;i&&(n.hasEnteredView=!0),t.animationState&&t.animationState.setActive(Bh.InView,i);const a=t.getProps(),o=i?a.onViewportEnter:a.onViewportLeave;o&&o(e)})},[e,i,a,o])}function wp(e,n,t,{fallback:i=!0}){ee.useEffect(()=>{e&&i&&("production"!==dp&&hp(!1,"IntersectionObserver not available on this device. whileInView animations will trigger on mount."),requestAnimationFrame(()=>{n.hasEnteredView=!0;const{onViewportEnter:e}=t.getProps();e&&e(null),t.animationState&&t.animationState.setActive(Bh.InView,!0)}))},[e])}const xp=e=>n=>(e(n),null),Lp={inView:xp(function({visualElement:e,whileInView:n,onViewportEnter:t,onViewportLeave:i,viewport:a={}}){const o=ee.useRef({hasEnteredView:!1,isInView:!1});let r=Boolean(n||t||i);a.once&&o.current.hasEnteredView&&(r=!1),("undefined"==typeof IntersectionObserver?wp:bp)(r,o.current,e,a)}),tap:xp(function({onTap:e,onTapStart:n,onTapCancel:t,whileTap:i,visualElement:a}){const o=e||n||t||i,r=ee.useRef(!1),s=ee.useRef(null),u={passive:!(n||e||t||h)};function l(){s.current&&s.current(),s.current=null}function c(){return l(),r.current=!1,a.animationState&&a.animationState.setActive(Bh.Tap,!1),!op()}function d(n,i){c()&&(sp(a.current,n.target)?e&&e(n,i):t&&t(n,i))}function g(e,n){c()&&t&&t(e,n)}function h(e,t){l(),r.current||(r.current=!0,s.current=cp(qh(window,"pointerup",d,u),qh(window,"pointercancel",g,u)),a.animationState&&a.animationState.setActive(Bh.Tap,!0),n&&n(e,t))}ep(a,"pointerdown",o?h:void 0,u),up(l)}),focus:xp(function({whileFocus:e,visualElement:n}){const{animationState:t}=n;Xh(n,"focus",e?()=>{t&&t.setActive(Bh.Focus,!0)}:void 0),Xh(n,"blur",e?()=>{t&&t.setActive(Bh.Focus,!1)}:void 0)}),hover:xp(function({onHoverStart:e,onHoverEnd:n,whileHover:t,visualElement:i}){ep(i,"pointerenter",e||t?rp(i,!0,e):void 0,{passive:!e}),ep(i,"pointerleave",n||t?rp(i,!1,n):void 0,{passive:!n})})};function Np(){const e=ee.useContext(lg);if(null===e)return[!0,null];const{isPresent:n,onExitComplete:t,register:i}=e,a=ee.useId();ee.useEffect(()=>i(a),[]);return!n&&t?[!1,()=>t&&t(a)]:[!0]}function vp(e,n){if(!Array.isArray(n))return!1;const t=n.length;if(t!==e.length)return!1;for(let i=0;i<t;i++)if(n[i]!==e[i])return!1;return!0}const Sp=e=>/^\-?\d*\.?\d+$/.test(e),Tp=e=>/^0[^.\s]+$/.test(e),Dp={delta:0,timestamp:0},kp=1/60*1e3,Cp="undefined"!=typeof performance?()=>performance.now():()=>Date.now(),Ep="undefined"!=typeof window?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(Cp()),kp);let zp=!0,Ip=!1,Ap=!1;const Yp=["read","update","preRender","render","postRender"],Op=Yp.reduce((e,n)=>(e[n]=function(e){let n=[],t=[],i=0,a=!1,o=!1;const r=new WeakSet,s={schedule:(e,o=!1,s=!1)=>{const u=s&&a,l=u?n:t;return o&&r.add(e),-1===l.indexOf(e)&&(l.push(e),u&&a&&(i=n.length)),e},cancel:e=>{const n=t.indexOf(e);-1!==n&&t.splice(n,1),r.delete(e)},process:u=>{if(a)o=!0;else{if(a=!0,[n,t]=[t,n],t.length=0,i=n.length,i)for(let t=0;t<i;t++){const i=n[t];i(u),r.has(i)&&(s.schedule(i),e())}a=!1,o&&(o=!1,s.process(u))}}};return s}(()=>Ip=!0),e),{}),Qp=Yp.reduce((e,n)=>{const t=Op[n];return e[n]=(e,n=!1,i=!1)=>(Ip||Xp(),t.schedule(e,n,i)),e},{}),Zp=Yp.reduce((e,n)=>(e[n]=Op[n].cancel,e),{}),_p=Yp.reduce((e,n)=>(e[n]=()=>Op[n].process(Dp),e),{}),Bp=e=>Op[e].process(Dp),Fp=e=>{Ip=!1,Dp.delta=zp?kp:Math.max(Math.min(e-Dp.timestamp,40),1),Dp.timestamp=e,Ap=!0,Yp.forEach(Bp),Ap=!1,Ip&&(zp=!1,Ep(Fp))},Xp=()=>{Ip=!0,zp=!0,Ap||Ep(Fp)};function Up(e,n){-1===e.indexOf(n)&&e.push(n)}function Hp(e,n){const t=e.indexOf(n);t>-1&&e.splice(t,1)}class Jp{constructor(){this.subscriptions=[]}add(e){return Up(this.subscriptions,e),()=>Hp(this.subscriptions,e)}notify(e,n,t){const i=this.subscriptions.length;if(i)if(1===i)this.subscriptions[0](e,n,t);else for(let a=0;a<i;a++){const i=this.subscriptions[a];i&&i(e,n,t)}}getSize(){return this.subscriptions.length}clear(){this.subscriptions.length=0}}function Pp(e,n){return n?e*(1e3/n):0}class Gp{constructor(e,n={}){var t;this.version="7.10.3",this.timeDelta=0,this.lastUpdated=0,this.canTrackVelocity=!1,this.events={},this.updateAndNotify=(e,n=!0)=>{this.prev=this.current,this.current=e;const{delta:t,timestamp:i}=Dp;this.lastUpdated!==i&&(this.timeDelta=t,this.lastUpdated=i,Qp.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.events.change&&this.events.change.notify(this.current),this.events.velocityChange&&this.events.velocityChange.notify(this.getVelocity()),n&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.scheduleVelocityCheck=()=>Qp.postRender(this.velocityCheck),this.velocityCheck=({timestamp:e})=>{e!==this.lastUpdated&&(this.prev=this.current,this.events.velocityChange&&this.events.velocityChange.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=e,this.canTrackVelocity=(t=this.current,!isNaN(parseFloat(t))),this.owner=n.owner}onChange(e){return this.on("change",e)}on(e,n){return this.events[e]||(this.events[e]=new Jp),this.events[e].add(n)}clearListeners(){for(const e in this.events)this.events[e].clear()}attach(e){this.passiveEffect=e}set(e,n=!0){n&&this.passiveEffect?this.passiveEffect(e,this.updateAndNotify):this.updateAndNotify(e,n)}setWithVelocity(e,n,t){this.set(n),this.prev=e,this.timeDelta=t}get(){return this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?Pp(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(e){return this.stop(),new Promise(n=>{this.hasAnimated=!0,this.stopAnimation=e(n),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.stopAnimation&&(this.stopAnimation(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.stopAnimation}clearAnimation(){this.stopAnimation=null}destroy(){this.clearListeners(),this.stop()}}function Rp(e,n){return new Gp(e,n)}const Wp=(e,n)=>t=>Boolean(qg(t)&&$g.test(t)&&t.startsWith(e)||n&&Object.prototype.hasOwnProperty.call(t,n)),Kp=(e,n,t)=>i=>{if(!qg(i))return i;const[a,o,r,s]=i.match(Kg);return{[e]:parseFloat(a),[n]:parseFloat(o),[t]:parseFloat(r),alpha:void 0!==s?parseFloat(s):1}},Vp={...Pg,transform:e=>Math.round((e=>Jg(0,255,e))(e))},$p={test:Wp("rgb","red"),parse:Kp("red","green","blue"),transform:({red:e,green:n,blue:t,alpha:i=1})=>"rgba("+Vp.transform(e)+", "+Vp.transform(n)+", "+Vp.transform(t)+", "+Wg(Gg.transform(i))+")"};const qp={test:Wp("#"),parse:function(e){let n="",t="",i="",a="";return e.length>5?(n=e.substring(1,3),t=e.substring(3,5),i=e.substring(5,7),a=e.substring(7,9)):(n=e.substring(1,2),t=e.substring(2,3),i=e.substring(3,4),a=e.substring(4,5),n+=n,t+=t,i+=i,a+=a),{red:parseInt(n,16),green:parseInt(t,16),blue:parseInt(i,16),alpha:a?parseInt(a,16)/255:1}},transform:$p.transform},em={test:Wp("hsl","hue"),parse:Kp("hue","saturation","lightness"),transform:({hue:e,saturation:n,lightness:t,alpha:i=1})=>"hsla("+Math.round(e)+", "+th.transform(Wg(n))+", "+th.transform(Wg(t))+", "+Wg(Gg.transform(i))+")"},nm={test:e=>$p.test(e)||qp.test(e)||em.test(e),parse:e=>$p.test(e)?$p.parse(e):em.test(e)?em.parse(e):qp.parse(e),transform:e=>qg(e)?e:e.hasOwnProperty("red")?$p.transform(e):em.transform(e)},tm="${c}",im="${n}";function am(e){"number"==typeof e&&(e=`${e}`);const n=[];let t=0,i=0;const a=e.match(Vg);a&&(t=a.length,e=e.replace(Vg,tm),n.push(...a.map(nm.parse)));const o=e.match(Kg);return o&&(i=o.length,e=e.replace(Kg,im),n.push(...o.map(Pg.parse))),{values:n,numColors:t,numNumbers:i,tokenised:e}}function om(e){return am(e).values}function rm(e){const{values:n,numColors:t,tokenised:i}=am(e),a=n.length;return e=>{let n=i;for(let i=0;i<a;i++)n=n.replace(i<t?tm:im,i<t?nm.transform(e[i]):Wg(e[i]));return n}}const sm=e=>"number"==typeof e?0:e;const um={test:function(e){var n,t;return isNaN(e)&&qg(e)&&((null===(n=e.match(Kg))||void 0===n?void 0:n.length)||0)+((null===(t=e.match(Vg))||void 0===t?void 0:t.length)||0)>0},parse:om,createTransformer:rm,getAnimatableNone:function(e){const n=om(e);return rm(e)(n.map(sm))}},lm=new Set(["brightness","contrast","saturate","opacity"]);function cm(e){const[n,t]=e.slice(0,-1).split("(");if("drop-shadow"===n)return e;const[i]=t.match(Kg)||[];if(!i)return e;const a=t.replace(i,"");let o=lm.has(n)?1:0;return i!==t&&(o*=100),n+"("+o+a+")"}const dm=/([a-z-]*)\(.*?\)/g,gm={...um,getAnimatableNone:e=>{const n=e.match(dm);return n?n.map(cm).join(" "):e}},hm={...uh,color:nm,backgroundColor:nm,outlineColor:nm,fill:nm,stroke:nm,borderColor:nm,borderTopColor:nm,borderRightColor:nm,borderBottomColor:nm,borderLeftColor:nm,filter:gm,WebkitFilter:gm},pm=e=>hm[e];function mm(e,n){var t;let i=pm(e);return i!==gm&&(i=um),null===(t=i.getAnimatableNone)||void 0===t?void 0:t.call(i,n)}const ym=e=>n=>n.test(e),fm=[Pg,ih,th,nh,oh,ah,{test:e=>"auto"===e,parse:e=>e}],Mm=e=>fm.find(ym(e)),jm=[...fm,nm,um],bm=e=>jm.find(ym(e));function wm(e,n,t){const i=e.getProps();return zh(i,n,void 0!==t?t:i.custom,function(e){const n={};return e.values.forEach((e,t)=>n[t]=e.get()),n}(e),function(e){const n={};return e.values.forEach((e,t)=>n[t]=e.getVelocity()),n}(e))}function xm(e,n,t){e.hasValue(n)?e.getValue(n).set(t):e.addValue(n,Rp(t))}function Lm(e,n){if(!n)return;return(n[e]||n.default||n).from}function Nm(e){return Boolean(Bg(e)&&e.add)}function vm(e,n){const{MotionAppearAnimations:t}=window,i=((e,n)=>`${e}: ${n}`)(e,Zg.has(n)?"transform":n),a=t&&t.get(i);return a?(Qp.render(()=>{try{a.cancel(),t.delete(i)}catch(e){}}),a.currentTime||0):0}const Sm="data-"+Sh("framerAppearId");var Tm=function(){};const Dm=e=>1e3*e,km=!1,Cm=e=>n=>n<=.5?e(2*n)/2:(2-e(2*(1-n)))/2,Em=e=>n=>1-e(1-n),zm=e=>e*e,Im=Em(zm),Am=Cm(zm),Ym=(e,n,t)=>-t*e+t*n+e;function Om(e,n,t){return t<0&&(t+=1),t>1&&(t-=1),t<1/6?e+6*(n-e)*t:t<.5?n:t<2/3?e+(n-e)*(2/3-t)*6:e}const Qm=(e,n,t)=>{const i=e*e;return Math.sqrt(Math.max(0,t*(n*n-i)+i))},Zm=[qp,$p,em];function _m(e){const n=(e=>Zm.find(n=>n.test(e)))(e);let t=n.parse(e);return n===em&&(t=function({hue:e,saturation:n,lightness:t,alpha:i}){e/=360,t/=100;let a=0,o=0,r=0;if(n/=100){const i=t<.5?t*(1+n):t+n-t*n,s=2*t-i;a=Om(s,i,e+1/3),o=Om(s,i,e),r=Om(s,i,e-1/3)}else a=o=r=t;return{red:Math.round(255*a),green:Math.round(255*o),blue:Math.round(255*r),alpha:i}}(t)),t}const Bm=(e,n)=>{const t=_m(e),i=_m(n),a={...t};return e=>(a.red=Qm(t.red,i.red,e),a.green=Qm(t.green,i.green,e),a.blue=Qm(t.blue,i.blue,e),a.alpha=Ym(t.alpha,i.alpha,e),$p.transform(a))};function Fm(e,n){return"number"==typeof e?t=>Ym(e,n,t):nm.test(e)?Bm(e,n):Hm(e,n)}const Xm=(e,n)=>{const t=[...e],i=t.length,a=e.map((e,t)=>Fm(e,n[t]));return e=>{for(let n=0;n<i;n++)t[n]=a[n](e);return t}},Um=(e,n)=>{const t={...e,...n},i={};for(const a in t)void 0!==e[a]&&void 0!==n[a]&&(i[a]=Fm(e[a],n[a]));return e=>{for(const n in i)t[n]=i[n](e);return t}},Hm=(e,n)=>{const t=um.createTransformer(n),i=am(e),a=am(n);return i.numColors===a.numColors&&i.numNumbers>=a.numNumbers?cp(Xm(i.values,a.values),t):t=>`${t>0?n:e}`},Jm=(e,n,t)=>{const i=n-e;return 0===i?1:(t-e)/i},Pm=(e,n)=>t=>Ym(e,n,t);function Gm(e,n,t){const i=[],a=t||function(e){return"number"==typeof e?Pm:"string"==typeof e?nm.test(e)?Bm:Hm:Array.isArray(e)?Xm:"object"==typeof e?Um:Pm}(e[0]),o=e.length-1;for(let t=0;t<o;t++){let o=a(e[t],e[t+1]);if(n){const e=Array.isArray(n)?n[t]:n;o=cp(e,o)}i.push(o)}return i}function Rm(e,n,{clamp:t=!0,ease:i,mixer:a}={}){const o=e.length;e[0]>e[o-1]&&(e=[...e].reverse(),n=[...n].reverse());const r=Gm(n,i,a),s=r.length,u=n=>{let t=0;if(s>1)for(;t<e.length-2&&!(n<e[t+1]);t++);const i=Jm(e[t],e[t+1],n);return r[t](i)};return t?n=>u(Jg(e[0],e[o-1],n)):u}const Wm=e=>e,Km=(e,n,t)=>(((1-3*t+3*n)*e+(3*t-6*n))*e+3*n)*e;function Vm(e,n,t,i){if(e===n&&t===i)return Wm;const a=n=>function(e,n,t,i,a){let o,r,s=0;do{r=n+(t-n)/2,o=Km(r,i,a)-e,o>0?t=r:n=r}while(Math.abs(o)>1e-7&&++s<12);return r}(n,0,1,e,t);return e=>0===e||1===e?e:Km(a(e),n,i)}const $m=e=>1-Math.sin(Math.acos(e)),qm=Em($m),ey=Cm(qm),ny=Vm(.33,1.53,.69,.99),ty=Em(ny),iy=Cm(ty),ay={linear:Wm,easeIn:zm,easeInOut:Am,easeOut:Im,circIn:$m,circInOut:ey,circOut:qm,backIn:ty,backInOut:iy,backOut:ny,anticipate:e=>(e*=2)<1?.5*ty(e):.5*(2-Math.pow(2,-10*(e-1)))},oy=e=>{if(Array.isArray(e)){const[n,t,i,a]=e;return Vm(n,t,i,a)}return"string"==typeof e?ay[e]:e};function ry({keyframes:e,ease:n=Am,times:t,duration:i=300}){e=[...e];const a=ry[0],o=(e=>Array.isArray(e)&&"number"!=typeof e[0])(n)?n.map(oy):oy(n),r={done:!1,value:a},s=function(e,n){return e.map(e=>e*n)}(t&&t.length===ry.length?t:function(e){const n=e.length;return e.map((e,t)=>0!==t?t/(n-1):0)}(e),i);function u(){return Rm(s,e,{ease:Array.isArray(o)?o:(n=e,t=o,n.map(()=>t||Am).splice(0,n.length-1))});var n,t}let l=u();return{next:e=>(r.value=l(e),r.done=e>=i,r),flipTarget:()=>{e.reverse(),l=u()}}}const sy=.001;function uy({duration:e=800,bounce:n=.25,velocity:t=0,mass:i=1}){let a,o,r=1-n;r=Jg(.05,1,r),e=Jg(.01,10,e/1e3),r<1?(a=n=>{const i=n*r,a=i*e,o=i-t,s=cy(n,r),u=Math.exp(-a);return sy-o/s*u},o=n=>{const i=n*r*e,o=i*t+t,s=Math.pow(r,2)*Math.pow(n,2)*e,u=Math.exp(-i),l=cy(Math.pow(n,2),r);return(-a(n)+sy>0?-1:1)*((o-s)*u)/l}):(a=n=>Math.exp(-n*e)*((n-t)*e+1)-.001,o=n=>Math.exp(-n*e)*(e*e*(t-n)));const s=function(e,n,t){let i=t;for(let t=1;t<ly;t++)i-=e(i)/n(i);return i}(a,o,5/e);if(e*=1e3,isNaN(s))return{stiffness:100,damping:10,duration:e};{const n=Math.pow(s,2)*i;return{stiffness:n,damping:2*r*Math.sqrt(i*n),duration:e}}}const ly=12;function cy(e,n){return e*Math.sqrt(1-n*n)}const dy=["duration","bounce"],gy=["stiffness","damping","mass"];function hy(e,n){return n.some(n=>void 0!==e[n])}function py({keyframes:e,restSpeed:n=2,restDelta:t=.01,...i}){let a=e[0],o=e[e.length-1];const r={done:!1,value:a},{stiffness:s,damping:u,mass:l,velocity:c,duration:d,isResolvedFromDuration:g}=function(e){let n={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...e};if(!hy(e,gy)&&hy(e,dy)){const t=uy(e);n={...n,...t,velocity:0,mass:1},n.isResolvedFromDuration=!0}return n}(i);let h=my,p=c?-c/1e3:0;const m=u/(2*Math.sqrt(s*l));function y(){const e=o-a,n=Math.sqrt(s/l)/1e3;if(void 0===t&&(t=Math.min(Math.abs(o-a)/100,.4)),m<1){const t=cy(n,m);h=i=>{const a=Math.exp(-m*n*i);return o-a*((p+m*n*e)/t*Math.sin(t*i)+e*Math.cos(t*i))}}else if(1===m)h=t=>o-Math.exp(-n*t)*(e+(p+n*e)*t);else{const t=n*Math.sqrt(m*m-1);h=i=>{const a=Math.exp(-m*n*i),r=Math.min(t*i,300);return o-a*((p+m*n*e)*Math.sinh(r)+t*e*Math.cosh(r))/t}}}return y(),{next:e=>{const i=h(e);if(g)r.done=e>=d;else{let a=p;if(0!==e)if(m<1){const n=Math.max(0,e-5);a=Pp(i-h(n),e-n)}else a=0;const s=Math.abs(a)<=n,u=Math.abs(o-i)<=t;r.done=s&&u}return r.value=r.done?o:i,r},flipTarget:()=>{p=-p,[a,o]=[o,a],y()}}}py.needsInterpolation=(e,n)=>"string"==typeof e||"string"==typeof n;const my=e=>0;const yy={decay:function({keyframes:e=[0],velocity:n=0,power:t=.8,timeConstant:i=350,restDelta:a=.5,modifyTarget:o}){const r=e[0],s={done:!1,value:r};let u=t*n;const l=r+u,c=void 0===o?l:o(l);return c!==l&&(u=c-r),{next:e=>{const n=-u*Math.exp(-e/i);return s.done=!(n>a||n<-a),s.value=s.done?c:c+n,s},flipTarget:()=>{}}},keyframes:ry,tween:ry,spring:py};function fy(e,n,t=0){return e-n-t}const My=e=>{const n=({delta:n})=>e(n);return{start:()=>Qp.update(n,!0),stop:()=>Zp.update(n)}};function jy({duration:e,driver:n=My,elapsed:t=0,repeat:i=0,repeatType:a="loop",repeatDelay:o=0,keyframes:r,autoplay:s=!0,onPlay:u,onStop:l,onComplete:c,onRepeat:d,onUpdate:g,type:h="keyframes",...p}){var m,y;let f,M,j,b=0,w=e,x=!1,L=!0;const N=yy[r.length>2?"keyframes":h],v=r[0],S=r[r.length-1];(null===(y=(m=N).needsInterpolation)||void 0===y?void 0:y.call(m,v,S))&&(j=Rm([0,100],[v,S],{clamp:!1}),r=[0,100]);const T=N({...p,duration:e,keyframes:r});function D(){b++,"reverse"===a?(L=b%2==0,t=function(e,n=0,t=0,i=!0){return i?fy(n+-e,n,t):n-(e-n)+t}(t,w,o,L)):(t=fy(t,w,o),"mirror"===a&&T.flipTarget()),x=!1,d&&d()}function k(e){if(L||(e=-e),t+=e,!x){const e=T.next(Math.max(0,t));M=e.value,j&&(M=j(M)),x=L?e.done:t<=0}g&&g(M),x&&(0===b&&(w=void 0!==w?w:t),b<i?function(e,n,t,i){return i?e>=n+t:e<=-t}(t,w,o,L)&&D():(f.stop(),c&&c()))}return s&&(u&&u(),f=n(k),f.start()),{stop:()=>{l&&l(),f.stop()},sample:e=>T.next(Math.max(0,e))}}const by=([e,n,t,i])=>`cubic-bezier(${e}, ${n}, ${t}, ${i})`,wy={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:by([0,.65,.55,1]),circOut:by([.55,0,1,.45]),backIn:by([.31,.01,.66,-.59]),backOut:by([.33,1.53,.69,.99])};function xy(e){if(e)return Array.isArray(e)?by(e):wy[e]}function Ly(e,n,{onUpdate:t,onComplete:i,...a}){let{keyframes:o,duration:r=.3,elapsed:s=0,ease:u}=a;if("spring"===a.type||!(!(l=a.ease)||Array.isArray(l)||"string"==typeof l&&wy[l])){const e=jy(a);let n={done:!1,value:o[0]};const t=[];let i=0;for(;!n.done;)n=e.sample(i),t.push(n.value),i+=10;o=t,r=i-10,u="linear"}var l;const c=function(e,n,t,{delay:i=0,duration:a,repeat:o=0,repeatType:r="loop",ease:s,times:u}={}){return e.animate({[n]:t,offset:u},{delay:i,duration:a,easing:xy(s),fill:"both",iterations:o+1,direction:"reverse"===r?"alternate":"normal"})}(e.owner.current,n,o,{...a,delay:-s,duration:r,ease:u});return c.onfinish=()=>{e.set(o[o.length-1]),i&&i()},()=>{const{currentTime:n}=c;if(n){const t=jy(a);e.setWithVelocity(t.sample(n-10).value,t.sample(n).value,10)}Qp.update(()=>c.cancel())}}function Ny(e,n){const t=performance.now(),i=({timestamp:a})=>{const o=a-t;o>=n&&(Zp.read(i),e(o-n))};return Qp.read(i,!0),()=>Zp.read(i)}function vy({keyframes:e,elapsed:n,onUpdate:t,onComplete:i}){const a=()=>(t&&t(e[e.length-1]),i&&i(),()=>{});return n?Ny(a,-n):a()}const Sy=()=>({type:"spring",stiffness:500,damping:25,restSpeed:10}),Ty=e=>({type:"spring",stiffness:550,damping:0===e?2*Math.sqrt(550):30,restSpeed:10}),Dy=()=>({type:"keyframes",ease:"linear",duration:.3}),ky={type:"keyframes",duration:.8},Cy={x:Sy,y:Sy,z:Sy,rotate:Sy,rotateX:Sy,rotateY:Sy,rotateZ:Sy,scaleX:Ty,scaleY:Ty,scale:Ty,opacity:Dy,backgroundColor:Dy,color:Dy,default:Ty},Ey=(e,{keyframes:n})=>{if(n.length>2)return ky;return(Cy[e]||Cy.default)(n[1])},zy=(e,n)=>"zIndex"!==e&&(!("number"!=typeof n&&!Array.isArray(n))||!("string"!=typeof n||!um.test(n)||n.startsWith("url(")));function Iy(e){return 0===e||"string"==typeof e&&0===parseFloat(e)&&-1===e.indexOf(" ")}function Ay(e){return"number"==typeof e?0:mm("",e)}function Yy(e,n){return e[n]||e.default||e}const Oy={waapi:()=>Object.hasOwnProperty.call(Element.prototype,"animate")},Qy={},Zy={};for(const e in Oy)Zy[e]=()=>(void 0===Qy[e]&&(Qy[e]=Oy[e]()),Qy[e]);const _y=new Set(["opacity"]),By=(e,n,t,i={})=>a=>{const o=Yy(i,e)||{},r=o.delay||i.delay||0;let{elapsed:s=0}=i;s-=Dm(r);const u=function(e,n,t,i){const a=zy(n,t);let o=void 0!==i.from?i.from:e.get();return"none"===o&&a&&"string"==typeof t?o=mm(n,t):Iy(o)&&"string"==typeof t?o=Ay(t):!Array.isArray(t)&&Iy(t)&&"string"==typeof o&&(t=Ay(o)),Array.isArray(t)?(null===t[0]&&(t[0]=o),t):[o,t]}(n,e,t,o),l=u[0],c=u[u.length-1],d=zy(e,l),g=zy(e,c);let h={keyframes:u,velocity:n.getVelocity(),...o,elapsed:s,onUpdate:e=>{n.set(e),o.onUpdate&&o.onUpdate(e)},onComplete:()=>{a(),o.onComplete&&o.onComplete()}};if(!d||!g||km||!1===o.type)return vy(h);if("inertia"===o.type){const e=function({keyframes:e,velocity:n=0,min:t,max:i,power:a=.8,timeConstant:o=750,bounceStiffness:r=500,bounceDamping:s=10,restDelta:u=1,modifyTarget:l,driver:c,onUpdate:d,onComplete:g,onStop:h}){const p=e[0];let m;function y(e){return void 0!==t&&e<t||void 0!==i&&e>i}function f(e){return void 0===t?i:void 0===i||Math.abs(t-e)<Math.abs(i-e)?t:i}function M(e){null==m||m.stop(),m=jy({keyframes:[0,1],velocity:0,...e,driver:c,onUpdate:n=>{var t;null==d||d(n),null===(t=e.onUpdate)||void 0===t||t.call(e,n)},onComplete:g,onStop:h})}function j(e){M({type:"spring",stiffness:r,damping:s,restDelta:u,...e})}if(y(p))j({velocity:n,keyframes:[p,f(p)]});else{let e=a*n+p;void 0!==l&&(e=l(e));const i=f(e),r=i===t?-1:1;let s,c;const d=e=>{s=c,c=e,n=Pp(e-s,Dp.delta),(1===r&&e>i||-1===r&&e<i)&&j({keyframes:[e,i],velocity:n})};M({type:"decay",keyframes:[p,0],velocity:n,timeConstant:o,power:a,restDelta:u,modifyTarget:l,onUpdate:y(e)?d:void 0})}return{stop:()=>null==m?void 0:m.stop()}}(h);return()=>e.stop()}(function({when:e,delay:n,delayChildren:t,staggerChildren:i,staggerDirection:a,repeat:o,repeatType:r,repeatDelay:s,from:u,...l}){return!!Object.keys(l).length})(o)||(h={...h,...Ey(e,h)}),h.duration&&(h.duration=Dm(h.duration)),h.repeatDelay&&(h.repeatDelay=Dm(h.repeatDelay));const p=n.owner,m=p&&p.current;if(Zy.waapi()&&_y.has(e)&&!h.repeatDelay&&"mirror"!==h.repeatType&&0!==h.damping&&p&&m instanceof HTMLElement&&!p.getProps().onUpdate)return Ly(n,e,h);{const e=jy(h);return()=>e.stop()}};function Fy(e,n,t={}){var i;const a=wm(e,n,t.custom);let{transition:o=e.getDefaultTransition()||{}}=a||{};t.transitionOverride&&(o=t.transitionOverride);const r=a?()=>Xy(e,a,t):()=>Promise.resolve(),s=(null===(i=e.variantChildren)||void 0===i?void 0:i.size)?(i=0)=>{const{delayChildren:a=0,staggerChildren:r,staggerDirection:s}=o;return function(e,n,t=0,i=0,a=1,o){const r=[],s=(e.variantChildren.size-1)*i,u=1===a?(e=0)=>e*i:(e=0)=>s-e*i;return Array.from(e.variantChildren).sort(Uy).forEach((e,i)=>{r.push(Fy(e,n,{...o,delay:t+u(i)}).then(()=>e.notify("AnimationComplete",n)))}),Promise.all(r)}(e,n,a+i,r,s,t)}:()=>Promise.resolve(),{when:u}=o;if(u){const[e,n]="beforeChildren"===u?[r,s]:[s,r];return e().then(n)}return Promise.all([r(),s(t.delay)])}function Xy(e,n,{delay:t=0,transitionOverride:i,type:a}={}){var o;let{transition:r=e.getDefaultTransition(),transitionEnd:s,...u}=e.makeTargetAnimatable(n);const l=e.getValue("willChange");i&&(r=i);const c=[],d=a&&(null===(o=e.animationState)||void 0===o?void 0:o.getState()[a]);for(const n in u){const i=e.getValue(n),a=u[n];if(!i||void 0===a||d&&Hy(d,n))continue;let o={delay:t,elapsed:0,...r};if(e.shouldReduceMotion&&Zg.has(n)&&(o={...o,type:!1,delay:0}),!i.hasAnimated){const t=e.getProps()[Sm];t&&(o.elapsed=vm(t,n))}let s=i.start(By(n,i,a,o));Nm(l)&&(l.add(n),s=s.then(()=>l.remove(n))),c.push(s)}return Promise.all(c).then(()=>{s&&function(e,n){const t=wm(e,n);let{transitionEnd:i={},transition:a={},...o}=t?e.makeTargetAnimatable(t,!1):{};o={...o,...i};for(const n in o)xm(e,n,Ah(o[n]))}(e,s)})}function Uy(e,n){return e.sortNodePosition(n)}function Hy({protectedKeys:e,needsAnimating:n},t){const i=e.hasOwnProperty(t)&&!0!==n[t];return n[t]=!1,i}const Jy=[Bh.Animate,Bh.InView,Bh.Focus,Bh.Hover,Bh.Tap,Bh.Drag,Bh.Exit],Py=[...Jy].reverse(),Gy=Jy.length;function Ry(e){return n=>Promise.all(n.map(({animation:n,options:t})=>function(e,n,t={}){let i;if(e.notify("AnimationStart",n),Array.isArray(n)){const a=n.map(n=>Fy(e,n,t));i=Promise.all(a)}else if("string"==typeof n)i=Fy(e,n,t);else{const a="function"==typeof n?wm(e,n,t.custom):n;i=Xy(e,a,t)}return i.then(()=>e.notify("AnimationComplete",n))}(e,n,t)))}function Wy(e){let n=Ry(e);const t={[Bh.Animate]:Vy(!0),[Bh.InView]:Vy(),[Bh.Hover]:Vy(),[Bh.Tap]:Vy(),[Bh.Drag]:Vy(),[Bh.Focus]:Vy(),[Bh.Exit]:Vy()};let i=!0;const a=(n,t)=>{const i=wm(e,t);if(i){const{transition:e,transitionEnd:t,...a}=i;n={...n,...a,...t}}return n};function o(o,r){const s=e.getProps(),u=e.getVariantContext(!0)||{},l=[],c=new Set;let d={},g=1/0;for(let n=0;n<Gy;n++){const h=Py[n],p=t[h],m=void 0!==s[h]?s[h]:u[h],y=mg(m),f=h===r?p.isActive:null;!1===f&&(g=n);let M=m===u[h]&&m!==s[h]&&y;if(M&&i&&e.manuallyAnimateOnMount&&(M=!1),p.protectedKeys={...d},!p.isActive&&null===f||!m&&!p.prevProp||yg(m)||"boolean"==typeof m)continue;const j=Ky(p.prevProp,m);let b=j||h===r&&p.isActive&&!M&&y||n>g&&y;const w=Array.isArray(m)?m:[m];let x=w.reduce(a,{});!1===f&&(x={});const{prevResolvedValues:L={}}=p,N={...L,...x},v=e=>{b=!0,c.delete(e),p.needsAnimating[e]=!0};for(const e in N){const n=x[e],t=L[e];d.hasOwnProperty(e)||(n!==t?Ih(n)&&Ih(t)?!vp(n,t)||j?v(e):p.protectedKeys[e]=!0:void 0!==n?v(e):c.add(e):void 0!==n&&c.has(e)?v(e):p.protectedKeys[e]=!0)}p.prevProp=m,p.prevResolvedValues=x,p.isActive&&(d={...d,...x}),i&&e.blockInitialAnimation&&(b=!1),b&&!M&&l.push(...w.map(e=>({animation:e,options:{type:h,...o}})))}if(c.size){const n={};c.forEach(t=>{const i=e.getBaseTarget(t);void 0!==i&&(n[t]=i)}),l.push({animation:n})}let h=Boolean(l.length);return i&&!1===s.initial&&!e.manuallyAnimateOnMount&&(h=!1),i=!1,h?n(l):Promise.resolve()}return{animateChanges:o,setActive:function(n,i,a){var r;if(t[n].isActive===i)return Promise.resolve();null===(r=e.variantChildren)||void 0===r||r.forEach(e=>{var t;return null===(t=e.animationState)||void 0===t?void 0:t.setActive(n,i)}),t[n].isActive=i;const s=o(a,n);for(const e in t)t[e].protectedKeys={};return s},setAnimateFunction:function(t){n=t(e)},getState:()=>t}}function Ky(e,n){return"string"==typeof n?n!==e:!!Array.isArray(n)&&!vp(n,e)}function Vy(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}const $y={animation:xp(({visualElement:e,animate:n})=>{e.animationState||(e.animationState=Wy(e)),yg(n)&&ee.useEffect(()=>n.subscribe(e),[n])}),exit:xp(e=>{const{custom:n,visualElement:t}=e,[i,a]=Np(),o=ee.useContext(lg);ee.useEffect(()=>{t.isPresent=i;const e=t.animationState&&t.animationState.setActive(Bh.Exit,!i,{custom:o&&o.custom||n});e&&!i&&e.then(a)},[i])})},qy=(e,n)=>Math.abs(e-n);class ef{constructor(e,n,{transformPagePoint:t}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=()=>{if(!this.lastMoveEvent||!this.lastMoveEventInfo)return;const e=af(this.lastMoveEventInfo,this.history),n=null!==this.startEvent,t=function(e,n){const t=qy(e.x,n.x),i=qy(e.y,n.y);return Math.sqrt(t**2+i**2)}(e.offset,{x:0,y:0})>=3;if(!n&&!t)return;const{point:i}=e,{timestamp:a}=Dp;this.history.push({...i,timestamp:a});const{onStart:o,onMove:r}=this.handlers;n||(o&&o(this.lastMoveEvent,e),this.startEvent=this.lastMoveEvent),r&&r(this.lastMoveEvent,e)},this.handlePointerMove=(e,n)=>{this.lastMoveEvent=e,this.lastMoveEventInfo=nf(n,this.transformPagePoint),Uh(e)&&0===e.buttons?this.handlePointerUp(e,n):Qp.update(this.updatePoint,!0)},this.handlePointerUp=(e,n)=>{this.end();const{onEnd:t,onSessionEnd:i}=this.handlers,a=af(nf(n,this.transformPagePoint),this.history);this.startEvent&&t&&t(e,a),i&&i(e,a)},Hh(e)&&e.touches.length>1)return;this.handlers=n,this.transformPagePoint=t;const i=nf(Rh(e),this.transformPagePoint),{point:a}=i,{timestamp:o}=Dp;this.history=[{...a,timestamp:o}];const{onSessionStart:r}=n;r&&r(e,af(i,this.history)),this.removeListeners=cp(qh(window,"pointermove",this.handlePointerMove),qh(window,"pointerup",this.handlePointerUp),qh(window,"pointercancel",this.handlePointerUp))}updateHandlers(e){this.handlers=e}end(){this.removeListeners&&this.removeListeners(),Zp.update(this.updatePoint)}}function nf(e,n){return n?{point:n(e.point)}:e}function tf(e,n){return{x:e.x-n.x,y:e.y-n.y}}function af({point:e},n){return{point:e,delta:tf(e,rf(n)),offset:tf(e,of(n)),velocity:sf(n,.1)}}function of(e){return e[0]}function rf(e){return e[e.length-1]}function sf(e,n){if(e.length<2)return{x:0,y:0};let t=e.length-1,i=null;const a=rf(e);for(;t>=0&&(i=e[t],!(a.timestamp-i.timestamp>Dm(n)));)t--;if(!i)return{x:0,y:0};const o=(a.timestamp-i.timestamp)/1e3;if(0===o)return{x:0,y:0};const r={x:(a.x-i.x)/o,y:(a.y-i.y)/o};return r.x===1/0&&(r.x=0),r.y===1/0&&(r.y=0),r}function uf(e){return e.max-e.min}function lf(e,n=0,t=.01){return Math.abs(e-n)<=t}function cf(e,n,t,i=.5){e.origin=i,e.originPoint=Ym(n.min,n.max,e.origin),e.scale=uf(t)/uf(n),(lf(e.scale,1,1e-4)||isNaN(e.scale))&&(e.scale=1),e.translate=Ym(t.min,t.max,e.origin)-e.originPoint,(lf(e.translate)||isNaN(e.translate))&&(e.translate=0)}function df(e,n,t,i){cf(e.x,n.x,t.x,null==i?void 0:i.originX),cf(e.y,n.y,t.y,null==i?void 0:i.originY)}function gf(e,n,t){e.min=t.min+n.min,e.max=e.min+uf(n)}function hf(e,n,t){e.min=n.min-t.min,e.max=e.min+uf(n)}function pf(e,n,t){hf(e.x,n.x,t.x),hf(e.y,n.y,t.y)}function mf(e,n,t){return{min:void 0!==n?e.min+n:void 0,max:void 0!==t?e.max+t-(e.max-e.min):void 0}}function yf(e,n){let t=n.min-e.min,i=n.max-e.max;return n.max-n.min<e.max-e.min&&([t,i]=[i,t]),{min:t,max:i}}const ff=.35;function Mf(e,n,t){return{min:jf(e,n),max:jf(e,t)}}function jf(e,n){return"number"==typeof e?e:e[n]||0}const bf=()=>({x:{min:0,max:0},y:{min:0,max:0}});function wf(e){return[e("x"),e("y")]}function xf({top:e,left:n,right:t,bottom:i}){return{x:{min:n,max:t},y:{min:e,max:i}}}function Lf(e){return void 0===e||1===e}function Nf({scale:e,scaleX:n,scaleY:t}){return!Lf(e)||!Lf(n)||!Lf(t)}function vf(e){return Nf(e)||Sf(e)||e.z||e.rotate||e.rotateX||e.rotateY}function Sf(e){return Tf(e.x)||Tf(e.y)}function Tf(e){return e&&"0%"!==e}function Df(e,n,t){return t+n*(e-t)}function kf(e,n,t,i,a){return void 0!==a&&(e=Df(e,a,i)),Df(e,t,i)+n}function Cf(e,n=0,t=1,i,a){e.min=kf(e.min,n,t,i,a),e.max=kf(e.max,n,t,i,a)}function Ef(e,{x:n,y:t}){Cf(e.x,n.translate,n.scale,n.originPoint),Cf(e.y,t.translate,t.scale,t.originPoint)}function zf(e){return Number.isInteger(e)||e>1.0000000000001||e<.999999999999?e:1}function If(e,n){e.min=e.min+n,e.max=e.max+n}function Af(e,n,[t,i,a]){const o=void 0!==n[a]?n[a]:.5,r=Ym(e.min,e.max,o);Cf(e,n[t],n[i],r,n.scale)}const Yf=["x","scaleX","originX"],Of=["y","scaleY","originY"];function Qf(e,n){Af(e.x,n,Yf),Af(e.y,n,Of)}function Zf(e,n){return xf(function(e,n){if(!n)return e;const t=n({x:e.left,y:e.top}),i=n({x:e.right,y:e.bottom});return{top:t.y,left:t.x,bottom:i.y,right:i.x}}(e.getBoundingClientRect(),n))}const _f=new WeakMap;class Bf{constructor(e){this.openGlobalLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic={x:{min:0,max:0},y:{min:0,max:0}},this.visualElement=e}start(e,{snapToCursor:n=!1}={}){if(!1===this.visualElement.isPresent)return;this.panSession=new ef(e,{onSessionStart:e=>{this.stopAnimation(),n&&this.snapToCursor(Rh(e,"page").point)},onStart:(e,n)=>{var t;const{drag:i,dragPropagation:a,onDragStart:o}=this.getProps();(!i||a||(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=ap(i),this.openGlobalLock))&&(this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),wf(e=>{var n,t;let i=this.getAxisMotionValue(e).get()||0;if(th.test(i)){const a=null===(t=null===(n=this.visualElement.projection)||void 0===n?void 0:n.layout)||void 0===t?void 0:t.layoutBox[e];if(a){i=uf(a)*(parseFloat(i)/100)}}this.originPoint[e]=i}),null==o||o(e,n),null===(t=this.visualElement.animationState)||void 0===t||t.setActive(Bh.Drag,!0))},onMove:(e,n)=>{const{dragPropagation:t,dragDirectionLock:i,onDirectionLock:a,onDrag:o}=this.getProps();if(!t&&!this.openGlobalLock)return;const{offset:r}=n;if(i&&null===this.currentDirection)return this.currentDirection=function(e,n=10){let t=null;Math.abs(e.y)>n?t="y":Math.abs(e.x)>n&&(t="x");return t}(r),void(null!==this.currentDirection&&(null==a||a(this.currentDirection)));this.updateAxis("x",n.point,r),this.updateAxis("y",n.point,r),this.visualElement.render(),null==o||o(e,n)},onSessionEnd:(e,n)=>this.stop(e,n)},{transformPagePoint:this.visualElement.getTransformPagePoint()})}stop(e,n){const t=this.isDragging;if(this.cancel(),!t)return;const{velocity:i}=n;this.startAnimation(i);const{onDragEnd:a}=this.getProps();null==a||a(e,n)}cancel(){var e,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),null===(e=this.panSession)||void 0===e||e.end(),this.panSession=void 0;const{dragPropagation:t}=this.getProps();!t&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),null===(n=this.visualElement.animationState)||void 0===n||n.setActive(Bh.Drag,!1)}updateAxis(e,n,t){const{drag:i}=this.getProps();if(!t||!Ff(e,i,this.currentDirection))return;const a=this.getAxisMotionValue(e);let o=this.originPoint[e]+t[e];this.constraints&&this.constraints[e]&&(o=function(e,{min:n,max:t},i){return void 0!==n&&e<n?e=i?Ym(n,e,i.min):Math.max(e,n):void 0!==t&&e>t&&(e=i?Ym(t,e,i.max):Math.min(e,t)),e}(o,this.constraints[e],this.elastic[e])),a.set(o)}resolveConstraints(){const{dragConstraints:e,dragElastic:n}=this.getProps(),{layout:t}=this.visualElement.projection||{},i=this.constraints;e&&pg(e)?this.constraints||(this.constraints=this.resolveRefConstraints()):this.constraints=!(!e||!t)&&function(e,{top:n,left:t,bottom:i,right:a}){return{x:mf(e.x,t,a),y:mf(e.y,n,i)}}(t.layoutBox,e),this.elastic=function(e=ff){return!1===e?e=0:!0===e&&(e=ff),{x:Mf(e,"left","right"),y:Mf(e,"top","bottom")}}(n),i!==this.constraints&&t&&this.constraints&&!this.hasMutatedConstraints&&wf(e=>{this.getAxisMotionValue(e)&&(this.constraints[e]=function(e,n){const t={};return void 0!==n.min&&(t.min=n.min-e.min),void 0!==n.max&&(t.max=n.max-e.min),t}(t.layoutBox[e],this.constraints[e]))})}resolveRefConstraints(){const{dragConstraints:e,onMeasureDragConstraints:n}=this.getProps();if(!e||!pg(e))return!1;const t=e.current,{projection:i}=this.visualElement;if(!i||!i.layout)return!1;const a=function(e,n,t){const i=Zf(e,t),{scroll:a}=n;return a&&(If(i.x,a.offset.x),If(i.y,a.offset.y)),i}(t,i.root,this.visualElement.getTransformPagePoint());let o=function(e,n){return{x:yf(e.x,n.x),y:yf(e.y,n.y)}}(i.layout.layoutBox,a);if(n){const e=n(function({x:e,y:n}){return{top:n.min,right:e.max,bottom:n.max,left:e.min}}(o));this.hasMutatedConstraints=!!e,e&&(o=xf(e))}return o}startAnimation(e){const{drag:n,dragMomentum:t,dragElastic:i,dragTransition:a,dragSnapToOrigin:o,onDragTransitionEnd:r}=this.getProps(),s=this.constraints||{},u=wf(r=>{if(!Ff(r,n,this.currentDirection))return;let u=(null==s?void 0:s[r])||{};o&&(u={min:0,max:0});const l=i?200:1e6,c=i?40:1e7,d={type:"inertia",velocity:t?e[r]:0,bounceStiffness:l,bounceDamping:c,timeConstant:750,restDelta:1,restSpeed:10,...a,...u};return this.startAxisValueAnimation(r,d)});return Promise.all(u).then(r)}startAxisValueAnimation(e,n){const t=this.getAxisMotionValue(e);return t.start(By(e,t,0,n))}stopAnimation(){wf(e=>this.getAxisMotionValue(e).stop())}getAxisMotionValue(e){var n;const t="_drag"+e.toUpperCase(),i=this.visualElement.getProps()[t];return i||this.visualElement.getValue(e,(null===(n=this.visualElement.getProps().initial)||void 0===n?void 0:n[e])||0)}snapToCursor(e){wf(n=>{const{drag:t}=this.getProps();if(!Ff(n,t,this.currentDirection))return;const{projection:i}=this.visualElement,a=this.getAxisMotionValue(n);if(i&&i.layout){const{min:t,max:o}=i.layout.layoutBox[n];a.set(e[n]-Ym(t,o,.5))}})}scalePositionWithinConstraints(){var e;if(!this.visualElement.current)return;const{drag:n,dragConstraints:t}=this.getProps(),{projection:i}=this.visualElement;if(!pg(t)||!i||!this.constraints)return;this.stopAnimation();const a={x:0,y:0};wf(e=>{const n=this.getAxisMotionValue(e);if(n){const t=n.get();a[e]=function(e,n){let t=.5;const i=uf(e),a=uf(n);return a>i?t=Jm(n.min,n.max-i,e.min):i>a&&(t=Jm(e.min,e.max-a,n.min)),Jg(0,1,t)}({min:t,max:t},this.constraints[e])}});const{transformTemplate:o}=this.visualElement.getProps();this.visualElement.current.style.transform=o?o({},""):"none",null===(e=i.root)||void 0===e||e.updateScroll(),i.updateLayout(),this.resolveConstraints(),wf(e=>{if(!Ff(e,n,null))return;const t=this.getAxisMotionValue(e),{min:i,max:o}=this.constraints[e];t.set(Ym(i,o,a[e]))})}addListeners(){var e;if(!this.visualElement.current)return;_f.set(this.visualElement,this);const n=qh(this.visualElement.current,"pointerdown",e=>{const{drag:n,dragListener:t=!0}=this.getProps();n&&t&&this.start(e)}),t=()=>{const{dragConstraints:e}=this.getProps();pg(e)&&(this.constraints=this.resolveRefConstraints())},{projection:i}=this.visualElement,a=i.addEventListener("measure",t);i&&!i.layout&&(null===(e=i.root)||void 0===e||e.updateScroll(),i.updateLayout()),t();const o=Fh(window,"resize",()=>this.scalePositionWithinConstraints()),r=i.addEventListener("didUpdate",({delta:e,hasLayoutChanged:n})=>{this.isDragging&&n&&(wf(n=>{const t=this.getAxisMotionValue(n);t&&(this.originPoint[n]+=e[n].translate,t.set(t.get()+e[n].translate))}),this.visualElement.render())});return()=>{o(),n(),a(),null==r||r()}}getProps(){const e=this.visualElement.getProps(),{drag:n=!1,dragDirectionLock:t=!1,dragPropagation:i=!1,dragConstraints:a=!1,dragElastic:o=ff,dragMomentum:r=!0}=e;return{...e,drag:n,dragDirectionLock:t,dragPropagation:i,dragConstraints:a,dragElastic:o,dragMomentum:r}}}function Ff(e,n,t){return!(!0!==n&&n!==e||null!==t&&t!==e)}const Xf={pan:xp(function({onPan:e,onPanStart:n,onPanEnd:t,onPanSessionStart:i,visualElement:a}){const o=e||n||t||i,r=ee.useRef(null),{transformPagePoint:s}=ee.useContext(sg),u={onSessionStart:i,onStart:n,onMove:e,onEnd:(e,n)=>{r.current=null,t&&t(e,n)}};ee.useEffect(()=>{null!==r.current&&r.current.updateHandlers(u)}),ep(a,"pointerdown",o&&function(e){r.current=new ef(e,u,{transformPagePoint:s})}),up(()=>r.current&&r.current.end())}),drag:xp(function(e){const{dragControls:n,visualElement:t}=e,i=Ng(()=>new Bf(t));ee.useEffect(()=>n&&n.subscribe(i),[i,n]),ee.useEffect(()=>i.addListeners(),[i])})};function Uf(e){return"string"==typeof e&&e.startsWith("var(--")}const Hf=/var\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\)/;function Jf(e,n,t=1){const[i,a]=function(e){const n=Hf.exec(e);if(!n)return[,];const[,t,i]=n;return[t,i]}(e);if(!i)return;const o=window.getComputedStyle(n).getPropertyValue(i);return o?o.trim():Uf(a)?Jf(a,n,t+1):a}const Pf=new Set(["width","height","top","left","right","bottom","x","y"]),Gf=e=>Pf.has(e),Rf=(e,n)=>{e.set(n,!1),e.set(n)},Wf=e=>e===Pg||e===ih;var Kf;!function(e){e.width="width",e.height="height",e.left="left",e.right="right",e.top="top",e.bottom="bottom"}(Kf||(Kf={}));const Vf=(e,n)=>parseFloat(e.split(", ")[n]),$f=(e,n)=>(t,{transform:i})=>{if("none"===i||!i)return 0;const a=i.match(/^matrix3d\((.+)\)$/);if(a)return Vf(a[1],n);{const n=i.match(/^matrix\((.+)\)$/);return n?Vf(n[1],e):0}},qf=new Set(["x","y","z"]),eM=Qg.filter(e=>!qf.has(e));const nM={width:({x:e},{paddingLeft:n="0",paddingRight:t="0"})=>e.max-e.min-parseFloat(n)-parseFloat(t),height:({y:e},{paddingTop:n="0",paddingBottom:t="0"})=>e.max-e.min-parseFloat(n)-parseFloat(t),top:(e,{top:n})=>parseFloat(n),left:(e,{left:n})=>parseFloat(n),bottom:({y:e},{top:n})=>parseFloat(n)+(e.max-e.min),right:({x:e},{left:n})=>parseFloat(n)+(e.max-e.min),x:$f(4,13),y:$f(5,14)},tM=(e,n,t={},i={})=>{n={...n},i={...i};const a=Object.keys(n).filter(Gf);let o=[],r=!1;const s=[];if(a.forEach(a=>{const u=e.getValue(a);if(!e.hasValue(a))return;let l=t[a],c=Mm(l);const d=n[a];let g;if(Ih(d)){const e=d.length,n=null===d[0]?1:0;l=d[n],c=Mm(l);for(let t=n;t<e;t++)g?Tm(Mm(d[t])):g=Mm(d[t])}else g=Mm(d);if(c!==g)if(Wf(c)&&Wf(g)){const e=u.get();"string"==typeof e&&u.set(parseFloat(e)),"string"==typeof d?n[a]=parseFloat(d):Array.isArray(d)&&g===ih&&(n[a]=d.map(parseFloat))}else(null==c?void 0:c.transform)&&(null==g?void 0:g.transform)&&(0===l||0===d)?0===l?u.set(g.transform(l)):n[a]=c.transform(d):(r||(o=function(e){const n=[];return eM.forEach(t=>{const i=e.getValue(t);void 0!==i&&(n.push([t,i.get()]),i.set(t.startsWith("scale")?1:0))}),n.length&&e.render(),n}(e),r=!0),s.push(a),i[a]=void 0!==i[a]?i[a]:n[a],Rf(u,d))}),s.length){const t=s.indexOf("height")>=0?window.pageYOffset:null,a=((e,n,t)=>{const i=n.measureViewportBox(),a=n.current,o=getComputedStyle(a),{display:r}=o,s={};"none"===r&&n.setStaticValue("display",e.display||"block"),t.forEach(e=>{s[e]=nM[e](i,o)}),n.render();const u=n.measureViewportBox();return t.forEach(t=>{const i=n.getValue(t);Rf(i,s[t]),e[t]=nM[t](u,o)}),e})(n,e,s);return o.length&&o.forEach(([n,t])=>{e.getValue(n).set(t)}),e.render(),cg&&null!==t&&window.scrollTo({top:t}),{target:a,transitionEnd:i}}return{target:n,transitionEnd:i}};function iM(e,n,t,i){return(e=>Object.keys(e).some(Gf))(n)?tM(e,n,t,i):{target:n,transitionEnd:i}}const aM=(e,n,t,i)=>{const a=function(e,{...n},t){const i=e.current;if(!(i instanceof Element))return{target:n,transitionEnd:t};t&&(t={...t}),e.values.forEach(e=>{const n=e.get();if(!Uf(n))return;const t=Jf(n,i);t&&e.set(t)});for(const e in n){const a=n[e];if(!Uf(a))continue;const o=Jf(a,i);o&&(n[e]=o,t&&void 0===t[e]&&(t[e]=a))}return{target:n,transitionEnd:t}}(e,n,i);return iM(e,n=a.target,t,i=a.transitionEnd)},oM={current:null},rM={current:!1};const sM=Object.keys(Lg),uM=sM.length,lM=["AnimationStart","AnimationComplete","Update","Unmount","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];class cM{constructor({parent:e,props:n,reducedMotionConfig:t,visualState:i},a={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.isPresent=!0,this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.scheduleRender=()=>Qp.render(this.render,!1,!0);const{latestValues:o,renderState:r}=i;this.latestValues=o,this.baseTarget={...o},this.initialValues=n.initial?{...o}:{},this.renderState=r,this.parent=e,this.props=n,this.depth=e?e.depth+1:0,this.reducedMotionConfig=t,this.options=a,this.isControllingVariants=Mg(n),this.isVariantNode=jg(n),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=Boolean(e&&e.current);const{willChange:s,...u}=this.scrapeMotionValuesFromProps(n);for(const e in u){const n=u[e];void 0!==o[e]&&Bg(n)&&(n.set(o[e],!1),Nm(s)&&s.add(e))}}scrapeMotionValuesFromProps(e){return{}}mount(e){var n;this.current=e,this.projection&&this.projection.mount(e),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=null===(n=this.parent)||void 0===n?void 0:n.addVariantChild(this)),this.values.forEach((e,n)=>this.bindToMotionValue(n,e)),rM.current||function(){if(rM.current=!0,cg)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),n=()=>oM.current=e.matches;e.addListener(n),n()}else oM.current=!1}(),this.shouldReduceMotion="never"!==this.reducedMotionConfig&&("always"===this.reducedMotionConfig||oM.current),this.parent&&this.parent.children.add(this),this.setProps(this.props)}unmount(){var e,n,t;null===(e=this.projection)||void 0===e||e.unmount(),Zp.update(this.notifyUpdate),Zp.render(this.render),this.valueSubscriptions.forEach(e=>e()),null===(n=this.removeFromVariantTree)||void 0===n||n.call(this),null===(t=this.parent)||void 0===t||t.children.delete(this);for(const e in this.events)this.events[e].clear();this.current=null}bindToMotionValue(e,n){const t=Zg.has(e),i=n.on("change",n=>{this.latestValues[e]=n,this.props.onUpdate&&Qp.update(this.notifyUpdate,!1,!0),t&&this.projection&&(this.projection.isTransformDirty=!0)}),a=n.on("renderRequest",this.scheduleRender);this.valueSubscriptions.set(e,()=>{i(),a()})}sortNodePosition(e){return this.current&&this.sortInstanceNodePosition&&this.type===e.type?this.sortInstanceNodePosition(this.current,e.current):0}loadFeatures(e,n,t,i,a,o){const r=[];for(let n=0;n<uM;n++){const t=sM[n],{isEnabled:i,Component:a}=Lg[t];i(e)&&a&&r.push(ee.createElement(a,{key:t,...e,visualElement:this}))}if(!this.projection&&a){this.projection=new a(i,this.latestValues,this.parent&&this.parent.projection);const{layoutId:n,layout:t,drag:r,dragConstraints:s,layoutScroll:u}=e;this.projection.setOptions({layoutId:n,layout:t,alwaysMeasureLayout:Boolean(r)||s&&pg(s),visualElement:this,scheduleRender:()=>this.scheduleRender(),animationType:"string"==typeof t?t:"both",initialPromotionConfig:o,layoutScroll:u})}return r}triggerBuild(){this.build(this.renderState,this.latestValues,this.options,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):{x:{min:0,max:0},y:{min:0,max:0}}}getStaticValue(e){return this.latestValues[e]}setStaticValue(e,n){this.latestValues[e]=n}makeTargetAnimatable(e,n=!0){return this.makeTargetAnimatableFromInstance(e,this.props,n)}setProps(e){(e.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.props=e;for(let n=0;n<lM.length;n++){const t=lM[n];this.propEventSubscriptions[t]&&(this.propEventSubscriptions[t](),delete this.propEventSubscriptions[t]);const i=e["on"+t];i&&(this.propEventSubscriptions[t]=this.on(t,i))}this.prevMotionValues=function(e,n,t){const{willChange:i}=n;for(const a in n){const o=n[a],r=t[a];if(Bg(o))e.addValue(a,o),Nm(i)&&i.add(a);else if(Bg(r))e.addValue(a,Rp(o,{owner:e})),Nm(i)&&i.remove(a);else if(r!==o)if(e.hasValue(a)){const n=e.getValue(a);!n.hasAnimated&&n.set(o)}else{const n=e.getStaticValue(a);e.addValue(a,Rp(void 0!==n?n:o))}}for(const i in t)void 0===n[i]&&e.removeValue(i);return n}(this,this.scrapeMotionValuesFromProps(e),this.prevMotionValues)}getProps(){return this.props}getVariant(e){var n;return null===(n=this.props.variants)||void 0===n?void 0:n[e]}getDefaultTransition(){return this.props.transition}getTransformPagePoint(){return this.props.transformPagePoint}getClosestVariantNode(){var e;return this.isVariantNode?this:null===(e=this.parent)||void 0===e?void 0:e.getClosestVariantNode()}getVariantContext(e=!1){var n,t;if(e)return null===(n=this.parent)||void 0===n?void 0:n.getVariantContext();if(!this.isControllingVariants){const e=(null===(t=this.parent)||void 0===t?void 0:t.getVariantContext())||{};return void 0!==this.props.initial&&(e.initial=this.props.initial),e}const i={};for(let e=0;e<gM;e++){const n=dM[e],t=this.props[n];(mg(t)||!1===t)&&(i[n]=t)}return i}addVariantChild(e){var n;const t=this.getClosestVariantNode();if(t)return null===(n=t.variantChildren)||void 0===n||n.add(e),()=>t.variantChildren.delete(e)}addValue(e,n){this.hasValue(e)&&this.removeValue(e),this.values.set(e,n),this.latestValues[e]=n.get(),this.bindToMotionValue(e,n)}removeValue(e){var n;this.values.delete(e),null===(n=this.valueSubscriptions.get(e))||void 0===n||n(),this.valueSubscriptions.delete(e),delete this.latestValues[e],this.removeValueFromRenderState(e,this.renderState)}hasValue(e){return this.values.has(e)}getValue(e,n){if(this.props.values&&this.props.values[e])return this.props.values[e];let t=this.values.get(e);return void 0===t&&void 0!==n&&(t=Rp(n,{owner:this}),this.addValue(e,t)),t}readValue(e){return void 0===this.latestValues[e]&&this.current?this.readValueFromInstance(this.current,e,this.options):this.latestValues[e]}setBaseTarget(e,n){this.baseTarget[e]=n}getBaseTarget(e){var n;const{initial:t}=this.props,i="string"==typeof t||"object"==typeof t?null===(n=zh(this.props,t))||void 0===n?void 0:n[e]:void 0;if(t&&void 0!==i)return i;const a=this.getBaseTargetFromProps(this.props,e);return void 0===a||Bg(a)?void 0!==this.initialValues[e]&&void 0===i?void 0:this.baseTarget[e]:a}on(e,n){return this.events[e]||(this.events[e]=new Jp),this.events[e].add(n)}notify(e,...n){var t;null===(t=this.events[e])||void 0===t||t.notify(...n)}}const dM=["initial",...Jy],gM=dM.length;class hM extends cM{sortInstanceNodePosition(e,n){return 2&e.compareDocumentPosition(n)?1:-1}getBaseTargetFromProps(e,n){var t;return null===(t=e.style)||void 0===t?void 0:t[n]}removeValueFromRenderState(e,{vars:n,style:t}){delete n[e],delete t[e]}makeTargetAnimatableFromInstance({transition:e,transitionEnd:n,...t},{transformValues:i},a){let o=function(e,n,t){var i;const a={};for(const o in e){const e=Lm(o,n);a[o]=void 0!==e?e:null===(i=t.getValue(o))||void 0===i?void 0:i.get()}return a}(t,e||{},this);if(i&&(n&&(n=i(n)),t&&(t=i(t)),o&&(o=i(o))),a){!function(e,n,t){var i,a;const o=Object.keys(n).filter(n=>!e.hasValue(n)),r=o.length;if(r)for(let s=0;s<r;s++){const r=o[s],u=n[r];let l=null;Array.isArray(u)&&(l=u[0]),null===l&&(l=null!==(a=null!==(i=t[r])&&void 0!==i?i:e.readValue(r))&&void 0!==a?a:n[r]),null!=l&&("string"==typeof l&&(Sp(l)||Tp(l))?l=parseFloat(l):!bm(l)&&um.test(u)&&(l=mm(r,u)),e.addValue(r,Rp(l,{owner:e})),void 0===t[r]&&(t[r]=l),null!==l&&e.setBaseTarget(r,l))}}(this,t,o);const e=aM(this,t,o,n);n=e.transitionEnd,t=e.target}return{transition:e,transitionEnd:n,...t}}}class pM extends hM{readValueFromInstance(e,n){if(Zg.has(n)){const e=pm(n);return e&&e.default||0}{const i=(t=e,window.getComputedStyle(t)),a=(Ug(n)?i.getPropertyValue(n):i[n])||0;return"string"==typeof a?a.trim():a}var t}measureInstanceViewportBox(e,{transformPagePoint:n}){return Zf(e,n)}build(e,n,t,i){lh(e,n,t,i.transformTemplate)}scrapeMotionValuesFromProps(e){return Ch(e)}renderInstance(e,n,t,i){Th(e,n,t,i)}}class mM extends hM{constructor(){super(...arguments),this.isSVGTag=!1}getBaseTargetFromProps(e,n){return e[n]}readValueFromInstance(e,n){var t;return Zg.has(n)?(null===(t=pm(n))||void 0===t?void 0:t.default)||0:(n=Dh.has(n)?n:Sh(n),e.getAttribute(n))}measureInstanceViewportBox(){return{x:{min:0,max:0},y:{min:0,max:0}}}scrapeMotionValuesFromProps(e){return Eh(e)}build(e,n,t,i){wh(e,n,t,this.isSVGTag,i.transformTemplate)}renderInstance(e,n,t,i){kh(e,n,0,i)}mount(e){this.isSVGTag=Lh(e.tagName),super.mount(e)}}const yM=(e,n)=>Yg(e)?new mM(n,{enableHardwareAcceleration:!1}):new pM(n,{enableHardwareAcceleration:!0});function fM(e,n){return n.max===n.min?0:e/(n.max-n.min)*100}const MM={correct:(e,n)=>{if(!n.target)return e;if("string"==typeof e){if(!ih.test(e))return e;e=parseFloat(e)}return`${fM(e,n.target.x)}% ${fM(e,n.target.y)}%`}},jM="_$css",bM={correct:(e,{treeScale:n,projectionDelta:t})=>{const i=e,a=e.includes("var("),o=[];a&&(e=e.replace(Hf,e=>(o.push(e),jM)));const r=um.parse(e);if(r.length>5)return i;const s=um.createTransformer(e),u="number"!=typeof r[0]?1:0,l=t.x.scale*n.x,c=t.y.scale*n.y;r[0+u]/=l,r[1+u]/=c;const d=Ym(l,c,.5);"number"==typeof r[2+u]&&(r[2+u]/=d),"number"==typeof r[3+u]&&(r[3+u]/=d);let g=s(r);if(a){let e=0;g=g.replace(jM,()=>{const n=o[e];return e++,n})}return g}};class wM extends ne.Component{componentDidMount(){const{visualElement:e,layoutGroup:n,switchLayoutGroup:t,layoutId:i}=this.props,{projection:a}=e;var o;o=xM,Object.assign(Og,o),a&&(n.group&&n.group.add(a),t&&t.register&&i&&t.register(a),a.root.didUpdate(),a.addEventListener("animationComplete",()=>{this.safeToRemove()}),a.setOptions({...a.options,onExitComplete:()=>this.safeToRemove()})),vg.hasEverUpdated=!0}getSnapshotBeforeUpdate(e){const{layoutDependency:n,visualElement:t,drag:i,isPresent:a}=this.props,o=t.projection;return o?(o.isPresent=a,i||e.layoutDependency!==n||void 0===n?o.willUpdate():this.safeToRemove(),e.isPresent!==a&&(a?o.promote():o.relegate()||Qp.postRender(()=>{var e;(null===(e=o.getStack())||void 0===e?void 0:e.members.length)||this.safeToRemove()})),null):null}componentDidUpdate(){const{projection:e}=this.props.visualElement;e&&(e.root.didUpdate(),!e.currentAnimation&&e.isLead()&&this.safeToRemove())}componentWillUnmount(){const{visualElement:e,layoutGroup:n,switchLayoutGroup:t}=this.props,{projection:i}=e;i&&(i.scheduleCheckAfterUnmount(),(null==n?void 0:n.group)&&n.group.remove(i),(null==t?void 0:t.deregister)&&t.deregister(i))}safeToRemove(){const{safeToRemove:e}=this.props;null==e||e()}render(){return null}}const xM={borderRadius:{...MM,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:MM,borderTopRightRadius:MM,borderBottomLeftRadius:MM,borderBottomRightRadius:MM,boxShadow:bM},LM={measureLayout:function(e){const[n,t]=Np(),i=ee.useContext(Tg);return ne.createElement(wM,{...e,layoutGroup:i,switchLayoutGroup:ee.useContext(kg),isPresent:n,safeToRemove:t})}};const NM=["TopLeft","TopRight","BottomLeft","BottomRight"],vM=NM.length,SM=e=>"string"==typeof e?parseFloat(e):e,TM=e=>"number"==typeof e||ih.test(e);function DM(e,n){return void 0!==e[n]?e[n]:e.borderRadius}const kM=EM(0,.5,qm),CM=EM(.5,.95,Wm);function EM(e,n,t){return i=>i<e?0:i>n?1:t(Jm(e,n,i))}function zM(e,n){e.min=n.min,e.max=n.max}function IM(e,n){zM(e.x,n.x),zM(e.y,n.y)}function AM(e,n,t,i,a){return e=Df(e-=n,1/t,i),void 0!==a&&(e=Df(e,1/a,i)),e}function YM(e,n,[t,i,a],o,r){!function(e,n=0,t=1,i=.5,a,o=e,r=e){th.test(n)&&(n=parseFloat(n),n=Ym(r.min,r.max,n/100)-r.min);if("number"!=typeof n)return;let s=Ym(o.min,o.max,i);e===o&&(s-=n),e.min=AM(e.min,n,t,s,a),e.max=AM(e.max,n,t,s,a)}(e,n[t],n[i],n[a],n.scale,o,r)}const OM=["x","scaleX","originX"],QM=["y","scaleY","originY"];function ZM(e,n,t,i){YM(e.x,n,OM,null==t?void 0:t.x,null==i?void 0:i.x),YM(e.y,n,QM,null==t?void 0:t.y,null==i?void 0:i.y)}function _M(e){return 0===e.translate&&1===e.scale}function BM(e){return _M(e.x)&&_M(e.y)}function FM(e,n){return e.x.min===n.x.min&&e.x.max===n.x.max&&e.y.min===n.y.min&&e.y.max===n.y.max}function XM(e){return uf(e.x)/uf(e.y)}class UM{constructor(){this.members=[]}add(e){Up(this.members,e),e.scheduleRender()}remove(e){if(Hp(this.members,e),e===this.prevLead&&(this.prevLead=void 0),e===this.lead){const e=this.members[this.members.length-1];e&&this.promote(e)}}relegate(e){const n=this.members.findIndex(n=>e===n);if(0===n)return!1;let t;for(let e=n;e>=0;e--){const n=this.members[e];if(!1!==n.isPresent){t=n;break}}return!!t&&(this.promote(t),!0)}promote(e,n){var t;const i=this.lead;if(e!==i&&(this.prevLead=i,this.lead=e,e.show(),i)){i.instance&&i.scheduleRender(),e.scheduleRender(),e.resumeFrom=i,n&&(e.resumeFrom.preserveOpacity=!0),i.snapshot&&(e.snapshot=i.snapshot,e.snapshot.latestValues=i.animationValues||i.latestValues),(null===(t=e.root)||void 0===t?void 0:t.isUpdating)&&(e.isLayoutDirty=!0);const{crossfade:a}=e.options;!1===a&&i.hide()}}exitAnimationComplete(){this.members.forEach(e=>{var n,t,i,a,o;null===(t=(n=e.options).onExitComplete)||void 0===t||t.call(n),null===(o=null===(i=e.resumingFrom)||void 0===i?void 0:(a=i.options).onExitComplete)||void 0===o||o.call(a)})}scheduleRender(){this.members.forEach(e=>{e.instance&&e.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function HM(e,n,t){let i="";const a=e.x.translate/n.x,o=e.y.translate/n.y;if((a||o)&&(i=`translate3d(${a}px, ${o}px, 0) `),1===n.x&&1===n.y||(i+=`scale(${1/n.x}, ${1/n.y}) `),t){const{rotate:e,rotateX:n,rotateY:a}=t;e&&(i+=`rotate(${e}deg) `),n&&(i+=`rotateX(${n}deg) `),a&&(i+=`rotateY(${a}deg) `)}const r=e.x.scale*n.x,s=e.y.scale*n.y;return 1===r&&1===s||(i+=`scale(${r}, ${s})`),i||"none"}const JM=(e,n)=>e.depth-n.depth;class PM{constructor(){this.children=[],this.isDirty=!1}add(e){Up(this.children,e),this.isDirty=!0}remove(e){Hp(this.children,e),this.isDirty=!0}forEach(e){this.isDirty&&this.children.sort(JM),this.isDirty=!1,this.children.forEach(e)}}const GM=["","X","Y","Z"];let RM=0;function WM({attachResizeListener:e,defaultParent:n,measureScroll:t,checkIsScrollRoot:i,resetTransform:a}){return class{constructor(e,t={},i=(null==n?void 0:n())){this.id=RM++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isTransformDirty=!1,this.isProjectionDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.nodes.forEach($M),this.nodes.forEach(ij),this.nodes.forEach(aj)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.elementId=e,this.latestValues=t,this.root=i?i.root||i:this,this.path=i?[...i.path,i]:[],this.parent=i,this.depth=i?i.depth+1:0,e&&this.root.registerPotentialNode(e,this);for(let e=0;e<this.path.length;e++)this.path[e].shouldResetTransform=!0;this.root===this&&(this.nodes=new PM)}addEventListener(e,n){return this.eventHandlers.has(e)||this.eventHandlers.set(e,new Jp),this.eventHandlers.get(e).add(n)}notifyListeners(e,...n){const t=this.eventHandlers.get(e);null==t||t.notify(...n)}hasListeners(e){return this.eventHandlers.has(e)}registerPotentialNode(e,n){this.potentialNodes.set(e,n)}mount(n,t=!1){var i;if(this.instance)return;this.isSVG=n instanceof SVGElement&&"svg"!==n.tagName,this.instance=n;const{layoutId:a,layout:o,visualElement:r}=this.options;if(r&&!r.current&&r.mount(n),this.root.nodes.add(this),null===(i=this.parent)||void 0===i||i.children.add(this),this.elementId&&this.root.potentialNodes.delete(this.elementId),t&&(o||a)&&(this.isLayoutDirty=!0),e){let t;const i=()=>this.root.updateBlockedByResize=!1;e(n,()=>{this.root.updateBlockedByResize=!0,t&&t(),t=Ny(i,250),vg.hasAnimatedSinceResize&&(vg.hasAnimatedSinceResize=!1,this.nodes.forEach(tj))})}a&&this.root.registerSharedNode(a,this),!1!==this.options.animate&&r&&(a||o)&&this.addEventListener("didUpdate",({delta:e,hasLayoutChanged:n,hasRelativeTargetChanged:t,layout:i})=>{var a,o,s,u,l;if(this.isTreeAnimationBlocked())return this.target=void 0,void(this.relativeTarget=void 0);const c=null!==(o=null!==(a=this.options.transition)&&void 0!==a?a:r.getDefaultTransition())&&void 0!==o?o:cj,{onLayoutAnimationStart:d,onLayoutAnimationComplete:g}=r.getProps(),h=!this.targetLayout||!FM(this.targetLayout,i)||t,p=!n&&t;if((null===(s=this.resumeFrom)||void 0===s?void 0:s.instance)||p||n&&(h||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(e,p);const n={...Yy(c,"layout"),onPlay:d,onComplete:g};r.shouldReduceMotion&&(n.delay=0,n.type=!1),this.startAnimation(n)}else n||0!==this.animationProgress||tj(this),this.isLead()&&(null===(l=(u=this.options).onExitComplete)||void 0===l||l.call(u));this.targetLayout=i})}unmount(){var e,n;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),null===(e=this.getStack())||void 0===e||e.remove(this),null===(n=this.parent)||void 0===n||n.children.delete(this),this.instance=void 0,Zp.preRender(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){var e;return this.isAnimationBlocked||(null===(e=this.parent)||void 0===e?void 0:e.isTreeAnimationBlocked())||!1}startUpdate(){var e;this.isUpdateBlocked()||(this.isUpdating=!0,null===(e=this.nodes)||void 0===e||e.forEach(oj),this.animationId++)}willUpdate(e=!0){var n,t,i;if(this.root.isUpdateBlocked())return void(null===(t=(n=this.options).onExitComplete)||void 0===t||t.call(n));if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let e=0;e<this.path.length;e++){const n=this.path[e];n.shouldResetTransform=!0,n.updateScroll("snapshot")}const{layoutId:a,layout:o}=this.options;if(void 0===a&&!o)return;const r=null===(i=this.options.visualElement)||void 0===i?void 0:i.getProps().transformTemplate;this.prevTransformTemplateValue=null==r?void 0:r(this.latestValues,""),this.updateSnapshot(),e&&this.notifyListeners("willUpdate")}didUpdate(){if(this.isUpdateBlocked())return this.unblockUpdate(),this.clearAllSnapshots(),void this.nodes.forEach(ej);this.isUpdating&&(this.isUpdating=!1,this.potentialNodes.size&&(this.potentialNodes.forEach(dj),this.potentialNodes.clear()),this.nodes.forEach(nj),this.nodes.forEach(KM),this.nodes.forEach(VM),this.clearAllSnapshots(),_p.update(),_p.preRender(),_p.render())}clearAllSnapshots(){this.nodes.forEach(qM),this.sharedNodes.forEach(rj)}scheduleUpdateProjection(){Qp.preRender(this.updateProjection,!1,!0)}scheduleCheckAfterUnmount(){Qp.postRender(()=>{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){!this.snapshot&&this.instance&&(this.snapshot=this.measure())}updateLayout(){var e;if(!this.instance)return;if(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead()||this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let e=0;e<this.path.length;e++){this.path[e].updateScroll()}const n=this.layout;this.layout=this.measure(!1),this.layoutCorrected={x:{min:0,max:0},y:{min:0,max:0}},this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners("measure",this.layout.layoutBox),null===(e=this.options.visualElement)||void 0===e||e.notify("LayoutMeasure",this.layout.layoutBox,null==n?void 0:n.layoutBox)}updateScroll(e="measure"){let n=Boolean(this.options.layoutScroll&&this.instance);this.scroll&&this.scroll.animationId===this.root.animationId&&this.scroll.phase===e&&(n=!1),n&&(this.scroll={animationId:this.root.animationId,phase:e,isRoot:i(this.instance),offset:t(this.instance)})}resetTransform(){var e;if(!a)return;const n=this.isLayoutDirty||this.shouldResetTransform,t=this.projectionDelta&&!BM(this.projectionDelta),i=null===(e=this.options.visualElement)||void 0===e?void 0:e.getProps().transformTemplate,o=null==i?void 0:i(this.latestValues,""),r=o!==this.prevTransformTemplateValue;n&&(t||vf(this.latestValues)||r)&&(a(this.instance,o),this.shouldResetTransform=!1,this.scheduleRender())}measure(e=!0){const n=this.measurePageBox();let t=this.removeElementScroll(n);var i;return e&&(t=this.removeTransform(t)),gj((i=t).x),gj(i.y),{animationId:this.root.animationId,measuredBox:n,layoutBox:t,latestValues:{},source:this.id}}measurePageBox(){const{visualElement:e}=this.options;if(!e)return{x:{min:0,max:0},y:{min:0,max:0}};const n=e.measureViewportBox(),{scroll:t}=this.root;return t&&(If(n.x,t.offset.x),If(n.y,t.offset.y)),n}removeElementScroll(e){const n={x:{min:0,max:0},y:{min:0,max:0}};IM(n,e);for(let t=0;t<this.path.length;t++){const i=this.path[t],{scroll:a,options:o}=i;if(i!==this.root&&a&&o.layoutScroll){if(a.isRoot){IM(n,e);const{scroll:t}=this.root;t&&(If(n.x,-t.offset.x),If(n.y,-t.offset.y))}If(n.x,a.offset.x),If(n.y,a.offset.y)}}return n}applyTransform(e,n=!1){const t={x:{min:0,max:0},y:{min:0,max:0}};IM(t,e);for(let e=0;e<this.path.length;e++){const i=this.path[e];!n&&i.options.layoutScroll&&i.scroll&&i!==i.root&&Qf(t,{x:-i.scroll.offset.x,y:-i.scroll.offset.y}),vf(i.latestValues)&&Qf(t,i.latestValues)}return vf(this.latestValues)&&Qf(t,this.latestValues),t}removeTransform(e){var n;const t={x:{min:0,max:0},y:{min:0,max:0}};IM(t,e);for(let e=0;e<this.path.length;e++){const i=this.path[e];if(!i.instance)continue;if(!vf(i.latestValues))continue;Nf(i.latestValues)&&i.updateSnapshot();const a=bf();IM(a,i.measurePageBox()),ZM(t,i.latestValues,null===(n=i.snapshot)||void 0===n?void 0:n.layoutBox,a)}return vf(this.latestValues)&&ZM(t,this.latestValues),t}setTargetDelta(e){this.targetDelta=e,this.isProjectionDirty=!0,this.root.scheduleUpdateProjection()}setOptions(e){this.options={...this.options,...e,crossfade:void 0===e.crossfade||e.crossfade}}clearMeasurements(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1}resolveTargetDelta(){var e;const n=this.getLead();if(this.isProjectionDirty||(this.isProjectionDirty=n.isProjectionDirty),this.isTransformDirty||(this.isTransformDirty=n.isTransformDirty),!this.isProjectionDirty&&!this.attemptToResolveRelativeTarget)return;const{layout:t,layoutId:i}=this.options;if(this.layout&&(t||i)){if(!this.targetDelta&&!this.relativeTarget){const e=this.getClosestProjectingParent();e&&e.layout?(this.relativeParent=e,this.relativeTarget={x:{min:0,max:0},y:{min:0,max:0}},this.relativeTargetOrigin={x:{min:0,max:0},y:{min:0,max:0}},pf(this.relativeTargetOrigin,this.layout.layoutBox,e.layout.layoutBox),IM(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}if((this.relativeTarget||this.targetDelta)&&(this.target||(this.target={x:{min:0,max:0},y:{min:0,max:0}},this.targetWithTransforms={x:{min:0,max:0},y:{min:0,max:0}}),this.relativeTarget&&this.relativeTargetOrigin&&(null===(e=this.relativeParent)||void 0===e?void 0:e.target)?function(e,n,t){gf(e.x,n.x,t.x),gf(e.y,n.y,t.y)}(this.target,this.relativeTarget,this.relativeParent.target):this.targetDelta?(Boolean(this.resumingFrom)?this.target=this.applyTransform(this.layout.layoutBox):IM(this.target,this.layout.layoutBox),Ef(this.target,this.targetDelta)):IM(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget)){this.attemptToResolveRelativeTarget=!1;const e=this.getClosestProjectingParent();e&&Boolean(e.resumingFrom)===Boolean(this.resumingFrom)&&!e.options.layoutScroll&&e.target?(this.relativeParent=e,this.relativeTarget={x:{min:0,max:0},y:{min:0,max:0}},this.relativeTargetOrigin={x:{min:0,max:0},y:{min:0,max:0}},pf(this.relativeTargetOrigin,this.target,e.target),IM(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}}}getClosestProjectingParent(){if(this.parent&&!Nf(this.parent.latestValues)&&!Sf(this.parent.latestValues))return(this.parent.relativeTarget||this.parent.targetDelta)&&this.parent.layout?this.parent:this.parent.getClosestProjectingParent()}calcProjection(){var e;const{isProjectionDirty:n,isTransformDirty:t}=this;this.isProjectionDirty=this.isTransformDirty=!1;const i=this.getLead(),a=Boolean(this.resumingFrom)||this!==i;let o=!0;if(n&&(o=!1),a&&t&&(o=!1),o)return;const{layout:r,layoutId:s}=this.options;if(this.isTreeAnimating=Boolean((null===(e=this.parent)||void 0===e?void 0:e.isTreeAnimating)||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!this.layout||!r&&!s)return;IM(this.layoutCorrected,this.layout.layoutBox),function(e,n,t,i=!1){var a,o;const r=t.length;if(!r)return;let s,u;n.x=n.y=1;for(let l=0;l<r;l++)s=t[l],u=s.projectionDelta,"contents"!==(null===(o=null===(a=s.instance)||void 0===a?void 0:a.style)||void 0===o?void 0:o.display)&&(i&&s.options.layoutScroll&&s.scroll&&s!==s.root&&Qf(e,{x:-s.scroll.offset.x,y:-s.scroll.offset.y}),u&&(n.x*=u.x.scale,n.y*=u.y.scale,Ef(e,u)),i&&vf(s.latestValues)&&Qf(e,s.latestValues));n.x=zf(n.x),n.y=zf(n.y)}(this.layoutCorrected,this.treeScale,this.path,a);const{target:u}=i;if(!u)return;this.projectionDelta||(this.projectionDelta={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}},this.projectionDeltaWithTransform={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}});const l=this.treeScale.x,c=this.treeScale.y,d=this.projectionTransform;df(this.projectionDelta,this.layoutCorrected,u,this.latestValues),this.projectionTransform=HM(this.projectionDelta,this.treeScale),this.projectionTransform===d&&this.treeScale.x===l&&this.treeScale.y===c||(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",u))}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(e=!0){var n,t,i;null===(t=(n=this.options).scheduleRender)||void 0===t||t.call(n),e&&(null===(i=this.getStack())||void 0===i||i.scheduleRender()),this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}setAnimationOrigin(e,n=!1){var t,i;const a=this.snapshot,o=(null==a?void 0:a.latestValues)||{},r={...this.latestValues},s={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}};this.relativeTarget=this.relativeTargetOrigin=void 0,this.attemptToResolveRelativeTarget=!n;const u={x:{min:0,max:0},y:{min:0,max:0}},l=(null==a?void 0:a.source)!==(null===(t=this.layout)||void 0===t?void 0:t.source),c=((null===(i=this.getStack())||void 0===i?void 0:i.members.length)||0)<=1,d=Boolean(l&&!c&&!0===this.options.crossfade&&!this.path.some(lj));this.animationProgress=0,this.mixTargetDelta=n=>{var t;const i=n/1e3;sj(s.x,e.x,i),sj(s.y,e.y,i),this.setTargetDelta(s),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&(null===(t=this.relativeParent)||void 0===t?void 0:t.layout)&&(pf(u,this.layout.layoutBox,this.relativeParent.layout.layoutBox),function(e,n,t,i){uj(e.x,n.x,t.x,i),uj(e.y,n.y,t.y,i)}(this.relativeTarget,this.relativeTargetOrigin,u,i)),l&&(this.animationValues=r,function(e,n,t,i,a,o){a?(e.opacity=Ym(0,void 0!==t.opacity?t.opacity:1,kM(i)),e.opacityExit=Ym(void 0!==n.opacity?n.opacity:1,0,CM(i))):o&&(e.opacity=Ym(void 0!==n.opacity?n.opacity:1,void 0!==t.opacity?t.opacity:1,i));for(let a=0;a<vM;a++){const o=`border${NM[a]}Radius`;let r=DM(n,o),s=DM(t,o);void 0===r&&void 0===s||(r||(r=0),s||(s=0),0===r||0===s||TM(r)===TM(s)?(e[o]=Math.max(Ym(SM(r),SM(s),i),0),(th.test(s)||th.test(r))&&(e[o]+="%")):e[o]=s)}(n.rotate||t.rotate)&&(e.rotate=Ym(n.rotate||0,t.rotate||0,i))}(r,o,this.latestValues,i,d,c)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=i},this.mixTargetDelta(0)}startAnimation(e){var n,t;this.notifyListeners("animationStart"),null===(n=this.currentAnimation)||void 0===n||n.stop(),this.resumingFrom&&(null===(t=this.resumingFrom.currentAnimation)||void 0===t||t.stop()),this.pendingAnimation&&(Zp.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Qp.update(()=>{vg.hasAnimatedSinceResize=!0,this.currentAnimation=function(e,n,t={}){const i=Bg(e)?e:Rp(e);return i.start(By("",i,n,t)),{stop:()=>i.stop(),isAnimating:()=>i.isAnimating()}}(0,1e3,{...e,onUpdate:n=>{var t;this.mixTargetDelta(n),null===(t=e.onUpdate)||void 0===t||t.call(e,n)},onComplete:()=>{var n;null===(n=e.onComplete)||void 0===n||n.call(e),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){var e;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),null===(e=this.getStack())||void 0===e||e.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){var e;this.currentAnimation&&(null===(e=this.mixTargetDelta)||void 0===e||e.call(this,1e3),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const e=this.getLead();let{targetWithTransforms:n,target:t,layout:i,latestValues:a}=e;if(n&&t&&i){if(this!==e&&this.layout&&i&&hj(this.options.animationType,this.layout.layoutBox,i.layoutBox)){t=this.target||{x:{min:0,max:0},y:{min:0,max:0}};const n=uf(this.layout.layoutBox.x);t.x.min=e.target.x.min,t.x.max=t.x.min+n;const i=uf(this.layout.layoutBox.y);t.y.min=e.target.y.min,t.y.max=t.y.min+i}IM(n,t),Qf(n,a),df(this.projectionDeltaWithTransform,this.layoutCorrected,n,a)}}registerSharedNode(e,n){var t,i,a;this.sharedNodes.has(e)||this.sharedNodes.set(e,new UM);this.sharedNodes.get(e).add(n),n.promote({transition:null===(t=n.options.initialPromotionConfig)||void 0===t?void 0:t.transition,preserveFollowOpacity:null===(a=null===(i=n.options.initialPromotionConfig)||void 0===i?void 0:i.shouldPreserveFollowOpacity)||void 0===a?void 0:a.call(i,n)})}isLead(){const e=this.getStack();return!e||e.lead===this}getLead(){var e;const{layoutId:n}=this.options;return n&&(null===(e=this.getStack())||void 0===e?void 0:e.lead)||this}getPrevLead(){var e;const{layoutId:n}=this.options;return n?null===(e=this.getStack())||void 0===e?void 0:e.prevLead:void 0}getStack(){const{layoutId:e}=this.options;if(e)return this.root.sharedNodes.get(e)}promote({needsReset:e,transition:n,preserveFollowOpacity:t}={}){const i=this.getStack();i&&i.promote(this,t),e&&(this.projectionDelta=void 0,this.needsReset=!0),n&&this.setOptions({transition:n})}relegate(){const e=this.getStack();return!!e&&e.relegate(this)}resetRotation(){const{visualElement:e}=this.options;if(!e)return;let n=!1;const{latestValues:t}=e;if((t.rotate||t.rotateX||t.rotateY||t.rotateZ)&&(n=!0),!n)return;const i={};for(let n=0;n<GM.length;n++){const a="rotate"+GM[n];t[a]&&(i[a]=t[a],e.setStaticValue(a,0))}null==e||e.render();for(const n in i)e.setStaticValue(n,i[n]);e.scheduleRender()}getProjectionStyles(e={}){var n,t,i;const a={};if(!this.instance||this.isSVG)return a;if(!this.isVisible)return{visibility:"hidden"};a.visibility="";const o=null===(n=this.options.visualElement)||void 0===n?void 0:n.getProps().transformTemplate;if(this.needsReset)return this.needsReset=!1,a.opacity="",a.pointerEvents=Yh(e.pointerEvents)||"",a.transform=o?o(this.latestValues,""):"none",a;const r=this.getLead();if(!this.projectionDelta||!this.layout||!r.target){const n={};return this.options.layoutId&&(n.opacity=void 0!==this.latestValues.opacity?this.latestValues.opacity:1,n.pointerEvents=Yh(e.pointerEvents)||""),this.hasProjected&&!vf(this.latestValues)&&(n.transform=o?o({},""):"none",this.hasProjected=!1),n}const s=r.animationValues||r.latestValues;this.applyTransformsToTarget(),a.transform=HM(this.projectionDeltaWithTransform,this.treeScale,s),o&&(a.transform=o(s,a.transform));const{x:u,y:l}=this.projectionDelta;a.transformOrigin=`${100*u.origin}% ${100*l.origin}% 0`,r.animationValues?a.opacity=r===this?null!==(i=null!==(t=s.opacity)&&void 0!==t?t:this.latestValues.opacity)&&void 0!==i?i:1:this.preserveOpacity?this.latestValues.opacity:s.opacityExit:a.opacity=r===this?void 0!==s.opacity?s.opacity:"":void 0!==s.opacityExit?s.opacityExit:0;for(const e in Og){if(void 0===s[e])continue;const{correct:n,applyTo:t}=Og[e],i=n(s[e],r);if(t){const e=t.length;for(let n=0;n<e;n++)a[t[n]]=i}else a[e]=i}return this.options.layoutId&&(a.pointerEvents=r===this?Yh(e.pointerEvents)||"":"none"),a}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach(e=>{var n;return null===(n=e.currentAnimation)||void 0===n?void 0:n.stop()}),this.root.nodes.forEach(ej),this.root.sharedNodes.clear()}}}function KM(e){e.updateLayout()}function VM(e){var n,t,i;const a=(null===(n=e.resumeFrom)||void 0===n?void 0:n.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&a&&e.hasListeners("didUpdate")){const{layoutBox:n,measuredBox:t}=e.layout,{animationType:i}=e.options,o=a.source!==e.layout.source;"size"===i?wf(e=>{const t=o?a.measuredBox[e]:a.layoutBox[e],i=uf(t);t.min=n[e].min,t.max=t.min+i}):hj(i,a.layoutBox,n)&&wf(e=>{const t=o?a.measuredBox[e]:a.layoutBox[e],i=uf(n[e]);t.max=t.min+i});const r={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}};df(r,n,a.layoutBox);const s={x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}};o?df(s,e.applyTransform(t,!0),a.measuredBox):df(s,n,a.layoutBox);const u=!BM(r);let l=!1;if(!e.resumeFrom){const t=e.getClosestProjectingParent();if(t&&!t.resumeFrom){const{snapshot:e,layout:i}=t;if(e&&i){const t={x:{min:0,max:0},y:{min:0,max:0}};pf(t,a.layoutBox,e.layoutBox);const o={x:{min:0,max:0},y:{min:0,max:0}};pf(o,n,i.layoutBox),FM(t,o)||(l=!0)}}}e.notifyListeners("didUpdate",{layout:n,snapshot:a,delta:s,layoutDelta:r,hasLayoutChanged:u,hasRelativeTargetChanged:l})}else e.isLead()&&(null===(i=(t=e.options).onExitComplete)||void 0===i||i.call(t));e.options.transition=void 0}function $M(e){e.isProjectionDirty||(e.isProjectionDirty=Boolean(e.parent&&e.parent.isProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=Boolean(e.parent&&e.parent.isTransformDirty))}function qM(e){e.clearSnapshot()}function ej(e){e.clearMeasurements()}function nj(e){const{visualElement:n}=e.options;(null==n?void 0:n.getProps().onBeforeLayoutMeasure)&&n.notify("BeforeLayoutMeasure"),e.resetTransform()}function tj(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function ij(e){e.resolveTargetDelta()}function aj(e){e.calcProjection()}function oj(e){e.resetRotation()}function rj(e){e.removeLeadSnapshot()}function sj(e,n,t){e.translate=Ym(n.translate,0,t),e.scale=Ym(n.scale,1,t),e.origin=n.origin,e.originPoint=n.originPoint}function uj(e,n,t,i){e.min=Ym(n.min,t.min,i),e.max=Ym(n.max,t.max,i)}function lj(e){return e.animationValues&&void 0!==e.animationValues.opacityExit}const cj={duration:.45,ease:[.4,0,.1,1]};function dj(e,n){let t=e.root;for(let n=e.path.length-1;n>=0;n--)if(Boolean(e.path[n].instance)){t=e.path[n];break}const i=(t&&t!==e.root?t.instance:document).querySelector(`[data-projection-id="${n}"]`);i&&e.mount(i,!0)}function gj(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function hj(e,n,t){return"position"===e||"preserve-aspect"===e&&!lf(XM(n),XM(t),.2)}const pj=WM({attachResizeListener:(e,n)=>Fh(e,"resize",n),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),mj={current:void 0},yj=WM({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!mj.current){const e=new pj(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),mj.current=e}return mj.current},resetTransform:(e,n)=>{e.style.transform=void 0!==n?n:"none"},checkIsScrollRoot:e=>Boolean("fixed"===window.getComputedStyle(e).position)}),fj={...$y,...Lp,...Xf,...LM},Mj=Ig((e,n)=>function(e,{forwardMotionProps:n=!1},t,i,a){return{...Yg(e)?Zh:_h,preloadedFeatures:t,useRender:vh(n),createVisualElement:i,projectionNodeConstructor:a,Component:e}}(e,n,fj,yM,yj));function jj(){const e=ee.useRef(!1);return dg(()=>(e.current=!0,()=>{e.current=!1}),[]),e}class bj extends ee.Component{getSnapshotBeforeUpdate(e){const n=this.props.childRef.current;if(n&&e.isPresent&&!this.props.isPresent){const e=this.props.sizeRef.current;e.height=n.offsetHeight||0,e.width=n.offsetWidth||0,e.top=n.offsetTop,e.left=n.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function wj({children:e,isPresent:n}){const t=ee.useId(),i=ee.useRef(null),a=ee.useRef({width:0,height:0,top:0,left:0});return ee.useInsertionEffect(()=>{const{width:e,height:o,top:r,left:s}=a.current;if(n||!i.current||!e||!o)return;i.current.dataset.motionPopId=t;const u=document.createElement("style");return document.head.appendChild(u),u.sheet&&u.sheet.insertRule(`\n [data-motion-pop-id="${t}"] {\n position: absolute !important;\n width: ${e}px !important;\n height: ${o}px !important;\n top: ${r}px !important;\n left: ${s}px !important;\n }\n `),()=>{document.head.removeChild(u)}},[n]),ee.createElement(bj,{isPresent:n,childRef:i,sizeRef:a},ee.cloneElement(e,{ref:i}))}const xj=({children:e,initial:n,isPresent:t,onExitComplete:i,custom:a,presenceAffectsLayout:o,mode:r})=>{const s=Ng(Lj),u=ee.useId(),l=ee.useMemo(()=>({id:u,initial:n,isPresent:t,custom:a,onExitComplete:e=>{s.set(e,!0);for(const e of s.values())if(!e)return;i&&i()},register:e=>(s.set(e,!1),()=>s.delete(e))}),o?void 0:[t]);return ee.useMemo(()=>{s.forEach((e,n)=>s.set(n,!1))},[t]),ee.useEffect(()=>{!t&&!s.size&&i&&i()},[t]),"popLayout"===r&&(e=ee.createElement(wj,{isPresent:t},e)),ee.createElement(lg.Provider,{value:l},e)};function Lj(){return new Map}const Nj=e=>e.key||"";const vj=({children:e,custom:n,initial:t=!0,onExitComplete:i,exitBeforeEnter:a,presenceAffectsLayout:o=!0,mode:r="sync"})=>{a&&(r="wait",hp(!1,"Replace exitBeforeEnter with mode='wait'"));let[s]=function(){const e=jj(),[n,t]=ee.useState(0),i=ee.useCallback(()=>{e.current&&t(n+1)},[n]);return[ee.useCallback(()=>Qp.postRender(i),[i]),n]}();const u=ee.useContext(Tg).forceRender;u&&(s=u);const l=jj(),c=function(e){const n=[];return ee.Children.forEach(e,e=>{ee.isValidElement(e)&&n.push(e)}),n}(e);let d=c;const g=new Set,h=ee.useRef(d),p=ee.useRef(new Map).current,m=ee.useRef(!0);if(dg(()=>{m.current=!1,function(e,n){e.forEach(e=>{const t=Nj(e);n.set(t,e)})}(c,p),h.current=d}),up(()=>{m.current=!0,p.clear(),g.clear()}),m.current)return ee.createElement(ee.Fragment,null,d.map(e=>ee.createElement(xj,{key:Nj(e),isPresent:!0,initial:!!t&&void 0,presenceAffectsLayout:o,mode:r},e)));d=[...d];const y=h.current.map(Nj),f=c.map(Nj),M=y.length;for(let e=0;e<M;e++){const n=y[e];-1===f.indexOf(n)&&g.add(n)}return"wait"===r&&g.size&&(d=[]),g.forEach(e=>{if(-1!==f.indexOf(e))return;const t=p.get(e);if(!t)return;const a=y.indexOf(e);d.splice(a,0,ee.createElement(xj,{key:Nj(t),isPresent:!1,onExitComplete:()=>{p.delete(e),g.delete(e);const n=h.current.findIndex(n=>n.key===e);if(h.current.splice(n,1),!g.size){if(h.current=c,!1===l.current)return;s(),i&&i()}},custom:n,presenceAffectsLayout:o,mode:r},t))}),d=d.map(e=>{const n=e.key;return g.has(n)?e:ee.createElement(xj,{key:Nj(e),isPresent:!0,presenceAffectsLayout:o,mode:r},e)}),"production"!==dp&&"wait"===r&&d.length>1&&console.warn('You\'re attempting to animate multiple children within AnimatePresence, but its mode is set to "wait". This will lead to odd visual behaviour.'),ee.createElement(ee.Fragment,null,g.size?d:d.map(e=>ee.cloneElement(e)))};function Sj(e,n,t,i){return new(t||(t=Promise))(function(a,o){function r(e){try{u(i.next(e))}catch(e){o(e)}}function s(e){try{u(i.throw(e))}catch(e){o(e)}}function u(e){var n;e.done?a(e.value):(n=e.value,n instanceof t?n:new t(function(e){e(n)})).then(r,s)}u((i=i.apply(e,n||[])).next())})}var Tj=Object.defineProperty,Dj=Object.getOwnPropertySymbols,kj=Object.prototype.hasOwnProperty,Cj=Object.prototype.propertyIsEnumerable,Ej=(e,n,t)=>n in e?Tj(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t,zj=(e,n)=>{for(var t in n||(n={}))kj.call(n,t)&&Ej(e,t,n[t]);if(Dj)for(var t of Dj(n))Cj.call(n,t)&&Ej(e,t,n[t]);return e},Ij=(e=null)=>{const n=ee.createContext(e);return[()=>{const e=ee.useContext(n);if(!e)throw new Error("useGenericContext must be used within a Provider");return e},n.Provider,n]},[Aj,Yj]=Ij();function Oj({children:e,layout:n}){return ce.jsx(Yj,{value:n,children:e})}function Qj(e,n){ee.useEffect(()=>{e&&(e.style.minHeight="0px",e.style.minHeight=e.scrollHeight+"px")},[e,n])}var Zj=l?ee.useLayoutEffect:ee.useEffect;var _j=function(e,n,t,i){const a=ee.useRef(n);Zj(()=>{a.current=n},[n]),ee.useEffect(()=>{const n=(null==t?void 0:t.current)||window;if(!n||!n.addEventListener)return;const o=e=>a.current(e);return n.addEventListener(e,o,i),()=>{n.removeEventListener(e,o)}},[e,t,i])};function Bj(){const[e,n]=ee.useState({width:0,height:0}),t=()=>{const e=window.innerWidth,t=window.innerHeight;n({width:e,height:t})};return _j("resize",t),Zj(()=>{t()},[]),e}function Fj(e,n){const t=ee.useRef(n);ee.useEffect(()=>{t.current=n},[n]),ee.useEffect(()=>{const n=n=>{const i=e.current;n&&i&&!i.contains(n.target)&&t.current(n)};return document.addEventListener("click",n),()=>document.removeEventListener("click",n)},[e])}function Xj(e="EUR",n){return function(e,n){const t=Aj(),i=n||t.locale,a=e?Object.entries(e).map(([e,n])=>`${e}:${n}`).join(""):void 0;return ee.useMemo(()=>new Intl.NumberFormat(i,e).format,[i,a])}({style:"currency",currency:e,minimumFractionDigits:2,maximumFractionDigits:2},n)}function Uj(e={year:"numeric",month:"numeric",day:"numeric"},n){const t=Aj();return i=>{const a=i instanceof Date?i:new Date(i);return new Intl.DateTimeFormat(n||t.locale,e).format(a)}}(e=>{e&&ig(e)})((e,n)=>({views:{},actions:{reduce:(t,i)=>{const a=zj({},n().views),o=zj({},a),r=i(a);o[t]=r,e({views:o})}}}));var[Hj,Jj]=Ij({});function Pj({children:e,extra:n}){return ce.jsx(Jj,{value:n,children:e})}var Gj=(e=>(e[e.Unknown=0]="Unknown",e[e.Backspace=8]="Backspace",e[e.Tab=9]="Tab",e[e.Enter=13]="Enter",e[e.Shift=16]="Shift",e[e.Ctrl=17]="Ctrl",e[e.Alt=18]="Alt",e[e.PauseBreak=19]="PauseBreak",e[e.CapsLock=20]="CapsLock",e[e.Escape=27]="Escape",e[e.Space=32]="Space",e[e.PageUp=33]="PageUp",e[e.PageDown=34]="PageDown",e[e.End=35]="End",e[e.Home=36]="Home",e[e.LeftArrow=37]="LeftArrow",e[e.UpArrow=38]="UpArrow",e[e.RightArrow=39]="RightArrow",e[e.DownArrow=40]="DownArrow",e[e.Insert=45]="Insert",e[e.Delete=46]="Delete",e[e.KEY_0=48]="KEY_0",e[e.KEY_1=49]="KEY_1",e[e.KEY_2=50]="KEY_2",e[e.KEY_3=51]="KEY_3",e[e.KEY_4=52]="KEY_4",e[e.KEY_5=53]="KEY_5",e[e.KEY_6=54]="KEY_6",e[e.KEY_7=55]="KEY_7",e[e.KEY_8=56]="KEY_8",e[e.KEY_9=57]="KEY_9",e[e.KEY_A=65]="KEY_A",e[e.KEY_B=66]="KEY_B",e[e.KEY_C=67]="KEY_C",e[e.KEY_D=68]="KEY_D",e[e.KEY_E=69]="KEY_E",e[e.KEY_F=70]="KEY_F",e[e.KEY_G=71]="KEY_G",e[e.KEY_H=72]="KEY_H",e[e.KEY_I=73]="KEY_I",e[e.KEY_J=74]="KEY_J",e[e.KEY_K=75]="KEY_K",e[e.KEY_L=76]="KEY_L",e[e.KEY_M=77]="KEY_M",e[e.KEY_N=78]="KEY_N",e[e.KEY_O=79]="KEY_O",e[e.KEY_P=80]="KEY_P",e[e.KEY_Q=81]="KEY_Q",e[e.KEY_R=82]="KEY_R",e[e.KEY_S=83]="KEY_S",e[e.KEY_T=84]="KEY_T",e[e.KEY_U=85]="KEY_U",e[e.KEY_V=86]="KEY_V",e[e.KEY_W=87]="KEY_W",e[e.KEY_X=88]="KEY_X",e[e.KEY_Y=89]="KEY_Y",e[e.KEY_Z=90]="KEY_Z",e[e.Meta=91]="Meta",e[e.F1=112]="F1",e[e.F2=113]="F2",e[e.F3=114]="F3",e[e.F4=115]="F4",e[e.F5=116]="F5",e[e.F6=117]="F6",e[e.F7=118]="F7",e[e.F8=119]="F8",e[e.F9=120]="F9",e[e.F10=121]="F10",e[e.F11=122]="F11",e[e.F12=123]="F12",e[e.NumLock=144]="NumLock",e[e.ScrollLock=145]="ScrollLock",e[e.Equal=187]="Equal",e[e.Minus=189]="Minus",e[e.Backquote=192]="Backquote",e[e.Backslash=220]="Backslash",e))(Gj||{}),Rj=(e=>(e[e.CtrlCmd=2048]="CtrlCmd",e[e.Shift=1024]="Shift",e[e.Alt=512]="Alt",e[e.WinCtrl=256]="WinCtrl",e))(Rj||{}),Wj=()=>Boolean("undefined"!=typeof window&&window.document&&window.document.createElement);function Kj(){return!!Wj()&&navigator.platform.toUpperCase().indexOf("MAC")>=0}var Vj=(e,n,t={})=>{const i=Array.isArray(n)?n:[n],{disableGlobalEvent:a=!1,capture:o=!1,stopPropagation:r=!1,preventDefault:s=!0,event:u="keydown"}=t,l=function(e){const n=e.filter(e=>!!Rj[e]),t={CtrlCmd:!1,Shift:!1,Alt:!1,WinCtrl:!1};return n.forEach(e=>{const n=Rj[e];t[n]=!0}),t}(i),c=i.filter(e=>!Rj[e]),{CtrlCmd:d,WinCtrl:g}={CtrlCmd:Kj()?"metaKey":"ctrlKey",WinCtrl:Kj()?"ctrlKey":"metaKey"},h=n=>{if(l.Shift&&!n.shiftKey)return;if(l.Alt&&!n.altKey)return;if(l.CtrlCmd&&!n[d])return;if(l.WinCtrl&&!n[g])return;const t=c.find(e=>e===n.keyCode);c&&!t||(r&&n.stopPropagation(),s&&n.preventDefault(),e&&e(n))};ee.useEffect(()=>(a||document.addEventListener(u,h),()=>{document.removeEventListener(u,h)}),[a]);const p=(e,n=!1)=>e!==u||n!==o?()=>{}:e=>h(e);return{bindings:{onKeyDown:p("keydown"),onKeyDownCapture:p("keydown",!0),onKeyPress:p("keypress"),onKeyPressCapture:p("keypress",!0),onKeyUp:p("keyup"),onKeyUpCapture:p("keyup",!0)}}},[$j,qj]=Ij();function eb({children:e}){const{labels:n}=Aj(),t=new nb(n);return ce.jsx(qj,{value:(e,n)=>t.getLabel(e,n),children:e})}var nb=class{constructor(e){this.labels=e,this.dictionary=Object.fromEntries(e.map(e=>[e.id,e.text]))}getLabel(e,n){return function(e,n,t){const i=null!=e[n]?e[n]:n;if(t)return function(e,n){const t=/@(\w+)/g;return e.replace(t,(e,t)=>{const i=n[t];return void 0!==i?String(i):e})}(i,t);return i}(this.dictionary,e,n)}};function tb(){const[e,n]=ee.useState(!1);return ee.useEffect(()=>{n(!0)},[]),e}Ij({}),Ij();var[ib,ab]=Ij();function ob({children:e,page:n}){return ce.jsx(ab,{value:n,children:e})}function rb(e=function(){return Math.random().toString(32).slice(2,10)}(),n){const{isBrowser:t}=function(){const[e,n]=ee.useState(!1);return ee.useEffect(()=>{n(Wj())},[]),{isBrowser:e,isServer:!e}}(),i=`theme-${e}`,[a,o]=ee.useState(t?sb(i):null);return ee.useEffect(()=>{const e=("function"==typeof n?n():null)||document.body,t=e.querySelector(`#${i}`)||sb(i);t.parentElement||e.appendChild(t),o(t)},[]),a}function sb(e){const n=document.createElement("div");return n.setAttribute("id",e),n}const ub=ee.createContext(null),lb={didCatch:!1,error:null};class cb extends ee.Component{constructor(e){super(e),this.resetErrorBoundary=this.resetErrorBoundary.bind(this),this.state=lb}static getDerivedStateFromError(e){return{didCatch:!0,error:e}}resetErrorBoundary(){const{error:e}=this.state;if(null!==e){for(var n,t,i=arguments.length,a=new Array(i),o=0;o<i;o++)a[o]=arguments[o];null===(n=(t=this.props).onReset)||void 0===n||n.call(t,{args:a,reason:"imperative-api"}),this.setState(lb)}}componentDidCatch(e,n){var t,i;null===(t=(i=this.props).onError)||void 0===t||t.call(i,e,n)}componentDidUpdate(e,n){const{didCatch:t}=this.state,{resetKeys:i}=this.props;var a,o;t&&null!==n.error&&function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return e.length!==n.length||e.some((e,t)=>!Object.is(e,n[t]))}(e.resetKeys,i)&&(null===(a=(o=this.props).onReset)||void 0===a||a.call(o,{next:i,prev:e.resetKeys,reason:"keys"}),this.setState(lb))}render(){const{children:e,fallbackRender:n,FallbackComponent:t,fallback:i}=this.props,{didCatch:a,error:o}=this.state;let r=e;if(a){const e={error:o,resetErrorBoundary:this.resetErrorBoundary};if("function"==typeof n)r=n(e);else if(t)r=ee.createElement(t,e);else{if(void 0===i)throw o;r=i}}return ee.createElement(ub.Provider,{value:{didCatch:a,error:o,resetErrorBoundary:this.resetErrorBoundary}},r)}}const db=Array(12).fill(0),gb=({visible:e,className:n})=>ne.createElement("div",{className:["sonner-loading-wrapper",n].filter(Boolean).join(" "),"data-visible":e},ne.createElement("div",{className:"sonner-spinner"},db.map((e,n)=>ne.createElement("div",{className:"sonner-loading-bar",key:`spinner-bar-${n}`})))),hb=ne.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},ne.createElement("path",{fillRule:"evenodd",d:"M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z",clipRule:"evenodd"})),pb=ne.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",height:"20",width:"20"},ne.createElement("path",{fillRule:"evenodd",d:"M9.401 3.003c1.155-2 4.043-2 5.197 0l7.355 12.748c1.154 2-.29 4.5-2.599 4.5H4.645c-2.309 0-3.752-2.5-2.598-4.5L9.4 3.003zM12 8.25a.75.75 0 01.75.75v3.75a.75.75 0 01-1.5 0V9a.75.75 0 01.75-.75zm0 8.25a.75.75 0 100-1.5.75.75 0 000 1.5z",clipRule:"evenodd"})),mb=ne.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},ne.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a.75.75 0 000 1.5h.253a.25.25 0 01.244.304l-.459 2.066A1.75 1.75 0 0010.747 15H11a.75.75 0 000-1.5h-.253a.25.25 0 01-.244-.304l.459-2.066A1.75 1.75 0 009.253 9H9z",clipRule:"evenodd"})),yb=ne.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",height:"20",width:"20"},ne.createElement("path",{fillRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-8-5a.75.75 0 01.75.75v4.5a.75.75 0 01-1.5 0v-4.5A.75.75 0 0110 5zm0 10a1 1 0 100-2 1 1 0 000 2z",clipRule:"evenodd"})),fb=ne.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"},ne.createElement("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),ne.createElement("line",{x1:"6",y1:"6",x2:"18",y2:"18"}));let Mb=1;const jb=new class{constructor(){this.subscribe=e=>(this.subscribers.push(e),()=>{const n=this.subscribers.indexOf(e);this.subscribers.splice(n,1)}),this.publish=e=>{this.subscribers.forEach(n=>n(e))},this.addToast=e=>{this.publish(e),this.toasts=[...this.toasts,e]},this.create=e=>{var n;const{message:t,...i}=e,a="number"==typeof(null==e?void 0:e.id)||(null==(n=e.id)?void 0:n.length)>0?e.id:Mb++,o=this.toasts.find(e=>e.id===a),r=void 0===e.dismissible||e.dismissible;return this.dismissedToasts.has(a)&&this.dismissedToasts.delete(a),o?this.toasts=this.toasts.map(n=>n.id===a?(this.publish({...n,...e,id:a,title:t}),{...n,...e,id:a,dismissible:r,title:t}):n):this.addToast({title:t,...i,dismissible:r,id:a}),a},this.dismiss=e=>(e?(this.dismissedToasts.add(e),requestAnimationFrame(()=>this.subscribers.forEach(n=>n({id:e,dismiss:!0})))):this.toasts.forEach(e=>{this.subscribers.forEach(n=>n({id:e.id,dismiss:!0}))}),e),this.message=(e,n)=>this.create({...n,message:e}),this.error=(e,n)=>this.create({...n,message:e,type:"error"}),this.success=(e,n)=>this.create({...n,type:"success",message:e}),this.info=(e,n)=>this.create({...n,type:"info",message:e}),this.warning=(e,n)=>this.create({...n,type:"warning",message:e}),this.loading=(e,n)=>this.create({...n,type:"loading",message:e}),this.promise=(e,n)=>{if(!n)return;let t;void 0!==n.loading&&(t=this.create({...n,promise:e,type:"loading",message:n.loading,description:"function"!=typeof n.description?n.description:void 0}));const i=Promise.resolve(e instanceof Function?e():e);let a,o=void 0!==t;const r=i.then(async e=>{a=["resolve",e];if(ne.isValidElement(e))o=!1,this.create({id:t,type:"default",message:e});else if(bb(e)&&!e.ok){o=!1;const i="function"==typeof n.error?await n.error(`HTTP error! status: ${e.status}`):n.error,a="function"==typeof n.description?await n.description(`HTTP error! status: ${e.status}`):n.description,r="object"==typeof i&&!ne.isValidElement(i)?i:{message:i};this.create({id:t,type:"error",description:a,...r})}else if(e instanceof Error){o=!1;const i="function"==typeof n.error?await n.error(e):n.error,a="function"==typeof n.description?await n.description(e):n.description,r="object"==typeof i&&!ne.isValidElement(i)?i:{message:i};this.create({id:t,type:"error",description:a,...r})}else if(void 0!==n.success){o=!1;const i="function"==typeof n.success?await n.success(e):n.success,a="function"==typeof n.description?await n.description(e):n.description,r="object"==typeof i&&!ne.isValidElement(i)?i:{message:i};this.create({id:t,type:"success",description:a,...r})}}).catch(async e=>{if(a=["reject",e],void 0!==n.error){o=!1;const i="function"==typeof n.error?await n.error(e):n.error,a="function"==typeof n.description?await n.description(e):n.description,r="object"==typeof i&&!ne.isValidElement(i)?i:{message:i};this.create({id:t,type:"error",description:a,...r})}}).finally(()=>{o&&(this.dismiss(t),t=void 0),null==n.finally||n.finally.call(n)}),s=()=>new Promise((e,n)=>r.then(()=>"reject"===a[0]?n(a[1]):e(a[1])).catch(n));return"string"!=typeof t&&"number"!=typeof t?{unwrap:s}:Object.assign(t,{unwrap:s})},this.custom=(e,n)=>{const t=(null==n?void 0:n.id)||Mb++;return this.create({jsx:e(t),id:t,...n}),t},this.getActiveToasts=()=>this.toasts.filter(e=>!this.dismissedToasts.has(e.id)),this.subscribers=[],this.toasts=[],this.dismissedToasts=new Set}},bb=e=>e&&"object"==typeof e&&"ok"in e&&"boolean"==typeof e.ok&&"status"in e&&"number"==typeof e.status,wb=(e,n)=>{const t=(null==n?void 0:n.id)||Mb++;return jb.addToast({title:e,...n,id:t}),t},xb=Object.assign(wb,{success:jb.success,info:jb.info,warning:jb.warning,error:jb.error,custom:jb.custom,message:jb.message,promise:jb.promise,dismiss:jb.dismiss,loading:jb.loading},{getHistory:()=>jb.toasts,getToasts:()=>jb.getActiveToasts()});function Lb(e){return void 0!==e.label}!function(e){if(!e||"undefined"==typeof document)return;let n=document.head||document.getElementsByTagName("head")[0],t=document.createElement("style");t.type="text/css",n.appendChild(t),t.styleSheet?t.styleSheet.cssText=e:t.appendChild(document.createTextNode(e))}("[data-sonner-toaster][dir=ltr],html[dir=ltr]{--toast-icon-margin-start:-3px;--toast-icon-margin-end:4px;--toast-svg-margin-start:-1px;--toast-svg-margin-end:0px;--toast-button-margin-start:auto;--toast-button-margin-end:0;--toast-close-button-start:0;--toast-close-button-end:unset;--toast-close-button-transform:translate(-35%, -35%)}[data-sonner-toaster][dir=rtl],html[dir=rtl]{--toast-icon-margin-start:4px;--toast-icon-margin-end:-3px;--toast-svg-margin-start:0px;--toast-svg-margin-end:-1px;--toast-button-margin-start:0;--toast-button-margin-end:auto;--toast-close-button-start:unset;--toast-close-button-end:0;--toast-close-button-transform:translate(35%, -35%)}[data-sonner-toaster]{position:fixed;width:var(--width);font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--gray1:hsl(0, 0%, 99%);--gray2:hsl(0, 0%, 97.3%);--gray3:hsl(0, 0%, 95.1%);--gray4:hsl(0, 0%, 93%);--gray5:hsl(0, 0%, 90.9%);--gray6:hsl(0, 0%, 88.7%);--gray7:hsl(0, 0%, 85.8%);--gray8:hsl(0, 0%, 78%);--gray9:hsl(0, 0%, 56.1%);--gray10:hsl(0, 0%, 52.3%);--gray11:hsl(0, 0%, 43.5%);--gray12:hsl(0, 0%, 9%);--border-radius:8px;box-sizing:border-box;padding:0;margin:0;list-style:none;outline:0;z-index:999999999;transition:transform .4s ease}@media (hover:none) and (pointer:coarse){[data-sonner-toaster][data-lifted=true]{transform:none}}[data-sonner-toaster][data-x-position=right]{right:var(--offset-right)}[data-sonner-toaster][data-x-position=left]{left:var(--offset-left)}[data-sonner-toaster][data-x-position=center]{left:50%;transform:translateX(-50%)}[data-sonner-toaster][data-y-position=top]{top:var(--offset-top)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--offset-bottom)}[data-sonner-toast]{--y:translateY(100%);--lift-amount:calc(var(--lift) * var(--gap));z-index:var(--z-index);position:absolute;opacity:0;transform:var(--y);touch-action:none;transition:transform .4s,opacity .4s,height .4s,box-shadow .2s;box-sizing:border-box;outline:0;overflow-wrap:anywhere}[data-sonner-toast][data-styled=true]{padding:16px;background:var(--normal-bg);border:1px solid var(--normal-border);color:var(--normal-text);border-radius:var(--border-radius);box-shadow:0 4px 12px rgba(0,0,0,.1);width:var(--width);font-size:13px;display:flex;align-items:center;gap:6px}[data-sonner-toast]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-y-position=top]{top:0;--y:translateY(-100%);--lift:1;--lift-amount:calc(1 * var(--gap))}[data-sonner-toast][data-y-position=bottom]{bottom:0;--y:translateY(100%);--lift:-1;--lift-amount:calc(var(--lift) * var(--gap))}[data-sonner-toast][data-styled=true] [data-description]{font-weight:400;line-height:1.4;color:#3f3f3f}[data-rich-colors=true][data-sonner-toast][data-styled=true] [data-description]{color:inherit}[data-sonner-toaster][data-sonner-theme=dark] [data-description]{color:#e8e8e8}[data-sonner-toast][data-styled=true] [data-title]{font-weight:500;line-height:1.5;color:inherit}[data-sonner-toast][data-styled=true] [data-icon]{display:flex;height:16px;width:16px;position:relative;justify-content:flex-start;align-items:center;flex-shrink:0;margin-left:var(--toast-icon-margin-start);margin-right:var(--toast-icon-margin-end)}[data-sonner-toast][data-promise=true] [data-icon]>svg{opacity:0;transform:scale(.8);transform-origin:center;animation:sonner-fade-in .3s ease forwards}[data-sonner-toast][data-styled=true] [data-icon]>*{flex-shrink:0}[data-sonner-toast][data-styled=true] [data-icon] svg{margin-left:var(--toast-svg-margin-start);margin-right:var(--toast-svg-margin-end)}[data-sonner-toast][data-styled=true] [data-content]{display:flex;flex-direction:column;gap:2px}[data-sonner-toast][data-styled=true] [data-button]{border-radius:4px;padding-left:8px;padding-right:8px;height:24px;font-size:12px;color:var(--normal-bg);background:var(--normal-text);margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end);border:none;font-weight:500;cursor:pointer;outline:0;display:flex;align-items:center;flex-shrink:0;transition:opacity .4s,box-shadow .2s}[data-sonner-toast][data-styled=true] [data-button]:focus-visible{box-shadow:0 0 0 2px rgba(0,0,0,.4)}[data-sonner-toast][data-styled=true] [data-button]:first-of-type{margin-left:var(--toast-button-margin-start);margin-right:var(--toast-button-margin-end)}[data-sonner-toast][data-styled=true] [data-cancel]{color:var(--normal-text);background:rgba(0,0,0,.08)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-styled=true] [data-cancel]{background:rgba(255,255,255,.3)}[data-sonner-toast][data-styled=true] [data-close-button]{position:absolute;left:var(--toast-close-button-start);right:var(--toast-close-button-end);top:0;height:20px;width:20px;display:flex;justify-content:center;align-items:center;padding:0;color:var(--gray12);background:var(--normal-bg);border:1px solid var(--gray4);transform:var(--toast-close-button-transform);border-radius:50%;cursor:pointer;z-index:1;transition:opacity .1s,background .2s,border-color .2s}[data-sonner-toast][data-styled=true] [data-close-button]:focus-visible{box-shadow:0 4px 12px rgba(0,0,0,.1),0 0 0 2px rgba(0,0,0,.2)}[data-sonner-toast][data-styled=true] [data-disabled=true]{cursor:not-allowed}[data-sonner-toast][data-styled=true]:hover [data-close-button]:hover{background:var(--gray2);border-color:var(--gray5)}[data-sonner-toast][data-swiping=true]::before{content:'';position:absolute;left:-100%;right:-100%;height:100%;z-index:-1}[data-sonner-toast][data-y-position=top][data-swiping=true]::before{bottom:50%;transform:scaleY(3) translateY(50%)}[data-sonner-toast][data-y-position=bottom][data-swiping=true]::before{top:50%;transform:scaleY(3) translateY(-50%)}[data-sonner-toast][data-swiping=false][data-removed=true]::before{content:'';position:absolute;inset:0;transform:scaleY(2)}[data-sonner-toast][data-expanded=true]::after{content:'';position:absolute;left:0;height:calc(var(--gap) + 1px);bottom:100%;width:100%}[data-sonner-toast][data-mounted=true]{--y:translateY(0);opacity:1}[data-sonner-toast][data-expanded=false][data-front=false]{--scale:var(--toasts-before) * 0.05 + 1;--y:translateY(calc(var(--lift-amount) * var(--toasts-before))) scale(calc(-1 * var(--scale)));height:var(--front-toast-height)}[data-sonner-toast]>*{transition:opacity .4s}[data-sonner-toast][data-x-position=right]{right:0}[data-sonner-toast][data-x-position=left]{left:0}[data-sonner-toast][data-expanded=false][data-front=false][data-styled=true]>*{opacity:0}[data-sonner-toast][data-visible=false]{opacity:0;pointer-events:none}[data-sonner-toast][data-mounted=true][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset)));height:var(--initial-height)}[data-sonner-toast][data-removed=true][data-front=true][data-swipe-out=false]{--y:translateY(calc(var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=true]{--y:translateY(calc(var(--lift) * var(--offset) + var(--lift) * -100%));opacity:0}[data-sonner-toast][data-removed=true][data-front=false][data-swipe-out=false][data-expanded=false]{--y:translateY(40%);opacity:0;transition:transform .5s,opacity .2s}[data-sonner-toast][data-removed=true][data-front=false]::before{height:calc(var(--initial-height) + 20%)}[data-sonner-toast][data-swiping=true]{transform:var(--y) translateY(var(--swipe-amount-y,0)) translateX(var(--swipe-amount-x,0));transition:none}[data-sonner-toast][data-swiped=true]{user-select:none}[data-sonner-toast][data-swipe-out=true][data-y-position=bottom],[data-sonner-toast][data-swipe-out=true][data-y-position=top]{animation-duration:.2s;animation-timing-function:ease-out;animation-fill-mode:forwards}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=left]{animation-name:swipe-out-left}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=right]{animation-name:swipe-out-right}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=up]{animation-name:swipe-out-up}[data-sonner-toast][data-swipe-out=true][data-swipe-direction=down]{animation-name:swipe-out-down}@keyframes swipe-out-left{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) - 100%));opacity:0}}@keyframes swipe-out-right{from{transform:var(--y) translateX(var(--swipe-amount-x));opacity:1}to{transform:var(--y) translateX(calc(var(--swipe-amount-x) + 100%));opacity:0}}@keyframes swipe-out-up{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) - 100%));opacity:0}}@keyframes swipe-out-down{from{transform:var(--y) translateY(var(--swipe-amount-y));opacity:1}to{transform:var(--y) translateY(calc(var(--swipe-amount-y) + 100%));opacity:0}}@media (max-width:600px){[data-sonner-toaster]{position:fixed;right:var(--mobile-offset-right);left:var(--mobile-offset-left);width:100%}[data-sonner-toaster][dir=rtl]{left:calc(var(--mobile-offset-left) * -1)}[data-sonner-toaster] [data-sonner-toast]{left:0;right:0;width:calc(100% - var(--mobile-offset-left) * 2)}[data-sonner-toaster][data-x-position=left]{left:var(--mobile-offset-left)}[data-sonner-toaster][data-y-position=bottom]{bottom:var(--mobile-offset-bottom)}[data-sonner-toaster][data-y-position=top]{top:var(--mobile-offset-top)}[data-sonner-toaster][data-x-position=center]{left:var(--mobile-offset-left);right:var(--mobile-offset-right);transform:none}}[data-sonner-toaster][data-sonner-theme=light]{--normal-bg:#fff;--normal-border:var(--gray4);--normal-text:var(--gray12);--success-bg:hsl(143, 85%, 96%);--success-border:hsl(145, 92%, 87%);--success-text:hsl(140, 100%, 27%);--info-bg:hsl(208, 100%, 97%);--info-border:hsl(221, 91%, 93%);--info-text:hsl(210, 92%, 45%);--warning-bg:hsl(49, 100%, 97%);--warning-border:hsl(49, 91%, 84%);--warning-text:hsl(31, 92%, 45%);--error-bg:hsl(359, 100%, 97%);--error-border:hsl(359, 100%, 94%);--error-text:hsl(360, 100%, 45%)}[data-sonner-toaster][data-sonner-theme=light] [data-sonner-toast][data-invert=true]{--normal-bg:#000;--normal-border:hsl(0, 0%, 20%);--normal-text:var(--gray1)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast][data-invert=true]{--normal-bg:#fff;--normal-border:var(--gray3);--normal-text:var(--gray12)}[data-sonner-toaster][data-sonner-theme=dark]{--normal-bg:#000;--normal-bg-hover:hsl(0, 0%, 12%);--normal-border:hsl(0, 0%, 20%);--normal-border-hover:hsl(0, 0%, 25%);--normal-text:var(--gray1);--success-bg:hsl(150, 100%, 6%);--success-border:hsl(147, 100%, 12%);--success-text:hsl(150, 86%, 65%);--info-bg:hsl(215, 100%, 6%);--info-border:hsl(223, 43%, 17%);--info-text:hsl(216, 87%, 65%);--warning-bg:hsl(64, 100%, 6%);--warning-border:hsl(60, 100%, 9%);--warning-text:hsl(46, 87%, 65%);--error-bg:hsl(358, 76%, 10%);--error-border:hsl(357, 89%, 16%);--error-text:hsl(358, 100%, 81%)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]{background:var(--normal-bg);border-color:var(--normal-border);color:var(--normal-text)}[data-sonner-toaster][data-sonner-theme=dark] [data-sonner-toast] [data-close-button]:hover{background:var(--normal-bg-hover);border-color:var(--normal-border-hover)}[data-rich-colors=true][data-sonner-toast][data-type=success]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=success] [data-close-button]{background:var(--success-bg);border-color:var(--success-border);color:var(--success-text)}[data-rich-colors=true][data-sonner-toast][data-type=info]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=info] [data-close-button]{background:var(--info-bg);border-color:var(--info-border);color:var(--info-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=warning] [data-close-button]{background:var(--warning-bg);border-color:var(--warning-border);color:var(--warning-text)}[data-rich-colors=true][data-sonner-toast][data-type=error]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}[data-rich-colors=true][data-sonner-toast][data-type=error] [data-close-button]{background:var(--error-bg);border-color:var(--error-border);color:var(--error-text)}.sonner-loading-wrapper{--size:16px;height:var(--size);width:var(--size);position:absolute;inset:0;z-index:10}.sonner-loading-wrapper[data-visible=false]{transform-origin:center;animation:sonner-fade-out .2s ease forwards}.sonner-spinner{position:relative;top:50%;left:50%;height:var(--size);width:var(--size)}.sonner-loading-bar{animation:sonner-spin 1.2s linear infinite;background:var(--gray11);border-radius:6px;height:8%;left:-10%;position:absolute;top:-3.9%;width:24%}.sonner-loading-bar:first-child{animation-delay:-1.2s;transform:rotate(.0001deg) translate(146%)}.sonner-loading-bar:nth-child(2){animation-delay:-1.1s;transform:rotate(30deg) translate(146%)}.sonner-loading-bar:nth-child(3){animation-delay:-1s;transform:rotate(60deg) translate(146%)}.sonner-loading-bar:nth-child(4){animation-delay:-.9s;transform:rotate(90deg) translate(146%)}.sonner-loading-bar:nth-child(5){animation-delay:-.8s;transform:rotate(120deg) translate(146%)}.sonner-loading-bar:nth-child(6){animation-delay:-.7s;transform:rotate(150deg) translate(146%)}.sonner-loading-bar:nth-child(7){animation-delay:-.6s;transform:rotate(180deg) translate(146%)}.sonner-loading-bar:nth-child(8){animation-delay:-.5s;transform:rotate(210deg) translate(146%)}.sonner-loading-bar:nth-child(9){animation-delay:-.4s;transform:rotate(240deg) translate(146%)}.sonner-loading-bar:nth-child(10){animation-delay:-.3s;transform:rotate(270deg) translate(146%)}.sonner-loading-bar:nth-child(11){animation-delay:-.2s;transform:rotate(300deg) translate(146%)}.sonner-loading-bar:nth-child(12){animation-delay:-.1s;transform:rotate(330deg) translate(146%)}@keyframes sonner-fade-in{0%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}@keyframes sonner-fade-out{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(.8)}}@keyframes sonner-spin{0%{opacity:1}100%{opacity:.15}}@media (prefers-reduced-motion){.sonner-loading-bar,[data-sonner-toast],[data-sonner-toast]>*{transition:none!important;animation:none!important}}.sonner-loader{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transform-origin:center;transition:opacity .2s,transform .2s}.sonner-loader[data-visible=false]{opacity:0;transform:scale(.8) translate(-50%,-50%)}");const Nb=3,vb=14;function Sb(...e){return e.filter(Boolean).join(" ")}const Tb=e=>{var n,t,i,a,o,r,s,u,l;const{invert:c,toast:d,unstyled:g,interacting:h,setHeights:p,visibleToasts:m,heights:y,index:f,toasts:M,expanded:j,removeToast:b,defaultRichColors:w,closeButton:x,style:L,cancelButtonStyle:N,actionButtonStyle:v,className:S="",descriptionClassName:T="",duration:D,position:k,gap:C,expandByDefault:E,classNames:z,icons:I,closeButtonAriaLabel:A="Close toast"}=e,[Y,O]=ne.useState(null),[Q,Z]=ne.useState(null),[_,B]=ne.useState(!1),[F,X]=ne.useState(!1),[U,H]=ne.useState(!1),[J,P]=ne.useState(!1),[G,R]=ne.useState(!1),[W,K]=ne.useState(0),[V,$]=ne.useState(0),q=ne.useRef(d.duration||D||4e3),ee=ne.useRef(null),te=ne.useRef(null),ie=0===f,ae=f+1<=m,oe=d.type,re=!1!==d.dismissible,se=d.className||"",ue=d.descriptionClassName||"",le=ne.useMemo(()=>y.findIndex(e=>e.toastId===d.id)||0,[y,d.id]),ce=ne.useMemo(()=>{var e;return null!=(e=d.closeButton)?e:x},[d.closeButton,x]),de=ne.useMemo(()=>d.duration||D||4e3,[d.duration,D]),ge=ne.useRef(0),he=ne.useRef(0),pe=ne.useRef(0),me=ne.useRef(null),[ye,fe]=k.split("-"),Me=ne.useMemo(()=>y.reduce((e,n,t)=>t>=le?e:e+n.height,0),[y,le]),je=(()=>{const[e,n]=ne.useState(document.hidden);return ne.useEffect(()=>{const e=()=>{n(document.hidden)};return document.addEventListener("visibilitychange",e),()=>window.removeEventListener("visibilitychange",e)},[]),e})(),be=d.invert||c,we="loading"===oe;he.current=ne.useMemo(()=>le*C+Me,[le,Me]),ne.useEffect(()=>{q.current=de},[de]),ne.useEffect(()=>{B(!0)},[]),ne.useEffect(()=>{const e=te.current;if(e){const n=e.getBoundingClientRect().height;return $(n),p(e=>[{toastId:d.id,height:n,position:d.position},...e]),()=>p(e=>e.filter(e=>e.toastId!==d.id))}},[p,d.id]),ne.useLayoutEffect(()=>{if(!_)return;const e=te.current,n=e.style.height;e.style.height="auto";const t=e.getBoundingClientRect().height;e.style.height=n,$(t),p(e=>e.find(e=>e.toastId===d.id)?e.map(e=>e.toastId===d.id?{...e,height:t}:e):[{toastId:d.id,height:t,position:d.position},...e])},[_,d.title,d.description,p,d.id,d.jsx,d.action,d.cancel]);const xe=ne.useCallback(()=>{X(!0),K(he.current),p(e=>e.filter(e=>e.toastId!==d.id)),setTimeout(()=>{b(d)},200)},[d,b,p,he]);ne.useEffect(()=>{if(d.promise&&"loading"===oe||d.duration===1/0||"loading"===d.type)return;let e;return j||h||je?(()=>{if(pe.current<ge.current){const e=(new Date).getTime()-ge.current;q.current=q.current-e}pe.current=(new Date).getTime()})():q.current!==1/0&&(ge.current=(new Date).getTime(),e=setTimeout(()=>{null==d.onAutoClose||d.onAutoClose.call(d,d),xe()},q.current)),()=>clearTimeout(e)},[j,h,d,oe,je,xe]),ne.useEffect(()=>{d.delete&&(xe(),null==d.onDismiss||d.onDismiss.call(d,d))},[xe,d.delete]);const Le=d.icon||(null==I?void 0:I[oe])||(e=>{switch(e){case"success":return hb;case"info":return mb;case"warning":return pb;case"error":return yb;default:return null}})(oe);var Ne,ve;return ne.createElement("li",{tabIndex:0,ref:te,className:Sb(S,se,null==z?void 0:z.toast,null==d||null==(n=d.classNames)?void 0:n.toast,null==z?void 0:z.default,null==z?void 0:z[oe],null==d||null==(t=d.classNames)?void 0:t[oe]),"data-sonner-toast":"","data-rich-colors":null!=(Ne=d.richColors)?Ne:w,"data-styled":!Boolean(d.jsx||d.unstyled||g),"data-mounted":_,"data-promise":Boolean(d.promise),"data-swiped":G,"data-removed":F,"data-visible":ae,"data-y-position":ye,"data-x-position":fe,"data-index":f,"data-front":ie,"data-swiping":U,"data-dismissible":re,"data-type":oe,"data-invert":be,"data-swipe-out":J,"data-swipe-direction":Q,"data-expanded":Boolean(j||E&&_),"data-testid":d.testId,style:{"--index":f,"--toasts-before":f,"--z-index":M.length-f,"--offset":`${F?W:he.current}px`,"--initial-height":E?"auto":`${V}px`,...L,...d.style},onDragEnd:()=>{H(!1),O(null),me.current=null},onPointerDown:e=>{2!==e.button&&!we&&re&&(ee.current=new Date,K(he.current),e.target.setPointerCapture(e.pointerId),"BUTTON"!==e.target.tagName&&(H(!0),me.current={x:e.clientX,y:e.clientY}))},onPointerUp:()=>{var e,n,t;if(J||!re)return;me.current=null;const i=Number((null==(e=te.current)?void 0:e.style.getPropertyValue("--swipe-amount-x").replace("px",""))||0),a=Number((null==(n=te.current)?void 0:n.style.getPropertyValue("--swipe-amount-y").replace("px",""))||0),o=(new Date).getTime()-(null==(t=ee.current)?void 0:t.getTime()),r="x"===Y?i:a,s=Math.abs(r)/o;if(Math.abs(r)>=45||s>.11)return K(he.current),null==d.onDismiss||d.onDismiss.call(d,d),Z("x"===Y?i>0?"right":"left":a>0?"down":"up"),xe(),void P(!0);var u,l;null==(u=te.current)||u.style.setProperty("--swipe-amount-x","0px"),null==(l=te.current)||l.style.setProperty("--swipe-amount-y","0px"),R(!1),H(!1),O(null)},onPointerMove:n=>{var t,i,a;if(!me.current||!re)return;if((null==(t=window.getSelection())?void 0:t.toString().length)>0)return;const o=n.clientY-me.current.y,r=n.clientX-me.current.x;var s;const u=null!=(s=e.swipeDirections)?s:function(e){const[n,t]=e.split("-"),i=[];return n&&i.push(n),t&&i.push(t),i}(k);!Y&&(Math.abs(r)>1||Math.abs(o)>1)&&O(Math.abs(r)>Math.abs(o)?"x":"y");let l={x:0,y:0};const c=e=>1/(1.5+Math.abs(e)/20);if("y"===Y){if(u.includes("top")||u.includes("bottom"))if(u.includes("top")&&o<0||u.includes("bottom")&&o>0)l.y=o;else{const e=o*c(o);l.y=Math.abs(e)<Math.abs(o)?e:o}}else if("x"===Y&&(u.includes("left")||u.includes("right")))if(u.includes("left")&&r<0||u.includes("right")&&r>0)l.x=r;else{const e=r*c(r);l.x=Math.abs(e)<Math.abs(r)?e:r}(Math.abs(l.x)>0||Math.abs(l.y)>0)&&R(!0),null==(i=te.current)||i.style.setProperty("--swipe-amount-x",`${l.x}px`),null==(a=te.current)||a.style.setProperty("--swipe-amount-y",`${l.y}px`)}},ce&&!d.jsx&&"loading"!==oe?ne.createElement("button",{"aria-label":A,"data-disabled":we,"data-close-button":!0,onClick:we||!re?()=>{}:()=>{xe(),null==d.onDismiss||d.onDismiss.call(d,d)},className:Sb(null==z?void 0:z.closeButton,null==d||null==(i=d.classNames)?void 0:i.closeButton)},null!=(ve=null==I?void 0:I.close)?ve:fb):null,(oe||d.icon||d.promise)&&null!==d.icon&&(null!==(null==I?void 0:I[oe])||d.icon)?ne.createElement("div",{"data-icon":"",className:Sb(null==z?void 0:z.icon,null==d||null==(a=d.classNames)?void 0:a.icon)},d.promise||"loading"===d.type&&!d.icon?d.icon||function(){var e,n;return(null==I?void 0:I.loading)?ne.createElement("div",{className:Sb(null==z?void 0:z.loader,null==d||null==(n=d.classNames)?void 0:n.loader,"sonner-loader"),"data-visible":"loading"===oe},I.loading):ne.createElement(gb,{className:Sb(null==z?void 0:z.loader,null==d||null==(e=d.classNames)?void 0:e.loader),visible:"loading"===oe})}():null,"loading"!==d.type?Le:null):null,ne.createElement("div",{"data-content":"",className:Sb(null==z?void 0:z.content,null==d||null==(o=d.classNames)?void 0:o.content)},ne.createElement("div",{"data-title":"",className:Sb(null==z?void 0:z.title,null==d||null==(r=d.classNames)?void 0:r.title)},d.jsx?d.jsx:"function"==typeof d.title?d.title():d.title),d.description?ne.createElement("div",{"data-description":"",className:Sb(T,ue,null==z?void 0:z.description,null==d||null==(s=d.classNames)?void 0:s.description)},"function"==typeof d.description?d.description():d.description):null),ne.isValidElement(d.cancel)?d.cancel:d.cancel&&Lb(d.cancel)?ne.createElement("button",{"data-button":!0,"data-cancel":!0,style:d.cancelButtonStyle||N,onClick:e=>{Lb(d.cancel)&&re&&(null==d.cancel.onClick||d.cancel.onClick.call(d.cancel,e),xe())},className:Sb(null==z?void 0:z.cancelButton,null==d||null==(u=d.classNames)?void 0:u.cancelButton)},d.cancel.label):null,ne.isValidElement(d.action)?d.action:d.action&&Lb(d.action)?ne.createElement("button",{"data-button":!0,"data-action":!0,style:d.actionButtonStyle||v,onClick:e=>{Lb(d.action)&&(null==d.action.onClick||d.action.onClick.call(d.action,e),e.defaultPrevented||xe())},className:Sb(null==z?void 0:z.actionButton,null==d||null==(l=d.classNames)?void 0:l.actionButton)},d.action.label):null)};function Db(){if("undefined"==typeof window)return"ltr";if("undefined"==typeof document)return"ltr";const e=document.documentElement.getAttribute("dir");return"auto"!==e&&e?e:window.getComputedStyle(document.documentElement).direction}function kb(e,n){const t={};return[e,n].forEach((e,n)=>{const i=1===n,a=i?"--mobile-offset":"--offset",o=i?"16px":"24px";function r(e){["top","right","bottom","left"].forEach(n=>{t[`${a}-${n}`]="number"==typeof e?`${e}px`:e})}"number"==typeof e||"string"==typeof e?r(e):"object"==typeof e?["top","right","bottom","left"].forEach(n=>{void 0===e[n]?t[`${a}-${n}`]=o:t[`${a}-${n}`]="number"==typeof e[n]?`${e[n]}px`:e[n]}):r(o)}),t}const Cb=ne.forwardRef(function(e,n){const{id:t,invert:i,position:a="bottom-right",hotkey:o=["altKey","KeyT"],expand:r,closeButton:s,className:u,offset:l,mobileOffset:c,theme:d="light",richColors:g,duration:h,style:p,visibleToasts:m=Nb,toastOptions:y,dir:f=Db(),gap:M=vb,icons:j,containerAriaLabel:b="Notifications"}=e,[w,x]=ne.useState([]),L=ne.useMemo(()=>t?w.filter(e=>e.toasterId===t):w.filter(e=>!e.toasterId),[w,t]),N=ne.useMemo(()=>Array.from(new Set([a].concat(L.filter(e=>e.position).map(e=>e.position)))),[L,a]),[v,S]=ne.useState([]),[T,D]=ne.useState(!1),[k,C]=ne.useState(!1),[E,z]=ne.useState("system"!==d?d:"undefined"!=typeof window&&window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light"),I=ne.useRef(null),A=o.join("+").replace(/Key/g,"").replace(/Digit/g,""),Y=ne.useRef(null),O=ne.useRef(!1),Q=ne.useCallback(e=>{x(n=>{var t;return(null==(t=n.find(n=>n.id===e.id))?void 0:t.delete)||jb.dismiss(e.id),n.filter(({id:n})=>n!==e.id)})},[]);return ne.useEffect(()=>jb.subscribe(e=>{e.dismiss?requestAnimationFrame(()=>{x(n=>n.map(n=>n.id===e.id?{...n,delete:!0}:n))}):setTimeout(()=>{jd.flushSync(()=>{x(n=>{const t=n.findIndex(n=>n.id===e.id);return-1!==t?[...n.slice(0,t),{...n[t],...e},...n.slice(t+1)]:[e,...n]})})})}),[w]),ne.useEffect(()=>{if("system"!==d)return void z(d);if("system"===d&&(window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?z("dark"):z("light")),"undefined"==typeof window)return;const e=window.matchMedia("(prefers-color-scheme: dark)");try{e.addEventListener("change",({matches:e})=>{z(e?"dark":"light")})}catch(n){e.addListener(({matches:e})=>{try{z(e?"dark":"light")}catch(e){console.error(e)}})}},[d]),ne.useEffect(()=>{w.length<=1&&D(!1)},[w]),ne.useEffect(()=>{const e=e=>{var n;var t;o.every(n=>e[n]||e.code===n)&&(D(!0),null==(t=I.current)||t.focus());"Escape"!==e.code||document.activeElement!==I.current&&!(null==(n=I.current)?void 0:n.contains(document.activeElement))||D(!1)};return document.addEventListener("keydown",e),()=>document.removeEventListener("keydown",e)},[o]),ne.useEffect(()=>{if(I.current)return()=>{Y.current&&(Y.current.focus({preventScroll:!0}),Y.current=null,O.current=!1)}},[I.current]),ne.createElement("section",{ref:n,"aria-label":`${b} ${A}`,tabIndex:-1,"aria-live":"polite","aria-relevant":"additions text","aria-atomic":"false",suppressHydrationWarning:!0},N.map((n,t)=>{var a;const[o,d]=n.split("-");return L.length?ne.createElement("ol",{key:n,dir:"auto"===f?Db():f,tabIndex:-1,ref:I,className:u,"data-sonner-toaster":!0,"data-sonner-theme":E,"data-y-position":o,"data-x-position":d,style:{"--front-toast-height":`${(null==(a=v[0])?void 0:a.height)||0}px`,"--width":"356px","--gap":`${M}px`,...p,...kb(l,c)},onBlur:e=>{O.current&&!e.currentTarget.contains(e.relatedTarget)&&(O.current=!1,Y.current&&(Y.current.focus({preventScroll:!0}),Y.current=null))},onFocus:e=>{e.target instanceof HTMLElement&&"false"===e.target.dataset.dismissible||O.current||(O.current=!0,Y.current=e.relatedTarget)},onMouseEnter:()=>D(!0),onMouseMove:()=>D(!0),onMouseLeave:()=>{k||D(!1)},onDragEnd:()=>D(!1),onPointerDown:e=>{e.target instanceof HTMLElement&&"false"===e.target.dataset.dismissible||C(!0)},onPointerUp:()=>C(!1)},L.filter(e=>!e.position&&0===t||e.position===n).map((t,a)=>{var o,u;return ne.createElement(Tb,{key:t.id,icons:j,index:a,toast:t,defaultRichColors:g,duration:null!=(o=null==y?void 0:y.duration)?o:h,className:null==y?void 0:y.className,descriptionClassName:null==y?void 0:y.descriptionClassName,invert:i,visibleToasts:m,closeButton:null!=(u=null==y?void 0:y.closeButton)?u:s,interacting:k,position:n,style:null==y?void 0:y.style,unstyled:null==y?void 0:y.unstyled,classNames:null==y?void 0:y.classNames,cancelButtonStyle:null==y?void 0:y.cancelButtonStyle,actionButtonStyle:null==y?void 0:y.actionButtonStyle,closeButtonAriaLabel:null==y?void 0:y.closeButtonAriaLabel,removeToast:Q,toasts:L.filter(e=>e.position==t.position),heights:v.filter(e=>e.position==t.position),setHeights:S,expandByDefault:r,gap:M,expanded:T,swipeDirections:e.swipeDirections})})):null}))}),Eb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({enableBackground:"new 0 0 24 24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-arrow-corner-right-up",width:"1em",height:"1em","data-icon":"icon-llm-arrow-corner-right-up","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{clipRule:"evenodd",d:"m23.6 8.7-6.2-6.2-1.9 1.9 4 4h-7.5c-3.2 0-6.2 1.3-8.4 3.5s-3.5 5.3-3.5 8.4v1.3h2.7v-1.3c0-2.5 1-4.8 2.7-6.6 1.7-1.7 4.1-2.7 6.6-2.7h7.4l-4 4 1.9 1.9 6.2-6.2c.5-.7.5-1.5 0-2z",fill:"currentColor",fillRule:"evenodd"})})));Eb.displayName="IconLlmArrowCornerRightUp";const zb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({enableBackground:"new 0 0 24 24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-arrow-left",width:"1em",height:"1em","data-icon":"icon-llm-arrow-left","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{clipRule:"evenodd",d:"m2.6 11.2 8.4-8.4-1-1-9.8 9.8c-.3.3-.3.7 0 1.1l9.8 9.8 1-1.1-8.4-8.5h21.4v-1.5h-21.4z",fill:"currentColor",fillRule:"evenodd"})})));zb.displayName="IconLlmArrowLeft";const Ib=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({enableBackground:"new 0 0 24 24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-arrow-right",width:"1em",height:"1em","data-icon":"icon-llm-arrow-right","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{clipRule:"evenodd",d:"m23.7 11.3-9.7-9.7-1.4 1.4 8 8h-20.6v2h20.6l-8 8 1.4 1.4 9.7-9.7c.4-.4.4-1-0-1.4z",fill:"currentColor",fillRule:"evenodd"})})));Ib.displayName="IconLlmArrowRight";const Ab=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",className:"icon-llm-arrow-up","data-icon":"icon-llm-arrow-up","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M12 20.25V3.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M5.25 10.5L12 3.75L18.75 10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]})));Ab.displayName="IconLlmArrowUp";const Yb=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",className:"icon-llm-aside","data-icon":"icon-llm-aside","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M8.25 4.5V19.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M20.25 4.5H3.75C3.33579 4.5 3 4.83579 3 5.25V18.75C3 19.1642 3.33579 19.5 3.75 19.5H20.25C20.6642 19.5 21 19.1642 21 18.75V5.25C21 4.83579 20.6642 4.5 20.25 4.5Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]})));Yb.displayName="IconLlmAside";const Ob=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",className:"icon-llm-back","data-icon":"icon-llm-back","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M7.5 12.75L3 8.25L7.5 3.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M7.5 18.75H15.75C17.1424 18.75 18.4777 18.1969 19.4623 17.2123C20.4469 16.2277 21 14.8924 21 13.5C21 12.1076 20.4469 10.7723 19.4623 9.78769C18.4777 8.80312 17.1424 8.25 15.75 8.25H3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]})));Ob.displayName="IconLlmBack";const Qb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-llm-check","data-icon":"icon-llm-check","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{d:"M20 6 9 17l-5-5"})})));Qb.displayName="IconLlmCheck";const Zb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-chevron-right-circle",width:"1em",height:"1em","data-icon":"icon-llm-chevron-right-circle","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{d:"M23.5,9.7c-0.5-2.3-1.6-4.4-3.2-6c-1.6-1.6-3.7-2.8-6-3.2S9.7,0.3,7.5,1.1s-4,2.4-5.3,4.3c-1.3,1.9-2,4.2-2,6.5 c0,3.1,1.2,6.1,3.4,8.3c2.2,2.2,5.2,3.4,8.3,3.4c2.3,0,4.6-0.7,6.5-2c1.9-1.3,3.4-3.1,4.3-5.3C23.7,14.3,24,12,23.5,9.7z M21.4,13.9 c-0.4,1.9-1.3,3.6-2.6,4.9c-1.3,1.3-3.1,2.3-4.9,2.6c-1.9,0.4-3.8,0.2-5.6-0.5c-1.8-0.7-3.3-2-4.3-3.5C3,15.8,2.4,13.9,2.4,12 c0-2.5,1-5,2.8-6.8C7,3.4,9.5,2.4,12,2.4c1.9,0,3.8,0.6,5.3,1.6c1.6,1.1,2.8,2.6,3.5,4.3C21.6,10.1,21.8,12,21.4,13.9z M10.9,7.4 l4.8,4.6l-4.8,4.6l-1.5-1.5l3.3-3.1L9.4,8.9L10.9,7.4z"})})));Zb.displayName="IconLlmChevronRightCircle";const _b=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",className:"icon-llm-generate","data-icon":"icon-llm-generate","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M20.25 12V16.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M18 14.25H22.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M7.5 3.75V8.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M5.25 6H9.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M15.75 17.25V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M14.25 18.75H17.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M13.5 7.5L16.5 10.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M17.0301 3.96951L3.96942 17.0302C3.67652 17.3231 3.67652 17.798 3.96942 18.0909L5.90844 20.0299C6.20133 20.3228 6.6762 20.3228 6.9691 20.0299L20.0298 6.96919C20.3227 6.6763 20.3227 6.20142 20.0298 5.90853L18.0908 3.96951C17.7979 3.67662 17.323 3.67662 17.0301 3.96951Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]})));_b.displayName="IconLlmGenerate";const Bb=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",className:"icon-llm-idea","data-icon":"icon-llm-idea","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M8.25 21.75H15.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M7.37812 15.6563C6.48653 14.9598 5.76437 14.0703 5.26588 13.0546C4.76739 12.039 4.50554 10.9236 4.49999 9.79219C4.47749 5.72719 7.75499 2.34375 11.8191 2.25C13.3941 2.21185 14.9411 2.67066 16.2406 3.56132C17.5402 4.45198 18.5263 5.72927 19.059 7.21196C19.5916 8.69464 19.6439 10.3074 19.2083 11.8215C18.7727 13.3355 17.8714 14.674 16.6322 15.6469C16.3589 15.8588 16.1374 16.1302 15.9845 16.4404C15.8317 16.7507 15.7515 17.0917 15.75 17.4375V18C15.75 18.1989 15.671 18.3897 15.5303 18.5303C15.3897 18.671 15.1989 18.75 15 18.75H8.99999C8.80108 18.75 8.61032 18.671 8.46966 18.5303C8.32901 18.3897 8.24999 18.1989 8.24999 18V17.4375C8.24963 17.0939 8.17092 16.7548 8.01984 16.4462C7.86876 16.1375 7.64929 15.8673 7.37812 15.6563Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M12.75 5.25C14.625 5.56594 16.1822 7.125 16.5 9",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]})));Bb.displayName="IconLlmIdea";const Fb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({enableBackground:"new 0 0 24 24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-info-circle",width:"1em",height:"1em","data-icon":"icon-llm-info-circle","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{clipRule:"evenodd",d:"m12 2.4c-5.3 0-9.6 4.3-9.6 9.6s4.3 9.6 9.6 9.6 9.6-4.3 9.6-9.6-4.3-9.6-9.6-9.6zm-12 9.6c0-6.6 5.4-12 12-12s12 5.4 12 12-5.4 12-12 12-12-5.4-12-12zm11.7-3c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5-1.5.7-1.5 1.5.7 1.5 1.5 1.5zm-.6 1.4c-.7 0-1.2.5-1.2 1.2 0 .6.4 1 .9 1.2v3.8c0 .6.2 1.1.6 1.5s.9.6 1.5.6c.7 0 1.2-.5 1.2-1.2 0-.6-.4-1-.9-1.2v-3.8c0-.6-.2-1.1-.6-1.5s-.9-.6-1.5-.6z",fill:"currentColor",fillRule:"evenodd"})})));Fb.displayName="IconLlmInfoCircle";const Xb=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-llm-maximize","data-icon":"icon-llm-maximize","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("polyline",{points:"15 3 21 3 21 9"}),ce.jsx("polyline",{points:"9 21 3 21 3 15"}),ce.jsx("line",{x1:"21",x2:"14",y1:"3",y2:"10"}),ce.jsx("line",{x1:"3",x2:"10",y1:"21",y2:"14"})]})));Xb.displayName="IconLlmMaximize";const Ub=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({enableBackground:"new 0 0 24 24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-microphone",width:"1em",height:"1em","data-icon":"icon-llm-microphone","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{clipRule:"evenodd",d:"m12 1.7c-1.9 0-3.4 1.5-3.4 3.4v6c0 1.9 1.5 3.4 3.4 3.4s3.4-1.5 3.4-3.4v-6c0-1.9-1.5-3.4-3.4-3.4zm-5.1 3.4c0-2.8 2.3-5.1 5.1-5.1s5.1 2.3 5.1 5.1v6c0 2.8-2.3 5.1-5.1 5.1s-5.1-2.3-5.1-5.1zm6 15.4v3.5h-1.7v-3.5c-2.2-.2-4.2-1.2-5.8-2.7-1.8-1.8-2.8-4.2-2.8-6.7v-.9h1.7v.9c0 2 .8 4 2.3 5.5 1.4 1.4 3.4 2.3 5.4 2.3s4-.8 5.5-2.3c1.4-1.4 2.3-3.4 2.3-5.5v-.9h1.7v.9c0 2.5-1 4.9-2.8 6.7-1.6 1.6-3.7 2.5-5.8 2.7z",fill:"currentColor",fillRule:"evenodd"})})));Ub.displayName="IconLlmMicrophone";const Hb=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-llm-minimize","data-icon":"icon-llm-minimize","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("polyline",{points:"4 14 10 14 10 20"}),ce.jsx("polyline",{points:"20 10 14 10 14 4"}),ce.jsx("line",{x1:"14",x2:"21",y1:"10",y2:"3"}),ce.jsx("line",{x1:"3",x2:"10",y1:"21",y2:"14"})]})));Hb.displayName="IconLlmMinimize";const Jb=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-options","data-icon":"icon-llm-options","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M9.75 9.75C10.9926 9.75 12 8.74264 12 7.5C12 6.25736 10.9926 5.25 9.75 5.25C8.50736 5.25 7.5 6.25736 7.5 7.5C7.5 8.74264 8.50736 9.75 9.75 9.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M15.75 18.75C16.9926 18.75 18 17.7426 18 16.5C18 15.2574 16.9926 14.25 15.75 14.25C14.5074 14.25 13.5 15.2574 13.5 16.5C13.5 17.7426 14.5074 18.75 15.75 18.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M12 7.5H20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M3.75 7.5H7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M18 16.5H20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M3.75 16.5H13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]})));Jb.displayName="IconLlmOptions";const Pb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-llm-paperclip","data-icon":"icon-llm-paperclip","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{d:"m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48"})})));Pb.displayName="IconLlmPaperclip";const Gb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({enableBackground:"new 0 0 24 24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-pin",width:"1em",height:"1em","data-icon":"icon-llm-pin","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{clipRule:"evenodd",d:"m6.5 4c1.5-1.5 3.5-2.3 5.5-2.3s4 .8 5.5 2.3c1.4 1.4 2.3 3.4 2.3 5.5 0 3.5-2 6.8-4.1 9.2-1 1.2-2.1 2.2-2.9 2.8-.3.3-.6.5-.8.6-.2-.2-.5-.4-.8-.6-.8-.7-1.8-1.6-2.9-2.8-2-2.5-4-5.7-4-9.3 0-2 .8-4 2.2-5.4zm5.5 20h-8.6v-1.7h6.2c-.7-.7-1.6-1.5-2.5-2.5-2.2-2.5-4.5-6.1-4.5-10.3 0-2.5 1-4.9 2.8-6.7 1.7-1.8 4.1-2.8 6.6-2.8s4.9 1 6.7 2.8 2.8 4.2 2.8 6.7c0 4.2-2.3 7.8-4.5 10.3-.9 1-1.8 1.9-2.5 2.5h6.2v1.7zm0-17.1c-1.4 0-2.6 1.2-2.6 2.6s1.2 2.6 2.6 2.6 2.6-1.2 2.6-2.6c0-1.5-1.2-2.6-2.6-2.6zm-4.3 2.5c0-2.4 1.9-4.3 4.3-4.3s4.3 1.9 4.3 4.3-1.9 4.3-4.3 4.3-4.3-1.9-4.3-4.3z",fill:"currentColor",fillRule:"evenodd"})})));Gb.displayName="IconLlmPin";const Rb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({viewBox:"0 0 27 27",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-play",width:"1em",height:"1em","data-icon":"icon-llm-play","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{fill:"currentColor",d:"M25.5,11.3c0.4,0.2,0.7,0.6,0.9,0.9c0.2,0.4,0.3,0.8,0.3,1.3s-0.1,0.9-0.3,1.3c-0.2,0.4-0.6,0.7-0.9,0.9L7.5,26 c-0.4,0.2-0.8,0.3-1.3,0.3S5.3,26.2,4.9,26c-0.4-0.2-0.7-0.6-0.9-0.9c-0.2-0.4-0.3-0.8-0.3-1.3V3.2c0-0.5,0.1-0.9,0.3-1.3 c0.2-0.4,0.5-0.7,0.9-1c0.4-0.2,0.9-0.3,1.3-0.3c0.5,0,0.9,0.1,1.3,0.3L25.5,11.3z"})})));Rb.displayName="IconLlmPlay";const Wb=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-llm-refresh","data-icon":"icon-llm-refresh","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}),ce.jsx("path",{d:"M3 3v5h5"}),ce.jsx("path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}),ce.jsx("path",{d:"M16 16h5v5"})]})));Wb.displayName="IconLlmRefresh";const Kb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({enableBackground:"new 0 0 24 24",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-send",width:"1em",height:"1em","data-icon":"icon-llm-send","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{clipRule:"evenodd",d:"m3.8.2c-.3-.2-.6-.2-1-.2-.3 0-.6.2-.9.4s-.5.5-.6.9c-.1.3-.1.7 0 1l3.4 9.7-3.3 9.7c-.1.3-.1.7 0 1s.3.6.5.9c.3.2.6.4.9.4s.7 0 1-.2l18-10.3c.3-.1.5-.4.6-.6.2-.3.2-.6.2-.9s-.1-.6-.2-.9c-.2-.3-.4-.5-.6-.6zm-.8 1.5 18 10.3-18 10.3 3.2-9.4h7.1v-1.7h-7.1z",fill:"currentColor",fillRule:"evenodd"})})));Kb.displayName="IconLlmSend";const Vb=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 256 256",className:"icon-llm-stop",width:"1em",height:"1em","data-icon":"icon-llm-stop","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{d:"M200.73,40H55.27A15.29,15.29,0,0,0,40,55.27V200.73A15.29,15.29,0,0,0,55.27,216H200.73A15.29,15.29,0,0,0,216,200.73V55.27A15.29,15.29,0,0,0,200.73,40ZM200,200H56V56H200Z",fill:"currentColor"})})));Vb.displayName="IconLlmStop";const $b=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({width:"1em",height:"1em",viewBox:"0 0 18 18",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-timetable","data-icon":"icon-llm-timetable","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{fill:"currentColor",d:"M9 0.875C7.39303 0.875 5.82214 1.35152 4.486 2.24431C3.14985 3.1371 2.10844 4.40605 1.49348 5.8907C0.87852 7.37535 0.717618 9.00901 1.03112 10.5851C1.34463 12.1612 2.11846 13.6089 3.25476 14.7452C4.39106 15.8815 5.8388 16.6554 7.4149 16.9689C8.99099 17.2824 10.6247 17.1215 12.1093 16.5065C13.594 15.8916 14.8629 14.8502 15.7557 13.514C16.6485 12.1779 17.125 10.607 17.125 9C17.1227 6.84581 16.266 4.78051 14.7427 3.25727C13.2195 1.73403 11.1542 0.877275 9 0.875ZM9 15.875C7.64026 15.875 6.31105 15.4718 5.18046 14.7164C4.04987 13.9609 3.16868 12.8872 2.64833 11.6309C2.12798 10.3747 1.99183 8.99237 2.2571 7.65875C2.52238 6.32513 3.17716 5.10013 4.13864 4.13864C5.10013 3.17716 6.32514 2.52237 7.65876 2.2571C8.99238 1.99183 10.3747 2.12798 11.631 2.64833C12.8872 3.16868 13.9609 4.04987 14.7164 5.18045C15.4718 6.31104 15.875 7.64025 15.875 9C15.8729 10.8227 15.1479 12.5702 13.8591 13.8591C12.5702 15.1479 10.8227 15.8729 9 15.875ZM14 9C14 9.16576 13.9342 9.32473 13.8169 9.44194C13.6997 9.55915 13.5408 9.625 13.375 9.625H9C8.83424 9.625 8.67527 9.55915 8.55806 9.44194C8.44085 9.32473 8.375 9.16576 8.375 9V4.625C8.375 4.45924 8.44085 4.30027 8.55806 4.18306C8.67527 4.06585 8.83424 4 9 4C9.16576 4 9.32474 4.06585 9.44195 4.18306C9.55916 4.30027 9.625 4.45924 9.625 4.625V8.375H13.375C13.5408 8.375 13.6997 8.44085 13.8169 8.55806C13.9342 8.67527 14 8.83424 14 9Z"})})));$b.displayName="IconLlmTimetable";const qb=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",className:"icon-llm-trash","data-icon":"icon-llm-trash","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("path",{d:"M20.25 5.25H3.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M9.75 9.75V15.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M14.25 9.75V15.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M18.75 5.25V19.5C18.75 19.6989 18.671 19.8897 18.5303 20.0303C18.3897 20.171 18.1989 20.25 18 20.25H6C5.80109 20.25 5.61032 20.171 5.46967 20.0303C5.32902 19.8897 5.25 19.6989 5.25 19.5V5.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M15.75 5.25V3.75C15.75 3.35218 15.592 2.97064 15.3107 2.68934C15.0294 2.40804 14.6478 2.25 14.25 2.25H9.75C9.35218 2.25 8.97064 2.40804 8.68934 2.68934C8.40804 2.97064 8.25 3.35218 8.25 3.75V5.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]})));qb.displayName="IconLlmTrash";const ew=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"icon-llm-upload","data-icon":"icon-llm-upload","aria-hidden":"true"},e,{ref:n,children:[ce.jsxs("g",{clipPath:"url(#clip0_469_4822)",children:[ce.jsx("path",{d:"M3.75 12H20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),ce.jsx("path",{d:"M12 3.75V20.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})]}),ce.jsx("defs",{children:ce.jsx("clipPath",{id:"clip0_469_4822",children:ce.jsx("rect",{width:"24",height:"24",fill:"currentColor"})})})]})));ew.displayName="IconLlmUpload";const nw=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-llm-volume-x","data-icon":"icon-llm-volume-x","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),ce.jsx("line",{x1:"22",y1:"9",x2:"16",y2:"15"}),ce.jsx("line",{x1:"16",y1:"9",x2:"22",y2:"15"})]})));nw.displayName="IconLlmVolumeX";const tw=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-llm-volume","data-icon":"icon-llm-volume","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("polygon",{points:"11 5 6 9 2 9 2 15 6 15 11 19 11 5"}),ce.jsx("path",{d:"M15.54 8.46a5 5 0 0 1 0 7.07"}),ce.jsx("path",{d:"M19.07 4.93a10 10 0 0 1 0 14.14"})]})));tw.displayName="IconLlmVolume";const iw=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",className:"icon-llm-x","data-icon":"icon-llm-x","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{d:"M18 6L6 18M6 6L18 18",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"})})));iw.displayName="IconLlmX";const aw=ne.forwardRef((e,n)=>ce.jsx("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"currentColor",stroke:"none",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-websolute","data-icon":"icon-websolute","aria-hidden":"true"},e,{ref:n,children:ce.jsx("path",{d:"M12,0.1C5.4,0.1,0.1,5.4,0.1,12c0,6.6,5.3,11.9,11.9,11.9c6.6,0,11.9-5.3,11.9-11.9C23.9,5.4,18.6,0.1,12,0.1z M18.9,12.5\r\n\tc0,1-0.4,1.9-1.2,2.7c-0.8,0.8-1.7,1.1-2.8,1.1c-1.1,0-2.1-0.4-2.8-1.1v0l0,0c-0.8,0.8-1.7,1.1-2.8,1.1c-1.1,0-2.1-0.4-2.8-1.1\r\n\tc-0.8-0.8-1.2-1.7-1.2-2.7V8.6h2.3v3.9c0,0.4,0.2,0.8,0.5,1.1c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5\r\n\tc0.3-0.3,0.5-0.7,0.5-1.2V8.7h2.3v3.8c0,0.5,0.2,0.9,0.5,1.1c0.2,0.2,0.3,0.3,0.6,0.4c0.2,0.1,0.4,0.1,0.7,0.1c0.2,0,0.5,0,0.7-0.1\r\n\tc0.2-0.1,0.4-0.2,0.6-0.4c0.3-0.3,0.5-0.7,0.5-1.1V8.6H19L18.9,12.5z"})})));aw.displayName="IconWebsolute";const ow=ne.forwardRef((e,n)=>ce.jsxs("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"icon-x","data-icon":"icon-x","aria-hidden":"true"},e,{ref:n,children:[ce.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),ce.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]})));ow.displayName="IconX";const rw=e=>{let{threadId:n,dismissable:t=!0,imperative:i=!1,skipCustomIntro:a=!1,idleTime:o=8e3,opened:r,embedded:s,portal:u,send:l,setEmbed:c}=e;const d={opened:null!=r?r:null!=s||null!=n,dismissable:!s&&t,imperative:i,skipCustomIntro:a,embedded:s||!1,portal:Object.assign({selector:"[data-llm-result]",replace:!0},u),introed:!!a,idleTime:o,hidden:!1,fixed:!1,idle:!0,visible:!1,scrollable:!1,direction:0};let g;const h=Dd((e,n)=>{const t=t=>{const{direction:i,targetScroll:a,limit:o}=t,r=a>100,s=-1==i&&r,u=1==i&&r,l=o-a>100,c=n();c.hidden===u&&c.fixed===s&&c.direction===i&&c.scrollable===l||e(e=>({hidden:u,fixed:s,direction:i,scrollable:l}))};let i;const a=()=>{i&&clearTimeout(i),e(()=>({idle:!1}))},o=()=>{a();const{idleTime:t}=n();return setTimeout(()=>{e(()=>({idle:!0}))},t)};return Object.assign(Object.assign({},d),{actions:{initView:()=>xd(void 0,void 0,void 0,function*(){n();setTimeout(()=>{e(()=>({idle:!1})),(()=>{i=o();let e=0;window.addEventListener("scroll",()=>{const n=window.scrollY||document.documentElement.scrollTop;let t=0;n>e?t=1:n<e&&(t=-1),e=n<=0?0:n,1===t&&(i=o())}),window.addEventListener("resize",()=>{document.scrollingElement&&document.scrollingElement.scrollHeight===document.scrollingElement.offsetHeight&&(a(),e=0)})})()},2e3)}),initIntersection:e=>{(()=>{if(e)if("IntersectionObserver"in window){new IntersectionObserver((e,t)=>{e.forEach(e=>{n().actions.setVisible(e.isIntersecting),s&&c(e.target,e.isIntersecting)})},{root:document,rootMargin:"50px",threshold:[.01,.99]}).observe(e)}else{n().actions.setVisible(!0)}})()},send:(n,t,i)=>xd(void 0,void 0,void 0,function*(){yield l(n,()=>{e({skipCustomIntro:!0,opened:!0}),setTimeout(()=>{if(g){const e=Array.from(document.querySelectorAll('[data-message-role="user"]'));if(e.length>0){e.pop().scrollIntoView({behavior:"instant",block:"start",inline:"start"})}}},50)},e=>{"function"==typeof t&&t(e)},e=>{"function"==typeof i&&i(e)})}),open:()=>{o(),e(e=>({opened:!e.opened}))},isOpened:()=>{const{opened:e}=n();return e},setOpened:n=>{o(),e(e=>({opened:n}))},setIntroed:t=>{const i=n();t?i.actions.scrollerStart():i.actions.scrollerStop(),e(e=>({introed:t}))},setVisible:n=>e(e=>({visible:n})),setScrollable:n=>e(e=>({scrollable:n})),setScroller:e=>{g!==e&&(g&&g.off("scroll",t),g=e,e&&e.on("scroll",t))},scrollerStop:()=>{g&&g.stop()},scrollerStart:()=>{g&&g.start()},scrollToBottom:()=>{g&&g.scrollTo("bottom",{immediate:!0})}}})});return h},sw=ee.createContext(null);function uw(e){var{children:n}=e,t=wd(e,["children"]);const{send:i,setEmbed:a}=zI(e=>e.actions),o=ee.useRef();return o.current||(o.current=rw(Object.assign(Object.assign({},t),{send:i,setEmbed:a}))),o.current&&ce.jsx(sw.Provider,{value:o.current,children:n})}function lw(e){const n=ee.useContext(sw);if(!n)throw new Error("Missing LlmContext.Provider in the tree");return tg(n,e)}var cw=class{drawPoints(e,n){this.draw(0,e,n)}drawLines(e,n){this.draw(1,e,n)}drawLineLoop(e,n){this.draw(2,e,n)}drawLineStrip(e,n){this.draw(3,e,n)}drawTriangles(e,n){this.draw(4,e,n)}drawTriangleStrip(e,n){this.draw(5,e,n)}drawTriangleFan(e,n){this.draw(6,e,n)}};const dw=34962;var gw=class extends cw{constructor(e,n,t=e.STATIC_DRAW,i){super(),this.gl=e,this.usage=t,this.buffer=void 0!==i?i:e.createBuffer(),this.attribs=[],this.stride=0,this.byteLength=0,this.length=0,n&&this.data(n)}bind(){this.gl.bindBuffer(dw,this.buffer)}attrib(e,n,t,i=!1){return this.attribs.push({name:e,type:0|t,size:0|n,normalize:i,offset:this.stride,stride:0}),this.stride+=function(e){switch(e){case 5120:case 5121:return 1;case 5122:case 5123:return 2;case 5124:case 5125:case 5126:return 4;default:throw new Error(`unknown type ${e}`)}}(t)*n,this._computeLength(),this}data(e){const n=this.gl;n.bindBuffer(dw,this.buffer),n.bufferData(dw,e,this.usage),n.bindBuffer(dw,null),this.byteLength=void 0!==e.byteLength?e.byteLength:e,this._computeLength()}subData(e,n){const t=this.gl;t.bindBuffer(dw,this.buffer),t.bufferSubData(dw,n,e),t.bindBuffer(dw,null)}attribPointer(e){const n=this.gl;n.bindBuffer(dw,this.buffer);for(var t=0;t<this.attribs.length;t++){var i=this.attribs[t];if(void 0!==e[i.name]){var a=e[i.name]();n.enableVertexAttribArray(a),n.vertexAttribPointer(a,i.size,i.type,i.normalize,i.stride||this.stride,i.offset)}}}draw(e,n=this.length,t=0){this.gl.drawArrays(e,t,0|n)}dispose(){this.gl.deleteBuffer(this.buffer)}_computeLength(){this.stride>0&&(this.length=this.byteLength/this.stride)}};let hw=0;class pw{constructor(e,n,t,i){this.gl=e,this.program=e.createProgram(),this.vShader=e.createShader(e.VERTEX_SHADER),this.fShader=e.createShader(e.FRAGMENT_SHADER),this.dyns=[],this.ready=!1,e.attachShader(this.program,this.vShader),e.attachShader(this.program,this.fShader),this._uid=0|hw++,this._cuid=0|hw++,void 0!==n&&void 0!==t&&this.compile(n,t,i)}use(){this.ready||this._grabParameters(),this.gl.useProgram(this.program)}bind(){this.use()}compile(e,n,t){this.ready=!1,t=void 0===t?"":t+"\n";const i=this.gl;if(!bw(i,this.fShader,t+n)||!bw(i,this.vShader,t+e))return!1;if(i.linkProgram(this.program),!i.getProgramParameter(this.program,i.LINK_STATUS))return pw.debug&&mw(i.getProgramInfoLog(this.program)),!1;for(;this.dyns.length>0;)delete this[this.dyns.pop()];return this._cuid=0|hw++,!0}dispose(){null!==this.gl&&(this.gl.deleteProgram(this.program),this.gl.deleteShader(this.fShader),this.gl.deleteShader(this.vShader))}_grabParameters(){const e=this.gl,n=this.program,t={texIndex:0,ublockIndex:0},i=e.getProgramParameter(n,e.ACTIVE_UNIFORMS);for(var a=0;a<i;++a){var o=e.getActiveUniform(n,a);if(null!==o){var r=o.name,s=r.indexOf("[");s>=0&&(r=r.substring(0,s));var u=e.getUniformLocation(n,o.name);null!==u&&(this[r]=Lw(o.type,u,e,t),this.dyns.push(r))}else e.getError()}const l=e.getProgramParameter(n,e.ACTIVE_ATTRIBUTES);for(var c=0;c<l;++c){var d=e.getActiveAttrib(n,c).name,g=e.getAttribLocation(n,d);this[d]=vw(g),this.dyns.push(d)}if(function(e){return void 0!==e.fenceSync}(e)){const i=e.getProgramParameter(n,e.ACTIVE_UNIFORM_BLOCKS);for(var h=0;h<i;++h){var p=e.getActiveUniformBlockName(n,h);this[p]=Nw(h,e,t),this.dyns.push(p)}}this.ready=!0}}function mw(e){console.warn(e)}pw.debug=!1;const yw=[""," "," "," ",""];function fw(e,n){return yw[String(n+1).length]+(n+1)+": "+e}const Mw=/^ERROR:\s?(\d+):(\d+)/;function jw(e,n){const t=n.split("\n");e=e.split("\n").map(e=>{const n=Mw.exec(e);return n&&(e+="\n > "+t[parseInt(n[2])-1]),e}).join("\n"),n=function(e){return e.split("\n").map(fw).join("\n")}(n),mw(e),mw(n)}function bw(e,n,t){return e.shaderSource(n,t),e.compileShader(n),!!e.getShaderParameter(n,e.COMPILE_STATUS)||(pw.debug&&jw(e.getShaderInfoLog(n),t),!1)}const ww={};function xw(e){return"uniform"+ww[String(e)]}function Lw(e,n,t,i){switch(e){case t.FLOAT_MAT2:case t.FLOAT_MAT3:case t.FLOAT_MAT4:return function(e,n,t){const i=xw(e);return function(){if(arguments.length>0&&void 0!==arguments[0].length){var e=arguments.length>1&&!!arguments[1];t[i+"v"](n,e,arguments[0])}return n}}(e,n,t);case t.SAMPLER_2D:case t.SAMPLER_CUBE:case 35682:case 35679:case 36289:return function(e,n,t,i){const a=i.texIndex++;return function(){return 1===arguments.length&&(void 0!==arguments[0].bind?(arguments[0].bind(a),t.uniform1i(n,a)):t.uniform1i(n,arguments[0])),n}}(0,n,t,i);default:return function(e,n,t){const i=xw(e);return function(...e){return 1===e.length&&null!=e[0].length?t[i+"v"](n,e[0]):e.length>0&&t[i](n,...e),n}}(e,n,t)}}function Nw(e,n,t){const i=t.ublockIndex++;return function(){return 1===arguments.length&&(arguments[0]instanceof WebGLBuffer?(n.uniformBlockBinding(this.program,e,i),n.bindBufferBase(n.UNIFORM_BUFFER,i,arguments[0])):n.uniformBlockBinding(this.program,e,arguments[0])),e}}function vw(e){return function(){return e}}ww[String(5126)]="1f",ww[String(35664)]="2f",ww[String(35665)]="3f",ww[String(35666)]="4f",ww[String(35670)]=ww[String(5124)]=ww[String(35678)]=ww[String(35680)]=ww[String(35866)]="1i",ww[String(35671)]=ww[String(35667)]="2i",ww[String(35672)]=ww[String(35668)]="3i",ww[String(35673)]=ww[String(35669)]="4i",ww[String(35674)]="Matrix2f",ww[String(35675)]="Matrix3f",ww[String(35676)]="Matrix4f";var Sw=pw;const Tw={vertex:"attribute vec2 aPosition;\nattribute vec2 aTexCoord;\nvarying vec2 vUv;\n\nvoid main(void){\n gl_Position = vec4(aPosition, 0.0, 1.0);\n vUv = aTexCoord;\n}\n",fragment:"\n#ifdef GL_ES\nprecision mediump float;\n#endif\n\nvarying vec2 vUv;\n\nuniform int uColor1;\nuniform int uColor2;\nuniform int uColor3;\nuniform int uColor4;\nuniform float uBlobSize;\nuniform float uCellSize;\nuniform float uNoiseSize;\nuniform float uOpacity;\nuniform float uScale;\nuniform float uTime;\n\nvec2 random2(vec2 st) {\n st = vec2(dot(st, vec2(127.1, 311.7)), dot(st, vec2(269.5, 183.3)));\n return - 1.0 + 2.0 * fract(sin(st) * 43758.5453123);\n}\n\nfloat noise(vec2 st) {\n vec2 i = floor(st);\n vec2 f = fract(st);\n vec2 u = f * f * (3.0 - 2.0 * f);\n return mix(mix(dot(random2(i + vec2(0.0, 0.0)), f - vec2(0.0, 0.0)),\n dot(random2(i + vec2(1.0, 0.0)), f - vec2(1.0, 0.0)), u.x),\n mix(dot(random2(i + vec2(0.0, 1.0)), f - vec2(0.0, 1.0)),\n dot(random2(i + vec2(1.0, 1.0)), f - vec2(1.0, 1.0)), u.x), u.y) * 0.5 + 0.5;\n}\n\nfloat gaussFunction(vec2 st, vec2 p, float r) {\n return exp(-dot(st - p, st - p) / 2.0 / r / r);\n}\n\nvec3 hash32(vec2 p) {\n vec3 p3 = fract(vec3(p.xyx) * vec3(0.1031, 0.1030, 0.0973));\n p3 += dot(p3, p3.yxz + 33.33);\n return fract((p3.xxy + p3.yzz) * p3.zyx);\n}\n\nvec3 blob(vec2 p) {\n vec2 i = floor(p / uCellSize);\n vec3 c = vec3(0.0);\n for(int x = -1; x <= 1; x ++ )\n for(int y = -1; y <= 1; y ++ ) {\n vec2 v = i + vec2(x, y);\n vec3 h = hash32(v);\n float g = gaussFunction(p / uCellSize, v + h.xy, uBlobSize);\n float n = smoothstep(0.0, 1.0, noise(uNoiseSize * p / uCellSize / uBlobSize));\n c += uOpacity * g * n;\n }\n return c;\n}\n\nfloat random(vec2 st) {\n return fract(sin(dot(st.xy, vec2(12.9898, 78.233))) * 43758.5453123);\n}\n\nvec3 intToColor(int color) {\n float r = float(color / 256 / 256);\n float g = float(color / 256 - int(r * 256.0));\n float b = float(color - int(r * 256.0 * 256.0) - int(g * 256.0));\n return vec3(r / 255.0, g / 255.0, b / 255.0);\n}\n\nvoid main(void) {\n vec2 st = vUv / uScale;\n\n vec2 p1 = st + vec2(cos(uTime * 0.1), sin(uTime * 0.1));\n vec3 b1 = blob(p1);\n\n vec2 p2 = st + 3.43 + vec2(sin(uTime * 0.2), cos(uTime * 0.2));\n vec3 b2 = blob(p2);\n\n vec2 p3 = st + 5.43 + vec2(cos(uTime * 0.2), cos(uTime * 0.2));\n vec3 b3 = blob(p3);\n\n vec3 mask = (1.0 - b1 - b2 - b3);\n\n vec3 c1 = intToColor(uColor1);\n vec3 c2 = intToColor(uColor2);\n vec3 c3 = intToColor(uColor3);\n vec3 c4 = intToColor(uColor4);\n\n vec3 color = mask * c1;\n\n color += b1 * c2;\n\n color += b2 * c3;\n\n color += b3 * c4;\n\n // noise\n vec2 n = random2(st) * 0.025;\n color += n.x - n.y;\n\n gl_FragColor = vec4(color, 1.0);\n}\n"},Dw=(e,n)=>{let{color1:t,color2:i,color3:a,color4:o,blobSize:r=.3,cellSize:s=.6,noiseSize:u=.3,opacity:l=.5,scale:c=1}=n;const d=e.getContext("webgl",{preserveDrawingBuffer:!0});if(!d)throw"cannot initialize gl";const g=window.devicePixelRatio,h={width:1,height:1},p=["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].includes(navigator.platform)||0===navigator.platform.indexOf("Mac")||navigator.userAgent.includes("Mac");let m=!0,y=!0,f=!0,M=null;const j=()=>{const n=window.innerWidth,t=window.innerHeight;e.width=Math.round(n*g),e.height=Math.round(t*g),h.width=d.drawingBufferWidth,h.height=d.drawingBufferHeight,y=!0},b=new Float32Array([-1,3,0,2,-1,-1,0,0,3,-1,2,0]),w=new gw(d,b);w.attrib("aPosition",2,d.FLOAT),w.attrib("aTexCoord",2,d.FLOAT);const x=new Sw(d,Tw.vertex,Tw.fragment),L=new Map,N={uColor1:parseInt(t.replace("#",""),16),uColor2:parseInt(i.replace("#",""),16),uColor3:parseInt(a.replace("#",""),16),uColor4:parseInt(o.replace("#",""),16),uBlobSize:r,uCellSize:s,uNoiseSize:u,uOpacity:l,uScale:c},v=function(n){void 0===n&&(n=0),m&&(y?(d.viewport(0,0,h.width,h.height),d.clearColor(0,0,0,0),d.clear(d.COLOR_BUFFER_BIT),x.use(),f&&(x.uColor1(N.uColor1),x.uColor2(N.uColor2),x.uColor3(N.uColor3),x.uColor4(N.uColor4),x.uBlobSize(N.uBlobSize),x.uCellSize(N.uCellSize),x.uNoiseSize(N.uNoiseSize),x.uOpacity(N.uOpacity),x.uScale(N.uScale),f=!1),x.uTime(.001*n),w.attribPointer(x),w.drawTriangles(),L.size>0&&L.forEach(n=>{const t=n.getContext("2d");t&&t.drawImage(e,0,0,e.width,e.height,0,0,n.width,n.height)}),y=!p,M=window.requestAnimationFrame(v)):M=window.requestAnimationFrame(v))};setTimeout(()=>{j(),v()},0),window.addEventListener("resize",j);return{dispose:()=>{m=!1,M&&window.cancelAnimationFrame(M),window.removeEventListener("resize",j),x.dispose()},setUniforms:e=>{e.color1&&(N.uColor1=parseInt(e.color1.replace("#",""),16)),e.color2&&(N.uColor2=parseInt(e.color2.replace("#",""),16)),e.color3&&(N.uColor3=parseInt(e.color3.replace("#",""),16)),e.color4&&(N.uColor4=parseInt(e.color4.replace("#",""),16)),f=!0},attach:e=>{L.has(e)||(L.set(e,e),y=!0)},detach:e=>{L.delete(e)},setDirty:()=>{y=!0}}};let kw,Cw;const[Ew,zw]=Ij(),Iw={color1:"#000000",color2:"#555555",color3:"#aaaaaa",color4:"#ffffff"};function Aw(e){let{children:n}=e;const t=zI(e=>e.app),i=zI(e=>e.theme),a=ee.useRef(),o=ee.useRef();return ee.useEffect(()=>{var e,n;if(t&&(null===(e=i.canvas)||void 0===e?void 0:e.enabled)&&l&&null==a.current){if(!kw){const e=window.devicePixelRatio;kw=document.createElement("canvas"),kw.width=Math.round(window.innerWidth*e),kw.height=Math.round(window.innerHeight*e)}if(a.current=kw,!Cw){const e=Object.assign(Object.assign({},Iw),(null===(n=i.color)||void 0===n?void 0:n.base)?{color1:i.color.base[100],color2:i.color.base[200],color3:i.color.base[300],color4:i.color.base[400]}:{});Cw=Dw(kw,e)}return o.current=Cw,()=>{}}return()=>{}},[]),ee.useEffect(()=>{var e;if(o.current){const n=Object.assign(Object.assign({},Iw),(null===(e=i.color)||void 0===e?void 0:e.base)?{color1:i.color.base[100],color2:i.color.base[200],color3:i.color.base[300],color4:i.color.base[400]}:{});o.current.setUniforms(n)}},[i,o]),ce.jsx(zw,{value:{canvasRef:a,shaderRef:o,attach:e=>{o.current&&o.current.attach(e)},detach:e=>{o.current&&o.current.detach(e)},setDirty:()=>{o.current&&o.current.setDirty()}},children:n})}const Yw=()=>{var e;const n=zI(e=>e.theme),t=ee.useRef(null);if((e=>{const n=Ew(),t=window.devicePixelRatio;ee.useEffect(()=>{if(null!=e.current&&l){const i=e.current,a=new ResizeObserver(e=>{let[a]=e;const o=a.contentRect.width,r=a.contentRect.height;i.width=Math.round(o*t),i.height=Math.round(r*t),n.setDirty()});return a.observe(i),n.attach(e.current),()=>{n.detach(i),a.disconnect()}}return()=>{}},[n,e,t])})(t),null===(e=n.canvas)||void 0===e?void 0:e.enabled)return ce.jsx("canvas",{className:"llm__canvas",ref:t,"aria-hidden":!0})},Ow=e=>{const n="button"==e.type||"submit"==e.type?ce.jsx(Yw,{}):"",t=e.icon||("text"==e.type?ce.jsx(Ib,{}):""),i=g("llm__cta",`llm__cta--${e.type}`,e.className);return e.url?ce.jsxs("a",{className:i,href:e.url,target:e.target,children:[n,ce.jsx("span",{children:e.label}),t]}):ce.jsxs("button",{className:i,onClick:n=>{"function"==typeof e.onClick&&e.onClick(n)},type:"button"==e.type||"submit"==e.type?e.type:void 0,children:[n,ce.jsx("span",{children:e.label}),t]})},Qw=e=>{const{item:n}=e,t=$j(),{onAction:i}=zI(e=>e.actions),{open:a}=lw(e=>e.actions),o=lw(e=>e.dismissable),r=g("llm__action",{[`llm__action--${n.type}`]:!!n.type});return ce.jsx(Ow,{type:"button",className:r,label:n.title||t("llm.tellMeMore"),icon:ce.jsx(Ib,{}),onClick:e=>xd(void 0,void 0,void 0,function*(){const e=yield i(n);o&&!1!==e&&a()})})};function Zw(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}let _w={async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null};function Bw(e){_w=e}const Fw=/[&<>"']/,Xw=new RegExp(Fw.source,"g"),Uw=/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,Hw=new RegExp(Uw.source,"g"),Jw={"&":"&","<":"<",">":">",'"':""","'":"'"},Pw=e=>Jw[e];function Gw(e,n){if(n){if(Fw.test(e))return e.replace(Xw,Pw)}else if(Uw.test(e))return e.replace(Hw,Pw);return e}const Rw=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/gi;function Ww(e){return e.replace(Rw,(e,n)=>"colon"===(n=n.toLowerCase())?":":"#"===n.charAt(0)?"x"===n.charAt(1)?String.fromCharCode(parseInt(n.substring(2),16)):String.fromCharCode(+n.substring(1)):"")}const Kw=/(^|[^\[])\^/g;function Vw(e,n){let t="string"==typeof e?e:e.source;n=n||"";const i={replace:(e,n)=>{let a="string"==typeof n?n:n.source;return a=a.replace(Kw,"$1"),t=t.replace(e,a),i},getRegex:()=>new RegExp(t,n)};return i}function $w(e){try{e=encodeURI(e).replace(/%25/g,"%")}catch(e){return null}return e}const qw={exec:()=>null};function ex(e,n){const t=e.replace(/\|/g,(e,n,t)=>{let i=!1,a=n;for(;--a>=0&&"\\"===t[a];)i=!i;return i?"|":" |"}),i=t.split(/ \|/);let a=0;if(i[0].trim()||i.shift(),i.length>0&&!i[i.length-1].trim()&&i.pop(),n)if(i.length>n)i.splice(n);else for(;i.length<n;)i.push("");for(;a<i.length;a++)i[a]=i[a].trim().replace(/\\\|/g,"|");return i}function nx(e,n,t){const i=e.length;if(0===i)return"";let a=0;for(;a<i;){const o=e.charAt(i-a-1);if(o!==n||t){if(o===n||!t)break;a++}else a++}return e.slice(0,i-a)}function tx(e,n,t,i){const a=n.href,o=n.title?Gw(n.title):null,r=e[1].replace(/\\([\[\]])/g,"$1");if("!"!==e[0].charAt(0)){i.state.inLink=!0;const e={type:"link",raw:t,href:a,title:o,text:r,tokens:i.inlineTokens(r)};return i.state.inLink=!1,e}return{type:"image",raw:t,href:a,title:o,text:Gw(r)}}class ix{options;rules;lexer;constructor(e){this.options=e||_w}space(e){const n=this.rules.block.newline.exec(e);if(n&&n[0].length>0)return{type:"space",raw:n[0]}}code(e){const n=this.rules.block.code.exec(e);if(n){const e=n[0].replace(/^ {1,4}/gm,"");return{type:"code",raw:n[0],codeBlockStyle:"indented",text:this.options.pedantic?e:nx(e,"\n")}}}fences(e){const n=this.rules.block.fences.exec(e);if(n){const e=n[0],t=function(e,n){const t=e.match(/^(\s+)(?:```)/);if(null===t)return n;const i=t[1];return n.split("\n").map(e=>{const n=e.match(/^\s+/);if(null===n)return e;const[t]=n;return t.length>=i.length?e.slice(i.length):e}).join("\n")}(e,n[3]||"");return{type:"code",raw:e,lang:n[2]?n[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):n[2],text:t}}}heading(e){const n=this.rules.block.heading.exec(e);if(n){let e=n[2].trim();if(/#$/.test(e)){const n=nx(e,"#");this.options.pedantic?e=n.trim():n&&!/ $/.test(n)||(e=n.trim())}return{type:"heading",raw:n[0],depth:n[1].length,text:e,tokens:this.lexer.inline(e)}}}hr(e){const n=this.rules.block.hr.exec(e);if(n)return{type:"hr",raw:n[0]}}blockquote(e){const n=this.rules.block.blockquote.exec(e);if(n){let e=n[0].replace(/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,"\n $1");e=nx(e.replace(/^ *>[ \t]?/gm,""),"\n");const t=this.lexer.state.top;this.lexer.state.top=!0;const i=this.lexer.blockTokens(e);return this.lexer.state.top=t,{type:"blockquote",raw:n[0],tokens:i,text:e}}}list(e){let n=this.rules.block.list.exec(e);if(n){let t=n[1].trim();const i=t.length>1,a={type:"list",raw:"",ordered:i,start:i?+t.slice(0,-1):"",loose:!1,items:[]};t=i?`\\d{1,9}\\${t.slice(-1)}`:`\\${t}`,this.options.pedantic&&(t=i?t:"[*+-]");const o=new RegExp(`^( {0,3}${t})((?:[\t ][^\\n]*)?(?:\\n|$))`);let r="",s="",u=!1;for(;e;){let t=!1;if(!(n=o.exec(e)))break;if(this.rules.block.hr.test(e))break;r=n[0],e=e.substring(r.length);let i=n[2].split("\n",1)[0].replace(/^\t+/,e=>" ".repeat(3*e.length)),l=e.split("\n",1)[0],c=0;this.options.pedantic?(c=2,s=i.trimStart()):(c=n[2].search(/[^ ]/),c=c>4?1:c,s=i.slice(c),c+=n[1].length);let d=!1;if(!i&&/^ *$/.test(l)&&(r+=l+"\n",e=e.substring(l.length+1),t=!0),!t){const n=new RegExp(`^ {0,${Math.min(3,c-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ \t][^\\n]*)?(?:\\n|$))`),t=new RegExp(`^ {0,${Math.min(3,c-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),a=new RegExp(`^ {0,${Math.min(3,c-1)}}(?:\`\`\`|~~~)`),o=new RegExp(`^ {0,${Math.min(3,c-1)}}#`);for(;e;){const u=e.split("\n",1)[0];if(l=u,this.options.pedantic&&(l=l.replace(/^ {1,4}(?=( {4})*[^ ])/g," ")),a.test(l))break;if(o.test(l))break;if(n.test(l))break;if(t.test(e))break;if(l.search(/[^ ]/)>=c||!l.trim())s+="\n"+l.slice(c);else{if(d)break;if(i.search(/[^ ]/)>=4)break;if(a.test(i))break;if(o.test(i))break;if(t.test(i))break;s+="\n"+l}d||l.trim()||(d=!0),r+=u+"\n",e=e.substring(u.length+1),i=l.slice(c)}}a.loose||(u?a.loose=!0:/\n *\n *$/.test(r)&&(u=!0));let g,h=null;this.options.gfm&&(h=/^\[[ xX]\] /.exec(s),h&&(g="[ ] "!==h[0],s=s.replace(/^\[[ xX]\] +/,""))),a.items.push({type:"list_item",raw:r,task:!!h,checked:g,loose:!1,text:s,tokens:[]}),a.raw+=r}a.items[a.items.length-1].raw=r.trimEnd(),a.items[a.items.length-1].text=s.trimEnd(),a.raw=a.raw.trimEnd();for(let e=0;e<a.items.length;e++)if(this.lexer.state.top=!1,a.items[e].tokens=this.lexer.blockTokens(a.items[e].text,[]),!a.loose){const n=a.items[e].tokens.filter(e=>"space"===e.type),t=n.length>0&&n.some(e=>/\n.*\n/.test(e.raw));a.loose=t}if(a.loose)for(let e=0;e<a.items.length;e++)a.items[e].loose=!0;return a}}html(e){const n=this.rules.block.html.exec(e);if(n){return{type:"html",block:!0,raw:n[0],pre:"pre"===n[1]||"script"===n[1]||"style"===n[1],text:n[0]}}}def(e){const n=this.rules.block.def.exec(e);if(n){const e=n[1].toLowerCase().replace(/\s+/g," "),t=n[2]?n[2].replace(/^<(.*)>$/,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",i=n[3]?n[3].substring(1,n[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):n[3];return{type:"def",tag:e,raw:n[0],href:t,title:i}}}table(e){const n=this.rules.block.table.exec(e);if(!n)return;if(!/[:|]/.test(n[2]))return;const t=ex(n[1]),i=n[2].replace(/^\||\| *$/g,"").split("|"),a=n[3]&&n[3].trim()?n[3].replace(/\n[ \t]*$/,"").split("\n"):[],o={type:"table",raw:n[0],header:[],align:[],rows:[]};if(t.length===i.length){for(const e of i)/^ *-+: *$/.test(e)?o.align.push("right"):/^ *:-+: *$/.test(e)?o.align.push("center"):/^ *:-+ *$/.test(e)?o.align.push("left"):o.align.push(null);for(const e of t)o.header.push({text:e,tokens:this.lexer.inline(e)});for(const e of a)o.rows.push(ex(e,o.header.length).map(e=>({text:e,tokens:this.lexer.inline(e)})));return o}}lheading(e){const n=this.rules.block.lheading.exec(e);if(n)return{type:"heading",raw:n[0],depth:"="===n[2].charAt(0)?1:2,text:n[1],tokens:this.lexer.inline(n[1])}}paragraph(e){const n=this.rules.block.paragraph.exec(e);if(n){const e="\n"===n[1].charAt(n[1].length-1)?n[1].slice(0,-1):n[1];return{type:"paragraph",raw:n[0],text:e,tokens:this.lexer.inline(e)}}}text(e){const n=this.rules.block.text.exec(e);if(n)return{type:"text",raw:n[0],text:n[0],tokens:this.lexer.inline(n[0])}}escape(e){const n=this.rules.inline.escape.exec(e);if(n)return{type:"escape",raw:n[0],text:Gw(n[1])}}tag(e){const n=this.rules.inline.tag.exec(e);if(n)return!this.lexer.state.inLink&&/^<a /i.test(n[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&/^<\/a>/i.test(n[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(n[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(n[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:n[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:n[0]}}link(e){const n=this.rules.inline.link.exec(e);if(n){const e=n[2].trim();if(!this.options.pedantic&&/^</.test(e)){if(!/>$/.test(e))return;const n=nx(e.slice(0,-1),"\\");if((e.length-n.length)%2==0)return}else{const e=function(e,n){if(-1===e.indexOf(n[1]))return-1;let t=0;for(let i=0;i<e.length;i++)if("\\"===e[i])i++;else if(e[i]===n[0])t++;else if(e[i]===n[1]&&(t--,t<0))return i;return-1}(n[2],"()");if(e>-1){const t=(0===n[0].indexOf("!")?5:4)+n[1].length+e;n[2]=n[2].substring(0,e),n[0]=n[0].substring(0,t).trim(),n[3]=""}}let t=n[2],i="";if(this.options.pedantic){const e=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(t);e&&(t=e[1],i=e[3])}else i=n[3]?n[3].slice(1,-1):"";return t=t.trim(),/^</.test(t)&&(t=this.options.pedantic&&!/>$/.test(e)?t.slice(1):t.slice(1,-1)),tx(n,{href:t?t.replace(this.rules.inline.anyPunctuation,"$1"):t,title:i?i.replace(this.rules.inline.anyPunctuation,"$1"):i},n[0],this.lexer)}}reflink(e,n){let t;if((t=this.rules.inline.reflink.exec(e))||(t=this.rules.inline.nolink.exec(e))){const e=n[(t[2]||t[1]).replace(/\s+/g," ").toLowerCase()];if(!e){const e=t[0].charAt(0);return{type:"text",raw:e,text:e}}return tx(t,e,t[0],this.lexer)}}emStrong(e,n,t=""){let i=this.rules.inline.emStrongLDelim.exec(e);if(!i)return;if(i[3]&&t.match(/[\p{L}\p{N}]/u))return;if(!(i[1]||i[2]||"")||!t||this.rules.inline.punctuation.exec(t)){const t=[...i[0]].length-1;let a,o,r=t,s=0;const u="*"===i[0][0]?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(u.lastIndex=0,n=n.slice(-1*e.length+t);null!=(i=u.exec(n));){if(a=i[1]||i[2]||i[3]||i[4]||i[5]||i[6],!a)continue;if(o=[...a].length,i[3]||i[4]){r+=o;continue}if((i[5]||i[6])&&t%3&&!((t+o)%3)){s+=o;continue}if(r-=o,r>0)continue;o=Math.min(o,o+r+s);const n=[...i[0]][0].length,u=e.slice(0,t+i.index+n+o);if(Math.min(t,o)%2){const e=u.slice(1,-1);return{type:"em",raw:u,text:e,tokens:this.lexer.inlineTokens(e)}}const l=u.slice(2,-2);return{type:"strong",raw:u,text:l,tokens:this.lexer.inlineTokens(l)}}}}codespan(e){const n=this.rules.inline.code.exec(e);if(n){let e=n[2].replace(/\n/g," ");const t=/[^ ]/.test(e),i=/^ /.test(e)&&/ $/.test(e);return t&&i&&(e=e.substring(1,e.length-1)),e=Gw(e,!0),{type:"codespan",raw:n[0],text:e}}}br(e){const n=this.rules.inline.br.exec(e);if(n)return{type:"br",raw:n[0]}}del(e){const n=this.rules.inline.del.exec(e);if(n)return{type:"del",raw:n[0],text:n[2],tokens:this.lexer.inlineTokens(n[2])}}autolink(e){const n=this.rules.inline.autolink.exec(e);if(n){let e,t;return"@"===n[2]?(e=Gw(n[1]),t="mailto:"+e):(e=Gw(n[1]),t=e),{type:"link",raw:n[0],text:e,href:t,tokens:[{type:"text",raw:e,text:e}]}}}url(e){let n;if(n=this.rules.inline.url.exec(e)){let e,t;if("@"===n[2])e=Gw(n[0]),t="mailto:"+e;else{let i;do{i=n[0],n[0]=this.rules.inline._backpedal.exec(n[0])?.[0]??""}while(i!==n[0]);e=Gw(n[0]),t="www."===n[1]?"http://"+n[0]:n[0]}return{type:"link",raw:n[0],text:e,href:t,tokens:[{type:"text",raw:e,text:e}]}}}inlineText(e){const n=this.rules.inline.text.exec(e);if(n){let e;return e=this.lexer.state.inRawBlock?n[0]:Gw(n[0]),{type:"text",raw:n[0],text:e}}}}const ax=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,ox=/(?:[*+-]|\d{1,9}[.)])/,rx=Vw(/^(?!bull |blockCode|fences|blockquote|heading|html)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html))+?)\n {0,3}(=+|-+) *(?:\n+|$)/).replace(/bull/g,ox).replace(/blockCode/g,/ {4}/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).getRegex(),sx=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,ux=/(?!\s*\])(?:\\.|[^\[\]\\])+/,lx=Vw(/^ {0,3}\[(label)\]: *(?:\n *)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n *)?| *\n *)(title))? *(?:\n+|$)/).replace("label",ux).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),cx=Vw(/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,ox).getRegex(),dx="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",gx=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,hx=Vw("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n *)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$))","i").replace("comment",gx).replace("tag",dx).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),px=Vw(sx).replace("hr",ax).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",dx).getRegex(),mx={blockquote:Vw(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",px).getRegex(),code:/^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/,def:lx,fences:/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,heading:/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,hr:ax,html:hx,lheading:rx,list:cx,newline:/^(?: *(?:\n|$))+/,paragraph:px,table:qw,text:/^[^\n]+/},yx=Vw("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",ax).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",dx).getRegex(),fx={...mx,table:yx,paragraph:Vw(sx).replace("hr",ax).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",yx).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",dx).getRegex()},Mx={...mx,html:Vw("^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:\"[^\"]*\"|'[^']*'|\\s[^'\"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))").replace("comment",gx).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:qw,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:Vw(sx).replace("hr",ax).replace("heading"," *#{1,6} *[^\n]").replace("lheading",rx).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},jx=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,bx=/^( {2,}|\\)\n(?!\s*$)/,wx="\\p{P}\\p{S}",xx=Vw(/^((?![*_])[\spunctuation])/,"u").replace(/punctuation/g,wx).getRegex(),Lx=Vw(/^(?:\*+(?:((?!\*)[punct])|[^\s*]))|^_+(?:((?!_)[punct])|([^\s_]))/,"u").replace(/punct/g,wx).getRegex(),Nx=Vw("^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)[punct](\\*+)(?=[\\s]|$)|[^punct\\s](\\*+)(?!\\*)(?=[punct\\s]|$)|(?!\\*)[punct\\s](\\*+)(?=[^punct\\s])|[\\s](\\*+)(?!\\*)(?=[punct])|(?!\\*)[punct](\\*+)(?!\\*)(?=[punct])|[^punct\\s](\\*+)(?=[^punct\\s])","gu").replace(/punct/g,wx).getRegex(),vx=Vw("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)[punct](_+)(?=[\\s]|$)|[^punct\\s](_+)(?!_)(?=[punct\\s]|$)|(?!_)[punct\\s](_+)(?=[^punct\\s])|[\\s](_+)(?!_)(?=[punct])|(?!_)[punct](_+)(?!_)(?=[punct])","gu").replace(/punct/g,wx).getRegex(),Sx=Vw(/\\([punct])/,"gu").replace(/punct/g,wx).getRegex(),Tx=Vw(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),Dx=Vw(gx).replace("(?:--\x3e|$)","--\x3e").getRegex(),kx=Vw("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",Dx).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),Cx=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,Ex=Vw(/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/).replace("label",Cx).replace("href",/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),zx=Vw(/^!?\[(label)\]\[(ref)\]/).replace("label",Cx).replace("ref",ux).getRegex(),Ix=Vw(/^!?\[(ref)\](?:\[\])?/).replace("ref",ux).getRegex(),Ax={_backpedal:qw,anyPunctuation:Sx,autolink:Tx,blockSkip:/\[[^[\]]*?\]\([^\(\)]*?\)|`[^`]*?`|<[^<>]*?>/g,br:bx,code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,del:qw,emStrongLDelim:Lx,emStrongRDelimAst:Nx,emStrongRDelimUnd:vx,escape:jx,link:Ex,nolink:Ix,punctuation:xx,reflink:zx,reflinkSearch:Vw("reflink|nolink(?!\\()","g").replace("reflink",zx).replace("nolink",Ix).getRegex(),tag:kx,text:/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,url:qw},Yx={...Ax,link:Vw(/^!?\[(label)\]\((.*?)\)/).replace("label",Cx).getRegex(),reflink:Vw(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",Cx).getRegex()},Ox={...Ax,escape:Vw(jx).replace("])","~|])").getRegex(),url:Vw(/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,"i").replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])([\s\S]*?[^\s~])\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|https?:\/\/|ftp:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/},Qx={...Ox,br:Vw(bx).replace("{2,}","*").getRegex(),text:Vw(Ox.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},Zx={normal:mx,gfm:fx,pedantic:Mx},_x={normal:Ax,gfm:Ox,breaks:Qx,pedantic:Yx};class Bx{tokens;options;state;tokenizer;inlineQueue;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||_w,this.options.tokenizer=this.options.tokenizer||new ix,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};const n={block:Zx.normal,inline:_x.normal};this.options.pedantic?(n.block=Zx.pedantic,n.inline=_x.pedantic):this.options.gfm&&(n.block=Zx.gfm,this.options.breaks?n.inline=_x.breaks:n.inline=_x.gfm),this.tokenizer.rules=n}static get rules(){return{block:Zx,inline:_x}}static lex(e,n){return new Bx(n).lex(e)}static lexInline(e,n){return new Bx(n).inlineTokens(e)}lex(e){e=e.replace(/\r\n|\r/g,"\n"),this.blockTokens(e,this.tokens);for(let e=0;e<this.inlineQueue.length;e++){const n=this.inlineQueue[e];this.inlineTokens(n.src,n.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(e,n=[]){let t,i,a,o;for(e=this.options.pedantic?e.replace(/\t/g," ").replace(/^ +$/gm,""):e.replace(/^( *)(\t+)/gm,(e,n,t)=>n+" ".repeat(t.length));e;)if(!(this.options.extensions&&this.options.extensions.block&&this.options.extensions.block.some(i=>!!(t=i.call({lexer:this},e,n))&&(e=e.substring(t.raw.length),n.push(t),!0))))if(t=this.tokenizer.space(e))e=e.substring(t.raw.length),1===t.raw.length&&n.length>0?n[n.length-1].raw+="\n":n.push(t);else if(t=this.tokenizer.code(e))e=e.substring(t.raw.length),i=n[n.length-1],!i||"paragraph"!==i.type&&"text"!==i.type?n.push(t):(i.raw+="\n"+t.raw,i.text+="\n"+t.text,this.inlineQueue[this.inlineQueue.length-1].src=i.text);else if(t=this.tokenizer.fences(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.heading(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.hr(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.blockquote(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.list(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.html(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.def(e))e=e.substring(t.raw.length),i=n[n.length-1],!i||"paragraph"!==i.type&&"text"!==i.type?this.tokens.links[t.tag]||(this.tokens.links[t.tag]={href:t.href,title:t.title}):(i.raw+="\n"+t.raw,i.text+="\n"+t.raw,this.inlineQueue[this.inlineQueue.length-1].src=i.text);else if(t=this.tokenizer.table(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.lheading(e))e=e.substring(t.raw.length),n.push(t);else{if(a=e,this.options.extensions&&this.options.extensions.startBlock){let n=1/0;const t=e.slice(1);let i;this.options.extensions.startBlock.forEach(e=>{i=e.call({lexer:this},t),"number"==typeof i&&i>=0&&(n=Math.min(n,i))}),n<1/0&&n>=0&&(a=e.substring(0,n+1))}if(this.state.top&&(t=this.tokenizer.paragraph(a)))i=n[n.length-1],o&&"paragraph"===i.type?(i.raw+="\n"+t.raw,i.text+="\n"+t.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=i.text):n.push(t),o=a.length!==e.length,e=e.substring(t.raw.length);else if(t=this.tokenizer.text(e))e=e.substring(t.raw.length),i=n[n.length-1],i&&"text"===i.type?(i.raw+="\n"+t.raw,i.text+="\n"+t.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=i.text):n.push(t);else if(e){const n="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(n);break}throw new Error(n)}}return this.state.top=!0,n}inline(e,n=[]){return this.inlineQueue.push({src:e,tokens:n}),n}inlineTokens(e,n=[]){let t,i,a,o,r,s,u=e;if(this.tokens.links){const e=Object.keys(this.tokens.links);if(e.length>0)for(;null!=(o=this.tokenizer.rules.inline.reflinkSearch.exec(u));)e.includes(o[0].slice(o[0].lastIndexOf("[")+1,-1))&&(u=u.slice(0,o.index)+"["+"a".repeat(o[0].length-2)+"]"+u.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;null!=(o=this.tokenizer.rules.inline.blockSkip.exec(u));)u=u.slice(0,o.index)+"["+"a".repeat(o[0].length-2)+"]"+u.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;null!=(o=this.tokenizer.rules.inline.anyPunctuation.exec(u));)u=u.slice(0,o.index)+"++"+u.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);for(;e;)if(r||(s=""),r=!1,!(this.options.extensions&&this.options.extensions.inline&&this.options.extensions.inline.some(i=>!!(t=i.call({lexer:this},e,n))&&(e=e.substring(t.raw.length),n.push(t),!0))))if(t=this.tokenizer.escape(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.tag(e))e=e.substring(t.raw.length),i=n[n.length-1],i&&"text"===t.type&&"text"===i.type?(i.raw+=t.raw,i.text+=t.text):n.push(t);else if(t=this.tokenizer.link(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.reflink(e,this.tokens.links))e=e.substring(t.raw.length),i=n[n.length-1],i&&"text"===t.type&&"text"===i.type?(i.raw+=t.raw,i.text+=t.text):n.push(t);else if(t=this.tokenizer.emStrong(e,u,s))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.codespan(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.br(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.del(e))e=e.substring(t.raw.length),n.push(t);else if(t=this.tokenizer.autolink(e))e=e.substring(t.raw.length),n.push(t);else if(this.state.inLink||!(t=this.tokenizer.url(e))){if(a=e,this.options.extensions&&this.options.extensions.startInline){let n=1/0;const t=e.slice(1);let i;this.options.extensions.startInline.forEach(e=>{i=e.call({lexer:this},t),"number"==typeof i&&i>=0&&(n=Math.min(n,i))}),n<1/0&&n>=0&&(a=e.substring(0,n+1))}if(t=this.tokenizer.inlineText(a))e=e.substring(t.raw.length),"_"!==t.raw.slice(-1)&&(s=t.raw.slice(-1)),r=!0,i=n[n.length-1],i&&"text"===i.type?(i.raw+=t.raw,i.text+=t.text):n.push(t);else if(e){const n="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(n);break}throw new Error(n)}}else e=e.substring(t.raw.length),n.push(t);return n}}class Fx{options;constructor(e){this.options=e||_w}code(e,n,t){const i=(n||"").match(/^\S*/)?.[0];return e=e.replace(/\n$/,"")+"\n",i?'<pre><code class="language-'+Gw(i)+'">'+(t?e:Gw(e,!0))+"</code></pre>\n":"<pre><code>"+(t?e:Gw(e,!0))+"</code></pre>\n"}blockquote(e){return`<blockquote>\n${e}</blockquote>\n`}html(e,n){return e}heading(e,n,t){return`<h${n}>${e}</h${n}>\n`}hr(){return"<hr>\n"}list(e,n,t){const i=n?"ol":"ul";return"<"+i+(n&&1!==t?' start="'+t+'"':"")+">\n"+e+"</"+i+">\n"}listitem(e,n,t){return`<li>${e}</li>\n`}checkbox(e){return"<input "+(e?'checked="" ':"")+'disabled="" type="checkbox">'}paragraph(e){return`<p>${e}</p>\n`}table(e,n){return n&&(n=`<tbody>${n}</tbody>`),"<table>\n<thead>\n"+e+"</thead>\n"+n+"</table>\n"}tablerow(e){return`<tr>\n${e}</tr>\n`}tablecell(e,n){const t=n.header?"th":"td";return(n.align?`<${t} align="${n.align}">`:`<${t}>`)+e+`</${t}>\n`}strong(e){return`<strong>${e}</strong>`}em(e){return`<em>${e}</em>`}codespan(e){return`<code>${e}</code>`}br(){return"<br>"}del(e){return`<del>${e}</del>`}link(e,n,t){const i=$w(e);if(null===i)return t;let a='<a href="'+(e=i)+'"';return n&&(a+=' title="'+n+'"'),a+=">"+t+"</a>",a}image(e,n,t){const i=$w(e);if(null===i)return t;let a=`<img src="${e=i}" alt="${t}"`;return n&&(a+=` title="${n}"`),a+=">",a}text(e){return e}}class Xx{strong(e){return e}em(e){return e}codespan(e){return e}del(e){return e}html(e){return e}text(e){return e}link(e,n,t){return""+t}image(e,n,t){return""+t}br(){return""}}class Ux{options;renderer;textRenderer;constructor(e){this.options=e||_w,this.options.renderer=this.options.renderer||new Fx,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new Xx}static parse(e,n){return new Ux(n).parse(e)}static parseInline(e,n){return new Ux(n).parseInline(e)}parse(e,n=!0){let t="";for(let i=0;i<e.length;i++){const a=e[i];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[a.type]){const e=a,n=this.options.extensions.renderers[e.type].call({parser:this},e);if(!1!==n||!["space","hr","heading","code","table","blockquote","list","html","paragraph","text"].includes(e.type)){t+=n||"";continue}}switch(a.type){case"space":continue;case"hr":t+=this.renderer.hr();continue;case"heading":{const e=a;t+=this.renderer.heading(this.parseInline(e.tokens),e.depth,Ww(this.parseInline(e.tokens,this.textRenderer)));continue}case"code":{const e=a;t+=this.renderer.code(e.text,e.lang,!!e.escaped);continue}case"table":{const e=a;let n="",i="";for(let n=0;n<e.header.length;n++)i+=this.renderer.tablecell(this.parseInline(e.header[n].tokens),{header:!0,align:e.align[n]});n+=this.renderer.tablerow(i);let o="";for(let n=0;n<e.rows.length;n++){const t=e.rows[n];i="";for(let n=0;n<t.length;n++)i+=this.renderer.tablecell(this.parseInline(t[n].tokens),{header:!1,align:e.align[n]});o+=this.renderer.tablerow(i)}t+=this.renderer.table(n,o);continue}case"blockquote":{const e=a,n=this.parse(e.tokens);t+=this.renderer.blockquote(n);continue}case"list":{const e=a,n=e.ordered,i=e.start,o=e.loose;let r="";for(let n=0;n<e.items.length;n++){const t=e.items[n],i=t.checked,a=t.task;let s="";if(t.task){const e=this.renderer.checkbox(!!i);o?t.tokens.length>0&&"paragraph"===t.tokens[0].type?(t.tokens[0].text=e+" "+t.tokens[0].text,t.tokens[0].tokens&&t.tokens[0].tokens.length>0&&"text"===t.tokens[0].tokens[0].type&&(t.tokens[0].tokens[0].text=e+" "+t.tokens[0].tokens[0].text)):t.tokens.unshift({type:"text",text:e+" "}):s+=e+" "}s+=this.parse(t.tokens,o),r+=this.renderer.listitem(s,a,!!i)}t+=this.renderer.list(r,n,i);continue}case"html":{const e=a;t+=this.renderer.html(e.text,e.block);continue}case"paragraph":{const e=a;t+=this.renderer.paragraph(this.parseInline(e.tokens));continue}case"text":{let o=a,r=o.tokens?this.parseInline(o.tokens):o.text;for(;i+1<e.length&&"text"===e[i+1].type;)o=e[++i],r+="\n"+(o.tokens?this.parseInline(o.tokens):o.text);t+=n?this.renderer.paragraph(r):r;continue}default:{const e='Token with "'+a.type+'" type was not found.';if(this.options.silent)return console.error(e),"";throw new Error(e)}}}return t}parseInline(e,n){n=n||this.renderer;let t="";for(let i=0;i<e.length;i++){const a=e[i];if(this.options.extensions&&this.options.extensions.renderers&&this.options.extensions.renderers[a.type]){const e=this.options.extensions.renderers[a.type].call({parser:this},a);if(!1!==e||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(a.type)){t+=e||"";continue}}switch(a.type){case"escape":{const e=a;t+=n.text(e.text);break}case"html":{const e=a;t+=n.html(e.text);break}case"link":{const e=a;t+=n.link(e.href,e.title,this.parseInline(e.tokens,n));break}case"image":{const e=a;t+=n.image(e.href,e.title,e.text);break}case"strong":{const e=a;t+=n.strong(this.parseInline(e.tokens,n));break}case"em":{const e=a;t+=n.em(this.parseInline(e.tokens,n));break}case"codespan":{const e=a;t+=n.codespan(e.text);break}case"br":t+=n.br();break;case"del":{const e=a;t+=n.del(this.parseInline(e.tokens,n));break}case"text":{const e=a;t+=n.text(e.text);break}default:{const e='Token with "'+a.type+'" type was not found.';if(this.options.silent)return console.error(e),"";throw new Error(e)}}}return t}}class Hx{options;constructor(e){this.options=e||_w}static passThroughHooks=new Set(["preprocess","postprocess","processAllTokens"]);preprocess(e){return e}postprocess(e){return e}processAllTokens(e){return e}}const Jx=new class{defaults={async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null};options=this.setOptions;parse=this.#e(Bx.lex,Ux.parse);parseInline=this.#e(Bx.lexInline,Ux.parseInline);Parser=Ux;Renderer=Fx;TextRenderer=Xx;Lexer=Bx;Tokenizer=ix;Hooks=Hx;constructor(...e){this.use(...e)}walkTokens(e,n){let t=[];for(const i of e)switch(t=t.concat(n.call(this,i)),i.type){case"table":{const e=i;for(const i of e.header)t=t.concat(this.walkTokens(i.tokens,n));for(const i of e.rows)for(const e of i)t=t.concat(this.walkTokens(e.tokens,n));break}case"list":{const e=i;t=t.concat(this.walkTokens(e.items,n));break}default:{const e=i;this.defaults.extensions?.childTokens?.[e.type]?this.defaults.extensions.childTokens[e.type].forEach(i=>{const a=e[i].flat(1/0);t=t.concat(this.walkTokens(a,n))}):e.tokens&&(t=t.concat(this.walkTokens(e.tokens,n)))}}return t}use(...e){const n=this.defaults.extensions||{renderers:{},childTokens:{}};return e.forEach(e=>{const t={...e};if(t.async=this.defaults.async||t.async||!1,e.extensions&&(e.extensions.forEach(e=>{if(!e.name)throw new Error("extension name required");if("renderer"in e){const t=n.renderers[e.name];n.renderers[e.name]=t?function(...n){let i=e.renderer.apply(this,n);return!1===i&&(i=t.apply(this,n)),i}:e.renderer}if("tokenizer"in e){if(!e.level||"block"!==e.level&&"inline"!==e.level)throw new Error("extension level must be 'block' or 'inline'");const t=n[e.level];t?t.unshift(e.tokenizer):n[e.level]=[e.tokenizer],e.start&&("block"===e.level?n.startBlock?n.startBlock.push(e.start):n.startBlock=[e.start]:"inline"===e.level&&(n.startInline?n.startInline.push(e.start):n.startInline=[e.start]))}"childTokens"in e&&e.childTokens&&(n.childTokens[e.name]=e.childTokens)}),t.extensions=n),e.renderer){const n=this.defaults.renderer||new Fx(this.defaults);for(const t in e.renderer){if(!(t in n))throw new Error(`renderer '${t}' does not exist`);if("options"===t)continue;const i=t,a=e.renderer[i],o=n[i];n[i]=(...e)=>{let t=a.apply(n,e);return!1===t&&(t=o.apply(n,e)),t||""}}t.renderer=n}if(e.tokenizer){const n=this.defaults.tokenizer||new ix(this.defaults);for(const t in e.tokenizer){if(!(t in n))throw new Error(`tokenizer '${t}' does not exist`);if(["options","rules","lexer"].includes(t))continue;const i=t,a=e.tokenizer[i],o=n[i];n[i]=(...e)=>{let t=a.apply(n,e);return!1===t&&(t=o.apply(n,e)),t}}t.tokenizer=n}if(e.hooks){const n=this.defaults.hooks||new Hx;for(const t in e.hooks){if(!(t in n))throw new Error(`hook '${t}' does not exist`);if("options"===t)continue;const i=t,a=e.hooks[i],o=n[i];Hx.passThroughHooks.has(t)?n[i]=e=>{if(this.defaults.async)return Promise.resolve(a.call(n,e)).then(e=>o.call(n,e));const t=a.call(n,e);return o.call(n,t)}:n[i]=(...e)=>{let t=a.apply(n,e);return!1===t&&(t=o.apply(n,e)),t}}t.hooks=n}if(e.walkTokens){const n=this.defaults.walkTokens,i=e.walkTokens;t.walkTokens=function(e){let t=[];return t.push(i.call(this,e)),n&&(t=t.concat(n.call(this,e))),t}}this.defaults={...this.defaults,...t}}),this}setOptions(e){return this.defaults={...this.defaults,...e},this}lexer(e,n){return Bx.lex(e,n??this.defaults)}parser(e,n){return Ux.parse(e,n??this.defaults)}#e(e,n){return(t,i)=>{const a={...i},o={...this.defaults,...a};!0===this.defaults.async&&!1===a.async&&(o.silent||console.warn("marked(): The async option was set to true by an extension. The async: false option sent to parse will be ignored."),o.async=!0);const r=this.#n(!!o.silent,!!o.async);if(null==t)return r(new Error("marked(): input parameter is undefined or null"));if("string"!=typeof t)return r(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(t)+", string expected"));if(o.hooks&&(o.hooks.options=o),o.async)return Promise.resolve(o.hooks?o.hooks.preprocess(t):t).then(n=>e(n,o)).then(e=>o.hooks?o.hooks.processAllTokens(e):e).then(e=>o.walkTokens?Promise.all(this.walkTokens(e,o.walkTokens)).then(()=>e):e).then(e=>n(e,o)).then(e=>o.hooks?o.hooks.postprocess(e):e).catch(r);try{o.hooks&&(t=o.hooks.preprocess(t));let i=e(t,o);o.hooks&&(i=o.hooks.processAllTokens(i)),o.walkTokens&&this.walkTokens(i,o.walkTokens);let a=n(i,o);return o.hooks&&(a=o.hooks.postprocess(a)),a}catch(e){return r(e)}}}#n(e,n){return t=>{if(t.message+="\nPlease report this to https://github.com/markedjs/marked.",e){const e="<p>An error occurred:</p><pre>"+Gw(t.message+"",!0)+"</pre>";return n?Promise.resolve(e):e}if(n)return Promise.reject(t);throw t}}};function Px(e,n){return Jx.parse(e,n)}Px.options=Px.setOptions=function(e){return Jx.setOptions(e),Px.defaults=Jx.defaults,Bw(Px.defaults),Px},Px.getDefaults=Zw,Px.defaults=_w,Px.use=function(...e){return Jx.use(...e),Px.defaults=Jx.defaults,Bw(Px.defaults),Px},Px.walkTokens=function(e,n){return Jx.walkTokens(e,n)},Px.parseInline=Jx.parseInline,Px.Parser=Ux,Px.parser=Ux.parse,Px.Renderer=Fx,Px.TextRenderer=Xx,Px.Lexer=Bx,Px.lexer=Bx.lex,Px.Tokenizer=ix,Px.Hooks=Hx,Px.parse=Px;const Gx=e=>{const{send:n}=lw(e=>e.actions),t=void 0!==e.chunkIndex?e.chunkIndex:-1,i=ee.useRef(null),{html:a,hasBlockElements:o}=ee.useMemo(()=>{Px.use({renderer:{link:(e,n,t)=>`<a class="llm__text-link" href="${e}" target="_blank" rel="noreferrer"\n ${n?`title="${n}"`:""}\n onclick="javascript:event.preventDefault(),window.open(event.currentTarget.href);">\n ${t}\n </a>`,image:(e,n,t)=>`<a class="llm__text-img" href="${e}" target="_blank" rel="noreferrer"\n onclick="javascript:event.preventDefault(),window.open(event.currentTarget.href);">\n <img src="${e}"${n?` title="${n}"`:""} alt="" />\n </a>`}});let n=!1;return{html:Px.parse(e.body,{walkTokens:e=>{["text","strong","em","paragraph","span","space"].includes(e.type)||(n=!0)}}),hasBlockElements:n}},[e.body]);ee.useEffect(()=>{let e=[];i.current&&(e=Array.from(i.current.querySelectorAll(".llm__pill")));const t=e=>xd(void 0,void 0,void 0,function*(){e.currentTarget&&(yield n(e.currentTarget.innerText,e=>{},e=>{}))});return e.forEach(e=>e.addEventListener("click",t)),()=>{e.forEach(e=>e.removeEventListener("click",t))}},[e.body,n]);const r=0===t&&!o;return ce.jsx("div",{className:"llm__text",children:r?ce.jsx("h2",{ref:i,className:"llm__text-body","data-text":!0,dangerouslySetInnerHTML:{__html:a}}):ce.jsx("div",{ref:i,className:"llm__text-body","data-text":!0,dangerouslySetInnerHTML:{__html:a}})})},Rx=e=>{var{children:n,visible:t}=e,i=wd(e,["children","visible"]);const a=rb("llm-dialog"),[o,r]=ee.useState(!1);ee.useEffect(()=>{void 0!==t&&r(t)},[t]);const s=()=>{i.onClose&&i.onClose(),r(!1)},{bindings:u}=Vj(()=>{s()},Gj.Escape,{disableGlobalEvent:!0});return a?Md.createPortal(o?ce.jsxs("div",Object.assign({className:"llm__dialog"},u,{children:[ce.jsx("div",{className:"llm__dialog__backdrop",onClick:()=>{s()}}),ce.jsx("div",{className:"llm__dialog__wrapper",children:n})]})):ce.jsx(ce.Fragment,{}),a):null},Wx=e=>{var{outerRef:n,playing:t}=e,i=wd(e,["outerRef","playing"]);const a=ee.useRef(null);ee.useEffect(()=>{a.current&&n.current&&(n.current.removeAttribute("style"),a.current.appendChild(n.current))},[a,n]);const o=g("llm__thron-player","llm__video","-enlarged",{"-playing":t});return ce.jsxs(ce.Fragment,{children:[ce.jsx("div",{ref:a,className:o}),ce.jsx("button",{type:"button",className:"llm__video-reduce",onClick:()=>{"function"==typeof i.onClose&&i.onClose()},"aria-label":"Reduce",children:ce.jsx(Hb,{})})]})},Kx=e=>{const n=ee.useMemo(()=>`video-${e.media.xcontentId}-${Math.round(1e4*Math.random())}`,[e.media.xcontentId]),t=tb(),i=ee.useRef(null),a=ee.useRef(),o=ee.useRef(),[r,s]=ee.useState(!1),[u,c]=ee.useState(!1),[d,h]=ee.useState(!1);ee.useEffect(()=>{i.current&&a.current&&!d&&(a.current.removeAttribute("style"),i.current.appendChild(a.current))},[i,a,r,d]),ee.useEffect(()=>{if(l&&t){let t,i;const r=()=>{c(!0)},u=()=>{c(!1)},l=()=>{a.current=t,o.current=i,s(!0)},d=()=>{const a={clientId:e.media.clientId,xcontentId:e.media.xcontentId,sessId:e.media.sessId,autoplay:!1,muted:!1,noSkin:!1};try{if("THRONContentExperience"in window){t=document.createElement("div"),t.setAttribute("id",n),t.setAttribute("style","width:100vw;height:56.25vw;"),document.body.appendChild(t);const e=window.THRONContentExperience;i=e(n,a),i.on("play",r),i.on("pause",u),i.on("ready",l)}}catch(e){console.log("ThronPlayer.error",e)}};if(document.querySelector("#thron-embed-script"))d();else{const e=document.createElement("script");e.id="thron-embed-script",e.src="https://legadelfilodoro-cdn.thron.com/shared/ce/bootstrap/1/scripts/embeds-min.js",e.async=!0,e.onload=d,document.head.appendChild(e)}return()=>{o.current&&(o.current.off("play",r),o.current.off("pause",u),o.current.off("ready",l))}}return()=>{}},[n,t]);const p=()=>{o.current&&h(!1)},m=g("llm__thron-player","llm__video",{"-playing":u});return ce.jsxs("div",{className:m,children:[ce.jsx("div",{ref:i}),ce.jsx("button",{type:"button",className:"llm__video-play",onClick:()=>{o.current&&o.current.play()},"aria-label":"Play",children:ce.jsx(Rb,{})}),ce.jsx("button",{type:"button",className:"llm__video-enlarge",onClick:()=>{o.current&&h(!0)},"aria-label":"Enlarge",children:ce.jsx(Xb,{})}),ce.jsx(Rx,{visible:d,onClose:p,children:ce.jsx(Wx,{outerRef:a,playing:u,onClose:p})})]})},Vx=e=>{const n=ee.useId(),t=ee.useRef(null),[i,a]=ee.useState(!0),[o,r]=ee.useState(!1);ee.useEffect(()=>{if(l&&t.current){const e=t.current,n=()=>{r(!0)},i=()=>{r(!1)},o=()=>{a(!1)};return e.addEventListener("canplay",o),e.addEventListener("play",n),e.addEventListener("pause",i),()=>{e.removeEventListener("canplay",o),e.removeEventListener("play",n),e.removeEventListener("pause",i)}}return()=>{}},[t]);const s=g("llm__video-player","llm__video",{"-loading":i,"-playing":o});return ce.jsxs("div",{className:s,children:[ce.jsx("video",{id:n,ref:t,src:e.media.src,muted:!0,playsInline:!0,onClick:()=>xd(void 0,void 0,void 0,function*(){if(t.current)try{o?yield t.current.pause():yield t.current.play()}catch(e){console.log("VideoPlayer.onToggle.error",e)}}),"aria-label":o?"Play":"Pause"}),ce.jsx("button",{type:"button",className:"llm__video-play",onClick:()=>xd(void 0,void 0,void 0,function*(){if(t.current)try{yield t.current.play()}catch(e){console.log("VideoPlayer.onPlay.error",e)}}),"aria-label":"Play",children:ce.jsx(Rb,{})})]})},$x=e=>{var{children:n}=e;const t=g("llm__card",`llm__card--${wd(e,["children"]).cardType}`);return ce.jsx("div",{className:t,children:n})},qx=e=>{const{item:n}=e,t=$j();return ce.jsxs($x,Object.assign({},n,{children:["image"===n.media.type&&n.cta.url&&ce.jsx("a",{className:"llm__card-media",href:n.cta.url,target:"_blank",rel:"noreferrer","aria-label":n.cta.label||t("llm.tellMeMore"),children:ce.jsx("div",{className:"llm__card-asset",children:ce.jsx("img",{src:n.media.src,alt:""})})}),"image"===n.media.type&&!n.cta.url&&ce.jsx("div",{className:"llm__card-media",children:ce.jsx("div",{className:"llm__card-asset",children:ce.jsx("img",{src:n.media.src,alt:""})})}),"video"===n.media.type&&ce.jsx("div",{className:"llm__card-media",children:ce.jsx("div",{className:"llm__card-asset",children:ce.jsx(Vx,Object.assign({},n))})}),"thron"===n.media.type&&ce.jsx("div",{className:"llm__card-media",children:ce.jsx("div",{className:"llm__card-asset",children:ce.jsx(Kx,Object.assign({},n))})}),ce.jsxs("div",{className:"llm__card-content",children:[n.date&&ce.jsx("div",{className:"llm__card-date",children:n.date}),n.title&&ce.jsx("div",{className:"llm__card-title",dangerouslySetInnerHTML:{__html:n.title}}),n.abstract&&ce.jsx("div",{className:"llm__card-abstract",dangerouslySetInnerHTML:{__html:n.abstract}}),n.cta&&n.cta.url&&ce.jsxs("a",{className:"llm__card-cta",href:n.cta.url,target:"_blank",rel:"noreferrer",children:[ce.jsx("span",{children:n.cta.label||t("llm.tellMeMore")})," ",ce.jsx(Zb,{})]})]})]}))};function eL(e){return null!==e&&"object"==typeof e&&"constructor"in e&&e.constructor===Object}function nL(e={},n={}){Object.keys(n).forEach(t=>{void 0===e[t]?e[t]=n[t]:eL(n[t])&&eL(e[t])&&Object.keys(n[t]).length>0&&nL(e[t],n[t])})}const tL={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector:()=>null,querySelectorAll:()=>[],getElementById:()=>null,createEvent:()=>({initEvent(){}}),createElement:()=>({children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName:()=>[]}),createElementNS:()=>({}),importNode:()=>null,location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function iL(){const e="undefined"!=typeof document?document:{};return nL(e,tL),e}const aL={document:tL,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle:()=>({getPropertyValue:()=>""}),Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia:()=>({}),requestAnimationFrame:e=>"undefined"==typeof setTimeout?(e(),null):setTimeout(e,0),cancelAnimationFrame(e){"undefined"!=typeof setTimeout&&clearTimeout(e)}};function oL(){const e="undefined"!=typeof window?window:{};return nL(e,aL),e}class rL extends Array{constructor(e){"number"==typeof e?super(e):(super(...e||[]),function(e){const n=e.__proto__;Object.defineProperty(e,"__proto__",{get:()=>n,set(e){n.__proto__=e}})}(this))}}function sL(e=[]){const n=[];return e.forEach(e=>{Array.isArray(e)?n.push(...sL(e)):n.push(e)}),n}function uL(e,n){return Array.prototype.filter.call(e,n)}function lL(e,n){const t=oL(),i=iL();let a=[];if(!n&&e instanceof rL)return e;if(!e)return new rL(a);if("string"==typeof e){const t=e.trim();if(t.indexOf("<")>=0&&t.indexOf(">")>=0){let e="div";0===t.indexOf("<li")&&(e="ul"),0===t.indexOf("<tr")&&(e="tbody"),0!==t.indexOf("<td")&&0!==t.indexOf("<th")||(e="tr"),0===t.indexOf("<tbody")&&(e="table"),0===t.indexOf("<option")&&(e="select");const n=i.createElement(e);n.innerHTML=t;for(let e=0;e<n.childNodes.length;e+=1)a.push(n.childNodes[e])}else a=function(e,n){if("string"!=typeof e)return[e];const t=[],i=n.querySelectorAll(e);for(let e=0;e<i.length;e+=1)t.push(i[e]);return t}(e.trim(),n||i)}else if(e.nodeType||e===t||e===i)a.push(e);else if(Array.isArray(e)){if(e instanceof rL)return e;a=e}return new rL(function(e){const n=[];for(let t=0;t<e.length;t+=1)-1===n.indexOf(e[t])&&n.push(e[t]);return n}(a))}lL.fn=rL.prototype;const cL={addClass:function(...e){const n=sL(e.map(e=>e.split(" ")));return this.forEach(e=>{e.classList.add(...n)}),this},removeClass:function(...e){const n=sL(e.map(e=>e.split(" ")));return this.forEach(e=>{e.classList.remove(...n)}),this},hasClass:function(...e){const n=sL(e.map(e=>e.split(" ")));return uL(this,e=>n.filter(n=>e.classList.contains(n)).length>0).length>0},toggleClass:function(...e){const n=sL(e.map(e=>e.split(" ")));this.forEach(e=>{n.forEach(n=>{e.classList.toggle(n)})})},attr:function(e,n){if(1===arguments.length&&"string"==typeof e)return this[0]?this[0].getAttribute(e):void 0;for(let t=0;t<this.length;t+=1)if(2===arguments.length)this[t].setAttribute(e,n);else for(const n in e)this[t][n]=e[n],this[t].setAttribute(n,e[n]);return this},removeAttr:function(e){for(let n=0;n<this.length;n+=1)this[n].removeAttribute(e);return this},transform:function(e){for(let n=0;n<this.length;n+=1)this[n].style.transform=e;return this},transition:function(e){for(let n=0;n<this.length;n+=1)this[n].style.transitionDuration="string"!=typeof e?`${e}ms`:e;return this},on:function(...e){let[n,t,i,a]=e;function o(e){const n=e.target;if(!n)return;const a=e.target.dom7EventData||[];if(a.indexOf(e)<0&&a.unshift(e),lL(n).is(t))i.apply(n,a);else{const e=lL(n).parents();for(let n=0;n<e.length;n+=1)lL(e[n]).is(t)&&i.apply(e[n],a)}}function r(e){const n=e&&e.target&&e.target.dom7EventData||[];n.indexOf(e)<0&&n.unshift(e),i.apply(this,n)}"function"==typeof e[1]&&([n,i,a]=e,t=void 0),a||(a=!1);const s=n.split(" ");let u;for(let e=0;e<this.length;e+=1){const n=this[e];if(t)for(u=0;u<s.length;u+=1){const e=s[u];n.dom7LiveListeners||(n.dom7LiveListeners={}),n.dom7LiveListeners[e]||(n.dom7LiveListeners[e]=[]),n.dom7LiveListeners[e].push({listener:i,proxyListener:o}),n.addEventListener(e,o,a)}else for(u=0;u<s.length;u+=1){const e=s[u];n.dom7Listeners||(n.dom7Listeners={}),n.dom7Listeners[e]||(n.dom7Listeners[e]=[]),n.dom7Listeners[e].push({listener:i,proxyListener:r}),n.addEventListener(e,r,a)}}return this},off:function(...e){let[n,t,i,a]=e;"function"==typeof e[1]&&([n,i,a]=e,t=void 0),a||(a=!1);const o=n.split(" ");for(let e=0;e<o.length;e+=1){const n=o[e];for(let e=0;e<this.length;e+=1){const o=this[e];let r;if(!t&&o.dom7Listeners?r=o.dom7Listeners[n]:t&&o.dom7LiveListeners&&(r=o.dom7LiveListeners[n]),r&&r.length)for(let e=r.length-1;e>=0;e-=1){const t=r[e];i&&t.listener===i||i&&t.listener&&t.listener.dom7proxy&&t.listener.dom7proxy===i?(o.removeEventListener(n,t.proxyListener,a),r.splice(e,1)):i||(o.removeEventListener(n,t.proxyListener,a),r.splice(e,1))}}}return this},trigger:function(...e){const n=oL(),t=e[0].split(" "),i=e[1];for(let a=0;a<t.length;a+=1){const o=t[a];for(let t=0;t<this.length;t+=1){const a=this[t];if(n.CustomEvent){const t=new n.CustomEvent(o,{detail:i,bubbles:!0,cancelable:!0});a.dom7EventData=e.filter((e,n)=>n>0),a.dispatchEvent(t),a.dom7EventData=[],delete a.dom7EventData}}}return this},transitionEnd:function(e){const n=this;return e&&n.on("transitionend",function t(i){i.target===this&&(e.call(this,i),n.off("transitionend",t))}),this},outerWidth:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetWidth+parseFloat(e.getPropertyValue("margin-right"))+parseFloat(e.getPropertyValue("margin-left"))}return this[0].offsetWidth}return null},outerHeight:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetHeight+parseFloat(e.getPropertyValue("margin-top"))+parseFloat(e.getPropertyValue("margin-bottom"))}return this[0].offsetHeight}return null},styles:function(){const e=oL();return this[0]?e.getComputedStyle(this[0],null):{}},offset:function(){if(this.length>0){const e=oL(),n=iL(),t=this[0],i=t.getBoundingClientRect(),a=n.body,o=t.clientTop||a.clientTop||0,r=t.clientLeft||a.clientLeft||0,s=t===e?e.scrollY:t.scrollTop,u=t===e?e.scrollX:t.scrollLeft;return{top:i.top+s-o,left:i.left+u-r}}return null},css:function(e,n){const t=oL();let i;if(1===arguments.length){if("string"!=typeof e){for(i=0;i<this.length;i+=1)for(const n in e)this[i].style[n]=e[n];return this}if(this[0])return t.getComputedStyle(this[0],null).getPropertyValue(e)}if(2===arguments.length&&"string"==typeof e){for(i=0;i<this.length;i+=1)this[i].style[e]=n;return this}return this},each:function(e){return e?(this.forEach((n,t)=>{e.apply(n,[n,t])}),this):this},html:function(e){if(void 0===e)return this[0]?this[0].innerHTML:null;for(let n=0;n<this.length;n+=1)this[n].innerHTML=e;return this},text:function(e){if(void 0===e)return this[0]?this[0].textContent.trim():null;for(let n=0;n<this.length;n+=1)this[n].textContent=e;return this},is:function(e){const n=oL(),t=iL(),i=this[0];let a,o;if(!i||void 0===e)return!1;if("string"==typeof e){if(i.matches)return i.matches(e);if(i.webkitMatchesSelector)return i.webkitMatchesSelector(e);if(i.msMatchesSelector)return i.msMatchesSelector(e);for(a=lL(e),o=0;o<a.length;o+=1)if(a[o]===i)return!0;return!1}if(e===t)return i===t;if(e===n)return i===n;if(e.nodeType||e instanceof rL){for(a=e.nodeType?[e]:e,o=0;o<a.length;o+=1)if(a[o]===i)return!0;return!1}return!1},index:function(){let e,n=this[0];if(n){for(e=0;null!==(n=n.previousSibling);)1===n.nodeType&&(e+=1);return e}},eq:function(e){if(void 0===e)return this;const n=this.length;if(e>n-1)return lL([]);if(e<0){const t=n+e;return lL(t<0?[]:[this[t]])}return lL([this[e]])},append:function(...e){let n;const t=iL();for(let i=0;i<e.length;i+=1){n=e[i];for(let e=0;e<this.length;e+=1)if("string"==typeof n){const i=t.createElement("div");for(i.innerHTML=n;i.firstChild;)this[e].appendChild(i.firstChild)}else if(n instanceof rL)for(let t=0;t<n.length;t+=1)this[e].appendChild(n[t]);else this[e].appendChild(n)}return this},prepend:function(e){const n=iL();let t,i;for(t=0;t<this.length;t+=1)if("string"==typeof e){const a=n.createElement("div");for(a.innerHTML=e,i=a.childNodes.length-1;i>=0;i-=1)this[t].insertBefore(a.childNodes[i],this[t].childNodes[0])}else if(e instanceof rL)for(i=0;i<e.length;i+=1)this[t].insertBefore(e[i],this[t].childNodes[0]);else this[t].insertBefore(e,this[t].childNodes[0]);return this},next:function(e){return this.length>0?e?this[0].nextElementSibling&&lL(this[0].nextElementSibling).is(e)?lL([this[0].nextElementSibling]):lL([]):this[0].nextElementSibling?lL([this[0].nextElementSibling]):lL([]):lL([])},nextAll:function(e){const n=[];let t=this[0];if(!t)return lL([]);for(;t.nextElementSibling;){const i=t.nextElementSibling;e?lL(i).is(e)&&n.push(i):n.push(i),t=i}return lL(n)},prev:function(e){if(this.length>0){const n=this[0];return e?n.previousElementSibling&&lL(n.previousElementSibling).is(e)?lL([n.previousElementSibling]):lL([]):n.previousElementSibling?lL([n.previousElementSibling]):lL([])}return lL([])},prevAll:function(e){const n=[];let t=this[0];if(!t)return lL([]);for(;t.previousElementSibling;){const i=t.previousElementSibling;e?lL(i).is(e)&&n.push(i):n.push(i),t=i}return lL(n)},parent:function(e){const n=[];for(let t=0;t<this.length;t+=1)null!==this[t].parentNode&&(e?lL(this[t].parentNode).is(e)&&n.push(this[t].parentNode):n.push(this[t].parentNode));return lL(n)},parents:function(e){const n=[];for(let t=0;t<this.length;t+=1){let i=this[t].parentNode;for(;i;)e?lL(i).is(e)&&n.push(i):n.push(i),i=i.parentNode}return lL(n)},closest:function(e){let n=this;return void 0===e?lL([]):(n.is(e)||(n=n.parents(e).eq(0)),n)},find:function(e){const n=[];for(let t=0;t<this.length;t+=1){const i=this[t].querySelectorAll(e);for(let e=0;e<i.length;e+=1)n.push(i[e])}return lL(n)},children:function(e){const n=[];for(let t=0;t<this.length;t+=1){const i=this[t].children;for(let t=0;t<i.length;t+=1)e&&!lL(i[t]).is(e)||n.push(i[t])}return lL(n)},filter:function(e){return lL(uL(this,e))},remove:function(){for(let e=0;e<this.length;e+=1)this[e].parentNode&&this[e].parentNode.removeChild(this[e]);return this}};function dL(e,n=0){return setTimeout(e,n)}function gL(){return Date.now()}function hL(e,n="x"){const t=oL();let i,a,o;const r=function(e){const n=oL();let t;return n.getComputedStyle&&(t=n.getComputedStyle(e,null)),!t&&e.currentStyle&&(t=e.currentStyle),t||(t=e.style),t}(e);return t.WebKitCSSMatrix?(a=r.transform||r.webkitTransform,a.split(",").length>6&&(a=a.split(", ").map(e=>e.replace(",",".")).join(", ")),o=new t.WebKitCSSMatrix("none"===a?"":a)):(o=r.MozTransform||r.OTransform||r.MsTransform||r.msTransform||r.transform||r.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),i=o.toString().split(",")),"x"===n&&(a=t.WebKitCSSMatrix?o.m41:16===i.length?parseFloat(i[12]):parseFloat(i[4])),"y"===n&&(a=t.WebKitCSSMatrix?o.m42:16===i.length?parseFloat(i[13]):parseFloat(i[5])),a||0}function pL(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function mL(e){return"undefined"!=typeof window&&void 0!==window.HTMLElement?e instanceof HTMLElement:e&&(1===e.nodeType||11===e.nodeType)}function yL(...e){const n=Object(e[0]),t=["__proto__","constructor","prototype"];for(let i=1;i<e.length;i+=1){const a=e[i];if(null!=a&&!mL(a)){const e=Object.keys(Object(a)).filter(e=>t.indexOf(e)<0);for(let t=0,i=e.length;t<i;t+=1){const i=e[t],o=Object.getOwnPropertyDescriptor(a,i);void 0!==o&&o.enumerable&&(pL(n[i])&&pL(a[i])?a[i].__swiper__?n[i]=a[i]:yL(n[i],a[i]):!pL(n[i])&&pL(a[i])?(n[i]={},a[i].__swiper__?n[i]=a[i]:yL(n[i],a[i])):n[i]=a[i])}}}return n}function fL(e,n,t){e.style.setProperty(n,t)}function ML({swiper:e,targetPosition:n,side:t}){const i=oL(),a=-e.translate;let o,r=null;const s=e.params.speed;e.wrapperEl.style.scrollSnapType="none",i.cancelAnimationFrame(e.cssModeFrameID);const u=n>a?"next":"prev",l=(e,n)=>"next"===u&&e>=n||"prev"===u&&e<=n,c=()=>{o=(new Date).getTime(),null===r&&(r=o);const u=Math.max(Math.min((o-r)/s,1),0),d=.5-Math.cos(u*Math.PI)/2;let g=a+d*(n-a);if(l(g,n)&&(g=n),e.wrapperEl.scrollTo({[t]:g}),l(g,n))return e.wrapperEl.style.overflow="hidden",e.wrapperEl.style.scrollSnapType="",setTimeout(()=>{e.wrapperEl.style.overflow="",e.wrapperEl.scrollTo({[t]:g})}),void i.cancelAnimationFrame(e.cssModeFrameID);e.cssModeFrameID=i.requestAnimationFrame(c)};c()}let jL,bL,wL;function xL(){return jL||(jL=function(){const e=oL(),n=iL();return{smoothScroll:n.documentElement&&"scrollBehavior"in n.documentElement.style,touch:!!("ontouchstart"in e||e.DocumentTouch&&n instanceof e.DocumentTouch),passiveListener:function(){let n=!1;try{const t=Object.defineProperty({},"passive",{get(){n=!0}});e.addEventListener("testPassiveListener",null,t)}catch(e){}return n}(),gestures:"ongesturestart"in e}}()),jL}function LL(e={}){return bL||(bL=function({userAgent:e}={}){const n=xL(),t=oL(),i=t.navigator.platform,a=e||t.navigator.userAgent,o={ios:!1,android:!1},r=t.screen.width,s=t.screen.height,u=a.match(/(Android);?[\s\/]+([\d.]+)?/);let l=a.match(/(iPad).*OS\s([\d_]+)/);const c=a.match(/(iPod)(.*OS\s([\d_]+))?/),d=!l&&a.match(/(iPhone\sOS|iOS)\s([\d_]+)/),g="Win32"===i;let h="MacIntel"===i;return!l&&h&&n.touch&&["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"].indexOf(`${r}x${s}`)>=0&&(l=a.match(/(Version)\/([\d.]+)/),l||(l=[0,1,"13_0_0"]),h=!1),u&&!g&&(o.os="android",o.android=!0),(l||d||c)&&(o.os="ios",o.ios=!0),o}(e)),bL}function NL(){return wL||(wL=function(){const e=oL();return{isSafari:function(){const n=e.navigator.userAgent.toLowerCase();return n.indexOf("safari")>=0&&n.indexOf("chrome")<0&&n.indexOf("android")<0}(),isWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(e.navigator.userAgent)}}()),wL}Object.keys(cL).forEach(e=>{Object.defineProperty(lL.fn,e,{value:cL[e],writable:!0})});var vL={on(e,n,t){const i=this;if(!i.eventsListeners||i.destroyed)return i;if("function"!=typeof n)return i;const a=t?"unshift":"push";return e.split(" ").forEach(e=>{i.eventsListeners[e]||(i.eventsListeners[e]=[]),i.eventsListeners[e][a](n)}),i},once(e,n,t){const i=this;if(!i.eventsListeners||i.destroyed)return i;if("function"!=typeof n)return i;function a(...t){i.off(e,a),a.__emitterProxy&&delete a.__emitterProxy,n.apply(i,t)}return a.__emitterProxy=n,i.on(e,a,t)},onAny(e,n){const t=this;if(!t.eventsListeners||t.destroyed)return t;if("function"!=typeof e)return t;const i=n?"unshift":"push";return t.eventsAnyListeners.indexOf(e)<0&&t.eventsAnyListeners[i](e),t},offAny(e){const n=this;if(!n.eventsListeners||n.destroyed)return n;if(!n.eventsAnyListeners)return n;const t=n.eventsAnyListeners.indexOf(e);return t>=0&&n.eventsAnyListeners.splice(t,1),n},off(e,n){const t=this;return!t.eventsListeners||t.destroyed?t:t.eventsListeners?(e.split(" ").forEach(e=>{void 0===n?t.eventsListeners[e]=[]:t.eventsListeners[e]&&t.eventsListeners[e].forEach((i,a)=>{(i===n||i.__emitterProxy&&i.__emitterProxy===n)&&t.eventsListeners[e].splice(a,1)})}),t):t},emit(...e){const n=this;if(!n.eventsListeners||n.destroyed)return n;if(!n.eventsListeners)return n;let t,i,a;"string"==typeof e[0]||Array.isArray(e[0])?(t=e[0],i=e.slice(1,e.length),a=n):(t=e[0].events,i=e[0].data,a=e[0].context||n),i.unshift(a);return(Array.isArray(t)?t:t.split(" ")).forEach(e=>{n.eventsAnyListeners&&n.eventsAnyListeners.length&&n.eventsAnyListeners.forEach(n=>{n.apply(a,[e,...i])}),n.eventsListeners&&n.eventsListeners[e]&&n.eventsListeners[e].forEach(e=>{e.apply(a,i)})}),n}};var SL={updateSize:function(){const e=this;let n,t;const i=e.$el;n=void 0!==e.params.width&&null!==e.params.width?e.params.width:i[0].clientWidth,t=void 0!==e.params.height&&null!==e.params.height?e.params.height:i[0].clientHeight,0===n&&e.isHorizontal()||0===t&&e.isVertical()||(n=n-parseInt(i.css("padding-left")||0,10)-parseInt(i.css("padding-right")||0,10),t=t-parseInt(i.css("padding-top")||0,10)-parseInt(i.css("padding-bottom")||0,10),Number.isNaN(n)&&(n=0),Number.isNaN(t)&&(t=0),Object.assign(e,{width:n,height:t,size:e.isHorizontal()?n:t}))},updateSlides:function(){const e=this;function n(n){return e.isHorizontal()?n:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[n]}function t(e,t){return parseFloat(e.getPropertyValue(n(t))||0)}const i=e.params,{$wrapperEl:a,size:o,rtlTranslate:r,wrongRTL:s}=e,u=e.virtual&&i.virtual.enabled,l=u?e.virtual.slides.length:e.slides.length,c=a.children(`.${e.params.slideClass}`),d=u?e.virtual.slides.length:c.length;let g=[];const h=[],p=[];let m=i.slidesOffsetBefore;"function"==typeof m&&(m=i.slidesOffsetBefore.call(e));let y=i.slidesOffsetAfter;"function"==typeof y&&(y=i.slidesOffsetAfter.call(e));const f=e.snapGrid.length,M=e.slidesGrid.length;let j=i.spaceBetween,b=-m,w=0,x=0;if(void 0===o)return;"string"==typeof j&&j.indexOf("%")>=0&&(j=parseFloat(j.replace("%",""))/100*o),e.virtualSize=-j,r?c.css({marginLeft:"",marginBottom:"",marginTop:""}):c.css({marginRight:"",marginBottom:"",marginTop:""}),i.centeredSlides&&i.cssMode&&(fL(e.wrapperEl,"--swiper-centered-offset-before",""),fL(e.wrapperEl,"--swiper-centered-offset-after",""));const L=i.grid&&i.grid.rows>1&&e.grid;let N;L&&e.grid.initSlides(d);const v="auto"===i.slidesPerView&&i.breakpoints&&Object.keys(i.breakpoints).filter(e=>void 0!==i.breakpoints[e].slidesPerView).length>0;for(let a=0;a<d;a+=1){N=0;const r=c.eq(a);if(L&&e.grid.updateSlide(a,r,d,n),"none"!==r.css("display")){if("auto"===i.slidesPerView){v&&(c[a].style[n("width")]="");const o=getComputedStyle(r[0]),s=r[0].style.transform,u=r[0].style.webkitTransform;if(s&&(r[0].style.transform="none"),u&&(r[0].style.webkitTransform="none"),i.roundLengths)N=e.isHorizontal()?r.outerWidth(!0):r.outerHeight(!0);else{const e=t(o,"width"),n=t(o,"padding-left"),i=t(o,"padding-right"),a=t(o,"margin-left"),s=t(o,"margin-right"),u=o.getPropertyValue("box-sizing");if(u&&"border-box"===u)N=e+a+s;else{const{clientWidth:t,offsetWidth:o}=r[0];N=e+n+i+a+s+(o-t)}}s&&(r[0].style.transform=s),u&&(r[0].style.webkitTransform=u),i.roundLengths&&(N=Math.floor(N))}else N=(o-(i.slidesPerView-1)*j)/i.slidesPerView,i.roundLengths&&(N=Math.floor(N)),c[a]&&(c[a].style[n("width")]=`${N}px`);c[a]&&(c[a].swiperSlideSize=N),p.push(N),i.centeredSlides?(b=b+N/2+w/2+j,0===w&&0!==a&&(b=b-o/2-j),0===a&&(b=b-o/2-j),Math.abs(b)<.001&&(b=0),i.roundLengths&&(b=Math.floor(b)),x%i.slidesPerGroup===0&&g.push(b),h.push(b)):(i.roundLengths&&(b=Math.floor(b)),(x-Math.min(e.params.slidesPerGroupSkip,x))%e.params.slidesPerGroup===0&&g.push(b),h.push(b),b=b+N+j),e.virtualSize+=N+j,w=N,x+=1}}if(e.virtualSize=Math.max(e.virtualSize,o)+y,r&&s&&("slide"===i.effect||"coverflow"===i.effect)&&a.css({width:`${e.virtualSize+i.spaceBetween}px`}),i.setWrapperSize&&a.css({[n("width")]:`${e.virtualSize+i.spaceBetween}px`}),L&&e.grid.updateWrapperSize(N,g,n),!i.centeredSlides){const n=[];for(let t=0;t<g.length;t+=1){let a=g[t];i.roundLengths&&(a=Math.floor(a)),g[t]<=e.virtualSize-o&&n.push(a)}g=n,Math.floor(e.virtualSize-o)-Math.floor(g[g.length-1])>1&&g.push(e.virtualSize-o)}if(0===g.length&&(g=[0]),0!==i.spaceBetween){const t=e.isHorizontal()&&r?"marginLeft":n("marginRight");c.filter((e,n)=>!i.cssMode||n!==c.length-1).css({[t]:`${j}px`})}if(i.centeredSlides&&i.centeredSlidesBounds){let e=0;p.forEach(n=>{e+=n+(i.spaceBetween?i.spaceBetween:0)}),e-=i.spaceBetween;const n=e-o;g=g.map(e=>e<0?-m:e>n?n+y:e)}if(i.centerInsufficientSlides){let e=0;if(p.forEach(n=>{e+=n+(i.spaceBetween?i.spaceBetween:0)}),e-=i.spaceBetween,e<o){const n=(o-e)/2;g.forEach((e,t)=>{g[t]=e-n}),h.forEach((e,t)=>{h[t]=e+n})}}if(Object.assign(e,{slides:c,snapGrid:g,slidesGrid:h,slidesSizesGrid:p}),i.centeredSlides&&i.cssMode&&!i.centeredSlidesBounds){fL(e.wrapperEl,"--swiper-centered-offset-before",-g[0]+"px"),fL(e.wrapperEl,"--swiper-centered-offset-after",e.size/2-p[p.length-1]/2+"px");const n=-e.snapGrid[0],t=-e.slidesGrid[0];e.snapGrid=e.snapGrid.map(e=>e+n),e.slidesGrid=e.slidesGrid.map(e=>e+t)}if(d!==l&&e.emit("slidesLengthChange"),g.length!==f&&(e.params.watchOverflow&&e.checkOverflow(),e.emit("snapGridLengthChange")),h.length!==M&&e.emit("slidesGridLengthChange"),i.watchSlidesProgress&&e.updateSlidesOffset(),!(u||i.cssMode||"slide"!==i.effect&&"fade"!==i.effect)){const n=`${i.containerModifierClass}backface-hidden`,t=e.$el.hasClass(n);d<=i.maxBackfaceHiddenSlides?t||e.$el.addClass(n):t&&e.$el.removeClass(n)}},updateAutoHeight:function(e){const n=this,t=[],i=n.virtual&&n.params.virtual.enabled;let a,o=0;"number"==typeof e?n.setTransition(e):!0===e&&n.setTransition(n.params.speed);const r=e=>i?n.slides.filter(n=>parseInt(n.getAttribute("data-swiper-slide-index"),10)===e)[0]:n.slides.eq(e)[0];if("auto"!==n.params.slidesPerView&&n.params.slidesPerView>1)if(n.params.centeredSlides)(n.visibleSlides||lL([])).each(e=>{t.push(e)});else for(a=0;a<Math.ceil(n.params.slidesPerView);a+=1){const e=n.activeIndex+a;if(e>n.slides.length&&!i)break;t.push(r(e))}else t.push(r(n.activeIndex));for(a=0;a<t.length;a+=1)if(void 0!==t[a]){const e=t[a].offsetHeight;o=e>o?e:o}(o||0===o)&&n.$wrapperEl.css("height",`${o}px`)},updateSlidesOffset:function(){const e=this,n=e.slides;for(let t=0;t<n.length;t+=1)n[t].swiperSlideOffset=e.isHorizontal()?n[t].offsetLeft:n[t].offsetTop},updateSlidesProgress:function(e=this&&this.translate||0){const n=this,t=n.params,{slides:i,rtlTranslate:a,snapGrid:o}=n;if(0===i.length)return;void 0===i[0].swiperSlideOffset&&n.updateSlidesOffset();let r=-e;a&&(r=e),i.removeClass(t.slideVisibleClass),n.visibleSlidesIndexes=[],n.visibleSlides=[];for(let e=0;e<i.length;e+=1){const s=i[e];let u=s.swiperSlideOffset;t.cssMode&&t.centeredSlides&&(u-=i[0].swiperSlideOffset);const l=(r+(t.centeredSlides?n.minTranslate():0)-u)/(s.swiperSlideSize+t.spaceBetween),c=(r-o[0]+(t.centeredSlides?n.minTranslate():0)-u)/(s.swiperSlideSize+t.spaceBetween),d=-(r-u),g=d+n.slidesSizesGrid[e];(d>=0&&d<n.size-1||g>1&&g<=n.size||d<=0&&g>=n.size)&&(n.visibleSlides.push(s),n.visibleSlidesIndexes.push(e),i.eq(e).addClass(t.slideVisibleClass)),s.progress=a?-l:l,s.originalProgress=a?-c:c}n.visibleSlides=lL(n.visibleSlides)},updateProgress:function(e){const n=this;if(void 0===e){const t=n.rtlTranslate?-1:1;e=n&&n.translate&&n.translate*t||0}const t=n.params,i=n.maxTranslate()-n.minTranslate();let{progress:a,isBeginning:o,isEnd:r}=n;const s=o,u=r;0===i?(a=0,o=!0,r=!0):(a=(e-n.minTranslate())/i,o=a<=0,r=a>=1),Object.assign(n,{progress:a,isBeginning:o,isEnd:r}),(t.watchSlidesProgress||t.centeredSlides&&t.autoHeight)&&n.updateSlidesProgress(e),o&&!s&&n.emit("reachBeginning toEdge"),r&&!u&&n.emit("reachEnd toEdge"),(s&&!o||u&&!r)&&n.emit("fromEdge"),n.emit("progress",a)},updateSlidesClasses:function(){const e=this,{slides:n,params:t,$wrapperEl:i,activeIndex:a,realIndex:o}=e,r=e.virtual&&t.virtual.enabled;let s;n.removeClass(`${t.slideActiveClass} ${t.slideNextClass} ${t.slidePrevClass} ${t.slideDuplicateActiveClass} ${t.slideDuplicateNextClass} ${t.slideDuplicatePrevClass}`),s=r?e.$wrapperEl.find(`.${t.slideClass}[data-swiper-slide-index="${a}"]`):n.eq(a),s.addClass(t.slideActiveClass),t.loop&&(s.hasClass(t.slideDuplicateClass)?i.children(`.${t.slideClass}:not(.${t.slideDuplicateClass})[data-swiper-slide-index="${o}"]`).addClass(t.slideDuplicateActiveClass):i.children(`.${t.slideClass}.${t.slideDuplicateClass}[data-swiper-slide-index="${o}"]`).addClass(t.slideDuplicateActiveClass));let u=s.nextAll(`.${t.slideClass}`).eq(0).addClass(t.slideNextClass);t.loop&&0===u.length&&(u=n.eq(0),u.addClass(t.slideNextClass));let l=s.prevAll(`.${t.slideClass}`).eq(0).addClass(t.slidePrevClass);t.loop&&0===l.length&&(l=n.eq(-1),l.addClass(t.slidePrevClass)),t.loop&&(u.hasClass(t.slideDuplicateClass)?i.children(`.${t.slideClass}:not(.${t.slideDuplicateClass})[data-swiper-slide-index="${u.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicateNextClass):i.children(`.${t.slideClass}.${t.slideDuplicateClass}[data-swiper-slide-index="${u.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicateNextClass),l.hasClass(t.slideDuplicateClass)?i.children(`.${t.slideClass}:not(.${t.slideDuplicateClass})[data-swiper-slide-index="${l.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicatePrevClass):i.children(`.${t.slideClass}.${t.slideDuplicateClass}[data-swiper-slide-index="${l.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicatePrevClass)),e.emitSlidesClasses()},updateActiveIndex:function(e){const n=this,t=n.rtlTranslate?n.translate:-n.translate,{slidesGrid:i,snapGrid:a,params:o,activeIndex:r,realIndex:s,snapIndex:u}=n;let l,c=e;if(void 0===c){for(let e=0;e<i.length;e+=1)void 0!==i[e+1]?t>=i[e]&&t<i[e+1]-(i[e+1]-i[e])/2?c=e:t>=i[e]&&t<i[e+1]&&(c=e+1):t>=i[e]&&(c=e);o.normalizeSlideIndex&&(c<0||void 0===c)&&(c=0)}if(a.indexOf(t)>=0)l=a.indexOf(t);else{const e=Math.min(o.slidesPerGroupSkip,c);l=e+Math.floor((c-e)/o.slidesPerGroup)}if(l>=a.length&&(l=a.length-1),c===r)return void(l!==u&&(n.snapIndex=l,n.emit("snapIndexChange")));const d=parseInt(n.slides.eq(c).attr("data-swiper-slide-index")||c,10);Object.assign(n,{snapIndex:l,realIndex:d,previousIndex:r,activeIndex:c}),n.emit("activeIndexChange"),n.emit("snapIndexChange"),s!==d&&n.emit("realIndexChange"),(n.initialized||n.params.runCallbacksOnInit)&&n.emit("slideChange")},updateClickedSlide:function(e){const n=this,t=n.params,i=lL(e).closest(`.${t.slideClass}`)[0];let a,o=!1;if(i)for(let e=0;e<n.slides.length;e+=1)if(n.slides[e]===i){o=!0,a=e;break}if(!i||!o)return n.clickedSlide=void 0,void(n.clickedIndex=void 0);n.clickedSlide=i,n.virtual&&n.params.virtual.enabled?n.clickedIndex=parseInt(lL(i).attr("data-swiper-slide-index"),10):n.clickedIndex=a,t.slideToClickedSlide&&void 0!==n.clickedIndex&&n.clickedIndex!==n.activeIndex&&n.slideToClickedSlide()}};var TL={getTranslate:function(e=(this.isHorizontal()?"x":"y")){const{params:n,rtlTranslate:t,translate:i,$wrapperEl:a}=this;if(n.virtualTranslate)return t?-i:i;if(n.cssMode)return i;let o=hL(a[0],e);return t&&(o=-o),o||0},setTranslate:function(e,n){const t=this,{rtlTranslate:i,params:a,$wrapperEl:o,wrapperEl:r,progress:s}=t;let u,l=0,c=0;t.isHorizontal()?l=i?-e:e:c=e,a.roundLengths&&(l=Math.floor(l),c=Math.floor(c)),a.cssMode?r[t.isHorizontal()?"scrollLeft":"scrollTop"]=t.isHorizontal()?-l:-c:a.virtualTranslate||o.transform(`translate3d(${l}px, ${c}px, 0px)`),t.previousTranslate=t.translate,t.translate=t.isHorizontal()?l:c;const d=t.maxTranslate()-t.minTranslate();u=0===d?0:(e-t.minTranslate())/d,u!==s&&t.updateProgress(e),t.emit("setTranslate",t.translate,n)},minTranslate:function(){return-this.snapGrid[0]},maxTranslate:function(){return-this.snapGrid[this.snapGrid.length-1]},translateTo:function(e=0,n=this.params.speed,t=!0,i=!0,a){const o=this,{params:r,wrapperEl:s}=o;if(o.animating&&r.preventInteractionOnTransition)return!1;const u=o.minTranslate(),l=o.maxTranslate();let c;if(c=i&&e>u?u:i&&e<l?l:e,o.updateProgress(c),r.cssMode){const e=o.isHorizontal();if(0===n)s[e?"scrollLeft":"scrollTop"]=-c;else{if(!o.support.smoothScroll)return ML({swiper:o,targetPosition:-c,side:e?"left":"top"}),!0;s.scrollTo({[e?"left":"top"]:-c,behavior:"smooth"})}return!0}return 0===n?(o.setTransition(0),o.setTranslate(c),t&&(o.emit("beforeTransitionStart",n,a),o.emit("transitionEnd"))):(o.setTransition(n),o.setTranslate(c),t&&(o.emit("beforeTransitionStart",n,a),o.emit("transitionStart")),o.animating||(o.animating=!0,o.onTranslateToWrapperTransitionEnd||(o.onTranslateToWrapperTransitionEnd=function(e){o&&!o.destroyed&&e.target===this&&(o.$wrapperEl[0].removeEventListener("transitionend",o.onTranslateToWrapperTransitionEnd),o.$wrapperEl[0].removeEventListener("webkitTransitionEnd",o.onTranslateToWrapperTransitionEnd),o.onTranslateToWrapperTransitionEnd=null,delete o.onTranslateToWrapperTransitionEnd,t&&o.emit("transitionEnd"))}),o.$wrapperEl[0].addEventListener("transitionend",o.onTranslateToWrapperTransitionEnd),o.$wrapperEl[0].addEventListener("webkitTransitionEnd",o.onTranslateToWrapperTransitionEnd))),!0}};function DL({swiper:e,runCallbacks:n,direction:t,step:i}){const{activeIndex:a,previousIndex:o}=e;let r=t;if(r||(r=a>o?"next":a<o?"prev":"reset"),e.emit(`transition${i}`),n&&a!==o){if("reset"===r)return void e.emit(`slideResetTransition${i}`);e.emit(`slideChangeTransition${i}`),"next"===r?e.emit(`slideNextTransition${i}`):e.emit(`slidePrevTransition${i}`)}}var kL={slideTo:function(e=0,n=this.params.speed,t=!0,i,a){if("number"!=typeof e&&"string"!=typeof e)throw new Error(`The 'index' argument cannot have type other than 'number' or 'string'. [${typeof e}] given.`);if("string"==typeof e){const n=parseInt(e,10);if(!isFinite(n))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=n}const o=this;let r=e;r<0&&(r=0);const{params:s,snapGrid:u,slidesGrid:l,previousIndex:c,activeIndex:d,rtlTranslate:g,wrapperEl:h,enabled:p}=o;if(o.animating&&s.preventInteractionOnTransition||!p&&!i&&!a)return!1;const m=Math.min(o.params.slidesPerGroupSkip,r);let y=m+Math.floor((r-m)/o.params.slidesPerGroup);y>=u.length&&(y=u.length-1);const f=-u[y];if(s.normalizeSlideIndex)for(let e=0;e<l.length;e+=1){const n=-Math.floor(100*f),t=Math.floor(100*l[e]),i=Math.floor(100*l[e+1]);void 0!==l[e+1]?n>=t&&n<i-(i-t)/2?r=e:n>=t&&n<i&&(r=e+1):n>=t&&(r=e)}if(o.initialized&&r!==d){if(!o.allowSlideNext&&f<o.translate&&f<o.minTranslate())return!1;if(!o.allowSlidePrev&&f>o.translate&&f>o.maxTranslate()&&(d||0)!==r)return!1}let M;if(r!==(c||0)&&t&&o.emit("beforeSlideChangeStart"),o.updateProgress(f),M=r>d?"next":r<d?"prev":"reset",g&&-f===o.translate||!g&&f===o.translate)return o.updateActiveIndex(r),s.autoHeight&&o.updateAutoHeight(),o.updateSlidesClasses(),"slide"!==s.effect&&o.setTranslate(f),"reset"!==M&&(o.transitionStart(t,M),o.transitionEnd(t,M)),!1;if(s.cssMode){const e=o.isHorizontal(),t=g?f:-f;if(0===n){const n=o.virtual&&o.params.virtual.enabled;n&&(o.wrapperEl.style.scrollSnapType="none",o._immediateVirtual=!0),h[e?"scrollLeft":"scrollTop"]=t,n&&requestAnimationFrame(()=>{o.wrapperEl.style.scrollSnapType="",o._swiperImmediateVirtual=!1})}else{if(!o.support.smoothScroll)return ML({swiper:o,targetPosition:t,side:e?"left":"top"}),!0;h.scrollTo({[e?"left":"top"]:t,behavior:"smooth"})}return!0}return o.setTransition(n),o.setTranslate(f),o.updateActiveIndex(r),o.updateSlidesClasses(),o.emit("beforeTransitionStart",n,i),o.transitionStart(t,M),0===n?o.transitionEnd(t,M):o.animating||(o.animating=!0,o.onSlideToWrapperTransitionEnd||(o.onSlideToWrapperTransitionEnd=function(e){o&&!o.destroyed&&e.target===this&&(o.$wrapperEl[0].removeEventListener("transitionend",o.onSlideToWrapperTransitionEnd),o.$wrapperEl[0].removeEventListener("webkitTransitionEnd",o.onSlideToWrapperTransitionEnd),o.onSlideToWrapperTransitionEnd=null,delete o.onSlideToWrapperTransitionEnd,o.transitionEnd(t,M))}),o.$wrapperEl[0].addEventListener("transitionend",o.onSlideToWrapperTransitionEnd),o.$wrapperEl[0].addEventListener("webkitTransitionEnd",o.onSlideToWrapperTransitionEnd)),!0},slideToLoop:function(e=0,n=this.params.speed,t=!0,i){if("string"==typeof e){const n=parseInt(e,10);if(!isFinite(n))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=n}const a=this;let o=e;return a.params.loop&&(o+=a.loopedSlides),a.slideTo(o,n,t,i)},slideNext:function(e=this.params.speed,n=!0,t){const i=this,{animating:a,enabled:o,params:r}=i;if(!o)return i;let s=r.slidesPerGroup;"auto"===r.slidesPerView&&1===r.slidesPerGroup&&r.slidesPerGroupAuto&&(s=Math.max(i.slidesPerViewDynamic("current",!0),1));const u=i.activeIndex<r.slidesPerGroupSkip?1:s;if(r.loop){if(a&&r.loopPreventsSlide)return!1;i.loopFix(),i._clientLeft=i.$wrapperEl[0].clientLeft}return r.rewind&&i.isEnd?i.slideTo(0,e,n,t):i.slideTo(i.activeIndex+u,e,n,t)},slidePrev:function(e=this.params.speed,n=!0,t){const i=this,{params:a,animating:o,snapGrid:r,slidesGrid:s,rtlTranslate:u,enabled:l}=i;if(!l)return i;if(a.loop){if(o&&a.loopPreventsSlide)return!1;i.loopFix(),i._clientLeft=i.$wrapperEl[0].clientLeft}function c(e){return e<0?-Math.floor(Math.abs(e)):Math.floor(e)}const d=c(u?i.translate:-i.translate),g=r.map(e=>c(e));let h=r[g.indexOf(d)-1];if(void 0===h&&a.cssMode){let e;r.forEach((n,t)=>{d>=n&&(e=t)}),void 0!==e&&(h=r[e>0?e-1:e])}let p=0;if(void 0!==h&&(p=s.indexOf(h),p<0&&(p=i.activeIndex-1),"auto"===a.slidesPerView&&1===a.slidesPerGroup&&a.slidesPerGroupAuto&&(p=p-i.slidesPerViewDynamic("previous",!0)+1,p=Math.max(p,0))),a.rewind&&i.isBeginning){const a=i.params.virtual&&i.params.virtual.enabled&&i.virtual?i.virtual.slides.length-1:i.slides.length-1;return i.slideTo(a,e,n,t)}return i.slideTo(p,e,n,t)},slideReset:function(e=this.params.speed,n=!0,t){return this.slideTo(this.activeIndex,e,n,t)},slideToClosest:function(e=this.params.speed,n=!0,t,i=.5){const a=this;let o=a.activeIndex;const r=Math.min(a.params.slidesPerGroupSkip,o),s=r+Math.floor((o-r)/a.params.slidesPerGroup),u=a.rtlTranslate?a.translate:-a.translate;if(u>=a.snapGrid[s]){const e=a.snapGrid[s];u-e>(a.snapGrid[s+1]-e)*i&&(o+=a.params.slidesPerGroup)}else{const e=a.snapGrid[s-1];u-e<=(a.snapGrid[s]-e)*i&&(o-=a.params.slidesPerGroup)}return o=Math.max(o,0),o=Math.min(o,a.slidesGrid.length-1),a.slideTo(o,e,n,t)},slideToClickedSlide:function(){const e=this,{params:n,$wrapperEl:t}=e,i="auto"===n.slidesPerView?e.slidesPerViewDynamic():n.slidesPerView;let a,o=e.clickedIndex;if(n.loop){if(e.animating)return;a=parseInt(lL(e.clickedSlide).attr("data-swiper-slide-index"),10),n.centeredSlides?o<e.loopedSlides-i/2||o>e.slides.length-e.loopedSlides+i/2?(e.loopFix(),o=t.children(`.${n.slideClass}[data-swiper-slide-index="${a}"]:not(.${n.slideDuplicateClass})`).eq(0).index(),dL(()=>{e.slideTo(o)})):e.slideTo(o):o>e.slides.length-i?(e.loopFix(),o=t.children(`.${n.slideClass}[data-swiper-slide-index="${a}"]:not(.${n.slideDuplicateClass})`).eq(0).index(),dL(()=>{e.slideTo(o)})):e.slideTo(o)}else e.slideTo(o)}};var CL={loopCreate:function(){const e=this,n=iL(),{params:t,$wrapperEl:i}=e,a=i.children().length>0?lL(i.children()[0].parentNode):i;a.children(`.${t.slideClass}.${t.slideDuplicateClass}`).remove();let o=a.children(`.${t.slideClass}`);if(t.loopFillGroupWithBlank){const e=t.slidesPerGroup-o.length%t.slidesPerGroup;if(e!==t.slidesPerGroup){for(let i=0;i<e;i+=1){const e=lL(n.createElement("div")).addClass(`${t.slideClass} ${t.slideBlankClass}`);a.append(e)}o=a.children(`.${t.slideClass}`)}}"auto"!==t.slidesPerView||t.loopedSlides||(t.loopedSlides=o.length),e.loopedSlides=Math.ceil(parseFloat(t.loopedSlides||t.slidesPerView,10)),e.loopedSlides+=t.loopAdditionalSlides,e.loopedSlides>o.length&&e.params.loopedSlidesLimit&&(e.loopedSlides=o.length);const r=[],s=[];o.each((e,n)=>{lL(e).attr("data-swiper-slide-index",n)});for(let n=0;n<e.loopedSlides;n+=1){const e=n-Math.floor(n/o.length)*o.length;s.push(o.eq(e)[0]),r.unshift(o.eq(o.length-e-1)[0])}for(let e=0;e<s.length;e+=1)a.append(lL(s[e].cloneNode(!0)).addClass(t.slideDuplicateClass));for(let e=r.length-1;e>=0;e-=1)a.prepend(lL(r[e].cloneNode(!0)).addClass(t.slideDuplicateClass))},loopFix:function(){const e=this;e.emit("beforeLoopFix");const{activeIndex:n,slides:t,loopedSlides:i,allowSlidePrev:a,allowSlideNext:o,snapGrid:r,rtlTranslate:s}=e;let u;e.allowSlidePrev=!0,e.allowSlideNext=!0;const l=-r[n]-e.getTranslate();if(n<i){u=t.length-3*i+n,u+=i;e.slideTo(u,0,!1,!0)&&0!==l&&e.setTranslate((s?-e.translate:e.translate)-l)}else if(n>=t.length-i){u=-t.length+n+i,u+=i;e.slideTo(u,0,!1,!0)&&0!==l&&e.setTranslate((s?-e.translate:e.translate)-l)}e.allowSlidePrev=a,e.allowSlideNext=o,e.emit("loopFix")},loopDestroy:function(){const{$wrapperEl:e,params:n,slides:t}=this;e.children(`.${n.slideClass}.${n.slideDuplicateClass},.${n.slideClass}.${n.slideBlankClass}`).remove(),t.removeAttr("data-swiper-slide-index")}};var EL={setGrabCursor:function(e){const n=this;if(n.support.touch||!n.params.simulateTouch||n.params.watchOverflow&&n.isLocked||n.params.cssMode)return;const t="container"===n.params.touchEventsTarget?n.el:n.wrapperEl;t.style.cursor="move",t.style.cursor=e?"grabbing":"grab"},unsetGrabCursor:function(){const e=this;e.support.touch||e.params.watchOverflow&&e.isLocked||e.params.cssMode||(e["container"===e.params.touchEventsTarget?"el":"wrapperEl"].style.cursor="")}};function zL(e){const n=this,t=iL(),i=oL(),a=n.touchEventsData,{params:o,touches:r,enabled:s}=n;if(!s)return;if(n.animating&&o.preventInteractionOnTransition)return;!n.animating&&o.cssMode&&o.loop&&n.loopFix();let u=e;u.originalEvent&&(u=u.originalEvent);let l=lL(u.target);if("wrapper"===o.touchEventsTarget&&!l.closest(n.wrapperEl).length)return;if(a.isTouchEvent="touchstart"===u.type,!a.isTouchEvent&&"which"in u&&3===u.which)return;if(!a.isTouchEvent&&"button"in u&&u.button>0)return;if(a.isTouched&&a.isMoved)return;const c=!!o.noSwipingClass&&""!==o.noSwipingClass,d=e.composedPath?e.composedPath():e.path;c&&u.target&&u.target.shadowRoot&&d&&(l=lL(d[0]));const g=o.noSwipingSelector?o.noSwipingSelector:`.${o.noSwipingClass}`,h=!(!u.target||!u.target.shadowRoot);if(o.noSwiping&&(h?function(e,n=this){return function n(t){if(!t||t===iL()||t===oL())return null;t.assignedSlot&&(t=t.assignedSlot);const i=t.closest(e);return i||t.getRootNode?i||n(t.getRootNode().host):null}(n)}(g,l[0]):l.closest(g)[0]))return void(n.allowClick=!0);if(o.swipeHandler&&!l.closest(o.swipeHandler)[0])return;r.currentX="touchstart"===u.type?u.targetTouches[0].pageX:u.pageX,r.currentY="touchstart"===u.type?u.targetTouches[0].pageY:u.pageY;const p=r.currentX,m=r.currentY,y=o.edgeSwipeDetection||o.iOSEdgeSwipeDetection,f=o.edgeSwipeThreshold||o.iOSEdgeSwipeThreshold;if(y&&(p<=f||p>=i.innerWidth-f)){if("prevent"!==y)return;e.preventDefault()}if(Object.assign(a,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),r.startX=p,r.startY=m,a.touchStartTime=gL(),n.allowClick=!0,n.updateSize(),n.swipeDirection=void 0,o.threshold>0&&(a.allowThresholdMove=!1),"touchstart"!==u.type){let e=!0;l.is(a.focusableElements)&&(e=!1,"SELECT"===l[0].nodeName&&(a.isTouched=!1)),t.activeElement&&lL(t.activeElement).is(a.focusableElements)&&t.activeElement!==l[0]&&t.activeElement.blur();const i=e&&n.allowTouchMove&&o.touchStartPreventDefault;!o.touchStartForcePreventDefault&&!i||l[0].isContentEditable||u.preventDefault()}n.params.freeMode&&n.params.freeMode.enabled&&n.freeMode&&n.animating&&!o.cssMode&&n.freeMode.onTouchStart(),n.emit("touchStart",u)}function IL(e){const n=iL(),t=this,i=t.touchEventsData,{params:a,touches:o,rtlTranslate:r,enabled:s}=t;if(!s)return;let u=e;if(u.originalEvent&&(u=u.originalEvent),!i.isTouched)return void(i.startMoving&&i.isScrolling&&t.emit("touchMoveOpposite",u));if(i.isTouchEvent&&"touchmove"!==u.type)return;const l="touchmove"===u.type&&u.targetTouches&&(u.targetTouches[0]||u.changedTouches[0]),c="touchmove"===u.type?l.pageX:u.pageX,d="touchmove"===u.type?l.pageY:u.pageY;if(u.preventedByNestedSwiper)return o.startX=c,void(o.startY=d);if(!t.allowTouchMove)return lL(u.target).is(i.focusableElements)||(t.allowClick=!1),void(i.isTouched&&(Object.assign(o,{startX:c,startY:d,currentX:c,currentY:d}),i.touchStartTime=gL()));if(i.isTouchEvent&&a.touchReleaseOnEdges&&!a.loop)if(t.isVertical()){if(d<o.startY&&t.translate<=t.maxTranslate()||d>o.startY&&t.translate>=t.minTranslate())return i.isTouched=!1,void(i.isMoved=!1)}else if(c<o.startX&&t.translate<=t.maxTranslate()||c>o.startX&&t.translate>=t.minTranslate())return;if(i.isTouchEvent&&n.activeElement&&u.target===n.activeElement&&lL(u.target).is(i.focusableElements))return i.isMoved=!0,void(t.allowClick=!1);if(i.allowTouchCallbacks&&t.emit("touchMove",u),u.targetTouches&&u.targetTouches.length>1)return;o.currentX=c,o.currentY=d;const g=o.currentX-o.startX,h=o.currentY-o.startY;if(t.params.threshold&&Math.sqrt(g**2+h**2)<t.params.threshold)return;if(void 0===i.isScrolling){let e;t.isHorizontal()&&o.currentY===o.startY||t.isVertical()&&o.currentX===o.startX?i.isScrolling=!1:g*g+h*h>=25&&(e=180*Math.atan2(Math.abs(h),Math.abs(g))/Math.PI,i.isScrolling=t.isHorizontal()?e>a.touchAngle:90-e>a.touchAngle)}if(i.isScrolling&&t.emit("touchMoveOpposite",u),void 0===i.startMoving&&(o.currentX===o.startX&&o.currentY===o.startY||(i.startMoving=!0)),i.isScrolling)return void(i.isTouched=!1);if(!i.startMoving)return;t.allowClick=!1,!a.cssMode&&u.cancelable&&u.preventDefault(),a.touchMoveStopPropagation&&!a.nested&&u.stopPropagation(),i.isMoved||(a.loop&&!a.cssMode&&t.loopFix(),i.startTranslate=t.getTranslate(),t.setTransition(0),t.animating&&t.$wrapperEl.trigger("webkitTransitionEnd transitionend"),i.allowMomentumBounce=!1,!a.grabCursor||!0!==t.allowSlideNext&&!0!==t.allowSlidePrev||t.setGrabCursor(!0),t.emit("sliderFirstMove",u)),t.emit("sliderMove",u),i.isMoved=!0;let p=t.isHorizontal()?g:h;o.diff=p,p*=a.touchRatio,r&&(p=-p),t.swipeDirection=p>0?"prev":"next",i.currentTranslate=p+i.startTranslate;let m=!0,y=a.resistanceRatio;if(a.touchReleaseOnEdges&&(y=0),p>0&&i.currentTranslate>t.minTranslate()?(m=!1,a.resistance&&(i.currentTranslate=t.minTranslate()-1+(-t.minTranslate()+i.startTranslate+p)**y)):p<0&&i.currentTranslate<t.maxTranslate()&&(m=!1,a.resistance&&(i.currentTranslate=t.maxTranslate()+1-(t.maxTranslate()-i.startTranslate-p)**y)),m&&(u.preventedByNestedSwiper=!0),!t.allowSlideNext&&"next"===t.swipeDirection&&i.currentTranslate<i.startTranslate&&(i.currentTranslate=i.startTranslate),!t.allowSlidePrev&&"prev"===t.swipeDirection&&i.currentTranslate>i.startTranslate&&(i.currentTranslate=i.startTranslate),t.allowSlidePrev||t.allowSlideNext||(i.currentTranslate=i.startTranslate),a.threshold>0){if(!(Math.abs(p)>a.threshold||i.allowThresholdMove))return void(i.currentTranslate=i.startTranslate);if(!i.allowThresholdMove)return i.allowThresholdMove=!0,o.startX=o.currentX,o.startY=o.currentY,i.currentTranslate=i.startTranslate,void(o.diff=t.isHorizontal()?o.currentX-o.startX:o.currentY-o.startY)}a.followFinger&&!a.cssMode&&((a.freeMode&&a.freeMode.enabled&&t.freeMode||a.watchSlidesProgress)&&(t.updateActiveIndex(),t.updateSlidesClasses()),t.params.freeMode&&a.freeMode.enabled&&t.freeMode&&t.freeMode.onTouchMove(),t.updateProgress(i.currentTranslate),t.setTranslate(i.currentTranslate))}function AL(e){const n=this,t=n.touchEventsData,{params:i,touches:a,rtlTranslate:o,slidesGrid:r,enabled:s}=n;if(!s)return;let u=e;if(u.originalEvent&&(u=u.originalEvent),t.allowTouchCallbacks&&n.emit("touchEnd",u),t.allowTouchCallbacks=!1,!t.isTouched)return t.isMoved&&i.grabCursor&&n.setGrabCursor(!1),t.isMoved=!1,void(t.startMoving=!1);i.grabCursor&&t.isMoved&&t.isTouched&&(!0===n.allowSlideNext||!0===n.allowSlidePrev)&&n.setGrabCursor(!1);const l=gL(),c=l-t.touchStartTime;if(n.allowClick){const e=u.path||u.composedPath&&u.composedPath();n.updateClickedSlide(e&&e[0]||u.target),n.emit("tap click",u),c<300&&l-t.lastClickTime<300&&n.emit("doubleTap doubleClick",u)}if(t.lastClickTime=gL(),dL(()=>{n.destroyed||(n.allowClick=!0)}),!t.isTouched||!t.isMoved||!n.swipeDirection||0===a.diff||t.currentTranslate===t.startTranslate)return t.isTouched=!1,t.isMoved=!1,void(t.startMoving=!1);let d;if(t.isTouched=!1,t.isMoved=!1,t.startMoving=!1,d=i.followFinger?o?n.translate:-n.translate:-t.currentTranslate,i.cssMode)return;if(n.params.freeMode&&i.freeMode.enabled)return void n.freeMode.onTouchEnd({currentPos:d});let g=0,h=n.slidesSizesGrid[0];for(let e=0;e<r.length;e+=e<i.slidesPerGroupSkip?1:i.slidesPerGroup){const n=e<i.slidesPerGroupSkip-1?1:i.slidesPerGroup;void 0!==r[e+n]?d>=r[e]&&d<r[e+n]&&(g=e,h=r[e+n]-r[e]):d>=r[e]&&(g=e,h=r[r.length-1]-r[r.length-2])}let p=null,m=null;i.rewind&&(n.isBeginning?m=n.params.virtual&&n.params.virtual.enabled&&n.virtual?n.virtual.slides.length-1:n.slides.length-1:n.isEnd&&(p=0));const y=(d-r[g])/h,f=g<i.slidesPerGroupSkip-1?1:i.slidesPerGroup;if(c>i.longSwipesMs){if(!i.longSwipes)return void n.slideTo(n.activeIndex);"next"===n.swipeDirection&&(y>=i.longSwipesRatio?n.slideTo(i.rewind&&n.isEnd?p:g+f):n.slideTo(g)),"prev"===n.swipeDirection&&(y>1-i.longSwipesRatio?n.slideTo(g+f):null!==m&&y<0&&Math.abs(y)>i.longSwipesRatio?n.slideTo(m):n.slideTo(g))}else{if(!i.shortSwipes)return void n.slideTo(n.activeIndex);n.navigation&&(u.target===n.navigation.nextEl||u.target===n.navigation.prevEl)?u.target===n.navigation.nextEl?n.slideTo(g+f):n.slideTo(g):("next"===n.swipeDirection&&n.slideTo(null!==p?p:g+f),"prev"===n.swipeDirection&&n.slideTo(null!==m?m:g))}}function YL(){const e=this,{params:n,el:t}=e;if(t&&0===t.offsetWidth)return;n.breakpoints&&e.setBreakpoint();const{allowSlideNext:i,allowSlidePrev:a,snapGrid:o}=e;e.allowSlideNext=!0,e.allowSlidePrev=!0,e.updateSize(),e.updateSlides(),e.updateSlidesClasses(),("auto"===n.slidesPerView||n.slidesPerView>1)&&e.isEnd&&!e.isBeginning&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),e.autoplay&&e.autoplay.running&&e.autoplay.paused&&e.autoplay.run(),e.allowSlidePrev=a,e.allowSlideNext=i,e.params.watchOverflow&&o!==e.snapGrid&&e.checkOverflow()}function OL(e){const n=this;n.enabled&&(n.allowClick||(n.params.preventClicks&&e.preventDefault(),n.params.preventClicksPropagation&&n.animating&&(e.stopPropagation(),e.stopImmediatePropagation())))}function QL(){const e=this,{wrapperEl:n,rtlTranslate:t,enabled:i}=e;if(!i)return;let a;e.previousTranslate=e.translate,e.isHorizontal()?e.translate=-n.scrollLeft:e.translate=-n.scrollTop,0===e.translate&&(e.translate=0),e.updateActiveIndex(),e.updateSlidesClasses();const o=e.maxTranslate()-e.minTranslate();a=0===o?0:(e.translate-e.minTranslate())/o,a!==e.progress&&e.updateProgress(t?-e.translate:e.translate),e.emit("setTranslate",e.translate,!1)}let ZL=!1;function _L(){}const BL=(e,n)=>{const t=iL(),{params:i,touchEvents:a,el:o,wrapperEl:r,device:s,support:u}=e,l=!!i.nested,c="on"===n?"addEventListener":"removeEventListener",d=n;if(u.touch){const n=!("touchstart"!==a.start||!u.passiveListener||!i.passiveListeners)&&{passive:!0,capture:!1};o[c](a.start,e.onTouchStart,n),o[c](a.move,e.onTouchMove,u.passiveListener?{passive:!1,capture:l}:l),o[c](a.end,e.onTouchEnd,n),a.cancel&&o[c](a.cancel,e.onTouchEnd,n)}else o[c](a.start,e.onTouchStart,!1),t[c](a.move,e.onTouchMove,l),t[c](a.end,e.onTouchEnd,!1);(i.preventClicks||i.preventClicksPropagation)&&o[c]("click",e.onClick,!0),i.cssMode&&r[c]("scroll",e.onScroll),i.updateOnWindowResize?e[d](s.ios||s.android?"resize orientationchange observerUpdate":"resize observerUpdate",YL,!0):e[d]("observerUpdate",YL,!0)};var FL={attachEvents:function(){const e=this,n=iL(),{params:t,support:i}=e;e.onTouchStart=zL.bind(e),e.onTouchMove=IL.bind(e),e.onTouchEnd=AL.bind(e),t.cssMode&&(e.onScroll=QL.bind(e)),e.onClick=OL.bind(e),i.touch&&!ZL&&(n.addEventListener("touchstart",_L),ZL=!0),BL(e,"on")},detachEvents:function(){BL(this,"off")}};const XL=(e,n)=>e.grid&&n.grid&&n.grid.rows>1;var UL={setBreakpoint:function(){const e=this,{activeIndex:n,initialized:t,loopedSlides:i=0,params:a,$el:o}=e,r=a.breakpoints;if(!r||r&&0===Object.keys(r).length)return;const s=e.getBreakpoint(r,e.params.breakpointsBase,e.el);if(!s||e.currentBreakpoint===s)return;const u=(s in r?r[s]:void 0)||e.originalParams,l=XL(e,a),c=XL(e,u),d=a.enabled;l&&!c?(o.removeClass(`${a.containerModifierClass}grid ${a.containerModifierClass}grid-column`),e.emitContainerClasses()):!l&&c&&(o.addClass(`${a.containerModifierClass}grid`),(u.grid.fill&&"column"===u.grid.fill||!u.grid.fill&&"column"===a.grid.fill)&&o.addClass(`${a.containerModifierClass}grid-column`),e.emitContainerClasses()),["navigation","pagination","scrollbar"].forEach(n=>{const t=a[n]&&a[n].enabled,i=u[n]&&u[n].enabled;t&&!i&&e[n].disable(),!t&&i&&e[n].enable()});const g=u.direction&&u.direction!==a.direction,h=a.loop&&(u.slidesPerView!==a.slidesPerView||g);g&&t&&e.changeDirection(),yL(e.params,u);const p=e.params.enabled;Object.assign(e,{allowTouchMove:e.params.allowTouchMove,allowSlideNext:e.params.allowSlideNext,allowSlidePrev:e.params.allowSlidePrev}),d&&!p?e.disable():!d&&p&&e.enable(),e.currentBreakpoint=s,e.emit("_beforeBreakpoint",u),h&&t&&(e.loopDestroy(),e.loopCreate(),e.updateSlides(),e.slideTo(n-i+e.loopedSlides,0,!1)),e.emit("breakpoint",u)},getBreakpoint:function(e,n="window",t){if(!e||"container"===n&&!t)return;let i=!1;const a=oL(),o="window"===n?a.innerHeight:t.clientHeight,r=Object.keys(e).map(e=>{if("string"==typeof e&&0===e.indexOf("@")){const n=parseFloat(e.substr(1));return{value:o*n,point:e}}return{value:e,point:e}});r.sort((e,n)=>parseInt(e.value,10)-parseInt(n.value,10));for(let e=0;e<r.length;e+=1){const{point:o,value:s}=r[e];"window"===n?a.matchMedia(`(min-width: ${s}px)`).matches&&(i=o):s<=t.clientWidth&&(i=o)}return i||"max"}};var HL={addClasses:function(){const e=this,{classNames:n,params:t,rtl:i,$el:a,device:o,support:r}=e,s=function(e,n){const t=[];return e.forEach(e=>{"object"==typeof e?Object.keys(e).forEach(i=>{e[i]&&t.push(n+i)}):"string"==typeof e&&t.push(n+e)}),t}(["initialized",t.direction,{"pointer-events":!r.touch},{"free-mode":e.params.freeMode&&t.freeMode.enabled},{autoheight:t.autoHeight},{rtl:i},{grid:t.grid&&t.grid.rows>1},{"grid-column":t.grid&&t.grid.rows>1&&"column"===t.grid.fill},{android:o.android},{ios:o.ios},{"css-mode":t.cssMode},{centered:t.cssMode&&t.centeredSlides},{"watch-progress":t.watchSlidesProgress}],t.containerModifierClass);n.push(...s),a.addClass([...n].join(" ")),e.emitContainerClasses()},removeClasses:function(){const{$el:e,classNames:n}=this;e.removeClass(n.join(" ")),this.emitContainerClasses()}};var JL={init:!0,direction:"horizontal",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:0,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,preloadImages:!0,updateOnImagesReady:!0,loop:!1,loopAdditionalSlides:0,loopedSlides:null,loopedSlidesLimit:!0,loopFillGroupWithBlank:!1,loopPreventsSlide:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-invisible-blank",slideActiveClass:"swiper-slide-active",slideDuplicateActiveClass:"swiper-slide-duplicate-active",slideVisibleClass:"swiper-slide-visible",slideDuplicateClass:"swiper-slide-duplicate",slideNextClass:"swiper-slide-next",slideDuplicateNextClass:"swiper-slide-duplicate-next",slidePrevClass:"swiper-slide-prev",slideDuplicatePrevClass:"swiper-slide-duplicate-prev",wrapperClass:"swiper-wrapper",runCallbacksOnInit:!0,_emitClasses:!1};function PL(e,n){return function(t={}){const i=Object.keys(t)[0],a=t[i];"object"==typeof a&&null!==a?(["navigation","pagination","scrollbar"].indexOf(i)>=0&&!0===e[i]&&(e[i]={auto:!0}),i in e&&"enabled"in a?(!0===e[i]&&(e[i]={enabled:!0}),"object"!=typeof e[i]||"enabled"in e[i]||(e[i].enabled=!0),e[i]||(e[i]={enabled:!1}),yL(n,t)):yL(n,t)):yL(n,t)}}const GL={eventsEmitter:vL,update:SL,translate:TL,transition:{setTransition:function(e,n){const t=this;t.params.cssMode||t.$wrapperEl.transition(e),t.emit("setTransition",e,n)},transitionStart:function(e=!0,n){const t=this,{params:i}=t;i.cssMode||(i.autoHeight&&t.updateAutoHeight(),DL({swiper:t,runCallbacks:e,direction:n,step:"Start"}))},transitionEnd:function(e=!0,n){const t=this,{params:i}=t;t.animating=!1,i.cssMode||(t.setTransition(0),DL({swiper:t,runCallbacks:e,direction:n,step:"End"}))}},slide:kL,loop:CL,grabCursor:EL,events:FL,breakpoints:UL,checkOverflow:{checkOverflow:function(){const e=this,{isLocked:n,params:t}=e,{slidesOffsetBefore:i}=t;if(i){const n=e.slides.length-1,t=e.slidesGrid[n]+e.slidesSizesGrid[n]+2*i;e.isLocked=e.size>t}else e.isLocked=1===e.snapGrid.length;!0===t.allowSlideNext&&(e.allowSlideNext=!e.isLocked),!0===t.allowSlidePrev&&(e.allowSlidePrev=!e.isLocked),n&&n!==e.isLocked&&(e.isEnd=!1),n!==e.isLocked&&e.emit(e.isLocked?"lock":"unlock")}},classes:HL,images:{loadImage:function(e,n,t,i,a,o){const r=oL();let s;function u(){o&&o()}lL(e).parent("picture")[0]||e.complete&&a?u():n?(s=new r.Image,s.onload=u,s.onerror=u,i&&(s.sizes=i),t&&(s.srcset=t),n&&(s.src=n)):u()},preloadImages:function(){const e=this;function n(){null!=e&&e&&!e.destroyed&&(void 0!==e.imagesLoaded&&(e.imagesLoaded+=1),e.imagesLoaded===e.imagesToLoad.length&&(e.params.updateOnImagesReady&&e.update(),e.emit("imagesReady")))}e.imagesToLoad=e.$el.find("img");for(let t=0;t<e.imagesToLoad.length;t+=1){const i=e.imagesToLoad[t];e.loadImage(i,i.currentSrc||i.getAttribute("src"),i.srcset||i.getAttribute("srcset"),i.sizes||i.getAttribute("sizes"),!0,n)}}}},RL={};let WL=class e{constructor(...n){let t,i;if(1===n.length&&n[0].constructor&&"Object"===Object.prototype.toString.call(n[0]).slice(8,-1)?i=n[0]:[t,i]=n,i||(i={}),i=yL({},i),t&&!i.el&&(i.el=t),i.el&&lL(i.el).length>1){const n=[];return lL(i.el).each(t=>{const a=yL({},i,{el:t});n.push(new e(a))}),n}const a=this;a.__swiper__=!0,a.support=xL(),a.device=LL({userAgent:i.userAgent}),a.browser=NL(),a.eventsListeners={},a.eventsAnyListeners=[],a.modules=[...a.__modules__],i.modules&&Array.isArray(i.modules)&&a.modules.push(...i.modules);const o={};a.modules.forEach(e=>{e({swiper:a,extendParams:PL(i,o),on:a.on.bind(a),once:a.once.bind(a),off:a.off.bind(a),emit:a.emit.bind(a)})});const r=yL({},JL,o);return a.params=yL({},r,RL,i),a.originalParams=yL({},a.params),a.passedParams=yL({},i),a.params&&a.params.on&&Object.keys(a.params.on).forEach(e=>{a.on(e,a.params.on[e])}),a.params&&a.params.onAny&&a.onAny(a.params.onAny),a.$=lL,Object.assign(a,{enabled:a.params.enabled,el:t,classNames:[],slides:lL(),slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal:()=>"horizontal"===a.params.direction,isVertical:()=>"vertical"===a.params.direction,activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,allowSlideNext:a.params.allowSlideNext,allowSlidePrev:a.params.allowSlidePrev,touchEvents:function(){const e=["touchstart","touchmove","touchend","touchcancel"],n=["pointerdown","pointermove","pointerup"];return a.touchEventsTouch={start:e[0],move:e[1],end:e[2],cancel:e[3]},a.touchEventsDesktop={start:n[0],move:n[1],end:n[2]},a.support.touch||!a.params.simulateTouch?a.touchEventsTouch:a.touchEventsDesktop}(),touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:a.params.focusableElements,lastClickTime:gL(),clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,isTouchEvent:void 0,startMoving:void 0},allowClick:!0,allowTouchMove:a.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),a.emit("_swiper"),a.params.init&&a.init(),a}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,n){const t=this;e=Math.min(Math.max(e,0),1);const i=t.minTranslate(),a=(t.maxTranslate()-i)*e+i;t.translateTo(a,void 0===n?0:n),t.updateActiveIndex(),t.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const n=e.el.className.split(" ").filter(n=>0===n.indexOf("swiper")||0===n.indexOf(e.params.containerModifierClass));e.emit("_containerClasses",n.join(" "))}getSlideClasses(e){const n=this;return n.destroyed?"":e.className.split(" ").filter(e=>0===e.indexOf("swiper-slide")||0===e.indexOf(n.params.slideClass)).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const n=[];e.slides.each(t=>{const i=e.getSlideClasses(t);n.push({slideEl:t,classNames:i}),e.emit("_slideClass",t,i)}),e.emit("_slideClasses",n)}slidesPerViewDynamic(e="current",n=!1){const{params:t,slides:i,slidesGrid:a,slidesSizesGrid:o,size:r,activeIndex:s}=this;let u=1;if(t.centeredSlides){let e,n=i[s].swiperSlideSize;for(let t=s+1;t<i.length;t+=1)i[t]&&!e&&(n+=i[t].swiperSlideSize,u+=1,n>r&&(e=!0));for(let t=s-1;t>=0;t-=1)i[t]&&!e&&(n+=i[t].swiperSlideSize,u+=1,n>r&&(e=!0))}else if("current"===e)for(let e=s+1;e<i.length;e+=1){(n?a[e]+o[e]-a[s]<r:a[e]-a[s]<r)&&(u+=1)}else for(let e=s-1;e>=0;e-=1){a[s]-a[e]<r&&(u+=1)}return u}update(){const e=this;if(!e||e.destroyed)return;const{snapGrid:n,params:t}=e;function i(){const n=e.rtlTranslate?-1*e.translate:e.translate,t=Math.min(Math.max(n,e.maxTranslate()),e.minTranslate());e.setTranslate(t),e.updateActiveIndex(),e.updateSlidesClasses()}let a;t.breakpoints&&e.setBreakpoint(),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.params.freeMode&&e.params.freeMode.enabled?(i(),e.params.autoHeight&&e.updateAutoHeight()):(a=("auto"===e.params.slidesPerView||e.params.slidesPerView>1)&&e.isEnd&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),a||i()),t.watchOverflow&&n!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,n=!0){const t=this,i=t.params.direction;return e||(e="horizontal"===i?"vertical":"horizontal"),e===i||"horizontal"!==e&&"vertical"!==e||(t.$el.removeClass(`${t.params.containerModifierClass}${i}`).addClass(`${t.params.containerModifierClass}${e}`),t.emitContainerClasses(),t.params.direction=e,t.slides.each(n=>{"vertical"===e?n.style.width="":n.style.height=""}),t.emit("changeDirection"),n&&t.update()),t}changeLanguageDirection(e){const n=this;n.rtl&&"rtl"===e||!n.rtl&&"ltr"===e||(n.rtl="rtl"===e,n.rtlTranslate="horizontal"===n.params.direction&&n.rtl,n.rtl?(n.$el.addClass(`${n.params.containerModifierClass}rtl`),n.el.dir="rtl"):(n.$el.removeClass(`${n.params.containerModifierClass}rtl`),n.el.dir="ltr"),n.update())}mount(e){const n=this;if(n.mounted)return!0;const t=lL(e||n.params.el);if(!(e=t[0]))return!1;e.swiper=n;const i=()=>`.${(n.params.wrapperClass||"").trim().split(" ").join(".")}`;let a=(()=>{if(e&&e.shadowRoot&&e.shadowRoot.querySelector){const n=lL(e.shadowRoot.querySelector(i()));return n.children=e=>t.children(e),n}return t.children?t.children(i()):lL(t).children(i())})();if(0===a.length&&n.params.createElements){const e=iL().createElement("div");a=lL(e),e.className=n.params.wrapperClass,t.append(e),t.children(`.${n.params.slideClass}`).each(e=>{a.append(e)})}return Object.assign(n,{$el:t,el:e,$wrapperEl:a,wrapperEl:a[0],mounted:!0,rtl:"rtl"===e.dir.toLowerCase()||"rtl"===t.css("direction"),rtlTranslate:"horizontal"===n.params.direction&&("rtl"===e.dir.toLowerCase()||"rtl"===t.css("direction")),wrongRTL:"-webkit-box"===a.css("display")}),!0}init(e){const n=this;if(n.initialized)return n;return!1===n.mount(e)||(n.emit("beforeInit"),n.params.breakpoints&&n.setBreakpoint(),n.addClasses(),n.params.loop&&n.loopCreate(),n.updateSize(),n.updateSlides(),n.params.watchOverflow&&n.checkOverflow(),n.params.grabCursor&&n.enabled&&n.setGrabCursor(),n.params.preloadImages&&n.preloadImages(),n.params.loop?n.slideTo(n.params.initialSlide+n.loopedSlides,0,n.params.runCallbacksOnInit,!1,!0):n.slideTo(n.params.initialSlide,0,n.params.runCallbacksOnInit,!1,!0),n.attachEvents(),n.initialized=!0,n.emit("init"),n.emit("afterInit")),n}destroy(e=!0,n=!0){const t=this,{params:i,$el:a,$wrapperEl:o,slides:r}=t;return void 0===t.params||t.destroyed||(t.emit("beforeDestroy"),t.initialized=!1,t.detachEvents(),i.loop&&t.loopDestroy(),n&&(t.removeClasses(),a.removeAttr("style"),o.removeAttr("style"),r&&r.length&&r.removeClass([i.slideVisibleClass,i.slideActiveClass,i.slideNextClass,i.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-slide-index")),t.emit("destroy"),Object.keys(t.eventsListeners).forEach(e=>{t.off(e)}),!1!==e&&(t.$el[0].swiper=null,function(e){const n=e;Object.keys(n).forEach(e=>{try{n[e]=null}catch(e){}try{delete n[e]}catch(e){}})}(t)),t.destroyed=!0),null}static extendDefaults(e){yL(RL,e)}static get extendedDefaults(){return RL}static get defaults(){return JL}static installModule(n){e.prototype.__modules__||(e.prototype.__modules__=[]);const t=e.prototype.__modules__;"function"==typeof n&&t.indexOf(n)<0&&t.push(n)}static use(n){return Array.isArray(n)?(n.forEach(n=>e.installModule(n)),e):(e.installModule(n),e)}};Object.keys(GL).forEach(e=>{Object.keys(GL[e]).forEach(n=>{WL.prototype[n]=GL[e][n]})}),WL.use([function({swiper:e,on:n,emit:t}){const i=oL();let a=null,o=null;const r=()=>{e&&!e.destroyed&&e.initialized&&(t("beforeResize"),t("resize"))},s=()=>{e&&!e.destroyed&&e.initialized&&t("orientationchange")};n("init",()=>{e.params.resizeObserver&&void 0!==i.ResizeObserver?e&&!e.destroyed&&e.initialized&&(a=new ResizeObserver(n=>{o=i.requestAnimationFrame(()=>{const{width:t,height:i}=e;let a=t,o=i;n.forEach(({contentBoxSize:n,contentRect:t,target:i})=>{i&&i!==e.el||(a=t?t.width:(n[0]||n).inlineSize,o=t?t.height:(n[0]||n).blockSize)}),a===t&&o===i||r()})}),a.observe(e.el)):(i.addEventListener("resize",r),i.addEventListener("orientationchange",s))}),n("destroy",()=>{o&&i.cancelAnimationFrame(o),a&&a.unobserve&&e.el&&(a.unobserve(e.el),a=null),i.removeEventListener("resize",r),i.removeEventListener("orientationchange",s)})},function({swiper:e,extendParams:n,on:t,emit:i}){const a=[],o=oL(),r=(e,n={})=>{const t=new(o.MutationObserver||o.WebkitMutationObserver)(e=>{if(1===e.length)return void i("observerUpdate",e[0]);const n=function(){i("observerUpdate",e[0])};o.requestAnimationFrame?o.requestAnimationFrame(n):o.setTimeout(n,0)});t.observe(e,{attributes:void 0===n.attributes||n.attributes,childList:void 0===n.childList||n.childList,characterData:void 0===n.characterData||n.characterData}),a.push(t)};n({observer:!1,observeParents:!1,observeSlideChildren:!1}),t("init",()=>{if(e.params.observer){if(e.params.observeParents){const n=e.$el.parents();for(let e=0;e<n.length;e+=1)r(n[e])}r(e.$el[0],{childList:e.params.observeSlideChildren}),r(e.$wrapperEl[0],{attributes:!1})}}),t("destroy",()=>{a.forEach(e=>{e.disconnect()}),a.splice(0,a.length)})}]);var KL=WL;function VL({swiper:e,extendParams:n,on:t,emit:i}){function a(n){let t;return n&&(t=lL(n),e.params.uniqueNavElements&&"string"==typeof n&&t.length>1&&1===e.$el.find(n).length&&(t=e.$el.find(n))),t}function o(n,t){const i=e.params.navigation;n&&n.length>0&&(n[t?"addClass":"removeClass"](i.disabledClass),n[0]&&"BUTTON"===n[0].tagName&&(n[0].disabled=t),e.params.watchOverflow&&e.enabled&&n[e.isLocked?"addClass":"removeClass"](i.lockClass))}function r(){if(e.params.loop)return;const{$nextEl:n,$prevEl:t}=e.navigation;o(t,e.isBeginning&&!e.params.rewind),o(n,e.isEnd&&!e.params.rewind)}function s(n){n.preventDefault(),(!e.isBeginning||e.params.loop||e.params.rewind)&&(e.slidePrev(),i("navigationPrev"))}function u(n){n.preventDefault(),(!e.isEnd||e.params.loop||e.params.rewind)&&(e.slideNext(),i("navigationNext"))}function l(){const n=e.params.navigation;if(e.params.navigation=function(e,n,t,i){const a=iL();return e.params.createElements&&Object.keys(i).forEach(o=>{if(!t[o]&&!0===t.auto){let r=e.$el.children(`.${i[o]}`)[0];r||(r=a.createElement("div"),r.className=i[o],e.$el.append(r)),t[o]=r,n[o]=r}}),t}(e,e.originalParams.navigation,e.params.navigation,{nextEl:"swiper-button-next",prevEl:"swiper-button-prev"}),!n.nextEl&&!n.prevEl)return;const t=a(n.nextEl),i=a(n.prevEl);t&&t.length>0&&t.on("click",u),i&&i.length>0&&i.on("click",s),Object.assign(e.navigation,{$nextEl:t,nextEl:t&&t[0],$prevEl:i,prevEl:i&&i[0]}),e.enabled||(t&&t.addClass(n.lockClass),i&&i.addClass(n.lockClass))}function c(){const{$nextEl:n,$prevEl:t}=e.navigation;n&&n.length&&(n.off("click",u),n.removeClass(e.params.navigation.disabledClass)),t&&t.length&&(t.off("click",s),t.removeClass(e.params.navigation.disabledClass))}n({navigation:{nextEl:null,prevEl:null,hideOnClick:!1,disabledClass:"swiper-button-disabled",hiddenClass:"swiper-button-hidden",lockClass:"swiper-button-lock",navigationDisabledClass:"swiper-navigation-disabled"}}),e.navigation={nextEl:null,$nextEl:null,prevEl:null,$prevEl:null},t("init",()=>{!1===e.params.navigation.enabled?d():(l(),r())}),t("toEdge fromEdge lock unlock",()=>{r()}),t("destroy",()=>{c()}),t("enable disable",()=>{const{$nextEl:n,$prevEl:t}=e.navigation;n&&n[e.enabled?"removeClass":"addClass"](e.params.navigation.lockClass),t&&t[e.enabled?"removeClass":"addClass"](e.params.navigation.lockClass)}),t("click",(n,t)=>{const{$nextEl:a,$prevEl:o}=e.navigation,r=t.target;if(e.params.navigation.hideOnClick&&!lL(r).is(o)&&!lL(r).is(a)){if(e.pagination&&e.params.pagination&&e.params.pagination.clickable&&(e.pagination.el===r||e.pagination.el.contains(r)))return;let n;a?n=a.hasClass(e.params.navigation.hiddenClass):o&&(n=o.hasClass(e.params.navigation.hiddenClass)),i(!0===n?"navigationShow":"navigationHide"),a&&a.toggleClass(e.params.navigation.hiddenClass),o&&o.toggleClass(e.params.navigation.hiddenClass)}});const d=()=>{e.$el.addClass(e.params.navigation.navigationDisabledClass),c()};Object.assign(e.navigation,{enable:()=>{e.$el.removeClass(e.params.navigation.navigationDisabledClass),l(),r()},disable:d,update:r,init:l,destroy:c})}function $L(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function qL(e,n){const t=["__proto__","constructor","prototype"];Object.keys(n).filter(e=>t.indexOf(e)<0).forEach(t=>{void 0===e[t]?e[t]=n[t]:$L(n[t])&&$L(e[t])&&Object.keys(n[t]).length>0?n[t].__swiper__?e[t]=n[t]:qL(e[t],n[t]):e[t]=n[t]})}function eN(e={}){return e.navigation&&void 0===e.navigation.nextEl&&void 0===e.navigation.prevEl}function nN(e={}){return e.pagination&&void 0===e.pagination.el}function tN(e={}){return e.scrollbar&&void 0===e.scrollbar.el}function iN(e=""){const n=e.split(" ").map(e=>e.trim()).filter(e=>!!e),t=[];return n.forEach(e=>{t.indexOf(e)<0&&t.push(e)}),t.join(" ")}const aN=["modules","init","_direction","touchEventsTarget","initialSlide","_speed","cssMode","updateOnWindowResize","resizeObserver","nested","focusableElements","_enabled","_width","_height","preventInteractionOnTransition","userAgent","url","_edgeSwipeDetection","_edgeSwipeThreshold","_freeMode","_autoHeight","setWrapperSize","virtualTranslate","_effect","breakpoints","_spaceBetween","_slidesPerView","maxBackfaceHiddenSlides","_grid","_slidesPerGroup","_slidesPerGroupSkip","_slidesPerGroupAuto","_centeredSlides","_centeredSlidesBounds","_slidesOffsetBefore","_slidesOffsetAfter","normalizeSlideIndex","_centerInsufficientSlides","_watchOverflow","roundLengths","touchRatio","touchAngle","simulateTouch","_shortSwipes","_longSwipes","longSwipesRatio","longSwipesMs","_followFinger","allowTouchMove","_threshold","touchMoveStopPropagation","touchStartPreventDefault","touchStartForcePreventDefault","touchReleaseOnEdges","uniqueNavElements","_resistance","_resistanceRatio","_watchSlidesProgress","_grabCursor","preventClicks","preventClicksPropagation","_slideToClickedSlide","_preloadImages","updateOnImagesReady","_loop","_loopAdditionalSlides","_loopedSlides","_loopedSlidesLimit","_loopFillGroupWithBlank","loopPreventsSlide","_rewind","_allowSlidePrev","_allowSlideNext","_swipeHandler","_noSwiping","noSwipingClass","noSwipingSelector","passiveListeners","containerModifierClass","slideClass","slideBlankClass","slideActiveClass","slideDuplicateActiveClass","slideVisibleClass","slideDuplicateClass","slideNextClass","slideDuplicateNextClass","slidePrevClass","slideDuplicatePrevClass","wrapperClass","runCallbacksOnInit","observer","observeParents","observeSlideChildren","a11y","_autoplay","_controller","coverflowEffect","cubeEffect","fadeEffect","flipEffect","creativeEffect","cardsEffect","hashNavigation","history","keyboard","lazy","mousewheel","_navigation","_pagination","parallax","_scrollbar","_thumbs","virtual","zoom"];const oN=(e,n)=>{let t=n.slidesPerView;if(n.breakpoints){const e=KL.prototype.getBreakpoint(n.breakpoints),i=e in n.breakpoints?n.breakpoints[e]:void 0;i&&i.slidesPerView&&(t=i.slidesPerView)}let i=Math.ceil(parseFloat(n.loopedSlides||t,10));return i+=n.loopAdditionalSlides,i>e.length&&n.loopedSlidesLimit&&(i=e.length),i};function rN(e){return e.type&&e.type.displayName&&e.type.displayName.includes("SwiperSlide")}function sN(e){const n=[];return ne.Children.toArray(e).forEach(e=>{rN(e)?n.push(e):e.props&&e.props.children&&sN(e.props.children).forEach(e=>n.push(e))}),n}function uN(e){const n=[],t={"container-start":[],"container-end":[],"wrapper-start":[],"wrapper-end":[]};return ne.Children.toArray(e).forEach(e=>{if(rN(e))n.push(e);else if(e.props&&e.props.slot&&t[e.props.slot])t[e.props.slot].push(e);else if(e.props&&e.props.children){const i=sN(e.props.children);i.length>0?i.forEach(e=>n.push(e)):t["container-end"].push(e)}else t["container-end"].push(e)}),{slides:n,slots:t}}function lN({swiper:e,slides:n,passedParams:t,changedParams:i,nextEl:a,prevEl:o,scrollbarEl:r,paginationEl:s}){const u=i.filter(e=>"children"!==e&&"direction"!==e),{params:l,pagination:c,navigation:d,scrollbar:g,virtual:h,thumbs:p}=e;let m,y,f,M,j;i.includes("thumbs")&&t.thumbs&&t.thumbs.swiper&&l.thumbs&&!l.thumbs.swiper&&(m=!0),i.includes("controller")&&t.controller&&t.controller.control&&l.controller&&!l.controller.control&&(y=!0),i.includes("pagination")&&t.pagination&&(t.pagination.el||s)&&(l.pagination||!1===l.pagination)&&c&&!c.el&&(f=!0),i.includes("scrollbar")&&t.scrollbar&&(t.scrollbar.el||r)&&(l.scrollbar||!1===l.scrollbar)&&g&&!g.el&&(M=!0),i.includes("navigation")&&t.navigation&&(t.navigation.prevEl||o)&&(t.navigation.nextEl||a)&&(l.navigation||!1===l.navigation)&&d&&!d.prevEl&&!d.nextEl&&(j=!0);if(u.forEach(n=>{if($L(l[n])&&$L(t[n]))qL(l[n],t[n]);else{const a=t[n];!0!==a&&!1!==a||"navigation"!==n&&"pagination"!==n&&"scrollbar"!==n?l[n]=t[n]:!1===a&&e[i=n]&&(e[i].destroy(),"navigation"===i?(l[i].prevEl=void 0,l[i].nextEl=void 0,e[i].prevEl=void 0,e[i].nextEl=void 0):(l[i].el=void 0,e[i].el=void 0))}var i}),u.includes("controller")&&!y&&e.controller&&e.controller.control&&l.controller&&l.controller.control&&(e.controller.control=l.controller.control),i.includes("children")&&n&&h&&l.virtual.enabled?(h.slides=n,h.update(!0)):i.includes("children")&&e.lazy&&e.params.lazy.enabled&&e.lazy.load(),m){p.init()&&p.update(!0)}y&&(e.controller.control=l.controller.control),f&&(s&&(l.pagination.el=s),c.init(),c.render(),c.update()),M&&(r&&(l.scrollbar.el=r),g.init(),g.updateSize(),g.setTranslate()),j&&(a&&(l.navigation.nextEl=a),o&&(l.navigation.prevEl=o),d.init(),d.update()),i.includes("allowSlideNext")&&(e.allowSlideNext=t.allowSlideNext),i.includes("allowSlidePrev")&&(e.allowSlidePrev=t.allowSlidePrev),i.includes("direction")&&e.changeDirection(t.direction,!1),e.update()}function cN(e,n){return"undefined"==typeof window?ee.useEffect(e,n):ee.useLayoutEffect(e,n)}const dN=ee.createContext(null),gN=ee.createContext(null);function hN(){return hN=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i])}return e},hN.apply(this,arguments)}const pN=ee.forwardRef(function(e,n){let{className:t,tag:i="div",wrapperTag:a="div",children:o,onSwiper:r,...s}=void 0===e?{}:e,u=!1;const[l,c]=ee.useState("swiper"),[d,g]=ee.useState(null),[h,p]=ee.useState(!1),m=ee.useRef(!1),y=ee.useRef(null),f=ee.useRef(null),M=ee.useRef(null),j=ee.useRef(null),b=ee.useRef(null),w=ee.useRef(null),x=ee.useRef(null),L=ee.useRef(null),{params:N,passedParams:v,rest:S,events:T}=function(e={},n=!0){const t={on:{}},i={},a={};qL(t,KL.defaults),qL(t,KL.extendedDefaults),t._emitClasses=!0,t.init=!1;const o={},r=aN.map(e=>e.replace(/_/,"")),s=Object.assign({},e);return Object.keys(s).forEach(s=>{void 0!==e[s]&&(r.indexOf(s)>=0?$L(e[s])?(t[s]={},a[s]={},qL(t[s],e[s]),qL(a[s],e[s])):(t[s]=e[s],a[s]=e[s]):0===s.search(/on[A-Z]/)&&"function"==typeof e[s]?n?i[`${s[2].toLowerCase()}${s.substr(3)}`]=e[s]:t.on[`${s[2].toLowerCase()}${s.substr(3)}`]=e[s]:o[s]=e[s])}),["navigation","pagination","scrollbar"].forEach(e=>{!0===t[e]&&(t[e]={}),!1===t[e]&&delete t[e]}),{params:t,passedParams:a,rest:o,events:i}}(s),{slides:D,slots:k}=uN(o),C=()=>{p(!h)};Object.assign(N.on,{_containerClasses(e,n){c(n)}});const E=()=>{if(Object.assign(N.on,T),u=!0,f.current=new KL(N),f.current.loopCreate=()=>{},f.current.loopDestroy=()=>{},N.loop&&(f.current.loopedSlides=oN(D,N)),f.current.virtual&&f.current.params.virtual.enabled){f.current.virtual.slides=D;const e={cache:!1,slides:D,renderExternal:g,renderExternalUpdate:!1};qL(f.current.params.virtual,e),qL(f.current.originalParams.virtual,e)}};y.current||E(),f.current&&f.current.on("_beforeBreakpoint",C);return ee.useEffect(()=>()=>{f.current&&f.current.off("_beforeBreakpoint",C)}),ee.useEffect(()=>{!m.current&&f.current&&(f.current.emitSlidesClasses(),m.current=!0)}),cN(()=>{if(n&&(n.current=y.current),y.current)return f.current.destroyed&&E(),function({el:e,nextEl:n,prevEl:t,paginationEl:i,scrollbarEl:a,swiper:o},r){eN(r)&&n&&t&&(o.params.navigation.nextEl=n,o.originalParams.navigation.nextEl=n,o.params.navigation.prevEl=t,o.originalParams.navigation.prevEl=t),nN(r)&&i&&(o.params.pagination.el=i,o.originalParams.pagination.el=i),tN(r)&&a&&(o.params.scrollbar.el=a,o.originalParams.scrollbar.el=a),o.init(e)}({el:y.current,nextEl:b.current,prevEl:w.current,paginationEl:x.current,scrollbarEl:L.current,swiper:f.current},N),r&&r(f.current),()=>{f.current&&!f.current.destroyed&&f.current.destroy(!0,!1)}},[]),cN(()=>{!u&&T&&f.current&&Object.keys(T).forEach(e=>{f.current.on(e,T[e])});const e=function(e,n,t,i,a){const o=[];if(!n)return o;const r=e=>{o.indexOf(e)<0&&o.push(e)};if(t&&i){const e=i.map(a),n=t.map(a);e.join("")!==n.join("")&&r("children"),i.length!==t.length&&r("children")}return aN.filter(e=>"_"===e[0]).map(e=>e.replace(/_/,"")).forEach(t=>{if(t in e&&t in n)if($L(e[t])&&$L(n[t])){const i=Object.keys(e[t]),a=Object.keys(n[t]);i.length!==a.length?r(t):(i.forEach(i=>{e[t][i]!==n[t][i]&&r(t)}),a.forEach(i=>{e[t][i]!==n[t][i]&&r(t)}))}else e[t]!==n[t]&&r(t)}),o}(v,M.current,D,j.current,e=>e.key);return M.current=v,j.current=D,e.length&&f.current&&!f.current.destroyed&&lN({swiper:f.current,slides:D,passedParams:v,changedParams:e,nextEl:b.current,prevEl:w.current,scrollbarEl:L.current,paginationEl:x.current}),()=>{T&&f.current&&Object.keys(T).forEach(e=>{f.current.off(e,T[e])})}}),cN(()=>{var e;!(e=f.current)||e.destroyed||!e.params.virtual||e.params.virtual&&!e.params.virtual.enabled||(e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.lazy&&e.params.lazy.enabled&&e.lazy.load(),e.parallax&&e.params.parallax&&e.params.parallax.enabled&&e.parallax.setTranslate())},[d]),ne.createElement(i,hN({ref:y,className:iN(`${l}${t?` ${t}`:""}`)},S),ne.createElement(gN.Provider,{value:f.current},k["container-start"],ne.createElement(a,{className:"swiper-wrapper"},k["wrapper-start"],N.virtual?function(e,n,t){if(!t)return null;const i=e.isHorizontal()?{[e.rtlTranslate?"right":"left"]:`${t.offset}px`}:{top:`${t.offset}px`};return n.filter((e,n)=>n>=t.from&&n<=t.to).map(n=>ne.cloneElement(n,{swiper:e,style:i}))}(f.current,D,d):!N.loop||f.current&&f.current.destroyed?D.map(e=>ne.cloneElement(e,{swiper:f.current})):function(e,n,t){const i=n.map((n,t)=>ne.cloneElement(n,{swiper:e,"data-swiper-slide-index":t}));function a(e,n,i){return ne.cloneElement(e,{key:`${e.key}-duplicate-${n}-${i}`,className:`${e.props.className||""} ${t.slideDuplicateClass}`})}if(t.loopFillGroupWithBlank){const e=t.slidesPerGroup-i.length%t.slidesPerGroup;if(e!==t.slidesPerGroup)for(let n=0;n<e;n+=1){const e=ne.createElement("div",{className:`${t.slideClass} ${t.slideBlankClass}`});i.push(e)}}"auto"!==t.slidesPerView||t.loopedSlides||(t.loopedSlides=i.length);const o=oN(i,t),r=[],s=[];for(let e=0;e<o;e+=1){const n=e-Math.floor(e/i.length)*i.length;s.push(a(i[n],e,"append")),r.unshift(a(i[i.length-n-1],e,"prepend"))}return e&&(e.loopedSlides=o),[...r,...i,...s]}(f.current,D,N),k["wrapper-end"]),eN(N)&&ne.createElement(ne.Fragment,null,ne.createElement("div",{ref:w,className:"swiper-button-prev"}),ne.createElement("div",{ref:b,className:"swiper-button-next"})),tN(N)&&ne.createElement("div",{ref:L,className:"swiper-scrollbar"}),nN(N)&&ne.createElement("div",{ref:x,className:"swiper-pagination"}),k["container-end"]))});function mN(){return mN=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var t=arguments[n];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i])}return e},mN.apply(this,arguments)}pN.displayName="Swiper";const yN=ee.forwardRef(function(e,n){let{tag:t="div",children:i,className:a="",swiper:o,zoom:r,virtualIndex:s,...u}=void 0===e?{}:e;const l=ee.useRef(null),[c,d]=ee.useState("swiper-slide");function g(e,n,t){n===l.current&&d(t)}cN(()=>{if(n&&(n.current=l.current),l.current&&o){if(!o.destroyed)return o.on("_slideClass",g),()=>{o&&o.off("_slideClass",g)};"swiper-slide"!==c&&d("swiper-slide")}}),cN(()=>{o&&l.current&&!o.destroyed&&d(o.getSlideClasses(l.current))},[o]);const h={isActive:c.indexOf("swiper-slide-active")>=0||c.indexOf("swiper-slide-duplicate-active")>=0,isVisible:c.indexOf("swiper-slide-visible")>=0,isDuplicate:c.indexOf("swiper-slide-duplicate")>=0,isPrev:c.indexOf("swiper-slide-prev")>=0||c.indexOf("swiper-slide-duplicate-prev")>=0,isNext:c.indexOf("swiper-slide-next")>=0||c.indexOf("swiper-slide-duplicate-next")>=0},p=()=>"function"==typeof i?i(h):i;return ne.createElement(t,mN({ref:l,className:iN(`${c}${a?` ${a}`:""}`),"data-swiper-slide-index":s},u),ne.createElement(dN.Provider,{value:h},r?ne.createElement("div",{className:"swiper-zoom-container","data-swiper-zoom":"number"==typeof r?r:void 0},p()):p()))});yN.displayName="SwiperSlide";const fN=(e,n)=>Math.min(Math.max(e+(window.innerWidth-375)/1545*(n-e),e),n),MN=e=>function(e,n,t){if(void 0===t&&(t=e=>e),!e)return;const i=new RegExp(`(${Object.keys(n).join(")|(")})|(.+)`,"g"),a=Object.values(n),o=[];return e.replace(i,function(){for(var e=arguments.length,n=new Array(e),i=0;i<e;i++)n[i]=arguments[i];const r=n.findIndex((e,n)=>n>0&&void 0!==e),s=n[r];let u="";u="function"==typeof a[r-1]?a[r-1](s):t(s);const l=ee.isValidElement(u)?ee.cloneElement(u,Object.assign({key:o.length},u.props)):u;return o.push(l),""}),o}(e,{"©|®|[ -㌀]|\ud83c[퀀-\udfff]|\ud83d[퀀-\udfff]|\ud83e[퀀-\udfff]":e=>ce.jsx("span",{"aria-hidden":!0,children:e}),"\n":()=>ce.jsx("br",{})},e=>ce.jsx("span",{children:e})),jN=e=>{const{item:n}=e,t=$j(),{decorateUrl:i}=zI(e=>e.actions),{send:a}=lw(e=>e.actions),o=g("llm__event",{[`llm__event--${n.type}`]:!!n.type});return ce.jsx("div",{className:o,children:ce.jsxs("div",{className:"llm__event-inner",children:[ce.jsxs("div",{className:"llm__event-content",children:["event"==n.type&&ce.jsx("div",{className:"llm__event-pretitle",children:t("llm.eventPretitle")}),n.title&&ce.jsx("div",{className:"llm__event-title",dangerouslySetInnerHTML:{__html:n.title}}),n.abstract&&ce.jsx("div",{className:"llm__event-body",dangerouslySetInnerHTML:{__html:n.abstract}}),n.place&&ce.jsxs("div",{className:"llm__event-location",children:[ce.jsx(Gb,{})," ",n.place]}),ce.jsxs("div",{className:"llm__event-ctas",children:[ce.jsx(Ow,{type:"button",label:t("llm.tellMeMore"),onClick:e=>xd(void 0,void 0,void 0,function*(){const e=`${t("llm.tellMeMoreAbout")} ${n.title}`;yield a(e,e=>{},e=>{})})}),ce.jsx(Ow,{type:"text",label:t("llm.goToWebsite"),onClick:e=>xd(void 0,void 0,void 0,function*(){if(l){e.preventDefault();const t=yield i(n,n.url);window.open(t,"_blank")}})})]})]}),n.image&&ce.jsxs("div",{className:"llm__event-media",children:[ce.jsx("div",{className:"llm__event-asset",children:ce.jsx("img",{src:n.image,alt:""})}),(n.time||n.date)&&ce.jsxs("div",{className:"llm__event-tags",children:[n.date&&ce.jsx("div",{className:"llm__event-tag llm__event-date",children:n.date}),n.time&&ce.jsx("div",{className:"llm__event-tag llm__event-time",children:n.time})]})]})]})})};function bN(e,n){void 0===n&&(n={});var t=n.insertAt;if(e&&"undefined"!=typeof document){var i=document.head||document.getElementsByTagName("head")[0],a=document.createElement("style");a.type="text/css","top"===t&&i.firstChild?i.insertBefore(a,i.firstChild):i.appendChild(a),a.styleSheet?a.styleSheet.cssText=e:a.appendChild(document.createTextNode(e))}}var wN="file-module_root__17BGV",xN="file-module_anchor__orRDE",LN="file-module_icon__AJFbi";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.file-module_root__17BGV .llm__row {\n padding: 0 0 1rem 0;\n}\n\n.file-module_anchor__orRDE {\n background: #ccc;\n font-size: 13px;\n padding: 0.3em 0.6em;\n border-radius: 0.3em;\n display: inline-flex;\n align-items: center;\n gap: 0.4em;\n background: var(--llm-hint-background);\n color: var(--llm-hint-foreground);\n border: var(--llm-markdown-border);\n font-family: var(--llm-hint-font-family);\n box-shadow: var(--llm-hint-box-shadow);\n -webkit-backdrop-filter: blur(20px);\n backdrop-filter: blur(20px);\n}\n\n.file-module_icon__AJFbi {\n width: 0.8em;\n height: 0.8em;\n}");function NN(e,n){var t;const i=`Ciao ${e.fullName?e.fullName.split(" ")[0]:""}`;return`\n<!doctype html>\n<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">\n\n<head>\n <title> ${i} </title>\n \x3c!--[if !mso]>\x3c!--\x3e\n <meta http-equiv="X-UA-Compatible" content="IE=edge">\n \x3c!--<![endif]--\x3e\n <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">\n <meta name="viewport" content="width=device-width, initial-scale=1">\n <style type="text/css">\n #outlook a {\n padding: 0;\n }\n\n body {\n margin: 0;\n padding: 0;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n }\n\n table,\n td {\n border-collapse: collapse;\n mso-table-lspace: 0pt;\n mso-table-rspace: 0pt;\n }\n\n img {\n border: 0;\n height: auto;\n line-height: 100%;\n outline: none;\n text-decoration: none;\n -ms-interpolation-mode: bicubic;\n }\n\n p {\n display: block;\n margin: 13px 0;\n }\n </style>\n \x3c!--[if mso]>\n <noscript>\n <xml>\n <o:OfficeDocumentSettings>\n <o:AllowPNG/>\n <o:PixelsPerInch>96</o:PixelsPerInch>\n </o:OfficeDocumentSettings>\n </xml>\n </noscript>\n <![endif]--\x3e\n \x3c!--[if lte mso 11]>\n <style type="text/css">\n .mj-outlook-group-fix { width:100% !important; }\n </style>\n <![endif]--\x3e\n \x3c!--[if !mso]>\x3c!--\x3e\n <link href="https://fonts.googleapis.com/css?family=Inter:400,600" rel="stylesheet" type="text/css">\n <style type="text/css">\n @import url(https://fonts.googleapis.com/css?family=Inter:400,600);\n </style>\n \x3c!--<![endif]--\x3e\n <style type="text/css">\n @media only screen and (min-width:480px) {\n .mj-column-per-100 {\n width: 100% !important;\n max-width: 100%;\n }\n }\n </style>\n <style media="screen and (min-width:480px)">\n .moz-text-html .mj-column-per-100 {\n width: 100% !important;\n max-width: 100%;\n }\n </style>\n <style type="text/css">\n </style>\n</head>\n\n<body style="word-spacing:normal;">\n <div style="">\n \x3c!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--\x3e\n <div style="margin:0px auto;max-width:600px;">\n <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">\n <tbody>\n <tr>\n <td style="direction:ltr;font-size:0px;padding:0px;padding-top:20px;text-align:center;">\n \x3c!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--\x3e\n <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">\n <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">\n <tbody>\n <tr>\n <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <div style="font-family:Inter;font-size:20px;font-weight:600;line-height:24px;text-align:left;color:#3b3b3b;">${(null===(t=null==n?void 0:n.contents)||void 0===t?void 0:t.shortWelcomeText)||"PlatformAI"}</div>\n </td>\n </tr>\n <tr>\n <td align="center" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <p style="border-top:solid 3px #EFEFF2;font-size:1px;margin:0px auto;width:100%;">\n </p>\n \x3c!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 3px #EFEFF2;font-size:1px;margin:0px auto;width:550px;" role="presentation" width="550px" ><tr><td style="height:0;line-height:0;"> \n</td></tr></table><![endif]--\x3e\n </td>\n </tr>\n <tr>\n <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <div style="font-family:Inter;font-size:28px;font-weight:600;line-height:24px;text-align:left;color:#3b3b3b;">${i}</div>\n </td>\n </tr>\n <tr>\n <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <div style="font-family:Inter, Helvetica, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#555555;">${`<p>${["Ecco il tuo promemoria,","per qualunque altra cosa sai dove potermi trovare, sarò sempre lieto di parlare con te. 👋"].join("</p><p>")}</p>`} <h3 style="font-weight: 600; margin-top: 20px; margin-bottom: 0">\n <a href="${window.location.href+`${window.location.search?"&":"?"}llmThreadId=${e.threadId}`}" style="color: #00aeff; text-decoration: underline">link</a>\n </h3>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n \x3c!--[if mso | IE]></td></tr></table><![endif]--\x3e\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n \x3c!--[if mso | IE]></td></tr></table><![endif]--\x3e\n </div>\n</body>\n\n</html>\n`}var vN="image-module_root__S5HIs",SN="image-module_image__BFRgB";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.image-module_root__S5HIs .llm__row {\n padding: 0 0 1rem 0;\n}\n\n.image-module_image__BFRgB {\n width: 100%;\n max-width: 256px;\n aspect-ratio: 1;\n border-radius: 8px;\n border: var(--llm-markdown-border);\n box-shadow: var(--llm-shadow-xs);\n}");const TN=e=>{const{item:n}=e,t=$j(),{decorateUrl:i}=zI(e=>e.actions),{send:a}=lw(e=>e.actions),o=g("llm__poi",{[`llm__poi--${n.type}`]:!!n.type});return ce.jsxs("div",{className:o,children:[n.image&&ce.jsx("div",{className:"llm__poi-media",children:ce.jsx("img",{src:n.image,alt:""})}),ce.jsxs("div",{className:"llm__poi-content",children:[n.title&&ce.jsx("div",{className:"llm__poi-title",dangerouslySetInnerHTML:{__html:n.title}}),n.abstract&&ce.jsx("div",{className:"llm__poi-body",dangerouslySetInnerHTML:{__html:n.abstract}}),(n.time||n.place)&&ce.jsxs("div",{className:"llm__poi-tags",children:[n.time&&ce.jsxs("div",{className:"llm__poi-tag llm__poi-time",children:[ce.jsx($b,{}),n.time]}),n.place&&ce.jsxs("div",{className:"llm__poi-tag llm__poi-location",children:[ce.jsx(Gb,{}),n.place]})]}),ce.jsxs("div",{className:"llm__poi-ctas",children:[ce.jsx(Ow,{type:"button",label:t("llm.tellMeMore"),onClick:e=>xd(void 0,void 0,void 0,function*(){const e=`${t("llm.tellMeMoreAbout")} ${n.title}`;yield a(e,e=>{},e=>{})})}),ce.jsx(Ow,{type:"text",label:t("llm.goToWebsite"),onClick:e=>xd(void 0,void 0,void 0,function*(){if(l){e.preventDefault();const t=yield i(n,n.url);window.open(t,"_blank")}})})]})]})]})};var DN={exports:{}};!function(e,n){!function(e){function n(e,n){for(var t=0;t<n.length;t++){var i=n[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function i(e,t,i){return t&&n(e.prototype,t),i&&n(e,i),Object.defineProperty(e,"prototype",{writable:!1}),e}function a(e,n){return(a=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,n){return e.__proto__=n,e})(e,n)}function o(e,n){if(e!==n)throw new TypeError("Cannot instantiate an arrow function")}var r="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==t?t:"undefined"!=typeof self?self:{};function s(e,n){return e(n={exports:{}},n.exports),n.exports}var u,l,c=function(e){return e&&e.Math==Math&&e},d=c("object"==typeof globalThis&&globalThis)||c("object"==typeof window&&window)||c("object"==typeof self&&self)||c("object"==typeof r&&r)||function(){return this}()||Function("return this")(),g=function(e){try{return!!e()}catch(e){return!0}},h=!g(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}),p=!g(function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}),m=Function.prototype.call,y=p?m.bind(m):function(){return m.apply(m,arguments)},f={}.propertyIsEnumerable,M=Object.getOwnPropertyDescriptor,j={f:M&&!f.call({1:2},1)?function(e){var n=M(this,e);return!!n&&n.enumerable}:f},b=function(e,n){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:n}},w=Function.prototype,x=w.bind,L=w.call,N=p&&x.bind(L,L),v=p?function(e){return e&&N(e)}:function(e){return e&&function(){return L.apply(e,arguments)}},S=v({}.toString),T=v("".slice),D=function(e){return T(S(e),8,-1)},k=Object,C=v("".split),E=g(function(){return!k("z").propertyIsEnumerable(0)})?function(e){return"String"==D(e)?C(e,""):k(e)}:k,z=TypeError,I=function(e){if(null==e)throw z("Can't call method on "+e);return e},A=function(e){return E(I(e))},Y=function(e){return"function"==typeof e},O=function(e){return"object"==typeof e?null!==e:Y(e)},Q=function(e){return Y(e)?e:void 0},Z=function(e,n){return arguments.length<2?Q(d[e]):d[e]&&d[e][n]},_=v({}.isPrototypeOf),B=Z("navigator","userAgent")||"",F=d.process,X=d.Deno,U=F&&F.versions||X&&X.version,H=U&&U.v8;H&&(l=(u=H.split("."))[0]>0&&u[0]<4?1:+(u[0]+u[1])),!l&&B&&(!(u=B.match(/Edge\/(\d+)/))||u[1]>=74)&&(u=B.match(/Chrome\/(\d+)/))&&(l=+u[1]);var J=l,P=!!Object.getOwnPropertySymbols&&!g(function(){var e=Symbol();return!String(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&J&&J<41}),G=P&&!Symbol.sham&&"symbol"==typeof Symbol.iterator,R=Object,W=G?function(e){return"symbol"==typeof e}:function(e){var n=Z("Symbol");return Y(n)&&_(n.prototype,R(e))},K=String,V=function(e){try{return K(e)}catch(e){return"Object"}},$=TypeError,q=function(e){if(Y(e))return e;throw $(V(e)+" is not a function")},ee=function(e,n){var t=e[n];return null==t?void 0:q(t)},ne=TypeError,te=Object.defineProperty,ie=function(e,n){try{te(d,e,{value:n,configurable:!0,writable:!0})}catch(t){d[e]=n}return n},ae=d["__core-js_shared__"]||ie("__core-js_shared__",{}),oe=s(function(e){(e.exports=function(e,n){return ae[e]||(ae[e]=void 0!==n?n:{})})("versions",[]).push({version:"3.23.3",mode:"global",copyright:"© 2014-2022 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.23.3/LICENSE",source:"https://github.com/zloirock/core-js"})}),re=Object,se=function(e){return re(I(e))},ue=v({}.hasOwnProperty),le=Object.hasOwn||function(e,n){return ue(se(e),n)},ce=0,de=Math.random(),ge=v(1..toString),he=function(e){return"Symbol("+(void 0===e?"":e)+")_"+ge(++ce+de,36)},pe=oe("wks"),me=d.Symbol,ye=me&&me.for,fe=G?me:me&&me.withoutSetter||he,Me=function(e){if(!le(pe,e)||!P&&"string"!=typeof pe[e]){var n="Symbol."+e;P&&le(me,e)?pe[e]=me[e]:pe[e]=G&&ye?ye(n):fe(n)}return pe[e]},je=TypeError,be=Me("toPrimitive"),we=function(e,n){if(!O(e)||W(e))return e;var t,i=ee(e,be);if(i){if(void 0===n&&(n="default"),t=y(i,e,n),!O(t)||W(t))return t;throw je("Can't convert object to primitive value")}return void 0===n&&(n="number"),function(e,n){var t,i;if("string"===n&&Y(t=e.toString)&&!O(i=y(t,e)))return i;if(Y(t=e.valueOf)&&!O(i=y(t,e)))return i;if("string"!==n&&Y(t=e.toString)&&!O(i=y(t,e)))return i;throw ne("Can't convert object to primitive value")}(e,n)},xe=function(e){var n=we(e,"string");return W(n)?n:n+""},Le=d.document,Ne=O(Le)&&O(Le.createElement),ve=function(e){return Ne?Le.createElement(e):{}},Se=!h&&!g(function(){return 7!=Object.defineProperty(ve("div"),"a",{get:function(){return 7}}).a}),Te=Object.getOwnPropertyDescriptor,De={f:h?Te:function(e,n){if(e=A(e),n=xe(n),Se)try{return Te(e,n)}catch(e){}if(le(e,n))return b(!y(j.f,e,n),e[n])}},ke=h&&g(function(){return 42!=Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype}),Ce=String,Ee=TypeError,ze=function(e){if(O(e))return e;throw Ee(Ce(e)+" is not an object")},Ie=TypeError,Ae=Object.defineProperty,Ye=Object.getOwnPropertyDescriptor,Oe={f:h?ke?function(e,n,t){if(ze(e),n=xe(n),ze(t),"function"==typeof e&&"prototype"===n&&"value"in t&&"writable"in t&&!t.writable){var i=Ye(e,n);i&&i.writable&&(e[n]=t.value,t={configurable:"configurable"in t?t.configurable:i.configurable,enumerable:"enumerable"in t?t.enumerable:i.enumerable,writable:!1})}return Ae(e,n,t)}:Ae:function(e,n,t){if(ze(e),n=xe(n),ze(t),Se)try{return Ae(e,n,t)}catch(e){}if("get"in t||"set"in t)throw Ie("Accessors not supported");return"value"in t&&(e[n]=t.value),e}},Qe=h?function(e,n,t){return Oe.f(e,n,b(1,t))}:function(e,n,t){return e[n]=t,e},Ze=Function.prototype,_e=h&&Object.getOwnPropertyDescriptor,Be=le(Ze,"name"),Fe={EXISTS:Be,PROPER:Be&&"something"===function(){}.name,CONFIGURABLE:Be&&(!h||h&&_e(Ze,"name").configurable)},Xe=v(Function.toString);Y(ae.inspectSource)||(ae.inspectSource=function(e){return Xe(e)});var Ue,He,Je,Pe=ae.inspectSource,Ge=d.WeakMap,Re=Y(Ge)&&/native code/.test(Pe(Ge)),We=oe("keys"),Ke=function(e){return We[e]||(We[e]=he(e))},Ve={},$e=d.TypeError,qe=d.WeakMap;if(Re||ae.state){var en=ae.state||(ae.state=new qe),nn=v(en.get),tn=v(en.has),an=v(en.set);Ue=function(e,n){if(tn(en,e))throw new $e("Object already initialized");return n.facade=e,an(en,e,n),n},He=function(e){return nn(en,e)||{}},Je=function(e){return tn(en,e)}}else{var on=Ke("state");Ve[on]=!0,Ue=function(e,n){if(le(e,on))throw new $e("Object already initialized");return n.facade=e,Qe(e,on,n),n},He=function(e){return le(e,on)?e[on]:{}},Je=function(e){return le(e,on)}}var rn={set:Ue,get:He,has:Je,enforce:function(e){return Je(e)?He(e):Ue(e,{})},getterFor:function(e){return function(n){var t;if(!O(n)||(t=He(n)).type!==e)throw $e("Incompatible receiver, "+e+" required");return t}}},sn=s(function(e){var n=Fe.CONFIGURABLE,t=rn.enforce,i=rn.get,a=Object.defineProperty,o=h&&!g(function(){return 8!==a(function(){},"length",{value:8}).length}),r=String(String).split("String"),s=e.exports=function(e,i,s){"Symbol("===String(i).slice(0,7)&&(i="["+String(i).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),s&&s.getter&&(i="get "+i),s&&s.setter&&(i="set "+i),(!le(e,"name")||n&&e.name!==i)&&(h?a(e,"name",{value:i,configurable:!0}):e.name=i),o&&s&&le(s,"arity")&&e.length!==s.arity&&a(e,"length",{value:s.arity});try{s&&le(s,"constructor")&&s.constructor?h&&a(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(e){}var u=t(e);return le(u,"source")||(u.source=r.join("string"==typeof i?i:"")),e};Function.prototype.toString=s(function(){return Y(this)&&i(this).source||Pe(this)},"toString")}),un=function(e,n,t,i){i||(i={});var a=i.enumerable,o=void 0!==i.name?i.name:n;if(Y(t)&&sn(t,o,i),i.global)a?e[n]=t:ie(n,t);else{try{i.unsafe?e[n]&&(a=!0):delete e[n]}catch(e){}a?e[n]=t:Oe.f(e,n,{value:t,enumerable:!1,configurable:!i.nonConfigurable,writable:!i.nonWritable})}return e},ln=Math.ceil,cn=Math.floor,dn=Math.trunc||function(e){var n=+e;return(n>0?cn:ln)(n)},gn=function(e){var n=+e;return n!=n||0===n?0:dn(n)},hn=Math.max,pn=Math.min,mn=function(e,n){var t=gn(e);return t<0?hn(t+n,0):pn(t,n)},yn=Math.min,fn=function(e){return e>0?yn(gn(e),9007199254740991):0},Mn=function(e){return fn(e.length)},jn=function(e){return function(n,t,i){var a,o=A(n),r=Mn(o),s=mn(i,r);if(e&&t!=t){for(;r>s;)if((a=o[s++])!=a)return!0}else for(;r>s;s++)if((e||s in o)&&o[s]===t)return e||s||0;return!e&&-1}},bn={includes:jn(!0),indexOf:jn(!1)},wn=bn.indexOf,xn=v([].push),Ln=function(e,n){var t,i=A(e),a=0,o=[];for(t in i)!le(Ve,t)&&le(i,t)&&xn(o,t);for(;n.length>a;)le(i,t=n[a++])&&(~wn(o,t)||xn(o,t));return o},Nn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],vn=Nn.concat("length","prototype"),Sn={f:Object.getOwnPropertyNames||function(e){return Ln(e,vn)}},Tn={f:Object.getOwnPropertySymbols},Dn=v([].concat),kn=Z("Reflect","ownKeys")||function(e){var n=Sn.f(ze(e)),t=Tn.f;return t?Dn(n,t(e)):n},Cn=function(e,n,t){for(var i=kn(n),a=Oe.f,o=De.f,r=0;r<i.length;r++){var s=i[r];le(e,s)||t&&le(t,s)||a(e,s,o(n,s))}},En=/#|\.prototype\./,zn=function(e,n){var t=An[In(e)];return t==On||t!=Yn&&(Y(n)?g(n):!!n)},In=zn.normalize=function(e){return String(e).replace(En,".").toLowerCase()},An=zn.data={},Yn=zn.NATIVE="N",On=zn.POLYFILL="P",Qn=zn,Zn=De.f,_n=function(e,n){var t,i,a,o,r,s=e.target,u=e.global,l=e.stat;if(t=u?d:l?d[s]||ie(s,{}):(d[s]||{}).prototype)for(i in n){if(o=n[i],a=e.dontCallGetSet?(r=Zn(t,i))&&r.value:t[i],!Qn(u?i:s+(l?".":"#")+i,e.forced)&&void 0!==a){if(typeof o==typeof a)continue;Cn(o,a)}(e.sham||a&&a.sham)&&Qe(o,"sham",!0),un(t,i,o,e)}},Bn=Object.keys||function(e){return Ln(e,Nn)},Fn=Object.assign,Xn=Object.defineProperty,Un=v([].concat),Hn=!Fn||g(function(){if(h&&1!==Fn({b:1},Fn(Xn({},"a",{enumerable:!0,get:function(){Xn(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},n={},t=Symbol();return e[t]=7,"abcdefghijklmnopqrst".split("").forEach(function(e){n[e]=e}),7!=Fn({},e)[t]||"abcdefghijklmnopqrst"!=Bn(Fn({},n)).join("")})?function(e,n){for(var t=se(e),i=arguments.length,a=1,o=Tn.f,r=j.f;i>a;)for(var s,u=E(arguments[a++]),l=o?Un(Bn(u),o(u)):Bn(u),c=l.length,d=0;c>d;)s=l[d++],h&&!y(r,u,s)||(t[s]=u[s]);return t}:Fn;_n({target:"Object",stat:!0,arity:2,forced:Object.assign!==Hn},{assign:Hn});var Jn=String,Pn=TypeError,Gn=Object.setPrototypeOf||("__proto__"in{}?function(){var e,n=!1,t={};try{(e=v(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(t,[]),n=t instanceof Array}catch(e){}return function(t,i){return ze(t),function(e){if("object"==typeof e||Y(e))return e;throw Pn("Can't set "+Jn(e)+" as a prototype")}(i),n?e(t,i):t.__proto__=i,t}}():void 0),Rn=Me("match"),Wn={};Wn[Me("toStringTag")]="z";var Kn="[object z]"===String(Wn),Vn=Me("toStringTag"),$n=Object,qn="Arguments"==D(function(){return arguments}()),et=Kn?D:function(e){var n,t,i;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(t=function(e,n){try{return e[n]}catch(e){}}(n=$n(e),Vn))?t:qn?D(n):"Object"==(i=D(n))&&Y(n.callee)?"Arguments":i},nt=String,tt=function(e){if("Symbol"===et(e))throw TypeError("Cannot convert a Symbol value to a string");return nt(e)},it=function(){var e=ze(this),n="";return e.hasIndices&&(n+="d"),e.global&&(n+="g"),e.ignoreCase&&(n+="i"),e.multiline&&(n+="m"),e.dotAll&&(n+="s"),e.unicode&&(n+="u"),e.unicodeSets&&(n+="v"),e.sticky&&(n+="y"),n},at=RegExp.prototype,ot=function(e){var n=e.flags;return void 0!==n||"flags"in at||le(e,"flags")||!_(at,e)?n:y(it,e)},rt=d.RegExp,st=g(function(){var e=rt("a","y");return e.lastIndex=2,null!=e.exec("abcd")}),ut=st||g(function(){return!rt("a","y").sticky}),lt={BROKEN_CARET:st||g(function(){var e=rt("^r","gy");return e.lastIndex=2,null!=e.exec("str")}),MISSED_STICKY:ut,UNSUPPORTED_Y:st},ct=Oe.f,dt=function(e,n,t){t in e||ct(e,t,{configurable:!0,get:function(){return n[t]},set:function(e){n[t]=e}})},gt=Me("species"),ht=d.RegExp,pt=g(function(){var e=ht(".","s");return!(e.dotAll&&e.exec("\n")&&"s"===e.flags)}),mt=d.RegExp,yt=g(function(){var e=mt("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")}),ft=Sn.f,Mt=rn.enforce,jt=Me("match"),bt=d.RegExp,wt=bt.prototype,xt=d.SyntaxError,Lt=v(wt.exec),Nt=v("".charAt),vt=v("".replace),St=v("".indexOf),Tt=v("".slice),Dt=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,kt=/a/g,Ct=/a/g,Et=new bt(kt)!==kt,zt=lt.MISSED_STICKY,It=lt.UNSUPPORTED_Y,At=h&&(!Et||zt||pt||yt||g(function(){return Ct[jt]=!1,bt(kt)!=kt||bt(Ct)==Ct||"/a/i"!=bt(kt,"i")}));if(Qn("RegExp",At)){for(var Yt=function(e,n){var t,i,a,o,r,s,u,l,c,d,g,h,p=_(wt,this),m=O(t=e)&&(void 0!==(i=t[Rn])?!!i:"RegExp"==D(t)),y=void 0===n,f=[],M=e;if(!p&&m&&y&&e.constructor===Yt)return e;if((m||_(wt,e))&&(e=e.source,y&&(n=ot(M))),e=void 0===e?"":tt(e),n=void 0===n?"":tt(n),M=e,pt&&"dotAll"in kt&&(o=!!n&&St(n,"s")>-1)&&(n=vt(n,/s/g,"")),a=n,zt&&"sticky"in kt&&(r=!!n&&St(n,"y")>-1)&&It&&(n=vt(n,/y/g,"")),yt&&(e=(s=function(e){for(var n,t=e.length,i=0,a="",o=[],r={},s=!1,u=!1,l=0,c="";i<=t;i++){if("\\"===(n=Nt(e,i)))n+=Nt(e,++i);else if("]"===n)s=!1;else if(!s)switch(!0){case"["===n:s=!0;break;case"("===n:Lt(Dt,Tt(e,i+1))&&(i+=2,u=!0),a+=n,l++;continue;case">"===n&&u:if(""===c||le(r,c))throw new xt("Invalid capture group name");r[c]=!0,o[o.length]=[c,l],u=!1,c="";continue}u?c+=n:a+=n}return[a,o]}(e))[0],f=s[1]),c=bt(e,n),d=Yt,Gn&&Y(g=(p?this:wt).constructor)&&g!==d&&O(h=g.prototype)&&h!==d.prototype&&Gn(c,h),u=c,(o||r||f.length)&&(l=Mt(u),o&&(l.dotAll=!0,l.raw=Yt(function(e){for(var n,t=e.length,i=0,a="",o=!1;i<=t;i++)"\\"!==(n=Nt(e,i))?o||"."!==n?("["===n?o=!0:"]"===n&&(o=!1),a+=n):a+="[\\s\\S]":a+=n+Nt(e,++i);return a}(e),a)),r&&(l.sticky=!0),f.length&&(l.groups=f)),e!==M)try{Qe(u,"source",""===M?"(?:)":M)}catch(e){}return u},Ot=ft(bt),Qt=0;Ot.length>Qt;)dt(Yt,bt,Ot[Qt++]);wt.constructor=Yt,Yt.prototype=wt,un(d,"RegExp",Yt,{constructor:!0})}!function(){var e=Z("RegExp"),n=Oe.f;h&&e&&!e[gt]&&n(e,gt,{configurable:!0,get:function(){return this}})}();var Zt,_t={f:h&&!ke?Object.defineProperties:function(e,n){ze(e);for(var t,i=A(n),a=Bn(n),o=a.length,r=0;o>r;)Oe.f(e,t=a[r++],i[t]);return e}},Bt=Z("document","documentElement"),Ft=Ke("IE_PROTO"),Xt=function(){},Ut=function(e){return"<script>"+e+"<\/script>"},Ht=function(e){e.write(Ut("")),e.close();var n=e.parentWindow.Object;return e=null,n},Jt=function(){try{Zt=new ActiveXObject("htmlfile")}catch(e){}var e,n;Jt="undefined"!=typeof document?document.domain&&Zt?Ht(Zt):((n=ve("iframe")).style.display="none",Bt.appendChild(n),n.src=String("javascript:"),(e=n.contentWindow.document).open(),e.write(Ut("document.F=Object")),e.close(),e.F):Ht(Zt);for(var t=Nn.length;t--;)delete Jt.prototype[Nn[t]];return Jt()};Ve[Ft]=!0;var Pt=Object.create||function(e,n){var t;return null!==e?(Xt.prototype=ze(e),t=new Xt,Xt.prototype=null,t[Ft]=e):t=Jt(),void 0===n?t:_t.f(t,n)},Gt=rn.get,Rt=oe("native-string-replace",String.prototype.replace),Wt=RegExp.prototype.exec,Kt=Wt,Vt=v("".charAt),$t=v("".indexOf),qt=v("".replace),ei=v("".slice),ni=function(){var e=/a/,n=/b*/g;return y(Wt,e,"a"),y(Wt,n,"a"),0!==e.lastIndex||0!==n.lastIndex}(),ti=lt.BROKEN_CARET,ii=void 0!==/()??/.exec("")[1];(ni||ii||ti||pt||yt)&&(Kt=function(e){var n,t,i,a,o,r,s,u=this,l=Gt(u),c=tt(e),d=l.raw;if(d)return d.lastIndex=u.lastIndex,n=y(Kt,d,c),u.lastIndex=d.lastIndex,n;var g=l.groups,h=ti&&u.sticky,p=y(it,u),m=u.source,f=0,M=c;if(h&&(p=qt(p,"y",""),-1===$t(p,"g")&&(p+="g"),M=ei(c,u.lastIndex),u.lastIndex>0&&(!u.multiline||u.multiline&&"\n"!==Vt(c,u.lastIndex-1))&&(m="(?: "+m+")",M=" "+M,f++),t=new RegExp("^(?:"+m+")",p)),ii&&(t=new RegExp("^"+m+"$(?!\\s)",p)),ni&&(i=u.lastIndex),a=y(Wt,h?t:u,M),h?a?(a.input=ei(a.input,f),a[0]=ei(a[0],f),a.index=u.lastIndex,u.lastIndex+=a[0].length):u.lastIndex=0:ni&&a&&(u.lastIndex=u.global?a.index+a[0].length:i),ii&&a&&a.length>1&&y(Rt,a[0],t,function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(a[o]=void 0)}),a&&g)for(a.groups=r=Pt(null),o=0;o<g.length;o++)r[(s=g[o])[0]]=a[s[1]];return a});var ai=Kt;_n({target:"RegExp",proto:!0,forced:/./.exec!==ai},{exec:ai});var oi=Fe.PROPER,ri=RegExp.prototype.toString,si=g(function(){return"/a/b"!=ri.call({source:"a",flags:"b"})}),ui=oi&&"toString"!=ri.name;(si||ui)&&un(RegExp.prototype,"toString",function(){var e=ze(this);return"/"+tt(e.source)+"/"+tt(ot(e))},{unsafe:!0});var li=Function.prototype,ci=li.apply,di=li.call,gi="object"==typeof Reflect&&Reflect.apply||(p?di.bind(ci):function(){return di.apply(ci,arguments)}),hi=Me("species"),pi=RegExp.prototype,mi=v("".charAt),yi=v("".charCodeAt),fi=v("".slice),Mi=function(e){return function(n,t){var i,a,o=tt(I(n)),r=gn(t),s=o.length;return r<0||r>=s?e?"":void 0:(i=yi(o,r))<55296||i>56319||r+1===s||(a=yi(o,r+1))<56320||a>57343?e?mi(o,r):i:e?fi(o,r,r+2):a-56320+(i-55296<<10)+65536}},ji=(Mi(!1),Mi(!0)),bi=function(e,n,t){return n+(t?ji(e,n).length:1)},wi=Math.floor,xi=v("".charAt),Li=v("".replace),Ni=v("".slice),vi=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,Si=/\$([$&'`]|\d{1,2})/g,Ti=function(e,n,t,i,a,o){var r=t+e.length,s=i.length,u=Si;return void 0!==a&&(a=se(a),u=vi),Li(o,u,function(o,u){var l;switch(xi(u,0)){case"$":return"$";case"&":return e;case"`":return Ni(n,0,t);case"'":return Ni(n,r);case"<":l=a[Ni(u,1,-1)];break;default:var c=+u;if(0===c)return o;if(c>s){var d=wi(c/10);return 0===d?o:d<=s?void 0===i[d-1]?xi(u,1):i[d-1]+xi(u,1):o}l=i[c-1]}return void 0===l?"":l})},Di=TypeError,ki=function(e,n){var t=e.exec;if(Y(t)){var i=y(t,e,n);return null!==i&&ze(i),i}if("RegExp"===D(e))return y(ai,e,n);throw Di("RegExp#exec called on incompatible receiver")},Ci=Me("replace"),Ei=Math.max,zi=Math.min,Ii=v([].concat),Ai=v([].push),Yi=v("".indexOf),Oi=v("".slice),Qi="$0"==="a".replace(/./,"$0"),Zi=!!/./[Ci]&&""===/./[Ci]("a","$0");!function(e,n,t,i){var a=Me(e),o=!g(function(){var n={};return n[a]=function(){return 7},7!=""[e](n)}),r=o&&!g(function(){var n=!1,t=/a/;return"split"===e&&((t={}).constructor={},t.constructor[hi]=function(){return t},t.flags="",t[a]=/./[a]),t.exec=function(){return n=!0,null},t[a](""),!n});if(!o||!r||t){var s=v(/./[a]),u=n(a,""[e],function(e,n,t,i,a){var r=v(e),u=n.exec;return u===ai||u===pi.exec?o&&!a?{done:!0,value:s(n,t,i)}:{done:!0,value:r(t,n,i)}:{done:!1}});un(String.prototype,e,u[0]),un(pi,a,u[1])}i&&Qe(pi[a],"sham",!0)}("replace",function(e,n,t){var i=Zi?"$":"$0";return[function(e,t){var i=I(this),a=null==e?void 0:ee(e,Ci);return a?y(a,e,i,t):y(n,tt(i),e,t)},function(e,a){var o=ze(this),r=tt(e);if("string"==typeof a&&-1===Yi(a,i)&&-1===Yi(a,"$<")){var s=t(n,o,r,a);if(s.done)return s.value}var u=Y(a);u||(a=tt(a));var l=o.global;if(l){var c=o.unicode;o.lastIndex=0}for(var d=[];;){var g=ki(o,r);if(null===g)break;if(Ai(d,g),!l)break;""===tt(g[0])&&(o.lastIndex=bi(r,fn(o.lastIndex),c))}for(var h,p="",m=0,y=0;y<d.length;y++){for(var f=tt((g=d[y])[0]),M=Ei(zi(gn(g.index),r.length),0),j=[],b=1;b<g.length;b++)Ai(j,void 0===(h=g[b])?h:String(h));var w=g.groups;if(u){var x=Ii([f],j,M,r);void 0!==w&&Ai(x,w);var L=tt(gi(a,void 0,x))}else L=Ti(f,r,M,j,w,a);M>=m&&(p+=Oi(r,m,M)+L,m=M+f.length)}return p+Oi(r,m)}]},!!g(function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")})||!Qi||Zi);var _i=v(v.bind),Bi=Array.isArray||function(e){return"Array"==D(e)},Fi=function(){},Xi=[],Ui=Z("Reflect","construct"),Hi=/^\s*(?:class|function)\b/,Ji=v(Hi.exec),Pi=!Hi.exec(Fi),Gi=function(e){if(!Y(e))return!1;try{return Ui(Fi,Xi,e),!0}catch(e){return!1}},Ri=function(e){if(!Y(e))return!1;switch(et(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Pi||!!Ji(Hi,Pe(e))}catch(e){return!0}};Ri.sham=!0;var Wi=!Ui||g(function(){var e;return Gi(Gi.call)||!Gi(Object)||!Gi(function(){e=!0})||e})?Ri:Gi,Ki=Me("species"),Vi=Array,$i=function(e,n){return new(function(e){var n;return Bi(e)&&(n=e.constructor,(Wi(n)&&(n===Vi||Bi(n.prototype))||O(n)&&null===(n=n[Ki]))&&(n=void 0)),void 0===n?Vi:n}(e))(0===n?0:n)},qi=v([].push),ea=function(e){var n=1==e,t=2==e,i=3==e,a=4==e,o=6==e,r=7==e,s=5==e||o;return function(u,l,c,d){for(var g,h,m=se(u),y=E(m),f=function(e,n){return q(e),void 0===n?e:p?_i(e,n):function(){return e.apply(n,arguments)}}(l,c),M=Mn(y),j=0,b=d||$i,w=n?b(u,M):t||r?b(u,0):void 0;M>j;j++)if((s||j in y)&&(h=f(g=y[j],j,m),e))if(n)w[j]=h;else if(h)switch(e){case 3:return!0;case 5:return g;case 6:return j;case 2:qi(w,g)}else switch(e){case 4:return!1;case 7:qi(w,g)}return o?-1:i||a?a:w}},na={forEach:ea(0),map:ea(1),filter:ea(2),some:ea(3),every:ea(4),find:ea(5),findIndex:ea(6),filterReject:ea(7)},ta=Me("species"),ia=function(e){return J>=51||!g(function(){var n=[];return(n.constructor={})[ta]=function(){return{foo:1}},1!==n[e](Boolean).foo})},aa=na.map;_n({target:"Array",proto:!0,forced:!ia("map")},{map:function(e){return aa(this,e,arguments.length>1?arguments[1]:void 0)}});var oa=Oe.f,ra=Me("unscopables"),sa=Array.prototype;null==sa[ra]&&oa(sa,ra,{configurable:!0,value:Pt(null)});var ua,la=na.find,ca=!0;"find"in[]&&Array(1).find(function(){ca=!1}),_n({target:"Array",proto:!0,forced:ca},{find:function(e){return la(this,e,arguments.length>1?arguments[1]:void 0)}}),ua="find",sa[ra][ua]=!0;var da=Kn?{}.toString:function(){return"[object "+et(this)+"]"};Kn||un(Object.prototype,"toString",da,{unsafe:!0});var ga,ha,pa,ma=d.RegExp,ya=ma.prototype;h&&g(function(){var e=!0;try{ma(".","d")}catch(n){e=!1}var n={},t="",i=e?"dgimsy":"gimsy",a=function(e,i){Object.defineProperty(n,e,{get:function(){return t+=i,!0}})},o={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};for(var r in e&&(o.hasIndices="d"),o)a(r,o[r]);return Object.getOwnPropertyDescriptor(ya,"flags").get.call(n)!==i||t!==i})&&(ga=ya,ha="flags",(pa={configurable:!0,get:it}).get&&sn(pa.get,ha,{getter:!0}),pa.set&&sn(pa.set,ha,{setter:!0}),Oe.f(ga,ha,pa)),_n({target:"Object",stat:!0,forced:g(function(){Bn(1)})},{keys:function(e){return Bn(se(e))}});var fa,Ma="\t\n\v\f\r \u2028\u2029\ufeff",ja=v("".replace),ba="["+Ma+"]",wa=RegExp("^"+ba+ba+"*"),xa=RegExp(ba+ba+"*$"),La=function(e){return function(n){var t=tt(I(n));return 1&e&&(t=ja(t,wa,"")),2&e&&(t=ja(t,xa,"")),t}},Na={start:La(1),end:La(2),trim:La(3)},va=Fe.PROPER,Sa=Na.trim;_n({target:"String",proto:!0,forced:(fa="trim",g(function(){return!!Ma[fa]()||"
"!=="
"[fa]()||va&&Ma[fa].name!==fa}))},{trim:function(){return Sa(this)}});for(var Ta=[["\0","","","","","","","","\b","\t","\n","\v","\f","\r","","","","","","","","","","","","","","","","","",""," ","!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,," ","!","C/","PS","$?","Y=","|","SS",'"',"(c)","a","<<","!",,"(r)","-","deg","+-","2","3","'","u","P","*",",","1","o",">>","1/4","1/2","3/4","?","A","A","A","A","A","A","AE","C","E","E","E","E","I","I","I","I","D","N","O","O","O","O","O","x","O","U","U","U","U","U","Th","ss","a","a","a","a","a","a","ae","c","e","e","e","e","i","i","i","i","d","n","o","o","o","o","o","/","o","u","u","u","u","y","th","y"],["A","a","A","a","A","a","C","c","C","c","C","c","C","c","D","d","D","d","E","e","E","e","E","e","E","e","E","e","G","g","G","g","G","g","G","g","H","h","H","h","I","i","I","i","I","i","I","i","I","i","IJ","ij","J","j","K","k","k","L","l","L","l","L","l","L","l","L","l","N","n","N","n","N","n","'n","NG","ng","O","o","O","o","O","o","OE","oe","R","r","R","r","R","r","S","s","S","s","S","s","S","s","T","t","T","t","T","t","U","u","U","u","U","u","U","u","U","u","U","u","W","w","Y","y","Y","Z","z","Z","z","Z","z","s","b","B","B","b","6","6","O","C","c","D","D","D","d","d","3","@","E","F","f","G","G","hv","I","I","K","k","l","l","W","N","n","O","O","o","OI","oi","P","p","YR","2","2","SH","sh","t","T","t","T","U","u","Y","V","Y","y","Z","z","ZH","ZH","zh","zh","2","5","5","ts","w","|","||","|=","!","DZ","Dz","dz","LJ","Lj","lj","NJ","Nj","nj","A","a","I","i","O","o","U","u","U","u","U","u","U","u","U","u","@","A","a","A","a","AE","ae","G","g","G","g","K","k","O","o","O","o","ZH","zh","j","DZ","D","dz","G","g","HV","W","N","n","A","a","AE","ae","O","o"],["A","a","A","a","E","e","E","e","I","i","I","i","O","o","O","o","R","r","R","r","U","u","U","u","S","s","T","t","Y","y","H","h","N","d","OU","ou","Z","z","A","a","E","e","O","o","O","o","O","o","O","o","Y","y","l","n","t","j","db","qp","A","C","c","L","T","s","z","?","?","B","U","V","E","e","J","j","Q","q","R","r","Y","y","a","a","a","b","o","c","d","d","e","@","@","e","e","e","e","j","g","g","g","g","u","Y","h","h","i","i","I","l","l","l","lZ","W","W","m","n","n","n","o","OE","O","F","R","R","R","R","r","r","R","R","R","s","S","j","S","S","t","t","U","U","v","^","W","Y","Y","z","z","Z","Z","?","?","?","C","@","B","E","G","H","j","k","L","q","?","?","dz","dZ","dz","ts","tS","tC","fN","ls","lz","WW","]]","h","h","k","h","j","r","r","r","r","w","y","'",'"',"`","'","`","`","'","?","?","<",">","^","V","^","V","'","-","/","\\",",","_","\\","/",":",".","`","'","^","V","+","-","V",".","@",",","~",'"',"R","X","G","l","s","x","?",,,,,,,,"V","=",'"'],[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"'",",",,,,,,,,,"?",,,,,,,,"A",";","E","I","I",,"O",,"U","O","I","A","V","G","D","E","Z","I","Th","I","K","L","M","N","X","O","P","R",,"S","T","Y","F","H","Ps","O","I","Y","a","e","i","i","y","a","v","g","d","e","z","i","th","i","k","l","m","n","x","o","p","r","s","s","t","y","f","h","ps","o","i","y","o","y","o",,"b","th","U","U","U","ph","p","&",,,"St","st","W","w","Q","q","Sp","sp","Sh","sh","F","f","Kh","kh","H","h","G","g","CH","ch","Ti","ti","k","r","c","j"],["Jo","Yo","Dj","Gj","Ie","Dz","I","Yi","J","Lj","Nj","Tsh","Kj","I","U","Dzh","A","B","V","G","D","E","Zh","Z","I","Y","K","L","M","N","O","P","R","S","T","U","F","H","C","Ch","Sh","Shch",,"Y",,"E","Yu","Ya","a","b","v","g","d","e","zh","z","i","y","k","l","m","n","o","p","r","s","t","u","f","h","c","ch","sh","shch",,"y",,"e","yu","ya","je","yo","dj","gj","ie","dz","i","yi","j","lj","nj","tsh","kj","i","u","dzh","O","o","E","e","Ie","ie","E","e","Ie","ie","O","o","Io","io","Ks","ks","Ps","ps","F","f","Y","y","Y","y","u","u","O","o","O","o","Ot","ot","Q","q","*1000*",,,,,,"*100.000*","*1.000.000*",,,'"','"',"R'","r'","G'","g'","G'","g'","G'","g'","Zh'","zh'","Z'","z'","K'","k'","K'","k'","K'","k'","K'","k'","N'","n'","Ng","ng","P'","p'","Kh","kh","S'","s'","T'","t'","U","u","U'","u'","Kh'","kh'","Tts","tts","Ch'","ch'","Ch'","ch'","H","h","Ch","ch","Ch'","ch'","`","Zh","zh","K'","k'",,,"N'","n'",,,"Ch","ch",,,,"a","a","A","a","Ae","ae","Ie","ie","@","@","@","@","Zh","zh","Z","z","Dz","dz","I","i","I","i","O","o","O","o","O","o","E","e","U","u","U","u","U","u","Ch","ch",,,"Y","y"],[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"A","B","G","D","E","Z","E","E","T`","Zh","I","L","Kh","Ts","K","H","Dz","Gh","Ch","M","Y","N","Sh","O","Ch`","P","J","Rh","S","V","T","R","Ts`","W","P`","K`","O","F",,,"<","'","/","!",",","?",".",,"a","b","g","d","e","z","e","e","t`","zh","i","l","kh","ts","k","h","dz","gh","ch","m","y","n","sh","o","ch`","p","j","rh","s","v","t","r","ts`","w","p`","k`","o","f","ew",,".","-",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"@","e","a","o","i","e","e","a","a","o",,"u","'",,,,,,,":",,,,,,,,,,,,,,"b","g","d","h","v","z","kh","t","y","k","k","l","m","m","n","n","s","`","p","p","ts","ts","q","r","sh","t",,,,,,"V","oy","i","'",'"'],[,,,,,,,,,,,,",",,,,,,,,,,,,,,,";",,,,"?",,,"a","'","w'",,"y'",,"b","@","t","th","j","H","kh","d","dh","r","z","s","sh","S","D","T","Z","aa","G",,,,,,,"f","q","k","l","m","n","h","w","~","y","an","un","in","a","u","i","W",,,"'","'",,,,,,,,,,,"0","1","2","3","4","5","6","7","8","9","%",".",",","*",,,,"'","'","'",,"'","'w","'u","'y","tt","tth","b","t","T","p","th","bh","'h","H","ny","dy","H","ch","cch","dd","D","D","Dt","dh","ddh","d","D","D","rr","R","R","R","R","R","R","j","R","S","S","S","S","S","T","GH","F","F","F","v","f","ph","Q","Q","kh","k","K","K","ng","K","g","G","N","G","G","G","L","L","L","L","N","N","N","N","N","h","Ch","hy","h","H","@","W","oe","oe","u","yu","yu","W","v","y","Y","Y","W",,,"y","y'",".","ae",,,,,,,,"@","#",,,,,,,,,,,"^",,,,,,,"0","1","2","3","4","5","6","7","8","9","Sh","D","Gh","&","+m"],["//","/",",","!","!","-",",",",",";","?","~","{","}","*",,,"'",,"b","g","g","d","d","h","w","z","H","t","t","y","yh","k","l","m","n","s","s","`","p","p","S","q","r","sh","t",,,,"a","a","a","A","A","A","e","e","e","E","i","i","u","u","u","o",,"`","'",,,"X","Q","@","@","|","+",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"h","sh","n","r","b","L","k","'","v","m","f","dh","th","l","g","ny","s","d","z","t","y","p","j","ch","tt","hh","kh","th","z","sh","s","d","t","z","`","gh","q","w","a","aa","i","ee","u","oo","e","ey","o","oa"],[],[,"N","N","H",,"a","aa","i","ii","u","uu","R","L","eN","e","e","ai","oN","o","o","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n","nnn","p","ph","b","bh","m","y","r","rr","l","l","lll","v","sh","ss","s","h",,,"'","'","aa","i","ii","u","uu","R","RR","eN","e","e","ai","oN","o","o","au",,,,"AUM","'","'","`","'",,,,"q","khh","ghh","z","dddh","rh","f","yy","RR","LL","L","LL"," / "," // ","0","1","2","3","4","5","6","7","8","9",".",,,,,,,,,,,,,,,,,"N","N","H",,"a","aa","i","ii","u","uu","R","RR",,,"e","ai",,,"o","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n",,"p","ph","b","bh","m","y","r",,"l",,,,"sh","ss","s","h",,,"'",,"aa","i","ii","u","uu","R","RR",,,"e","ai",,,"o","au",,,,,,,,,,,"+",,,,,"rr","rh",,"yy","RR","LL","L","LL",,,"0","1","2","3","4","5","6","7","8","9","r'","r`","Rs","Rs","1/","2/","3/","4/"," 1 - 1/","/16"],[,,"N",,,"a","aa","i","ii","u","uu",,,,,"ee","ai",,,"oo","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n",,"p","ph","b","bb","m","y","r",,"l","ll",,"v","sh",,"s","h",,,"'",,"aa","i","ii","u","uu",,,,,"ee","ai",,,"oo","au",,,,,,,,,,,,,"khh","ghh","z","rr",,"f",,,,,,,,"0","1","2","3","4","5","6","7","8","9","N","H",,,"G.E.O.",,,,,,,,,,,,,"N","N","H",,"a","aa","i","ii","u","uu","R",,"eN",,"e","ai","oN",,"o","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n",,"p","ph","b","bh","m","ya","r",,"l","ll",,"v","sh","ss","s","h",,,"'","'","aa","i","ii","u","uu","R","RR","eN",,"e","ai","oN",,"o","au",,,,"AUM",,,,,,,,,,,,,,,,"RR",,,,,,"0","1","2","3","4","5","6","7","8","9"],[,"N","N","H",,"a","aa","i","ii","u","uu","R","L",,,"e","ai",,,"o","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n",,"p","ph","b","bh","m","y","r",,"l","ll",,,"sh","ss","s","h",,,"'","'","aa","i","ii","u","uu","R",,,,"e","ai",,,"o","au",,,,,,,,,,"+","+",,,,,"rr","rh",,"yy","RR","LL",,,,,"0","1","2","3","4","5","6","7","8","9",,,,,,,,,,,,,,,,,,,"N","H",,"a","aa","i","ii","u","uu",,,,"e","ee","ai",,"o","oo","au","k",,,,"ng","c",,"j",,"ny","tt",,,,"nn","t",,,,"n","nnn","p",,,,"m","y","r","rr","l","ll","lll","v",,"ss","s","h",,,,,"aa","i","ii","u","uu",,,,"e","ee","ai",,"o","oo","au",,,,,,,,,,,"+",,,,,,,,,,,,,,,"0","1","2","3","4","5","6","7","8","9","+10+","+100+","+1000+"],[,"N","N","H",,"a","aa","i","ii","u","uu","R","L",,"e","ee","ai",,"o","oo","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n",,"p","ph","b","bh","m","y","r","rr","l","ll",,"v","sh","ss","s","h",,,,,"aa","i","ii","u","uu","R","RR",,"e","ee","ai",,"o","oo","au",,,,,,,,,"+","+",,,,,,,,,,"RR","LL",,,,,"0","1","2","3","4","5","6","7","8","9",,,,,,,,,,,,,,,,,,,"N","H",,"a","aa","i","ii","u","uu","R","L",,"e","ee","ai",,"o","oo","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n",,"p","ph","b","bh","m","y","r","rr","l","ll",,"v","sh","ss","s","h",,,,,"aa","i","ii","u","uu","R","RR",,"e","ee","ai",,"o","oo","au",,,,,,,,,"+","+",,,,,,,,"lll",,"RR","LL",,,,,"0","1","2","3","4","5","6","7","8","9"],[,,"N","H",,"a","aa","i","ii","u","uu","R","L",,"e","ee","ai",,"o","oo","au","k","kh","g","gh","ng","c","ch","j","jh","ny","tt","tth","dd","ddh","nn","t","th","d","dh","n",,"p","ph","b","bh","m","y","r","rr","l","ll","lll","v","sh","ss","s","h",,,,,"aa","i","ii","u","uu","R",,,"e","ee","ai",,"o","oo","au",,,,,,,,,,,"+",,,,,,,,,"RR","LL",,,,,"0","1","2","3","4","5","6","7","8","9",,,,,,,,,,,,,,,,,,,"N","H",,"a","aa","ae","aae","i","ii","u","uu","R","RR","L","LL","e","ee","ai","o","oo","au",,,,"k","kh","g","gh","ng","nng","c","ch","j","jh","ny","jny","nyj","tt","tth","dd","ddh","nn","nndd","t","th","d","dh","n",,"nd","p","ph","b","bh","m","mb","y","r",,"l",,,"v","sh","ss","s","h","ll","f",,,,,,,,,"aa","ae","aae","i","ii","u",,"uu",,"R","e","ee","ai","o","oo","au","L",,,,,,,,,,,,,,,,,,,"RR","LL"," . "],[,"k","kh","kh","kh","kh","kh","ng","cch","ch","ch","ch","ch","y","d","t","th","th","th","n","d","t","th","th","th","n","b","p","ph","f","ph","f","ph","m","y","r","R","l","L","w","s","s","s","h","l","`","h","~","a","a","aa","am","i","ii","ue","uue","u","uu","'",,,,,"Bh.","e","ae","o","ai","ai","ao","+",,,,,,,"M",," * ","0","1","2","3","4","5","6","7","8","9"," // "," /// ",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"k","kh",,"kh",,,"ng","ch",,"s",,,"ny",,,,,,,"d","h","th","th",,"n","b","p","ph","f","ph","f",,"m","y","r",,"l",,"w",,,"s","h",,"`",,"~","a",,"aa","am","i","ii","y","yy","u","uu",,"o","l","ny",,,"e","ei","o","ay","ai",,"+",,,,,,,"M",,,"0","1","2","3","4","5","6","7","8","9",,,"hn","hm"],["AUM",,,,,,,," // "," * ",,"-"," / "," / "," // "," -/ "," +/ "," X/ "," /XX/ "," /X/ ",",",,,,,,,,,,,,"0","1","2","3","4","5","6","7","8","9",".5","1.5","2.5","3.5","4.5","5.5","6.5","7.5","8.5","-.5","+","*","^","_",,"~",,"]","[[","]]",,,"k","kh","g","gh","ng","c","ch","j",,"ny","tt","tth","dd","ddh","nn","t","th","d","dh","n","p","ph","b","bh","m","ts","tsh","dz","dzh","w","zh","z","'","y","r","l","sh","ssh","s","h","a","kss","r",,,,,,,"aa","i","ii","u","uu","R","RR","L","LL","e","ee","o","oo","M","H","i","ii",,,,,,,,,,,,,,,"k","kh","g","gh","ng","c","ch","j",,"ny","tt","tth","dd","ddh","nn","t","th","d","dh","n","p","ph","b","bh","m","ts","tsh","dz","dzh","w","zh","z","'","y","r","l","sh","ss","s","h","a","kss","w","y","r",,"X"," :X: "," /O/ "," /o/ "," \\o\\ "," (O) "],["k","kh","g","gh","ng","c","ch","j","jh","ny","nny","tt","tth","dd","ddh","nn","tt","th","d","dh","n","p","ph","b","bh","m","y","r","l","w","s","h","ll","a",,"i","ii","u","uu","e",,"o","au",,"aa","i","ii","u","uu","e","ai",,,,"N","'",":",,,,,,,,"0","1","2","3","4","5","6","7","8","9"," / "," // ","n*","r*","l*","e*","sh","ss","R","RR","L","LL","R","RR","L","LL",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"A","B","G","D","E","V","Z","T`","I","K","L","M","N","O","P","Zh","R","S","T","U","P`","K`","G'","Q","Sh","Ch`","C`","Z'","C","Ch","X","J","H","E","Y","W","Xh","OE",,,,,,,,,,,"a","b","g","d","e","v","z","t`","i","k","l","m","n","o","p","zh","r","s","t","u","p`","k`","g'","q","sh","ch`","c`","z'","c","ch","x","j","h","e","y","w","xh","oe","f",,,,," // "],["g","gg","n","d","dd","r","m","b","bb","s","ss",,"j","jj","c","k","t","p","h","ng","nn","nd","nb","dg","rn","rr","rh","rN","mb","mN","bg","bn",,"bs","bsg","bst","bsb","bss","bsj","bj","bc","bt","bp","bN","bbN","sg","sn","sd","sr","sm","sb","sbg","sss","s","sj","sc","sk","st","sp","sh",,,,,"Z","g","d","m","b","s","Z",,"j","c","t","p","N","j",,,,,"ck","ch",,,"pb","pN","hh","Q",,,,,,,,"a","ae","ya","yae","eo","e","yeo","ye","o","wa","wae","oe","yo","u","weo","we","wi","yu","eu","yi","i","a-o","a-u","ya-o","ya-yo","eo-o","eo-u","eo-eu","yeo-o","yeo-u","o-eo","o-e","o-ye","o-o","o-u","yo-ya","yo-yae","yo-yeo","yo-o","yo-i","u-a","u-ae","u-eo-eu","u-ye","u-u","yu-a","yu-eo","yu-e","yu-yeo","yu-ye","yu-u","yu-i","eu-u","eu-eu","yi-u","i-a","i-ya","i-o","i-u","i-eu","i-U","U","U-eo","U-u","U-i","UU",,,,,,"g","gg","gs","n","nj","nh","d","l","lg","lm","lb","ls","lt","lp","lh","m","b","bs","s","ss","ng","j","c","k","t","p","h","gl","gsg","ng","nd","ns","nZ","nt","dg","tl","lgs","ln","ld","lth","ll","lmg","lms","lbs","lbh","rNp","lss","lZ","lk","lQ","mg","ml","mb","ms","mss","mZ","mc","mh","mN","bl","bp","ph","pN","sg","sd","sl","sb","Z","g","ss",,"kh","N","Ns","NZ","pb","pN","hn","hl","hm","hb","Q"],["ha","hu","hi","haa","hee","he","ho",,"la","lu","li","laa","lee","le","lo","lwa","hha","hhu","hhi","hhaa","hhee","hhe","hho","hhwa","ma","mu","mi","maa","mee","me","mo","mwa","sza","szu","szi","szaa","szee","sze","szo","szwa","ra","ru","ri","raa","ree","re","ro","rwa","sa","su","si","saa","see","se","so","swa","sha","shu","shi","shaa","shee","she","sho","shwa","qa","qu","qi","qaa","qee","qe","qo",,"qwa",,"qwi","qwaa","qwee","qwe",,,"qha","qhu","qhi","qhaa","qhee","qhe","qho",,"qhwa",,"qhwi","qhwaa","qhwee","qhwe",,,"ba","bu","bi","baa","bee","be","bo","bwa","va","vu","vi","vaa","vee","ve","vo","vwa","ta","tu","ti","taa","tee","te","to","twa","ca","cu","ci","caa","cee","ce","co","cwa","xa","xu","xi","xaa","xee","xe","xo",,"xwa",,"xwi","xwaa","xwee","xwe",,,"na","nu","ni","naa","nee","ne","no","nwa","nya","nyu","nyi","nyaa","nyee","nye","nyo","nywa","'a","'u",,"'aa","'ee","'e","'o","'wa","ka","ku","ki","kaa","kee","ke","ko",,"kwa",,"kwi","kwaa","kwee","kwe",,,"kxa","kxu","kxi","kxaa","kxee","kxe","kxo",,"kxwa",,"kxwi","kxwaa","kxwee","kxwe",,,"wa","wu","wi","waa","wee","we","wo",,"`a","`u","`i","`aa","`ee","`e","`o",,"za","zu","zi","zaa","zee","ze","zo","zwa","zha","zhu","zhi","zhaa","zhee","zhe","zho","zhwa","ya","yu","yi","yaa","yee","ye","yo",,"da","du","di","daa","dee","de","do","dwa","dda","ddu","ddi","ddaa","ddee","dde","ddo","ddwa"],["ja","ju","ji","jaa","jee","je","jo","jwa","ga","gu","gi","gaa","gee","ge","go",,"gwa",,"gwi","gwaa","gwee","gwe",,,"gga","ggu","ggi","ggaa","ggee","gge","ggo",,"tha","thu","thi","thaa","thee","the","tho","thwa","cha","chu","chi","chaa","chee","che","cho","chwa","pha","phu","phi","phaa","phee","phe","pho","phwa","tsa","tsu","tsi","tsaa","tsee","tse","tso","tswa","tza","tzu","tzi","tzaa","tzee","tze","tzo",,"fa","fu","fi","faa","fee","fe","fo","fwa","pa","pu","pi","paa","pee","pe","po","pwa","rya","mya","fya",,,,,,," ",".",",",";",":",":: ","?","//","1","2","3","4","5","6","7","8","9","10+","20+","30+","40+","50+","60+","70+","80+","90+","100+","10,000+",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"a","e","i","o","u","v","ga","ka","ge","gi","go","gu","gv","ha","he","hi","ho","hu","hv","la","le","li","lo","lu","lv","ma","me","mi","mo","mu","na","hna","nah","ne","ni","no","nu","nv","qua","que","qui","quo","quu","quv","sa","s","se","si","so","su","sv","da","ta","de","te","di","ti","do","du","dv","dla","tla","tle","tli","tlo","tlu","tlv","tsa","tse","tsi","tso","tsu","tsv","wa","we","wi","wo","wu","wv","ya","ye","yi","yo","yu","yv"],[,"ai","aai","i","ii","u","uu","oo","ee","i","a","aa","we","we","wi","wi","wii","wii","wo","wo","woo","woo","woo","wa","wa","waa","waa","waa","ai","w","'","t","k","sh","s","n","w","n",,"w","c","?","l","en","in","on","an","pai","paai","pi","pii","pu","puu","poo","hee","hi","pa","paa","pwe","pwe","pwi","pwi","pwii","pwii","pwo","pwo","pwoo","pwoo","pwa","pwa","pwaa","pwaa","pwaa","p","p","h","tai","taai","ti","tii","tu","tuu","too","dee","di","ta","taa","twe","twe","twi","twi","twii","twii","two","two","twoo","twoo","twa","twa","twaa","twaa","twaa","t","tte","tti","tto","tta","kai","kaai","ki","kii","ku","kuu","koo","ka","kaa","kwe","kwe","kwi","kwi","kwii","kwii","kwo","kwo","kwoo","kwoo","kwa","kwa","kwaa","kwaa","kwaa","k","kw","keh","kih","koh","kah","gai","caai","gi","gii","gu","guu","coo","ga","gaa","cwe","cwe","cwi","cwi","cwii","cwii","cwo","cwo","cwoo","cwoo","cwa","cwa","cwaa","cwaa","cwaa","g","th","mai","maai","mi","mii","mu","muu","moo","ma","maa","mwe","mwe","mwi","mwi","mwii","mwii","mwo","mwo","mwoo","mwoo","mwa","mwa","mwaa","mwaa","mwaa","m","m","mh","m","m","nai","naai","ni","nii","nu","nuu","noo","na","naa","nwe","nwe","nwa","nwa","nwaa","nwaa","nwaa","n","ng","nh","lai","laai","li","lii","lu","luu","loo","la","laa","lwe","lwe","lwi","lwi","lwii","lwii","lwo","lwo","lwoo","lwoo","lwa","lwa","lwaa","lwaa","l","l","l","sai","saai","si","sii","su","suu","soo","sa","saa","swe","swe","swi","swi","swii","swii","swo","swo","swoo","swoo"],["swa","swa","swaa","swaa","swaa","s","s","sw","s","sk","skw","sW","spwa","stwa","skwa","scwa","she","shi","shii","sho","shoo","sha","shaa","shwe","shwe","shwi","shwi","shwii","shwii","shwo","shwo","shwoo","shwoo","shwa","shwa","shwaa","shwaa","sh","jai","yaai","ji","jii","ju","juu","yoo","ja","jaa","ywe","ywe","ywi","ywi","ywii","ywii","ywo","ywo","ywoo","ywoo","ywa","ywa","ywaa","ywaa","ywaa","j","y","y","yi","re","rai","le","raai","ri","rii","ru","ruu","lo","ra","raa","la","rwaa","rwaa","r","r","r","vai","faai","vi","vii","vu","vuu","va","vaa","fwaa","fwaa","v","the","the","thi","thi","thii","thii","tho","thoo","tha","thaa","thwaa","thwaa","th","tthe","tthi","ttho","ttha","tth","tye","tyi","tyo","tya","he","hi","hii","ho","hoo","ha","haa","h","h","hk","qaai","qi","qii","qu","quu","qa","qaa","q","tlhe","tlhi","tlho","tlha","re","ri","ro","ra","ngaai","ngi","ngii","ngu","nguu","nga","ngaa","ng","nng","she","shi","sho","sha","the","thi","tho","tha","th","lhi","lhii","lho","lhoo","lha","lhaa","lh","the","thi","thii","tho","thoo","tha","thaa","th","b","e","i","o","a","we","wi","wo","wa","ne","ni","no","na","ke","ki","ko","ka","he","hi","ho","ha","ghu","gho","ghe","ghee","ghi","gha","ru","ro","re","ree","ri","ra","wu","wo","we","wee","wi","wa","hwu","hwo","hwe","hwee","hwi","hwa","thu","tho","the","thee","thi","tha","ttu","tto","tte","ttee","tti","tta","pu","po","pe","pee","pi","pa","p","gu","go","ge","gee","gi","ga","khu","kho","khe","khee","khi","kha","kku","kko","kke","kkee","kki"],["kka","kk","nu","no","ne","nee","ni","na","mu","mo","me","mee","mi","ma","yu","yo","ye","yee","yi","ya","ju","ju","jo","je","jee","ji","ji","ja","jju","jjo","jje","jjee","jji","jja","lu","lo","le","lee","li","la","dlu","dlo","dle","dlee","dli","dla","lhu","lho","lhe","lhee","lhi","lha","tlhu","tlho","tlhe","tlhee","tlhi","tlha","tlu","tlo","tle","tlee","tli","tla","zu","zo","ze","zee","zi","za","z","z","dzu","dzo","dze","dzee","dzi","dza","su","so","se","see","si","sa","shu","sho","she","shee","shi","sha","sh","tsu","tso","tse","tsee","tsi","tsa","chu","cho","che","chee","chi","cha","ttsu","ttso","ttse","ttsee","ttsi","ttsa","X",".","qai","ngai","nngi","nngii","nngo","nngoo","nnga","nngaa",,,,,,,,,," ","b","l","f","s","n","h","d","t","c","q","m","g","ng","z","r","a","o","u","e","i","ch","th","ph","p","x","p","<",">",,,,"f","v","u","yr","y","w","th","th","a","o","ac","ae","o","o","o","oe","on","r","k","c","k","g","ng","g","g","w","h","h","h","h","n","n","n","i","e","j","g","ae","a","eo","p","z","s","s","s","c","z","t","t","d","b","b","p","p","e","m","m","m","l","l","ng","ng","d","o","ear","ior","qu","qu","qu","s","yr","yr","yr","q","x",".",":","+","17","18","19"],[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"k","kh","g","gh","ng","c","ch","j","jh","ny","t","tth","d","ddh","nn","t","th","d","dh","n","p","ph","b","bh","m","y","r","l","v","sh","ss","s","h","l","q","a","aa","i","ii","u","uk","uu","uuv","ry","ryy","ly","lyy","e","ai","oo","oo","au","a","aa","aa","i","ii","y","yy","u","uu","ua","oe","ya","ie","e","ae","ai","oo","au","M","H","a`",,,,"r",,"!",,,,,,"."," // ",":","+","++"," * "," /// ","KR","'",,,,"0","1","2","3","4","5","6","7","8","9"],[" @ "," ... ",",",". ",": "," // ",,"-",",",". ",,,,,,,"0","1","2","3","4","5","6","7","8","9",,,,,,,"a","e","i","o","u","O","U","ee","n","ng","b","p","q","g","m","l","s","sh","t","d","ch","j","y","r","w","f","k","kha","ts","z","h","zr","lh","zh","ch","-","e","i","o","u","O","U","ng","b","p","q","g","m","t","d","ch","j","ts","y","w","k","g","h","jy","ny","dz","e","i","iy","U","u","ng","k","g","h","p","sh","t","d","j","f","g","h","ts","z","r","ch","zh","i","k","r","f","zh",,,,,,,,,,"H","X","W","M"," 3 "," 333 ","a","i","k","ng","c","tt","tth","dd","nn","t","d","p","ph","ss","zh","z","a","t","zh","gh","ng","c","jh","tta","ddh","t","dh","ss","cy","zh","z","u","y","bh","'"],[],[],[],[],[],["A","a","B","b","B","b","B","b","C","c","D","d","D","d","D","d","D","d","D","d","E","e","E","e","E","e","E","e","E","e","F","f","G","g","H","h","H","h","H","h","H","h","H","h","I","i","I","i","K","k","K","k","K","k","L","l","L","l","L","l","L","l","M","m","M","m","M","m","N","n","N","n","N","n","N","n","O","o","O","o","O","o","O","o","P","p","P","p","R","r","R","r","R","r","R","r","S","s","S","s","S","s","S","s","S","s","T","t","T","t","T","t","T","t","U","u","U","u","U","u","U","u","U","u","V","v","V","v","W","w","W","w","W","w","W","w","W","w","X","x","X","x","Y","y","Z","z","Z","z","Z","z","h","t","w","y","a","S",,,,,"A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","A","a","E","e","E","e","E","e","E","e","E","e","E","e","E","e","E","e","I","i","I","i","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","O","o","U","u","U","u","U","u","U","u","U","u","U","u","U","u","Y","y","Y","y","Y","y","Y","y"],["a","a","a","a","a","a","a","a","A","A","A","A","A","A","A","A","e","e","e","e","e","e",,,"E","E","E","E","E","E",,,"e","e","e","e","e","e","e","e","E","E","E","E","E","E","E","E","i","i","i","i","i","i","i","i","I","I","I","I","I","I","I","I","o","o","o","o","o","o",,,"O","O","O","O","O","O",,,"u","u","u","u","u","u","u","u",,"U",,"U",,"U",,"U","o","o","o","o","o","o","o","o","O","O","O","O","O","O","O","O","a","a","e","e","e","e","i","i","o","o","u","u","o","o",,,"a","a","a","a","a","a","a","a","A","A","A","A","A","A","A","A","e","e","e","e","e","e","e","e","E","E","E","E","E","E","E","E","o","o","o","o","o","o","o","o","O","O","O","O","O","O","O","O","a","a","a","a","a",,"a","a","A","A","A","A","A","'","i","'","~",'"~',"e","e","e",,"e","e","E","E","E","E","E","'`","''","'~","i","i","i","i",,,"i","i","I","I","I","I",,"`'","`'","`~","u","u","u","u","R","R","u","u","U","U","U","U","R",'"`',"\"'","`",,,"o","o","o",,"o","o","O","O","O","O","O","'","`"],[" "," "," "," "," "," "," "," "," "," "," "," ",,,,,"-","-","-","-","--","--","||","_","'","'",",","'",'"','"',",,",'"',"+","++","*","*>",".","..","...",".","\n","\n\n",,,,,," ","%0","%00","'","''","'''","`","``","```","^","<",">","*","!!","!?","-","_","-","^","***","--","/","-[","]-",,"?!","!?","7","PP","(]","[)",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"0",,,,"4","5","6","7","8","9","+","-","=","(",")","n","0","1","2","3","4","5","6","7","8","9","+","-","=","(",")",,,,,,,,,,,,,,,,,,"ECU","CL","Cr","FF","L","mil","N","Pts","Rs","W","NS","D","EU","K","T","Dr"],[,,"C",,,,,,,,"g","H","H","H","h",,"I","I","L","l","lb","N","no","(p)","P","P","Q","R","R","R",,,"(sm)","(tel)","(tm)",,"Z",,,"mho","Z",,,,"B","C","e","e",,"F",,"M","o",,,,,"i","Q","(fax)","pi",,,"Pi",,"G","L","L","Y","D","d","e","i","j",,,"per",,,,,,," 1/3 "," 2/3 "," 1/5 "," 2/5 "," 3/5 "," 4/5 "," 1/6 "," 5/6 "," 1/8 "," 3/8 "," 5/8 "," 7/8 "," 1/","I","II","III","IV","V","VI","VII","VIII","IX","X","XI","XII","L","C","D","M","i","ii","iii","iv","v","vi","vii","viii","ix","x","xi","xii","l","c","d","m","(D","D)","((|))",")",,,,,,,,,,,,,"-","|","-","|","-","|","\\","/","\\","/","-","-","~","~","-","|","-","|","-","-","-","|","-","|","|","-","-","-","-","-","-","|","|","|","|","|","|","|","^","V","\\","=","V","^","-","-","|","|","-","-","|","|","=","|","=","=","|","=","|","=","=","=","=","=","=","|","=","|","=","|","\\","/","\\","/","=","=","~","~","|","|","-","|","-","|","-","-","-","|","-","|","|","|","|","|","|","|","-","\\","\\","|"],[],[],[],["-","-","|","|","-","-","|","|","-","-","|","|","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","-","-","|","|","-","|","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","+","/","\\","X","-","|","-","|","-","|","-","|","-","|","-","|","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","-","|",,,,,,,,,,,"#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","#","^","^","^","^",">",">",">",">",">",">","V","V","V","V","<","<","<","<","<","<","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","*","#","#","#","#","#","^","^","^","O","#","#","#","#","#","#","#","#"],[],[],[" ","a","1","b","'","k","2","l","@","c","i","f","/","m","s","p",'"',"e","3","h","9","o","6","r","^","d","j","g",">","n","t","q",",","*","5","<","-","u","8","v",".","%","[","$","+","x","!","&",";",":","4","\\","0","z","7","(","_","?","w","]","#","y",")","=","[d7]","[d17]","[d27]","[d127]","[d37]","[d137]","[d237]","[d1237]","[d47]","[d147]","[d247]","[d1247]","[d347]","[d1347]","[d2347]","[d12347]","[d57]","[d157]","[d257]","[d1257]","[d357]","[d1357]","[d2357]","[d12357]","[d457]","[d1457]","[d2457]","[d12457]","[d3457]","[d13457]","[d23457]","[d123457]","[d67]","[d167]","[d267]","[d1267]","[d367]","[d1367]","[d2367]","[d12367]","[d467]","[d1467]","[d2467]","[d12467]","[d3467]","[d13467]","[d23467]","[d123467]","[d567]","[d1567]","[d2567]","[d12567]","[d3567]","[d13567]","[d23567]","[d123567]","[d4567]","[d14567]","[d24567]","[d124567]","[d34567]","[d134567]","[d234567]","[d1234567]","[d8]","[d18]","[d28]","[d128]","[d38]","[d138]","[d238]","[d1238]","[d48]","[d148]","[d248]","[d1248]","[d348]","[d1348]","[d2348]","[d12348]","[d58]","[d158]","[d258]","[d1258]","[d358]","[d1358]","[d2358]","[d12358]","[d458]","[d1458]","[d2458]","[d12458]","[d3458]","[d13458]","[d23458]","[d123458]","[d68]","[d168]","[d268]","[d1268]","[d368]","[d1368]","[d2368]","[d12368]","[d468]","[d1468]","[d2468]","[d12468]","[d3468]","[d13468]","[d23468]","[d123468]","[d568]","[d1568]","[d2568]","[d12568]","[d3568]","[d13568]","[d23568]","[d123568]","[d4568]","[d14568]","[d24568]","[d124568]","[d34568]","[d134568]","[d234568]","[d1234568]","[d78]","[d178]","[d278]","[d1278]","[d378]","[d1378]","[d2378]","[d12378]","[d478]","[d1478]","[d2478]","[d12478]","[d3478]","[d13478]","[d23478]","[d123478]","[d578]","[d1578]","[d2578]","[d12578]","[d3578]","[d13578]","[d23578]","[d123578]","[d4578]","[d14578]","[d24578]","[d124578]","[d34578]","[d134578]","[d234578]","[d1234578]","[d678]","[d1678]","[d2678]","[d12678]","[d3678]","[d13678]","[d23678]","[d123678]","[d4678]","[d14678]","[d24678]","[d124678]","[d34678]","[d134678]","[d234678]","[d1234678]","[d5678]","[d15678]","[d25678]","[d125678]","[d35678]","[d135678]","[d235678]","[d1235678]","[d45678]","[d145678]","[d245678]","[d1245678]","[d345678]","[d1345678]","[d2345678]","[d12345678]"],[],[],[],[],[],[],[],[" ",",",". ",'"',"[JIS]",'"',"/","0","<","> ","<<",">> ","[","] ","{","} ","[(",")] ","@","X ","[","] ","[[","]] ","((",")) ","[[","]] ","~ ","``","''",",,","@","1","2","3","4","5","6","7","8","9",,,,,,,"~","+","+","+","+",,"@"," // ","+10+","+20+","+30+",,,,,,,"a","a","i","i","u","u","e","e","o","o","ka","ga","ki","gi","ku","gu","ke","ge","ko","go","sa","za","si","zi","su","zu","se","ze","so","zo","ta","da","ti","di","tu","tu","du","te","de","to","do","na","ni","nu","ne","no","ha","ba","pa","hi","bi","pi","hu","bu","pu","he","be","pe","ho","bo","po","ma","mi","mu","me","mo","ya","ya","yu","yu","yo","yo","ra","ri","ru","re","ro","wa","wa","wi","we","wo","n","vu",,,,,,,,,'"','"',,,"a","a","i","i","u","u","e","e","o","o","ka","ga","ki","gi","ku","gu","ke","ge","ko","go","sa","za","si","zi","su","zu","se","ze","so","zo","ta","da","ti","di","tu","tu","du","te","de","to","do","na","ni","nu","ne","no","ha","ba","pa","hi","bi","pi","hu","bu","pu","he","be","pe","ho","bo","po","ma","mi","mu","me","mo","ya","ya","yu","yu","yo","yo","ra","ri","ru","re","ro","wa","wa","wi","we","wo","n","vu","ka","ke","va","vi","ve","vo",,,'"','"'],[,,,,,"B","P","M","F","D","T","N","L","G","K","H","J","Q","X","ZH","CH","SH","R","Z","C","S","A","O","E","EH","AI","EI","AU","OU","AN","EN","ANG","ENG","ER","I","U","IU","V","NG","GN",,,,,"g","gg","gs","n","nj","nh","d","dd","r","lg","lm","lb","ls","lt","lp","rh","m","b","bb","bs","s","ss",,"j","jj","c","k","t","p","h","a","ae","ya","yae","eo","e","yeo","ye","o","wa","wae","oe","yo","u","weo","we","wi","yu","eu","yi","i",,"nn","nd","ns","nZ","lgs","ld","lbs","lZ","lQ","mb","ms","mZ","mN","bg",,"bsg","bst","bj","bt","bN","bbN","sg","sn","sd","sb","sj","Z",,"N","Ns","NZ","pN","hh","Q","yo-ya","yo-yae","yo-i","yu-yeo","yu-ye","yu-i","U","U-i",,,,,,,,,,,,,,,,,,"BU","ZI","JI","GU","EE","ENN","OO","ONN","IR","ANN","INN","UNN","IM","NGG","AINN","AUNN","AM","OM","ONG","INNN","P","T","K","H"],["(g)","(n)","(d)","(r)","(m)","(b)","(s)","()","(j)","(c)","(k)","(t)","(p)","(h)","(ga)","(na)","(da)","(ra)","(ma)","(ba)","(sa)","(a)","(ja)","(ca)","(ka)","(ta)","(pa)","(ha)","(ju)",,,,"(1) ","(2) ","(3) ","(4) ","(5) ","(6) ","(7) ","(8) ","(9) ","(10) ","(Yue) ","(Huo) ","(Shui) ","(Mu) ","(Jin) ","(Tu) ","(Ri) ","(Zhu) ","(You) ","(She) ","(Ming) ","(Te) ","(Cai) ","(Zhu) ","(Lao) ","(Dai) ","(Hu) ","(Xue) ","(Jian) ","(Qi) ","(Zi) ","(Xie) ","(Ji) ","(Xiu) ","<<",">>",,,,,,,,,,,,,,,,,,,,,,,,,,,,,"(g)","(n)","(d)","(r)","(m)","(b)","(s)","()","(j)","(c)","(k)","(t)","(p)","(h)","(ga)","(na)","(da)","(ra)","(ma)","(ba)","(sa)","(a)","(ja)","(ca)","(ka)","(ta)","(pa)","(ha)",,,,"KIS ","(1) ","(2) ","(3) ","(4) ","(5) ","(6) ","(7) ","(8) ","(9) ","(10) ","(Yue) ","(Huo) ","(Shui) ","(Mu) ","(Jin) ","(Tu) ","(Ri) ","(Zhu) ","(You) ","(She) ","(Ming) ","(Te) ","(Cai) ","(Zhu) ","(Lao) ","(Mi) ","(Nan) ","(Nu) ","(Shi) ","(You) ","(Yin) ","(Zhu) ","(Xiang) ","(Xiu) ","(Xie) ","(Zheng) ","(Shang) ","(Zhong) ","(Xia) ","(Zuo) ","(You) ","(Yi) ","(Zong) ","(Xue) ","(Jian) ","(Qi) ","(Zi) ","(Xie) ","(Ye) ",,,,,,,,,,,,,,,,"1M","2M","3M","4M","5M","6M","7M","8M","9M","10M","11M","12M",,,,,"a","i","u","u","o","ka","ki","ku","ke","ko","sa","si","su","se","so","ta","ti","tu","te","to","na","ni","nu","ne","no","ha","hi","hu","he","ho","ma","mi","mu","me","mo","ya","yu","yo","ra","ri","ru","re","ro","wa","wi","we","wo"],["apartment","alpha","ampere","are","inning","inch","won","escudo","acre","ounce","ohm","kai-ri","carat","calorie","gallon","gamma","giga","guinea","curie","guilder","kilo","kilogram","kilometer","kilowatt","gram","gram ton","cruzeiro","krone","case","koruna","co-op","cycle","centime","shilling","centi","cent","dozen","desi","dollar","ton","nano","knot","heights","percent","parts","barrel","piaster","picul","pico","building","farad","feet","bushel","franc","hectare","peso","pfennig","hertz","pence","page","beta","point","volt","hon","pound","hall","horn","micro","mile","mach","mark","mansion","micron","milli","millibar","mega","megaton","meter","yard","yard","yuan","liter","lira","rupee","ruble","rem","roentgen","watt","0h","1h","2h","3h","4h","5h","6h","7h","8h","9h","10h","11h","12h","13h","14h","15h","16h","17h","18h","19h","20h","21h","22h","23h","24h","HPA","da","AU","bar","oV","pc",,,,,"Heisei","Syouwa","Taisyou","Meiji","Inc.","pA","nA","microamp","mA","kA","kB","MB","GB","cal","kcal","pF","nF","microFarad","microgram","mg","kg","Hz","kHz","MHz","GHz","THz","microliter","ml","dl","kl","fm","nm","micrometer","mm","cm","km","mm^2","cm^2","m^2","km^2","mm^4","cm^3","m^3","km^3","m/s","m/s^2","Pa","kPa","MPa","GPa","rad","rad/s","rad/s^2","ps","ns","microsecond","ms","pV","nV","microvolt","mV","kV","MV","pW","nW","microwatt","mW","kW","MW","kOhm","MOhm","a.m.","Bq","cc","cd","C/kg","Co.","dB","Gy","ha","HP","in","K.K.","KM","kt","lm","ln","log","lx","mb","mil","mol","pH","p.m.","PPM","PR","sr","Sv","Wb",,,"1d","2d","3d","4d","5d","6d","7d","8d","9d","10d","11d","12d","13d","14d","15d","16d","17d","18d","19d","20d","21d","22d","23d","24d","25d","26d","27d","28d","29d","30d","31d"],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],["Yi","Ding","Kao","Qi","Shang","Xia",,"Wan","Zhang","San","Shang","Xia","Ji","Bu","Yu","Mian","Gai","Chou","Chou","Zhuan","Qie","Pi","Shi","Shi","Qiu","Bing","Ye","Cong","Dong","Si","Cheng","Diu","Qiu","Liang","Diu","You","Liang","Yan","Bing","Sang","Gun","Jiu","Ge","Ya","Qiang","Zhong","Ji","Jie","Feng","Guan","Chuan","Chan","Lin","Zhuo","Zhu","Ha","Wan","Dan","Wei","Zhu","Jing","Li","Ju","Pie","Fu","Yi","Yi","Nai","Shime","Jiu","Jiu","Zhe","Me","Yi",,"Zhi","Wu","Zha","Hu","Fa","Le","Zhong","Ping","Pang","Qiao","Hu","Guai","Cheng","Cheng","Yi","Yin",,"Mie","Jiu","Qi","Ye","Xi","Xiang","Gai","Diu","Hal",,"Shu","Twul","Shi","Ji","Nang","Jia","Kel","Shi",,"Ol","Mai","Luan","Cal","Ru","Xue","Yan","Fu","Sha","Na","Gan","Sol","El","Cwul",,"Gan","Chi","Gui","Gan","Luan","Lin","Yi","Jue","Liao","Ma","Yu","Zheng","Shi","Shi","Er","Chu","Yu","Yu","Yu","Yun","Hu","Qi","Wu","Jing","Si","Sui","Gen","Gen","Ya","Xie","Ya","Qi","Ya","Ji","Tou","Wang","Kang","Ta","Jiao","Hai","Yi","Chan","Heng","Mu",,"Xiang","Jing","Ting","Liang","Xiang","Jing","Ye","Qin","Bo","You","Xie","Dan","Lian","Duo","Wei","Ren","Ren","Ji","La","Wang","Yi","Shi","Ren","Le","Ding","Ze","Jin","Pu","Chou","Ba","Zhang","Jin","Jie","Bing","Reng","Cong","Fo","San","Lun","Sya","Cang","Zi","Shi","Ta","Zhang","Fu","Xian","Xian","Tuo","Hong","Tong","Ren","Qian","Gan","Yi","Di","Dai","Ling","Yi","Chao","Chang","Sa",,"Yi","Mu","Men","Ren","Jia","Chao","Yang","Qian","Zhong","Pi","Wan","Wu","Jian","Jie","Yao","Feng","Cang","Ren","Wang","Fen","Di","Fang"],["Zhong","Qi","Pei","Yu","Diao","Dun","Wen","Yi","Xin","Kang","Yi","Ji","Ai","Wu","Ji","Fu","Fa","Xiu","Jin","Bei","Dan","Fu","Tang","Zhong","You","Huo","Hui","Yu","Cui","Chuan","San","Wei","Chuan","Che","Ya","Xian","Shang","Chang","Lun","Cang","Xun","Xin","Wei","Zhu",,"Xuan","Nu","Bo","Gu","Ni","Ni","Xie","Ban","Xu","Ling","Zhou","Shen","Qu","Si","Beng","Si","Jia","Pi","Yi","Si","Ai","Zheng","Dian","Han","Mai","Dan","Zhu","Bu","Qu","Bi","Shao","Ci","Wei","Di","Zhu","Zuo","You","Yang","Ti","Zhan","He","Bi","Tuo","She","Yu","Yi","Fo","Zuo","Kou","Ning","Tong","Ni","Xuan","Qu","Yong","Wa","Qian",,"Ka",,"Pei","Huai","He","Lao","Xiang","Ge","Yang","Bai","Fa","Ming","Jia","Er","Bing","Ji","Hen","Huo","Gui","Quan","Tiao","Jiao","Ci","Yi","Shi","Xing","Shen","Tuo","Kan","Zhi","Gai","Lai","Yi","Chi","Kua","Guang","Li","Yin","Shi","Mi","Zhu","Xu","You","An","Lu","Mou","Er","Lun","Tong","Cha","Chi","Xun","Gong","Zhou","Yi","Ru","Jian","Xia","Jia","Zai","Lu","Ko","Jiao","Zhen","Ce","Qiao","Kuai","Chai","Ning","Nong","Jin","Wu","Hou","Jiong","Cheng","Zhen","Zuo","Chou","Qin","Lu","Ju","Shu","Ting","Shen","Tuo","Bo","Nan","Hao","Bian","Tui","Yu","Xi","Cu","E","Qiu","Xu","Kuang","Ku","Wu","Jun","Yi","Fu","Lang","Zu","Qiao","Li","Yong","Hun","Jing","Xian","San","Pai","Su","Fu","Xi","Li","Fu","Ping","Bao","Yu","Si","Xia","Xin","Xiu","Yu","Ti","Che","Chou",,"Yan","Lia","Li","Lai",,"Jian","Xiu","Fu","He","Ju","Xiao","Pai","Jian","Biao","Chu","Fei","Feng","Ya","An","Bei","Yu","Xin","Bi","Jian"],["Chang","Chi","Bing","Zan","Yao","Cui","Lia","Wan","Lai","Cang","Zong","Ge","Guan","Bei","Tian","Shu","Shu","Men","Dao","Tan","Jue","Chui","Xing","Peng","Tang","Hou","Yi","Qi","Ti","Gan","Jing","Jie","Sui","Chang","Jie","Fang","Zhi","Kong","Juan","Zong","Ju","Qian","Ni","Lun","Zhuo","Wei","Luo","Song","Leng","Hun","Dong","Zi","Ben","Wu","Ju","Nai","Cai","Jian","Zhai","Ye","Zhi","Sha","Qing",,"Ying","Cheng","Jian","Yan","Nuan","Zhong","Chun","Jia","Jie","Wei","Yu","Bing","Ruo","Ti","Wei","Pian","Yan","Feng","Tang","Wo","E","Xie","Che","Sheng","Kan","Di","Zuo","Cha","Ting","Bei","Ye","Huang","Yao","Zhan","Chou","Yan","You","Jian","Xu","Zha","Ci","Fu","Bi","Zhi","Zong","Mian","Ji","Yi","Xie","Xun","Si","Duan","Ce","Zhen","Ou","Tou","Tou","Bei","Za","Lu","Jie","Wei","Fen","Chang","Gui","Sou","Zhi","Su","Xia","Fu","Yuan","Rong","Li","Ru","Yun","Gou","Ma","Bang","Dian","Tang","Hao","Jie","Xi","Shan","Qian","Jue","Cang","Chu","San","Bei","Xiao","Yong","Yao","Tan","Suo","Yang","Fa","Bing","Jia","Dai","Zai","Tang",,"Bin","Chu","Nuo","Can","Lei","Cui","Yong","Zao","Zong","Peng","Song","Ao","Chuan","Yu","Zhai","Cou","Shang","Qiang","Jing","Chi","Sha","Han","Zhang","Qing","Yan","Di","Xi","Lu","Bei","Piao","Jin","Lian","Lu","Man","Qian","Xian","Tan","Ying","Dong","Zhuan","Xiang","Shan","Qiao","Jiong","Tui","Zun","Pu","Xi","Lao","Chang","Guang","Liao","Qi","Deng","Chan","Wei","Ji","Fan","Hui","Chuan","Jian","Dan","Jiao","Jiu","Seng","Fen","Xian","Jue","E","Jiao","Jian","Tong","Lin","Bo","Gu",,"Su","Xian","Jiang","Min","Ye","Jin","Jia","Qiao","Pi","Feng","Zhou","Ai","Sai"],["Yi","Jun","Nong","Chan","Yi","Dang","Jing","Xuan","Kuai","Jian","Chu","Dan","Jiao","Sha","Zai",,"Bin","An","Ru","Tai","Chou","Chai","Lan","Ni","Jin","Qian","Meng","Wu","Ning","Qiong","Ni","Chang","Lie","Lei","Lu","Kuang","Bao","Du","Biao","Zan","Zhi","Si","You","Hao","Chen","Chen","Li","Teng","Wei","Long","Chu","Chan","Rang","Shu","Hui","Li","Luo","Zan","Nuo","Tang","Yan","Lei","Nang","Er","Wu","Yun","Zan","Yuan","Xiong","Chong","Zhao","Xiong","Xian","Guang","Dui","Ke","Dui","Mian","Tu","Chang","Er","Dui","Er","Xin","Tu","Si","Yan","Yan","Shi","Shi","Dang","Qian","Dou","Fen","Mao","Shen","Dou","Bai","Jing","Li","Huang","Ru","Wang","Nei","Quan","Liang","Yu","Ba","Gong","Liu","Xi",,"Lan","Gong","Tian","Guan","Xing","Bing","Qi","Ju","Dian","Zi","Ppwun","Yang","Jian","Shou","Ji","Yi","Ji","Chan","Jiong","Mao","Ran","Nei","Yuan","Mao","Gang","Ran","Ce","Jiong","Ce","Zai","Gua","Jiong","Mao","Zhou","Mou","Gou","Xu","Mian","Mi","Rong","Yin","Xie","Kan","Jun","Nong","Yi","Mi","Shi","Guan","Meng","Zhong","Ju","Yuan","Ming","Kou","Lam","Fu","Xie","Mi","Bing","Dong","Tai","Gang","Feng","Bing","Hu","Chong","Jue","Hu","Kuang","Ye","Leng","Pan","Fu","Min","Dong","Xian","Lie","Xia","Jian","Jing","Shu","Mei","Tu","Qi","Gu","Zhun","Song","Jing","Liang","Qing","Diao","Ling","Dong","Gan","Jian","Yin","Cou","Yi","Li","Cang","Ming","Zhuen","Cui","Si","Duo","Jin","Lin","Lin","Ning","Xi","Du","Ji","Fan","Fan","Fan","Feng","Ju","Chu","Tako","Feng","Mok","Ci","Fu","Feng","Ping","Feng","Kai","Huang","Kai","Gan","Deng","Ping","Qu","Xiong","Kuai","Tu","Ao","Chu","Ji","Dang","Han","Han","Zao"],["Dao","Diao","Dao","Ren","Ren","Chuang","Fen","Qie","Yi","Ji","Kan","Qian","Cun","Chu","Wen","Ji","Dan","Xing","Hua","Wan","Jue","Li","Yue","Lie","Liu","Ze","Gang","Chuang","Fu","Chu","Qu","Ju","Shan","Min","Ling","Zhong","Pan","Bie","Jie","Jie","Bao","Li","Shan","Bie","Chan","Jing","Gua","Gen","Dao","Chuang","Kui","Ku","Duo","Er","Zhi","Shua","Quan","Cha","Ci","Ke","Jie","Gui","Ci","Gui","Kai","Duo","Ji","Ti","Jing","Lou","Gen","Ze","Yuan","Cuo","Xue","Ke","La","Qian","Cha","Chuang","Gua","Jian","Cuo","Li","Ti","Fei","Pou","Chan","Qi","Chuang","Zi","Gang","Wan","Bo","Ji","Duo","Qing","Yan","Zhuo","Jian","Ji","Bo","Yan","Ju","Huo","Sheng","Jian","Duo","Duan","Wu","Gua","Fu","Sheng","Jian","Ge","Zha","Kai","Chuang","Juan","Chan","Tuan","Lu","Li","Fou","Shan","Piao","Kou","Jiao","Gua","Qiao","Jue","Hua","Zha","Zhuo","Lian","Ju","Pi","Liu","Gui","Jiao","Gui","Jian","Jian","Tang","Huo","Ji","Jian","Yi","Jian","Zhi","Chan","Cuan","Mo","Li","Zhu","Li","Ya","Quan","Ban","Gong","Jia","Wu","Mai","Lie","Jin","Keng","Xie","Zhi","Dong","Zhu","Nu","Jie","Qu","Shao","Yi","Zhu","Miao","Li","Jing","Lao","Lao","Juan","Kou","Yang","Wa","Xiao","Mou","Kuang","Jie","Lie","He","Shi","Ke","Jing","Hao","Bo","Min","Chi","Lang","Yong","Yong","Mian","Ke","Xun","Juan","Qing","Lu","Pou","Meng","Lai","Le","Kai","Mian","Dong","Xu","Xu","Kan","Wu","Yi","Xun","Weng","Sheng","Lao","Mu","Lu","Piao","Shi","Ji","Qin","Qiang","Jiao","Quan","Yang","Yi","Jue","Fan","Juan","Tong","Ju","Dan","Xie","Mai","Xun","Xun","Lu","Li","Che","Rang","Quan","Bao","Shao","Yun","Jiu","Bao","Gou","Wu"],["Yun","Mwun","Nay","Gai","Gai","Bao","Cong",,"Xiong","Peng","Ju","Tao","Ge","Pu","An","Pao","Fu","Gong","Da","Jiu","Qiong","Bi","Hua","Bei","Nao","Chi","Fang","Jiu","Yi","Za","Jiang","Kang","Jiang","Kuang","Hu","Xia","Qu","Bian","Gui","Qie","Zang","Kuang","Fei","Hu","Tou","Gui","Gui","Hui","Dan","Gui","Lian","Lian","Suan","Du","Jiu","Qu","Xi","Pi","Qu","Yi","Qia","Yan","Bian","Ni","Qu","Shi","Xin","Qian","Nian","Sa","Zu","Sheng","Wu","Hui","Ban","Shi","Xi","Wan","Hua","Xie","Wan","Bei","Zu","Zhuo","Xie","Dan","Mai","Nan","Dan","Ji","Bo","Shuai","Bu","Kuang","Bian","Bu","Zhan","Qia","Lu","You","Lu","Xi","Gua","Wo","Xie","Jie","Jie","Wei","Ang","Qiong","Zhi","Mao","Yin","Wei","Shao","Ji","Que","Luan","Shi","Juan","Xie","Xu","Jin","Que","Wu","Ji","E","Qing","Xi",,"Han","Zhan","E","Ting","Li","Zhe","Han","Li","Ya","Ya","Yan","She","Zhi","Zha","Pang",,"He","Ya","Zhi","Ce","Pang","Ti","Li","She","Hou","Ting","Zui","Cuo","Fei","Yuan","Ce","Yuan","Xiang","Yan","Li","Jue","Sha","Dian","Chu","Jiu","Qin","Ao","Gui","Yan","Si","Li","Chang","Lan","Li","Yan","Yan","Yuan","Si","Gong","Lin","Qiu","Qu","Qu","Uk","Lei","Du","Xian","Zhuan","San","Can","Can","Can","Can","Ai","Dai","You","Cha","Ji","You","Shuang","Fan","Shou","Guai","Ba","Fa","Ruo","Shi","Shu","Zhuo","Qu","Shou","Bian","Xu","Jia","Pan","Sou","Gao","Wei","Sou","Die","Rui","Cong","Kou","Gu","Ju","Ling","Gua","Tao","Kou","Zhi","Jiao","Zhao","Ba","Ding","Ke","Tai","Chi","Shi","You","Qiu","Po","Ye","Hao","Si","Tan","Chi","Le","Diao","Ji",,"Hong"],["Mie","Xu","Mang","Chi","Ge","Xuan","Yao","Zi","He","Ji","Diao","Cun","Tong","Ming","Hou","Li","Tu","Xiang","Zha","Xia","Ye","Lu","A","Ma","Ou","Xue","Yi","Jun","Chou","Lin","Tun","Yin","Fei","Bi","Qin","Qin","Jie","Bu","Fou","Ba","Dun","Fen","E","Han","Ting","Hang","Shun","Qi","Hong","Zhi","Shen","Wu","Wu","Chao","Ne","Xue","Xi","Chui","Dou","Wen","Hou","Ou","Wu","Gao","Ya","Jun","Lu","E","Ge","Mei","Ai","Qi","Cheng","Wu","Gao","Fu","Jiao","Hong","Chi","Sheng","Ne","Tun","Fu","Yi","Dai","Ou","Li","Bai","Yuan","Kuai",,"Qiang","Wu","E","Shi","Quan","Pen","Wen","Ni","M","Ling","Ran","You","Di","Zhou","Shi","Zhou","Tie","Xi","Yi","Qi","Ping","Zi","Gu","Zi","Wei","Xu","He","Nao","Xia","Pei","Yi","Xiao","Shen","Hu","Ming","Da","Qu","Ju","Gem","Za","Tuo","Duo","Pou","Pao","Bi","Fu","Yang","He","Zha","He","Hai","Jiu","Yong","Fu","Que","Zhou","Wa","Ka","Gu","Ka","Zuo","Bu","Long","Dong","Ning","Tha","Si","Xian","Huo","Qi","Er","E","Guang","Zha","Xi","Yi","Lie","Zi","Mie","Mi","Zhi","Yao","Ji","Zhou","Ge","Shuai","Zan","Xiao","Ke","Hui","Kua","Huai","Tao","Xian","E","Xuan","Xiu","Wai","Yan","Lao","Yi","Ai","Pin","Shen","Tong","Hong","Xiong","Chi","Wa","Ha","Zai","Yu","Di","Pai","Xiang","Ai","Hen","Kuang","Ya","Da","Xiao","Bi","Yue",,"Hua","Sasou","Kuai","Duo",,"Ji","Nong","Mou","Yo","Hao","Yuan","Long","Pou","Mang","Ge","E","Chi","Shao","Li","Na","Zu","He","Ku","Xiao","Xian","Lao","Bo","Zhe","Zha","Liang","Ba","Mie","Le","Sui","Fou","Bu","Han","Heng","Geng","Shuo","Ge"],["You","Yan","Gu","Gu","Bai","Han","Suo","Chun","Yi","Ai","Jia","Tu","Xian","Huan","Li","Xi","Tang","Zuo","Qiu","Che","Wu","Zao","Ya","Dou","Qi","Di","Qin","Ma","Mal","Hong","Dou","Kes","Lao","Liang","Suo","Zao","Huan","Lang","Sha","Ji","Zuo","Wo","Feng","Yin","Hu","Qi","Shou","Wei","Shua","Chang","Er","Li","Qiang","An","Jie","Yo","Nian","Yu","Tian","Lai","Sha","Xi","Tuo","Hu","Ai","Zhou","Nou","Ken","Zhuo","Zhuo","Shang","Di","Heng","Lan","A","Xiao","Xiang","Tun","Wu","Wen","Cui","Sha","Hu","Qi","Qi","Tao","Dan","Dan","Ye","Zi","Bi","Cui","Chuo","He","Ya","Qi","Zhe","Pei","Liang","Xian","Pi","Sha","La","Ze","Qing","Gua","Pa","Zhe","Se","Zhuan","Nie","Guo","Luo","Yan","Di","Quan","Tan","Bo","Ding","Lang","Xiao",,"Tang","Chi","Ti","An","Jiu","Dan","Ke","Yong","Wei","Nan","Shan","Yu","Zhe","La","Jie","Hou","Han","Die","Zhou","Chai","Wai","Re","Yu","Yin","Zan","Yao","Wo","Mian","Hu","Yun","Chuan","Hui","Huan","Huan","Xi","He","Ji","Kui","Zhong","Wei","Sha","Xu","Huang","Du","Nie","Xuan","Liang","Yu","Sang","Chi","Qiao","Yan","Dan","Pen","Can","Li","Yo","Zha","Wei","Miao","Ying","Pen","Phos","Kui","Xi","Yu","Jie","Lou","Ku","Sao","Huo","Ti","Yao","He","A","Xiu","Qiang","Se","Yong","Su","Hong","Xie","Yi","Suo","Ma","Cha","Hai","Ke","Ta","Sang","Tian","Ru","Sou","Wa","Ji","Pang","Wu","Xian","Shi","Ge","Zi","Jie","Luo","Weng","Wa","Si","Chi","Hao","Suo","Jia","Hai","Suo","Qin","Nie","He","Cis","Sai","Ng","Ge","Na","Dia","Ai",,"Tong","Bi","Ao","Ao","Lian","Cui","Zhe","Mo","Sou","Sou","Tan"],["Di","Qi","Jiao","Chong","Jiao","Kai","Tan","San","Cao","Jia","Ai","Xiao","Piao","Lou","Ga","Gu","Xiao","Hu","Hui","Guo","Ou","Xian","Ze","Chang","Xu","Po","De","Ma","Ma","Hu","Lei","Du","Ga","Tang","Ye","Beng","Ying","Saai","Jiao","Mi","Xiao","Hua","Mai","Ran","Zuo","Peng","Lao","Xiao","Ji","Zhu","Chao","Kui","Zui","Xiao","Si","Hao","Fu","Liao","Qiao","Xi","Xiu","Tan","Tan","Mo","Xun","E","Zun","Fan","Chi","Hui","Zan","Chuang","Cu","Dan","Yu","Tun","Cheng","Jiao","Ye","Xi","Qi","Hao","Lian","Xu","Deng","Hui","Yin","Pu","Jue","Qin","Xun","Nie","Lu","Si","Yan","Ying","Da","Dan","Yu","Zhou","Jin","Nong","Yue","Hui","Qi","E","Zao","Yi","Shi","Jiao","Yuan","Ai","Yong","Jue","Kuai","Yu","Pen","Dao","Ge","Xin","Dun","Dang","Sin","Sai","Pi","Pi","Yin","Zui","Ning","Di","Lan","Ta","Huo","Ru","Hao","Xia","Ya","Duo","Xi","Chou","Ji","Jin","Hao","Ti","Chang",,,"Ca","Ti","Lu","Hui","Bo","You","Nie","Yin","Hu","Mo","Huang","Zhe","Li","Liu","Haai","Nang","Xiao","Mo","Yan","Li","Lu","Long","Fu","Dan","Chen","Pin","Pi","Xiang","Huo","Mo","Xi","Duo","Ku","Yan","Chan","Ying","Rang","Dian","La","Ta","Xiao","Jiao","Chuo","Huan","Huo","Zhuan","Nie","Xiao","Ca","Li","Chan","Chai","Li","Yi","Luo","Nang","Zan","Su","Xi","So","Jian","Za","Zhu","Lan","Nie","Nang",,,"Wei","Hui","Yin","Qiu","Si","Nin","Jian","Hui","Xin","Yin","Nan","Tuan","Tuan","Dun","Kang","Yuan","Jiong","Pian","Yun","Cong","Hu","Hui","Yuan","You","Guo","Kun","Cong","Wei","Tu","Wei","Lun","Guo","Qun","Ri","Ling","Gu","Guo","Tai","Guo","Tu","You"],["Guo","Yin","Hun","Pu","Yu","Han","Yuan","Lun","Quan","Yu","Qing","Guo","Chuan","Wei","Yuan","Quan","Ku","Fu","Yuan","Yuan","E","Tu","Tu","Tu","Tuan","Lue","Hui","Yi","Yuan","Luan","Luan","Tu","Ya","Tu","Ting","Sheng","Pu","Lu","Iri","Ya","Zai","Wei","Ge","Yu","Wu","Gui","Pi","Yi","Di","Qian","Qian","Zhen","Zhuo","Dang","Qia","Akutsu","Yama","Kuang","Chang","Qi","Nie","Mo","Ji","Jia","Zhi","Zhi","Ban","Xun","Tou","Qin","Fen","Jun","Keng","Tun","Fang","Fen","Ben","Tan","Kan","Pi","Zuo","Keng","Bi","Xing","Di","Jing","Ji","Kuai","Di","Jing","Jian","Tan","Li","Ba","Wu","Fen","Zhui","Po","Pan","Tang","Kun","Qu","Tan","Zhi","Tuo","Gan","Ping","Dian","Gua","Ni","Tai","Pi","Jiong","Yang","Fo","Ao","Liu","Qiu","Mu","Ke","Gou","Xue","Ba","Chi","Che","Ling","Zhu","Fu","Hu","Zhi","Chui","La","Long","Long","Lu","Ao","Tay","Pao",,"Xing","Dong","Ji","Ke","Lu","Ci","Chi","Lei","Gai","Yin","Hou","Dui","Zhao","Fu","Guang","Yao","Duo","Duo","Gui","Cha","Yang","Yin","Fa","Gou","Yuan","Die","Xie","Ken","Jiong","Shou","E","Ha","Dian","Hong","Wu","Kua",,"Tao","Dang","Kai","Gake","Nao","An","Xing","Xian","Huan","Bang","Pei","Ba","Yi","Yin","Han","Xu","Chui","Cen","Geng","Ai","Peng","Fang","Que","Yong","Xun","Jia","Di","Mai","Lang","Xuan","Cheng","Yan","Jin","Zhe","Lei","Lie","Bu","Cheng","Gomi","Bu","Shi","Xun","Guo","Jiong","Ye","Nian","Di","Yu","Bu","Ya","Juan","Sui","Pi","Cheng","Wan","Ju","Lun","Zheng","Kong","Chong","Dong","Dai","Tan","An","Cai","Shu","Beng","Kan","Zhi","Duo","Yi","Zhi","Yi","Pei","Ji","Zhun","Qi","Sao","Ju","Ni"],["Ku","Ke","Tang","Kun","Ni","Jian","Dui","Jin","Gang","Yu","E","Peng","Gu","Tu","Leng",,"Ya","Qian",,"An",,"Duo","Nao","Tu","Cheng","Yin","Hun","Bi","Lian","Guo","Die","Zhuan","Hou","Bao","Bao","Yu","Di","Mao","Jie","Ruan","E","Geng","Kan","Zong","Yu","Huang","E","Yao","Yan","Bao","Ji","Mei","Chang","Du","Tuo","Yin","Feng","Zhong","Jie","Zhen","Feng","Gang","Chuan","Jian","Pyeng","Toride","Xiang","Huang","Leng","Duan",,"Xuan","Ji","Ji","Kuai","Ying","Ta","Cheng","Yong","Kai","Su","Su","Shi","Mi","Ta","Weng","Cheng","Tu","Tang","Que","Zhong","Li","Peng","Bang","Sai","Zang","Dui","Tian","Wu","Cheng","Xun","Ge","Zhen","Ai","Gong","Yan","Kan","Tian","Yuan","Wen","Xie","Liu","Ama","Lang","Chang","Peng","Beng","Chen","Cu","Lu","Ou","Qian","Mei","Mo","Zhuan","Shuang","Shu","Lou","Chi","Man","Biao","Jing","Qi","Shu","Di","Zhang","Kan","Yong","Dian","Chen","Zhi","Xi","Guo","Qiang","Jin","Di","Shang","Mu","Cui","Yan","Ta","Zeng","Qi","Qiang","Liang",,"Zhui","Qiao","Zeng","Xu","Shan","Shan","Ba","Pu","Kuai","Dong","Fan","Que","Mo","Dun","Dun","Dun","Di","Sheng","Duo","Duo","Tan","Deng","Wu","Fen","Huang","Tan","Da","Ye","Sho","Mama","Yu","Qiang","Ji","Qiao","Ken","Yi","Pi","Bi","Dian","Jiang","Ye","Yong","Bo","Tan","Lan","Ju","Huai","Dang","Rang","Qian","Xun","Lan","Xi","He","Ai","Ya","Dao","Hao","Ruan","Mama","Lei","Kuang","Lu","Yan","Tan","Wei","Huai","Long","Long","Rui","Li","Lin","Rang","Ten","Xun","Yan","Lei","Ba",,"Shi","Ren",,"Zhuang","Zhuang","Sheng","Yi","Mai","Ke","Zhu","Zhuang","Hu","Hu","Kun","Yi","Hu","Xu","Kun","Shou","Mang","Zun"],["Shou","Yi","Zhi","Gu","Chu","Jiang","Feng","Bei","Cay","Bian","Sui","Qun","Ling","Fu","Zuo","Xia","Xiong",,"Nao","Xia","Kui","Xi","Wai","Yuan","Mao","Su","Duo","Duo","Ye","Qing","Uys","Gou","Gou","Qi","Meng","Meng","Yin","Huo","Chen","Da","Ze","Tian","Tai","Fu","Guai","Yao","Yang","Hang","Gao","Shi","Ben","Tai","Tou","Yan","Bi","Yi","Kua","Jia","Duo","Kwu","Kuang","Yun","Jia","Pa","En","Lian","Huan","Di","Yan","Pao","Quan","Qi","Nai","Feng","Xie","Fen","Dian",,"Kui","Zou","Huan","Qi","Kai","Zha","Ben","Yi","Jiang","Tao","Zang","Ben","Xi","Xiang","Fei","Diao","Xun","Keng","Dian","Ao","She","Weng","Pan","Ao","Wu","Ao","Jiang","Lian","Duo","Yun","Jiang","Shi","Fen","Huo","Bi","Lian","Duo","Nu","Nu","Ding","Nai","Qian","Jian","Ta","Jiu","Nan","Cha","Hao","Xian","Fan","Ji","Shuo","Ru","Fei","Wang","Hong","Zhuang","Fu","Ma","Dan","Ren","Fu","Jing","Yan","Xie","Wen","Zhong","Pa","Du","Ji","Keng","Zhong","Yao","Jin","Yun","Miao","Pei","Shi","Yue","Zhuang","Niu","Yan","Na","Xin","Fen","Bi","Yu","Tuo","Feng","Yuan","Fang","Wu","Yu","Gui","Du","Ba","Ni","Zhou","Zhuo","Zhao","Da","Nai","Yuan","Tou","Xuan","Zhi","E","Mei","Mo","Qi","Bi","Shen","Qie","E","He","Xu","Fa","Zheng","Min","Ban","Mu","Fu","Ling","Zi","Zi","Shi","Ran","Shan","Yang","Man","Jie","Gu","Si","Xing","Wei","Zi","Ju","Shan","Pin","Ren","Yao","Tong","Jiang","Shu","Ji","Gai","Shang","Kuo","Juan","Jiao","Gou","Mu","Jian","Jian","Yi","Nian","Zhi","Ji","Ji","Xian","Heng","Guang","Jun","Kua","Yan","Ming","Lie","Pei","Yan","You","Yan","Cha","Shen","Yin","Chi","Gui","Quan","Zi"],["Song","Wei","Hong","Wa","Lou","Ya","Rao","Jiao","Luan","Ping","Xian","Shao","Li","Cheng","Xiao","Mang","Fu","Suo","Wu","Wei","Ke","Lai","Chuo","Ding","Niang","Xing","Nan","Yu","Nuo","Pei","Nei","Juan","Shen","Zhi","Han","Di","Zhuang","E","Pin","Tui","Han","Mian","Wu","Yan","Wu","Xi","Yan","Yu","Si","Yu","Wa",,"Xian","Ju","Qu","Shui","Qi","Xian","Zhui","Dong","Chang","Lu","Ai","E","E","Lou","Mian","Cong","Pou","Ju","Po","Cai","Ding","Wan","Biao","Xiao","Shu","Qi","Hui","Fu","E","Wo","Tan","Fei","Wei","Jie","Tian","Ni","Quan","Jing","Hun","Jing","Qian","Dian","Xing","Hu","Wa","Lai","Bi","Yin","Chou","Chuo","Fu","Jing","Lun","Yan","Lan","Kun","Yin","Ya","Ju","Li","Dian","Xian","Hwa","Hua","Ying","Chan","Shen","Ting","Dang","Yao","Wu","Nan","Ruo","Jia","Tou","Xu","Yu","Wei","Ti","Rou","Mei","Dan","Ruan","Qin","Hui","Wu","Qian","Chun","Mao","Fu","Jie","Duan","Xi","Zhong","Mei","Huang","Mian","An","Ying","Xuan","Jie","Wei","Mei","Yuan","Zhen","Qiu","Ti","Xie","Tuo","Lian","Mao","Ran","Si","Pian","Wei","Wa","Jiu","Hu","Ao",,"Bou","Xu","Tou","Gui","Zou","Yao","Pi","Xi","Yuan","Ying","Rong","Ru","Chi","Liu","Mei","Pan","Ao","Ma","Gou","Kui","Qin","Jia","Sao","Zhen","Yuan","Cha","Yong","Ming","Ying","Ji","Su","Niao","Xian","Tao","Pang","Lang","Nao","Bao","Ai","Pi","Pin","Yi","Piao","Yu","Lei","Xuan","Man","Yi","Zhang","Kang","Yong","Ni","Li","Di","Gui","Yan","Jin","Zhuan","Chang","Ce","Han","Nen","Lao","Mo","Zhe","Hu","Hu","Ao","Nen","Qiang","Ma","Pie","Gu","Wu","Jiao","Tuo","Zhan","Mao","Xian","Xian","Mo","Liao","Lian","Hua"],["Gui","Deng","Zhi","Xu","Yi","Hua","Xi","Hui","Rao","Xi","Yan","Chan","Jiao","Mei","Fan","Fan","Xian","Yi","Wei","Jiao","Fu","Shi","Bi","Shan","Sui","Qiang","Lian","Huan","Xin","Niao","Dong","Yi","Can","Ai","Niang","Neng","Ma","Tiao","Chou","Jin","Ci","Yu","Pin","Yong","Xu","Nai","Yan","Tai","Ying","Can","Niao","Wo","Ying","Mian","Kaka","Ma","Shen","Xing","Ni","Du","Liu","Yuan","Lan","Yan","Shuang","Ling","Jiao","Niang","Lan","Xian","Ying","Shuang","Shuai","Quan","Mi","Li","Luan","Yan","Zhu","Lan","Zi","Jie","Jue","Jue","Kong","Yun","Zi","Zi","Cun","Sun","Fu","Bei","Zi","Xiao","Xin","Meng","Si","Tai","Bao","Ji","Gu","Nu","Xue",,"Zhuan","Hai","Luan","Sun","Huai","Mie","Cong","Qian","Shu","Chan","Ya","Zi","Ni","Fu","Zi","Li","Xue","Bo","Ru","Lai","Nie","Nie","Ying","Luan","Mian","Ning","Rong","Ta","Gui","Zhai","Qiong","Yu","Shou","An","Tu","Song","Wan","Rou","Yao","Hong","Yi","Jing","Zhun","Mi","Zhu","Dang","Hong","Zong","Guan","Zhou","Ding","Wan","Yi","Bao","Shi","Shi","Chong","Shen","Ke","Xuan","Shi","You","Huan","Yi","Tiao","Shi","Xian","Gong","Cheng","Qun","Gong","Xiao","Zai","Zha","Bao","Hai","Yan","Xiao","Jia","Shen","Chen","Rong","Huang","Mi","Kou","Kuan","Bin","Su","Cai","Zan","Ji","Yuan","Ji","Yin","Mi","Kou","Qing","Que","Zhen","Jian","Fu","Ning","Bing","Huan","Mei","Qin","Han","Yu","Shi","Ning","Qin","Ning","Zhi","Yu","Bao","Kuan","Ning","Qin","Mo","Cha","Ju","Gua","Qin","Hu","Wu","Liao","Shi","Zhu","Zhai","Shen","Wei","Xie","Kuan","Hui","Liao","Jun","Huan","Yi","Yi","Bao","Qin","Chong","Bao","Feng","Cun","Dui","Si","Xun","Dao","Lu","Dui","Shou"],["Po","Feng","Zhuan","Fu","She","Ke","Jiang","Jiang","Zhuan","Wei","Zun","Xun","Shu","Dui","Dao","Xiao","Ji","Shao","Er","Er","Er","Ga","Jian","Shu","Chen","Shang","Shang","Mo","Ga","Chang","Liao","Xian","Xian",,"Wang","Wang","You","Liao","Liao","Yao","Mang","Wang","Wang","Wang","Ga","Yao","Duo","Kui","Zhong","Jiu","Gan","Gu","Gan","Tui","Gan","Gan","Shi","Yin","Chi","Kao","Ni","Jin","Wei","Niao","Ju","Pi","Ceng","Xi","Bi","Ju","Jie","Tian","Qu","Ti","Jie","Wu","Diao","Shi","Shi","Ping","Ji","Xie","Chen","Xi","Ni","Zhan","Xi",,"Man","E","Lou","Ping","Ti","Fei","Shu","Xie","Tu","Lu","Lu","Xi","Ceng","Lu","Ju","Xie","Ju","Jue","Liao","Jue","Shu","Xi","Che","Tun","Ni","Shan",,"Xian","Li","Xue","Nata",,"Long","Yi","Qi","Ren","Wu","Han","Shen","Yu","Chu","Sui","Qi",,"Yue","Ban","Yao","Ang","Ya","Wu","Jie","E","Ji","Qian","Fen","Yuan","Qi","Cen","Qian","Qi","Cha","Jie","Qu","Gang","Xian","Ao","Lan","Dao","Ba","Zuo","Zuo","Yang","Ju","Gang","Ke","Gou","Xue","Bei","Li","Tiao","Ju","Yan","Fu","Xiu","Jia","Ling","Tuo","Pei","You","Dai","Kuang","Yue","Qu","Hu","Po","Min","An","Tiao","Ling","Chi","Yuri","Dong","Cem","Kui","Xiu","Mao","Tong","Xue","Yi","Kura","He","Ke","Luo","E","Fu","Xun","Die","Lu","An","Er","Gai","Quan","Tong","Yi","Mu","Shi","An","Wei","Hu","Zhi","Mi","Li","Ji","Tong","Wei","You","Sang","Xia","Li","Yao","Jiao","Zheng","Luan","Jiao","E","E","Yu","Ye","Bu","Qiao","Qun","Feng","Feng","Nao","Li","You","Xian","Hong","Dao","Shen","Cheng","Tu","Geng","Jun","Hao","Xia","Yin","Yu"],["Lang","Kan","Lao","Lai","Xian","Que","Kong","Chong","Chong","Ta","Lin","Hua","Ju","Lai","Qi","Min","Kun","Kun","Zu","Gu","Cui","Ya","Ya","Gang","Lun","Lun","Leng","Jue","Duo","Zheng","Guo","Yin","Dong","Han","Zheng","Wei","Yao","Pi","Yan","Song","Jie","Beng","Zu","Jue","Dong","Zhan","Gu","Yin",,"Ze","Huang","Yu","Wei","Yang","Feng","Qiu","Dun","Ti","Yi","Zhi","Shi","Zai","Yao","E","Zhu","Kan","Lu","Yan","Mei","Gan","Ji","Ji","Huan","Ting","Sheng","Mei","Qian","Wu","Yu","Zong","Lan","Jue","Yan","Yan","Wei","Zong","Cha","Sui","Rong","Yamashina","Qin","Yu","Kewashii","Lou","Tu","Dui","Xi","Weng","Cang","Dang","Hong","Jie","Ai","Liu","Wu","Song","Qiao","Zi","Wei","Beng","Dian","Cuo","Qian","Yong","Nie","Cuo","Ji",,"Tao","Song","Zong","Jiang","Liao","Kang","Chan","Die","Cen","Ding","Tu","Lou","Zhang","Zhan","Zhan","Ao","Cao","Qu","Qiang","Zui","Zui","Dao","Dao","Xi","Yu","Bo","Long","Xiang","Ceng","Bo","Qin","Jiao","Yan","Lao","Zhan","Lin","Liao","Liao","Jin","Deng","Duo","Zun","Jiao","Gui","Yao","Qiao","Yao","Jue","Zhan","Yi","Xue","Nao","Ye","Ye","Yi","E","Xian","Ji","Xie","Ke","Xi","Di","Ao","Zui",,"Ni","Rong","Dao","Ling","Za","Yu","Yue","Yin",,"Jie","Li","Sui","Long","Long","Dian","Ying","Xi","Ju","Chan","Ying","Kui","Yan","Wei","Nao","Quan","Chao","Cuan","Luan","Dian","Dian",,"Yan","Yan","Yan","Nao","Yan","Chuan","Gui","Chuan","Zhou","Huang","Jing","Xun","Chao","Chao","Lie","Gong","Zuo","Qiao","Ju","Gong","Kek","Wu","Pwu","Pwu","Chai","Qiu","Qiu","Ji","Yi","Si","Ba","Zhi","Zhao","Xiang","Yi","Jin","Xun","Juan","Phas","Xun","Jin","Fu"],["Za","Bi","Shi","Bu","Ding","Shuai","Fan","Nie","Shi","Fen","Pa","Zhi","Xi","Hu","Dan","Wei","Zhang","Tang","Dai","Ma","Pei","Pa","Tie","Fu","Lian","Zhi","Zhou","Bo","Zhi","Di","Mo","Yi","Yi","Ping","Qia","Juan","Ru","Shuai","Dai","Zheng","Shui","Qiao","Zhen","Shi","Qun","Xi","Bang","Dai","Gui","Chou","Ping","Zhang","Sha","Wan","Dai","Wei","Chang","Sha","Qi","Ze","Guo","Mao","Du","Hou","Zheng","Xu","Mi","Wei","Wo","Fu","Yi","Bang","Ping","Tazuna","Gong","Pan","Huang","Dao","Mi","Jia","Teng","Hui","Zhong","Shan","Man","Mu","Biao","Guo","Ze","Mu","Bang","Zhang","Jiong","Chan","Fu","Zhi","Hu","Fan","Chuang","Bi","Hei",,"Mi","Qiao","Chan","Fen","Meng","Bang","Chou","Mie","Chu","Jie","Xian","Lan","Gan","Ping","Nian","Qian","Bing","Bing","Xing","Gan","Yao","Huan","You","You","Ji","Guang","Pi","Ting","Ze","Guang","Zhuang","Mo","Qing","Bi","Qin","Dun","Chuang","Gui","Ya","Bai","Jie","Xu","Lu","Wu",,"Ku","Ying","Di","Pao","Dian","Ya","Miao","Geng","Ci","Fu","Tong","Pang","Fei","Xiang","Yi","Zhi","Tiao","Zhi","Xiu","Du","Zuo","Xiao","Tu","Gui","Ku","Pang","Ting","You","Bu","Ding","Cheng","Lai","Bei","Ji","An","Shu","Kang","Yong","Tuo","Song","Shu","Qing","Yu","Yu","Miao","Sou","Ce","Xiang","Fei","Jiu","He","Hui","Liu","Sha","Lian","Lang","Sou","Jian","Pou","Qing","Jiu","Jiu","Qin","Ao","Kuo","Lou","Yin","Liao","Dai","Lu","Yi","Chu","Chan","Tu","Si","Xin","Miao","Chang","Wu","Fei","Guang","Koc","Kuai","Bi","Qiang","Xie","Lin","Lin","Liao","Lu",,"Ying","Xian","Ting","Yong","Li","Ting","Yin","Xun","Yan","Ting","Di","Po","Jian","Hui","Nai","Hui","Gong","Nian"],["Kai","Bian","Yi","Qi","Nong","Fen","Ju","Yan","Yi","Zang","Bi","Yi","Yi","Er","San","Shi","Er","Shi","Shi","Gong","Diao","Yin","Hu","Fu","Hong","Wu","Tui","Chi","Jiang","Ba","Shen","Di","Zhang","Jue","Tao","Fu","Di","Mi","Xian","Hu","Chao","Nu","Jing","Zhen","Yi","Mi","Quan","Wan","Shao","Ruo","Xuan","Jing","Dun","Zhang","Jiang","Qiang","Peng","Dan","Qiang","Bi","Bi","She","Dan","Jian","Gou","Sei","Fa","Bi","Kou","Nagi","Bie","Xiao","Dan","Kuo","Qiang","Hong","Mi","Kuo","Wan","Jue","Ji","Ji","Gui","Dang","Lu","Lu","Tuan","Hui","Zhi","Hui","Hui","Yi","Yi","Yi","Yi","Huo","Huo","Shan","Xing","Wen","Tong","Yan","Yan","Yu","Chi","Cai","Biao","Diao","Bin","Peng","Yong","Piao","Zhang","Ying","Chi","Chi","Zhuo","Tuo","Ji","Pang","Zhong","Yi","Wang","Che","Bi","Chi","Ling","Fu","Wang","Zheng","Cu","Wang","Jing","Dai","Xi","Xun","Hen","Yang","Huai","Lu","Hou","Wa","Cheng","Zhi","Xu","Jing","Tu","Cong",,"Lai","Cong","De","Pai","Xi",,"Qi","Chang","Zhi","Cong","Zhou","Lai","Yu","Xie","Jie","Jian","Chi","Jia","Bian","Huang","Fu","Xun","Wei","Pang","Yao","Wei","Xi","Zheng","Piao","Chi","De","Zheng","Zheng","Bie","De","Chong","Che","Jiao","Wei","Jiao","Hui","Mei","Long","Xiang","Bao","Qu","Xin","Shu","Bi","Yi","Le","Ren","Dao","Ding","Gai","Ji","Ren","Ren","Chan","Tan","Te","Te","Gan","Qi","Shi","Cun","Zhi","Wang","Mang","Xi","Fan","Ying","Tian","Min","Min","Zhong","Chong","Wu","Ji","Wu","Xi","Ye","You","Wan","Cong","Zhong","Kuai","Yu","Bian","Zhi","Qi","Cui","Chen","Tai","Tun","Qian","Nian","Hun","Xiong","Niu","Wang","Xian","Xin","Kang","Hu","Kai","Fen"],["Huai","Tai","Song","Wu","Ou","Chang","Chuang","Ju","Yi","Bao","Chao","Min","Pei","Zuo","Zen","Yang","Kou","Ban","Nu","Nao","Zheng","Pa","Bu","Tie","Gu","Hu","Ju","Da","Lian","Si","Chou","Di","Dai","Yi","Tu","You","Fu","Ji","Peng","Xing","Yuan","Ni","Guai","Fu","Xi","Bi","You","Qie","Xuan","Cong","Bing","Huang","Xu","Chu","Pi","Xi","Xi","Tan","Koraeru","Zong","Dui",,"Ki","Yi","Chi","Ren","Xun","Shi","Xi","Lao","Heng","Kuang","Mu","Zhi","Xie","Lian","Tiao","Huang","Die","Hao","Kong","Gui","Heng","Xi","Xiao","Shu","S","Kua","Qiu","Yang","Hui","Hui","Chi","Jia","Yi","Xiong","Guai","Lin","Hui","Zi","Xu","Chi","Xiang","Nu","Hen","En","Ke","Tong","Tian","Gong","Quan","Xi","Qia","Yue","Peng","Ken","De","Hui","E","Kyuu","Tong","Yan","Kai","Ce","Nao","Yun","Mang","Yong","Yong","Yuan","Pi","Kun","Qiao","Yue","Yu","Yu","Jie","Xi","Zhe","Lin","Ti","Han","Hao","Qie","Ti","Bu","Yi","Qian","Hui","Xi","Bei","Man","Yi","Heng","Song","Quan","Cheng","Hui","Wu","Wu","You","Li","Liang","Huan","Cong","Yi","Yue","Li","Nin","Nao","E","Que","Xuan","Qian","Wu","Min","Cong","Fei","Bei","Duo","Cui","Chang","Men","Li","Ji","Guan","Guan","Xing","Dao","Qi","Kong","Tian","Lun","Xi","Kan","Kun","Ni","Qing","Chou","Dun","Guo","Chan","Liang","Wan","Yuan","Jin","Ji","Lin","Yu","Huo","He","Quan","Tan","Ti","Ti","Nie","Wang","Chuo","Bu","Hun","Xi","Tang","Xin","Wei","Hui","E","Rui","Zong","Jian","Yong","Dian","Ju","Can","Cheng","De","Bei","Qie","Can","Dan","Guan","Duo","Nao","Yun","Xiang","Zhui","Die","Huang","Chun","Qiong","Re","Xing","Ce","Bian","Hun","Zong","Ti"],["Qiao","Chou","Bei","Xuan","Wei","Ge","Qian","Wei","Yu","Yu","Bi","Xuan","Huan","Min","Bi","Yi","Mian","Yong","Kai","Dang","Yin","E","Chen","Mou","Ke","Ke","Yu","Ai","Qie","Yan","Nuo","Gan","Yun","Zong","Sai","Leng","Fen",,"Kui","Kui","Que","Gong","Yun","Su","Su","Qi","Yao","Song","Huang","Ji","Gu","Ju","Chuang","Ni","Xie","Kai","Zheng","Yong","Cao","Sun","Shen","Bo","Kai","Yuan","Xie","Hun","Yong","Yang","Li","Sao","Tao","Yin","Ci","Xu","Qian","Tai","Huang","Yun","Shen","Ming",,"She","Cong","Piao","Mo","Mu","Guo","Chi","Can","Can","Can","Cui","Min","Te","Zhang","Tong","Ao","Shuang","Man","Guan","Que","Zao","Jiu","Hui","Kai","Lian","Ou","Song","Jin","Yin","Lu","Shang","Wei","Tuan","Man","Qian","She","Yong","Qing","Kang","Di","Zhi","Lou","Juan","Qi","Qi","Yu","Ping","Liao","Cong","You","Chong","Zhi","Tong","Cheng","Qi","Qu","Peng","Bei","Bie","Chun","Jiao","Zeng","Chi","Lian","Ping","Kui","Hui","Qiao","Cheng","Yin","Yin","Xi","Xi","Dan","Tan","Duo","Dui","Dui","Su","Jue","Ce","Xiao","Fan","Fen","Lao","Lao","Chong","Han","Qi","Xian","Min","Jing","Liao","Wu","Can","Jue","Cu","Xian","Tan","Sheng","Pi","Yi","Chu","Xian","Nao","Dan","Tan","Jing","Song","Han","Jiao","Wai","Huan","Dong","Qin","Qin","Qu","Cao","Ken","Xie","Ying","Ao","Mao","Yi","Lin","Se","Jun","Huai","Men","Lan","Ai","Lin","Yan","Gua","Xia","Chi","Yu","Yin","Dai","Meng","Ai","Meng","Dui","Qi","Mo","Lan","Men","Chou","Zhi","Nuo","Nuo","Yan","Yang","Bo","Zhi","Kuang","Kuang","You","Fu","Liu","Mie","Cheng",,"Chan","Meng","Lan","Huai","Xuan","Rang","Chan","Ji","Ju","Huan","She","Yi"],["Lian","Nan","Mi","Tang","Jue","Gang","Gang","Gang","Ge","Yue","Wu","Jian","Xu","Shu","Rong","Xi","Cheng","Wo","Jie","Ge","Jian","Qiang","Huo","Qiang","Zhan","Dong","Qi","Jia","Die","Zei","Jia","Ji","Shi","Kan","Ji","Kui","Gai","Deng","Zhan","Chuang","Ge","Jian","Jie","Yu","Jian","Yan","Lu","Xi","Zhan","Xi","Xi","Chuo","Dai","Qu","Hu","Hu","Hu","E","Shi","Li","Mao","Hu","Li","Fang","Suo","Bian","Dian","Jiong","Shang","Yi","Yi","Shan","Hu","Fei","Yan","Shou","T","Cai","Zha","Qiu","Le","Bu","Ba","Da","Reng","Fu","Hameru","Zai","Tuo","Zhang","Diao","Kang","Yu","Ku","Han","Shen","Cha","Yi","Gu","Kou","Wu","Tuo","Qian","Zhi","Ren","Kuo","Men","Sao","Yang","Niu","Ban","Che","Rao","Xi","Qian","Ban","Jia","Yu","Fu","Ao","Xi","Pi","Zhi","Zi","E","Dun","Zhao","Cheng","Ji","Yan","Kuang","Bian","Chao","Ju","Wen","Hu","Yue","Jue","Ba","Qin","Zhen","Zheng","Yun","Wan","Nu","Yi","Shu","Zhua","Pou","Tou","Dou","Kang","Zhe","Pou","Fu","Pao","Ba","Ao","Ze","Tuan","Kou","Lun","Qiang",,"Hu","Bao","Bing","Zhi","Peng","Tan","Pu","Pi","Tai","Yao","Zhen","Zha","Yang","Bao","He","Ni","Yi","Di","Chi","Pi","Za","Mo","Mo","Shen","Ya","Chou","Qu","Min","Chu","Jia","Fu","Zhan","Zhu","Dan","Chai","Mu","Nian","La","Fu","Pao","Ban","Pai","Ling","Na","Guai","Qian","Ju","Tuo","Ba","Tuo","Tuo","Ao","Ju","Zhuo","Pan","Zhao","Bai","Bai","Di","Ni","Ju","Kuo","Long","Jian",,"Yong","Lan","Ning","Bo","Ze","Qian","Hen","Gua","Shi","Jie","Zheng","Nin","Gong","Gong","Quan","Shuan","Cun","Zan","Kao","Chi","Xie","Ce","Hui","Pin","Zhuai","Shi","Na"],["Bo","Chi","Gua","Zhi","Kuo","Duo","Duo","Zhi","Qie","An","Nong","Zhen","Ge","Jiao","Ku","Dong","Ru","Tiao","Lie","Zha","Lu","Die","Wa","Jue","Mushiru","Ju","Zhi","Luan","Ya","Zhua","Ta","Xie","Nao","Dang","Jiao","Zheng","Ji","Hui","Xun","Ku","Ai","Tuo","Nuo","Cuo","Bo","Geng","Ti","Zhen","Cheng","Suo","Suo","Keng","Mei","Long","Ju","Peng","Jian","Yi","Ting","Shan","Nuo","Wan","Xie","Cha","Feng","Jiao","Wu","Jun","Jiu","Tong","Kun","Huo","Tu","Zhuo","Pou","Le","Ba","Han","Shao","Nie","Juan","Ze","Song","Ye","Jue","Bu","Huan","Bu","Zun","Yi","Zhai","Lu","Sou","Tuo","Lao","Sun","Bang","Jian","Huan","Dao",,"Wan","Qin","Peng","She","Lie","Min","Men","Fu","Bai","Ju","Dao","Wo","Ai","Juan","Yue","Zong","Chen","Chui","Jie","Tu","Ben","Na","Nian","Nuo","Zu","Wo","Xi","Xian","Cheng","Dian","Sao","Lun","Qing","Gang","Duo","Shou","Diao","Pou","Di","Zhang","Gun","Ji","Tao","Qia","Qi","Pai","Shu","Qian","Ling","Yi","Ya","Jue","Zheng","Liang","Gua","Yi","Huo","Shan","Zheng","Lue","Cai","Tan","Che","Bing","Jie","Ti","Kong","Tui","Yan","Cuo","Zou","Ju","Tian","Qian","Ken","Bai","Shou","Jie","Lu","Guo","Haba",,"Zhi","Dan","Mang","Xian","Sao","Guan","Peng","Yuan","Nuo","Jian","Zhen","Jiu","Jian","Yu","Yan","Kui","Nan","Hong","Rou","Pi","Wei","Sai","Zou","Xuan","Miao","Ti","Nie","Cha","Shi","Zong","Zhen","Yi","Shun","Heng","Bian","Yang","Huan","Yan","Zuan","An","Xu","Ya","Wo","Ke","Chuai","Ji","Ti","La","La","Cheng","Kai","Jiu","Jiu","Tu","Jie","Hui","Geng","Chong","Shuo","She","Xie","Yuan","Qian","Ye","Cha","Zha","Bei","Yao",,,"Lan","Wen","Qin"],["Chan","Ge","Lou","Zong","Geng","Jiao","Gou","Qin","Yong","Que","Chou","Chi","Zhan","Sun","Sun","Bo","Chu","Rong","Beng","Cuo","Sao","Ke","Yao","Dao","Zhi","Nu","Xie","Jian","Sou","Qiu","Gao","Xian","Shuo","Sang","Jin","Mie","E","Chui","Nuo","Shan","Ta","Jie","Tang","Pan","Ban","Da","Li","Tao","Hu","Zhi","Wa","Xia","Qian","Wen","Qiang","Tian","Zhen","E","Xi","Nuo","Quan","Cha","Zha","Ge","Wu","En","She","Kang","She","Shu","Bai","Yao","Bin","Sou","Tan","Sa","Chan","Suo","Liao","Chong","Chuang","Guo","Bing","Feng","Shuai","Di","Qi","Sou","Zhai","Lian","Tang","Chi","Guan","Lu","Luo","Lou","Zong","Gai","Hu","Zha","Chuang","Tang","Hua","Cui","Nai","Mo","Jiang","Gui","Ying","Zhi","Ao","Zhi","Nie","Man","Shan","Kou","Shu","Suo","Tuan","Jiao","Mo","Mo","Zhe","Xian","Keng","Piao","Jiang","Yin","Gou","Qian","Lue","Ji","Ying","Jue","Pie","Pie","Lao","Dun","Xian","Ruan","Kui","Zan","Yi","Xun","Cheng","Cheng","Sa","Nao","Heng","Si","Qian","Huang","Da","Zun","Nian","Lin","Zheng","Hui","Zhuang","Jiao","Ji","Cao","Dan","Dan","Che","Bo","Che","Jue","Xiao","Liao","Ben","Fu","Qiao","Bo","Cuo","Zhuo","Zhuan","Tuo","Pu","Qin","Dun","Nian",,"Xie","Lu","Jiao","Cuan","Ta","Han","Qiao","Zhua","Jian","Gan","Yong","Lei","Kuo","Lu","Shan","Zhuo","Ze","Pu","Chuo","Ji","Dang","Suo","Cao","Qing","Jing","Huan","Jie","Qin","Kuai","Dan","Xi","Ge","Pi","Bo","Ao","Ju","Ye",,"Mang","Sou","Mi","Ji","Tai","Zhuo","Dao","Xing","Lan","Ca","Ju","Ye","Ru","Ye","Ye","Ni","Hu","Ji","Bin","Ning","Ge","Zhi","Jie","Kuo","Mo","Jian","Xie","Lie","Tan","Bai","Sou","Lu","Lue","Rao","Zhi"],["Pan","Yang","Lei","Sa","Shu","Zan","Nian","Xian","Jun","Huo","Li","La","Han","Ying","Lu","Long","Qian","Qian","Zan","Qian","Lan","San","Ying","Mei","Rang","Chan",,"Cuan","Xi","She","Luo","Jun","Mi","Li","Zan","Luan","Tan","Zuan","Li","Dian","Wa","Dang","Jiao","Jue","Lan","Li","Nang","Zhi","Gui","Gui","Qi","Xin","Pu","Sui","Shou","Kao","You","Gai","Yi","Gong","Gan","Ban","Fang","Zheng","Bo","Dian","Kou","Min","Wu","Gu","He","Ce","Xiao","Mi","Chu","Ge","Di","Xu","Jiao","Min","Chen","Jiu","Zhen","Duo","Yu","Chi","Ao","Bai","Xu","Jiao","Duo","Lian","Nie","Bi","Chang","Dian","Duo","Yi","Gan","San","Ke","Yan","Dun","Qi","Dou","Xiao","Duo","Jiao","Jing","Yang","Xia","Min","Shu","Ai","Qiao","Ai","Zheng","Di","Zhen","Fu","Shu","Liao","Qu","Xiong","Xi","Jiao","Sen","Jiao","Zhuo","Yi","Lian","Bi","Li","Xiao","Xiao","Wen","Xue","Qi","Qi","Zhai","Bin","Jue","Zhai",,"Fei","Ban","Ban","Lan","Yu","Lan","Wei","Dou","Sheng","Liao","Jia","Hu","Xie","Jia","Yu","Zhen","Jiao","Wo","Tou","Chu","Jin","Chi","Yin","Fu","Qiang","Zhan","Qu","Zhuo","Zhan","Duan","Zhuo","Si","Xin","Zhuo","Zhuo","Qin","Lin","Zhuo","Chu","Duan","Zhu","Fang","Xie","Hang","Yu","Shi","Pei","You","Mye","Pang","Qi","Zhan","Mao","Lu","Pei","Pi","Liu","Fu","Fang","Xuan","Jing","Jing","Ni","Zu","Zhao","Yi","Liu","Shao","Jian","Es","Yi","Qi","Zhi","Fan","Piao","Fan","Zhan","Guai","Sui","Yu","Wu","Ji","Ji","Ji","Huo","Ri","Dan","Jiu","Zhi","Zao","Xie","Tiao","Xun","Xu","Xu","Xu","Gan","Han","Tai","Di","Xu","Chan","Shi","Kuang","Yang","Shi","Wang","Min","Min","Tun","Chun","Wu"],["Yun","Bei","Ang","Ze","Ban","Jie","Kun","Sheng","Hu","Fang","Hao","Gui","Chang","Xuan","Ming","Hun","Fen","Qin","Hu","Yi","Xi","Xin","Yan","Ze","Fang","Tan","Shen","Ju","Yang","Zan","Bing","Xing","Ying","Xuan","Pei","Zhen","Ling","Chun","Hao","Mei","Zuo","Mo","Bian","Xu","Hun","Zhao","Zong","Shi","Shi","Yu","Fei","Die","Mao","Ni","Chang","Wen","Dong","Ai","Bing","Ang","Zhou","Long","Xian","Kuang","Tiao","Chao","Shi","Huang","Huang","Xuan","Kui","Xu","Jiao","Jin","Zhi","Jin","Shang","Tong","Hong","Yan","Gai","Xiang","Shai","Xiao","Ye","Yun","Hui","Han","Han","Jun","Wan","Xian","Kun","Zhou","Xi","Cheng","Sheng","Bu","Zhe","Zhe","Wu","Han","Hui","Hao","Chen","Wan","Tian","Zhuo","Zui","Zhou","Pu","Jing","Xi","Shan","Yi","Xi","Qing","Qi","Jing","Gui","Zhen","Yi","Zhi","An","Wan","Lin","Liang","Chang","Wang","Xiao","Zan","Hi","Xuan","Xuan","Yi","Xia","Yun","Hui","Fu","Min","Kui","He","Ying","Du","Wei","Shu","Qing","Mao","Nan","Jian","Nuan","An","Yang","Chun","Yao","Suo","Jin","Ming","Jiao","Kai","Gao","Weng","Chang","Qi","Hao","Yan","Li","Ai","Ji","Gui","Men","Zan","Xie","Hao","Mu","Mo","Cong","Ni","Zhang","Hui","Bao","Han","Xuan","Chuan","Liao","Xian","Dan","Jing","Pie","Lin","Tun","Xi","Yi","Ji","Huang","Tai","Ye","Ye","Li","Tan","Tong","Xiao","Fei","Qin","Zhao","Hao","Yi","Xiang","Xing","Sen","Jiao","Bao","Jing","Yian","Ai","Ye","Ru","Shu","Meng","Xun","Yao","Pu","Li","Chen","Kuang","Die",,"Yan","Huo","Lu","Xi","Rong","Long","Nang","Luo","Luan","Shai","Tang","Yan","Chu","Yue","Yue","Qu","Yi","Geng","Ye","Hu","He","Shu","Cao","Cao","Noboru","Man","Ceng","Ceng","Ti"],["Zui","Can","Xu","Hui","Yin","Qie","Fen","Pi","Yue","You","Ruan","Peng","Ban","Fu","Ling","Fei","Qu",,"Nu","Tiao","Shuo","Zhen","Lang","Lang","Juan","Ming","Huang","Wang","Tun","Zhao","Ji","Qi","Ying","Zong","Wang","Tong","Lang",,"Meng","Long","Mu","Deng","Wei","Mo","Ben","Zha","Zhu","Shu",,"Zhu","Ren","Ba","Po","Duo","Duo","Dao","Li","Qiu","Ji","Jiu","Bi","Xiu","Ting","Ci","Sha","Eburi","Za","Quan","Qian","Yu","Gan","Wu","Cha","Shan","Xun","Fan","Wu","Zi","Li","Xing","Cai","Cun","Ren","Shao","Tuo","Di","Zhang","Mang","Chi","Yi","Gu","Gong","Du","Yi","Qi","Shu","Gang","Tiao","Moku","Soma","Tochi","Lai","Sugi","Mang","Yang","Ma","Miao","Si","Yuan","Hang","Fei","Bei","Jie","Dong","Gao","Yao","Xian","Chu","Qun","Pa","Shu","Hua","Xin","Chou","Zhu","Chou","Song","Ban","Song","Ji","Yue","Jin","Gou","Ji","Mao","Pi","Bi","Wang","Ang","Fang","Fen","Yi","Fu","Nan","Xi","Hu","Ya","Dou","Xun","Zhen","Yao","Lin","Rui","E","Mei","Zhao","Guo","Zhi","Cong","Yun","Waku","Dou","Shu","Zao",,"Li","Haze","Jian","Cheng","Matsu","Qiang","Feng","Nan","Xiao","Xian","Ku","Ping","Yi","Xi","Zhi","Guai","Xiao","Jia","Jia","Gou","Fu","Mo","Yi","Ye","Ye","Shi","Nie","Bi","Duo","Yi","Ling","Bing","Ni","La","He","Pan","Fan","Zhong","Dai","Ci","Yang","Fu","Bo","Mou","Gan","Qi","Ran","Rou","Mao","Zhao","Song","Zhe","Xia","You","Shen","Ju","Tuo","Zuo","Nan","Ning","Yong","Di","Zhi","Zha","Cha","Dan","Gu","Pu","Jiu","Ao","Fu","Jian","Bo","Duo","Ke","Nai","Zhu","Bi","Liu","Chai","Zha","Si","Zhu","Pei","Shi","Guai","Cha","Yao","Jue","Jiu","Shi"],["Zhi","Liu","Mei","Hoy","Rong","Zha",,"Biao","Zhan","Jie","Long","Dong","Lu","Sayng","Li","Lan","Yong","Shu","Xun","Shuan","Qi","Zhen","Qi","Li","Yi","Xiang","Zhen","Li","Su","Gua","Kan","Bing","Ren","Xiao","Bo","Ren","Bing","Zi","Chou","Yi","Jie","Xu","Zhu","Jian","Zui","Er","Er","You","Fa","Gong","Kao","Lao","Zhan","Li","Yin","Yang","He","Gen","Zhi","Chi","Ge","Zai","Luan","Fu","Jie","Hang","Gui","Tao","Guang","Wei","Kuang","Ru","An","An","Juan","Yi","Zhuo","Ku","Zhi","Qiong","Tong","Sang","Sang","Huan","Jie","Jiu","Xue","Duo","Zhui","Yu","Zan","Kasei","Ying","Masu",,"Zhan","Ya","Nao","Zhen","Dang","Qi","Qiao","Hua","Kuai","Jiang","Zhuang","Xun","Suo","Sha","Zhen","Bei","Ting","Gua","Jing","Bo","Ben","Fu","Rui","Tong","Jue","Xi","Lang","Liu","Feng","Qi","Wen","Jun","Gan","Cu","Liang","Qiu","Ting","You","Mei","Bang","Long","Peng","Zhuang","Di","Xuan","Tu","Zao","Ao","Gu","Bi","Di","Han","Zi","Zhi","Ren","Bei","Geng","Jian","Huan","Wan","Nuo","Jia","Tiao","Ji","Xiao","Lu","Huan","Shao","Cen","Fen","Song","Meng","Wu","Li","Li","Dou","Cen","Ying","Suo","Ju","Ti","Jie","Kun","Zhuo","Shu","Chan","Fan","Wei","Jing","Li","Bing","Fumoto","Shikimi","Tao","Zhi","Lai","Lian","Jian","Zhuo","Ling","Li","Qi","Bing","Zhun","Cong","Qian","Mian","Qi","Qi","Cai","Gun","Chan","Te","Fei","Pai","Bang","Pou","Hun","Zong","Cheng","Zao","Ji","Li","Peng","Yu","Yu","Gu","Hun","Dong","Tang","Gang","Wang","Di","Xi","Fan","Cheng","Zhan","Qi","Yuan","Yan","Yu","Quan","Yi","Sen","Ren","Chui","Leng","Qi","Zhuo","Fu","Ke","Lai","Zou","Zou","Zhuo","Guan","Fen","Fen","Chen","Qiong","Nie"],["Wan","Guo","Lu","Hao","Jie","Yi","Chou","Ju","Ju","Cheng","Zuo","Liang","Qiang","Zhi","Zhui","Ya","Ju","Bei","Jiao","Zhuo","Zi","Bin","Peng","Ding","Chu","Chang","Kunugi","Momiji","Jian","Gui","Xi","Du","Qian","Kunugi","Soko","Shide","Luo","Zhi","Ken","Myeng","Tafu",,"Peng","Zhan",,"Tuo","Sen","Duo","Ye","Fou","Wei","Wei","Duan","Jia","Zong","Jian","Yi","Shen","Xi","Yan","Yan","Chuan","Zhan","Chun","Yu","He","Zha","Wo","Pian","Bi","Yao","Huo","Xu","Ruo","Yang","La","Yan","Ben","Hun","Kui","Jie","Kui","Si","Feng","Xie","Tuo","Zhi","Jian","Mu","Mao","Chu","Hu","Hu","Lian","Leng","Ting","Nan","Yu","You","Mei","Song","Xuan","Xuan","Ying","Zhen","Pian","Ye","Ji","Jie","Ye","Chu","Shun","Yu","Cou","Wei","Mei","Di","Ji","Jie","Kai","Qiu","Ying","Rou","Heng","Lou","Le","Hazou","Katsura","Pin","Muro","Gai","Tan","Lan","Yun","Yu","Chen","Lu","Ju","Sakaki",,"Pi","Xie","Jia","Yi","Zhan","Fu","Nai","Mi","Lang","Rong","Gu","Jian","Ju","Ta","Yao","Zhen","Bang","Sha","Yuan","Zi","Ming","Su","Jia","Yao","Jie","Huang","Gan","Fei","Zha","Qian","Ma","Sun","Yuan","Xie","Rong","Shi","Zhi","Cui","Yun","Ting","Liu","Rong","Tang","Que","Zhai","Si","Sheng","Ta","Ke","Xi","Gu","Qi","Kao","Gao","Sun","Pan","Tao","Ge","Xun","Dian","Nou","Ji","Shuo","Gou","Chui","Qiang","Cha","Qian","Huai","Mei","Xu","Gang","Gao","Zhuo","Tuo","Hashi","Yang","Dian","Jia","Jian","Zui","Kashi","Ori","Bin","Zhu",,"Xi","Qi","Lian","Hui","Yong","Qian","Guo","Gai","Gai","Tuan","Hua","Cu","Sen","Cui","Beng","You","Hu","Jiang","Hu","Huan","Kui","Yi","Nie","Gao","Kang","Gui","Gui","Cao","Man","Jin"],["Di","Zhuang","Le","Lang","Chen","Cong","Li","Xiu","Qing","Shuang","Fan","Tong","Guan","Ji","Suo","Lei","Lu","Liang","Mi","Lou","Chao","Su","Ke","Shu","Tang","Biao","Lu","Jiu","Shu","Zha","Shu","Zhang","Men","Mo","Niao","Yang","Tiao","Peng","Zhu","Sha","Xi","Quan","Heng","Jian","Cong",,"Hokuso","Qiang","Tara","Ying","Er","Xin","Zhi","Qiao","Zui","Cong","Pu","Shu","Hua","Kui","Zhen","Zun","Yue","Zhan","Xi","Xun","Dian","Fa","Gan","Mo","Wu","Qiao","Nao","Lin","Liu","Qiao","Xian","Run","Fan","Zhan","Tuo","Lao","Yun","Shun","Tui","Cheng","Tang","Meng","Ju","Cheng","Su","Jue","Jue","Tan","Hui","Ji","Nuo","Xiang","Tuo","Ning","Rui","Zhu","Chuang","Zeng","Fen","Qiong","Ran","Heng","Cen","Gu","Liu","Lao","Gao","Chu","Zusa","Nude","Ca","San","Ji","Dou","Shou","Lu",,,"Yuan","Ta","Shu","Jiang","Tan","Lin","Nong","Yin","Xi","Sui","Shan","Zui","Xuan","Cheng","Gan","Ju","Zui","Yi","Qin","Pu","Yan","Lei","Feng","Hui","Dang","Ji","Sui","Bo","Bi","Ding","Chu","Zhua","Kuai","Ji","Jie","Jia","Qing","Zhe","Jian","Qiang","Dao","Yi","Biao","Song","She","Lin","Kunugi","Cha","Meng","Yin","Tao","Tai","Mian","Qi","Toan","Bin","Huo","Ji","Qian","Mi","Ning","Yi","Gao","Jian","Yin","Er","Qing","Yan","Qi","Mi","Zhao","Gui","Chun","Ji","Kui","Po","Deng","Chu",,"Mian","You","Zhi","Guang","Qian","Lei","Lei","Sa","Lu","Li","Cuan","Lu","Mie","Hui","Ou","Lu","Jie","Gao","Du","Yuan","Li","Fei","Zhuo","Sou","Lian","Tamo","Chu",,"Zhu","Lu","Yan","Li","Zhu","Chen","Jie","E","Su","Huai","Nie","Yu","Long","Lai",,"Xian","Kwi","Ju","Xiao","Ling","Ying","Jian","Yin","You","Ying"],["Xiang","Nong","Bo","Chan","Lan","Ju","Shuang","She","Wei","Cong","Quan","Qu","Cang",,"Yu","Luo","Li","Zan","Luan","Dang","Jue","Em","Lan","Lan","Zhu","Lei","Li","Ba","Nang","Yu","Ling","Tsuki","Qian","Ci","Huan","Xin","Yu","Yu","Qian","Ou","Xu","Chao","Chu","Chi","Kai","Yi","Jue","Xi","Xu","Xia","Yu","Kuai","Lang","Kuan","Shuo","Xi","Ai","Yi","Qi","Hu","Chi","Qin","Kuan","Kan","Kuan","Kan","Chuan","Sha","Gua","Yin","Xin","Xie","Yu","Qian","Xiao","Yi","Ge","Wu","Tan","Jin","Ou","Hu","Ti","Huan","Xu","Pen","Xi","Xiao","Xu","Xi","Sen","Lian","Chu","Yi","Kan","Yu","Chuo","Huan","Zhi","Zheng","Ci","Bu","Wu","Qi","Bu","Bu","Wai","Ju","Qian","Chi","Se","Chi","Se","Zhong","Sui","Sui","Li","Cuo","Yu","Li","Gui","Dai","Dai","Si","Jian","Zhe","Mo","Mo","Yao","Mo","Cu","Yang","Tian","Sheng","Dai","Shang","Xu","Xun","Shu","Can","Jue","Piao","Qia","Qiu","Su","Qing","Yun","Lian","Yi","Fou","Zhi","Ye","Can","Hun","Dan","Ji","Ye","Zhen","Yun","Wen","Chou","Bin","Ti","Jin","Shang","Yin","Diao","Cu","Hui","Cuan","Yi","Dan","Du","Jiang","Lian","Bin","Du","Tsukusu","Jian","Shu","Ou","Duan","Zhu","Yin","Qing","Yi","Sha","Que","Ke","Yao","Jun","Dian","Hui","Hui","Gu","Que","Ji","Yi","Ou","Hui","Duan","Yi","Xiao","Wu","Guan","Mu","Mei","Mei","Ai","Zuo","Du","Yu","Bi","Bi","Bi","Pi","Pi","Bi","Chan","Mao",,,"Pu","Mushiru","Jia","Zhan","Sai","Mu","Tuo","Xun","Er","Rong","Xian","Ju","Mu","Hao","Qiu","Dou","Mushiru","Tan","Pei","Ju","Duo","Cui","Bi","San",,"Mao","Sui","Yu","Yu","Tuo","He","Jian","Ta","San"],["Lu","Mu","Li","Tong","Rong","Chang","Pu","Luo","Zhan","Sao","Zhan","Meng","Luo","Qu","Die","Shi","Di","Min","Jue","Mang","Qi","Pie","Nai","Qi","Dao","Xian","Chuan","Fen","Ri","Nei",,"Fu","Shen","Dong","Qing","Qi","Yin","Xi","Hai","Yang","An","Ya","Ke","Qing","Ya","Dong","Dan","Lu","Qing","Yang","Yun","Yun","Shui","San","Zheng","Bing","Yong","Dang","Shitamizu","Le","Ni","Tun","Fan","Gui","Ting","Zhi","Qiu","Bin","Ze","Mian","Cuan","Hui","Diao","Han","Cha","Zhuo","Chuan","Wan","Fan","Dai","Xi","Tuo","Mang","Qiu","Qi","Shan","Pai","Han","Qian","Wu","Wu","Xun","Si","Ru","Gong","Jiang","Chi","Wu","Tsuchi",,"Tang","Zhi","Chi","Qian","Mi","Yu","Wang","Qing","Jing","Rui","Jun","Hong","Tai","Quan","Ji","Bian","Bian","Gan","Wen","Zhong","Fang","Xiong","Jue","Hang","Niou","Qi","Fen","Xu","Xu","Qin","Yi","Wo","Yun","Yuan","Hang","Yan","Shen","Chen","Dan","You","Dun","Hu","Huo","Qie","Mu","Rou","Mei","Ta","Mian","Wu","Chong","Tian","Bi","Sha","Zhi","Pei","Pan","Zhui","Za","Gou","Liu","Mei","Ze","Feng","Ou","Li","Lun","Cang","Feng","Wei","Hu","Mo","Mei","Shu","Ju","Zan","Tuo","Tuo","Tuo","He","Li","Mi","Yi","Fa","Fei","You","Tian","Zhi","Zhao","Gu","Zhan","Yan","Si","Kuang","Jiong","Ju","Xie","Qiu","Yi","Jia","Zhong","Quan","Bo","Hui","Mi","Ben","Zhuo","Chu","Le","You","Gu","Hong","Gan","Fa","Mao","Si","Hu","Ping","Ci","Fan","Chi","Su","Ning","Cheng","Ling","Pao","Bo","Qi","Si","Ni","Ju","Yue","Zhu","Sheng","Lei","Xuan","Xue","Fu","Pan","Min","Tai","Yang","Ji","Yong","Guan","Beng","Xue","Long","Lu",,"Bo","Xie","Po","Ze","Jing","Yin"],["Zhou","Ji","Yi","Hui","Hui","Zui","Cheng","Yin","Wei","Hou","Jian","Yang","Lie","Si","Ji","Er","Xing","Fu","Sa","Suo","Zhi","Yin","Wu","Xi","Kao","Zhu","Jiang","Luo",,"An","Dong","Yi","Mou","Lei","Yi","Mi","Quan","Jin","Mo","Wei","Xiao","Xie","Hong","Xu","Shuo","Kuang","Tao","Qie","Ju","Er","Zhou","Ru","Ping","Xun","Xiong","Zhi","Guang","Huan","Ming","Huo","Wa","Qia","Pai","Wu","Qu","Liu","Yi","Jia","Jing","Qian","Jiang","Jiao","Cheng","Shi","Zhuo","Ce","Pal","Kuai","Ji","Liu","Chan","Hun","Hu","Nong","Xun","Jin","Lie","Qiu","Wei","Zhe","Jun","Han","Bang","Mang","Zhuo","You","Xi","Bo","Dou","Wan","Hong","Yi","Pu","Ying","Lan","Hao","Lang","Han","Li","Geng","Fu","Wu","Lian","Chun","Feng","Yi","Yu","Tong","Lao","Hai","Jin","Jia","Chong","Weng","Mei","Sui","Cheng","Pei","Xian","Shen","Tu","Kun","Pin","Nie","Han","Jing","Xiao","She","Nian","Tu","Yong","Xiao","Xian","Ting","E","Su","Tun","Juan","Cen","Ti","Li","Shui","Si","Lei","Shui","Tao","Du","Lao","Lai","Lian","Wei","Wo","Yun","Huan","Di",,"Run","Jian","Zhang","Se","Fu","Guan","Xing","Shou","Shuan","Ya","Chuo","Zhang","Ye","Kong","Wo","Han","Tuo","Dong","He","Wo","Ju","Gan","Liang","Hun","Ta","Zhuo","Dian","Qie","De","Juan","Zi","Xi","Yao","Qi","Gu","Guo","Han","Lin","Tang","Zhou","Peng","Hao","Chang","Shu","Qi","Fang","Chi","Lu","Nao","Ju","Tao","Cong","Lei","Zhi","Peng","Fei","Song","Tian","Pi","Dan","Yu","Ni","Yu","Lu","Gan","Mi","Jing","Ling","Lun","Yin","Cui","Qu","Huai","Yu","Nian","Shen","Piao","Chun","Wa","Yuan","Lai","Hun","Qing","Yan","Qian","Tian","Miao","Zhi","Yin","Mi"],["Ben","Yuan","Wen","Re","Fei","Qing","Yuan","Ke","Ji","She","Yuan","Shibui","Lu","Zi","Du",,"Jian","Min","Pi","Tani","Yu","Yuan","Shen","Shen","Rou","Huan","Zhu","Jian","Nuan","Yu","Qiu","Ting","Qu","Du","Feng","Zha","Bo","Wo","Wo","Di","Wei","Wen","Ru","Xie","Ce","Wei","Ge","Gang","Yan","Hong","Xuan","Mi","Ke","Mao","Ying","Yan","You","Hong","Miao","Xing","Mei","Zai","Hun","Nai","Kui","Shi","E","Pai","Mei","Lian","Qi","Qi","Mei","Tian","Cou","Wei","Can","Tuan","Mian","Hui","Mo","Xu","Ji","Pen","Jian","Jian","Hu","Feng","Xiang","Yi","Yin","Zhan","Shi","Jie","Cheng","Huang","Tan","Yu","Bi","Min","Shi","Tu","Sheng","Yong","Qu","Zhong","Suei","Jiu","Jiao","Qiou","Yin","Tang","Long","Huo","Yuan","Nan","Ban","You","Quan","Chui","Liang","Chan","Yan","Chun","Nie","Zi","Wan","Shi","Man","Ying","Ratsu","Kui",,"Jian","Xu","Lu","Gui","Gai",,,"Po","Jin","Gui","Tang","Yuan","Suo","Yuan","Lian","Yao","Meng","Zhun","Sheng","Ke","Tai","Da","Wa","Liu","Gou","Sao","Ming","Zha","Shi","Yi","Lun","Ma","Pu","Wei","Li","Cai","Wu","Xi","Wen","Qiang","Ze","Shi","Su","Yi","Zhen","Sou","Yun","Xiu","Yin","Rong","Hun","Su","Su","Ni","Ta","Shi","Ru","Wei","Pan","Chu","Chu","Pang","Weng","Cang","Mie","He","Dian","Hao","Huang","Xi","Zi","Di","Zhi","Ying","Fu","Jie","Hua","Ge","Zi","Tao","Teng","Sui","Bi","Jiao","Hui","Gun","Yin","Gao","Long","Zhi","Yan","She","Man","Ying","Chun","Lu","Lan","Luan",,"Bin","Tan","Yu","Sou","Hu","Bi","Biao","Zhi","Jiang","Kou","Shen","Shang","Di","Mi","Ao","Lu","Hu","Hu","You","Chan","Fan","Yong","Gun","Man"],["Qing","Yu","Piao","Ji","Ya","Jiao","Qi","Xi","Ji","Lu","Lu","Long","Jin","Guo","Cong","Lou","Zhi","Gai","Qiang","Li","Yan","Cao","Jiao","Cong","Qun","Tuan","Ou","Teng","Ye","Xi","Mi","Tang","Mo","Shang","Han","Lian","Lan","Wa","Li","Qian","Feng","Xuan","Yi","Man","Zi","Mang","Kang","Lei","Peng","Shu","Zhang","Zhang","Chong","Xu","Huan","Kuo","Jian","Yan","Chuang","Liao","Cui","Ti","Yang","Jiang","Cong","Ying","Hong","Xun","Shu","Guan","Ying","Xiao",,,"Xu","Lian","Zhi","Wei","Pi","Jue","Jiao","Po","Dang","Hui","Jie","Wu","Pa","Ji","Pan","Gui","Xiao","Qian","Qian","Xi","Lu","Xi","Xuan","Dun","Huang","Min","Run","Su","Liao","Zhen","Zhong","Yi","Di","Wan","Dan","Tan","Chao","Xun","Kui","Yie","Shao","Tu","Zhu","San","Hei","Bi","Shan","Chan","Chan","Shu","Tong","Pu","Lin","Wei","Se","Se","Cheng","Jiong","Cheng","Hua","Jiao","Lao","Che","Gan","Cun","Heng","Si","Shu","Peng","Han","Yun","Liu","Hong","Fu","Hao","He","Xian","Jian","Shan","Xi","Oki",,"Lan",,"Yu","Lin","Min","Zao","Dang","Wan","Ze","Xie","Yu","Li","Shi","Xue","Ling","Man","Zi","Yong","Kuai","Can","Lian","Dian","Ye","Ao","Huan","Zhen","Chan","Man","Dan","Dan","Yi","Sui","Pi","Ju","Ta","Qin","Ji","Zhuo","Lian","Nong","Guo","Jin","Fen","Se","Ji","Sui","Hui","Chu","Ta","Song","Ding",,"Zhu","Lai","Bin","Lian","Mi","Shi","Shu","Mi","Ning","Ying","Ying","Meng","Jin","Qi","Pi","Ji","Hao","Ru","Zui","Wo","Tao","Yin","Yin","Dui","Ci","Huo","Jing","Lan","Jun","Ai","Pu","Zhuo","Wei","Bin","Gu","Qian","Xing","Hama","Kuo","Fei",,"Boku","Jian","Wei","Luo","Zan","Lu","Li"],["You","Yang","Lu","Si","Jie","Ying","Du","Wang","Hui","Xie","Pan","Shen","Biao","Chan","Mo","Liu","Jian","Pu","Se","Cheng","Gu","Bin","Huo","Xian","Lu","Qin","Han","Ying","Yong","Li","Jing","Xiao","Ying","Sui","Wei","Xie","Huai","Hao","Zhu","Long","Lai","Dui","Fan","Hu","Lai",,,"Ying","Mi","Ji","Lian","Jian","Ying","Fen","Lin","Yi","Jian","Yue","Chan","Dai","Rang","Jian","Lan","Fan","Shuang","Yuan","Zhuo","Feng","She","Lei","Lan","Cong","Qu","Yong","Qian","Fa","Guan","Que","Yan","Hao","Hyeng","Sa","Zan","Luan","Yan","Li","Mi","Shan","Tan","Dang","Jiao","Chan",,"Hao","Ba","Zhu","Lan","Lan","Nang","Wan","Luan","Xun","Xian","Yan","Gan","Yan","Yu","Huo","Si","Mie","Guang","Deng","Hui","Xiao","Xiao","Hu","Hong","Ling","Zao","Zhuan","Jiu","Zha","Xie","Chi","Zhuo","Zai","Zai","Can","Yang","Qi","Zhong","Fen","Niu","Jiong","Wen","Po","Yi","Lu","Chui","Pi","Kai","Pan","Yan","Kai","Pang","Mu","Chao","Liao","Gui","Kang","Tun","Guang","Xin","Zhi","Guang","Guang","Wei","Qiang",,"Da","Xia","Zheng","Zhu","Ke","Zhao","Fu","Ba","Duo","Duo","Ling","Zhuo","Xuan","Ju","Tan","Pao","Jiong","Pao","Tai","Tai","Bing","Yang","Tong","Han","Zhu","Zha","Dian","Wei","Shi","Lian","Chi","Huang",,"Hu","Shuo","Lan","Jing","Jiao","Xu","Xing","Quan","Lie","Huan","Yang","Xiao","Xiu","Xian","Yin","Wu","Zhou","Yao","Shi","Wei","Tong","Xue","Zai","Kai","Hong","Luo","Xia","Zhu","Xuan","Zheng","Po","Yan","Hui","Guang","Zhe","Hui","Kao",,"Fan","Shao","Ye","Hui",,"Tang","Jin","Re",,"Xi","Fu","Jiong","Che","Pu","Jing","Zhuo","Ting","Wan","Hai","Peng","Lang","Shan","Hu","Feng","Chi","Rong"],["Hu","Xi","Shu","He","Xun","Ku","Jue","Xiao","Xi","Yan","Han","Zhuang","Jun","Di","Xie","Ji","Wu",,,"Han","Yan","Huan","Men","Ju","Chou","Bei","Fen","Lin","Kun","Hun","Tun","Xi","Cui","Wu","Hong","Ju","Fu","Wo","Jiao","Cong","Feng","Ping","Qiong","Ruo","Xi","Qiong","Xin","Zhuo","Yan","Yan","Yi","Jue","Yu","Gang","Ran","Pi","Gu",,"Sheng","Chang","Shao",,,,,"Chen","He","Kui","Zhong","Duan","Xia","Hui","Feng","Lian","Xuan","Xing","Huang","Jiao","Jian","Bi","Ying","Zhu","Wei","Tuan","Tian","Xi","Nuan","Nuan","Chan","Yan","Jiong","Jiong","Yu","Mei","Sha","Wei","Ye","Xin","Qiong","Rou","Mei","Huan","Xu","Zhao","Wei","Fan","Qiu","Sui","Yang","Lie","Zhu","Jie","Gao","Gua","Bao","Hu","Yun","Xia",,,"Bian","Gou","Tui","Tang","Chao","Shan","N","Bo","Huang","Xie","Xi","Wu","Xi","Yun","He","He","Xi","Yun","Xiong","Nai","Shan","Qiong","Yao","Xun","Mi","Lian","Ying","Wen","Rong","Oozutsu",,"Qiang","Liu","Xi","Bi","Biao","Zong","Lu","Jian","Shou","Yi","Lou","Feng","Sui","Yi","Tong","Jue","Zong","Yun","Hu","Yi","Zhi","Ao","Wei","Liao","Han","Ou","Re","Jiong","Man",,"Shang","Cuan","Zeng","Jian","Xi","Xi","Xi","Yi","Xiao","Chi","Huang","Chan","Ye","Qian","Ran","Yan","Xian","Qiao","Zun","Deng","Dun","Shen","Jiao","Fen","Si","Liao","Yu","Lin","Tong","Shao","Fen","Fan","Yan","Xun","Lan","Mei","Tang","Yi","Jing","Men",,,"Ying","Yu","Yi","Xue","Lan","Tai","Zao","Can","Sui","Xi","Que","Cong","Lian","Hui","Zhu","Xie","Ling","Wei","Yi","Xie","Zhao","Hui","Tatsu","Nung","Lan","Ru","Xian","Kao","Xun","Jin","Chou","Chou","Yao"],["He","Lan","Biao","Rong","Li","Mo","Bao","Ruo","Lu","La","Ao","Xun","Kuang","Shuo",,"Li","Lu","Jue","Liao","Yan","Xi","Xie","Long","Ye",,"Rang","Yue","Lan","Cong","Jue","Tong","Guan",,"Che","Mi","Tang","Lan","Zhu",,"Ling","Cuan","Yu","Zhua","Tsumekanmuri","Pa","Zheng","Pao","Cheng","Yuan","Ai","Wei",,"Jue","Jue","Fu","Ye","Ba","Die","Ye","Yao","Zu","Shuang","Er","Qiang","Chuang","Ge","Zang","Die","Qiang","Yong","Qiang","Pian","Ban","Pan","Shao","Jian","Pai","Du","Chuang","Tou","Zha","Bian","Die","Bang","Bo","Chuang","You",,"Du","Ya","Cheng","Niu","Ushihen","Pin","Jiu","Mou","Tuo","Mu","Lao","Ren","Mang","Fang","Mao","Mu","Gang","Wu","Yan","Ge","Bei","Si","Jian","Gu","You","Ge","Sheng","Mu","Di","Qian","Quan","Quan","Zi","Te","Xi","Mang","Keng","Qian","Wu","Gu","Xi","Li","Li","Pou","Ji","Gang","Zhi","Ben","Quan","Run","Du","Ju","Jia","Jian","Feng","Pian","Ke","Ju","Kao","Chu","Xi","Bei","Luo","Jie","Ma","San","Wei","Li","Dun","Tong",,"Jiang","Ikenie","Li","Du","Lie","Pi","Piao","Bao","Xi","Chou","Wei","Kui","Chou","Quan","Fan","Ba","Fan","Qiu","Ji","Cai","Chuo","An","Jie","Zhuang","Guang","Ma","You","Kang","Bo","Hou","Ya","Yin","Huan","Zhuang","Yun","Kuang","Niu","Di","Qing","Zhong","Mu","Bei","Pi","Ju","Ni","Sheng","Pao","Xia","Tuo","Hu","Ling","Fei","Pi","Ni","Ao","You","Gou","Yue","Ju","Dan","Po","Gu","Xian","Ning","Huan","Hen","Jiao","He","Zhao","Ji","Xun","Shan","Ta","Rong","Shou","Tong","Lao","Du","Xia","Shi","Hua","Zheng","Yu","Sun","Yu","Bi","Mang","Xi","Juan","Li","Xia","Yin","Suan","Lang","Bei","Zhi","Yan"],["Sha","Li","Han","Xian","Jing","Pai","Fei","Yao","Ba","Qi","Ni","Biao","Yin","Lai","Xi","Jian","Qiang","Kun","Yan","Guo","Zong","Mi","Chang","Yi","Zhi","Zheng","Ya","Meng","Cai","Cu","She","Kari","Cen","Luo","Hu","Zong","Ji","Wei","Feng","Wo","Yuan","Xing","Zhu","Mao","Wei","Yuan","Xian","Tuan","Ya","Nao","Xie","Jia","Hou","Bian","You","You","Mei","Zha","Yao","Sun","Bo","Ming","Hua","Yuan","Sou","Ma","Yuan","Dai","Yu","Shi","Hao",,"Yi","Zhen","Chuang","Hao","Man","Jing","Jiang","Mu","Zhang","Chan","Ao","Ao","Hao","Cui","Fen","Jue","Bi","Bi","Huang","Pu","Lin","Yu","Tong","Yao","Liao","Shuo","Xiao","Swu","Ton","Xi","Ge","Juan","Du","Hui","Kuai","Xian","Xie","Ta","Xian","Xun","Ning","Pin","Huo","Nou","Meng","Lie","Nao","Guang","Shou","Lu","Ta","Xian","Mi","Rang","Huan","Nao","Luo","Xian","Qi","Jue","Xuan","Miao","Zi","Lu","Lu","Yu","Su","Wang","Qiu","Ga","Ding","Le","Ba","Ji","Hong","Di","Quan","Gan","Jiu","Yu","Ji","Yu","Yang","Ma","Gong","Wu","Fu","Wen","Jie","Ya","Fen","Bian","Beng","Yue","Jue","Yun","Jue","Wan","Jian","Mei","Dan","Pi","Wei","Huan","Xian","Qiang","Ling","Dai","Yi","An","Ping","Dian","Fu","Xuan","Xi","Bo","Ci","Gou","Jia","Shao","Po","Ci","Ke","Ran","Sheng","Shen","Yi","Zu","Jia","Min","Shan","Liu","Bi","Zhen","Zhen","Jue","Fa","Long","Jin","Jiao","Jian","Li","Guang","Xian","Zhou","Gong","Yan","Xiu","Yang","Xu","Luo","Su","Zhu","Qin","Ken","Xun","Bao","Er","Xiang","Yao","Xia","Heng","Gui","Chong","Xu","Ban","Pei",,"Dang","Ei","Hun","Wen","E","Cheng","Ti","Wu","Wu","Cheng","Jun","Mei","Bei","Ting","Xian","Chuo"],["Han","Xuan","Yan","Qiu","Quan","Lang","Li","Xiu","Fu","Liu","Ye","Xi","Ling","Li","Jin","Lian","Suo","Chiisai",,"Wan","Dian","Pin","Zhan","Cui","Min","Yu","Ju","Chen","Lai","Wen","Sheng","Wei","Dian","Chu","Zhuo","Pei","Cheng","Hu","Qi","E","Kun","Chang","Qi","Beng","Wan","Lu","Cong","Guan","Yan","Diao","Bei","Lin","Qin","Pi","Pa","Que","Zhuo","Qin","Fa",,"Qiong","Du","Jie","Hun","Yu","Mao","Mei","Chun","Xuan","Ti","Xing","Dai","Rou","Min","Zhen","Wei","Ruan","Huan","Jie","Chuan","Jian","Zhuan","Yang","Lian","Quan","Xia","Duan","Yuan","Ye","Nao","Hu","Ying","Yu","Huang","Rui","Se","Liu","Shi","Rong","Suo","Yao","Wen","Wu","Jin","Jin","Ying","Ma","Tao","Liu","Tang","Li","Lang","Gui","Zhen","Qiang","Cuo","Jue","Zhao","Yao","Ai","Bin","Tu","Chang","Kun","Zhuan","Cong","Jin","Yi","Cui","Cong","Qi","Li","Ying","Suo","Qiu","Xuan","Ao","Lian","Man","Zhang","Yin",,"Ying","Zhi","Lu","Wu","Deng","Xiou","Zeng","Xun","Qu","Dang","Lin","Liao","Qiong","Su","Huang","Gui","Pu","Jing","Fan","Jin","Liu","Ji",,"Jing","Ai","Bi","Can","Qu","Zao","Dang","Jiao","Gun","Tan","Hui","Huan","Se","Sui","Tian",,"Yu","Jin","Lu","Bin","Shou","Wen","Zui","Lan","Xi","Ji","Xuan","Ruan","Huo","Gai","Lei","Du","Li","Zhi","Rou","Li","Zan","Qiong","Zhe","Gui","Sui","La","Long","Lu","Li","Zan","Lan","Ying","Mi","Xiang","Xi","Guan","Dao","Zan","Huan","Gua","Bo","Die","Bao","Hu","Zhi","Piao","Ban","Rang","Li","Wa","Dekaguramu","Jiang","Qian","Fan","Pen","Fang","Dan","Weng","Ou","Deshiguramu","Miriguramu","Thon","Hu","Ling","Yi","Ping","Ci","Hekutogura","Juan","Chang","Chi","Sarake","Dang","Meng","Pou"],["Zhui","Ping","Bian","Zhou","Zhen","Senchigura","Ci","Ying","Qi","Xian","Lou","Di","Ou","Meng","Zhuan","Peng","Lin","Zeng","Wu","Pi","Dan","Weng","Ying","Yan","Gan","Dai","Shen","Tian","Tian","Han","Chang","Sheng","Qing","Sheng","Chan","Chan","Rui","Sheng","Su","Sen","Yong","Shuai","Lu","Fu","Yong","Beng","Feng","Ning","Tian","You","Jia","Shen","Zha","Dian","Fu","Nan","Dian","Ping","Ting","Hua","Ting","Quan","Zi","Meng","Bi","Qi","Liu","Xun","Liu","Chang","Mu","Yun","Fan","Fu","Geng","Tian","Jie","Jie","Quan","Wei","Fu","Tian","Mu","Tap","Pan","Jiang","Wa","Da","Nan","Liu","Ben","Zhen","Chu","Mu","Mu","Ce","Cen","Gai","Bi","Da","Zhi","Lue","Qi","Lue","Pan","Kesa","Fan","Hua","Yu","Yu","Mu","Jun","Yi","Liu","Yu","Die","Chou","Hua","Dang","Chuo","Ji","Wan","Jiang","Sheng","Chang","Tuan","Lei","Ji","Cha","Liu","Tatamu","Tuan","Lin","Jiang","Jiang","Chou","Bo","Die","Die","Pi","Nie","Dan","Shu","Shu","Zhi","Yi","Chuang","Nai","Ding","Bi","Jie","Liao","Gong","Ge","Jiu","Zhou","Xia","Shan","Xu","Nue","Li","Yang","Chen","You","Ba","Jie","Jue","Zhi","Xia","Cui","Bi","Yi","Li","Zong","Chuang","Feng","Zhu","Pao","Pi","Gan","Ke","Ci","Xie","Qi","Dan","Zhen","Fa","Zhi","Teng","Ju","Ji","Fei","Qu","Dian","Jia","Xian","Cha","Bing","Ni","Zheng","Yong","Jing","Quan","Chong","Tong","Yi","Kai","Wei","Hui","Duo","Yang","Chi","Zhi","Hen","Ya","Mei","Dou","Jing","Xiao","Tong","Tu","Mang","Pi","Xiao","Suan","Pu","Li","Zhi","Cuo","Duo","Wu","Sha","Lao","Shou","Huan","Xian","Yi","Peng","Zhang","Guan","Tan","Fei","Ma","Lin","Chi","Ji","Dian","An","Chi","Bi","Bei","Min","Gu","Dui","E","Wei"],["Yu","Cui","Ya","Zhu","Cu","Dan","Shen","Zhung","Ji","Yu","Hou","Feng","La","Yang","Shen","Tu","Yu","Gua","Wen","Huan","Ku","Jia","Yin","Yi","Lu","Sao","Jue","Chi","Xi","Guan","Yi","Wen","Ji","Chuang","Ban","Lei","Liu","Chai","Shou","Nue","Dian","Da","Pie","Tan","Zhang","Biao","Shen","Cu","Luo","Yi","Zong","Chou","Zhang","Zhai","Sou","Suo","Que","Diao","Lou","Lu","Mo","Jin","Yin","Ying","Huang","Fu","Liao","Long","Qiao","Liu","Lao","Xian","Fei","Dan","Yin","He","Ai","Ban","Xian","Guan","Guai","Nong","Yu","Wei","Yi","Yong","Pi","Lei","Li","Shu","Dan","Lin","Dian","Lin","Lai","Pie","Ji","Chi","Yang","Xian","Jie","Zheng",,"Li","Huo","Lai","Shaku","Dian","Xian","Ying","Yin","Qu","Yong","Tan","Dian","Luo","Luan","Luan","Bo",,"Gui","Po","Fa","Deng","Fa","Bai","Bai","Qie","Bi","Zao","Zao","Mao","De","Pa","Jie","Huang","Gui","Ci","Ling","Gao","Mo","Ji","Jiao","Peng","Gao","Ai","E","Hao","Han","Bi","Wan","Chou","Qian","Xi","Ai","Jiong","Hao","Huang","Hao","Ze","Cui","Hao","Xiao","Ye","Po","Hao","Jiao","Ai","Xing","Huang","Li","Piao","He","Jiao","Pi","Gan","Pao","Zhou","Jun","Qiu","Cun","Que","Zha","Gu","Jun","Jun","Zhou","Zha","Gu","Zhan","Du","Min","Qi","Ying","Yu","Bei","Zhao","Zhong","Pen","He","Ying","He","Yi","Bo","Wan","He","Ang","Zhan","Yan","Jian","He","Yu","Kui","Fan","Gai","Dao","Pan","Fu","Qiu","Sheng","Dao","Lu","Zhan","Meng","Li","Jin","Xu","Jian","Pan","Guan","An","Lu","Shu","Zhou","Dang","An","Gu","Li","Mu","Cheng","Gan","Xu","Mang","Mang","Zhi","Qi","Ruan","Tian","Xiang","Dun","Xin","Xi","Pan","Feng","Dun","Min"],["Ming","Sheng","Shi","Yun","Mian","Pan","Fang","Miao","Dan","Mei","Mao","Kan","Xian","Ou","Shi","Yang","Zheng","Yao","Shen","Huo","Da","Zhen","Kuang","Ju","Shen","Chi","Sheng","Mei","Mo","Zhu","Zhen","Zhen","Mian","Di","Yuan","Die","Yi","Zi","Zi","Chao","Zha","Xuan","Bing","Mi","Long","Sui","Dong","Mi","Die","Yi","Er","Ming","Xuan","Chi","Kuang","Juan","Mou","Zhen","Tiao","Yang","Yan","Mo","Zhong","Mai","Zhao","Zheng","Mei","Jun","Shao","Han","Huan","Di","Cheng","Cuo","Juan","E","Wan","Xian","Xi","Kun","Lai","Jian","Shan","Tian","Hun","Wan","Ling","Shi","Qiong","Lie","Yai","Jing","Zheng","Li","Lai","Sui","Juan","Shui","Sui","Du","Bi","Bi","Mu","Hun","Ni","Lu","Yi","Jie","Cai","Zhou","Yu","Hun","Ma","Xia","Xing","Xi","Gun","Cai","Chun","Jian","Mei","Du","Hou","Xuan","Ti","Kui","Gao","Rui","Mou","Xu","Fa","Wen","Miao","Chou","Kui","Mi","Weng","Kou","Dang","Chen","Ke","Sou","Xia","Qiong","Mao","Ming","Man","Shui","Ze","Zhang","Yi","Diao","Ou","Mo","Shun","Cong","Lou","Chi","Man","Piao","Cheng","Ji","Meng",,"Run","Pie","Xi","Qiao","Pu","Zhu","Deng","Shen","Shun","Liao","Che","Xian","Kan","Ye","Xu","Tong","Mou","Lin","Kui","Xian","Ye","Ai","Hui","Zhan","Jian","Gu","Zhao","Qu","Wei","Chou","Sao","Ning","Xun","Yao","Huo","Meng","Mian","Bin","Mian","Li","Kuang","Jue","Xuan","Mian","Huo","Lu","Meng","Long","Guan","Man","Xi","Chu","Tang","Kan","Zhu","Mao","Jin","Lin","Yu","Shuo","Ce","Jue","Shi","Yi","Shen","Zhi","Hou","Shen","Ying","Ju","Zhou","Jiao","Cuo","Duan","Ai","Jiao","Zeng","Huo","Bai","Shi","Ding","Qi","Ji","Zi","Gan","Wu","Tuo","Ku","Qiang","Xi","Fan","Kuang"],["Dang","Ma","Sha","Dan","Jue","Li","Fu","Min","Nuo","Huo","Kang","Zhi","Qi","Kan","Jie","Fen","E","Ya","Pi","Zhe","Yan","Sui","Zhuan","Che","Dun","Pan","Yan",,"Feng","Fa","Mo","Zha","Qu","Yu","Luo","Tuo","Tuo","Di","Zhai","Zhen","Ai","Fei","Mu","Zhu","Li","Bian","Nu","Ping","Peng","Ling","Pao","Le","Po","Bo","Po","Shen","Za","Nuo","Li","Long","Tong",,"Li","Aragane","Chu","Keng","Quan","Zhu","Kuang","Huo","E","Nao","Jia","Lu","Wei","Ai","Luo","Ken","Xing","Yan","Tong","Peng","Xi",,"Hong","Shuo","Xia","Qiao",,"Wei","Qiao",,"Keng","Xiao","Que","Chan","Lang","Hong","Yu","Xiao","Xia","Mang","Long","Iong","Che","Che","E","Liu","Ying","Mang","Que","Yan","Sha","Kun","Yu",,"Kaki","Lu","Chen","Jian","Nue","Song","Zhuo","Keng","Peng","Yan","Zhui","Kong","Ceng","Qi","Zong","Qing","Lin","Jun","Bo","Ding","Min","Diao","Jian","He","Lu","Ai","Sui","Que","Ling","Bei","Yin","Dui","Wu","Qi","Lun","Wan","Dian","Gang","Pei","Qi","Chen","Ruan","Yan","Die","Ding","Du","Tuo","Jie","Ying","Bian","Ke","Bi","Wei","Shuo","Zhen","Duan","Xia","Dang","Ti","Nao","Peng","Jian","Di","Tan","Cha","Seki","Qi",,"Feng","Xuan","Que","Que","Ma","Gong","Nian","Su","E","Ci","Liu","Si","Tang","Bang","Hua","Pi","Wei","Sang","Lei","Cuo","Zhen","Xia","Qi","Lian","Pan","Wei","Yun","Dui","Zhe","Ke","La",,"Qing","Gun","Zhuan","Chan","Qi","Ao","Peng","Lu","Lu","Kan","Qiang","Chen","Yin","Lei","Biao","Qi","Mo","Qi","Cui","Zong","Qing","Chuo",,"Ji","Shan","Lao","Qu","Zeng","Deng","Jian","Xi","Lin","Ding","Dian","Huang","Pan","Za","Qiao","Di","Li"],["Tani","Jiao",,"Zhang","Qiao","Dun","Xian","Yu","Zhui","He","Huo","Zhai","Lei","Ke","Chu","Ji","Que","Dang","Yi","Jiang","Pi","Pi","Yu","Pin","Qi","Ai","Kai","Jian","Yu","Ruan","Meng","Pao","Ci",,,"Mie","Ca","Xian","Kuang","Lei","Lei","Zhi","Li","Li","Fan","Que","Pao","Ying","Li","Long","Long","Mo","Bo","Shuang","Guan","Lan","Zan","Yan","Shi","Shi","Li","Reng","She","Yue","Si","Qi","Ta","Ma","Xie","Xian","Xian","Zhi","Qi","Zhi","Beng","Dui","Zhong",,"Yi","Shi","You","Zhi","Tiao","Fu","Fu","Mi","Zu","Zhi","Suan","Mei","Zuo","Qu","Hu","Zhu","Shen","Sui","Ci","Chai","Mi","Lu","Yu","Xiang","Wu","Tiao","Piao","Zhu","Gui","Xia","Zhi","Ji","Gao","Zhen","Gao","Shui","Jin","Chen","Gai","Kun","Di","Dao","Huo","Tao","Qi","Gu","Guan","Zui","Ling","Lu","Bing","Jin","Dao","Zhi","Lu","Shan","Bei","Zhe","Hui","You","Xi","Yin","Zi","Huo","Zhen","Fu","Yuan","Wu","Xian","Yang","Ti","Yi","Mei","Si","Di",,"Zhuo","Zhen","Yong","Ji","Gao","Tang","Si","Ma","Ta",,"Xuan","Qi","Yu","Xi","Ji","Si","Chan","Tan","Kuai","Sui","Li","Nong","Ni","Dao","Li","Rang","Yue","Ti","Zan","Lei","Rou","Yu","Yu","Chi","Xie","Qin","He","Tu","Xiu","Si","Ren","Tu","Zi","Cha","Gan","Yi","Xian","Bing","Nian","Qiu","Qiu","Zhong","Fen","Hao","Yun","Ke","Miao","Zhi","Geng","Bi","Zhi","Yu","Mi","Ku","Ban","Pi","Ni","Li","You","Zu","Pi","Ba","Ling","Mo","Cheng","Nian","Qin","Yang","Zuo","Zhi","Zhi","Shu","Ju","Zi","Huo","Ji","Cheng","Tong","Zhi","Huo","He","Yin","Zi","Zhi","Jie","Ren","Du","Yi","Zhu","Hui","Nong","Fu"],["Xi","Kao","Lang","Fu","Ze","Shui","Lu","Kun","Gan","Geng","Ti","Cheng","Tu","Shao","Shui","Ya","Lun","Lu","Gu","Zuo","Ren","Zhun","Bang","Bai","Ji","Zhi","Zhi","Kun","Leng","Peng","Ke","Bing","Chou","Zu","Yu","Su","Lue",,"Yi","Xi","Bian","Ji","Fu","Bi","Nuo","Jie","Zhong","Zong","Xu","Cheng","Dao","Wen","Lian","Zi","Yu","Ji","Xu","Zhen","Zhi","Dao","Jia","Ji","Gao","Gao","Gu","Rong","Sui","You","Ji","Kang","Mu","Shan","Men","Zhi","Ji","Lu","Su","Ji","Ying","Wen","Qiu","Se",,"Yi","Huang","Qie","Ji","Sui","Xiao","Pu","Jiao","Zhuo","Tong","Sai","Lu","Sui","Nong","Se","Hui","Rang","Nuo","Yu","Bin","Ji","Tui","Wen","Cheng","Huo","Gong","Lu","Biao",,"Rang","Zhuo","Li","Zan","Xue","Wa","Jiu","Qiong","Xi","Qiong","Kong","Yu","Sen","Jing","Yao","Chuan","Zhun","Tu","Lao","Qie","Zhai","Yao","Bian","Bao","Yao","Bing","Wa","Zhu","Jiao","Qiao","Diao","Wu","Gui","Yao","Zhi","Chuang","Yao","Tiao","Jiao","Chuang","Jiong","Xiao","Cheng","Kou","Cuan","Wo","Dan","Ku","Ke","Zhui","Xu","Su","Guan","Kui","Dou",,"Yin","Wo","Wa","Ya","Yu","Ju","Qiong","Yao","Yao","Tiao","Chao","Yu","Tian","Diao","Ju","Liao","Xi","Wu","Kui","Chuang","Zhao",,"Kuan","Long","Cheng","Cui","Piao","Zao","Cuan","Qiao","Qiong","Dou","Zao","Long","Qie","Li","Chu","Shi","Fou","Qian","Chu","Hong","Qi","Qian","Gong","Shi","Shu","Miao","Ju","Zhan","Zhu","Ling","Long","Bing","Jing","Jing","Zhang","Yi","Si","Jun","Hong","Tong","Song","Jing","Diao","Yi","Shu","Jing","Qu","Jie","Ping","Duan","Shao","Zhuan","Ceng","Deng","Cui","Huai","Jing","Kan","Jing","Zhu","Zhu","Le","Peng","Yu","Chi","Gan"],["Mang","Zhu","Utsubo","Du","Ji","Xiao","Ba","Suan","Ji","Zhen","Zhao","Sun","Ya","Zhui","Yuan","Hu","Gang","Xiao","Cen","Pi","Bi","Jian","Yi","Dong","Shan","Sheng","Xia","Di","Zhu","Na","Chi","Gu","Li","Qie","Min","Bao","Tiao","Si","Fu","Ce","Ben","Pei","Da","Zi","Di","Ling","Ze","Nu","Fu","Gou","Fan","Jia","Ge","Fan","Shi","Mao","Po","Sey","Jian","Qiong","Long","Souke","Bian","Luo","Gui","Qu","Chi","Yin","Yao","Xian","Bi","Qiong","Gua","Deng","Jiao","Jin","Quan","Sun","Ru","Fa","Kuang","Zhu","Tong","Ji","Da","Xing","Ce","Zhong","Kou","Lai","Bi","Shai","Dang","Zheng","Ce","Fu","Yun","Tu","Pa","Li","Lang","Ju","Guan","Jian","Han","Tong","Xia","Zhi","Cheng","Suan","Shi","Zhu","Zuo","Xiao","Shao","Ting","Ce","Yan","Gao","Kuai","Gan","Chou","Kago","Gang","Yun","O","Qian","Xiao","Jian","Pu","Lai","Zou","Bi","Bi","Bi","Ge","Chi","Guai","Yu","Jian","Zhao","Gu","Chi","Zheng","Jing","Sha","Zhou","Lu","Bo","Ji","Lin","Suan","Jun","Fu","Zha","Gu","Kong","Qian","Quan","Jun","Chui","Guan","Yuan","Ce","Ju","Bo","Ze","Qie","Tuo","Luo","Dan","Xiao","Ruo","Jian","Xuan","Bian","Sun","Xiang","Xian","Ping","Zhen","Sheng","Hu","Shi","Zhu","Yue","Chun","Lu","Wu","Dong","Xiao","Ji","Jie","Huang","Xing","Mei","Fan","Chui","Zhuan","Pian","Feng","Zhu","Hong","Qie","Hou","Qiu","Miao","Qian",,"Kui","Sik","Lou","Yun","He","Tang","Yue","Chou","Gao","Fei","Ruo","Zheng","Gou","Nie","Qian","Xiao","Cuan","Gong","Pang","Du","Li","Bi","Zhuo","Chu","Shai","Chi","Zhu","Qiang","Long","Lan","Jian","Bu","Li","Hui","Bi","Di","Cong","Yan","Peng","Sen","Zhuan","Pai","Piao","Dou","Yu","Mie","Zhuan"],["Ze","Xi","Guo","Yi","Hu","Chan","Kou","Cu","Ping","Chou","Ji","Gui","Su","Lou","Zha","Lu","Nian","Suo","Cuan","Sasara","Suo","Le","Duan","Yana","Xiao","Bo","Mi","Si","Dang","Liao","Dan","Dian","Fu","Jian","Min","Kui","Dai","Qiao","Deng","Huang","Sun","Lao","Zan","Xiao","Du","Shi","Zan",,"Pai","Hata","Pai","Gan","Ju","Du","Lu","Yan","Bo","Dang","Sai","Ke","Long","Qian","Lian","Bo","Zhou","Lai",,"Lan","Kui","Yu","Yue","Hao","Zhen","Tai","Ti","Mi","Chou","Ji",,"Hata","Teng","Zhuan","Zhou","Fan","Sou","Zhou","Kuji","Zhuo","Teng","Lu","Lu","Jian","Tuo","Ying","Yu","Lai","Long","Shinshi","Lian","Lan","Qian","Yue","Zhong","Qu","Lian","Bian","Duan","Zuan","Li","Si","Luo","Ying","Yue","Zhuo","Xu","Mi","Di","Fan","Shen","Zhe","Shen","Nu","Xie","Lei","Xian","Zi","Ni","Cun",,"Qian","Kume","Bi","Ban","Wu","Sha","Kang","Rou","Fen","Bi","Cui",,"Li","Chi","Nukamiso","Ro","Ba","Li","Gan","Ju","Po","Mo","Cu","Nian","Zhou","Li","Su","Tiao","Li","Qi","Su","Hong","Tong","Zi","Ce","Yue","Zhou","Lin","Zhuang","Bai",,"Fen","Ji",,"Sukumo","Liang","Xian","Fu","Liang","Can","Geng","Li","Yue","Lu","Ju","Qi","Cui","Bai","Zhang","Lin","Zong","Jing","Guo","Kouji","San","San","Tang","Bian","Rou","Mian","Hou","Xu","Zong","Hu","Jian","Zan","Ci","Li","Xie","Fu","Ni","Bei","Gu","Xiu","Gao","Tang","Qiu","Sukumo","Cao","Zhuang","Tang","Mi","San","Fen","Zao","Kang","Jiang","Mo","San","San","Nuo","Xi","Liang","Jiang","Kuai","Bo","Huan",,"Zong","Xian","Nuo","Tuan","Nie","Li","Zuo","Di","Nie","Tiao","Lan","Mi","Jiao","Jiu","Xi","Gong","Zheng","Jiu","You"],["Ji","Cha","Zhou","Xun","Yue","Hong","Yu","He","Wan","Ren","Wen","Wen","Qiu","Na","Zi","Tou","Niu","Fou","Jie","Shu","Chun","Pi","Yin","Sha","Hong","Zhi","Ji","Fen","Yun","Ren","Dan","Jin","Su","Fang","Suo","Cui","Jiu","Zha","Kinu","Jin","Fu","Zhi","Ci","Zi","Chou","Hong","Zha","Lei","Xi","Fu","Xie","Shen","Bei","Zhu","Qu","Ling","Zhu","Shao","Gan","Yang","Fu","Tuo","Zhen","Dai","Zhuo","Shi","Zhong","Xian","Zu","Jiong","Ban","Ju","Mo","Shu","Zui","Wata","Jing","Ren","Heng","Xie","Jie","Zhu","Chou","Gua","Bai","Jue","Kuang","Hu","Ci","Geng","Geng","Tao","Xie","Ku","Jiao","Quan","Gai","Luo","Xuan","Bing","Xian","Fu","Gei","Tong","Rong","Tiao","Yin","Lei","Xie","Quan","Xu","Lun","Die","Tong","Si","Jiang","Xiang","Hui","Jue","Zhi","Jian","Juan","Chi","Mian","Zhen","Lu","Cheng","Qiu","Shu","Bang","Tong","Xiao","Wan","Qin","Geng","Xiu","Ti","Xiu","Xie","Hong","Xi","Fu","Ting","Sui","Dui","Kun","Fu","Jing","Hu","Zhi","Yan","Jiong","Feng","Ji","Sok","Kase","Zong","Lin","Duo","Li","Lu","Liang","Chou","Quan","Shao","Qi","Qi","Zhun","Qi","Wan","Qian","Xian","Shou","Wei","Qi","Tao","Wan","Gang","Wang","Beng","Zhui","Cai","Guo","Cui","Lun","Liu","Qi","Zhan","Bei","Chuo","Ling","Mian","Qi","Qie","Tan","Zong","Gun","Zou","Yi","Zi","Xing","Liang","Jin","Fei","Rui","Min","Yu","Zong","Fan","Lu","Xu","Yingl","Zhang","Kasuri","Xu","Xiang","Jian","Ke","Xian","Ruan","Mian","Qi","Duan","Zhong","Di","Min","Miao","Yuan","Xie","Bao","Si","Qiu","Bian","Huan","Geng","Cong","Mian","Wei","Fu","Wei","Yu","Gou","Miao","Xie","Lian","Zong","Bian","Yun","Yin","Ti","Gua","Zhi","Yun","Cheng","Chan","Dai"],["Xia","Yuan","Zong","Xu","Nawa","Odoshi","Geng","Sen","Ying","Jin","Yi","Zhui","Ni","Bang","Gu","Pan","Zhou","Jian","Cuo","Quan","Shuang","Yun","Xia","Shuai","Xi","Rong","Tao","Fu","Yun","Zhen","Gao","Ru","Hu","Zai","Teng","Xian","Su","Zhen","Zong","Tao","Horo","Cai","Bi","Feng","Cu","Li","Suo","Yin","Xi","Zong","Lei","Zhuan","Qian","Man","Zhi","Lu","Mo","Piao","Lian","Mi","Xuan","Zong","Ji","Shan","Sui","Fan","Shuai","Beng","Yi","Sao","Mou","Zhou","Qiang","Hun","Sem","Xi","Jung","Xiu","Ran","Xuan","Hui","Qiao","Zeng","Zuo","Zhi","Shan","San","Lin","Yu","Fan","Liao","Chuo","Zun","Jian","Rao","Chan","Rui","Xiu","Hui","Hua","Zuan","Xi","Qiang","Un","Da","Sheng","Hui","Xi","Se","Jian","Jiang","Huan","Zao","Cong","Jie","Jiao","Bo","Chan","Yi","Nao","Sui","Yi","Shai","Xu","Ji","Bin","Qian","Lan","Pu","Xun","Zuan","Qi","Peng","Li","Mo","Lei","Xie","Zuan","Kuang","You","Xu","Lei","Xian","Chan","Kou","Lu","Chan","Ying","Cai","Xiang","Xian","Zui","Zuan","Luo","Xi","Dao","Lan","Lei","Lian","Si","Jiu","Yu","Hong","Zhou","Xian","He","Yue","Ji","Wan","Kuang","Ji","Ren","Wei","Yun","Hong","Chun","Pi","Sha","Gang","Na","Ren","Zong","Lun","Fen","Zhi","Wen","Fang","Zhu","Yin","Niu","Shu","Xian","Gan","Xie","Fu","Lian","Zu","Shen","Xi","Zhi","Zhong","Zhou","Ban","Fu","Zhuo","Shao","Yi","Jing","Dai","Bang","Rong","Jie","Ku","Rao","Die","Heng","Hui","Gei","Xuan","Jiang","Luo","Jue","Jiao","Tong","Geng","Xiao","Juan","Xiu","Xi","Sui","Tao","Ji","Ti","Ji","Xu","Ling",,"Xu","Qi","Fei","Chuo","Zhang","Gun","Sheng","Wei","Mian","Shou","Beng","Chou","Tao","Liu","Quan","Zong","Zhan","Wan","Lu"],["Zhui","Zi","Ke","Xiang","Jian","Mian","Lan","Ti","Miao","Qi","Yun","Hui","Si","Duo","Duan","Bian","Xian","Gou","Zhui","Huan","Di","Lu","Bian","Min","Yuan","Jin","Fu","Ru","Zhen","Feng","Shuai","Gao","Chan","Li","Yi","Jian","Bin","Piao","Man","Lei","Ying","Suo","Mou","Sao","Xie","Liao","Shan","Zeng","Jiang","Qian","Zao","Huan","Jiao","Zuan","Fou","Xie","Gang","Fou","Que","Fou","Kaakeru","Bo","Ping","Hou",,"Gang","Ying","Ying","Qing","Xia","Guan","Zun","Tan","Chang","Qi","Weng","Ying","Lei","Tan","Lu","Guan","Wang","Wang","Gang","Wang","Han",,"Luo","Fu","Mi","Fa","Gu","Zhu","Ju","Mao","Gu","Min","Gang","Ba","Gua","Ti","Juan","Fu","Lin","Yan","Zhao","Zui","Gua","Zhuo","Yu","Zhi","An","Fa","Nan","Shu","Si","Pi","Ma","Liu","Ba","Fa","Li","Chao","Wei","Bi","Ji","Zeng","Tong","Liu","Ji","Juan","Mi","Zhao","Luo","Pi","Ji","Ji","Luan","Yang","Mie","Qiang","Ta","Mei","Yang","You","You","Fen","Ba","Gao","Yang","Gu","Qiang","Zang","Gao","Ling","Yi","Zhu","Di","Xiu","Qian","Yi","Xian","Rong","Qun","Qun","Qian","Huan","Zui","Xian","Yi","Yashinau","Qiang","Xian","Yu","Geng","Jie","Tang","Yuan","Xi","Fan","Shan","Fen","Shan","Lian","Lei","Geng","Nou","Qiang","Chan","Yu","Gong","Yi","Chong","Weng","Fen","Hong","Chi","Chi","Cui","Fu","Xia","Pen","Yi","La","Yi","Pi","Ling","Liu","Zhi","Qu","Xi","Xie","Xiang","Xi","Xi","Qi","Qiao","Hui","Hui","Xiao","Se","Hong","Jiang","Di","Cui","Fei","Tao","Sha","Chi","Zhu","Jian","Xuan","Shi","Pian","Zong","Wan","Hui","Hou","He","He","Han","Ao","Piao","Yi","Lian","Qu",,"Lin","Pen","Qiao","Ao","Fan","Yi","Hui","Xuan","Dao"],["Yao","Lao",,"Kao","Mao","Zhe","Qi","Gou","Gou","Gou","Die","Die","Er","Shua","Ruan","Er","Nai","Zhuan","Lei","Ting","Zi","Geng","Chao","Hao","Yun","Pa","Pi","Chi","Si","Chu","Jia","Ju","He","Chu","Lao","Lun","Ji","Tang","Ou","Lou","Nou","Gou","Pang","Ze","Lou","Ji","Lao","Huo","You","Mo","Huai","Er","Zhe","Ting","Ye","Da","Song","Qin","Yun","Chi","Dan","Dan","Hong","Geng","Zhi",,"Nie","Dan","Zhen","Che","Ling","Zheng","You","Wa","Liao","Long","Zhi","Ning","Tiao","Er","Ya","Die","Gua",,"Lian","Hao","Sheng","Lie","Pin","Jing","Ju","Bi","Di","Guo","Wen","Xu","Ping","Cong","Shikato",,"Ting","Yu","Cong","Kui","Tsuraneru","Kui","Cong","Lian","Weng","Kui","Lian","Lian","Cong","Ao","Sheng","Song","Ting","Kui","Nie","Zhi","Dan","Ning","Qie","Ji","Ting","Ting","Long","Yu","Yu","Zhao","Si","Su","Yi","Su","Si","Zhao","Zhao","Rou","Yi","Le","Ji","Qiu","Ken","Cao","Ge","Di","Huan","Huang","Yi","Ren","Xiao","Ru","Zhou","Yuan","Du","Gang","Rong","Gan","Cha","Wo","Chang","Gu","Zhi","Han","Fu","Fei","Fen","Pei","Pang","Jian","Fang","Zhun","You","Na","Hang","Ken","Ran","Gong","Yu","Wen","Yao","Jin","Pi","Qian","Xi","Xi","Fei","Ken","Jing","Tai","Shen","Zhong","Zhang","Xie","Shen","Wei","Zhou","Die","Dan","Fei","Ba","Bo","Qu","Tian","Bei","Gua","Tai","Zi","Ku","Zhi","Ni","Ping","Zi","Fu","Pang","Zhen","Xian","Zuo","Pei","Jia","Sheng","Zhi","Bao","Mu","Qu","Hu","Ke","Yi","Yin","Xu","Yang","Long","Dong","Ka","Lu","Jing","Nu","Yan","Pang","Kua","Yi","Guang","Gai","Ge","Dong","Zhi","Xiao","Xiong","Xiong","Er","E","Xing","Pian","Neng","Zi","Gui"],["Cheng","Tiao","Zhi","Cui","Mei","Xie","Cui","Xie","Mo","Mai","Ji","Obiyaakasu",,"Kuai","Sa","Zang","Qi","Nao","Mi","Nong","Luan","Wan","Bo","Wen","Guan","Qiu","Jiao","Jing","Rou","Heng","Cuo","Lie","Shan","Ting","Mei","Chun","Shen","Xie","De","Zui","Cu","Xiu","Xin","Tuo","Pao","Cheng","Nei","Fu","Dou","Tuo","Niao","Noy","Pi","Gu","Gua","Li","Lian","Zhang","Cui","Jie","Liang","Zhou","Pi","Biao","Lun","Pian","Guo","Kui","Chui","Dan","Tian","Nei","Jing","Jie","La","Yi","An","Ren","Shen","Chuo","Fu","Fu","Ju","Fei","Qiang","Wan","Dong","Pi","Guo","Zong","Ding","Wu","Mei","Ruan","Zhuan","Zhi","Cou","Gua","Ou","Di","An","Xing","Nao","Yu","Chuan","Nan","Yun","Zhong","Rou","E","Sai","Tu","Yao","Jian","Wei","Jiao","Yu","Jia","Duan","Bi","Chang","Fu","Xian","Ni","Mian","Wa","Teng","Tui","Bang","Qian","Lu","Wa","Sou","Tang","Su","Zhui","Ge","Yi","Bo","Liao","Ji","Pi","Xie","Gao","Lu","Bin","Ou","Chang","Lu","Guo","Pang","Chuai","Piao","Jiang","Fu","Tang","Mo","Xi","Zhuan","Lu","Jiao","Ying","Lu","Zhi","Tara","Chun","Lian","Tong","Peng","Ni","Zha","Liao","Cui","Gui","Xiao","Teng","Fan","Zhi","Jiao","Shan","Wu","Cui","Run","Xiang","Sui","Fen","Ying","Tan","Zhua","Dan","Kuai","Nong","Tun","Lian","Bi","Yong","Jue","Chu","Yi","Juan","La","Lian","Sao","Tun","Gu","Qi","Cui","Bin","Xun","Ru","Huo","Zang","Xian","Biao","Xing","Kuan","La","Yan","Lu","Huo","Zang","Luo","Qu","Zang","Luan","Ni","Zang","Chen","Qian","Wo","Guang","Zang","Lin","Guang","Zi","Jiao","Nie","Chou","Ji","Gao","Chou","Mian","Nie","Zhi","Zhi","Ge","Jian","Die","Zhi","Xiu","Tai","Zhen","Jiu","Xian","Yu","Cha"],["Yao","Yu","Chong","Xi","Xi","Jiu","Yu","Yu","Xing","Ju","Jiu","Xin","She","She","Yadoru","Jiu","Shi","Tan","Shu","Shi","Tian","Dan","Pu","Pu","Guan","Hua","Tan","Chuan","Shun","Xia","Wu","Zhou","Dao","Gang","Shan","Yi",,"Pa","Tai","Fan","Ban","Chuan","Hang","Fang","Ban","Que","Hesaki","Zhong","Jian","Cang","Ling","Zhu","Ze","Duo","Bo","Xian","Ge","Chuan","Jia","Lu","Hong","Pang","Xi",,"Fu","Zao","Feng","Li","Shao","Yu","Lang","Ting",,"Wei","Bo","Meng","Nian","Ju","Huang","Shou","Zong","Bian","Mao","Die",,"Bang","Cha","Yi","Sao","Cang","Cao","Lou","Dai","Sori","Yao","Tong","Yofune","Dang","Tan","Lu","Yi","Jie","Jian","Huo","Meng","Qi","Lu","Lu","Chan","Shuang","Gen","Liang","Jian","Jian","Se","Yan","Fu","Ping","Yan","Yan","Cao","Cao","Yi","Le","Ting","Qiu","Ai","Nai","Tiao","Jiao","Jie","Peng","Wan","Yi","Chai","Mian","Mie","Gan","Qian","Yu","Yu","Shuo","Qiong","Tu","Xia","Qi","Mang","Zi","Hui","Sui","Zhi","Xiang","Bi","Fu","Tun","Wei","Wu","Zhi","Qi","Shan","Wen","Qian","Ren","Fou","Kou","Jie","Lu","Xu","Ji","Qin","Qi","Yuan","Fen","Ba","Rui","Xin","Ji","Hua","Hua","Fang","Wu","Jue","Gou","Zhi","Yun","Qin","Ao","Chu","Mao","Ya","Fei","Reng","Hang","Cong","Yin","You","Bian","Yi","Susa","Wei","Li","Pi","E","Xian","Chang","Cang","Meng","Su","Yi","Yuan","Ran","Ling","Tai","Tiao","Di","Miao","Qiong","Li","Yong","Ke","Mu","Pei","Bao","Gou","Min","Yi","Yi","Ju","Pi","Ruo","Ku","Zhu","Ni","Bo","Bing","Shan","Qiu","Yao","Xian","Ben","Hong","Ying","Zha","Dong","Ju","Die","Nie","Gan","Hu","Ping","Mei","Fu","Sheng","Gu","Bi","Wei"],["Fu","Zhuo","Mao","Fan","Qie","Mao","Mao","Ba","Zi","Mo","Zi","Di","Chi","Ji","Jing","Long",,"Niao",,"Xue","Ying","Qiong","Ge","Ming","Li","Rong","Yin","Gen","Qian","Chai","Chen","Yu","Xiu","Zi","Lie","Wu","Ji","Kui","Ce","Chong","Ci","Gou","Guang","Mang","Chi","Jiao","Jiao","Fu","Yu","Zhu","Zi","Jiang","Hui","Yin","Cha","Fa","Rong","Ru","Chong","Mang","Tong","Zhong",,"Zhu","Xun","Huan","Kua","Quan","Gai","Da","Jing","Xing","Quan","Cao","Jing","Er","An","Shou","Chi","Ren","Jian","Ti","Huang","Ping","Li","Jin","Lao","Shu","Zhuang","Da","Jia","Rao","Bi","Ze","Qiao","Hui","Qi","Dang",,"Rong","Hun","Ying","Luo","Ying","Xun","Jin","Sun","Yin","Mai","Hong","Zhou","Yao","Du","Wei","Chu","Dou","Fu","Ren","Yin","He","Bi","Bu","Yun","Di","Tu","Sui","Sui","Cheng","Chen","Wu","Bie","Xi","Geng","Li","Fu","Zhu","Mo","Li","Zhuang","Ji","Duo","Qiu","Sha","Suo","Chen","Feng","Ju","Mei","Meng","Xing","Jing","Che","Xin","Jun","Yan","Ting","Diao","Cuo","Wan","Han","You","Cuo","Jia","Wang","You","Niu","Shao","Xian","Lang","Fu","E","Mo","Wen","Jie","Nan","Mu","Kan","Lai","Lian","Shi","Wo","Usagi","Lian","Huo","You","Ying","Ying","Nuc","Chun","Mang","Mang","Ci","Wan","Jing","Di","Qu","Dong","Jian","Zou","Gu","La","Lu","Ju","Wei","Jun","Nie","Kun","He","Pu","Zi","Gao","Guo","Fu","Lun","Chang","Chou","Song","Chui","Zhan","Men","Cai","Ba","Li","Tu","Bo","Han","Bao","Qin","Juan","Xi","Qin","Di","Jie","Pu","Dang","Jin","Zhao","Tai","Geng","Hua","Gu","Ling","Fei","Jin","An","Wang","Beng","Zhou","Yan","Ju","Jian","Lin","Tan","Shu","Tian","Dao"],["Hu","Qi","He","Cui","Tao","Chun","Bei","Chang","Huan","Fei","Lai","Qi","Meng","Ping","Wei","Dan","Sha","Huan","Yan","Yi","Tiao","Qi","Wan","Ce","Nai","Kutabireru","Tuo","Jiu","Tie","Luo",,,"Meng",,"Yaji",,"Ying","Ying","Ying","Xiao","Sa","Qiu","Ke","Xiang","Wan","Yu","Yu","Fu","Lian","Xuan","Yuan","Nan","Ze","Wo","Chun","Xiao","Yu","Pian","Mao","An","E","Luo","Ying","Huo","Gua","Jiang","Mian","Zuo","Zuo","Ju","Bao","Rou","Xi","Xie","An","Qu","Jian","Fu","Lu","Jing","Pen","Feng","Hong","Hong","Hou","Yan","Tu","Zhu","Zi","Xiang","Shen","Ge","Jie","Jing","Mi","Huang","Shen","Pu","Gai","Dong","Zhou","Qian","Wei","Bo","Wei","Pa","Ji","Hu","Zang","Jia","Duan","Yao","Jun","Cong","Quan","Wei","Xian","Kui","Ting","Hun","Xi","Shi","Qi","Lan","Zong","Yao","Yuan","Mei","Yun","Shu","Di","Zhuan","Guan","Sukumo","Xue","Chan","Kai","Kui",,"Jiang","Lou","Wei","Pai",,"Sou","Yin","Shi","Chun","Shi","Yun","Zhen","Lang","Nu","Meng","He","Que","Suan","Yuan","Li","Ju","Xi","Pang","Chu","Xu","Tu","Liu","Wo","Zhen","Qian","Zu","Po","Cuo","Yuan","Chu","Yu","Kuai","Pan","Pu","Pu","Na","Shuo","Xi","Fen","Yun","Zheng","Jian","Ji","Ruo","Cang","En","Mi","Hao","Sun","Zhen","Ming","Sou","Xu","Liu","Xi","Gu","Lang","Rong","Weng","Gai","Cuo","Shi","Tang","Luo","Ru","Suo","Xian","Bei","Yao","Gui","Bi","Zong","Gun","Za","Xiu","Ce","Hai","Lan",,"Ji","Li","Can","Lang","Yu",,"Ying","Mo","Diao","Tiao","Mao","Tong","Zhu","Peng","An","Lian","Cong","Xi","Ping","Qiu","Jin","Chun","Jie","Wei","Tui","Cao","Yu","Yi","Ji","Liao","Bi","Lu","Su"],["Bu","Zhang","Luo","Jiang","Man","Yan","Ling","Ji","Piao","Gun","Han","Di","Su","Lu","She","Shang","Di","Mie","Xun","Man","Bo","Di","Cuo","Zhe","Sen","Xuan","Wei","Hu","Ao","Mi","Lou","Cu","Zhong","Cai","Po","Jiang","Mi","Cong","Niao","Hui","Jun","Yin","Jian","Yan","Shu","Yin","Kui","Chen","Hu","Sha","Kou","Qian","Ma","Zang","Sonoko","Qiang","Dou","Lian","Lin","Kou","Ai","Bi","Li","Wei","Ji","Xun","Sheng","Fan","Meng","Ou","Chan","Dian","Xun","Jiao","Rui","Rui","Lei","Yu","Qiao","Chu","Hua","Jian","Mai","Yun","Bao","You","Qu","Lu","Rao","Hui","E","Teng","Fei","Jue","Zui","Fa","Ru","Fen","Kui","Shun","Rui","Ya","Xu","Fu","Jue","Dang","Wu","Tong","Si","Xiao","Xi","Long","Yun",,"Qi","Jian","Yun","Sun","Ling","Yu","Xia","Yong","Ji","Hong","Si","Nong","Lei","Xuan","Yun","Yu","Xi","Hao","Bo","Hao","Ai","Wei","Hui","Wei","Ji","Ci","Xiang","Luan","Mie","Yi","Leng","Jiang","Can","Shen","Qiang","Lian","Ke","Yuan","Da","Ti","Tang","Xie","Bi","Zhan","Sun","Lian","Fan","Ding","Jie","Gu","Xie","Shu","Jian","Kao","Hong","Sa","Xin","Xun","Yao","Hie","Sou","Shu","Xun","Dui","Pin","Wei","Neng","Chou","Mai","Ru","Piao","Tai","Qi","Zao","Chen","Zhen","Er","Ni","Ying","Gao","Cong","Xiao","Qi","Fa","Jian","Xu","Kui","Jie","Bian","Diao","Mi","Lan","Jin","Cang","Miao","Qiong","Qie","Xian",,"Ou","Xian","Su","Lu","Yi","Xu","Xie","Li","Yi","La","Lei","Xiao","Di","Zhi","Bei","Teng","Yao","Mo","Huan","Piao","Fan","Sou","Tan","Tui","Qiong","Qiao","Wei","Liu","Hui",,"Gao","Yun",,"Li","Shu","Chu","Ai","Lin","Zao","Xuan","Chen","Lai","Huo"],["Tuo","Wu","Rui","Rui","Qi","Heng","Lu","Su","Tui","Mang","Yun","Pin","Yu","Xun","Ji","Jiong","Xian","Mo","Hagi","Su","Jiong",,"Nie","Bo","Rang","Yi","Xian","Yu","Ju","Lian","Lian","Yin","Qiang","Ying","Long","Tong","Wei","Yue","Ling","Qu","Yao","Fan","Mi","Lan","Kui","Lan","Ji","Dang","Katsura","Lei","Lei","Hua","Feng","Zhi","Wei","Kui","Zhan","Huai","Li","Ji","Mi","Lei","Huai","Luo","Ji","Kui","Lu","Jian","San",,"Lei","Quan","Xiao","Yi","Luan","Men","Bie","Hu","Hu","Lu","Nue","Lu","Si","Xiao","Qian","Chu","Hu","Xu","Cuo","Fu","Xu","Xu","Lu","Hu","Yu","Hao","Jiao","Ju","Guo","Bao","Yan","Zhan","Zhan","Kui","Ban","Xi","Shu","Chong","Qiu","Diao","Ji","Qiu","Cheng","Shi",,"Di","Zhe","She","Yu","Gan","Zi","Hong","Hui","Meng","Ge","Sui","Xia","Chai","Shi","Yi","Ma","Xiang","Fang","E","Pa","Chi","Qian","Wen","Wen","Rui","Bang","Bi","Yue","Yue","Jun","Qi","Ran","Yin","Qi","Tian","Yuan","Jue","Hui","Qin","Qi","Zhong","Ya","Ci","Mu","Wang","Fen","Fen","Hang","Gong","Zao","Fu","Ran","Jie","Fu","Chi","Dou","Piao","Xian","Ni","Te","Qiu","You","Zha","Ping","Chi","You","He","Han","Ju","Li","Fu","Ran","Zha","Gou","Pi","Bo","Xian","Zhu","Diao","Bie","Bing","Gu","Ran","Qu","She","Tie","Ling","Gu","Dan","Gu","Ying","Li","Cheng","Qu","Mou","Ge","Ci","Hui","Hui","Mang","Fu","Yang","Wa","Lie","Zhu","Yi","Xian","Kuo","Jiao","Li","Yi","Ping","Ji","Ha","She","Yi","Wang","Mo","Qiong","Qie","Gui","Gong","Zhi","Man","Ebi","Zhi","Jia","Rao","Si","Qi","Xing","Lie","Qiu","Shao","Yong","Jia","Shui","Che","Bai","E","Han"],["Shu","Xuan","Feng","Shen","Zhen","Fu","Xian","Zhe","Wu","Fu","Li","Lang","Bi","Chu","Yuan","You","Jie","Dan","Yan","Ting","Dian","Shui","Hui","Gua","Zhi","Song","Fei","Ju","Mi","Qi","Qi","Yu","Jun","Zha","Meng","Qiang","Si","Xi","Lun","Li","Die","Tiao","Tao","Kun","Gan","Han","Yu","Bang","Fei","Pi","Wei","Dun","Yi","Yuan","Su","Quan","Qian","Rui","Ni","Qing","Wei","Liang","Guo","Wan","Dong","E","Ban","Di","Wang","Can","Yang","Ying","Guo","Chan",,"La","Ke","Ji","He","Ting","Mai","Xu","Mian","Yu","Jie","Shi","Xuan","Huang","Yan","Bian","Rou","Wei","Fu","Yuan","Mei","Wei","Fu","Ruan","Xie","You","Qiu","Mao","Xia","Ying","Shi","Chong","Tang","Zhu","Zong","Ti","Fu","Yuan","Hui","Meng","La","Du","Hu","Qiu","Die","Li","Gua","Yun","Ju","Nan","Lou","Qun","Rong","Ying","Jiang",,"Lang","Pang","Si","Xi","Ci","Xi","Yuan","Weng","Lian","Sou","Ban","Rong","Rong","Ji","Wu","Qiu","Han","Qin","Yi","Bi","Hua","Tang","Yi","Du","Nai","He","Hu","Hui","Ma","Ming","Yi","Wen","Ying","Teng","Yu","Cang","So","Ebi","Man",,"Shang","Zhe","Cao","Chi","Di","Ao","Lu","Wei","Zhi","Tang","Chen","Piao","Qu","Pi","Yu","Jian","Luo","Lou","Qin","Zhong","Yin","Jiang","Shuai","Wen","Jiao","Wan","Zhi","Zhe","Ma","Ma","Guo","Liu","Mao","Xi","Cong","Li","Man","Xiao","Kamakiri","Zhang","Mang","Xiang","Mo","Zui","Si","Qiu","Te","Zhi","Peng","Peng","Jiao","Qu","Bie","Liao","Pan","Gui","Xi","Ji","Zhuan","Huang","Fei","Lao","Jue","Jue","Hui","Yin","Chan","Jiao","Shan","Rao","Xiao","Mou","Chong","Xun","Si",,"Cheng","Dang","Li","Xie","Shan","Yi","Jing","Da","Chan","Qi"],["Ci","Xiang","She","Luo","Qin","Ying","Chai","Li","Ze","Xuan","Lian","Zhu","Ze","Xie","Mang","Xie","Qi","Rong","Jian","Meng","Hao","Ruan","Huo","Zhuo","Jie","Bin","He","Mie","Fan","Lei","Jie","La","Mi","Li","Chun","Li","Qiu","Nie","Lu","Du","Xiao","Zhu","Long","Li","Long","Feng","Ye","Beng","Shang","Gu","Juan","Ying",,"Xi","Can","Qu","Quan","Du","Can","Man","Jue","Jie","Zhu","Zha","Xie","Huang","Niu","Pei","Nu","Xin","Zhong","Mo","Er","Ke","Mie","Xi","Xing","Yan","Kan","Yuan",,"Ling","Xuan","Shu","Xian","Tong","Long","Jie","Xian","Ya","Hu","Wei","Dao","Chong","Wei","Dao","Zhun","Heng","Qu","Yi","Yi","Bu","Gan","Yu","Biao","Cha","Yi","Shan","Chen","Fu","Gun","Fen","Shuai","Jie","Na","Zhong","Dan","Ri","Zhong","Zhong","Xie","Qi","Xie","Ran","Zhi","Ren","Qin","Jin","Jun","Yuan","Mei","Chai","Ao","Niao","Hui","Ran","Jia","Tuo","Ling","Dai","Bao","Pao","Yao","Zuo","Bi","Shao","Tan","Ju","He","Shu","Xiu","Zhen","Yi","Pa","Bo","Di","Wa","Fu","Gun","Zhi","Zhi","Ran","Pan","Yi","Mao","Tuo","Na","Kou","Xian","Chan","Qu","Bei","Gun","Xi","Ne","Bo","Horo","Fu","Yi","Chi","Ku","Ren","Jiang","Jia","Cun","Mo","Jie","Er","Luo","Ru","Zhu","Gui","Yin","Cai","Lie","Kamishimo","Yuki","Zhuang","Dang",,"Kun","Ken","Niao","Shu","Jia","Kun","Cheng","Li","Juan","Shen","Pou","Ge","Yi","Yu","Zhen","Liu","Qiu","Qun","Ji","Yi","Bu","Zhuang","Shui","Sha","Qun","Li","Lian","Lian","Ku","Jian","Fou","Chan","Bi","Gun","Tao","Yuan","Ling","Chi","Chang","Chou","Duo","Biao","Liang","Chang","Pei","Pei","Fei","Yuan","Luo","Guo","Yan","Du","Xi","Zhi","Ju","Qi"],["Ji","Zhi","Gua","Ken","Che","Ti","Ti","Fu","Chong","Xie","Bian","Die","Kun","Duan","Xiu","Xiu","He","Yuan","Bao","Bao","Fu","Yu","Tuan","Yan","Hui","Bei","Chu","Lu","Ena","Hitoe","Yun","Da","Gou","Da","Huai","Rong","Yuan","Ru","Nai","Jiong","Suo","Ban","Tun","Chi","Sang","Niao","Ying","Jie","Qian","Huai","Ku","Lian","Bao","Li","Zhe","Shi","Lu","Yi","Die","Xie","Xian","Wei","Biao","Cao","Ji","Jiang","Sen","Bao","Xiang","Chihaya","Pu","Jian","Zhuan","Jian","Zui","Ji","Dan","Za","Fan","Bo","Xiang","Xin","Bie","Rao","Man","Lan","Ao","Duo","Gui","Cao","Sui","Nong","Chan","Lian","Bi","Jin","Dang","Shu","Tan","Bi","Lan","Pu","Ru","Zhi",,"Shu","Wa","Shi","Bai","Xie","Bo","Chen","Lai","Long","Xi","Xian","Lan","Zhe","Dai","Tasuki","Zan","Shi","Jian","Pan","Yi","Ran","Ya","Xi","Xi","Yao","Feng","Tan",,"Biao","Fu","Ba","He","Ji","Ji","Jian","Guan","Bian","Yan","Gui","Jue","Pian","Mao","Mi","Mi","Mie","Shi","Si","Zhan","Luo","Jue","Mi","Tiao","Lian","Yao","Zhi","Jun","Xi","Shan","Wei","Xi","Tian","Yu","Lan","E","Du","Qin","Pang","Ji","Ming","Ying","Gou","Qu","Zhan","Jin","Guan","Deng","Jian","Luo","Qu","Jian","Wei","Jue","Qu","Luo","Lan","Shen","Di","Guan","Jian","Guan","Yan","Gui","Mi","Shi","Zhan","Lan","Jue","Ji","Xi","Di","Tian","Yu","Gou","Jin","Qu","Jiao","Jiu","Jin","Cu","Jue","Zhi","Chao","Ji","Gu","Dan","Zui","Di","Shang","Hua","Quan","Ge","Chi","Jie","Gui","Gong","Chu","Jie","Hun","Qiu","Xing","Su","Ni","Ji","Lu","Zhi","Zha","Bi","Xing","Hu","Shang","Gong","Zhi","Xue","Chu","Xi","Yi","Lu","Jue","Xi","Yan","Xi"],["Yan","Yan","Ding","Fu","Qiu","Qiu","Jiao","Hong","Ji","Fan","Xun","Diao","Hong","Cha","Tao","Xu","Jie","Yi","Ren","Xun","Yin","Shan","Qi","Tuo","Ji","Xun","Yin","E","Fen","Ya","Yao","Song","Shen","Yin","Xin","Jue","Xiao","Ne","Chen","You","Zhi","Xiong","Fang","Xin","Chao","She","Xian","Sha","Tun","Xu","Yi","Yi","Su","Chi","He","Shen","He","Xu","Zhen","Zhu","Zheng","Gou","Zi","Zi","Zhan","Gu","Fu","Quan","Die","Ling","Di","Yang","Li","Nao","Pan","Zhou","Gan","Yi","Ju","Ao","Zha","Tuo","Yi","Qu","Zhao","Ping","Bi","Xiong","Qu","Ba","Da","Zu","Tao","Zhu","Ci","Zhe","Yong","Xu","Xun","Yi","Huang","He","Shi","Cha","Jiao","Shi","Hen","Cha","Gou","Gui","Quan","Hui","Jie","Hua","Gai","Xiang","Wei","Shen","Chou","Tong","Mi","Zhan","Ming","E","Hui","Yan","Xiong","Gua","Er","Beng","Tiao","Chi","Lei","Zhu","Kuang","Kua","Wu","Yu","Teng","Ji","Zhi","Ren","Su","Lang","E","Kuang","E","Shi","Ting","Dan","Bo","Chan","You","Heng","Qiao","Qin","Shua","An","Yu","Xiao","Cheng","Jie","Xian","Wu","Wu","Gao","Song","Pu","Hui","Jing","Shuo","Zhen","Shuo","Du","Yasashi","Chang","Shui","Jie","Ke","Qu","Cong","Xiao","Sui","Wang","Xuan","Fei","Chi","Ta","Yi","Na","Yin","Diao","Pi","Chuo","Chan","Chen","Zhun","Ji","Qi","Tan","Zhui","Wei","Ju","Qing","Jian","Zheng","Ze","Zou","Qian","Zhuo","Liang","Jian","Zhu","Hao","Lun","Shen","Biao","Huai","Pian","Yu","Die","Xu","Pian","Shi","Xuan","Shi","Hun","Hua","E","Zhong","Di","Xie","Fu","Pu","Ting","Jian","Qi","Yu","Zi","Chuan","Xi","Hui","Yin","An","Xian","Nan","Chen","Feng","Zhu","Yang","Yan","Heng","Xuan","Ge","Nuo","Qi"],["Mou","Ye","Wei",,"Teng","Zou","Shan","Jian","Bo","Ku","Huang","Huo","Ge","Ying","Mi","Xiao","Mi","Xi","Qiang","Chen","Nue","Ti","Su","Bang","Chi","Qian","Shi","Jiang","Yuan","Xie","Xue","Tao","Yao","Yao",,"Yu","Biao","Cong","Qing","Li","Mo","Mo","Shang","Zhe","Miu","Jian","Ze","Jie","Lian","Lou","Can","Ou","Guan","Xi","Zhuo","Ao","Ao","Jin","Zhe","Yi","Hu","Jiang","Man","Chao","Han","Hua","Chan","Xu","Zeng","Se","Xi","She","Dui","Zheng","Nao","Lan","E","Ying","Jue","Ji","Zun","Jiao","Bo","Hui","Zhuan","Mu","Zen","Zha","Shi","Qiao","Tan","Zen","Pu","Sheng","Xuan","Zao","Tan","Dang","Sui","Qian","Ji","Jiao","Jing","Lian","Nou","Yi","Ai","Zhan","Pi","Hui","Hua","Yi","Yi","Shan","Rang","Nou","Qian","Zhui","Ta","Hu","Zhou","Hao","Ye","Ying","Jian","Yu","Jian","Hui","Du","Zhe","Xuan","Zan","Lei","Shen","Wei","Chan","Li","Yi","Bian","Zhe","Yan","E","Chou","Wei","Chou","Yao","Chan","Rang","Yin","Lan","Chen","Huo","Zhe","Huan","Zan","Yi","Dang","Zhan","Yan","Du","Yan","Ji","Ding","Fu","Ren","Ji","Jie","Hong","Tao","Rang","Shan","Qi","Tuo","Xun","Yi","Xun","Ji","Ren","Jiang","Hui","Ou","Ju","Ya","Ne","Xu","E","Lun","Xiong","Song","Feng","She","Fang","Jue","Zheng","Gu","He","Ping","Zu","Shi","Xiong","Zha","Su","Zhen","Di","Zou","Ci","Qu","Zhao","Bi","Yi","Yi","Kuang","Lei","Shi","Gua","Shi","Jie","Hui","Cheng","Zhu","Shen","Hua","Dan","Gou","Quan","Gui","Xun","Yi","Zheng","Gai","Xiang","Cha","Hun","Xu","Zhou","Jie","Wu","Yu","Qiao","Wu","Gao","You","Hui","Kuang","Shuo","Song","Ai","Qing","Zhu","Zou","Nuo","Du","Zhuo","Fei","Ke","Wei"],["Yu","Shui","Shen","Diao","Chan","Liang","Zhun","Sui","Tan","Shen","Yi","Mou","Chen","Die","Huang","Jian","Xie","Nue","Ye","Wei","E","Yu","Xuan","Chan","Zi","An","Yan","Di","Mi","Pian","Xu","Mo","Dang","Su","Xie","Yao","Bang","Shi","Qian","Mi","Jin","Man","Zhe","Jian","Miu","Tan","Zen","Qiao","Lan","Pu","Jue","Yan","Qian","Zhan","Chen","Gu","Qian","Hong","Xia","Jue","Hong","Han","Hong","Xi","Xi","Huo","Liao","Han","Du","Long","Dou","Jiang","Qi","Shi","Li","Deng","Wan","Bi","Shu","Xian","Feng","Zhi","Zhi","Yan","Yan","Shi","Chu","Hui","Tun","Yi","Tun","Yi","Jian","Ba","Hou","E","Cu","Xiang","Huan","Jian","Ken","Gai","Qu","Fu","Xi","Bin","Hao","Yu","Zhu","Jia",,"Xi","Bo","Wen","Huan","Bin","Di","Zong","Fen","Yi","Zhi","Bao","Chai","Han","Pi","Na","Pi","Gou","Na","You","Diao","Mo","Si","Xiu","Huan","Kun","He","He","Mo","Han","Mao","Li","Ni","Bi","Yu","Jia","Tuan","Mao","Pi","Xi","E","Ju","Mo","Chu","Tan","Huan","Jue","Bei","Zhen","Yuan","Fu","Cai","Gong","Te","Yi","Hang","Wan","Pin","Huo","Fan","Tan","Guan","Ze","Zhi","Er","Zhu","Shi","Bi","Zi","Er","Gui","Pian","Bian","Mai","Dai","Sheng","Kuang","Fei","Tie","Yi","Chi","Mao","He","Bi","Lu","Ren","Hui","Gai","Pian","Zi","Jia","Xu","Zei","Jiao","Gai","Zang","Jian","Ying","Xun","Zhen","She","Bin","Bin","Qiu","She","Chuan","Zang","Zhou","Lai","Zan","Si","Chen","Shang","Tian","Pei","Geng","Xian","Mai","Jian","Sui","Fu","Tan","Cong","Cong","Zhi","Ji","Zhang","Du","Jin","Xiong","Shun","Yun","Bao","Zai","Lai","Feng","Cang","Ji","Sheng","Ai","Zhuan","Fu","Gou","Sai","Ze","Liao"],["Wei","Bai","Chen","Zhuan","Zhi","Zhui","Biao","Yun","Zeng","Tan","Zan","Yan",,"Shan","Wan","Ying","Jin","Gan","Xian","Zang","Bi","Du","Shu","Yan",,"Xuan","Long","Gan","Zang","Bei","Zhen","Fu","Yuan","Gong","Cai","Ze","Xian","Bai","Zhang","Huo","Zhi","Fan","Tan","Pin","Bian","Gou","Zhu","Guan","Er","Jian","Bi","Shi","Tie","Gui","Kuang","Dai","Mao","Fei","He","Yi","Zei","Zhi","Jia","Hui","Zi","Ren","Lu","Zang","Zi","Gai","Jin","Qiu","Zhen","Lai","She","Fu","Du","Ji","Shu","Shang","Si","Bi","Zhou","Geng","Pei","Tan","Lai","Feng","Zhui","Fu","Zhuan","Sai","Ze","Yan","Zan","Yun","Zeng","Shan","Ying","Gan","Chi","Xi","She","Nan","Xiong","Xi","Cheng","He","Cheng","Zhe","Xia","Tang","Zou","Zou","Li","Jiu","Fu","Zhao","Gan","Qi","Shan","Qiong","Qin","Xian","Ci","Jue","Qin","Chi","Ci","Chen","Chen","Die","Ju","Chao","Di","Se","Zhan","Zhu","Yue","Qu","Jie","Chi","Chu","Gua","Xue","Ci","Tiao","Duo","Lie","Gan","Suo","Cu","Xi","Zhao","Su","Yin","Ju","Jian","Que","Tang","Chuo","Cui","Lu","Qu","Dang","Qiu","Zi","Ti","Qu","Chi","Huang","Qiao","Qiao","Yao","Zao","Ti",,"Zan","Zan","Zu","Pa","Bao","Ku","Ke","Dun","Jue","Fu","Chen","Jian","Fang","Zhi","Sa","Yue","Pa","Qi","Yue","Qiang","Tuo","Tai","Yi","Nian","Ling","Mei","Ba","Die","Ku","Tuo","Jia","Ci","Pao","Qia","Zhu","Ju","Die","Zhi","Fu","Pan","Ju","Shan","Bo","Ni","Ju","Li","Gen","Yi","Ji","Dai","Xian","Jiao","Duo","Zhu","Zhuan","Kua","Zhuai","Gui","Qiong","Kui","Xiang","Chi","Lu","Beng","Zhi","Jia","Tiao","Cai","Jian","Ta","Qiao","Bi","Xian","Duo","Ji","Ju","Ji","Shu","Tu"],["Chu","Jing","Nie","Xiao","Bo","Chi","Qun","Mou","Shu","Lang","Yong","Jiao","Chou","Qiao",,"Ta","Jian","Qi","Wo","Wei","Zhuo","Jie","Ji","Nie","Ju","Ju","Lun","Lu","Leng","Huai","Ju","Chi","Wan","Quan","Ti","Bo","Zu","Qie","Ji","Cu","Zong","Cai","Zong","Peng","Zhi","Zheng","Dian","Zhi","Yu","Duo","Dun","Chun","Yong","Zhong","Di","Zhe","Chen","Chuai","Jian","Gua","Tang","Ju","Fu","Zu","Die","Pian","Rou","Nuo","Ti","Cha","Tui","Jian","Dao","Cuo","Xi","Ta","Qiang","Zhan","Dian","Ti","Ji","Nie","Man","Liu","Zhan","Bi","Chong","Lu","Liao","Cu","Tang","Dai","Suo","Xi","Kui","Ji","Zhi","Qiang","Di","Man","Zong","Lian","Beng","Zao","Nian","Bie","Tui","Ju","Deng","Ceng","Xian","Fan","Chu","Zhong","Dun","Bo","Cu","Zu","Jue","Jue","Lin","Ta","Qiao","Qiao","Pu","Liao","Dun","Cuan","Kuang","Zao","Ta","Bi","Bi","Zhu","Ju","Chu","Qiao","Dun","Chou","Ji","Wu","Yue","Nian","Lin","Lie","Zhi","Li","Zhi","Chan","Chu","Duan","Wei","Long","Lin","Xian","Wei","Zuan","Lan","Xie","Rang","Xie","Nie","Ta","Qu","Jie","Cuan","Zuan","Xi","Kui","Jue","Lin","Shen","Gong","Dan","Segare","Qu","Ti","Duo","Duo","Gong","Lang","Nerau","Luo","Ai","Ji","Ju","Tang","Utsuke",,"Yan","Shitsuke","Kang","Qu","Lou","Lao","Tuo","Zhi","Yagate","Ti","Dao","Yagate","Yu","Che","Ya","Gui","Jun","Wei","Yue","Xin","Di","Xuan","Fan","Ren","Shan","Qiang","Shu","Tun","Chen","Dai","E","Na","Qi","Mao","Ruan","Ren","Fan","Zhuan","Hong","Hu","Qu","Huang","Di","Ling","Dai","Ao","Zhen","Fan","Kuang","Ang","Peng","Bei","Gu","Ku","Pao","Zhu","Rong","E","Ba","Zhou","Zhi","Yao","Ke","Yi","Qing","Shi","Ping"],["Er","Qiong","Ju","Jiao","Guang","Lu","Kai","Quan","Zhou","Zai","Zhi","She","Liang","Yu","Shao","You","Huan","Yun","Zhe","Wan","Fu","Qing","Zhou","Ni","Ling","Zhe","Zhan","Liang","Zi","Hui","Wang","Chuo","Guo","Kan","Yi","Peng","Qian","Gun","Nian","Pian","Guan","Bei","Lun","Pai","Liang","Ruan","Rou","Ji","Yang","Xian","Chuan","Cou","Qun","Ge","You","Hong","Shu","Fu","Zi","Fu","Wen","Ben","Zhan","Yu","Wen","Tao","Gu","Zhen","Xia","Yuan","Lu","Jiu","Chao","Zhuan","Wei","Hun","Sori","Che","Jiao","Zhan","Pu","Lao","Fen","Fan","Lin","Ge","Se","Kan","Huan","Yi","Ji","Dui","Er","Yu","Xian","Hong","Lei","Pei","Li","Li","Lu","Lin","Che","Ya","Gui","Xuan","Di","Ren","Zhuan","E","Lun","Ruan","Hong","Ku","Ke","Lu","Zhou","Zhi","Yi","Hu","Zhen","Li","Yao","Qing","Shi","Zai","Zhi","Jiao","Zhou","Quan","Lu","Jiao","Zhe","Fu","Liang","Nian","Bei","Hui","Gun","Wang","Liang","Chuo","Zi","Cou","Fu","Ji","Wen","Shu","Pei","Yuan","Xia","Zhan","Lu","Che","Lin","Xin","Gu","Ci","Ci","Pi","Zui","Bian","La","La","Ci","Xue","Ban","Bian","Bian","Bian",,"Bian","Ban","Ci","Bian","Bian","Chen","Ru","Nong","Nong","Zhen","Chuo","Chuo","Suberu","Reng","Bian","Bian","Sip","Ip","Liao","Da","Chan","Gan","Qian","Yu","Yu","Qi","Xun","Yi","Guo","Mai","Qi","Za","Wang","Jia","Zhun","Ying","Ti","Yun","Jin","Hang","Ya","Fan","Wu","Da","E","Huan","Zhe","Totemo","Jin","Yuan","Wei","Lian","Chi","Che","Ni","Tiao","Zhi","Yi","Jiong","Jia","Chen","Dai","Er","Di","Po","Wang","Die","Ze","Tao","Shu","Tuo","Kep","Jing","Hui","Tong","You","Mi","Beng","Ji","Nai","Yi","Jie","Zhui","Lie","Xun"],["Tui","Song","Gua","Tao","Pang","Hou","Ni","Dun","Jiong","Xuan","Xun","Bu","You","Xiao","Qiu","Tou","Zhu","Qiu","Di","Di","Tu","Jing","Ti","Dou","Yi","Zhe","Tong","Guang","Wu","Shi","Cheng","Su","Zao","Qun","Feng","Lian","Suo","Hui","Li","Sako","Lai","Ben","Cuo","Jue","Beng","Huan","Dai","Lu","You","Zhou","Jin","Yu","Chuo","Kui","Wei","Ti","Yi","Da","Yuan","Luo","Bi","Nuo","Yu","Dang","Sui","Dun","Sui","Yan","Chuan","Chi","Ti","Yu","Shi","Zhen","You","Yun","E","Bian","Guo","E","Xia","Huang","Qiu","Dao","Da","Wei","Appare","Yi","Gou","Yao","Chu","Liu","Xun","Ta","Di","Chi","Yuan","Su","Ta","Qian",,"Yao","Guan","Zhang","Ao","Shi","Ce","Chi","Su","Zao","Zhe","Dun","Di","Lou","Chi","Cuo","Lin","Zun","Rao","Qian","Xuan","Yu","Yi","Wu","Liao","Ju","Shi","Bi","Yao","Mai","Xie","Sui","Huan","Zhan","Teng","Er","Miao","Bian","Bian","La","Li","Yuan","Yao","Luo","Li","Yi","Ting","Deng","Qi","Yong","Shan","Han","Yu","Mang","Ru","Qiong",,"Kuang","Fu","Kang","Bin","Fang","Xing","Na","Xin","Shen","Bang","Yuan","Cun","Huo","Xie","Bang","Wu","Ju","You","Han","Tai","Qiu","Bi","Pei","Bing","Shao","Bei","Wa","Di","Zou","Ye","Lin","Kuang","Gui","Zhu","Shi","Ku","Yu","Gai","Ge","Xi","Zhi","Ji","Xun","Hou","Xing","Jiao","Xi","Gui","Nuo","Lang","Jia","Kuai","Zheng","Otoko","Yun","Yan","Cheng","Dou","Chi","Lu","Fu","Wu","Fu","Gao","Hao","Lang","Jia","Geng","Jun","Ying","Bo","Xi","Bei","Li","Yun","Bu","Xiao","Qi","Pi","Qing","Guo","Zhou","Tan","Zou","Ping","Lai","Ni","Chen","You","Bu","Xiang","Dan","Ju","Yong","Qiao","Yi","Du","Yan","Mei"],["Ruo","Bei","E","Yu","Juan","Yu","Yun","Hou","Kui","Xiang","Xiang","Sou","Tang","Ming","Xi","Ru","Chu","Zi","Zou","Ju","Wu","Xiang","Yun","Hao","Yong","Bi","Mo","Chao","Fu","Liao","Yin","Zhuan","Hu","Qiao","Yan","Zhang","Fan","Qiao","Xu","Deng","Bi","Xin","Bi","Ceng","Wei","Zheng","Mao","Shan","Lin","Po","Dan","Meng","Ye","Cao","Kuai","Feng","Meng","Zou","Kuang","Lian","Zan","Chan","You","Qi","Yan","Chan","Zan","Ling","Huan","Xi","Feng","Zan","Li","You","Ding","Qiu","Zhuo","Pei","Zhou","Yi","Hang","Yu","Jiu","Yan","Zui","Mao","Dan","Xu","Tou","Zhen","Fen","Sakenomoto",,"Yun","Tai","Tian","Qia","Tuo","Zuo","Han","Gu","Su","Po","Chou","Zai","Ming","Luo","Chuo","Chou","You","Tong","Zhi","Xian","Jiang","Cheng","Yin","Tu","Xiao","Mei","Ku","Suan","Lei","Pu","Zui","Hai","Yan","Xi","Niang","Wei","Lu","Lan","Yan","Tao","Pei","Zhan","Chun","Tan","Zui","Chuo","Cu","Kun","Ti","Mian","Du","Hu","Xu","Xing","Tan","Jiu","Chun","Yun","Po","Ke","Sou","Mi","Quan","Chou","Cuo","Yun","Yong","Ang","Zha","Hai","Tang","Jiang","Piao","Shan","Yu","Li","Zao","Lao","Yi","Jiang","Pu","Jiao","Xi","Tan","Po","Nong","Yi","Li","Ju","Jiao","Yi","Niang","Ru","Xun","Chou","Yan","Ling","Mi","Mi","Niang","Xin","Jiao","Xi","Mi","Yan","Bian","Cai","Shi","You","Shi","Shi","Li","Chong","Ye","Liang","Li","Jin","Jin","Qiu","Yi","Diao","Dao","Zhao","Ding","Po","Qiu","He","Fu","Zhen","Zhi","Ba","Luan","Fu","Nai","Diao","Shan","Qiao","Kou","Chuan","Zi","Fan","Yu","Hua","Han","Gong","Qi","Mang","Ri","Di","Si","Xi","Yi","Chai","Shi","Tu","Xi","Nu","Qian","Ishiyumi","Jian","Pi","Ye","Yin"],["Ba","Fang","Chen","Xing","Tou","Yue","Yan","Fu","Pi","Na","Xin","E","Jue","Dun","Gou","Yin","Qian","Ban","Ji","Ren","Chao","Niu","Fen","Yun","Ji","Qin","Pi","Guo","Hong","Yin","Jun","Shi","Yi","Zhong","Nie","Gai","Ri","Huo","Tai","Kang","Habaki","Irori","Ngaak",,"Duo","Zi","Ni","Tu","Shi","Min","Gu","E","Ling","Bing","Yi","Gu","Ba","Pi","Yu","Si","Zuo","Bu","You","Dian","Jia","Zhen","Shi","Shi","Tie","Ju","Zhan","Shi","She","Xuan","Zhao","Bao","He","Bi","Sheng","Chu","Shi","Bo","Zhu","Chi","Za","Po","Tong","Qian","Fu","Zhai","Liu","Qian","Fu","Li","Yue","Pi","Yang","Ban","Bo","Jie","Gou","Shu","Zheng","Mu","Ni","Nie","Di","Jia","Mu","Dan","Shen","Yi","Si","Kuang","Ka","Bei","Jian","Tong","Xing","Hong","Jiao","Chi","Er","Ge","Bing","Shi","Mou","Jia","Yin","Jun","Zhou","Chong","Shang","Tong","Mo","Lei","Ji","Yu","Xu","Ren","Zun","Zhi","Qiong","Shan","Chi","Xian","Xing","Quan","Pi","Tie","Zhu","Hou","Ming","Kua","Yao","Xian","Xian","Xiu","Jun","Cha","Lao","Ji","Pi","Ru","Mi","Yi","Yin","Guang","An","Diou","You","Se","Kao","Qian","Luan","Kasugai","Ai","Diao","Han","Rui","Shi","Keng","Qiu","Xiao","Zhe","Xiu","Zang","Ti","Cuo","Gua","Gong","Zhong","Dou","Lu","Mei","Lang","Wan","Xin","Yun","Bei","Wu","Su","Yu","Chan","Ting","Bo","Han","Jia","Hong","Cuan","Feng","Chan","Wan","Zhi","Si","Xuan","Wu","Wu","Tiao","Gong","Zhuo","Lue","Xing","Qian","Shen","Han","Lue","Xie","Chu","Zheng","Ju","Xian","Tie","Mang","Pu","Li","Pan","Rui","Cheng","Gao","Li","Te","Pyeng","Zhu",,"Tu","Liu","Zui","Ju","Chang","Yuan","Jian","Gang","Diao","Tao","Chang"],["Lun","Kua","Ling","Bei","Lu","Li","Qiang","Pou","Juan","Min","Zui","Peng","An","Pi","Xian","Ya","Zhui","Lei","A","Kong","Ta","Kun","Du","Wei","Chui","Zi","Zheng","Ben","Nie","Cong","Qun","Tan","Ding","Qi","Qian","Zhuo","Qi","Yu","Jin","Guan","Mao","Chang","Tian","Xi","Lian","Tao","Gu","Cuo","Shu","Zhen","Lu","Meng","Lu","Hua","Biao","Ga","Lai","Ken","Kazari","Bu","Nai","Wan","Zan",,"De","Xian",,"Huo","Liang",,"Men","Kai","Ying","Di","Lian","Guo","Xian","Du","Tu","Wei","Cong","Fu","Rou","Ji","E","Rou","Chen","Ti","Zha","Hong","Yang","Duan","Xia","Yu","Keng","Xing","Huang","Wei","Fu","Zhao","Cha","Qie","She","Hong","Kui","Tian","Mou","Qiao","Qiao","Hou","Tou","Cong","Huan","Ye","Min","Jian","Duan","Jian","Song","Kui","Hu","Xuan","Duo","Jie","Zhen","Bian","Zhong","Zi","Xiu","Ye","Mei","Pai","Ai","Jie",,"Mei","Chuo","Ta","Bang","Xia","Lian","Suo","Xi","Liu","Zu","Ye","Nou","Weng","Rong","Tang","Suo","Qiang","Ge","Shuo","Chui","Bo","Pan","Sa","Bi","Sang","Gang","Zi","Wu","Ying","Huang","Tiao","Liu","Kai","Sun","Sha","Sou","Wan","Hao","Zhen","Zhen","Luo","Yi","Yuan","Tang","Nie","Xi","Jia","Ge","Ma","Juan","Kasugai","Habaki","Suo",,,,"Na","Lu","Suo","Ou","Zu","Tuan","Xiu","Guan","Xuan","Lian","Shou","Ao","Man","Mo","Luo","Bi","Wei","Liu","Di","Qiao","Cong","Yi","Lu","Ao","Keng","Qiang","Cui","Qi","Chang","Tang","Man","Yong","Chan","Feng","Jing","Biao","Shu","Lou","Xiu","Cong","Long","Zan","Jian","Cao","Li","Xia","Xi","Kang",,"Beng",,,"Zheng","Lu","Hua","Ji","Pu","Hui","Qiang","Po","Lin","Suo","Xiu","San","Cheng"],["Kui","Si","Liu","Nao","Heng","Pie","Sui","Fan","Qiao","Quan","Yang","Tang","Xiang","Jue","Jiao","Zun","Liao","Jie","Lao","Dui","Tan","Zan","Ji","Jian","Zhong","Deng","Ya","Ying","Dui","Jue","Nou","Ti","Pu","Tie",,,"Ding","Shan","Kai","Jian","Fei","Sui","Lu","Juan","Hui","Yu","Lian","Zhuo","Qiao","Qian","Zhuo","Lei","Bi","Tie","Huan","Ye","Duo","Guo","Dang","Ju","Fen","Da","Bei","Yi","Ai","Zong","Xun","Diao","Zhu","Heng","Zhui","Ji","Nie","Ta","Huo","Qing","Bin","Ying","Kui","Ning","Xu","Jian","Jian","Yari","Cha","Zhi","Mie","Li","Lei","Ji","Zuan","Kuang","Shang","Peng","La","Du","Shuo","Chuo","Lu","Biao","Bao","Lu",,,"Long","E","Lu","Xin","Jian","Lan","Bo","Jian","Yao","Chan","Xiang","Jian","Xi","Guan","Cang","Nie","Lei","Cuan","Qu","Pan","Luo","Zuan","Luan","Zao","Nie","Jue","Tang","Shu","Lan","Jin","Qiu","Yi","Zhen","Ding","Zhao","Po","Diao","Tu","Qian","Chuan","Shan","Ji","Fan","Diao","Men","Nu","Xi","Chai","Xing","Gai","Bu","Tai","Ju","Dun","Chao","Zhong","Na","Bei","Gang","Ban","Qian","Yao","Qin","Jun","Wu","Gou","Kang","Fang","Huo","Tou","Niu","Ba","Yu","Qian","Zheng","Qian","Gu","Bo","E","Po","Bu","Ba","Yue","Zuan","Mu","Dan","Jia","Dian","You","Tie","Bo","Ling","Shuo","Qian","Liu","Bao","Shi","Xuan","She","Bi","Ni","Pi","Duo","Xing","Kao","Lao","Er","Mang","Ya","You","Cheng","Jia","Ye","Nao","Zhi","Dang","Tong","Lu","Diao","Yin","Kai","Zha","Zhu","Xian","Ting","Diu","Xian","Hua","Quan","Sha","Jia","Yao","Ge","Ming","Zheng","Se","Jiao","Yi","Chan","Chong","Tang","An","Yin","Ru","Zhu","Lao","Pu","Wu","Lai","Te","Lian","Keng"],["Xiao","Suo","Li","Zheng","Chu","Guo","Gao","Tie","Xiu","Cuo","Lue","Feng","Xin","Liu","Kai","Jian","Rui","Ti","Lang","Qian","Ju","A","Qiang","Duo","Tian","Cuo","Mao","Ben","Qi","De","Kua","Kun","Chang","Xi","Gu","Luo","Chui","Zhui","Jin","Zhi","Xian","Juan","Huo","Pou","Tan","Ding","Jian","Ju","Meng","Zi","Qie","Ying","Kai","Qiang","Song","E","Cha","Qiao","Zhong","Duan","Sou","Huang","Huan","Ai","Du","Mei","Lou","Zi","Fei","Mei","Mo","Zhen","Bo","Ge","Nie","Tang","Juan","Nie","Na","Liu","Hao","Bang","Yi","Jia","Bin","Rong","Biao","Tang","Man","Luo","Beng","Yong","Jing","Di","Zu","Xuan","Liu","Tan","Jue","Liao","Pu","Lu","Dui","Lan","Pu","Cuan","Qiang","Deng","Huo","Lei","Huan","Zhuo","Lian","Yi","Cha","Biao","La","Chan","Xiang","Chang","Chang","Jiu","Ao","Die","Qu","Liao","Mi","Chang","Men","Ma","Shuan","Shan","Huo","Men","Yan","Bi","Han","Bi","San","Kai","Kang","Beng","Hong","Run","San","Xian","Xian","Jian","Min","Xia","Yuru","Dou","Zha","Nao","Jian","Peng","Xia","Ling","Bian","Bi","Run","He","Guan","Ge","Ge","Fa","Chu","Hong","Gui","Min","Se","Kun","Lang","Lu","Ting","Sha","Ju","Yue","Yue","Chan","Qu","Lin","Chang","Shai","Kun","Yan","Min","Yan","E","Hun","Yu","Wen","Xiang","Bao","Xiang","Qu","Yao","Wen","Ban","An","Wei","Yin","Kuo","Que","Lan","Du",,"Phwung","Tian","Nie","Ta","Kai","He","Que","Chuang","Guan","Dou","Qi","Kui","Tang","Guan","Piao","Kan","Xi","Hui","Chan","Pi","Dang","Huan","Ta","Wen",,"Men","Shuan","Shan","Yan","Han","Bi","Wen","Chuang","Run","Wei","Xian","Hong","Jian","Min","Kang","Men","Zha","Nao","Gui","Wen","Ta","Min","Lu","Kai"],["Fa","Ge","He","Kun","Jiu","Yue","Lang","Du","Yu","Yan","Chang","Xi","Wen","Hun","Yan","E","Chan","Lan","Qu","Hui","Kuo","Que","Ge","Tian","Ta","Que","Kan","Huan","Fu","Fu","Le","Dui","Xin","Qian","Wu","Yi","Tuo","Yin","Yang","Dou","E","Sheng","Ban","Pei","Keng","Yun","Ruan","Zhi","Pi","Jing","Fang","Yang","Yin","Zhen","Jie","Cheng","E","Qu","Di","Zu","Zuo","Dian","Ling","A","Tuo","Tuo","Po","Bing","Fu","Ji","Lu","Long","Chen","Xing","Duo","Lou","Mo","Jiang","Shu","Duo","Xian","Er","Gui","Yu","Gai","Shan","Xun","Qiao","Xing","Chun","Fu","Bi","Xia","Shan","Sheng","Zhi","Pu","Dou","Yuan","Zhen","Chu","Xian","Tou","Nie","Yun","Xian","Pei","Pei","Zou","Yi","Dui","Lun","Yin","Ju","Chui","Chen","Pi","Ling","Tao","Xian","Lu","Sheng","Xian","Yin","Zhu","Yang","Reng","Shan","Chong","Yan","Yin","Yu","Ti","Yu","Long","Wei","Wei","Nie","Dui","Sui","An","Huang","Jie","Sui","Yin","Gai","Yan","Hui","Ge","Yun","Wu","Wei","Ai","Xi","Tang","Ji","Zhang","Dao","Ao","Xi","Yin",,"Rao","Lin","Tui","Deng","Pi","Sui","Sui","Yu","Xian","Fen","Ni","Er","Ji","Dao","Xi","Yin","E","Hui","Long","Xi","Li","Li","Li","Zhui","He","Zhi","Zhun","Jun","Nan","Yi","Que","Yan","Qian","Ya","Xiong","Ya","Ji","Gu","Huan","Zhi","Gou","Jun","Ci","Yong","Ju","Chu","Hu","Za","Luo","Yu","Chou","Diao","Sui","Han","Huo","Shuang","Guan","Chu","Za","Yong","Ji","Xi","Chou","Liu","Li","Nan","Xue","Za","Ji","Ji","Yu","Yu","Xue","Na","Fou","Se","Mu","Wen","Fen","Pang","Yun","Li","Li","Ang","Ling","Lei","An","Bao","Meng","Dian","Dang","Xing","Wu","Zhao"],["Xu","Ji","Mu","Chen","Xiao","Zha","Ting","Zhen","Pei","Mei","Ling","Qi","Chou","Huo","Sha","Fei","Weng","Zhan","Yin","Ni","Chou","Tun","Lin",,"Dong","Ying","Wu","Ling","Shuang","Ling","Xia","Hong","Yin","Mo","Mai","Yun","Liu","Meng","Bin","Wu","Wei","Huo","Yin","Xi","Yi","Ai","Dan","Deng","Xian","Yu","Lu","Long","Dai","Ji","Pang","Yang","Ba","Pi","Wei",,"Xi","Ji","Mai","Meng","Meng","Lei","Li","Huo","Ai","Fei","Dai","Long","Ling","Ai","Feng","Li","Bao",,"He","He","Bing","Qing","Qing","Jing","Tian","Zhen","Jing","Cheng","Qing","Jing","Jing","Dian","Jing","Tian","Fei","Fei","Kao","Mi","Mian","Mian","Pao","Ye","Tian","Hui","Ye","Ge","Ding","Cha","Jian","Ren","Di","Du","Wu","Ren","Qin","Jin","Xue","Niu","Ba","Yin","Sa","Na","Mo","Zu","Da","Ban","Yi","Yao","Tao","Tuo","Jia","Hong","Pao","Yang","Tomo","Yin","Jia","Tao","Ji","Xie","An","An","Hen","Gong","Kohaze","Da","Qiao","Ting","Wan","Ying","Sui","Tiao","Qiao","Xuan","Kong","Beng","Ta","Zhang","Bing","Kuo","Ju","La","Xie","Rou","Bang","Yi","Qiu","Qiu","He","Xiao","Mu","Ju","Jian","Bian","Di","Jian","On","Tao","Gou","Ta","Bei","Xie","Pan","Ge","Bi","Kuo","Tang","Lou","Gui","Qiao","Xue","Ji","Jian","Jiang","Chan","Da","Huo","Xian","Qian","Du","Wa","Jian","Lan","Wei","Ren","Fu","Mei","Juan","Ge","Wei","Qiao","Han","Chang",,"Rou","Xun","She","Wei","Ge","Bei","Tao","Gou","Yun",,"Bi","Wei","Hui","Du","Wa","Du","Wei","Ren","Fu","Han","Wei","Yun","Tao","Jiu","Jiu","Xian","Xie","Xian","Ji","Yin","Za","Yun","Shao","Le","Peng","Heng","Ying","Yun","Peng","Yin","Yin","Xiang"],["Hu","Ye","Ding","Qing","Pan","Xiang","Shun","Han","Xu","Yi","Xu","Gu","Song","Kui","Qi","Hang","Yu","Wan","Ban","Dun","Di","Dan","Pan","Po","Ling","Ce","Jing","Lei","He","Qiao","E","E","Wei","Jie","Gua","Shen","Yi","Shen","Hai","Dui","Pian","Ping","Lei","Fu","Jia","Tou","Hui","Kui","Jia","Le","Tian","Cheng","Ying","Jun","Hu","Han","Jing","Tui","Tui","Pin","Lai","Tui","Zi","Zi","Chui","Ding","Lai","Yan","Han","Jian","Ke","Cui","Jiong","Qin","Yi","Sai","Ti","E","E","Yan","Hun","Kan","Yong","Zhuan","Yan","Xian","Xin","Yi","Yuan","Sang","Dian","Dian","Jiang","Ku","Lei","Liao","Piao","Yi","Man","Qi","Rao","Hao","Qiao","Gu","Xun","Qian","Hui","Zhan","Ru","Hong","Bin","Xian","Pin","Lu","Lan","Nie","Quan","Ye","Ding","Qing","Han","Xiang","Shun","Xu","Xu","Wan","Gu","Dun","Qi","Ban","Song","Hang","Yu","Lu","Ling","Po","Jing","Jie","Jia","Tian","Han","Ying","Jiong","Hai","Yi","Pin","Hui","Tui","Han","Ying","Ying","Ke","Ti","Yong","E","Zhuan","Yan","E","Nie","Man","Dian","Sang","Hao","Lei","Zhan","Ru","Pin","Quan","Feng","Biao","Oroshi","Fu","Xia","Zhan","Biao","Sa","Ba","Tai","Lie","Gua","Xuan","Shao","Ju","Bi","Si","Wei","Yang","Yao","Sou","Kai","Sao","Fan","Liu","Xi","Liao","Piao","Piao","Liu","Biao","Biao","Biao","Liao",,"Se","Feng","Biao","Feng","Yang","Zhan","Biao","Sa","Ju","Si","Sou","Yao","Liu","Piao","Biao","Biao","Fei","Fan","Fei","Fei","Shi","Shi","Can","Ji","Ding","Si","Tuo","Zhan","Sun","Xiang","Tun","Ren","Yu","Juan","Chi","Yin","Fan","Fan","Sun","Yin","Zhu","Yi","Zhai","Bi","Jie","Tao","Liu","Ci","Tie","Si","Bao","Shi","Duo"],["Hai","Ren","Tian","Jiao","Jia","Bing","Yao","Tong","Ci","Xiang","Yang","Yang","Er","Yan","Le","Yi","Can","Bo","Nei","E","Bu","Jun","Dou","Su","Yu","Shi","Yao","Hun","Guo","Shi","Jian","Zhui","Bing","Xian","Bu","Ye","Tan","Fei","Zhang","Wei","Guan","E","Nuan","Hun","Hu","Huang","Tie","Hui","Jian","Hou","He","Xing","Fen","Wei","Gu","Cha","Song","Tang","Bo","Gao","Xi","Kui","Liu","Sou","Tao","Ye","Yun","Mo","Tang","Man","Bi","Yu","Xiu","Jin","San","Kui","Zhuan","Shan","Chi","Dan","Yi","Ji","Rao","Cheng","Yong","Tao","Hui","Xiang","Zhan","Fen","Hai","Meng","Yan","Mo","Chan","Xiang","Luo","Zuan","Nang","Shi","Ding","Ji","Tuo","Xing","Tun","Xi","Ren","Yu","Chi","Fan","Yin","Jian","Shi","Bao","Si","Duo","Yi","Er","Rao","Xiang","Jia","Le","Jiao","Yi","Bing","Bo","Dou","E","Yu","Nei","Jun","Guo","Hun","Xian","Guan","Cha","Kui","Gu","Sou","Chan","Ye","Mo","Bo","Liu","Xiu","Jin","Man","San","Zhuan","Nang","Shou","Kui","Guo","Xiang","Fen","Ba","Ni","Bi","Bo","Tu","Han","Fei","Jian","An","Ai","Fu","Xian","Wen","Xin","Fen","Bin","Xing","Ma","Yu","Feng","Han","Di","Tuo","Tuo","Chi","Xun","Zhu","Zhi","Pei","Xin","Ri","Sa","Yin","Wen","Zhi","Dan","Lu","You","Bo","Bao","Kuai","Tuo","Yi","Qu",,"Qu","Jiong","Bo","Zhao","Yuan","Peng","Zhou","Ju","Zhu","Nu","Ju","Pi","Zang","Jia","Ling","Zhen","Tai","Fu","Yang","Shi","Bi","Tuo","Tuo","Si","Liu","Ma","Pian","Tao","Zhi","Rong","Teng","Dong","Xun","Quan","Shen","Jiong","Er","Hai","Bo","Zhu","Yin","Luo","Shuu","Dan","Xie","Liu","Ju","Song","Qin","Mang","Liang","Han","Tu","Xuan","Tui","Jun"],["E","Cheng","Xin","Ai","Lu","Zhui","Zhou","She","Pian","Kun","Tao","Lai","Zong","Ke","Qi","Qi","Yan","Fei","Sao","Yan","Jie","Yao","Wu","Pian","Cong","Pian","Qian","Fei","Huang","Jian","Huo","Yu","Ti","Quan","Xia","Zong","Kui","Rou","Si","Gua","Tuo","Kui","Sou","Qian","Cheng","Zhi","Liu","Pang","Teng","Xi","Cao","Du","Yan","Yuan","Zou","Sao","Shan","Li","Zhi","Shuang","Lu","Xi","Luo","Zhang","Mo","Ao","Can","Piao","Cong","Qu","Bi","Zhi","Yu","Xu","Hua","Bo","Su","Xiao","Lin","Chan","Dun","Liu","Tuo","Zeng","Tan","Jiao","Tie","Yan","Luo","Zhan","Jing","Yi","Ye","Tuo","Bin","Zou","Yan","Peng","Lu","Teng","Xiang","Ji","Shuang","Ju","Xi","Huan","Li","Biao","Ma","Yu","Tuo","Xun","Chi","Qu","Ri","Bo","Lu","Zang","Shi","Si","Fu","Ju","Zou","Zhu","Tuo","Nu","Jia","Yi","Tai","Xiao","Ma","Yin","Jiao","Hua","Luo","Hai","Pian","Biao","Li","Cheng","Yan","Xin","Qin","Jun","Qi","Qi","Ke","Zhui","Zong","Su","Can","Pian","Zhi","Kui","Sao","Wu","Ao","Liu","Qian","Shan","Piao","Luo","Cong","Chan","Zou","Ji","Shuang","Xiang","Gu","Wei","Wei","Wei","Yu","Gan","Yi","Ang","Tou","Xie","Bao","Bi","Chi","Ti","Di","Ku","Hai","Qiao","Gou","Kua","Ge","Tui","Geng","Pian","Bi","Ke","Ka","Yu","Sui","Lou","Bo","Xiao","Pang","Bo","Ci","Kuan","Bin","Mo","Liao","Lou","Nao","Du","Zang","Sui","Ti","Bin","Kuan","Lu","Gao","Gao","Qiao","Kao","Qiao","Lao","Zao","Biao","Kun","Kun","Ti","Fang","Xiu","Ran","Mao","Dan","Kun","Bin","Fa","Tiao","Peng","Zi","Fa","Ran","Ti","Pao","Pi","Mao","Fu","Er","Rong","Qu","Gong","Xiu","Gua","Ji","Peng","Zhua","Shao","Sha"],["Ti","Li","Bin","Zong","Ti","Peng","Song","Zheng","Quan","Zong","Shun","Jian","Duo","Hu","La","Jiu","Qi","Lian","Zhen","Bin","Peng","Mo","San","Man","Man","Seng","Xu","Lie","Qian","Qian","Nong","Huan","Kuai","Ning","Bin","Lie","Rang","Dou","Dou","Nao","Hong","Xi","Dou","Han","Dou","Dou","Jiu","Chang","Yu","Yu","Li","Juan","Fu","Qian","Gui","Zong","Liu","Gui","Shang","Yu","Gui","Mei","Ji","Qi","Jie","Kui","Hun","Ba","Po","Mei","Xu","Yan","Xiao","Liang","Yu","Tui","Qi","Wang","Liang","Wei","Jian","Chi","Piao","Bi","Mo","Ji","Xu","Chou","Yan","Zhan","Yu","Dao","Ren","Ji","Eri","Gong","Tuo","Diao","Ji","Xu","E","E","Sha","Hang","Tun","Mo","Jie","Shen","Fan","Yuan","Bi","Lu","Wen","Hu","Lu","Za","Fang","Fen","Na","You","Namazu","Todo","He","Xia","Qu","Han","Pi","Ling","Tuo","Bo","Qiu","Ping","Fu","Bi","Ji","Wei","Ju","Diao","Bo","You","Gun","Pi","Nian","Xing","Tai","Bao","Fu","Zha","Ju","Gu","Kajika","Tong",,"Ta","Jie","Shu","Hou","Xiang","Er","An","Wei","Tiao","Zhu","Yin","Lie","Luo","Tong","Yi","Qi","Bing","Wei","Jiao","Bu","Gui","Xian","Ge","Hui","Bora","Mate","Kao","Gori","Duo","Jun","Ti","Man","Xiao","Za","Sha","Qin","Yu","Nei","Zhe","Gun","Geng","Su","Wu","Qiu","Ting","Fu","Wan","You","Li","Sha","Sha","Gao","Meng","Ugui","Asari","Subashiri","Kazunoko","Yong","Ni","Zi","Qi","Qing","Xiang","Nei","Chun","Ji","Diao","Qie","Gu","Zhou","Dong","Lai","Fei","Ni","Yi","Kun","Lu","Jiu","Chang","Jing","Lun","Ling","Zou","Li","Meng","Zong","Zhi","Nian","Shachi","Dojou","Sukesou","Shi","Shen","Hun","Shi","Hou","Xing","Zhu","La","Zong","Ji","Bian","Bian"],["Huan","Quan","Ze","Wei","Wei","Yu","Qun","Rou","Die","Huang","Lian","Yan","Qiu","Qiu","Jian","Bi","E","Yang","Fu","Sai","Jian","Xia","Tuo","Hu","Muroaji","Ruo","Haraka","Wen","Jian","Hao","Wu","Fang","Sao","Liu","Ma","Shi","Shi","Yin","Z","Teng","Ta","Yao","Ge","Rong","Qian","Qi","Wen","Ruo","Hatahata","Lian","Ao","Le","Hui","Min","Ji","Tiao","Qu","Jian","Sao","Man","Xi","Qiu","Biao","Ji","Ji","Zhu","Jiang","Qiu","Zhuan","Yong","Zhang","Kang","Xue","Bie","Jue","Qu","Xiang","Bo","Jiao","Xun","Su","Huang","Zun","Shan","Shan","Fan","Jue","Lin","Xun","Miao","Xi","Eso","Kyou","Fen","Guan","Hou","Kuai","Zei","Sao","Zhan","Gan","Gui","Sheng","Li","Chang","Hatahata","Shiira","Mutsu","Ru","Ji","Xu","Huo","Shiira","Li","Lie","Li","Mie","Zhen","Xiang","E","Lu","Guan","Li","Xian","Yu","Dao","Ji","You","Tun","Lu","Fang","Ba","He","Bo","Ping","Nian","Lu","You","Zha","Fu","Bo","Bao","Hou","Pi","Tai","Gui","Jie","Kao","Wei","Er","Tong","Ze","Hou","Kuai","Ji","Jiao","Xian","Za","Xiang","Xun","Geng","Li","Lian","Jian","Li","Shi","Tiao","Gun","Sha","Wan","Jun","Ji","Yong","Qing","Ling","Qi","Zou","Fei","Kun","Chang","Gu","Ni","Nian","Diao","Jing","Shen","Shi","Zi","Fen","Die","Bi","Chang","Shi","Wen","Wei","Sai","E","Qiu","Fu","Huang","Quan","Jiang","Bian","Sao","Ao","Qi","Ta","Yin","Yao","Fang","Jian","Le","Biao","Xue","Bie","Man","Min","Yong","Wei","Xi","Jue","Shan","Lin","Zun","Huo","Gan","Li","Zhan","Guan","Niao","Yi","Fu","Li","Jiu","Bu","Yan","Fu","Diao","Ji","Feng","Nio","Gan","Shi","Feng","Ming","Bao","Yuan","Zhi","Hu","Qin","Fu","Fen","Wen","Jian","Shi","Yu"],["Fou","Yiao","Jue","Jue","Pi","Huan","Zhen","Bao","Yan","Ya","Zheng","Fang","Feng","Wen","Ou","Te","Jia","Nu","Ling","Mie","Fu","Tuo","Wen","Li","Bian","Zhi","Ge","Yuan","Zi","Qu","Xiao","Zhi","Dan","Ju","You","Gu","Zhong","Yu","Yang","Rong","Ya","Tie","Yu","Shigi","Ying","Zhui","Wu","Er","Gua","Ai","Zhi","Yan","Heng","Jiao","Ji","Lie","Zhu","Ren","Yi","Hong","Luo","Ru","Mou","Ge","Ren","Jiao","Xiu","Zhou","Zhi","Luo","Chidori","Toki","Ten","Luan","Jia","Ji","Yu","Huan","Tuo","Bu","Wu","Juan","Yu","Bo","Xun","Xun","Bi","Xi","Jun","Ju","Tu","Jing","Ti","E","E","Kuang","Hu","Wu","Shen","Lai","Ikaruga","Kakesu","Lu","Ping","Shu","Fu","An","Zhao","Peng","Qin","Qian","Bei","Diao","Lu","Que","Jian","Ju","Tu","Ya","Yuan","Qi","Li","Ye","Zhui","Kong","Zhui","Kun","Sheng","Qi","Jing","Yi","Yi","Jing","Zi","Lai","Dong","Qi","Chun","Geng","Ju","Qu","Isuka","Kikuitadaki","Ji","Shu",,"Chi","Miao","Rou","An","Qiu","Ti","Hu","Ti","E","Jie","Mao","Fu","Chun","Tu","Yan","He","Yuan","Pian","Yun","Mei","Hu","Ying","Dun","Mu","Ju","Tsugumi","Cang","Fang","Gu","Ying","Yuan","Xuan","Weng","Shi","He","Chu","Tang","Xia","Ruo","Liu","Ji","Gu","Jian","Zhun","Han","Zi","Zi","Ni","Yao","Yan","Ji","Li","Tian","Kou","Ti","Ti","Ni","Tu","Ma","Jiao","Gao","Tian","Chen","Li","Zhuan","Zhe","Ao","Yao","Yi","Ou","Chi","Zhi","Liao","Rong","Lou","Bi","Shuang","Zhuo","Yu","Wu","Jue","Yin","Quan","Si","Jiao","Yi","Hua","Bi","Ying","Su","Huang","Fan","Jiao","Liao","Yan","Kao","Jiu","Xian","Xian","Tu","Mai","Zun","Yu","Ying","Lu","Tuan","Xian","Xue","Yi","Pi"],["Shu","Luo","Qi","Yi","Ji","Zhe","Yu","Zhan","Ye","Yang","Pi","Ning","Huo","Mi","Ying","Meng","Di","Yue","Yu","Lei","Bao","Lu","He","Long","Shuang","Yue","Ying","Guan","Qu","Li","Luan","Niao","Jiu","Ji","Yuan","Ming","Shi","Ou","Ya","Cang","Bao","Zhen","Gu","Dong","Lu","Ya","Xiao","Yang","Ling","Zhi","Qu","Yuan","Xue","Tuo","Si","Zhi","Er","Gua","Xiu","Heng","Zhou","Ge","Luan","Hong","Wu","Bo","Li","Juan","Hu","E","Yu","Xian","Ti","Wu","Que","Miao","An","Kun","Bei","Peng","Qian","Chun","Geng","Yuan","Su","Hu","He","E","Gu","Qiu","Zi","Mei","Mu","Ni","Yao","Weng","Liu","Ji","Ni","Jian","He","Yi","Ying","Zhe","Liao","Liao","Jiao","Jiu","Yu","Lu","Xuan","Zhan","Ying","Huo","Meng","Guan","Shuang","Lu","Jin","Ling","Jian","Xian","Cuo","Jian","Jian","Yan","Cuo","Lu","You","Cu","Ji","Biao","Cu","Biao","Zhu","Jun","Zhu","Jian","Mi","Mi","Wu","Liu","Chen","Jun","Lin","Ni","Qi","Lu","Jiu","Jun","Jing","Li","Xiang","Yan","Jia","Mi","Li","She","Zhang","Lin","Jing","Ji","Ling","Yan","Cu","Mai","Mai","Ge","Chao","Fu","Mian","Mian","Fu","Pao","Qu","Qu","Mou","Fu","Xian","Lai","Qu","Mian",,"Feng","Fu","Qu","Mian","Ma","Mo","Mo","Hui","Ma","Zou","Nen","Fen","Huang","Huang","Jin","Guang","Tian","Tou","Heng","Xi","Kuang","Heng","Shu","Li","Nian","Chi","Hei","Hei","Yi","Qian","Dan","Xi","Tuan","Mo","Mo","Qian","Dai","Chu","You","Dian","Yi","Xia","Yan","Qu","Mei","Yan","Jing","Yu","Li","Dang","Du","Can","Yin","An","Yan","Tan","An","Zhen","Dai","Can","Yi","Mei","Dan","Yan","Du","Lu","Zhi","Fen","Fu","Fu","Min","Min","Yuan"],["Cu","Qu","Chao","Wa","Zhu","Zhi","Mang","Ao","Bie","Tuo","Bi","Yuan","Chao","Tuo","Ding","Mi","Nai","Ding","Zi","Gu","Gu","Dong","Fen","Tao","Yuan","Pi","Chang","Gao","Qi","Yuan","Tang","Teng","Shu","Shu","Fen","Fei","Wen","Ba","Diao","Tuo","Tong","Qu","Sheng","Shi","You","Shi","Ting","Wu","Nian","Jing","Hun","Ju","Yan","Tu","Ti","Xi","Xian","Yan","Lei","Bi","Yao","Qiu","Han","Wu","Wu","Hou","Xi","Ge","Zha","Xiu","Weng","Zha","Nong","Nang","Qi","Zhai","Ji","Zi","Ji","Ji","Qi","Ji","Chi","Chen","Chen","He","Ya","Ken","Xie","Pao","Cuo","Shi","Zi","Chi","Nian","Ju","Tiao","Ling","Ling","Chu","Quan","Xie","Ken","Nie","Jiu","Yao","Chuo","Kun","Yu","Chu","Yi","Ni","Cuo","Zou","Qu","Nen","Xian","Ou","E","Wo","Yi","Chuo","Zou","Dian","Chu","Jin","Ya","Chi","Chen","He","Ken","Ju","Ling","Pao","Tiao","Zi","Ken","Yu","Chuo","Qu","Wo","Long","Pang","Gong","Pang","Yan","Long","Long","Gong","Kan","Ta","Ling","Ta","Long","Gong","Kan","Gui","Qiu","Bie","Gui","Yue","Chui","He","Jue","Xie","Yu"],["it","ix","i","ip","iet","iex","ie","iep","at","ax","a","ap","uox","uo","uop","ot","ox","o","op","ex","e","wu","bit","bix","bi","bip","biet","biex","bie","biep","bat","bax","ba","bap","buox","buo","buop","bot","box","bo","bop","bex","be","bep","but","bux","bu","bup","burx","bur","byt","byx","by","byp","byrx","byr","pit","pix","pi","pip","piex","pie","piep","pat","pax","pa","pap","puox","puo","puop","pot","pox","po","pop","put","pux","pu","pup","purx","pur","pyt","pyx","py","pyp","pyrx","pyr","bbit","bbix","bbi","bbip","bbiet","bbiex","bbie","bbiep","bbat","bbax","bba","bbap","bbuox","bbuo","bbuop","bbot","bbox","bbo","bbop","bbex","bbe","bbep","bbut","bbux","bbu","bbup","bburx","bbur","bbyt","bbyx","bby","bbyp","nbit","nbix","nbi","nbip","nbiex","nbie","nbiep","nbat","nbax","nba","nbap","nbot","nbox","nbo","nbop","nbut","nbux","nbu","nbup","nburx","nbur","nbyt","nbyx","nby","nbyp","nbyrx","nbyr","hmit","hmix","hmi","hmip","hmiex","hmie","hmiep","hmat","hmax","hma","hmap","hmuox","hmuo","hmuop","hmot","hmox","hmo","hmop","hmut","hmux","hmu","hmup","hmurx","hmur","hmyx","hmy","hmyp","hmyrx","hmyr","mit","mix","mi","mip","miex","mie","miep","mat","max","ma","map","muot","muox","muo","muop","mot","mox","mo","mop","mex","me","mut","mux","mu","mup","murx","mur","myt","myx","my","myp","fit","fix","fi","fip","fat","fax","fa","fap","fox","fo","fop","fut","fux","fu","fup","furx","fur","fyt","fyx","fy","fyp","vit","vix","vi","vip","viet","viex","vie","viep","vat","vax","va","vap","vot","vox","vo","vop","vex","vep","vut","vux","vu","vup","vurx","vur","vyt","vyx","vy","vyp","vyrx","vyr"],["dit","dix","di","dip","diex","die","diep","dat","dax","da","dap","duox","duo","dot","dox","do","dop","dex","de","dep","dut","dux","du","dup","durx","dur","tit","tix","ti","tip","tiex","tie","tiep","tat","tax","ta","tap","tuot","tuox","tuo","tuop","tot","tox","to","top","tex","te","tep","tut","tux","tu","tup","turx","tur","ddit","ddix","ddi","ddip","ddiex","ddie","ddiep","ddat","ddax","dda","ddap","dduox","dduo","dduop","ddot","ddox","ddo","ddop","ddex","dde","ddep","ddut","ddux","ddu","ddup","ddurx","ddur","ndit","ndix","ndi","ndip","ndiex","ndie","ndat","ndax","nda","ndap","ndot","ndox","ndo","ndop","ndex","nde","ndep","ndut","ndux","ndu","ndup","ndurx","ndur","hnit","hnix","hni","hnip","hniet","hniex","hnie","hniep","hnat","hnax","hna","hnap","hnuox","hnuo","hnot","hnox","hnop","hnex","hne","hnep","hnut","nit","nix","ni","nip","niex","nie","niep","nax","na","nap","nuox","nuo","nuop","not","nox","no","nop","nex","ne","nep","nut","nux","nu","nup","nurx","nur","hlit","hlix","hli","hlip","hliex","hlie","hliep","hlat","hlax","hla","hlap","hluox","hluo","hluop","hlox","hlo","hlop","hlex","hle","hlep","hlut","hlux","hlu","hlup","hlurx","hlur","hlyt","hlyx","hly","hlyp","hlyrx","hlyr","lit","lix","li","lip","liet","liex","lie","liep","lat","lax","la","lap","luot","luox","luo","luop","lot","lox","lo","lop","lex","le","lep","lut","lux","lu","lup","lurx","lur","lyt","lyx","ly","lyp","lyrx","lyr","git","gix","gi","gip","giet","giex","gie","giep","gat","gax","ga","gap","guot","guox","guo","guop","got","gox","go","gop","get","gex","ge","gep","gut","gux","gu","gup","gurx","gur","kit","kix","ki","kip","kiex","kie","kiep","kat"],["kax","ka","kap","kuox","kuo","kuop","kot","kox","ko","kop","ket","kex","ke","kep","kut","kux","ku","kup","kurx","kur","ggit","ggix","ggi","ggiex","ggie","ggiep","ggat","ggax","gga","ggap","gguot","gguox","gguo","gguop","ggot","ggox","ggo","ggop","gget","ggex","gge","ggep","ggut","ggux","ggu","ggup","ggurx","ggur","mgiex","mgie","mgat","mgax","mga","mgap","mguox","mguo","mguop","mgot","mgox","mgo","mgop","mgex","mge","mgep","mgut","mgux","mgu","mgup","mgurx","mgur","hxit","hxix","hxi","hxip","hxiet","hxiex","hxie","hxiep","hxat","hxax","hxa","hxap","hxuot","hxuox","hxuo","hxuop","hxot","hxox","hxo","hxop","hxex","hxe","hxep","ngiex","ngie","ngiep","ngat","ngax","nga","ngap","nguot","nguox","nguo","ngot","ngox","ngo","ngop","ngex","nge","ngep","hit","hiex","hie","hat","hax","ha","hap","huot","huox","huo","huop","hot","hox","ho","hop","hex","he","hep","wat","wax","wa","wap","wuox","wuo","wuop","wox","wo","wop","wex","we","wep","zit","zix","zi","zip","ziex","zie","ziep","zat","zax","za","zap","zuox","zuo","zuop","zot","zox","zo","zop","zex","ze","zep","zut","zux","zu","zup","zurx","zur","zyt","zyx","zy","zyp","zyrx","zyr","cit","cix","ci","cip","ciet","ciex","cie","ciep","cat","cax","ca","cap","cuox","cuo","cuop","cot","cox","co","cop","cex","ce","cep","cut","cux","cu","cup","curx","cur","cyt","cyx","cy","cyp","cyrx","cyr","zzit","zzix","zzi","zzip","zziet","zziex","zzie","zziep","zzat","zzax","zza","zzap","zzox","zzo","zzop","zzex","zze","zzep","zzux","zzu","zzup","zzurx","zzur","zzyt","zzyx","zzy","zzyp","zzyrx","zzyr","nzit","nzix","nzi","nzip","nziex","nzie","nziep","nzat","nzax","nza","nzap","nzuox","nzuo","nzox","nzop","nzex","nze","nzux","nzu"],["nzup","nzurx","nzur","nzyt","nzyx","nzy","nzyp","nzyrx","nzyr","sit","six","si","sip","siex","sie","siep","sat","sax","sa","sap","suox","suo","suop","sot","sox","so","sop","sex","se","sep","sut","sux","su","sup","surx","sur","syt","syx","sy","syp","syrx","syr","ssit","ssix","ssi","ssip","ssiex","ssie","ssiep","ssat","ssax","ssa","ssap","ssot","ssox","sso","ssop","ssex","sse","ssep","ssut","ssux","ssu","ssup","ssyt","ssyx","ssy","ssyp","ssyrx","ssyr","zhat","zhax","zha","zhap","zhuox","zhuo","zhuop","zhot","zhox","zho","zhop","zhet","zhex","zhe","zhep","zhut","zhux","zhu","zhup","zhurx","zhur","zhyt","zhyx","zhy","zhyp","zhyrx","zhyr","chat","chax","cha","chap","chuot","chuox","chuo","chuop","chot","chox","cho","chop","chet","chex","che","chep","chux","chu","chup","churx","chur","chyt","chyx","chy","chyp","chyrx","chyr","rrax","rra","rruox","rruo","rrot","rrox","rro","rrop","rret","rrex","rre","rrep","rrut","rrux","rru","rrup","rrurx","rrur","rryt","rryx","rry","rryp","rryrx","rryr","nrat","nrax","nra","nrap","nrox","nro","nrop","nret","nrex","nre","nrep","nrut","nrux","nru","nrup","nrurx","nrur","nryt","nryx","nry","nryp","nryrx","nryr","shat","shax","sha","shap","shuox","shuo","shuop","shot","shox","sho","shop","shet","shex","she","shep","shut","shux","shu","shup","shurx","shur","shyt","shyx","shy","shyp","shyrx","shyr","rat","rax","ra","rap","ruox","ruo","ruop","rot","rox","ro","rop","rex","re","rep","rut","rux","ru","rup","rurx","rur","ryt","ryx","ry","ryp","ryrx","ryr","jit","jix","ji","jip","jiet","jiex","jie","jiep","juot","juox","juo","juop","jot","jox","jo","jop","jut","jux","ju","jup","jurx","jur","jyt","jyx","jy","jyp","jyrx","jyr","qit","qix","qi","qip"],["qiet","qiex","qie","qiep","quot","quox","quo","quop","qot","qox","qo","qop","qut","qux","qu","qup","qurx","qur","qyt","qyx","qy","qyp","qyrx","qyr","jjit","jjix","jji","jjip","jjiet","jjiex","jjie","jjiep","jjuox","jjuo","jjuop","jjot","jjox","jjo","jjop","jjut","jjux","jju","jjup","jjurx","jjur","jjyt","jjyx","jjy","jjyp","njit","njix","nji","njip","njiet","njiex","njie","njiep","njuox","njuo","njot","njox","njo","njop","njux","nju","njup","njurx","njur","njyt","njyx","njy","njyp","njyrx","njyr","nyit","nyix","nyi","nyip","nyiet","nyiex","nyie","nyiep","nyuox","nyuo","nyuop","nyot","nyox","nyo","nyop","nyut","nyux","nyu","nyup","xit","xix","xi","xip","xiet","xiex","xie","xiep","xuox","xuo","xot","xox","xo","xop","xyt","xyx","xy","xyp","xyrx","xyr","yit","yix","yi","yip","yiet","yiex","yie","yiep","yuot","yuox","yuo","yuop","yot","yox","yo","yop","yut","yux","yu","yup","yurx","yur","yyt","yyx","yy","yyp","yyrx","yyr",,,,"Qot","Li","Kit","Nyip","Cyp","Ssi","Ggop","Gep","Mi","Hxit","Lyr","Bbut","Mop","Yo","Put","Hxuo","Tat","Ga",,,"Ddur","Bur","Gguo","Nyop","Tu","Op","Jjut","Zot","Pyt","Hmo","Yit","Vur","Shy","Vep","Za","Jo",,"Jjy","Got","Jjie","Wo","Du","Shur","Lie","Cy","Cuop","Cip","Hxop","Shat",,"Shop","Che","Zziet",,"Ke"],[],[],[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"A","a","A","a","HENG","heng","TZ","tz","3","3","4","4","4","4","F","S","AA","aa","AO","ao","AU","au","AV","av","AV-","av-","AY","ay","C","c","K","k","K","k","K","k","L","l","L","l","O","o","O","o","OO","oo","P","p","P","p","P","p","Q","q","Q","q","R","r","R","r","V","v","VY","vy","Z","z","TH","th","TH","th","Y","y","ET","et","IS","is","CON","con","US","us","dum","lum","num","rum","RUM","tum","um","D","d","F","f","G","G","g","L","l","R","r","S","s","T","t","^",":","=","'","'","H","l",".","N","n","C","c","c","h","B","b","F","f","AE","ae","OE","oe","UE","ue","G","g","K","k","N","n","R","r","S","s","H","E","G","L","I","Q","K","T","J","CHI","B","b","O","o","U","u",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"I","H","oe","M","F","P","M","I","M1"],[],[],[],[],["ga","gag","gagg","gags","gan","ganj","ganh","gad","gal","galg","galm","galb","gals","galt","galp","galh","gam","gab","gabs","gas","gass","gang","gaj","gac","gak","gat","gap","gah","gae","gaeg","gaegg","gaegs","gaen","gaenj","gaenh","gaed","gael","gaelg","gaelm","gaelb","gaels","gaelt","gaelp","gaelh","gaem","gaeb","gaebs","gaes","gaess","gaeng","gaej","gaec","gaek","gaet","gaep","gaeh","gya","gyag","gyagg","gyags","gyan","gyanj","gyanh","gyad","gyal","gyalg","gyalm","gyalb","gyals","gyalt","gyalp","gyalh","gyam","gyab","gyabs","gyas","gyass","gyang","gyaj","gyac","gyak","gyat","gyap","gyah","gyae","gyaeg","gyaegg","gyaegs","gyaen","gyaenj","gyaenh","gyaed","gyael","gyaelg","gyaelm","gyaelb","gyaels","gyaelt","gyaelp","gyaelh","gyaem","gyaeb","gyaebs","gyaes","gyaess","gyaeng","gyaej","gyaec","gyaek","gyaet","gyaep","gyaeh","geo","geog","geogg","geogs","geon","geonj","geonh","geod","geol","geolg","geolm","geolb","geols","geolt","geolp","geolh","geom","geob","geobs","geos","geoss","geong","geoj","geoc","geok","geot","geop","geoh","ge","geg","gegg","gegs","gen","genj","genh","ged","gel","gelg","gelm","gelb","gels","gelt","gelp","gelh","gem","geb","gebs","ges","gess","geng","gej","gec","gek","get","gep","geh","gyeo","gyeog","gyeogg","gyeogs","gyeon","gyeonj","gyeonh","gyeod","gyeol","gyeolg","gyeolm","gyeolb","gyeols","gyeolt","gyeolp","gyeolh","gyeom","gyeob","gyeobs","gyeos","gyeoss","gyeong","gyeoj","gyeoc","gyeok","gyeot","gyeop","gyeoh","gye","gyeg","gyegg","gyegs","gyen","gyenj","gyenh","gyed","gyel","gyelg","gyelm","gyelb","gyels","gyelt","gyelp","gyelh","gyem","gyeb","gyebs","gyes","gyess","gyeng","gyej","gyec","gyek","gyet","gyep","gyeh","go","gog","gogg","gogs","gon","gonj","gonh","god","gol","golg","golm","golb","gols","golt","golp","golh","gom","gob","gobs","gos","goss","gong","goj","goc","gok","got","gop","goh","gwa","gwag","gwagg","gwags"],["gwan","gwanj","gwanh","gwad","gwal","gwalg","gwalm","gwalb","gwals","gwalt","gwalp","gwalh","gwam","gwab","gwabs","gwas","gwass","gwang","gwaj","gwac","gwak","gwat","gwap","gwah","gwae","gwaeg","gwaegg","gwaegs","gwaen","gwaenj","gwaenh","gwaed","gwael","gwaelg","gwaelm","gwaelb","gwaels","gwaelt","gwaelp","gwaelh","gwaem","gwaeb","gwaebs","gwaes","gwaess","gwaeng","gwaej","gwaec","gwaek","gwaet","gwaep","gwaeh","goe","goeg","goegg","goegs","goen","goenj","goenh","goed","goel","goelg","goelm","goelb","goels","goelt","goelp","goelh","goem","goeb","goebs","goes","goess","goeng","goej","goec","goek","goet","goep","goeh","gyo","gyog","gyogg","gyogs","gyon","gyonj","gyonh","gyod","gyol","gyolg","gyolm","gyolb","gyols","gyolt","gyolp","gyolh","gyom","gyob","gyobs","gyos","gyoss","gyong","gyoj","gyoc","gyok","gyot","gyop","gyoh","gu","gug","gugg","gugs","gun","gunj","gunh","gud","gul","gulg","gulm","gulb","guls","gult","gulp","gulh","gum","gub","gubs","gus","guss","gung","guj","guc","guk","gut","gup","guh","gweo","gweog","gweogg","gweogs","gweon","gweonj","gweonh","gweod","gweol","gweolg","gweolm","gweolb","gweols","gweolt","gweolp","gweolh","gweom","gweob","gweobs","gweos","gweoss","gweong","gweoj","gweoc","gweok","gweot","gweop","gweoh","gwe","gweg","gwegg","gwegs","gwen","gwenj","gwenh","gwed","gwel","gwelg","gwelm","gwelb","gwels","gwelt","gwelp","gwelh","gwem","gweb","gwebs","gwes","gwess","gweng","gwej","gwec","gwek","gwet","gwep","gweh","gwi","gwig","gwigg","gwigs","gwin","gwinj","gwinh","gwid","gwil","gwilg","gwilm","gwilb","gwils","gwilt","gwilp","gwilh","gwim","gwib","gwibs","gwis","gwiss","gwing","gwij","gwic","gwik","gwit","gwip","gwih","gyu","gyug","gyugg","gyugs","gyun","gyunj","gyunh","gyud","gyul","gyulg","gyulm","gyulb","gyuls","gyult","gyulp","gyulh","gyum","gyub","gyubs","gyus","gyuss","gyung","gyuj","gyuc","gyuk","gyut","gyup","gyuh","geu","geug","geugg","geugs","geun","geunj","geunh","geud"],["geul","geulg","geulm","geulb","geuls","geult","geulp","geulh","geum","geub","geubs","geus","geuss","geung","geuj","geuc","geuk","geut","geup","geuh","gyi","gyig","gyigg","gyigs","gyin","gyinj","gyinh","gyid","gyil","gyilg","gyilm","gyilb","gyils","gyilt","gyilp","gyilh","gyim","gyib","gyibs","gyis","gyiss","gying","gyij","gyic","gyik","gyit","gyip","gyih","gi","gig","gigg","gigs","gin","ginj","ginh","gid","gil","gilg","gilm","gilb","gils","gilt","gilp","gilh","gim","gib","gibs","gis","giss","ging","gij","gic","gik","git","gip","gih","gga","ggag","ggagg","ggags","ggan","gganj","gganh","ggad","ggal","ggalg","ggalm","ggalb","ggals","ggalt","ggalp","ggalh","ggam","ggab","ggabs","ggas","ggass","ggang","ggaj","ggac","ggak","ggat","ggap","ggah","ggae","ggaeg","ggaegg","ggaegs","ggaen","ggaenj","ggaenh","ggaed","ggael","ggaelg","ggaelm","ggaelb","ggaels","ggaelt","ggaelp","ggaelh","ggaem","ggaeb","ggaebs","ggaes","ggaess","ggaeng","ggaej","ggaec","ggaek","ggaet","ggaep","ggaeh","ggya","ggyag","ggyagg","ggyags","ggyan","ggyanj","ggyanh","ggyad","ggyal","ggyalg","ggyalm","ggyalb","ggyals","ggyalt","ggyalp","ggyalh","ggyam","ggyab","ggyabs","ggyas","ggyass","ggyang","ggyaj","ggyac","ggyak","ggyat","ggyap","ggyah","ggyae","ggyaeg","ggyaegg","ggyaegs","ggyaen","ggyaenj","ggyaenh","ggyaed","ggyael","ggyaelg","ggyaelm","ggyaelb","ggyaels","ggyaelt","ggyaelp","ggyaelh","ggyaem","ggyaeb","ggyaebs","ggyaes","ggyaess","ggyaeng","ggyaej","ggyaec","ggyaek","ggyaet","ggyaep","ggyaeh","ggeo","ggeog","ggeogg","ggeogs","ggeon","ggeonj","ggeonh","ggeod","ggeol","ggeolg","ggeolm","ggeolb","ggeols","ggeolt","ggeolp","ggeolh","ggeom","ggeob","ggeobs","ggeos","ggeoss","ggeong","ggeoj","ggeoc","ggeok","ggeot","ggeop","ggeoh","gge","ggeg","ggegg","ggegs","ggen","ggenj","ggenh","gged","ggel","ggelg","ggelm","ggelb","ggels","ggelt","ggelp","ggelh","ggem","ggeb","ggebs","gges","ggess","ggeng","ggej","ggec","ggek","gget","ggep","ggeh","ggyeo","ggyeog","ggyeogg","ggyeogs","ggyeon","ggyeonj","ggyeonh","ggyeod","ggyeol","ggyeolg","ggyeolm","ggyeolb"],["ggyeols","ggyeolt","ggyeolp","ggyeolh","ggyeom","ggyeob","ggyeobs","ggyeos","ggyeoss","ggyeong","ggyeoj","ggyeoc","ggyeok","ggyeot","ggyeop","ggyeoh","ggye","ggyeg","ggyegg","ggyegs","ggyen","ggyenj","ggyenh","ggyed","ggyel","ggyelg","ggyelm","ggyelb","ggyels","ggyelt","ggyelp","ggyelh","ggyem","ggyeb","ggyebs","ggyes","ggyess","ggyeng","ggyej","ggyec","ggyek","ggyet","ggyep","ggyeh","ggo","ggog","ggogg","ggogs","ggon","ggonj","ggonh","ggod","ggol","ggolg","ggolm","ggolb","ggols","ggolt","ggolp","ggolh","ggom","ggob","ggobs","ggos","ggoss","ggong","ggoj","ggoc","ggok","ggot","ggop","ggoh","ggwa","ggwag","ggwagg","ggwags","ggwan","ggwanj","ggwanh","ggwad","ggwal","ggwalg","ggwalm","ggwalb","ggwals","ggwalt","ggwalp","ggwalh","ggwam","ggwab","ggwabs","ggwas","ggwass","ggwang","ggwaj","ggwac","ggwak","ggwat","ggwap","ggwah","ggwae","ggwaeg","ggwaegg","ggwaegs","ggwaen","ggwaenj","ggwaenh","ggwaed","ggwael","ggwaelg","ggwaelm","ggwaelb","ggwaels","ggwaelt","ggwaelp","ggwaelh","ggwaem","ggwaeb","ggwaebs","ggwaes","ggwaess","ggwaeng","ggwaej","ggwaec","ggwaek","ggwaet","ggwaep","ggwaeh","ggoe","ggoeg","ggoegg","ggoegs","ggoen","ggoenj","ggoenh","ggoed","ggoel","ggoelg","ggoelm","ggoelb","ggoels","ggoelt","ggoelp","ggoelh","ggoem","ggoeb","ggoebs","ggoes","ggoess","ggoeng","ggoej","ggoec","ggoek","ggoet","ggoep","ggoeh","ggyo","ggyog","ggyogg","ggyogs","ggyon","ggyonj","ggyonh","ggyod","ggyol","ggyolg","ggyolm","ggyolb","ggyols","ggyolt","ggyolp","ggyolh","ggyom","ggyob","ggyobs","ggyos","ggyoss","ggyong","ggyoj","ggyoc","ggyok","ggyot","ggyop","ggyoh","ggu","ggug","ggugg","ggugs","ggun","ggunj","ggunh","ggud","ggul","ggulg","ggulm","ggulb","gguls","ggult","ggulp","ggulh","ggum","ggub","ggubs","ggus","gguss","ggung","gguj","gguc","gguk","ggut","ggup","gguh","ggweo","ggweog","ggweogg","ggweogs","ggweon","ggweonj","ggweonh","ggweod","ggweol","ggweolg","ggweolm","ggweolb","ggweols","ggweolt","ggweolp","ggweolh","ggweom","ggweob","ggweobs","ggweos","ggweoss","ggweong","ggweoj","ggweoc","ggweok","ggweot","ggweop","ggweoh","ggwe","ggweg","ggwegg","ggwegs","ggwen","ggwenj","ggwenh","ggwed","ggwel","ggwelg","ggwelm","ggwelb","ggwels","ggwelt","ggwelp","ggwelh"],["ggwem","ggweb","ggwebs","ggwes","ggwess","ggweng","ggwej","ggwec","ggwek","ggwet","ggwep","ggweh","ggwi","ggwig","ggwigg","ggwigs","ggwin","ggwinj","ggwinh","ggwid","ggwil","ggwilg","ggwilm","ggwilb","ggwils","ggwilt","ggwilp","ggwilh","ggwim","ggwib","ggwibs","ggwis","ggwiss","ggwing","ggwij","ggwic","ggwik","ggwit","ggwip","ggwih","ggyu","ggyug","ggyugg","ggyugs","ggyun","ggyunj","ggyunh","ggyud","ggyul","ggyulg","ggyulm","ggyulb","ggyuls","ggyult","ggyulp","ggyulh","ggyum","ggyub","ggyubs","ggyus","ggyuss","ggyung","ggyuj","ggyuc","ggyuk","ggyut","ggyup","ggyuh","ggeu","ggeug","ggeugg","ggeugs","ggeun","ggeunj","ggeunh","ggeud","ggeul","ggeulg","ggeulm","ggeulb","ggeuls","ggeult","ggeulp","ggeulh","ggeum","ggeub","ggeubs","ggeus","ggeuss","ggeung","ggeuj","ggeuc","ggeuk","ggeut","ggeup","ggeuh","ggyi","ggyig","ggyigg","ggyigs","ggyin","ggyinj","ggyinh","ggyid","ggyil","ggyilg","ggyilm","ggyilb","ggyils","ggyilt","ggyilp","ggyilh","ggyim","ggyib","ggyibs","ggyis","ggyiss","ggying","ggyij","ggyic","ggyik","ggyit","ggyip","ggyih","ggi","ggig","ggigg","ggigs","ggin","gginj","gginh","ggid","ggil","ggilg","ggilm","ggilb","ggils","ggilt","ggilp","ggilh","ggim","ggib","ggibs","ggis","ggiss","gging","ggij","ggic","ggik","ggit","ggip","ggih","na","nag","nagg","nags","nan","nanj","nanh","nad","nal","nalg","nalm","nalb","nals","nalt","nalp","nalh","nam","nab","nabs","nas","nass","nang","naj","nac","nak","nat","nap","nah","nae","naeg","naegg","naegs","naen","naenj","naenh","naed","nael","naelg","naelm","naelb","naels","naelt","naelp","naelh","naem","naeb","naebs","naes","naess","naeng","naej","naec","naek","naet","naep","naeh","nya","nyag","nyagg","nyags","nyan","nyanj","nyanh","nyad","nyal","nyalg","nyalm","nyalb","nyals","nyalt","nyalp","nyalh","nyam","nyab","nyabs","nyas","nyass","nyang","nyaj","nyac","nyak","nyat","nyap","nyah","nyae","nyaeg","nyaegg","nyaegs","nyaen","nyaenj","nyaenh","nyaed","nyael","nyaelg","nyaelm","nyaelb","nyaels","nyaelt","nyaelp","nyaelh","nyaem","nyaeb","nyaebs","nyaes"],["nyaess","nyaeng","nyaej","nyaec","nyaek","nyaet","nyaep","nyaeh","neo","neog","neogg","neogs","neon","neonj","neonh","neod","neol","neolg","neolm","neolb","neols","neolt","neolp","neolh","neom","neob","neobs","neos","neoss","neong","neoj","neoc","neok","neot","neop","neoh","ne","neg","negg","negs","nen","nenj","nenh","ned","nel","nelg","nelm","nelb","nels","nelt","nelp","nelh","nem","neb","nebs","nes","ness","neng","nej","nec","nek","net","nep","neh","nyeo","nyeog","nyeogg","nyeogs","nyeon","nyeonj","nyeonh","nyeod","nyeol","nyeolg","nyeolm","nyeolb","nyeols","nyeolt","nyeolp","nyeolh","nyeom","nyeob","nyeobs","nyeos","nyeoss","nyeong","nyeoj","nyeoc","nyeok","nyeot","nyeop","nyeoh","nye","nyeg","nyegg","nyegs","nyen","nyenj","nyenh","nyed","nyel","nyelg","nyelm","nyelb","nyels","nyelt","nyelp","nyelh","nyem","nyeb","nyebs","nyes","nyess","nyeng","nyej","nyec","nyek","nyet","nyep","nyeh","no","nog","nogg","nogs","non","nonj","nonh","nod","nol","nolg","nolm","nolb","nols","nolt","nolp","nolh","nom","nob","nobs","nos","noss","nong","noj","noc","nok","not","nop","noh","nwa","nwag","nwagg","nwags","nwan","nwanj","nwanh","nwad","nwal","nwalg","nwalm","nwalb","nwals","nwalt","nwalp","nwalh","nwam","nwab","nwabs","nwas","nwass","nwang","nwaj","nwac","nwak","nwat","nwap","nwah","nwae","nwaeg","nwaegg","nwaegs","nwaen","nwaenj","nwaenh","nwaed","nwael","nwaelg","nwaelm","nwaelb","nwaels","nwaelt","nwaelp","nwaelh","nwaem","nwaeb","nwaebs","nwaes","nwaess","nwaeng","nwaej","nwaec","nwaek","nwaet","nwaep","nwaeh","noe","noeg","noegg","noegs","noen","noenj","noenh","noed","noel","noelg","noelm","noelb","noels","noelt","noelp","noelh","noem","noeb","noebs","noes","noess","noeng","noej","noec","noek","noet","noep","noeh","nyo","nyog","nyogg","nyogs","nyon","nyonj","nyonh","nyod","nyol","nyolg","nyolm","nyolb","nyols","nyolt","nyolp","nyolh","nyom","nyob","nyobs","nyos","nyoss","nyong","nyoj","nyoc"],["nyok","nyot","nyop","nyoh","nu","nug","nugg","nugs","nun","nunj","nunh","nud","nul","nulg","nulm","nulb","nuls","nult","nulp","nulh","num","nub","nubs","nus","nuss","nung","nuj","nuc","nuk","nut","nup","nuh","nweo","nweog","nweogg","nweogs","nweon","nweonj","nweonh","nweod","nweol","nweolg","nweolm","nweolb","nweols","nweolt","nweolp","nweolh","nweom","nweob","nweobs","nweos","nweoss","nweong","nweoj","nweoc","nweok","nweot","nweop","nweoh","nwe","nweg","nwegg","nwegs","nwen","nwenj","nwenh","nwed","nwel","nwelg","nwelm","nwelb","nwels","nwelt","nwelp","nwelh","nwem","nweb","nwebs","nwes","nwess","nweng","nwej","nwec","nwek","nwet","nwep","nweh","nwi","nwig","nwigg","nwigs","nwin","nwinj","nwinh","nwid","nwil","nwilg","nwilm","nwilb","nwils","nwilt","nwilp","nwilh","nwim","nwib","nwibs","nwis","nwiss","nwing","nwij","nwic","nwik","nwit","nwip","nwih","nyu","nyug","nyugg","nyugs","nyun","nyunj","nyunh","nyud","nyul","nyulg","nyulm","nyulb","nyuls","nyult","nyulp","nyulh","nyum","nyub","nyubs","nyus","nyuss","nyung","nyuj","nyuc","nyuk","nyut","nyup","nyuh","neu","neug","neugg","neugs","neun","neunj","neunh","neud","neul","neulg","neulm","neulb","neuls","neult","neulp","neulh","neum","neub","neubs","neus","neuss","neung","neuj","neuc","neuk","neut","neup","neuh","nyi","nyig","nyigg","nyigs","nyin","nyinj","nyinh","nyid","nyil","nyilg","nyilm","nyilb","nyils","nyilt","nyilp","nyilh","nyim","nyib","nyibs","nyis","nyiss","nying","nyij","nyic","nyik","nyit","nyip","nyih","ni","nig","nigg","nigs","nin","ninj","ninh","nid","nil","nilg","nilm","nilb","nils","nilt","nilp","nilh","nim","nib","nibs","nis","niss","ning","nij","nic","nik","nit","nip","nih","da","dag","dagg","dags","dan","danj","danh","dad","dal","dalg","dalm","dalb","dals","dalt","dalp","dalh","dam","dab","dabs","das","dass","dang","daj","dac","dak","dat","dap","dah"],["dae","daeg","daegg","daegs","daen","daenj","daenh","daed","dael","daelg","daelm","daelb","daels","daelt","daelp","daelh","daem","daeb","daebs","daes","daess","daeng","daej","daec","daek","daet","daep","daeh","dya","dyag","dyagg","dyags","dyan","dyanj","dyanh","dyad","dyal","dyalg","dyalm","dyalb","dyals","dyalt","dyalp","dyalh","dyam","dyab","dyabs","dyas","dyass","dyang","dyaj","dyac","dyak","dyat","dyap","dyah","dyae","dyaeg","dyaegg","dyaegs","dyaen","dyaenj","dyaenh","dyaed","dyael","dyaelg","dyaelm","dyaelb","dyaels","dyaelt","dyaelp","dyaelh","dyaem","dyaeb","dyaebs","dyaes","dyaess","dyaeng","dyaej","dyaec","dyaek","dyaet","dyaep","dyaeh","deo","deog","deogg","deogs","deon","deonj","deonh","deod","deol","deolg","deolm","deolb","deols","deolt","deolp","deolh","deom","deob","deobs","deos","deoss","deong","deoj","deoc","deok","deot","deop","deoh","de","deg","degg","degs","den","denj","denh","ded","del","delg","delm","delb","dels","delt","delp","delh","dem","deb","debs","des","dess","deng","dej","dec","dek","det","dep","deh","dyeo","dyeog","dyeogg","dyeogs","dyeon","dyeonj","dyeonh","dyeod","dyeol","dyeolg","dyeolm","dyeolb","dyeols","dyeolt","dyeolp","dyeolh","dyeom","dyeob","dyeobs","dyeos","dyeoss","dyeong","dyeoj","dyeoc","dyeok","dyeot","dyeop","dyeoh","dye","dyeg","dyegg","dyegs","dyen","dyenj","dyenh","dyed","dyel","dyelg","dyelm","dyelb","dyels","dyelt","dyelp","dyelh","dyem","dyeb","dyebs","dyes","dyess","dyeng","dyej","dyec","dyek","dyet","dyep","dyeh","do","dog","dogg","dogs","don","donj","donh","dod","dol","dolg","dolm","dolb","dols","dolt","dolp","dolh","dom","dob","dobs","dos","doss","dong","doj","doc","dok","dot","dop","doh","dwa","dwag","dwagg","dwags","dwan","dwanj","dwanh","dwad","dwal","dwalg","dwalm","dwalb","dwals","dwalt","dwalp","dwalh","dwam","dwab","dwabs","dwas","dwass","dwang","dwaj","dwac","dwak","dwat","dwap","dwah","dwae","dwaeg","dwaegg","dwaegs"],["dwaen","dwaenj","dwaenh","dwaed","dwael","dwaelg","dwaelm","dwaelb","dwaels","dwaelt","dwaelp","dwaelh","dwaem","dwaeb","dwaebs","dwaes","dwaess","dwaeng","dwaej","dwaec","dwaek","dwaet","dwaep","dwaeh","doe","doeg","doegg","doegs","doen","doenj","doenh","doed","doel","doelg","doelm","doelb","doels","doelt","doelp","doelh","doem","doeb","doebs","does","doess","doeng","doej","doec","doek","doet","doep","doeh","dyo","dyog","dyogg","dyogs","dyon","dyonj","dyonh","dyod","dyol","dyolg","dyolm","dyolb","dyols","dyolt","dyolp","dyolh","dyom","dyob","dyobs","dyos","dyoss","dyong","dyoj","dyoc","dyok","dyot","dyop","dyoh","du","dug","dugg","dugs","dun","dunj","dunh","dud","dul","dulg","dulm","dulb","duls","dult","dulp","dulh","dum","dub","dubs","dus","duss","dung","duj","duc","duk","dut","dup","duh","dweo","dweog","dweogg","dweogs","dweon","dweonj","dweonh","dweod","dweol","dweolg","dweolm","dweolb","dweols","dweolt","dweolp","dweolh","dweom","dweob","dweobs","dweos","dweoss","dweong","dweoj","dweoc","dweok","dweot","dweop","dweoh","dwe","dweg","dwegg","dwegs","dwen","dwenj","dwenh","dwed","dwel","dwelg","dwelm","dwelb","dwels","dwelt","dwelp","dwelh","dwem","dweb","dwebs","dwes","dwess","dweng","dwej","dwec","dwek","dwet","dwep","dweh","dwi","dwig","dwigg","dwigs","dwin","dwinj","dwinh","dwid","dwil","dwilg","dwilm","dwilb","dwils","dwilt","dwilp","dwilh","dwim","dwib","dwibs","dwis","dwiss","dwing","dwij","dwic","dwik","dwit","dwip","dwih","dyu","dyug","dyugg","dyugs","dyun","dyunj","dyunh","dyud","dyul","dyulg","dyulm","dyulb","dyuls","dyult","dyulp","dyulh","dyum","dyub","dyubs","dyus","dyuss","dyung","dyuj","dyuc","dyuk","dyut","dyup","dyuh","deu","deug","deugg","deugs","deun","deunj","deunh","deud","deul","deulg","deulm","deulb","deuls","deult","deulp","deulh","deum","deub","deubs","deus","deuss","deung","deuj","deuc","deuk","deut","deup","deuh","dyi","dyig","dyigg","dyigs","dyin","dyinj","dyinh","dyid"],["dyil","dyilg","dyilm","dyilb","dyils","dyilt","dyilp","dyilh","dyim","dyib","dyibs","dyis","dyiss","dying","dyij","dyic","dyik","dyit","dyip","dyih","di","dig","digg","digs","din","dinj","dinh","did","dil","dilg","dilm","dilb","dils","dilt","dilp","dilh","dim","dib","dibs","dis","diss","ding","dij","dic","dik","dit","dip","dih","dda","ddag","ddagg","ddags","ddan","ddanj","ddanh","ddad","ddal","ddalg","ddalm","ddalb","ddals","ddalt","ddalp","ddalh","ddam","ddab","ddabs","ddas","ddass","ddang","ddaj","ddac","ddak","ddat","ddap","ddah","ddae","ddaeg","ddaegg","ddaegs","ddaen","ddaenj","ddaenh","ddaed","ddael","ddaelg","ddaelm","ddaelb","ddaels","ddaelt","ddaelp","ddaelh","ddaem","ddaeb","ddaebs","ddaes","ddaess","ddaeng","ddaej","ddaec","ddaek","ddaet","ddaep","ddaeh","ddya","ddyag","ddyagg","ddyags","ddyan","ddyanj","ddyanh","ddyad","ddyal","ddyalg","ddyalm","ddyalb","ddyals","ddyalt","ddyalp","ddyalh","ddyam","ddyab","ddyabs","ddyas","ddyass","ddyang","ddyaj","ddyac","ddyak","ddyat","ddyap","ddyah","ddyae","ddyaeg","ddyaegg","ddyaegs","ddyaen","ddyaenj","ddyaenh","ddyaed","ddyael","ddyaelg","ddyaelm","ddyaelb","ddyaels","ddyaelt","ddyaelp","ddyaelh","ddyaem","ddyaeb","ddyaebs","ddyaes","ddyaess","ddyaeng","ddyaej","ddyaec","ddyaek","ddyaet","ddyaep","ddyaeh","ddeo","ddeog","ddeogg","ddeogs","ddeon","ddeonj","ddeonh","ddeod","ddeol","ddeolg","ddeolm","ddeolb","ddeols","ddeolt","ddeolp","ddeolh","ddeom","ddeob","ddeobs","ddeos","ddeoss","ddeong","ddeoj","ddeoc","ddeok","ddeot","ddeop","ddeoh","dde","ddeg","ddegg","ddegs","dden","ddenj","ddenh","dded","ddel","ddelg","ddelm","ddelb","ddels","ddelt","ddelp","ddelh","ddem","ddeb","ddebs","ddes","ddess","ddeng","ddej","ddec","ddek","ddet","ddep","ddeh","ddyeo","ddyeog","ddyeogg","ddyeogs","ddyeon","ddyeonj","ddyeonh","ddyeod","ddyeol","ddyeolg","ddyeolm","ddyeolb","ddyeols","ddyeolt","ddyeolp","ddyeolh","ddyeom","ddyeob","ddyeobs","ddyeos","ddyeoss","ddyeong","ddyeoj","ddyeoc","ddyeok","ddyeot","ddyeop","ddyeoh","ddye","ddyeg","ddyegg","ddyegs","ddyen","ddyenj","ddyenh","ddyed","ddyel","ddyelg","ddyelm","ddyelb"],["ddyels","ddyelt","ddyelp","ddyelh","ddyem","ddyeb","ddyebs","ddyes","ddyess","ddyeng","ddyej","ddyec","ddyek","ddyet","ddyep","ddyeh","ddo","ddog","ddogg","ddogs","ddon","ddonj","ddonh","ddod","ddol","ddolg","ddolm","ddolb","ddols","ddolt","ddolp","ddolh","ddom","ddob","ddobs","ddos","ddoss","ddong","ddoj","ddoc","ddok","ddot","ddop","ddoh","ddwa","ddwag","ddwagg","ddwags","ddwan","ddwanj","ddwanh","ddwad","ddwal","ddwalg","ddwalm","ddwalb","ddwals","ddwalt","ddwalp","ddwalh","ddwam","ddwab","ddwabs","ddwas","ddwass","ddwang","ddwaj","ddwac","ddwak","ddwat","ddwap","ddwah","ddwae","ddwaeg","ddwaegg","ddwaegs","ddwaen","ddwaenj","ddwaenh","ddwaed","ddwael","ddwaelg","ddwaelm","ddwaelb","ddwaels","ddwaelt","ddwaelp","ddwaelh","ddwaem","ddwaeb","ddwaebs","ddwaes","ddwaess","ddwaeng","ddwaej","ddwaec","ddwaek","ddwaet","ddwaep","ddwaeh","ddoe","ddoeg","ddoegg","ddoegs","ddoen","ddoenj","ddoenh","ddoed","ddoel","ddoelg","ddoelm","ddoelb","ddoels","ddoelt","ddoelp","ddoelh","ddoem","ddoeb","ddoebs","ddoes","ddoess","ddoeng","ddoej","ddoec","ddoek","ddoet","ddoep","ddoeh","ddyo","ddyog","ddyogg","ddyogs","ddyon","ddyonj","ddyonh","ddyod","ddyol","ddyolg","ddyolm","ddyolb","ddyols","ddyolt","ddyolp","ddyolh","ddyom","ddyob","ddyobs","ddyos","ddyoss","ddyong","ddyoj","ddyoc","ddyok","ddyot","ddyop","ddyoh","ddu","ddug","ddugg","ddugs","ddun","ddunj","ddunh","ddud","ddul","ddulg","ddulm","ddulb","dduls","ddult","ddulp","ddulh","ddum","ddub","ddubs","ddus","dduss","ddung","dduj","dduc","dduk","ddut","ddup","dduh","ddweo","ddweog","ddweogg","ddweogs","ddweon","ddweonj","ddweonh","ddweod","ddweol","ddweolg","ddweolm","ddweolb","ddweols","ddweolt","ddweolp","ddweolh","ddweom","ddweob","ddweobs","ddweos","ddweoss","ddweong","ddweoj","ddweoc","ddweok","ddweot","ddweop","ddweoh","ddwe","ddweg","ddwegg","ddwegs","ddwen","ddwenj","ddwenh","ddwed","ddwel","ddwelg","ddwelm","ddwelb","ddwels","ddwelt","ddwelp","ddwelh","ddwem","ddweb","ddwebs","ddwes","ddwess","ddweng","ddwej","ddwec","ddwek","ddwet","ddwep","ddweh","ddwi","ddwig","ddwigg","ddwigs","ddwin","ddwinj","ddwinh","ddwid","ddwil","ddwilg","ddwilm","ddwilb","ddwils","ddwilt","ddwilp","ddwilh"],["ddwim","ddwib","ddwibs","ddwis","ddwiss","ddwing","ddwij","ddwic","ddwik","ddwit","ddwip","ddwih","ddyu","ddyug","ddyugg","ddyugs","ddyun","ddyunj","ddyunh","ddyud","ddyul","ddyulg","ddyulm","ddyulb","ddyuls","ddyult","ddyulp","ddyulh","ddyum","ddyub","ddyubs","ddyus","ddyuss","ddyung","ddyuj","ddyuc","ddyuk","ddyut","ddyup","ddyuh","ddeu","ddeug","ddeugg","ddeugs","ddeun","ddeunj","ddeunh","ddeud","ddeul","ddeulg","ddeulm","ddeulb","ddeuls","ddeult","ddeulp","ddeulh","ddeum","ddeub","ddeubs","ddeus","ddeuss","ddeung","ddeuj","ddeuc","ddeuk","ddeut","ddeup","ddeuh","ddyi","ddyig","ddyigg","ddyigs","ddyin","ddyinj","ddyinh","ddyid","ddyil","ddyilg","ddyilm","ddyilb","ddyils","ddyilt","ddyilp","ddyilh","ddyim","ddyib","ddyibs","ddyis","ddyiss","ddying","ddyij","ddyic","ddyik","ddyit","ddyip","ddyih","ddi","ddig","ddigg","ddigs","ddin","ddinj","ddinh","ddid","ddil","ddilg","ddilm","ddilb","ddils","ddilt","ddilp","ddilh","ddim","ddib","ddibs","ddis","ddiss","dding","ddij","ddic","ddik","ddit","ddip","ddih","ra","rag","ragg","rags","ran","ranj","ranh","rad","ral","ralg","ralm","ralb","rals","ralt","ralp","ralh","ram","rab","rabs","ras","rass","rang","raj","rac","rak","rat","rap","rah","rae","raeg","raegg","raegs","raen","raenj","raenh","raed","rael","raelg","raelm","raelb","raels","raelt","raelp","raelh","raem","raeb","raebs","raes","raess","raeng","raej","raec","raek","raet","raep","raeh","rya","ryag","ryagg","ryags","ryan","ryanj","ryanh","ryad","ryal","ryalg","ryalm","ryalb","ryals","ryalt","ryalp","ryalh","ryam","ryab","ryabs","ryas","ryass","ryang","ryaj","ryac","ryak","ryat","ryap","ryah","ryae","ryaeg","ryaegg","ryaegs","ryaen","ryaenj","ryaenh","ryaed","ryael","ryaelg","ryaelm","ryaelb","ryaels","ryaelt","ryaelp","ryaelh","ryaem","ryaeb","ryaebs","ryaes","ryaess","ryaeng","ryaej","ryaec","ryaek","ryaet","ryaep","ryaeh","reo","reog","reogg","reogs","reon","reonj","reonh","reod","reol","reolg","reolm","reolb","reols","reolt","reolp","reolh","reom","reob","reobs","reos"],["reoss","reong","reoj","reoc","reok","reot","reop","reoh","re","reg","regg","regs","ren","renj","renh","red","rel","relg","relm","relb","rels","relt","relp","relh","rem","reb","rebs","res","ress","reng","rej","rec","rek","ret","rep","reh","ryeo","ryeog","ryeogg","ryeogs","ryeon","ryeonj","ryeonh","ryeod","ryeol","ryeolg","ryeolm","ryeolb","ryeols","ryeolt","ryeolp","ryeolh","ryeom","ryeob","ryeobs","ryeos","ryeoss","ryeong","ryeoj","ryeoc","ryeok","ryeot","ryeop","ryeoh","rye","ryeg","ryegg","ryegs","ryen","ryenj","ryenh","ryed","ryel","ryelg","ryelm","ryelb","ryels","ryelt","ryelp","ryelh","ryem","ryeb","ryebs","ryes","ryess","ryeng","ryej","ryec","ryek","ryet","ryep","ryeh","ro","rog","rogg","rogs","ron","ronj","ronh","rod","rol","rolg","rolm","rolb","rols","rolt","rolp","rolh","rom","rob","robs","ros","ross","rong","roj","roc","rok","rot","rop","roh","rwa","rwag","rwagg","rwags","rwan","rwanj","rwanh","rwad","rwal","rwalg","rwalm","rwalb","rwals","rwalt","rwalp","rwalh","rwam","rwab","rwabs","rwas","rwass","rwang","rwaj","rwac","rwak","rwat","rwap","rwah","rwae","rwaeg","rwaegg","rwaegs","rwaen","rwaenj","rwaenh","rwaed","rwael","rwaelg","rwaelm","rwaelb","rwaels","rwaelt","rwaelp","rwaelh","rwaem","rwaeb","rwaebs","rwaes","rwaess","rwaeng","rwaej","rwaec","rwaek","rwaet","rwaep","rwaeh","roe","roeg","roegg","roegs","roen","roenj","roenh","roed","roel","roelg","roelm","roelb","roels","roelt","roelp","roelh","roem","roeb","roebs","roes","roess","roeng","roej","roec","roek","roet","roep","roeh","ryo","ryog","ryogg","ryogs","ryon","ryonj","ryonh","ryod","ryol","ryolg","ryolm","ryolb","ryols","ryolt","ryolp","ryolh","ryom","ryob","ryobs","ryos","ryoss","ryong","ryoj","ryoc","ryok","ryot","ryop","ryoh","ru","rug","rugg","rugs","run","runj","runh","rud","rul","rulg","rulm","rulb","ruls","rult","rulp","rulh","rum","rub","rubs","rus","russ","rung","ruj","ruc"],["ruk","rut","rup","ruh","rweo","rweog","rweogg","rweogs","rweon","rweonj","rweonh","rweod","rweol","rweolg","rweolm","rweolb","rweols","rweolt","rweolp","rweolh","rweom","rweob","rweobs","rweos","rweoss","rweong","rweoj","rweoc","rweok","rweot","rweop","rweoh","rwe","rweg","rwegg","rwegs","rwen","rwenj","rwenh","rwed","rwel","rwelg","rwelm","rwelb","rwels","rwelt","rwelp","rwelh","rwem","rweb","rwebs","rwes","rwess","rweng","rwej","rwec","rwek","rwet","rwep","rweh","rwi","rwig","rwigg","rwigs","rwin","rwinj","rwinh","rwid","rwil","rwilg","rwilm","rwilb","rwils","rwilt","rwilp","rwilh","rwim","rwib","rwibs","rwis","rwiss","rwing","rwij","rwic","rwik","rwit","rwip","rwih","ryu","ryug","ryugg","ryugs","ryun","ryunj","ryunh","ryud","ryul","ryulg","ryulm","ryulb","ryuls","ryult","ryulp","ryulh","ryum","ryub","ryubs","ryus","ryuss","ryung","ryuj","ryuc","ryuk","ryut","ryup","ryuh","reu","reug","reugg","reugs","reun","reunj","reunh","reud","reul","reulg","reulm","reulb","reuls","reult","reulp","reulh","reum","reub","reubs","reus","reuss","reung","reuj","reuc","reuk","reut","reup","reuh","ryi","ryig","ryigg","ryigs","ryin","ryinj","ryinh","ryid","ryil","ryilg","ryilm","ryilb","ryils","ryilt","ryilp","ryilh","ryim","ryib","ryibs","ryis","ryiss","rying","ryij","ryic","ryik","ryit","ryip","ryih","ri","rig","rigg","rigs","rin","rinj","rinh","rid","ril","rilg","rilm","rilb","rils","rilt","rilp","rilh","rim","rib","ribs","ris","riss","ring","rij","ric","rik","rit","rip","rih","ma","mag","magg","mags","man","manj","manh","mad","mal","malg","malm","malb","mals","malt","malp","malh","mam","mab","mabs","mas","mass","mang","maj","mac","mak","mat","map","mah","mae","maeg","maegg","maegs","maen","maenj","maenh","maed","mael","maelg","maelm","maelb","maels","maelt","maelp","maelh","maem","maeb","maebs","maes","maess","maeng","maej","maec","maek","maet","maep","maeh"],["mya","myag","myagg","myags","myan","myanj","myanh","myad","myal","myalg","myalm","myalb","myals","myalt","myalp","myalh","myam","myab","myabs","myas","myass","myang","myaj","myac","myak","myat","myap","myah","myae","myaeg","myaegg","myaegs","myaen","myaenj","myaenh","myaed","myael","myaelg","myaelm","myaelb","myaels","myaelt","myaelp","myaelh","myaem","myaeb","myaebs","myaes","myaess","myaeng","myaej","myaec","myaek","myaet","myaep","myaeh","meo","meog","meogg","meogs","meon","meonj","meonh","meod","meol","meolg","meolm","meolb","meols","meolt","meolp","meolh","meom","meob","meobs","meos","meoss","meong","meoj","meoc","meok","meot","meop","meoh","me","meg","megg","megs","men","menj","menh","med","mel","melg","melm","melb","mels","melt","melp","melh","mem","meb","mebs","mes","mess","meng","mej","mec","mek","met","mep","meh","myeo","myeog","myeogg","myeogs","myeon","myeonj","myeonh","myeod","myeol","myeolg","myeolm","myeolb","myeols","myeolt","myeolp","myeolh","myeom","myeob","myeobs","myeos","myeoss","myeong","myeoj","myeoc","myeok","myeot","myeop","myeoh","mye","myeg","myegg","myegs","myen","myenj","myenh","myed","myel","myelg","myelm","myelb","myels","myelt","myelp","myelh","myem","myeb","myebs","myes","myess","myeng","myej","myec","myek","myet","myep","myeh","mo","mog","mogg","mogs","mon","monj","monh","mod","mol","molg","molm","molb","mols","molt","molp","molh","mom","mob","mobs","mos","moss","mong","moj","moc","mok","mot","mop","moh","mwa","mwag","mwagg","mwags","mwan","mwanj","mwanh","mwad","mwal","mwalg","mwalm","mwalb","mwals","mwalt","mwalp","mwalh","mwam","mwab","mwabs","mwas","mwass","mwang","mwaj","mwac","mwak","mwat","mwap","mwah","mwae","mwaeg","mwaegg","mwaegs","mwaen","mwaenj","mwaenh","mwaed","mwael","mwaelg","mwaelm","mwaelb","mwaels","mwaelt","mwaelp","mwaelh","mwaem","mwaeb","mwaebs","mwaes","mwaess","mwaeng","mwaej","mwaec","mwaek","mwaet","mwaep","mwaeh","moe","moeg","moegg","moegs"],["moen","moenj","moenh","moed","moel","moelg","moelm","moelb","moels","moelt","moelp","moelh","moem","moeb","moebs","moes","moess","moeng","moej","moec","moek","moet","moep","moeh","myo","myog","myogg","myogs","myon","myonj","myonh","myod","myol","myolg","myolm","myolb","myols","myolt","myolp","myolh","myom","myob","myobs","myos","myoss","myong","myoj","myoc","myok","myot","myop","myoh","mu","mug","mugg","mugs","mun","munj","munh","mud","mul","mulg","mulm","mulb","muls","mult","mulp","mulh","mum","mub","mubs","mus","muss","mung","muj","muc","muk","mut","mup","muh","mweo","mweog","mweogg","mweogs","mweon","mweonj","mweonh","mweod","mweol","mweolg","mweolm","mweolb","mweols","mweolt","mweolp","mweolh","mweom","mweob","mweobs","mweos","mweoss","mweong","mweoj","mweoc","mweok","mweot","mweop","mweoh","mwe","mweg","mwegg","mwegs","mwen","mwenj","mwenh","mwed","mwel","mwelg","mwelm","mwelb","mwels","mwelt","mwelp","mwelh","mwem","mweb","mwebs","mwes","mwess","mweng","mwej","mwec","mwek","mwet","mwep","mweh","mwi","mwig","mwigg","mwigs","mwin","mwinj","mwinh","mwid","mwil","mwilg","mwilm","mwilb","mwils","mwilt","mwilp","mwilh","mwim","mwib","mwibs","mwis","mwiss","mwing","mwij","mwic","mwik","mwit","mwip","mwih","myu","myug","myugg","myugs","myun","myunj","myunh","myud","myul","myulg","myulm","myulb","myuls","myult","myulp","myulh","myum","myub","myubs","myus","myuss","myung","myuj","myuc","myuk","myut","myup","myuh","meu","meug","meugg","meugs","meun","meunj","meunh","meud","meul","meulg","meulm","meulb","meuls","meult","meulp","meulh","meum","meub","meubs","meus","meuss","meung","meuj","meuc","meuk","meut","meup","meuh","myi","myig","myigg","myigs","myin","myinj","myinh","myid","myil","myilg","myilm","myilb","myils","myilt","myilp","myilh","myim","myib","myibs","myis","myiss","mying","myij","myic","myik","myit","myip","myih","mi","mig","migg","migs","min","minj","minh","mid"],["mil","milg","milm","milb","mils","milt","milp","milh","mim","mib","mibs","mis","miss","ming","mij","mic","mik","mit","mip","mih","ba","bag","bagg","bags","ban","banj","banh","bad","bal","balg","balm","balb","bals","balt","balp","balh","bam","bab","babs","bas","bass","bang","baj","bac","bak","bat","bap","bah","bae","baeg","baegg","baegs","baen","baenj","baenh","baed","bael","baelg","baelm","baelb","baels","baelt","baelp","baelh","baem","baeb","baebs","baes","baess","baeng","baej","baec","baek","baet","baep","baeh","bya","byag","byagg","byags","byan","byanj","byanh","byad","byal","byalg","byalm","byalb","byals","byalt","byalp","byalh","byam","byab","byabs","byas","byass","byang","byaj","byac","byak","byat","byap","byah","byae","byaeg","byaegg","byaegs","byaen","byaenj","byaenh","byaed","byael","byaelg","byaelm","byaelb","byaels","byaelt","byaelp","byaelh","byaem","byaeb","byaebs","byaes","byaess","byaeng","byaej","byaec","byaek","byaet","byaep","byaeh","beo","beog","beogg","beogs","beon","beonj","beonh","beod","beol","beolg","beolm","beolb","beols","beolt","beolp","beolh","beom","beob","beobs","beos","beoss","beong","beoj","beoc","beok","beot","beop","beoh","be","beg","begg","begs","ben","benj","benh","bed","bel","belg","belm","belb","bels","belt","belp","belh","bem","beb","bebs","bes","bess","beng","bej","bec","bek","bet","bep","beh","byeo","byeog","byeogg","byeogs","byeon","byeonj","byeonh","byeod","byeol","byeolg","byeolm","byeolb","byeols","byeolt","byeolp","byeolh","byeom","byeob","byeobs","byeos","byeoss","byeong","byeoj","byeoc","byeok","byeot","byeop","byeoh","bye","byeg","byegg","byegs","byen","byenj","byenh","byed","byel","byelg","byelm","byelb","byels","byelt","byelp","byelh","byem","byeb","byebs","byes","byess","byeng","byej","byec","byek","byet","byep","byeh","bo","bog","bogg","bogs","bon","bonj","bonh","bod","bol","bolg","bolm","bolb"],["bols","bolt","bolp","bolh","bom","bob","bobs","bos","boss","bong","boj","boc","bok","bot","bop","boh","bwa","bwag","bwagg","bwags","bwan","bwanj","bwanh","bwad","bwal","bwalg","bwalm","bwalb","bwals","bwalt","bwalp","bwalh","bwam","bwab","bwabs","bwas","bwass","bwang","bwaj","bwac","bwak","bwat","bwap","bwah","bwae","bwaeg","bwaegg","bwaegs","bwaen","bwaenj","bwaenh","bwaed","bwael","bwaelg","bwaelm","bwaelb","bwaels","bwaelt","bwaelp","bwaelh","bwaem","bwaeb","bwaebs","bwaes","bwaess","bwaeng","bwaej","bwaec","bwaek","bwaet","bwaep","bwaeh","boe","boeg","boegg","boegs","boen","boenj","boenh","boed","boel","boelg","boelm","boelb","boels","boelt","boelp","boelh","boem","boeb","boebs","boes","boess","boeng","boej","boec","boek","boet","boep","boeh","byo","byog","byogg","byogs","byon","byonj","byonh","byod","byol","byolg","byolm","byolb","byols","byolt","byolp","byolh","byom","byob","byobs","byos","byoss","byong","byoj","byoc","byok","byot","byop","byoh","bu","bug","bugg","bugs","bun","bunj","bunh","bud","bul","bulg","bulm","bulb","buls","bult","bulp","bulh","bum","bub","bubs","bus","buss","bung","buj","buc","buk","but","bup","buh","bweo","bweog","bweogg","bweogs","bweon","bweonj","bweonh","bweod","bweol","bweolg","bweolm","bweolb","bweols","bweolt","bweolp","bweolh","bweom","bweob","bweobs","bweos","bweoss","bweong","bweoj","bweoc","bweok","bweot","bweop","bweoh","bwe","bweg","bwegg","bwegs","bwen","bwenj","bwenh","bwed","bwel","bwelg","bwelm","bwelb","bwels","bwelt","bwelp","bwelh","bwem","bweb","bwebs","bwes","bwess","bweng","bwej","bwec","bwek","bwet","bwep","bweh","bwi","bwig","bwigg","bwigs","bwin","bwinj","bwinh","bwid","bwil","bwilg","bwilm","bwilb","bwils","bwilt","bwilp","bwilh","bwim","bwib","bwibs","bwis","bwiss","bwing","bwij","bwic","bwik","bwit","bwip","bwih","byu","byug","byugg","byugs","byun","byunj","byunh","byud","byul","byulg","byulm","byulb","byuls","byult","byulp","byulh"],["byum","byub","byubs","byus","byuss","byung","byuj","byuc","byuk","byut","byup","byuh","beu","beug","beugg","beugs","beun","beunj","beunh","beud","beul","beulg","beulm","beulb","beuls","beult","beulp","beulh","beum","beub","beubs","beus","beuss","beung","beuj","beuc","beuk","beut","beup","beuh","byi","byig","byigg","byigs","byin","byinj","byinh","byid","byil","byilg","byilm","byilb","byils","byilt","byilp","byilh","byim","byib","byibs","byis","byiss","bying","byij","byic","byik","byit","byip","byih","bi","big","bigg","bigs","bin","binj","binh","bid","bil","bilg","bilm","bilb","bils","bilt","bilp","bilh","bim","bib","bibs","bis","biss","bing","bij","bic","bik","bit","bip","bih","bba","bbag","bbagg","bbags","bban","bbanj","bbanh","bbad","bbal","bbalg","bbalm","bbalb","bbals","bbalt","bbalp","bbalh","bbam","bbab","bbabs","bbas","bbass","bbang","bbaj","bbac","bbak","bbat","bbap","bbah","bbae","bbaeg","bbaegg","bbaegs","bbaen","bbaenj","bbaenh","bbaed","bbael","bbaelg","bbaelm","bbaelb","bbaels","bbaelt","bbaelp","bbaelh","bbaem","bbaeb","bbaebs","bbaes","bbaess","bbaeng","bbaej","bbaec","bbaek","bbaet","bbaep","bbaeh","bbya","bbyag","bbyagg","bbyags","bbyan","bbyanj","bbyanh","bbyad","bbyal","bbyalg","bbyalm","bbyalb","bbyals","bbyalt","bbyalp","bbyalh","bbyam","bbyab","bbyabs","bbyas","bbyass","bbyang","bbyaj","bbyac","bbyak","bbyat","bbyap","bbyah","bbyae","bbyaeg","bbyaegg","bbyaegs","bbyaen","bbyaenj","bbyaenh","bbyaed","bbyael","bbyaelg","bbyaelm","bbyaelb","bbyaels","bbyaelt","bbyaelp","bbyaelh","bbyaem","bbyaeb","bbyaebs","bbyaes","bbyaess","bbyaeng","bbyaej","bbyaec","bbyaek","bbyaet","bbyaep","bbyaeh","bbeo","bbeog","bbeogg","bbeogs","bbeon","bbeonj","bbeonh","bbeod","bbeol","bbeolg","bbeolm","bbeolb","bbeols","bbeolt","bbeolp","bbeolh","bbeom","bbeob","bbeobs","bbeos","bbeoss","bbeong","bbeoj","bbeoc","bbeok","bbeot","bbeop","bbeoh","bbe","bbeg","bbegg","bbegs","bben","bbenj","bbenh","bbed","bbel","bbelg","bbelm","bbelb","bbels","bbelt","bbelp","bbelh","bbem","bbeb","bbebs","bbes"],["bbess","bbeng","bbej","bbec","bbek","bbet","bbep","bbeh","bbyeo","bbyeog","bbyeogg","bbyeogs","bbyeon","bbyeonj","bbyeonh","bbyeod","bbyeol","bbyeolg","bbyeolm","bbyeolb","bbyeols","bbyeolt","bbyeolp","bbyeolh","bbyeom","bbyeob","bbyeobs","bbyeos","bbyeoss","bbyeong","bbyeoj","bbyeoc","bbyeok","bbyeot","bbyeop","bbyeoh","bbye","bbyeg","bbyegg","bbyegs","bbyen","bbyenj","bbyenh","bbyed","bbyel","bbyelg","bbyelm","bbyelb","bbyels","bbyelt","bbyelp","bbyelh","bbyem","bbyeb","bbyebs","bbyes","bbyess","bbyeng","bbyej","bbyec","bbyek","bbyet","bbyep","bbyeh","bbo","bbog","bbogg","bbogs","bbon","bbonj","bbonh","bbod","bbol","bbolg","bbolm","bbolb","bbols","bbolt","bbolp","bbolh","bbom","bbob","bbobs","bbos","bboss","bbong","bboj","bboc","bbok","bbot","bbop","bboh","bbwa","bbwag","bbwagg","bbwags","bbwan","bbwanj","bbwanh","bbwad","bbwal","bbwalg","bbwalm","bbwalb","bbwals","bbwalt","bbwalp","bbwalh","bbwam","bbwab","bbwabs","bbwas","bbwass","bbwang","bbwaj","bbwac","bbwak","bbwat","bbwap","bbwah","bbwae","bbwaeg","bbwaegg","bbwaegs","bbwaen","bbwaenj","bbwaenh","bbwaed","bbwael","bbwaelg","bbwaelm","bbwaelb","bbwaels","bbwaelt","bbwaelp","bbwaelh","bbwaem","bbwaeb","bbwaebs","bbwaes","bbwaess","bbwaeng","bbwaej","bbwaec","bbwaek","bbwaet","bbwaep","bbwaeh","bboe","bboeg","bboegg","bboegs","bboen","bboenj","bboenh","bboed","bboel","bboelg","bboelm","bboelb","bboels","bboelt","bboelp","bboelh","bboem","bboeb","bboebs","bboes","bboess","bboeng","bboej","bboec","bboek","bboet","bboep","bboeh","bbyo","bbyog","bbyogg","bbyogs","bbyon","bbyonj","bbyonh","bbyod","bbyol","bbyolg","bbyolm","bbyolb","bbyols","bbyolt","bbyolp","bbyolh","bbyom","bbyob","bbyobs","bbyos","bbyoss","bbyong","bbyoj","bbyoc","bbyok","bbyot","bbyop","bbyoh","bbu","bbug","bbugg","bbugs","bbun","bbunj","bbunh","bbud","bbul","bbulg","bbulm","bbulb","bbuls","bbult","bbulp","bbulh","bbum","bbub","bbubs","bbus","bbuss","bbung","bbuj","bbuc","bbuk","bbut","bbup","bbuh","bbweo","bbweog","bbweogg","bbweogs","bbweon","bbweonj","bbweonh","bbweod","bbweol","bbweolg","bbweolm","bbweolb","bbweols","bbweolt","bbweolp","bbweolh","bbweom","bbweob","bbweobs","bbweos","bbweoss","bbweong","bbweoj","bbweoc"],["bbweok","bbweot","bbweop","bbweoh","bbwe","bbweg","bbwegg","bbwegs","bbwen","bbwenj","bbwenh","bbwed","bbwel","bbwelg","bbwelm","bbwelb","bbwels","bbwelt","bbwelp","bbwelh","bbwem","bbweb","bbwebs","bbwes","bbwess","bbweng","bbwej","bbwec","bbwek","bbwet","bbwep","bbweh","bbwi","bbwig","bbwigg","bbwigs","bbwin","bbwinj","bbwinh","bbwid","bbwil","bbwilg","bbwilm","bbwilb","bbwils","bbwilt","bbwilp","bbwilh","bbwim","bbwib","bbwibs","bbwis","bbwiss","bbwing","bbwij","bbwic","bbwik","bbwit","bbwip","bbwih","bbyu","bbyug","bbyugg","bbyugs","bbyun","bbyunj","bbyunh","bbyud","bbyul","bbyulg","bbyulm","bbyulb","bbyuls","bbyult","bbyulp","bbyulh","bbyum","bbyub","bbyubs","bbyus","bbyuss","bbyung","bbyuj","bbyuc","bbyuk","bbyut","bbyup","bbyuh","bbeu","bbeug","bbeugg","bbeugs","bbeun","bbeunj","bbeunh","bbeud","bbeul","bbeulg","bbeulm","bbeulb","bbeuls","bbeult","bbeulp","bbeulh","bbeum","bbeub","bbeubs","bbeus","bbeuss","bbeung","bbeuj","bbeuc","bbeuk","bbeut","bbeup","bbeuh","bbyi","bbyig","bbyigg","bbyigs","bbyin","bbyinj","bbyinh","bbyid","bbyil","bbyilg","bbyilm","bbyilb","bbyils","bbyilt","bbyilp","bbyilh","bbyim","bbyib","bbyibs","bbyis","bbyiss","bbying","bbyij","bbyic","bbyik","bbyit","bbyip","bbyih","bbi","bbig","bbigg","bbigs","bbin","bbinj","bbinh","bbid","bbil","bbilg","bbilm","bbilb","bbils","bbilt","bbilp","bbilh","bbim","bbib","bbibs","bbis","bbiss","bbing","bbij","bbic","bbik","bbit","bbip","bbih","sa","sag","sagg","sags","san","sanj","sanh","sad","sal","salg","salm","salb","sals","salt","salp","salh","sam","sab","sabs","sas","sass","sang","saj","sac","sak","sat","sap","sah","sae","saeg","saegg","saegs","saen","saenj","saenh","saed","sael","saelg","saelm","saelb","saels","saelt","saelp","saelh","saem","saeb","saebs","saes","saess","saeng","saej","saec","saek","saet","saep","saeh","sya","syag","syagg","syags","syan","syanj","syanh","syad","syal","syalg","syalm","syalb","syals","syalt","syalp","syalh","syam","syab","syabs","syas","syass","syang","syaj","syac","syak","syat","syap","syah"],["syae","syaeg","syaegg","syaegs","syaen","syaenj","syaenh","syaed","syael","syaelg","syaelm","syaelb","syaels","syaelt","syaelp","syaelh","syaem","syaeb","syaebs","syaes","syaess","syaeng","syaej","syaec","syaek","syaet","syaep","syaeh","seo","seog","seogg","seogs","seon","seonj","seonh","seod","seol","seolg","seolm","seolb","seols","seolt","seolp","seolh","seom","seob","seobs","seos","seoss","seong","seoj","seoc","seok","seot","seop","seoh","se","seg","segg","segs","sen","senj","senh","sed","sel","selg","selm","selb","sels","selt","selp","selh","sem","seb","sebs","ses","sess","seng","sej","sec","sek","set","sep","seh","syeo","syeog","syeogg","syeogs","syeon","syeonj","syeonh","syeod","syeol","syeolg","syeolm","syeolb","syeols","syeolt","syeolp","syeolh","syeom","syeob","syeobs","syeos","syeoss","syeong","syeoj","syeoc","syeok","syeot","syeop","syeoh","sye","syeg","syegg","syegs","syen","syenj","syenh","syed","syel","syelg","syelm","syelb","syels","syelt","syelp","syelh","syem","syeb","syebs","syes","syess","syeng","syej","syec","syek","syet","syep","syeh","so","sog","sogg","sogs","son","sonj","sonh","sod","sol","solg","solm","solb","sols","solt","solp","solh","som","sob","sobs","sos","soss","song","soj","soc","sok","sot","sop","soh","swa","swag","swagg","swags","swan","swanj","swanh","swad","swal","swalg","swalm","swalb","swals","swalt","swalp","swalh","swam","swab","swabs","swas","swass","swang","swaj","swac","swak","swat","swap","swah","swae","swaeg","swaegg","swaegs","swaen","swaenj","swaenh","swaed","swael","swaelg","swaelm","swaelb","swaels","swaelt","swaelp","swaelh","swaem","swaeb","swaebs","swaes","swaess","swaeng","swaej","swaec","swaek","swaet","swaep","swaeh","soe","soeg","soegg","soegs","soen","soenj","soenh","soed","soel","soelg","soelm","soelb","soels","soelt","soelp","soelh","soem","soeb","soebs","soes","soess","soeng","soej","soec","soek","soet","soep","soeh","syo","syog","syogg","syogs"],["syon","syonj","syonh","syod","syol","syolg","syolm","syolb","syols","syolt","syolp","syolh","syom","syob","syobs","syos","syoss","syong","syoj","syoc","syok","syot","syop","syoh","su","sug","sugg","sugs","sun","sunj","sunh","sud","sul","sulg","sulm","sulb","suls","sult","sulp","sulh","sum","sub","subs","sus","suss","sung","suj","suc","suk","sut","sup","suh","sweo","sweog","sweogg","sweogs","sweon","sweonj","sweonh","sweod","sweol","sweolg","sweolm","sweolb","sweols","sweolt","sweolp","sweolh","sweom","sweob","sweobs","sweos","sweoss","sweong","sweoj","sweoc","sweok","sweot","sweop","sweoh","swe","sweg","swegg","swegs","swen","swenj","swenh","swed","swel","swelg","swelm","swelb","swels","swelt","swelp","swelh","swem","sweb","swebs","swes","swess","sweng","swej","swec","swek","swet","swep","sweh","swi","swig","swigg","swigs","swin","swinj","swinh","swid","swil","swilg","swilm","swilb","swils","swilt","swilp","swilh","swim","swib","swibs","swis","swiss","swing","swij","swic","swik","swit","swip","swih","syu","syug","syugg","syugs","syun","syunj","syunh","syud","syul","syulg","syulm","syulb","syuls","syult","syulp","syulh","syum","syub","syubs","syus","syuss","syung","syuj","syuc","syuk","syut","syup","syuh","seu","seug","seugg","seugs","seun","seunj","seunh","seud","seul","seulg","seulm","seulb","seuls","seult","seulp","seulh","seum","seub","seubs","seus","seuss","seung","seuj","seuc","seuk","seut","seup","seuh","syi","syig","syigg","syigs","syin","syinj","syinh","syid","syil","syilg","syilm","syilb","syils","syilt","syilp","syilh","syim","syib","syibs","syis","syiss","sying","syij","syic","syik","syit","syip","syih","si","sig","sigg","sigs","sin","sinj","sinh","sid","sil","silg","silm","silb","sils","silt","silp","silh","sim","sib","sibs","sis","siss","sing","sij","sic","sik","sit","sip","sih","ssa","ssag","ssagg","ssags","ssan","ssanj","ssanh","ssad"],["ssal","ssalg","ssalm","ssalb","ssals","ssalt","ssalp","ssalh","ssam","ssab","ssabs","ssas","ssass","ssang","ssaj","ssac","ssak","ssat","ssap","ssah","ssae","ssaeg","ssaegg","ssaegs","ssaen","ssaenj","ssaenh","ssaed","ssael","ssaelg","ssaelm","ssaelb","ssaels","ssaelt","ssaelp","ssaelh","ssaem","ssaeb","ssaebs","ssaes","ssaess","ssaeng","ssaej","ssaec","ssaek","ssaet","ssaep","ssaeh","ssya","ssyag","ssyagg","ssyags","ssyan","ssyanj","ssyanh","ssyad","ssyal","ssyalg","ssyalm","ssyalb","ssyals","ssyalt","ssyalp","ssyalh","ssyam","ssyab","ssyabs","ssyas","ssyass","ssyang","ssyaj","ssyac","ssyak","ssyat","ssyap","ssyah","ssyae","ssyaeg","ssyaegg","ssyaegs","ssyaen","ssyaenj","ssyaenh","ssyaed","ssyael","ssyaelg","ssyaelm","ssyaelb","ssyaels","ssyaelt","ssyaelp","ssyaelh","ssyaem","ssyaeb","ssyaebs","ssyaes","ssyaess","ssyaeng","ssyaej","ssyaec","ssyaek","ssyaet","ssyaep","ssyaeh","sseo","sseog","sseogg","sseogs","sseon","sseonj","sseonh","sseod","sseol","sseolg","sseolm","sseolb","sseols","sseolt","sseolp","sseolh","sseom","sseob","sseobs","sseos","sseoss","sseong","sseoj","sseoc","sseok","sseot","sseop","sseoh","sse","sseg","ssegg","ssegs","ssen","ssenj","ssenh","ssed","ssel","sselg","sselm","sselb","ssels","sselt","sselp","sselh","ssem","sseb","ssebs","sses","ssess","sseng","ssej","ssec","ssek","sset","ssep","sseh","ssyeo","ssyeog","ssyeogg","ssyeogs","ssyeon","ssyeonj","ssyeonh","ssyeod","ssyeol","ssyeolg","ssyeolm","ssyeolb","ssyeols","ssyeolt","ssyeolp","ssyeolh","ssyeom","ssyeob","ssyeobs","ssyeos","ssyeoss","ssyeong","ssyeoj","ssyeoc","ssyeok","ssyeot","ssyeop","ssyeoh","ssye","ssyeg","ssyegg","ssyegs","ssyen","ssyenj","ssyenh","ssyed","ssyel","ssyelg","ssyelm","ssyelb","ssyels","ssyelt","ssyelp","ssyelh","ssyem","ssyeb","ssyebs","ssyes","ssyess","ssyeng","ssyej","ssyec","ssyek","ssyet","ssyep","ssyeh","sso","ssog","ssogg","ssogs","sson","ssonj","ssonh","ssod","ssol","ssolg","ssolm","ssolb","ssols","ssolt","ssolp","ssolh","ssom","ssob","ssobs","ssos","ssoss","ssong","ssoj","ssoc","ssok","ssot","ssop","ssoh","sswa","sswag","sswagg","sswags","sswan","sswanj","sswanh","sswad","sswal","sswalg","sswalm","sswalb"],["sswals","sswalt","sswalp","sswalh","sswam","sswab","sswabs","sswas","sswass","sswang","sswaj","sswac","sswak","sswat","sswap","sswah","sswae","sswaeg","sswaegg","sswaegs","sswaen","sswaenj","sswaenh","sswaed","sswael","sswaelg","sswaelm","sswaelb","sswaels","sswaelt","sswaelp","sswaelh","sswaem","sswaeb","sswaebs","sswaes","sswaess","sswaeng","sswaej","sswaec","sswaek","sswaet","sswaep","sswaeh","ssoe","ssoeg","ssoegg","ssoegs","ssoen","ssoenj","ssoenh","ssoed","ssoel","ssoelg","ssoelm","ssoelb","ssoels","ssoelt","ssoelp","ssoelh","ssoem","ssoeb","ssoebs","ssoes","ssoess","ssoeng","ssoej","ssoec","ssoek","ssoet","ssoep","ssoeh","ssyo","ssyog","ssyogg","ssyogs","ssyon","ssyonj","ssyonh","ssyod","ssyol","ssyolg","ssyolm","ssyolb","ssyols","ssyolt","ssyolp","ssyolh","ssyom","ssyob","ssyobs","ssyos","ssyoss","ssyong","ssyoj","ssyoc","ssyok","ssyot","ssyop","ssyoh","ssu","ssug","ssugg","ssugs","ssun","ssunj","ssunh","ssud","ssul","ssulg","ssulm","ssulb","ssuls","ssult","ssulp","ssulh","ssum","ssub","ssubs","ssus","ssuss","ssung","ssuj","ssuc","ssuk","ssut","ssup","ssuh","ssweo","ssweog","ssweogg","ssweogs","ssweon","ssweonj","ssweonh","ssweod","ssweol","ssweolg","ssweolm","ssweolb","ssweols","ssweolt","ssweolp","ssweolh","ssweom","ssweob","ssweobs","ssweos","ssweoss","ssweong","ssweoj","ssweoc","ssweok","ssweot","ssweop","ssweoh","sswe","ssweg","sswegg","sswegs","sswen","sswenj","sswenh","sswed","sswel","sswelg","sswelm","sswelb","sswels","sswelt","sswelp","sswelh","sswem","ssweb","sswebs","sswes","sswess","ssweng","sswej","sswec","sswek","sswet","sswep","ssweh","sswi","sswig","sswigg","sswigs","sswin","sswinj","sswinh","sswid","sswil","sswilg","sswilm","sswilb","sswils","sswilt","sswilp","sswilh","sswim","sswib","sswibs","sswis","sswiss","sswing","sswij","sswic","sswik","sswit","sswip","sswih","ssyu","ssyug","ssyugg","ssyugs","ssyun","ssyunj","ssyunh","ssyud","ssyul","ssyulg","ssyulm","ssyulb","ssyuls","ssyult","ssyulp","ssyulh","ssyum","ssyub","ssyubs","ssyus","ssyuss","ssyung","ssyuj","ssyuc","ssyuk","ssyut","ssyup","ssyuh","sseu","sseug","sseugg","sseugs","sseun","sseunj","sseunh","sseud","sseul","sseulg","sseulm","sseulb","sseuls","sseult","sseulp","sseulh"],["sseum","sseub","sseubs","sseus","sseuss","sseung","sseuj","sseuc","sseuk","sseut","sseup","sseuh","ssyi","ssyig","ssyigg","ssyigs","ssyin","ssyinj","ssyinh","ssyid","ssyil","ssyilg","ssyilm","ssyilb","ssyils","ssyilt","ssyilp","ssyilh","ssyim","ssyib","ssyibs","ssyis","ssyiss","ssying","ssyij","ssyic","ssyik","ssyit","ssyip","ssyih","ssi","ssig","ssigg","ssigs","ssin","ssinj","ssinh","ssid","ssil","ssilg","ssilm","ssilb","ssils","ssilt","ssilp","ssilh","ssim","ssib","ssibs","ssis","ssiss","ssing","ssij","ssic","ssik","ssit","ssip","ssih","a","ag","agg","ags","an","anj","anh","ad","al","alg","alm","alb","als","alt","alp","alh","am","ab","abs","as","ass","ang","aj","ac","ak","at","ap","ah","ae","aeg","aegg","aegs","aen","aenj","aenh","aed","ael","aelg","aelm","aelb","aels","aelt","aelp","aelh","aem","aeb","aebs","aes","aess","aeng","aej","aec","aek","aet","aep","aeh","ya","yag","yagg","yags","yan","yanj","yanh","yad","yal","yalg","yalm","yalb","yals","yalt","yalp","yalh","yam","yab","yabs","yas","yass","yang","yaj","yac","yak","yat","yap","yah","yae","yaeg","yaegg","yaegs","yaen","yaenj","yaenh","yaed","yael","yaelg","yaelm","yaelb","yaels","yaelt","yaelp","yaelh","yaem","yaeb","yaebs","yaes","yaess","yaeng","yaej","yaec","yaek","yaet","yaep","yaeh","eo","eog","eogg","eogs","eon","eonj","eonh","eod","eol","eolg","eolm","eolb","eols","eolt","eolp","eolh","eom","eob","eobs","eos","eoss","eong","eoj","eoc","eok","eot","eop","eoh","e","eg","egg","egs","en","enj","enh","ed","el","elg","elm","elb","els","elt","elp","elh","em","eb","ebs","es","ess","eng","ej","ec","ek","et","ep","eh","yeo","yeog","yeogg","yeogs","yeon","yeonj","yeonh","yeod","yeol","yeolg","yeolm","yeolb","yeols","yeolt","yeolp","yeolh","yeom","yeob","yeobs","yeos"],["yeoss","yeong","yeoj","yeoc","yeok","yeot","yeop","yeoh","ye","yeg","yegg","yegs","yen","yenj","yenh","yed","yel","yelg","yelm","yelb","yels","yelt","yelp","yelh","yem","yeb","yebs","yes","yess","yeng","yej","yec","yek","yet","yep","yeh","o","og","ogg","ogs","on","onj","onh","od","ol","olg","olm","olb","ols","olt","olp","olh","om","ob","obs","os","oss","ong","oj","oc","ok","ot","op","oh","wa","wag","wagg","wags","wan","wanj","wanh","wad","wal","walg","walm","walb","wals","walt","walp","walh","wam","wab","wabs","was","wass","wang","waj","wac","wak","wat","wap","wah","wae","waeg","waegg","waegs","waen","waenj","waenh","waed","wael","waelg","waelm","waelb","waels","waelt","waelp","waelh","waem","waeb","waebs","waes","waess","waeng","waej","waec","waek","waet","waep","waeh","oe","oeg","oegg","oegs","oen","oenj","oenh","oed","oel","oelg","oelm","oelb","oels","oelt","oelp","oelh","oem","oeb","oebs","oes","oess","oeng","oej","oec","oek","oet","oep","oeh","yo","yog","yogg","yogs","yon","yonj","yonh","yod","yol","yolg","yolm","yolb","yols","yolt","yolp","yolh","yom","yob","yobs","yos","yoss","yong","yoj","yoc","yok","yot","yop","yoh","u","ug","ugg","ugs","un","unj","unh","ud","ul","ulg","ulm","ulb","uls","ult","ulp","ulh","um","ub","ubs","us","uss","ung","uj","uc","uk","ut","up","uh","weo","weog","weogg","weogs","weon","weonj","weonh","weod","weol","weolg","weolm","weolb","weols","weolt","weolp","weolh","weom","weob","weobs","weos","weoss","weong","weoj","weoc","weok","weot","weop","weoh","we","weg","wegg","wegs","wen","wenj","wenh","wed","wel","welg","welm","welb","wels","welt","welp","welh","wem","web","webs","wes","wess","weng","wej","wec"],["wek","wet","wep","weh","wi","wig","wigg","wigs","win","winj","winh","wid","wil","wilg","wilm","wilb","wils","wilt","wilp","wilh","wim","wib","wibs","wis","wiss","wing","wij","wic","wik","wit","wip","wih","yu","yug","yugg","yugs","yun","yunj","yunh","yud","yul","yulg","yulm","yulb","yuls","yult","yulp","yulh","yum","yub","yubs","yus","yuss","yung","yuj","yuc","yuk","yut","yup","yuh","eu","eug","eugg","eugs","eun","eunj","eunh","eud","eul","eulg","eulm","eulb","euls","eult","eulp","eulh","eum","eub","eubs","eus","euss","eung","euj","euc","euk","eut","eup","euh","yi","yig","yigg","yigs","yin","yinj","yinh","yid","yil","yilg","yilm","yilb","yils","yilt","yilp","yilh","yim","yib","yibs","yis","yiss","ying","yij","yic","yik","yit","yip","yih","i","ig","igg","igs","in","inj","inh","id","il","ilg","ilm","ilb","ils","ilt","ilp","ilh","im","ib","ibs","is","iss","ing","ij","ic","ik","it","ip","ih","ja","jag","jagg","jags","jan","janj","janh","jad","jal","jalg","jalm","jalb","jals","jalt","jalp","jalh","jam","jab","jabs","jas","jass","jang","jaj","jac","jak","jat","jap","jah","jae","jaeg","jaegg","jaegs","jaen","jaenj","jaenh","jaed","jael","jaelg","jaelm","jaelb","jaels","jaelt","jaelp","jaelh","jaem","jaeb","jaebs","jaes","jaess","jaeng","jaej","jaec","jaek","jaet","jaep","jaeh","jya","jyag","jyagg","jyags","jyan","jyanj","jyanh","jyad","jyal","jyalg","jyalm","jyalb","jyals","jyalt","jyalp","jyalh","jyam","jyab","jyabs","jyas","jyass","jyang","jyaj","jyac","jyak","jyat","jyap","jyah","jyae","jyaeg","jyaegg","jyaegs","jyaen","jyaenj","jyaenh","jyaed","jyael","jyaelg","jyaelm","jyaelb","jyaels","jyaelt","jyaelp","jyaelh","jyaem","jyaeb","jyaebs","jyaes","jyaess","jyaeng","jyaej","jyaec","jyaek","jyaet","jyaep","jyaeh"],["jeo","jeog","jeogg","jeogs","jeon","jeonj","jeonh","jeod","jeol","jeolg","jeolm","jeolb","jeols","jeolt","jeolp","jeolh","jeom","jeob","jeobs","jeos","jeoss","jeong","jeoj","jeoc","jeok","jeot","jeop","jeoh","je","jeg","jegg","jegs","jen","jenj","jenh","jed","jel","jelg","jelm","jelb","jels","jelt","jelp","jelh","jem","jeb","jebs","jes","jess","jeng","jej","jec","jek","jet","jep","jeh","jyeo","jyeog","jyeogg","jyeogs","jyeon","jyeonj","jyeonh","jyeod","jyeol","jyeolg","jyeolm","jyeolb","jyeols","jyeolt","jyeolp","jyeolh","jyeom","jyeob","jyeobs","jyeos","jyeoss","jyeong","jyeoj","jyeoc","jyeok","jyeot","jyeop","jyeoh","jye","jyeg","jyegg","jyegs","jyen","jyenj","jyenh","jyed","jyel","jyelg","jyelm","jyelb","jyels","jyelt","jyelp","jyelh","jyem","jyeb","jyebs","jyes","jyess","jyeng","jyej","jyec","jyek","jyet","jyep","jyeh","jo","jog","jogg","jogs","jon","jonj","jonh","jod","jol","jolg","jolm","jolb","jols","jolt","jolp","jolh","jom","job","jobs","jos","joss","jong","joj","joc","jok","jot","jop","joh","jwa","jwag","jwagg","jwags","jwan","jwanj","jwanh","jwad","jwal","jwalg","jwalm","jwalb","jwals","jwalt","jwalp","jwalh","jwam","jwab","jwabs","jwas","jwass","jwang","jwaj","jwac","jwak","jwat","jwap","jwah","jwae","jwaeg","jwaegg","jwaegs","jwaen","jwaenj","jwaenh","jwaed","jwael","jwaelg","jwaelm","jwaelb","jwaels","jwaelt","jwaelp","jwaelh","jwaem","jwaeb","jwaebs","jwaes","jwaess","jwaeng","jwaej","jwaec","jwaek","jwaet","jwaep","jwaeh","joe","joeg","joegg","joegs","joen","joenj","joenh","joed","joel","joelg","joelm","joelb","joels","joelt","joelp","joelh","joem","joeb","joebs","joes","joess","joeng","joej","joec","joek","joet","joep","joeh","jyo","jyog","jyogg","jyogs","jyon","jyonj","jyonh","jyod","jyol","jyolg","jyolm","jyolb","jyols","jyolt","jyolp","jyolh","jyom","jyob","jyobs","jyos","jyoss","jyong","jyoj","jyoc","jyok","jyot","jyop","jyoh","ju","jug","jugg","jugs"],["jun","junj","junh","jud","jul","julg","julm","julb","juls","jult","julp","julh","jum","jub","jubs","jus","juss","jung","juj","juc","juk","jut","jup","juh","jweo","jweog","jweogg","jweogs","jweon","jweonj","jweonh","jweod","jweol","jweolg","jweolm","jweolb","jweols","jweolt","jweolp","jweolh","jweom","jweob","jweobs","jweos","jweoss","jweong","jweoj","jweoc","jweok","jweot","jweop","jweoh","jwe","jweg","jwegg","jwegs","jwen","jwenj","jwenh","jwed","jwel","jwelg","jwelm","jwelb","jwels","jwelt","jwelp","jwelh","jwem","jweb","jwebs","jwes","jwess","jweng","jwej","jwec","jwek","jwet","jwep","jweh","jwi","jwig","jwigg","jwigs","jwin","jwinj","jwinh","jwid","jwil","jwilg","jwilm","jwilb","jwils","jwilt","jwilp","jwilh","jwim","jwib","jwibs","jwis","jwiss","jwing","jwij","jwic","jwik","jwit","jwip","jwih","jyu","jyug","jyugg","jyugs","jyun","jyunj","jyunh","jyud","jyul","jyulg","jyulm","jyulb","jyuls","jyult","jyulp","jyulh","jyum","jyub","jyubs","jyus","jyuss","jyung","jyuj","jyuc","jyuk","jyut","jyup","jyuh","jeu","jeug","jeugg","jeugs","jeun","jeunj","jeunh","jeud","jeul","jeulg","jeulm","jeulb","jeuls","jeult","jeulp","jeulh","jeum","jeub","jeubs","jeus","jeuss","jeung","jeuj","jeuc","jeuk","jeut","jeup","jeuh","jyi","jyig","jyigg","jyigs","jyin","jyinj","jyinh","jyid","jyil","jyilg","jyilm","jyilb","jyils","jyilt","jyilp","jyilh","jyim","jyib","jyibs","jyis","jyiss","jying","jyij","jyic","jyik","jyit","jyip","jyih","ji","jig","jigg","jigs","jin","jinj","jinh","jid","jil","jilg","jilm","jilb","jils","jilt","jilp","jilh","jim","jib","jibs","jis","jiss","jing","jij","jic","jik","jit","jip","jih","jja","jjag","jjagg","jjags","jjan","jjanj","jjanh","jjad","jjal","jjalg","jjalm","jjalb","jjals","jjalt","jjalp","jjalh","jjam","jjab","jjabs","jjas","jjass","jjang","jjaj","jjac","jjak","jjat","jjap","jjah","jjae","jjaeg","jjaegg","jjaegs","jjaen","jjaenj","jjaenh","jjaed"],["jjael","jjaelg","jjaelm","jjaelb","jjaels","jjaelt","jjaelp","jjaelh","jjaem","jjaeb","jjaebs","jjaes","jjaess","jjaeng","jjaej","jjaec","jjaek","jjaet","jjaep","jjaeh","jjya","jjyag","jjyagg","jjyags","jjyan","jjyanj","jjyanh","jjyad","jjyal","jjyalg","jjyalm","jjyalb","jjyals","jjyalt","jjyalp","jjyalh","jjyam","jjyab","jjyabs","jjyas","jjyass","jjyang","jjyaj","jjyac","jjyak","jjyat","jjyap","jjyah","jjyae","jjyaeg","jjyaegg","jjyaegs","jjyaen","jjyaenj","jjyaenh","jjyaed","jjyael","jjyaelg","jjyaelm","jjyaelb","jjyaels","jjyaelt","jjyaelp","jjyaelh","jjyaem","jjyaeb","jjyaebs","jjyaes","jjyaess","jjyaeng","jjyaej","jjyaec","jjyaek","jjyaet","jjyaep","jjyaeh","jjeo","jjeog","jjeogg","jjeogs","jjeon","jjeonj","jjeonh","jjeod","jjeol","jjeolg","jjeolm","jjeolb","jjeols","jjeolt","jjeolp","jjeolh","jjeom","jjeob","jjeobs","jjeos","jjeoss","jjeong","jjeoj","jjeoc","jjeok","jjeot","jjeop","jjeoh","jje","jjeg","jjegg","jjegs","jjen","jjenj","jjenh","jjed","jjel","jjelg","jjelm","jjelb","jjels","jjelt","jjelp","jjelh","jjem","jjeb","jjebs","jjes","jjess","jjeng","jjej","jjec","jjek","jjet","jjep","jjeh","jjyeo","jjyeog","jjyeogg","jjyeogs","jjyeon","jjyeonj","jjyeonh","jjyeod","jjyeol","jjyeolg","jjyeolm","jjyeolb","jjyeols","jjyeolt","jjyeolp","jjyeolh","jjyeom","jjyeob","jjyeobs","jjyeos","jjyeoss","jjyeong","jjyeoj","jjyeoc","jjyeok","jjyeot","jjyeop","jjyeoh","jjye","jjyeg","jjyegg","jjyegs","jjyen","jjyenj","jjyenh","jjyed","jjyel","jjyelg","jjyelm","jjyelb","jjyels","jjyelt","jjyelp","jjyelh","jjyem","jjyeb","jjyebs","jjyes","jjyess","jjyeng","jjyej","jjyec","jjyek","jjyet","jjyep","jjyeh","jjo","jjog","jjogg","jjogs","jjon","jjonj","jjonh","jjod","jjol","jjolg","jjolm","jjolb","jjols","jjolt","jjolp","jjolh","jjom","jjob","jjobs","jjos","jjoss","jjong","jjoj","jjoc","jjok","jjot","jjop","jjoh","jjwa","jjwag","jjwagg","jjwags","jjwan","jjwanj","jjwanh","jjwad","jjwal","jjwalg","jjwalm","jjwalb","jjwals","jjwalt","jjwalp","jjwalh","jjwam","jjwab","jjwabs","jjwas","jjwass","jjwang","jjwaj","jjwac","jjwak","jjwat","jjwap","jjwah","jjwae","jjwaeg","jjwaegg","jjwaegs","jjwaen","jjwaenj","jjwaenh","jjwaed","jjwael","jjwaelg","jjwaelm","jjwaelb"],["jjwaels","jjwaelt","jjwaelp","jjwaelh","jjwaem","jjwaeb","jjwaebs","jjwaes","jjwaess","jjwaeng","jjwaej","jjwaec","jjwaek","jjwaet","jjwaep","jjwaeh","jjoe","jjoeg","jjoegg","jjoegs","jjoen","jjoenj","jjoenh","jjoed","jjoel","jjoelg","jjoelm","jjoelb","jjoels","jjoelt","jjoelp","jjoelh","jjoem","jjoeb","jjoebs","jjoes","jjoess","jjoeng","jjoej","jjoec","jjoek","jjoet","jjoep","jjoeh","jjyo","jjyog","jjyogg","jjyogs","jjyon","jjyonj","jjyonh","jjyod","jjyol","jjyolg","jjyolm","jjyolb","jjyols","jjyolt","jjyolp","jjyolh","jjyom","jjyob","jjyobs","jjyos","jjyoss","jjyong","jjyoj","jjyoc","jjyok","jjyot","jjyop","jjyoh","jju","jjug","jjugg","jjugs","jjun","jjunj","jjunh","jjud","jjul","jjulg","jjulm","jjulb","jjuls","jjult","jjulp","jjulh","jjum","jjub","jjubs","jjus","jjuss","jjung","jjuj","jjuc","jjuk","jjut","jjup","jjuh","jjweo","jjweog","jjweogg","jjweogs","jjweon","jjweonj","jjweonh","jjweod","jjweol","jjweolg","jjweolm","jjweolb","jjweols","jjweolt","jjweolp","jjweolh","jjweom","jjweob","jjweobs","jjweos","jjweoss","jjweong","jjweoj","jjweoc","jjweok","jjweot","jjweop","jjweoh","jjwe","jjweg","jjwegg","jjwegs","jjwen","jjwenj","jjwenh","jjwed","jjwel","jjwelg","jjwelm","jjwelb","jjwels","jjwelt","jjwelp","jjwelh","jjwem","jjweb","jjwebs","jjwes","jjwess","jjweng","jjwej","jjwec","jjwek","jjwet","jjwep","jjweh","jjwi","jjwig","jjwigg","jjwigs","jjwin","jjwinj","jjwinh","jjwid","jjwil","jjwilg","jjwilm","jjwilb","jjwils","jjwilt","jjwilp","jjwilh","jjwim","jjwib","jjwibs","jjwis","jjwiss","jjwing","jjwij","jjwic","jjwik","jjwit","jjwip","jjwih","jjyu","jjyug","jjyugg","jjyugs","jjyun","jjyunj","jjyunh","jjyud","jjyul","jjyulg","jjyulm","jjyulb","jjyuls","jjyult","jjyulp","jjyulh","jjyum","jjyub","jjyubs","jjyus","jjyuss","jjyung","jjyuj","jjyuc","jjyuk","jjyut","jjyup","jjyuh","jjeu","jjeug","jjeugg","jjeugs","jjeun","jjeunj","jjeunh","jjeud","jjeul","jjeulg","jjeulm","jjeulb","jjeuls","jjeult","jjeulp","jjeulh","jjeum","jjeub","jjeubs","jjeus","jjeuss","jjeung","jjeuj","jjeuc","jjeuk","jjeut","jjeup","jjeuh","jjyi","jjyig","jjyigg","jjyigs","jjyin","jjyinj","jjyinh","jjyid","jjyil","jjyilg","jjyilm","jjyilb","jjyils","jjyilt","jjyilp","jjyilh"],["jjyim","jjyib","jjyibs","jjyis","jjyiss","jjying","jjyij","jjyic","jjyik","jjyit","jjyip","jjyih","jji","jjig","jjigg","jjigs","jjin","jjinj","jjinh","jjid","jjil","jjilg","jjilm","jjilb","jjils","jjilt","jjilp","jjilh","jjim","jjib","jjibs","jjis","jjiss","jjing","jjij","jjic","jjik","jjit","jjip","jjih","ca","cag","cagg","cags","can","canj","canh","cad","cal","calg","calm","calb","cals","calt","calp","calh","cam","cab","cabs","cas","cass","cang","caj","cac","cak","cat","cap","cah","cae","caeg","caegg","caegs","caen","caenj","caenh","caed","cael","caelg","caelm","caelb","caels","caelt","caelp","caelh","caem","caeb","caebs","caes","caess","caeng","caej","caec","caek","caet","caep","caeh","cya","cyag","cyagg","cyags","cyan","cyanj","cyanh","cyad","cyal","cyalg","cyalm","cyalb","cyals","cyalt","cyalp","cyalh","cyam","cyab","cyabs","cyas","cyass","cyang","cyaj","cyac","cyak","cyat","cyap","cyah","cyae","cyaeg","cyaegg","cyaegs","cyaen","cyaenj","cyaenh","cyaed","cyael","cyaelg","cyaelm","cyaelb","cyaels","cyaelt","cyaelp","cyaelh","cyaem","cyaeb","cyaebs","cyaes","cyaess","cyaeng","cyaej","cyaec","cyaek","cyaet","cyaep","cyaeh","ceo","ceog","ceogg","ceogs","ceon","ceonj","ceonh","ceod","ceol","ceolg","ceolm","ceolb","ceols","ceolt","ceolp","ceolh","ceom","ceob","ceobs","ceos","ceoss","ceong","ceoj","ceoc","ceok","ceot","ceop","ceoh","ce","ceg","cegg","cegs","cen","cenj","cenh","ced","cel","celg","celm","celb","cels","celt","celp","celh","cem","ceb","cebs","ces","cess","ceng","cej","cec","cek","cet","cep","ceh","cyeo","cyeog","cyeogg","cyeogs","cyeon","cyeonj","cyeonh","cyeod","cyeol","cyeolg","cyeolm","cyeolb","cyeols","cyeolt","cyeolp","cyeolh","cyeom","cyeob","cyeobs","cyeos","cyeoss","cyeong","cyeoj","cyeoc","cyeok","cyeot","cyeop","cyeoh","cye","cyeg","cyegg","cyegs","cyen","cyenj","cyenh","cyed","cyel","cyelg","cyelm","cyelb","cyels","cyelt","cyelp","cyelh","cyem","cyeb","cyebs","cyes"],["cyess","cyeng","cyej","cyec","cyek","cyet","cyep","cyeh","co","cog","cogg","cogs","con","conj","conh","cod","col","colg","colm","colb","cols","colt","colp","colh","com","cob","cobs","cos","coss","cong","coj","coc","cok","cot","cop","coh","cwa","cwag","cwagg","cwags","cwan","cwanj","cwanh","cwad","cwal","cwalg","cwalm","cwalb","cwals","cwalt","cwalp","cwalh","cwam","cwab","cwabs","cwas","cwass","cwang","cwaj","cwac","cwak","cwat","cwap","cwah","cwae","cwaeg","cwaegg","cwaegs","cwaen","cwaenj","cwaenh","cwaed","cwael","cwaelg","cwaelm","cwaelb","cwaels","cwaelt","cwaelp","cwaelh","cwaem","cwaeb","cwaebs","cwaes","cwaess","cwaeng","cwaej","cwaec","cwaek","cwaet","cwaep","cwaeh","coe","coeg","coegg","coegs","coen","coenj","coenh","coed","coel","coelg","coelm","coelb","coels","coelt","coelp","coelh","coem","coeb","coebs","coes","coess","coeng","coej","coec","coek","coet","coep","coeh","cyo","cyog","cyogg","cyogs","cyon","cyonj","cyonh","cyod","cyol","cyolg","cyolm","cyolb","cyols","cyolt","cyolp","cyolh","cyom","cyob","cyobs","cyos","cyoss","cyong","cyoj","cyoc","cyok","cyot","cyop","cyoh","cu","cug","cugg","cugs","cun","cunj","cunh","cud","cul","culg","culm","culb","culs","cult","culp","culh","cum","cub","cubs","cus","cuss","cung","cuj","cuc","cuk","cut","cup","cuh","cweo","cweog","cweogg","cweogs","cweon","cweonj","cweonh","cweod","cweol","cweolg","cweolm","cweolb","cweols","cweolt","cweolp","cweolh","cweom","cweob","cweobs","cweos","cweoss","cweong","cweoj","cweoc","cweok","cweot","cweop","cweoh","cwe","cweg","cwegg","cwegs","cwen","cwenj","cwenh","cwed","cwel","cwelg","cwelm","cwelb","cwels","cwelt","cwelp","cwelh","cwem","cweb","cwebs","cwes","cwess","cweng","cwej","cwec","cwek","cwet","cwep","cweh","cwi","cwig","cwigg","cwigs","cwin","cwinj","cwinh","cwid","cwil","cwilg","cwilm","cwilb","cwils","cwilt","cwilp","cwilh","cwim","cwib","cwibs","cwis","cwiss","cwing","cwij","cwic"],["cwik","cwit","cwip","cwih","cyu","cyug","cyugg","cyugs","cyun","cyunj","cyunh","cyud","cyul","cyulg","cyulm","cyulb","cyuls","cyult","cyulp","cyulh","cyum","cyub","cyubs","cyus","cyuss","cyung","cyuj","cyuc","cyuk","cyut","cyup","cyuh","ceu","ceug","ceugg","ceugs","ceun","ceunj","ceunh","ceud","ceul","ceulg","ceulm","ceulb","ceuls","ceult","ceulp","ceulh","ceum","ceub","ceubs","ceus","ceuss","ceung","ceuj","ceuc","ceuk","ceut","ceup","ceuh","cyi","cyig","cyigg","cyigs","cyin","cyinj","cyinh","cyid","cyil","cyilg","cyilm","cyilb","cyils","cyilt","cyilp","cyilh","cyim","cyib","cyibs","cyis","cyiss","cying","cyij","cyic","cyik","cyit","cyip","cyih","ci","cig","cigg","cigs","cin","cinj","cinh","cid","cil","cilg","cilm","cilb","cils","cilt","cilp","cilh","cim","cib","cibs","cis","ciss","cing","cij","cic","cik","cit","cip","cih","ka","kag","kagg","kags","kan","kanj","kanh","kad","kal","kalg","kalm","kalb","kals","kalt","kalp","kalh","kam","kab","kabs","kas","kass","kang","kaj","kac","kak","kat","kap","kah","kae","kaeg","kaegg","kaegs","kaen","kaenj","kaenh","kaed","kael","kaelg","kaelm","kaelb","kaels","kaelt","kaelp","kaelh","kaem","kaeb","kaebs","kaes","kaess","kaeng","kaej","kaec","kaek","kaet","kaep","kaeh","kya","kyag","kyagg","kyags","kyan","kyanj","kyanh","kyad","kyal","kyalg","kyalm","kyalb","kyals","kyalt","kyalp","kyalh","kyam","kyab","kyabs","kyas","kyass","kyang","kyaj","kyac","kyak","kyat","kyap","kyah","kyae","kyaeg","kyaegg","kyaegs","kyaen","kyaenj","kyaenh","kyaed","kyael","kyaelg","kyaelm","kyaelb","kyaels","kyaelt","kyaelp","kyaelh","kyaem","kyaeb","kyaebs","kyaes","kyaess","kyaeng","kyaej","kyaec","kyaek","kyaet","kyaep","kyaeh","keo","keog","keogg","keogs","keon","keonj","keonh","keod","keol","keolg","keolm","keolb","keols","keolt","keolp","keolh","keom","keob","keobs","keos","keoss","keong","keoj","keoc","keok","keot","keop","keoh"],["ke","keg","kegg","kegs","ken","kenj","kenh","ked","kel","kelg","kelm","kelb","kels","kelt","kelp","kelh","kem","keb","kebs","kes","kess","keng","kej","kec","kek","ket","kep","keh","kyeo","kyeog","kyeogg","kyeogs","kyeon","kyeonj","kyeonh","kyeod","kyeol","kyeolg","kyeolm","kyeolb","kyeols","kyeolt","kyeolp","kyeolh","kyeom","kyeob","kyeobs","kyeos","kyeoss","kyeong","kyeoj","kyeoc","kyeok","kyeot","kyeop","kyeoh","kye","kyeg","kyegg","kyegs","kyen","kyenj","kyenh","kyed","kyel","kyelg","kyelm","kyelb","kyels","kyelt","kyelp","kyelh","kyem","kyeb","kyebs","kyes","kyess","kyeng","kyej","kyec","kyek","kyet","kyep","kyeh","ko","kog","kogg","kogs","kon","konj","konh","kod","kol","kolg","kolm","kolb","kols","kolt","kolp","kolh","kom","kob","kobs","kos","koss","kong","koj","koc","kok","kot","kop","koh","kwa","kwag","kwagg","kwags","kwan","kwanj","kwanh","kwad","kwal","kwalg","kwalm","kwalb","kwals","kwalt","kwalp","kwalh","kwam","kwab","kwabs","kwas","kwass","kwang","kwaj","kwac","kwak","kwat","kwap","kwah","kwae","kwaeg","kwaegg","kwaegs","kwaen","kwaenj","kwaenh","kwaed","kwael","kwaelg","kwaelm","kwaelb","kwaels","kwaelt","kwaelp","kwaelh","kwaem","kwaeb","kwaebs","kwaes","kwaess","kwaeng","kwaej","kwaec","kwaek","kwaet","kwaep","kwaeh","koe","koeg","koegg","koegs","koen","koenj","koenh","koed","koel","koelg","koelm","koelb","koels","koelt","koelp","koelh","koem","koeb","koebs","koes","koess","koeng","koej","koec","koek","koet","koep","koeh","kyo","kyog","kyogg","kyogs","kyon","kyonj","kyonh","kyod","kyol","kyolg","kyolm","kyolb","kyols","kyolt","kyolp","kyolh","kyom","kyob","kyobs","kyos","kyoss","kyong","kyoj","kyoc","kyok","kyot","kyop","kyoh","ku","kug","kugg","kugs","kun","kunj","kunh","kud","kul","kulg","kulm","kulb","kuls","kult","kulp","kulh","kum","kub","kubs","kus","kuss","kung","kuj","kuc","kuk","kut","kup","kuh","kweo","kweog","kweogg","kweogs"],["kweon","kweonj","kweonh","kweod","kweol","kweolg","kweolm","kweolb","kweols","kweolt","kweolp","kweolh","kweom","kweob","kweobs","kweos","kweoss","kweong","kweoj","kweoc","kweok","kweot","kweop","kweoh","kwe","kweg","kwegg","kwegs","kwen","kwenj","kwenh","kwed","kwel","kwelg","kwelm","kwelb","kwels","kwelt","kwelp","kwelh","kwem","kweb","kwebs","kwes","kwess","kweng","kwej","kwec","kwek","kwet","kwep","kweh","kwi","kwig","kwigg","kwigs","kwin","kwinj","kwinh","kwid","kwil","kwilg","kwilm","kwilb","kwils","kwilt","kwilp","kwilh","kwim","kwib","kwibs","kwis","kwiss","kwing","kwij","kwic","kwik","kwit","kwip","kwih","kyu","kyug","kyugg","kyugs","kyun","kyunj","kyunh","kyud","kyul","kyulg","kyulm","kyulb","kyuls","kyult","kyulp","kyulh","kyum","kyub","kyubs","kyus","kyuss","kyung","kyuj","kyuc","kyuk","kyut","kyup","kyuh","keu","keug","keugg","keugs","keun","keunj","keunh","keud","keul","keulg","keulm","keulb","keuls","keult","keulp","keulh","keum","keub","keubs","keus","keuss","keung","keuj","keuc","keuk","keut","keup","keuh","kyi","kyig","kyigg","kyigs","kyin","kyinj","kyinh","kyid","kyil","kyilg","kyilm","kyilb","kyils","kyilt","kyilp","kyilh","kyim","kyib","kyibs","kyis","kyiss","kying","kyij","kyic","kyik","kyit","kyip","kyih","ki","kig","kigg","kigs","kin","kinj","kinh","kid","kil","kilg","kilm","kilb","kils","kilt","kilp","kilh","kim","kib","kibs","kis","kiss","king","kij","kic","kik","kit","kip","kih","ta","tag","tagg","tags","tan","tanj","tanh","tad","tal","talg","talm","talb","tals","talt","talp","talh","tam","tab","tabs","tas","tass","tang","taj","tac","tak","tat","tap","tah","tae","taeg","taegg","taegs","taen","taenj","taenh","taed","tael","taelg","taelm","taelb","taels","taelt","taelp","taelh","taem","taeb","taebs","taes","taess","taeng","taej","taec","taek","taet","taep","taeh","tya","tyag","tyagg","tyags","tyan","tyanj","tyanh","tyad"],["tyal","tyalg","tyalm","tyalb","tyals","tyalt","tyalp","tyalh","tyam","tyab","tyabs","tyas","tyass","tyang","tyaj","tyac","tyak","tyat","tyap","tyah","tyae","tyaeg","tyaegg","tyaegs","tyaen","tyaenj","tyaenh","tyaed","tyael","tyaelg","tyaelm","tyaelb","tyaels","tyaelt","tyaelp","tyaelh","tyaem","tyaeb","tyaebs","tyaes","tyaess","tyaeng","tyaej","tyaec","tyaek","tyaet","tyaep","tyaeh","teo","teog","teogg","teogs","teon","teonj","teonh","teod","teol","teolg","teolm","teolb","teols","teolt","teolp","teolh","teom","teob","teobs","teos","teoss","teong","teoj","teoc","teok","teot","teop","teoh","te","teg","tegg","tegs","ten","tenj","tenh","ted","tel","telg","telm","telb","tels","telt","telp","telh","tem","teb","tebs","tes","tess","teng","tej","tec","tek","tet","tep","teh","tyeo","tyeog","tyeogg","tyeogs","tyeon","tyeonj","tyeonh","tyeod","tyeol","tyeolg","tyeolm","tyeolb","tyeols","tyeolt","tyeolp","tyeolh","tyeom","tyeob","tyeobs","tyeos","tyeoss","tyeong","tyeoj","tyeoc","tyeok","tyeot","tyeop","tyeoh","tye","tyeg","tyegg","tyegs","tyen","tyenj","tyenh","tyed","tyel","tyelg","tyelm","tyelb","tyels","tyelt","tyelp","tyelh","tyem","tyeb","tyebs","tyes","tyess","tyeng","tyej","tyec","tyek","tyet","tyep","tyeh","to","tog","togg","togs","ton","tonj","tonh","tod","tol","tolg","tolm","tolb","tols","tolt","tolp","tolh","tom","tob","tobs","tos","toss","tong","toj","toc","tok","tot","top","toh","twa","twag","twagg","twags","twan","twanj","twanh","twad","twal","twalg","twalm","twalb","twals","twalt","twalp","twalh","twam","twab","twabs","twas","twass","twang","twaj","twac","twak","twat","twap","twah","twae","twaeg","twaegg","twaegs","twaen","twaenj","twaenh","twaed","twael","twaelg","twaelm","twaelb","twaels","twaelt","twaelp","twaelh","twaem","twaeb","twaebs","twaes","twaess","twaeng","twaej","twaec","twaek","twaet","twaep","twaeh","toe","toeg","toegg","toegs","toen","toenj","toenh","toed","toel","toelg","toelm","toelb"],["toels","toelt","toelp","toelh","toem","toeb","toebs","toes","toess","toeng","toej","toec","toek","toet","toep","toeh","tyo","tyog","tyogg","tyogs","tyon","tyonj","tyonh","tyod","tyol","tyolg","tyolm","tyolb","tyols","tyolt","tyolp","tyolh","tyom","tyob","tyobs","tyos","tyoss","tyong","tyoj","tyoc","tyok","tyot","tyop","tyoh","tu","tug","tugg","tugs","tun","tunj","tunh","tud","tul","tulg","tulm","tulb","tuls","tult","tulp","tulh","tum","tub","tubs","tus","tuss","tung","tuj","tuc","tuk","tut","tup","tuh","tweo","tweog","tweogg","tweogs","tweon","tweonj","tweonh","tweod","tweol","tweolg","tweolm","tweolb","tweols","tweolt","tweolp","tweolh","tweom","tweob","tweobs","tweos","tweoss","tweong","tweoj","tweoc","tweok","tweot","tweop","tweoh","twe","tweg","twegg","twegs","twen","twenj","twenh","twed","twel","twelg","twelm","twelb","twels","twelt","twelp","twelh","twem","tweb","twebs","twes","twess","tweng","twej","twec","twek","twet","twep","tweh","twi","twig","twigg","twigs","twin","twinj","twinh","twid","twil","twilg","twilm","twilb","twils","twilt","twilp","twilh","twim","twib","twibs","twis","twiss","twing","twij","twic","twik","twit","twip","twih","tyu","tyug","tyugg","tyugs","tyun","tyunj","tyunh","tyud","tyul","tyulg","tyulm","tyulb","tyuls","tyult","tyulp","tyulh","tyum","tyub","tyubs","tyus","tyuss","tyung","tyuj","tyuc","tyuk","tyut","tyup","tyuh","teu","teug","teugg","teugs","teun","teunj","teunh","teud","teul","teulg","teulm","teulb","teuls","teult","teulp","teulh","teum","teub","teubs","teus","teuss","teung","teuj","teuc","teuk","teut","teup","teuh","tyi","tyig","tyigg","tyigs","tyin","tyinj","tyinh","tyid","tyil","tyilg","tyilm","tyilb","tyils","tyilt","tyilp","tyilh","tyim","tyib","tyibs","tyis","tyiss","tying","tyij","tyic","tyik","tyit","tyip","tyih","ti","tig","tigg","tigs","tin","tinj","tinh","tid","til","tilg","tilm","tilb","tils","tilt","tilp","tilh"],["tim","tib","tibs","tis","tiss","ting","tij","tic","tik","tit","tip","tih","pa","pag","pagg","pags","pan","panj","panh","pad","pal","palg","palm","palb","pals","palt","palp","palh","pam","pab","pabs","pas","pass","pang","paj","pac","pak","pat","pap","pah","pae","paeg","paegg","paegs","paen","paenj","paenh","paed","pael","paelg","paelm","paelb","paels","paelt","paelp","paelh","paem","paeb","paebs","paes","paess","paeng","paej","paec","paek","paet","paep","paeh","pya","pyag","pyagg","pyags","pyan","pyanj","pyanh","pyad","pyal","pyalg","pyalm","pyalb","pyals","pyalt","pyalp","pyalh","pyam","pyab","pyabs","pyas","pyass","pyang","pyaj","pyac","pyak","pyat","pyap","pyah","pyae","pyaeg","pyaegg","pyaegs","pyaen","pyaenj","pyaenh","pyaed","pyael","pyaelg","pyaelm","pyaelb","pyaels","pyaelt","pyaelp","pyaelh","pyaem","pyaeb","pyaebs","pyaes","pyaess","pyaeng","pyaej","pyaec","pyaek","pyaet","pyaep","pyaeh","peo","peog","peogg","peogs","peon","peonj","peonh","peod","peol","peolg","peolm","peolb","peols","peolt","peolp","peolh","peom","peob","peobs","peos","peoss","peong","peoj","peoc","peok","peot","peop","peoh","pe","peg","pegg","pegs","pen","penj","penh","ped","pel","pelg","pelm","pelb","pels","pelt","pelp","pelh","pem","peb","pebs","pes","pess","peng","pej","pec","pek","pet","pep","peh","pyeo","pyeog","pyeogg","pyeogs","pyeon","pyeonj","pyeonh","pyeod","pyeol","pyeolg","pyeolm","pyeolb","pyeols","pyeolt","pyeolp","pyeolh","pyeom","pyeob","pyeobs","pyeos","pyeoss","pyeong","pyeoj","pyeoc","pyeok","pyeot","pyeop","pyeoh","pye","pyeg","pyegg","pyegs","pyen","pyenj","pyenh","pyed","pyel","pyelg","pyelm","pyelb","pyels","pyelt","pyelp","pyelh","pyem","pyeb","pyebs","pyes","pyess","pyeng","pyej","pyec","pyek","pyet","pyep","pyeh","po","pog","pogg","pogs","pon","ponj","ponh","pod","pol","polg","polm","polb","pols","polt","polp","polh","pom","pob","pobs","pos"],["poss","pong","poj","poc","pok","pot","pop","poh","pwa","pwag","pwagg","pwags","pwan","pwanj","pwanh","pwad","pwal","pwalg","pwalm","pwalb","pwals","pwalt","pwalp","pwalh","pwam","pwab","pwabs","pwas","pwass","pwang","pwaj","pwac","pwak","pwat","pwap","pwah","pwae","pwaeg","pwaegg","pwaegs","pwaen","pwaenj","pwaenh","pwaed","pwael","pwaelg","pwaelm","pwaelb","pwaels","pwaelt","pwaelp","pwaelh","pwaem","pwaeb","pwaebs","pwaes","pwaess","pwaeng","pwaej","pwaec","pwaek","pwaet","pwaep","pwaeh","poe","poeg","poegg","poegs","poen","poenj","poenh","poed","poel","poelg","poelm","poelb","poels","poelt","poelp","poelh","poem","poeb","poebs","poes","poess","poeng","poej","poec","poek","poet","poep","poeh","pyo","pyog","pyogg","pyogs","pyon","pyonj","pyonh","pyod","pyol","pyolg","pyolm","pyolb","pyols","pyolt","pyolp","pyolh","pyom","pyob","pyobs","pyos","pyoss","pyong","pyoj","pyoc","pyok","pyot","pyop","pyoh","pu","pug","pugg","pugs","pun","punj","punh","pud","pul","pulg","pulm","pulb","puls","pult","pulp","pulh","pum","pub","pubs","pus","puss","pung","puj","puc","puk","put","pup","puh","pweo","pweog","pweogg","pweogs","pweon","pweonj","pweonh","pweod","pweol","pweolg","pweolm","pweolb","pweols","pweolt","pweolp","pweolh","pweom","pweob","pweobs","pweos","pweoss","pweong","pweoj","pweoc","pweok","pweot","pweop","pweoh","pwe","pweg","pwegg","pwegs","pwen","pwenj","pwenh","pwed","pwel","pwelg","pwelm","pwelb","pwels","pwelt","pwelp","pwelh","pwem","pweb","pwebs","pwes","pwess","pweng","pwej","pwec","pwek","pwet","pwep","pweh","pwi","pwig","pwigg","pwigs","pwin","pwinj","pwinh","pwid","pwil","pwilg","pwilm","pwilb","pwils","pwilt","pwilp","pwilh","pwim","pwib","pwibs","pwis","pwiss","pwing","pwij","pwic","pwik","pwit","pwip","pwih","pyu","pyug","pyugg","pyugs","pyun","pyunj","pyunh","pyud","pyul","pyulg","pyulm","pyulb","pyuls","pyult","pyulp","pyulh","pyum","pyub","pyubs","pyus","pyuss","pyung","pyuj","pyuc"],["pyuk","pyut","pyup","pyuh","peu","peug","peugg","peugs","peun","peunj","peunh","peud","peul","peulg","peulm","peulb","peuls","peult","peulp","peulh","peum","peub","peubs","peus","peuss","peung","peuj","peuc","peuk","peut","peup","peuh","pyi","pyig","pyigg","pyigs","pyin","pyinj","pyinh","pyid","pyil","pyilg","pyilm","pyilb","pyils","pyilt","pyilp","pyilh","pyim","pyib","pyibs","pyis","pyiss","pying","pyij","pyic","pyik","pyit","pyip","pyih","pi","pig","pigg","pigs","pin","pinj","pinh","pid","pil","pilg","pilm","pilb","pils","pilt","pilp","pilh","pim","pib","pibs","pis","piss","ping","pij","pic","pik","pit","pip","pih","ha","hag","hagg","hags","han","hanj","hanh","had","hal","halg","halm","halb","hals","halt","halp","halh","ham","hab","habs","has","hass","hang","haj","hac","hak","hat","hap","hah","hae","haeg","haegg","haegs","haen","haenj","haenh","haed","hael","haelg","haelm","haelb","haels","haelt","haelp","haelh","haem","haeb","haebs","haes","haess","haeng","haej","haec","haek","haet","haep","haeh","hya","hyag","hyagg","hyags","hyan","hyanj","hyanh","hyad","hyal","hyalg","hyalm","hyalb","hyals","hyalt","hyalp","hyalh","hyam","hyab","hyabs","hyas","hyass","hyang","hyaj","hyac","hyak","hyat","hyap","hyah","hyae","hyaeg","hyaegg","hyaegs","hyaen","hyaenj","hyaenh","hyaed","hyael","hyaelg","hyaelm","hyaelb","hyaels","hyaelt","hyaelp","hyaelh","hyaem","hyaeb","hyaebs","hyaes","hyaess","hyaeng","hyaej","hyaec","hyaek","hyaet","hyaep","hyaeh","heo","heog","heogg","heogs","heon","heonj","heonh","heod","heol","heolg","heolm","heolb","heols","heolt","heolp","heolh","heom","heob","heobs","heos","heoss","heong","heoj","heoc","heok","heot","heop","heoh","he","heg","hegg","hegs","hen","henj","henh","hed","hel","helg","helm","helb","hels","helt","help","helh","hem","heb","hebs","hes","hess","heng","hej","hec","hek","het","hep","heh"],["hyeo","hyeog","hyeogg","hyeogs","hyeon","hyeonj","hyeonh","hyeod","hyeol","hyeolg","hyeolm","hyeolb","hyeols","hyeolt","hyeolp","hyeolh","hyeom","hyeob","hyeobs","hyeos","hyeoss","hyeong","hyeoj","hyeoc","hyeok","hyeot","hyeop","hyeoh","hye","hyeg","hyegg","hyegs","hyen","hyenj","hyenh","hyed","hyel","hyelg","hyelm","hyelb","hyels","hyelt","hyelp","hyelh","hyem","hyeb","hyebs","hyes","hyess","hyeng","hyej","hyec","hyek","hyet","hyep","hyeh","ho","hog","hogg","hogs","hon","honj","honh","hod","hol","holg","holm","holb","hols","holt","holp","holh","hom","hob","hobs","hos","hoss","hong","hoj","hoc","hok","hot","hop","hoh","hwa","hwag","hwagg","hwags","hwan","hwanj","hwanh","hwad","hwal","hwalg","hwalm","hwalb","hwals","hwalt","hwalp","hwalh","hwam","hwab","hwabs","hwas","hwass","hwang","hwaj","hwac","hwak","hwat","hwap","hwah","hwae","hwaeg","hwaegg","hwaegs","hwaen","hwaenj","hwaenh","hwaed","hwael","hwaelg","hwaelm","hwaelb","hwaels","hwaelt","hwaelp","hwaelh","hwaem","hwaeb","hwaebs","hwaes","hwaess","hwaeng","hwaej","hwaec","hwaek","hwaet","hwaep","hwaeh","hoe","hoeg","hoegg","hoegs","hoen","hoenj","hoenh","hoed","hoel","hoelg","hoelm","hoelb","hoels","hoelt","hoelp","hoelh","hoem","hoeb","hoebs","hoes","hoess","hoeng","hoej","hoec","hoek","hoet","hoep","hoeh","hyo","hyog","hyogg","hyogs","hyon","hyonj","hyonh","hyod","hyol","hyolg","hyolm","hyolb","hyols","hyolt","hyolp","hyolh","hyom","hyob","hyobs","hyos","hyoss","hyong","hyoj","hyoc","hyok","hyot","hyop","hyoh","hu","hug","hugg","hugs","hun","hunj","hunh","hud","hul","hulg","hulm","hulb","huls","hult","hulp","hulh","hum","hub","hubs","hus","huss","hung","huj","huc","huk","hut","hup","huh","hweo","hweog","hweogg","hweogs","hweon","hweonj","hweonh","hweod","hweol","hweolg","hweolm","hweolb","hweols","hweolt","hweolp","hweolh","hweom","hweob","hweobs","hweos","hweoss","hweong","hweoj","hweoc","hweok","hweot","hweop","hweoh","hwe","hweg","hwegg","hwegs"],["hwen","hwenj","hwenh","hwed","hwel","hwelg","hwelm","hwelb","hwels","hwelt","hwelp","hwelh","hwem","hweb","hwebs","hwes","hwess","hweng","hwej","hwec","hwek","hwet","hwep","hweh","hwi","hwig","hwigg","hwigs","hwin","hwinj","hwinh","hwid","hwil","hwilg","hwilm","hwilb","hwils","hwilt","hwilp","hwilh","hwim","hwib","hwibs","hwis","hwiss","hwing","hwij","hwic","hwik","hwit","hwip","hwih","hyu","hyug","hyugg","hyugs","hyun","hyunj","hyunh","hyud","hyul","hyulg","hyulm","hyulb","hyuls","hyult","hyulp","hyulh","hyum","hyub","hyubs","hyus","hyuss","hyung","hyuj","hyuc","hyuk","hyut","hyup","hyuh","heu","heug","heugg","heugs","heun","heunj","heunh","heud","heul","heulg","heulm","heulb","heuls","heult","heulp","heulh","heum","heub","heubs","heus","heuss","heung","heuj","heuc","heuk","heut","heup","heuh","hyi","hyig","hyigg","hyigs","hyin","hyinj","hyinh","hyid","hyil","hyilg","hyilm","hyilb","hyils","hyilt","hyilp","hyilh","hyim","hyib","hyibs","hyis","hyiss","hying","hyij","hyic","hyik","hyit","hyip","hyih","hi","hig","higg","higs","hin","hinj","hinh","hid","hil","hilg","hilm","hilb","hils","hilt","hilp","hilh","him","hib","hibs","his","hiss","hing","hij","hic","hik","hit","hip","hih"],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],["Kay","Kayng","Ke","Ko","Kol","Koc","Kwi","Kwi","Kyun","Kul","Kum","Na","Na","Na","La","Na","Na","Na","Na","Na","Nak","Nak","Nak","Nak","Nak","Nak","Nak","Nan","Nan","Nan","Nan","Nan","Nan","Nam","Nam","Nam","Nam","Nap","Nap","Nap","Nang","Nang","Nang","Nang","Nang","Nay","Nayng","No","No","No","No","No","No","No","No","No","No","No","No","Nok","Nok","Nok","Nok","Nok","Nok","Non","Nong","Nong","Nong","Nong","Noy","Noy","Noy","Noy","Nwu","Nwu","Nwu","Nwu","Nwu","Nwu","Nwu","Nwu","Nuk","Nuk","Num","Nung","Nung","Nung","Nung","Nung","Twu","La","Lak","Lak","Lan","Lyeng","Lo","Lyul","Li","Pey","Pen","Pyen","Pwu","Pwul","Pi","Sak","Sak","Sam","Sayk","Sayng","Sep","Sey","Sway","Sin","Sim","Sip","Ya","Yak","Yak","Yang","Yang","Yang","Yang","Yang","Yang","Yang","Yang","Ye","Ye","Ye","Ye","Ye","Ye","Ye","Ye","Ye","Ye","Ye","Yek","Yek","Yek","Yek","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yen","Yel","Yel","Yel","Yel","Yel","Yel","Yem","Yem","Yem","Yem","Yem","Yep","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yeng","Yey","Yey","Yey","Yey","O","Yo","Yo","Yo","Yo","Yo","Yo","Yo","Yo","Yo","Yo","Yong","Wun","Wen","Yu","Yu","Yu","Yu","Yu","Yu","Yu","Yu","Yu","Yu","Yuk","Yuk","Yuk","Yun","Yun","Yun","Yun","Yul","Yul","Yul","Yul","Yung","I","I","I","I","I","I","I","I","I","I","I","I","I","I","Ik","Ik","In","In","In","In","In","In","In","Im","Im","Im","Ip","Ip","Ip","Cang","Cek","Ci","Cip","Cha","Chek"],["Chey","Thak","Thak","Thang","Thayk","Thong","Pho","Phok","Hang","Hang","Hyen","Hwak","Wu","Huo",,,"Zhong",,"Qing",,,"Xi","Zhu","Yi","Li","Shen","Xiang","Fu","Jing","Jing","Yu",,"Hagi",,"Zhu",,,"Yi","Du",,,,"Fan","Si","Guan"],["ff","fi","fl","ffi","ffl","st","st",,,,,,,,,,,,,"mn","me","mi","vn","mkh",,,,,,"yi",,"ay","`",,"d","h","k","l","m","m","t","+","sh","s","sh","s","a","a",,"b","g","d","h","v","z",,"t","y","k","k","l",,"l",,"n","n",,"p","p",,"ts","ts","r","sh","t","vo","b","k","p","l"],[],[],[,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"~",,,,,,,,,,,,,"..","--","-","_","_","(",") ","{","} ","[","] ","[(",")] ","<<",">> ","<","> ","[","] ","{","}",,,,,,,,,,,,",",",",".",,";",":","?","!","-","(",")","{","}","{","}","#","&","*","+","-","<",">","=",,"\\","$","%","@"],[,"!",'"',"#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~",,,".","[","]",",","*","wo","a","i","u","e","o","ya","yu","yo","tu","+","a","i","u","e","o","ka","ki","ku","ke","ko","sa","si","su","se","so","ta","ti","tu","te","to","na","ni","nu","ne","no","ha","hi","hu","he","ho","ma","mi","mu","me","mo","ya","yu","yo","ra","ri","ru","re","ro","wa","n",":",";",,"g","gg","gs","n","nj","nh","d","dd","r","lg","lm","lb","ls","lt","lp","rh","m","b","bb","bs","s","ss",,"j","jj","c","k","t","p","h",,,,"a","ae","ya","yae","eo","e",,,"yeo","ye","o","wa","wae","oe",,,"yo","u","weo","we","wi","yu",,,"eu","yi","i",,,,"/C","PS","!","-","|","Y=","W=",,"|","-","|","-","|","#","O",,,,,,,,,,,"{","|","}"]],Da={},ka=0;ka<Ta.length;ka++)for(var Ca=0;Ca<Ta[ka].length;Ca++){var Ea=Ta[ka][Ca];if("string"==typeof Ea&&Ea.length){var za=String.fromCharCode((ka<<8)+Ca);Da[za]=Ea}}Ta=void 0;var Ia=function(e,n){var t=[][e];return!!t&&g(function(){t.call(null,n||function(){return 1},1)})},Aa=bn.indexOf,Ya=v([].indexOf),Oa=!!Ya&&1/Ya([1],1,-0)<0,Qa=Ia("indexOf");_n({target:"Array",proto:!0,forced:Oa||!Qa},{indexOf:function(e){var n=arguments.length>1?arguments[1]:void 0;return Oa?Ya(this,e,n)||0:Aa(this,e,n)}});var Za=TypeError,_a=function(e,n){if(!delete e[n])throw Za("Cannot delete property "+V(n)+" of "+V(e))},Ba=function(e,n,t){var i=xe(n);i in e?Oe.f(e,i,b(0,t)):e[i]=t},Fa=Array,Xa=Math.max,Ua=function(e,n,t){for(var i=Mn(e),a=mn(n,i),o=mn(void 0===t?i:t,i),r=Fa(Xa(o-a,0)),s=0;a<o;a++,s++)Ba(r,s,e[a]);return r.length=s,r},Ha=Math.floor,Ja=function(e,n){var t=e.length,i=Ha(t/2);return t<8?Pa(e,n):Ga(e,Ja(Ua(e,0,i),n),Ja(Ua(e,i),n),n)},Pa=function(e,n){for(var t,i,a=e.length,o=1;o<a;){for(i=o,t=e[o];i&&n(e[i-1],t)>0;)e[i]=e[--i];i!==o++&&(e[i]=t)}return e},Ga=function(e,n,t,i){for(var a=n.length,o=t.length,r=0,s=0;r<a||s<o;)e[r+s]=r<a&&s<o?i(n[r],t[s])<=0?n[r++]:t[s++]:r<a?n[r++]:t[s++];return e},Ra=Ja,Wa=B.match(/firefox\/(\d+)/i),Ka=!!Wa&&+Wa[1],Va=/MSIE|Trident/.test(B),$a=B.match(/AppleWebKit\/(\d+)\./),qa=!!$a&&+$a[1],eo=[],no=v(eo.sort),to=v(eo.push),io=g(function(){eo.sort(void 0)}),ao=g(function(){eo.sort(null)}),oo=Ia("sort"),ro=!g(function(){if(J)return J<70;if(!(Ka&&Ka>3)){if(Va)return!0;if(qa)return qa<603;var e,n,t,i,a="";for(e=65;e<76;e++){switch(n=String.fromCharCode(e),e){case 66:case 69:case 70:case 72:t=3;break;case 68:case 71:t=4;break;default:t=2}for(i=0;i<47;i++)eo.push({k:n+i,v:t})}for(eo.sort(function(e,n){return n.v-e.v}),i=0;i<eo.length;i++)n=eo[i].k.charAt(0),a.charAt(a.length-1)!==n&&(a+=n);return"DGBEFHACIJK"!==a}});_n({target:"Array",proto:!0,forced:io||!ao||!oo||!ro},{sort:function(e){void 0!==e&&q(e);var n=se(this);if(ro)return void 0===e?no(n):no(n,e);var t,i,a=[],o=Mn(n);for(i=0;i<o;i++)i in n&&to(a,n[i]);for(Ra(a,function(e){return function(n,t){return void 0===t?-1:void 0===n?1:void 0!==e?+e(n,t)||0:tt(n)>tt(t)?1:-1}}(e)),t=a.length,i=0;i<t;)n[i]=a[i++];for(;i<o;)_a(n,i++);return n}});var so=na.forEach,uo=Ia("forEach")?[].forEach:function(e){return so(this,e,arguments.length>1?arguments[1]:void 0)};_n({target:"Array",proto:!0,forced:[].forEach!=uo},{forEach:uo});var lo={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0},co=ve("span").classList,go=co&&co.constructor&&co.constructor.prototype,ho=go===Object.prototype?void 0:go,po=function(e){if(e&&e.forEach!==uo)try{Qe(e,"forEach",uo)}catch(n){e.forEach=uo}};for(var mo in lo)lo[mo]&&po(d[mo]&&d[mo].prototype);po(ho);var yo=v([].slice),fo=ia("slice"),Mo=Me("species"),jo=Array,bo=Math.max;_n({target:"Array",proto:!0,forced:!fo},{slice:function(e,n){var t,i,a,o=A(this),r=Mn(o),s=mn(e,r),u=mn(void 0===n?r:n,r);if(Bi(o)&&(t=o.constructor,(Wi(t)&&(t===jo||Bi(t.prototype))||O(t)&&null===(t=t[Mo]))&&(t=void 0),t===jo||void 0===t))return yo(o,s,u);for(i=new(void 0===t?jo:t)(bo(u-s,0)),a=0;s<u;s++,a++)s in o&&Ba(i,a,o[s]);return i.length=a,i}});var wo=v([].join),xo=E!=Object,Lo=Ia("join",",");function No(e){return(e||"").replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")}function vo(e){return/[\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u3005\u3007\u3021-\u3029\u3038-\u303B\u3400-\u4DBF\u4E00-\u9FFC\uF900-\uFA6D\uFA70-\uFAD9]|\uD81B[\uDFF0\uDFF1]|[\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD869[\uDC00-\uDEDD\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A]/.test(e)}function So(e){return/[\s!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u2E52\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDEAD\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5A\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDD44-\uDD46\uDDE2\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8\uDFFF]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A\uDFE2]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/.test(e)}function To(e){switch(!0){case e instanceof Array:for(var n=[],t=0;t<e.length;t++)n[t]=To(e[t]);return n;case e instanceof Date:return new Date(e.valueOf());case e instanceof RegExp:return new RegExp(e.source,e.flags);case e instanceof Object:var i={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(i[a]=To(e[a]));return i;default:return e}}function Do(e,n){if(0===n.length)return!1;var t=Math.floor(n.length/2);switch(function(e,n){switch(!0){case e<n[0]:return-1;case e>n[1]:return 1}return 0}(e,n[t])){case-1:return Do(e,n.slice(0,t));case 1:return Do(e,n.slice(t+1))}return!0}function ko(e,n,t,i){void 0===i&&(i=[]);for(var a=i.length?RegExp(i.map(No).join("|"),"g"):null,o=RegExp(n.source,n.flags.replace("g","")+"g"),r="",s=0;;){var u=o.exec(e),l="",c=0;if(!u){r+=e.substring(s,e.length);break}for(;;){var d=a?a.exec(u[0]):null;if(!d){l+=u[0].length>c?t:"";break}l+=d.index>c?t:"",l+=d[0],c=a.lastIndex}r+=e.substring(s,u.index)+l,s=o.lastIndex}return r}_n({target:"Array",proto:!0,forced:xo||!Lo},{join:function(e){return wo(A(this),void 0===e?",":e)}});var Co={ignore:[],replace:[],replaceAfter:[],trim:!1,unknown:"",fixChineseSpacing:!0},Eo=function(){function e(e,n){void 0===e&&(e=To(Co)),void 0===n&&(n=Da),this.confOptions=e,this.map=n}var n=e.prototype;return n.config=function(e,n){return void 0===n&&(n=!1),n&&(this.confOptions={}),e&&"object"==typeof e&&(this.confOptions=To(e)),this.confOptions},n.codeMapReplace=function(e,n,t){var i=this;void 0===n&&(n=[]);for(var a=0,r="",s=t.fixChineseSpacing&&vo(e),u=!1,l=0;l<e.length;l++){var c=/[\uD800-\uDBFF]/.test(e[l])&&/[\uDC00-\uDFFF]/.test(e[l+1])?e[l]+e[l+1]:e[l],d=void 0,g=!1;switch(!0){case Do(a,n):case 2===c.length&&Do(a+1,n):d=c,n.find(function(e){return o(this,i),e[1]>=a&&e[0]===a}.bind(this))||(g=!0);break;default:d=this.map[c]||t.unknown||""}s&&(!u||g||So(d)||(d=" "+d),u=!!d&&vo(c)),r+=d,a+=c.length,l+=c.length-1}return r},n.formatReplaceOption=function(e){if(e instanceof Array)return To(e);var n=[];for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&n.push([t,e[t]]);return n},n.replaceString=function(e,n,t){void 0===t&&(t=[]);for(var i=To(n),a=e,o=0;o<i.length;o++){var r=i[o];switch(!0){case r[0]instanceof RegExp:r[0]=RegExp(r[0].source,r[0].flags.replace("g","")+"g");break;case"string"==typeof r[0]&&r[0].length>0:r[0]=RegExp(No(r[0]),"g");break;default:r[0]=/[^\s\S]/}a=ko(a,r[0],r[1],t)}return a},n.setData=function(e,n){if(void 0===n&&(n=!1),n&&(this.map=To(Da)),e&&"object"==typeof e&&Object.keys(e).length)for(var t in this.map=To(this.map),e)Object.prototype.hasOwnProperty.call(e,t)&&t.length<3&&t<=""&&(this.map[t]=e[t]);return this.map},n.transliterate=function(e,n){n="object"==typeof n?n:{};var t=To(Object.assign(Object.assign({},this.options),n)),i="string"==typeof e?e:String(e),a=this.formatReplaceOption(t.replace);a.length&&(i=this.replaceString(i,a,t.ignore));var r=t.ignore&&t.ignore.length>0?function(e,n){for(var t=this,i=[],a=0;a<n.length;a++)for(var r=n[a],s=-1;(s=e.indexOf(r,s+1))>-1;)i.push([s,s+r.length-1]);var u,l=i.sort(function(e,n){return o(this,t),e[0]-n[0]||e[1]-n[1]}.bind(this));return i=[],l.forEach(function(e){return o(this,t),!u||e[0]>u[1]+1?i.push(u=e):e[1]>u[1]&&(u[1]=e[1])}.bind(this)),i}(i,t.ignore):[];i=this.codeMapReplace(i,r,t),t.trim&&(i=i.trim());var s=this.formatReplaceOption(t.replaceAfter);return s.length&&(i=this.replaceString(i,s)),i},i(e,[{key:"options",get:function(){return To(Object.assign(Object.assign({},Co),this.confOptions))}}]),e}(),zo=Object.assign(Object.assign({},To(Co)),{allowedChars:"a-zA-Z0-9-_.~",lowercase:!0,separator:"-",uppercase:!1,fixChineseSpacing:!0}),Io=function(e){var n,t;function o(){return e.apply(this,arguments)||this}t=e,(n=o).prototype=Object.create(t.prototype),n.prototype.constructor=n,a(n,t);var r=o.prototype;return r.config=function(e,n){return void 0===n&&(n=!1),n&&(this.confOptions={}),e&&"object"==typeof e&&(this.confOptions=To(e)),this.confOptions},r.slugify=function(e,n){n="object"==typeof n?n:{};var t=To(Object.assign(Object.assign({},this.options),n)),i=t.separator?No(t.separator):"",a=this.transliterate(e,t);return a=ko(a,RegExp("[^"+t.allowedChars+"]+","g"),t.separator,t.ignore),i&&(a=a.replace(RegExp("^"+i+"+|"+i+"$","g"),"")),t.lowercase&&(a=a.toLowerCase()),t.uppercase&&(a=a.toUpperCase()),a},i(o,[{key:"options",get:function(){return To(Object.assign(Object.assign({},zo),this.confOptions))}}]),o}(Eo),Ao=new Eo,Yo=Ao.transliterate.bind(Ao);Yo.config=Ao.config.bind(Ao),Yo.setData=Ao.setData.bind(Ao);var Oo=new Io,Qo=Oo.slugify.bind(Oo);Qo.config=Oo.config.bind(Oo),Qo.setData=Oo.setData.bind(Oo),e.slugify=Qo,e.transl=Yo,e.transliterate=Yo,Object.defineProperty(e,"__esModule",{value:!0})}(n)}(0,DN.exports);var kN=DN.exports;const CN=e=>{var{children:n}=e,t=wd(e,["children"]);const i=g("llm__product",`llm__product--${t.productType}`);return t.url?ce.jsx("a",{className:i,href:t.url,target:"_blank",rel:"noreferrer","aria-label":t.title,children:n}):ce.jsx("div",{className:i,children:n})},EN=e=>{const{item:n}=e,t=$j(),i=Xj();function a(e){return e?Number(e):0}const o=a(n.price),r=null!=n.priceLabel,s=null!=n.price&&!r,u=a(n.fullPrice)||o,l=null!=n.fullPriceLabel,c=a(n.availability),d=null!=n.availabilityLabel,g=null!=n.availability&&!d,h=n.label?`-${kN.slugify(n.label)}`:"";return ce.jsxs(CN,Object.assign({},n,{children:["image"===n.media.type&&ce.jsxs("div",{className:"llm__product-media",children:[ce.jsx("div",{className:"llm__product-asset",children:ce.jsx("img",{src:n.media.src,alt:""})}),n.label&&ce.jsx("div",{className:"llm__product-label",style:{background:`var(--llm-product-label${h}-background, var(--llm-product-label-background))`,color:`var(--llm-product-label${h}-foreground, var(--llm-product-label-foreground))`},children:n.label})]}),ce.jsxs("div",{className:"llm__product-content",children:[n.sku&&ce.jsx("div",{className:"llm__product-sku",children:n.sku}),ce.jsxs("div",{className:"llm__product-grow",children:[n.title&&ce.jsx("div",{className:"llm__product-title",dangerouslySetInnerHTML:{__html:n.title}}),n.abstract&&ce.jsx("div",{className:"llm__product-abstract",dangerouslySetInnerHTML:{__html:n.abstract}})]}),s&&ce.jsxs("div",{className:"llm__product-prices",children:[ce.jsx("div",{className:"llm__product-price",children:i(o)}),u>o&&ce.jsx("div",{className:"llm__product-fullprice",children:l?n.fullPriceLabel:i(u)})]}),r&&ce.jsxs("div",{className:"llm__product-prices",children:[ce.jsx("div",{className:"llm__product-price",children:n.priceLabel}),u>o&&ce.jsx("div",{className:"llm__product-fullprice",children:l?n.fullPriceLabel:i(u)})]}),g&&(c?ce.jsx("div",{className:"llm__product-available",children:t("llm.availability",{availability:c})}):ce.jsx("div",{className:"llm__product-soldout",children:t("llm.soldOut")})),d&&(c?ce.jsx("div",{className:"llm__product-available",children:n.availabilityLabel}):ce.jsx("div",{className:"llm__product-soldout",children:n.availabilityLabel})),n.cta&&ce.jsxs("div",{className:"llm__product-cta",children:[ce.jsx("span",{children:n.cta})," ",ce.jsx(Zb,{})]})]})]}))},zN=e=>{const n=g("llm__row");return ce.jsx("div",{className:n,children:e.children})},IN=e=>{const n=Object.fromEntries(["xs","sm","md","lg","xl"].filter(n=>null!=e[n]).map(n=>[`--${n}-${e[n]}`,!0])),t=g("llm__col",n);return ce.jsx("div",{className:t,children:e.children})},AN=e=>{const{item:n}=e,t=$j(),{decorateUrl:i}=zI(e=>e.actions);return ce.jsx("div",{className:"llm__tripadv",children:ce.jsxs("div",{className:"llm__tripadv-inner",children:[n.image&&ce.jsx("div",{className:"llm__tripadv-media",children:ce.jsx("img",{src:n.image,alt:""})}),ce.jsxs("div",{className:"llm__tripadv-content",children:[n.title&&ce.jsx("div",{className:"llm__tripadv-title",children:n.title}),n.rating&&ce.jsxs("div",{className:"llm__tripadv-rating",children:[ce.jsx("span",{className:"llm__tripadv-dots",children:ce.jsx("span",{style:{width:n.rating/5*100+"%"}})}),n.reviews&&ce.jsxs("span",{children:[n.reviews," ",t("llm.reviews")]})]}),ce.jsx("div",{className:"llm__tripadv-info",children:ce.jsxs("span",{className:"llm__tripadv-cuisine",children:[`${n.priceRange}, `,n.cuisine]})}),n.address&&ce.jsxs("div",{className:"llm__tripadv-location",children:[ce.jsx(Gb,{})," ",n.address]}),ce.jsxs("div",{className:"llm__tripadv-ctas",children:[n.book&&ce.jsx(Ow,{type:"button",label:t("llm.bookNow"),onClick:e=>xd(void 0,void 0,void 0,function*(){l&&(e.preventDefault(),window.open(n.book,"_blank"))})}),ce.jsx(Ow,{type:"text",label:t("llm.goToWebsite"),onClick:e=>xd(void 0,void 0,void 0,function*(){if(l){e.preventDefault();const t=yield i(n,n.url);window.open(t,"_blank")}})})]}),ce.jsx("div",{className:"llm__tripadv-icon",children:ce.jsxs("svg",{role:"img",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:[ce.jsx("title",{children:"Tripadvisor"}),ce.jsx("path",{d:"M12.006 4.295c-2.67 0-5.338.784-7.645 2.353H0l1.963 2.135a5.997 5.997 0 0 0 4.04 10.43 5.976 5.976 0 0 0 4.075-1.6L12 19.705l1.922-2.09a5.972 5.972 0 0 0 4.072 1.598 6 6 0 0 0 6-5.998 5.982 5.982 0 0 0-1.957-4.432L24 6.648h-4.35a13.573 13.573 0 0 0-7.644-2.353zM12 6.255c1.531 0 3.063.303 4.504.903C13.943 8.138 12 10.43 12 13.1c0-2.671-1.942-4.962-4.504-5.942A11.72 11.72 0 0 1 12 6.256zM6.002 9.157a4.059 4.059 0 1 1 0 8.118 4.059 4.059 0 0 1 0-8.118zm11.992.002a4.057 4.057 0 1 1 .003 8.115 4.057 4.057 0 0 1-.003-8.115zm-11.992 1.93a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256zm11.992 0a2.128 2.128 0 0 0 0 4.256 2.128 2.128 0 0 0 0-4.256z"})]})})]})]})})},YN={action:Qw,actionGroup:e=>{const{item:n}=e,t=g("llm__actions");return ce.jsx("div",{className:t,children:n.items.map((n,t)=>ce.jsx(Qw,Object.assign({},e,{item:n}),t))})},assistantMessage:e=>{const{text:n,chunkIndex:t,index:i}=e;return ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --sm-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsx(Gx,{body:n,chunkIndex:t,index:i})})})},card:qx,cardGroup:e=>{const{item:n}=e;Bj();const t=ee.useRef(null),i=ee.useRef(null),a={modules:[VL],spaceBetween:fN(16,24),slidesPerView:"auto",slidesPerGroup:1,watchOverflow:!0,centeredSlides:!1,navigation:{prevEl:t.current,nextEl:i.current},breakpoints:{630:{slidesPerGroup:1},768:{slidesPerGroup:1},1024:{slidesPerGroup:2},1280:{slidesPerGroup:3}}},o=g("llm__cards");return ce.jsx("div",{className:o,children:ce.jsxs(pN,Object.assign({},a,{children:[ce.jsxs("div",{className:"llm__cards-nav",children:[ce.jsx("button",{ref:t,children:ce.jsx(zb,{})}),ce.jsx("button",{ref:i,children:ce.jsx(Ib,{})})]}),n.items.map((n,t)=>ce.jsx(yN,{className:"llm__cards-slide",children:ce.jsx(qx,Object.assign({},e,{item:n}))},t))]}))})},event:jN,eventGroup:e=>{const{item:n}=e;Bj();const t=g("llm__events"),i=ee.useRef(null),a=ee.useRef(null),o={modules:[VL],spaceBetween:fN(16,24),slidesPerView:1.1,watchOverflow:!0,navigation:{prevEl:i.current,nextEl:a.current},breakpoints:{630:{slidesPerView:1.5},768:{slidesPerView:2},1024:{slidesPerView:2.5},1280:{slidesPerView:3}}};return ce.jsx("div",{className:t,children:ce.jsxs(pN,Object.assign({},o,{children:[ce.jsxs("div",{className:"llm__events-nav",children:[ce.jsx("button",{ref:i,children:ce.jsx(zb,{})}),ce.jsx("button",{ref:a,children:ce.jsx(Ib,{})})]}),n.items.map((n,t)=>ce.jsx(yN,{className:"llm__events-slide",children:ce.jsx(jN,Object.assign({},e,{item:n}))},t))]}))})},file:e=>{const{item:n}=e,t=g(wN,"llm__file",{[`llm__file--${n.type}`]:!!n.type}),i=n.url&&n.url.split("/").pop().split("?")[0];return ce.jsx("div",{className:t,children:n.url?ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --end-xs-12 --xs-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsxs("a",{className:xN,href:n.url,download:i,target:"_blank",rel:"noreferrer",children:[ce.jsx(Pb,{className:LN})," ",ce.jsx("span",{children:i})]})})}):ce.jsx("pre",{className:t,children:JSON.stringify(n,null,2)})})},formRecap:()=>{const e=$j(),n=zI(e=>e.app),t=zI(e=>e.threadId),{formRecap:i,getApi:a}=zI(e=>e.actions);return ce.jsx("div",{className:"llm__subscribe",children:ce.jsx("div",{className:"llm__subscribe-wrapper",children:ce.jsxs("form",{className:"llm__subscribe-form",onSubmit:e=>xd(void 0,void 0,void 0,function*(){e.preventDefault();try{const o=new FormData(e.target),r={};for(const[e,n]of o)r[e]=n;r.threadId=t;const s=Object.assign(Object.assign({},r),{html:NN(r,n)}),u=a(),l=yield u.postSummary(s);l?(console.warn("FormRecap.onSubmit.success",l,s),i()):(console.warn("FormRecap.onSubmit.error"),i({message:"unknown error"}))}catch(e){console.warn("FormRecap.onSubmit.error",e),i(e)}}),children:[ce.jsx("div",{className:"llm__subscribe-title",children:e("llm.formRecapTitle")}),ce.jsxs("div",{className:"llm__subscribe-fields",children:[ce.jsx("div",{className:"llm__subscribe-field",children:ce.jsx("input",{type:"text",name:"fullName",id:"subscribe-fullName",placeholder:e("llm.formRecapFullName")})}),ce.jsx("div",{className:"llm__subscribe-field",children:ce.jsx("input",{type:"email",name:"email",id:"subscribe-email",placeholder:e("llm.formRecapEmail")})}),ce.jsxs("div",{className:"llm__subscribe-field -privacy",children:[ce.jsx("input",{type:"checkbox",name:"privacy",id:"subscribe-privacy"}),ce.jsx("label",{htmlFor:"subscribe-privacy",children:e("llm.formRecapPrivacy")})]}),ce.jsx("div",{className:"llm__subscribe-cta",children:ce.jsx(Ow,{type:"submit",label:e("llm.formRecapSend")})})]})]})})})},formRecapError:()=>{const e=$j();return ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --sm-10 --md-8 --lg-6",children:ce.jsx(Gx,{body:e("llm.formRecapError")})})})},formRecapSuccess:()=>{const e=$j();return ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --sm-10 --md-8 --lg-6",children:ce.jsx(Gx,{body:e("llm.formRecapSuccess")})})})},formRequest:e=>{let{last:n}=e;const t=$j(),{formRequest:i}=zI(e=>e.actions);return ce.jsx("div",{className:"llm__row",children:ce.jsxs("div",{className:"llm__col --md-8 --lg-6",children:[ce.jsx(Gx,{body:t("llm.formRequestTitle")}),n&&ce.jsxs("div",{className:"llm__ctas",children:[ce.jsx(Ow,{type:"simple",label:t("llm.formRequestYes"),onClick:()=>i(!0)}),ce.jsx(Ow,{type:"simple",label:t("llm.formRequestNo"),onClick:()=>i(!1)})]})]})})},image:e=>{const{item:n}=e,t=g(vN,"llm__image",{[`llm__image--${n.type}`]:!!n.type});return ce.jsx("div",{className:t,children:n.url?ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --end-xs-12 --xs-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsx("img",{className:SN,src:n.url,alt:""})})}):ce.jsx("pre",{className:t,children:JSON.stringify(n,null,2)})})},notFound:e=>{const{item:n}=e,t=g("llm__not-found",{[`llm__not-found--${n.type}`]:!!n.type});return ce.jsx("pre",{className:t,children:JSON.stringify(n,null,2)})},poi:TN,poiGroup:e=>{const{item:n}=e,t=g("llm__pois");return ce.jsx("div",{className:t,children:n.items.map((n,t)=>ce.jsx(TN,Object.assign({},e,{item:n}),t))})},product:EN,productGroup:e=>{const{item:n}=e,t=g("llm__products");return ce.jsx("div",{className:t,children:ce.jsx(zN,{children:n.items.map((n,t)=>ce.jsx(IN,{xs:6,sm:4,md:3,children:ce.jsx(EN,Object.assign({},e,{item:n}))},t))})})},productGroupSlider:e=>{const{item:n}=e;Bj();const t=ee.useRef(null),i=ee.useRef(null),a={modules:[VL],spaceBetween:fN(16,24),slidesPerView:"auto",slidesPerGroup:1,watchOverflow:!0,centeredSlides:!1,navigation:{prevEl:t.current,nextEl:i.current},breakpoints:{630:{slidesPerGroup:1},768:{slidesPerGroup:1},1024:{slidesPerGroup:2},1280:{slidesPerGroup:3}}},o=g("llm__products");return ce.jsx("div",{className:o,children:ce.jsxs(pN,Object.assign({},a,{children:[ce.jsxs("div",{className:"llm__products-nav",children:[ce.jsx("button",{ref:t,children:ce.jsx(zb,{})}),ce.jsx("button",{ref:i,children:ce.jsx(Ib,{})})]}),n.items.map((n,t)=>ce.jsx(yN,{className:"llm__products-slide",children:ce.jsx(EN,Object.assign({},e,{item:n}))},t))]}))})},error:e=>{const{item:n}=e,t=$j(),[i,a]=ee.useState(!1);return ce.jsxs("div",{className:"llm__stream-error llm__row",children:[ce.jsxs("div",{className:"llm__stream-error__info llm__col --sm-10 --md-8 --lg-6",children:[ce.jsx(Gx,{body:t("llm.streamError")}),ce.jsx("button",{className:"llm__stream-error__toggle",type:"button",onClick:()=>a(!i),"aria-label":t(i?"llm.hideError":"llm.showError"),"aria-pressed":i,children:t(i?"llm.hideError":"llm.showError")})]}),i&&ce.jsx("code",{className:"llm__stream-error__error llm__hint",children:JSON.stringify(n.error)})]})},tripAdvisor:AN,tripAdvisorGroup:e=>{const{item:n}=e;return ce.jsx("div",{className:"llm__tripadvisor-group llm__row",children:n.items.map((n,t)=>ce.jsx("div",{className:"llm__col --md-6",children:ce.jsx(AN,Object.assign({},e,{item:n}),t)}))})},userMessage:e=>{const{text:n}=e;return ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --end-xs-12 --xs-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsx("div",{className:"llm__text",children:ce.jsx("h2",{className:"llm__text-body","data-text":!0,dangerouslySetInnerHTML:{__html:n}})})})})}};let ON;const QN=new Uint8Array(16);function ZN(){if(!ON&&(ON="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!ON))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return ON(QN)}const _N=[];for(let e=0;e<256;++e)_N.push((e+256).toString(16).slice(1));var BN={randomUUID:"undefined"!=typeof crypto&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function FN(e,n,t){if(BN.randomUUID&&!n&&!e)return BN.randomUUID();const i=(e=e||{}).random||(e.rng||ZN)();if(i[6]=15&i[6]|64,i[8]=63&i[8]|128,n){t=t||0;for(let e=0;e<16;++e)n[t+e]=i[e];return n}return function(e,n=0){return _N[e[n+0]]+_N[e[n+1]]+_N[e[n+2]]+_N[e[n+3]]+"-"+_N[e[n+4]]+_N[e[n+5]]+"-"+_N[e[n+6]]+_N[e[n+7]]+"-"+_N[e[n+8]]+_N[e[n+9]]+"-"+_N[e[n+10]]+_N[e[n+11]]+_N[e[n+12]]+_N[e[n+13]]+_N[e[n+14]]+_N[e[n+15]]}(i)}const XN=ee.createContext({wrapper:null,setWrapperNode:e=>{console.log("setWrapperNode not set",e.id)},setWrapper:()=>{console.log("setWrapper not set")}});function UN(e){let{children:n}=e;const[t,i]=ee.useState(null),a=ee.useCallback(e=>{const n=(e=>{try{const n=e.getAttribute("data-actions");return n?JSON.parse(n):[]}catch(e){return console.log("setWrapperNode.parseActions.error",e),[]}})(e);if(n.length>0){const t={node:e,id:e.id,actions:n};i(t)}},[i]),o=ee.useMemo(()=>({wrapper:t,setWrapperNode:a,setWrapper:i}),[t,a,i]);return ce.jsx(XN.Provider,{value:o,children:n})}function HN(){return ee.useContext(XN)}function JN(e){return"text"===e.type}function PN(e){return e.replace(/Item$/,"")}const GN=".jpg, .jpeg, .png, .svg, .webp, .txt, .md, .pdf, .csv, .doc, .xls, .ppt",RN=1048576,WN=e=>{let{item:n,chunkIndex:t,index:i,total:a,role:o}=e;const r=zI(e=>e.blocks),s={chunkIndex:t,index:i,total:a,role:o,first:0===i,last:i===a-1},u=Object.assign(Object.assign({},s),{item:n});if("text"===(l=n).type||"string"===l.type){const e=(JN(n)?n.text:n.content)||"";return e.length>0&&("user"===o?r.userMessage(Object.assign(Object.assign({},s),{role:"user",text:e})):r.assistantMessage(Object.assign(Object.assign({},s),{role:"assistant",text:e})))}var l;if(function(e,n){return"string"==typeof e.type&&("function"==typeof n[PN(e.type)]||["image","file","image_url"].includes(e.type))}(n,r)){if("image_url"===n.type)return n.image_url?ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --end-xs-12 --xs-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsx("img",{src:n.image_url.url,alt:""})})}):ce.jsx("code",{children:JSON.stringify(n)});return(0,r[PN(n.type)])(u)}return r.notFound(u)},KN=e=>{var{className:n,stream:t}=e,i=wd(e,["className","stream"]);const a=ee.useRef(null),o=`chunk-${ee.useId()}`,r=ee.useMemo(()=>(i.item.actions||[]).map(e=>(e.id=e.id||FN(),e)),[i.item]),{setWrapperNode:s}=HN(),u=ee.useCallback(()=>{const e=a.current;e&&e.offsetTop-window.scrollY<window.innerHeight/2&&e.offsetTop+e.offsetHeight-window.scrollY>window.innerHeight/2&&s(e)},[s]);_j("scroll",u);const l=g(n||`llm__inner llm__inner--${i.item.type}`);return ce.jsx("div",{ref:a,id:o,className:l,"data-message-role":i.role,"data-message-index":i.index,"data-chunk-index":i.chunkIndex,"data-chunk-type":i.item.type,"data-actions":JSON.stringify(r),children:t?ce.jsx(Mj.div,{initial:{opacity:0,y:10},animate:{opacity:1,y:0},transition:{duration:1},children:ce.jsx(WN,Object.assign({},i))}):ce.jsx(WN,Object.assign({},i))})},VN=e=>{const n=$j(),t=zI(e=>e.app),i=(null==t?void 0:t.contents.disclaimer)||n("llm.disclaimer");return i&&ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --end-xs-12 --xs-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsxs("small",{className:"llm__disclaimer",children:[ce.jsx("i",{children:ce.jsx(Fb,{})}),ce.jsx("div",{dangerouslySetInnerHTML:{__html:i}})]})})})},$N=e=>{let{type:n,message:t}=e;var i;const a=$j(),o=zI(e=>e.threadId)||"",r=t.messageId||"",{getApi:s}=zI(e=>e.actions),u=zI(e=>e.theme),[l,c]=ee.useState(!1),[d,h]=ee.useState(!1),[p,m]=ee.useState(),y=g("llm__feedback",`llm__feedback--${n||(null===(i=u.feedback)||void 0===i?void 0:i.type)||"stars"}`);if(o&&r)return ce.jsx("div",{className:y,children:ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --sm-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsx("div",{className:"llm__feedback__group",children:p?ce.jsx("div",{className:"llm__feedback__title",children:a("llm.feedbackError")}):d?ce.jsx("div",{className:"llm__feedback__title",children:a("llm.feedbackSent")}):ce.jsxs(ce.Fragment,{children:[ce.jsx("div",{className:"llm__feedback__title",children:a("llm.feedbackTitle")}),ce.jsxs("form",{id:`feedback_${r}`,className:"llm__feedback__form",onSubmit:e=>xd(void 0,void 0,void 0,function*(){e.preventDefault();try{m(void 0);const n=new FormData(e.currentTarget),t={threadId:o,messageId:r};for(const[e,i]of n)if("feedbackRating"===e)t[e]=parseInt(String(i));else t[e]=String(i);if(Boolean(t.feedbackRating)){const e=s();(yield e.postFeedback(t))?h(!0):m({message:"unknown error"})}}catch(e){console.warn("Feedback.onSubmit.error",e),m(e)}}),onChange:e=>xd(void 0,void 0,void 0,function*(){const n=new FormData(e.currentTarget),t={threadId:o,messageId:r};for(const[e,i]of n)if("feedbackRating"===e)t[e]=parseInt(String(i));else t[e]=String(i);const i=Boolean(t.feedbackRating);c(i)}),children:[ce.jsxs("fieldset",{className:"llm__feedback__rating",children:[ce.jsx("legend",{children:a("llm.feedbackRating")}),ce.jsx("div",{className:"llm__feedback__stars",children:new Array(5).fill(0).map((e,n)=>ce.jsxs(ee.Fragment,{children:[ce.jsx("input",{type:"radio",name:"feedbackRating",id:`feedbackRating_${r}_${n+1}`,value:n+1}),ce.jsx("label",{htmlFor:`feedbackRating_${r}_${n+1}`,children:ce.jsxs("span",{children:["$",n+1]})})]},n))})]}),ce.jsxs("fieldset",{className:"llm__feedback__message",children:[ce.jsx("legend",{children:a("llm.feedbackMessage")}),ce.jsx("input",{type:"text",name:"feedbackMessage",id:"feedbackMessage",placeholder:a("llm.feedbackMessagePlaceholder")})]}),ce.jsx("div",{className:"llm__feedback__cta",children:ce.jsx("button",{type:"submit",disabled:!l,children:a("llm.feedbackSend")})})]})]})})})})})},qN=()=>{var e;const n=zI(e=>e.theme);return ee.useEffect(()=>{var e;if(l){const t=document.querySelector("head");if(t){const i=FN(),a=(null===(e=n.font)||void 0===e?void 0:e.source)||'\n<link rel="stylesheet" href="https://design.wslabs.it/llm/fonts/aeonik.css">\n<link rel="stylesheet" href="https://design.wslabs.it/llm/fonts/capraia.css">\n ',o=(new DOMParser).parseFromString(a,"text/html"),r=Array.from(o.querySelectorAll("head>*")),s=`llm-font-${i}`;return r.forEach(e=>{e.classList.add(s),t.appendChild(e),console.log("[mixer-llm] added font node",e)}),()=>{Array.from(document.querySelectorAll(`.${s}`)).forEach(e=>{e.parentNode&&(e.parentNode.removeChild(e),console.log("[mixer-llm] removed font node",e))})}}}return()=>{}},[null===(e=n.font)||void 0===e?void 0:e.source]),ce.jsx(ce.Fragment,{})};function ev(e,n){void 0===n&&(n={});var t=n.insertAt;if(e&&"undefined"!=typeof document){var i=document.head||document.getElementsByTagName("head")[0],a=document.createElement("style");a.type="text/css","top"===t&&i.firstChild?i.insertBefore(a,i.firstChild):i.appendChild(a),a.styleSheet?a.styleSheet.cssText=e:a.appendChild(document.createTextNode(e))}}function nv(e,n,t){return Math.max(e,Math.min(n,t))}var tv=class{isRunning=!1;value=0;from=0;to=0;currentTime=0;lerp;duration;easing;onUpdate;advance(e){if(!this.isRunning)return;let n=!1;if(this.duration&&this.easing){this.currentTime+=e;const t=nv(0,this.currentTime/this.duration,1);n=t>=1;const i=n?1:this.easing(t);this.value=this.from+(this.to-this.from)*i}else this.lerp?(this.value=function(e,n,t,i){return function(e,n,t){return(1-t)*e+t*n}(e,n,1-Math.exp(-t*i))}(this.value,this.to,60*this.lerp,e),Math.round(this.value)===this.to&&(this.value=this.to,n=!0)):(this.value=this.to,n=!0);n&&this.stop(),this.onUpdate?.(this.value,n)}stop(){this.isRunning=!1}fromTo(e,n,{lerp:t,duration:i,easing:a,onStart:o,onUpdate:r}){this.from=this.value=e,this.to=n,this.lerp=t,this.duration=i,this.easing=a,this.currentTime=0,this.isRunning=!0,o?.(),this.onUpdate=r}};var iv=class{constructor(e,n,{autoResize:t=!0,debounce:i=250}={}){this.wrapper=e,this.content=n,t&&(this.debouncedResize=function(e,n){let t;return function(...i){let a=this;clearTimeout(t),t=setTimeout(()=>{t=void 0,e.apply(a,i)},n)}}(this.resize,i),this.wrapper instanceof Window?window.addEventListener("resize",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}width=0;height=0;scrollHeight=0;scrollWidth=0;debouncedResize;wrapperResizeObserver;contentResizeObserver;destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),this.wrapper===window&&this.debouncedResize&&window.removeEventListener("resize",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper instanceof Window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper instanceof Window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}},av=class{events={};emit(e,...n){let t=this.events[e]||[];for(let e=0,i=t.length;e<i;e++)t[e]?.(...n)}on(e,n){return this.events[e]?.push(n)||(this.events[e]=[n]),()=>{this.events[e]=this.events[e]?.filter(e=>n!==e)}}off(e,n){this.events[e]=this.events[e]?.filter(e=>n!==e)}destroy(){this.events={}}},ov=100/6,rv={passive:!1},sv=class{constructor(e,n={wheelMultiplier:1,touchMultiplier:1}){this.element=e,this.options=n,window.addEventListener("resize",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener("wheel",this.onWheel,rv),this.element.addEventListener("touchstart",this.onTouchStart,rv),this.element.addEventListener("touchmove",this.onTouchMove,rv),this.element.addEventListener("touchend",this.onTouchEnd,rv)}touchStart={x:0,y:0};lastDelta={x:0,y:0};window={width:0,height:0};emitter=new av;on(e,n){return this.emitter.on(e,n)}destroy(){this.emitter.destroy(),window.removeEventListener("resize",this.onWindowResize,!1),this.element.removeEventListener("wheel",this.onWheel,rv),this.element.removeEventListener("touchstart",this.onTouchStart,rv),this.element.removeEventListener("touchmove",this.onTouchMove,rv),this.element.removeEventListener("touchend",this.onTouchEnd,rv)}onTouchStart=e=>{const{clientX:n,clientY:t}=e.targetTouches?e.targetTouches[0]:e;this.touchStart.x=n,this.touchStart.y=t,this.lastDelta={x:0,y:0},this.emitter.emit("scroll",{deltaX:0,deltaY:0,event:e})};onTouchMove=e=>{const{clientX:n,clientY:t}=e.targetTouches?e.targetTouches[0]:e,i=-(n-this.touchStart.x)*this.options.touchMultiplier,a=-(t-this.touchStart.y)*this.options.touchMultiplier;this.touchStart.x=n,this.touchStart.y=t,this.lastDelta={x:i,y:a},this.emitter.emit("scroll",{deltaX:i,deltaY:a,event:e})};onTouchEnd=e=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:e})};onWheel=e=>{let{deltaX:n,deltaY:t,deltaMode:i}=e;n*=1===i?ov:2===i?this.window.width:1,t*=1===i?ov:2===i?this.window.height:1,n*=this.options.wheelMultiplier,t*=this.options.wheelMultiplier,this.emitter.emit("scroll",{deltaX:n,deltaY:t,event:e})};onWindowResize=()=>{this.window={width:window.innerWidth,height:window.innerHeight}}},uv=e=>Math.min(1,1.001-Math.pow(2,-10*e)),lv=class{_isScrolling=!1;_isStopped=!1;_isLocked=!1;_preventNextNativeScrollEvent=!1;_resetVelocityTimeout=null;__rafID=null;isTouching;time=0;userData={};lastVelocity=0;velocity=0;direction=0;options;targetScroll;animatedScroll;animate=new tv;emitter=new av;dimensions;virtualScroll;constructor({wrapper:e=window,content:n=document.documentElement,eventsTarget:t=e,smoothWheel:i=!0,syncTouch:a=!1,syncTouchLerp:o=.075,touchInertiaMultiplier:r=35,duration:s,easing:u,lerp:l=.1,infinite:c=!1,orientation:d="vertical",gestureOrientation:g="vertical",touchMultiplier:h=1,wheelMultiplier:p=1,autoResize:m=!0,prevent:y,virtualScroll:f,overscroll:M=!0,autoRaf:j=!1,anchors:b=!1,autoToggle:w=!1,allowNestedScroll:x=!1,__experimental__naiveDimensions:L=!1}={}){window.lenisVersion="1.3.4",e&&e!==document.documentElement||(e=window),"number"==typeof s&&"function"!=typeof u?u=uv:"function"==typeof u&&"number"!=typeof s&&(s=1),this.options={wrapper:e,content:n,eventsTarget:t,smoothWheel:i,syncTouch:a,syncTouchLerp:o,touchInertiaMultiplier:r,duration:s,easing:u,lerp:l,infinite:c,gestureOrientation:g,orientation:d,touchMultiplier:h,wheelMultiplier:p,autoResize:m,prevent:y,virtualScroll:f,overscroll:M,autoRaf:j,anchors:b,autoToggle:w,allowNestedScroll:x,__experimental__naiveDimensions:L},this.dimensions=new iv(e,n,{autoResize:m}),this.updateClassName(),this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onNativeScroll,!1),this.options.wrapper.addEventListener("scrollend",this.onScrollEnd,{capture:!0}),this.options.anchors&&this.options.wrapper===window&&this.options.wrapper.addEventListener("click",this.onClick,!1),this.options.wrapper.addEventListener("pointerdown",this.onPointerDown,!1),this.virtualScroll=new sv(t,{touchMultiplier:h,wheelMultiplier:p}),this.virtualScroll.on("scroll",this.onVirtualScroll),this.options.autoToggle&&this.rootElement.addEventListener("transitionend",this.onTransitionEnd,{passive:!0}),this.options.autoRaf&&(this.__rafID=requestAnimationFrame(this.raf))}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onNativeScroll,!1),this.options.wrapper.removeEventListener("scrollend",this.onScrollEnd,{capture:!0}),this.options.wrapper.removeEventListener("pointerdown",this.onPointerDown,!1),this.options.anchors&&this.options.wrapper===window&&this.options.wrapper.removeEventListener("click",this.onClick,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName(),this.__rafID&&cancelAnimationFrame(this.__rafID)}on(e,n){return this.emitter.on(e,n)}off(e,n){return this.emitter.off(e,n)}onScrollEnd=e=>{e instanceof CustomEvent||"smooth"!==this.isScrolling&&!1!==this.isScrolling||e.stopPropagation()};dispatchScrollendEvent=()=>{this.options.wrapper.dispatchEvent(new CustomEvent("scrollend",{bubbles:this.options.wrapper===window,detail:{lenisScrollEnd:!0}}))};onTransitionEnd=e=>{if(e.propertyName.includes("overflow")){const e=this.isHorizontal?"overflow-x":"overflow-y",n=getComputedStyle(this.rootElement)[e];["hidden","clip"].includes(n)?this.stop():this.start()}};setScroll(e){this.isHorizontal?this.options.wrapper.scrollTo({left:e,behavior:"instant"}):this.options.wrapper.scrollTo({top:e,behavior:"instant"})}onClick=e=>{const n=e.composedPath().find(e=>e instanceof HTMLAnchorElement&&(e.getAttribute("href")?.startsWith("#")||e.getAttribute("href")?.startsWith("/#")||e.getAttribute("href")?.startsWith("./#")));if(n){const e=n.getAttribute("href");if(e){const n="object"==typeof this.options.anchors&&this.options.anchors?this.options.anchors:void 0;let t=`#${e.split("#")[1]}`;["#","/#","./#","#top","/#top","./#top"].includes(e)&&(t=0),this.scrollTo(t,n)}}};onPointerDown=e=>{1===e.button&&this.reset()};onVirtualScroll=e=>{if("function"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(e))return;const{deltaX:n,deltaY:t,event:i}=e;if(this.emitter.emit("virtual-scroll",{deltaX:n,deltaY:t,event:i}),i.ctrlKey)return;if(i.lenisStopPropagation)return;const a=i.type.includes("touch"),o=i.type.includes("wheel");this.isTouching="touchstart"===i.type||"touchmove"===i.type;const r=0===n&&0===t;if(this.options.syncTouch&&a&&"touchstart"===i.type&&r&&!this.isStopped&&!this.isLocked)return void this.reset();const s="vertical"===this.options.gestureOrientation&&0===t||"horizontal"===this.options.gestureOrientation&&0===n;if(r||s)return;let u=i.composedPath();u=u.slice(0,u.indexOf(this.rootElement));const l=this.options.prevent;if(u.find(e=>e instanceof HTMLElement&&("function"==typeof l&&l?.(e)||e.hasAttribute?.("data-lenis-prevent")||a&&e.hasAttribute?.("data-lenis-prevent-touch")||o&&e.hasAttribute?.("data-lenis-prevent-wheel")||this.options.allowNestedScroll&&this.checkNestedScroll(e,{deltaX:n,deltaY:t}))))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&a||this.options.smoothWheel&&o))return this.isScrolling="native",this.animate.stop(),void(i.lenisStopPropagation=!0);let c=t;"both"===this.options.gestureOrientation?c=Math.abs(t)>Math.abs(n)?t:n:"horizontal"===this.options.gestureOrientation&&(c=n),(!this.options.overscroll||this.options.infinite||this.options.wrapper!==window&&(this.animatedScroll>0&&this.animatedScroll<this.limit||0===this.animatedScroll&&t>0||this.animatedScroll===this.limit&&t<0))&&(i.lenisStopPropagation=!0),i.preventDefault();const d=a&&this.options.syncTouch,g=a&&"touchend"===i.type&&Math.abs(c)>5;g&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,{programmatic:!1,...d?{lerp:g?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}})};resize(){this.dimensions.resize(),this.animatedScroll=this.targetScroll=this.actualScroll,this.emit()}emit(){this.emitter.emit("scroll",this)}onNativeScroll=()=>{if(null!==this._resetVelocityTimeout&&(clearTimeout(this._resetVelocityTimeout),this._resetVelocityTimeout=null),this._preventNextNativeScrollEvent)this._preventNextNativeScrollEvent=!1;else if(!1===this.isScrolling||"native"===this.isScrolling){const e=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-e,this.direction=Math.sign(this.animatedScroll-e),this.isStopped||(this.isScrolling="native"),this.emit(),0!==this.velocity&&(this._resetVelocityTimeout=setTimeout(()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()},400))}};reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.reset(),this.isStopped=!1,this.emit())}stop(){this.isStopped||(this.reset(),this.isStopped=!0,this.emit())}raf=e=>{const n=e-(this.time||e);this.time=e,this.animate.advance(.001*n),this.options.autoRaf&&(this.__rafID=requestAnimationFrame(this.raf))};scrollTo(e,{offset:n=0,immediate:t=!1,lock:i=!1,duration:a=this.options.duration,easing:o=this.options.easing,lerp:r=this.options.lerp,onStart:s,onComplete:u,force:l=!1,programmatic:c=!0,userData:d}={}){if(!this.isStopped&&!this.isLocked||l){if("string"==typeof e&&["top","left","start"].includes(e))e=0;else if("string"==typeof e&&["bottom","right","end"].includes(e))e=this.limit;else{let t;if("string"==typeof e?t=document.querySelector(e):e instanceof HTMLElement&&e?.nodeType&&(t=e),t){if(this.options.wrapper!==window){const e=this.rootElement.getBoundingClientRect();n-=this.isHorizontal?e.left:e.top}const i=t.getBoundingClientRect();e=(this.isHorizontal?i.left:i.top)+this.animatedScroll}}if("number"==typeof e){if(e+=n,e=Math.round(e),this.options.infinite){if(c){this.targetScroll=this.animatedScroll=this.scroll;const n=e-this.animatedScroll;n>this.limit/2?e-=this.limit:n<-this.limit/2&&(e+=this.limit)}}else e=nv(0,e,this.limit);if(e===this.targetScroll)return s?.(this),void u?.(this);if(this.userData=d??{},t)return this.animatedScroll=this.targetScroll=e,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),u?.(this),this.userData={},void requestAnimationFrame(()=>{this.dispatchScrollendEvent()});c||(this.targetScroll=e),"number"==typeof a&&"function"!=typeof o?o=uv:"function"==typeof o&&"number"!=typeof a&&(a=1),this.animate.fromTo(this.animatedScroll,e,{duration:a,easing:o,lerp:r,onStart:()=>{i&&(this.isLocked=!0),this.isScrolling="smooth",s?.(this)},onUpdate:(e,n)=>{this.isScrolling="smooth",this.lastVelocity=this.velocity,this.velocity=e-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=e,this.setScroll(this.scroll),c&&(this.targetScroll=e),n||this.emit(),n&&(this.reset(),this.emit(),u?.(this),this.userData={},requestAnimationFrame(()=>{this.dispatchScrollendEvent()}),this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this._preventNextNativeScrollEvent=!0,requestAnimationFrame(()=>{this._preventNextNativeScrollEvent=!1})}checkNestedScroll(e,{deltaX:n,deltaY:t}){const i=Date.now(),a=e._lenis??={};let o,r,s,u,l,c,d,g;const h=this.options.gestureOrientation;if(i-(a.time??0)>2e3){a.time=Date.now();const n=window.getComputedStyle(e);a.computedStyle=n;const t=n.overflowX,i=n.overflowY;if(o=["auto","overlay","scroll"].includes(t),r=["auto","overlay","scroll"].includes(i),a.hasOverflowX=o,a.hasOverflowY=r,!o&&!r)return!1;if("vertical"===h&&!r)return!1;if("horizontal"===h&&!o)return!1;l=e.scrollWidth,c=e.scrollHeight,d=e.clientWidth,g=e.clientHeight,s=l>d,u=c>g,a.isScrollableX=s,a.isScrollableY=u,a.scrollWidth=l,a.scrollHeight=c,a.clientWidth=d,a.clientHeight=g}else s=a.isScrollableX,u=a.isScrollableY,o=a.hasOverflowX,r=a.hasOverflowY,l=a.scrollWidth,c=a.scrollHeight,d=a.clientWidth,g=a.clientHeight;if(!o&&!r||!s&&!u)return!1;if(!("vertical"!==h||r&&u))return!1;if(!("horizontal"!==h||o&&s))return!1;let p,m,y,f,M,j;if("horizontal"===h)p="x";else if("vertical"===h)p="y";else{0!==n&&o&&s&&(p="x"),0!==t&&r&&u&&(p="y")}if(!p)return!1;if("x"===p)m=e.scrollLeft,y=l-d,f=n,M=o,j=s;else{if("y"!==p)return!1;m=e.scrollTop,y=c-g,f=t,M=r,j=u}return(f>0?m<y:m>0)&&M&&j}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?"x":"y"]}get isHorizontal(){return"horizontal"===this.options.orientation}get actualScroll(){const e=this.options.wrapper;return this.isHorizontal?e.scrollX??e.scrollLeft:e.scrollY??e.scrollTop}get scroll(){return this.options.infinite?function(e,n){return(e%n+n)%n}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,this.updateClassName())}get isStopped(){return this._isStopped}set isStopped(e){this._isStopped!==e&&(this._isStopped=e,this.updateClassName())}get isLocked(){return this._isLocked}set isLocked(e){this._isLocked!==e&&(this._isLocked=e,this.updateClassName())}get isSmooth(){return"smooth"===this.isScrolling}get className(){let e="lenis";return this.options.autoToggle&&(e+=" lenis-autoToggle"),this.isStopped&&(e+=" lenis-stopped"),this.isLocked&&(e+=" lenis-locked"),this.isScrolling&&(e+=" lenis-scrolling"),"smooth"===this.isScrolling&&(e+=" lenis-smooth"),e}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\w+)?/g,"").trim()}};var cv=ee.createContext(null),dv=new class{constructor(e){this.state=e}listeners=[];set(e){this.state=e;for(let e of this.listeners)e(this.state)}subscribe(e){return this.listeners=[...this.listeners,e],()=>{this.listeners=this.listeners.filter(n=>n!==e)}}get(){return this.state}}(null);ee.forwardRef(({children:e,root:n=!1,options:t={},className:i,autoRaf:a=!0,style:o,props:r},s)=>{const u=ee.useRef(null),l=ee.useRef(null),[c,d]=ee.useState(void 0);ee.useImperativeHandle(s,()=>({wrapper:u.current,content:l.current,lenis:c}),[c]),ee.useEffect(()=>{const e=new lv({...t,...!n&&{wrapper:u.current,content:l.current},autoRaf:t?.autoRaf??a});return d(e),()=>{e.destroy(),d(void 0)}},[n,JSON.stringify(t)]);const g=ee.useRef([]),h=ee.useCallback((e,n)=>{g.current.push({callback:e,priority:n}),g.current.sort((e,n)=>e.priority-n.priority)},[]),p=ee.useCallback(e=>{g.current=g.current.filter(n=>n.callback!==e)},[]);return ee.useEffect(()=>{if(n&&c)return dv.set({lenis:c,addCallback:h,removeCallback:p}),()=>dv.set(null)},[n,c,h,p]),ee.useEffect(()=>{if(!c)return;const e=e=>{for(let n=0;n<g.current.length;n++)g.current[n]?.callback(e)};return c.on("scroll",e),()=>{c.off("scroll",e)}},[c]),ce.jsx(cv.Provider,{value:{lenis:c,addCallback:h,removeCallback:p},children:n?e:ce.jsx("div",{ref:u,className:i,style:o,...r,children:ce.jsx("div",{ref:l,children:e})})})});var gv={};function hv(e,n=[],t=0){const i=ee.useContext(cv),a=function(e){const[n,t]=ee.useState(e.get());return ee.useEffect(()=>e.subscribe(e=>t(e)),[e]),n}(dv),o=i??a??gv,{lenis:r,addCallback:s,removeCallback:u}=o;return ee.useEffect(()=>{if(e&&s&&u&&r)return s(e,t),e(r),()=>{u(e)}},[r,s,u,t,...n]),r}const pv={hidden:{y:"40px"},show:{y:0,transition:{type:"tween",duration:1}}},mv={top:{y:"-15%"},bottom:{y:"0%",transition:{repeat:1/0,repeatType:"mirror",duration:2,ease:"easeInOut"}}},yv={hidden:{},show:{transition:{staggerChildren:.3}}},fv=()=>{var e;const{Canvas:n,Header:t,Intro:i,Prompt:a,Scroller:o,ScrollProposition:r,Thread:s}=zI(e=>e.components),u=zI(e=>e.app),l=zI(e=>e.theme),c=zI(e=>e.messages),d=lw(e=>e.introed),g=lw(e=>e.visible),h=lw(e=>e.embedded),p=e=>({hidden:{y:100*e+"%"},show:{y:0,transition:{type:"tween",delay:(null==u?void 0:u.contents.customIntro)?0:1.2,duration:.6}},exit:{y:100*e+"%",transition:{type:"tween",duration:.3}}}),m=!(null==u?void 0:u.contents.customIntro)||d,y=ee.useRef(null);return function(e,n={}){const t=n.selectors||'a[href]:not([disabled]), button:not([disabled]), textarea:not([disabled]), input[type="text"]:not([disabled]), input[type="radio"]:not([disabled]), input[type="checkbox"]:not([disabled]), select:not([disabled])',[i,a]=ee.useState(!n.disabled);Zj(()=>{const n=e.current;if(n){const e=n.querySelectorAll(t),i=e[0],a=e[e.length-1],o=e=>{"Tab"===e.key&&(e.shiftKey?document.activeElement===i&&(a.focus(),e.preventDefault()):document.activeElement===a&&(i.focus(),e.preventDefault()))};return n.addEventListener("keydown",o),()=>{n.removeEventListener("keydown",o)}}return()=>{}},[e.current])}(y,{disabled:h}),ce.jsxs(Mj.div,{className:"llm__main",variants:{hidden:{opacity:0,scale:.98},show:{opacity:1,scale:1,transition:{duration:.3}},exit:{opacity:0,transition:{duration:.3,delay:.3}}},initial:"hidden",animate:"show",exit:"exit","data-main":!0,"data-lenis-prevent":!0,ref:y,children:[g&&ce.jsx(n,{}),!h&&ce.jsx(Mj.div,{className:"llm__top",variants:p(-1),initial:"hidden",animate:"show",exit:"exit",children:ce.jsx(t,{})}),ce.jsx(o,{children:ce.jsxs(Mj.div,{variants:{hidden:{opacity:0},show:{opacity:1,transition:{delay:.6,duration:.5}}},initial:"hidden",animate:"show",className:"llm__content",children:[ce.jsx(i,{}),c&&c.length>0&&ce.jsx(s,{})]})}),m&&ce.jsxs(ce.Fragment,{children:[u&&!(null===(e=l.canvas)||void 0===e?void 0:e.enabled)&&ce.jsx("div",{className:"llm__underlay","aria-hidden":!0}),ce.jsxs(Mj.main,{className:"llm__bottom",variants:p(1),initial:"hidden",animate:"show",exit:"exit",children:[ce.jsx(r,{}),ce.jsx(a,{})]})]})]},"main-container")};var Mv="page-actions-module_actions__rO6H-",jv="page-actions-module_action__ld4Ir",bv="page-actions-module_back__1cEfA";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-actions-module_actions__rO6H- {\n display: inline-flex;\n align-items: center;\n gap: 4px;\n transition: ease-in-out 350ms;\n transition-property: opacity;\n}\n\n.page-actions-module_action__ld4Ir {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n height: 40px;\n padding: 0px 16px 0px 12px;\n gap: 8px;\n border-radius: 100px;\n font-size: 15px;\n font-style: normal;\n font-weight: 400;\n line-height: 1.06;\n letter-spacing: -0.24px;\n border: 1px solid #F2EFEB;\n background: #FFF;\n color: #3E3F41;\n}\n.page-actions-module_action__ld4Ir:focus, .page-actions-module_action__ld4Ir:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-actions-module_action__ld4Ir:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-actions-module_action__ld4Ir:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-actions-module_action__ld4Ir svg {\n width: 24px;\n height: 24px;\n}\n.page-actions-module_action__ld4Ir:hover {\n border-color: #3E3F41;\n}\n.page-actions-module_action__ld4Ir svg {\n display: flex;\n width: 24px;\n height: 24px;\n padding: 4px;\n justify-content: center;\n align-items: center;\n gap: 10px;\n}\n\n.page-actions-module_back__1cEfA {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n width: 40px;\n height: 40px;\n border-radius: 50%;\n background: var(--llm-color-base-900);\n color: var(--llm-color-neutral-100);\n}\n.page-actions-module_back__1cEfA:focus, .page-actions-module_back__1cEfA:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-actions-module_back__1cEfA:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-actions-module_back__1cEfA:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-actions-module_back__1cEfA svg {\n width: 24px;\n height: 24px;\n}\n.page-actions-module_back__1cEfA svg {\n width: 20px;\n height: 20px;\n position: relative;\n z-index: 2;\n}");function wv(e){let{action:n}=e;return"generate"===(n.icon||n.type||"idea")?ce.jsx(_b,{}):ce.jsx(Bb,{})}var xv=Object.defineProperty,Lv=Object.defineProperties,Nv=Object.getOwnPropertyDescriptors,vv=Object.getOwnPropertySymbols,Sv=Object.prototype.hasOwnProperty,Tv=Object.prototype.propertyIsEnumerable,Dv=(e,n,t)=>n in e?xv(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t,kv=(e,n)=>{for(var t in n||(n={}))Sv.call(n,t)&&Dv(e,t,n[t]);if(vv)for(var t of vv(n))Tv.call(n,t)&&Dv(e,t,n[t]);return e},Cv=(e,n)=>Lv(e,Nv(n)),Ev=(e,n)=>{var t={};for(var i in e)Sv.call(e,i)&&n.indexOf(i)<0&&(t[i]=e[i]);if(null!=e&&vv)for(var i of vv(e))n.indexOf(i)<0&&Tv.call(e,i)&&(t[i]=e[i]);return t},zv=Object.defineProperty,Iv=Object.defineProperties,Av=Object.getOwnPropertyDescriptors,Yv=Object.getOwnPropertySymbols,Ov=Object.prototype.hasOwnProperty,Qv=Object.prototype.propertyIsEnumerable,Zv=(e,n,t)=>n in e?zv(e,n,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[n]=t,_v=(e,n)=>{for(var t in n||(n={}))Ov.call(n,t)&&Zv(e,t,n[t]);if(Yv)for(var t of Yv(n))Qv.call(n,t)&&Zv(e,t,n[t]);return e},Bv=(e,n)=>Iv(e,Av(n)),Fv=(e,n)=>{var t={};for(var i in e)Ov.call(e,i)&&n.indexOf(i)<0&&(t[i]=e[i]);if(null!=e&&Yv)for(var i of Yv(e))n.indexOf(i)<0&&Qv.call(e,i)&&(t[i]=e[i]);return t};function Xv(...e){}function Uv(e,n){if(function(e){return"function"==typeof e}(e)){return e(function(e){return"function"==typeof e}(n)?n():n)}return e}function Hv(e,n){return"function"==typeof Object.hasOwn?Object.hasOwn(e,n):Object.prototype.hasOwnProperty.call(e,n)}function Jv(...e){return(...n)=>{for(const t of e)"function"==typeof t&&t(...n)}}function Pv(e){return e}function Gv(e,n){if(!e){if("string"!=typeof n)throw new Error("Invariant failed");throw new Error(n)}}function Rv(e,...n){const t="function"==typeof e?e(...n):e;return null!=t&&!t}function Wv(e){return e.disabled||!0===e["aria-disabled"]||"true"===e["aria-disabled"]}function Kv(e){const n={};for(const t in e)void 0!==e[t]&&(n[t]=e[t]);return n}function Vv(...e){for(const n of e)if(void 0!==n)return n}function $v(e,n){"function"==typeof e?e(n):e&&(e.current=n)}function qv(e){if(!function(e){return!!e&&!!ee.isValidElement(e)&&("ref"in e.props||"ref"in e)}(e))return null;return kv({},e.props).ref||e.ref}var eS,nS="undefined"!=typeof window&&!!(null==(eS=window.document)?void 0:eS.createElement);function tS(e){return e?"self"in e?e.document:e.ownerDocument||document:document}function iS(e){return e?"self"in e?e.self:tS(e).defaultView||window:self}function aS(e,n=!1){const{activeElement:t}=tS(e);if(!(null==t?void 0:t.nodeName))return null;if(rS(t)&&t.contentDocument)return aS(t.contentDocument.body,n);if(n){const e=t.getAttribute("aria-activedescendant");if(e){const n=tS(t).getElementById(e);if(n)return n}}return t}function oS(e,n){return e===n||e.contains(n)}function rS(e){return"IFRAME"===e.tagName}function sS(e){const n=e.tagName.toLowerCase();return"button"===n||!("input"!==n||!e.type)&&-1!==uS.indexOf(e.type)}var uS=["button","color","file","image","reset","submit"];function lS(e){if("function"==typeof e.checkVisibility)return e.checkVisibility();const n=e;return n.offsetWidth>0||n.offsetHeight>0||e.getClientRects().length>0}function cS(e){try{const n=e instanceof HTMLInputElement&&null!==e.selectionStart,t="TEXTAREA"===e.tagName;return n||t||!1}catch(e){return!1}}function dS(e){return e.isContentEditable||cS(e)}function gS(e,n){const t=null==e?void 0:e.getAttribute("role");return t&&-1!==["dialog","menu","listbox","tree","grid"].indexOf(t)?t:n}function hS(e,n){var t;const i=gS(e);if(!i)return n;return null!=(t={menu:"menuitem",listbox:"option",tree:"treeitem"}[i])?t:n}function pS(e){if(!e)return null;const n=e=>"auto"===e||"scroll"===e;if(e.clientHeight&&e.scrollHeight>e.clientHeight){const{overflowY:t}=getComputedStyle(e);if(n(t))return e}else if(e.clientWidth&&e.scrollWidth>e.clientWidth){const{overflowX:t}=getComputedStyle(e);if(n(t))return e}return pS(e.parentElement)||document.scrollingElement||document.body}function mS(e,n){const t=e.map((e,n)=>[n,e]);let i=!1;return t.sort(([e,t],[a,o])=>{const r=n(t),s=n(o);return r===s?0:r&&s?function(e,n){return Boolean(n.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_PRECEDING)}(r,s)?(e>a&&(i=!0),-1):(e<a&&(i=!0),1):0}),i?t.map(([e,n])=>n):e}function yS(){return!!nS&&/mac|iphone|ipad|ipod/i.test(navigator.platform)}function fS(){return nS&&yS()&&/apple/i.test(navigator.vendor)}function MS(){return nS&&navigator.platform.startsWith("Mac")&&!(nS&&navigator.maxTouchPoints)}function jS(e){return Boolean(e.currentTarget&&!oS(e.currentTarget,e.target))}function bS(e){return e.target===e.currentTarget}function wS(e,n){const t=new FocusEvent("blur",n),i=e.dispatchEvent(t),a=Bv(_v({},n),{bubbles:!0});return e.dispatchEvent(new FocusEvent("focusout",a)),i}function xS(e,n){const t=new MouseEvent("click",n);return e.dispatchEvent(t)}function LS(e,n){const t=n||e.currentTarget,i=e.relatedTarget;return!i||!oS(t,i)}function NS(e,n,t,i){const a=(e=>{if(i){const n=setTimeout(e,i);return()=>clearTimeout(n)}const n=requestAnimationFrame(e);return()=>cancelAnimationFrame(n)})(()=>{e.removeEventListener(n,o,!0),t()}),o=()=>{a(),t()};return e.addEventListener(n,o,{once:!0,capture:!0}),a}function vS(e,n,t,i=window){const a=[];try{i.document.addEventListener(e,n,t);for(const o of Array.from(i.frames))a.push(vS(e,n,t,o))}catch(e){}return()=>{try{i.document.removeEventListener(e,n,t)}catch(e){}for(const e of a)e()}}var SS=kv({},te),TS=SS.useId,DS=SS.useInsertionEffect,kS=nS?ee.useLayoutEffect:ee.useEffect;function CS(e){const n=ee.useRef(e);return kS(()=>{n.current=e}),n}function ES(e){const n=ee.useRef(()=>{throw new Error("Cannot call an event handler while rendering.")});return DS?DS(()=>{n.current=e}):n.current=e,ee.useCallback((...e)=>{var t;return null==(t=n.current)?void 0:t.call(n,...e)},[])}function zS(...e){return ee.useMemo(()=>{if(e.some(Boolean))return n=>{for(const t of e)$v(t,n)}},e)}function IS(e){if(TS){const n=TS();return e||n}const[n,t]=ee.useState(e);return kS(()=>{if(e||n)return;const i=Math.random().toString(36).slice(2,8);t(`id-${i}`)},[e,n]),e||n}function AS(e,n){const t=e=>{if("string"==typeof e)return e},[i,a]=ee.useState(()=>t(n));return kS(()=>{const i=e&&"current"in e?e.current:e;a((null==i?void 0:i.tagName.toLowerCase())||t(n))},[e,n]),i}function YS(e,n){const t=ee.useRef(!1);ee.useEffect(()=>{if(t.current)return e();t.current=!0},n),ee.useEffect(()=>()=>{t.current=!1},[])}function OS(e){return ES("function"==typeof e?e:()=>e)}function QS(e,n,t=[]){const i=ee.useCallback(t=>(e.wrapElement&&(t=e.wrapElement(t)),n(t)),[...t,e.wrapElement]);return Cv(kv({},e),{wrapElement:i})}function ZS(e=!1,n){const[t,i]=ee.useState(null);return{portalRef:zS(i,n),portalNode:t,domReady:!e||t}}function _S(e,n,t){const i=e.onLoadedMetadataCapture,a=ee.useMemo(()=>Object.assign(()=>{},Cv(kv({},i),{[n]:t})),[i,n,t]);return[null==i?void 0:i[n],{onLoadedMetadataCapture:a}]}function BS(){ee.useEffect(()=>{vS("mousemove",HS,!0),vS("mousedown",JS,!0),vS("mouseup",JS,!0),vS("keydown",JS,!0),vS("scroll",JS,!0)},[]);return ES(()=>FS)}var FS=!1,XS=0,US=0;function HS(e){(function(e){const n=e.movementX||e.screenX-XS,t=e.movementY||e.screenY-US;return XS=e.screenX,US=e.screenY,n||t||!1})(e)&&(FS=!0)}function JS(){FS=!1}function PS(e){const n=ee.forwardRef((n,t)=>e(Cv(kv({},n),{ref:t})));return n.displayName=e.displayName||e.name,n}function GS(e,n){return ee.memo(e,n)}function RS(e,n){const t=n,{wrapElement:i,render:a}=t,o=Ev(t,["wrapElement","render"]),r=zS(n.ref,qv(a));let s;if(ee.isValidElement(a)){const e=Cv(kv({},a.props),{ref:r});s=ee.cloneElement(a,function(e,n){const t=kv({},e);for(const i in n){if(!Hv(n,i))continue;if("className"===i){const i="className";t[i]=e[i]?`${e[i]} ${n[i]}`:n[i];continue}if("style"===i){const i="style";t[i]=e[i]?kv(kv({},e[i]),n[i]):n[i];continue}const a=n[i];if("function"==typeof a&&i.startsWith("on")){const n=e[i];if("function"==typeof n){t[i]=(...e)=>{a(...e),n(...e)};continue}}t[i]=a}return t}(o,e))}else s=a?a(o):ce.jsx(e,kv({},o));return i?i(s):s}function WS(e){const n=(n={})=>e(n);return n.displayName=e.name,n}function KS(e=[],n=[]){const t=ee.createContext(void 0),i=ee.createContext(void 0),a=()=>ee.useContext(t),o=n=>e.reduceRight((e,t)=>ce.jsx(t,Cv(kv({},n),{children:e})),ce.jsx(t.Provider,kv({},n)));return{context:t,scopedContext:i,useContext:a,useScopedContext:(e=!1)=>{const n=ee.useContext(i),t=a();return e?n:n||t},useProviderContext:()=>{const e=ee.useContext(i),n=a();if(!e||e!==n)return n},ContextProvider:o,ScopedContextProvider:e=>ce.jsx(o,Cv(kv({},e),{children:n.reduceRight((n,t)=>ce.jsx(t,Cv(kv({},e),{children:n})),ce.jsx(i.Provider,kv({},e)))}))}}var VS=KS(),$S=VS.useProviderContext,qS=KS([VS.ContextProvider],[VS.ScopedContextProvider]),eT=qS.useScopedContext,nT=qS.useProviderContext,tT=qS.ContextProvider,iT=qS.ScopedContextProvider,aT=ee.createContext(void 0),oT=ee.createContext(void 0),rT=KS([tT],[iT]),sT=rT.useProviderContext,uT=rT.ContextProvider,lT=rT.ScopedContextProvider,cT=KS(),dT=cT.useContext,gT=KS([cT.ContextProvider],[cT.ScopedContextProvider]),hT=gT.useContext,pT=gT.useProviderContext,mT=gT.ContextProvider,yT=gT.ScopedContextProvider,fT=ee.createContext(void 0),MT=ee.createContext(void 0);function jT(e,n){const t=e.__unstableInternals;return Gv(t,"Invalid store"),t[n]}function bT(e,...n){let t=e,i=t,a=Symbol(),o=Xv;const r=new Set,s=new Set,u=new Set,l=new Set,c=new Set,d=new WeakMap,g=new WeakMap,h=(e,n,t=l)=>(t.add(n),g.set(n,e),()=>{var e;null==(e=d.get(n))||e(),d.delete(n),g.delete(n),t.delete(n)}),p=(e,o,r=!1)=>{var u;if(!Hv(t,e))return;const h=Uv(o,t[e]);if(h===t[e])return;if(!r)for(const t of n)null==(u=null==t?void 0:t.setState)||u.call(t,e,h);const p=t;t=Bv(_v({},t),{[e]:h});const m=Symbol();a=m,s.add(e);const y=(n,i,a)=>{var o;const r=g.get(n);r&&!r.some(n=>a?a.has(n):n===e)||(null==(o=d.get(n))||o(),d.set(n,n(t,i)))};for(const e of l)y(e,p);queueMicrotask(()=>{if(a!==m)return;const e=t;for(const e of c)y(e,i,s);i=e,s.clear()})},m={getState:()=>t,setState:p,__unstableInternals:{setup:e=>(u.add(e),()=>u.delete(e)),init:()=>{const e=r.size,i=Symbol();r.add(i);const a=()=>{r.delete(i),r.size||o()};if(e)return a;const s=(l=t,Object.keys(l)).map(e=>Jv(...n.map(n=>{var t;const i=null==(t=null==n?void 0:n.getState)?void 0:t.call(n);if(i&&Hv(i,e))return NT(n,[e],n=>{p(e,n[e],!0)})})));var l;const c=[];for(const e of u)c.push(e());const d=n.map(xT);return o=Jv(...s,...c,...d),a},subscribe:(e,n)=>h(e,n),sync:(e,n)=>(d.set(n,n(t,t)),h(e,n)),batch:(e,n)=>(d.set(n,n(t,i)),h(e,n,c)),pick:e=>bT(function(e,n){const t={};for(const i of n)Hv(e,i)&&(t[i]=e[i]);return t}(t,e),m),omit:e=>bT(function(e,n){const t=_v({},e);for(const e of n)Hv(t,e)&&delete t[e];return t}(t,e),m)}};return m}function wT(e,...n){if(e)return jT(e,"setup")(...n)}function xT(e,...n){if(e)return jT(e,"init")(...n)}function LT(e,...n){if(e)return jT(e,"subscribe")(...n)}function NT(e,...n){if(e)return jT(e,"sync")(...n)}function vT(e,...n){if(e)return jT(e,"batch")(...n)}function ST(e,...n){if(e)return jT(e,"omit")(...n)}function TT(...e){const n=e.reduce((e,n)=>{var t;const i=null==(t=null==n?void 0:n.getState)?void 0:t.call(n);return i?Object.assign(e,i):e},{}),t=bT(n,...e);return Object.assign({},...e,t)}var{useSyncExternalStore:DT}=Xd;function kT(e,n=Pv){const t=ee.useCallback(n=>e?LT(e,null,n):()=>{},[e]),i=()=>{const t="string"==typeof n?n:null,i="function"==typeof n?n:null,a=null==e?void 0:e.getState();return i?i(a):a&&t&&Hv(a,t)?a[t]:void 0};return DT(t,i,i)}function CT(e,n,t,i){const a=Hv(n,t)?n[t]:void 0,o=i?n[i]:void 0,r=CS({value:a,setValue:o});kS(()=>NT(e,[t],(e,n)=>{const{value:i,setValue:a}=r.current;a&&e[t]!==n[t]&&e[t]!==i&&a(e[t])}),[e,t]),kS(()=>{if(void 0!==a)return e.setState(t,a),vT(e,[t],()=>{void 0!==a&&e.setState(t,a)})})}function ET(e,n){const[t,i]=ee.useState(()=>e(n));kS(()=>xT(t),[t]);const a=ee.useCallback(e=>kT(t,e),[t]);return[ee.useMemo(()=>Cv(kv({},t),{useState:a}),[t,a]),ES(()=>{i(t=>e(kv(kv({},n),t.getState())))})]}function zT(e={}){var n;const t=null==(n=e.store)?void 0:n.getState(),i=Vv(e.items,null==t?void 0:t.items,e.defaultItems,[]),a=new Map(i.map(e=>[e.id,e])),o={items:i,renderedItems:Vv(null==t?void 0:t.renderedItems,[])},r=null==(s=e.store)?void 0:s.__unstablePrivateStore;var s;const u=bT({items:i,renderedItems:o.renderedItems},r),l=bT(o,e.store),c=e=>{const n=mS(e,e=>e.element);u.setState("renderedItems",n),l.setState("renderedItems",n)};wT(l,()=>xT(u)),wT(u,()=>vT(u,["items"],e=>{l.setState("items",e.items)})),wT(u,()=>vT(u,["renderedItems"],e=>{let n=!0,t=requestAnimationFrame(()=>{const{renderedItems:n}=l.getState();e.renderedItems!==n&&c(e.renderedItems)});if("function"!=typeof IntersectionObserver)return()=>cancelAnimationFrame(t);const i=function(e){var n;const t=e.find(e=>!!e.element),i=[...e].reverse().find(e=>!!e.element);let a=null==(n=null==t?void 0:t.element)?void 0:n.parentElement;for(;a&&(null==i?void 0:i.element);){if(i&&a.contains(i.element))return a;a=a.parentElement}return tS(a).body}(e.renderedItems),a=new IntersectionObserver(()=>{n?n=!1:(cancelAnimationFrame(t),t=requestAnimationFrame(()=>c(e.renderedItems)))},{root:i});for(const n of e.renderedItems)n.element&&a.observe(n.element);return()=>{cancelAnimationFrame(t),a.disconnect()}}));const d=(e,n,t=!1)=>{let i;n(n=>{const t=n.findIndex(({id:n})=>n===e.id),o=n.slice();if(-1!==t){i=n[t];const r=_v(_v({},i),e);o[t]=r,a.set(e.id,r)}else o.push(e),a.set(e.id,e);return o});return()=>{n(n=>{if(!i)return t&&a.delete(e.id),n.filter(({id:n})=>n!==e.id);const o=n.findIndex(({id:n})=>n===e.id);if(-1===o)return n;const r=n.slice();return r[o]=i,a.set(e.id,i),r})}},g=e=>d(e,e=>u.setState("items",e),!0);return Bv(_v({},l),{registerItem:g,renderItem:e=>Jv(g(e),d(e,e=>u.setState("renderedItems",e))),item:e=>{if(!e)return null;let n=a.get(e);if(!n){const{items:t}=u.getState();n=t.find(n=>n.id===e),n&&a.set(e,n)}return n||null},__unstablePrivateStore:u})}function IT(e){const n=[];for(const t of e)n.push(...t);return n}function AT(e){return e.slice().reverse()}var YT={id:null};function OT(e,n){return e.find(e=>n?!e.disabled&&e.id!==n:!e.disabled)}function QT(e,n){return e.filter(e=>e.rowId===n)}function ZT(e){const n=[];for(const t of e){const e=n.find(e=>{var n;return(null==(n=e[0])?void 0:n.rowId)===t.rowId});e?e.push(t):n.push([t])}return n}function _T(e){let n=0;for(const{length:t}of e)t>n&&(n=t);return n}function BT(e){return{id:"__EMPTY_ITEM__",disabled:!0,rowId:e}}function FT(e={}){var n;const t=null==(n=e.store)?void 0:n.getState(),i=zT(e),a=Vv(e.activeId,null==t?void 0:t.activeId,e.defaultActiveId),o=bT(Bv(_v({},i.getState()),{id:Vv(e.id,null==t?void 0:t.id,`id-${Math.random().toString(36).slice(2,8)}`),activeId:a,baseElement:Vv(null==t?void 0:t.baseElement,null),includesBaseElement:Vv(e.includesBaseElement,null==t?void 0:t.includesBaseElement,null===a),moves:Vv(null==t?void 0:t.moves,0),orientation:Vv(e.orientation,null==t?void 0:t.orientation,"both"),rtl:Vv(e.rtl,null==t?void 0:t.rtl,!1),virtualFocus:Vv(e.virtualFocus,null==t?void 0:t.virtualFocus,!1),focusLoop:Vv(e.focusLoop,null==t?void 0:t.focusLoop,!1),focusWrap:Vv(e.focusWrap,null==t?void 0:t.focusWrap,!1),focusShift:Vv(e.focusShift,null==t?void 0:t.focusShift,!1)}),i,e.store);wT(o,()=>NT(o,["renderedItems","activeId"],e=>{o.setState("activeId",n=>{var t;return void 0!==n?n:null==(t=OT(e.renderedItems))?void 0:t.id})}));const r=(e="next",n={})=>{var t,i;const a=o.getState(),{skip:r=0,activeId:s=a.activeId,focusShift:u=a.focusShift,focusLoop:l=a.focusLoop,focusWrap:c=a.focusWrap,includesBaseElement:d=a.includesBaseElement,renderedItems:g=a.renderedItems,rtl:h=a.rtl}=n,p="up"===e||"down"===e,m="next"===e||"down"===e,y=m?h&&!p:!h||p,f=u&&!r;let M=p?IT(function(e,n,t){const i=_T(e);for(const a of e)for(let e=0;e<i;e+=1){const i=a[e];if(!i||t&&i.disabled){const i=0===e&&t?OT(a):a[e-1];a[e]=i&&n!==i.id&&t?i:BT(null==i?void 0:i.rowId)}}return e}(ZT(g),s,f)):g;if(M=y?AT(M):M,M=p?function(e){const n=ZT(e),t=_T(n),i=[];for(let e=0;e<t;e+=1)for(const t of n){const n=t[e];n&&i.push(Bv(_v({},n),{rowId:n.rowId?`${e}`:void 0}))}return i}(M):M,null==s)return null==(t=OT(M))?void 0:t.id;const j=M.find(e=>e.id===s);if(!j)return null==(i=OT(M))?void 0:i.id;const b=M.some(e=>e.rowId),w=M.indexOf(j),x=M.slice(w+1),L=QT(x,j.rowId);if(r){const e=function(e,n){return e.filter(e=>n?!e.disabled&&e.id!==n:!e.disabled)}(L,s),n=e.slice(r)[0]||e[e.length-1];return null==n?void 0:n.id}const N=l&&(p?"horizontal"!==l:"vertical"!==l),v=b&&c&&(p?"horizontal"!==c:"vertical"!==c),S=m?(!b||p)&&N&&d:!!p&&d;if(N){const e=function(e,n,t=!1){const i=e.findIndex(e=>e.id===n);return[...e.slice(i+1),...t?[YT]:[],...e.slice(0,i)]}(v&&!S?M:QT(M,j.rowId),s,S),n=OT(e,s);return null==n?void 0:n.id}if(v){const e=OT(S?L:x,s);return S?(null==e?void 0:e.id)||null:null==e?void 0:e.id}const T=OT(L,s);return!T&&S?null:null==T?void 0:T.id};return Bv(_v(_v({},i),o),{setBaseElement:e=>o.setState("baseElement",e),setActiveId:e=>o.setState("activeId",e),move:e=>{void 0!==e&&(o.setState("activeId",e),o.setState("moves",e=>e+1))},first:()=>{var e;return null==(e=OT(o.getState().renderedItems))?void 0:e.id},last:()=>{var e;return null==(e=OT(AT(o.getState().renderedItems)))?void 0:e.id},next:e=>(void 0!==e&&"number"==typeof e&&(e={skip:e}),r("next",e)),previous:e=>(void 0!==e&&"number"==typeof e&&(e={skip:e}),r("previous",e)),down:e=>(void 0!==e&&"number"==typeof e&&(e={skip:e}),r("down",e)),up:e=>(void 0!==e&&"number"==typeof e&&(e={skip:e}),r("up",e))})}function XT(e,n,t){return e=function(e,n,t){return YS(n,[t.store]),CT(e,t,"items","setItems"),e}(e,n,t),CT(e,t,"activeId","setActiveId"),CT(e,t,"includesBaseElement"),CT(e,t,"virtualFocus"),CT(e,t,"orientation"),CT(e,t,"rtl"),CT(e,t,"focusLoop"),CT(e,t,"focusWrap"),CT(e,t,"focusShift"),e}var UT=KS([uT,mT],[lT,yT]).useProviderContext,HT={id:null};function JT(e,n){return n&&e.item(n)||null}var PT=Symbol("FOCUS_SILENTLY");function GT(e,n,t){if(!n)return!1;if(n===t)return!1;const i=e.item(n.id);return!!i&&(!t||i.element!==t)}var RT=WS(function(e){var n=e,{store:t,shouldRegisterItem:i=!0,getItem:a=Pv,element:o}=n,r=Ev(n,["store","shouldRegisterItem","getItem","element"]);const s=dT();t=t||s;const u=IS(r.id),l=ee.useRef(o);return ee.useEffect(()=>{const e=l.current;if(!u)return;if(!e)return;if(!i)return;const n=a({id:u,element:e});return null==t?void 0:t.renderItem(n)},[u,i,a,t]),Kv(r=Cv(kv({},r),{ref:zS(l,r.ref)}))});PS(function(e){return RS("div",RT(e))});var WT=ee.createContext(!0),KT="input:not([type='hidden']):not([disabled]), select:not([disabled]), textarea:not([disabled]), a[href], button:not([disabled]), [tabindex], summary, iframe, object, embed, area[href], audio[controls], video[controls], [contenteditable]:not([contenteditable='false'])";function VT(e){return!!e.matches(KT)&&(!!lS(e)&&!e.closest("[inert]"))}function $T(e){if(!VT(e))return!1;if(function(e){return Number.parseInt(e.getAttribute("tabindex")||"0",10)<0}(e))return!1;if(!("form"in e))return!0;if(!e.form)return!0;if(e.checked)return!0;if("radio"!==e.type)return!0;const n=e.form.elements.namedItem(e.name);if(!n)return!0;if(!("length"in n))return!0;const t=aS(e);return!t||(t===e||(!("form"in t)||(t.form!==e.form||t.name!==e.name)))}function qT(e,n){const t=Array.from(e.querySelectorAll(KT));n&&t.unshift(e);const i=t.filter(VT);return i.forEach((e,n)=>{if(rS(e)&&e.contentDocument){const t=e.contentDocument.body;i.splice(n,1,...qT(t))}}),i}function eD(e,n,t){const i=Array.from(e.querySelectorAll(KT)),a=i.filter($T);return n&&$T(e)&&a.unshift(e),a.forEach((e,n)=>{if(rS(e)&&e.contentDocument){const i=eD(e.contentDocument.body,!1,t);a.splice(n,1,...i)}}),!a.length&&t?i:a}function nD(e,n){return function(e,n,t,i){const a=aS(e),o=qT(e,n),r=o.indexOf(a),s=o.slice(r+1);return s.find($T)||(t?o.find($T):null)||(i?s[0]:null)||null}(document.body,!1,e,n)}function tD(e,n){return function(e,n,t,i){const a=aS(e),o=qT(e,n).reverse(),r=o.indexOf(a),s=o.slice(r+1);return s.find($T)||(t?o.find($T):null)||(i?s[0]:null)||null}(document.body,!1,e,n)}function iD(e){const n=aS(e);if(!n)return!1;if(n===e)return!0;const t=n.getAttribute("aria-activedescendant");return!!t&&t===e.id}function aD(e){const n=aS(e);if(!n)return!1;if(oS(e,n))return!0;const t=n.getAttribute("aria-activedescendant");return!!t&&("id"in e&&(t===e.id||!!e.querySelector(`#${CSS.escape(t)}`)))}function oD(e){!aD(e)&&VT(e)&&e.focus()}function rD(e){var n;const t=null!=(n=e.getAttribute("tabindex"))?n:"";e.setAttribute("data-tabindex",t),e.setAttribute("tabindex","-1")}var sD=fS(),uD=["text","search","url","tel","email","password","number","date","month","week","time","datetime","datetime-local"],lD=Symbol("safariFocusAncestor");function cD(e,n){e&&(e[lD]=n)}function dD(e){return!("input"!==e.tagName.toLowerCase()||!e.type)&&("radio"===e.type||"checkbox"===e.type)}function gD(e,n,t,i,a){return e?n?t&&!i?-1:void 0:t?a:a||0:a}function hD(e,n){return ES(t=>{null==e||e(t),t.defaultPrevented||n&&(t.stopPropagation(),t.preventDefault())})}var pD=!0;function mD(e){const n=e.target;n&&"hasAttribute"in n&&(n.hasAttribute("data-focus-visible")||(pD=!1))}function yD(e){e.metaKey||e.ctrlKey||e.altKey||(pD=!0)}var fD=WS(function(e){var n=e,{focusable:t=!0,accessibleWhenDisabled:i,autoFocus:a,onFocusVisible:o}=n,r=Ev(n,["focusable","accessibleWhenDisabled","autoFocus","onFocusVisible"]);const s=ee.useRef(null);ee.useEffect(()=>{t&&(vS("mousedown",mD,!0),vS("keydown",yD,!0))},[t]),sD&&ee.useEffect(()=>{if(!t)return;const e=s.current;if(!e)return;if(!dD(e))return;const n=function(e){return"labels"in e?e.labels:null}(e);if(!n)return;const i=()=>queueMicrotask(()=>e.focus());for(const e of n)e.addEventListener("mouseup",i);return()=>{for(const e of n)e.removeEventListener("mouseup",i)}},[t]);const u=t&&Wv(r),l=!!u&&!i,[c,d]=ee.useState(!1);ee.useEffect(()=>{t&&l&&c&&d(!1)},[t,l,c]),ee.useEffect(()=>{if(!t)return;if(!c)return;const e=s.current;if(!e)return;if("undefined"==typeof IntersectionObserver)return;const n=new IntersectionObserver(()=>{VT(e)||d(!1)});return n.observe(e),()=>n.disconnect()},[t,c]);const g=hD(r.onKeyPressCapture,u),h=hD(r.onMouseDownCapture,u),p=hD(r.onClickCapture,u),m=r.onMouseDown,y=ES(e=>{if(null==m||m(e),e.defaultPrevented)return;if(!t)return;const n=e.currentTarget;if(!sD)return;if(jS(e))return;if(!sS(n)&&!dD(n))return;let i=!1;const a=()=>{i=!0};n.addEventListener("focusin",a,{capture:!0,once:!0});const o=function(e){for(;e&&!VT(e);)e=e.closest(KT);return e||null}(n.parentElement);cD(o,!0),NS(n,"mouseup",()=>{n.removeEventListener("focusin",a,!0),cD(o,!1),i||oD(n)})}),f=(e,n)=>{if(n&&(e.currentTarget=n),!t)return;const i=e.currentTarget;i&&iD(i)&&(null==o||o(e),e.defaultPrevented||(i.dataset.focusVisible="true",d(!0)))},M=r.onKeyDownCapture,j=ES(e=>{if(null==M||M(e),e.defaultPrevented)return;if(!t)return;if(c)return;if(e.metaKey)return;if(e.altKey)return;if(e.ctrlKey)return;if(!bS(e))return;const n=e.currentTarget;NS(n,"focusout",()=>f(e,n))}),b=r.onFocusCapture,w=ES(e=>{if(null==b||b(e),e.defaultPrevented)return;if(!t)return;if(!bS(e))return void d(!1);const n=e.currentTarget,i=()=>f(e,n);pD||function(e){const{tagName:n,readOnly:t,type:i}=e;return"TEXTAREA"===n&&!t||("SELECT"===n&&!t||("INPUT"!==n||t?!!e.isContentEditable||!("combobox"!==e.getAttribute("role")||!e.dataset.name):uD.includes(i)))}(e.target)?NS(e.target,"focusout",i):d(!1)}),x=r.onBlur,L=ES(e=>{null==x||x(e),t&&LS(e)&&(e.currentTarget.removeAttribute("data-focus-visible"),d(!1))}),N=ee.useContext(WT),v=ES(e=>{t&&a&&e&&N&&queueMicrotask(()=>{iD(e)||VT(e)&&e.focus()})}),S=AS(s),T=t&&function(e){return!e||"button"===e||"summary"===e||"input"===e||"select"===e||"textarea"===e||"a"===e}(S),D=t&&function(e){return!e||"button"===e||"input"===e||"select"===e||"textarea"===e}(S),k=r.style,C=ee.useMemo(()=>l?kv({pointerEvents:"none"},k):k,[l,k]);return Kv(r=Cv(kv({"data-focus-visible":t&&c||void 0,"data-autofocus":a||void 0,"aria-disabled":u||void 0},r),{ref:zS(s,v,r.ref),style:C,tabIndex:gD(t,l,T,D,r.tabIndex),disabled:!(!D||!l)||void 0,contentEditable:u?void 0:r.contentEditable,onKeyPressCapture:g,onClickCapture:p,onMouseDownCapture:h,onMouseDown:y,onKeyDownCapture:j,onFocusCapture:w,onBlur:L}))});PS(function(e){return RS("div",fD(e))});function MD(e){if(!e.isTrusted)return!1;const n=e.currentTarget;return"Enter"===e.key?sS(n)||"SUMMARY"===n.tagName||"A"===n.tagName:" "===e.key&&(sS(n)||"SUMMARY"===n.tagName||"INPUT"===n.tagName||"SELECT"===n.tagName)}var jD=Symbol("command"),bD=WS(function(e){var n=e,{clickOnEnter:t=!0,clickOnSpace:i=!0}=n,a=Ev(n,["clickOnEnter","clickOnSpace"]);const o=ee.useRef(null),[r,s]=ee.useState(!1);ee.useEffect(()=>{o.current&&s(sS(o.current))},[]);const[u,l]=ee.useState(!1),c=ee.useRef(!1),d=Wv(a),[g,h]=_S(a,jD,!0),p=a.onKeyDown,m=ES(e=>{null==p||p(e);const n=e.currentTarget;if(e.defaultPrevented)return;if(g)return;if(d)return;if(!bS(e))return;if(cS(n))return;if(n.isContentEditable)return;const a=t&&"Enter"===e.key,o=i&&" "===e.key,r="Enter"===e.key&&!t,s=" "===e.key&&!i;if(r||s)e.preventDefault();else if(a||o){const t=MD(e);if(a){if(!t){e.preventDefault();const t=Ev(e,["view"]),i=()=>xS(n,t);nS&&/firefox\//i.test(navigator.userAgent)?NS(n,"keyup",i):queueMicrotask(i)}}else o&&(c.current=!0,t||(e.preventDefault(),l(!0)))}}),y=a.onKeyUp,f=ES(e=>{if(null==y||y(e),e.defaultPrevented)return;if(g)return;if(d)return;if(e.metaKey)return;const n=i&&" "===e.key;if(c.current&&n&&(c.current=!1,!MD(e))){e.preventDefault(),l(!1);const n=e.currentTarget,t=Ev(e,["view"]);queueMicrotask(()=>xS(n,t))}});return a=Cv(kv(kv({"data-active":u||void 0,type:r?"button":void 0},h),a),{ref:zS(o,a.ref),onKeyDown:m,onKeyUp:f}),a=fD(a)});PS(function(e){return RS("button",bD(e))});function wD(e,n=!1){const{top:t}=e.getBoundingClientRect();return n?t+e.clientHeight:t}function xD(e,n,t,i=!1){var a;if(!n)return;if(!t)return;const{renderedItems:o}=n.getState(),r=pS(e);if(!r)return;const s=function(e,n=!1){const t=e.clientHeight,{top:i}=e.getBoundingClientRect(),a=1.5*Math.max(.875*t,t-40),o=n?t-a+i:a+i;return"HTML"===e.tagName?o+e.scrollTop:o}(r,i);let u,l;for(let e=0;e<o.length;e+=1){const o=u;if(u=t(e),!u)break;if(u===o)continue;const r=null==(a=JT(n,u))?void 0:a.element;if(!r)continue;const c=wD(r,i)-s,d=Math.abs(c);if(i&&c<=0||!i&&c>=0){void 0!==l&&l<d&&(u=o);break}l=d}return u}var LD=WS(function(e){var n=e,{store:t,rowId:i,preventScrollOnKeyDown:a=!1,moveOnKeyPress:o=!0,tabbable:r=!1,getItem:s,"aria-setsize":u,"aria-posinset":l}=n,c=Ev(n,["store","rowId","preventScrollOnKeyDown","moveOnKeyPress","tabbable","getItem","aria-setsize","aria-posinset"]);const d=hT();t=t||d;const g=IS(c.id),h=ee.useRef(null),p=ee.useContext(MT),m=Wv(c)&&!c.accessibleWhenDisabled,{rowId:y,baseElement:f,isActiveItem:M,ariaSetSize:j,ariaPosInSet:b,isTabbable:w}=function(e,n){const t=ee.useRef({}),i=ee.useCallback(n=>e?LT(e,null,n):()=>{},[e]),a=()=>{const i=null==e?void 0:e.getState();let a=!1;const o=t.current;for(const e in n){const t=n[e];if("function"==typeof t){const n=t(i);n!==o[e]&&(o[e]=n,a=!0)}if("string"==typeof t){if(!i)continue;if(!Hv(i,t))continue;const n=i[t];n!==o[e]&&(o[e]=n,a=!0)}}return a&&(t.current=kv({},o)),t.current};return DT(i,a,a)}(t,{rowId:e=>i||(e&&(null==p?void 0:p.baseElement)&&p.baseElement===e.baseElement?p.id:void 0),baseElement:e=>(null==e?void 0:e.baseElement)||void 0,isActiveItem:e=>!!e&&e.activeId===g,ariaSetSize:e=>null!=u?u:e&&(null==p?void 0:p.ariaSetSize)&&p.baseElement===e.baseElement?p.ariaSetSize:void 0,ariaPosInSet(e){if(null!=l)return l;if(!e)return;if(!(null==p?void 0:p.ariaPosInSet))return;if(p.baseElement!==e.baseElement)return;const n=e.renderedItems.filter(e=>e.rowId===y);return p.ariaPosInSet+n.findIndex(e=>e.id===g)},isTabbable(e){if(!(null==e?void 0:e.renderedItems.length))return!0;if(e.virtualFocus)return!1;if(r)return!0;if(null===e.activeId)return!1;const n=null==t?void 0:t.item(e.activeId);return!!(null==n?void 0:n.disabled)||(!(null==n?void 0:n.element)||e.activeId===g)}}),x=ee.useCallback(e=>{var n;const t=Cv(kv({},e),{id:g||e.id,rowId:y,disabled:!!m,children:null==(n=e.element)?void 0:n.textContent});return s?s(t):t},[g,y,m,s]),L=c.onFocus,N=ee.useRef(!1),v=ES(e=>{if(null==L||L(e),e.defaultPrevented)return;if(jS(e))return;if(!g)return;if(!t)return;if(function(e,n){return!bS(e)&>(n,e.target)}(e,t))return;const{virtualFocus:n,baseElement:i}=t.getState();if(t.setActiveId(g),dS(e.currentTarget)&&function(e,n=!1){if(cS(e))e.setSelectionRange(n?e.value.length:0,e.value.length);else if(e.isContentEditable){const t=tS(e).getSelection();null==t||t.selectAllChildren(e),n&&(null==t||t.collapseToEnd())}}(e.currentTarget),!n)return;if(!bS(e))return;if(dS(a=e.currentTarget)||"INPUT"===a.tagName&&!sS(a))return;var a;if(!(null==i?void 0:i.isConnected))return;fS()&&e.currentTarget.hasAttribute("data-autofocus")&&e.currentTarget.scrollIntoView({block:"nearest",inline:"nearest"}),N.current=!0;e.relatedTarget===i||GT(t,e.relatedTarget)?function(e){e[PT]=!0,e.focus({preventScroll:!0})}(i):i.focus()}),S=c.onBlurCapture,T=ES(e=>{if(null==S||S(e),e.defaultPrevented)return;const n=null==t?void 0:t.getState();(null==n?void 0:n.virtualFocus)&&N.current&&(N.current=!1,e.preventDefault(),e.stopPropagation())}),D=c.onKeyDown,k=OS(a),C=OS(o),E=ES(e=>{if(null==D||D(e),e.defaultPrevented)return;if(!bS(e))return;if(!t)return;const{currentTarget:n}=e,i=t.getState(),a=t.item(g),o=!!(null==a?void 0:a.rowId),r="horizontal"!==i.orientation,s="vertical"!==i.orientation,u=()=>!!o||(!!s||(!i.baseElement||!cS(i.baseElement))),l={ArrowUp:(o||r)&&t.up,ArrowRight:(o||s)&&t.next,ArrowDown:(o||r)&&t.down,ArrowLeft:(o||s)&&t.previous,Home:()=>{if(u())return!o||e.ctrlKey?null==t?void 0:t.first():null==t?void 0:t.previous(-1)},End:()=>{if(u())return!o||e.ctrlKey?null==t?void 0:t.last():null==t?void 0:t.next(-1)},PageUp:()=>xD(n,t,null==t?void 0:t.up,!0),PageDown:()=>xD(n,t,null==t?void 0:t.down)}[e.key];if(l){if(dS(n)){const t=function(e){let n=0,t=0;if(cS(e))n=e.selectionStart||0,t=e.selectionEnd||0;else if(e.isContentEditable){const i=tS(e).getSelection();if((null==i?void 0:i.rangeCount)&&i.anchorNode&&oS(e,i.anchorNode)&&i.focusNode&&oS(e,i.focusNode)){const a=i.getRangeAt(0),o=a.cloneRange();o.selectNodeContents(e),o.setEnd(a.startContainer,a.startOffset),n=o.toString().length,o.setEnd(a.endContainer,a.endOffset),t=o.toString().length}}return{start:n,end:t}}(n),i=s&&"ArrowLeft"===e.key,a=s&&"ArrowRight"===e.key,o=r&&"ArrowUp"===e.key,u=r&&"ArrowDown"===e.key;if(a||u){const{length:e}=function(e){if(cS(e))return e.value;if(e.isContentEditable){const n=tS(e).createRange();return n.selectNodeContents(e),n.toString()}return""}(n);if(t.end!==e)return}else if((i||o)&&0!==t.start)return}const i=l();if(k(e)||void 0!==i){if(!C(e))return;e.preventDefault(),t.move(i)}}}),z=ee.useMemo(()=>({id:g,baseElement:f}),[g,f]);return c=QS(c,e=>ce.jsx(fT.Provider,{value:z,children:e}),[z]),c=Cv(kv({id:g,"data-active-item":M||void 0},c),{ref:zS(h,c.ref),tabIndex:w?c.tabIndex:-1,onFocus:v,onBlurCapture:T,onKeyDown:E}),c=bD(c),c=RT(Cv(kv({store:t},c),{getItem:x,shouldRegisterItem:!!g&&c.shouldRegisterItem})),Kv(Cv(kv({},c),{"aria-setsize":j,"aria-posinset":b}))});GS(PS(function(e){return RS("button",LD(e))}));function ND(e,n,t){return ES(i=>{var a;if(null==n||n(i),i.defaultPrevented)return;if(i.isPropagationStopped())return;if(!bS(i))return;if(function(e){return"Shift"===e.key||"Control"===e.key||"Alt"===e.key||"Meta"===e.key}(i))return;if(function(e){const n=e.target;return!(n&&!cS(n)||1!==e.key.length||e.ctrlKey||e.metaKey)}(i))return;const o=e.getState(),r=null==(a=JT(e,o.activeId))?void 0:a.element;if(!r)return;const s=Ev(i,["view"]);r!==(null==t?void 0:t.current)&&r.focus(),function(e,n,t){const i=new KeyboardEvent(n,t);return e.dispatchEvent(i)}(r,i.type,s)||i.preventDefault(),i.currentTarget.contains(r)&&i.stopPropagation()})}var vD=WS(function(e){var n=e,{store:t,composite:i=!0,focusOnMove:a=i,moveOnKeyPress:o=!0}=n,r=Ev(n,["store","composite","focusOnMove","moveOnKeyPress"]);const s=pT();Gv(t=t||s,!1);const u=ee.useRef(null),l=ee.useRef(null),c=function(e){const[n,t]=ee.useState(!1),i=ee.useCallback(()=>t(!0),[]),a=e.useState(n=>JT(e,n.activeId));return ee.useEffect(()=>{const e=null==a?void 0:a.element;n&&e&&(t(!1),e.focus({preventScroll:!0}))},[a,n]),i}(t),d=t.useState("moves"),[,g]=function(e){const[n,t]=ee.useState(null);return kS(()=>{if(null==n)return;if(!e)return;let t=null;return e(e=>(t=e,n)),()=>{e(t)}},[n,e]),[n,t]}(i?t.setBaseElement:null);ee.useEffect(()=>{var e;if(!t)return;if(!d)return;if(!i)return;if(!a)return;const{activeId:n}=t.getState(),o=null==(e=JT(t,n))?void 0:e.element;var r,s;o&&("scrollIntoView"in(r=o)?(r.focus({preventScroll:!0}),r.scrollIntoView(_v({block:"nearest",inline:"nearest"},s))):r.focus())},[t,d,i,a]),kS(()=>{if(!t)return;if(!d)return;if(!i)return;const{baseElement:e,activeId:n}=t.getState();if(!(null===n))return;if(!e)return;const a=l.current;l.current=null,a&&wS(a,{relatedTarget:e}),iD(e)||e.focus()},[t,d,i]);const h=t.useState("activeId"),p=t.useState("virtualFocus");kS(()=>{var e;if(!t)return;if(!i)return;if(!p)return;const n=l.current;if(l.current=null,!n)return;const a=(null==(e=JT(t,h))?void 0:e.element)||aS(n);a!==n&&wS(n,{relatedTarget:a})},[t,h,p,i]);const m=ND(t,r.onKeyDownCapture,l),y=ND(t,r.onKeyUpCapture,l),f=r.onFocusCapture,M=ES(e=>{if(null==f||f(e),e.defaultPrevented)return;if(!t)return;const{virtualFocus:n}=t.getState();if(!n)return;const i=e.relatedTarget,a=function(e){const n=e[PT];return delete e[PT],n}(e.currentTarget);bS(e)&&a&&(e.stopPropagation(),l.current=i)}),j=r.onFocus,b=ES(e=>{if(null==j||j(e),e.defaultPrevented)return;if(!i)return;if(!t)return;const{relatedTarget:n}=e,{virtualFocus:a}=t.getState();a?bS(e)&&!GT(t,n)&&queueMicrotask(c):bS(e)&&t.setActiveId(null)}),w=r.onBlurCapture,x=ES(e=>{var n;if(null==w||w(e),e.defaultPrevented)return;if(!t)return;const{virtualFocus:i,activeId:a}=t.getState();if(!i)return;const o=null==(n=JT(t,a))?void 0:n.element,r=e.relatedTarget,s=GT(t,r),u=l.current;if(l.current=null,bS(e)&&s)r===o?u&&u!==r&&wS(u,e):o?wS(o,e):u&&wS(u,e),e.stopPropagation();else{!GT(t,e.target)&&o&&wS(o,e)}}),L=r.onKeyDown,N=OS(o),v=ES(e=>{var n;if(null==L||L(e),e.nativeEvent.isComposing)return;if(e.defaultPrevented)return;if(!t)return;if(!bS(e))return;const{orientation:i,renderedItems:a,activeId:o}=t.getState(),r=JT(t,o);if(null==(n=null==r?void 0:r.element)?void 0:n.isConnected)return;const s="horizontal"!==i,u="vertical"!==i,l=a.some(e=>!!e.rowId);if(("ArrowLeft"===e.key||"ArrowRight"===e.key||"Home"===e.key||"End"===e.key)&&cS(e.currentTarget))return;const c={ArrowUp:(l||s)&&(()=>{if(l){const e=function(e){return function(e,n){return e.find(e=>n?!e.disabled&&e.id!==n:!e.disabled)}(IT(AT(function(e){const n=[];for(const t of e){const e=n.find(e=>{var n;return(null==(n=e[0])?void 0:n.rowId)===t.rowId});e?e.push(t):n.push([t])}return n}(e))))}(a);return null==e?void 0:e.id}return null==t?void 0:t.last()}),ArrowRight:(l||u)&&t.first,ArrowDown:(l||s)&&t.first,ArrowLeft:(l||u)&&t.last,Home:t.first,End:t.last,PageUp:t.first,PageDown:t.last},d=c[e.key];if(d){const n=d();if(void 0!==n){if(!N(e))return;e.preventDefault(),t.move(n)}}});r=QS(r,e=>ce.jsx(mT,{value:t,children:e}),[t]);const S=t.useState(e=>{var n;if(t&&i&&e.virtualFocus)return null==(n=JT(t,e.activeId))?void 0:n.id});r=Cv(kv({"aria-activedescendant":S},r),{ref:zS(u,g,r.ref),onKeyDownCapture:m,onKeyUpCapture:y,onFocusCapture:M,onFocus:b,onBlurCapture:x,onKeyDown:v});const T=t.useState(e=>i&&(e.virtualFocus||null===e.activeId));return r=fD(kv({focusable:T},r))});PS(function(e){return RS("div",vD(e))});function SD(e,n){const t=setTimeout(n,e);return()=>clearTimeout(t)}function TD(...e){return e.join(", ").split(", ").reduce((e,n)=>{const t=n.endsWith("ms")?1:1e3,i=Number.parseFloat(n||"0s")*t;return i>e?i:e},0)}function DD(e,n,t){return!(t||!1===n||e&&!n)}var kD=WS(function(e){var n=e,{store:t,alwaysVisible:i}=n,a=Ev(n,["store","alwaysVisible"]);const o=$S();Gv(t=t||o,!1);const r=ee.useRef(null),s=IS(a.id),[u,l]=ee.useState(null),c=t.useState("open"),d=t.useState("mounted"),g=t.useState("animated"),h=t.useState("contentElement"),p=kT(t.disclosure,"contentElement");kS(()=>{r.current&&(null==t||t.setContentElement(r.current))},[t]),kS(()=>{let e;return null==t||t.setState("animated",n=>(e=n,!0)),()=>{void 0!==e&&(null==t||t.setState("animated",e))}},[t]),kS(()=>{if(g){if(null==h?void 0:h.isConnected)return function(e){let n=requestAnimationFrame(()=>{n=requestAnimationFrame(e)});return()=>cancelAnimationFrame(n)}(()=>{l(c?"enter":d?"leave":null)});l(null)}},[g,h,c,d]),kS(()=>{if(!t)return;if(!g)return;if(!u)return;if(!h)return;const e=()=>null==t?void 0:t.setState("animating",!1),n=()=>Md.flushSync(e);if("leave"===u&&c)return;if("enter"===u&&!c)return;if("number"==typeof g){return SD(g,n)}const{transitionDuration:i,animationDuration:a,transitionDelay:o,animationDelay:r}=getComputedStyle(h),{transitionDuration:s="0",animationDuration:l="0",transitionDelay:d="0",animationDelay:m="0"}=p?getComputedStyle(p):{},y=TD(o,r,d,m)+TD(i,a,s,l);if(!y)return"enter"===u&&t.setState("animated",!1),void e();return SD(Math.max(y-1e3/60,0),n)},[t,g,h,p,c,u]),a=QS(a,e=>ce.jsx(iT,{value:t,children:e}),[t]);const m=DD(d,a.hidden,i),y=a.style,f=ee.useMemo(()=>m?Cv(kv({},y),{display:"none"}):y,[m,y]);return Kv(a=Cv(kv({id:s,"data-open":c||void 0,"data-enter":"enter"===u||void 0,"data-leave":"leave"===u||void 0,hidden:m},a),{ref:zS(s?t.setContentElement:null,r,a.ref),style:f}))}),CD=PS(function(e){return RS("div",kD(e))});function ED(e={}){const n=TT(e.store,ST(e.disclosure,["contentElement","disclosureElement"])),t=null==n?void 0:n.getState(),i=Vv(e.open,null==t?void 0:t.open,e.defaultOpen,!1),a=Vv(e.animated,null==t?void 0:t.animated,!1),o=bT({open:i,animated:a,animating:!!a&&i,mounted:i,contentElement:Vv(null==t?void 0:t.contentElement,null),disclosureElement:Vv(null==t?void 0:t.disclosureElement,null)},n);return wT(o,()=>NT(o,["animated","animating"],e=>{e.animated||o.setState("animating",!1)})),wT(o,()=>LT(o,["open"],()=>{o.getState().animated&&o.setState("animating",!0)})),wT(o,()=>NT(o,["open","animating"],e=>{o.setState("mounted",e.open||e.animating)})),Bv(_v({},o),{disclosure:e.disclosure,setOpen:e=>o.setState("open",e),show:()=>o.setState("open",!0),hide:()=>o.setState("open",!1),toggle:()=>o.setState("open",e=>!e),stopAnimation:()=>o.setState("animating",!1),setContentElement:e=>o.setState("contentElement",e),setDisclosureElement:e=>o.setState("disclosureElement",e)})}function zD(e,n,t){return YS(n,[t.store,t.disclosure]),CT(e,t,"open","setOpen"),CT(e,t,"mounted","setMounted"),CT(e,t,"animated"),Object.assign(e,{disclosure:t.disclosure})}function ID(e={}){return ED(e)}function AD(e,n,t){return zD(e,n,t)}function YD(e={}){const[n,t]=ET(ID,e);return AD(n,t,e)}function OD(e={}){var n;const t=null==(n=e.store)?void 0:n.getState(),i=function(e={}){var n=e,{popover:t}=n,i=Fv(n,["popover"]);const a=TT(i.store,ST(t,["arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),o=null==a?void 0:a.getState(),r=ID(Bv(_v({},i),{store:a})),s=Vv(i.placement,null==o?void 0:o.placement,"bottom"),u=bT(Bv(_v({},r.getState()),{placement:s,currentPlacement:s,anchorElement:Vv(null==o?void 0:o.anchorElement,null),popoverElement:Vv(null==o?void 0:o.popoverElement,null),arrowElement:Vv(null==o?void 0:o.arrowElement,null),rendered:Symbol("rendered")}),r,a);return Bv(_v(_v({},r),u),{setAnchorElement:e=>u.setState("anchorElement",e),setPopoverElement:e=>u.setState("popoverElement",e),setArrowElement:e=>u.setState("arrowElement",e),render:()=>u.setState("rendered",Symbol("rendered"))})}(Bv(_v({},e),{placement:Vv(e.placement,null==t?void 0:t.placement,"bottom")})),a=Vv(e.timeout,null==t?void 0:t.timeout,500),o=bT(Bv(_v({},i.getState()),{timeout:a,showTimeout:Vv(e.showTimeout,null==t?void 0:t.showTimeout),hideTimeout:Vv(e.hideTimeout,null==t?void 0:t.hideTimeout),autoFocusOnShow:Vv(null==t?void 0:t.autoFocusOnShow,!1)}),i,e.store);return Bv(_v(_v({},i),o),{setAutoFocusOnShow:e=>o.setState("autoFocusOnShow",e)})}function QD(e,n,t){return CT(e,t,"timeout"),CT(e,t,"showTimeout"),CT(e,t,"hideTimeout"),function(e,n,t){return YS(n,[t.popover]),CT(e,t,"placement"),AD(e,n,t)}(e,n,t)}PS(function(e){var n=e,{unmountOnHide:t}=n,i=Ev(n,["unmountOnHide"]);const a=$S();return!1===kT(i.store||a,e=>!t||(null==e?void 0:e.mounted))?null:ce.jsx(CD,kv({},i))});var ZD=KS([uT],[lT]),_D=ZD.useProviderContext,BD=ZD.ContextProvider,FD=ZD.ScopedContextProvider;function XD(e){return[e.clientX,e.clientY]}function UD(e,n){const[t,i]=e;let a=!1;for(let e=n.length,o=0,r=e-1;o<e;r=o++){const[s,u]=n[o],[l,c]=n[r],[,d]=n[0===r?e-1:r-1]||[0,0],g=(u-c)*(t-s)-(s-l)*(i-u);if(c<u){if(i>=c&&i<u){if(0===g)return!0;g>0&&(i===c?i>d&&(a=!a):a=!a)}}else if(u<c){if(i>u&&i<=c){if(0===g)return!0;g<0&&(i===c?i<d&&(a=!a):a=!a)}}else if(i===u&&(t>=l&&t<=s||t>=s&&t<=l))return!0}return a}function HD(e,n){const t=e.getBoundingClientRect(),{top:i,right:a,bottom:o,left:r}=t,[s,u]=function(e,n){const{top:t,right:i,bottom:a,left:o}=n,[r,s]=e;return[r<o?"left":r>i?"right":null,s<t?"top":s>a?"bottom":null]}(n,t),l=[n];return s?("top"!==u&&l.push(["left"===s?r:a,i]),l.push(["left"===s?a:r,i]),l.push(["left"===s?a:r,o]),"bottom"!==u&&l.push(["left"===s?r:a,o])):"top"===u?(l.push([r,i]),l.push([r,o]),l.push([a,o]),l.push([a,i])):(l.push([r,o]),l.push([r,i]),l.push([a,i]),l.push([a,o])),l}var JD=ee.createContext(null),PD=WS(function(e){return e=Cv(kv({},e),{style:kv({border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",whiteSpace:"nowrap",width:"1px"},e.style)})});PS(function(e){return RS("span",PD(e))});var GD=WS(function(e){return e=Cv(kv({"data-focus-trap":"",tabIndex:0,"aria-hidden":!0},e),{style:kv({position:"fixed",top:0,left:0},e.style)}),e=PD(e)}),RD=PS(function(e){return RS("span",GD(e))});function WD(e){queueMicrotask(()=>{null==e||e.focus()})}var KD=WS(function(e){var n=e,{preserveTabOrder:t,preserveTabOrderAnchor:i,portalElement:a,portalRef:o,portal:r=!0}=n,s=Ev(n,["preserveTabOrder","preserveTabOrderAnchor","portalElement","portalRef","portal"]);const u=ee.useRef(null),l=zS(u,s.ref),c=ee.useContext(JD),[d,g]=ee.useState(null),[h,p]=ee.useState(null),m=ee.useRef(null),y=ee.useRef(null),f=ee.useRef(null),M=ee.useRef(null);return kS(()=>{const e=u.current;if(!e||!r)return void g(null);const n=function(e,n){return n?"function"==typeof n?n(e):n:tS(e).createElement("div")}(e,a);if(!n)return void g(null);const t=n.isConnected;if(!t){const t=c||function(e){return tS(e).body}(e);t.appendChild(n)}return n.id||(n.id=e.id?`portal/${e.id}`:function(e="id"){return`${e?`${e}-`:""}${Math.random().toString(36).slice(2,8)}`}()),g(n),$v(o,n),t?void 0:()=>{n.remove(),$v(o,null)}},[r,a,c,o]),kS(()=>{if(!r)return;if(!t)return;if(!i)return;const e=tS(i).createElement("span");return e.style.position="fixed",i.insertAdjacentElement("afterend",e),p(e),()=>{e.remove(),p(null)}},[r,t,i]),ee.useEffect(()=>{if(!d)return;if(!t)return;let e=0;const n=n=>{if(!LS(n))return;const t="focusin"===n.type;if(cancelAnimationFrame(e),t)return function(e){const n=e.querySelectorAll("[data-tabindex]"),t=e=>{const n=e.getAttribute("data-tabindex");e.removeAttribute("data-tabindex"),n?e.setAttribute("tabindex",n):e.removeAttribute("tabindex")};e.hasAttribute("data-tabindex")&&t(e);for(const e of n)t(e)}(d);e=requestAnimationFrame(()=>{!function(e,n){const t=eD(e,n);for(const e of t)rD(e)}(d,!0)})};return d.addEventListener("focusin",n,!0),d.addEventListener("focusout",n,!0),()=>{cancelAnimationFrame(e),d.removeEventListener("focusin",n,!0),d.removeEventListener("focusout",n,!0)}},[d,t]),s=QS(s,e=>{if(e=ce.jsx(JD.Provider,{value:d||c,children:e}),!r)return e;if(!d)return ce.jsx("span",{ref:l,id:s.id,style:{position:"fixed"},hidden:!0});e=ce.jsxs(ce.Fragment,{children:[t&&d&&ce.jsx(RD,{ref:y,"data-focus-trap":s.id,className:"__focus-trap-inner-before",onFocus:e=>{LS(e,d)?WD(nD()):WD(m.current)}}),e,t&&d&&ce.jsx(RD,{ref:f,"data-focus-trap":s.id,className:"__focus-trap-inner-after",onFocus:e=>{LS(e,d)?WD(tD()):WD(M.current)}})]}),d&&(e=Md.createPortal(e,d));let n=ce.jsxs(ce.Fragment,{children:[t&&d&&ce.jsx(RD,{ref:m,"data-focus-trap":s.id,className:"__focus-trap-outer-before",onFocus:e=>{!(e.relatedTarget===M.current)&&LS(e,d)?WD(y.current):WD(tD())}}),t&&ce.jsx("span",{"aria-owns":null==d?void 0:d.id,style:{position:"fixed"}}),t&&d&&ce.jsx(RD,{ref:M,"data-focus-trap":s.id,className:"__focus-trap-outer-after",onFocus:e=>{if(LS(e,d))WD(f.current);else{const e=nD();if(e===y.current)return void requestAnimationFrame(()=>{var e;return null==(e=nD())?void 0:e.focus()});WD(e)}}})]});return h&&t&&(n=Md.createPortal(n,h)),ce.jsxs(ce.Fragment,{children:[n,e]})},[d,c,r,s.id,t,h]),s=Cv(kv({},s),{ref:l})});PS(function(e){return RS("div",KD(e))});var VD=ee.createContext(0);function $D({level:e,children:n}){const t=ee.useContext(VD),i=Math.max(Math.min(e||t+1,6),1);return ce.jsx(VD.Provider,{value:i,children:n})}var qD=WS(function(e){var n=e,{autoFocusOnShow:t=!0}=n,i=Ev(n,["autoFocusOnShow"]);return i=QS(i,e=>ce.jsx(WT.Provider,{value:t,children:e}),[t])});PS(function(e){return RS("div",qD(e))});var ek=new WeakMap;function nk(e,n,t){ek.has(e)||ek.set(e,new Map);const i=ek.get(e),a=i.get(n);if(!a)return i.set(n,t()),()=>{var e;null==(e=i.get(n))||e(),i.delete(n)};const o=t(),r=()=>{o(),a(),i.delete(n)};return i.set(n,r),()=>{i.get(n)===r&&(o(),i.set(n,a))}}function tk(e,n,t){return nk(e,n,()=>{const i=e.getAttribute(n);return e.setAttribute(n,t),()=>{null==i?e.removeAttribute(n):e.setAttribute(n,i)}})}function ik(e,n,t){return nk(e,n,()=>{const i=n in e,a=e[n];return e[n]=t,()=>{i?e[n]=a:delete e[n]}})}function ak(e,n){if(!e)return()=>{};return nk(e,"style",()=>{const t=e.style.cssText;return Object.assign(e.style,n),()=>{e.style.cssText=t}})}var ok=["SCRIPT","STYLE"];function rk(e){return`__ariakit-dialog-snapshot-${e}`}function sk(e,n,t){return!ok.includes(n.tagName)&&(!!function(e,n){const t=tS(n),i=rk(e);if(!t.body[i])return!0;for(;;){if(n===t.body)return!1;if(n[i])return!0;if(!n.parentElement)return!1;n=n.parentElement}}(e,n)&&!t.some(e=>e&&oS(n,e)))}function uk(e,n,t,i){for(let a of n){if(!(null==a?void 0:a.isConnected))continue;const o=n.some(e=>!!e&&(e!==a&&e.contains(a))),r=tS(a),s=a;for(;a.parentElement&&a!==r.body;){if(null==i||i(a.parentElement,s),!o)for(const i of a.parentElement.children)sk(e,i,n)&&t(i,s);a=a.parentElement}}}function lk(e,...n){if(!e)return!1;const t=e.getAttribute("data-backdrop");return null!=t&&(""===t||("true"===t||(!n.length||n.some(e=>t===e))))}function ck(e="",n=!1){return`__ariakit-dialog-${n?"ancestor":"outside"}${e?`-${e}`:""}`}function dk(e,n=""){return Jv(ik(e,ck("",!0),!0),ik(e,ck(n,!0),!0))}function gk(e,n){if(e[ck(n,!0)])return!0;const t=ck(n);for(;;){if(e[t])return!0;if(!e.parentElement)return!1;e=e.parentElement}}function hk(e,n){const t=[],i=n.map(e=>null==e?void 0:e.id);uk(e,n,n=>{lk(n,...i)||t.unshift(function(e,n=""){return Jv(ik(e,ck(),!0),ik(e,ck(n),!0))}(n,e))},(n,i)=>{i.hasAttribute("data-dialog")&&i.id!==e||t.unshift(dk(n,e))});return()=>{for(const e of t)e()}}function pk({store:e,type:n,listener:t,capture:i,domReady:a}){const o=ES(t),r=kT(e,"open"),s=ee.useRef(!1);kS(()=>{if(!r)return;if(!a)return;const{contentElement:n}=e.getState();if(!n)return;const t=()=>{s.current=!0};return n.addEventListener("focusin",t,!0),()=>n.removeEventListener("focusin",t,!0)},[e,r,a]),ee.useEffect(()=>{if(!r)return;return vS(n,n=>{const{contentElement:t,disclosureElement:i}=e.getState(),a=n.target;if(!t)return;if(!a)return;if(!function(e){return"HTML"===e.tagName||oS(tS(e).body,e)}(a))return;if(oS(t,a))return;if(function(e,n){if(!e)return!1;if(oS(e,n))return!0;const t=n.getAttribute("aria-activedescendant");if(t){const n=tS(e).getElementById(t);if(n)return oS(e,n)}return!1}(i,a))return;if(a.hasAttribute("data-focus-trap"))return;if(function(e,n){if(!("clientY"in e))return!1;const t=n.getBoundingClientRect();return 0!==t.width&&0!==t.height&&t.top<=e.clientY&&e.clientY<=t.top+t.height&&t.left<=e.clientX&&e.clientX<=t.left+t.width}(n,t))return;var r;s.current&&!gk(a,t.id)||((r=a)&&r[lD]||o(n))},i)},[r,i])}function mk(e,n){return"function"==typeof e?e(n):!!e}function yk(e,n,t){const i=function(e){const n=ee.useRef();return ee.useEffect(()=>{if(e)return vS("mousedown",e=>{n.current=e.target},!0);n.current=null},[e]),n}(kT(e,"open")),a={store:e,domReady:t,capture:!0};pk(Cv(kv({},a),{type:"click",listener:t=>{const{contentElement:a}=e.getState(),o=i.current;o&&lS(o)&&gk(o,null==a?void 0:a.id)&&mk(n,t)&&e.hide()}})),pk(Cv(kv({},a),{type:"focusin",listener:t=>{const{contentElement:i}=e.getState();i&&t.target!==tS(i)&&mk(n,t)&&e.hide()}})),pk(Cv(kv({},a),{type:"contextmenu",listener:t=>{mk(n,t)&&e.hide()}}))}var fk=ee.createContext({});function Mk({attribute:e,contentId:n,contentElement:t,enabled:i}){const[a,o]=ee.useReducer(()=>[],[]),r=ee.useCallback(()=>{if(!i)return!1;if(!t)return!1;const{body:a}=tS(t),o=a.getAttribute(e);return!o||o===n},[a,i,t,e,n]);return ee.useEffect(()=>{if(!i)return;if(!n)return;if(!t)return;const{body:a}=tS(t);if(r())return a.setAttribute(e,n),()=>a.removeAttribute(e);const s=new MutationObserver(()=>Md.flushSync(o));return s.observe(a,{attributeFilter:[e]}),()=>s.disconnect()},[a,i,n,t,r,e]),r}function jk(e,n,t){const i=Mk({attribute:"data-dialog-prevent-body-scroll",contentElement:e,contentId:n,enabled:t});ee.useEffect(()=>{if(!i())return;if(!e)return;const n=tS(e),t=iS(e),{documentElement:a,body:o}=n,r=a.style.getPropertyValue("--scrollbar-width"),s=r?Number.parseInt(r):t.innerWidth-a.clientWidth,u=function(e){const n=e.getBoundingClientRect().left;return Math.round(n)+e.scrollLeft?"paddingLeft":"paddingRight"}(a),l=yS()&&!MS();return Jv((d="--scrollbar-width",g=`${s}px`,(c=a)?nk(c,d,()=>{const e=c.style.getPropertyValue(d);return c.style.setProperty(d,g),()=>{e?c.style.setProperty(d,e):c.style.removeProperty(d)}}):()=>{}),l?(()=>{var e,n;const{scrollX:i,scrollY:a,visualViewport:r}=t,l=null!=(e=null==r?void 0:r.offsetLeft)?e:0,c=null!=(n=null==r?void 0:r.offsetTop)?n:0,d=ak(o,{position:"fixed",overflow:"hidden",top:-(a-Math.floor(c))+"px",left:-(i-Math.floor(l))+"px",right:"0",[u]:`${s}px`});return()=>{d(),t.scrollTo({left:i,top:a,behavior:"instant"})}})():ak(o,{overflow:"hidden",[u]:`${s}px`}));var c,d,g},[i,e])}function bk(){return"inert"in HTMLElement.prototype}function wk(e,n){if(!("style"in e))return Xv;if(bk())return ik(e,"inert",!0);const t=eD(e,!0).map(e=>{if(null==n?void 0:n.some(n=>n&&oS(n,e)))return Xv;const t=nk(e,"focus",()=>(e.focus=Xv,()=>{delete e.focus}));return Jv(tk(e,"tabindex","-1"),t)});return Jv(...t,function(e){return tk(e,"aria-hidden","true")}(e),ak(e,{pointerEvents:"none",userSelect:"none",cursor:"default"}))}WS(function(e){return e});var xk=PS(function(e){return RS("div",e)});function Lk({store:e,backdrop:n,alwaysVisible:t,hidden:i}){const a=ee.useRef(null),o=function(e={}){const[n,t]=ET(ED,e);return zD(n,t,e)}({disclosure:e}),r=kT(e,"contentElement");ee.useEffect(()=>{const e=a.current,n=r;e&&n&&(e.style.zIndex=getComputedStyle(n).zIndex)},[r]),kS(()=>{const e=null==r?void 0:r.id;if(!e)return;const n=a.current;return n?dk(n,e):void 0},[r]);const s=kD({ref:a,store:o,role:"presentation","data-backdrop":(null==r?void 0:r.id)||"",alwaysVisible:t,hidden:null!=i?i:void 0,style:{position:"fixed",top:0,right:0,bottom:0,left:0}});if(!n)return null;if(ee.isValidElement(n))return ce.jsx(xk,Cv(kv({},s),{render:n}));const u="boolean"!=typeof n?n:"div";return ce.jsx(xk,Cv(kv({},s),{render:ce.jsx(u,{})}))}Object.assign(xk,["a","button","details","dialog","div","form","h1","h2","h3","h4","h5","h6","header","img","input","label","li","nav","ol","p","section","select","span","summary","textarea","ul","svg"].reduce((e,n)=>(e[n]=PS(function(e){return RS(n,e)}),e),{}));var Nk=fS();function vk(e,n=!1){if(!e)return null;const t="current"in e?e.current:e;return t?n?VT(t)?t:null:t:null}var Sk=WS(function(e){var n=e,{store:t,open:i,onClose:a,focusable:o=!0,modal:r=!0,portal:s=!!r,backdrop:u=!!r,hideOnEscape:l=!0,hideOnInteractOutside:c=!0,getPersistentElements:d,preventBodyScroll:g=!!r,autoFocusOnShow:h=!0,autoFocusOnHide:p=!0,initialFocus:m,finalFocus:y,unmountOnHide:f,unstable_treeSnapshotKey:M}=n,j=Ev(n,["store","open","onClose","focusable","modal","portal","backdrop","hideOnEscape","hideOnInteractOutside","getPersistentElements","preventBodyScroll","autoFocusOnShow","autoFocusOnHide","initialFocus","finalFocus","unmountOnHide","unstable_treeSnapshotKey"]);const b=nT(),w=ee.useRef(null),x=YD({store:t||b,open:i,setOpen(e){if(e)return;const n=w.current;if(!n)return;const t=new Event("close",{bubbles:!1,cancelable:!0});a&&n.addEventListener("close",a,{once:!0}),n.dispatchEvent(t),t.defaultPrevented&&x.setOpen(!0)}}),{portalRef:L,domReady:N}=ZS(s,j.portalRef),v=j.preserveTabOrder,S=kT(x,e=>v&&!r&&e.mounted),T=IS(j.id),D=kT(x,"open"),k=kT(x,"mounted"),C=kT(x,"contentElement"),E=DD(k,j.hidden,j.alwaysVisible);jk(C,T,g&&!E),yk(x,c,N);const{wrapElement:z,nestedDialogs:I}=function(e){const n=ee.useContext(fk),[t,i]=ee.useState([]),a=ee.useCallback(e=>{var t;return i(n=>[...n,e]),Jv(null==(t=n.add)?void 0:t.call(n,e),()=>{i(n=>n.filter(n=>n!==e))})},[n]);kS(()=>NT(e,["open","contentElement"],t=>{var i;if(t.open&&t.contentElement)return null==(i=n.add)?void 0:i.call(n,e)}),[e,n]);const o=ee.useMemo(()=>({store:e,add:a}),[e,a]);return{wrapElement:ee.useCallback(e=>ce.jsx(fk.Provider,{value:o,children:e}),[o]),nestedDialogs:t}}(x);j=QS(j,z,[z]),kS(()=>{if(!D)return;const e=w.current,n=aS(e,!0);n&&"BODY"!==n.tagName&&(e&&oS(e,n)||x.setDisclosureElement(n))},[x,D]),Nk&&ee.useEffect(()=>{if(!k)return;const{disclosureElement:e}=x.getState();if(!e)return;if(!sS(e))return;const n=()=>{let n=!1;const t=()=>{n=!0};e.addEventListener("focusin",t,{capture:!0,once:!0}),NS(e,"mouseup",()=>{e.removeEventListener("focusin",t,!0),n||oD(e)})};return e.addEventListener("mousedown",n),()=>{e.removeEventListener("mousedown",n)}},[x,k]),ee.useEffect(()=>{if(!k)return;if(!N)return;const e=w.current;if(!e)return;const n=iS(e),t=n.visualViewport||n,i=()=>{var t,i;const a=null!=(i=null==(t=n.visualViewport)?void 0:t.height)?i:n.innerHeight;e.style.setProperty("--dialog-viewport-height",`${a}px`)};return i(),t.addEventListener("resize",i),()=>{t.removeEventListener("resize",i)}},[k,N]),ee.useEffect(()=>{if(!r)return;if(!k)return;if(!N)return;const e=w.current;if(!e)return;return e.querySelector("[data-dialog-dismiss]")?void 0:function(e,n){const t=tS(e).createElement("button");return t.type="button",t.tabIndex=-1,t.textContent="Dismiss popup",Object.assign(t.style,{border:"0px",clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:"0px",position:"absolute",whiteSpace:"nowrap",width:"1px"}),t.addEventListener("click",n),e.prepend(t),()=>{t.removeEventListener("click",n),t.remove()}}(e,x.hide)},[x,r,k,N]),kS(()=>{if(!bk())return;if(D)return;if(!k)return;if(!N)return;const e=w.current;return e?wk(e):void 0},[D,k,N]);const A=D&&N;kS(()=>{if(!T)return;if(!A)return;const e=w.current;return function(e,n){const{body:t}=tS(n[0]),i=[];return uk(e,n,n=>{i.push(ik(n,rk(e),!0))}),Jv(ik(t,rk(e),!0),()=>{for(const e of i)e()})}(T,[e])},[T,A,M]);const Y=ES(d);kS(()=>{if(!T)return;if(!A)return;const{disclosureElement:e}=x.getState(),n=[w.current,...Y()||[],...I.map(e=>e.getState().contentElement)];return r?Jv(hk(T,n),function(e,n){const t=[],i=n.map(e=>null==e?void 0:e.id);return uk(e,n,e=>{lk(e,...i)||function(e,...n){if(!e)return!1;const t=e.getAttribute("data-focus-trap");return null!=t&&(!n.length||""!==t&&n.some(e=>t===e))}(e,...i)||t.unshift(wk(e,n))},e=>{e.hasAttribute("role")&&(n.some(n=>n&&oS(n,e))||t.unshift(tk(e,"role","none")))}),()=>{for(const e of t)e()}}(T,n)):hk(T,[e,...n])},[T,x,A,Y,I,r,M]);const O=!!h,Q=OS(h),[Z,_]=ee.useState(!1);ee.useEffect(()=>{if(!D)return;if(!O)return;if(!N)return;if(!(null==C?void 0:C.isConnected))return;const e=vk(m,!0)||C.querySelector("[data-autofocus=true],[autofocus]")||function(e,n,t){const[i]=eD(e,n,t);return i||null}(C,!0,s&&S)||C,n=VT(e);Q(n?e:null)&&(_(!0),queueMicrotask(()=>{e.focus(),Nk&&n&&e.scrollIntoView({block:"nearest",inline:"nearest"})}))},[D,O,N,C,m,s,S,Q]);const B=!!p,F=OS(p),[X,U]=ee.useState(!1);ee.useEffect(()=>{if(D)return U(!0),()=>U(!1)},[D]);const H=ee.useCallback((e,n=!0)=>{const{disclosureElement:t}=x.getState();if(function(e){const n=aS();return!(!n||e&&oS(e,n)||!VT(n))}(e))return;let i=vk(y)||t;if(null==i?void 0:i.id){const e=tS(i),n=`[aria-activedescendant="${i.id}"]`,t=e.querySelector(n);t&&(i=t)}if(i&&!VT(i)){const e=i.closest("[data-dialog]");if(null==e?void 0:e.id){const n=tS(e),t=`[aria-controls~="${e.id}"]`,a=n.querySelector(t);a&&(i=a)}}const a=i&&VT(i);a||!n?F(a?i:null)&&a&&(null==i||i.focus({preventScroll:!0})):requestAnimationFrame(()=>H(e,!1))},[x,y,F]),J=ee.useRef(!1);kS(()=>{if(D)return;if(!X)return;if(!B)return;const e=w.current;J.current=!0,H(e)},[D,X,N,B,H]),ee.useEffect(()=>{if(!X)return;if(!B)return;const e=w.current;return()=>{J.current?J.current=!1:H(e)}},[X,B,H]);const P=OS(l);ee.useEffect(()=>{if(!N)return;if(!k)return;return vS("keydown",e=>{if("Escape"!==e.key)return;if(e.defaultPrevented)return;const n=w.current;if(!n)return;if(gk(n))return;const t=e.target;if(!t)return;const{disclosureElement:i}=x.getState();("BODY"===t.tagName||oS(n,t)||!i||oS(i,t))&&P(e)&&x.hide()},!0)},[x,N,k,P]);const G=(j=QS(j,e=>ce.jsx($D,{level:r?1:void 0,children:e}),[r])).hidden,R=j.alwaysVisible;j=QS(j,e=>u?ce.jsxs(ce.Fragment,{children:[ce.jsx(Lk,{store:x,backdrop:u,hidden:G,alwaysVisible:R}),e]}):e,[x,u,G,R]);const[W,K]=ee.useState(),[V,$]=ee.useState();return j=QS(j,e=>ce.jsx(iT,{value:x,children:ce.jsx(aT.Provider,{value:K,children:ce.jsx(oT.Provider,{value:$,children:e})})}),[x]),j=Cv(kv({id:T,"data-dialog":"",role:"dialog",tabIndex:o?-1:void 0,"aria-labelledby":W,"aria-describedby":V},j),{ref:zS(w,j.ref)}),j=qD(Cv(kv({},j),{autoFocusOnShow:Z})),j=kD(kv({store:x},j)),j=fD(Cv(kv({},j),{focusable:o})),j=KD(Cv(kv({portal:s},j),{portalRef:L,preserveTabOrder:S}))});function Tk(e,n=nT){return PS(function(t){const i=n();return kT(t.store||i,e=>!t.unmountOnHide||(null==e?void 0:e.mounted)||!!t.open)?ce.jsx(e,kv({},t)):null})}var Dk=Tk(PS(function(e){return RS("div",Sk(e))}),nT);const kk=Math.min,Ck=Math.max,Ek=Math.round,zk=Math.floor,Ik=e=>({x:e,y:e}),Ak={left:"right",right:"left",bottom:"top",top:"bottom"},Yk={start:"end",end:"start"};function Ok(e,n,t){return Ck(e,kk(n,t))}function Qk(e,n){return"function"==typeof e?e(n):e}function Zk(e){return e.split("-")[0]}function _k(e){return e.split("-")[1]}function Bk(e){return"x"===e?"y":"x"}function Fk(e){return"y"===e?"height":"width"}function Xk(e){return["top","bottom"].includes(Zk(e))?"y":"x"}function Uk(e){return Bk(Xk(e))}function Hk(e){return e.replace(/start|end/g,e=>Yk[e])}function Jk(e){return e.replace(/left|right|bottom|top/g,e=>Ak[e])}function Pk(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}function Gk(e){const{x:n,y:t,width:i,height:a}=e;return{width:i,height:a,top:t,left:n,right:n+i,bottom:t+a,x:n,y:t}}function Rk(e,n,t){let{reference:i,floating:a}=e;const o=Xk(n),r=Uk(n),s=Fk(r),u=Zk(n),l="y"===o,c=i.x+i.width/2-a.width/2,d=i.y+i.height/2-a.height/2,g=i[s]/2-a[s]/2;let h;switch(u){case"top":h={x:c,y:i.y-a.height};break;case"bottom":h={x:c,y:i.y+i.height};break;case"right":h={x:i.x+i.width,y:d};break;case"left":h={x:i.x-a.width,y:d};break;default:h={x:i.x,y:i.y}}switch(_k(n)){case"start":h[r]-=g*(t&&l?-1:1);break;case"end":h[r]+=g*(t&&l?-1:1)}return h}async function Wk(e,n){var t;void 0===n&&(n={});const{x:i,y:a,platform:o,rects:r,elements:s,strategy:u}=e,{boundary:l="clippingAncestors",rootBoundary:c="viewport",elementContext:d="floating",altBoundary:g=!1,padding:h=0}=Qk(n,e),p=Pk(h),m=s[g?"floating"===d?"reference":"floating":d],y=Gk(await o.getClippingRect({element:null==(t=await(null==o.isElement?void 0:o.isElement(m)))||t?m:m.contextElement||await(null==o.getDocumentElement?void 0:o.getDocumentElement(s.floating)),boundary:l,rootBoundary:c,strategy:u})),f="floating"===d?{x:i,y:a,width:r.floating.width,height:r.floating.height}:r.reference,M=await(null==o.getOffsetParent?void 0:o.getOffsetParent(s.floating)),j=await(null==o.isElement?void 0:o.isElement(M))&&await(null==o.getScale?void 0:o.getScale(M))||{x:1,y:1},b=Gk(o.convertOffsetParentRelativeRectToViewportRelativeRect?await o.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:f,offsetParent:M,strategy:u}):f);return{top:(y.top-b.top+p.top)/j.y,bottom:(b.bottom-y.bottom+p.bottom)/j.y,left:(y.left-b.left+p.left)/j.x,right:(b.right-y.right+p.right)/j.x}}function Kk(){return"undefined"!=typeof window}function Vk(e){return eC(e)?(e.nodeName||"").toLowerCase():"#document"}function $k(e){var n;return(null==e||null==(n=e.ownerDocument)?void 0:n.defaultView)||window}function qk(e){var n;return null==(n=(eC(e)?e.ownerDocument:e.document)||window.document)?void 0:n.documentElement}function eC(e){return!!Kk()&&(e instanceof Node||e instanceof $k(e).Node)}function nC(e){return!!Kk()&&(e instanceof Element||e instanceof $k(e).Element)}function tC(e){return!!Kk()&&(e instanceof HTMLElement||e instanceof $k(e).HTMLElement)}function iC(e){return!(!Kk()||"undefined"==typeof ShadowRoot)&&(e instanceof ShadowRoot||e instanceof $k(e).ShadowRoot)}function aC(e){const{overflow:n,overflowX:t,overflowY:i,display:a}=cC(e);return/auto|scroll|overlay|hidden|clip/.test(n+i+t)&&!["inline","contents"].includes(a)}function oC(e){return["table","td","th"].includes(Vk(e))}function rC(e){return[":popover-open",":modal"].some(n=>{try{return e.matches(n)}catch(e){return!1}})}function sC(e){const n=uC(),t=nC(e)?cC(e):e;return["transform","translate","scale","rotate","perspective"].some(e=>!!t[e]&&"none"!==t[e])||!!t.containerType&&"normal"!==t.containerType||!n&&!!t.backdropFilter&&"none"!==t.backdropFilter||!n&&!!t.filter&&"none"!==t.filter||["transform","translate","scale","rotate","perspective","filter"].some(e=>(t.willChange||"").includes(e))||["paint","layout","strict","content"].some(e=>(t.contain||"").includes(e))}function uC(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function lC(e){return["html","body","#document"].includes(Vk(e))}function cC(e){return $k(e).getComputedStyle(e)}function dC(e){return nC(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function gC(e){if("html"===Vk(e))return e;const n=e.assignedSlot||e.parentNode||iC(e)&&e.host||qk(e);return iC(n)?n.host:n}function hC(e){const n=gC(e);return lC(n)?e.ownerDocument?e.ownerDocument.body:e.body:tC(n)&&aC(n)?n:hC(n)}function pC(e,n,t){var i;void 0===n&&(n=[]),void 0===t&&(t=!0);const a=hC(e),o=a===(null==(i=e.ownerDocument)?void 0:i.body),r=$k(a);if(o){const e=mC(r);return n.concat(r,r.visualViewport||[],aC(a)?a:[],e&&t?pC(e):[])}return n.concat(a,pC(a,[],t))}function mC(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function yC(e){const n=cC(e);let t=parseFloat(n.width)||0,i=parseFloat(n.height)||0;const a=tC(e),o=a?e.offsetWidth:t,r=a?e.offsetHeight:i,s=Ek(t)!==o||Ek(i)!==r;return s&&(t=o,i=r),{width:t,height:i,$:s}}function fC(e){return nC(e)?e:e.contextElement}function MC(e){const n=fC(e);if(!tC(n))return Ik(1);const t=n.getBoundingClientRect(),{width:i,height:a,$:o}=yC(n);let r=(o?Ek(t.width):t.width)/i,s=(o?Ek(t.height):t.height)/a;return r&&Number.isFinite(r)||(r=1),s&&Number.isFinite(s)||(s=1),{x:r,y:s}}const jC=Ik(0);function bC(e){const n=$k(e);return uC()&&n.visualViewport?{x:n.visualViewport.offsetLeft,y:n.visualViewport.offsetTop}:jC}function wC(e,n,t,i){void 0===n&&(n=!1),void 0===t&&(t=!1);const a=e.getBoundingClientRect(),o=fC(e);let r=Ik(1);n&&(i?nC(i)&&(r=MC(i)):r=MC(e));const s=function(e,n,t){return void 0===n&&(n=!1),!(!t||n&&t!==$k(e))&&n}(o,t,i)?bC(o):Ik(0);let u=(a.left+s.x)/r.x,l=(a.top+s.y)/r.y,c=a.width/r.x,d=a.height/r.y;if(o){const e=$k(o),n=i&&nC(i)?$k(i):i;let t=e,a=mC(t);for(;a&&i&&n!==t;){const e=MC(a),n=a.getBoundingClientRect(),i=cC(a),o=n.left+(a.clientLeft+parseFloat(i.paddingLeft))*e.x,r=n.top+(a.clientTop+parseFloat(i.paddingTop))*e.y;u*=e.x,l*=e.y,c*=e.x,d*=e.y,u+=o,l+=r,t=$k(a),a=mC(t)}}return Gk({width:c,height:d,x:u,y:l})}function xC(e,n){const t=dC(e).scrollLeft;return n?n.left+t:wC(qk(e)).left+t}function LC(e,n,t){void 0===t&&(t=!1);const i=e.getBoundingClientRect();return{x:i.left+n.scrollLeft-(t?0:xC(e,i)),y:i.top+n.scrollTop}}function NC(e,n,t){let i;if("viewport"===n)i=function(e,n){const t=$k(e),i=qk(e),a=t.visualViewport;let o=i.clientWidth,r=i.clientHeight,s=0,u=0;if(a){o=a.width,r=a.height;const e=uC();(!e||e&&"fixed"===n)&&(s=a.offsetLeft,u=a.offsetTop)}return{width:o,height:r,x:s,y:u}}(e,t);else if("document"===n)i=function(e){const n=qk(e),t=dC(e),i=e.ownerDocument.body,a=Ck(n.scrollWidth,n.clientWidth,i.scrollWidth,i.clientWidth),o=Ck(n.scrollHeight,n.clientHeight,i.scrollHeight,i.clientHeight);let r=-t.scrollLeft+xC(e);const s=-t.scrollTop;return"rtl"===cC(i).direction&&(r+=Ck(n.clientWidth,i.clientWidth)-a),{width:a,height:o,x:r,y:s}}(qk(e));else if(nC(n))i=function(e,n){const t=wC(e,!0,"fixed"===n),i=t.top+e.clientTop,a=t.left+e.clientLeft,o=tC(e)?MC(e):Ik(1);return{width:e.clientWidth*o.x,height:e.clientHeight*o.y,x:a*o.x,y:i*o.y}}(n,t);else{const t=bC(e);i={x:n.x-t.x,y:n.y-t.y,width:n.width,height:n.height}}return Gk(i)}function vC(e,n){const t=gC(e);return!(t===n||!nC(t)||lC(t))&&("fixed"===cC(t).position||vC(t,n))}function SC(e,n,t){const i=tC(n),a=qk(n),o="fixed"===t,r=wC(e,!0,o,n);let s={scrollLeft:0,scrollTop:0};const u=Ik(0);function l(){u.x=xC(a)}if(i||!i&&!o)if(("body"!==Vk(n)||aC(a))&&(s=dC(n)),i){const e=wC(n,!0,o,n);u.x=e.x+n.clientLeft,u.y=e.y+n.clientTop}else a&&l();o&&!i&&a&&l();const c=!a||i||o?Ik(0):LC(a,s);return{x:r.left+s.scrollLeft-u.x-c.x,y:r.top+s.scrollTop-u.y-c.y,width:r.width,height:r.height}}function TC(e){return"static"===cC(e).position}function DC(e,n){if(!tC(e)||"fixed"===cC(e).position)return null;if(n)return n(e);let t=e.offsetParent;return qk(e)===t&&(t=t.ownerDocument.body),t}function kC(e,n){const t=$k(e);if(rC(e))return t;if(!tC(e)){let n=gC(e);for(;n&&!lC(n);){if(nC(n)&&!TC(n))return n;n=gC(n)}return t}let i=DC(e,n);for(;i&&oC(i)&&TC(i);)i=DC(i,n);return i&&lC(i)&&TC(i)&&!sC(i)?t:i||function(e){let n=gC(e);for(;tC(n)&&!lC(n);){if(sC(n))return n;if(rC(n))return null;n=gC(n)}return null}(e)||t}const CC={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:n,rect:t,offsetParent:i,strategy:a}=e;const o="fixed"===a,r=qk(i),s=!!n&&rC(n.floating);if(i===r||s&&o)return t;let u={scrollLeft:0,scrollTop:0},l=Ik(1);const c=Ik(0),d=tC(i);if((d||!d&&!o)&&(("body"!==Vk(i)||aC(r))&&(u=dC(i)),tC(i))){const e=wC(i);l=MC(i),c.x=e.x+i.clientLeft,c.y=e.y+i.clientTop}const g=!r||d||o?Ik(0):LC(r,u,!0);return{width:t.width*l.x,height:t.height*l.y,x:t.x*l.x-u.scrollLeft*l.x+c.x+g.x,y:t.y*l.y-u.scrollTop*l.y+c.y+g.y}},getDocumentElement:qk,getClippingRect:function(e){let{element:n,boundary:t,rootBoundary:i,strategy:a}=e;const o="clippingAncestors"===t?rC(n)?[]:function(e,n){const t=n.get(e);if(t)return t;let i=pC(e,[],!1).filter(e=>nC(e)&&"body"!==Vk(e)),a=null;const o="fixed"===cC(e).position;let r=o?gC(e):e;for(;nC(r)&&!lC(r);){const n=cC(r),t=sC(r);t||"fixed"!==n.position||(a=null),(o?!t&&!a:!t&&"static"===n.position&&a&&["absolute","fixed"].includes(a.position)||aC(r)&&!t&&vC(e,r))?i=i.filter(e=>e!==r):a=n,r=gC(r)}return n.set(e,i),i}(n,this._c):[].concat(t),r=[...o,i],s=r[0],u=r.reduce((e,t)=>{const i=NC(n,t,a);return e.top=Ck(i.top,e.top),e.right=kk(i.right,e.right),e.bottom=kk(i.bottom,e.bottom),e.left=Ck(i.left,e.left),e},NC(n,s,a));return{width:u.right-u.left,height:u.bottom-u.top,x:u.left,y:u.top}},getOffsetParent:kC,getElementRects:async function(e){const n=this.getOffsetParent||kC,t=this.getDimensions,i=await t(e.floating);return{reference:SC(e.reference,await n(e.floating),e.strategy),floating:{x:0,y:0,width:i.width,height:i.height}}},getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){const{width:n,height:t}=yC(e);return{width:n,height:t}},getScale:MC,isElement:nC,isRTL:function(e){return"rtl"===cC(e).direction}};function EC(e,n){return e.x===n.x&&e.y===n.y&&e.width===n.width&&e.height===n.height}function zC(e,n,t,i){void 0===i&&(i={});const{ancestorScroll:a=!0,ancestorResize:o=!0,elementResize:r="function"==typeof ResizeObserver,layoutShift:s="function"==typeof IntersectionObserver,animationFrame:u=!1}=i,l=fC(e),c=a||o?[...l?pC(l):[],...pC(n)]:[];c.forEach(e=>{a&&e.addEventListener("scroll",t,{passive:!0}),o&&e.addEventListener("resize",t)});const d=l&&s?function(e,n){let t,i=null;const a=qk(e);function o(){var e;clearTimeout(t),null==(e=i)||e.disconnect(),i=null}return function r(s,u){void 0===s&&(s=!1),void 0===u&&(u=1),o();const l=e.getBoundingClientRect(),{left:c,top:d,width:g,height:h}=l;if(s||n(),!g||!h)return;const p={rootMargin:-zk(d)+"px "+-zk(a.clientWidth-(c+g))+"px "+-zk(a.clientHeight-(d+h))+"px "+-zk(c)+"px",threshold:Ck(0,kk(1,u))||1};let m=!0;function y(n){const i=n[0].intersectionRatio;if(i!==u){if(!m)return r();i?r(!1,i):t=setTimeout(()=>{r(!1,1e-7)},1e3)}1!==i||EC(l,e.getBoundingClientRect())||r(),m=!1}try{i=new IntersectionObserver(y,{...p,root:a.ownerDocument})}catch(e){i=new IntersectionObserver(y,p)}i.observe(e)}(!0),o}(l,t):null;let g,h=-1,p=null;r&&(p=new ResizeObserver(e=>{let[i]=e;i&&i.target===l&&p&&(p.unobserve(n),cancelAnimationFrame(h),h=requestAnimationFrame(()=>{var e;null==(e=p)||e.observe(n)})),t()}),l&&!u&&p.observe(l),p.observe(n));let m=u?wC(e):null;return u&&function n(){const i=wC(e);m&&!EC(m,i)&&t();m=i,g=requestAnimationFrame(n)}(),t(),()=>{var e;c.forEach(e=>{a&&e.removeEventListener("scroll",t),o&&e.removeEventListener("resize",t)}),null==d||d(),null==(e=p)||e.disconnect(),p=null,u&&cancelAnimationFrame(g)}}const IC=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(n){var t,i;const{x:a,y:o,placement:r,middlewareData:s}=n,u=await async function(e,n){const{placement:t,platform:i,elements:a}=e,o=await(null==i.isRTL?void 0:i.isRTL(a.floating)),r=Zk(t),s=_k(t),u="y"===Xk(t),l=["left","top"].includes(r)?-1:1,c=o&&u?-1:1,d=Qk(n,e);let{mainAxis:g,crossAxis:h,alignmentAxis:p}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return s&&"number"==typeof p&&(h="end"===s?-1*p:p),u?{x:h*c,y:g*l}:{x:g*l,y:h*c}}(n,e);return r===(null==(t=s.offset)?void 0:t.placement)&&null!=(i=s.arrow)&&i.alignmentOffset?{}:{x:a+u.x,y:o+u.y,data:{...u,placement:r}}}}},AC=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(n){const{x:t,y:i,placement:a}=n,{mainAxis:o=!0,crossAxis:r=!1,limiter:s={fn:e=>{let{x:n,y:t}=e;return{x:n,y:t}}},...u}=Qk(e,n),l={x:t,y:i},c=await Wk(n,u),d=Xk(Zk(a)),g=Bk(d);let h=l[g],p=l[d];if(o){const e="y"===g?"bottom":"right";h=Ok(h+c["y"===g?"top":"left"],h,h-c[e])}if(r){const e="y"===d?"bottom":"right";p=Ok(p+c["y"===d?"top":"left"],p,p-c[e])}const m=s.fn({...n,[g]:h,[d]:p});return{...m,data:{x:m.x-t,y:m.y-i,enabled:{[g]:o,[d]:r}}}}}},YC=function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(n){var t,i;const{placement:a,middlewareData:o,rects:r,initialPlacement:s,platform:u,elements:l}=n,{mainAxis:c=!0,crossAxis:d=!0,fallbackPlacements:g,fallbackStrategy:h="bestFit",fallbackAxisSideDirection:p="none",flipAlignment:m=!0,...y}=Qk(e,n);if(null!=(t=o.arrow)&&t.alignmentOffset)return{};const f=Zk(a),M=Xk(s),j=Zk(s)===s,b=await(null==u.isRTL?void 0:u.isRTL(l.floating)),w=g||(j||!m?[Jk(s)]:function(e){const n=Jk(e);return[Hk(e),n,Hk(n)]}(s)),x="none"!==p;!g&&x&&w.push(...function(e,n,t,i){const a=_k(e);let o=function(e,n,t){const i=["left","right"],a=["right","left"],o=["top","bottom"],r=["bottom","top"];switch(e){case"top":case"bottom":return t?n?a:i:n?i:a;case"left":case"right":return n?o:r;default:return[]}}(Zk(e),"start"===t,i);return a&&(o=o.map(e=>e+"-"+a),n&&(o=o.concat(o.map(Hk)))),o}(s,m,p,b));const L=[s,...w],N=await Wk(n,y),v=[];let S=(null==(i=o.flip)?void 0:i.overflows)||[];if(c&&v.push(N[f]),d){const e=function(e,n,t){void 0===t&&(t=!1);const i=_k(e),a=Uk(e),o=Fk(a);let r="x"===a?i===(t?"end":"start")?"right":"left":"start"===i?"bottom":"top";return n.reference[o]>n.floating[o]&&(r=Jk(r)),[r,Jk(r)]}(a,r,b);v.push(N[e[0]],N[e[1]])}if(S=[...S,{placement:a,overflows:v}],!v.every(e=>e<=0)){var T,D;const e=((null==(T=o.flip)?void 0:T.index)||0)+1,n=L[e];if(n){if(!("alignment"===d&&M!==Xk(n))||S.every(e=>e.overflows[0]>0&&Xk(e.placement)===M))return{data:{index:e,overflows:S},reset:{placement:n}}}let t=null==(D=S.filter(e=>e.overflows[0]<=0).sort((e,n)=>e.overflows[1]-n.overflows[1])[0])?void 0:D.placement;if(!t)switch(h){case"bestFit":{var k;const e=null==(k=S.filter(e=>{if(x){const n=Xk(e.placement);return n===M||"y"===n}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,n)=>e+n,0)]).sort((e,n)=>e[1]-n[1])[0])?void 0:k[0];e&&(t=e);break}case"initialPlacement":t=s}if(a!==t)return{reset:{placement:t}}}return{}}}},OC=function(e){return void 0===e&&(e={}),{name:"size",options:e,async fn(n){var t,i;const{placement:a,rects:o,platform:r,elements:s}=n,{apply:u=()=>{},...l}=Qk(e,n),c=await Wk(n,l),d=Zk(a),g=_k(a),h="y"===Xk(a),{width:p,height:m}=o.floating;let y,f;"top"===d||"bottom"===d?(y=d,f=g===(await(null==r.isRTL?void 0:r.isRTL(s.floating))?"start":"end")?"left":"right"):(f=d,y="end"===g?"top":"bottom");const M=m-c.top-c.bottom,j=p-c.left-c.right,b=kk(m-c[y],M),w=kk(p-c[f],j),x=!n.middlewareData.shift;let L=b,N=w;if(null!=(t=n.middlewareData.shift)&&t.enabled.x&&(N=j),null!=(i=n.middlewareData.shift)&&i.enabled.y&&(L=M),x&&!g){const e=Ck(c.left,0),n=Ck(c.right,0),t=Ck(c.top,0),i=Ck(c.bottom,0);h?N=p-2*(0!==e||0!==n?e+n:Ck(c.left,c.right)):L=m-2*(0!==t||0!==i?t+i:Ck(c.top,c.bottom))}await u({...n,availableWidth:N,availableHeight:L});const v=await r.getDimensions(s.floating);return p!==v.width||m!==v.height?{reset:{rects:!0}}:{}}}},QC=e=>({name:"arrow",options:e,async fn(n){const{x:t,y:i,placement:a,rects:o,platform:r,elements:s,middlewareData:u}=n,{element:l,padding:c=0}=Qk(e,n)||{};if(null==l)return{};const d=Pk(c),g={x:t,y:i},h=Uk(a),p=Fk(h),m=await r.getDimensions(l),y="y"===h,f=y?"top":"left",M=y?"bottom":"right",j=y?"clientHeight":"clientWidth",b=o.reference[p]+o.reference[h]-g[h]-o.floating[p],w=g[h]-o.reference[h],x=await(null==r.getOffsetParent?void 0:r.getOffsetParent(l));let L=x?x[j]:0;L&&await(null==r.isElement?void 0:r.isElement(x))||(L=s.floating[j]||o.floating[p]);const N=b/2-w/2,v=L/2-m[p]/2-1,S=kk(d[f],v),T=kk(d[M],v),D=S,k=L-m[p]-T,C=L/2-m[p]/2+N,E=Ok(D,C,k),z=!u.arrow&&null!=_k(a)&&C!==E&&o.reference[p]/2-(C<D?S:T)-m[p]/2<0,I=z?C<D?C-D:C-k:0;return{[h]:g[h]+I,data:{[h]:E,centerOffset:C-E-I,...z&&{alignmentOffset:I}},reset:z}}}),ZC=function(e){return void 0===e&&(e={}),{options:e,fn(n){const{x:t,y:i,placement:a,rects:o,middlewareData:r}=n,{offset:s=0,mainAxis:u=!0,crossAxis:l=!0}=Qk(e,n),c={x:t,y:i},d=Xk(a),g=Bk(d);let h=c[g],p=c[d];const m=Qk(s,n),y="number"==typeof m?{mainAxis:m,crossAxis:0}:{mainAxis:0,crossAxis:0,...m};if(u){const e="y"===g?"height":"width",n=o.reference[g]-o.floating[e]+y.mainAxis,t=o.reference[g]+o.reference[e]-y.mainAxis;h<n?h=n:h>t&&(h=t)}if(l){var f,M;const e="y"===g?"width":"height",n=["top","left"].includes(Zk(a)),t=o.reference[d]-o.floating[e]+(n&&(null==(f=r.offset)?void 0:f[d])||0)+(n?0:y.crossAxis),i=o.reference[d]+o.reference[e]+(n?0:(null==(M=r.offset)?void 0:M[d])||0)-(n?y.crossAxis:0);p<t?p=t:p>i&&(p=i)}return{[g]:h,[d]:p}}}},_C=(e,n,t)=>{const i=new Map,a={platform:CC,...t},o={...a.platform,_c:i};return(async(e,n,t)=>{const{placement:i="bottom",strategy:a="absolute",middleware:o=[],platform:r}=t,s=o.filter(Boolean),u=await(null==r.isRTL?void 0:r.isRTL(n));let l=await r.getElementRects({reference:e,floating:n,strategy:a}),{x:c,y:d}=Rk(l,i,u),g=i,h={},p=0;for(let t=0;t<s.length;t++){const{name:o,fn:m}=s[t],{x:y,y:f,data:M,reset:j}=await m({x:c,y:d,initialPlacement:i,placement:g,strategy:a,middlewareData:h,rects:l,platform:r,elements:{reference:e,floating:n}});c=null!=y?y:c,d=null!=f?f:d,h={...h,[o]:{...h[o],...M}},j&&p<=50&&(p++,"object"==typeof j&&(j.placement&&(g=j.placement),j.rects&&(l=!0===j.rects?await r.getElementRects({reference:e,floating:n,strategy:a}):j.rects),({x:c,y:d}=Rk(l,g,u))),t=-1)}return{x:c,y:d,placement:g,strategy:a,middlewareData:h}})(e,n,{...a,platform:o})};function BC(e=0,n=0,t=0,i=0){if("function"==typeof DOMRect)return new DOMRect(e,n,t,i);const a={x:e,y:n,width:t,height:i,top:n,right:e+t,bottom:n+i,left:e};return Cv(kv({},a),{toJSON:()=>a})}function FC(e,n){return{contextElement:e||void 0,getBoundingClientRect:()=>{const t=e,i=null==n?void 0:n(t);return i||!t?function(e){if(!e)return BC();const{x:n,y:t,width:i,height:a}=e;return BC(n,t,i,a)}(i):t.getBoundingClientRect()}}}function XC(e){return/^(?:top|bottom|left|right)(?:-(?:start|end))?$/.test(e)}function UC(e){const n=window.devicePixelRatio||1;return Math.round(e*n)/n}function HC(e,n){return IC(({placement:t})=>{var i;const a=((null==e?void 0:e.clientHeight)||0)/2,o="number"==typeof n.gutter?n.gutter+a:null!=(i=n.gutter)?i:a;return{crossAxis:!!t.split("-")[1]?void 0:n.shift,mainAxis:o,alignmentAxis:n.shift}})}function JC(e){if(!1===e.flip)return;const n="string"==typeof e.flip?e.flip.split(" "):void 0;return Gv(!n||n.every(XC),!1),YC({padding:e.overflowPadding,fallbackPlacements:n})}function PC(e){if(e.slide||e.overlap)return AC({mainAxis:e.slide,crossAxis:e.overlap,padding:e.overflowPadding,limiter:ZC()})}function GC(e){return OC({padding:e.overflowPadding,apply({elements:n,availableWidth:t,availableHeight:i,rects:a}){const o=n.floating,r=Math.round(a.reference.width);t=Math.floor(t),i=Math.floor(i),o.style.setProperty("--popover-anchor-width",`${r}px`),o.style.setProperty("--popover-available-width",`${t}px`),o.style.setProperty("--popover-available-height",`${i}px`),e.sameWidth&&(o.style.width=`${r}px`),e.fitViewport&&(o.style.maxWidth=`${t}px`,o.style.maxHeight=`${i}px`)}})}function RC(e,n){if(e)return QC({element:e,padding:n.arrowPadding})}var WC=WS(function(e){var n=e,{store:t,modal:i=!1,portal:a=!!i,preserveTabOrder:o=!0,autoFocusOnShow:r=!0,wrapperProps:s,fixed:u=!1,flip:l=!0,shift:c=0,slide:d=!0,overlap:g=!1,sameWidth:h=!1,fitViewport:p=!1,gutter:m,arrowPadding:y=4,overflowPadding:f=8,getAnchorRect:M,updatePosition:j}=n,b=Ev(n,["store","modal","portal","preserveTabOrder","autoFocusOnShow","wrapperProps","fixed","flip","shift","slide","overlap","sameWidth","fitViewport","gutter","arrowPadding","overflowPadding","getAnchorRect","updatePosition"]);const w=sT();Gv(t=t||w,!1);const x=t.useState("arrowElement"),L=t.useState("anchorElement"),N=t.useState("disclosureElement"),v=t.useState("popoverElement"),S=t.useState("contentElement"),T=t.useState("placement"),D=t.useState("mounted"),k=t.useState("rendered"),C=ee.useRef(null),[E,z]=ee.useState(!1),{portalRef:I,domReady:A}=ZS(a,b.portalRef),Y=ES(M),O=ES(j),Q=!!j;kS(()=>{if(!(null==v?void 0:v.isConnected))return;v.style.setProperty("--popover-overflow-padding",`${f}px`);const e=FC(L,Y),n=async()=>{if(!D)return;x||(C.current=C.current||document.createElement("div"));const n=x||C.current,i=[HC(n,{gutter:m,shift:c}),JC({flip:l,overflowPadding:f}),PC({slide:d,shift:c,overlap:g,overflowPadding:f}),RC(n,{arrowPadding:y}),GC({sameWidth:h,fitViewport:p,overflowPadding:f})],a=await _C(e,v,{placement:T,strategy:u?"fixed":"absolute",middleware:i});null==t||t.setState("currentPlacement",a.placement),z(!0);const o=UC(a.x),r=UC(a.y);if(Object.assign(v.style,{top:"0",left:"0",transform:`translate3d(${o}px,${r}px,0)`}),n&&a.middlewareData.arrow){const{x:e,y:t}=a.middlewareData.arrow,i=a.placement.split("-")[0],o=n.clientWidth/2,r=n.clientHeight/2,s=null!=e?e+o:-o,u=null!=t?t+r:-r;v.style.setProperty("--popover-transform-origin",{top:`${s}px calc(100% + ${r}px)`,bottom:`${s}px ${-r}px`,left:`calc(100% + ${o}px) ${u}px`,right:`${-o}px ${u}px`}[i]),Object.assign(n.style,{left:null!=e?`${e}px`:"",top:null!=t?`${t}px`:"",[i]:"100%"})}},i=zC(e,v,async()=>{Q?(await O({updatePosition:n}),z(!0)):await n()},{elementResize:"function"==typeof ResizeObserver});return()=>{z(!1),i()}},[t,k,v,x,L,v,T,D,A,u,l,c,d,g,h,p,m,y,f,Y,Q,O]),kS(()=>{if(!D)return;if(!A)return;if(!(null==v?void 0:v.isConnected))return;if(!(null==S?void 0:S.isConnected))return;const e=()=>{v.style.zIndex=getComputedStyle(S).zIndex};e();let n=requestAnimationFrame(()=>{n=requestAnimationFrame(e)});return()=>cancelAnimationFrame(n)},[D,A,v,S]);const Z=u?"fixed":"absolute";return b=QS(b,e=>ce.jsx("div",Cv(kv({},s),{style:kv({position:Z,top:0,left:0,width:"max-content"},null==s?void 0:s.style),ref:null==t?void 0:t.setPopoverElement,children:e})),[t,Z,s]),b=QS(b,e=>ce.jsx(lT,{value:t,children:e}),[t]),b=Cv(kv({"data-placing":!E||void 0},b),{style:kv({position:"relative"},b.style)}),b=Sk(Cv(kv({store:t,modal:i,portal:a,preserveTabOrder:o,preserveTabOrderAnchor:N||L,autoFocusOnShow:E&&r},b),{portalRef:I}))});Tk(PS(function(e){return RS("div",WC(e))}),sT);function KC(e,n,t,i){return!!aD(n)||!!e&&(!!oS(n,e)||(!(!t||!oS(t,e))||!!(null==i?void 0:i.some(n=>KC(e,n,t)))))}var VC=ee.createContext(null),$C=WS(function(e){var n=e,{store:t,modal:i=!1,portal:a=!!i,hideOnEscape:o=!0,hideOnHoverOutside:r=!0,disablePointerEventsOnApproach:s=!!r}=n,u=Ev(n,["store","modal","portal","hideOnEscape","hideOnHoverOutside","disablePointerEventsOnApproach"]);const l=_D();Gv(t=t||l,!1);const c=ee.useRef(null),[d,g]=ee.useState([]),h=ee.useRef(0),p=ee.useRef(null),{portalRef:m,domReady:y}=ZS(a,u.portalRef),f=BS(),M=!!r,j=OS(r),b=!!s,w=OS(s),x=t.useState("open"),L=t.useState("mounted");ee.useEffect(()=>{if(!y)return;if(!L)return;if(!M&&!b)return;const e=c.current;if(!e)return;return Jv(vS("mousemove",n=>{if(!t)return;if(!f())return;const{anchorElement:i,hideTimeout:a,timeout:o}=t.getState(),r=p.current,[s]=n.composedPath(),u=i;if(KC(s,e,u,d))return p.current=s&&u&&oS(u,s)?XD(n):null,window.clearTimeout(h.current),void(h.current=0);if(!h.current){if(r){const t=XD(n);if(UD(t,HD(e,r))){if(p.current=t,!w(n))return;return n.preventDefault(),void n.stopPropagation()}}j(n)&&(h.current=window.setTimeout(()=>{h.current=0,null==t||t.hide()},null!=a?a:o))}},!0),()=>clearTimeout(h.current))},[t,f,y,L,M,b,d,w,j]),ee.useEffect(()=>{if(!y)return;if(!L)return;if(!b)return;const e=e=>{const n=c.current;if(!n)return;const t=p.current;if(!t)return;const i=HD(n,t);if(UD(XD(e),i)){if(!w(e))return;e.preventDefault(),e.stopPropagation()}};return Jv(vS("mouseenter",e,!0),vS("mouseover",e,!0),vS("mouseout",e,!0),vS("mouseleave",e,!0))},[y,L,b,w]),ee.useEffect(()=>{y&&(x||null==t||t.setAutoFocusOnShow(!1))},[t,y,x]);const N=CS(x);ee.useEffect(()=>{if(y)return()=>{N.current||null==t||t.setAutoFocusOnShow(!1)}},[t,y]);const v=ee.useContext(VC);kS(()=>{if(i)return;if(!a)return;if(!L)return;if(!y)return;const e=c.current;return e?null==v?void 0:v(e):void 0},[i,a,L,y]);const S=ee.useCallback(e=>{g(n=>[...n,e]);const n=null==v?void 0:v(e);return()=>{g(n=>n.filter(n=>n!==e)),null==n||n()}},[v]);u=QS(u,e=>ce.jsx(FD,{value:t,children:ce.jsx(VC.Provider,{value:S,children:e})}),[t,S]),u=Cv(kv({},u),{ref:zS(c,u.ref)}),u=function(e){var n=e,{store:t}=n,i=Ev(n,["store"]);const[a,o]=ee.useState(!1),r=t.useState("mounted");ee.useEffect(()=>{r||o(!1)},[r]);const s=i.onFocus,u=ES(e=>{null==s||s(e),e.defaultPrevented||o(!0)}),l=ee.useRef(null);return ee.useEffect(()=>NT(t,["anchorElement"],e=>{l.current=e.anchorElement}),[]),Cv(kv({autoFocusOnHide:a,finalFocus:l},i),{onFocus:u})}(kv({store:t},u));const T=t.useState(e=>i||e.autoFocusOnShow);return u=WC(Cv(kv({store:t,modal:i,portal:a,autoFocusOnShow:T},u),{portalRef:m,hideOnEscape:e=>!Rv(o,e)&&(requestAnimationFrame(()=>{requestAnimationFrame(()=>{null==t||t.hide()})}),!0)})),u});Tk(PS(function(e){return RS("div",$C(e))}),_D);var qC=WS(function(e){var n=e,{store:t,showOnHover:i=!0}=n,a=Ev(n,["store","showOnHover"]);const o=_D();Gv(t=t||o,!1);const r=Wv(a),s=ee.useRef(0);ee.useEffect(()=>()=>window.clearTimeout(s.current),[]),ee.useEffect(()=>vS("mouseleave",e=>{if(!t)return;const{anchorElement:n}=t.getState();n&&e.target===n&&(window.clearTimeout(s.current),s.current=0)},!0),[t]);const u=a.onMouseMove,l=OS(i),c=BS(),d=ES(e=>{if(null==u||u(e),r)return;if(!t)return;if(e.defaultPrevented)return;if(s.current)return;if(!c())return;if(!l(e))return;const n=e.currentTarget;t.setAnchorElement(n),t.setDisclosureElement(n);const{showTimeout:i,timeout:a}=t.getState(),o=()=>{s.current=0,c()&&(null==t||t.setAnchorElement(n),null==t||t.show(),queueMicrotask(()=>{null==t||t.setDisclosureElement(n)}))},d=null!=i?i:a;0===d?o():s.current=window.setTimeout(o,d)}),g=a.onClick,h=ES(e=>{null==g||g(e),t&&(window.clearTimeout(s.current),s.current=0)}),p=ee.useCallback(e=>{if(!t)return;const{anchorElement:n}=t.getState();(null==n?void 0:n.isConnected)||t.setAnchorElement(e)},[t]);return a=Cv(kv({},a),{ref:zS(p,a.ref),onMouseMove:d,onClick:h}),a=fD(a)});PS(function(e){return RS("a",qC(e))});var eE=KS([mT],[yT]),nE=eE.useContext,tE=eE.useScopedContext,iE=WS(function(e){var n=e,{store:t}=n,i=Ev(n,["store"]);const a=sT();return t=t||a,i=Cv(kv({},i),{ref:zS(null==t?void 0:t.setAnchorElement,i.ref)})});PS(function(e){return RS("div",iE(e))});var aE="button",oE=WS(function(e){const n=ee.useRef(null),t=AS(n,aE),[i,a]=ee.useState(()=>!!t&&sS({tagName:t,type:e.type}));return ee.useEffect(()=>{n.current&&a(sS(n.current))},[]),e=Cv(kv({role:i||"a"===t?void 0:"button"},e),{ref:zS(n,e.ref)}),e=bD(e)});PS(function(e){const n=oE(e);return RS(aE,n)});var rE=Symbol("disclosure"),sE=WS(function(e){var n=e,{store:t,toggleOnClick:i=!0}=n,a=Ev(n,["store","toggleOnClick"]);const o=$S();Gv(t=t||o,!1);const r=ee.useRef(null),[s,u]=ee.useState(!1),l=t.useState("disclosureElement"),c=t.useState("open");ee.useEffect(()=>{let e=l===r.current;(null==l?void 0:l.isConnected)||(null==t||t.setDisclosureElement(r.current),e=!0),u(c&&e)},[l,t,c]);const d=a.onClick,g=OS(i),[h,p]=_S(a,rE,!0),m=ES(e=>{null==d||d(e),e.defaultPrevented||h||g(e)&&(null==t||t.setDisclosureElement(e.currentTarget),null==t||t.toggle())}),y=t.useState("contentElement");return a=Cv(kv(kv({"aria-expanded":s,"aria-controls":null==y?void 0:y.id},p),a),{ref:zS(r,a.ref),onClick:m}),a=oE(a)});PS(function(e){return RS("button",sE(e))});var uE=WS(function(e){var n=e,{store:t}=n,i=Ev(n,["store"]);const a=nT();Gv(t=t||a,!1);const o=t.useState("contentElement");return i=kv({"aria-haspopup":gS(o,"dialog")},i),i=sE(kv({store:t},i))}),lE=PS(function(e){return RS("button",uE(e))}),cE=WS(function(e){var n=e,{store:t}=n,i=Ev(n,["store"]);const a=sT();Gv(t=t||a,!1);const o=i.onClick,r=ES(e=>{null==t||t.setAnchorElement(e.currentTarget),null==o||o(e)});return i=QS(i,e=>ce.jsx(lT,{value:t,children:e}),[t]),i=Cv(kv({},i),{onClick:r}),i=iE(kv({store:t},i)),i=uE(kv({store:t},i))});PS(function(e){return RS("button",cE(e))});var dE=WS(function(e){var n=e,{store:t}=n,i=Ev(n,["store"]);const a=eT();t=t||a;const o=i.onClick,r=ES(e=>{null==o||o(e),e.defaultPrevented||null==t||t.hide()}),s=ee.useMemo(()=>ce.jsxs("svg",{"aria-label":"Dismiss popup",display:"block",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,viewBox:"0 0 16 16",height:"1em",width:"1em",children:[ce.jsx("line",{x1:"4",y1:"4",x2:"12",y2:"12"}),ce.jsx("line",{x1:"4",y1:"12",x2:"12",y2:"4"})]}),[]);return i=Cv(kv({"data-dialog-dismiss":"",children:s},i),{onClick:r}),i=oE(i)}),gE=PS(function(e){return RS("button",dE(e))}),hE=WS(function(e){const n=ee.useRef(null),t=ee.useContext(VD)||1,i=`h${t}`,a=AS(n,i),o=ee.useMemo(()=>!!a&&/^h\d$/.test(a),[a]);return e=Cv(kv({render:ce.jsx(i,{}),role:o?void 0:"heading","aria-level":o?void 0:t},e),{ref:zS(n,e.ref)})});PS(function(e){return RS("h1",hE(e))});var pE=WS(function(e){var n=Ev(e,["store"]);const t=ee.useContext(aT),i=IS(n.id);return kS(()=>(null==t||t(i),()=>null==t?void 0:t(void 0)),[t,i]),n=kv({id:i},n),n=hE(n)}),mE=PS(function(e){return RS("h1",pE(e))}),yE=WS(function(e){return e=pE(e)});PS(function(e){return RS("h1",yE(e))});var fE="";function ME(){fE=""}function jE(e,n){var t;const i=(null==(t=e.element)?void 0:t.textContent)||e.children||"value"in e&&e.value;return!!i&&(a=i,a.normalize("NFD").replace(/[\u0300-\u036f]/g,"")).trim().toLowerCase().startsWith(n.toLowerCase());var a}function bE(e,n,t){if(!t)return e;const i=e.find(e=>e.id===t);return i&&jE(i,n)?fE!==n&&jE(i,fE)?e:(fE=n,function(e,n,t=!1){const i=e.findIndex(e=>e.id===n);return[...e.slice(i+1),...t?[HT]:[],...e.slice(0,i)]}(e.filter(e=>jE(e,fE)),t).filter(e=>e.id!==t)):e}var wE=WS(function(e){var n=e,{store:t,typeahead:i=!0}=n,a=Ev(n,["store","typeahead"]);const o=hT();Gv(t=t||o,!1);const r=a.onKeyDownCapture,s=ee.useRef(0),u=ES(e=>{if(null==r||r(e),e.defaultPrevented)return;if(!i)return;if(!t)return;if(!function(e){const n=e.target;return(!n||!cS(n))&&(!(" "!==e.key||!fE.length)||1===e.key.length&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&/^[\p{Letter}\p{Number}]$/u.test(e.key))}(e))return ME();const{renderedItems:n,items:a,activeId:o,id:u}=t.getState();let l=function(e){return e.filter(e=>!e.disabled)}(a.length>n.length?a:n);const c=`[data-offscreen-id="${u}"]`,d=tS(e.currentTarget).querySelectorAll(c);for(const e of d){const n="true"===e.ariaDisabled||"disabled"in e&&!!e.disabled;l.push({id:e.id,element:e,disabled:n})}if(d.length&&(l=mS(l,e=>e.element)),!function(e,n){if(bS(e))return!0;const t=e.target;return!!t&&n.some(e=>e.element===t)}(e,l))return ME();e.preventDefault(),window.clearTimeout(s.current),s.current=window.setTimeout(()=>{fE=""},500);const g=e.key.toLowerCase();fE+=g,l=bE(l,g,o);const h=l.find(e=>jE(e,fE));h?t.move(h.id):ME()});return Kv(a=Cv(kv({},a),{onKeyDownCapture:u}))});PS(function(e){return RS("div",wE(e))});var xE=ee.createContext(void 0),LE=WS(function(e){const[n,t]=ee.useState();return e=QS(e,e=>ce.jsx(xE.Provider,{value:t,children:e}),[]),Kv(e=kv({role:"group","aria-labelledby":n},e))});PS(function(e){return RS("div",LE(e))});var NE=WS(function(e){var n=Ev(e,["store"]);return n=LE(n)});PS(function(e){return RS("div",NE(e))});function vE(e){const n=e.relatedTarget;return(null==n?void 0:n.nodeType)===Node.ELEMENT_NODE?n:null}var SE=Symbol("composite-hover");var TE=WS(function(e){var n=e,{store:t,focusOnHover:i=!0,blurOnHoverEnd:a=!!i}=n,o=Ev(n,["store","focusOnHover","blurOnHoverEnd"]);const r=hT();Gv(t=t||r,!1);const s=BS(),u=o.onMouseMove,l=OS(i),c=ES(e=>{if(null==u||u(e),!e.defaultPrevented&&s()&&l(e)){if(!aD(e.currentTarget)){const e=null==t?void 0:t.getState().baseElement;e&&!iD(e)&&e.focus()}null==t||t.setActiveId(e.currentTarget.id)}}),d=o.onMouseLeave,g=OS(a),h=ES(e=>{var n;null==d||d(e),e.defaultPrevented||s()&&(function(e){const n=vE(e);return!!n&&oS(e.currentTarget,n)}(e)||function(e){let n=vE(e);if(!n)return!1;do{if(Hv(n,SE)&&n[SE])return!0;n=n.parentElement}while(n);return!1}(e)||l(e)&&g(e)&&(null==t||t.setActiveId(null),null==(n=null==t?void 0:t.getState().baseElement)||n.focus()))}),p=ee.useCallback(e=>{e&&(e[SE]=!0)},[]);return Kv(o=Cv(kv({},o),{ref:zS(p,o.ref),onMouseMove:c,onMouseLeave:h}))});GS(PS(function(e){return RS("div",TE(e))}));var DE=WS(function(e){return e=yE(e)});PS(function(e){return RS("h1",DE(e))});var kE=KS([mT,BD],[yT,FD]),CE=kE.useContext,EE=kE.useScopedContext,zE=kE.useProviderContext,IE=kE.ContextProvider,AE=kE.ScopedContextProvider;function YE(e={}){var n=e,{combobox:t,parent:i,menubar:a}=n,o=Fv(n,["combobox","parent","menubar"]);const r=!!a&&!i,s=TT(o.store,function(e,...n){if(e)return jT(e,"pick")(...n)}(i,["values"]),ST(t,["arrowElement","anchorElement","contentElement","popoverElement","disclosureElement"])),u=s.getState(),l=FT(Bv(_v({},o),{store:s,orientation:Vv(o.orientation,u.orientation,"vertical")})),c=OD(Bv(_v({},o),{store:s,placement:Vv(o.placement,u.placement,"bottom-start"),timeout:Vv(o.timeout,u.timeout,r?0:150),hideTimeout:Vv(o.hideTimeout,u.hideTimeout,0)})),d=bT(Bv(_v(_v({},l.getState()),c.getState()),{initialFocus:Vv(u.initialFocus,"container"),values:Vv(o.values,u.values,o.defaultValues,{})}),l,c,s);return wT(d,()=>NT(d,["mounted"],e=>{e.mounted||d.setState("activeId",null)})),wT(d,()=>NT(i,["orientation"],e=>{d.setState("placement","vertical"===e.orientation?"right-start":"bottom-start")})),Bv(_v(_v(_v({},l),c),d),{combobox:t,parent:i,menubar:a,hideAll:()=>{c.hide(),null==i||i.hideAll()},setInitialFocus:e=>d.setState("initialFocus",e),setValues:e=>d.setState("values",e),setValue:(e,n)=>{"__proto__"!==e&&"constructor"!==e&&(Array.isArray(e)||d.setState("values",t=>{const i=t[e],a=Uv(n,i);return a===i?t:Bv(_v({},t),{[e]:void 0!==a&&a})}))}})}function OE(e={}){const n=CE(),t=nE(),i=UT();e=Cv(kv({},e),{parent:void 0!==e.parent?e.parent:n,menubar:void 0!==e.menubar?e.menubar:t,combobox:void 0!==e.combobox?e.combobox:i});const[a,o]=ET(YE,e);return function(e,n,t){return YS(n,[t.combobox,t.parent,t.menubar]),CT(e,t,"values","setValues"),Object.assign(QD(XT(e,n,t),n,t),{combobox:t.combobox,parent:t.parent,menubar:t.menubar})}(a,o,e)}var QE=WS(function(e){var n=e,{store:t,alwaysVisible:i,composite:a}=n,o=Ev(n,["store","alwaysVisible","composite"]);const r=zE();Gv(t=t||r,!1);const s=t.parent,u=t.menubar,l=!!s,c=IS(o.id),d=o.onKeyDown,g=t.useState(e=>e.placement.split("-")[0]),h=t.useState(e=>"both"===e.orientation?void 0:e.orientation),p="vertical"!==h,m=kT(u,e=>!!e&&"vertical"!==e.orientation),y=ES(e=>{if(null==d||d(e),!e.defaultPrevented){if(l||u&&!p){const n={ArrowRight:()=>"left"===g&&!p,ArrowLeft:()=>"right"===g&&!p,ArrowUp:()=>"bottom"===g&&p,ArrowDown:()=>"top"===g&&p}[e.key];if(null==n?void 0:n())return e.stopPropagation(),e.preventDefault(),null==t?void 0:t.hide()}if(u){const n={ArrowRight:()=>{if(m)return u.next()},ArrowLeft:()=>{if(m)return u.previous()},ArrowDown:()=>{if(!m)return u.next()},ArrowUp:()=>{if(!m)return u.previous()}}[e.key],t=null==n?void 0:n();void 0!==t&&(e.stopPropagation(),e.preventDefault(),u.move(t))}}});o=QS(o,e=>ce.jsx(AE,{value:t,children:e}),[t]);const f=function(e){var n=e,{store:t}=n,i=Ev(n,["store"]);const[a,o]=ee.useState(void 0),r=i["aria-label"],s=kT(t,"disclosureElement"),u=kT(t,"contentElement");return ee.useEffect(()=>{const e=s;e&&u&&(r||u.hasAttribute("aria-label")?o(void 0):e.id&&o(e.id))},[r,s,u]),a}(kv({store:t},o)),M=DD(t.useState("mounted"),o.hidden,i),j=M?Cv(kv({},o.style),{display:"none"}):o.style;o=Cv(kv({id:c,"aria-labelledby":f,hidden:M},o),{ref:zS(c?t.setContentElement:null,o.ref),style:j,onKeyDown:y});const b=!!t.combobox;return(a=null!=a?a:!b)&&(o=kv({role:"menu","aria-orientation":h},o)),o=vD(kv({store:t,composite:a},o)),o=wE(kv({store:t,typeahead:!b},o))});PS(function(e){return RS("div",QE(e))});var ZE=WS(function(e){var n=e,{store:t,modal:i=!1,portal:a=!!i,hideOnEscape:o=!0,autoFocusOnShow:r=!0,hideOnHoverOutside:s,alwaysVisible:u}=n,l=Ev(n,["store","modal","portal","hideOnEscape","autoFocusOnShow","hideOnHoverOutside","alwaysVisible"]);const c=zE();Gv(t=t||c,!1);const d=ee.useRef(null),g=t.parent,h=t.menubar,p=!!g,m=!!h&&!p;l=Cv(kv({},l),{ref:zS(d,l.ref)});const y=QE(kv({store:t,alwaysVisible:u},l)),{"aria-labelledby":f}=y;l=Ev(y,["aria-labelledby"]);const[M,j]=ee.useState(),b=t.useState("autoFocusOnShow"),w=t.useState("initialFocus"),x=t.useState("baseElement"),L=t.useState("renderedItems");ee.useEffect(()=>{let e=!1;return j(n=>{var t,i,a;if(e)return;if(!b)return;if(null==(t=null==n?void 0:n.current)?void 0:t.isConnected)return n;const o=ee.createRef();switch(w){case"first":o.current=(null==(i=L.find(e=>!e.disabled&&e.element))?void 0:i.element)||null;break;case"last":o.current=(null==(a=[...L].reverse().find(e=>!e.disabled&&e.element))?void 0:a.element)||null;break;default:o.current=x}return o}),()=>{e=!0}},[t,b,w,L,x]);const N=!p&&i,v=!!r,S=!!M||!!l.initialFocus||!!N,T=kT(t.combobox||t,"contentElement"),D=kT((null==g?void 0:g.combobox)||g,"contentElement"),k=ee.useMemo(()=>{if(!D)return;if(!T)return;const e=T.getAttribute("role"),n=D.getAttribute("role");return"menu"!==n&&"menubar"!==n||"menu"!==e?D:void 0},[T,D]);return void 0!==k&&(l=kv({preserveTabOrderAnchor:k},l)),l=$C(Cv(kv({store:t,alwaysVisible:u,initialFocus:M,autoFocusOnShow:v?S&&r:b||!!N},l),{hideOnEscape:e=>!Rv(o,e)&&(null==t||t.hideAll(),!0),hideOnHoverOutside(e){const n=null==t?void 0:t.getState().disclosureElement;return!!("function"==typeof s?s(e):null!=s?s:p||m&&(!n||!aD(n)))&&(!!e.defaultPrevented||(!p||(!n||(function(e,n,t){const i=new Event(n,t);e.dispatchEvent(i)}(n,"mouseout",e),!aD(n)||(requestAnimationFrame(()=>{aD(n)||null==t||t.hide()}),!1)))))},modal:N,portal:a,backdrop:!p&&l.backdrop})),l=kv({"aria-labelledby":f},l)}),_E=Tk(PS(function(e){return RS("div",ZE(e))}),zE);function BE(e={}){const n=OE(e);return ce.jsx(IE,{value:n,children:e.children})}function FE(e,n){return!!(null==e?void 0:e.some(e=>!!e.element&&(e.element!==n&&"true"===e.element.getAttribute("aria-expanded"))))}var XE=WS(function(e){var n=e,{store:t,focusable:i,accessibleWhenDisabled:a,showOnHover:o}=n,r=Ev(n,["store","focusable","accessibleWhenDisabled","showOnHover"]);const s=zE();Gv(t=t||s,!1);const u=ee.useRef(null),l=t.parent,c=t.menubar,d=!!l,g=!!c&&!d,h=Wv(r),p=()=>{const e=u.current;e&&(null==t||t.setDisclosureElement(e),null==t||t.setAnchorElement(e),null==t||t.show())},m=r.onFocus,y=ES(e=>{if(null==m||m(e),h)return;if(e.defaultPrevented)return;if(null==t||t.setAutoFocusOnShow(!1),null==t||t.setActiveId(null),!c)return;if(!g)return;const{items:n}=c.getState();FE(n,e.currentTarget)&&p()}),f=kT(t,e=>e.placement.split("-")[0]),M=r.onKeyDown,j=ES(e=>{if(null==M||M(e),h)return;if(e.defaultPrevented)return;const n=function(e,n){return{ArrowDown:("bottom"===n||"top"===n)&&"first",ArrowUp:("bottom"===n||"top"===n)&&"last",ArrowRight:"right"===n&&"first",ArrowLeft:"left"===n&&"first"}[e.key]}(e,f);n&&(e.preventDefault(),p(),null==t||t.setAutoFocusOnShow(!0),null==t||t.setInitialFocus(n))}),b=r.onClick,w=ES(e=>{if(null==b||b(e),e.defaultPrevented)return;if(!t)return;const n=!e.detail,{open:i}=t.getState();i&&!n||(d&&!n||t.setAutoFocusOnShow(!0),t.setInitialFocus(n?"first":"container")),d&&p()});r=QS(r,e=>ce.jsx(IE,{value:t,children:e}),[t]),d&&(r=Cv(kv({},r),{render:ce.jsx(xk.div,{render:r.render})}));const x=IS(r.id),L=kT((null==l?void 0:l.combobox)||l,"contentElement"),N=d||g?hS(L,"menuitem"):void 0,v=t.useState("contentElement");return r=Cv(kv({id:x,role:N,"aria-haspopup":gS(v,"menu")},r),{ref:zS(u,r.ref),onFocus:y,onKeyDown:j,onClick:w}),r=qC(Cv(kv({store:t,focusable:i,accessibleWhenDisabled:a},r),{showOnHover:e=>{if(!(()=>{if("function"==typeof o)return o(e);if(null!=o)return o;if(d)return!0;if(!c)return!1;const{items:n}=c.getState();return g&&FE(n)})())return!1;const n=g?c:l;return!n||(n.setActiveId(e.currentTarget.id),!0)}})),r=cE(kv({store:t,toggleOnClick:!d,focusable:i,accessibleWhenDisabled:a},r)),r=wE(kv({store:t,typeahead:g},r))}),UE=PS(function(e){return RS("button",XE(e))}),HE=WS(function(e){return e=NE(e)}),JE=PS(function(e){return RS("div",HE(e))}),PE=WS(function(e){return e=DE(e)}),GE=PS(function(e){return RS("h1",PE(e))});var RE=WS(function(e){var n=e,{store:t,hideOnClick:i=!0,preventScrollOnKeyDown:a=!0,focusOnHover:o,blurOnHoverEnd:r}=n,s=Ev(n,["store","hideOnClick","preventScrollOnKeyDown","focusOnHover","blurOnHoverEnd"]);const u=EE(!0),l=tE();Gv(t=t||u||l,!1);const c=s.onClick,d=OS(i),g="hideAll"in t?t.hideAll:void 0,h=!!g,p=ES(e=>{if(null==c||c(e),e.defaultPrevented)return;if(function(e){const n=e.currentTarget;if(!n)return!1;const t=n.tagName.toLowerCase();return!!e.altKey&&("a"===t||"button"===t&&"submit"===n.type||"input"===t&&"submit"===n.type)}(e))return;if(function(e){const n=e.currentTarget;if(!n)return!1;const t=yS();if(t&&!e.metaKey)return!1;if(!t&&!e.ctrlKey)return!1;const i=n.tagName.toLowerCase();return"a"===i||"button"===i&&"submit"===n.type||"input"===i&&"submit"===n.type}(e))return;if(!g)return;"menu"!==e.currentTarget.getAttribute("aria-haspopup")&&d(e)&&g()}),m=hS(kT(t,e=>"contentElement"in e?e.contentElement:null),"menuitem");return s=Cv(kv({role:m},s),{onClick:p}),s=LD(kv({store:t,preventScrollOnKeyDown:a},s)),s=TE(Cv(kv({store:t},s),{focusOnHover(e){if(!t)return!1;if(!("function"==typeof o?o(e):null==o||o))return!1;const{baseElement:n,items:i}=t.getState();return h?(e.currentTarget.hasAttribute("aria-expanded")&&e.currentTarget.focus(),!0):!!function(e,n,t){var i;if(!e)return!1;if(aD(e))return!0;const a=null==n?void 0:n.find(e=>{var n;return e.element!==t&&"true"===(null==(n=e.element)?void 0:n.getAttribute("aria-expanded"))}),o=null==(i=null==a?void 0:a.element)?void 0:i.getAttribute("aria-controls");if(!o)return!1;const r=tS(e).getElementById(o);return!(!r||!aD(r)&&!r.querySelector("[role=menuitem][aria-expanded=true]"))}(n,i,e.currentTarget)&&(e.currentTarget.focus(),!0)},blurOnHoverEnd:e=>"function"==typeof r?r(e):null!=r?r:h})),s}),WE=GS(PS(function(e){return RS("div",RE(e))}));function KE(e={}){const n=YD(e);return ce.jsx(tT,{value:n,children:e.children})}var VE="page-context-module_context__H2TF9",$E="page-context-module_title__CG5zw",qE="page-context-module_items__jg6ls",ez="page-context-module_item__ZlRwN",nz="page-context-module_options__c3XiU";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-context-module_context__H2TF9 {\n z-index: 10000;\n position: relative;\n max-height: var(--popover-available-height);\n min-width: 140px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n gap: 12px;\n padding: 12px;\n overflow: auto;\n overscroll-behavior: contain;\n outline: none !important;\n border-radius: 4px;\n border: 1px solid #E6E0D7;\n background: #FFF;\n color: #28292B;\n}\n\n.page-context-module_title__CG5zw {\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n letter-spacing: 0.5px;\n outline: none !important;\n}\n\n.page-context-module_items__jg6ls {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 4px;\n}\n\n.page-context-module_item__ZlRwN {\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n letter-spacing: 0.5px;\n align-self: stretch;\n display: flex;\n justify-content: space-between;\n align-items: center;\n gap: 8px;\n scroll-margin: 8px;\n outline: none !important;\n color: #68696B;\n cursor: pointer;\n /*\n &:active,\n &[data-active=true] {\n color: #28292B;\n }\n */\n}\n.page-context-module_item__ZlRwN:hover {\n color: #28292B;\n}\n.page-context-module_item__ZlRwN[aria-disabled=true] {\n opacity: 0.25;\n}\n.page-context-module_item__ZlRwN[data-active-item=true] {\n color: #28292B;\n}\n\n.page-context-module_options__c3XiU {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n}\n.page-context-module_options__c3XiU:focus, .page-context-module_options__c3XiU:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-context-module_options__c3XiU:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-context-module_options__c3XiU:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-context-module_options__c3XiU svg {\n width: 24px;\n height: 24px;\n}");var tz="page-dictate-module_dictate__IZDq0";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-dictate-module_dictate__IZDq0 {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n}\n.page-dictate-module_dictate__IZDq0:focus, .page-dictate-module_dictate__IZDq0:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-dictate-module_dictate__IZDq0:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-dictate-module_dictate__IZDq0:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-dictate-module_dictate__IZDq0 svg {\n width: 24px;\n height: 24px;\n}");var iz={history:"page-history-module_history__J0zIw",head:"page-history-module_head__hQ-Ub",content:"page-history-module_content__6vlTH",user:"page-history-module_user__JpBAt",foot:"page-history-module_foot__x-7xh",assistant:"page-history-module_assistant__sdwNG",delete:"page-history-module_delete__avb7y"};bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-history-module_history__J0zIw {\n flex: 1 0 0;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 16px 16px 20px 16px;\n gap: 12px;\n padding: 16px;\n cursor: pointer;\n background: #F2EFEB;\n box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0);\n transition: box-shadow ease-in-out 350ms;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.page-history-module_history__J0zIw:hover {\n box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.35);\n}\n\n.page-history-module_head__hQ-Ub {\n align-self: stretch;\n display: flex;\n justify-content: space-between;\n align-items: center;\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n letter-spacing: 0.5px;\n text-transform: uppercase;\n color: rgba(40, 41, 43, 0.4);\n}\n\n.page-history-module_content__6vlTH {\n flex: 1 0 0;\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 4px;\n padding-right: 32px;\n}\n\n.page-history-module_user__JpBAt {\n font-size: 24px;\n font-style: normal;\n font-weight: 400;\n line-height: 1.2;\n letter-spacing: -0.24px;\n color: #28292B;\n}\n\n.page-history-module_foot__x-7xh {\n display: flex;\n align-items: flex-end;\n width: 100%;\n}\n\n.page-history-module_assistant__sdwNG {\n flex-grow: 1;\n font-size: 14px;\n font-style: normal;\n font-weight: 400;\n line-height: 1.3;\n letter-spacing: 0.36px;\n color: #3E3F41;\n}\n\n.page-history-module_delete__avb7y {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n width: 24px;\n height: 24px;\n aspect-ratio: 1/1;\n}\n.page-history-module_delete__avb7y:focus, .page-history-module_delete__avb7y:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-history-module_delete__avb7y:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-history-module_delete__avb7y:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-history-module_delete__avb7y svg {\n width: 24px;\n height: 24px;\n}");var az="page-intro-module_intro__YrRJS",oz="page-intro-module_container__qQvKn",rz="page-intro-module_content__lK7Gk",sz="page-intro-module_head__xUcls",uz="page-intro-module_title__ZFiSW",lz="page-intro-module_prompt__t3DjT",cz="page-intro-module_inner__xsfT5",dz="page-intro-module_form__ovkS3",gz="page-intro-module_control__Y95FB",hz="page-intro-module_streaming__yMw03",pz="page-intro-module_actions__FPid2",mz="page-intro-module_left__4s6XH",yz="page-intro-module_right__UEWOf";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-intro-module_intro__YrRJS {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n row-gap: var(--llm-size-15, 7.5rem);\n min-height: calc(100vh - 100px);\n background: var(--llm-color-background);\n color: var(--llm-color-foreground);\n}\n\n.page-intro-module_container__qQvKn {\n max-width: 860px;\n padding: 8px;\n}\n\n.page-intro-module_content__lK7Gk {\n display: flex;\n flex-direction: column;\n gap: 80px;\n}\n\n.page-intro-module_head__xUcls {\n display: flex;\n flex-direction: column;\n gap: 10px;\n}\n\n.page-intro-module_title__ZFiSW {\n font-weight: 400;\n font-size: 40px;\n line-height: 58px;\n letter-spacing: -2%;\n text-align: center;\n color: #28292B;\n}\n\n.page-intro-module_prompt__t3DjT {\n pointer-events: auto;\n position: relative;\n z-index: 20;\n padding: 8px;\n}\n\n.page-intro-module_inner__xsfT5 {\n display: flex;\n flex-direction: column;\n gap: 24px;\n padding: 12px;\n background: white;\n border-radius: 8px;\n box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);\n}\n\n.page-intro-module_form__ovkS3 {\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n gap: 4px;\n width: 100%;\n transition: ease-in-out 350ms;\n transition-property: opacity;\n}\n\n.page-intro-module_control__Y95FB {\n flex: 1 0 0;\n position: relative;\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding: 4px;\n min-width: min(450px, 100vw - 130px);\n min-height: 40px;\n border-radius: 100px;\n border: 1px solid #F2EFEB;\n overflow: visible;\n outline: 2px solid transparent;\n outline-offset: 0;\n}\n.page-intro-module_control__Y95FB :has(.page-intro-module_-textarea__JSNPK:focus), .page-intro-module_control__Y95FB :has(.page-intro-module_-textarea__JSNPK:focus-visible) {\n outline-color: currentColor;\n}\n.page-intro-module_control__Y95FB .page-intro-module_llm__busyIndicator__KgoMs {\n display: none;\n position: absolute;\n left: 50px;\n top: 50%;\n margin: -16px 0 0 0;\n pointer-events: none;\n}\n.page-intro-module_control__Y95FB .page-intro-module_llm__busyIndicator__KgoMs::before {\n background: var(--llm-input-accent);\n opacity: 0.4;\n}\n.page-intro-module_control__Y95FB .page-intro-module_llm__busyIndicator__KgoMs > span::before, .page-intro-module_control__Y95FB .page-intro-module_llm__busyIndicator__KgoMs > span::after {\n opacity: 0.4;\n background: var(--llm-input-accent);\n}\n.page-intro-module_control__Y95FB .page-intro-module_streaming__yMw03 .page-intro-module_llm__busyIndicator__KgoMs {\n display: block;\n}\n\n.page-intro-module_actions__FPid2 {\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: nowrap;\n gap: 12px;\n width: 100%;\n}\n\n.page-intro-module_left__4s6XH,\n.page-intro-module_right__UEWOf {\n display: flex;\n align-items: center;\n flex-wrap: nowrap;\n gap: 8px;\n}\n\n.page-intro-module_right__UEWOf {\n justify-content: flex-end;\n}");var fz="page-loading-module_container__dQ6pF",Mz="page-loading-module_title__0TQuR",jz="page-loading-module_loading__eQa8Q";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-loading-module_container__dQ6pF {\n min-height: calc(100vh - 100px);\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n background: var(--llm-color-background);\n color: var(--llm-color-foreground);\n}\n\n.page-loading-module_title__0TQuR {\n align-self: stretch;\n font-family: var(--llm-font-primary);\n font-size: 40px;\n font-style: normal;\n font-weight: 400;\n line-height: 1.45;\n letter-spacing: -0.02em;\n text-align: center;\n color: #3E3F41;\n}\n\n.page-loading-module_loading__eQa8Q {\n flex-shrink: 0;\n position: relative;\n margin-top: 0.12vh;\n width: 100px;\n height: 100px;\n}\n.page-loading-module_loading__eQa8Q span {\n position: absolute;\n display: block;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background-color: #D2CCC2;\n}\n.page-loading-module_loading__eQa8Q span:nth-child(1) {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: 100%;\n animation: page-loading-module_loading-1__kEKu6 10s infinite;\n}\n.page-loading-module_loading__eQa8Q span:nth-child(2) {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n animation: page-loading-module_loading-2__8MMsa 10s infinite;\n}\n.page-loading-module_loading__eQa8Q span:nth-child(3) {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(30% + 2px);\n height: calc(70% - 2px);\n animation: page-loading-module_loading-3__kKNF3 10s infinite;\n}\n\n@keyframes page-loading-module_loading-1__kEKu6 {\n 0% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: 100%;\n }\n 10% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: 100%;\n }\n 15% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 30% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 35% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 50% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 55% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 70% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 75% {\n left: 0;\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 90% {\n left: 0;\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 100% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: 100%;\n }\n}\n@keyframes page-loading-module_loading-2__8MMsa {\n 0% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n }\n 15% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n }\n 20% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 35% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 40% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 55% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 60% {\n left: 0;\n width: calc(50% - 2px);\n top: calc(30% + 2px);\n height: calc(70% - 2px);\n }\n 75% {\n left: 0;\n width: calc(50% - 2px);\n top: calc(30% + 2px);\n height: calc(70% - 2px);\n }\n 80% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 95% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 100% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n }\n}\n@keyframes page-loading-module_loading-3__kKNF3 {\n 0% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(30% + 2px);\n height: calc(70% - 2px);\n }\n 15% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(30% + 2px);\n height: calc(70% - 2px);\n }\n 20% {\n left: 0;\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 35% {\n left: 0;\n width: calc(50% - 2px);\n top: calc(70% + 2px);\n height: calc(30% - 2px);\n }\n 40% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 55% {\n left: 0;\n width: calc(50% - 2px);\n top: 0;\n height: calc(70% - 2px);\n }\n 60% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n }\n 75% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n }\n 80% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n }\n 95% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: 0;\n height: calc(30% - 2px);\n }\n 100% {\n left: calc(50% + 2px);\n width: calc(50% - 2px);\n top: calc(30% + 2px);\n height: calc(70% - 2px);\n }\n}");function bz(e){var{children:n}=e,t=wd(e,["children"]);const i=lw(e=>e.portal),a=t.selector||i.selector,o=t.replace||i.replace,[r,s]=ee.useState([]);function u(){const e=Array.from(document.querySelectorAll(a));e.forEach(e=>{e.classList.contains("llm")||(e.classList.add("llm","llm__reset"),o&&(e.innerHTML=""))}),e.length!==r.length&&s(e)}return ee.useEffect(()=>{if(l){u();const e=new MutationObserver(e=>{u()});return e.observe(document,{childList:!0,subtree:!0}),()=>{null==e||e.disconnect()}}return()=>{}},[a,o]),r.map((e,t)=>ce.jsx(wz,{target:e,children:n},t))}function wz(e){let{children:n,target:t}=e;const i=ee.useId();return Md.createPortal(n,t,i)}var xz="page-main-module_main__rrYwv";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-main-module_main__rrYwv {\n --u: 1cqw;\n --rem: 16px;\n --margin: clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1));\n --negative-margin: calc(var(--margin) * -1);\n --gap: clamp(16px * var(--s, 1), 16px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 16 * var(--s, 1), 32px * var(--s, 1));\n container-type: inline-size;\n position: relative;\n display: flex;\n justify-content: center;\n pointer-events: none;\n width: 100%;\n background: transparent;\n color: var(--llm-main-foreground);\n}");var Lz="page-menu-module_menu__22nkI",Nz="page-menu-module_backdrop__C6hSj",vz="page-menu-module_dialog__ADEVK",Sz="page-menu-module_head__q-tCg",Tz="page-menu-module_title__9dmEP",Dz="page-menu-module_listing__OUTQw",kz="page-menu-module_close__gJRad",Cz="page-menu-module_empty__U7UiT";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-menu-module_menu__22nkI {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n width: 40px;\n height: 40px;\n border-radius: 50%;\n background: var(--llm-color-base-900);\n color: var(--llm-color-neutral-100);\n}\n.page-menu-module_menu__22nkI:focus, .page-menu-module_menu__22nkI:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-menu-module_menu__22nkI:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-menu-module_menu__22nkI:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-menu-module_menu__22nkI svg {\n width: 24px;\n height: 24px;\n}\n.page-menu-module_menu__22nkI svg {\n width: 20px;\n height: 20px;\n position: relative;\n z-index: 2;\n}\n.page-menu-module_menu__22nkI:disabled, .page-menu-module_menu__22nkI[aria-disabled=true] {\n pointer-events: none;\n}\n.page-menu-module_menu__22nkI:disabled svg, .page-menu-module_menu__22nkI[aria-disabled=true] svg {\n opacity: 0.4;\n}\n\n.page-menu-module_backdrop__C6hSj {\n background: rgba(0, 0, 0, 0.3);\n}\n\n.page-menu-module_dialog__ADEVK {\n position: fixed;\n top: 0;\n left: 0;\n width: 502px;\n height: 100vh;\n display: flex;\n flex-direction: column;\n z-index: 10000;\n background: #E6E0D7;\n color: black;\n}\n\n.page-menu-module_head__q-tCg {\n display: flex;\n align-items: center;\n gap: 12px;\n padding: 24px 32px;\n border-bottom: 1px solid #CFC9C1;\n}\n\n.page-menu-module_title__9dmEP {\n flex-grow: 1;\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n letter-spacing: 0.5px;\n text-transform: uppercase;\n color: #3E3F41;\n}\n\n.page-menu-module_listing__OUTQw {\n display: flex;\n flex-direction: column;\n gap: 16px;\n padding: 32px;\n max-height: calc(100% - 65px);\n overflow-y: auto;\n overflow-x: hidden;\n -ms-overflow-style: none;\n scrollbar-width: none;\n}\n.page-menu-module_listing__OUTQw::-webkit-scrollbar {\n display: none;\n}\n\n.page-menu-module_close__gJRad {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n}\n.page-menu-module_close__gJRad:focus, .page-menu-module_close__gJRad:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-menu-module_close__gJRad:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-menu-module_close__gJRad:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-menu-module_close__gJRad svg {\n width: 24px;\n height: 24px;\n}\n\n.page-menu-module_empty__U7UiT {\n font-size: larger;\n}");var Ez="page-prompt-module_prompt__pJEAj",zz="page-prompt-module_open__7mNZR",Iz="page-prompt-module_form__VredN",Az="page-prompt-module_control__iLXJY",Yz="page-prompt-module_streaming__Narxr";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-prompt-module_prompt__pJEAj {\n pointer-events: auto;\n margin: 10px auto;\n position: relative;\n display: inline-flex;\n flex-wrap: nowrap;\n justify-content: flex-start;\n align-items: center;\n max-width: calc(100% - 16px);\n padding: 8px;\n background: white;\n box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);\n overflow: hidden;\n transition: ease-in-out 350ms;\n transition-property: border-radius, width, height;\n z-index: 20;\n}\n.page-prompt-module_prompt__pJEAj.page-prompt-module_open__7mNZR {\n border-radius: 64px;\n width: auto;\n height: 56px;\n}\n.page-prompt-module_prompt__pJEAj.page-prompt-module_open__7mNZR .-trigger {\n display: none;\n position: absolute;\n opacity: 0;\n pointer-events: none;\n}\n.page-prompt-module_prompt__pJEAj:not(.page-prompt-module_open__7mNZR) {\n border-radius: 8px;\n width: 48px;\n height: 48px;\n}\n.page-prompt-module_prompt__pJEAj:not(.page-prompt-module_open__7mNZR) .-form,\n.page-prompt-module_prompt__pJEAj:not(.page-prompt-module_open__7mNZR) .-actions {\n display: none;\n position: absolute;\n opacity: 0;\n pointer-events: none;\n}\n\n.page-prompt-module_form__VredN {\n display: flex;\n flex-wrap: nowrap;\n align-items: center;\n gap: 4px;\n width: 100%;\n transition: ease-in-out 350ms;\n transition-property: opacity;\n}\n\n.page-prompt-module_control__iLXJY {\n flex: 1 0 0;\n position: relative;\n display: flex;\n justify-content: flex-end;\n align-items: center;\n gap: 8px;\n padding: 4px;\n min-width: min(450px, 100vw - 130px);\n min-height: 40px;\n border-radius: 100px;\n border: 1px solid #F2EFEB;\n overflow: visible;\n outline: 2px solid transparent;\n outline-offset: 0;\n}\n.page-prompt-module_control__iLXJY :has(.page-prompt-module_-textarea__NjWFw:focus), .page-prompt-module_control__iLXJY :has(.page-prompt-module_-textarea__NjWFw:focus-visible) {\n outline-color: currentColor;\n}\n.page-prompt-module_control__iLXJY .page-prompt-module_llm__busyIndicator__KNwQ1 {\n display: none;\n position: absolute;\n left: 50px;\n top: 50%;\n margin: -16px 0 0 0;\n pointer-events: none;\n}\n.page-prompt-module_control__iLXJY .page-prompt-module_llm__busyIndicator__KNwQ1::before {\n background: var(--llm-input-accent);\n opacity: 0.4;\n}\n.page-prompt-module_control__iLXJY .page-prompt-module_llm__busyIndicator__KNwQ1 > span::before, .page-prompt-module_control__iLXJY .page-prompt-module_llm__busyIndicator__KNwQ1 > span::after {\n opacity: 0.4;\n background: var(--llm-input-accent);\n}\n.page-prompt-module_control__iLXJY .page-prompt-module_streaming__Narxr .page-prompt-module_llm__busyIndicator__KNwQ1 {\n display: block;\n}");var Oz="page-root-module_root__r0BQ6";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-root-module_root__r0BQ6 {\n --s: 1;\n --u: 1vw;\n --rem: 16px;\n pointer-events: none;\n position: fixed;\n bottom: 0;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: flex-end;\n width: 100%;\n height: 100%;\n z-index: 10000;\n}\n.page-root-module_root__r0BQ6 * {\n box-sizing: border-box;\n}\n.page-root-module_root__r0BQ6 .llm__container {\n padding: 0 clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1));\n}");const Qz=ee.forwardRef(function(e,n){let{opened:t,embedded:i,customIntro:a,mode:o}=e;const{Font:r,PageMain:s}=zI(e=>e.components),u=g(Oz,"llm",{"-open":t,"-embedded":i,"-custom-intro":a,["-"+o]:!0});return ce.jsx("section",{ref:n,className:u,"data-opened":t,"data-embedded":i,"data-custom-intro":a,"data-mode":o,children:ce.jsxs(Aw,{children:[ce.jsx(r,{}),ce.jsx(s,{},"main")]})})});var Zz="page-stop-module_stop__LoUAL";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-stop-module_stop__LoUAL {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n width: 40px;\n height: 40px;\n border-radius: 50%;\n background: var(--llm-color-base-900);\n color: var(--llm-color-neutral-100);\n}\n.page-stop-module_stop__LoUAL:focus, .page-stop-module_stop__LoUAL:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-stop-module_stop__LoUAL:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-stop-module_stop__LoUAL:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-stop-module_stop__LoUAL svg {\n width: 24px;\n height: 24px;\n}\n.page-stop-module_stop__LoUAL svg {\n width: 20px;\n height: 20px;\n position: relative;\n z-index: 2;\n}\n.page-stop-module_stop__LoUAL:disabled, .page-stop-module_stop__LoUAL[aria-disabled=true] {\n pointer-events: none;\n}\n.page-stop-module_stop__LoUAL:disabled svg, .page-stop-module_stop__LoUAL[aria-disabled=true] svg {\n opacity: 0.4;\n}");var _z="page-streaming-indicator-module_indicator__fevfl",Bz="page-streaming-indicator-module_streaming__3HZF9",Fz="page-streaming-indicator-module_icon__ILQ7O";bN('/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-streaming-indicator-module_indicator__fevfl {\n position: absolute;\n top: 4px;\n left: 4px;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 32px;\n height: 32px;\n border-radius: 50%;\n overflow: hidden;\n pointer-events: none;\n}\n.page-streaming-indicator-module_indicator__fevfl.page-streaming-indicator-module_streaming__3HZF9 {\n animation: page-streaming-indicator-module_llmRotate__GYyin 4s linear infinite;\n animation-delay: 0.2s;\n}\n\n.page-streaming-indicator-module_icon__ILQ7O {\n width: 32px;\n height: 32px;\n background-image: url("https://design.wslabs.it/llm-ernestomeda-test/assets/ai.gif");\n background-size: 100%;\n background-repeat: no-repeat;\n}\n\n@keyframes page-streaming-indicator-module_llmRotate__GYyin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n}');var Xz="page-submit-module_submit__YfN7c";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-submit-module_submit__YfN7c {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n width: 40px;\n height: 40px;\n border-radius: 50%;\n background: var(--llm-color-base-900);\n color: var(--llm-color-neutral-100);\n}\n.page-submit-module_submit__YfN7c:focus, .page-submit-module_submit__YfN7c:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-submit-module_submit__YfN7c:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-submit-module_submit__YfN7c:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-submit-module_submit__YfN7c svg {\n width: 24px;\n height: 24px;\n}\n.page-submit-module_submit__YfN7c svg {\n width: 20px;\n height: 20px;\n position: relative;\n z-index: 2;\n}\n.page-submit-module_submit__YfN7c:disabled, .page-submit-module_submit__YfN7c[aria-disabled=true] {\n pointer-events: none;\n}\n.page-submit-module_submit__YfN7c:disabled svg, .page-submit-module_submit__YfN7c[aria-disabled=true] svg {\n opacity: 0.4;\n}");var Uz="page-synthesis-module_synthesis__ZbbIi";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-synthesis-module_synthesis__ZbbIi {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n}\n.page-synthesis-module_synthesis__ZbbIi:focus, .page-synthesis-module_synthesis__ZbbIi:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-synthesis-module_synthesis__ZbbIi:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-synthesis-module_synthesis__ZbbIi:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-synthesis-module_synthesis__ZbbIi svg {\n width: 24px;\n height: 24px;\n}");var Hz="page-textarea-module_label__mZkCG",Jz="page-textarea-module_textarea__FkZDo";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-textarea-module_label__mZkCG {\n border: 0 !important;\n clip: rect(1px, 1px, 1px, 1px) !important;\n clip-path: inset(50%) !important;\n height: 1px !important;\n margin: -1px !important;\n overflow: hidden !important;\n padding: 0 !important;\n position: absolute !important;\n width: 1px !important;\n white-space: nowrap !important;\n}\n\n.page-textarea-module_textarea__FkZDo {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n position: absolute;\n display: flex;\n align-items: center;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n min-height: 38px;\n line-height: 1;\n border: none;\n resize: none;\n border-radius: 0;\n margin: 0;\n padding: 11px 90px 11px 45px;\n font-family: var(--llm-input-font-family);\n font-size: 15px;\n font-style: normal;\n font-weight: 400;\n line-height: 16px;\n letter-spacing: -0.24px;\n background: transparent;\n color: rgba(62, 63, 65, 0.4);\n pointer-events: auto;\n overflow: clip;\n cursor: pointer;\n field-sizing: content;\n}\n.page-textarea-module_textarea__FkZDo:focus {\n outline: none;\n}\n.page-textarea-module_textarea__FkZDo::-moz-placeholder {\n font-family: var(--llm-input-font-family);\n font-size: inherit;\n color: var(--llm-color-neutral-300);\n}\n.page-textarea-module_textarea__FkZDo::placeholder {\n font-family: var(--llm-input-font-family);\n font-size: inherit;\n color: var(--llm-color-neutral-300);\n}\n.page-textarea-module_textarea__FkZDo[aria-disabled=true] {\n pointer-events: none;\n color: transparent;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n}\n.page-textarea-module_textarea__FkZDo[aria-disabled=true]::-moz-placeholder {\n color: transparent;\n}\n.page-textarea-module_textarea__FkZDo[aria-disabled=true]::placeholder {\n color: transparent;\n}");var Pz="page-thread-module_thread__fYDIz",Gz="page-thread-module_message__CTQt9",Rz="page-thread-module_messageInner__eeu8Q";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-thread-module_thread__fYDIz {\n display: flex;\n flex-direction: column;\n row-gap: var(--llm-size-15, 7.5rem);\n min-height: calc(100vh - 100px);\n background: var(--llm-color-background);\n color: var(--llm-color-foreground);\n}\n\n.page-thread-module_message__CTQt9 {\n position: relative;\n display: flex;\n flex-direction: column;\n}\n\n.page-thread-module_messageInner__eeu8Q {\n max-width: 100%;\n overflow: hidden;\n}");var Wz="page-trigger-module_trigger__cHOG3",Kz="page-trigger-module_icon__rVVel";bN('/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-trigger-module_trigger__cHOG3 {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n transition: ease-in-out 350ms;\n transition-property: opacity;\n pointer-events: auto;\n}\n.page-trigger-module_trigger__cHOG3:focus, .page-trigger-module_trigger__cHOG3:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-trigger-module_trigger__cHOG3:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-trigger-module_trigger__cHOG3:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-trigger-module_trigger__cHOG3 svg {\n width: 24px;\n height: 24px;\n}\n\n.page-trigger-module_icon__rVVel {\n width: 32px;\n height: 32px;\n background-image: url("https://design.wslabs.it/llm-ernestomeda-test/assets/trigger.gif");\n background-size: 100%;\n background-repeat: no-repeat;\n}');var Vz="page-upload-module_upload__xNdXx",$z="page-upload-module_input__PHNql",qz="page-upload-module_ui__0xJlm",eI="page-upload-module_file__FQUSN";bN("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.page-upload-module_upload__xNdXx {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n flex-shrink: 0;\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: 2px solid transparent;\n outline-offset: 2px;\n color: var(--llm-input-accent);\n}\n.page-upload-module_upload__xNdXx:focus, .page-upload-module_upload__xNdXx:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-upload-module_upload__xNdXx:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-upload-module_upload__xNdXx:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-upload-module_upload__xNdXx svg {\n width: 24px;\n height: 24px;\n}\n.page-upload-module_upload__xNdXx:has(.page-upload-module_input__PHNql:focus), .page-upload-module_upload__xNdXx:has(.page-upload-module_input__PHNql:focus-visible) {\n outline-color: var(--llm-color-outline);\n}\n.page-upload-module_upload__xNdXx:has(.page-upload-module_input__PHNql:hover) {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-upload-module_upload__xNdXx:has(.page-upload-module_input__PHNql:active) {\n outline-color: var(--llm-color-accent-foreground);\n}\n\n.page-upload-module_input__PHNql {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n position: absolute;\n display: block;\n width: 100%;\n height: 100%;\n top: 0;\n left: 0;\n background: none;\n border: none;\n color: transparent;\n outline: none;\n font-size: 0;\n opacity: 0;\n cursor: pointer;\n}\n\n.page-upload-module_ui__0xJlm {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n height: 100%;\n font-size: 16px;\n color: var(--llm-input-accent);\n outline: none;\n pointer-events: none;\n}\n.page-upload-module_ui__0xJlm svg {\n width: 20px;\n height: 20px;\n}\n\n.page-upload-module_file__FQUSN {\n margin: 0;\n padding: 0;\n border: none;\n border-radius: 0;\n text-decoration: none;\n background: none;\n color: inherit;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n font-family: inherit;\n font-style: inherit;\n font-size: inherit;\n font-variant-ligatures: inherit;\n font-variant-caps: inherit;\n font-variant-numeric: inherit;\n font-variant-east-asian: inherit;\n font-weight: inherit;\n font-stretch: inherit;\n text-rendering: inherit;\n letter-spacing: inherit;\n word-spacing: inherit;\n line-height: inherit;\n text-transform: none;\n text-indent: inherit;\n text-shadow: none;\n text-align: inherit;\n pointer-events: auto;\n cursor: pointer;\n outline: 2px solid transparent;\n outline-offset: 2px;\n position: absolute;\n right: 0;\n bottom: 100%;\n display: flex;\n align-items: center;\n -moz-column-gap: 0.35em;\n column-gap: 0.35em;\n padding: 0.2em 1em;\n margin-bottom: 0.3rem;\n font-size: 12px;\n background: var(--llm-pill-background);\n color: var(--llm-pill-foreground);\n border-radius: 8px;\n -webkit-backdrop-filter: blur(20px);\n backdrop-filter: blur(20px);\n}\n.page-upload-module_file__FQUSN:focus, .page-upload-module_file__FQUSN:focus-visible {\n outline-color: var(--llm-color-outline);\n}\n.page-upload-module_file__FQUSN:hover {\n outline-color: color-mix(in srgb, var(--llm-color-outline) 10%, transparent 90%);\n}\n.page-upload-module_file__FQUSN:active {\n outline-color: var(--llm-color-accent-foreground);\n}\n.page-upload-module_file__FQUSN span {\n max-width: 100px;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n font-family: var(--llm-pill-font-family);\n font-weight: 700;\n}\n.page-upload-module_file__FQUSN svg {\n flex-shrink: 0;\n width: 1em;\n height: 1em;\n fill: currentColor;\n}\n.page-upload-module_file__FQUSN img {\n display: none;\n position: absolute;\n max-width: 96px;\n max-height: 96px;\n bottom: 100%;\n right: 0;\n border-radius: 8px;\n margin-bottom: 0.3rem;\n box-shadow: var(--llm-shadow-xs);\n pointer-events: none;\n -o-object-fit: contain;\n object-fit: contain;\n}\n.page-upload-module_file__FQUSN:hover img {\n display: block;\n}");const nI=()=>{const e=$j(),n=ee.useRef(null),t=zI(e=>e.app),[i,a]=ee.useState(!1),o=null==t?void 0:t.contents.disclaimer,r=null==t?void 0:t.contents.disclaimerShort,s=null==t?void 0:t.contents.disclaimerFooter,u=s?r||o||e("llm.disclaimer"):"",c=s&&i?o||e("llm.disclaimer"):"";return ee.useEffect(()=>{let e=[];n.current&&(e=Array.from(n.current.querySelectorAll("button")));const t=e=>xd(void 0,void 0,void 0,function*(){e.currentTarget&&u!==c&&(console.log("buttonClickHandler",c),a(!0))});return e.forEach(e=>e.addEventListener("click",t)),()=>{e.forEach(e=>e.removeEventListener("click",t))}},[u,c]),Fj(n,()=>{a(!1)}),ce.jsx(ce.Fragment,{children:u&&ce.jsxs("div",{className:"llm__prompt-disclaimer",children:[ce.jsx("div",{className:"llm__prompt-disclaimer__short",ref:n,dangerouslySetInnerHTML:{__html:u}}),l&&c&&Md.createPortal(ce.jsx("div",{className:"llm",children:ce.jsx("div",{className:"llm__prompt-disclaimer__long",dangerouslySetInnerHTML:{__html:c}})}),document.body)]})})},tI=ee.forwardRef(function(e,n){let{opened:t,embedded:i,customIntro:a,shouldShowTrigger:o,mode:r}=e;const{Main:s,Font:u,Trigger:l}=zI(e=>e.components),c=g("llm","llm__root","llm__reset",{"-open":t,"-embedded":i,"-custom-intro":a,["-"+r]:!0});return ce.jsx("section",{ref:n,className:c,"data-opened":t,"data-embedded":i,"data-custom-intro":a,"data-mode":r,children:ce.jsxs(Aw,{children:[ce.jsx(u,{}),ce.jsx(vj,{mode:"wait",initial:!1,children:t&&ce.jsx(s,{},"main")}),ce.jsx(vj,{mode:"wait",initial:!1,children:o&&ce.jsx(l,{},"trigger")})]})})});let iI=class{constructor(){this.events={}}on(e,n){return this.events[e]||(this.events[e]=[]),this.events[e].push(n),()=>{this.off(e,n)}}off(e,n){if(!this.events[e])return;const t=this.events[e].indexOf(n);t>-1&&this.events[e].splice(t,1)}clear(){Object.keys(this.events).forEach(e=>{const n=e;this.events[n].splice(0,this.events[n].length)})}emit(e){for(var n=arguments.length,t=new Array(n>1?n-1:0),i=1;i<n;i++)t[i-1]=arguments[i];this.events[e]&&[...this.events[e]].forEach(e=>e.apply(this,t))}once(e,n){var t=this;const i=this.on(e,function(){i();for(var e=arguments.length,a=new Array(e),o=0;o<e;o++)a[o]=arguments[o];n.apply(t,a)})}};const aI=function(e,n){return void 0===e&&(e=1),void 0===n&&(n=30),{hidden:{x:"-50%",y:n*e+"%",opacity:0},show:{x:"-50%",y:0,opacity:1,transition:{type:"tween",duration:.3}},exit:{y:n*e+"%",opacity:0,transition:{type:"tween",duration:.2}}}},oI=e=>{let{index:n,className:t}=e;const i=$j(),{BusyIndicator:a,ChunkWrapper:o}=zI(e=>e.components),r=zI(e=>e.chunks);return ce.jsx(ce.Fragment,{children:r&&ce.jsx(ce.Fragment,{children:ce.jsx("div",{className:t||"llm__message llm__message--assistant",role:"region","aria-label":i("llm.answer"),children:ce.jsxs(vj,{children:[r.map((e,t)=>ce.jsx(o,{className:`llm__inner llm__inner--${e.type}`,item:e,chunkIndex:t,index:n,total:n+1,role:"assistant",stream:!0},`llm-message-${n}-chunk-${t}`)),ce.jsx(a,{})]})})})})},rI=()=>{var e;const n=zI(e=>e.theme),{Blob:t}=zI(e=>e.components),i=zI(e=>e.app),a=lw(e=>e.opened),{open:o}=lw(e=>e.actions),r=$j(),s=MN(null==i?void 0:i.contents.collapsedWelcomeText),u=MN(null==i?void 0:i.contents.collapsedWelcomeTextCta),l=MN(null==i?void 0:i.contents.collapsedWelcomeTextHover),c=(null===(e=n.trigger)||void 0===e?void 0:e.position)||"bottom";return ce.jsxs(Mj.nav,{className:g("llm__trigger","-"+c),initial:{y:"200%",opacity:0},animate:{y:0,opacity:1},exit:{y:"200%",opacity:0},transition:{duration:.4},"aria-label":"Trigger",onClick:()=>o(),children:[ce.jsxs("button",{type:"button",className:g("llm__trigger-btn",{"llm__trigger-btn--hover":void 0!==l}),children:[ce.jsx(t,{}),ce.jsx("span",{children:r("llm.button")})]}),!a&&(s||u||l)&&ce.jsxs("div",{className:"llm__trigger-popup -llm-t-body2",children:[(s||u)&&ce.jsxs(Mj.div,{className:"llm__trigger-message",exit:{opacity:0},children:[ce.jsx(Yw,{}),s,u&&ce.jsx("button",{type:"button",className:"llm__trigger-cta",children:u})]}),l&&ce.jsxs(Mj.div,{className:"llm__trigger-message",exit:{opacity:0},children:[ce.jsx(Yw,{}),l]})]})]})},sI={Blob:()=>ce.jsxs("div",{className:"llm__trigger-blob","aria-hidden":!0,children:[ce.jsxs("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 500 500",width:"100%",id:"blobSvg",filter:"blur(8px)",transform:"rotate(0)",children:[ce.jsx("defs",{children:ce.jsxs("linearGradient",{id:"gradient3",x1:"0%",y1:"0%",x2:"0%",y2:"100%",children:[ce.jsx("stop",{offset:"0%",style:{stopColor:"var(--llm-color-blob-100)"}}),ce.jsx("stop",{offset:"100%",style:{stopColor:"var(--llm-color-blob-200)"}})]})}),ce.jsx("path",{id:"blob",fill:"url(#gradient3)",children:ce.jsx("animate",{attributeName:"d",dur:"10s",repeatCount:"indefinite",values:"M453.70516,317.0107Q433.36186,384.02139,362.52423,381.146Q291.6866,378.27061,242.8433,399.93801Q194,421.60541,117.08118,412.14317Q40.16237,402.68093,64.29201,326.34046Q88.42165,250,109.0107,206.32693Q129.59975,162.65387,148.64317,78.76495Q167.6866,-5.12397,241.8433,20.74072Q316,46.60541,350.8433,99.17023Q385.6866,151.73505,429.86753,200.86753Q474.04846,250,453.70516,317.0107Z;M403.5,294Q372,338,343,393Q314,448,254,435.5Q194,423,138,397.5Q82,372,88,311Q94,250,86,187.5Q78,125,134,95.5Q190,66,253,57Q316,48,362,91.5Q408,135,421.5,192.5Q435,250,403.5,294Z;M424.84079,321.86371Q447.86386,393.72743,384.56836,431.15935Q321.27286,468.59128,248.86371,472.84107Q176.45457,477.09086,148.84107,410.1135Q121.22757,343.13614,67.95457,296.56807Q14.68157,250,76.45485,209.5685Q138.22813,169.13699,166.2505,123.59142Q194.27286,78.04585,249.70464,79.81828Q305.13643,81.59072,362.47721,103.93179Q419.818,126.27286,410.81786,188.13643Q401.81772,250,424.84079,321.86371Z;M439.43806,316.51312Q432.44085,383.02623,370.39398,407.14258Q308.3471,431.25893,240.13979,459.78516Q171.93248,488.31139,132.30301,426.26451Q92.67355,364.21763,63.21484,307.10882Q33.75613,250,44.06194,178.90151Q54.36774,107.80301,118.67355,75.31613Q182.97935,42.82924,240.60882,72.66602Q298.23828,102.50279,368.10882,107.87054Q437.97935,113.23828,442.20731,181.61914Q446.43527,250,439.43806,316.51312Z;M423.38828,307.00416Q406.39243,364.00831,353.55217,384.57202Q300.71191,405.13573,242.06787,430.50416Q183.42382,455.87258,116.5554,425.63666Q49.68697,395.40075,58.87581,322.70037Q68.06464,250,86.66067,197.31625Q105.2567,144.63251,148.86843,108.53648Q192.48015,72.44045,252.10019,66.13989Q311.72022,59.83933,378.54063,84.21929Q445.36105,108.59925,442.87258,179.29963Q440.38412,250,423.38828,307.00416Z;M453.70516,317.0107Q433.36186,384.02139,362.52423,381.146Q291.6866,378.27061,242.8433,399.93801Q194,421.60541,117.08118,412.14317Q40.16237,402.68093,64.29201,326.34046Q88.42165,250,109.0107,206.32693Q129.59975,162.65387,148.64317,78.76495Q167.6866,-5.12397,241.8433,20.74072Q316,46.60541,350.8433,99.17023Q385.6866,151.73505,429.86753,200.86753Q474.04846,250,453.70516,317.0107Z"})})]}),ce.jsxs("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 500 500",width:"100%",id:"blobSvg",filter:"blur(8px)",transform:"rotate(0)",children:[ce.jsx("defs",{children:ce.jsxs("linearGradient",{id:"gradient2",x1:"0%",y1:"0%",x2:"0%",y2:"100%",children:[ce.jsx("stop",{offset:"0%",style:{stopColor:"var(--llm-color-blob-300)"}}),ce.jsx("stop",{offset:"100%",style:{stopColor:"var(--llm-color-blob-400)"}})]})}),ce.jsx("path",{id:"blob",fill:"url(#gradient2)",children:ce.jsx("animate",{attributeName:"d",dur:"20s",repeatCount:"indefinite",values:"M385.47259,309.13613Q368.27225,368.27225,309.13613,425.14983Q250,482.02741,183.02911,432.9846Q116.05821,383.94179,100.85787,316.97089Q85.65753,250,111.11302,193.28426Q136.56852,136.56852,193.28426,70.4846Q250,4.40068,303.89298,73.30736Q357.78596,142.21404,380.22944,196.10702Q402.67293,250,385.47259,309.13613Z;M449.66467,329.57458Q409.14917,409.14917,329.57458,407.97733Q250,406.80549,191.3735,387.02924Q132.74701,367.25299,77.06026,308.6265Q21.3735,250,49.05191,163.36516Q76.73032,76.73032,163.36516,85.537Q250,94.34367,322.00775,100.16408Q394.01551,105.98449,442.09784,177.99225Q490.18018,250,449.66467,329.57458Z;M418.08664,320.33435Q390.6687,390.6687,320.33435,427.91946Q250,465.17023,188.27506,419.31005Q126.55013,373.44987,106.38448,311.72494Q86.21883,250,84.09726,165.98785Q81.9757,81.9757,165.98785,53.98938Q250,26.00305,311.1687,76.83282Q372.3374,127.6626,408.92099,188.8313Q445.50458,250,418.08664,320.33435Z;M409.06419,322.5266Q395.0532,395.0532,322.5266,445.11739Q250,495.18159,163.51944,459.07135Q77.03888,422.96112,82.39949,336.48056Q87.7601,250,115.64271,196.76266Q143.52532,143.52532,196.76266,76.83657Q250,10.14783,323.24578,56.82813Q396.49156,103.50844,409.78338,176.75422Q423.07519,250,409.06419,322.5266Z;M408.24461,332.63257Q415.26513,415.26513,332.63257,434.71568Q250,454.16622,179.33614,422.74697Q108.67228,391.32772,65.87585,320.66386Q23.07942,250,63.27221,176.73251Q103.46501,103.46501,176.73251,63.02288Q250,22.58075,311.86507,74.4253Q373.73015,126.26985,387.47712,188.13493Q401.22409,250,408.24461,332.63257Z;M423.42552,332.41134Q414.82268,414.82268,332.41134,424.30554Q250,433.78841,170.96572,420.92848Q91.93144,408.06856,46.07152,329.03428Q0.21159,250,66.88003,191.77423Q133.54846,133.54846,191.77423,102.82861Q250,72.10876,305.00592,106.04846Q360.01185,139.98815,396.0201,194.99408Q432.02836,250,423.42552,332.41134Z;M405.0078,325.44624Q400.89248,400.89248,325.44624,434.97549Q250,469.0585,165.42535,444.1039Q80.8507,419.1493,84.75627,334.57465Q88.66184,250,94.44262,175.1117Q100.2234,100.2234,175.1117,82.29749Q250,64.37159,306.73538,100.45042Q363.47075,136.52925,386.29693,193.26462Q409.12312,250,405.0078,325.44624Z;M395.5,320Q390,390,320,400Q250,410,172,408Q94,406,59,328Q24,250,70.5,183.5Q117,117,183.5,108Q250,99,335,89.5Q420,80,410.5,165Q401,250,395.5,320Z;M385.47259,309.13613Q368.27225,368.27225,309.13613,425.14983Q250,482.02741,183.02911,432.9846Q116.05821,383.94179,100.85787,316.97089Q85.65753,250,111.11302,193.28426Q136.56852,136.56852,193.28426,70.4846Q250,4.40068,303.89298,73.30736Q357.78596,142.21404,380.22944,196.10702Q402.67293,250,385.47259,309.13613Z"})})]}),ce.jsxs("svg",{version:"1.1",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 500 500",width:"100%",id:"blobSvg",filter:"blur(8px)",transform:"rotate(0)",children:[ce.jsx("defs",{children:ce.jsxs("linearGradient",{id:"gradient1",x1:"0%",y1:"0%",x2:"0%",y2:"100%",children:[ce.jsx("stop",{offset:"0%",style:{stopColor:"var(--llm-color-blob-500)"}}),ce.jsx("stop",{offset:"100%",style:{stopColor:"var(--llm-color-blob-600)"}})]})}),ce.jsx("path",{id:"blob",fill:"url(#gradient1)",children:ce.jsx("animate",{attributeName:"d",dur:"10s",repeatCount:"indefinite",values:"M403.5,294Q372,338,343,393Q314,448,254,435.5Q194,423,138,397.5Q82,372,88,311Q94,250,86,187.5Q78,125,134,95.5Q190,66,253,57Q316,48,362,91.5Q408,135,421.5,192.5Q435,250,403.5,294Z;M469.34657,320.38487Q443.8468,390.76973,373.53877,402.1156Q303.23073,413.46147,238.88463,448.30757Q174.53853,483.15367,122.76833,431.6929Q70.99814,380.23213,76.84563,315.11607Q82.69313,250,78.9227,186.3071Q75.15227,122.6142,131.92223,91.73003Q188.6922,60.84587,253.2305,51.539Q317.7688,42.23213,359.5759,90.92433Q401.383,139.61653,448.11467,194.80827Q494.84633,250,469.34657,320.38487Z;M453.70516,317.0107Q433.36186,384.02139,362.52423,381.146Q291.6866,378.27061,242.8433,399.93801Q194,421.60541,117.08118,412.14317Q40.16237,402.68093,64.29201,326.34046Q88.42165,250,109.0107,206.32693Q129.59975,162.65387,148.64317,78.76495Q167.6866,-5.12397,241.8433,20.74072Q316,46.60541,350.8433,99.17023Q385.6866,151.73505,429.86753,200.86753Q474.04846,250,453.70516,317.0107Z;M460.19079,314.81752Q429.48296,379.63503,366.74655,397.33779Q304.01014,415.04055,238.62673,450.6401Q173.24331,486.23965,141.80231,418.853Q110.3613,351.46635,87.51337,300.73317Q64.66545,250,86.56406,198.80231Q108.46268,147.60462,149.75669,107.39355Q191.05069,67.18248,258.9189,40.41566Q326.7871,13.64883,381.21107,64.45621Q435.63503,115.26359,463.26683,182.63179Q490.89862,250,460.19079,314.81752Z;M402.82336,294.74662Q372.52122,339.49324,339.45366,380.77461Q306.3861,422.05598,251.70463,416.9165Q197.02317,411.77702,159.66506,377.28619Q122.30695,342.79537,72.75579,296.39768Q23.20463,250,37.88851,178.24662Q52.57238,106.49324,117.0304,72.97924Q181.48842,39.46525,238.53957,73.79537Q295.59073,108.12549,332.49083,135.50917Q369.39092,162.89286,401.2582,206.44643Q433.12549,250,402.82336,294.74662Z;M428.88107,298.41731Q382.87896,346.83463,343.6411,381.94757Q304.40324,417.06052,249.73188,417.66327Q195.06052,418.26602,121.90324,407.33463Q48.74595,396.40324,42.90922,323.20162Q37.07249,250,50.04223,182.03624Q63.01197,114.07249,129.2076,98.49191Q195.40324,82.91133,251.0746,78.83673Q306.74595,74.76214,356.50598,105.64321Q406.26602,136.52427,440.5746,193.26214Q474.88318,250,428.88107,298.41731Z;M437.48517,301.93698Q392.82947,353.87396,357.50371,413.21131Q322.17795,472.54867,247.51112,479.51159Q172.8443,486.47452,129.54819,427.64458Q86.25209,368.81464,81.57785,309.40732Q76.90361,250,83.86283,191.93327Q90.82205,133.86654,141.98146,104.152Q193.14087,74.43745,247.01483,83.88926Q300.88878,93.34106,355.51112,113.62234Q410.13346,133.90361,446.13717,191.95181Q482.14087,250,437.48517,301.93698Z;M439.43806,316.51312Q432.44085,383.02623,370.39398,407.14258Q308.3471,431.25893,240.13979,459.78516Q171.93248,488.31139,132.30301,426.26451Q92.67355,364.21763,63.21484,307.10882Q33.75613,250,44.06194,178.90151Q54.36774,107.80301,118.67355,75.31613Q182.97935,42.82924,240.60882,72.66602Q298.23828,102.50279,368.10882,107.87054Q437.97935,113.23828,442.20731,181.61914Q446.43527,250,439.43806,316.51312Z;M403.5,294Q372,338,343,393Q314,448,254,435.5Q194,423,138,397.5Q82,372,88,311Q94,250,86,187.5Q78,125,134,95.5Q190,66,253,57Q316,48,362,91.5Q408,135,421.5,192.5Q435,250,403.5,294Z"})})]})]}),BusyIndicator:()=>ce.jsx(Mj.div,{className:"llm__busyIndicator",initial:{opacity:0,y:10},animate:{opacity:1,y:0},transition:{duration:1},children:ce.jsx("span",{})}),Canvas:Yw,ChunkWrapper:KN,Disclaimer:VN,Feedback:$N,Font:qN,Header:e=>{var n,t,i,a;const o=zI(e=>e.app),{open:r}=lw(e=>e.actions),s=lw(e=>e.hidden),u=lw(e=>e.fixed),l=lw(e=>e.dismissable),c=$j(),d=null==o?void 0:o.contents.logo,h=null===(n=null==o?void 0:o.contents)||void 0===n?void 0:n.logoMini,p=null===(t=null==o?void 0:o.contents)||void 0===t?void 0:t.openingSound,m=null===(i=null==o?void 0:o.contents)||void 0===i?void 0:i.additionalLogos,y=null===(a=null==o?void 0:o.contents)||void 0===a?void 0:a.headerCtas,f=y&&y.length>0,M=g("llm__header",{hidden:s,fixed:u,"-has-cta":f});return ce.jsx("nav",{className:M,children:ce.jsxs("div",{className:"llm__header-wrapper",children:[ce.jsxs("div",{className:"llm__header-logo",children:[d&&ce.jsx("div",{className:"llm__header-logo-full",children:ce.jsx("img",{src:d.src||d.url,alt:d.alt})}),m&&m.map((e,n)=>ce.jsx("div",{className:"llm__header-logo-additional",children:ce.jsx("img",{src:e.logo.src||e.logo.url,alt:e.logo.alt})},n)),h&&ce.jsx("div",{className:"llm__header-logo-mini",children:ce.jsx("img",{src:h.src||h.url,alt:h.alt})})]}),ce.jsx("a",{href:"#llm-prompt-textarea",className:"llm__header-skip",children:c("llm.skip")}),l&&ce.jsxs(ce.Fragment,{children:[f&&ce.jsx("div",{className:"llm__header-ctas",children:y.map((e,n)=>ce.jsxs("a",{href:e.href,target:e.target||"_blank",className:g("llm__header-cta",{"-icon":null!=e.icon}),children:[e.title," ",e.icon&&ce.jsx("i",{children:ce.jsx("img",{src:e.icon.src||e.icon.url,alt:""})})]},n))}),ce.jsxs("button",{type:"button","aria-label":c("llm.back"),className:"llm__header-back -llm-t-cta3",onClick:()=>r(),children:[ce.jsx("span",{className:"llm__header-back-label",children:c("llm.back")}),ce.jsx(Eb,{})]}),p&&ce.jsx("audio",{src:p.src||p.url,autoPlay:!0,loop:!1})]})]})})},Hints:e=>{let{hints:n}=e;const{width:t}=Bj(),i=zI(e=>e.theme),{send:a}=lw(e=>e.actions),o={spaceBetween:fN(8,16),slidesOffsetAfter:fN(20,110),slidesOffsetBefore:fN(20,110),slidesPerView:fN(1.2,2.2)},r=(e,n)=>{var t;const o=(null===(t=i.hintTitle)||void 0===t?void 0:t.flexDirection)||"row";return ce.jsxs("button",{type:"button",className:"llm__hint",onClick:()=>(e=>xd(void 0,void 0,void 0,function*(){yield a(e.message||e.title,e=>{},e=>{})}))(e),children:[ce.jsxs("div",{className:g("llm__hint-title -llm-t-label1",o),children:[e.icon&&ce.jsx("i",{children:ce.jsx("img",{src:e.icon.src||e.icon.url,alt:""})}),e.title]}),e.body&&ce.jsx("div",{className:"llm__hint-body -llm-t-body3",dangerouslySetInnerHTML:{__html:e.body}})]},`card-${n}`)};return ce.jsx("section",{className:"llm__hints",children:t<768?ce.jsx(pN,Object.assign({},o,{children:n.map((e,n)=>ce.jsx(yN,{children:r(e,n)},n))})):n.map(r)})},Intro:()=>{const e=ee.useRef(null),{Blob:n,Hints:t}=zI(e=>e.components),i=zI(e=>e.app),{send:a,setIntroed:o}=lw(e=>e.actions),r=lw(e=>e.skipCustomIntro),s=lw(e=>e.embedded),u=hv();if(ee.useEffect(()=>{if(l){const e=e=>{if(!e.data)return;const n=JSON.parse(e.data);switch(n.type){case"send":n.prompt&&"string"==typeof n.prompt&&(o(!0),a(n.prompt,e=>{},e=>{}).catch(e=>{console.log("Intro.send.error",e)}));break;case"resize":break;case"introed":o(n.introed)}};return window.addEventListener("message",e),()=>window.removeEventListener("message",e)}return()=>{}},[o,a]),ee.useEffect(()=>{const n=()=>{if(e.current){const n=e.current.getBoundingClientRect();console.log("onLenisScroll",n.bottom<window.innerHeight),o(n.bottom<window.innerHeight)}};return u?(u.on("scroll",n),()=>u.off("scroll",n)):()=>{}},[u,o]),!i)return;const c=i.contents,d=c.extendedWelcomeText,h=(null==i?void 0:i.contents.layoutBuilder)||[];return c.customIntro?r?null:ce.jsx("section",{className:"llm__customIntro",children:ce.jsx("iframe",{ref:e,className:"llm__iframe",src:"object"==typeof c.customIntro?c.customIntro.it:c.customIntro,sandbox:"allow-scripts"})}):ce.jsx("section",{className:"llm__intro",children:ce.jsx("div",{className:"llm__container",children:ce.jsxs(Mj.div,{variants:yv,className:"llm__intro-wrapper llm__row",children:[ce.jsxs(Mj.div,{variants:pv,className:g("llm__intro-text llm__col",{"--md-6 --lg-5":h.length>0,"--sm-9 --md-8 --lg-7":0===h.length}),children:[ce.jsx("div",{className:"llm__intro-blob",children:ce.jsx(Mj.div,{variants:mv,initial:"top",animate:"bottom",children:ce.jsx(n,{})})}),d&&(s?ce.jsx(Mj.h2,{variants:pv,className:"llm__intro-title -llm-t-display2",dangerouslySetInnerHTML:{__html:d}}):ce.jsx(Mj.h1,{variants:pv,className:"llm__intro-title -llm-t-display2",dangerouslySetInnerHTML:{__html:d}}))]}),h.length>0&&ce.jsx(Mj.div,{variants:pv,className:"llm__intro-hints llm__col --end-md-12 --md-6 --lg-5",children:ce.jsx(t,{hints:h})})]})})})},Main:fv,PageActions:e=>{let{wrapper:n}=e;const t=$j(),{send:i}=lw(e=>e.actions),{setWrapper:a}=HN();return n.actions.length>0&&ce.jsxs("div",{className:g(Mv,"-actions"),children:[ce.jsx("button",{className:g(bv),type:"button","aria-label":t("llm.back"),onClick:()=>a(null),children:ce.jsx(Ob,{})}),n.actions.map(e=>ce.jsxs("button",{type:"button",className:g(jv),onClick:()=>{return t=e,xd(void 0,void 0,void 0,function*(){const e=t.message||`${t.label}: ${JSON.stringify(n.actions)}`;yield i(e,e=>{},e=>{})});var t},children:[ce.jsx(wv,{action:e}),ce.jsx("span",{children:e.label})]},e.id))]})},PageContext:()=>{const e=$j(),n=zI(e=>e.contexts),t=zI(e=>e.currentContext),{setCurrentContext:i}=zI(e=>e.actions),a=n&&n.length>1;return a&&ce.jsxs(BE,{children:[ce.jsx(UE,{render:ce.jsx("button",{type:"button",className:g(nz),"aria-label":e("llm.tone"),children:ce.jsx(Jb,{})})}),ce.jsxs(_E,{portal:!0,className:g(VE),children:[ce.jsx(GE,{className:g($E),children:"Chi sei?"}),ce.jsx(JE,{className:g(qE),children:n.map((e,n)=>ce.jsxs(WE,{className:g(ez),"data-active-item":e===t,onClick:()=>(e=>{i(e)})(e),children:[e.title," ",e===t&&ce.jsx(Qb,{})]},`context-${n}`))})]})]})},PageDictate:()=>{const e=$j(),{recognizeStart:n,recognizeStop:t,hasSpeechRecognitionSupport:i}=zI(e=>e.actions);return i()&&ce.jsx("button",{type:"button",className:g(tz),"aria-label":e("llm.dictate"),onMouseDown:()=>n(),onMouseUp:()=>t(),onTouchStart:()=>n(),onTouchEnd:()=>t(),children:ce.jsx(Ub,{})})},PageHistory:e=>{let{item:n}=e;const t=$j(),i=Uj({day:"numeric",month:"numeric",year:"numeric"}),a=Uj({hour:"numeric",minute:"numeric",second:"numeric"}),{setHistory:o,removeHistory:r}=zI(e=>e.actions);return ce.jsxs("div",{className:g(iz.history),onClick:()=>o(n),children:[n.createdAt&&ce.jsxs("div",{className:iz.head,children:[ce.jsx("div",{className:iz.date,children:i(n.createdAt)}),ce.jsx("div",{className:iz.time,children:a(n.createdAt)})]}),ce.jsx("div",{className:iz.user,children:n.user.text}),ce.jsxs("div",{className:iz.foot,children:[n.assistant?ce.jsx("div",{className:iz.assistant,children:n.assistant.text}):ce.jsx("div",{className:iz.assistant,children:t("llm.reasoning")}),n.messageId&&ce.jsx("button",{className:iz.delete,onClick:e=>{e.stopPropagation(),r(n)},children:ce.jsx(qb,{})})]})]})},PageIntro:()=>{const e=ee.useRef(null),{PageContext:n,PageDictate:t,PageMenu:i,PageStop:a,PageStreamingIndicator:o,PageSubmit:r,PageSynthesis:s,PageTextarea:u,PageUpload:l}=zI(e=>e.components),c=zI(e=>e.app),d=zI(e=>e.streaming),h=lw(e=>e.opened),{open:p}=lw(e=>e.actions);if(Fj(e,e=>{var n;-1===((null===(n=e.target)||void 0===n?void 0:n.getAttribute("class"))||"").indexOf("llm")&&h&&p()}),!c)return;const m=c.contents.extendedWelcomeText;return ce.jsx("section",{className:az,children:ce.jsx("div",{className:oz,children:ce.jsxs("div",{className:rz,children:[ce.jsx("div",{className:sz,children:m&&ce.jsx("h1",{className:uz,dangerouslySetInnerHTML:{__html:m}})}),ce.jsx("section",{ref:e,className:lz,"aria-label":"Prompt",children:ce.jsxs("div",{className:cz,children:[ce.jsxs("form",{className:g(dz,"-form"),onSubmit:e=>e.preventDefault(),children:[ce.jsxs("div",{className:g(gz,{[hz]:d}),children:[ce.jsx(o,{}),ce.jsx(u,{})]}),d?ce.jsx(a,{}):ce.jsx(r,{})]}),ce.jsxs("div",{className:pz,children:[ce.jsx("div",{className:mz,children:ce.jsx(i,{})}),ce.jsxs("div",{className:yz,children:[ce.jsx(l,{}),ce.jsx(n,{}),ce.jsx(t,{}),ce.jsx(s,{})]})]})]})})]})})})},PageLoading:()=>{const e=$j();return ce.jsxs("div",{className:g(fz),children:[ce.jsx("div",{className:Mz,children:e("llm.thinking")}),ce.jsxs("div",{className:jz,children:[ce.jsx("span",{children:" "}),ce.jsx("span",{children:" "}),ce.jsx("span",{children:" "})]})]})},PageMain:()=>{const{PageIntro:e,PageThread:n,PagePrompt:t}=zI(e=>e.components),i=zI(e=>e.message),a=zI(e=>e.streaming),o=g(xz);return ce.jsx(Mj.div,{className:o,variants:{hidden:{opacity:0,scale:.98},show:{opacity:1,scale:1,transition:{duration:.3}},exit:{opacity:0,transition:{duration:.3,delay:.3}}},initial:"hidden",animate:"show",exit:"exit","data-lenis-prevent":!0,children:ce.jsxs(UN,{children:[ce.jsx(bz,{children:a||i?ce.jsx(n,{}):ce.jsx(e,{})}),a||i?ce.jsx(t,{}):ce.jsx(ce.Fragment,{})]})},"page-main-container")},PageMenu:()=>{const e=$j(),{PageHistory:n}=zI(e=>e.components),t=zI(e=>e.asideEnabled),i=zI(e=>e.history),{toggleAside:a}=zI(e=>e.actions);return ce.jsxs(KE,{open:t,children:[ce.jsx(lE,{render:ce.jsx("button",{type:"button",className:g(Lz),"aria-label":e(t?"llm.menuClose":"llm.menuOpen"),"aria-pressed":t,onClick:()=>a(),children:ce.jsx(Yb,{})})}),ce.jsxs(Dk,{className:vz,"data-lenis-prevent":!0,backdrop:ce.jsx("div",{className:Nz}),onClose:()=>a(),children:[ce.jsxs("div",{className:Sz,children:[ce.jsx(Yb,{}),ce.jsx(mE,{className:Tz,children:"Le tue ricerche"}),ce.jsx(gE,{render:ce.jsx("button",{className:g(kz),children:ce.jsx(iw,{})})})]}),ce.jsx("div",{className:Dz,children:i.length>0?i.map((e,t)=>ce.jsx(n,{item:e},`history-${t}`)):ce.jsx("div",{className:Cz,children:e("llm.historyEmpty")})})]})]})},PagePrompt:()=>{$j();const{PageActions:e,PageContext:n,PageDictate:t,PageMenu:i,PageStop:a,PageStreamingIndicator:o,PageSubmit:r,PageSynthesis:s,PageTextarea:u,PageTrigger:l,PageUpload:c}=zI(e=>e.components),d=ee.useRef(null),h=zI(e=>e.streaming),p=lw(e=>e.opened),{open:m}=lw(e=>e.actions),y=lw(e=>{const{idle:n,opened:t}=e;return n&&!t}),{wrapper:f}=HN();return Fj(d,e=>{var n;-1===((null===(n=e.target)||void 0===n?void 0:n.getAttribute("class"))||"").indexOf("llm")&&p&&m()}),ce.jsx(vj,{children:!y&&ce.jsxs(Mj.section,{ref:d,className:g(Ez,{[zz]:p}),initial:{y:"200%",opacity:0},animate:{y:0,opacity:1},exit:{y:"200%",opacity:0},transition:{duration:.4},"aria-label":"Prompt",children:[ce.jsx(l,{}),f?ce.jsx(e,{wrapper:f}):ce.jsxs("form",{className:g(Iz,"-form"),onSubmit:e=>e.preventDefault(),children:[ce.jsx(i,{}),ce.jsxs("div",{className:g(Az,{[Yz]:h}),children:[ce.jsx(o,{}),ce.jsx(u,{}),ce.jsx(c,{}),ce.jsx(n,{}),ce.jsx(t,{}),ce.jsx(s,{})]}),h?ce.jsx(a,{}):ce.jsx(r,{})]})]})})},PageRoot:Qz,PageStop:()=>{const e=$j();zI(e=>e.components);const n=zI(e=>e.threadId),{abort:t}=zI(e=>e.actions);return ce.jsx("button",{type:"button",className:g(Zz),disabled:!n,"aria-disabled":!n,"aria-label":e("llm.stopResponse"),onClick:t,children:ce.jsx(Vb,{})})},PageStreamingIndicator:()=>{const e=zI(e=>e.streaming),n=g(_z,{[Bz]:e});return ce.jsx("div",{className:n,children:ce.jsx("div",{className:Fz})})},PageSubmit:()=>{const e=$j();zI(e=>e.components);const n=zI(e=>e.prompt),{send:t}=lw(e=>e.actions);return ce.jsx("button",{type:"submit",className:g(Xz),"aria-disabled":!n,"aria-label":e("llm.sendPrompt"),onClick:e=>xd(void 0,void 0,void 0,function*(){e&&e.preventDefault(),n&&(yield t(n,e=>{},e=>{}))}),children:ce.jsx(Ab,{})})},PageSynthesis:()=>{const e=$j(),n=zI(e=>e.speakEnabled),{toggleSpeak:t,hasSpeechSynthesisSupport:i}=zI(e=>e.actions);return i()&&ce.jsx("button",{type:"button",className:g(Uz),"aria-label":e(n?"llm.disableSpeak":"llm.enableSpeak"),"aria-pressed":n,onClick:t,children:n?ce.jsx(tw,{}):ce.jsx(nw,{})})},PageTextarea:()=>{const e=$j(),n=ee.useRef(null),t=zI(e=>e.app),i=zI(e=>e.prompt),a=zI(e=>e.streaming),{setPrompt:o}=zI(e=>e.actions),{send:r}=lw(e=>e.actions);Qj(n.current,i);return ce.jsxs(ce.Fragment,{children:[ce.jsx("label",{className:g(Hz),htmlFor:"llm-page-prompt__textarea",children:e("llm.prompt")}),ce.jsx("textarea",{className:g(Jz,"-textarea"),ref:n,id:"llm-page-prompt__textarea",name:"prompt",placeholder:null==t?void 0:t.contents.promptPlaceholder,value:i,rows:1,"aria-disabled":a,onKeyDown:e=>{"Enter"!=e.code||e.shiftKey||(e=>{xd(void 0,void 0,void 0,function*(){e&&e.preventDefault(),i&&(yield r(i,e=>{},e=>{}))})})(e)},onChange:e=>{var n;const t=null===(n=e.target)||void 0===n?void 0:n.value;o(t)}})]})},PageThread:()=>{const e=ee.useRef(null),n=$j(),{ChunkWrapper:t,Feedback:i,PageLoading:a,Stream:o}=zI(e=>e.components),r=zI(e=>{var n;return null===(n=e.app)||void 0===n?void 0:n.contents.enableFeedback}),s=zI(e=>e.messages),u=zI(e=>e.message),l=zI(e=>e.streaming),c=zI(e=>(e.chunks||[]).reduce((e,n)=>e||!["header","log","info","end"].includes(n.type),!1));ee.useEffect(()=>{window.scrollTo({top:0})},[u,c]);const d=g(Pz);return ce.jsx("section",{ref:e,className:d,children:c?ce.jsx(o,{className:g(Gz,"-assistant"),index:s.length}):l?ce.jsx(a,{}):ce.jsx(ce.Fragment,{children:u&&ce.jsxs("div",{className:g(Gz,`-${u.role}`),role:"region","aria-label":"user"===u.role?n("llm.question"):n("llm.answer"),children:[u.chunks.map((e,n)=>ce.jsx(t,{className:g(Rz,`-${e.type}`),item:e,chunkIndex:n,index:0,total:s.length,role:u.role},`llm-message-${u.messageId}-chunk-${n}`)),r&&ce.jsx(i,{message:u})]},`llm-message-${u.messageId}-0`)})})},PageTrigger:()=>{$j();const{open:e}=lw(e=>e.actions);return ce.jsx("button",{type:"button",className:g(Wz,"-trigger"),onClick:()=>e(),"aria-label":"Open assistant",children:ce.jsx("div",{className:Kz})})},PageUpload:()=>{const e=$j(),n=zI(e=>e.upload),t=zI(e=>e.mimeTypes),{removeFile:i,addFile:a,hasUploadSupport:o}=zI(e=>e.actions);return o()&&ce.jsxs(ce.Fragment,{children:[ce.jsxs("div",{className:g(Vz),children:[ce.jsx("div",{className:g(qz),"aria-label":e("llm.upload"),children:ce.jsx(ew,{})}),ce.jsx("input",{className:g($z),type:"file",id:"file-input",accept:t,onChange:a})]}),n&&ce.jsxs("button",{type:"button",className:g(eI),onClick:()=>i(),title:n.file.name,children:[ce.jsx("span",{children:n.file.name}),ce.jsx(ow,{}),ce.jsx("img",{src:n.base64,alt:""})]})]})},Prompt:()=>{const e=$j(),n=ee.useRef(null),{Blob:t,BusyIndicator:i,Suggestions:a}=zI(e=>e.components),o=zI(e=>e.app),r=zI(e=>e.threadId),s=zI(e=>e.prompt),u=zI(e=>e.upload),l=zI(e=>e.messages),c=zI(e=>e.streaming),d=zI(e=>e.speakEnabled),h=zI(e=>e.mimeTypes),p=zI(e=>e.storageMode),{clear:m,setPrompt:y,recognizeStart:f,recognizeStop:M,abort:j,toggleSpeak:b,removeFile:w,hasSpeechRecognitionSupport:x,hasSpeechSynthesisSupport:L,addFile:N,hasUploadSupport:v}=zI(e=>e.actions),{send:S}=lw(e=>e.actions);Qj(n.current,s);const T=e=>xd(void 0,void 0,void 0,function*(){e&&e.preventDefault(),s&&(yield S(s,e=>{},e=>{}))}),D=L(),k=x(),C=v();return ce.jsxs("div",{className:"llm__prompt",children:[ce.jsxs("div",{className:"llm__container",children:[0===l.length&&ce.jsx(a,{}),ce.jsx("section",{id:"llm-prompt",children:ce.jsxs("form",{className:"llm__prompt-form",onSubmit:T,children:[ce.jsxs("div",{className:g("llm__prompt-input",{"-speech-synthesis":D,"-speech-recognition":k,"-streaming":c}),children:[D&&ce.jsx("button",{className:"llm__prompt-speak",type:"button","aria-label":e(d?"llm.disableSpeak":"llm.enableSpeak"),title:e(d?"llm.disableSpeak":"llm.enableSpeak"),"aria-pressed":d,onClick:b,children:d?ce.jsx(tw,{}):ce.jsx(nw,{})}),"session"===p&&r&&ce.jsx("button",{className:"llm__prompt-speak",type:"button","aria-label":e("llm.newThread"),title:e("llm.newThread"),onClick:m,children:ce.jsx(Wb,{})}),ce.jsxs("div",{className:"llm__prompt-textareaGroup",children:[ce.jsx("label",{htmlFor:"llm-prompt-textarea",className:"llm__prompt-label",children:e("llm.prompt")}),ce.jsx("textarea",{id:"llm-prompt-textarea",className:"llm__prompt-textarea",name:"prompt",placeholder:null==o?void 0:o.contents.promptPlaceholder,onKeyDown:e=>{"Enter"!=e.code||e.shiftKey||T(e)},onChange:e=>{var n;const t=null===(n=e.target)||void 0===n?void 0:n.value;y(t)},ref:n,rows:1,value:s,"aria-disabled":c}),ce.jsx(i,{})]}),C&&ce.jsxs(ce.Fragment,{children:[ce.jsxs("div",{className:"llm__prompt-upload-group",children:[ce.jsx("div",{className:"llm__prompt-upload","aria-label":e("llm.upload"),title:e("llm.upload"),children:ce.jsx(Pb,{})}),ce.jsx("input",{className:"llm__prompt-upload-input",type:"file",id:"file-input",accept:h,onChange:N})]}),u&&ce.jsxs("button",{className:"llm__prompt-upload-file",onClick:()=>w(),title:u.file.name,children:[ce.jsx("span",{children:u.file.name}),ce.jsx(ow,{}),ce.jsx("img",{src:u.base64,alt:""})]})]}),k&&ce.jsx("button",{className:"llm__prompt-microphone",type:"button","aria-label":e("llm.dictate"),title:e("llm.dictate"),onMouseDown:()=>f(),onMouseUp:()=>M(),onTouchStart:()=>f(),onTouchEnd:()=>M(),children:ce.jsx(Ub,{})})]}),c?ce.jsxs("button",{className:"llm__prompt-stop",type:"button",disabled:!r,"aria-disabled":!r,"aria-label":e("llm.stopResponse"),onClick:j,children:[ce.jsx(t,{}),ce.jsx("i",{children:ce.jsx(Vb,{})})]}):ce.jsxs("button",{className:"llm__prompt-submit",type:"submit","aria-disabled":!s,"aria-label":e("llm.sendPrompt"),children:[ce.jsx(t,{}),ce.jsx("i",{children:ce.jsx(Kb,{})})]})]})})]}),ce.jsxs("nav",{className:"llm__prompt-footer",children:[ce.jsx(nI,{}),!0!==(null==o?void 0:o.contents.disablePoweredBy)&&ce.jsxs("a",{className:"llm__prompt-powered-by",href:"https://www.websolute.com/",target:"_blank",rel:"noreferrer",title:"Powered by Websolute",children:[ce.jsx("span",{children:"powered by"})," ",ce.jsx(aw,{"aria-label":"Websolute"})]})]})]})},Root:tI,Scroller:e=>{let{className:n="llm__scroller",selector:t=".llm__content",children:i}=e;const a=ee.useRef(null),o=ee.useRef(null),r=zI(e=>e.app),s=lw(e=>e.introed),{setScroller:u,setScrollable:c}=lw(e=>e.actions),d=!(null==r?void 0:r.contents.customIntro)||s;ee.useEffect(()=>{a.current&&(d||a.current.scrollTo(0,0))},[d]),ee.useImperativeHandle(o,()=>{const e=new iI,n=Object.assign(e,{scrollTo:(e,n)=>{if(a.current){const n={x:0,y:0};if("number"==typeof e)n.y=e;else if("string"==typeof e)switch(e){case"top":n.y=0;break;case"bottom":n.y=a.current.scrollHeight}a.current.scrollTo(n.x,n.y)}},start:()=>{},stop:()=>{}});return u(n),n},[u]),ee.useEffect(()=>{if(l&&a.current&&o.current){const e=a.current,n=o.current;let t=0;const i=()=>{const i=e.scrollHeight-e.offsetHeight,a=e.scrollTop,o=a>t?1:a===t?0:-1;n.emit("scroll",{limit:i,targetScroll:a,direction:o}),t=a};return e.addEventListener("scroll",i),()=>{e.removeEventListener("scroll",i)}}return()=>{}},[]),ee.useEffect(()=>{if(l&&a.current&&o.current){const e=o.current,n=a.current,i=n.querySelector(t);if(i){const t=new ResizeObserver(t=>{const i=n.scrollHeight-n.offsetHeight,a=n.scrollTop;e.emit("scroll",{limit:i,targetScroll:a,direction:0})});return t.observe(i),()=>{t.disconnect()}}return()=>{}}return()=>{}},[a,t]);const h=g(n,{"-scroller-disabled":!d});return ce.jsx("div",{ref:a,className:h,children:i})},ScrollProposition:()=>{const e=$j(),n=lw(e=>e.scrollable),{scrollToBottom:t}=lw(e=>e.actions);return ce.jsx(vj,{children:n&&ce.jsx(Mj.button,{className:"llm__scroll-proposition","aria-label":e("llm.scrollToBottom"),onClick:()=>{t()},variants:aI(-1),initial:"hidden",animate:"show",exit:"exit",children:ce.jsx(Ib,{})})})},Stream:oI,Suggestions:()=>{Bj();const e=zI(e=>e.app),{send:n}=lw(e=>e.actions),t=null==e?void 0:e.contents.sampleInputTexts;return ce.jsx(ce.Fragment,{children:t&&t.length>0&&ce.jsx("section",{className:"llm__prompt-suggestions",children:ce.jsx("div",{className:"llm__suggestions",children:t.map((e,t)=>ce.jsx("button",{type:"button",className:"llm__pill",onClick:()=>{return t=e,xd(void 0,void 0,void 0,function*(){yield n(t.sampleInputText,e=>{},e=>{})});var t},children:e.sampleInputText},t))})})})},Thread:()=>{const{ChunkWrapper:e,Disclaimer:n,Feedback:t,Stream:i}=zI(e=>e.components),a=$j(),o=zI(e=>{var n;return null===(n=e.app)||void 0===n?void 0:n.contents.enableFeedback}),r=zI(e=>e.messages),s=zI(e=>void 0!==e.chunks);return ce.jsxs("section",{className:"llm__thread llm__container",children:[r.map((i,s)=>ce.jsxs("div",{className:g("llm__message",`llm__message--${i.role}`),role:"region","aria-label":"user"===i.role?a("llm.question"):a("llm.answer"),children:[i.chunks.map((n,t)=>ce.jsx(e,{className:`llm__inner llm__inner--${n.type}`,item:n,chunkIndex:t,index:s,total:r.length,role:i.role},`llm-message-${i.messageId}-chunk-${t}`)),"user"===i.role?0===s&&ce.jsx(n,{}):s===r.length-1&&o&&ce.jsx(t,{message:i})]},`llm-message-${i.messageId}-${s}`)),s&&ce.jsx(i,{index:r.length})]})},Trigger:rI};const uI={mode:"default",scale:1,font:{primary:"Aeonik, Arial, Helvetica, sans-serif",secondary:"Capraia, Georgia, serif",source:'<link rel="stylesheet" href="https://design.wslabs.it/llm/fonts/aeonik.css"><link rel="stylesheet" href="https://design.wslabs.it/llm/fonts/capraia.css">'},typography:{display1:{fontWeight:"500",lineHeight:"1.1",letterSpacing:"0.02em",fontSizeMin:"32",fontSizeMax:"72"},display2:{fontWeight:"500",lineHeight:"1.2",letterSpacing:"0.01em",fontSizeMin:"32",fontSizeMax:"64"},display3:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"24",fontSizeMax:"56"},display4:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"24",fontSizeMax:"48"},display5:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"24",fontSizeMax:"40"},display6:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"16",fontSizeMax:"32"},heading1:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"18",fontSizeMax:"32"},heading2:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.03em",fontSizeMin:"16",fontSizeMax:"24"},body1:{fontWeight:"normal",lineHeight:"1.4",letterSpacing:"0",fontSizeMin:"16",fontSizeMax:"24"},body2:{fontWeight:"500",lineHeight:"1.4",letterSpacing:"0",fontSizeMin:"16",fontSizeMax:"18"},body3:{fontWeight:"normal",lineHeight:"1.4",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"18"},body4:{fontWeight:"500",lineHeight:"1.5",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"16"},body5:{fontWeight:"normal",lineHeight:"1.5",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"16"},label1:{fontWeight:"500",lineHeight:"1",letterSpacing:"0.08em",fontSizeMin:"14",fontSizeMax:"16"},cta1:{fontWeight:"500",lineHeight:"1",letterSpacing:"0.08em",fontSizeMin:"14",fontSizeMax:"16"},cta2:{fontWeight:"700",lineHeight:"1.2",letterSpacing:"0.02em",fontSizeMin:"14",fontSizeMax:"16"},cta3:{fontWeight:"500",lineHeight:"1",letterSpacing:"0.06em",fontSizeMin:"14",fontSizeMax:"16"},cta4:{fontWeight:"500",lineHeight:"1.2",letterSpacing:"0.02em",fontSizeMin:"14",fontSizeMax:"16"}},color:{neutral:{100:"#ffffff",200:"#e8e8e8",300:"#bdbdbd",400:"#909090",500:"#7c7c7c",600:"#525252",700:"#3d3d3d",800:"#292929",900:"#000000"},base:{100:"#003c8c",200:"#73c3ff",300:"#96dca0",400:"#dcdc3c",500:"#007378",600:"#b41e5f",700:"#aa96f0",800:"#cda582",900:"#ffe6a0"},blob:{100:"var(--llm-color-base-400)",200:"#d0c911",300:"var(--llm-color-base-100)",400:"#054ead",500:"var(--llm-color-base-300)",600:"#0ba224"},background:"var(--llm-color-base-100)",foreground:"var(--llm-color-neutral-100)",outline:"var(--llm-color-neutral-900)",title:{background:"var(--llm-color-background)",foreground:"var(--llm-color-foreground)"},primary:{background:"var(--llm-color-base-200)",foreground:"var(--llm-color-neutral-100)"},secondary:{background:"var(--llm-color-base-500)",foreground:"var(--llm-color-neutral-100)"},accent:{background:"transparent",foreground:"var(--llm-color-base-400)"},success:"#7dc18a",warning:"#ff9800",error:"#ff4848"},border:"1px solid var(--llm-color-neutral-200)",trigger:{position:"bottom",size:"60px",background:"var(--llm-color-base-200)",foreground:"var(--llm-color-base-100)",boxShadow:"var(--llm-shadow-md)"},chat:{top:"auto",right:"20px",bottom:"20px",left:"auto",maxWidth:"Min(calc(100vw - 40px), 1024px)",maxHeight:"calc(100vh - 100px)",borderRadius:"8px",boxShadow:"var(--llm-shadow-sm)"},main:{background:"var(--llm-color-background)",foreground:"var(--llm-color-foreground)"},canvas:{opacity:.8,enabled:!0},popup:{maxWidth:"210px",background:"var(--llm-color-title-background)",foreground:"var(--llm-color-title-foreground)",border:"none"},triggerCta:{background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-base-100)"},hint:{fontFamily:"var(--llm-font-primary)",background:"linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%)",foreground:"var(--llm-color-foreground)",border:"1px solid rgba(237, 237, 237, 0.3)",borderRadius:"12px",boxShadow:"none"},hintTitle:{flexDirection:"row",color:"var(--llm-color-foreground)"},hintIcon:{width:"18px",height:"18px",color:"var(--llm-color-foreground)"},pill:{padding:"8px",fontFamily:"var(--llm-font-primary)",background:"rgba(255, 255, 255, 0.2)",foreground:"var(--llm-color-title-foreground)",border:"1px solid rgba(237, 237, 237, 0.3)",borderRadius:"5px"},input:{fontFamily:"var(--llm-font-secondary)",background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",accent:"var(--llm-color-base-100)",borderRadius:"8px"},scrollProposition:{size:"32px",borderRadius:"16px",background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",boxShadow:"0 6px 8px -4px rgba(0, 0, 0, 0.5)"},promptSubmit:{background:"var(--llm-trigger-background)",foreground:"var(--llm-trigger-foreground)"},checkbox:{border:"2px solid var(--llm-color-neutral-100)"},user:{background:"linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%)",foreground:"var(--llm-color-title-foreground)",border:"1px solid rgba(237, 237, 237, 0.3)"},assistant:{background:"none",foreground:"var(--llm-color-foreground)",border:"none"},markdown:{marginTop:"0.5rem",marginBottom:"1rem",marginLeft:"1rem",accent:"var(--llm-color-foreground)",border:"1px solid rgba(237, 237, 237, 0.3)"},event:{background:"var(--llm-color-base-100)",foreground:"var(--llm-color-foreground)"},card:{background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",aspectRatio:"240 / 165"},cardVideo:{aspectRatio:"16 / 9"},product:{border:"var(--llm-color-neutral-200)",background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",available:"var(--llm-color-success)",soldout:"var(--llm-color-error)",aspectRatio:"1 / 1"},productLabel:{background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)"},shadow:{xs:"0 2px 20px -2px rgba(0, 0, 0, 0.1)",sm:"0 4px 30px -4px rgba(0, 0, 0, 0.2)",md:"0 6px 40px -6px rgba(0, 0, 0, 0.4)",lg:"0 8px 50px -8px rgba(0, 0, 0, 0.6)",xl:"0 10px 60px -10px rgba(0, 0, 0, 0.8)"},headerCta:{fontSize:"18px",padding:"0.5em 1em",borderRadius:"2em",background:"var(--llm-color-primary-background)",foreground:"var(--llm-color-primary-foreground)"},feedback:{type:"stars",size:"1rem",gap:"12px",padding:"4px",border:"1px solid rgba(237, 237, 237, 0.3)"}};function lI(e,n){void 0===e&&(e=[]);let t=n?Object.assign({},n):Object.assign({},uI);return e.forEach(e=>{t=u(t,Object.assign({},e))}),t}function cI(e,n,t){return void 0===n&&(n=""),void 0===t&&(t={names:[],values:[]}),e&&Object.entries(e).forEach(e=>{let[i,a]=e;i=(n.length?`${n}-`:"")+s(i),a&&"object"==typeof a?t=cI(a,i,t):"string"!=typeof a&&"number"!=typeof a||(t.names.push(i),t.values.push(a))}),t}function dI(e,n){void 0===n&&(n="llm");const t=cI(e),i={};return t.names.forEach((e,a)=>{const o=t.values[a];i[`--${n}-${e}`]=String(o)}),i}const gI={it:{mode:"site",contents:{logo:{id:"6560a04654a910c2150ab7a9",alt:"logo Websolute",filename:"websolute-dot.svg",url:"https://design.wslabs.it/llm/default/websolute-dot.svg",type:"image"},collapsedWelcomeText:"👋 \n Ciao, sono il tuo assistente AI",collapsedWelcomeTextHover:"Cliccami e lascia che ti consigli cosa fare e vedere a Websolute.",shortWelcomeText:'Ciao, sono l"ambasciatore AI di Websolute.',extendedWelcomeText:'Ciao, sono l"Ambasciatore AI di Websolute. Più cose mi dirai su ciò che ti piace, più sarò in grado di aiutarti.',disclaimer:"Le risposte che riceverai sono create automaticamente elaborando sia le informazioni presenti sul nostro sito che altre informazioni presenti sul web. Controlla sempre la correttezza delle informazioni fornite.",sampleInputTexts:[{sampleInputText:"Quali sono gli eventi che posso raggiungere a piedi dalla stazione dei treni?"},{sampleInputText:"Mostra i prossimi eventi di fotografia"},{sampleInputText:"Chi partecipa a Websolute?"}],layoutBuilder:[{icon:{id:"6560a05454a910c2150ab7b4",alt:"itinerario",filename:"itinerary-1.svg",url:"https://design.wslabs.it/llm/default/llm-itinerary.svg",type:"image"},title:"Pianifica un itinerario",body:"Chiedi supporto per organizzare il tuo weekend o il tuo soggiorno a Pesaro godendo di tutti gli eventi di Websolute.",id:"656095900d5d91982799c400",blockType:"card"},{icon:{id:"6560a06954a910c2150ab7c9",alt:"pin",filename:"pin-1.svg",url:"https://design.wslabs.it/llm/default/llm-pin.svg",type:"image"},title:"Esplora Pesaro",body:"Chiedi informazioni sui luoghi di cultura della Città che hanno valso a Pesaro il titolo di Capitale Italiana della Cultura 2024.",id:"65609fe4152d35137e46286d",blockType:"card"},{icon:{id:"6560a07454a910c2150ab7d3",alt:"cerca",filename:"search.svg",url:"https://design.wslabs.it/llm/default/llm-search.svg",type:"image"},title:"Scopri il progetto",body:"Chiedi dettagli su come è nato il progetto Websolute, come funziona e quali sono le tante realtà virtuose del territorio coinvolte.",id:"65609fe8152d35137e46286e",blockType:"card"}],enableFeedback:!0}},en:{mode:"site",contents:{logo:{id:"6560a04654a910c2150ab7a9",alt:"logo Websolute",filename:"websolute-dot.svg",url:"https://design.wslabs.it/llm/default/websolute-dot.svg",type:"image"},collapsedWelcomeText:"👋 \n Hi, I'm your AI assistant",collapsedWelcomeTextHover:"Click me and let me advise you on what to do and see in Websolute.",shortWelcomeText:"Hi, I'm the AI ambassador of Websolute.",extendedWelcomeText:"Hi, I'm the AI Ambassador of Websolute. The more you tell me about what you like, the more I will be able to help you.",disclaimer:"The answers you will receive are created automatically by processing both the information on our site and other information on the web. Always check the correctness of the information provided.",sampleInputTexts:[{sampleInputText:"What events can I walk to from the train station?"},{sampleInputText:"Shows upcoming photography events"},{sampleInputText:"Who participates in Websolute?"}],layoutBuilder:[{icon:{id:"6560a05454a910c2150ab7b4",alt:"itinerario",filename:"itinerary-1.svg",url:"https://design.wslabs.it/llm/default/llm-itinerary.svg",type:"image"},title:"Plan an itinerary",body:"Ask for support to organize your weekend or your stay in Pesaro enjoying all the events of Websolute.",id:"656095900d5d91982799c400",blockType:"card"},{icon:{id:"6560a06954a910c2150ab7c9",alt:"pin",filename:"pin-1.svg",url:"https://design.wslabs.it/llm/default/llm-pin.svg",type:"image"},title:"Explore Pesaro",body:"Ask for information on the cultural places of the city that earned Pesaro the title of Italian Capital of Culture 2024.",id:"65609fe4152d35137e46286d",blockType:"card"},{icon:{id:"6560a07454a910c2150ab7d3",alt:"cerca",filename:"search.svg",url:"https://design.wslabs.it/llm/default/llm-search.svg",type:"image"},title:"Discover the project",body:"Ask for details on how the Websolute project was born, how it works and which are the many virtuous local realities involved.",id:"65609fe8152d35137e46286e",blockType:"card"}],enableFeedback:!0}}},hI=[{chunks:["markdown\n"],role:"user"},{chunks:[{type:"text",text:"Markdown\n"},{type:"text",text:" \n"},{type:"text",text:"Header 1 \n"},{type:"text",text:"======== \n"},{type:"text",text:" \n"},{type:"text",text:"Header 2 \n"},{type:"text",text:"-------- \n"},{type:"text",text:" \n"},{type:"text",text:"### Header 3 ### \n"},{type:"text",text:"#### Header 4 #### \n"},{type:"text",text:"##### Header 5 ##### \n"},{type:"text",text:"###### Header 6 ###### \n"},{type:"text",text:" \n"},{type:"text",text:"### Phrase Emphasis \n"},{type:"text",text:" \n"},{type:"text",text:"*italic* \n"},{type:"text",text:"**bold** \n"},{type:"text",text:"_italic_ \n"},{type:"text",text:"__bold__ \n"},{type:"text",text:" \n"},{type:"text",text:"### Links \n"},{type:"text",text:" \n"},{type:"text",text:'An [example](https://www.gmail.com/ "Title") \n'},{type:"text",text:" \n"},{type:"text",text:"### Images \n"},{type:"text",text:' \n'},{type:"text",text:" \n"},{type:"text",text:"### Lists \n"},{type:"text",text:" \n"},{type:"text",text:"1. Foo \n"},{type:"text",text:"2. Bar \n"},{type:"text",text:" \n"},{type:"text",text:"* A list item. \n"},{type:"text",text:" With multiple paragraphs. \n"},{type:"text",text:"* Bar \n"},{type:"text",text:"* Abacus \n"},{type:"text",text:" * answer \n"},{type:"text",text:"* Bubbles \n"},{type:"text",text:" 1. bunk \n"},{type:"text",text:" 2. bupkis \n"},{type:"text",text:" * BELITTLER \n"},{type:"text",text:" 3. burper \n"},{type:"text",text:"* Cunning \n"},{type:"text",text:" \n"},{type:"text",text:"### Blockquotes \n"},{type:"text",text:"> Email-style angle brackets \n"},{type:"text",text:"> are used for blockquotes. \n"},{type:"text",text:" \n"},{type:"text",text:"> > And, they can be nested. \n"},{type:"text",text:" \n"},{type:"text",text:"> ### Headers in blockquotes \n"},{type:"text",text:"> \n"},{type:"text",text:"> * You can quote a list. \n"},{type:"text",text:"> * Etc. \n"},{type:"text",text:" \n"},{type:"text",text:"### Code Spans \n"},{type:"text",text:"`<code>` spans are delimited by backticks. \n"},{type:"text",text:" \n"},{type:"text",text:"You can include literal backticks like `` `this` ``. \n"},{type:"text",text:" \n"},{type:"text",text:"### Preformatted Code Blocks \n"},{type:"text",text:" \n"},{type:"text",text:"This is a normal paragraph. \n"},{type:"text",text:" \n"},{type:"text",text:" This is a preformatted \n"},{type:"text",text:" code block. \n"},{type:"text",text:" \n"},{type:"text",text:"``` \n"},{type:"text",text:"function sum(a, b) { \n"},{type:"text",text:" return a + b; \n"},{type:"text",text:"} \n"},{type:"text",text:"``` \n"},{type:"text",text:" \n"},{type:"text",text:"### Horizontal Rules \n"},{type:"text",text:" \n"},{type:"text",text:"--- \n"},{type:"text",text:" \n"},{type:"text",text:"* * * \n"},{type:"text",text:" \n"},{type:"text",text:"- - - - \n"},{type:"text",text:" \n"},{type:"text",text:"### Manual Line Breaks \n"},{type:"text",text:" \n"},{type:"text",text:"Roses are red, \n"},{type:"text",text:"Violets are blue. \n"},{type:"text",text:" \n"}],role:"assistant"},{chunks:["events\n"],role:"user"},{chunks:["Fammi pensare...\n","ecco una lista di eventi:\n",{type:"eventItem",id:"xxxx",title:"Percorri la Bicipolitana di Pesaro con i tuoi bambini",abstract:"Un’esperienza da non perdere se visiterai la città con i bambini, noleggia la tua bici e esplora Pesaro.",place:"Pesaro",url:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/bicipolitana.jpg",date:"15-16 giugno 2024",time:"ore 20:00"},{type:"eventItem",id:"100",title:"Non perderti The Magic Castle di Gradara!",abstract:"The Magic Castle, l’evento per famiglie che ogni estate trasforma magicamente lo splendido borgo di Gradara.",place:"Gradara",url:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/gradara.jpg",date:"15-16 giugno 2024",time:"ore 20:00"},{type:"eventItem",id:"xxxx",title:"Trekking e panorami mozzafiato al San Bartolo",abstract:"Scendendo lungo la costa Adriatica, si erge il San Bartolo, un meraviglioso parco naturale affacciato sul mare.",place:"Parco San Bartolo",url:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/san-bartolo.jpg",date:"15-16 giugno 2024",time:"ore 20:00"},"Per qualunque altra cosa sono qui. 🙂\n"],role:"assistant"},{chunks:["event\n"],role:"user"},{chunks:["Dammi un momento...\n","ecco un evento:\n",{type:"event",id:"234",title:"Rossini Virtual 'Experience': esplora casa Rossini in AR",abstract:"Lasciati guidare dallo stesso Gioacchino nella sua casa e scopri la sua storia attraverso giocosi aneddoti in AR.",place:"Pesaro",url:"https://design.wslabs.it/llm",image:"https://picsum.photos/id/103/800/600",date:"15-16 giugno 2024",time:"ore 20:00"},"Serve altro?\n"],role:"assistant"},{chunks:["pois\n"],role:"user"},{chunks:["Bene!\n","ecco alcuni punti di interesse:\n",{type:"poiItem",id:"111",title:"Title",abstract:"Lorem ipsum dolor sit amet.",place:"Place",image:"https://picsum.photos/id/102/800/600",url:"https://design.wslabs.it/llm",time:"time"},{type:"poiItem",id:"222",title:"Title",abstract:"Lorem ipsum dolor sit amet.",place:"Place",image:"https://picsum.photos/id/101/800/600",url:"https://design.wslabs.it/llm"},"Serve altro? 🙂\n"],role:"assistant"},{chunks:["poi\n"],role:"user"},{chunks:["Certo!\n","ecco un punto di interesse:\n",{type:"poiItem",id:"111",title:"Title",abstract:"Lorem ipsum dolor sit amet.",place:"Place",image:"https://design.wslabs.it/llm/default/rossini.jpg",url:"https://design.wslabs.it/llm",time:"time"},"Serve altro? 🙂\n"],role:"assistant"},{chunks:["tripadvisor\n"],role:"user"},{chunks:["Dammi un secondo...\n","ecco alcuni ristoranti per te:\n",{type:"tripadvisor",id:"xxxx",title:"L'Angolo di Mario",rating:4.8,reviews:2276,priceRange:"€€-€€€",cuisine:"Italiana, Pesce, Mediterranea",address:"Via Nazario Sauro, 61100 Pesaro PU",url:"https://design.wslabs.it/llm",book:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/tripadvisor-01.jpg"},{type:"tripadvisor",id:"xxxx",title:"L'Amo Osteria di Mare",rating:4.2,reviews:287,priceRange:"€€-€€€",cuisine:"Italiana, Pesce, Mediterranea",address:"Via Venturini 4/6, 61121 Pesaro PU",url:"https://design.wslabs.it/llm",book:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/tripadvisor-02.jpg"}],role:"assistant"}];function pI(e,n){let t=e in gI?gI[e]:gI,i=e in hI?hI[e]:hI;if("object"==typeof n){if(n.app){t=u(t,e in n.app?n.app[e]:n.app)}if(n.thread){i=e in n.thread?n.thread[e]:n.thread}}return{app:t,thread:i}}function mI(e,n,t){const i=pI(n,t).thread[e];if(i&&"user"===i.role)return i.chunks[0]}class yI{set lastUnparsedText(e){this.lastUnparsedText_=e}get lastUnparsedText(){return this.lastUnparsedText_}constructor(){this.decoder_=new TextDecoder("utf-8"),this.lastUnparsedText_=""}bytesToChunks(e){let n=[],t="";try{t=this.decoder_.decode(e),n=this.textToChunks(t)}catch(e){console.log("decodedChunk.error",e,t)}return n}textToChunks(e){let n=[],t="";try{if(e.match(/(",|},|],)$/)){let i=this.lastUnparsedText+e;i.match(/^(,)/)&&(console.log("textToChunks.error",`incorrect line starting [${e}]`),i=i.substring(1));t=`[${i.replace(/(,$)/,"")}]`;n=JSON.parse(t),this.lastUnparsedText=""}else console.log("textToChunks.error",`incorrect line ending [${e}]`),this.lastUnparsedText+=e}catch(n){console.log("textToChunks.error",n),this.lastUnparsedText+=e}return n}decodeChunk(e){return function(e){return"string"===e.type}(e)?{type:"text",text:e.content}:e}decodeMessages(e){return e.map(e=>{if(Array.isArray(e.content))return Object.assign(Object.assign({},e),{chunks:e.content.map(e=>this.decodeChunk(e))});if(e.content.lastIndexOf(",")===e.content.length-1){this.lastUnparsedText="";const n=Object.assign(Object.assign({},e),{chunks:this.chunksToChunkItems(this.textToChunks(e.content))});if(0===n.chunks.length){const n={type:"text",text:e.content};return Object.assign(Object.assign({},e),{chunks:[n],content:[n]})}return n}{const n={type:"text",text:e.content};return Object.assign(Object.assign({},e),{chunks:[n],content:[n]})}})}chunksToResponse(e){const n={chunks:[],threadId:"",messageId:""};return n.chunks=this.chunksToChunkItems(e,n),n}logChunks(e){e.forEach(e=>{if(o(e))switch(e.type){case"error":console.error("LlmMessageService.error",e);break;case"log":console.log("LlmMessageService.log",e);break;case"header":console.log("LlmMessageService.header",e);break;case"info":console.log("LlmMessageService.info",e);break;case"end":console.log("LlmMessageService.end",e)}})}chunksToChunkItems(e,n){const t=[];return e.forEach(e=>{let i=t[t.length-1];if(o(e))switch(e.type){case"log":case"end":break;case"error":t.push(e);break;case"header":{const t=wd(e,["type"]);n&&Object.assign(n,t)}break;case"info":n&&(n.threadId=e.threadId||n.threadId);break;case"action":case"actionItem":i&&"actionGroup"===i.type?i.items.push(e):t.push({type:"actionGroup",items:[e]});break;case"cardItem":i&&"cardGroup"===i.type?i.items.push(e):t.push({type:"cardGroup",items:[e]});break;case"productItem":i&&"productGroup"===i.type?i.items.push(e):t.push({type:"productGroup",items:[e]});break;case"eventItem":i&&"eventGroup"===i.type?i.items.push(e):t.push({type:"eventGroup",items:[e]});break;case"poiItem":i&&"poiGroup"===i.type?i.items.push(e):t.push({type:"poiGroup",items:[e]});break;case"tripadvisor":case"tripadvisorItem":i&&"tripadvisorGroup"===i.type?i.items.push(Object.assign(Object.assign({},e),{type:"tripadvisorItem"})):t.push({type:"tripadvisorGroup",items:[Object.assign(Object.assign({},e),{type:"tripadvisorItem"})]});break;default:if("string"==typeof e.type&&e.type.match(/Item$/)){const n=e.type.replace("Item",""),a=`${n}Group`;i&&i.type===a?i.items.push(e):t.push({type:a,items:[Object.assign(Object.assign({},e),{type:n})]})}else t.push(e)}else if("string"==typeof e)if(i||(i={type:"text",text:""},t.push(i)),JN(i)){const n=i;if(t.indexOf(n)>0)n.text+=e;else if(n.text.includes("\n"))t.push({type:"text",text:e});else if(e.includes("\n")){const i=e.split("\n");i.forEach((e,a)=>{const o=i.length>a+1?"\n":"";0===a?n.text+=e+o:e.length>0&&t.push({type:"text",text:e+o})})}else n.text+=e}else t.push({type:"text",text:e})}),t}static decodeThread(e){const n=new yI;return e?{messages:n.decodeMessages(e.messages),threadId:e.threadId}:void 0}}class fI extends yI{constructor(e){super(),this.options=e}get origin(){return this.options.endpoint||window.location.origin}get locale(){return this.options.locale||""}get url(){return`${this.origin}/api/llm/message?locale=${this.locale}`}get appKey(){return this.options.appKey||""}get apiKey(){return this.options.apiKey||""}get test(){return this.options.test||!1}addUserMessage(e,n,t){return xd(this,void 0,void 0,function*(){if(this.test&&(n=mI(e.length,this.locale,this.test)||n),t){const i=[{type:"text",text:n},{type:t.type,url:t.url}],a={chunks:i,content:i,role:"user"};return[...e,a]}{const t={chunks:[{type:"text",text:n}],content:n,role:"user"};return[...e,t]}})}getRequest(e,n){return xd(this,void 0,void 0,function*(){return{appKey:this.appKey,apiKey:this.apiKey,messages:e.filter(e=>e.chunks.filter(e=>"string"==typeof e.type&&!["header","info","end","formRequest","formRecap","formRecapSuccess","formRecapError"].includes(e.type)).length>0).map(e=>({role:e.role,content:e.content})),threadId:n.threadId,systemContext:n.systemContext}})}sendMessage(e,n,t,i){return xd(this,void 0,void 0,function*(){var a,o,r,s;if(this.test)return this.mockMessage(e,n,t,i);this.abort();const u=new AbortController,l=[];this.lastMessage_={aborter:u,decodedChunks:l,onEnd:t};const c=u.signal,d=this.url;try{const u=yield fetch(d,{method:"POST",body:JSON.stringify(e),headers:{"Content-Type":"application/json"},signal:c});if(u.body){const e=u.headers.get("x-thread-id")||"",d=u.headers.get("x-msg-id")||"",m=[{type:"header",threadId:e,messageId:d}];this.logChunks(m),l.push(...m),"function"==typeof i&&i(m);const y=u.body.getReader();this.lastMessage_.reader=y,this.lastUnparsedText="";try{for(var g,h=!0,p=Sd(MI(y));!(a=(g=yield p.next()).done);h=!0){s=g.value,h=!1;const e=s;if(!c.aborted){const t=this.bytesToChunks(e);this.logChunks(t),l.push(...t);const a=this.chunksToResponse(l);"function"==typeof n&&n(a),"function"==typeof i&&i(t)}}}catch(e){o={error:e}}finally{try{h||a||!(r=p.return)||(yield r.call(p))}finally{if(o)throw o.error}}if(!c.aborted&&"function"==typeof t){const e=this.chunksToResponse(l);t(e)}}}catch(n){if(console.warn("MessageService.sendMessage.error",n),"cancel"===n){if("function"==typeof t){const n=this.chunksToResponse(l);n.threadId=n.threadId||e.threadId||"unknownThreadId",t(n)}return}let i="string"==typeof n?n:JSON.stringify(n,null,2);if(n instanceof TypeError&&(i="TypeError: Browser may not support async iteration"),"function"==typeof t){const e={type:"error",error:i};l.push(e);const n=this.chunksToResponse(l);t(n)}}})}mockMessage(e,n,t,i){return xd(this,void 0,void 0,function*(){var a,o,r,s;this.abort();const u=new AbortController,{messages:l}=e;if(!l||0===l.length)throw{status:400,message:"Bad Request: messages is missing"};let c=e.threadId;if(!c&&l.length>1)throw{status:400,message:"Bad Request: threadId is missing"};c||(c=FN());const d=[],g=[{type:"header",threadId:c,messageId:FN()}];this.logChunks(g),d.push(...g),"function"==typeof i&&i(g),this.lastMessage_={aborter:u,decodedChunks:d,onEnd:t};const h=u.signal,p=function(e,n,t){const i=pI(n,t),a=[],o=i.thread[e]||{chunks:["I'm a teapot.\n"],role:"assistant"};return o&&"assistant"===o.role&&o.chunks.forEach(e=>{if("string"==typeof e)a.push(...e.split(" ").map((e,n,t)=>`${e}${n<t.length-1?" ":""}`));else if("string"===e.type){const n=e.content;n&&a.push(...n.split(" ").map((e,n,t)=>`${e}${n<t.length-1?" ":""}`))}else a.push(e)}),a}(e.messages.length,this.locale,this.test);p.unshift({type:"info",threadId:c}),p.push({type:"end"});try{let e;const u=function(){return xd(this,void 0,void 0,function*(){const n=new TextEncoder;yield new Promise(e=>setTimeout(e,1e3));for(const t of p)if(!h.aborted){const i=n.encode(`${JSON.stringify(t)},`);e.enqueue(i),yield new Promise(e=>setTimeout(e,"string"==typeof t?40:500))}h.aborted||e.close()})},l=new ReadableStream({start(n){e=n,u()},pull(e){},cancel(){}}).getReader();this.lastMessage_.reader=l,this.lastUnparsedText="";try{for(var m,y=!0,f=Sd(MI(l));!(a=(m=yield f.next()).done);y=!0){s=m.value,y=!1;const e=s;if(!h.aborted){const t=this.bytesToChunks(e);this.logChunks(t),d.push(...t);const a=this.chunksToResponse(d);"function"==typeof n&&n(a),"function"==typeof i&&i(t)}}}catch(e){o={error:e}}finally{try{y||a||!(r=f.return)||(yield r.call(f))}finally{if(o)throw o.error}}if(!h.aborted&&"function"==typeof t){const e=this.chunksToResponse(d);t(e)}}catch(e){console.error("MessageService.mockMessage.error",e);let n="string"==typeof e?e:JSON.stringify(e,null,2);if(e instanceof TypeError&&(n="TypeError: Browser may not support async iteration"),"function"==typeof t){const e={type:"error",error:n};d.push(e);const i=this.chunksToResponse(d);t(i)}}})}abort(){const e=this.lastMessage_;if(e&&e.aborter&&!e.aborter.signal.aborted){try{e.reader&&e.reader.cancel().catch(e=>{console.log("MessageService.abort.reader.error",e)}),e.aborter.abort("cancel")}catch(e){console.log("MessageService.abort.error",e)}if("function"==typeof e.onEnd){const n=this.chunksToResponse(e.decodedChunks);e.onEnd(n)}}}shouldAddFormRequest(e){const n=this.test&&void 0!==mI(e.length,this.locale,this.test),t=e.find(e=>void 0!==e.chunks.find(e=>"formRequest"===e.type)),i=e.filter(e=>e.chunks.find(e=>"string"==typeof e.type&&["event","eventItem","eventGroup","poi","poiItem","poiGroup","tripadvisor","tripadvisorItem","tripadvisorGroup"].includes(e.type)));return!n&&!t&&i.length>1}}function MI(e){return{[Symbol.asyncIterator](){return vd(this,arguments,function*(){let n=yield Nd(e.read());for(;!n.done;)yield yield Nd(n.value),n=yield Nd(e.read())})}}}class jI{constructor(e){this.options=e}get apiUrl(){return`${this.options.endpoint||(l?window.location.origin:process.env.STORE_URL)}/api`}get baseUrl(){return`${this.apiUrl}/llm`}get(e){return xd(this,void 0,void 0,function*(){const n=`${this.baseUrl}${e}${-1!==e.indexOf("?")?"&":"?"}locale=${this.options.locale}`;try{const e=yield fetch(n,{method:"GET",headers:{"Content-Type":"application/json"}});if(e.ok){return yield e.json()}return void console.error("useLlm.api.get",n,e)}catch(e){return void console.error("useLlm.api.get",n,e)}})}post(e,n){return xd(this,void 0,void 0,function*(){const t=this.options,i=`${this.baseUrl}${e}${-1!==e.indexOf("?")?"&":"?"}locale=${t.locale}`;try{const e=yield fetch(i,{method:"POST",body:JSON.stringify(Object.assign(Object.assign({},t),n)),headers:{"Content-Type":"application/json"}});if(e.ok){return yield e.json()}return void console.error("useLlm.api.post",e,i)}catch(e){return void console.error("useLlm.api.post",e,i)}})}fetch(e,n){return xd(this,void 0,void 0,function*(){const t=this.options,i=`${this.apiUrl}${e}${-1!==e.indexOf("?")?"&":"?"}locale=${t.locale}`;try{const e=yield fetch(i,n);if(e.ok){return yield e.json()}return void console.error("useLlm.api.fetch",e,i)}catch(e){return void console.error("useLlm.api.fetch",e,i)}})}getInfo(e){return xd(this,void 0,void 0,function*(){if(this.options.test)return this.getInfoMock(e);return yield this.post("/info",e)})}upload(e){return xd(this,void 0,void 0,function*(){if(this.options.test){return{id:e.file.name,name:e.file.name,filename:e.file.name,mimeType:e.file.type,filesize:e.file.size,createdAt:(new Date).toISOString(),updatedAt:(new Date).toISOString(),url:0===e.file.type.indexOf("image")?e.base64:`//${e.file.name}`,type:0===e.file.type.indexOf("image")?"image":"file"}}const n=new FormData;Object.entries(this.options).forEach(e=>{n.set(e[0],String(e[1]))}),n.set("file",e.file,e.file.name);const t=yield this.fetch("/llmUserUpload/upload",{method:"POST",body:n});return t&&Object.assign(Object.assign({},t),{type:0===t.mimeType.indexOf("image")?"image":"file"})})}decorateHistory(e){return xd(this,arguments,void 0,function(e,n){var t=this;return void 0===n&&(n="default"),function*(){if(e.length>0){const i=e.reduce((e,n)=>(e.includes(n.threadId)||e.push(n.threadId),e),[]),a={};for(const e of i){const n=yield t.getInfo({threadId:e});if(null==n?void 0:n.thread){const t=yI.decodeThread(n.thread);t&&(a[e]=t)}}const o=e.map((e,i)=>{let{threadId:o,messageId:r}=e;const s=a[o];if(s){s.messages.forEach(e=>{"assistant"===e.role&&(e.threadId=o,e.messageId||"page"===n||(e.messageId=r))});const e=t.options.test?i+1:s.messages.findIndex(e=>e.messageId===r);if(-1!==e){const n=s.messages.slice(0,e+1);t.options.test&&(n[e].threadId=o,n[e].messageId=r,n[e].createdAt=(new Date).toISOString());return TI(n)[0]}return}}).filter(e=>void 0!==e);return o.sort((e,n)=>e.createdAt&&n.createdAt?new Date(n.createdAt).getTime()-new Date(e.createdAt).getTime():0),"page"!==n?o.reduce((e,n)=>(-1===e.findIndex(e=>e.threadId===n.threadId)&&e.push(n),e),[]):o}return[]}()})}getInfoMock(e){return xd(this,void 0,void 0,function*(){const{locale:n,appKey:t,apiKey:i,threadId:a}=Object.assign(Object.assign({},this.options),e);if("string"!=typeof n)throw{status:400,message:"Bad Request: locale is missing"};if(!t)throw{status:401,message:"Unauthorized: appKey is missing"};if(!i)throw{status:401,message:"Unauthorized: apiKey is missing"};const o=function(e,n,t){const i=pI(e,t),a=i.app;if(n){const e=i.thread;a.thread={messages:e.map(e=>{let n="";return 1===e.chunks.length&&"string"==typeof e.chunks[0]?n=e.chunks[0]:(n=e.chunks.map(e=>JSON.stringify("string"==typeof e?{type:"text",text:e}:e)).join(","),n=n.replace(/\n$/,"")+","),{role:e.role,content:n}}),threadId:n}}return a}(n,a,this.options.test);return o})}postSummary(e){return xd(this,void 0,void 0,function*(){if(this.options.test)return this.postSummaryMock(e);return yield this.post("/summary",e)})}postSummaryMock(e){return xd(this,void 0,void 0,function*(){const{locale:n,appKey:t,apiKey:i,threadId:a}=this.options;if("string"!=typeof n)throw{status:400,message:"Bad Request: locale is missing"};if(!t)throw{status:401,message:"Unauthorized: appKey is missing"};if(!i)throw{status:401,message:"Unauthorized: apiKey is missing"};if(!a)throw{status:400,message:"Bad Request: threadId is missing"};const{email:o,html:r}=e;if(!o)throw{status:400,message:"Bad Request: email is missing"};if(!r)throw{status:400,message:"Bad Request: html is missing"};return{code:"SENT"}})}postFeedback(e){return xd(this,void 0,void 0,function*(){if(this.options.test)return this.postFeedbackMock(e);return yield this.post("/feedback",e)})}postFeedbackMock(e){return xd(this,void 0,void 0,function*(){const{locale:n,appKey:t,apiKey:i}=this.options;if("string"!=typeof n)throw{status:400,message:"Bad Request: locale is missing"};if(!t)throw{status:401,message:"Unauthorized: appKey is missing"};if(!i)throw{status:401,message:"Unauthorized: apiKey is missing"};const{threadId:a,messageId:o,feedbackRating:r}=e;if(!a)throw{status:400,message:"Bad Request: threadId is missing"};if(!o)throw{status:400,message:"Bad Request: messageId is missing"};if(!r)throw{status:400,message:"Bad Request: feedbackRating is missing"};return{code:"SENT"}})}}class bI{constructor(){this.events=new Map}on(e,n){const t=this.events.get(e)||[];t.push(n),this.events.has(e)||this.events.set(e,t)}off(e,n){if(this.events.has(e)){const t=this.events.get(e).filter(e=>e!==n);this.events.set(e,t)}}emit(e){for(var n=arguments.length,t=new Array(n>1?n-1:0),i=1;i<n;i++)t[i-1]=arguments[i];this.events.has(e)&&this.events.get(e).forEach(e=>{e(...t)})}}class wI extends bI{get reader(){return this.reader_||(this.reader_=new vI(this)),this.reader_}set synthesisMode(e){if(this.synthesisMode_!==e)switch(this.synthesisMode_=e,this.textToSpeech_&&this.textToSpeech_.cancel(),e){case"default":this.textToSpeech_=new xI(this.lang);break;case"elevenlabs":this.textToSpeech_=new LI(this.textToSpeechApiKey,this.textToSpeechVoiceId);break;default:this.textToSpeech_=void 0}}get synthesisMode(){return this.synthesisMode_}set recognitionMode(e){if(this.recognitionMode_!==e)if(this.recognitionMode_=e,this.speechToText_&&this.speechToText_.stop(),"default"===e)this.speechToText_=new NI(e=>{this.emit("result",e)});else this.speechToText_=void 0}get recognitionMode(){return this.recognitionMode_}get hasTextToSpeechSupport(){return!("none"===this.synthesisMode||!this.textToSpeech_)&&this.textToSpeech_.hasSupport}get hasSpeechToTextSupport(){return!("none"===this.recognitionMode||!this.speechToText_)&&this.speechToText_.hasSupport}get hasSupport(){return this.hasTextToSpeechSupport&&this.hasSpeechToTextSupport}constructor(){super(),this.synthesisMode_="none",this.recognitionMode_="none",this.lang="it",this.enabled=!1}log(){for(var e=arguments.length,n=new Array(e),t=0;t<e;t++)n[t]=arguments[t];console.log("Speech",...n)}setEnabled(e){this.enabled=e,e||this.textToSpeech_&&this.textToSpeech_.cancel()}speak(e){e&&this.enabled&&this.textToSpeech_&&this.textToSpeech_.speak(e)}cancel(){try{this.textToSpeech_&&this.textToSpeech_.cancel()}catch(e){console.log("Speech.cancel.error",e)}}recognizeStart(){this.speechToText_&&this.speechToText_.start(this.lang)}recognizeStop(){this.speechToText_&&this.speechToText_.stop()}}class xI{constructor(e){this.chunks_=[],this.lang="it",this.speaking=!1,this.lang=e}get pitch(){return 1}get rate(){return 1}get volume(){return 1}get voices(){if(this.hasSupport){const e=this.synthesis.getVoices().sort((e,n)=>{const t=e.name.toUpperCase(),i=n.name.toUpperCase();return t<i?-1:t==i?0:1});return e}return[]}get voice(){const e=this.voices;let n=e.find(e=>0===e.lang.toLowerCase().indexOf(this.lang)&&-1===e.name.toLowerCase().indexOf("natural"));return!n&&e.length>0&&(n=e.find(e=>0===e.lang.toLowerCase().indexOf("en")&&-1===e.name.toLowerCase().indexOf("natural"))),n}get synthesis(){return window.speechSynthesis||window.webkitSpeechSynthesis}get hasSupport(){return l&&null!=this.synthesis}speak(e){if(!this.hasSupport)return this.unsupported();const n=this.synthesis;if(n.speaking)return void this.chunks_.push(e);n.cancel();const t=this.voice;if(!t)return void console.warn("DefaultTextToSpeech.speak","no available voice found");const i=this.pitch,a=this.rate,o=this.volume,r=new SpeechSynthesisUtterance(e);r.onend=e=>{if(this.chunks_.length>0){const e=this.chunks_.shift();e&&this.speak(e)}},r.onerror=e=>{console.warn("DefaultTextToSpeech.speak.onerror",e)},r.voice=t,r.pitch=i,r.rate=a,r.volume=o,n.speak(r)}cancel(){this.chunks_=[],this.hasSupport&&this.synthesis.speaking&&this.synthesis.cancel()}unsupported(){l&&this.log("Speech Synthesis not supported on this device")}log(){for(var e=arguments.length,n=new Array(e),t=0;t<e;t++)n[t]=arguments[t];console.log("DefaultTextToSpeech",...n)}}class LI{get hasSupport(){return!0}constructor(e,n){this.chunks_=[],this.lang="it",this.speaking=!1,this.apiKey=e,this.voiceId=n}speak(e){if(!this.apiKey)return void console.error("ElevenlabsTextToSpeech.error: missing apiKey!");if(!this.voiceId)return void console.error("ElevenlabsTextToSpeech.error: missing voiceId!");if(this.speaking)return void this.chunks_.push(e);this.speaking=!0;const n=new AudioContext,t={method:"POST",headers:{"xi-api-key":this.apiKey,"Content-Type":"application/json"},body:JSON.stringify({voice_settings:{stability:1,similarity_boost:1},text:e,model_id:"eleven_multilingual_v2"})};fetch(`https://api.elevenlabs.io/v1/text-to-speech/${this.voiceId}?output_format=mp3_22050_32`,t).then(e=>e.arrayBuffer()).then(e=>n.decodeAudioData(e)).then(e=>new Promise((t,i)=>{const a=this.audioSource_=n.createBufferSource();a.buffer=e,a.connect(n.destination),a.start(n.currentTime),a.addEventListener("ended",()=>{this.audioSource_=void 0,t(a)}),a.addEventListener("error",e=>{this.audioSource_=void 0,i(e)})})).then(e=>{console.log("ElevenlabsTextToSpeech.speak.success",e)}).catch(e=>{console.error("ElevenlabsTextToSpeech.speak.error",e)}).finally(()=>{if(this.speaking=!1,this.chunks_.length>0){const e=this.chunks_.shift();e&&this.speak(e)}})}cancel(){this.chunks_=[],this.speaking&&(this.audioSource_&&(this.audioSource_.stop(),this.audioSource_=void 0),this.speaking=!1)}}class NI{constructor(e){this.lang="it",this.enabled=!1,this.recognizerStarted_=!1,this.callback=e}log(){for(var e=arguments.length,n=new Array(e),t=0;t<e;t++)n[t]=arguments[t];console.log("Speech",...n)}start(e){if(!this.hasSupport)return this.unsupported();if(this.recognizerStarted_)return;const n=this.recognizer;n.lang=e,n.start()}stop(){if(!this.hasSupport)return this.unsupported();setTimeout(()=>{if(this.recognizerStarted_){this.recognizer.stop()}},1e3)}onResult(e){const n=e.results[e.resultIndex],t=Array.from(n).reduce((e,n)=>e?n.confidence>e.confidence?n:e:n,void 0),i=t?t.transcript:"";this.callback(i)}unsupported(){l&&this.log("Speech Recognition not supported on this device")}get recognitionEvent(){return window.SpeechRecognitionEvent||window.webkitSpeechRecognitionEvent}get grammarList(){return window.SpeechGrammarList||window.webkitSpeechGrammarList}get recognition(){return window.SpeechRecognition||window.webkitSpeechRecognition}get hasSupport(){return l&&null!=this.recognition}get recognizer(){if(this.recognizer_)return this.recognizer_;{const e=new this.recognition;return e.lang=this.lang,e.continuous=!0,e.interimResults=!1,e.maxAlternatives=1,e.addEventListener("start",()=>{this.recognizerStarted_=!0}),e.addEventListener("end",()=>{this.recognizerStarted_=!1}),e.addEventListener("result",e=>{this.onResult(e)}),this.recognizer_=e,e}}}class vI{constructor(e){this.buffer_="",this.chunks=[],this.speech=e}markdownToChunk(e){let n="";const t=l?new DOMParser:void 0;return Px.parse(e,{walkTokens:e=>{var i;if("text"===e.type)if(t){const a=null===(i=t.parseFromString(`<div>${e.text}</div>`,"text/html").firstElementChild)||void 0===i?void 0:i.innerText;n+=a}else n+=e.text}}),n}add(e){if(!this.speech.enabled)return;const n=e.match(/(:|\.|\?|!)/);if(n&&void 0!==n.index){const t=this.buffer_+=e.substring(0,n.index+1),i=n.index+1<e.length?e.substring(n.index+1):"";this.buffer_=i;const a=this.markdownToChunk(t),o=this.chunks;o.push(a),1===o.length&&this.speak()}else this.buffer_+=e}end(){if(!this.speech.enabled)return;const e=this.chunks,n=this.markdownToChunk(this.buffer_);this.buffer_="",n.trim().length>0&&e.push(n),e.length>0&&this.speak()}speak(){const e=this.speech;let n=this.chunks.join("");n=n.replace(/(\s+)/g," "),n&&(this.chunks=[],e.speak(n))}}const SI=e=>{const n=(e.plugins||[]).reduce((e,n)=>n(e),Object.assign({},e)),{apiKey:t,appKey:i,contexts:a,customTheme:s,endpoint:u,preview:c,test:d,threadId:g,decorateUrl:h,label:p,onAction:m}=n,y=wd(n,["apiKey","appKey","contexts","customTheme","endpoint","preview","test","threadId","decorateUrl","label","onAction"]),f=lI([s],e.defaultTheme),M=dI(f),j={asideEnabled:!1,blocks:Object.assign(Object.assign({},YN),y.blocks),components:Object.assign(Object.assign({},sI),y.components),contexts:a,history:[],hydrated:!1,locale:"en",maxFileSize:RN,messages:[],mimeTypes:GN,prompt:"",ready:!1,speakEnabled:!0,storageMode:y.storageMode||"local",storedHistory:[],streaming:!1,systemContext:Object.assign({},y.systemContext),theme:f,vars:M};let b;const w=new wI,x=(L=r(`llm-${i}`)).charAt(0).toLowerCase()+L.slice(1);var L;const N=Dd()(rg((a,r)=>Object.assign(Object.assign({},j),{actions:{getApi:()=>{const e=r(),{locale:n,threadId:a}=e;return new jI({apiKey:t,appKey:i,threadId:a,endpoint:u,locale:n,test:d,preview:c})},init:(o,h)=>xd(void 0,void 0,void 0,function*(){var p,m;const f=r(),M=new jI({apiKey:t,appKey:i,threadId:g||f.threadId,endpoint:u,locale:o,test:d,preview:c}),j=yield M.getInfo();if(!j)return;const b=j.contents.textToSpeechApiKey,x=j.contents.textToSpeechVoiceId,L=j.contents.disableSpeechSynthesis?"none":j.contents.synthesisMode||"default",N=j.contents.disableSpeechRecognition?"none":j.contents.recognitionMode||"default",v=f.speakEnabled;w.lang=o,w.enabled=v,w.textToSpeechApiKey=b,w.textToSpeechVoiceId=x,w.synthesisMode=L,w.recognitionMode=N,w.on("result",e=>xd(void 0,void 0,void 0,function*(){r().actions.setPrompt(e)}));const S=yI.decodeThread(j.thread),T=d?null===(m=null===(p=pI(o,d).app)||void 0===p?void 0:p.contents)||void 0===m?void 0:m.customTheme:{},D=lI([j.contents.customTheme,T,s],e.defaultTheme),k=D.mode,C=y.storageMode||j.contents.storageMode||"local",E=yield function(){for(var e=arguments.length,n=new Array(e),t=0;t<e;t++)n[t]=arguments[t];return xd(void 0,[...n],void 0,function(e){return void 0===e&&(e=[]),function*(){if("object"==typeof y.history&&"function"==typeof y.history.get)try{e=yield y.history.get()}catch(e){console.log("useLlm.getHistory.error",e)}return e}()})}(f.storedHistory),z=yield M.decorateHistory(E,k),I=dI(D);!function(e){if(l){const n=`<style id="llm-style">\n /**\n * websolute - llm generated vars\n */\n .llm {\n${Object.entries(e).map(e=>{let[n,t]=e;return`\n ${n}: ${t};`}).join("")}\n }\n </style>`,t=document.querySelector("#llm-style");null!==t&&t.remove(),document.head.insertAdjacentHTML("beforeend",n)}}(I);const A=Object.assign({app:j,history:z,instance:h,locale:o,ready:!0,recognitionMode:N,storageMode:C,storedHistory:E,synthesisMode:L,theme:D,threadId:g,vars:I,mimeTypes:j.contents.mimeTypes||GN,maxFileSize:j.contents.maxFileSize||RN},S),Y=Object.assign(Object.assign({},f),A);"function"==typeof n.onInit&&n.onInit(Y),a(()=>A)}),send:(e,n,s,l)=>xd(void 0,void 0,void 0,function*(){w.cancel();const h=r();let p;if(b=new fI({apiKey:t,appKey:i,endpoint:u,locale:h.locale,test:d}),h.upload){const e=new jI({apiKey:t,appKey:i,endpoint:u,locale:h.locale,preview:c,test:d,threadId:g});if(p=yield e.upload(h.upload),!p)return}const m=yield b.addUserMessage(h.messages,e,p);a(e=>({chunks:[],message:void 0,messages:m,prompt:"",streaming:!0,upload:void 0})),"function"==typeof n&&n();const M=yield b.getRequest(m,h);yield b.sendMessage(M,e=>{a(n=>({chunks:e.chunks})),"function"==typeof s&&s(e)},e=>{const n=[...e.chunks],t={chunks:n,content:"",createdAt:(new Date).toISOString(),messageId:e.messageId,role:"assistant",threadId:e.threadId},i=[...m,t];b&&b.shouldAddFormRequest(i)&&n.push({type:"formRequest"});const o=n.filter(e=>"string"==typeof e.type&&!["header","info","end","formRequest","formRecap","formRecapSuccess","formRecapError"].includes(e.type)),r=[];o.reduce((e,n)=>{const t=e.length>1&&e[e.length-2],i=e.length>1&&e[e.length-1];return t&&i&&"string"===n.type&&"string"===t.type&&"string"===i.type?i.content+=n.content:e.push(Object.assign({},n)),e},r),t.content=r.map(e=>JSON.stringify(e)).join(",")+",";const s=TI(i)[0];var u;u={threadId:s.threadId,messageId:s.messageId},xd(void 0,void 0,void 0,function*(){if("object"==typeof y.history&&"function"==typeof y.history.addItem)try{yield y.history.addItem(u)}catch(e){console.log("useLlm.addItemToHistory.error",e)}});let c=[s,...h.history];"page"!==f.mode&&(c=c.reduce((e,n)=>(-1===e.findIndex(e=>e.threadId===n.threadId)&&e.push(n),e),[])),a(n=>({chunks:void 0,history:c,message:t,messages:i,streaming:!1,threadId:e.threadId})),w.reader.end(),"function"==typeof l&&l(e)},e=>{const n=e.find(e=>o(e)&&"header"===e.type);n&&a(e=>({threadId:n.threadId}));const t=function(e){const n=[];return e.forEach(e=>{"string"==typeof e?n.push(e):"string"===e.type&&n.push(e.content)}),n}(e);t.forEach(e=>w.reader.add(e))})}),abort:()=>{w.cancel(),b&&(b.abort(),b=void 0)},setCurrentContext:e=>{const{systemContext:n}=r();a(t=>({currentContext:e,systemContext:Object.assign(Object.assign({},n),e.context)}))},setVars:e=>a(n=>({vars:Object.assign({},n.vars,e)})),setEmbed:(e,n)=>{const t=r().embed;(n||t===e)&&a(t=>({embed:n?e:void 0}))},setPrompt:e=>{var n;const t=((null===(n=r().app)||void 0===n?void 0:n.contents.promptTokenLimit)||8e3)/2;let i=0,o=!1;const s=e.split("").reduce((e,n)=>{const a=Boolean(n.match(/\W/));return a&&!o&&i++,o=a,i<t?e+n:e},"");s.length<e.length&&xb("Prompt token limit exceeded!"),a(e=>({prompt:s}))},hasSpeechSynthesisSupport:()=>w.hasTextToSpeechSupport,hasSpeechRecognitionSupport:()=>w.hasSpeechToTextSupport,toggleSpeak:()=>{a(e=>{const n=!e.speakEnabled;return w.setEnabled(n),{speakEnabled:n}})},toggleAside:()=>{a(e=>({asideEnabled:!e.asideEnabled}))},recognizeStart:()=>{r(),w.recognizeStart()},recognizeStop:()=>{r(),w.recognizeStop()},hasUploadSupport:()=>{var e;return!0===(null===(e=r().app)||void 0===e?void 0:e.contents.enableUpload)},addFile:e=>xd(void 0,void 0,void 0,function*(){var n;const{maxFileSize:t}=r(),i=null===(n=e.target)||void 0===n?void 0:n.files;try{if(i&&i.length>0){const n=i[0];if(!n)return void console.log("useLlm.addFile.error","file not found");if(n.size>t)return void xb(`Max file size exceeded ${function(e,n){if(void 0===n&&(n=2),!+e)return"0 Bytes";const t=n<0?0:n,i=Math.floor(Math.log(e)/Math.log(1024));return`${parseFloat((e/Math.pow(1024,i)).toFixed(t))} ${["Bytes","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"][i]}`}(t)}`);const o=0===n.type.indexOf("image")?yield function(e,n){return void 0===n&&(n=640),new Promise((t,i)=>{e.type.match(/image.*/)||i("not a valid image file");const a=new FileReader;a.onload=function(a){var o;if(null===(o=null==a?void 0:a.target)||void 0===o?void 0:o.result){const e=new Image;e.onload=function(a){const o=document.createElement("canvas");let r=e.width,s=e.height;r>s?r>n&&(s*=n/r,r=n):s>n&&(r*=n/s,s=n),o.width=r,o.height=s;const u=o.getContext("2d");if(u){u.drawImage(e,0,0,r,s);const n=o.toDataURL("image/jpeg");t(n)}else i("unable to create canvas 2d context")},e.src=a.target.result}else i(`unable to read file ${e.name}`)},a.readAsDataURL(e)})}(n):void 0;e.target.value=null;return a({upload:{file:n,base64:o}})}console.log("useLlm.addFile.error","file not found")}catch(e){console.log("useLlm.addFile.error","cannot parse file")}}),removeFile:()=>a({upload:void 0}),formRequest:e=>{const n=p(e?"llm.formRequestYes":"llm.formRequestNo"),t=[{chunks:[{type:"string",content:n}],content:n,role:"user"}];if(e){const e={chunks:[{type:"formRecap"}],content:"",role:"assistant",createdAt:(new Date).toISOString()};t.push(e)}a(e=>({messages:[...e.messages,...t]}))},formRecap:e=>{e&&console.warn("useLlm.formRecap",e);const n=[],t={chunks:[{type:e?"formRecapError":"formRecapSuccess"}],content:"",role:"assistant",createdAt:(new Date).toISOString()};n.push(t),a(e=>({messages:[...e.messages,...n]}))},decorateUrl:(e,n)=>xd(void 0,void 0,void 0,function*(){let t;return"function"==typeof h&&(t=(yield h(e))||void 0),t||n||"#"}),removeHistory:e=>{const n=r(),t=n.theme.mode;var i;i="page"===t?{threadId:e.threadId,messageId:e.messageId}:{threadId:e.threadId},xd(void 0,void 0,void 0,function*(){if("object"==typeof y.history&&"function"==typeof y.history.removeItem)try{yield y.history.removeItem(i)}catch(e){console.log("useLlm.removeItemFromHistory.error",e)}});const o=n.history.filter(n=>"page"===t?n.messageId!==e.messageId:n.threadId!==e.threadId);a(e=>({history:o,storedHistory:DI(o)}))},setHistory:e=>{a(n=>({threadId:e.threadId,message:e.assistant,messages:e.messages}))},onAction:e=>xd(void 0,void 0,void 0,function*(){if("function"==typeof m)return yield m(e)}),clear:()=>{const{abort:e}=r().actions;e(),a(e=>({message:void 0,messages:[],chunks:void 0,threadId:void 0,streaming:!1}))}}}),{name:x,storage:ag(()=>"session"===j.storageMode?sessionStorage:localStorage),onRehydrateStorage:()=>()=>{N.setState({hydrated:!0})},merge:(e,n)=>(e.app&&(n.app=Object.assign({},e.app)),e.threadId&&"session"===n.storageMode&&(n.threadId=e.threadId),n.storedHistory=e.storedHistory&&[...e.storedHistory],n.speakEnabled=e.speakEnabled||!1,w.enabled=n.speakEnabled,n.hydrated=!0,n),partialize:e=>{const n="session"===e.storageMode?["locale","speakEnabled","threadId"]:["locale","speakEnabled"],t=Object.fromEntries(Object.entries(e).filter(e=>{let[t]=e;return n.includes(t)}));return t.storedHistory=DI(e.history),t}}));return N};function TI(e){const n=[...e].reverse().reduce((n,t)=>{let i;return"assistant"===t.role?(i={messages:e,threadId:t.threadId,messageId:t.messageId,createdAt:t.createdAt,assistant:Object.assign(Object.assign({},t),{text:t.chunks.filter(e=>"text"===e.type).map(e=>e.text).join(" ")})},n.push(i)):n.length>0&&(i={user:Object.assign(Object.assign({},t),{text:t.chunks.filter(e=>"text"===e.type).map(e=>e.text).join(" ")})},Object.assign(n[n.length-1],i)),n},[]);return n.filter(e=>e.threadId&&e.messageId)}function DI(e){return e.map(e=>({threadId:e.threadId,messageId:e.messageId}))}let kI;const CI=ee.createContext(null);function EI(e){var{children:n}=e,t=wd(e,["children"]);const i=$j();t.embedded&&(t.dismissable=!1,t.opened=!0),t.preview&&(t.dismissable=!1,t.opened=!0,t.skipCustomIntro=!0);const a=ee.useRef();return a.current||(a.current=function(e){return kI||(kI=SI(e)),kI}(Object.assign(Object.assign({},t),{label:i}))),a.current&&ce.jsx(CI.Provider,{value:a.current,children:ce.jsx(uw,Object.assign({},t,{children:n}))})}function zI(e){const n=ee.useContext(CI);if(!n)throw new Error("Missing LlmContext.Provider in the tree");return tg(n,e)}const II=ee.forwardRef((e,n)=>{const t=ee.useRef(null),i=tb(),{locale:a}=Aj(),{Root:o,PageRoot:r}=zI(e=>e.components),{init:s,send:u,clear:l}=zI(e=>e.actions),c=zI(e=>e.ready),d=zI(e=>e.app),g=zI(e=>e.theme),h=zI(e=>e.embed),{initView:p,initIntersection:m,open:y,isOpened:f,setOpened:M}=lw(e=>e.actions),j=lw(e=>e.skipCustomIntro),b=lw(e=>e.idle),w=lw(e=>e.opened),x=lw(e=>e.introed),L=lw(e=>e.embedded),N=lw(e=>e.imperative),v=ee.useMemo(()=>({open:()=>{y()},isOpened:()=>f(),setOpened:e=>{M(e)},send:e=>{M(!0),u(e)},clear:()=>{l()}}),[y,f,M,u,l]);ee.useImperativeHandle(n,()=>v),ee.useEffect(()=>{s(a,v),p()},[s,a,v,p]),ee.useEffect(()=>{i&&c&&t.current&&m(t.current)},[i,c,m,t]),ee.useEffect(()=>{L||"page"===g.mode||(document.documentElement.style.overflow=w?"hidden":"auto")},[w,L,g.mode]);const S=!w&&!b&&!h&&!N||Boolean((null==d?void 0:d.contents.customIntro)&&!x),T=g.mode||"default",D=ee.useMemo(()=>({opened:w,embedded:L,customIntro:Boolean((null==d?void 0:d.contents.customIntro)&&!j),shouldShowTrigger:S,mode:T}),[w,L,null==d?void 0:d.contents.customIntro,j,S,T]);return i&&c?"page"===T?ce.jsxs(ce.Fragment,{children:[ce.jsx(r,Object.assign({ref:t},D)),ce.jsx(Cb,{theme:g.toaster})]}):ce.jsxs(ce.Fragment,{children:[ce.jsx(o,Object.assign({ref:t},D)),ce.jsx(Cb,{theme:g.toaster})]}):ce.jsx(ce.Fragment,{})});function AI(e){let{error:n,resetErrorBoundary:t}=e;return console.log("ErrorHandler.error",n),ce.jsx("div",{style:{minHeight:"100vh",background:"#101010",color:"#eeeeee"},children:ce.jsx("div",{children:ce.jsxs("div",{style:{display:"flex",gap:"1rem",alignItems:"flex-start"},children:[ce.jsx("div",{children:"Unhandled Runtime Error"}),ce.jsx("div",{children:n.message}),n.stack&&ce.jsx("div",{children:n.stack}),"function"==typeof t&&ce.jsx("button",{onClick:t,children:"Try again?"})]})})})}II.displayName="LlmComponent";var YI=[{id:"llm.skip",text:{en:"Skip to main content",it:"Vai al contenuto principale"}},{id:"llm.back",text:{en:"Back to website",it:"Torna al sito"}},{id:"llm.prompt",text:{en:"Type your question",it:"Digita la tua domanda"}},{id:"llm.enableSpeak",text:{en:"Enable text-to-speech",it:"Attiva sintesi vocale"}},{id:"llm.disableSpeak",text:{en:"Disable text-to-speech",it:"Disattiva sintesi vocale"}},{id:"llm.upload",text:{en:"Upload a file",it:"Aggiungi file"}},{id:"llm.tone",text:{en:"Change your tone of voice",it:"Cambia tono di voce"}},{id:"llm.dictate",text:{en:"Dictate",it:"Detta"}},{id:"llm.sendPrompt",text:{en:"Submit your question",it:"Invia la tua domanda"}},{id:"llm.stopResponse",text:{en:"Stop replying",it:"Interrompi la risposta"}},{id:"llm.question",text:{en:"Question",it:"Domanda"}},{id:"llm.answer",text:{en:"Answer",it:"Risposta"}},{id:"llm.button",text:{en:"Open",it:"Avvia"}},{id:"llm.disclaimer",text:{en:"The answers you will receive are created automatically by processing both the information on our site and other information on the web. Always check the correctness of the information provided.",it:"Le risposte che riceverai sono create automaticamente elaborando sia le informazioni presenti sul nostro sito che altre informazioni presenti sul web. Controlla sempre la correttezza delle informazioni fornite."}},{id:"llm.eventPretitle",text:{en:"Don't miss this event!",it:"Non perderti questo evento!"}},{id:"llm.tellMeMore",text:{en:"Tell me more",it:"Dimmi di più"}},{id:"llm.tellMeMoreAbout",text:{en:"Tell me more about",it:"Dimmi di più su"}},{id:"llm.goToWebsite",text:{en:"Go to website",it:"Vai al sito"}},{id:"llm.bookNow",text:{en:"Book now",it:"Prenota ora"}},{id:"llm.reviews",text:{en:"reviews",it:"recensioni"}},{id:"llm.availability",text:{en:"@availability items available",it:"Disponibilità @availability pezzi"}},{id:"llm.available",text:{en:"Available",it:"Disponibile"}},{id:"llm.soldOut",text:{en:"Sold out",it:"Esaurito"}},{id:"llm.formRequestTitle",text:{en:"Do you want me to email you all the information we talked about so you have a reminder?",it:"Vuoi che ti mandi tutte le informazioni di cui abbiamo parlato per email, così avrai un promemoria?"}},{id:"llm.formRequestYes",text:{en:"Yes",it:"Sì"}},{id:"llm.formRequestNo",text:{en:"No",it:"No"}},{id:"llm.formRecapTitle",text:{en:"Please fill the form",it:"Compila le informazioni qui sotto"}},{id:"llm.formRecapFullName",text:{en:"Full name",it:"Nome completo"}},{id:"llm.formRecapEmail",text:{en:"Email",it:"Email"}},{id:"llm.formRecapSend",text:{en:"Send",it:"Invia"}},{id:"llm.formRecapPrivacy",text:{en:"I agree to be contacted for marketing activities",it:"Acconsento a essere ricontattato per attività di marketing"}},{id:"llm.formRecapSuccess",text:{en:"Excellent, you will find everything in your inbox, for anything else you know where to find me, I will always be happy to talk to you. 👋",it:"Ottimo, troverai tutto nella tua casella di posta, per qualunque altra cosa sai dove potermi trovare, sarò sempre lieto di parlare con te. 👋"}},{id:"llm.formRecapError",text:{en:"Sorry, we were unable to send you the reminder you requested. 👋",it:"Siamo spiacenti, non siamo riusciti ad inviarti il promemoria richiesto. 👋"}},{id:"llm.feedbackTitle",text:{en:"Was this answer helpful to you?",it:"Questa risposta ti è stata utile?"}},{id:"llm.feedbackRating",text:{en:"Rating",it:"Valutazione"}},{id:"llm.feedbackMessage",text:{en:"Message",it:"Messaggio"}},{id:"llm.feedbackMessagePlaceholder",text:{en:"leave a note here.",it:"lascia una nota qui."}},{id:"llm.feedbackSend",text:{en:"Send feedback",it:"Invia feedback"}},{id:"llm.feedbackSent",text:{en:"👍 Thank you! Your feedback has been received.",it:"👍 Grazie! il tuo feedback è stato ricevuto."}},{id:"llm.feedbackError",text:{en:"Sorry, feedback could not be sent.",it:"Spiacenti, non è stato possibile inviare il feedback."}},{id:"llm.streamError",text:{en:"We're sorry, an error occurred. 😔",it:"Siamo spiacenti, si è verificato un errore. 😔"}},{id:"llm.showError",text:{en:"Show",it:"Mostra"}},{id:"llm.hideError",text:{en:"Hide",it:"Nascondi"}},{id:"llm.scrollToBottom",text:{en:"Scroll to bottom",it:"Scorri in fondo"}},{id:"llm.reasoning",text:{en:"reasoning...",it:"ragionamento..."}},{id:"llm.historyEmpty",text:{en:"There are no messages yet.",it:"Non ci sono ancora messaggi."}},{id:"llm.thinking",text:{en:"I'm thinking of an answer...",it:"Sto pensando a una riposta..."}},{id:"llm.newThread",text:{en:"Start a new chat",it:"Nuova chat"}}];const OI=e=>{var{locale:n,market:t,instance:i}=e,a=wd(e,["locale","market","instance"]);const o=ee.useRef(null),r=ee.useMemo(()=>{if(l){const e=function(){const e=document.querySelector("html"),n=null==e?void 0:e.getAttribute("lang");if(n){const e=n.toLowerCase().split("-");return{locale:e[0],market:e[1]||"ww"}}return}(),i=document.querySelector("title"),a=document.querySelector('meta[name="description"]'),o=document.querySelector('link[rel="canonical"]');return{locale:n||(null==e?void 0:e.locale)||"it",market:t||(null==e?void 0:e.market)||"ww",origin:window.origin,canonical:(null==o?void 0:o.getAttribute("href"))||window.location.href,title:i?i.innerText:"Untitled",description:(null==a?void 0:a.getAttribute("content"))||"",slug:window.location.pathname}}return{locale:n||"it",market:t||"ww",origin:"",canonical:"",title:"Untitled",description:"",slug:""}},[n,t]),s=void 0!==a.test?"https://bom-sample-basic-web-git-bom-llm-actarian.vercel.app":"https://platform.websolute.ai",u=a.endpoint||s,c={labels:QI(r.locale,YI,a.labels),locale:r.locale,locales:[{id:r.locale,title:r.locale}],market:r.market,markets:[{id:r.market,title:r.market}],menu:{},topLevelHrefs:{},topLevelRoutes:{}},d={locale:r.locale,market:r.market,title:r.title,abstract:r.description,category:{id:"homepage",title:"Homepage",slug:"",href:"/"},schema:"homepage",slug:r.slug,href:r.canonical,id:1,alternates:[],breadcrumb:[],canonical:r.canonical};return ee.useEffect(()=>{o.current&&i&&Object.assign(i,o.current)},[]),ce.jsx(cb,{FallbackComponent:AI,children:ce.jsx(Oj,{layout:c,children:ce.jsx(eb,{children:ce.jsx(ob,{page:d,children:ce.jsx(Pj,{extra:{},children:ce.jsx(EI,Object.assign({},a,{endpoint:u,children:ce.jsx(II,{ref:o})}))})})})})})};function QI(e,n,t){void 0===t&&(t=[]);const i=[...n.filter(e=>-1===t.findIndex(n=>n.id===e.id)),...t];return i.map(n=>{const t=m(n,e,"en");return{id:t.id,schema:"label",text:t.text}})}function ZI(e){const n=[],t=Array.isArray(e)?e:null!=(i=e)&&"function"==typeof i[Symbol.iterator]?e:[e];var i;for(const e of t){const t=e.querySelectorAll("llm-embed");for(const e of t)e.hasAttribute("data-llm")||n.push(e);e.tagName&&"llm-embed"===e.tagName.toLowerCase()&&!e.hasAttribute("data-llm")&&n.push(e)}return n}var _I={};ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImFjdGlvbi5tb2R1bGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Q0FRQyIsImZpbGUiOiJhY3Rpb24ubW9kdWxlLnNjc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuJHNoYWRvdzogKFxuICB4czogMCAycHggMjBweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4xKSxcbiAgc206IDAgNHB4IDMwcHggLTRweCByZ2JhKDAsIDAsIDAsIDAuMiksXG4gIG1kOiAwIDZweCA0MHB4IC02cHggcmdiYSgwLCAwLCAwLCAwLjQpLFxuICBsZzogMCA4cHggNTBweCAtOHB4IHJnYmEoMCwgMCwgMCwgMC42KSxcbiAgeGw6IDAgMTBweCA2MHB4IC0xMHB4IHJnYmEoMCwgMCwgMCwgMC44KSxcbik7XG4qLyJdfQ== */");const BI=e=>{const{item:n}=e,t=$j(),{onAction:i}=zI(e=>e.actions),{open:a}=lw(e=>e.actions),o=lw(e=>e.dismissable),r=g(_I.action,{[`llm__action--${n.type}`]:!!n.type});return ce.jsx(Ow,{type:"button",className:r,label:n.title||t("llm.tellMeMore"),icon:ce.jsx(Ib,{}),onClick:e=>Sj(void 0,void 0,void 0,function*(){const e=yield i(n);o&&!1!==e&&a()})})};var FI="action-group-module_actionGroup__4ggk3";ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.action-group-module_actionGroup__4ggk3 {\n display: flex;\n gap: var(--llm-size-4, 2rem);\n padding-top: var(--llm-size-2, 1rem);\n margin-top: auto;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImFjdGlvbi1ncm91cC5tb2R1bGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Q0FRQztBQUNEO0VBQ0UsYUFBYTtFQUNiLDRCQUE0QjtFQUM1QixvQ0FBb0M7RUFDcEMsZ0JBQWdCO0FBQ2xCIiwiZmlsZSI6ImFjdGlvbi1ncm91cC5tb2R1bGUuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4kc2hhZG93OiAoXG4gIHhzOiAwIDJweCAyMHB4IC0ycHggcmdiYSgwLCAwLCAwLCAwLjEpLFxuICBzbTogMCA0cHggMzBweCAtNHB4IHJnYmEoMCwgMCwgMCwgMC4yKSxcbiAgbWQ6IDAgNnB4IDQwcHggLTZweCByZ2JhKDAsIDAsIDAsIDAuNCksXG4gIGxnOiAwIDhweCA1MHB4IC04cHggcmdiYSgwLCAwLCAwLCAwLjYpLFxuICB4bDogMCAxMHB4IDYwcHggLTEwcHggcmdiYSgwLCAwLCAwLCAwLjgpLFxuKTtcbiovXG4uYWN0aW9uR3JvdXAge1xuICBkaXNwbGF5OiBmbGV4O1xuICBnYXA6IHZhcigtLWxsbS1zaXplLTQsIDJyZW0pO1xuICBwYWRkaW5nLXRvcDogdmFyKC0tbGxtLXNpemUtMiwgMXJlbSk7XG4gIG1hcmdpbi10b3A6IGF1dG87XG59Il19 */");var XI="custom-card-module_customCard__zKUOz",UI="custom-card-module_customCardMedia__26ayg",HI="custom-card-module_customCardAsset__SWog3",JI="custom-card-module_customCardContent__YeA3y",PI="custom-card-module_customCardTitle__B7r2e",GI="custom-card-module_customCardCta__8Q5DX";ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.custom-card-module_customCard__zKUOz {\n max-width: 700px;\n position: relative;\n display: flex;\n flex-direction: row;\n overflow: hidden;\n border-radius: 6px;\n background: var(--llm-color-neutral-100);\n box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);\n padding: var(--llm-size-4, 2rem) var(--llm-size-3, 1.5rem);\n}\n\n.custom-card-module_customCardMedia__26ayg {\n position: relative;\n width: 200px;\n flex-shrink: 0;\n}\n\n.custom-card-module_customCardAsset__SWog3 {\n display: flex;\n justify-content: center;\n align-items: center;\n aspect-ratio: 1;\n border-radius: 0;\n overflow: hidden;\n}\n.custom-card-module_customCardAsset__SWog3 > img {\n width: 100%;\n height: 100%;\n -o-object-fit: contain;\n object-fit: contain;\n -o-object-position: center;\n object-position: center;\n}\n\n.custom-card-module_customCardContent__YeA3y {\n position: relative;\n display: flex;\n flex-direction: column;\n padding: 0 var(--llm-size-3, 1.5rem);\n gap: var(--llm-size-3, 1.5rem);\n}\n\n.custom-card-module_customCardTitle__B7r2e {\n line-height: 1;\n font-family: var(--llm-font-primary);\n font-weight: var(--llm-typography-display5-font-weight);\n line-height: var(--llm-typography-display5-line-height);\n letter-spacing: var(--llm-typography-display5-letter-spacing);\n font-size: clamp(var(--llm-typography-display5-font-size-min) * 1px * var(--s, 1), var(--llm-typography-display5-font-size-min) * 1px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * (var(--llm-typography-display5-font-size-max) - var(--llm-typography-display5-font-size-min)) * var(--s, 1), var(--llm-typography-display5-font-size-max) * 1px * var(--s, 1));\n}\n\n.custom-card-module_customCardCta__8Q5DX {\n color: var(--llm-color-neutral-100) !important;\n background: var(--llm-color-base-900) !important;\n border-radius: 50px;\n padding: 12px 16px !important;\n width: -moz-fit-content;\n width: fit-content;\n line-height: 1 !important;\n display: flex !important;\n min-height: 0 !important;\n margin-top: auto;\n}\n.custom-card-module_customCardCta__8Q5DX > span {\n font-size: 16px !important;\n letter-spacing: 0.02em !important;\n line-height: 1 !important;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImN1c3RvbS1jYXJkLm1vZHVsZS5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztDQVFDO0FBQ0Q7RUFDRSxnQkFBZ0I7RUFDaEIsa0JBQWtCO0VBQ2xCLGFBQWE7RUFDYixtQkFBbUI7RUFDbkIsZ0JBQWdCO0VBQ2hCLGtCQUFrQjtFQUNsQix3Q0FBd0M7RUFDeEMsMENBQTBDO0VBQzFDLDBEQUEwRDtBQUM1RDs7QUFFQTtFQUNFLGtCQUFrQjtFQUNsQixZQUFZO0VBQ1osY0FBYztBQUNoQjs7QUFFQTtFQUNFLGFBQWE7RUFDYix1QkFBdUI7RUFDdkIsbUJBQW1CO0VBQ25CLGVBQWU7RUFDZixnQkFBZ0I7RUFDaEIsZ0JBQWdCO0FBQ2xCO0FBQ0E7RUFDRSxXQUFXO0VBQ1gsWUFBWTtFQUNaLHNCQUFtQjtLQUFuQixtQkFBbUI7RUFDbkIsMEJBQXVCO0tBQXZCLHVCQUF1QjtBQUN6Qjs7QUFFQTtFQUNFLGtCQUFrQjtFQUNsQixhQUFhO0VBQ2Isc0JBQXNCO0VBQ3RCLG9DQUFvQztFQUNwQyw4QkFBOEI7QUFDaEM7O0FBRUE7RUFDRSxjQUFjO0VBQ2Qsb0NBQW9DO0VBQ3BDLHVEQUF1RDtFQUN2RCx1REFBdUQ7RUFDdkQsNkRBQTZEO0VBQzdELDJXQUEyVztBQUM3Vzs7QUFFQTtFQUNFLDhDQUE4QztFQUM5QyxnREFBZ0Q7RUFDaEQsbUJBQW1CO0VBQ25CLDZCQUE2QjtFQUM3Qix1QkFBa0I7RUFBbEIsa0JBQWtCO0VBQ2xCLHlCQUF5QjtFQUN6Qix3QkFBd0I7RUFDeEIsd0JBQXdCO0VBQ3hCLGdCQUFnQjtBQUNsQjtBQUNBO0VBQ0UsMEJBQTBCO0VBQzFCLGlDQUFpQztFQUNqQyx5QkFBeUI7QUFDM0IiLCJmaWxlIjoiY3VzdG9tLWNhcmQubW9kdWxlLnNjc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuJHNoYWRvdzogKFxuICB4czogMCAycHggMjBweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4xKSxcbiAgc206IDAgNHB4IDMwcHggLTRweCByZ2JhKDAsIDAsIDAsIDAuMiksXG4gIG1kOiAwIDZweCA0MHB4IC02cHggcmdiYSgwLCAwLCAwLCAwLjQpLFxuICBsZzogMCA4cHggNTBweCAtOHB4IHJnYmEoMCwgMCwgMCwgMC42KSxcbiAgeGw6IDAgMTBweCA2MHB4IC0xMHB4IHJnYmEoMCwgMCwgMCwgMC44KSxcbik7XG4qL1xuLmN1c3RvbUNhcmQge1xuICBtYXgtd2lkdGg6IDcwMHB4O1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZGlyZWN0aW9uOiByb3c7XG4gIG92ZXJmbG93OiBoaWRkZW47XG4gIGJvcmRlci1yYWRpdXM6IDZweDtcbiAgYmFja2dyb3VuZDogdmFyKC0tbGxtLWNvbG9yLW5ldXRyYWwtMTAwKTtcbiAgYm94LXNoYWRvdzogMCAwIDIwcHggMCByZ2JhKDAsIDAsIDAsIDAuMDUpO1xuICBwYWRkaW5nOiB2YXIoLS1sbG0tc2l6ZS00LCAycmVtKSB2YXIoLS1sbG0tc2l6ZS0zLCAxLjVyZW0pO1xufVxuXG4uY3VzdG9tQ2FyZE1lZGlhIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICB3aWR0aDogMjAwcHg7XG4gIGZsZXgtc2hyaW5rOiAwO1xufVxuXG4uY3VzdG9tQ2FyZEFzc2V0IHtcbiAgZGlzcGxheTogZmxleDtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIGFzcGVjdC1yYXRpbzogMTtcbiAgYm9yZGVyLXJhZGl1czogMDtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbn1cbi5jdXN0b21DYXJkQXNzZXQgPiBpbWcge1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xuICBvYmplY3QtZml0OiBjb250YWluO1xuICBvYmplY3QtcG9zaXRpb246IGNlbnRlcjtcbn1cblxuLmN1c3RvbUNhcmRDb250ZW50IHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWRpcmVjdGlvbjogY29sdW1uO1xuICBwYWRkaW5nOiAwIHZhcigtLWxsbS1zaXplLTMsIDEuNXJlbSk7XG4gIGdhcDogdmFyKC0tbGxtLXNpemUtMywgMS41cmVtKTtcbn1cblxuLmN1c3RvbUNhcmRUaXRsZSB7XG4gIGxpbmUtaGVpZ2h0OiAxO1xuICBmb250LWZhbWlseTogdmFyKC0tbGxtLWZvbnQtcHJpbWFyeSk7XG4gIGZvbnQtd2VpZ2h0OiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5NS1mb250LXdlaWdodCk7XG4gIGxpbmUtaGVpZ2h0OiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5NS1saW5lLWhlaWdodCk7XG4gIGxldHRlci1zcGFjaW5nOiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5NS1sZXR0ZXItc3BhY2luZyk7XG4gIGZvbnQtc2l6ZTogY2xhbXAodmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTUtZm9udC1zaXplLW1pbikgKiAxcHggKiB2YXIoLS1zLCAxKSwgdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTUtZm9udC1zaXplLW1pbikgKiAxcHggKiB2YXIoLS1zLCAxKSArICh2YXIoLS11LCAxdncpICogMTAwIC0gMzc1cHgpIC8gMTU0NSAqICh2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5NS1mb250LXNpemUtbWF4KSAtIHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk1LWZvbnQtc2l6ZS1taW4pKSAqIHZhcigtLXMsIDEpLCB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5NS1mb250LXNpemUtbWF4KSAqIDFweCAqIHZhcigtLXMsIDEpKTtcbn1cblxuLmN1c3RvbUNhcmRDdGEge1xuICBjb2xvcjogdmFyKC0tbGxtLWNvbG9yLW5ldXRyYWwtMTAwKSAhaW1wb3J0YW50O1xuICBiYWNrZ3JvdW5kOiB2YXIoLS1sbG0tY29sb3ItYmFzZS05MDApICFpbXBvcnRhbnQ7XG4gIGJvcmRlci1yYWRpdXM6IDUwcHg7XG4gIHBhZGRpbmc6IDEycHggMTZweCAhaW1wb3J0YW50O1xuICB3aWR0aDogZml0LWNvbnRlbnQ7XG4gIGxpbmUtaGVpZ2h0OiAxICFpbXBvcnRhbnQ7XG4gIGRpc3BsYXk6IGZsZXggIWltcG9ydGFudDtcbiAgbWluLWhlaWdodDogMCAhaW1wb3J0YW50O1xuICBtYXJnaW4tdG9wOiBhdXRvO1xufVxuLmN1c3RvbUNhcmRDdGEgPiBzcGFuIHtcbiAgZm9udC1zaXplOiAxNnB4ICFpbXBvcnRhbnQ7XG4gIGxldHRlci1zcGFjaW5nOiAwLjAyZW0gIWltcG9ydGFudDtcbiAgbGluZS1oZWlnaHQ6IDEgIWltcG9ydGFudDtcbn0iXX0= */");const RI=e=>{const{item:n}=e,t=$j(),{send:i}=lw(e=>e.actions),a=t("llm.tellMeMore");return ce.jsxs("div",{className:XI,children:[n.media&&ce.jsx(ce.Fragment,{children:n.href?ce.jsx("a",{className:UI,href:n.href,target:"_blank",rel:"noreferrer","aria-label":a,children:ce.jsx("div",{className:HI,children:ce.jsx("img",{src:n.media.url,alt:""})})}):ce.jsx("div",{className:UI,children:ce.jsx("div",{className:HI,children:ce.jsx("img",{src:n.media.url,alt:""})})})}),ce.jsxs("div",{className:JI,children:[n.title&&ce.jsx("div",{className:PI,dangerouslySetInnerHTML:{__html:n.title}}),ce.jsx(Ow,{url:n.href,className:GI,type:"button",label:t("llm.tellMeMore"),onClick:e=>Sj(void 0,void 0,void 0,function*(){const e=`${t("llm.tellMeMoreAbout")} ${n.title}`;yield i(e,e=>{},e=>{})})})]})]})};var WI="custom-card-group-module_customCardGroup__9NMU5",KI="custom-card-group-module_customCardGroupNav__Qoysa",VI="custom-card-group-module_customCardGroupSlide__WdkSL";ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.custom-card-group-module_customCardGroup__9NMU5 {\n width: calc(100% + clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1)) * 2);\n margin-left: calc(clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1)) * -1);\n margin-right: calc(clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1)) * -1);\n overflow: hidden;\n padding-left: clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1));\n padding-right: clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1));\n}\n.custom-card-group-module_customCardGroup__9NMU5 .swiper {\n position: relative;\n overflow: visible;\n padding-top: var(--llm-size-10, 5rem);\n padding-bottom: var(--llm-size-5, 2.5rem);\n}\n.custom-card-group-module_customCardGroup__9NMU5 .swiper-slide {\n height: auto;\n}\n\n.custom-card-group-module_customCardGroupNav__Qoysa {\n position: absolute;\n top: 0;\n left: 0;\n color: var(--llm-color-foreground);\n display: flex;\n gap: var(--llm-size-3, 1.5rem);\n}\n@media (min-width: 1024px) {\n .custom-card-group-module_customCardGroupNav__Qoysa {\n right: 0;\n left: auto;\n }\n}\n.custom-card-group-module_customCardGroupNav__Qoysa button {\n color: currentColor;\n pointer-events: auto;\n cursor: pointer;\n}\n.custom-card-group-module_customCardGroupNav__Qoysa button.custom-card-group-module_swiper-button-disabled__NtlhA {\n opacity: 0.2;\n cursor: pointer;\n}\n.custom-card-group-module_customCardGroupNav__Qoysa button.custom-card-group-module_swiper-button-lock__LIVPT {\n display: none;\n}\n.custom-card-group-module_customCardGroupNav__Qoysa button svg {\n width: 24px;\n height: 24px;\n}\n\n.custom-card-group-module_customCardGroupSlide__WdkSL {\n height: auto;\n}\n.custom-card-group-module_customCardGroupSlide__WdkSL .customCard {\n height: 100%;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImN1c3RvbS1jYXJkLWdyb3VwLm1vZHVsZS5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7OztDQVFDO0FBQ0Q7RUFDRSxvSkFBb0o7RUFDcEosb0pBQW9KO0VBQ3BKLHFKQUFxSjtFQUNySixnQkFBZ0I7RUFDaEIsMElBQTBJO0VBQzFJLDJJQUEySTtBQUM3STtBQUNBO0VBQ0Usa0JBQWtCO0VBQ2xCLGlCQUFpQjtFQUNqQixxQ0FBcUM7RUFDckMseUNBQXlDO0FBQzNDO0FBQ0E7RUFDRSxZQUFZO0FBQ2Q7O0FBRUE7RUFDRSxrQkFBa0I7RUFDbEIsTUFBTTtFQUNOLE9BQU87RUFDUCxrQ0FBa0M7RUFDbEMsYUFBYTtFQUNiLDhCQUE4QjtBQUNoQztBQUNBO0VBQ0U7SUFDRSxRQUFRO0lBQ1IsVUFBVTtFQUNaO0FBQ0Y7QUFDQTtFQUNFLG1CQUFtQjtFQUNuQixvQkFBb0I7RUFDcEIsZUFBZTtBQUNqQjtBQUNBO0VBQ0UsWUFBWTtFQUNaLGVBQWU7QUFDakI7QUFDQTtFQUNFLGFBQWE7QUFDZjtBQUNBO0VBQ0UsV0FBVztFQUNYLFlBQVk7QUFDZDs7QUFFQTtFQUNFLFlBQVk7QUFDZDtBQUNBO0VBQ0UsWUFBWTtBQUNkIiwiZmlsZSI6ImN1c3RvbS1jYXJkLWdyb3VwLm1vZHVsZS5zY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiRzaGFkb3c6IChcbiAgeHM6IDAgMnB4IDIwcHggLTJweCByZ2JhKDAsIDAsIDAsIDAuMSksXG4gIHNtOiAwIDRweCAzMHB4IC00cHggcmdiYSgwLCAwLCAwLCAwLjIpLFxuICBtZDogMCA2cHggNDBweCAtNnB4IHJnYmEoMCwgMCwgMCwgMC40KSxcbiAgbGc6IDAgOHB4IDUwcHggLThweCByZ2JhKDAsIDAsIDAsIDAuNiksXG4gIHhsOiAwIDEwcHggNjBweCAtMTBweCByZ2JhKDAsIDAsIDAsIDAuOCksXG4pO1xuKi9cbi5jdXN0b21DYXJkR3JvdXAge1xuICB3aWR0aDogY2FsYygxMDAlICsgY2xhbXAoMjBweCAqIHZhcigtLXMsIDEpLCAyMHB4ICogdmFyKC0tcywgMSkgKyAodmFyKC0tdSwgMXZ3KSAqIDEwMCAtIDM3NXB4KSAvIDE1NDUgKiA5MCAqIHZhcigtLXMsIDEpLCAxMTBweCAqIHZhcigtLXMsIDEpKSAqIDIpO1xuICBtYXJnaW4tbGVmdDogY2FsYyhjbGFtcCgyMHB4ICogdmFyKC0tcywgMSksIDIwcHggKiB2YXIoLS1zLCAxKSArICh2YXIoLS11LCAxdncpICogMTAwIC0gMzc1cHgpIC8gMTU0NSAqIDkwICogdmFyKC0tcywgMSksIDExMHB4ICogdmFyKC0tcywgMSkpICogLTEpO1xuICBtYXJnaW4tcmlnaHQ6IGNhbGMoY2xhbXAoMjBweCAqIHZhcigtLXMsIDEpLCAyMHB4ICogdmFyKC0tcywgMSkgKyAodmFyKC0tdSwgMXZ3KSAqIDEwMCAtIDM3NXB4KSAvIDE1NDUgKiA5MCAqIHZhcigtLXMsIDEpLCAxMTBweCAqIHZhcigtLXMsIDEpKSAqIC0xKTtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgcGFkZGluZy1sZWZ0OiBjbGFtcCgyMHB4ICogdmFyKC0tcywgMSksIDIwcHggKiB2YXIoLS1zLCAxKSArICh2YXIoLS11LCAxdncpICogMTAwIC0gMzc1cHgpIC8gMTU0NSAqIDkwICogdmFyKC0tcywgMSksIDExMHB4ICogdmFyKC0tcywgMSkpO1xuICBwYWRkaW5nLXJpZ2h0OiBjbGFtcCgyMHB4ICogdmFyKC0tcywgMSksIDIwcHggKiB2YXIoLS1zLCAxKSArICh2YXIoLS11LCAxdncpICogMTAwIC0gMzc1cHgpIC8gMTU0NSAqIDkwICogdmFyKC0tcywgMSksIDExMHB4ICogdmFyKC0tcywgMSkpO1xufVxuLmN1c3RvbUNhcmRHcm91cCA6Z2xvYmFsKC5zd2lwZXIpIHtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBvdmVyZmxvdzogdmlzaWJsZTtcbiAgcGFkZGluZy10b3A6IHZhcigtLWxsbS1zaXplLTEwLCA1cmVtKTtcbiAgcGFkZGluZy1ib3R0b206IHZhcigtLWxsbS1zaXplLTUsIDIuNXJlbSk7XG59XG4uY3VzdG9tQ2FyZEdyb3VwIDpnbG9iYWwoLnN3aXBlci1zbGlkZSkge1xuICBoZWlnaHQ6IGF1dG87XG59XG5cbi5jdXN0b21DYXJkR3JvdXBOYXYge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogMDtcbiAgbGVmdDogMDtcbiAgY29sb3I6IHZhcigtLWxsbS1jb2xvci1mb3JlZ3JvdW5kKTtcbiAgZGlzcGxheTogZmxleDtcbiAgZ2FwOiB2YXIoLS1sbG0tc2l6ZS0zLCAxLjVyZW0pO1xufVxuQG1lZGlhIChtaW4td2lkdGg6IDEwMjRweCkge1xuICAuY3VzdG9tQ2FyZEdyb3VwTmF2IHtcbiAgICByaWdodDogMDtcbiAgICBsZWZ0OiBhdXRvO1xuICB9XG59XG4uY3VzdG9tQ2FyZEdyb3VwTmF2IGJ1dHRvbiB7XG4gIGNvbG9yOiBjdXJyZW50Q29sb3I7XG4gIHBvaW50ZXItZXZlbnRzOiBhdXRvO1xuICBjdXJzb3I6IHBvaW50ZXI7XG59XG4uY3VzdG9tQ2FyZEdyb3VwTmF2IGJ1dHRvbi5zd2lwZXItYnV0dG9uLWRpc2FibGVkIHtcbiAgb3BhY2l0eTogMC4yO1xuICBjdXJzb3I6IHBvaW50ZXI7XG59XG4uY3VzdG9tQ2FyZEdyb3VwTmF2IGJ1dHRvbi5zd2lwZXItYnV0dG9uLWxvY2sge1xuICBkaXNwbGF5OiBub25lO1xufVxuLmN1c3RvbUNhcmRHcm91cE5hdiBidXR0b24gc3ZnIHtcbiAgd2lkdGg6IDI0cHg7XG4gIGhlaWdodDogMjRweDtcbn1cblxuLmN1c3RvbUNhcmRHcm91cFNsaWRlIHtcbiAgaGVpZ2h0OiBhdXRvO1xufVxuLmN1c3RvbUNhcmRHcm91cFNsaWRlIDpnbG9iYWwoLmN1c3RvbUNhcmQpIHtcbiAgaGVpZ2h0OiAxMDAlO1xufSJdfQ== */");var $I={formRecapTitle:"form-recap-module_formRecapTitle__6PLZI",formRecapFields:"form-recap-module_formRecapFields__8CT-i",formRecapCta:"form-recap-module_formRecapCta__miPdH",formRecapField:"form-recap-module_formRecapField__-uKxy",formRecapFieldPrivacy:"form-recap-module_formRecapFieldPrivacy__y8SDE"};ev('/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.form-recap-module_formRecapTitle__6PLZI {\n line-height: 1;\n font-family: var(--llm-font-primary);\n font-weight: var(--llm-typography-display4-font-weight);\n line-height: var(--llm-typography-display4-line-height);\n letter-spacing: var(--llm-typography-display4-letter-spacing);\n font-size: clamp(var(--llm-typography-display4-font-size-min) * 1px * var(--s, 1), var(--llm-typography-display4-font-size-min) * 1px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * (var(--llm-typography-display4-font-size-max) - var(--llm-typography-display4-font-size-min)) * var(--s, 1), var(--llm-typography-display4-font-size-max) * 1px * var(--s, 1));\n margin-bottom: var(--llm-size-3, 1.5rem);\n}\n\n.form-recap-module_formRecapFields__8CT-i {\n display: flex;\n flex-direction: column;\n gap: var(--llm-size-4, 2rem);\n}\n@media (min-width: 768px) {\n .form-recap-module_formRecapFields__8CT-i {\n gap: var(--llm-size-2, 1rem);\n flex-wrap: wrap;\n flex-direction: row;\n align-items: center;\n }\n}\n\n.form-recap-module_formRecapCta__miPdH {\n margin: 0 auto;\n order: 3;\n}\n@media (min-width: 768px) {\n .form-recap-module_formRecapCta__miPdH {\n order: 1;\n margin: 0;\n }\n}\n\n.form-recap-module_formRecapField__-uKxy {\n width: 100%;\n}\n@media (min-width: 768px) {\n .form-recap-module_formRecapField__-uKxy {\n width: auto;\n min-width: 250px;\n }\n}\n.form-recap-module_formRecapField__-uKxy input[type=text],\n.form-recap-module_formRecapField__-uKxy input[type=email] {\n line-height: 1;\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none;\n display: block;\n width: 100%;\n height: 56px;\n padding: 0 var(--llm-size-4, 2rem);\n border-radius: 5px;\n border: var(--llm-border);\n font-family: var(--llm-input-font-family);\n background: var(--llm-input-background);\n color: var(--llm-input-foreground);\n}\n\n.form-recap-module_formRecapFieldPrivacy__y8SDE {\n width: 100%;\n order: 99;\n position: relative;\n order: 2;\n}\n@media (min-width: 768px) {\n .form-recap-module_formRecapFieldPrivacy__y8SDE {\n order: auto;\n }\n}\n.form-recap-module_formRecapFieldPrivacy__y8SDE label {\n line-height: 1;\n font-family: var(--llm-font-secondary);\n font-weight: var(--llm-typography-body5-font-weight);\n line-height: var(--llm-typography-body5-line-height);\n letter-spacing: var(--llm-typography-body5-letter-spacing);\n font-size: clamp(var(--llm-typography-body5-font-size-min) * 1px * var(--s, 1), var(--llm-typography-body5-font-size-min) * 1px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * (var(--llm-typography-body5-font-size-max) - var(--llm-typography-body5-font-size-min)) * var(--s, 1), var(--llm-typography-body5-font-size-max) * 1px * var(--s, 1));\n line-height: 140%;\n position: relative;\n display: block;\n padding-left: 24px;\n pointer-events: auto;\n cursor: pointer;\n}\n.form-recap-module_formRecapFieldPrivacy__y8SDE label:before, .form-recap-module_formRecapFieldPrivacy__y8SDE label:after {\n content: "";\n display: block;\n position: absolute;\n width: 16px;\n height: 16px;\n top: 2px;\n left: 0;\n border-radius: 2px;\n border: var(--llm-checkbox-border);\n}\n.form-recap-module_formRecapFieldPrivacy__y8SDE label:after {\n display: none;\n background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgMTIgMTIiIHdpZHRoPSIxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNC42NjYyNSA5LjUwNTQyLTIuNzYtMi43NiAxLjI1Nzc4LTEuMjU3NzggMS41MDIyMiAxLjUwNjY3IDQuMzkxMTEtNC4zOTU1NiAxLjI1Nzc0IDEuMjU3Nzh6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");\n background-repeat: no-repeat;\n background-position: center;\n}\n.form-recap-module_formRecapFieldPrivacy__y8SDE input {\n position: absolute;\n opacity: 0;\n}\n.form-recap-module_formRecapFieldPrivacy__y8SDE input:checked + label:after {\n display: block;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvcm0tcmVjYXAubW9kdWxlLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0NBUUM7QUFDRDtFQUNFLGNBQWM7RUFDZCxvQ0FBb0M7RUFDcEMsdURBQXVEO0VBQ3ZELHVEQUF1RDtFQUN2RCw2REFBNkQ7RUFDN0QsMldBQTJXO0VBQzNXLHdDQUF3QztBQUMxQzs7QUFFQTtFQUNFLGFBQWE7RUFDYixzQkFBc0I7RUFDdEIsNEJBQTRCO0FBQzlCO0FBQ0E7RUFDRTtJQUNFLDRCQUE0QjtJQUM1QixlQUFlO0lBQ2YsbUJBQW1CO0lBQ25CLG1CQUFtQjtFQUNyQjtBQUNGOztBQUVBO0VBQ0UsY0FBYztFQUNkLFFBQVE7QUFDVjtBQUNBO0VBQ0U7SUFDRSxRQUFRO0lBQ1IsU0FBUztFQUNYO0FBQ0Y7O0FBRUE7RUFDRSxXQUFXO0FBQ2I7QUFDQTtFQUNFO0lBQ0UsV0FBVztJQUNYLGdCQUFnQjtFQUNsQjtBQUNGO0FBQ0E7O0VBRUUsY0FBYztFQUNkLHdCQUFnQjtLQUFoQixxQkFBZ0I7VUFBaEIsZ0JBQWdCO0VBQ2hCLGNBQWM7RUFDZCxXQUFXO0VBQ1gsWUFBWTtFQUNaLGtDQUFrQztFQUNsQyxrQkFBa0I7RUFDbEIseUJBQXlCO0VBQ3pCLHlDQUF5QztFQUN6Qyx1Q0FBdUM7RUFDdkMsa0NBQWtDO0FBQ3BDOztBQUVBO0VBQ0UsV0FBVztFQUNYLFNBQVM7RUFDVCxrQkFBa0I7RUFDbEIsUUFBUTtBQUNWO0FBQ0E7RUFDRTtJQUNFLFdBQVc7RUFDYjtBQUNGO0FBQ0E7RUFDRSxjQUFjO0VBQ2Qsc0NBQXNDO0VBQ3RDLG9EQUFvRDtFQUNwRCxvREFBb0Q7RUFDcEQsMERBQTBEO0VBQzFELDRWQUE0VjtFQUM1VixpQkFBaUI7RUFDakIsa0JBQWtCO0VBQ2xCLGNBQWM7RUFDZCxrQkFBa0I7RUFDbEIsb0JBQW9CO0VBQ3BCLGVBQWU7QUFDakI7QUFDQTtFQUNFLFdBQVc7RUFDWCxjQUFjO0VBQ2Qsa0JBQWtCO0VBQ2xCLFdBQVc7RUFDWCxZQUFZO0VBQ1osUUFBUTtFQUNSLE9BQU87RUFDUCxrQkFBa0I7RUFDbEIsa0NBQWtDO0FBQ3BDO0FBQ0E7RUFDRSxhQUFhO0VBQ2IsbVZBQW1WO0VBQ25WLDRCQUE0QjtFQUM1QiwyQkFBMkI7QUFDN0I7QUFDQTtFQUNFLGtCQUFrQjtFQUNsQixVQUFVO0FBQ1o7QUFDQTtFQUNFLGNBQWM7QUFDaEIiLCJmaWxlIjoiZm9ybS1yZWNhcC5tb2R1bGUuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4kc2hhZG93OiAoXG4gIHhzOiAwIDJweCAyMHB4IC0ycHggcmdiYSgwLCAwLCAwLCAwLjEpLFxuICBzbTogMCA0cHggMzBweCAtNHB4IHJnYmEoMCwgMCwgMCwgMC4yKSxcbiAgbWQ6IDAgNnB4IDQwcHggLTZweCByZ2JhKDAsIDAsIDAsIDAuNCksXG4gIGxnOiAwIDhweCA1MHB4IC04cHggcmdiYSgwLCAwLCAwLCAwLjYpLFxuICB4bDogMCAxMHB4IDYwcHggLTEwcHggcmdiYSgwLCAwLCAwLCAwLjgpLFxuKTtcbiovXG4uZm9ybVJlY2FwVGl0bGUge1xuICBsaW5lLWhlaWdodDogMTtcbiAgZm9udC1mYW1pbHk6IHZhcigtLWxsbS1mb250LXByaW1hcnkpO1xuICBmb250LXdlaWdodDogdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTQtZm9udC13ZWlnaHQpO1xuICBsaW5lLWhlaWdodDogdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTQtbGluZS1oZWlnaHQpO1xuICBsZXR0ZXItc3BhY2luZzogdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTQtbGV0dGVyLXNwYWNpbmcpO1xuICBmb250LXNpemU6IGNsYW1wKHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk0LWZvbnQtc2l6ZS1taW4pICogMXB4ICogdmFyKC0tcywgMSksIHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk0LWZvbnQtc2l6ZS1taW4pICogMXB4ICogdmFyKC0tcywgMSkgKyAodmFyKC0tdSwgMXZ3KSAqIDEwMCAtIDM3NXB4KSAvIDE1NDUgKiAodmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTQtZm9udC1zaXplLW1heCkgLSB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5NC1mb250LXNpemUtbWluKSkgKiB2YXIoLS1zLCAxKSwgdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTQtZm9udC1zaXplLW1heCkgKiAxcHggKiB2YXIoLS1zLCAxKSk7XG4gIG1hcmdpbi1ib3R0b206IHZhcigtLWxsbS1zaXplLTMsIDEuNXJlbSk7XG59XG5cbi5mb3JtUmVjYXBGaWVsZHMge1xuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWRpcmVjdGlvbjogY29sdW1uO1xuICBnYXA6IHZhcigtLWxsbS1zaXplLTQsIDJyZW0pO1xufVxuQG1lZGlhIChtaW4td2lkdGg6IDc2OHB4KSB7XG4gIC5mb3JtUmVjYXBGaWVsZHMge1xuICAgIGdhcDogdmFyKC0tbGxtLXNpemUtMiwgMXJlbSk7XG4gICAgZmxleC13cmFwOiB3cmFwO1xuICAgIGZsZXgtZGlyZWN0aW9uOiByb3c7XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgfVxufVxuXG4uZm9ybVJlY2FwQ3RhIHtcbiAgbWFyZ2luOiAwIGF1dG87XG4gIG9yZGVyOiAzO1xufVxuQG1lZGlhIChtaW4td2lkdGg6IDc2OHB4KSB7XG4gIC5mb3JtUmVjYXBDdGEge1xuICAgIG9yZGVyOiAxO1xuICAgIG1hcmdpbjogMDtcbiAgfVxufVxuXG4uZm9ybVJlY2FwRmllbGQge1xuICB3aWR0aDogMTAwJTtcbn1cbkBtZWRpYSAobWluLXdpZHRoOiA3NjhweCkge1xuICAuZm9ybVJlY2FwRmllbGQge1xuICAgIHdpZHRoOiBhdXRvO1xuICAgIG1pbi13aWR0aDogMjUwcHg7XG4gIH1cbn1cbi5mb3JtUmVjYXBGaWVsZCBpbnB1dFt0eXBlPXRleHRdLFxuLmZvcm1SZWNhcEZpZWxkIGlucHV0W3R5cGU9ZW1haWxdIHtcbiAgbGluZS1oZWlnaHQ6IDE7XG4gIGFwcGVhcmFuY2U6IG5vbmU7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiA1NnB4O1xuICBwYWRkaW5nOiAwIHZhcigtLWxsbS1zaXplLTQsIDJyZW0pO1xuICBib3JkZXItcmFkaXVzOiA1cHg7XG4gIGJvcmRlcjogdmFyKC0tbGxtLWJvcmRlcik7XG4gIGZvbnQtZmFtaWx5OiB2YXIoLS1sbG0taW5wdXQtZm9udC1mYW1pbHkpO1xuICBiYWNrZ3JvdW5kOiB2YXIoLS1sbG0taW5wdXQtYmFja2dyb3VuZCk7XG4gIGNvbG9yOiB2YXIoLS1sbG0taW5wdXQtZm9yZWdyb3VuZCk7XG59XG5cbi5mb3JtUmVjYXBGaWVsZFByaXZhY3kge1xuICB3aWR0aDogMTAwJTtcbiAgb3JkZXI6IDk5O1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIG9yZGVyOiAyO1xufVxuQG1lZGlhIChtaW4td2lkdGg6IDc2OHB4KSB7XG4gIC5mb3JtUmVjYXBGaWVsZFByaXZhY3kge1xuICAgIG9yZGVyOiBhdXRvO1xuICB9XG59XG4uZm9ybVJlY2FwRmllbGRQcml2YWN5IGxhYmVsIHtcbiAgbGluZS1oZWlnaHQ6IDE7XG4gIGZvbnQtZmFtaWx5OiB2YXIoLS1sbG0tZm9udC1zZWNvbmRhcnkpO1xuICBmb250LXdlaWdodDogdmFyKC0tbGxtLXR5cG9ncmFwaHktYm9keTUtZm9udC13ZWlnaHQpO1xuICBsaW5lLWhlaWdodDogdmFyKC0tbGxtLXR5cG9ncmFwaHktYm9keTUtbGluZS1oZWlnaHQpO1xuICBsZXR0ZXItc3BhY2luZzogdmFyKC0tbGxtLXR5cG9ncmFwaHktYm9keTUtbGV0dGVyLXNwYWNpbmcpO1xuICBmb250LXNpemU6IGNsYW1wKHZhcigtLWxsbS10eXBvZ3JhcGh5LWJvZHk1LWZvbnQtc2l6ZS1taW4pICogMXB4ICogdmFyKC0tcywgMSksIHZhcigtLWxsbS10eXBvZ3JhcGh5LWJvZHk1LWZvbnQtc2l6ZS1taW4pICogMXB4ICogdmFyKC0tcywgMSkgKyAodmFyKC0tdSwgMXZ3KSAqIDEwMCAtIDM3NXB4KSAvIDE1NDUgKiAodmFyKC0tbGxtLXR5cG9ncmFwaHktYm9keTUtZm9udC1zaXplLW1heCkgLSB2YXIoLS1sbG0tdHlwb2dyYXBoeS1ib2R5NS1mb250LXNpemUtbWluKSkgKiB2YXIoLS1zLCAxKSwgdmFyKC0tbGxtLXR5cG9ncmFwaHktYm9keTUtZm9udC1zaXplLW1heCkgKiAxcHggKiB2YXIoLS1zLCAxKSk7XG4gIGxpbmUtaGVpZ2h0OiAxNDAlO1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBwYWRkaW5nLWxlZnQ6IDI0cHg7XG4gIHBvaW50ZXItZXZlbnRzOiBhdXRvO1xuICBjdXJzb3I6IHBvaW50ZXI7XG59XG4uZm9ybVJlY2FwRmllbGRQcml2YWN5IGxhYmVsOmJlZm9yZSwgLmZvcm1SZWNhcEZpZWxkUHJpdmFjeSBsYWJlbDphZnRlciB7XG4gIGNvbnRlbnQ6IFwiXCI7XG4gIGRpc3BsYXk6IGJsb2NrO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHdpZHRoOiAxNnB4O1xuICBoZWlnaHQ6IDE2cHg7XG4gIHRvcDogMnB4O1xuICBsZWZ0OiAwO1xuICBib3JkZXItcmFkaXVzOiAycHg7XG4gIGJvcmRlcjogdmFyKC0tbGxtLWNoZWNrYm94LWJvcmRlcik7XG59XG4uZm9ybVJlY2FwRmllbGRQcml2YWN5IGxhYmVsOmFmdGVyIHtcbiAgZGlzcGxheTogbm9uZTtcbiAgYmFja2dyb3VuZC1pbWFnZTogdXJsKFwiZGF0YTppbWFnZS9zdmcreG1sO2Jhc2U2NCxQSE4yWnlCbWFXeHNQU0p1YjI1bElpQm9aV2xuYUhROUlqRXlJaUIyYVdWM1FtOTRQU0l3SURBZ01USWdNVElpSUhkcFpIUm9QU0l4TWlJZ2VHMXNibk05SW1oMGRIQTZMeTkzZDNjdWR6TXViM0puTHpJd01EQXZjM1puSWo0OGNHRjBhQ0JrUFNKdE5DNDJOall5TlNBNUxqVXdOVFF5TFRJdU56WXRNaTQzTmlBeExqSTFOemM0TFRFdU1qVTNOemdnTVM0MU1ESXlNaUF4TGpVd05qWTNJRFF1TXpreE1URXROQzR6T1RVMU5pQXhMakkxTnpjMElERXVNalUzTnpoNklpQm1hV3hzUFNJalptWm1JaTgrUEM5emRtYytcIik7XG4gIGJhY2tncm91bmQtcmVwZWF0OiBuby1yZXBlYXQ7XG4gIGJhY2tncm91bmQtcG9zaXRpb246IGNlbnRlcjtcbn1cbi5mb3JtUmVjYXBGaWVsZFByaXZhY3kgaW5wdXQge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIG9wYWNpdHk6IDA7XG59XG4uZm9ybVJlY2FwRmllbGRQcml2YWN5IGlucHV0OmNoZWNrZWQgKyBsYWJlbDphZnRlciB7XG4gIGRpc3BsYXk6IGJsb2NrO1xufSJdfQ== */');function qI(e,n){var t;const i=`Ciao ${e.fullName?e.fullName.split(" ")[0]:""}`;return`\n<!doctype html>\n<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">\n\n<head>\n <title> ${i} </title>\n \x3c!--[if !mso]>\x3c!--\x3e\n <meta http-equiv="X-UA-Compatible" content="IE=edge">\n \x3c!--<![endif]--\x3e\n <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">\n <meta name="viewport" content="width=device-width, initial-scale=1">\n <style type="text/css">\n #outlook a {\n padding: 0;\n }\n\n body {\n margin: 0;\n padding: 0;\n -webkit-text-size-adjust: 100%;\n -ms-text-size-adjust: 100%;\n }\n\n table,\n td {\n border-collapse: collapse;\n mso-table-lspace: 0pt;\n mso-table-rspace: 0pt;\n }\n\n img {\n border: 0;\n height: auto;\n line-height: 100%;\n outline: none;\n text-decoration: none;\n -ms-interpolation-mode: bicubic;\n }\n\n p {\n display: block;\n margin: 13px 0;\n }\n </style>\n \x3c!--[if mso]>\n <noscript>\n <xml>\n <o:OfficeDocumentSettings>\n <o:AllowPNG/>\n <o:PixelsPerInch>96</o:PixelsPerInch>\n </o:OfficeDocumentSettings>\n </xml>\n </noscript>\n <![endif]--\x3e\n \x3c!--[if lte mso 11]>\n <style type="text/css">\n .mj-outlook-group-fix { width:100% !important; }\n </style>\n <![endif]--\x3e\n \x3c!--[if !mso]>\x3c!--\x3e\n <link href="https://fonts.googleapis.com/css?family=Inter:400,600" rel="stylesheet" type="text/css">\n <style type="text/css">\n @import url(https://fonts.googleapis.com/css?family=Inter:400,600);\n </style>\n \x3c!--<![endif]--\x3e\n <style type="text/css">\n @media only screen and (min-width:480px) {\n .mj-column-per-100 {\n width: 100% !important;\n max-width: 100%;\n }\n }\n </style>\n <style media="screen and (min-width:480px)">\n .moz-text-html .mj-column-per-100 {\n width: 100% !important;\n max-width: 100%;\n }\n </style>\n <style type="text/css">\n </style>\n</head>\n\n<body style="word-spacing:normal;">\n <div style="">\n \x3c!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" class="" style="width:600px;" width="600" ><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;"><![endif]--\x3e\n <div style="margin:0px auto;max-width:600px;">\n <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:100%;">\n <tbody>\n <tr>\n <td style="direction:ltr;font-size:0px;padding:0px;padding-top:20px;text-align:center;">\n \x3c!--[if mso | IE]><table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="vertical-align:top;width:600px;" ><![endif]--\x3e\n <div class="mj-column-per-100 mj-outlook-group-fix" style="font-size:0px;text-align:left;direction:ltr;display:inline-block;vertical-align:top;width:100%;">\n <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">\n <tbody>\n <tr>\n <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <div style="font-family:Inter;font-size:20px;font-weight:600;line-height:24px;text-align:left;color:#3b3b3b;">${(null===(t=null==n?void 0:n.contents)||void 0===t?void 0:t.shortWelcomeText)||"PlatformAI"}</div>\n </td>\n </tr>\n <tr>\n <td align="center" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <p style="border-top:solid 3px #EFEFF2;font-size:1px;margin:0px auto;width:100%;">\n </p>\n \x3c!--[if mso | IE]><table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 3px #EFEFF2;font-size:1px;margin:0px auto;width:550px;" role="presentation" width="550px" ><tr><td style="height:0;line-height:0;"> \n</td></tr></table><![endif]--\x3e\n </td>\n </tr>\n <tr>\n <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <div style="font-family:Inter;font-size:28px;font-weight:600;line-height:24px;text-align:left;color:#3b3b3b;">${i}</div>\n </td>\n </tr>\n <tr>\n <td align="left" style="font-size:0px;padding:10px 25px;word-break:break-word;">\n <div style="font-family:Inter, Helvetica, sans-serif;font-size:16px;font-weight:400;line-height:24px;text-align:left;color:#555555;">${`<p>${["Ecco il tuo promemoria,","per qualunque altra cosa sai dove potermi trovare, sarò sempre lieto di parlare con te. 👋"].join("</p><p>")}</p>`} <h3 style="font-weight: 600; margin-top: 20px; margin-bottom: 0">\n <a href="${window.location.href+`${window.location.search?"&":"?"}llmThreadId=${e.threadId}`}" style="color: #00aeff; text-decoration: underline">link</a>\n </h3>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n \x3c!--[if mso | IE]></td></tr></table><![endif]--\x3e\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n \x3c!--[if mso | IE]></td></tr></table><![endif]--\x3e\n </div>\n</body>\n\n</html>\n`}var eA="form-recap-error-module_formRecapError__EY7Wx";ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.form-recap-error-module_formRecapError__EY7Wx .form-recap-error-module_llm__text-body__KeHcV {\n line-height: 1;\n font-family: var(--llm-font-primary);\n font-weight: var(--llm-typography-display6-font-weight);\n line-height: var(--llm-typography-display6-line-height);\n letter-spacing: var(--llm-typography-display6-letter-spacing);\n font-size: clamp(var(--llm-typography-display6-font-size-min) * 1px * var(--s, 1), var(--llm-typography-display6-font-size-min) * 1px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * (var(--llm-typography-display6-font-size-max) - var(--llm-typography-display6-font-size-min)) * var(--s, 1), var(--llm-typography-display6-font-size-max) * 1px * var(--s, 1));\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvcm0tcmVjYXAtZXJyb3IubW9kdWxlLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0NBUUM7QUFDRDtFQUNFLGNBQWM7RUFDZCxvQ0FBb0M7RUFDcEMsdURBQXVEO0VBQ3ZELHVEQUF1RDtFQUN2RCw2REFBNkQ7RUFDN0QsMldBQTJXO0FBQzdXIiwiZmlsZSI6ImZvcm0tcmVjYXAtZXJyb3IubW9kdWxlLnNjc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuJHNoYWRvdzogKFxuICB4czogMCAycHggMjBweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4xKSxcbiAgc206IDAgNHB4IDMwcHggLTRweCByZ2JhKDAsIDAsIDAsIDAuMiksXG4gIG1kOiAwIDZweCA0MHB4IC02cHggcmdiYSgwLCAwLCAwLCAwLjQpLFxuICBsZzogMCA4cHggNTBweCAtOHB4IHJnYmEoMCwgMCwgMCwgMC42KSxcbiAgeGw6IDAgMTBweCA2MHB4IC0xMHB4IHJnYmEoMCwgMCwgMCwgMC44KSxcbik7XG4qL1xuLmZvcm1SZWNhcEVycm9yIC5sbG1fX3RleHQtYm9keSB7XG4gIGxpbmUtaGVpZ2h0OiAxO1xuICBmb250LWZhbWlseTogdmFyKC0tbGxtLWZvbnQtcHJpbWFyeSk7XG4gIGZvbnQtd2VpZ2h0OiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXdlaWdodCk7XG4gIGxpbmUtaGVpZ2h0OiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1saW5lLWhlaWdodCk7XG4gIGxldHRlci1zcGFjaW5nOiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1sZXR0ZXItc3BhY2luZyk7XG4gIGZvbnQtc2l6ZTogY2xhbXAodmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTYtZm9udC1zaXplLW1pbikgKiAxcHggKiB2YXIoLS1zLCAxKSwgdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTYtZm9udC1zaXplLW1pbikgKiAxcHggKiB2YXIoLS1zLCAxKSArICh2YXIoLS11LCAxdncpICogMTAwIC0gMzc1cHgpIC8gMTU0NSAqICh2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXNpemUtbWF4KSAtIHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk2LWZvbnQtc2l6ZS1taW4pKSAqIHZhcigtLXMsIDEpLCB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXNpemUtbWF4KSAqIDFweCAqIHZhcigtLXMsIDEpKTtcbn0iXX0= */");var nA="form-recap-success-module_formRecapSuccess__91EHU";ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.form-recap-success-module_formRecapSuccess__91EHU .form-recap-success-module_llm__text-body__lFfMT {\n line-height: 1;\n font-family: var(--llm-font-primary);\n font-weight: var(--llm-typography-display6-font-weight);\n line-height: var(--llm-typography-display6-line-height);\n letter-spacing: var(--llm-typography-display6-letter-spacing);\n font-size: clamp(var(--llm-typography-display6-font-size-min) * 1px * var(--s, 1), var(--llm-typography-display6-font-size-min) * 1px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * (var(--llm-typography-display6-font-size-max) - var(--llm-typography-display6-font-size-min)) * var(--s, 1), var(--llm-typography-display6-font-size-max) * 1px * var(--s, 1));\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvcm0tcmVjYXAtc3VjY2Vzcy5tb2R1bGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Q0FRQztBQUNEO0VBQ0UsY0FBYztFQUNkLG9DQUFvQztFQUNwQyx1REFBdUQ7RUFDdkQsdURBQXVEO0VBQ3ZELDZEQUE2RDtFQUM3RCwyV0FBMlc7QUFDN1ciLCJmaWxlIjoiZm9ybS1yZWNhcC1zdWNjZXNzLm1vZHVsZS5zY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiRzaGFkb3c6IChcbiAgeHM6IDAgMnB4IDIwcHggLTJweCByZ2JhKDAsIDAsIDAsIDAuMSksXG4gIHNtOiAwIDRweCAzMHB4IC00cHggcmdiYSgwLCAwLCAwLCAwLjIpLFxuICBtZDogMCA2cHggNDBweCAtNnB4IHJnYmEoMCwgMCwgMCwgMC40KSxcbiAgbGc6IDAgOHB4IDUwcHggLThweCByZ2JhKDAsIDAsIDAsIDAuNiksXG4gIHhsOiAwIDEwcHggNjBweCAtMTBweCByZ2JhKDAsIDAsIDAsIDAuOCksXG4pO1xuKi9cbi5mb3JtUmVjYXBTdWNjZXNzIC5sbG1fX3RleHQtYm9keSB7XG4gIGxpbmUtaGVpZ2h0OiAxO1xuICBmb250LWZhbWlseTogdmFyKC0tbGxtLWZvbnQtcHJpbWFyeSk7XG4gIGZvbnQtd2VpZ2h0OiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXdlaWdodCk7XG4gIGxpbmUtaGVpZ2h0OiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1saW5lLWhlaWdodCk7XG4gIGxldHRlci1zcGFjaW5nOiB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1sZXR0ZXItc3BhY2luZyk7XG4gIGZvbnQtc2l6ZTogY2xhbXAodmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTYtZm9udC1zaXplLW1pbikgKiAxcHggKiB2YXIoLS1zLCAxKSwgdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTYtZm9udC1zaXplLW1pbikgKiAxcHggKiB2YXIoLS1zLCAxKSArICh2YXIoLS11LCAxdncpICogMTAwIC0gMzc1cHgpIC8gMTU0NSAqICh2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXNpemUtbWF4KSAtIHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk2LWZvbnQtc2l6ZS1taW4pKSAqIHZhcigtLXMsIDEpLCB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXNpemUtbWF4KSAqIDFweCAqIHZhcigtLXMsIDEpKTtcbn0iXX0= */");var tA="form-request-module_formRequestCtas__zPuIN";ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.form-request-module_formRequest__tCxa5:not(:first-child) .form-request-module_llm__text-body__MK-ed {\n line-height: 1;\n font-family: var(--llm-font-primary);\n font-weight: var(--llm-typography-display6-font-weight);\n line-height: var(--llm-typography-display6-line-height);\n letter-spacing: var(--llm-typography-display6-letter-spacing);\n font-size: clamp(var(--llm-typography-display6-font-size-min) * 1px * var(--s, 1), var(--llm-typography-display6-font-size-min) * 1px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * (var(--llm-typography-display6-font-size-max) - var(--llm-typography-display6-font-size-min)) * var(--s, 1), var(--llm-typography-display6-font-size-max) * 1px * var(--s, 1));\n}\n\n.form-request-module_formRequestCtas__zPuIN {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n gap: var(--llm-size-2, 1rem);\n margin-top: var(--llm-size-2, 1rem);\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImZvcm0tcmVxdWVzdC5tb2R1bGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Q0FRQztBQUNEO0VBQ0UsY0FBYztFQUNkLG9DQUFvQztFQUNwQyx1REFBdUQ7RUFDdkQsdURBQXVEO0VBQ3ZELDZEQUE2RDtFQUM3RCwyV0FBMlc7QUFDN1c7O0FBRUE7RUFDRSxhQUFhO0VBQ2IsZUFBZTtFQUNmLG1CQUFtQjtFQUNuQiw0QkFBNEI7RUFDNUIsbUNBQW1DO0FBQ3JDIiwiZmlsZSI6ImZvcm0tcmVxdWVzdC5tb2R1bGUuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4kc2hhZG93OiAoXG4gIHhzOiAwIDJweCAyMHB4IC0ycHggcmdiYSgwLCAwLCAwLCAwLjEpLFxuICBzbTogMCA0cHggMzBweCAtNHB4IHJnYmEoMCwgMCwgMCwgMC4yKSxcbiAgbWQ6IDAgNnB4IDQwcHggLTZweCByZ2JhKDAsIDAsIDAsIDAuNCksXG4gIGxnOiAwIDhweCA1MHB4IC04cHggcmdiYSgwLCAwLCAwLCAwLjYpLFxuICB4bDogMCAxMHB4IDYwcHggLTEwcHggcmdiYSgwLCAwLCAwLCAwLjgpLFxuKTtcbiovXG4uZm9ybVJlcXVlc3Q6bm90KDpmaXJzdC1jaGlsZCkgLmxsbV9fdGV4dC1ib2R5IHtcbiAgbGluZS1oZWlnaHQ6IDE7XG4gIGZvbnQtZmFtaWx5OiB2YXIoLS1sbG0tZm9udC1wcmltYXJ5KTtcbiAgZm9udC13ZWlnaHQ6IHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk2LWZvbnQtd2VpZ2h0KTtcbiAgbGluZS1oZWlnaHQ6IHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk2LWxpbmUtaGVpZ2h0KTtcbiAgbGV0dGVyLXNwYWNpbmc6IHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk2LWxldHRlci1zcGFjaW5nKTtcbiAgZm9udC1zaXplOiBjbGFtcCh2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXNpemUtbWluKSAqIDFweCAqIHZhcigtLXMsIDEpLCB2YXIoLS1sbG0tdHlwb2dyYXBoeS1kaXNwbGF5Ni1mb250LXNpemUtbWluKSAqIDFweCAqIHZhcigtLXMsIDEpICsgKHZhcigtLXUsIDF2dykgKiAxMDAgLSAzNzVweCkgLyAxNTQ1ICogKHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk2LWZvbnQtc2l6ZS1tYXgpIC0gdmFyKC0tbGxtLXR5cG9ncmFwaHktZGlzcGxheTYtZm9udC1zaXplLW1pbikpICogdmFyKC0tcywgMSksIHZhcigtLWxsbS10eXBvZ3JhcGh5LWRpc3BsYXk2LWZvbnQtc2l6ZS1tYXgpICogMXB4ICogdmFyKC0tcywgMSkpO1xufVxuXG4uZm9ybVJlcXVlc3RDdGFzIHtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC13cmFwOiB3cmFwO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICBnYXA6IHZhcigtLWxsbS1zaXplLTIsIDFyZW0pO1xuICBtYXJnaW4tdG9wOiB2YXIoLS1sbG0tc2l6ZS0yLCAxcmVtKTtcbn0iXX0= */");var iA="not-found-module_notFound__BCcaN";ev(".not-found-module_notFound__BCcaN {\n border: 1px solid var(--llm-color-neutral-200);\n border-radius: var(--llm-border-radius);\n padding: 20px;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIm5vdC1mb3VuZC5tb2R1bGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLDhDQUE4QztFQUM5Qyx1Q0FBdUM7RUFDdkMsYUFBYTtBQUNmIiwiZmlsZSI6Im5vdC1mb3VuZC5tb2R1bGUuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi5ub3RGb3VuZCB7XG4gIGJvcmRlcjogMXB4IHNvbGlkIHZhcigtLWxsbS1jb2xvci1uZXV0cmFsLTIwMCk7XG4gIGJvcmRlci1yYWRpdXM6IHZhcigtLWxsbS1ib3JkZXItcmFkaXVzKTtcbiAgcGFkZGluZzogMjBweDtcbn0iXX0= */");var aA="user-message-module_UserMessage__b2eB3";ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.user-message-module_UserMessage__b2eB3 {\n line-height: 1;\n font-family: var(--llm-font-secondary);\n font-weight: var(--llm-typography-body3-font-weight);\n line-height: var(--llm-typography-body3-line-height);\n letter-spacing: var(--llm-typography-body3-letter-spacing);\n font-size: clamp(var(--llm-typography-body3-font-size-min) * 1px * var(--s, 1), var(--llm-typography-body3-font-size-min) * 1px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * (var(--llm-typography-body3-font-size-max) - var(--llm-typography-body3-font-size-min)) * var(--s, 1), var(--llm-typography-body3-font-size-max) * 1px * var(--s, 1));\n padding: var(--llm-size-3, 1.5rem) var(--llm-size-4, 2rem);\n color: var(--llm-color-neutral-100);\n border-radius: 6px;\n border: 1px solid var(--llm-color-neutral-900);\n background: linear-gradient(91deg, var(--llm-color-neutral-900) 18.52%, var(--llm-color-neutral-800) 95%);\n width: -moz-fit-content;\n width: fit-content;\n margin-left: auto;\n min-width: 200px;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInVzZXItbWVzc2FnZS5tb2R1bGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Q0FRQztBQUNEO0VBQ0UsY0FBYztFQUNkLHNDQUFzQztFQUN0QyxvREFBb0Q7RUFDcEQsb0RBQW9EO0VBQ3BELDBEQUEwRDtFQUMxRCw0VkFBNFY7RUFDNVYsMERBQTBEO0VBQzFELG1DQUFtQztFQUNuQyxrQkFBa0I7RUFDbEIsOENBQThDO0VBQzlDLHlHQUF5RztFQUN6Ryx1QkFBa0I7RUFBbEIsa0JBQWtCO0VBQ2xCLGlCQUFpQjtFQUNqQixnQkFBZ0I7QUFDbEIiLCJmaWxlIjoidXNlci1tZXNzYWdlLm1vZHVsZS5zY3NzIiwic291cmNlc0NvbnRlbnQiOlsiLypcbiRzaGFkb3c6IChcbiAgeHM6IDAgMnB4IDIwcHggLTJweCByZ2JhKDAsIDAsIDAsIDAuMSksXG4gIHNtOiAwIDRweCAzMHB4IC00cHggcmdiYSgwLCAwLCAwLCAwLjIpLFxuICBtZDogMCA2cHggNDBweCAtNnB4IHJnYmEoMCwgMCwgMCwgMC40KSxcbiAgbGc6IDAgOHB4IDUwcHggLThweCByZ2JhKDAsIDAsIDAsIDAuNiksXG4gIHhsOiAwIDEwcHggNjBweCAtMTBweCByZ2JhKDAsIDAsIDAsIDAuOCksXG4pO1xuKi9cbi5Vc2VyTWVzc2FnZSB7XG4gIGxpbmUtaGVpZ2h0OiAxO1xuICBmb250LWZhbWlseTogdmFyKC0tbGxtLWZvbnQtc2Vjb25kYXJ5KTtcbiAgZm9udC13ZWlnaHQ6IHZhcigtLWxsbS10eXBvZ3JhcGh5LWJvZHkzLWZvbnQtd2VpZ2h0KTtcbiAgbGluZS1oZWlnaHQ6IHZhcigtLWxsbS10eXBvZ3JhcGh5LWJvZHkzLWxpbmUtaGVpZ2h0KTtcbiAgbGV0dGVyLXNwYWNpbmc6IHZhcigtLWxsbS10eXBvZ3JhcGh5LWJvZHkzLWxldHRlci1zcGFjaW5nKTtcbiAgZm9udC1zaXplOiBjbGFtcCh2YXIoLS1sbG0tdHlwb2dyYXBoeS1ib2R5My1mb250LXNpemUtbWluKSAqIDFweCAqIHZhcigtLXMsIDEpLCB2YXIoLS1sbG0tdHlwb2dyYXBoeS1ib2R5My1mb250LXNpemUtbWluKSAqIDFweCAqIHZhcigtLXMsIDEpICsgKHZhcigtLXUsIDF2dykgKiAxMDAgLSAzNzVweCkgLyAxNTQ1ICogKHZhcigtLWxsbS10eXBvZ3JhcGh5LWJvZHkzLWZvbnQtc2l6ZS1tYXgpIC0gdmFyKC0tbGxtLXR5cG9ncmFwaHktYm9keTMtZm9udC1zaXplLW1pbikpICogdmFyKC0tcywgMSksIHZhcigtLWxsbS10eXBvZ3JhcGh5LWJvZHkzLWZvbnQtc2l6ZS1tYXgpICogMXB4ICogdmFyKC0tcywgMSkpO1xuICBwYWRkaW5nOiB2YXIoLS1sbG0tc2l6ZS0zLCAxLjVyZW0pIHZhcigtLWxsbS1zaXplLTQsIDJyZW0pO1xuICBjb2xvcjogdmFyKC0tbGxtLWNvbG9yLW5ldXRyYWwtMTAwKTtcbiAgYm9yZGVyLXJhZGl1czogNnB4O1xuICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1sbG0tY29sb3ItbmV1dHJhbC05MDApO1xuICBiYWNrZ3JvdW5kOiBsaW5lYXItZ3JhZGllbnQoOTFkZWcsIHZhcigtLWxsbS1jb2xvci1uZXV0cmFsLTkwMCkgMTguNTIlLCB2YXIoLS1sbG0tY29sb3ItbmV1dHJhbC04MDApIDk1JSk7XG4gIHdpZHRoOiBmaXQtY29udGVudDtcbiAgbWFyZ2luLWxlZnQ6IGF1dG87XG4gIG1pbi13aWR0aDogMjAwcHg7XG59Il19 */");const oA={action:BI,actionGroup:e=>{const{item:n}=e,t=g(FI);return ce.jsx("div",{className:t,children:n.items.map((n,t)=>ce.jsx(BI,Object.assign({},e,{item:n}),t))})},assistantMessage:e=>{const{text:n,chunkIndex:t,index:i}=e;return ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --sm-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsx(Gx,{body:n,chunkIndex:t,index:i})})})},customCard:RI,customCardGroup:e=>{const{item:n}=e;Bj();const t=ee.useRef(null),i=ee.useRef(null),a={modules:[VL],spaceBetween:fN(16,24),slidesPerView:1.1,watchOverflow:!0,navigation:{prevEl:t.current,nextEl:i.current},breakpoints:{630:{slidesPerView:1.5},768:{slidesPerView:2}}};return ce.jsx("div",{className:WI,children:ce.jsxs(pN,Object.assign({},a,{children:[ce.jsxs("div",{className:KI,children:[ce.jsx("button",{ref:t,children:ce.jsx(zb,{})}),ce.jsx("button",{ref:i,children:ce.jsx(Ib,{})})]}),n.items.map((n,t)=>ce.jsx(yN,{className:VI,children:ce.jsx(RI,Object.assign({},e,{item:n}))},t))]}))})},formRecap:()=>{const e=$j(),n=zI(e=>e.app),t=zI(e=>e.threadId),{formRecap:i,getApi:a}=zI(e=>e.actions);return ce.jsx("div",{className:$I.formRecap,children:ce.jsx("div",{className:$I.formRecapWrapper,children:ce.jsxs("form",{className:$I.formRecapForm,onSubmit:e=>Sj(void 0,void 0,void 0,function*(){e.preventDefault();try{const o=new FormData(e.target),r={};for(const[e,n]of o)r[e]=n;r.threadId=t;const s=Object.assign(Object.assign({},r),{html:qI(r,n)}),u=a(),l=yield u.postSummary(s);l?(console.warn("FormRecap.onSubmit.success",l,s),i()):(console.warn("FormRecap.onSubmit.error"),i({message:"unknown error"}))}catch(e){console.warn("FormRecap.onSubmit.error",e),i(e)}}),children:[ce.jsx("div",{className:$I.formRecapTitle,children:e("llm.formRecapTitle")}),ce.jsxs("div",{className:$I.formRecapFields,children:[ce.jsx("div",{className:$I.formRecapField,children:ce.jsx("input",{type:"text",name:"fullName",id:"subscribe-fullName",placeholder:e("llm.formRecapFullName")})}),ce.jsx("div",{className:$I.formRecapField,children:ce.jsx("input",{type:"email",name:"email",id:"subscribe-email",placeholder:e("llm.formRecapEmail")})}),ce.jsxs("div",{className:g($I.formRecapField,$I.formRecapFieldPrivacy),children:[ce.jsx("input",{type:"checkbox",name:"privacy",id:"subscribe-privacy"}),ce.jsx("label",{htmlFor:"subscribe-privacy",children:e("llm.formRecapPrivacy")})]}),ce.jsx("div",{className:$I.formRecapCta,children:ce.jsx(Ow,{type:"submit",label:e("llm.formRecapSend")})})]})]})})})},formRecapError:()=>{const e=$j();return ce.jsx("div",{className:g(eA,"llm__row"),children:ce.jsx("div",{className:"llm__col --sm-10 --md-8 --lg-6",children:ce.jsx(Gx,{body:e("llm.formRecapError")})})})},formRecapSuccess:()=>{const e=$j();return ce.jsx("div",{className:g(nA,"llm__row"),children:ce.jsx("div",{className:"llm__col --sm-10 --md-8 --lg-6",children:ce.jsx(Gx,{body:e("llm.formRecapSuccess")})})})},formRequest:({last:e})=>{const n=$j(),{formRequest:t}=zI(e=>e.actions);return ce.jsx("div",{className:"llm__row",children:ce.jsxs("div",{className:"llm__col --md-8 --lg-6",children:[ce.jsx(Gx,{body:n("llm.formRequestTitle")}),e&&ce.jsxs("div",{className:tA,children:[ce.jsx(Ow,{type:"simple",label:n("llm.formRequestYes"),onClick:()=>t(!0)}),ce.jsx(Ow,{type:"simple",label:n("llm.formRequestNo"),onClick:()=>t(!1)})]})]})})},notFound:e=>{const{item:n}=e,t=g(iA,{[`.notFound--${n.type}`]:!!n.type});return ce.jsx("pre",{className:t,children:JSON.stringify(n,null,2)})},error:e=>{const{item:n}=e,t=$j(),[i,a]=ee.useState(!1);return ce.jsxs("div",{className:"llm__stream-error llm__row",children:[ce.jsxs("div",{className:"llm__stream-error__info llm__col --sm-10 --md-8 --lg-6",children:[ce.jsx(Gx,{body:t("llm.streamError")}),ce.jsx("button",{className:"llm__stream-error__toggle",type:"button",onClick:()=>a(!i),"aria-label":t(i?"llm.hideError":"llm.showError"),"aria-pressed":i,children:t(i?"llm.hideError":"llm.showError")})]}),i&&ce.jsx("code",{className:"llm__stream-error__error llm__hint",children:JSON.stringify(n.error)})]})},userMessage:e=>{const{text:n}=e;return ce.jsx("div",{className:"llm__row",children:ce.jsx("div",{className:"llm__col --end-xs-12 --xs-10 --sm-9 --md-8 --lg-7 --xl-6",children:ce.jsx("div",{className:aA,children:ce.jsx("h2",{className:"llm__text-body",dangerouslySetInnerHTML:{__html:n}})})})})}};var rA={root:"root-module_root__T6ORu"};ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.root-module_root__T6ORu {\n --s: 1;\n --u: 1vw;\n --rem: 16px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: flex-end;\n width: 100%;\n height: 100%;\n}\n.root-module_root__T6ORu [data-main=true] {\n container-type: inline-size;\n --u: 1cqw;\n --rem: 16px;\n --margin: clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1));\n --negative-margin: calc(var(--margin) * -1);\n --gap: clamp(16px * var(--s, 1), 16px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 16 * var(--s, 1), 32px * var(--s, 1));\n}\n.root-module_root__T6ORu .llm__container {\n padding: 0 clamp(20px * var(--s, 1), 20px * var(--s, 1) + (var(--u, 1vw) * 100 - 375px) / 1545 * 90 * var(--s, 1), 110px * var(--s, 1));\n}\n.root-module_root__T6ORu:not([data-embedded=true]) {\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n z-index: 9999;\n}\n@media (min-width: 768px) {\n .root-module_root__T6ORu:not([data-embedded=true])[data-mode=chat] [data-main=true] {\n position: absolute;\n width: 100%;\n height: 100%;\n overflow: hidden;\n top: var(--llm-chat-top);\n right: var(--llm-chat-right);\n bottom: var(--llm-chat-bottom);\n left: var(--llm-chat-left);\n max-width: var(--llm-chat-max-width);\n max-height: var(--llm-chat-max-height);\n border-radius: var(--llm-chat-border-radius);\n box-shadow: var(--llm-chat-box-shadow);\n }\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInJvb3QubW9kdWxlLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7O0NBUUM7QUFDRDtFQUNFLE1BQU07RUFDTixRQUFRO0VBQ1IsV0FBVztFQUNYLGFBQWE7RUFDYixzQkFBc0I7RUFDdEIsbUJBQW1CO0VBQ25CLHlCQUF5QjtFQUN6QixXQUFXO0VBQ1gsWUFBWTtBQUNkO0FBQ0E7RUFDRSwyQkFBMkI7RUFDM0IsU0FBUztFQUNULFdBQVc7RUFDWCxzSUFBc0k7RUFDdEksMkNBQTJDO0VBQzNDLGtJQUFrSTtBQUNwSTtBQUNBO0VBQ0UsdUlBQXVJO0FBQ3pJO0FBQ0E7RUFDRSxlQUFlO0VBQ2YsTUFBTTtFQUNOLE9BQU87RUFDUCxvQkFBb0I7RUFDcEIsYUFBYTtBQUNmO0FBQ0E7RUFDRTtJQUNFLGtCQUFrQjtJQUNsQixXQUFXO0lBQ1gsWUFBWTtJQUNaLGdCQUFnQjtJQUNoQix3QkFBd0I7SUFDeEIsNEJBQTRCO0lBQzVCLDhCQUE4QjtJQUM5QiwwQkFBMEI7SUFDMUIsb0NBQW9DO0lBQ3BDLHNDQUFzQztJQUN0Qyw0Q0FBNEM7SUFDNUMsc0NBQXNDO0VBQ3hDO0FBQ0YiLCJmaWxlIjoicm9vdC5tb2R1bGUuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4kc2hhZG93OiAoXG4gIHhzOiAwIDJweCAyMHB4IC0ycHggcmdiYSgwLCAwLCAwLCAwLjEpLFxuICBzbTogMCA0cHggMzBweCAtNHB4IHJnYmEoMCwgMCwgMCwgMC4yKSxcbiAgbWQ6IDAgNnB4IDQwcHggLTZweCByZ2JhKDAsIDAsIDAsIDAuNCksXG4gIGxnOiAwIDhweCA1MHB4IC04cHggcmdiYSgwLCAwLCAwLCAwLjYpLFxuICB4bDogMCAxMHB4IDYwcHggLTEwcHggcmdiYSgwLCAwLCAwLCAwLjgpLFxuKTtcbiovXG4ucm9vdCB7XG4gIC0tczogMTtcbiAgLS11OiAxdnc7XG4gIC0tcmVtOiAxNnB4O1xuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWRpcmVjdGlvbjogY29sdW1uO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICBqdXN0aWZ5LWNvbnRlbnQ6IGZsZXgtZW5kO1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xufVxuLnJvb3QgOmdsb2JhbCBbZGF0YS1tYWluPXRydWVdIHtcbiAgY29udGFpbmVyLXR5cGU6IGlubGluZS1zaXplO1xuICAtLXU6IDFjcXc7XG4gIC0tcmVtOiAxNnB4O1xuICAtLW1hcmdpbjogY2xhbXAoMjBweCAqIHZhcigtLXMsIDEpLCAyMHB4ICogdmFyKC0tcywgMSkgKyAodmFyKC0tdSwgMXZ3KSAqIDEwMCAtIDM3NXB4KSAvIDE1NDUgKiA5MCAqIHZhcigtLXMsIDEpLCAxMTBweCAqIHZhcigtLXMsIDEpKTtcbiAgLS1uZWdhdGl2ZS1tYXJnaW46IGNhbGModmFyKC0tbWFyZ2luKSAqIC0xKTtcbiAgLS1nYXA6IGNsYW1wKDE2cHggKiB2YXIoLS1zLCAxKSwgMTZweCAqIHZhcigtLXMsIDEpICsgKHZhcigtLXUsIDF2dykgKiAxMDAgLSAzNzVweCkgLyAxNTQ1ICogMTYgKiB2YXIoLS1zLCAxKSwgMzJweCAqIHZhcigtLXMsIDEpKTtcbn1cbi5yb290IDpnbG9iYWwgLmxsbV9fY29udGFpbmVyIHtcbiAgcGFkZGluZzogMCBjbGFtcCgyMHB4ICogdmFyKC0tcywgMSksIDIwcHggKiB2YXIoLS1zLCAxKSArICh2YXIoLS11LCAxdncpICogMTAwIC0gMzc1cHgpIC8gMTU0NSAqIDkwICogdmFyKC0tcywgMSksIDExMHB4ICogdmFyKC0tcywgMSkpO1xufVxuLnJvb3Q6bm90KFtkYXRhLWVtYmVkZGVkPXRydWVdKSB7XG4gIHBvc2l0aW9uOiBmaXhlZDtcbiAgdG9wOiAwO1xuICBsZWZ0OiAwO1xuICBwb2ludGVyLWV2ZW50czogbm9uZTtcbiAgei1pbmRleDogOTk5OTtcbn1cbkBtZWRpYSAobWluLXdpZHRoOiA3NjhweCkge1xuICAucm9vdDpub3QoW2RhdGEtZW1iZWRkZWQ9dHJ1ZV0pW2RhdGEtbW9kZT1jaGF0XSA6Z2xvYmFsIFtkYXRhLW1haW49dHJ1ZV0ge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICB0b3A6IHZhcigtLWxsbS1jaGF0LXRvcCk7XG4gICAgcmlnaHQ6IHZhcigtLWxsbS1jaGF0LXJpZ2h0KTtcbiAgICBib3R0b206IHZhcigtLWxsbS1jaGF0LWJvdHRvbSk7XG4gICAgbGVmdDogdmFyKC0tbGxtLWNoYXQtbGVmdCk7XG4gICAgbWF4LXdpZHRoOiB2YXIoLS1sbG0tY2hhdC1tYXgtd2lkdGgpO1xuICAgIG1heC1oZWlnaHQ6IHZhcigtLWxsbS1jaGF0LW1heC1oZWlnaHQpO1xuICAgIGJvcmRlci1yYWRpdXM6IHZhcigtLWxsbS1jaGF0LWJvcmRlci1yYWRpdXMpO1xuICAgIGJveC1zaGFkb3c6IHZhcigtLWxsbS1jaGF0LWJveC1zaGFkb3cpO1xuICB9XG59Il19 */");const sA=ee.forwardRef(function({opened:e,embedded:n,customIntro:t,shouldShowTrigger:i,mode:a},o){const r=g("llm",rA.root,{"-open":e,"-embedded":n,"-custom-intro":t,[rA["-"+a]]:!0});return ce.jsx("section",{ref:o,className:r,children:ce.jsxs(Aw,{children:[ce.jsx(qN,{}),ce.jsx(vj,{mode:"wait",initial:!1,children:e&&ce.jsx(fv,{},"main")}),ce.jsx(vj,{mode:"wait",initial:!1,children:i&&ce.jsx(rI,{},"trigger")})]})})});var uA={thread:"thread-module_thread__DQaLA",threadMessage:"thread-module_threadMessage__dHGU-",threadInner:"thread-module_threadInner__WbyRh",threadEnd:"thread-module_threadEnd__ld9Sa"};ev("/*\n$shadow: (\n xs: 0 2px 20px -2px rgba(0, 0, 0, 0.1),\n sm: 0 4px 30px -4px rgba(0, 0, 0, 0.2),\n md: 0 6px 40px -6px rgba(0, 0, 0, 0.4),\n lg: 0 8px 50px -8px rgba(0, 0, 0, 0.6),\n xl: 0 10px 60px -10px rgba(0, 0, 0, 0.8),\n);\n*/\n.thread-module_thread__DQaLA {\n margin-top: var(--llm-size-15, 7.5rem);\n display: flex;\n flex-direction: column;\n row-gap: var(--llm-size-15, 7.5rem);\n}\n\n.thread-module_threadMessage__dHGU- {\n position: relative;\n display: flex;\n flex-direction: column;\n row-gap: var(--llm-size-2, 1rem);\n}\n\n.thread-module_threadInner__WbyRh:empty {\n display: none;\n}\n\n.thread-module_threadEnd__ld9Sa {\n height: 0;\n margin-top: -33px;\n}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInRocmVhZC5tb2R1bGUuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7Q0FRQztBQUNEO0VBQ0Usc0NBQXNDO0VBQ3RDLGFBQWE7RUFDYixzQkFBc0I7RUFDdEIsbUNBQW1DO0FBQ3JDOztBQUVBO0VBQ0Usa0JBQWtCO0VBQ2xCLGFBQWE7RUFDYixzQkFBc0I7RUFDdEIsZ0NBQWdDO0FBQ2xDOztBQUVBO0VBQ0UsYUFBYTtBQUNmOztBQUVBO0VBQ0UsU0FBUztFQUNULGlCQUFpQjtBQUNuQiIsImZpbGUiOiJ0aHJlYWQubW9kdWxlLnNjc3MiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuJHNoYWRvdzogKFxuICB4czogMCAycHggMjBweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4xKSxcbiAgc206IDAgNHB4IDMwcHggLTRweCByZ2JhKDAsIDAsIDAsIDAuMiksXG4gIG1kOiAwIDZweCA0MHB4IC02cHggcmdiYSgwLCAwLCAwLCAwLjQpLFxuICBsZzogMCA4cHggNTBweCAtOHB4IHJnYmEoMCwgMCwgMCwgMC42KSxcbiAgeGw6IDAgMTBweCA2MHB4IC0xMHB4IHJnYmEoMCwgMCwgMCwgMC44KSxcbik7XG4qL1xuLnRocmVhZCB7XG4gIG1hcmdpbi10b3A6IHZhcigtLWxsbS1zaXplLTE1LCA3LjVyZW0pO1xuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWRpcmVjdGlvbjogY29sdW1uO1xuICByb3ctZ2FwOiB2YXIoLS1sbG0tc2l6ZS0xNSwgNy41cmVtKTtcbn1cblxuLnRocmVhZE1lc3NhZ2Uge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gIHJvdy1nYXA6IHZhcigtLWxsbS1zaXplLTIsIDFyZW0pO1xufVxuXG4udGhyZWFkSW5uZXI6ZW1wdHkge1xuICBkaXNwbGF5OiBub25lO1xufVxuXG4udGhyZWFkRW5kIHtcbiAgaGVpZ2h0OiAwO1xuICBtYXJnaW4tdG9wOiAtMzNweDtcbn0iXX0= */");const lA={Root:sA,Thread:()=>{const e=$j(),n=zI(e=>{var n;return null===(n=e.app)||void 0===n?void 0:n.contents.enableFeedback}),t=zI(e=>e.messages),i=zI(e=>void 0!==e.chunks);return ce.jsxs("section",{className:g(uA.thread,"llm__container"),children:[t.map((i,a)=>ce.jsxs("div",{className:g(uA.threadMessage,"user"===i.role?uA.threadMessageUser:uA.threadMessageAssistant),role:"region","aria-label":"user"===i.role?e("llm.question"):e("llm.answer"),children:[i.chunks.map((e,n)=>ce.jsx(KN,{className:g(uA.threadInner,uA[e.type]),item:e,chunkIndex:n,index:a,total:t.length,role:i.role},`llm-message-${a}-chunk-${n}`)),"user"===i.role?0===a&&ce.jsx(VN,{}):a===t.length-1&&n&&ce.jsx($N,{message:i})]},`llm-message-${a}`)),i&&ce.jsx(oI,{index:t.length})]})}};function cA(e){return Object.assign(Object.assign({},e),{blocks:Object.assign(Object.assign({},e.blocks),oA),components:Object.assign(Object.assign({},e.components),lA),onInit:e=>{console.log("llmPlugin.onInit",e)}})}const dA={app:{mode:"site",contents:{logo:{id:"6560a04654a910c2150ab7a9",alt:"logo - Plugin",url:"data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjU2IiB2aWV3Qm94PSIwIDAgMTkyIDU2IiB3aWR0aD0iMTkyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48Y2xpcFBhdGggaWQ9ImEiPjxwYXRoIGQ9Im0uMzMzMzc0IDBoMTkxLjMzM3Y1NmgtMTkxLjMzM3oiLz48L2NsaXBQYXRoPjxnIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZD0ibTM1LjI1NjggOC40NjYxOWMuMDM2Ni4wODYzOS4wMTM1LjE3NjYyLjE4NS4yNDk1N2wtLjE3NzMuNTA2ODJjLjAyODktLjE1NTUuMDI3LS4zNzQzNi0uMDA3Ny0uNzU2Mzl6IiBmaWxsPSIjZmVmZWZlIi8+PHBhdGggZD0ibTM1LjI1NjggOC40NjYxOWMuMDM2Ni4wODYzOS4wMTM1LjE3NjYyLjE4NS4yNDk1N2wtLjE3NzMuNTA2ODJjLjAyODktLjE1NTUuMDI3LS4zNzQzNi0uMDA3Ny0uNzU2Mzl6IiBzdHJva2U9IiNmZWZlZmUiIHN0cm9rZS1taXRlcmxpbWl0PSIzLjg2IiBzdHJva2Utd2lkdGg9Ii4zOSIvPjxnIGZpbGw9IiNmZWZlZmUiPjxwYXRoIGQ9Im0zMC44ODU2IDMyLjI0MDljLjM3MTgtLjY0Ny45NTE3LTEuNjM1NyAxLjIyNTItMS42MzU3LjE0MDcgMCAuMDYzNi0uMDA3Ny4xMTM3LjAzODQtLjAwMTkuMjEzMS4wNTM5LjQ5MTUuMDUzOS42MzE2IDAgLjI4MDMtLjA3Ny42MTI0LS4yMDQyLjk2MTgtLjM2OTkgMS4wMjMzLTEuMTU3OCAyLjE5NjItMS42NDMzIDIuNjU4OWguMzY0MWMuOTc2OC0uMDcyOSAyLjA1NTYtMS4yNDAyIDIuODg3OC0yLjY1Ny44MjA3LTEuMzk5NSAxLjM5ODctMy4wNDI4IDEuMzk4Ny00LjExOTggMC0uMTQwMi4wOTA1LS4yNTE1LS4wNTc4LS44NDQ3LS4xNjc2LS42ODM1LS4zMzcyLTEuNjI2MS0uODg4MS0yLjA4NDl2MS4yNjEzYy0uMDA3Ny41Mjk5LS40NDMxIDIuMzExNC0xLjI2OTYgMi4zMTE0LS4xNDA2IDAtLjMzNzEtLjE2Ny0uNDc1OC0uMTY3cy0uNDkxMy4xNzI4LS42NDE2LjI3ODRjLS4wMzg1LS4wNDgtLjA5NDQtLjEwMzctLjE0MjUtLjE0MjEuMTA3OS0uMTQ5Ny4yMjM1LS4zNjA5LjIyMzUtLjQ5OTEgMC0uMzQ5NC0xLjg3ODQtMi42OTkzLTIuNDQ2Ny0zLjMyMTMtLjMwODIgMi43MzU3LTEuMzc1NSA1LjA2MjUtMi42NjQzIDcuMzI5OC0uNDA4NC43MTk5LS44NCAxLjQzMjEtMS4yNzU0IDIuMTUwMS4wODA5LjAxMzQuMTYzOC4wNDIyLjE3MzQuMTIxaDEuMTQ4MmMuNTg3Ni0uMjg0MiAxLjIzMS0uNTU2OCAxLjgzNzktLjgwMjUuMTU4LS4xNzA5IDEuMTExNi0xLjE0NjEgMS42MDI4LTEuMTQ2MS4xNDA3IDAgLjI0MjguMDUzNy40Mjk2LjEwOTQuMDU5Ny0uMDk5OC4xNDY0LS4yNTE1LjI0ODUtLjQzIi8+PHBhdGggZD0ibTM3LjI4NzMgNDcuNjkzMWMtLjA0ODItLjIzOC0uMDE5My0uMjg0MS0uMTM4Ny0uNDUzbC0uMDIzMS4wMDM4Yy0uMDU3OC4wMTU0LS4wNzEzLjA1OTUtLjE5NjUuMDU5NS0uMTQwNyAwLS42NjQ3LS42MjItLjk5MjItLjk1MjItLjA0NDMuMDAxOS0uMDczMi4wMzA3LS4wODA5LjEwOTRoLS4yNTQzYy0uMzE1OS0uMjc0NS0uNzY4Ny0uNjk4OC0xLjE5NDQtMS4wMjMyLjIzNS0uMzYyOC4zOTExLTEuMTcxMS4zOTExLTEuNjE2NXYtLjkwOGMwLS4xMTE0LjA0MjMuMjYxMS4yMTc3LS42NjgxLjAwNzctLjA0OC4wMDU3LS4yOTU2LjAwNTctLjQ0MTUgMC0uMDIxMi0uMDEzNC0uMjE4OS0uMTA5OC0uMzI0NSAwLS4wNjcyLjA2MTctLjA4NjQuMTExOC0uMTMyNS0uMDAyLS4wNDYtLjAzMDktLjEyODYtLjEwOTgtLjE0Mi4wNTM5LS4xMzgyLjEwNzgtLjMyMjUuMTA3OC0uNDYwOCAwLS4xMzgyLS4xMTE3LS4yMjI3LS4xMTE3LS4zNjI4cy4wNjM2LS4wNDguMTExNy0uMDc4N2MwIDAtLjAyODktLjAzMjYtLjEwNzgtLjA0MDN2LS4yNjVsLjEwMDEuMDAzOS0uMTAwMS0uNjA0N2MtLjAwMzktLjIwMzUtLjIyNzQtLjY3MDEtLjIyNzQtLjg4NyAwLS43ODkgMS43OTM2LTIuNTA1MyAxLjc5MzYtMi42MjQzIDAtLjE0MDItLjIyMzUtLjY3LS4yMjM1LS44MTAyIDAtLjMzNC41MDQ4LTEuMTg2NC41MDQ4LTEuNjQxNHYtLjczOTFjMC0uMDU5NS0uMDg4Ny0uMjM0Mi0uMjA4MS0uNDUzMS0uMTYxOC0uMjk5NS0uMzc5NS0uNjgzNC0uNDk3LS45NjM3LS4wODY3LjEwMzctLjI3NTUuMTExMy0uNDI3Ny4xMDc1LS4wODQ4LjIzMjMtLjIzNS41NzAyLS4zNTgzLjg1NjItLjEwNi4yNDk2LS4xOTA4LjQ1ODktLjE5MDguNTI0MXYuOTM1YzAgLjg3OTItMi4xOTYyIDIuOTk0OC0zLjAwMTQgMy42OTM2LS4yMDQyLjE3NDctLjc2NDkuNTI0MS0uOTIyOC43Nzk1LjMyOTQuNDQ1My41MTA1IDEuMTA5Ni42MjQyIDEuNjcyMWguMDE3M2MuMDE5My4xMTEzLjA0MDQuMjIyNy4wNTc4LjMzNzl2MS44NDg3Yy0uNDA2NSAyLjQ1MTYtMS40ODUzIDIuODAyOS0xLjQ4NTMgNS4wNzk3IDAgLjYwMDkgMi4xNDggMi4xMDIyIDIuODAzIDIuMjM0Ny0uMDUwMS4wMTkyLS4xMzY4LjAzODQtLjIyOTIuMDY1Mi40MTggMCAxLjA0NDEtLjAxNTMgMS45Njg4LS4xNzY2IDEuMDA3Ni0uMTc2NiAxLjYwMDktLjI5NTYgMS45NTczLS41OTEzLjM1NjQtLjI5NTYuNDc0LS42NTA4LjQxNjItLjk0NDUiLz48cGF0aCBkPSJtMTUuOTg5OSA0NC42OTI0Yy0uMzc3Ni0uMTExMy0uODYxMS4wNzY4LTEuMjMyOS0uMDM0NS0uMzk4OC0uMTE5LS43Mzk4LS40MzItMS4wNjczLS43NDExLS4wMTc0LS4yMTMxLS4wNzMyLS41Nzc4LS4wNzMyLS43MTggMC0uODkyNy42NzIzLTIuMDQ0NS42NzIzLTIuNjc0MnYtMS4wMTk0YzAtLjY1NjYtMi4xNTE5LTIuNDk3Ni0yLjMzNDktMi42MjI0LS4zNjQxLTEuNTgxOS0uNTg3Ni0zLjIxOTUtMS4yMTk1LTQuNjQ0aC0uMDQ2MmMtLjI2NTktLjY3NzctLjYwMy0xLjIyMS0xLjA0NjA4LTEuNzA2N3YtLjE2N2MtLjE2Mzc1LjEyODYtLjMzNzE0LjQ0MzUtLjQ3Nzc3LjYyMi0uMTU5OS4yMDU0LS4yMzExOC4zNDE3LS4zNDY3Ny41MTQ1di43NTY0Yy0uMTYzNzUuMzQzNy0uMzU2NCAxLjQyNDUtLjM1NjQgMS44OTg3djIuODgzNWMwIC4xNDAxLjExMTc0LS4wNDIyLjExMTc0LjA5Nzl2Ljc0MWMwIC4xNDAyLjExMTczLS4wNDIyLjExMTczLjA5Nzl2LjY5MTJjMCAuMDk0LjA4ODYyLjUxNDUuMjI1NCAxLjAyNy4zMTQwMiAxLjE3My44NzQ2MyAyLjgyMDIgMS4xNzcwNSAyLjA5NDUuMjE1OC4yMTg5LjM4NzMuNTAzLjUwMjkuNzMzNHYxLjI3NjZjMCAuMTQwMi4xMTE3LS4wNDIyLjEwNzguMDk3OXYyLjU2MWMtLjA0MjMuMDAzOS0uMDQ2Mi4wMjEyLS4wNjE2LjAzNjUuMDY1NS4wMTkyLjE3MTQuMDY1My4zNzc2LjE5MzkuNDczOS4yOTU3Ljc3MDYuNTkxMyAxLjU0MTIuODg2OS43NzA2LjI5NTcuNzcwNi40MTQ3IDEuNjYwNi42NTA5Ljg5LjIzNjEgMS4xMjcuMzU1MSAxLjYxMDYuMjkzNy4xMjcxLS4zNTUyLjU4OTUtMS41MDcxLjU4OTUtMS42ODM3di0xLjM1MzRjMC0uMjU5Mi0uMTk2NS0uNzE5OS0uNDI3Ny0uNzg5Ii8+PHBhdGggZD0ibTM3LjA0ODQgMjAuNTk5MmMuMDczMy45ODY4LS4wMDU3IDEuMDM2Ny4wMDIgMS4wODA5LjA5MDUuMDQ4LjEwNC4yNC4xMDQuMzgwMXMtLjAxMzUuMzMyMS0uMTA0LjM4MDFjLS4wMDk3LjA0NjEuMDc1MS4wOTYtLjAwNzcgMi4yMjEyLS4wMDk3LjA0MDMtLjAxNzQuMDc4Ny0uMDI1MS4xMjA5LS4wOTYzLjQ2ODUtLjE1NDEuOTUwMy0uMjc1NSAxLjQyNjQtLjE0MDYuNTM3Ni0uNzYyOSAxLjM4MjMtLjc2MjkgMS41MjI0IDAgLjMyMDYuMzg1My4zNjI5LjUzMTguMzYyOS4xNDY0IDAgLjMzNzEtLjA1NTcuNDg3NC0uMDQ5OS4zMzUyLTEuMTA5NyAxLjA1NTctMi4wNiAxLjI1NDEtMy4yNTk4LjAzODUtLjIzMDQuMDU3OC0uNDY4NS4wNTAxLS43MmwtLjA2NTUtLjEyNjdjLS4xNzE1LS4zMzk4LS43MjQ0LTIuNTM0MS0xLjE4ODctMy4zMzQ2Ii8+PHBhdGggZD0ibTI3LjI5NDYgMjQuNzgyNGMtLjE4ODgtLjM2NDctLjc0MTctLjU0MzMtLjkzNDMtLjU0MzNoLTEuMTA3OGMtLjY5MzUgMC0uOTQ1OS0xLjY3NTktMS4yOTY1LTEuNjc1OS0uMTQwNiAwLTEuMTA3Ny42MTI0LTEuNjc0MS44OTI3aC0xLjE5NDRjLS4xMjE0LS4xMTkxLS4yODktLjI4NjEtLjQwODQtLjQwN3YtLjc0M2MwLS4xNDAxLjExOTQtLjE4MDQuMjYtLjI5OTUuMDQ2My4yNzQ2LjIxNTguMjk1Ny4yNzc0LjM4OTggMS4yMjkxLS41Mjk5IDIuNjQ3LTEuMTQyMyAzLjczOTQtMS44NDMuMDYzNSAwIC4wODQ3LjA2MzMuMTIzMy4xMTEzLjIzMzEtLjE1MzYgMS45MjA3LTEuMDYzNSAyLjkyNjMtMS40NzQ0aC0yLjU2NDJsLTIuNjM5MyAxLjQ3MjVjLS4zNTA2LS4yNTczLS42NzA0LS40MDUxLS42NzA0LS43ODE0IDAtLjI1MzQuMTM0OS0uMzIwNi4xNTYxLS42OTExLjAwNzctLjEyMjggMC0uMjc4NC0uMDI1MS0uNDgxOC0uMTI5LjE1NTUtLjI1ODEuMzE2Ny0uMzg1My40ODE4LS43NzI1IDEuMDAwMi0xLjQ5NDkgMi4xMTc1LTIuMjg0OCAzLjAzMzNoLS4yMDAzYy0uMDA3Ny0uMTM0NC0uMDU5OC0uMjMyMy0uMTA2LS4zMzIyaC0uNzA3Yy0uNzUxNCAwLTIuMjY3NSAxLjY5OTEtMy4xOTggMy4wNDFoLjA0NjJjLS41MDg2Ljc1NDUtLjg2MyAxLjQyMjUtLjg2MyAxLjY3OTggMCAuMTQwMS4xMTE3LjI1MTUuMTExNy4zOTE2IDAgLjk1NjEtMS4wNjUzIDIuMzExNC0xLjA2NTMgMy4zNTc3di43MDQ2YzAgLjE0MDEtLjExMTgtLjA0MjMtLjExMTguMDk3OXYxLjc1MjdjMCAuNTcyMS41ODU3IDIuMDE5Ny45MzA1IDIuMTU3OS4zNTI2LS4wMDc3LjQxNjEtLjYxMjQuNTU0OC0uNzY0MS41NjY0LS4xODQzIDEuNTIyLjEwNzUgMS43MTA4LS43MTQxLS4xOTQ2LS40NjI3LS40NDUtLjkwMjMtLjY3MjQtMS4zNTczLS4wOTgyLS4xOTM5LS4xOTI2LS4zOTE3LS4yNzU1LS41OTUydi0uMzU3Yy4zODUzLS4xNTU1LjM4OTItLjEwOTUuMzg5Mi0uNDMwMSAwLS4yNzgzLS4wNzcxLS41NTI5LS4yMjM1LS43MTYxdi0xLjEzNDVjMC0uOTU2MSAxLjUxMjMtMi43MzM4IDEuOTc2Ni0zLjMxMzYuMDY3NC0uMDAxOS4xMzY4LjA1NTcuMjYyLjEyNjctLjE5NjUuNTE2NC0xLjA2MzQgMi4xMTE4LTEuMDYzNCAyLjQxODl2Ljk5MDdjMCAuNTk4OS42Mzk2IDIuMDEzOCAxLjExNTQgMy4wMDgyLjI4MzIuNTkxMy41MDg2IDEuMDM2Ny41MDg2IDEuMDc1MSAwIC40NzQyLS43MjgyIDEuMTU5Ni0uNzI4MiAyLjQzMDUgMCAxLjIwMTcuNTUyOSAyLjY1NSAxLjEwOTcgMy45NTA5LjQxMDMuOTU0MS44MjI2IDEuODI1NyAxLjAxOTEgMi40NTE1IDAgMC0uMTA5OC0uMDY1Mi0uMTA5OC4wNzQ5djEuNzUyOGMwIDEuNDU3MS0uNzI4MyAyLjY3MjMtMS4xNjE3IDMuODk3MSAwIDAgLjA1OTcgMS4yNDIxLS4xMTk1IDEuNjU0OS0uMTc3Mi40MTQ2LS41OTMzIDEuMDYzNS0uNzcwNiAxLjQxODctLjE3NzIuMzU1MS0uMTc3MiAxLjI5OTcuMDU5OCAxLjc3MzkuMjM2OS40NzIyLjgzMDMgMS4wNjM1IDEuMzYzOSAxLjI0MjEuNTMzNy4xNzY2IDEuNDIzNy41MzE3IDEuOTU3My41OTEzLjUxNjMuMDU3NS42OTk0LjA1OTUgMS4wMzI2LjAwNTdoLS4zNDI5Yy41MTYzLS4zODIgMS4xMzQ3LS4xNDc4IDEuNTItLjU2MDYuNTYwNi0uNjA2NiAxLjM2OTgtLjc2NzkgMS42NzQxLTEuMzYzdi0uNjdjMC0uNjI3OC0xLjIzNjgtMS4yMjI5LTEuNDU4My0xLjY2MjV2LTIuMzA5NWMwLS4xNDAyLjExMTcuMDQyMi4xMTE3LS4wOTc5IDAtLjE0MDItLjExMTcuMDU1Ni0uMTExNy0uMDg0NXYtMTQuMjc3NGMuMjUwNC0uMzk5My42NDczLS44Mjk0IDEuMDU3Ni0xLjI5MDEuNzY0OC0uODU4MiAxLjU3NTktMS44MiAxLjU3NTktMi44ODM1di0uODUyNGMwLS4zNzYzLjI2Mi0xLjA1NC40NjYyLTEuNDQzNy4wODQ4LS4xNTkzLjQ4NzQtLjkyMzQuNDg3NC0uOTk4M3YtMS4xMzA3YzAtLjA0OTktLjAxNTQtLjA5OTgtLjA0MDQtLjE0NTloLS4wMTM1eiIvPjxwYXRoIGQ9Im0yOC42NzIxIDE4Ljk4ODVoMS4xNjM2Yy4zODUzIDAgMS4zODEzLTEuODA4NCAxLjM4MTMtMi4wMzg4IDAtLjM5MTYtLjg0LS43NjAyLS44NC0xLjE5OTggMC0uNTM3Ni4xMTE4LTEuMDYxNy42NzI0LTEuMDYxNy4xNDA2IDAgLjI3OTMuMTExNC40Mi4xMTE0LjU1MjkgMCAxLjgyODItLjUyNjEgMS44ODYtMS4xNjkyaC4xOTY1Yy4yNDQ3LjE2MTMuMzc5NS43MjE5Ljc4NzkuNjY4MS4wNjc1LjEyMjkuMDcxMy4yNzY1LjA3MTMuNDE0NyAwIC41MDMtLjI4MTMgMS4wMDU5LS4yODEzIDEuNTA4OSAwIC4yMjI3Ljg3NjYgMS4wNzEzLjk1OTQgMS4xNDQyLjAxNzQtLjAwMzguMDM0Ny0uMDA5Ni4wNTIxLS4wMTczLjA3NTEtLjAzNjQuMTUyMS0uMTE3MS4yNjItLjE5LjAzMDgtLjI2MTEtLjAxMzUgMCAuNTc5OC0uMzc4MmwuMDk0NC0uMDYzNC0uMzIxNy4xODI0LS4wMTE2LTEuNDE4N3MuMTc3My0uNTMxOC4wNTk4LTEuMDA0MWMtLjA3NTItLjI5OTQtLjIyMTYtLjUyNzktLjM1MDctLjc0MjktLjcxODUtLjgzOS0uOTE3LTEuOTU0My0yLjA4MDYtMi4xNDQ0LS4zNzc2LS4zMzIxLS45NjEzLTEuMDU0LTEuMzc1NS0xLjI4ODIuMzI3NS0uMjM0MiAxLjYyNi0uMzE0ODIgMS42MjYtLjY5ODc4IDAtLjE0MDE0LS4wNTU5LS4yNTE0OS0uMDU0LS4zNTMyNC0uMDUwMS0uMDQ2MDcuMDI1MS0uMDM4MzktLjExMzYtLjAzODM5cy0uMjg5LjA0Nzk5LS40MTA0LjE2NzAyaC0uNzEwOGMtLjE0MDcgMCAuMDI4OS0uMTA5NDMtLjExMTgtLjExMTM1aC0xLjA0OGMtLjQ0ODktLjM4OTcyLS43MjYzLS44MTIwNy0xLjA3ODgtMS4yNDU5NHYtLjE5MzljLjQzMzQtLjE5MDA1IDEuOTE0OS0xLjI0MDE3IDIuMDk3OS0xLjI0MDE3LjE0MDcgMCAuNTg3Ni4yNzgzNi43MjgyLjI3ODM2LjE0MDcgMCAuNDk1MS0uMjIyNjkuODE2OS0uMzIyNTJ2LS4xOTc3NGMtLjE2MzgtLjE1NzQyLS4yNzU1LS4zODAxMS0uNDM1NC0uNTQ1MjJoLS43Mzc5Yy0uMDY1NS0uNzgxMzUtMS4wNTE4LTEuNzI1ODgtMS45MTQ5LTEuNzI1ODgtLjQ3NTggMC0uNTYwNi4yNzgzNy0uNzg0MS4yNzgzNy0uNzU3MSAwLS44MzAzLTEuMjg0MzMtLjk2OS0xLjUyMjM5LS4yODEzLS40NzQxOC0uMTc1My0xLjM2MTEyLS42NjQ2LTEuNzIzOTYtLjU0NzItLjQwNTA3Mi0xLjI1OC0uNDcwMzQ1LTEuOTQxOS0uNjIwMDg4di0uMDg2MzljLS40NDEyLjA2OTExMi0xLjExMTYuMTkwMDU4LTEuNzc4Mi4zNzYyNzctMS4xMzI4LjMxODY4MS0xLjc4NzguNjE4MTcxLTIuNTM3MiAxLjAwMDIwMS0uNzE4Ni4zNjY2OC0xLjY3MjIgMS40NzgyNC0xLjg2MSAxLjg0ODc1Ljc2NDgtLjUyNDEgMS42OTUzLS42MTQzMyAyLjcxODMtLjYxNDMzIDIuMDk0MSAwIDIuOTQxOCAxLjgxNjEyIDIuOTQxOCAzLjYwMTUxIDAgLjc4OTAzLTIuODU5IDIuMzM4MjktMi44NTkgMy42MzAzIDAgLjIwMzUuMTg2OS40NzQyLjMwNjQuNTg3NS40Mjk2LS40OTM0LjkzNDMtLjk5NjQxIDEuMzM1LTEuNDQ5NDguMDY3NC0uMDAxOTEuMDExNi4xMDk0My4xNTIyLjEwOTQzaDEuMDA5NWMuMTQwNiAwLS4wMjg5LS4xMTEzNC4xMTE3LS4xMTEzNGguOTcyOWMuMTQwNiAwIC40NTQ3LS41NTg2Ni41OTUzLS41NTg2Ni44MTg3IDAgMS4xODY3IDEuNzE2MjUgMS42MDI4IDIuMzIyOTUuMDIxMi40Mzk2LjA3OSAxLjMwNzQuMDUwMSAxLjQ0NzV2MS41NzA0Yy0uMjQ4NS40MTY2LS4zOTg4IDIuMzExNC0xLjQ1NjQgMi4zMTE0LS43MzU5IDAtMS4yMTk1LS41NTg3LTEuOTYxMi0uNTU4Ny0uMTQwNiAwLS4zMTQuMTU1NS0uNDIxOS4zMTQ5di44NzkyYzAgLjExOTEuNDU2Ni45MzExLjUyNzkgMS4wNDA2LjEwNC0uMzU5LS4zNDQ5LTEuMzQuNDUyNy0xLjM0LjM5MyAwIDEuMDMwNyAxLjE1NTcgMS4xNDgyIDEuMzE2OWwtMi4yMjUxIDEuMjUxN2gyLjU2NDJjLjYyMjItLjMxMjkuODYzLS4zOTE2Ljk4NjMtLjM5MTYiLz48cGF0aCBkPSJtMjYuOTM4MiAxMy4wNjhjLjIwNjEtLjIxNjkuODA5MS0uMjcwNy43OTk1LS42NTI3LS4xNzM0LS4xNzY2LS40MDY1LS40MDUxLS42NDE2LS41MjAzLS44MjQ1LjQwMTMtMS4zMzMxLjUzOTUtMi4xNTc2LjgxMDIuMzU2NC4xMzgyLjczNTkuMzYyOC44NzY1LjM2MjhoMS4xMjUxeiIvPjxwYXRoIGQ9Im01MC4xNTgyIDEzLjA2MDNjLS4wMzg1LS4xNzA5LS4wNzEzLS4zMzYtLjEwNi0uNDkzNC0uMDMwOC0uMDE1NC0uMDc3LS4wNDIyLS4xMzQ4LS4wODQ1LS4xMDc5LS4wODA2LS40MDY1LS4zNjQ3LS41MTQ0LS42MjAxLS4xMDc5LS4yNTUzLS4yODUxLS42MjAxLS44OTItMS4yMjY3LS42MDg3LS42MDY3LTEuMTM4NS0uNzU2NC0xLjU4MzUtLjg1MDQ3LS40NDUxLS4wOTQwNy0uODYzMS0uMTA3NTEtMS4xODg3LS4wOTQwN3MtLjY3NjIuMDI2ODgtMS4wNjczLjE3NDdjLS4zOTMuMTQ3ODQtLjk5Ni40NTMwNC0xLjIyNTIuNzIzNzQtLjIyOTMuMjY4OC0uMzgzNC41NTY4LS4zNDI5Ljg2NTguMDQwNC4zMDkxLjMzNzEuNDQ1NC43MTY2LjQxODUuMzc5NS0uMDI2OC43MzAyLS40NTg4IDEuMDE1My0uNjQ2OS4yODMyLS4xODgyLjkxODktLjI5NTcgMS41NjgyLS4yODIyLjY0OTIuMDEzNCAxLjAxMzMuMDgwNiAxLjY2MjUuNDg1Ny42NDkyLjQwMzEgMS4yMDQxIDEuMzA3NCAxLjg1MzMgMS45Mjc0LjI2NTkuMjUzNS41Mzc1LjQwMTMuODAzMy40ODM4LS4xODMtLjE0Mi0uNDgxNi0uNDIyMy0uNTYyNS0uNzgxMyIvPjxwYXRoIGQ9Im00MS43OTczIDExLjc4MTdjLS4wMDc4LS4wNzMtLjAxNzQtLjE1NTUtLjAxNzQtLjI0OTYtLjU0NTIuMjM2MS0xLjg4Ni41ODU1LTIuMjk2NC43NjIyLS4zMDA1LjEyODYtLjQ0NS4xMzI0LS41OTMzLjI4NDFsLS4wMzQ3LjEyMjljLS4wNDA1LjE0NzggMCAuNDQzNCAwIC40NDM0LjAxMzUuMjI4NS40MDY1IDEuMDY3NCAxLjA5NDIgMS4xMTkzLjcxNjcuMDUzNyAxLjEzNjctLjIxNTEgMS41MDI3LS40MTg2LjM2Ni0uMjAxNS45MTg5LS42MDY2Ljg5Mi0uNzQxLS4wMjctLjEzNDQtLjIwMjMtLjI5NTYtLjMxMjEtLjUxMDctLjEwNzktLjIxNS0uMjAwNC0uNTA4Ny0uMjM1LS44MDgyIi8+PHBhdGggZD0ibTM1LjAyMTggMTcuNzQwN3YtLjE5NzdoLS4yMDQyYy0uMzI5NC4zMTg3LS42OTc0IDEuMjkwMS0xLjM5ODYgMS42NDkxLS4xNjM4LjA4MjUtLjM0NjguMTMyNC0uNTUxLjEzMjQtLjE2MTggMC0uMjk4Ni0uMDYxNC0uNDI3Ny0uMTMyNC0uMTkwNy0uMTAzNy0uMzY2LS4yMjY2LS41OTMzLS4xOTk3LS4wNjE3LjA1OTUtLjEzODcuMTI2Ny0uMjE3Ny4xOTc3LS4yMjM1LjE5Mi0uNDY4Mi4zOTU1LS40NjgyLjQ5NzMgMCAuMzk3NC44Njg5LjM2MjggMS4wOTI0LjM2MjguNzYwOSAwIDEuMzQ0Ni0uMzQ5NCAxLjgxNjYtLjg1ODEuMzc5Ni0uNDEwOS42ODc4LS45MjczLjk1MTctMS40NDk1Ii8+PC9nPjxwYXRoIGQ9Im0zOS40ODczIDEyLjI3N2MuNDEyMy0uMTc2NiAxLjc1MzEtLjUyNiAyLjMwMDMtLjc2MjIgMCAuMDk0MS4wMDc3LjE3ODYuMDE3My4yNTE1LjAzNDcuMjk5NS4xMjcyLjU5MzIuMjM1LjgxMDIuMTA3OS4yMTY5LjI4NTIuMzc4Mi4zMTIxLjUxMjUuMDI3LjEzNDQtLjUyNzguNTM5NS0uODkxOS43NDMtLjM2NjEuMjAxNi0uNzg2LjQ3MjMtMS41MDI3LjQxODUtLjY4OTctLjA1MTgtMS4wODI3LS44OTA4LTEuMDk2Mi0xLjExOTIgMCAwLS4wNDA0LS4yOTU3IDAtLjQ0NTRsLjAzNDctLjEyMjljLjE0ODMtLjE0OTcuMjkyOC0uMTU1NS41OTM0LS4yODQxem0xMC40NDM1LjE5Yy4wNTc4LjA0MjMuMTA0MS4wNjkxLjEzNDkuMDg0NS4wMzY2LjE1NzQuMDY3NC4zMjI1LjEwNi40OTM0LjA4MDkuMzYwOS4zNzc1LjYzOTMuNTYyNS43ODEzLS4yNjU5LS4wODI1LS41Mzc1LS4yMzAzLS44MDM0LS40ODM3LS42NDkyLS42MjAxLTEuMjA0LTEuNTI0NC0xLjg1NTItMS45Mjk0LS42NDkyLS40MDMyLTEuMDE1Mi0uNDcyMy0xLjY2NDUtLjQ4NTctLjY0OTItLjAxMzUtMS4yODQ5LjA5NC0xLjU3LjI4MjItLjI4NTIuMTg4MS0uNjM1OC42MjAxLTEuMDE1My42NDY5LS4zNzk1LjAyNjktLjY3NjItLjEwOTQtLjcxNjctLjQxODUtLjA0MDQtLjMwOTEuMTEzNy0uNTk3LjM0My0uODY3Ny4yMjkyLS4yNjg4LjgzNDEtLjU3NTk1IDEuMjI3MS0uNzIzNzdzLjc0MzctLjE2MTI2IDEuMDY5Mi0uMTc0N2MuMzI1Ni0uMDEzNDQuNzQzNyAwIDEuMTg4Ny4wOTQwNy40NDY5LjA5NDA3Ljk3NjcuMjQzOCAxLjU4NTUuODUwNS42MDg3LjYwNjYuNzg0MS45NzE0Ljg5MzkgMS4yMjY3LjEwNzkuMjU3My40MDY1LjUzOTUuNTE0My42MjAxem0tMzguOTM4MiAzNC4yMzc0Yy0uMjA2MS0uMTI4Ni0uMzEyMS0uMTc0Ny0uMzc5NS0uMTkzOS4wMTU0LS4wMTU0LjAxOTMtLjAzMjYuMDYxNi0uMDM2NXYtMi41NjI5Yy4wMDM5LS4xNDAxLS4xMDc4LjA0MjMtLjEwNzgtLjA5Nzl2LTEuMjc4NmMtLjExNTYtLjIzMDMtLjI4NzEtLjUxNjQtLjUwMjktLjczMzMtLjQzNTM1IDEuMDQ0My0xLjQwNDM3LTIuODE2My0xLjQwNDM3LTMuMTIzNXYtLjY5MTFjMC0uMTQwMi0uMTExNzQuMDQyMi0uMTExNzQtLjA5Nzl2LS43NDExYzAtLjE0MDEtLjExMTczLjA0MjMtLjExMTczLS4wOTc5di0yLjg4NTRjMC0uNDc0Mi4xOTI2NS0xLjU1ODkuMzU2NC0xLjkwMDZ2LS43NTgzYy4xMTU1OS0uMTcyOC4xODY4Ny0uMzA5MS4zNDY3Ny0uNTE0NS4xMzg3LS4xNzg1LjMxNDAxLS40OTUzLjQ3Nzc3LS42MjM5di4xNjdjMS41NjA1IDEuNzA2NyAxLjc5MTYgNC4wOTEgMi4zMTU2IDYuMzU4My4xODMxLjEyNjcgMi4zMzY5IDEuOTY5NyAyLjMzNjkgMi42MjYzdjEuMDE5NGMwIC42Mjk3LS42NzI0IDEuNzgxNS0uNjcyNCAyLjY3NjEgMCAuMTQwMi4wNTU5LjUwNDkuMDczMi43MTguMzI5NS4zMDkxLjY2ODUuNjIyIDEuMDY5Mi43NDExLjM3MTguMTExMy44NTU0LS4wNzY4IDEuMjM0OS4wMzQ1LjIzMTIuMDY5MS40Mjk2LjUzMTguNDI5Ni43OTF2MS4zNTUzYzAgLjE3NjctLjQ2MjMgMS4zMzA0LS41ODk1IDEuNjgzNy0uNDg1NS4wNTk1LS43MjI0LS4wNTc2LTEuNjEyNS0uMjkzNy0uODktLjIzNjItLjg5LS4zNTUyLTEuNjYyNS0uNjUwOC0uNzcyNS0uMjk1Ny0xLjA2OTItLjU5MTMtMS41NDMxLS44ODd6bTI2LjA1NzctMjYuMTEyOWMuNDY0My44MDI1IDEuMDE5MSAyLjk5ODcgMS4xODg3IDMuMzM4NWwuMDY1NS4xMjY3Yy4wNDI0IDEuNTYyNy0uOTA1NSAyLjY1ODktMS4zMDYyIDMuOTgzNi0uMTUyMi0uMDA1OC0uMzQ4Ny4wNDk5LS40ODc0LjA0OTktLjE0NjQgMC0uNTMzNi0uMDQyMi0uNTMzNi0uMzYyOCAwLS4xNDAyLjYyMjItLjk4NDkuNzYyOS0xLjUyNDMuMTMyOS0uNTE2NS4xODg4LTEuMDQyNS4zMDI0LTEuNTQ3NC4wODQ4LTIuMTI3MSAwLTIuMTc3LjAwNzctMi4yMjMxLjA5MDYtLjA0OC4xMDQxLS4yNC4xMDQxLS4zODAxcy0uMDEzNS0uMzMyMS0uMTA0MS0uMzgwMWMtLjAwOTYtLjA0NDIuMDcxMy0uMDk0MS0uMDAxOS0xLjA4MDl6bS4xMDIxIDI2LjY2NThjLjExOTUuMTY4OS4wOTA2LjIxNS4xMzg3LjQ1MzEuMDU5OC4yOTU2LS4wNTk3LjY1MDgtLjQxNjEuOTQ2NC0uMzU2NC4yOTU3LS45NDk3LjQxNDctMS45NTkyLjU5MTMtLjkyNjcuMTYzMi0xLjU1MjguMTc2Ni0xLjk3MDguMTc2Ni4wOTI0LS4wMjY4LjE4MTEtLjA0NjEuMjI5Mi0uMDY1Mi0uNjU1LS4xMzI1LTIuODA0OS0xLjYzNTctMi44MDQ5LTIuMjM2NiAwLTIuMjc4OCAxLjA3ODgtMi42MzAxIDEuNDg3Mi01LjA4MzZ2LTEuODQ4N2MtLjExMTctLjc1ODMtLjI3OTMtMS40Mzk5LS43MDEyLTIuMDExOS4xNTc5LS4yNTczLjcyMDUtLjYwNjcuOTIyOC0uNzgxNC44MDcyLS42OTg4IDMuMDAzNC0yLjgxNjMgMy4wMDM0LTMuNjk3NXYtLjkzNjhjMC0uMTQwMi4zOTEtLjk0ODQuNTQ5LTEuMzgwNC4xNTIyLjAwMzkuMzQxLS4wMDM4LjQyNzctLjEwNzUuMjA0Mi40ODc2LjcwNyAxLjI3ODYuNzA3IDEuNDE4N3YuNzQxMWMwIC40NTUtLjUwNDcgMS4zMDczLS41MDQ3IDEuNjQxNCAwIC4xNDAxLjIyMzQuNjcuMjIzNC44MTAxIDAgLjExOTEtMS43OTU1IDEuODM3My0xLjc5NTUgMi42MjgyIDAgLjIxNjkuMjI1NC42ODU0LjIyOTMuODg3di44NjU4Yy4wODA5LjAwNzcuMTA3OS4wNDAzLjEwNzkuMDQwMy0uMDQ4Mi4wMzI2LS4xMTE4LS4wNTk1LS4xMTE4LjA3ODdzLjExMTguMjI0Ni4xMTE4LjM2MjhjMCAuMTM4My0uMDU0LjMyMjYtLjEwNzkuNDYyNy4wODA5LjAxMzQuMTA3OS4wOTYuMTA5OC4xNDIxLS4wNTAxLjA0Ni0uMTEzNy4wNjcyLS4xMTE3LjEzMjQuMDk2My4xMDc1LjEwOTguMzA1My4xMDk4LjMyNDUgMCAuMTQ1OSAwIC4zOTM1LS4wMDU4LjQ0MTUtLjE3NTMuOTI5Mi0uMjE3Ny41NTY4LS4yMTc3LjY2ODF2LjkwODFjMCAuNDQ3My0uMTU2IDEuMjU1NS0uMzkzIDEuNjE4My40MjM4LjMyNDUuODc4NS43NTA3IDEuMTk0NCAxLjAyNTJoLjI1NDNjLjAwNzctLjA3ODcuMDM2Ni0uMTA1Ni4wODA5LS4xMDk0LjMyNzUuMzMwMi44NTE1Ljk1MjIuOTkyMi45NTIyLjEyNTIgMCAuMTM4Ny0uMDQ0Mi4xOTY1LS4wNTk1bC4wMjMxLS4wMDM5em0tMi4xMzA3LTI5LjcyNTl2LjE5NzdjLS41OTUzIDEuMTcxMS0xLjM5ODYgMi4zMTE1LTIuNzcyMiAyLjMxMTUtLjIyNTQgMC0xLjA5NDIuMDM0NS0xLjA5NDItLjM2MjkgMC0uMTQwMS40NTY1LS40NjY1LjY4OTYtLjY5NjkuMzc5Ni0uMDQ0MS42MjIzLjMzMjIgMS4wMjExLjMzMjIgMS4wODA3IDAgMS41NDUtMS4zOSAxLjk1MTUtMS43ODM1aC4yMDQyem0tNS42NDI3IDcuMzczOWMuNTcwMy42MjM5IDIuNDQ4NiAyLjk3NTYgMi40NDg2IDMuMzI1MSAwIC4xNDAxLS4xMTc1LjM1MTMtLjIyNTQuNTAxLjA0ODIuMDM4NC4xMDQuMDk0MS4xNDI2LjE0MjEuMTUwMi0uMTA3NS41MDI4LS4yODAzLjY0MzQtLjI4MDMuMTQwNyAwIC4zMzcyLjE2Ny40NzU5LjE2Ny44Mjg0IDAgMS4yNjE4LTEuNzgxNSAxLjI3MTQtMi4zMTMzdi0xLjI2MzJjLjU1MS40NTg4LjcyMDYgMS40MDMzLjg4ODIgMi4wODY4LjE0NjQuNTkzMi4wNTc4LjcwNjQuMDU3OC44NDQ3IDAgMi4xNjU1LTIuMzQ2NSA2LjYzODYtNC4yOTAzIDYuNzgyNWgtLjM2NDFjLjY1My0uNjIgMS44NDk0LTIuNTI2NCAxLjg0OTQtMy42MjQ1IDAtLjE0MDEtLjA1NTktLjQxODUtLjA1NC0uNjMxNi0uMDUtLjA0NjEuMDI1MS0uMDM4NC0uMTEzNi0uMDM4NC0uMzUwNiAwLTEuMTk2NCAxLjYwNjktMS40Nzc2IDIuMDY3Ni0uMTg2OS0uMDU1Ny0uMjkwOS0uMTA5NC0uNDI5Ny0uMTA5NC0uNDkxMiAwLTEuNDQ0OC45NzUyLTEuNjA0NyAxLjE0OC0uNjA4OC4yNDc3LTEuMjUyMi41MTgzLTEuODM5OC44MDQ0aC0xLjE0ODJjLS4wMDc3LS4wNzg3LS4wOTI1LS4xMDc1LS4xNzM0LS4xMjEgMS44MDktMi45ODMzIDMuNTM3MS01Ljg4MDIgMy45NDM1LTkuNDg3NXptLTYuNTUzOS0yMS45MTQzYy0xLjAyMjkgMC0xLjk1NTQuMDkwMjMtMi43MjAyLjYxNjI0LjE4ODgtLjM3MDUxIDEuMTQyNC0xLjQ4Mzk5IDEuODYyOS0xLjg1MDY2Ljc0OTQtLjM4MjA0IDEuNDA2NC0uNjgzNDUgMi41MzkxLTEuMDAyMTI5LjY2NjYtLjE4ODEzOSAxLjMzOS0uMzA5MDg1IDEuNzgwMS0uMzc2Mjc3di4wODYzOWMuNjg1OS4xNDk3NDMgMS4zOTY3LjIxNTAxNSAxLjk0MzkuNjIwMDg2LjQ5MTIuMzYyODQuMzg1MiAxLjI0OTc4LjY2NjUgMS43MjM5Ny4xNDA3LjIzODA1LjIxMzkgMS41MjIzOC45NzEgMS41MjIzOC4yMjU0IDAgLjMwODItLjI4MDI5Ljc4Ni0uMjgwMjkuODYzIDAgMS44NTEzLjk0NjQ2IDEuOTE0OSAxLjcyNzgxaC43Mzc5Yy4xNTk5LjE2NTEuMjcxNi4zODc3OS40MzUzLjU0NTIxdi4xOTc3NGMtLjMxOTguMTAxNzUtLjY3NjIuMzI0NDQtLjgxNjguMzI0NDRzLS41ODk1LS4yODAyOC0uNzI4Mi0uMjgwMjhjLS4xODMgMC0xLjY2NjQgMS4wNTAxMi0yLjA5OTkgMS4yNDAxN3YuMTkzOWMuMzUyNi40MzM4Ny42My44NTYyMiAxLjA4MDggMS4yNDc4NmgxLjA0OGMuMTQwNiAwLS4wMjg5LjExMzI3LjExMTcuMTExMzVoLjcxMDljLjEyMTQtLjExOTAzLjI2OTctLjE2NzAyLjQxMDMtLjE2NzAyLjE0MDcgMCAuMDYzNi0uMDA3NjguMTEzNy4wMzgzOS0uMDAxOS4xMDE3NS4wNTQuMjEzMS4wNTQuMzUzMjQgMCAuMzgzOTYtMS4yOTg1LjQ2NjQ4LTEuNjI2LjcwMDY4LjQxNDIuMjMyMy45OTc5Ljk1NjEgMS4zNzU1IDEuMjg4MiAxLjE2NTUuMTkwMSAxLjM2NCAxLjMwNTUgMi4wODI1IDIuMTQ2My4xMjkxLjIxMzEuMjc1NS40NDM1LjM1MDcuNzQzLjExOTQuNDcyMi0uMDU5OCAxLjAwNTktLjA1OTggMS4wMDU5bC4wMTE2IDEuNDIwNy4zMjE3LS4xODI0LS4wOTYzLjA2MzRjLS41OTM0LjM3NjItLjU0OS4xMTcxLS41ODE4LjM3ODItLjEwNzkuMDc2Ny0uMTg2OS4xNTM1LS4yNjIuMTktLjAxNzMuMDA3Ny0uMDM0Ny4wMTM1LS4wNTIuMDE3My0uMDgyOS0uMDc0OS0uOTYxMy0uOTIzNC0uOTYxMy0xLjE0NjEgMC0uNTAzLjI4MTItMS4wMDYuMjgxMi0xLjUwOSAwLS4xNDAxLS4wMDE5LS4yOTE4LS4wNzEyLS40MTY2LS40MTA0LjA1MTktLjU0NTItLjUwODctLjc4OTktLjY3aC0uMTk2NWMtLjA1NzguNjQzMi0xLjMzNTEgMS4xNjkyLTEuODg4IDEuMTY5Mi0uMTQwNiAwLS4yNzkzLS4xMTE0LS40MTk5LS4xMTE0LS41NjA3IDAtLjY3MjQuNTI0MS0uNjcyNCAxLjA2MTcgMCAuNDM5Ni44NDE5LjgxMDEuODQxOSAxLjIwMTggMCAuMjMwMy0uOTk2IDIuMDQwNy0xLjM4MTMgMi4wNDA3aC0xLjE2MzZjLS41MzM2IDAtMy4yOTA1IDEuNDc4Mi0zLjU5NDggMS42Nzc5LS4wMzg2LS4wNDgtLjA1OTgtLjExMTQtLjEyMzMtLjExMTQtMS4wOTQzLjcwMjctMi41MTQxIDEuMzE1MS0zLjc0MzIgMS44NDQ5LS4wNjE3LS4wOTQtLjIzMTItLjExNTEtLjI3OTMtLjM5MTYtLjE0MDcuMTE5LS4yNjIxLjE1OTMtLjI2MDEuMjk5NXYuNzQ0OWMuMTE5NC4xMjA5LjI4Ny4yODc5LjQwODQuNDA3aDEuMTk2M2MuNTY2NC0uMjgwMyAxLjUzNTUtLjg5MjcgMS42NzYxLS44OTI3LjM1MDYgMCAuNjAzIDEuNjc1OSAxLjI5NjUgMS42NzU5aDEuMTA3OGMuMjUyMyAwIC45ODgyLjMzNi45ODgyLjY5MTF2MS4xMzI3YzAgLjA3NjgtLjQwMjYuODM5LS40ODc0IDEuMDAwMi0uMjAyMi4zOTE3LS40NjYyIDEuMDY3NC0uNDY2MiAxLjQ0NTZ2Ljg1MjRjMCAxLjYzNTctMS45MTY4IDMuMDMxMy0yLjYzNTQgNC4xNzc0djE0LjI5MDljMCAuMTQwMS4xMTE3LS4wNTU3LjExMTcuMDg0NSAwIC4xNDAxLS4xMTE3LS4wNDIzLS4xMTE3LjA5Nzl2Mi4zMTMzYy4yMTk2LjQzOTYgMS40NTgzIDEuMDM0OCAxLjQ1ODMgMS42NjQ1di42NzE5Yy0uMzA2My41OTUxLTEuMTE1NC43NTY0LTEuNjc2IDEuMzY0OS0uMzg1My40MTI4LTEuMDA1Ni4xNzY3LTEuNTIuNTYwNmguMzQyOWMtLjMzMzMuMDUzOC0uNTE4Mi4wNTE5LTEuMDM0NS0uMDA1Ny0uNTMzNy0uMDU5Ni0xLjQyMzctLjQxNDctMS45NTkzLS41OTEzLS41MzM2LS4xNzY3LTEuMTI3LS43Njk5LTEuMzY1OC0xLjI0MjEtLjIzNy0uNDc0Mi0uMjM3LTEuNDIwNy0uMDU5OC0xLjc3NTguMTc3My0uMzU1Mi41OTM0LTEuMDA2Ljc3MjYtMS40MTg3LjE3NzItLjQxNDcuMTE5NC0xLjY1NjguMTE5NC0xLjY1NjguNDMzNS0xLjIyNjggMS4xNjM2LTIuNDQwMSAxLjE2MzYtMy45MDF2LTEuNzU0N2MwLS4xNDAxLjExMTctLjA3NDkuMTExNy0uMDc0OS0uNDYyMy0xLjQ3ODItMi4xMzA3LTQuMzE5NS0yLjEzMDctNi40MDgyIDAtMS4yNzI4LjczMDItMS45NTYyLjczMDItMi40MzI0IDAtLjEwNTUtMS42MjYtMy4xMzExLTEuNjI2LTQuMDg3MnYtLjk5MjVjMC0uMzA3Mi44NjY5LTEuOTA0NCAxLjA2MzQtMi40MjA4LS4xMjUyLS4wNzExLS4xOTQ1LS4xMzA2LS4yNjItLjEyNjctLjQ2NjIuNTgxNy0xLjk3ODUgMi4zNTk0LTEuOTc4NSAzLjMxNzN2MS4xMzQ2Yy4xNDY0LjE2MzIuMjIzNS40Mzc3LjIyMzUuNzE2MSAwIC4zMjA2LS4wMDM4LjI3NDUtLjM4OTEuNDN2LjM1NzFjLjI3OTMuNjc1OC42NzIzIDEuMjkwMS45NDk3IDEuOTU0NC0uMTg4OC44MjM1LTEuMTQ0My41Mjk4LTEuNzEyNi43MTQxLS4xMzg3LjE1MTctLjIwMjMuNzU2NC0uNTU0OS43NjQxLS4zNDQ4LS4xMzgyLS45MzA1LTEuNTg3Ny0uOTMwNS0yLjE1OTh2LTEuNzU0NmMwLS4xNDAyLjExMTguMDQyMi4xMTE4LS4wOTh2LS43MDY0YzAtMS4wNDgyIDEuMDY1My0yLjQwMzYgMS4wNjUzLTMuMzYxNiAwLS4xNDAxLS4xMTE3LS4yNTE1LS4xMTE3LS4zOTE2IDAtLjcyNzYgMi44MTI3LTQuNzIyNyA0LjAxODctNC43MjY1aC43MDdjLjA0NjIuMDk3OS4wOTgyLjE5NzcuMTA1OS4zMzIxaC4yMDIzYy45MjA5LTEuMDY1NSAxLjc0OTMtMi40MDc0IDIuNjcyMS0zLjUxNy4xMDU5LjgyOTMtLjEzMy44Mzg5LS4xMzMgMS4xNzQ5IDAgLjM3NjMuMzE5OC41MjYuNjcyNC43ODMzbDQuNTQ0Ni0yLjUzOGMtLjExNzUtLjE2MzItLjc1NzEtMS4zMTg5LTEuMTUwMS0xLjMxODktLjc5OTUgMC0uMzQ4Ny45ODI5LS40NTQ3IDEuMzQxOS0uMDcxMy0uMTA5NC0uNTI3OS0uOTIzNC0uNTI3OS0xLjA0MjR2LS44NzkzYy4xMDc5LS4xNTkzLjI4MTMtLjMxNDguNDIxOS0uMzE0OC43NDM3IDAgMS4yMjcyLjU1ODcgMS45NjMxLjU1ODcgMS4wNTk2IDAgMS4yMDk5LTEuODk0OSAxLjQ1ODQtMi4zMTM0di0xLjU3MjNjLjAyODktLjE0MDEtLjAyNy0xLjAwNzktLjA1MDEtMS40NDc1LS40MTYxLS42MDg2LS43ODQxLTIuMzI0ODUtMS42MDQ4LTIuMzI0ODUtLjE0MDYgMC0uNDU2NS41NTg2Ni0uNTk1My41NTg2NmgtLjk3NDhjLS4xNDA2IDAgLjAyODkuMTExMzQtLjExMTcuMTExMzRoLTEuMDA5NWMtLjE0MDYgMC0uMDg0Ny0uMTExMzQtLjE1MjItLjEwOTQyLS40MDI2LjQ1NDk4LS45MDczLjk1Nzk3LTEuMzM3IDEuNDUxMzctLjExOTQtLjExMTQtLjMwNjMtLjM4NC0uMzA2My0uNTg3NSAwLTEuMjkxOTggMi44NjA5LTIuODQzMTcgMi44NjA5LTMuNjM0MTIgMC0xLjc4OTIzLS44NDc3LTMuNjA1MzQtMi45NDU2LTMuNjA1MzR6bTEyLjU3ODEgMTQuMTYwM2MtLjEwOTguMDcyOS0uMTg2OS4xNTM2LS4yNjIuMTkwMS4wNzUxLS4wMzQ2LjE1NDEtLjExMzMuMjYyLS4xOTAxem0tNy42NzEzLTQuNzUxNWMuMDA5Ni4zODAyLS41OTM0LjQzNTgtLjc5OTUuNjUyOGgtMS4xMjUxYy0uMTQwNiAwLS41MjAxLS4yMjQ3LS44NzY1LS4zNjI5LjgyNjQtLjI3MDcgMS4zMzMxLS40MDg5IDIuMTU5Ni0uODEwMS4yMzY5LjExNTIuNDY4MS4zNDM2LjY0MzQuNTIwMnoiIHN0cm9rZT0iI2ZlZmVmZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjMuODYiIHN0cm9rZS13aWR0aD0iLjM5Ii8+PHBhdGggZD0ibTguODE1NzEgMzEuNTAzNXYuNzU2NGMtLjE2Mzc1LjM0MzctLjM1NjQgMS40MjQ1LS4zNTY0IDEuODk4N3YyLjg4MzVjMCAuMTQwMS4xMTE3NC0uMDQyMi4xMTE3NC4wOTc5di43NDExYzAgLjE0MDEuMTExNzQtLjA0MjMuMTExNzQuMDk3OXYuNjkxMWMwIC4zMDcxLjk2OTAyIDQuMTY0IDEuNDAyNTEgMy4xMjE1LjIxNTcuMjE4OS4zODcyLjUwMy41MDI4LjczMzR2MS4yNzY3YzAgLjE0MDEuMTExNy0uMDQyMy4xMDc5LjA5Nzl2Mi41NjA5Yy0uMDgwOS4wMDc3LS4wMjMyLjA2MzQtLjE2MzguMDYzNC0uMzA4MiAwLTEuMzkyODQtMS4zNzA3LTEuNDU0NDgtMS42ODk0LS4wNTIwMi0uMDQ5OS4wMjUwNC0uMDQwMy0uMTE1NTktLjA0MDMtLjIxNzcgMC0yLjYzNzM3IDEuNjAzLTMuMzQ0MzkgMS45MzEzLS42NDM0NS4yOTk1LTEuNDM1MjQuMzU1MS0yLjExMzM2LjY5M2gtMS4wMDc1NmMtLjc0MTcgMC0yLjAzNjI5OC0xLjE4ODMtMi4xNjM0NDYtMS40ODQuMDYzNTc0LS4wNzEuMTExNzM2LS4yMTg4LjExOTQ0Mi0uMzU1MWguNDA0NTY0Yy4xNDA2MzMtLjAwMzkuNTQ3MTIuMzg3OC42ODU4My4zODc4aC45OTQwN2MuNzIyNDMgMCA0LjUwNDEzLTMuNzk5MyA1LjI0OTY5LTQuMjgxMS0uMjMxMTgtLjc5MjktLjI3MzU2LTEuMjc2Ny0uMzkzMDEtMS44Mjk2di0uOTY1NmMwLS4xNDAyLS4xMTE3My4wNDIyLS4xMTE3My0uMDk4IDAtLjE0MDEuMTExNzMgMCAuMTExNzMtLjE0MDFzLS4xMTE3My4wODQ1LS4xMTE3My0uMDU1N3YtMi4yMTkyYzAtLjE0MDIuMDYzNTctLjAwNTguMTEzNjYtLjA1Mzh2LTEuMTEzNWMwLTEuMDQ4MiAxLjA1MTg2LTMuNTY1IDEuNDE5ODItMy43MDMyIiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTE4MC41MzcgMzguNDMwMmgtMTEuOTYxYy4wOTQgMy4yMDk5IDEuMzEgNS42ODA3IDMuNTg1IDUuNjgwNyAxLjI5NiAwIDIuMDkyLS45ODExIDIuNTk5LTIuNjk5M2g1LjI1OWMtLjk4MSA1LjQyNTMtNC4yNTYgNy43NzUyLTcuOTIyIDcuNzc1Mi01LjM0MiAwLTguOTc3LTQuNjExNC04Ljk3Ny0xMi40NzY3IDAtNy4xODc3IDQuMDE1LTEyLjM0MDMgOC44NS0xMi4zNDAzIDUuODggMCA4LjgxOCA2LjEwNDkgOC41NjUgMTQuMDYwNG0tMTEuODI0LTQuNDI1MWg2LjI5NWMtLjA4OC0yLjYyMjQtMS4zMTQtNC43OTE3LTMuMDE1LTQuNzkxNy0xLjc4OSAwLTIuOTg0IDEuOTQ0Ny0zLjI4MiA0Ljc5MTd6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTE0OC45NzIgMzguNDMwMmgtMTEuOTYyYy4wOTUgMy4yMDk5IDEuMzEgNS42ODA3IDMuNTg1IDUuNjgwNyAxLjI5NyAwIDIuMDkzLS45ODExIDIuNTk5LTIuNjk5M2g1LjI1OWMtLjk3OCA1LjQyNTMtNC4yNTUgNy43NzUyLTcuOTIxIDcuNzc1Mi01LjM0MiAwLTguOTc4LTQuNjExNC04Ljk3OC0xMi40NzY3IDAtNy4xODc3IDQuMDE1LTEyLjM0MDMgOC44NTEtMTIuMzQwMyA1Ljg3OSAwIDguODE3IDYuMTA0OSA4LjU2NSAxNC4wNjA0bS0xMS44MjctNC40MjUxaDYuMjk2Yy0uMDg5LTIuNjIyNC0xLjMxNC00Ljc5MTctMy4wMTUtNC43OTE3LTEuNzkgMC0yLjk4NCAxLjk0NDctMy4yODMgNC43OTE3eiIgZmlsbD0iIzJiMmEyOSIvPjxwYXRoIGQ9Im0xOTEuNjY3IDI0Ljk1NzF2NC45OTcyYy0yLjI5MS4yNzQ1LTMuOTg4IDEuNTcyMy00LjU2IDMuMzc1LS4xNTYuMjQzOC0uMjcgMS4zMTg5LS4yNzQgMS43NDEybC0uMDEgMTMuOTQ3MmgtNS4wNTVjLS4wMDctLjA2NTMuMDE0LTIzLjc2ODguMDE0LTIzLjc2ODhoNC45NDl2Mi4yNXMuNjE4LS43OTEuNzc0LS45OTgzYy43MDItLjkzNDkgMi4zOTEtMS41NTUgMy4wNTItMS41NDU0LjE0Ni4wMDE5Ljc1MSAwIDEuMTEyIDAiIGZpbGw9IiMyYjJhMjkiLz48cGF0aCBkPSJtMTA0LjA0NCAyNS4yNDg5Yy0uOTQgMi41NjEtNC4yMDM1IDExLjEyOS00LjIwMzUgMTEuMTI5bDQuNTExNSAxMi42Mzk4aC01LjU2MTVjLS45NzQ4LTIuNTAzNC0yLjY5MzItOC45MTkzLTIuNjkzMi04LjkxOTMtLjA0NjIuMTAzNy0yLjY0NTEgOC45MTkzLTIuNjQ1MSA4LjkxOTNoLTUuNDk0M2w0LjQ3MTQtMTIuNTg2MS00LjIxNTItMTEuMTgyN2g1LjUwNzhzMi4wNjcyIDYuMjA2NiAyLjM4NSA2Ljk1NzNsMi4zNzU0LTYuOTU3M3M1LjQ3ODctLjAxMzQgNS41NjE3IDB6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTgwLjg4NTggMjQuNjA3N2MyLjczNTYuNjQxMiA1LjQxMTUgMi42NjA4IDUuODcxOSA1LjczNDQgMCAwLS4xMzEgMTEuMzE3MS4yMjkzIDE3LjA0OTZsLjE4ODggMS42MjZoLTUuMTE2OGMtLjEzMS0uODI5My0uNDMxNS0xLjc3MTktLjc2NjctMS43NTA4LS4yMzEyLjAxMzQtMS4yNjM4Ljk1MDMtMS41ODM2IDEuMTM4NC0xLjQ0ODcgMS4xNDA0LTQuMjMwNi44MjE3LTQuNjE5Ny43MzkxLTIuNjc0LS42NTI3LTQuMTU3NC0yLjgzMzYtNC42NDA5LTUuMjgzMiAwIDAtLjE0MDctLjk2OTUtLjE1OC0xLjYyOC0uMDI4OS0xLjEwNTguMTk2NS0yLjMxMzMuNDc5Ny0yLjg4NTQuNTI3OS0xLjA3MzIgMS4zMDYyLTEuOTc1NSAyLjMyMTQtMi43NjI2IDEuMDUzOC0uODI1NSAxLjU4NzQtLjk4ODcgMi41Nzk2LTEuNDUxMyAxLjMxMzktLjUzMTggNS4yMjA4LTEuMzA5MyA1LjYzNjktMi45Mjc3IDAgMCAuMjIxNS0uNDQzNS4xMTE3LTEuMzA1NC0uMTA3OS0uODQ2Ny0xLjAxNzItMi4xNTQtMi41OTY5LTEuOTczNi0xLjE1Mi4xMzI1LTEuNjcwMi43MjM4LTEuODkxOCAxLjA0MDUtLjQ0ODkuNTk3MS0uNTk3MiAxLjk4NTEtLjQ2NjIgMi4yNjE1bC01LjIyMDgtLjI2NjhjLS4wMDU4LS44MTk4LjE5ODQtMS44MDA4LjE5ODQtMS44MDA4Ljc1NTItMi42MTQ3IDMuMzg2OC01LjI0ODYgNi41MzA4LTUuNjIxMSAwIDAgMS4wNzg5LS4wNTc2IDEuNTA4NS0uMDM2NS40Mjc3LjAyMTIgMS40MDQ0LjA5OTkgMS40MDQ0LjA5OTltLjAyNyAxMy4xNjc3Yy0uMjY0IDAtMi42ODc1LjU2NjQtNC40MjkgMi4xMDIyLTEuNzQ3NCAyLjA3OTEtLjkzODIgMy4zMDAxLS40NjgyIDMuOTcyLjQ1ODUuNTc0IDEuMTYzNi42NjYyIDEuNTg5NC43ODcxbC42NDczLjAyODhjMS42NjY0IDAgMy4wMDM0LTEuMjY4OSAzLjIxMzQtMi43MjAzbC4wMjEyLTQuMjAyNGMtLjQxMjMtLjE0MjEtLjI3NTUuMDM0Ni0uNTc0MS4wMzQ2eiIgZmlsbD0iIzJiMmEyOSIvPjxwYXRoIGQ9Im0xMDUuMjgxIDE2LjkwNTZoNy41MTFzNC4xODEgMTYuNjIzNCA1LjIzMSAyMS4zMzY1bDUuMTA5LTIxLjMxNzMgNy40OS0uMDE5MnYzMi4xMTQxaC01LjIyN3MuMDA0LTE5LjAyMzEuMDA4LTE5LjE4NjNjLS4wNTItLjA0OTktNC42NTggMTguNTQ3LTQuODk1IDE5LjE4NjNoLTQuNTkzYy0xLjkwMy02LjEzOTQtNS4zODQtMTkuMDQwNC01LjM4NC0xOS4wNDA0bC4wMDUgMTkuMDQwNGgtNS4yMzhsLS4wMTMtMzIuMTE0MXoiIGZpbGw9IiNlMzFlMjQiLz48cGF0aCBkPSJtNDQuMDE4NCAxNi45MDU2aDcuNTExNHM0LjE4MDUgMTYuNjIzNCA1LjIzMDQgMjEuMzM2NWw1LjEwOTEtMjEuMzE3MyA3LjQ5MDItLjAxOTJ2MzIuMTE0MWgtNS4yMjg1cy4wMDM4LTE5LjAyMzEuMDA1OC0xOS4xODYzYy0uMDUyLS4wNDk5LTQuNjU4MyAxOC41NDctNC44OTUyIDE5LjE4NjNoLTQuNTkyOGMtMS45MDM0LTYuMTM5NC01LjM4NDUtMTkuMDQwNC01LjM4NDUtMTkuMDQwNGwuMDA1NyAxOS4wNDA0aC01LjIzODF6IiBmaWxsPSIjZTMxZTI0Ii8+PHBhdGggZD0ibTE1OS4wMjQgMjUuMjQ4OWg1LjQyNWwtNS4zOCAyNS41NDQ2Yy0uODcxIDMuNzg3Ny0xLjgzOCA0Ljc4MjItNC4yMzUgNS4yMDY1aC01LjE2OXYtNC45NDM1aDIuNzAzYy45NzMtLjAwMzggMS45NjMtLjc5MjkgMS42NTEtMi4yODQ1LS4xODMtLjg2OTctNi4wNjItMjMuNTIzMS02LjA2Mi0yMy41MjMxaDUuMzc4bDIuODg0IDEzLjI4NDl6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTUwLjA5NDYgMTIuNTg2cy0uMDA5Ni0uNTEyNS0uMjIzNC0uODg4OGMtLjIxMzktLjM3NjMtLjQ2NDMtLjkwMjMtMS4wNDgxLTEuNDg0LS41ODM3LS41ODE3LTEuMjAyMS0xLjA0MjQ1LTEuNjgzNy0xLjIyMjkxcy0xLjAyMy0uMzI4MjgtMS42ODc2LS4zMDMzM2MtLjY2NDYuMDI0OTYtMS41MDI3LjE5Nzc0LTEuOTkzOS41MDEwNy0uNTI0LjMyNjM2LS44NDc3LjU3Nzg1LTEuMjQwNyAxLjEzMDc3LS40ODc0LjY4MzQtLjQ1NDYgMS4xNjM0LS40MjE5IDEuNDYyOC4wMzQ3LjI5OTUuMTI3Mi41OTMzLjIzNS44MDgzLjEwNzkuMjE1LjI4NTIuMzc2My4zMTIxLjUxMDYuMDI3LjEzNDQtLjUyNTkuNTM5NS0uODkxOS43NDExLS4zNjYxLjIwMTYtLjc4NDEuNDcyMi0xLjUwMjcuNDE4NS0uNjg5Ny0uMDUxOC0xLjA4MDgtLjg5MDgtMS4wOTQyLTEuMTE5MiAwIDAtLjA0MDUtLjI5NTcgMC0uNDQzNS4wNDA0LS4xNDc4LjA2NzQtLjIyODUuMDY3NC0uMjI4NXMtLjIyOTMuMDgwNy0uMzI1Ni4yMDE2Yy0uMDk0NC4xMjEtLjI0MjcuNDE2Ni0uMjQyNy42MjAxczAgLjI4NDEuMDEzNS40MTg1Yy4wMTM0LjEzNDQuMDgwOS4yMTUuMDQwNC4zNDk0LS4wNDI0LjE0NC0yLjY0ODkgMS40MTQ5LTIuNjQ4OSAxLjQxNDl2MS40MjgzczEuMDEzMy0uNTc5OCAxLjMxMTktLjcxNDJjLjI5ODYtLjEzNDMgMS4yNDQ1LS41OTMyIDEuNDQ2OC0uNjg3Mi4yMDIzLS4wOTQxLjQ3MzktLjIxNTEuNTU0OS0uMjE1MS4wODA5IDAgLjIxNTcuMDUzOC4zMjU1LjEyMS4xMDc5LjA2NzIuNDEwNC4yMDE2LjU5NTMuMTYxMy4yMzg5LS4wNTE5Ljg1NzMtLjI5NzYgMS4yNzU0LS41NTI5LjQxOC0uMjU1NCAxLjA2MzQtLjY0NyAxLjE4NDctLjc2OC4xMjE0LS4xMjA5LjIzMzEtLjE3MDguMzE0MS0uMjExMS4wODA5LS4wNDAzLjE0NDQtLjAxOTIuMjY1OC4wODgzcy40NjA1LjQzMTkuODY1LjQ5OTFjMCAwIC42OTE2LjEwNzUgMS4xMzY2LjAxMzUuNDQ1MS0uMDk0MS42MjIzLS4yMTUxLjg1MTYtLjMxMS4yMjkyLS4wOTQxLjI1NjItLjEzNDQuMzUyNS0uMTM0NHMuMTM0OS0uMDEzNS4xMDc5LjA4MDYtLjA0MDUuMTc0Ny4wNDA0LjM2NDhjLjA4MS4xOS41MTI1LjY4NzIgMS4wNTM4Ljk0MjYuNTQxNC4yNTUzLjkzNDQuNDA1IDEuMjQ0NS40NTg4LjMxMjEuMDUzOC42MzU4LjAyNjkuNjM1OC4wMjY5cy0uODExMS0uNTY2NC0xLjA4MDgtLjg4ODktLjUyNzgtLjYwNjYtLjU5NTMtLjgwODJjLS4wNjc0LS4yMDE2LS4wNDA0LS4zNjQ4LS4wNDA0LS4zNjQ4cy40NzM5LjQ1ODkuNzQzNi42NzM5LjcwOS41MDQ5IDEuMTYzNi42NDY5Yy41NjgzLjE3NjcgMS4wOTQzLjI3MDcgMS43MTY1LjE3NDcuNjIyMy0uMDk0IDEuMTU5OC0uMzkzNSAxLjUyNTgtLjg1NjIgMCAwIC4yMTk2LS4zNTcxLjI4Ny0uNTcyMS4wNjc1LS4yMTUuMTQ4NC0uNTI2LjE0ODQtLjUyNnMtLjE1MDMuMDgwNi0uMzY2MS4xNzQ3Yy0uMjE1Ny4wOTQxLS40ODU0LjE2MTMtMS4wMjY4LjIwMTYtLjU0MTMuMDQwMy0xLjIzMS4wNTM3LTEuODgwMi0uNTY2NC0uNjQ5My0uNjItMS4yMDQxLTEuNTI0My0xLjg1MzMtMS45Mjc0LS42NDkyLS40MDMyLTEuMDEzMy0uNDcwNC0xLjY2MjYtLjQ4NTctLjY0OTItLjAxMzUtMS4yODQ5LjA5NDEtMS41NjgxLjI4MjItLjI4NTIuMTg4MS0uNjM1OC42MjAxLTEuMDE1My42NDctLjM3OTUuMDI2OC0uNjc2Mi0uMTA5NS0uNzE2Ny0uNDE4Ni0uMDQwNC0uMzA5LjExMzctLjU5Ny4zNDMtLjg2NTguMjI5Mi0uMjcwNy44MzQxLS41NzU5IDEuMjI1Mi0uNzIzNzMuMzkzLS4xNDc4Mi43NDM2LS4xNjEyNiAxLjA2NzMtLjE3NDcuMzIzNi0uMDEzNDQuNzQxNyAwIDEuMTg4Ni4wOTQwNy40NDUuMDk0MDcuOTc2OC4yNDM4NiAxLjU4MzYuODUwNDYuNjA4OC42MDY3Ljc4NDEuOTY5NS44OTIgMS4yMjY3LjEwNzkuMjU1NC40MDY1LjUzOTUuNTE0My42MjAxLjEwNzkuMDgwNy4xNzczLjEwMzcuMTc3My4xMDM3IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTMxLjU1MDIuMDAwMDIyMDRjLjQ4OTQgMCAxLjgzMjEuNzY5ODMxOTYgMi4xMDc2Ljg5NDYxNzk2aC43MTY3Yy4xNDA2IDAgLjYxMDctLjIyMDc3NS45NTM2LS4zOTE2MzZoLjg5NThjMS41MiAwIDIuMjQ4MiA0LjM1NDA2NiAyLjI3NzEgNC40MzQ2OTZ2Ljk5NjM2YzAgLjE0MDE1LjExMTgtLjA0MjIzLjExMTguMDk3OTF2NC4zNzcxM2MwIC41NTA5LTEuMTkwNiAxLjcxMDUtMS42MjYgMS43MTA1LTEuMDM2NSAwLTEuNDQyOS0xLjY2ODMtMS41NDg5LTIuMTc4OTUtLjAyODkuMDQ3OTktLjAyMTIuMTQwMTUtLjAyMTIuODY1ODUgMCAuMDU1Ni0uMTExNy4wMzQ1LS4xMTE3LjE3NDd2MS40OTM2YzAgLjI1MTQuMTY3Ni43MjU2LjE1MDIgMS4yNjEzLS43MTg1LS44MzktLjkxNy0xLjk1NDQtMi4wODA2LTIuMTQ0NC0uMzc3Ni0uMzMyMi0uOTYxMy0xLjA1NC0xLjM3NTUtMS4yODgyLjMyNzUtLjIzNDIgMS42MjYtLjMxNDg2IDEuNjI2LS42OTg4MiAwLS4xNDAxNC0uMDU1OS0uMjUxNDktLjA1NC0uMzUzMjQtLjA1MDEtLjA0NjA3LjAyNTEtLjAzODM5LS4xMTM2LS4wMzgzOXMtLjI4OS4wNDc5OS0uNDEwNC4xNjcwMmgtLjcxMDljLS4xNDA2IDAgLjAyODktLjEwOTQzLS4xMTE3LS4xMTEzNWgtMS4wNDhjLS40NDg5LS4zODk3MS0uNzI2My0uODEyMDYtMS4wNzg4LTEuMjQ1OTN2LS4xOTM5Yy40MzM0LS4xOTAwNiAxLjkxNDktMS4yNDAxOCAyLjA5NzktMS4yNDAxOC4xNDA2IDAgLjU4NzYuMjc4MzcuNzI4Mi4yNzgzNy4xNDA3IDAgLjQ5NTEtLjIyMjcuODE2OS0uMzIyNTN2LS4xOTc3M2MtLjE2MzgtLjE1NzQzLS4yNzU1LS4zODAxMi0uNDM1NC0uNTQ1MjJoLS43Mzc5Yy0uMDY1NS0uNzgxMzUtMS4wNTE4LTEuNzI1ODgtMS45MTQ5LTEuNzI1ODgtLjQ3NTggMC0uNTYwNi4yNzgzNi0uNzg0MS4yNzgzNi0uNzU3MSAwLS44MzAzLTEuMjg0MzMtLjk2OS0xLjUyMjM4LS4yODEzLS40NzQxOS0uMTc1My0xLjM1OTIxLS42NjQ2LTEuNzIzOTYtLjU0NzItLjQwNTA3OC0xLjI1OC0uNDcwMzUxLTEuOTQyLS42MjAwOTR2LS4yNjQ5MjljLjE5NjUuMDUxODM0LjQxMDQtLjAwMzg0IDEuNDE5OS0uMDAzODQuMDU1OCAwIC4xNDA2LS4wMjg3OTcuMTY3Ni0uMDg0NDcuMDI4OS4wNTU2NzMuMTExNy4wODQ0Ny4xNjk1LjA4NDQ3bDIuMDcyOS4wNTU2NzRjLjExMTcgMCAuMTM4Ny4xMTEzNDcuMjc5NC4xMTEzNDcuMzg1MyAwIC44MDUyLS4zOTE2MzUzIDEuMTQ4MS0uMzkxNjM1M20zLjcyNTkgOC40Nzk2NjczYy4wMjg5LjM4MjA0LjAyODkuNjAwODkuMDA1OC43NTY0bC4xMzY3LS41MDY4M2MtLjEzMjktLjA3MTAzLS4xMTU2LS4xNjEyNi0uMTQ0NS0uMjQ5NTd6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTM1LjA4MTQgMjguMTIwOWMwIDIuMTYzNi0yLjM0NDUgNi42MzI4LTQuMjg2NCA2Ljc3NjhoLS4zNjQxYy42NTMxLS42MTgxIDEuODQ3NS0yLjUyNDUgMS44NDc1LTMuNjIwNyAwLS4xNDAxLS4wNTU5LS40MTg1LS4wNTM5LS42MzE2LS4wNTAxLS4wNDYxLjAyNS0uMDM4NC0uMTEzNy0uMDM4NC0uMzUwNiAwLTEuMTk0NCAxLjYwNjktMS40NzU3IDIuMDY1Ny0uMTg2OS0uMDU1Ny0uMjkwOS0uMTA5NC0uNDI5Ni0uMTA5NC0uNDkxMyAwLTEuNDQyOS45NzUyLTEuNjAyOCAxLjE0NjEtLjYwODguMjQ3Ni0xLjI1MDMuNTE4My0xLjgzNzkuODAyNWgtMS4xNDgyYy0uMDA3Ny0uMDc4OC0uMDkyNS0uMTA3Ni0uMTczNC0uMTIxIDEuODA3MS0yLjk4MTQgMy41MzUxLTUuODc0NSAzLjkzOTctOS40Nzk5LjU2ODMuNjIyIDIuNDQ2NiAyLjk3MzggMi40NDY2IDMuMzIxMyAwIC4xNDAxLS4xMTc1LjM1MTMtLjIyMzQuNDk5MS4wNDgxLjAzODQuMTA0LjA5NDEuMTQyNS4xNDIxLjE1MDMtLjEwNzUuNTAwOS0uMjc4NC42NDE1LS4yNzg0LjE0MDcgMCAuMzM1My4xNjcuNDc1OS4xNjcuODI2NCAwIDEuMjYxOC0xLjc3OTYgMS4yNjk1LTIuMzExNHYtMS4yNjEzYy41NDkxLjQ1ODguNzE4NiAxLjQwMTQuODg4MiAyLjA4NDkuMTQ2NC41OTMyLjA1NzcuNzA0NS4wNTc3Ljg0NDdtLTUuMzk2MSAxNy40NTI3Yy0uNDY4MS0uNTM5NC0xLjU1MjctMS41MjgxLTEuNTUyNy0xLjY0NTIgMC0uNTcyMSAxLjI3NTMtMS42ODc1IDEuNTUyNy0xLjgxMDR2My40NTc1em0yLjE2MTYtMjYuNTc5M2MuMzc5NS0uMDQ0Mi42MjIyLjMzMjEgMS4wMjEuMzMyMSAxLjA3ODggMCAxLjU0MzEtMS4zODggMS45NDk2LTEuNzgxNmguMjA0MnYuMTk3OGMtLjU5MzMgMS4xNzEtMS4zOTY3IDIuMzA5NS0yLjc3MDMgMi4zMDk1LS4yMjM0IDAtMS4wOTIzLjAzNDUtMS4wOTIzLS4zNjI5IDAtLjE0MDEuNDU2Ni0uNDY2NS42ODc4LS42OTQ5em01LjQ3NTEgMTYuMjYyNHYtLjcyMThjLS4yMzg5LS4yNC0uMjc5NC0uNzc3NS0uMjc5NC0xLjA1MDEgMC0xLjI3MDkgMS45MDUzLTcuMTc2MiAxLjkwNTMtOC4wNzA4IDAtLjEzMjUtLjM4MTQtMS4zNDc3LS42NTY5LTEuNTYwOC4xMzg3IDEuNjc0MS0uODc2NiAyLjgwODctMS4yOTI3IDQuMTkwOS0uMTUyMi0uMDA1OC0uMzQ2OC4wNDk5LS40ODc0LjA0OTlzLS41MzE3LS4wNDIyLS41MzE3LS4zNjI4YzAtLjE0MDIuNjIyMy0uOTg0OS43NjI5LTEuNTIyNC4xMzI5LS41MTY0LjE4ODgtMS4wNDA1LjMwMjQtMS41NDU0LjA4NDgtMi4xMjUyIDAtMi4xNzUxLjAwNzctMi4yMjEyLjA5MDYtLjA0OC4xMDQxLS4yNC4xMDQxLS4zODAxIDAtLjE0MDItLjAxMzUtLjMzMjItLjEwNDEtLjM4MDItLjAwOTYtLjA0Ni4wNzUyLS4wOTU5LS4wMDk2LTEuMTYzMy0uNTI3OC0xLjEyMTItMS4wNTk2LTIuMjQwNC0xLjY0NzEtMy4zNzEyLS4xMzY4LjExOS0uMjI5My4yMjI3LS4zMjk1LjIyNjYtLjA1OTctLjA3NjgtLjkzNjItLjkyNTQtLjkzNjItMS4xNDgxIDAtLjUwMy4yODEyLTEuMDA1OS4yODEyLTEuNTA4OSAwLS4xNDAyLS4wMDM4LS4yOTE4LS4wNzEyLS40MTQ3LS40MDg1LjA1MzgtLjU0MzMtLjUwODctLjc4OC0uNjY4MWgtLjE5NjVjLS4wNTc4LjY0MzItMS4zMzMxIDEuMTY5Mi0xLjg4NiAxLjE2OTItLjE0MDcgMC0uMjc5NC0uMTExNC0uNDItLjExMTQtLjU2MDYgMC0uNjcyMy41MjQxLS42NzIzIDEuMDYxNyAwIC40Mzk2LjgzOTkuODEwMS44Mzk5IDEuMTk5OCAwIC4yMzA0LS45OTQxIDIuMDM4OC0xLjM4MTMgMi4wMzg4aC0xLjE2MzZjLS41MzE3IDAtMy4yODY2IDEuNDc4My0zLjU5MSAxLjY3Ni0uMDM4NS0uMDQ4LS4wNTk3LS4xMTEzLS4xMjMzLS4xMTEzLTEuMDkyMy43MDA3LTIuNTEwMiAxLjMxMzEtMy43MzkzIDEuODQyOS0uMDYxNi0uMDk0LS4yMzEyLS4xMTUxLS4yNzc0LS4zODk3LS4xNDA2LjExOTEtLjI2Mi4xNTk0LS4yNjAxLjI5OTV2Ljc0M2MuMTE5NS4xMjA5LjI4NzEuMjg3OS40MDg0LjQwN2gxLjE5NDVjLjU2NjQtLjI4MDMgMS41MzU0LS44OTI3IDEuNjc0MS0uODkyNy4zNTA2IDAgLjYwMyAxLjY3NTkgMS4yOTY1IDEuNjc1OWgxLjEwNzhjLjI1MjMgMCAuOTg4Mi4zMzQxLjk4ODIuNjkxMnYxLjEzMDdjMCAuMDc2OC0uNDAyNi44Mzg5LS40ODc0Ljk5ODMtLjIwMjIuMzkxNi0uNDY2MiAxLjA2NzQtLjQ2NjIgMS40NDM3di44NTIzYzAgMS42MzM4LTEuOTE0OSAzLjAyOTUtMi42MzM1IDQuMTczNnYxNC4yNzc1YzAgLjE0MDEuMTExOC0uMDU1Ny4xMTE4LjA4NDQgMCAuMTQwMi0uMTExOC0uMDQyMi0uMTExOC4wOTc5djIuMzA5NWMuMjE5Ni40Mzk3IDEuNDU2NCAxLjAzMjkgMS40NTY0IDEuNjYyNnYuNjdjLS4zMDQzLjU5NTEtMS4xMTM1Ljc1NDQtMS42NzQxIDEuMzYzLS4zODUzLjQxMjgtMS4wMDM3LjE3NjYtMS41Mi41NjA2aDIuMjE3NGMuNjkxNi0uMjA3NCAyLjQzMzItMS4xMDAxIDIuNDMzMi0yLjMwNzYgMC0uNjgzNC0xLjM2NC0yLjI3NjgtMS41NzAxLTIuNTY2Ny4yNTA0LS4yNDE5Ljk4MDYtLjUzMzcuOTgwNi0uNTMzNy4xNDA2IDAgLjExMTcuMTExMy4yNTIzLjExMTMuMTQwNyAwIC4xMTE4LS4xMTEzLjI1MjQtLjExMTNzMCAuMTExMy4xNDA2LjExMTNjLjE0MDcgMCAwLS4xMTEzLjE0MDctLjExMTMuMTQwNiAwIDAgLjExMTMuMTQwNi4xMTEzaDEuMDg2NWMuMTQwNyAwIC4xMTk1LjExMTQuMTc1NC4xMTE0LjU2MDYgMCAuNzI4Mi4wNTU2IDEuNDU2NC4wNTU2LjA1NTkgMCAuMDM0Ny4xMTE0LjE3NTMuMTExNGgxLjI3NTNjLjE0MDcgMCAuMTQ2NC4xMTEzLjI4NzEuMTExMy4xNDA2IDAgLjE0NjQtLjExMTMuMjg3LS4xMTMyaC44OTk3Yy4xMjcxLS4xMTE0LjQxNDItLjE1MzYuNTIyMS0uMTkzOS0uNjUzMS0uMTMyNS0yLjgwMzEtMS42MzM4LTIuODAzMS0yLjIzNDcgMC0yLjI3NDkgMS4wNzg5LTIuNjI4MSAxLjQ4NTQtNS4wNzk3di0xLjg0ODhjLS4xMTE4LS43NTYzLS4yNzk0LTEuNDM3OS0uNzAxMy0yLjAxLjE1OC0uMjU3Mi43MTg2LS42MDY2LjkyMjgtLjc3OTQuMzQ2OC0uMjk5NS45NDk4LS44NjM5IDEuNTI1OC0xLjQ3NjMuNzYyOS0uODEyMSAxLjQ3NTctMS43MTQ0IDEuNDc1Ny0yLjIxNTR2LS45MzVjMC0uMTQwMS4zOTExLS45NDY0LjU0OS0xLjM4MDMuMTUyMi4wMDU4LjM0MS0uMDAzOC40Mjc3LS4xMDc1LjIwNDIuNDg1Ny43MDUxIDEuMjc4Ni43MDUxIDEuNDE2OHYuNzM5MWMwIC40NTMxLS41MDQ3IDEuMzA1NS0uNTA0NyAxLjY0MTQgMCAuMTE1Mi4xNTIyLjQ5NzMuMjA0Mi43MDQ2LS4xODY5LjQyMjMtMS43NzQzIDEuOTg3LTEuNzc0MyAyLjcyOTkgMCAuMjE3LjIyMzQuNjgzNS4yMjczLjg4N3YuODYzOWMuMDgwOS4wMDc2LjEwNzkuMDQwMy4xMDc5LjA0MDMtLjA0ODIuMDMwNy0uMTExOC0uMDU5NS0uMTExOC4wNzg3cy4xMTE4LjIyMjcuMTExOC4zNjI4YzAgLjE0MDItLjA1NC4zMjI1LS4xMDc5LjQ2MDguMDgwOS4wMTM0LjEwNzkuMDk2LjEwOTguMTQyLS4wNTAxLjA0NjEtLjExMzcuMDY1My0uMTExNy4xMzI1LjA5NjMuMTA3NS4xMDk4LjMwMzMuMTA5OC4zMjQ0IDAgLjE0NTkgMCAuMzkzNi0uMDA1OC40NDE2LS4xNzUzLjkyOTItLjIxNzcuNTU2Ny0uMjE3Ny42Njgxdi45MDhjMCAuNDQ3My0uMTU2IDEuMjU1Ni0uMzkxMSAxLjYxNjUuNDIzOS4zMjQ0Ljg3ODUuNzQ4NyAxLjE5NDUgMS4wMjMyaC4yNTQzYy4wMDc3LS4wNzg3LjAzNjYtLjEwNTYuMDgwOS0uMTA5NC4zMjc1LjMyODMuODUxNS45NTIyLjk5MjEuOTUyMnMuMTQwNi0uMDU1Ny4yMTk2LS4wNjMzdi0uMzY0OGMtMS40NDI5LTIuMDE3Ny0xLjQ1MjUtLjc4NzEtMS40MjM3LTIuNzU2OHYtMS41ODc3Yy40Mi0yLjEzNDguNzI2My00LjI1NjEgMS43MDg4LTYuMTM5NHYtMS4wNDA1YzAtLjE0MDItLjExMTcuMDQyMi0uMTEzNi0uMDk3OXoiIGZpbGw9IiMyYjJhMjkiLz48cGF0aCBkPSJtMjIuODM0OCAzLjAxNTk5YzIuMDk0MSAwIDIuOTQxOCAxLjgxNjExIDIuOTQxOCAzLjYwMTUxIDAgLjc4OTAzLTIuODU4OSAyLjMzODI5LTIuODU4OSAzLjYzMDMgMCAuMjAzNS4xODY4LjQ3NDIuMzA2My41ODc1LjQyOTYtLjQ5MzQuOTM0My0uOTk2NDEgMS4zMzUtMS40NDk0OC4wNjc1LS4wMDE5Mi4wMTE2LjEwOTQzLjE1MjIuMTA5NDNoMS4wMDk1Yy4xNDA2IDAtLjAyODktLjExMTM1LjExMTctLjExMTM1aC45NzI5Yy4xNDA3IDAgLjQ1NDctLjU1ODY1LjU5NTMtLjU1ODY1LjgxODggMCAxLjE4NjcgMS43MTYyNSAxLjYwMjggMi4zMjI5NS4wMjEyLjQzOTYuMDc5IDEuMzA3NC4wNTAxIDEuNDQ3NXYxLjU3MDRjLS4yNDg1LjQxNjYtLjM5ODcgMi4zMTE0LTEuNDU2NCAyLjMxMTQtLjczNTkgMC0xLjIxOTUtLjU1ODctMS45NjEyLS41NTg3LS4xNDA2IDAtLjMxNC4xNTU1LS40MjE5LjMxNDl2Ljg3OTJjMCAuMTE5MS40NTY2LjkzMTEuNTI3OSAxLjA0MDYuMTA0LS4zNTktLjM0NDgtMS4zNC40NTI3LTEuMzQuMzkzIDAgMS4wMzA3IDEuMTU1NyAxLjE0ODIgMS4zMTY5bC00LjU0MDcgMi41MzYxYy0uMzUwNy0uMjU3My0uNjcwNC0uNDA1MS0uNjcwNC0uNzgxNCAwLS4zMzQuMjM4OC0uMzQ1Ni4xMzI5LTEuMTczLS45MjI4IDEuMTA3Ny0xLjc1MTIgMi40NDc3LTIuNjcwMSAzLjUxMzJoLS4yMDA0Yy0uMDA3Ny0uMTM0NC0uMDU5Ny0uMjMyMy0uMTA1OS0uMzMyMWgtLjcwNzFjLTEuMjA0LjAwMTktNC4wMTQ4IDMuOTk1MS00LjAxNDggNC43MjA3IDAgLjE0MDIuMTExOC4yNTE1LjExMTguMzkxNyAwIC45NTYtMS4wNjU0IDIuMzExNC0xLjA2NTQgMy4zNTc3di43MDQ1YzAgLjE0MDItLjExMTctLjA0MjItLjExMTcuMDk3OXYxLjc1MjhjMCAuNTcyMS41ODU2IDIuMDE5Ni45MzA1IDIuMTU3OC4zNTI1LS4wMDc3LjQxNjEtLjYxMjQuNTU0OC0uNzY0LjU2NjQtLjE4NDMgMS41MjE5LjEwNzUgMS43MTA3LS43MTQyLS4yNzkzLS42NjIzLS42NzA0LTEuMjc2Ny0uOTQ5Ny0xLjk1MjR2LS4zNTcxYy4zODUzLS4xNTU1LjM4OTEtLjEwOTQuMzg5MS0uNDMgMC0uMjc4NC0uMDc3LS41NTI5LS4yMjM1LS43MTYxdi0xLjEzNDZjMC0uOTU2MSAxLjUxMjMtMi43MzM4IDEuOTc2Ni0zLjMxMzUuMDY3NC0uMDAyLjEzNjguMDU1Ni4yNjIuMTI2Ny0uMTk2NS41MTY0LTEuMDYzNCAyLjExMTctMS4wNjM0IDIuNDE4OXYuOTkwNmMwIC45NTYgMS42MjYgMy45Nzk3IDEuNjI2IDQuMDgzNCAwIC40NzQyLS43MjgzIDEuMTU5NS0uNzI4MyAyLjQzMDQgMCAyLjA4NjggMS42NjY1IDQuOTI4MSAyLjEyODggNi40MDI1IDAgMC0uMTA5OC0uMDY1My0uMTA5OC4wNzQ4djEuNzUyOGMwIDEuNjEyNi0uODkgMi45MjU4LTEuMzExOSA0LjMxNTctLjA5MDYuMzA3MS0uNTE0NC40MzM4LS43MzAyLjU3NzgtLjM0ODctLjExMzItLjk5MjEtLjI3ODMtMS4xMzI4LS4yODQxaC0xLjAyNDhjLjA4MDktLjI0NzYuNjEyNi0xLjU1NjkuNjEyNi0xLjc0NTF2LTEuMzUzNGMwLS4yNTkyLS4xOTY1LS43MTk5LS40Mjc3LS43ODkxLS4zNzc2LS4xMTEzLS44NjExLjA3NjgtMS4yMzMtLjAzNDUtLjM5ODctLjExOS0uNzM5Ny0uNDMyLTEuMDY3Mi0uNzQxLS4wMTc0LS4yMTMxLS4wNzMyLS41Nzc5LS4wNzMyLS43MTggMC0uODk0Ny42NzIzLTIuMDQ0Ni42NzIzLTIuNjc0M3YtMS4wMTk0YzAtLjY1NjYtMi4xNTE5LTIuNDk3Ni0yLjMzNDktMi42MjI0LS41MjIxLTIuMjY1NC0uNzUzMy00LjY0NTktMi4zMTE3OS02LjM1MjZ2LS4xOTU4YzIuNzc0MTktMS4wNjM2IDMuOTAzMDktNC4wNzU3IDUuNTA3NzktNi4yOTY5Ljc4NjEtLjg3MzUgMS43MTY2LTIuMjA1OCAyLjc1NDktMi43OTkgMS41NTQ3LS44ODcgMi45OTk2LTIuNzUzIDQuMzQ0My00LjAxNjItLjM4MzQtLjk2NzYtLjc2NDgtMi4yNzQ5LTEuMzc1NS0zLjA5NDctLjAzNDcuMDQ4LS4wMjcuMTQwMi0uMDI3IDIuMjAzOS4wOTA1LjY5NjktLjY5MzYgMi4yMDc4LTEuNjI2IDIuMjA3OC0yLjU3NzYgMC00Ljc2NDItNy42NDQ2LTQuNzY0Mi05LjIxNDk3IDAtMi42ODc2OSA1LjQxNTQtMy4zODQ1NyA1LjM0MDItNS40NDI1OC44MTg4LS43NDg3MSAxLjg2ODctLjg2OTY2IDMuMDM4MS0uODY5NjZ6bTQuOTAyOSA5LjM5OTIxYy0uMTczMy0uMTc2Ni0uNDA2NC0uNDA1LS42NDE1LS41MjAyLS44MjQ1LjQwMTItMS4zMzMxLjUzOTQtMi4xNTc3LjgxMDEuMzU2NS4xMzgyLjczNi4zNjI5Ljg3NjYuMzYyOWgxLjEyNTFjLjIwNjEtLjIxNy44MDkxLS4yNzA3Ljc5OTUtLjY1Mjh6IiBmaWxsPSIjMmIyYTI5Ii8+PC9nPjwvc3ZnPg==",type:"image"},logoMini:{id:"6560a04654a910c2150ab7a9",alt:"logo - Plugin",url:"data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjU2IiB2aWV3Qm94PSIwIDAgMTkyIDU2IiB3aWR0aD0iMTkyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48Y2xpcFBhdGggaWQ9ImEiPjxwYXRoIGQ9Im0uMzMzMzc0IDBoMTkxLjMzM3Y1NmgtMTkxLjMzM3oiLz48L2NsaXBQYXRoPjxnIGNsaXAtcGF0aD0idXJsKCNhKSI+PHBhdGggZD0ibTM1LjI1NjggOC40NjYxOWMuMDM2Ni4wODYzOS4wMTM1LjE3NjYyLjE4NS4yNDk1N2wtLjE3NzMuNTA2ODJjLjAyODktLjE1NTUuMDI3LS4zNzQzNi0uMDA3Ny0uNzU2Mzl6IiBmaWxsPSIjZmVmZWZlIi8+PHBhdGggZD0ibTM1LjI1NjggOC40NjYxOWMuMDM2Ni4wODYzOS4wMTM1LjE3NjYyLjE4NS4yNDk1N2wtLjE3NzMuNTA2ODJjLjAyODktLjE1NTUuMDI3LS4zNzQzNi0uMDA3Ny0uNzU2Mzl6IiBzdHJva2U9IiNmZWZlZmUiIHN0cm9rZS1taXRlcmxpbWl0PSIzLjg2IiBzdHJva2Utd2lkdGg9Ii4zOSIvPjxnIGZpbGw9IiNmZWZlZmUiPjxwYXRoIGQ9Im0zMC44ODU2IDMyLjI0MDljLjM3MTgtLjY0Ny45NTE3LTEuNjM1NyAxLjIyNTItMS42MzU3LjE0MDcgMCAuMDYzNi0uMDA3Ny4xMTM3LjAzODQtLjAwMTkuMjEzMS4wNTM5LjQ5MTUuMDUzOS42MzE2IDAgLjI4MDMtLjA3Ny42MTI0LS4yMDQyLjk2MTgtLjM2OTkgMS4wMjMzLTEuMTU3OCAyLjE5NjItMS42NDMzIDIuNjU4OWguMzY0MWMuOTc2OC0uMDcyOSAyLjA1NTYtMS4yNDAyIDIuODg3OC0yLjY1Ny44MjA3LTEuMzk5NSAxLjM5ODctMy4wNDI4IDEuMzk4Ny00LjExOTggMC0uMTQwMi4wOTA1LS4yNTE1LS4wNTc4LS44NDQ3LS4xNjc2LS42ODM1LS4zMzcyLTEuNjI2MS0uODg4MS0yLjA4NDl2MS4yNjEzYy0uMDA3Ny41Mjk5LS40NDMxIDIuMzExNC0xLjI2OTYgMi4zMTE0LS4xNDA2IDAtLjMzNzEtLjE2Ny0uNDc1OC0uMTY3cy0uNDkxMy4xNzI4LS42NDE2LjI3ODRjLS4wMzg1LS4wNDgtLjA5NDQtLjEwMzctLjE0MjUtLjE0MjEuMTA3OS0uMTQ5Ny4yMjM1LS4zNjA5LjIyMzUtLjQ5OTEgMC0uMzQ5NC0xLjg3ODQtMi42OTkzLTIuNDQ2Ny0zLjMyMTMtLjMwODIgMi43MzU3LTEuMzc1NSA1LjA2MjUtMi42NjQzIDcuMzI5OC0uNDA4NC43MTk5LS44NCAxLjQzMjEtMS4yNzU0IDIuMTUwMS4wODA5LjAxMzQuMTYzOC4wNDIyLjE3MzQuMTIxaDEuMTQ4MmMuNTg3Ni0uMjg0MiAxLjIzMS0uNTU2OCAxLjgzNzktLjgwMjUuMTU4LS4xNzA5IDEuMTExNi0xLjE0NjEgMS42MDI4LTEuMTQ2MS4xNDA3IDAgLjI0MjguMDUzNy40Mjk2LjEwOTQuMDU5Ny0uMDk5OC4xNDY0LS4yNTE1LjI0ODUtLjQzIi8+PHBhdGggZD0ibTM3LjI4NzMgNDcuNjkzMWMtLjA0ODItLjIzOC0uMDE5My0uMjg0MS0uMTM4Ny0uNDUzbC0uMDIzMS4wMDM4Yy0uMDU3OC4wMTU0LS4wNzEzLjA1OTUtLjE5NjUuMDU5NS0uMTQwNyAwLS42NjQ3LS42MjItLjk5MjItLjk1MjItLjA0NDMuMDAxOS0uMDczMi4wMzA3LS4wODA5LjEwOTRoLS4yNTQzYy0uMzE1OS0uMjc0NS0uNzY4Ny0uNjk4OC0xLjE5NDQtMS4wMjMyLjIzNS0uMzYyOC4zOTExLTEuMTcxMS4zOTExLTEuNjE2NXYtLjkwOGMwLS4xMTE0LjA0MjMuMjYxMS4yMTc3LS42NjgxLjAwNzctLjA0OC4wMDU3LS4yOTU2LjAwNTctLjQ0MTUgMC0uMDIxMi0uMDEzNC0uMjE4OS0uMTA5OC0uMzI0NSAwLS4wNjcyLjA2MTctLjA4NjQuMTExOC0uMTMyNS0uMDAyLS4wNDYtLjAzMDktLjEyODYtLjEwOTgtLjE0Mi4wNTM5LS4xMzgyLjEwNzgtLjMyMjUuMTA3OC0uNDYwOCAwLS4xMzgyLS4xMTE3LS4yMjI3LS4xMTE3LS4zNjI4cy4wNjM2LS4wNDguMTExNy0uMDc4N2MwIDAtLjAyODktLjAzMjYtLjEwNzgtLjA0MDN2LS4yNjVsLjEwMDEuMDAzOS0uMTAwMS0uNjA0N2MtLjAwMzktLjIwMzUtLjIyNzQtLjY3MDEtLjIyNzQtLjg4NyAwLS43ODkgMS43OTM2LTIuNTA1MyAxLjc5MzYtMi42MjQzIDAtLjE0MDItLjIyMzUtLjY3LS4yMjM1LS44MTAyIDAtLjMzNC41MDQ4LTEuMTg2NC41MDQ4LTEuNjQxNHYtLjczOTFjMC0uMDU5NS0uMDg4Ny0uMjM0Mi0uMjA4MS0uNDUzMS0uMTYxOC0uMjk5NS0uMzc5NS0uNjgzNC0uNDk3LS45NjM3LS4wODY3LjEwMzctLjI3NTUuMTExMy0uNDI3Ny4xMDc1LS4wODQ4LjIzMjMtLjIzNS41NzAyLS4zNTgzLjg1NjItLjEwNi4yNDk2LS4xOTA4LjQ1ODktLjE5MDguNTI0MXYuOTM1YzAgLjg3OTItMi4xOTYyIDIuOTk0OC0zLjAwMTQgMy42OTM2LS4yMDQyLjE3NDctLjc2NDkuNTI0MS0uOTIyOC43Nzk1LjMyOTQuNDQ1My41MTA1IDEuMTA5Ni42MjQyIDEuNjcyMWguMDE3M2MuMDE5My4xMTEzLjA0MDQuMjIyNy4wNTc4LjMzNzl2MS44NDg3Yy0uNDA2NSAyLjQ1MTYtMS40ODUzIDIuODAyOS0xLjQ4NTMgNS4wNzk3IDAgLjYwMDkgMi4xNDggMi4xMDIyIDIuODAzIDIuMjM0Ny0uMDUwMS4wMTkyLS4xMzY4LjAzODQtLjIyOTIuMDY1Mi40MTggMCAxLjA0NDEtLjAxNTMgMS45Njg4LS4xNzY2IDEuMDA3Ni0uMTc2NiAxLjYwMDktLjI5NTYgMS45NTczLS41OTEzLjM1NjQtLjI5NTYuNDc0LS42NTA4LjQxNjItLjk0NDUiLz48cGF0aCBkPSJtMTUuOTg5OSA0NC42OTI0Yy0uMzc3Ni0uMTExMy0uODYxMS4wNzY4LTEuMjMyOS0uMDM0NS0uMzk4OC0uMTE5LS43Mzk4LS40MzItMS4wNjczLS43NDExLS4wMTc0LS4yMTMxLS4wNzMyLS41Nzc4LS4wNzMyLS43MTggMC0uODkyNy42NzIzLTIuMDQ0NS42NzIzLTIuNjc0MnYtMS4wMTk0YzAtLjY1NjYtMi4xNTE5LTIuNDk3Ni0yLjMzNDktMi42MjI0LS4zNjQxLTEuNTgxOS0uNTg3Ni0zLjIxOTUtMS4yMTk1LTQuNjQ0aC0uMDQ2MmMtLjI2NTktLjY3NzctLjYwMy0xLjIyMS0xLjA0NjA4LTEuNzA2N3YtLjE2N2MtLjE2Mzc1LjEyODYtLjMzNzE0LjQ0MzUtLjQ3Nzc3LjYyMi0uMTU5OS4yMDU0LS4yMzExOC4zNDE3LS4zNDY3Ny41MTQ1di43NTY0Yy0uMTYzNzUuMzQzNy0uMzU2NCAxLjQyNDUtLjM1NjQgMS44OTg3djIuODgzNWMwIC4xNDAxLjExMTc0LS4wNDIyLjExMTc0LjA5Nzl2Ljc0MWMwIC4xNDAyLjExMTczLS4wNDIyLjExMTczLjA5Nzl2LjY5MTJjMCAuMDk0LjA4ODYyLjUxNDUuMjI1NCAxLjAyNy4zMTQwMiAxLjE3My44NzQ2MyAyLjgyMDIgMS4xNzcwNSAyLjA5NDUuMjE1OC4yMTg5LjM4NzMuNTAzLjUwMjkuNzMzNHYxLjI3NjZjMCAuMTQwMi4xMTE3LS4wNDIyLjEwNzguMDk3OXYyLjU2MWMtLjA0MjMuMDAzOS0uMDQ2Mi4wMjEyLS4wNjE2LjAzNjUuMDY1NS4wMTkyLjE3MTQuMDY1My4zNzc2LjE5MzkuNDczOS4yOTU3Ljc3MDYuNTkxMyAxLjU0MTIuODg2OS43NzA2LjI5NTcuNzcwNi40MTQ3IDEuNjYwNi42NTA5Ljg5LjIzNjEgMS4xMjcuMzU1MSAxLjYxMDYuMjkzNy4xMjcxLS4zNTUyLjU4OTUtMS41MDcxLjU4OTUtMS42ODM3di0xLjM1MzRjMC0uMjU5Mi0uMTk2NS0uNzE5OS0uNDI3Ny0uNzg5Ii8+PHBhdGggZD0ibTM3LjA0ODQgMjAuNTk5MmMuMDczMy45ODY4LS4wMDU3IDEuMDM2Ny4wMDIgMS4wODA5LjA5MDUuMDQ4LjEwNC4yNC4xMDQuMzgwMXMtLjAxMzUuMzMyMS0uMTA0LjM4MDFjLS4wMDk3LjA0NjEuMDc1MS4wOTYtLjAwNzcgMi4yMjEyLS4wMDk3LjA0MDMtLjAxNzQuMDc4Ny0uMDI1MS4xMjA5LS4wOTYzLjQ2ODUtLjE1NDEuOTUwMy0uMjc1NSAxLjQyNjQtLjE0MDYuNTM3Ni0uNzYyOSAxLjM4MjMtLjc2MjkgMS41MjI0IDAgLjMyMDYuMzg1My4zNjI5LjUzMTguMzYyOS4xNDY0IDAgLjMzNzEtLjA1NTcuNDg3NC0uMDQ5OS4zMzUyLTEuMTA5NyAxLjA1NTctMi4wNiAxLjI1NDEtMy4yNTk4LjAzODUtLjIzMDQuMDU3OC0uNDY4NS4wNTAxLS43MmwtLjA2NTUtLjEyNjdjLS4xNzE1LS4zMzk4LS43MjQ0LTIuNTM0MS0xLjE4ODctMy4zMzQ2Ii8+PHBhdGggZD0ibTI3LjI5NDYgMjQuNzgyNGMtLjE4ODgtLjM2NDctLjc0MTctLjU0MzMtLjkzNDMtLjU0MzNoLTEuMTA3OGMtLjY5MzUgMC0uOTQ1OS0xLjY3NTktMS4yOTY1LTEuNjc1OS0uMTQwNiAwLTEuMTA3Ny42MTI0LTEuNjc0MS44OTI3aC0xLjE5NDRjLS4xMjE0LS4xMTkxLS4yODktLjI4NjEtLjQwODQtLjQwN3YtLjc0M2MwLS4xNDAxLjExOTQtLjE4MDQuMjYtLjI5OTUuMDQ2My4yNzQ2LjIxNTguMjk1Ny4yNzc0LjM4OTggMS4yMjkxLS41Mjk5IDIuNjQ3LTEuMTQyMyAzLjczOTQtMS44NDMuMDYzNSAwIC4wODQ3LjA2MzMuMTIzMy4xMTEzLjIzMzEtLjE1MzYgMS45MjA3LTEuMDYzNSAyLjkyNjMtMS40NzQ0aC0yLjU2NDJsLTIuNjM5MyAxLjQ3MjVjLS4zNTA2LS4yNTczLS42NzA0LS40MDUxLS42NzA0LS43ODE0IDAtLjI1MzQuMTM0OS0uMzIwNi4xNTYxLS42OTExLjAwNzctLjEyMjggMC0uMjc4NC0uMDI1MS0uNDgxOC0uMTI5LjE1NTUtLjI1ODEuMzE2Ny0uMzg1My40ODE4LS43NzI1IDEuMDAwMi0xLjQ5NDkgMi4xMTc1LTIuMjg0OCAzLjAzMzNoLS4yMDAzYy0uMDA3Ny0uMTM0NC0uMDU5OC0uMjMyMy0uMTA2LS4zMzIyaC0uNzA3Yy0uNzUxNCAwLTIuMjY3NSAxLjY5OTEtMy4xOTggMy4wNDFoLjA0NjJjLS41MDg2Ljc1NDUtLjg2MyAxLjQyMjUtLjg2MyAxLjY3OTggMCAuMTQwMS4xMTE3LjI1MTUuMTExNy4zOTE2IDAgLjk1NjEtMS4wNjUzIDIuMzExNC0xLjA2NTMgMy4zNTc3di43MDQ2YzAgLjE0MDEtLjExMTgtLjA0MjMtLjExMTguMDk3OXYxLjc1MjdjMCAuNTcyMS41ODU3IDIuMDE5Ny45MzA1IDIuMTU3OS4zNTI2LS4wMDc3LjQxNjEtLjYxMjQuNTU0OC0uNzY0MS41NjY0LS4xODQzIDEuNTIyLjEwNzUgMS43MTA4LS43MTQxLS4xOTQ2LS40NjI3LS40NDUtLjkwMjMtLjY3MjQtMS4zNTczLS4wOTgyLS4xOTM5LS4xOTI2LS4zOTE3LS4yNzU1LS41OTUydi0uMzU3Yy4zODUzLS4xNTU1LjM4OTItLjEwOTUuMzg5Mi0uNDMwMSAwLS4yNzgzLS4wNzcxLS41NTI5LS4yMjM1LS43MTYxdi0xLjEzNDVjMC0uOTU2MSAxLjUxMjMtMi43MzM4IDEuOTc2Ni0zLjMxMzYuMDY3NC0uMDAxOS4xMzY4LjA1NTcuMjYyLjEyNjctLjE5NjUuNTE2NC0xLjA2MzQgMi4xMTE4LTEuMDYzNCAyLjQxODl2Ljk5MDdjMCAuNTk4OS42Mzk2IDIuMDEzOCAxLjExNTQgMy4wMDgyLjI4MzIuNTkxMy41MDg2IDEuMDM2Ny41MDg2IDEuMDc1MSAwIC40NzQyLS43MjgyIDEuMTU5Ni0uNzI4MiAyLjQzMDUgMCAxLjIwMTcuNTUyOSAyLjY1NSAxLjEwOTcgMy45NTA5LjQxMDMuOTU0MS44MjI2IDEuODI1NyAxLjAxOTEgMi40NTE1IDAgMC0uMTA5OC0uMDY1Mi0uMTA5OC4wNzQ5djEuNzUyOGMwIDEuNDU3MS0uNzI4MyAyLjY3MjMtMS4xNjE3IDMuODk3MSAwIDAgLjA1OTcgMS4yNDIxLS4xMTk1IDEuNjU0OS0uMTc3Mi40MTQ2LS41OTMzIDEuMDYzNS0uNzcwNiAxLjQxODctLjE3NzIuMzU1MS0uMTc3MiAxLjI5OTcuMDU5OCAxLjc3MzkuMjM2OS40NzIyLjgzMDMgMS4wNjM1IDEuMzYzOSAxLjI0MjEuNTMzNy4xNzY2IDEuNDIzNy41MzE3IDEuOTU3My41OTEzLjUxNjMuMDU3NS42OTk0LjA1OTUgMS4wMzI2LjAwNTdoLS4zNDI5Yy41MTYzLS4zODIgMS4xMzQ3LS4xNDc4IDEuNTItLjU2MDYuNTYwNi0uNjA2NiAxLjM2OTgtLjc2NzkgMS42NzQxLTEuMzYzdi0uNjdjMC0uNjI3OC0xLjIzNjgtMS4yMjI5LTEuNDU4My0xLjY2MjV2LTIuMzA5NWMwLS4xNDAyLjExMTcuMDQyMi4xMTE3LS4wOTc5IDAtLjE0MDItLjExMTcuMDU1Ni0uMTExNy0uMDg0NXYtMTQuMjc3NGMuMjUwNC0uMzk5My42NDczLS44Mjk0IDEuMDU3Ni0xLjI5MDEuNzY0OC0uODU4MiAxLjU3NTktMS44MiAxLjU3NTktMi44ODM1di0uODUyNGMwLS4zNzYzLjI2Mi0xLjA1NC40NjYyLTEuNDQzNy4wODQ4LS4xNTkzLjQ4NzQtLjkyMzQuNDg3NC0uOTk4M3YtMS4xMzA3YzAtLjA0OTktLjAxNTQtLjA5OTgtLjA0MDQtLjE0NTloLS4wMTM1eiIvPjxwYXRoIGQ9Im0yOC42NzIxIDE4Ljk4ODVoMS4xNjM2Yy4zODUzIDAgMS4zODEzLTEuODA4NCAxLjM4MTMtMi4wMzg4IDAtLjM5MTYtLjg0LS43NjAyLS44NC0xLjE5OTggMC0uNTM3Ni4xMTE4LTEuMDYxNy42NzI0LTEuMDYxNy4xNDA2IDAgLjI3OTMuMTExNC40Mi4xMTE0LjU1MjkgMCAxLjgyODItLjUyNjEgMS44ODYtMS4xNjkyaC4xOTY1Yy4yNDQ3LjE2MTMuMzc5NS43MjE5Ljc4NzkuNjY4MS4wNjc1LjEyMjkuMDcxMy4yNzY1LjA3MTMuNDE0NyAwIC41MDMtLjI4MTMgMS4wMDU5LS4yODEzIDEuNTA4OSAwIC4yMjI3Ljg3NjYgMS4wNzEzLjk1OTQgMS4xNDQyLjAxNzQtLjAwMzguMDM0Ny0uMDA5Ni4wNTIxLS4wMTczLjA3NTEtLjAzNjQuMTUyMS0uMTE3MS4yNjItLjE5LjAzMDgtLjI2MTEtLjAxMzUgMCAuNTc5OC0uMzc4MmwuMDk0NC0uMDYzNC0uMzIxNy4xODI0LS4wMTE2LTEuNDE4N3MuMTc3My0uNTMxOC4wNTk4LTEuMDA0MWMtLjA3NTItLjI5OTQtLjIyMTYtLjUyNzktLjM1MDctLjc0MjktLjcxODUtLjgzOS0uOTE3LTEuOTU0My0yLjA4MDYtMi4xNDQ0LS4zNzc2LS4zMzIxLS45NjEzLTEuMDU0LTEuMzc1NS0xLjI4ODIuMzI3NS0uMjM0MiAxLjYyNi0uMzE0ODIgMS42MjYtLjY5ODc4IDAtLjE0MDE0LS4wNTU5LS4yNTE0OS0uMDU0LS4zNTMyNC0uMDUwMS0uMDQ2MDcuMDI1MS0uMDM4MzktLjExMzYtLjAzODM5cy0uMjg5LjA0Nzk5LS40MTA0LjE2NzAyaC0uNzEwOGMtLjE0MDcgMCAuMDI4OS0uMTA5NDMtLjExMTgtLjExMTM1aC0xLjA0OGMtLjQ0ODktLjM4OTcyLS43MjYzLS44MTIwNy0xLjA3ODgtMS4yNDU5NHYtLjE5MzljLjQzMzQtLjE5MDA1IDEuOTE0OS0xLjI0MDE3IDIuMDk3OS0xLjI0MDE3LjE0MDcgMCAuNTg3Ni4yNzgzNi43MjgyLjI3ODM2LjE0MDcgMCAuNDk1MS0uMjIyNjkuODE2OS0uMzIyNTJ2LS4xOTc3NGMtLjE2MzgtLjE1NzQyLS4yNzU1LS4zODAxMS0uNDM1NC0uNTQ1MjJoLS43Mzc5Yy0uMDY1NS0uNzgxMzUtMS4wNTE4LTEuNzI1ODgtMS45MTQ5LTEuNzI1ODgtLjQ3NTggMC0uNTYwNi4yNzgzNy0uNzg0MS4yNzgzNy0uNzU3MSAwLS44MzAzLTEuMjg0MzMtLjk2OS0xLjUyMjM5LS4yODEzLS40NzQxOC0uMTc1My0xLjM2MTEyLS42NjQ2LTEuNzIzOTYtLjU0NzItLjQwNTA3Mi0xLjI1OC0uNDcwMzQ1LTEuOTQxOS0uNjIwMDg4di0uMDg2MzljLS40NDEyLjA2OTExMi0xLjExMTYuMTkwMDU4LTEuNzc4Mi4zNzYyNzctMS4xMzI4LjMxODY4MS0xLjc4NzguNjE4MTcxLTIuNTM3MiAxLjAwMDIwMS0uNzE4Ni4zNjY2OC0xLjY3MjIgMS40NzgyNC0xLjg2MSAxLjg0ODc1Ljc2NDgtLjUyNDEgMS42OTUzLS42MTQzMyAyLjcxODMtLjYxNDMzIDIuMDk0MSAwIDIuOTQxOCAxLjgxNjEyIDIuOTQxOCAzLjYwMTUxIDAgLjc4OTAzLTIuODU5IDIuMzM4MjktMi44NTkgMy42MzAzIDAgLjIwMzUuMTg2OS40NzQyLjMwNjQuNTg3NS40Mjk2LS40OTM0LjkzNDMtLjk5NjQxIDEuMzM1LTEuNDQ5NDguMDY3NC0uMDAxOTEuMDExNi4xMDk0My4xNTIyLjEwOTQzaDEuMDA5NWMuMTQwNiAwLS4wMjg5LS4xMTEzNC4xMTE3LS4xMTEzNGguOTcyOWMuMTQwNiAwIC40NTQ3LS41NTg2Ni41OTUzLS41NTg2Ni44MTg3IDAgMS4xODY3IDEuNzE2MjUgMS42MDI4IDIuMzIyOTUuMDIxMi40Mzk2LjA3OSAxLjMwNzQuMDUwMSAxLjQ0NzV2MS41NzA0Yy0uMjQ4NS40MTY2LS4zOTg4IDIuMzExNC0xLjQ1NjQgMi4zMTE0LS43MzU5IDAtMS4yMTk1LS41NTg3LTEuOTYxMi0uNTU4Ny0uMTQwNiAwLS4zMTQuMTU1NS0uNDIxOS4zMTQ5di44NzkyYzAgLjExOTEuNDU2Ni45MzExLjUyNzkgMS4wNDA2LjEwNC0uMzU5LS4zNDQ5LTEuMzQuNDUyNy0xLjM0LjM5MyAwIDEuMDMwNyAxLjE1NTcgMS4xNDgyIDEuMzE2OWwtMi4yMjUxIDEuMjUxN2gyLjU2NDJjLjYyMjItLjMxMjkuODYzLS4zOTE2Ljk4NjMtLjM5MTYiLz48cGF0aCBkPSJtMjYuOTM4MiAxMy4wNjhjLjIwNjEtLjIxNjkuODA5MS0uMjcwNy43OTk1LS42NTI3LS4xNzM0LS4xNzY2LS40MDY1LS40MDUxLS42NDE2LS41MjAzLS44MjQ1LjQwMTMtMS4zMzMxLjUzOTUtMi4xNTc2LjgxMDIuMzU2NC4xMzgyLjczNTkuMzYyOC44NzY1LjM2MjhoMS4xMjUxeiIvPjxwYXRoIGQ9Im01MC4xNTgyIDEzLjA2MDNjLS4wMzg1LS4xNzA5LS4wNzEzLS4zMzYtLjEwNi0uNDkzNC0uMDMwOC0uMDE1NC0uMDc3LS4wNDIyLS4xMzQ4LS4wODQ1LS4xMDc5LS4wODA2LS40MDY1LS4zNjQ3LS41MTQ0LS42MjAxLS4xMDc5LS4yNTUzLS4yODUxLS42MjAxLS44OTItMS4yMjY3LS42MDg3LS42MDY3LTEuMTM4NS0uNzU2NC0xLjU4MzUtLjg1MDQ3LS40NDUxLS4wOTQwNy0uODYzMS0uMTA3NTEtMS4xODg3LS4wOTQwN3MtLjY3NjIuMDI2ODgtMS4wNjczLjE3NDdjLS4zOTMuMTQ3ODQtLjk5Ni40NTMwNC0xLjIyNTIuNzIzNzQtLjIyOTMuMjY4OC0uMzgzNC41NTY4LS4zNDI5Ljg2NTguMDQwNC4zMDkxLjMzNzEuNDQ1NC43MTY2LjQxODUuMzc5NS0uMDI2OC43MzAyLS40NTg4IDEuMDE1My0uNjQ2OS4yODMyLS4xODgyLjkxODktLjI5NTcgMS41NjgyLS4yODIyLjY0OTIuMDEzNCAxLjAxMzMuMDgwNiAxLjY2MjUuNDg1Ny42NDkyLjQwMzEgMS4yMDQxIDEuMzA3NCAxLjg1MzMgMS45Mjc0LjI2NTkuMjUzNS41Mzc1LjQwMTMuODAzMy40ODM4LS4xODMtLjE0Mi0uNDgxNi0uNDIyMy0uNTYyNS0uNzgxMyIvPjxwYXRoIGQ9Im00MS43OTczIDExLjc4MTdjLS4wMDc4LS4wNzMtLjAxNzQtLjE1NTUtLjAxNzQtLjI0OTYtLjU0NTIuMjM2MS0xLjg4Ni41ODU1LTIuMjk2NC43NjIyLS4zMDA1LjEyODYtLjQ0NS4xMzI0LS41OTMzLjI4NDFsLS4wMzQ3LjEyMjljLS4wNDA1LjE0NzggMCAuNDQzNCAwIC40NDM0LjAxMzUuMjI4NS40MDY1IDEuMDY3NCAxLjA5NDIgMS4xMTkzLjcxNjcuMDUzNyAxLjEzNjctLjIxNTEgMS41MDI3LS40MTg2LjM2Ni0uMjAxNS45MTg5LS42MDY2Ljg5Mi0uNzQxLS4wMjctLjEzNDQtLjIwMjMtLjI5NTYtLjMxMjEtLjUxMDctLjEwNzktLjIxNS0uMjAwNC0uNTA4Ny0uMjM1LS44MDgyIi8+PHBhdGggZD0ibTM1LjAyMTggMTcuNzQwN3YtLjE5NzdoLS4yMDQyYy0uMzI5NC4zMTg3LS42OTc0IDEuMjkwMS0xLjM5ODYgMS42NDkxLS4xNjM4LjA4MjUtLjM0NjguMTMyNC0uNTUxLjEzMjQtLjE2MTggMC0uMjk4Ni0uMDYxNC0uNDI3Ny0uMTMyNC0uMTkwNy0uMTAzNy0uMzY2LS4yMjY2LS41OTMzLS4xOTk3LS4wNjE3LjA1OTUtLjEzODcuMTI2Ny0uMjE3Ny4xOTc3LS4yMjM1LjE5Mi0uNDY4Mi4zOTU1LS40NjgyLjQ5NzMgMCAuMzk3NC44Njg5LjM2MjggMS4wOTI0LjM2MjguNzYwOSAwIDEuMzQ0Ni0uMzQ5NCAxLjgxNjYtLjg1ODEuMzc5Ni0uNDEwOS42ODc4LS45MjczLjk1MTctMS40NDk1Ii8+PC9nPjxwYXRoIGQ9Im0zOS40ODczIDEyLjI3N2MuNDEyMy0uMTc2NiAxLjc1MzEtLjUyNiAyLjMwMDMtLjc2MjIgMCAuMDk0MS4wMDc3LjE3ODYuMDE3My4yNTE1LjAzNDcuMjk5NS4xMjcyLjU5MzIuMjM1LjgxMDIuMTA3OS4yMTY5LjI4NTIuMzc4Mi4zMTIxLjUxMjUuMDI3LjEzNDQtLjUyNzguNTM5NS0uODkxOS43NDMtLjM2NjEuMjAxNi0uNzg2LjQ3MjMtMS41MDI3LjQxODUtLjY4OTctLjA1MTgtMS4wODI3LS44OTA4LTEuMDk2Mi0xLjExOTIgMCAwLS4wNDA0LS4yOTU3IDAtLjQ0NTRsLjAzNDctLjEyMjljLjE0ODMtLjE0OTcuMjkyOC0uMTU1NS41OTM0LS4yODQxem0xMC40NDM1LjE5Yy4wNTc4LjA0MjMuMTA0MS4wNjkxLjEzNDkuMDg0NS4wMzY2LjE1NzQuMDY3NC4zMjI1LjEwNi40OTM0LjA4MDkuMzYwOS4zNzc1LjYzOTMuNTYyNS43ODEzLS4yNjU5LS4wODI1LS41Mzc1LS4yMzAzLS44MDM0LS40ODM3LS42NDkyLS42MjAxLTEuMjA0LTEuNTI0NC0xLjg1NTItMS45Mjk0LS42NDkyLS40MDMyLTEuMDE1Mi0uNDcyMy0xLjY2NDUtLjQ4NTctLjY0OTItLjAxMzUtMS4yODQ5LjA5NC0xLjU3LjI4MjItLjI4NTIuMTg4MS0uNjM1OC42MjAxLTEuMDE1My42NDY5LS4zNzk1LjAyNjktLjY3NjItLjEwOTQtLjcxNjctLjQxODUtLjA0MDQtLjMwOTEuMTEzNy0uNTk3LjM0My0uODY3Ny4yMjkyLS4yNjg4LjgzNDEtLjU3NTk1IDEuMjI3MS0uNzIzNzdzLjc0MzctLjE2MTI2IDEuMDY5Mi0uMTc0N2MuMzI1Ni0uMDEzNDQuNzQzNyAwIDEuMTg4Ny4wOTQwNy40NDY5LjA5NDA3Ljk3NjcuMjQzOCAxLjU4NTUuODUwNS42MDg3LjYwNjYuNzg0MS45NzE0Ljg5MzkgMS4yMjY3LjEwNzkuMjU3My40MDY1LjUzOTUuNTE0My42MjAxem0tMzguOTM4MiAzNC4yMzc0Yy0uMjA2MS0uMTI4Ni0uMzEyMS0uMTc0Ny0uMzc5NS0uMTkzOS4wMTU0LS4wMTU0LjAxOTMtLjAzMjYuMDYxNi0uMDM2NXYtMi41NjI5Yy4wMDM5LS4xNDAxLS4xMDc4LjA0MjMtLjEwNzgtLjA5Nzl2LTEuMjc4NmMtLjExNTYtLjIzMDMtLjI4NzEtLjUxNjQtLjUwMjktLjczMzMtLjQzNTM1IDEuMDQ0My0xLjQwNDM3LTIuODE2My0xLjQwNDM3LTMuMTIzNXYtLjY5MTFjMC0uMTQwMi0uMTExNzQuMDQyMi0uMTExNzQtLjA5Nzl2LS43NDExYzAtLjE0MDEtLjExMTczLjA0MjMtLjExMTczLS4wOTc5di0yLjg4NTRjMC0uNDc0Mi4xOTI2NS0xLjU1ODkuMzU2NC0xLjkwMDZ2LS43NTgzYy4xMTU1OS0uMTcyOC4xODY4Ny0uMzA5MS4zNDY3Ny0uNTE0NS4xMzg3LS4xNzg1LjMxNDAxLS40OTUzLjQ3Nzc3LS42MjM5di4xNjdjMS41NjA1IDEuNzA2NyAxLjc5MTYgNC4wOTEgMi4zMTU2IDYuMzU4My4xODMxLjEyNjcgMi4zMzY5IDEuOTY5NyAyLjMzNjkgMi42MjYzdjEuMDE5NGMwIC42Mjk3LS42NzI0IDEuNzgxNS0uNjcyNCAyLjY3NjEgMCAuMTQwMi4wNTU5LjUwNDkuMDczMi43MTguMzI5NS4zMDkxLjY2ODUuNjIyIDEuMDY5Mi43NDExLjM3MTguMTExMy44NTU0LS4wNzY4IDEuMjM0OS4wMzQ1LjIzMTIuMDY5MS40Mjk2LjUzMTguNDI5Ni43OTF2MS4zNTUzYzAgLjE3NjctLjQ2MjMgMS4zMzA0LS41ODk1IDEuNjgzNy0uNDg1NS4wNTk1LS43MjI0LS4wNTc2LTEuNjEyNS0uMjkzNy0uODktLjIzNjItLjg5LS4zNTUyLTEuNjYyNS0uNjUwOC0uNzcyNS0uMjk1Ny0xLjA2OTItLjU5MTMtMS41NDMxLS44ODd6bTI2LjA1NzctMjYuMTEyOWMuNDY0My44MDI1IDEuMDE5MSAyLjk5ODcgMS4xODg3IDMuMzM4NWwuMDY1NS4xMjY3Yy4wNDI0IDEuNTYyNy0uOTA1NSAyLjY1ODktMS4zMDYyIDMuOTgzNi0uMTUyMi0uMDA1OC0uMzQ4Ny4wNDk5LS40ODc0LjA0OTktLjE0NjQgMC0uNTMzNi0uMDQyMi0uNTMzNi0uMzYyOCAwLS4xNDAyLjYyMjItLjk4NDkuNzYyOS0xLjUyNDMuMTMyOS0uNTE2NS4xODg4LTEuMDQyNS4zMDI0LTEuNTQ3NC4wODQ4LTIuMTI3MSAwLTIuMTc3LjAwNzctMi4yMjMxLjA5MDYtLjA0OC4xMDQxLS4yNC4xMDQxLS4zODAxcy0uMDEzNS0uMzMyMS0uMTA0MS0uMzgwMWMtLjAwOTYtLjA0NDIuMDcxMy0uMDk0MS0uMDAxOS0xLjA4MDl6bS4xMDIxIDI2LjY2NThjLjExOTUuMTY4OS4wOTA2LjIxNS4xMzg3LjQ1MzEuMDU5OC4yOTU2LS4wNTk3LjY1MDgtLjQxNjEuOTQ2NC0uMzU2NC4yOTU3LS45NDk3LjQxNDctMS45NTkyLjU5MTMtLjkyNjcuMTYzMi0xLjU1MjguMTc2Ni0xLjk3MDguMTc2Ni4wOTI0LS4wMjY4LjE4MTEtLjA0NjEuMjI5Mi0uMDY1Mi0uNjU1LS4xMzI1LTIuODA0OS0xLjYzNTctMi44MDQ5LTIuMjM2NiAwLTIuMjc4OCAxLjA3ODgtMi42MzAxIDEuNDg3Mi01LjA4MzZ2LTEuODQ4N2MtLjExMTctLjc1ODMtLjI3OTMtMS40Mzk5LS43MDEyLTIuMDExOS4xNTc5LS4yNTczLjcyMDUtLjYwNjcuOTIyOC0uNzgxNC44MDcyLS42OTg4IDMuMDAzNC0yLjgxNjMgMy4wMDM0LTMuNjk3NXYtLjkzNjhjMC0uMTQwMi4zOTEtLjk0ODQuNTQ5LTEuMzgwNC4xNTIyLjAwMzkuMzQxLS4wMDM4LjQyNzctLjEwNzUuMjA0Mi40ODc2LjcwNyAxLjI3ODYuNzA3IDEuNDE4N3YuNzQxMWMwIC40NTUtLjUwNDcgMS4zMDczLS41MDQ3IDEuNjQxNCAwIC4xNDAxLjIyMzQuNjcuMjIzNC44MTAxIDAgLjExOTEtMS43OTU1IDEuODM3My0xLjc5NTUgMi42MjgyIDAgLjIxNjkuMjI1NC42ODU0LjIyOTMuODg3di44NjU4Yy4wODA5LjAwNzcuMTA3OS4wNDAzLjEwNzkuMDQwMy0uMDQ4Mi4wMzI2LS4xMTE4LS4wNTk1LS4xMTE4LjA3ODdzLjExMTguMjI0Ni4xMTE4LjM2MjhjMCAuMTM4My0uMDU0LjMyMjYtLjEwNzkuNDYyNy4wODA5LjAxMzQuMTA3OS4wOTYuMTA5OC4xNDIxLS4wNTAxLjA0Ni0uMTEzNy4wNjcyLS4xMTE3LjEzMjQuMDk2My4xMDc1LjEwOTguMzA1My4xMDk4LjMyNDUgMCAuMTQ1OSAwIC4zOTM1LS4wMDU4LjQ0MTUtLjE3NTMuOTI5Mi0uMjE3Ny41NTY4LS4yMTc3LjY2ODF2LjkwODFjMCAuNDQ3My0uMTU2IDEuMjU1NS0uMzkzIDEuNjE4My40MjM4LjMyNDUuODc4NS43NTA3IDEuMTk0NCAxLjAyNTJoLjI1NDNjLjAwNzctLjA3ODcuMDM2Ni0uMTA1Ni4wODA5LS4xMDk0LjMyNzUuMzMwMi44NTE1Ljk1MjIuOTkyMi45NTIyLjEyNTIgMCAuMTM4Ny0uMDQ0Mi4xOTY1LS4wNTk1bC4wMjMxLS4wMDM5em0tMi4xMzA3LTI5LjcyNTl2LjE5NzdjLS41OTUzIDEuMTcxMS0xLjM5ODYgMi4zMTE1LTIuNzcyMiAyLjMxMTUtLjIyNTQgMC0xLjA5NDIuMDM0NS0xLjA5NDItLjM2MjkgMC0uMTQwMS40NTY1LS40NjY1LjY4OTYtLjY5NjkuMzc5Ni0uMDQ0MS42MjIzLjMzMjIgMS4wMjExLjMzMjIgMS4wODA3IDAgMS41NDUtMS4zOSAxLjk1MTUtMS43ODM1aC4yMDQyem0tNS42NDI3IDcuMzczOWMuNTcwMy42MjM5IDIuNDQ4NiAyLjk3NTYgMi40NDg2IDMuMzI1MSAwIC4xNDAxLS4xMTc1LjM1MTMtLjIyNTQuNTAxLjA0ODIuMDM4NC4xMDQuMDk0MS4xNDI2LjE0MjEuMTUwMi0uMTA3NS41MDI4LS4yODAzLjY0MzQtLjI4MDMuMTQwNyAwIC4zMzcyLjE2Ny40NzU5LjE2Ny44Mjg0IDAgMS4yNjE4LTEuNzgxNSAxLjI3MTQtMi4zMTMzdi0xLjI2MzJjLjU1MS40NTg4LjcyMDYgMS40MDMzLjg4ODIgMi4wODY4LjE0NjQuNTkzMi4wNTc4LjcwNjQuMDU3OC44NDQ3IDAgMi4xNjU1LTIuMzQ2NSA2LjYzODYtNC4yOTAzIDYuNzgyNWgtLjM2NDFjLjY1My0uNjIgMS44NDk0LTIuNTI2NCAxLjg0OTQtMy42MjQ1IDAtLjE0MDEtLjA1NTktLjQxODUtLjA1NC0uNjMxNi0uMDUtLjA0NjEuMDI1MS0uMDM4NC0uMTEzNi0uMDM4NC0uMzUwNiAwLTEuMTk2NCAxLjYwNjktMS40Nzc2IDIuMDY3Ni0uMTg2OS0uMDU1Ny0uMjkwOS0uMTA5NC0uNDI5Ny0uMTA5NC0uNDkxMiAwLTEuNDQ0OC45NzUyLTEuNjA0NyAxLjE0OC0uNjA4OC4yNDc3LTEuMjUyMi41MTgzLTEuODM5OC44MDQ0aC0xLjE0ODJjLS4wMDc3LS4wNzg3LS4wOTI1LS4xMDc1LS4xNzM0LS4xMjEgMS44MDktMi45ODMzIDMuNTM3MS01Ljg4MDIgMy45NDM1LTkuNDg3NXptLTYuNTUzOS0yMS45MTQzYy0xLjAyMjkgMC0xLjk1NTQuMDkwMjMtMi43MjAyLjYxNjI0LjE4ODgtLjM3MDUxIDEuMTQyNC0xLjQ4Mzk5IDEuODYyOS0xLjg1MDY2Ljc0OTQtLjM4MjA0IDEuNDA2NC0uNjgzNDUgMi41MzkxLTEuMDAyMTI5LjY2NjYtLjE4ODEzOSAxLjMzOS0uMzA5MDg1IDEuNzgwMS0uMzc2Mjc3di4wODYzOWMuNjg1OS4xNDk3NDMgMS4zOTY3LjIxNTAxNSAxLjk0MzkuNjIwMDg2LjQ5MTIuMzYyODQuMzg1MiAxLjI0OTc4LjY2NjUgMS43MjM5Ny4xNDA3LjIzODA1LjIxMzkgMS41MjIzOC45NzEgMS41MjIzOC4yMjU0IDAgLjMwODItLjI4MDI5Ljc4Ni0uMjgwMjkuODYzIDAgMS44NTEzLjk0NjQ2IDEuOTE0OSAxLjcyNzgxaC43Mzc5Yy4xNTk5LjE2NTEuMjcxNi4zODc3OS40MzUzLjU0NTIxdi4xOTc3NGMtLjMxOTguMTAxNzUtLjY3NjIuMzI0NDQtLjgxNjguMzI0NDRzLS41ODk1LS4yODAyOC0uNzI4Mi0uMjgwMjhjLS4xODMgMC0xLjY2NjQgMS4wNTAxMi0yLjA5OTkgMS4yNDAxN3YuMTkzOWMuMzUyNi40MzM4Ny42My44NTYyMiAxLjA4MDggMS4yNDc4NmgxLjA0OGMuMTQwNiAwLS4wMjg5LjExMzI3LjExMTcuMTExMzVoLjcxMDljLjEyMTQtLjExOTAzLjI2OTctLjE2NzAyLjQxMDMtLjE2NzAyLjE0MDcgMCAuMDYzNi0uMDA3NjguMTEzNy4wMzgzOS0uMDAxOS4xMDE3NS4wNTQuMjEzMS4wNTQuMzUzMjQgMCAuMzgzOTYtMS4yOTg1LjQ2NjQ4LTEuNjI2LjcwMDY4LjQxNDIuMjMyMy45OTc5Ljk1NjEgMS4zNzU1IDEuMjg4MiAxLjE2NTUuMTkwMSAxLjM2NCAxLjMwNTUgMi4wODI1IDIuMTQ2My4xMjkxLjIxMzEuMjc1NS40NDM1LjM1MDcuNzQzLjExOTQuNDcyMi0uMDU5OCAxLjAwNTktLjA1OTggMS4wMDU5bC4wMTE2IDEuNDIwNy4zMjE3LS4xODI0LS4wOTYzLjA2MzRjLS41OTM0LjM3NjItLjU0OS4xMTcxLS41ODE4LjM3ODItLjEwNzkuMDc2Ny0uMTg2OS4xNTM1LS4yNjIuMTktLjAxNzMuMDA3Ny0uMDM0Ny4wMTM1LS4wNTIuMDE3My0uMDgyOS0uMDc0OS0uOTYxMy0uOTIzNC0uOTYxMy0xLjE0NjEgMC0uNTAzLjI4MTItMS4wMDYuMjgxMi0xLjUwOSAwLS4xNDAxLS4wMDE5LS4yOTE4LS4wNzEyLS40MTY2LS40MTA0LjA1MTktLjU0NTItLjUwODctLjc4OTktLjY3aC0uMTk2NWMtLjA1NzguNjQzMi0xLjMzNTEgMS4xNjkyLTEuODg4IDEuMTY5Mi0uMTQwNiAwLS4yNzkzLS4xMTE0LS40MTk5LS4xMTE0LS41NjA3IDAtLjY3MjQuNTI0MS0uNjcyNCAxLjA2MTcgMCAuNDM5Ni44NDE5LjgxMDEuODQxOSAxLjIwMTggMCAuMjMwMy0uOTk2IDIuMDQwNy0xLjM4MTMgMi4wNDA3aC0xLjE2MzZjLS41MzM2IDAtMy4yOTA1IDEuNDc4Mi0zLjU5NDggMS42Nzc5LS4wMzg2LS4wNDgtLjA1OTgtLjExMTQtLjEyMzMtLjExMTQtMS4wOTQzLjcwMjctMi41MTQxIDEuMzE1MS0zLjc0MzIgMS44NDQ5LS4wNjE3LS4wOTQtLjIzMTItLjExNTEtLjI3OTMtLjM5MTYtLjE0MDcuMTE5LS4yNjIxLjE1OTMtLjI2MDEuMjk5NXYuNzQ0OWMuMTE5NC4xMjA5LjI4Ny4yODc5LjQwODQuNDA3aDEuMTk2M2MuNTY2NC0uMjgwMyAxLjUzNTUtLjg5MjcgMS42NzYxLS44OTI3LjM1MDYgMCAuNjAzIDEuNjc1OSAxLjI5NjUgMS42NzU5aDEuMTA3OGMuMjUyMyAwIC45ODgyLjMzNi45ODgyLjY5MTF2MS4xMzI3YzAgLjA3NjgtLjQwMjYuODM5LS40ODc0IDEuMDAwMi0uMjAyMi4zOTE3LS40NjYyIDEuMDY3NC0uNDY2MiAxLjQ0NTZ2Ljg1MjRjMCAxLjYzNTctMS45MTY4IDMuMDMxMy0yLjYzNTQgNC4xNzc0djE0LjI5MDljMCAuMTQwMS4xMTE3LS4wNTU3LjExMTcuMDg0NSAwIC4xNDAxLS4xMTE3LS4wNDIzLS4xMTE3LjA5Nzl2Mi4zMTMzYy4yMTk2LjQzOTYgMS40NTgzIDEuMDM0OCAxLjQ1ODMgMS42NjQ1di42NzE5Yy0uMzA2My41OTUxLTEuMTE1NC43NTY0LTEuNjc2IDEuMzY0OS0uMzg1My40MTI4LTEuMDA1Ni4xNzY3LTEuNTIuNTYwNmguMzQyOWMtLjMzMzMuMDUzOC0uNTE4Mi4wNTE5LTEuMDM0NS0uMDA1Ny0uNTMzNy0uMDU5Ni0xLjQyMzctLjQxNDctMS45NTkzLS41OTEzLS41MzM2LS4xNzY3LTEuMTI3LS43Njk5LTEuMzY1OC0xLjI0MjEtLjIzNy0uNDc0Mi0uMjM3LTEuNDIwNy0uMDU5OC0xLjc3NTguMTc3My0uMzU1Mi41OTM0LTEuMDA2Ljc3MjYtMS40MTg3LjE3NzItLjQxNDcuMTE5NC0xLjY1NjguMTE5NC0xLjY1NjguNDMzNS0xLjIyNjggMS4xNjM2LTIuNDQwMSAxLjE2MzYtMy45MDF2LTEuNzU0N2MwLS4xNDAxLjExMTctLjA3NDkuMTExNy0uMDc0OS0uNDYyMy0xLjQ3ODItMi4xMzA3LTQuMzE5NS0yLjEzMDctNi40MDgyIDAtMS4yNzI4LjczMDItMS45NTYyLjczMDItMi40MzI0IDAtLjEwNTUtMS42MjYtMy4xMzExLTEuNjI2LTQuMDg3MnYtLjk5MjVjMC0uMzA3Mi44NjY5LTEuOTA0NCAxLjA2MzQtMi40MjA4LS4xMjUyLS4wNzExLS4xOTQ1LS4xMzA2LS4yNjItLjEyNjctLjQ2NjIuNTgxNy0xLjk3ODUgMi4zNTk0LTEuOTc4NSAzLjMxNzN2MS4xMzQ2Yy4xNDY0LjE2MzIuMjIzNS40Mzc3LjIyMzUuNzE2MSAwIC4zMjA2LS4wMDM4LjI3NDUtLjM4OTEuNDN2LjM1NzFjLjI3OTMuNjc1OC42NzIzIDEuMjkwMS45NDk3IDEuOTU0NC0uMTg4OC44MjM1LTEuMTQ0My41Mjk4LTEuNzEyNi43MTQxLS4xMzg3LjE1MTctLjIwMjMuNzU2NC0uNTU0OS43NjQxLS4zNDQ4LS4xMzgyLS45MzA1LTEuNTg3Ny0uOTMwNS0yLjE1OTh2LTEuNzU0NmMwLS4xNDAyLjExMTguMDQyMi4xMTE4LS4wOTh2LS43MDY0YzAtMS4wNDgyIDEuMDY1My0yLjQwMzYgMS4wNjUzLTMuMzYxNiAwLS4xNDAxLS4xMTE3LS4yNTE1LS4xMTE3LS4zOTE2IDAtLjcyNzYgMi44MTI3LTQuNzIyNyA0LjAxODctNC43MjY1aC43MDdjLjA0NjIuMDk3OS4wOTgyLjE5NzcuMTA1OS4zMzIxaC4yMDIzYy45MjA5LTEuMDY1NSAxLjc0OTMtMi40MDc0IDIuNjcyMS0zLjUxNy4xMDU5LjgyOTMtLjEzMy44Mzg5LS4xMzMgMS4xNzQ5IDAgLjM3NjMuMzE5OC41MjYuNjcyNC43ODMzbDQuNTQ0Ni0yLjUzOGMtLjExNzUtLjE2MzItLjc1NzEtMS4zMTg5LTEuMTUwMS0xLjMxODktLjc5OTUgMC0uMzQ4Ny45ODI5LS40NTQ3IDEuMzQxOS0uMDcxMy0uMTA5NC0uNTI3OS0uOTIzNC0uNTI3OS0xLjA0MjR2LS44NzkzYy4xMDc5LS4xNTkzLjI4MTMtLjMxNDguNDIxOS0uMzE0OC43NDM3IDAgMS4yMjcyLjU1ODcgMS45NjMxLjU1ODcgMS4wNTk2IDAgMS4yMDk5LTEuODk0OSAxLjQ1ODQtMi4zMTM0di0xLjU3MjNjLjAyODktLjE0MDEtLjAyNy0xLjAwNzktLjA1MDEtMS40NDc1LS40MTYxLS42MDg2LS43ODQxLTIuMzI0ODUtMS42MDQ4LTIuMzI0ODUtLjE0MDYgMC0uNDU2NS41NTg2Ni0uNTk1My41NTg2NmgtLjk3NDhjLS4xNDA2IDAgLjAyODkuMTExMzQtLjExMTcuMTExMzRoLTEuMDA5NWMtLjE0MDYgMC0uMDg0Ny0uMTExMzQtLjE1MjItLjEwOTQyLS40MDI2LjQ1NDk4LS45MDczLjk1Nzk3LTEuMzM3IDEuNDUxMzctLjExOTQtLjExMTQtLjMwNjMtLjM4NC0uMzA2My0uNTg3NSAwLTEuMjkxOTggMi44NjA5LTIuODQzMTcgMi44NjA5LTMuNjM0MTIgMC0xLjc4OTIzLS44NDc3LTMuNjA1MzQtMi45NDU2LTMuNjA1MzR6bTEyLjU3ODEgMTQuMTYwM2MtLjEwOTguMDcyOS0uMTg2OS4xNTM2LS4yNjIuMTkwMS4wNzUxLS4wMzQ2LjE1NDEtLjExMzMuMjYyLS4xOTAxem0tNy42NzEzLTQuNzUxNWMuMDA5Ni4zODAyLS41OTM0LjQzNTgtLjc5OTUuNjUyOGgtMS4xMjUxYy0uMTQwNiAwLS41MjAxLS4yMjQ3LS44NzY1LS4zNjI5LjgyNjQtLjI3MDcgMS4zMzMxLS40MDg5IDIuMTU5Ni0uODEwMS4yMzY5LjExNTIuNDY4MS4zNDM2LjY0MzQuNTIwMnoiIHN0cm9rZT0iI2ZlZmVmZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjMuODYiIHN0cm9rZS13aWR0aD0iLjM5Ii8+PHBhdGggZD0ibTguODE1NzEgMzEuNTAzNXYuNzU2NGMtLjE2Mzc1LjM0MzctLjM1NjQgMS40MjQ1LS4zNTY0IDEuODk4N3YyLjg4MzVjMCAuMTQwMS4xMTE3NC0uMDQyMi4xMTE3NC4wOTc5di43NDExYzAgLjE0MDEuMTExNzQtLjA0MjMuMTExNzQuMDk3OXYuNjkxMWMwIC4zMDcxLjk2OTAyIDQuMTY0IDEuNDAyNTEgMy4xMjE1LjIxNTcuMjE4OS4zODcyLjUwMy41MDI4LjczMzR2MS4yNzY3YzAgLjE0MDEuMTExNy0uMDQyMy4xMDc5LjA5Nzl2Mi41NjA5Yy0uMDgwOS4wMDc3LS4wMjMyLjA2MzQtLjE2MzguMDYzNC0uMzA4MiAwLTEuMzkyODQtMS4zNzA3LTEuNDU0NDgtMS42ODk0LS4wNTIwMi0uMDQ5OS4wMjUwNC0uMDQwMy0uMTE1NTktLjA0MDMtLjIxNzcgMC0yLjYzNzM3IDEuNjAzLTMuMzQ0MzkgMS45MzEzLS42NDM0NS4yOTk1LTEuNDM1MjQuMzU1MS0yLjExMzM2LjY5M2gtMS4wMDc1NmMtLjc0MTcgMC0yLjAzNjI5OC0xLjE4ODMtMi4xNjM0NDYtMS40ODQuMDYzNTc0LS4wNzEuMTExNzM2LS4yMTg4LjExOTQ0Mi0uMzU1MWguNDA0NTY0Yy4xNDA2MzMtLjAwMzkuNTQ3MTIuMzg3OC42ODU4My4zODc4aC45OTQwN2MuNzIyNDMgMCA0LjUwNDEzLTMuNzk5MyA1LjI0OTY5LTQuMjgxMS0uMjMxMTgtLjc5MjktLjI3MzU2LTEuMjc2Ny0uMzkzMDEtMS44Mjk2di0uOTY1NmMwLS4xNDAyLS4xMTE3My4wNDIyLS4xMTE3My0uMDk4IDAtLjE0MDEuMTExNzMgMCAuMTExNzMtLjE0MDFzLS4xMTE3My4wODQ1LS4xMTE3My0uMDU1N3YtMi4yMTkyYzAtLjE0MDIuMDYzNTctLjAwNTguMTEzNjYtLjA1Mzh2LTEuMTEzNWMwLTEuMDQ4MiAxLjA1MTg2LTMuNTY1IDEuNDE5ODItMy43MDMyIiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTE4MC41MzcgMzguNDMwMmgtMTEuOTYxYy4wOTQgMy4yMDk5IDEuMzEgNS42ODA3IDMuNTg1IDUuNjgwNyAxLjI5NiAwIDIuMDkyLS45ODExIDIuNTk5LTIuNjk5M2g1LjI1OWMtLjk4MSA1LjQyNTMtNC4yNTYgNy43NzUyLTcuOTIyIDcuNzc1Mi01LjM0MiAwLTguOTc3LTQuNjExNC04Ljk3Ny0xMi40NzY3IDAtNy4xODc3IDQuMDE1LTEyLjM0MDMgOC44NS0xMi4zNDAzIDUuODggMCA4LjgxOCA2LjEwNDkgOC41NjUgMTQuMDYwNG0tMTEuODI0LTQuNDI1MWg2LjI5NWMtLjA4OC0yLjYyMjQtMS4zMTQtNC43OTE3LTMuMDE1LTQuNzkxNy0xLjc4OSAwLTIuOTg0IDEuOTQ0Ny0zLjI4MiA0Ljc5MTd6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTE0OC45NzIgMzguNDMwMmgtMTEuOTYyYy4wOTUgMy4yMDk5IDEuMzEgNS42ODA3IDMuNTg1IDUuNjgwNyAxLjI5NyAwIDIuMDkzLS45ODExIDIuNTk5LTIuNjk5M2g1LjI1OWMtLjk3OCA1LjQyNTMtNC4yNTUgNy43NzUyLTcuOTIxIDcuNzc1Mi01LjM0MiAwLTguOTc4LTQuNjExNC04Ljk3OC0xMi40NzY3IDAtNy4xODc3IDQuMDE1LTEyLjM0MDMgOC44NTEtMTIuMzQwMyA1Ljg3OSAwIDguODE3IDYuMTA0OSA4LjU2NSAxNC4wNjA0bS0xMS44MjctNC40MjUxaDYuMjk2Yy0uMDg5LTIuNjIyNC0xLjMxNC00Ljc5MTctMy4wMTUtNC43OTE3LTEuNzkgMC0yLjk4NCAxLjk0NDctMy4yODMgNC43OTE3eiIgZmlsbD0iIzJiMmEyOSIvPjxwYXRoIGQ9Im0xOTEuNjY3IDI0Ljk1NzF2NC45OTcyYy0yLjI5MS4yNzQ1LTMuOTg4IDEuNTcyMy00LjU2IDMuMzc1LS4xNTYuMjQzOC0uMjcgMS4zMTg5LS4yNzQgMS43NDEybC0uMDEgMTMuOTQ3MmgtNS4wNTVjLS4wMDctLjA2NTMuMDE0LTIzLjc2ODguMDE0LTIzLjc2ODhoNC45NDl2Mi4yNXMuNjE4LS43OTEuNzc0LS45OTgzYy43MDItLjkzNDkgMi4zOTEtMS41NTUgMy4wNTItMS41NDU0LjE0Ni4wMDE5Ljc1MSAwIDEuMTEyIDAiIGZpbGw9IiMyYjJhMjkiLz48cGF0aCBkPSJtMTA0LjA0NCAyNS4yNDg5Yy0uOTQgMi41NjEtNC4yMDM1IDExLjEyOS00LjIwMzUgMTEuMTI5bDQuNTExNSAxMi42Mzk4aC01LjU2MTVjLS45NzQ4LTIuNTAzNC0yLjY5MzItOC45MTkzLTIuNjkzMi04LjkxOTMtLjA0NjIuMTAzNy0yLjY0NTEgOC45MTkzLTIuNjQ1MSA4LjkxOTNoLTUuNDk0M2w0LjQ3MTQtMTIuNTg2MS00LjIxNTItMTEuMTgyN2g1LjUwNzhzMi4wNjcyIDYuMjA2NiAyLjM4NSA2Ljk1NzNsMi4zNzU0LTYuOTU3M3M1LjQ3ODctLjAxMzQgNS41NjE3IDB6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTgwLjg4NTggMjQuNjA3N2MyLjczNTYuNjQxMiA1LjQxMTUgMi42NjA4IDUuODcxOSA1LjczNDQgMCAwLS4xMzEgMTEuMzE3MS4yMjkzIDE3LjA0OTZsLjE4ODggMS42MjZoLTUuMTE2OGMtLjEzMS0uODI5My0uNDMxNS0xLjc3MTktLjc2NjctMS43NTA4LS4yMzEyLjAxMzQtMS4yNjM4Ljk1MDMtMS41ODM2IDEuMTM4NC0xLjQ0ODcgMS4xNDA0LTQuMjMwNi44MjE3LTQuNjE5Ny43MzkxLTIuNjc0LS42NTI3LTQuMTU3NC0yLjgzMzYtNC42NDA5LTUuMjgzMiAwIDAtLjE0MDctLjk2OTUtLjE1OC0xLjYyOC0uMDI4OS0xLjEwNTguMTk2NS0yLjMxMzMuNDc5Ny0yLjg4NTQuNTI3OS0xLjA3MzIgMS4zMDYyLTEuOTc1NSAyLjMyMTQtMi43NjI2IDEuMDUzOC0uODI1NSAxLjU4NzQtLjk4ODcgMi41Nzk2LTEuNDUxMyAxLjMxMzktLjUzMTggNS4yMjA4LTEuMzA5MyA1LjYzNjktMi45Mjc3IDAgMCAuMjIxNS0uNDQzNS4xMTE3LTEuMzA1NC0uMTA3OS0uODQ2Ny0xLjAxNzItMi4xNTQtMi41OTY5LTEuOTczNi0xLjE1Mi4xMzI1LTEuNjcwMi43MjM4LTEuODkxOCAxLjA0MDUtLjQ0ODkuNTk3MS0uNTk3MiAxLjk4NTEtLjQ2NjIgMi4yNjE1bC01LjIyMDgtLjI2NjhjLS4wMDU4LS44MTk4LjE5ODQtMS44MDA4LjE5ODQtMS44MDA4Ljc1NTItMi42MTQ3IDMuMzg2OC01LjI0ODYgNi41MzA4LTUuNjIxMSAwIDAgMS4wNzg5LS4wNTc2IDEuNTA4NS0uMDM2NS40Mjc3LjAyMTIgMS40MDQ0LjA5OTkgMS40MDQ0LjA5OTltLjAyNyAxMy4xNjc3Yy0uMjY0IDAtMi42ODc1LjU2NjQtNC40MjkgMi4xMDIyLTEuNzQ3NCAyLjA3OTEtLjkzODIgMy4zMDAxLS40NjgyIDMuOTcyLjQ1ODUuNTc0IDEuMTYzNi42NjYyIDEuNTg5NC43ODcxbC42NDczLjAyODhjMS42NjY0IDAgMy4wMDM0LTEuMjY4OSAzLjIxMzQtMi43MjAzbC4wMjEyLTQuMjAyNGMtLjQxMjMtLjE0MjEtLjI3NTUuMDM0Ni0uNTc0MS4wMzQ2eiIgZmlsbD0iIzJiMmEyOSIvPjxwYXRoIGQ9Im0xMDUuMjgxIDE2LjkwNTZoNy41MTFzNC4xODEgMTYuNjIzNCA1LjIzMSAyMS4zMzY1bDUuMTA5LTIxLjMxNzMgNy40OS0uMDE5MnYzMi4xMTQxaC01LjIyN3MuMDA0LTE5LjAyMzEuMDA4LTE5LjE4NjNjLS4wNTItLjA0OTktNC42NTggMTguNTQ3LTQuODk1IDE5LjE4NjNoLTQuNTkzYy0xLjkwMy02LjEzOTQtNS4zODQtMTkuMDQwNC01LjM4NC0xOS4wNDA0bC4wMDUgMTkuMDQwNGgtNS4yMzhsLS4wMTMtMzIuMTE0MXoiIGZpbGw9IiNlMzFlMjQiLz48cGF0aCBkPSJtNDQuMDE4NCAxNi45MDU2aDcuNTExNHM0LjE4MDUgMTYuNjIzNCA1LjIzMDQgMjEuMzM2NWw1LjEwOTEtMjEuMzE3MyA3LjQ5MDItLjAxOTJ2MzIuMTE0MWgtNS4yMjg1cy4wMDM4LTE5LjAyMzEuMDA1OC0xOS4xODYzYy0uMDUyLS4wNDk5LTQuNjU4MyAxOC41NDctNC44OTUyIDE5LjE4NjNoLTQuNTkyOGMtMS45MDM0LTYuMTM5NC01LjM4NDUtMTkuMDQwNC01LjM4NDUtMTkuMDQwNGwuMDA1NyAxOS4wNDA0aC01LjIzODF6IiBmaWxsPSIjZTMxZTI0Ii8+PHBhdGggZD0ibTE1OS4wMjQgMjUuMjQ4OWg1LjQyNWwtNS4zOCAyNS41NDQ2Yy0uODcxIDMuNzg3Ny0xLjgzOCA0Ljc4MjItNC4yMzUgNS4yMDY1aC01LjE2OXYtNC45NDM1aDIuNzAzYy45NzMtLjAwMzggMS45NjMtLjc5MjkgMS42NTEtMi4yODQ1LS4xODMtLjg2OTctNi4wNjItMjMuNTIzMS02LjA2Mi0yMy41MjMxaDUuMzc4bDIuODg0IDEzLjI4NDl6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTUwLjA5NDYgMTIuNTg2cy0uMDA5Ni0uNTEyNS0uMjIzNC0uODg4OGMtLjIxMzktLjM3NjMtLjQ2NDMtLjkwMjMtMS4wNDgxLTEuNDg0LS41ODM3LS41ODE3LTEuMjAyMS0xLjA0MjQ1LTEuNjgzNy0xLjIyMjkxcy0xLjAyMy0uMzI4MjgtMS42ODc2LS4zMDMzM2MtLjY2NDYuMDI0OTYtMS41MDI3LjE5Nzc0LTEuOTkzOS41MDEwNy0uNTI0LjMyNjM2LS44NDc3LjU3Nzg1LTEuMjQwNyAxLjEzMDc3LS40ODc0LjY4MzQtLjQ1NDYgMS4xNjM0LS40MjE5IDEuNDYyOC4wMzQ3LjI5OTUuMTI3Mi41OTMzLjIzNS44MDgzLjEwNzkuMjE1LjI4NTIuMzc2My4zMTIxLjUxMDYuMDI3LjEzNDQtLjUyNTkuNTM5NS0uODkxOS43NDExLS4zNjYxLjIwMTYtLjc4NDEuNDcyMi0xLjUwMjcuNDE4NS0uNjg5Ny0uMDUxOC0xLjA4MDgtLjg5MDgtMS4wOTQyLTEuMTE5MiAwIDAtLjA0MDUtLjI5NTcgMC0uNDQzNS4wNDA0LS4xNDc4LjA2NzQtLjIyODUuMDY3NC0uMjI4NXMtLjIyOTMuMDgwNy0uMzI1Ni4yMDE2Yy0uMDk0NC4xMjEtLjI0MjcuNDE2Ni0uMjQyNy42MjAxczAgLjI4NDEuMDEzNS40MTg1Yy4wMTM0LjEzNDQuMDgwOS4yMTUuMDQwNC4zNDk0LS4wNDI0LjE0NC0yLjY0ODkgMS40MTQ5LTIuNjQ4OSAxLjQxNDl2MS40MjgzczEuMDEzMy0uNTc5OCAxLjMxMTktLjcxNDJjLjI5ODYtLjEzNDMgMS4yNDQ1LS41OTMyIDEuNDQ2OC0uNjg3Mi4yMDIzLS4wOTQxLjQ3MzktLjIxNTEuNTU0OS0uMjE1MS4wODA5IDAgLjIxNTcuMDUzOC4zMjU1LjEyMS4xMDc5LjA2NzIuNDEwNC4yMDE2LjU5NTMuMTYxMy4yMzg5LS4wNTE5Ljg1NzMtLjI5NzYgMS4yNzU0LS41NTI5LjQxOC0uMjU1NCAxLjA2MzQtLjY0NyAxLjE4NDctLjc2OC4xMjE0LS4xMjA5LjIzMzEtLjE3MDguMzE0MS0uMjExMS4wODA5LS4wNDAzLjE0NDQtLjAxOTIuMjY1OC4wODgzcy40NjA1LjQzMTkuODY1LjQ5OTFjMCAwIC42OTE2LjEwNzUgMS4xMzY2LjAxMzUuNDQ1MS0uMDk0MS42MjIzLS4yMTUxLjg1MTYtLjMxMS4yMjkyLS4wOTQxLjI1NjItLjEzNDQuMzUyNS0uMTM0NHMuMTM0OS0uMDEzNS4xMDc5LjA4MDYtLjA0MDUuMTc0Ny4wNDA0LjM2NDhjLjA4MS4xOS41MTI1LjY4NzIgMS4wNTM4Ljk0MjYuNTQxNC4yNTUzLjkzNDQuNDA1IDEuMjQ0NS40NTg4LjMxMjEuMDUzOC42MzU4LjAyNjkuNjM1OC4wMjY5cy0uODExMS0uNTY2NC0xLjA4MDgtLjg4ODktLjUyNzgtLjYwNjYtLjU5NTMtLjgwODJjLS4wNjc0LS4yMDE2LS4wNDA0LS4zNjQ4LS4wNDA0LS4zNjQ4cy40NzM5LjQ1ODkuNzQzNi42NzM5LjcwOS41MDQ5IDEuMTYzNi42NDY5Yy41NjgzLjE3NjcgMS4wOTQzLjI3MDcgMS43MTY1LjE3NDcuNjIyMy0uMDk0IDEuMTU5OC0uMzkzNSAxLjUyNTgtLjg1NjIgMCAwIC4yMTk2LS4zNTcxLjI4Ny0uNTcyMS4wNjc1LS4yMTUuMTQ4NC0uNTI2LjE0ODQtLjUyNnMtLjE1MDMuMDgwNi0uMzY2MS4xNzQ3Yy0uMjE1Ny4wOTQxLS40ODU0LjE2MTMtMS4wMjY4LjIwMTYtLjU0MTMuMDQwMy0xLjIzMS4wNTM3LTEuODgwMi0uNTY2NC0uNjQ5My0uNjItMS4yMDQxLTEuNTI0My0xLjg1MzMtMS45Mjc0LS42NDkyLS40MDMyLTEuMDEzMy0uNDcwNC0xLjY2MjYtLjQ4NTctLjY0OTItLjAxMzUtMS4yODQ5LjA5NDEtMS41NjgxLjI4MjItLjI4NTIuMTg4MS0uNjM1OC42MjAxLTEuMDE1My42NDctLjM3OTUuMDI2OC0uNjc2Mi0uMTA5NS0uNzE2Ny0uNDE4Ni0uMDQwNC0uMzA5LjExMzctLjU5Ny4zNDMtLjg2NTguMjI5Mi0uMjcwNy44MzQxLS41NzU5IDEuMjI1Mi0uNzIzNzMuMzkzLS4xNDc4Mi43NDM2LS4xNjEyNiAxLjA2NzMtLjE3NDcuMzIzNi0uMDEzNDQuNzQxNyAwIDEuMTg4Ni4wOTQwNy40NDUuMDk0MDcuOTc2OC4yNDM4NiAxLjU4MzYuODUwNDYuNjA4OC42MDY3Ljc4NDEuOTY5NS44OTIgMS4yMjY3LjEwNzkuMjU1NC40MDY1LjUzOTUuNTE0My42MjAxLjEwNzkuMDgwNy4xNzczLjEwMzcuMTc3My4xMDM3IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTMxLjU1MDIuMDAwMDIyMDRjLjQ4OTQgMCAxLjgzMjEuNzY5ODMxOTYgMi4xMDc2Ljg5NDYxNzk2aC43MTY3Yy4xNDA2IDAgLjYxMDctLjIyMDc3NS45NTM2LS4zOTE2MzZoLjg5NThjMS41MiAwIDIuMjQ4MiA0LjM1NDA2NiAyLjI3NzEgNC40MzQ2OTZ2Ljk5NjM2YzAgLjE0MDE1LjExMTgtLjA0MjIzLjExMTguMDk3OTF2NC4zNzcxM2MwIC41NTA5LTEuMTkwNiAxLjcxMDUtMS42MjYgMS43MTA1LTEuMDM2NSAwLTEuNDQyOS0xLjY2ODMtMS41NDg5LTIuMTc4OTUtLjAyODkuMDQ3OTktLjAyMTIuMTQwMTUtLjAyMTIuODY1ODUgMCAuMDU1Ni0uMTExNy4wMzQ1LS4xMTE3LjE3NDd2MS40OTM2YzAgLjI1MTQuMTY3Ni43MjU2LjE1MDIgMS4yNjEzLS43MTg1LS44MzktLjkxNy0xLjk1NDQtMi4wODA2LTIuMTQ0NC0uMzc3Ni0uMzMyMi0uOTYxMy0xLjA1NC0xLjM3NTUtMS4yODgyLjMyNzUtLjIzNDIgMS42MjYtLjMxNDg2IDEuNjI2LS42OTg4MiAwLS4xNDAxNC0uMDU1OS0uMjUxNDktLjA1NC0uMzUzMjQtLjA1MDEtLjA0NjA3LjAyNTEtLjAzODM5LS4xMTM2LS4wMzgzOXMtLjI4OS4wNDc5OS0uNDEwNC4xNjcwMmgtLjcxMDljLS4xNDA2IDAgLjAyODktLjEwOTQzLS4xMTE3LS4xMTEzNWgtMS4wNDhjLS40NDg5LS4zODk3MS0uNzI2My0uODEyMDYtMS4wNzg4LTEuMjQ1OTN2LS4xOTM5Yy40MzM0LS4xOTAwNiAxLjkxNDktMS4yNDAxOCAyLjA5NzktMS4yNDAxOC4xNDA2IDAgLjU4NzYuMjc4MzcuNzI4Mi4yNzgzNy4xNDA3IDAgLjQ5NTEtLjIyMjcuODE2OS0uMzIyNTN2LS4xOTc3M2MtLjE2MzgtLjE1NzQzLS4yNzU1LS4zODAxMi0uNDM1NC0uNTQ1MjJoLS43Mzc5Yy0uMDY1NS0uNzgxMzUtMS4wNTE4LTEuNzI1ODgtMS45MTQ5LTEuNzI1ODgtLjQ3NTggMC0uNTYwNi4yNzgzNi0uNzg0MS4yNzgzNi0uNzU3MSAwLS44MzAzLTEuMjg0MzMtLjk2OS0xLjUyMjM4LS4yODEzLS40NzQxOS0uMTc1My0xLjM1OTIxLS42NjQ2LTEuNzIzOTYtLjU0NzItLjQwNTA3OC0xLjI1OC0uNDcwMzUxLTEuOTQyLS42MjAwOTR2LS4yNjQ5MjljLjE5NjUuMDUxODM0LjQxMDQtLjAwMzg0IDEuNDE5OS0uMDAzODQuMDU1OCAwIC4xNDA2LS4wMjg3OTcuMTY3Ni0uMDg0NDcuMDI4OS4wNTU2NzMuMTExNy4wODQ0Ny4xNjk1LjA4NDQ3bDIuMDcyOS4wNTU2NzRjLjExMTcgMCAuMTM4Ny4xMTEzNDcuMjc5NC4xMTEzNDcuMzg1MyAwIC44MDUyLS4zOTE2MzUzIDEuMTQ4MS0uMzkxNjM1M20zLjcyNTkgOC40Nzk2NjczYy4wMjg5LjM4MjA0LjAyODkuNjAwODkuMDA1OC43NTY0bC4xMzY3LS41MDY4M2MtLjEzMjktLjA3MTAzLS4xMTU2LS4xNjEyNi0uMTQ0NS0uMjQ5NTd6IiBmaWxsPSIjMmIyYTI5Ii8+PHBhdGggZD0ibTM1LjA4MTQgMjguMTIwOWMwIDIuMTYzNi0yLjM0NDUgNi42MzI4LTQuMjg2NCA2Ljc3NjhoLS4zNjQxYy42NTMxLS42MTgxIDEuODQ3NS0yLjUyNDUgMS44NDc1LTMuNjIwNyAwLS4xNDAxLS4wNTU5LS40MTg1LS4wNTM5LS42MzE2LS4wNTAxLS4wNDYxLjAyNS0uMDM4NC0uMTEzNy0uMDM4NC0uMzUwNiAwLTEuMTk0NCAxLjYwNjktMS40NzU3IDIuMDY1Ny0uMTg2OS0uMDU1Ny0uMjkwOS0uMTA5NC0uNDI5Ni0uMTA5NC0uNDkxMyAwLTEuNDQyOS45NzUyLTEuNjAyOCAxLjE0NjEtLjYwODguMjQ3Ni0xLjI1MDMuNTE4My0xLjgzNzkuODAyNWgtMS4xNDgyYy0uMDA3Ny0uMDc4OC0uMDkyNS0uMTA3Ni0uMTczNC0uMTIxIDEuODA3MS0yLjk4MTQgMy41MzUxLTUuODc0NSAzLjkzOTctOS40Nzk5LjU2ODMuNjIyIDIuNDQ2NiAyLjk3MzggMi40NDY2IDMuMzIxMyAwIC4xNDAxLS4xMTc1LjM1MTMtLjIyMzQuNDk5MS4wNDgxLjAzODQuMTA0LjA5NDEuMTQyNS4xNDIxLjE1MDMtLjEwNzUuNTAwOS0uMjc4NC42NDE1LS4yNzg0LjE0MDcgMCAuMzM1My4xNjcuNDc1OS4xNjcuODI2NCAwIDEuMjYxOC0xLjc3OTYgMS4yNjk1LTIuMzExNHYtMS4yNjEzYy41NDkxLjQ1ODguNzE4NiAxLjQwMTQuODg4MiAyLjA4NDkuMTQ2NC41OTMyLjA1NzcuNzA0NS4wNTc3Ljg0NDdtLTUuMzk2MSAxNy40NTI3Yy0uNDY4MS0uNTM5NC0xLjU1MjctMS41MjgxLTEuNTUyNy0xLjY0NTIgMC0uNTcyMSAxLjI3NTMtMS42ODc1IDEuNTUyNy0xLjgxMDR2My40NTc1em0yLjE2MTYtMjYuNTc5M2MuMzc5NS0uMDQ0Mi42MjIyLjMzMjEgMS4wMjEuMzMyMSAxLjA3ODggMCAxLjU0MzEtMS4zODggMS45NDk2LTEuNzgxNmguMjA0MnYuMTk3OGMtLjU5MzMgMS4xNzEtMS4zOTY3IDIuMzA5NS0yLjc3MDMgMi4zMDk1LS4yMjM0IDAtMS4wOTIzLjAzNDUtMS4wOTIzLS4zNjI5IDAtLjE0MDEuNDU2Ni0uNDY2NS42ODc4LS42OTQ5em01LjQ3NTEgMTYuMjYyNHYtLjcyMThjLS4yMzg5LS4yNC0uMjc5NC0uNzc3NS0uMjc5NC0xLjA1MDEgMC0xLjI3MDkgMS45MDUzLTcuMTc2MiAxLjkwNTMtOC4wNzA4IDAtLjEzMjUtLjM4MTQtMS4zNDc3LS42NTY5LTEuNTYwOC4xMzg3IDEuNjc0MS0uODc2NiAyLjgwODctMS4yOTI3IDQuMTkwOS0uMTUyMi0uMDA1OC0uMzQ2OC4wNDk5LS40ODc0LjA0OTlzLS41MzE3LS4wNDIyLS41MzE3LS4zNjI4YzAtLjE0MDIuNjIyMy0uOTg0OS43NjI5LTEuNTIyNC4xMzI5LS41MTY0LjE4ODgtMS4wNDA1LjMwMjQtMS41NDU0LjA4NDgtMi4xMjUyIDAtMi4xNzUxLjAwNzctMi4yMjEyLjA5MDYtLjA0OC4xMDQxLS4yNC4xMDQxLS4zODAxIDAtLjE0MDItLjAxMzUtLjMzMjItLjEwNDEtLjM4MDItLjAwOTYtLjA0Ni4wNzUyLS4wOTU5LS4wMDk2LTEuMTYzMy0uNTI3OC0xLjEyMTItMS4wNTk2LTIuMjQwNC0xLjY0NzEtMy4zNzEyLS4xMzY4LjExOS0uMjI5My4yMjI3LS4zMjk1LjIyNjYtLjA1OTctLjA3NjgtLjkzNjItLjkyNTQtLjkzNjItMS4xNDgxIDAtLjUwMy4yODEyLTEuMDA1OS4yODEyLTEuNTA4OSAwLS4xNDAyLS4wMDM4LS4yOTE4LS4wNzEyLS40MTQ3LS40MDg1LjA1MzgtLjU0MzMtLjUwODctLjc4OC0uNjY4MWgtLjE5NjVjLS4wNTc4LjY0MzItMS4zMzMxIDEuMTY5Mi0xLjg4NiAxLjE2OTItLjE0MDcgMC0uMjc5NC0uMTExNC0uNDItLjExMTQtLjU2MDYgMC0uNjcyMy41MjQxLS42NzIzIDEuMDYxNyAwIC40Mzk2LjgzOTkuODEwMS44Mzk5IDEuMTk5OCAwIC4yMzA0LS45OTQxIDIuMDM4OC0xLjM4MTMgMi4wMzg4aC0xLjE2MzZjLS41MzE3IDAtMy4yODY2IDEuNDc4My0zLjU5MSAxLjY3Ni0uMDM4NS0uMDQ4LS4wNTk3LS4xMTEzLS4xMjMzLS4xMTEzLTEuMDkyMy43MDA3LTIuNTEwMiAxLjMxMzEtMy43MzkzIDEuODQyOS0uMDYxNi0uMDk0LS4yMzEyLS4xMTUxLS4yNzc0LS4zODk3LS4xNDA2LjExOTEtLjI2Mi4xNTk0LS4yNjAxLjI5OTV2Ljc0M2MuMTE5NS4xMjA5LjI4NzEuMjg3OS40MDg0LjQwN2gxLjE5NDVjLjU2NjQtLjI4MDMgMS41MzU0LS44OTI3IDEuNjc0MS0uODkyNy4zNTA2IDAgLjYwMyAxLjY3NTkgMS4yOTY1IDEuNjc1OWgxLjEwNzhjLjI1MjMgMCAuOTg4Mi4zMzQxLjk4ODIuNjkxMnYxLjEzMDdjMCAuMDc2OC0uNDAyNi44Mzg5LS40ODc0Ljk5ODMtLjIwMjIuMzkxNi0uNDY2MiAxLjA2NzQtLjQ2NjIgMS40NDM3di44NTIzYzAgMS42MzM4LTEuOTE0OSAzLjAyOTUtMi42MzM1IDQuMTczNnYxNC4yNzc1YzAgLjE0MDEuMTExOC0uMDU1Ny4xMTE4LjA4NDQgMCAuMTQwMi0uMTExOC0uMDQyMi0uMTExOC4wOTc5djIuMzA5NWMuMjE5Ni40Mzk3IDEuNDU2NCAxLjAzMjkgMS40NTY0IDEuNjYyNnYuNjdjLS4zMDQzLjU5NTEtMS4xMTM1Ljc1NDQtMS42NzQxIDEuMzYzLS4zODUzLjQxMjgtMS4wMDM3LjE3NjYtMS41Mi41NjA2aDIuMjE3NGMuNjkxNi0uMjA3NCAyLjQzMzItMS4xMDAxIDIuNDMzMi0yLjMwNzYgMC0uNjgzNC0xLjM2NC0yLjI3NjgtMS41NzAxLTIuNTY2Ny4yNTA0LS4yNDE5Ljk4MDYtLjUzMzcuOTgwNi0uNTMzNy4xNDA2IDAgLjExMTcuMTExMy4yNTIzLjExMTMuMTQwNyAwIC4xMTE4LS4xMTEzLjI1MjQtLjExMTNzMCAuMTExMy4xNDA2LjExMTNjLjE0MDcgMCAwLS4xMTEzLjE0MDctLjExMTMuMTQwNiAwIDAgLjExMTMuMTQwNi4xMTEzaDEuMDg2NWMuMTQwNyAwIC4xMTk1LjExMTQuMTc1NC4xMTE0LjU2MDYgMCAuNzI4Mi4wNTU2IDEuNDU2NC4wNTU2LjA1NTkgMCAuMDM0Ny4xMTE0LjE3NTMuMTExNGgxLjI3NTNjLjE0MDcgMCAuMTQ2NC4xMTEzLjI4NzEuMTExMy4xNDA2IDAgLjE0NjQtLjExMTMuMjg3LS4xMTMyaC44OTk3Yy4xMjcxLS4xMTE0LjQxNDItLjE1MzYuNTIyMS0uMTkzOS0uNjUzMS0uMTMyNS0yLjgwMzEtMS42MzM4LTIuODAzMS0yLjIzNDcgMC0yLjI3NDkgMS4wNzg5LTIuNjI4MSAxLjQ4NTQtNS4wNzk3di0xLjg0ODhjLS4xMTE4LS43NTYzLS4yNzk0LTEuNDM3OS0uNzAxMy0yLjAxLjE1OC0uMjU3Mi43MTg2LS42MDY2LjkyMjgtLjc3OTQuMzQ2OC0uMjk5NS45NDk4LS44NjM5IDEuNTI1OC0xLjQ3NjMuNzYyOS0uODEyMSAxLjQ3NTctMS43MTQ0IDEuNDc1Ny0yLjIxNTR2LS45MzVjMC0uMTQwMS4zOTExLS45NDY0LjU0OS0xLjM4MDMuMTUyMi4wMDU4LjM0MS0uMDAzOC40Mjc3LS4xMDc1LjIwNDIuNDg1Ny43MDUxIDEuMjc4Ni43MDUxIDEuNDE2OHYuNzM5MWMwIC40NTMxLS41MDQ3IDEuMzA1NS0uNTA0NyAxLjY0MTQgMCAuMTE1Mi4xNTIyLjQ5NzMuMjA0Mi43MDQ2LS4xODY5LjQyMjMtMS43NzQzIDEuOTg3LTEuNzc0MyAyLjcyOTkgMCAuMjE3LjIyMzQuNjgzNS4yMjczLjg4N3YuODYzOWMuMDgwOS4wMDc2LjEwNzkuMDQwMy4xMDc5LjA0MDMtLjA0ODIuMDMwNy0uMTExOC0uMDU5NS0uMTExOC4wNzg3cy4xMTE4LjIyMjcuMTExOC4zNjI4YzAgLjE0MDItLjA1NC4zMjI1LS4xMDc5LjQ2MDguMDgwOS4wMTM0LjEwNzkuMDk2LjEwOTguMTQyLS4wNTAxLjA0NjEtLjExMzcuMDY1My0uMTExNy4xMzI1LjA5NjMuMTA3NS4xMDk4LjMwMzMuMTA5OC4zMjQ0IDAgLjE0NTkgMCAuMzkzNi0uMDA1OC40NDE2LS4xNzUzLjkyOTItLjIxNzcuNTU2Ny0uMjE3Ny42Njgxdi45MDhjMCAuNDQ3My0uMTU2IDEuMjU1Ni0uMzkxMSAxLjYxNjUuNDIzOS4zMjQ0Ljg3ODUuNzQ4NyAxLjE5NDUgMS4wMjMyaC4yNTQzYy4wMDc3LS4wNzg3LjAzNjYtLjEwNTYuMDgwOS0uMTA5NC4zMjc1LjMyODMuODUxNS45NTIyLjk5MjEuOTUyMnMuMTQwNi0uMDU1Ny4yMTk2LS4wNjMzdi0uMzY0OGMtMS40NDI5LTIuMDE3Ny0xLjQ1MjUtLjc4NzEtMS40MjM3LTIuNzU2OHYtMS41ODc3Yy40Mi0yLjEzNDguNzI2My00LjI1NjEgMS43MDg4LTYuMTM5NHYtMS4wNDA1YzAtLjE0MDItLjExMTcuMDQyMi0uMTEzNi0uMDk3OXoiIGZpbGw9IiMyYjJhMjkiLz48cGF0aCBkPSJtMjIuODM0OCAzLjAxNTk5YzIuMDk0MSAwIDIuOTQxOCAxLjgxNjExIDIuOTQxOCAzLjYwMTUxIDAgLjc4OTAzLTIuODU4OSAyLjMzODI5LTIuODU4OSAzLjYzMDMgMCAuMjAzNS4xODY4LjQ3NDIuMzA2My41ODc1LjQyOTYtLjQ5MzQuOTM0My0uOTk2NDEgMS4zMzUtMS40NDk0OC4wNjc1LS4wMDE5Mi4wMTE2LjEwOTQzLjE1MjIuMTA5NDNoMS4wMDk1Yy4xNDA2IDAtLjAyODktLjExMTM1LjExMTctLjExMTM1aC45NzI5Yy4xNDA3IDAgLjQ1NDctLjU1ODY1LjU5NTMtLjU1ODY1LjgxODggMCAxLjE4NjcgMS43MTYyNSAxLjYwMjggMi4zMjI5NS4wMjEyLjQzOTYuMDc5IDEuMzA3NC4wNTAxIDEuNDQ3NXYxLjU3MDRjLS4yNDg1LjQxNjYtLjM5ODcgMi4zMTE0LTEuNDU2NCAyLjMxMTQtLjczNTkgMC0xLjIxOTUtLjU1ODctMS45NjEyLS41NTg3LS4xNDA2IDAtLjMxNC4xNTU1LS40MjE5LjMxNDl2Ljg3OTJjMCAuMTE5MS40NTY2LjkzMTEuNTI3OSAxLjA0MDYuMTA0LS4zNTktLjM0NDgtMS4zNC40NTI3LTEuMzQuMzkzIDAgMS4wMzA3IDEuMTU1NyAxLjE0ODIgMS4zMTY5bC00LjU0MDcgMi41MzYxYy0uMzUwNy0uMjU3My0uNjcwNC0uNDA1MS0uNjcwNC0uNzgxNCAwLS4zMzQuMjM4OC0uMzQ1Ni4xMzI5LTEuMTczLS45MjI4IDEuMTA3Ny0xLjc1MTIgMi40NDc3LTIuNjcwMSAzLjUxMzJoLS4yMDA0Yy0uMDA3Ny0uMTM0NC0uMDU5Ny0uMjMyMy0uMTA1OS0uMzMyMWgtLjcwNzFjLTEuMjA0LjAwMTktNC4wMTQ4IDMuOTk1MS00LjAxNDggNC43MjA3IDAgLjE0MDIuMTExOC4yNTE1LjExMTguMzkxNyAwIC45NTYtMS4wNjU0IDIuMzExNC0xLjA2NTQgMy4zNTc3di43MDQ1YzAgLjE0MDItLjExMTctLjA0MjItLjExMTcuMDk3OXYxLjc1MjhjMCAuNTcyMS41ODU2IDIuMDE5Ni45MzA1IDIuMTU3OC4zNTI1LS4wMDc3LjQxNjEtLjYxMjQuNTU0OC0uNzY0LjU2NjQtLjE4NDMgMS41MjE5LjEwNzUgMS43MTA3LS43MTQyLS4yNzkzLS42NjIzLS42NzA0LTEuMjc2Ny0uOTQ5Ny0xLjk1MjR2LS4zNTcxYy4zODUzLS4xNTU1LjM4OTEtLjEwOTQuMzg5MS0uNDMgMC0uMjc4NC0uMDc3LS41NTI5LS4yMjM1LS43MTYxdi0xLjEzNDZjMC0uOTU2MSAxLjUxMjMtMi43MzM4IDEuOTc2Ni0zLjMxMzUuMDY3NC0uMDAyLjEzNjguMDU1Ni4yNjIuMTI2Ny0uMTk2NS41MTY0LTEuMDYzNCAyLjExMTctMS4wNjM0IDIuNDE4OXYuOTkwNmMwIC45NTYgMS42MjYgMy45Nzk3IDEuNjI2IDQuMDgzNCAwIC40NzQyLS43MjgzIDEuMTU5NS0uNzI4MyAyLjQzMDQgMCAyLjA4NjggMS42NjY1IDQuOTI4MSAyLjEyODggNi40MDI1IDAgMC0uMTA5OC0uMDY1My0uMTA5OC4wNzQ4djEuNzUyOGMwIDEuNjEyNi0uODkgMi45MjU4LTEuMzExOSA0LjMxNTctLjA5MDYuMzA3MS0uNTE0NC40MzM4LS43MzAyLjU3NzgtLjM0ODctLjExMzItLjk5MjEtLjI3ODMtMS4xMzI4LS4yODQxaC0xLjAyNDhjLjA4MDktLjI0NzYuNjEyNi0xLjU1NjkuNjEyNi0xLjc0NTF2LTEuMzUzNGMwLS4yNTkyLS4xOTY1LS43MTk5LS40Mjc3LS43ODkxLS4zNzc2LS4xMTEzLS44NjExLjA3NjgtMS4yMzMtLjAzNDUtLjM5ODctLjExOS0uNzM5Ny0uNDMyLTEuMDY3Mi0uNzQxLS4wMTc0LS4yMTMxLS4wNzMyLS41Nzc5LS4wNzMyLS43MTggMC0uODk0Ny42NzIzLTIuMDQ0Ni42NzIzLTIuNjc0M3YtMS4wMTk0YzAtLjY1NjYtMi4xNTE5LTIuNDk3Ni0yLjMzNDktMi42MjI0LS41MjIxLTIuMjY1NC0uNzUzMy00LjY0NTktMi4zMTE3OS02LjM1MjZ2LS4xOTU4YzIuNzc0MTktMS4wNjM2IDMuOTAzMDktNC4wNzU3IDUuNTA3NzktNi4yOTY5Ljc4NjEtLjg3MzUgMS43MTY2LTIuMjA1OCAyLjc1NDktMi43OTkgMS41NTQ3LS44ODcgMi45OTk2LTIuNzUzIDQuMzQ0My00LjAxNjItLjM4MzQtLjk2NzYtLjc2NDgtMi4yNzQ5LTEuMzc1NS0zLjA5NDctLjAzNDcuMDQ4LS4wMjcuMTQwMi0uMDI3IDIuMjAzOS4wOTA1LjY5NjktLjY5MzYgMi4yMDc4LTEuNjI2IDIuMjA3OC0yLjU3NzYgMC00Ljc2NDItNy42NDQ2LTQuNzY0Mi05LjIxNDk3IDAtMi42ODc2OSA1LjQxNTQtMy4zODQ1NyA1LjM0MDItNS40NDI1OC44MTg4LS43NDg3MSAxLjg2ODctLjg2OTY2IDMuMDM4MS0uODY5NjZ6bTQuOTAyOSA5LjM5OTIxYy0uMTczMy0uMTc2Ni0uNDA2NC0uNDA1LS42NDE1LS41MjAyLS44MjQ1LjQwMTItMS4zMzMxLjUzOTQtMi4xNTc3LjgxMDEuMzU2NS4xMzgyLjczNi4zNjI5Ljg3NjYuMzYyOWgxLjEyNTFjLjIwNjEtLjIxNy44MDkxLS4yNzA3Ljc5OTUtLjY1Mjh6IiBmaWxsPSIjMmIyYTI5Ii8+PC9nPjwvc3ZnPg==",type:"image"},collapsedWelcomeText:"👋 \n Ciao, sono il tuo assistente AI",collapsedWelcomeTextHover:"Cliccami e lascia che ti consigli.",shortWelcomeText:"Ciao, sono il tuo assistente AI.",extendedWelcomeText:"Ciao, sono il tuo assistente AI. Più cose mi dirai su ciò che ti piace, più sarò in grado di aiutarti.",disclaimer:"Le risposte che riceverai sono create automaticamente elaborando sia le informazioni presenti sul nostro sito che altre informazioni presenti sul web. Controlla sempre la correttezza delle informazioni fornite.",layoutBuilder:[{icon:{id:"6560a04654a910c2150ab7a9",alt:"icon - Plugin",url:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAAAXNSR0IArs4c6QAAB5tJREFUeF7t3b9LHE0YB/CxOw6i5qpo7LRPExuLQBBUTBFLGy2MgZAUKWwSkjbERvwHxEJBLSwMgoiFioJNrjKtuSKEi9VBEI8rQnx5Ju+s697e3f6YH88zM9fo3t3OPvt8PzO7d811lcvlm1KpxAqFAvMPdzrQaDRYrVZjXZVK5Qb+GRoaYj09Pe50wOEz/f37N7u4uGAw8buq1epNsVjkT3gE9qsQ4UPW9Xr9H4C+vj4WfsGvBHZCiGb869evWwBwyh6BncG3yrYJgEdgJ4BWEzsWgEdgF4J2q3pLAB6BHQg6XdLbAvAIaCPoFD6cXUcAHgFNBEnCTwzAI6CFIGn4qQB4BDQQpAk/NQCPADeCtOFnAuAR4ESQJfzMADwCXAiyhp8LgEeAA0Ge8HMD8AjMIsgbvhQAHoEZBDLClwbAI9CLQFb4UgF4BHoQyAxfOgCPQC0C2eErAeARqEGgInxlADwCuQhUha8UgEcgB4HK8JUD8AjyIVAdvhYAHkE2BDrC1wbAI0iHQFf4WgF4BMkQ6AxfOwCPoD0C3eEbAeARxCMwEb4xAB7BXQSmwjcKwCP4h8Bk+MYBYGhAslszNe8yHT4KAK4iwBA+GgCuIcASPioAriDAFD46ALYjwBY+SgC2IsAYPloAtiHAGj5qALYgwBw+egDUEWAPnwQAqggohE8GADUEVMInBYAKAkrhkwOAHQG18EkCwIqAYvhkAWBDQDV80gCwIKAcPnkAphFQD98KAKYQ2BC+NQB0I7AlfKsA6EJgU/jWAVCNwLbwrQSgCoGN4VsLQDYCW8O3GoAsBDaHbz2AvAhsD98JAFkRuBC+MwDSInAlfKcAJEXgUvjOAeiEwLXwnQTQCoGL4TsLIIoAtl393eREvxoGDbLxIWY9nJurP5rtAVxccNseQF+fjZO85TmFr/n+EvD/z8e7IiDuhs/fBDqyArQL2kUETt0DJAk4yXtsWimdAZAm2DTvpY7BCQBZAs2yD0UM1gPIE2SefalgsBqAjABljIEZg7UAZAYncyxsGKwEoCIwFWNiwGAdAJVBqRzbFAarAOgISMcxdGKwBoDOYHQeSzUGKwCYCMTEMVVgIA/AZBAmjy0LA2kAGALAUEMeDGQBYGo8plrSYiAJAGPDMdaUBAM5AJgbjbm2VhhIAaDQYAo1hjGQAUCpsZRqJQGAUkPF7KJSM3oAVBoZd42lUDtqABQa2OlOG/s5oAWAvXGdgg+/jvlcUALA3LA0wVNAgA6AjeFjvjFEBcDm8LEiQAPAhfAxIkABwKXwsSEwDsDF8DEhMArA5fCxIDAGwId/+yHRZC+MADB5wlk/x6vez1RPtAMwdaKqA5QxvoneaAVg4gRlBKNzDN090gZA94npDE32sXT2SgsAnSckOwxT4+nqmXIAuk7EVFAqj6ujd0oB6DgBlQFgGFt1D5UBUF04hnB01aCyl0oAqCxYV9OxHUdVT6UDUFUotkBM1KOit1IBqCjQRKMxH1N2j6UBkF0Y5hBM1yaz11IAyCzIdHOpHF9Wz3MDkFUIlcZjqlNG73MBkFEApoZSrCVvBpkB5D0wxWZjrTlPFpkA5Dkg1iZSrytrJqkBZD0Q9QZTqD9LNqkAZDkAhcblqfHr16/s1atXbHd3l/X39/Oh4LmJiQlWq9X49szMDFtbWwsOs7i4yN6/f8+3nz59yr58+cLu3buXqIyrqyv2/Plz9vbtW/4XHtVqlT158oR9//6dbz9+/Jjt7Oywhw8fNtVTKpXY/v4+Gx4e5q8lBuDDb85HBH3//n12cnLCAYgwlpaWeEBie35+nr17946HvbCwwN8PocN7BgYG7gBpJUGEf3R0xAOGfcVzY2NjfHzYfvbsGR97Y2ODXV9fcxyiHsC3srIS1JsIgA+/ORIxi2F2n52dBQ2NC292dpY/DasA7HdwcBDM+uh2q/AFtkePHrEfP34Egca9H8bc29tjnz59Yn/+/GGAb2tri896GGd6ejrY7gjAhx8fyeHhIW8o/BUzWlwConuEAcStADB737x5Eyzp4pIQnq0ws+EBMzs8o1sBAGTr6+vs27dv7PXr12x5eZmPHwXXFoAPv/NlORxoHAAxc1dXV4OAw/cIYimHI4WX89HR0TszVVQSvcREK4xeciDD8/Nz9uHDB3Z6etp0P9ISgA+/c/jwjnYARBgjIyPBNT56DQ6vDjBeGMfnz5/5dT38aAdAABJ1wWoB442Pj7OPHz+yFy9esOPj4zsrViwAH36y8NsBiAs/esMmAg9fk+E5QPHz58/YTwetAMSFD2OJJR8uB5eXl+zBgwd8FRA3jU0AfPjJw28FILoMixGTAIAVZW5ujvX29rKXL18mWgHEuHGfJsLX/L9//waXg8nJST72HQA+/HThxwFoF4aYkeGPYeHZDvuKGzy4n4iuDLB/3ArQbsWI3oNsbm7y7y3g3gO+gwgAFItFZ39CPX3st3tE7wGiXwKJd4a/8IHAYEmGh3hehN/ufiEOQPRLIHG8wcHB4KMp1Dg1NcVfgi+Ctre3WXd3N//B7Hq9zroqlcoNfGvl6i9o5wFAdV+x2gOIrnK5fAP/FAoFqufj687QgUajwb+u/g+OEwLa2EhPHAAAAABJRU5ErkJggg==",type:"image"},title:"Pianifica",body:"Chiedi supporto per organizzare le tue attività.",id:"656095900d5d91982799c400",blockType:"card"},{icon:{id:"6560a04654a910c2150ab7a9",alt:"icon - Plugin",url:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAAAXNSR0IArs4c6QAAB5tJREFUeF7t3b9LHE0YB/CxOw6i5qpo7LRPExuLQBBUTBFLGy2MgZAUKWwSkjbERvwHxEJBLSwMgoiFioJNrjKtuSKEi9VBEI8rQnx5Ju+s697e3f6YH88zM9fo3t3OPvt8PzO7d811lcvlm1KpxAqFAvMPdzrQaDRYrVZjXZVK5Qb+GRoaYj09Pe50wOEz/f37N7u4uGAw8buq1epNsVjkT3gE9qsQ4UPW9Xr9H4C+vj4WfsGvBHZCiGb869evWwBwyh6BncG3yrYJgEdgJ4BWEzsWgEdgF4J2q3pLAB6BHQg6XdLbAvAIaCPoFD6cXUcAHgFNBEnCTwzAI6CFIGn4qQB4BDQQpAk/NQCPADeCtOFnAuAR4ESQJfzMADwCXAiyhp8LgEeAA0Ge8HMD8AjMIsgbvhQAHoEZBDLClwbAI9CLQFb4UgF4BHoQyAxfOgCPQC0C2eErAeARqEGgInxlADwCuQhUha8UgEcgB4HK8JUD8AjyIVAdvhYAHkE2BDrC1wbAI0iHQFf4WgF4BMkQ6AxfOwCPoD0C3eEbAeARxCMwEb4xAB7BXQSmwjcKwCP4h8Bk+MYBYGhAslszNe8yHT4KAK4iwBA+GgCuIcASPioAriDAFD46ALYjwBY+SgC2IsAYPloAtiHAGj5qALYgwBw+egDUEWAPnwQAqggohE8GADUEVMInBYAKAkrhkwOAHQG18EkCwIqAYvhkAWBDQDV80gCwIKAcPnkAphFQD98KAKYQ2BC+NQB0I7AlfKsA6EJgU/jWAVCNwLbwrQSgCoGN4VsLQDYCW8O3GoAsBDaHbz2AvAhsD98JAFkRuBC+MwDSInAlfKcAJEXgUvjOAeiEwLXwnQTQCoGL4TsLIIoAtl393eREvxoGDbLxIWY9nJurP5rtAVxccNseQF+fjZO85TmFr/n+EvD/z8e7IiDuhs/fBDqyArQL2kUETt0DJAk4yXtsWimdAZAm2DTvpY7BCQBZAs2yD0UM1gPIE2SefalgsBqAjABljIEZg7UAZAYncyxsGKwEoCIwFWNiwGAdAJVBqRzbFAarAOgISMcxdGKwBoDOYHQeSzUGKwCYCMTEMVVgIA/AZBAmjy0LA2kAGALAUEMeDGQBYGo8plrSYiAJAGPDMdaUBAM5AJgbjbm2VhhIAaDQYAo1hjGQAUCpsZRqJQGAUkPF7KJSM3oAVBoZd42lUDtqABQa2OlOG/s5oAWAvXGdgg+/jvlcUALA3LA0wVNAgA6AjeFjvjFEBcDm8LEiQAPAhfAxIkABwKXwsSEwDsDF8DEhMArA5fCxIDAGwId/+yHRZC+MADB5wlk/x6vez1RPtAMwdaKqA5QxvoneaAVg4gRlBKNzDN090gZA94npDE32sXT2SgsAnSckOwxT4+nqmXIAuk7EVFAqj6ujd0oB6DgBlQFgGFt1D5UBUF04hnB01aCyl0oAqCxYV9OxHUdVT6UDUFUotkBM1KOit1IBqCjQRKMxH1N2j6UBkF0Y5hBM1yaz11IAyCzIdHOpHF9Wz3MDkFUIlcZjqlNG73MBkFEApoZSrCVvBpkB5D0wxWZjrTlPFpkA5Dkg1iZSrytrJqkBZD0Q9QZTqD9LNqkAZDkAhcblqfHr16/s1atXbHd3l/X39/Oh4LmJiQlWq9X49szMDFtbWwsOs7i4yN6/f8+3nz59yr58+cLu3buXqIyrqyv2/Plz9vbtW/4XHtVqlT158oR9//6dbz9+/Jjt7Oywhw8fNtVTKpXY/v4+Gx4e5q8lBuDDb85HBH3//n12cnLCAYgwlpaWeEBie35+nr17946HvbCwwN8PocN7BgYG7gBpJUGEf3R0xAOGfcVzY2NjfHzYfvbsGR97Y2ODXV9fcxyiHsC3srIS1JsIgA+/ORIxi2F2n52dBQ2NC292dpY/DasA7HdwcBDM+uh2q/AFtkePHrEfP34Egca9H8bc29tjnz59Yn/+/GGAb2tri896GGd6ejrY7gjAhx8fyeHhIW8o/BUzWlwConuEAcStADB737x5Eyzp4pIQnq0ws+EBMzs8o1sBAGTr6+vs27dv7PXr12x5eZmPHwXXFoAPv/NlORxoHAAxc1dXV4OAw/cIYimHI4WX89HR0TszVVQSvcREK4xeciDD8/Nz9uHDB3Z6etp0P9ISgA+/c/jwjnYARBgjIyPBNT56DQ6vDjBeGMfnz5/5dT38aAdAABJ1wWoB442Pj7OPHz+yFy9esOPj4zsrViwAH36y8NsBiAs/esMmAg9fk+E5QPHz58/YTwetAMSFD2OJJR8uB5eXl+zBgwd8FRA3jU0AfPjJw28FILoMixGTAIAVZW5ujvX29rKXL18mWgHEuHGfJsLX/L9//waXg8nJST72HQA+/HThxwFoF4aYkeGPYeHZDvuKGzy4n4iuDLB/3ArQbsWI3oNsbm7y7y3g3gO+gwgAFItFZ39CPX3st3tE7wGiXwKJd4a/8IHAYEmGh3hehN/ufiEOQPRLIHG8wcHB4KMp1Dg1NcVfgi+Ctre3WXd3N//B7Hq9zroqlcoNfGvl6i9o5wFAdV+x2gOIrnK5fAP/FAoFqufj687QgUajwb+u/g+OEwLa2EhPHAAAAABJRU5ErkJggg==",type:"image"},title:"Esplora",body:"Chiedi informazioni sui temi disponibili.",id:"65609fe4152d35137e46286d",blockType:"card"},{icon:{id:"6560a04654a910c2150ab7a9",alt:"icon - Plugin",url:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIAAAACACAYAAADDPmHLAAAAAXNSR0IArs4c6QAAB5tJREFUeF7t3b9LHE0YB/CxOw6i5qpo7LRPExuLQBBUTBFLGy2MgZAUKWwSkjbERvwHxEJBLSwMgoiFioJNrjKtuSKEi9VBEI8rQnx5Ju+s697e3f6YH88zM9fo3t3OPvt8PzO7d811lcvlm1KpxAqFAvMPdzrQaDRYrVZjXZVK5Qb+GRoaYj09Pe50wOEz/f37N7u4uGAw8buq1epNsVjkT3gE9qsQ4UPW9Xr9H4C+vj4WfsGvBHZCiGb869evWwBwyh6BncG3yrYJgEdgJ4BWEzsWgEdgF4J2q3pLAB6BHQg6XdLbAvAIaCPoFD6cXUcAHgFNBEnCTwzAI6CFIGn4qQB4BDQQpAk/NQCPADeCtOFnAuAR4ESQJfzMADwCXAiyhp8LgEeAA0Ge8HMD8AjMIsgbvhQAHoEZBDLClwbAI9CLQFb4UgF4BHoQyAxfOgCPQC0C2eErAeARqEGgInxlADwCuQhUha8UgEcgB4HK8JUD8AjyIVAdvhYAHkE2BDrC1wbAI0iHQFf4WgF4BMkQ6AxfOwCPoD0C3eEbAeARxCMwEb4xAB7BXQSmwjcKwCP4h8Bk+MYBYGhAslszNe8yHT4KAK4iwBA+GgCuIcASPioAriDAFD46ALYjwBY+SgC2IsAYPloAtiHAGj5qALYgwBw+egDUEWAPnwQAqggohE8GADUEVMInBYAKAkrhkwOAHQG18EkCwIqAYvhkAWBDQDV80gCwIKAcPnkAphFQD98KAKYQ2BC+NQB0I7AlfKsA6EJgU/jWAVCNwLbwrQSgCoGN4VsLQDYCW8O3GoAsBDaHbz2AvAhsD98JAFkRuBC+MwDSInAlfKcAJEXgUvjOAeiEwLXwnQTQCoGL4TsLIIoAtl393eREvxoGDbLxIWY9nJurP5rtAVxccNseQF+fjZO85TmFr/n+EvD/z8e7IiDuhs/fBDqyArQL2kUETt0DJAk4yXtsWimdAZAm2DTvpY7BCQBZAs2yD0UM1gPIE2SefalgsBqAjABljIEZg7UAZAYncyxsGKwEoCIwFWNiwGAdAJVBqRzbFAarAOgISMcxdGKwBoDOYHQeSzUGKwCYCMTEMVVgIA/AZBAmjy0LA2kAGALAUEMeDGQBYGo8plrSYiAJAGPDMdaUBAM5AJgbjbm2VhhIAaDQYAo1hjGQAUCpsZRqJQGAUkPF7KJSM3oAVBoZd42lUDtqABQa2OlOG/s5oAWAvXGdgg+/jvlcUALA3LA0wVNAgA6AjeFjvjFEBcDm8LEiQAPAhfAxIkABwKXwsSEwDsDF8DEhMArA5fCxIDAGwId/+yHRZC+MADB5wlk/x6vez1RPtAMwdaKqA5QxvoneaAVg4gRlBKNzDN090gZA94npDE32sXT2SgsAnSckOwxT4+nqmXIAuk7EVFAqj6ujd0oB6DgBlQFgGFt1D5UBUF04hnB01aCyl0oAqCxYV9OxHUdVT6UDUFUotkBM1KOit1IBqCjQRKMxH1N2j6UBkF0Y5hBM1yaz11IAyCzIdHOpHF9Wz3MDkFUIlcZjqlNG73MBkFEApoZSrCVvBpkB5D0wxWZjrTlPFpkA5Dkg1iZSrytrJqkBZD0Q9QZTqD9LNqkAZDkAhcblqfHr16/s1atXbHd3l/X39/Oh4LmJiQlWq9X49szMDFtbWwsOs7i4yN6/f8+3nz59yr58+cLu3buXqIyrqyv2/Plz9vbtW/4XHtVqlT158oR9//6dbz9+/Jjt7Oywhw8fNtVTKpXY/v4+Gx4e5q8lBuDDb85HBH3//n12cnLCAYgwlpaWeEBie35+nr17946HvbCwwN8PocN7BgYG7gBpJUGEf3R0xAOGfcVzY2NjfHzYfvbsGR97Y2ODXV9fcxyiHsC3srIS1JsIgA+/ORIxi2F2n52dBQ2NC292dpY/DasA7HdwcBDM+uh2q/AFtkePHrEfP34Egca9H8bc29tjnz59Yn/+/GGAb2tri896GGd6ejrY7gjAhx8fyeHhIW8o/BUzWlwConuEAcStADB737x5Eyzp4pIQnq0ws+EBMzs8o1sBAGTr6+vs27dv7PXr12x5eZmPHwXXFoAPv/NlORxoHAAxc1dXV4OAw/cIYimHI4WX89HR0TszVVQSvcREK4xeciDD8/Nz9uHDB3Z6etp0P9ISgA+/c/jwjnYARBgjIyPBNT56DQ6vDjBeGMfnz5/5dT38aAdAABJ1wWoB442Pj7OPHz+yFy9esOPj4zsrViwAH36y8NsBiAs/esMmAg9fk+E5QPHz58/YTwetAMSFD2OJJR8uB5eXl+zBgwd8FRA3jU0AfPjJw28FILoMixGTAIAVZW5ujvX29rKXL18mWgHEuHGfJsLX/L9//waXg8nJST72HQA+/HThxwFoF4aYkeGPYeHZDvuKGzy4n4iuDLB/3ArQbsWI3oNsbm7y7y3g3gO+gwgAFItFZ39CPX3st3tE7wGiXwKJd4a/8IHAYEmGh3hehN/ufiEOQPRLIHG8wcHB4KMp1Dg1NcVfgi+Ctre3WXd3N//B7Hq9zroqlcoNfGvl6i9o5wFAdV+x2gOIrnK5fAP/FAoFqufj687QgUajwb+u/g+OEwLa2EhPHAAAAABJRU5ErkJggg==",type:"image"},title:"Scopri",body:"Chiedi dettagli sul progetto, come funziona e le realtà coinvolte.",id:"65609fe8152d35137e46286e",blockType:"card"}],sampleInputTexts:[{sampleInputText:"Mostrami gli ultimi prodotti"},{sampleInputText:"Mostra le ultime news"},{sampleInputText:"Mostra i prossimi eventi"}],enableFeedback:!0,customTheme:{mode:"default",scale:1,font:{source:'<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900">',primary:"'Roboto', Arial, Helvetica, sans-serif",secondary:"'Roboto', Arial, Helvetica, sans-serif"},typography:{display1:{fontWeight:"500",lineHeight:"1.1",letterSpacing:"0.02em",fontSizeMin:"32",fontSizeMax:"72"},display2:{fontWeight:"500",lineHeight:"1.1",letterSpacing:"0.01em",fontSizeMin:"32",fontSizeMax:"50"},display3:{fontWeight:"500",lineHeight:"1.1",letterSpacing:"0.02em",fontSizeMin:"24",fontSizeMax:"50"},display4:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"24",fontSizeMax:"48"},display5:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"22",fontSizeMax:"24"},display6:{fontWeight:"500",lineHeight:"1.1",letterSpacing:"0.02em",fontSizeMin:"16",fontSizeMax:"22"},heading1:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.02em",fontSizeMin:"18",fontSizeMax:"32"},heading2:{fontWeight:"500",lineHeight:"1.3",letterSpacing:"0.03em",fontSizeMin:"16",fontSizeMax:"24"},body1:{fontWeight:"normal",lineHeight:"1.4",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"16"},body2:{fontWeight:"500",lineHeight:"1.4",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"16"},body3:{fontWeight:"normal",lineHeight:"1.4",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"18"},body4:{fontWeight:"500",lineHeight:"1.5",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"16"},body5:{fontWeight:"normal",lineHeight:"1.5",letterSpacing:"0",fontSizeMin:"14",fontSizeMax:"16"},label1:{fontWeight:"500",lineHeight:"1",letterSpacing:"0.08em",fontSizeMin:"14",fontSizeMax:"16"},cta1:{fontWeight:"500",lineHeight:"1",letterSpacing:"0.08em",fontSizeMin:"14",fontSizeMax:"16"},cta2:{fontWeight:"700",lineHeight:"1.2",letterSpacing:"0.02em",fontSizeMin:"14",fontSizeMax:"16"},cta3:{fontWeight:"500",lineHeight:"1",letterSpacing:"0.06em",fontSizeMin:"14",fontSizeMax:"16"},cta4:{fontWeight:"500",lineHeight:"1.2",letterSpacing:"0.02em",fontSizeMin:"14",fontSizeMax:"16"}},color:{neutral:{100:"#FFFFFF",200:"#CCCCCC",300:"#B3B3B3",400:"#808080",500:"#666666",600:"#4C4C4C",700:"#333333",800:"#2D2D2D",900:"#000000"},base:{100:"#E00019",200:"#E00019",300:"#E00019",400:"#E00019",500:"#E00019",600:"#E00019",700:"#E00019",800:"#E00019",900:"#E00019"},blob:{100:"var(--llm-color-base-900)",200:"var(--llm-color-base-900)",300:"var(--llm-color-base-900)",400:"var(--llm-color-base-900)",500:"var(--llm-color-base-900)",600:"var(--llm-color-base-900)"},background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",outline:"var(--llm-color-neutral-900)",title:{background:"var(--llm-color-background)",foreground:"var(--llm-color-foreground)"},primary:{background:"var(--llm-color-base-500)",foreground:"var(--llm-color-neutral-800)"},secondary:{background:"var(--llm-color-base-500)",foreground:"var(--llm-color-neutral-100)"},accent:{background:"transparent",foreground:"var(--llm-color-base-500)"},success:"#7dc18a",warning:"#ff9800",error:"#ff4848"},border:"1px solid var(--llm-color-neutral-300)",trigger:{position:"bottom",size:"60px",background:"var(--llm-color-neutral-900)",foreground:"var(--llm-color-base-500)",boxShadow:"var(--llm-shadow-md)"},chat:{top:"auto",right:"20px",bottom:"20px",left:"auto",maxWidth:"Min(calc(100vw - 40px), 1024px)",maxHeight:"calc(100vh - 100px)",borderRadius:"8px",boxShadow:"var(--llm-shadow-sm)"},main:{background:"var(--llm-color-background)",foreground:"var(--llm-color-foreground)"},canvas:{opacity:1,enabled:!1},popup:{maxWidth:"210px",background:"var(--llm-color-title-background)",foreground:"var(--llm-color-title-foreground)",border:"none"},triggerCta:{background:"var(--llm-color-neutral-900)",foreground:"var(--llm-color-base-500)"},hint:{fontFamily:"var(--llm-font-primary)",background:"var(--llm-color-background)",foreground:"var(--llm-color-foreground)",border:"1px solid var(--llm-color-neutral-300)",borderRadius:"12px",boxShadow:"none"},hintTitle:{flexDirection:"row",color:"var(--llm-color-foreground)"},hintIcon:{width:"18px",height:"18px",color:"var(--llm-color-foreground)"},pill:{padding:"8px",fontFamily:"var(--llm-font-primary)",background:"var(--llm-color-title-background)",foreground:"var(--llm-color-title-foreground)",border:"1px solid var(--llm-color-neutral-300)",borderRadius:"5px"},input:{fontFamily:"var(--llm-font-secondary)",background:"var(--llm-color-background)",foreground:"var(--llm-color-foreground)",accent:"var(--llm-color-foreground)",borderRadius:"8px"},promptSubmit:{background:"var(--llm-color-neutral-900)",foreground:"var(--llm-color-neutral-100)"},scrollProposition:{size:"32px",borderRadius:"16px",background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",boxShadow:"0 6px 8px -4px rgba(0, 0, 0, 0.5)"},checkbox:{border:"1px solid var(--llm-color-neutral-300)"},user:{background:"linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%)",foreground:"var(--llm-color-title-foreground)",border:"1px solid var(--llm-color-neutral-300)"},assistant:{background:"none",foreground:"var(--llm-color-foreground)",border:"none"},markdown:{marginTop:"0.5rem",marginBottom:"1rem",marginLeft:"1rem",accent:"var(--llm-color-base-500)",border:"1px solid var(--llm-color-neutral-300)"},event:{background:"var(--llm-color-base-100)",foreground:"var(--llm-color-foreground)"},card:{background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",aspectRatio:"240 / 165"},cardVideo:{aspectRatio:"16 / 9"},product:{border:"var(--llm-color-neutral-200)",background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)",available:"var(--llm-color-success)",soldout:"var(--llm-color-error)",aspectRatio:"1 / 1"},productLabel:{background:"var(--llm-color-neutral-100)",foreground:"var(--llm-color-neutral-900)"},shadow:{xs:"0 2px 20px -2px rgba(0, 0, 0, 0.1)",sm:"0 4px 30px -4px rgba(0, 0, 0, 0.2)",md:"0 6px 40px -6px rgba(0, 0, 0, 0.4)",lg:"0 8px 50px -8px rgba(0, 0, 0, 0.6)",xl:"0 10px 60px -10px rgba(0, 0, 0, 0.8)"},headerCta:{fontSize:"18px",padding:"0.5em 1em",borderRadius:"2em",background:"var(--llm-color-primary-background)",foreground:"var(--llm-color-primary-foreground)"},feedback:{type:"stars",size:"1rem",gap:"12px",padding:"4px",border:"1px solid var(--llm-color-neutral-300)"}}}},thread:[{role:"user",chunks:["Ciao\n"],createdAt:"2025-07-07T12:00:00.000Z"},{role:"assistant",chunks:["Ciao!\n","come posso aiutarti?"],createdAt:"2025-07-07T12:17:00.000Z"},{role:"user",chunks:["markdown\n"],createdAt:"2025-07-07T12:16:00.000Z"},{role:"assistant",chunks:["Ecco alcuni elementi custom:\n",{type:"customCardItem",id:"xxxxxx-1",title:"MaxMeyer Pittura per interni Bagni & Cucine Fresh",media:{type:"image",src:"https://picsum.photos/id/11/640/480"},href:"/"},{type:"customCardItem",id:"xxxxxx-2",title:"MaxMeyer Pittura per interni Bagni & Cucine Fresh",media:{type:"image",src:"https://picsum.photos/id/11/640/480"},href:"/"}],createdAt:"2025-07-07T12:03:00.000Z"},{role:"assistant",chunks:["Markdown\n"," \n","Header 1 \n======== \n"," \n","Header 2 \n-------- \n"," \n","### Header 3 ### \n","#### Header 4 #### \n","##### Header 5 ##### \n","###### Header 6 ###### \n"," \n","### Phrase Emphasis \n"," \n","*italic* \n","**bold** \n","_italic_ \n","__bold__ \n"," \n","### Links \n"," \n",'An [example](https://www.gmail.com/ "Title") \n'," \n","### Images \n",' \n'," \n","### Lists \n"," \n","1. Foo \n","2. Bar \n"," \n","* A list item. \n"," With multiple paragraphs. \n","* Bar \n","* Abacus \n"," * answer \n","* Bubbles \n"," 1. bunk \n"," 2. bupkis \n"," * BELITTLER \n"," 3. burper \n","* Cunning \n"," \n","### Blockquotes \n","> Email-style angle brackets \n","> are used for blockquotes. \n"," \n","> > And, they can be nested. \n"," \n","> ### Headers in blockquotes \n","> \n","> * You can quote a list. \n","> * Etc. \n"," \n","### Code Spans \n","`<code>` spans are delimited by backticks. \n"," \n","You can include literal backticks like `` `this` ``. \n"," \n","### Preformatted Code Blocks \n"," \n","This is a normal paragraph. \n"," \n"," This is a preformatted \n"," code block. \n"," \n","``` \n","function sum(a, b) { \n"," return a + b; \n","} \n","``` \n"," \n","### Horizontal Rules \n"," \n","--- \n"," \n","* * * \n"," \n","- - - - \n"," \n","### Manual Line Breaks \n"," \n","Roses are red, \n","Violets are blue. \n"," \n"],createdAt:"2025-07-07T12:17:00.000Z"},{role:"user",chunks:["elementi custom\n"],createdAt:"2025-07-07T12:00:00.000Z"},{role:"assistant",chunks:["Ecco alcuni elementi custom:\n",{type:"customCard",id:"xxxxxx-1",title:"A custom card",media:{type:"image",src:"https://picsum.photos/id/11/640/480"},href:"/"}],createdAt:"2025-07-07T12:01:00.000Z"},{role:"user",chunks:["elementi custom\n"],createdAt:"2025-07-07T12:02:00.000Z"},{role:"assistant",chunks:["Ecco alcuni elementi custom:\n",{type:"customCardItem",id:"xxxxxx-1",title:"A custom card",media:{type:"image",src:"https://picsum.photos/id/11/640/480"},href:"/"},{type:"customCardItem",id:"xxxxxx-2",title:"A custom card",media:{type:"image",src:"https://picsum.photos/id/11/640/480"},href:"/"}],createdAt:"2025-07-07T12:03:00.000Z"},{role:"user",chunks:["products\n"],createdAt:"2025-07-07T12:04:00.000Z"},{role:"assistant",chunks:["Products:\n",{type:"productItem",id:"54792",productType:"simple",sku:"K18090",currency:"EUR",price:"1.370000",priceLabel:"1,37€ al pubblico",title:"CAPPELLINO ZUCCOTTO DOPPIO STRATO IN ACRILICO MIMETICO",media:{type:"image",src:"https://www.siliconsrl.it/media/catalog/product/cache/95f6a12655416b1764261bf00237b0fc/k/1/k18090.jpg"},url:"https://www.siliconsrl.it/it/k18090-cappellino-zuccotto-doppio-strato-in-acrilico-mimetico",availability:"87",label:"Outlet"},{type:"productItem",id:"54617",productType:"configurable",sku:"K18053",currency:"EUR",price:"20.880000",priceLabel:"20,88€ al pubblico",title:"CAPPELLINO 6 PANNELLI SPORTY",abstract:"in cotone pesante pettinato con ricamo sulla visiera e sui pannelli laterali, chiusura regolabile con velcro.",media:{type:"image",src:"https://www.siliconsrl.it/media/catalog/product/cache/95f6a12655416b1764261bf00237b0fc/k/1/k18053bl_1.jpg"},url:"https://www.siliconsrl.it/it/k18053-cappellino-6-pannelli-sporty",availability:"54",label:"Outlet"},{type:"productItem",id:"58216",productType:"configurable",sku:"K18118",currency:"EUR",price:"21.060000",priceLabel:"21,06€ al pubblico",title:"CAPPELLINO MIRAMARE IN 100% COTONE",abstract:"in twill di cotone 16x12 di buona qualità.",media:{type:"image",src:"https://www.siliconsrl.it/media/catalog/product/cache/95f6a12655416b1764261bf00237b0fc/k/1/k18118b.jpg"},url:"https://www.siliconsrl.it/it/k18118-cappellino-da-pescatore-a-falda-in-100-cotone",availability:"102",label:"Bestseller"},"Vuoi esplorare altre categorie di prodotti? Ecco alcune opzioni che potrebbero interessarti:\n",'<div class="llm__pill">Scrittura</div>\n','<div class="llm__pill">Ufficio</div>\n','<div class="llm__pill">Tecnologia</div>\n'],createdAt:"2025-07-07T12:05:00.000Z"},{role:"user",chunks:["events\n"],createdAt:"2025-07-07T12:06:00.000Z"},{role:"assistant",chunks:["Fammi pensare...\n","ecco una lista di eventi:\n",{type:"eventItem",id:"xxxx",title:"Percorri la Bicipolitana di Pesaro con i tuoi bambini",abstract:"Un’esperienza da non perdere se visiterai la città con i bambini, noleggia la tua bici e esplora Pesaro.",place:"Pesaro",url:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/bicipolitana.jpg",date:"15-16 giugno 2024",time:"ore 20:00"},{type:"eventItem",id:"100",title:"Non perderti The Magic Castle di Gradara!",abstract:"The Magic Castle, l’evento per famiglie che ogni estate trasforma magicamente lo splendido borgo di Gradara.",place:"Gradara",url:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/gradara.jpg",date:"15-16 giugno 2024",time:"ore 20:00"},{type:"eventItem",id:"xxxx",title:"Trekking e panorami mozzafiato al San Bartolo",abstract:"Scendendo lungo la costa Adriatica, si erge il San Bartolo, un meraviglioso parco naturale affacciato sul mare.",place:"Parco San Bartolo",url:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/san-bartolo.jpg",date:"15-16 giugno 2024",time:"ore 20:00"},"Per qualunque altra cosa sono qui. 🙂\n"],createdAt:"2025-07-07T12:07:00.000Z"},{role:"user",chunks:["event\n"],createdAt:"2025-07-07T12:08:00.000Z"},{role:"assistant",chunks:["Dammi un momento...\n","ecco un evento:\n",{type:"event",id:"234",title:"Rossini Virtual 'Experience': esplora casa Rossini in AR",abstract:"Lasciati guidare dallo stesso Gioacchino nella sua casa e scopri la sua storia attraverso giocosi aneddoti in AR.",place:"Pesaro",url:"https://design.wslabs.it/llm",image:"https://picsum.photos/id/103/800/600",date:"15-16 giugno 2024",time:"ore 20:00"},"Serve altro?\n"],createdAt:"2025-07-07T12:09:00.000Z"},{role:"user",chunks:["pois\n"],createdAt:"2025-07-07T12:10:00.000Z"},{role:"assistant",chunks:["Bene!\n","ecco alcuni punti di interesse:\n",{type:"poiItem",id:"111",title:"Title",abstract:"Lorem ipsum dolor sit amet.",place:"Place",image:"https://picsum.photos/id/102/800/600",url:"https://design.wslabs.it/llm",time:"time"},{type:"poiItem",id:"222",title:"Title",abstract:"Lorem ipsum dolor sit amet.",place:"Place",image:"https://picsum.photos/id/101/800/600",url:"https://design.wslabs.it/llm"},"Serve altro? 🙂\n"],createdAt:"2025-07-07T12:11:00.000Z"},{role:"user",chunks:["poi\n"],createdAt:"2025-07-07T12:12:00.000Z"},{role:"assistant",chunks:["Certo!\n","ecco un punto di interesse:\n",{type:"poiItem",id:"111",title:"Title",abstract:"Lorem ipsum dolor sit amet.",place:"Place",image:"https://design.wslabs.it/llm/default/rossini.jpg",url:"https://design.wslabs.it/llm",time:"time"},"Serve altro? 🙂\n"],createdAt:"2025-07-07T12:13:00.000Z"},{role:"user",chunks:["tripadvisor\n"],createdAt:"2025-07-07T12:14:00.000Z"},{role:"assistant",chunks:["Dammi un secondo...\n","ecco alcuni ristoranti per te:\n",{type:"tripadvisor",id:"xxxx",title:"L'Angolo di Mario",rating:4.8,reviews:2276,priceRange:"€€-€€€",cuisine:"Italiana, Pesce, Mediterranea",address:"Via Nazario Sauro, 61100 Pesaro PU",url:"https://design.wslabs.it/llm",book:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/tripadvisor-01.jpg"},{type:"tripadvisor",id:"xxxx",title:"L'Amo Osteria di Mare",rating:4.2,reviews:287,priceRange:"€€-€€€",cuisine:"Italiana, Pesce, Mediterranea",address:"Via Venturini 4/6, 61121 Pesaro PU",url:"https://design.wslabs.it/llm",book:"https://design.wslabs.it/llm",image:"https://design.wslabs.it/llm/default/tripadvisor-02.jpg"}],createdAt:"2025-07-07T12:15:00.000Z"}]};!function(e,n){void 0===e&&(e="bomLlm");const t=t=>{if(!document)return;const i=document.querySelector("body");if(!i)return;t.plugins=[...t.plugins||[],...n||[]];const a=s(e),o=document.createElement("div");o.setAttribute("id",a),i.appendChild(o);const r="llm plugin is not initialized",u={open:()=>{console.log(r)},setOpened:e=>{console.log(r)},isOpened:()=>(console.log(r),!1),send:e=>{console.log(r)},clear:()=>{console.log(r)},dispose:()=>{console.log(r)}},l=new URLSearchParams(window.location.search).get("llmThreadId");!t.threadId&&l&&(t.threadId=l),function(e,n,t){e.hasAttribute("data-llm")||(e.setAttribute("data-llm",""),de.createRoot(e).render(ce.jsx(ne.StrictMode,{children:ce.jsx(OI,Object.assign({},n,{instance:t}))})))}(o,t,u);const c=document,d=function(e,n){let t;if(void 0===e&&(e=document),void 0===n&&(n=e=>{}),"IntersectionObserver"in window){const i={root:e.parentElement?e.parentElement:e,rootMargin:"50px",threshold:[.01,.99]};t=new IntersectionObserver((e,t)=>{e.forEach(e=>{e.isIntersecting&&(n(e.target),t.unobserve(e.target))})},i)}else t={observe:n,disconnect:()=>{}};return t}(c,e=>{!function(e,n){e.hasAttribute("data-llm")||(e.setAttribute("data-llm",""),de.createRoot(e).render(ce.jsx(ne.StrictMode,{children:ce.jsx(OI,Object.assign({},n,{embedded:!0}))})))}(e,t)});Array.from(document.querySelectorAll("llm-embed")).filter(e=>!e.hasAttribute("data-llm")).forEach(e=>d.observe(e));const g=function(e,n){let t;if(void 0===e&&(e=document),void 0===n&&(n=e=>{}),"MutationObserver"in window){const i={attributes:!1,childList:!0,subtree:!0};t=new MutationObserver((e,t)=>{for(const t of e)"childList"===t.type&&n(t)}),t.observe(e,i)}else t={disconnect:()=>{}};return t}(c,e=>{let{addedNodes:n,removedNodes:t}=e;const i=Array.from(n).filter(e=>e.nodeType===Node.ELEMENT_NODE);ZI(i).forEach(e=>d.observe(e))});ZI(c).forEach(e=>d.observe(e));return u.dispose=()=>{d.disconnect(),g.disconnect(),o.parentNode&&o.parentNode.removeChild(o)},u};"undefined"!=typeof window&&(window[e]=t)}("llmDefault",[cA]),e.Llm=function(){const e=ee.useRef(null);return ce.jsx(EI,{appKey:"app-test",apiKey:"b2c5912a-7b26-4c0c-8fd4-d046182c037c",plugins:[cA],test:dA,defaultTheme:{},contexts:[{title:"Architetto",context:{tone:"architect"}},{title:"Venditore di mobili",context:{tone:"dealer"}},{title:"Consumatore",context:{tone:"consumer"}}],children:ce.jsx(II,{ref:e})})},e.blocks=oA,e.components=lA,e.llmPlugin=cA,e.mock=dA});
|