forge-openclaw-plugin 0.2.3 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/README.md +114 -6
  2. package/dist/assets/board-CzgvdLO8.js +6 -0
  3. package/dist/assets/board-CzgvdLO8.js.map +1 -0
  4. package/dist/assets/favicon-BCHm9dUV.ico +0 -0
  5. package/dist/assets/index-8d_oM8fL.js +27 -0
  6. package/dist/assets/index-8d_oM8fL.js.map +1 -0
  7. package/dist/assets/index-D4A_bq8m.css +1 -0
  8. package/dist/assets/motion-STUd1O46.js +10 -0
  9. package/dist/assets/motion-STUd1O46.js.map +1 -0
  10. package/dist/assets/plus-jakarta-sans-latin-ext-wght-normal-DmpS2jIq.woff2 +0 -0
  11. package/dist/assets/plus-jakarta-sans-latin-wght-normal-eXO_dkmS.woff2 +0 -0
  12. package/dist/assets/plus-jakarta-sans-vietnamese-wght-normal-qRpaaN48.woff2 +0 -0
  13. package/dist/assets/sora-latin-ext-wght-normal-CawQDOvP.woff2 +0 -0
  14. package/dist/assets/sora-latin-wght-normal-DdqRvwsR.woff2 +0 -0
  15. package/dist/assets/space-grotesk-latin-500-normal-CNSSEhBt.woff +0 -0
  16. package/dist/assets/space-grotesk-latin-500-normal-lFbtlQH6.woff2 +0 -0
  17. package/dist/assets/space-grotesk-latin-700-normal-CwsQ-cCU.woff +0 -0
  18. package/dist/assets/space-grotesk-latin-700-normal-RjhwGPKo.woff2 +0 -0
  19. package/dist/assets/space-grotesk-latin-ext-500-normal-3dgZTiw9.woff +0 -0
  20. package/dist/assets/space-grotesk-latin-ext-500-normal-DUe3BAxM.woff2 +0 -0
  21. package/dist/assets/space-grotesk-latin-ext-700-normal-BQnZhY3m.woff2 +0 -0
  22. package/dist/assets/space-grotesk-latin-ext-700-normal-HVCqSBdx.woff +0 -0
  23. package/dist/assets/space-grotesk-vietnamese-500-normal-BTqKIpxg.woff +0 -0
  24. package/dist/assets/space-grotesk-vietnamese-500-normal-BmEvtly_.woff2 +0 -0
  25. package/dist/assets/space-grotesk-vietnamese-700-normal-DMty7AZE.woff2 +0 -0
  26. package/dist/assets/space-grotesk-vietnamese-700-normal-Duxec5Rn.woff +0 -0
  27. package/dist/assets/table-CtNlETLc.js +23 -0
  28. package/dist/assets/table-CtNlETLc.js.map +1 -0
  29. package/dist/assets/ui-ThzkR_oW.js +46 -0
  30. package/dist/assets/ui-ThzkR_oW.js.map +1 -0
  31. package/dist/assets/vendor-CRS-psbw.css +1 -0
  32. package/dist/assets/vendor-DyHAI6nk.js +423 -0
  33. package/dist/assets/vendor-DyHAI6nk.js.map +1 -0
  34. package/dist/assets/viz-BJuBCz_G.js +34 -0
  35. package/dist/assets/viz-BJuBCz_G.js.map +1 -0
  36. package/dist/favicon.ico +0 -0
  37. package/dist/favicon.png +0 -0
  38. package/dist/index.html +29 -0
  39. package/dist/openclaw/api-client.d.ts +8 -0
  40. package/dist/openclaw/api-client.js +31 -4
  41. package/dist/openclaw/local-runtime.d.ts +3 -0
  42. package/dist/openclaw/local-runtime.js +135 -0
  43. package/dist/openclaw/parity.d.ts +4 -4
  44. package/dist/openclaw/parity.js +23 -33
  45. package/dist/openclaw/plugin-entry-shared.d.ts +5 -3
  46. package/dist/openclaw/plugin-entry-shared.js +52 -10
  47. package/dist/openclaw/routes.d.ts +12 -3
  48. package/dist/openclaw/routes.js +156 -924
  49. package/dist/openclaw/tools.js +242 -1100
  50. package/dist/server/app.js +2450 -0
  51. package/dist/server/db.js +313 -0
  52. package/dist/server/e2e-server.js +20 -0
  53. package/dist/server/errors.js +15 -0
  54. package/dist/server/index.js +16 -0
  55. package/dist/server/managers/base.js +17 -0
  56. package/dist/server/managers/contracts.js +47 -0
  57. package/dist/server/managers/platform/api-gateway-manager.js +11 -0
  58. package/dist/server/managers/platform/audit-manager.js +15 -0
  59. package/dist/server/managers/platform/authentication-manager.js +56 -0
  60. package/dist/server/managers/platform/authorization-manager.js +56 -0
  61. package/dist/server/managers/platform/background-job-manager.js +10 -0
  62. package/dist/server/managers/platform/configuration-manager.js +33 -0
  63. package/dist/server/managers/platform/database-manager.js +14 -0
  64. package/dist/server/managers/platform/event-bus-manager.js +7 -0
  65. package/dist/server/managers/platform/external-service-manager.js +11 -0
  66. package/dist/server/managers/platform/health-manager.js +7 -0
  67. package/dist/server/managers/platform/migration-manager.js +8 -0
  68. package/dist/server/managers/platform/search-index-manager.js +4 -0
  69. package/dist/server/managers/platform/secrets-manager.js +19 -0
  70. package/dist/server/managers/platform/session-manager.js +121 -0
  71. package/dist/server/managers/platform/storage-manager.js +16 -0
  72. package/dist/server/managers/platform/token-manager.js +37 -0
  73. package/dist/server/managers/platform/transaction-manager.js +8 -0
  74. package/dist/server/managers/platform/trusted-network.js +39 -0
  75. package/dist/server/managers/runtime.js +56 -0
  76. package/dist/server/managers/type-guards.js +4 -0
  77. package/dist/server/openapi.js +3512 -0
  78. package/dist/server/psyche-types.js +395 -0
  79. package/dist/server/repositories/activity-events.js +157 -0
  80. package/dist/server/repositories/collaboration.js +497 -0
  81. package/dist/server/repositories/comments.js +176 -0
  82. package/dist/server/repositories/deleted-entities.js +192 -0
  83. package/dist/server/repositories/domains.js +30 -0
  84. package/dist/server/repositories/event-log.js +64 -0
  85. package/dist/server/repositories/goals.js +159 -0
  86. package/dist/server/repositories/projects.js +214 -0
  87. package/dist/server/repositories/psyche.js +1356 -0
  88. package/dist/server/repositories/rewards.js +675 -0
  89. package/dist/server/repositories/settings.js +399 -0
  90. package/dist/server/repositories/tags.js +160 -0
  91. package/dist/server/repositories/task-runs.js +488 -0
  92. package/dist/server/repositories/tasks.js +413 -0
  93. package/dist/server/services/context.js +214 -0
  94. package/dist/server/services/dashboard.js +170 -0
  95. package/dist/server/services/entity-crud.js +576 -0
  96. package/dist/server/services/gamification.js +215 -0
  97. package/dist/server/services/insights.js +91 -0
  98. package/dist/server/services/projects.js +75 -0
  99. package/dist/server/services/psyche.js +63 -0
  100. package/dist/server/services/relations.js +28 -0
  101. package/dist/server/services/reviews.js +88 -0
  102. package/dist/server/services/run-recovery.js +13 -0
  103. package/dist/server/services/tagging.js +49 -0
  104. package/dist/server/services/task-run-watchdog.js +92 -0
  105. package/dist/server/services/work-time.js +176 -0
  106. package/dist/server/types.js +999 -0
  107. package/dist/server/web.js +91 -0
  108. package/openclaw.plugin.json +22 -10
  109. package/package.json +17 -4
  110. package/server/migrations/001_core.sql +333 -0
  111. package/server/migrations/002_psyche.sql +241 -0
  112. package/server/migrations/003_timer_execution.sql +18 -0
  113. package/server/migrations/004_psyche_linked_entities.sql +5 -0
  114. package/server/migrations/005_adaptive_schemas.sql +157 -0
  115. package/server/migrations/006_psyche_auth_setting.sql +4 -0
  116. package/server/migrations/007_deleted_entities.sql +16 -0
  117. package/skills/forge-openclaw/SKILL.md +189 -275
@@ -0,0 +1,423 @@
1
+ var Ax=Object.defineProperty;var D0=t=>{throw TypeError(t)};var Cx=(t,a,r)=>a in t?Ax(t,a,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[a]=r;var ch=(t,a,r)=>Cx(t,typeof a!="symbol"?a+"":a,r),fh=(t,a,r)=>a.has(t)||D0("Cannot "+r);var A=(t,a,r)=>(fh(t,a,"read from private field"),r?r.call(t):a.get(t)),Se=(t,a,r)=>a.has(t)?D0("Cannot add the same private member more than once"):a instanceof WeakSet?a.add(t):a.set(t,r),le=(t,a,r,l)=>(fh(t,a,"write to private field"),l?l.call(t,r):a.set(t,r),r),je=(t,a,r)=>(fh(t,a,"access private method"),r);var Go=(t,a,r,l)=>({set _(u){le(t,a,u,r)},get _(){return A(t,a,l)}});function Ox(t,a){for(var r=0;r<a.length;r++){const l=a[r];if(typeof l!="string"&&!Array.isArray(l)){for(const u in l)if(u!=="default"&&!(u in t)){const o=Object.getOwnPropertyDescriptor(l,u);o&&Object.defineProperty(t,u,o.get?o:{enumerable:!0,get:()=>l[u]})}}}return Object.freeze(Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}))}function Ja(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var dh={exports:{}},Fs={};/**
2
+ * @license React
3
+ * react-jsx-runtime.production.js
4
+ *
5
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */var U0;function Rx(){if(U0)return Fs;U0=1;var t=Symbol.for("react.transitional.element"),a=Symbol.for("react.fragment");function r(l,u,o){var d=null;if(o!==void 0&&(d=""+o),u.key!==void 0&&(d=""+u.key),"key"in u){o={};for(var h in u)h!=="key"&&(o[h]=u[h])}else o=u;return u=o.ref,{$$typeof:t,type:l,key:d,ref:u!==void 0?u:null,props:o}}return Fs.Fragment=a,Fs.jsx=r,Fs.jsxs=r,Fs}var L0;function Mx(){return L0||(L0=1,dh.exports=Rx()),dh.exports}var kx=Mx(),hh={exports:{}},Re={};/**
10
+ * @license React
11
+ * react.production.js
12
+ *
13
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
14
+ *
15
+ * This source code is licensed under the MIT license found in the
16
+ * LICENSE file in the root directory of this source tree.
17
+ */var j0;function zx(){if(j0)return Re;j0=1;var t=Symbol.for("react.transitional.element"),a=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),l=Symbol.for("react.strict_mode"),u=Symbol.for("react.profiler"),o=Symbol.for("react.consumer"),d=Symbol.for("react.context"),h=Symbol.for("react.forward_ref"),y=Symbol.for("react.suspense"),m=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),v=Symbol.for("react.activity"),E=Symbol.iterator;function _(R){return R===null||typeof R!="object"?null:(R=E&&R[E]||R["@@iterator"],typeof R=="function"?R:null)}var w={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},S=Object.assign,x={};function M(R,X,ae){this.props=R,this.context=X,this.refs=x,this.updater=ae||w}M.prototype.isReactComponent={},M.prototype.setState=function(R,X){if(typeof R!="object"&&typeof R!="function"&&R!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,R,X,"setState")},M.prototype.forceUpdate=function(R){this.updater.enqueueForceUpdate(this,R,"forceUpdate")};function V(){}V.prototype=M.prototype;function Z(R,X,ae){this.props=R,this.context=X,this.refs=x,this.updater=ae||w}var q=Z.prototype=new V;q.constructor=Z,S(q,M.prototype),q.isPureReactComponent=!0;var Q=Array.isArray;function K(){}var P={H:null,A:null,T:null,S:null},G=Object.prototype.hasOwnProperty;function re(R,X,ae){var ue=ae.ref;return{$$typeof:t,type:R,key:X,ref:ue!==void 0?ue:null,props:ae}}function ze(R,X){return re(R.type,X,R.props)}function Ae(R){return typeof R=="object"&&R!==null&&R.$$typeof===t}function ne(R){var X={"=":"=0",":":"=2"};return"$"+R.replace(/[=:]/g,function(ae){return X[ae]})}var we=/\/+/g;function Ne(R,X){return typeof R=="object"&&R!==null&&R.key!=null?ne(""+R.key):X.toString(36)}function Ce(R){switch(R.status){case"fulfilled":return R.value;case"rejected":throw R.reason;default:switch(typeof R.status=="string"?R.then(K,K):(R.status="pending",R.then(function(X){R.status==="pending"&&(R.status="fulfilled",R.value=X)},function(X){R.status==="pending"&&(R.status="rejected",R.reason=X)})),R.status){case"fulfilled":return R.value;case"rejected":throw R.reason}}throw R}function B(R,X,ae,ue,he){var Ee=typeof R;(Ee==="undefined"||Ee==="boolean")&&(R=null);var Ve=!1;if(R===null)Ve=!0;else switch(Ee){case"bigint":case"string":case"number":Ve=!0;break;case"object":switch(R.$$typeof){case t:case a:Ve=!0;break;case g:return Ve=R._init,B(Ve(R._payload),X,ae,ue,he)}}if(Ve)return he=he(R),Ve=ue===""?"."+Ne(R,0):ue,Q(he)?(ae="",Ve!=null&&(ae=Ve.replace(we,"$&/")+"/"),B(he,X,ae,"",function(Pn){return Pn})):he!=null&&(Ae(he)&&(he=ze(he,ae+(he.key==null||R&&R.key===he.key?"":(""+he.key).replace(we,"$&/")+"/")+Ve)),X.push(he)),1;Ve=0;var wt=ue===""?".":ue+":";if(Q(R))for(var Oe=0;Oe<R.length;Oe++)ue=R[Oe],Ee=wt+Ne(ue,Oe),Ve+=B(ue,X,ae,Ee,he);else if(Oe=_(R),typeof Oe=="function")for(R=Oe.call(R),Oe=0;!(ue=R.next()).done;)ue=ue.value,Ee=wt+Ne(ue,Oe++),Ve+=B(ue,X,ae,Ee,he);else if(Ee==="object"){if(typeof R.then=="function")return B(Ce(R),X,ae,ue,he);throw X=String(R),Error("Objects are not valid as a React child (found: "+(X==="[object Object]"?"object with keys {"+Object.keys(R).join(", ")+"}":X)+"). If you meant to render a collection of children, use an array instead.")}return Ve}function J(R,X,ae){if(R==null)return R;var ue=[],he=0;return B(R,ue,"","",function(Ee){return X.call(ae,Ee,he++)}),ue}function ge(R){if(R._status===-1){var X=R._result;X=X(),X.then(function(ae){(R._status===0||R._status===-1)&&(R._status=1,R._result=ae)},function(ae){(R._status===0||R._status===-1)&&(R._status=2,R._result=ae)}),R._status===-1&&(R._status=0,R._result=X)}if(R._status===1)return R._result.default;throw R._result}var Be=typeof reportError=="function"?reportError:function(R){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var X=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof R=="object"&&R!==null&&typeof R.message=="string"?String(R.message):String(R),error:R});if(!window.dispatchEvent(X))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",R);return}console.error(R)},ee={map:J,forEach:function(R,X,ae){J(R,function(){X.apply(this,arguments)},ae)},count:function(R){var X=0;return J(R,function(){X++}),X},toArray:function(R){return J(R,function(X){return X})||[]},only:function(R){if(!Ae(R))throw Error("React.Children.only expected to receive a single React element child.");return R}};return Re.Activity=v,Re.Children=ee,Re.Component=M,Re.Fragment=r,Re.Profiler=u,Re.PureComponent=Z,Re.StrictMode=l,Re.Suspense=y,Re.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=P,Re.__COMPILER_RUNTIME={__proto__:null,c:function(R){return P.H.useMemoCache(R)}},Re.cache=function(R){return function(){return R.apply(null,arguments)}},Re.cacheSignal=function(){return null},Re.cloneElement=function(R,X,ae){if(R==null)throw Error("The argument must be a React element, but you passed "+R+".");var ue=S({},R.props),he=R.key;if(X!=null)for(Ee in X.key!==void 0&&(he=""+X.key),X)!G.call(X,Ee)||Ee==="key"||Ee==="__self"||Ee==="__source"||Ee==="ref"&&X.ref===void 0||(ue[Ee]=X[Ee]);var Ee=arguments.length-2;if(Ee===1)ue.children=ae;else if(1<Ee){for(var Ve=Array(Ee),wt=0;wt<Ee;wt++)Ve[wt]=arguments[wt+2];ue.children=Ve}return re(R.type,he,ue)},Re.createContext=function(R){return R={$$typeof:d,_currentValue:R,_currentValue2:R,_threadCount:0,Provider:null,Consumer:null},R.Provider=R,R.Consumer={$$typeof:o,_context:R},R},Re.createElement=function(R,X,ae){var ue,he={},Ee=null;if(X!=null)for(ue in X.key!==void 0&&(Ee=""+X.key),X)G.call(X,ue)&&ue!=="key"&&ue!=="__self"&&ue!=="__source"&&(he[ue]=X[ue]);var Ve=arguments.length-2;if(Ve===1)he.children=ae;else if(1<Ve){for(var wt=Array(Ve),Oe=0;Oe<Ve;Oe++)wt[Oe]=arguments[Oe+2];he.children=wt}if(R&&R.defaultProps)for(ue in Ve=R.defaultProps,Ve)he[ue]===void 0&&(he[ue]=Ve[ue]);return re(R,Ee,he)},Re.createRef=function(){return{current:null}},Re.forwardRef=function(R){return{$$typeof:h,render:R}},Re.isValidElement=Ae,Re.lazy=function(R){return{$$typeof:g,_payload:{_status:-1,_result:R},_init:ge}},Re.memo=function(R,X){return{$$typeof:m,type:R,compare:X===void 0?null:X}},Re.startTransition=function(R){var X=P.T,ae={};P.T=ae;try{var ue=R(),he=P.S;he!==null&&he(ae,ue),typeof ue=="object"&&ue!==null&&typeof ue.then=="function"&&ue.then(K,Be)}catch(Ee){Be(Ee)}finally{X!==null&&ae.types!==null&&(X.types=ae.types),P.T=X}},Re.unstable_useCacheRefresh=function(){return P.H.useCacheRefresh()},Re.use=function(R){return P.H.use(R)},Re.useActionState=function(R,X,ae){return P.H.useActionState(R,X,ae)},Re.useCallback=function(R,X){return P.H.useCallback(R,X)},Re.useContext=function(R){return P.H.useContext(R)},Re.useDebugValue=function(){},Re.useDeferredValue=function(R,X){return P.H.useDeferredValue(R,X)},Re.useEffect=function(R,X){return P.H.useEffect(R,X)},Re.useEffectEvent=function(R){return P.H.useEffectEvent(R)},Re.useId=function(){return P.H.useId()},Re.useImperativeHandle=function(R,X,ae){return P.H.useImperativeHandle(R,X,ae)},Re.useInsertionEffect=function(R,X){return P.H.useInsertionEffect(R,X)},Re.useLayoutEffect=function(R,X){return P.H.useLayoutEffect(R,X)},Re.useMemo=function(R,X){return P.H.useMemo(R,X)},Re.useOptimistic=function(R,X){return P.H.useOptimistic(R,X)},Re.useReducer=function(R,X,ae){return P.H.useReducer(R,X,ae)},Re.useRef=function(R){return P.H.useRef(R)},Re.useState=function(R){return P.H.useState(R)},Re.useSyncExternalStore=function(R,X,ae){return P.H.useSyncExternalStore(R,X,ae)},Re.useTransition=function(){return P.H.useTransition()},Re.version="19.2.4",Re}var q0;function Fl(){return q0||(q0=1,hh.exports=zx()),hh.exports}var z=Fl();const kt=Ja(z),qM=Ox({__proto__:null,default:kt},[z]);var yh={exports:{}},Xs={},mh={exports:{}},ph={};/**
18
+ * @license React
19
+ * scheduler.production.js
20
+ *
21
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
22
+ *
23
+ * This source code is licensed under the MIT license found in the
24
+ * LICENSE file in the root directory of this source tree.
25
+ */var B0;function Nx(){return B0||(B0=1,(function(t){function a(B,J){var ge=B.length;B.push(J);e:for(;0<ge;){var Be=ge-1>>>1,ee=B[Be];if(0<u(ee,J))B[Be]=J,B[ge]=ee,ge=Be;else break e}}function r(B){return B.length===0?null:B[0]}function l(B){if(B.length===0)return null;var J=B[0],ge=B.pop();if(ge!==J){B[0]=ge;e:for(var Be=0,ee=B.length,R=ee>>>1;Be<R;){var X=2*(Be+1)-1,ae=B[X],ue=X+1,he=B[ue];if(0>u(ae,ge))ue<ee&&0>u(he,ae)?(B[Be]=he,B[ue]=ge,Be=ue):(B[Be]=ae,B[X]=ge,Be=X);else if(ue<ee&&0>u(he,ge))B[Be]=he,B[ue]=ge,Be=ue;else break e}}return J}function u(B,J){var ge=B.sortIndex-J.sortIndex;return ge!==0?ge:B.id-J.id}if(t.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var o=performance;t.unstable_now=function(){return o.now()}}else{var d=Date,h=d.now();t.unstable_now=function(){return d.now()-h}}var y=[],m=[],g=1,v=null,E=3,_=!1,w=!1,S=!1,x=!1,M=typeof setTimeout=="function"?setTimeout:null,V=typeof clearTimeout=="function"?clearTimeout:null,Z=typeof setImmediate<"u"?setImmediate:null;function q(B){for(var J=r(m);J!==null;){if(J.callback===null)l(m);else if(J.startTime<=B)l(m),J.sortIndex=J.expirationTime,a(y,J);else break;J=r(m)}}function Q(B){if(S=!1,q(B),!w)if(r(y)!==null)w=!0,K||(K=!0,ne());else{var J=r(m);J!==null&&Ce(Q,J.startTime-B)}}var K=!1,P=-1,G=5,re=-1;function ze(){return x?!0:!(t.unstable_now()-re<G)}function Ae(){if(x=!1,K){var B=t.unstable_now();re=B;var J=!0;try{e:{w=!1,S&&(S=!1,V(P),P=-1),_=!0;var ge=E;try{t:{for(q(B),v=r(y);v!==null&&!(v.expirationTime>B&&ze());){var Be=v.callback;if(typeof Be=="function"){v.callback=null,E=v.priorityLevel;var ee=Be(v.expirationTime<=B);if(B=t.unstable_now(),typeof ee=="function"){v.callback=ee,q(B),J=!0;break t}v===r(y)&&l(y),q(B)}else l(y);v=r(y)}if(v!==null)J=!0;else{var R=r(m);R!==null&&Ce(Q,R.startTime-B),J=!1}}break e}finally{v=null,E=ge,_=!1}J=void 0}}finally{J?ne():K=!1}}}var ne;if(typeof Z=="function")ne=function(){Z(Ae)};else if(typeof MessageChannel<"u"){var we=new MessageChannel,Ne=we.port2;we.port1.onmessage=Ae,ne=function(){Ne.postMessage(null)}}else ne=function(){M(Ae,0)};function Ce(B,J){P=M(function(){B(t.unstable_now())},J)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(B){B.callback=null},t.unstable_forceFrameRate=function(B){0>B||125<B?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):G=0<B?Math.floor(1e3/B):5},t.unstable_getCurrentPriorityLevel=function(){return E},t.unstable_next=function(B){switch(E){case 1:case 2:case 3:var J=3;break;default:J=E}var ge=E;E=J;try{return B()}finally{E=ge}},t.unstable_requestPaint=function(){x=!0},t.unstable_runWithPriority=function(B,J){switch(B){case 1:case 2:case 3:case 4:case 5:break;default:B=3}var ge=E;E=B;try{return J()}finally{E=ge}},t.unstable_scheduleCallback=function(B,J,ge){var Be=t.unstable_now();switch(typeof ge=="object"&&ge!==null?(ge=ge.delay,ge=typeof ge=="number"&&0<ge?Be+ge:Be):ge=Be,B){case 1:var ee=-1;break;case 2:ee=250;break;case 5:ee=1073741823;break;case 4:ee=1e4;break;default:ee=5e3}return ee=ge+ee,B={id:g++,callback:J,priorityLevel:B,startTime:ge,expirationTime:ee,sortIndex:-1},ge>Be?(B.sortIndex=ge,a(m,B),r(y)===null&&B===r(m)&&(S?(V(P),P=-1):S=!0,Ce(Q,ge-Be))):(B.sortIndex=ee,a(y,B),w||_||(w=!0,K||(K=!0,ne()))),B},t.unstable_shouldYield=ze,t.unstable_wrapCallback=function(B){var J=E;return function(){var ge=E;E=J;try{return B.apply(this,arguments)}finally{E=ge}}}})(ph)),ph}var V0;function Dx(){return V0||(V0=1,mh.exports=Nx()),mh.exports}var vh={exports:{}},$t={};/**
26
+ * @license React
27
+ * react-dom.production.js
28
+ *
29
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
30
+ *
31
+ * This source code is licensed under the MIT license found in the
32
+ * LICENSE file in the root directory of this source tree.
33
+ */var H0;function Ux(){if(H0)return $t;H0=1;var t=Fl();function a(y){var m="https://react.dev/errors/"+y;if(1<arguments.length){m+="?args[]="+encodeURIComponent(arguments[1]);for(var g=2;g<arguments.length;g++)m+="&args[]="+encodeURIComponent(arguments[g])}return"Minified React error #"+y+"; visit "+m+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function r(){}var l={d:{f:r,r:function(){throw Error(a(522))},D:r,C:r,L:r,m:r,X:r,S:r,M:r},p:0,findDOMNode:null},u=Symbol.for("react.portal");function o(y,m,g){var v=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:u,key:v==null?null:""+v,children:y,containerInfo:m,implementation:g}}var d=t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function h(y,m){if(y==="font")return"";if(typeof m=="string")return m==="use-credentials"?m:""}return $t.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=l,$t.createPortal=function(y,m){var g=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!m||m.nodeType!==1&&m.nodeType!==9&&m.nodeType!==11)throw Error(a(299));return o(y,m,null,g)},$t.flushSync=function(y){var m=d.T,g=l.p;try{if(d.T=null,l.p=2,y)return y()}finally{d.T=m,l.p=g,l.d.f()}},$t.preconnect=function(y,m){typeof y=="string"&&(m?(m=m.crossOrigin,m=typeof m=="string"?m==="use-credentials"?m:"":void 0):m=null,l.d.C(y,m))},$t.prefetchDNS=function(y){typeof y=="string"&&l.d.D(y)},$t.preinit=function(y,m){if(typeof y=="string"&&m&&typeof m.as=="string"){var g=m.as,v=h(g,m.crossOrigin),E=typeof m.integrity=="string"?m.integrity:void 0,_=typeof m.fetchPriority=="string"?m.fetchPriority:void 0;g==="style"?l.d.S(y,typeof m.precedence=="string"?m.precedence:void 0,{crossOrigin:v,integrity:E,fetchPriority:_}):g==="script"&&l.d.X(y,{crossOrigin:v,integrity:E,fetchPriority:_,nonce:typeof m.nonce=="string"?m.nonce:void 0})}},$t.preinitModule=function(y,m){if(typeof y=="string")if(typeof m=="object"&&m!==null){if(m.as==null||m.as==="script"){var g=h(m.as,m.crossOrigin);l.d.M(y,{crossOrigin:g,integrity:typeof m.integrity=="string"?m.integrity:void 0,nonce:typeof m.nonce=="string"?m.nonce:void 0})}}else m==null&&l.d.M(y)},$t.preload=function(y,m){if(typeof y=="string"&&typeof m=="object"&&m!==null&&typeof m.as=="string"){var g=m.as,v=h(g,m.crossOrigin);l.d.L(y,g,{crossOrigin:v,integrity:typeof m.integrity=="string"?m.integrity:void 0,nonce:typeof m.nonce=="string"?m.nonce:void 0,type:typeof m.type=="string"?m.type:void 0,fetchPriority:typeof m.fetchPriority=="string"?m.fetchPriority:void 0,referrerPolicy:typeof m.referrerPolicy=="string"?m.referrerPolicy:void 0,imageSrcSet:typeof m.imageSrcSet=="string"?m.imageSrcSet:void 0,imageSizes:typeof m.imageSizes=="string"?m.imageSizes:void 0,media:typeof m.media=="string"?m.media:void 0})}},$t.preloadModule=function(y,m){if(typeof y=="string")if(m){var g=h(m.as,m.crossOrigin);l.d.m(y,{as:typeof m.as=="string"&&m.as!=="script"?m.as:void 0,crossOrigin:g,integrity:typeof m.integrity=="string"?m.integrity:void 0})}else l.d.m(y)},$t.requestFormReset=function(y){l.d.r(y)},$t.unstable_batchedUpdates=function(y,m){return y(m)},$t.useFormState=function(y,m,g){return d.H.useFormState(y,m,g)},$t.useFormStatus=function(){return d.H.useHostTransitionStatus()},$t.version="19.2.4",$t}var Z0;function g_(){if(Z0)return vh.exports;Z0=1;function t(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(a){console.error(a)}}return t(),vh.exports=Ux(),vh.exports}/**
34
+ * @license React
35
+ * react-dom-client.production.js
36
+ *
37
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
38
+ *
39
+ * This source code is licensed under the MIT license found in the
40
+ * LICENSE file in the root directory of this source tree.
41
+ */var Q0;function Lx(){if(Q0)return Xs;Q0=1;var t=Dx(),a=Fl(),r=g_();function l(e){var n="https://react.dev/errors/"+e;if(1<arguments.length){n+="?args[]="+encodeURIComponent(arguments[1]);for(var i=2;i<arguments.length;i++)n+="&args[]="+encodeURIComponent(arguments[i])}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."}function u(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function o(e){var n=e,i=e;if(e.alternate)for(;n.return;)n=n.return;else{e=n;do n=e,(n.flags&4098)!==0&&(i=n.return),e=n.return;while(e)}return n.tag===3?i:null}function d(e){if(e.tag===13){var n=e.memoizedState;if(n===null&&(e=e.alternate,e!==null&&(n=e.memoizedState)),n!==null)return n.dehydrated}return null}function h(e){if(e.tag===31){var n=e.memoizedState;if(n===null&&(e=e.alternate,e!==null&&(n=e.memoizedState)),n!==null)return n.dehydrated}return null}function y(e){if(o(e)!==e)throw Error(l(188))}function m(e){var n=e.alternate;if(!n){if(n=o(e),n===null)throw Error(l(188));return n!==e?null:e}for(var i=e,s=n;;){var c=i.return;if(c===null)break;var f=c.alternate;if(f===null){if(s=c.return,s!==null){i=s;continue}break}if(c.child===f.child){for(f=c.child;f;){if(f===i)return y(c),e;if(f===s)return y(c),n;f=f.sibling}throw Error(l(188))}if(i.return!==s.return)i=c,s=f;else{for(var p=!1,b=c.child;b;){if(b===i){p=!0,i=c,s=f;break}if(b===s){p=!0,s=c,i=f;break}b=b.sibling}if(!p){for(b=f.child;b;){if(b===i){p=!0,i=f,s=c;break}if(b===s){p=!0,s=f,i=c;break}b=b.sibling}if(!p)throw Error(l(189))}}if(i.alternate!==s)throw Error(l(190))}if(i.tag!==3)throw Error(l(188));return i.stateNode.current===i?e:n}function g(e){var n=e.tag;if(n===5||n===26||n===27||n===6)return e;for(e=e.child;e!==null;){if(n=g(e),n!==null)return n;e=e.sibling}return null}var v=Object.assign,E=Symbol.for("react.element"),_=Symbol.for("react.transitional.element"),w=Symbol.for("react.portal"),S=Symbol.for("react.fragment"),x=Symbol.for("react.strict_mode"),M=Symbol.for("react.profiler"),V=Symbol.for("react.consumer"),Z=Symbol.for("react.context"),q=Symbol.for("react.forward_ref"),Q=Symbol.for("react.suspense"),K=Symbol.for("react.suspense_list"),P=Symbol.for("react.memo"),G=Symbol.for("react.lazy"),re=Symbol.for("react.activity"),ze=Symbol.for("react.memo_cache_sentinel"),Ae=Symbol.iterator;function ne(e){return e===null||typeof e!="object"?null:(e=Ae&&e[Ae]||e["@@iterator"],typeof e=="function"?e:null)}var we=Symbol.for("react.client.reference");function Ne(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===we?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case S:return"Fragment";case M:return"Profiler";case x:return"StrictMode";case Q:return"Suspense";case K:return"SuspenseList";case re:return"Activity"}if(typeof e=="object")switch(e.$$typeof){case w:return"Portal";case Z:return e.displayName||"Context";case V:return(e._context.displayName||"Context")+".Consumer";case q:var n=e.render;return e=e.displayName,e||(e=n.displayName||n.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case P:return n=e.displayName||null,n!==null?n:Ne(e.type)||"Memo";case G:n=e._payload,e=e._init;try{return Ne(e(n))}catch{}}return null}var Ce=Array.isArray,B=a.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,J=r.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,ge={pending:!1,data:null,method:null,action:null},Be=[],ee=-1;function R(e){return{current:e}}function X(e){0>ee||(e.current=Be[ee],Be[ee]=null,ee--)}function ae(e,n){ee++,Be[ee]=e.current,e.current=n}var ue=R(null),he=R(null),Ee=R(null),Ve=R(null);function wt(e,n){switch(ae(Ee,n),ae(he,e),ae(ue,null),n.nodeType){case 9:case 11:e=(e=n.documentElement)&&(e=e.namespaceURI)?a0(e):0;break;default:if(e=n.tagName,n=n.namespaceURI)n=a0(n),e=r0(n,e);else switch(e){case"svg":e=1;break;case"math":e=2;break;default:e=0}}X(ue),ae(ue,e)}function Oe(){X(ue),X(he),X(Ee)}function Pn(e){e.memoizedState!==null&&ae(Ve,e);var n=ue.current,i=r0(n,e.type);n!==i&&(ae(he,e),ae(ue,i))}function pn(e){he.current===e&&(X(ue),X(he)),Ve.current===e&&(X(Ve),Zs._currentValue=ge)}var kn,Ia;function Pt(e){if(kn===void 0)try{throw Error()}catch(i){var n=i.stack.trim().match(/\n( *(at )?)/);kn=n&&n[1]||"",Ia=-1<i.stack.indexOf(`
42
+ at`)?" (<anonymous>)":-1<i.stack.indexOf("@")?"@unknown:0:0":""}return`
43
+ `+kn+e+Ia}var Wl=!1;function Ni(e,n){if(!e||Wl)return"";Wl=!0;var i=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var s={DetermineComponentFrameRoot:function(){try{if(n){var $=function(){throw Error()};if(Object.defineProperty($.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct($,[])}catch(H){var j=H}Reflect.construct(e,[],$)}else{try{$.call()}catch(H){j=H}e.call($.prototype)}}else{try{throw Error()}catch(H){j=H}($=e())&&typeof $.catch=="function"&&$.catch(function(){})}}catch(H){if(H&&j&&typeof H.stack=="string")return[H.stack,j.stack]}return[null,null]}};s.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var c=Object.getOwnPropertyDescriptor(s.DetermineComponentFrameRoot,"name");c&&c.configurable&&Object.defineProperty(s.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var f=s.DetermineComponentFrameRoot(),p=f[0],b=f[1];if(p&&b){var T=p.split(`
44
+ `),U=b.split(`
45
+ `);for(c=s=0;s<T.length&&!T[s].includes("DetermineComponentFrameRoot");)s++;for(;c<U.length&&!U[c].includes("DetermineComponentFrameRoot");)c++;if(s===T.length||c===U.length)for(s=T.length-1,c=U.length-1;1<=s&&0<=c&&T[s]!==U[c];)c--;for(;1<=s&&0<=c;s--,c--)if(T[s]!==U[c]){if(s!==1||c!==1)do if(s--,c--,0>c||T[s]!==U[c]){var Y=`
46
+ `+T[s].replace(" at new "," at ");return e.displayName&&Y.includes("<anonymous>")&&(Y=Y.replace("<anonymous>",e.displayName)),Y}while(1<=s&&0<=c);break}}}finally{Wl=!1,Error.prepareStackTrace=i}return(i=e?e.displayName||e.name:"")?Pt(i):""}function wu(e,n){switch(e.tag){case 26:case 27:case 5:return Pt(e.type);case 16:return Pt("Lazy");case 13:return e.child!==n&&n!==null?Pt("Suspense Fallback"):Pt("Suspense");case 19:return Pt("SuspenseList");case 0:case 15:return Ni(e.type,!1);case 11:return Ni(e.type.render,!1);case 1:return Ni(e.type,!0);case 31:return Pt("Activity");default:return""}}function Tu(e){try{var n="",i=null;do n+=wu(e,i),i=e,e=e.return;while(e);return n}catch(s){return`
47
+ Error generating stack: `+s.message+`
48
+ `+s.stack}}var es=Object.prototype.hasOwnProperty,Au=t.unstable_scheduleCallback,Di=t.unstable_cancelCallback,C=t.unstable_shouldYield,N=t.unstable_requestPaint,L=t.unstable_now,ie=t.unstable_getCurrentPriorityLevel,W=t.unstable_ImmediatePriority,te=t.unstable_UserBlockingPriority,fe=t.unstable_NormalPriority,De=t.unstable_LowPriority,Ke=t.unstable_IdlePriority,Jt=t.log,zn=t.unstable_setDisableYieldValue,Tt=null,It=null;function Nn(e){if(typeof Jt=="function"&&zn(e),It&&typeof It.setStrictMode=="function")try{It.setStrictMode(Tt,e)}catch{}}var Ht=Math.clz32?Math.clz32:Pc,Kc=Math.log,Cu=Math.LN2;function Pc(e){return e>>>=0,e===0?32:31-(Kc(e)/Cu|0)|0}var Qr=256,Ou=262144,Ru=4194304;function Gr(e){var n=e&42;if(n!==0)return n;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:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function Mu(e,n,i){var s=e.pendingLanes;if(s===0)return 0;var c=0,f=e.suspendedLanes,p=e.pingedLanes;e=e.warmLanes;var b=s&134217727;return b!==0?(s=b&~f,s!==0?c=Gr(s):(p&=b,p!==0?c=Gr(p):i||(i=b&~e,i!==0&&(c=Gr(i))))):(b=s&~f,b!==0?c=Gr(b):p!==0?c=Gr(p):i||(i=s&~e,i!==0&&(c=Gr(i)))),c===0?0:n!==0&&n!==c&&(n&f)===0&&(f=c&-c,i=n&-n,f>=i||f===32&&(i&4194048)!==0)?n:c}function ts(e,n){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&n)===0}function h2(e,n){switch(e){case 1:case 2:case 4:case 8:case 64:return n+250;case 16:case 32: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;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function qm(){var e=Ru;return Ru<<=1,(Ru&62914560)===0&&(Ru=4194304),e}function Jc(e){for(var n=[],i=0;31>i;i++)n.push(e);return n}function ns(e,n){e.pendingLanes|=n,n!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function y2(e,n,i,s,c,f){var p=e.pendingLanes;e.pendingLanes=i,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=i,e.entangledLanes&=i,e.errorRecoveryDisabledLanes&=i,e.shellSuspendCounter=0;var b=e.entanglements,T=e.expirationTimes,U=e.hiddenUpdates;for(i=p&~i;0<i;){var Y=31-Ht(i),$=1<<Y;b[Y]=0,T[Y]=-1;var j=U[Y];if(j!==null)for(U[Y]=null,Y=0;Y<j.length;Y++){var H=j[Y];H!==null&&(H.lane&=-536870913)}i&=~$}s!==0&&Bm(e,s,0),f!==0&&c===0&&e.tag!==0&&(e.suspendedLanes|=f&~(p&~n))}function Bm(e,n,i){e.pendingLanes|=n,e.suspendedLanes&=~n;var s=31-Ht(n);e.entangledLanes|=n,e.entanglements[s]=e.entanglements[s]|1073741824|i&261930}function Vm(e,n){var i=e.entangledLanes|=n;for(e=e.entanglements;i;){var s=31-Ht(i),c=1<<s;c&n|e[s]&n&&(e[s]|=n),i&=~c}}function Hm(e,n){var i=n&-n;return i=(i&42)!==0?1:Ic(i),(i&(e.suspendedLanes|n))!==0?0:i}function Ic(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;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:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function Wc(e){return e&=-e,2<e?8<e?(e&134217727)!==0?32:268435456:8:2}function Zm(){var e=J.p;return e!==0?e:(e=window.event,e===void 0?32:C0(e.type))}function Qm(e,n){var i=J.p;try{return J.p=e,n()}finally{J.p=i}}var Wa=Math.random().toString(36).slice(2),Zt="__reactFiber$"+Wa,ln="__reactProps$"+Wa,Ui="__reactContainer$"+Wa,ef="__reactEvents$"+Wa,m2="__reactListeners$"+Wa,p2="__reactHandles$"+Wa,Gm="__reactResources$"+Wa,as="__reactMarker$"+Wa;function tf(e){delete e[Zt],delete e[ln],delete e[ef],delete e[m2],delete e[p2]}function Li(e){var n=e[Zt];if(n)return n;for(var i=e.parentNode;i;){if(n=i[Ui]||i[Zt]){if(i=n.alternate,n.child!==null||i!==null&&i.child!==null)for(e=f0(e);e!==null;){if(i=e[Zt])return i;e=f0(e)}return n}e=i,i=e.parentNode}return null}function ji(e){if(e=e[Zt]||e[Ui]){var n=e.tag;if(n===5||n===6||n===13||n===31||n===26||n===27||n===3)return e}return null}function rs(e){var n=e.tag;if(n===5||n===26||n===27||n===6)return e.stateNode;throw Error(l(33))}function qi(e){var n=e[Gm];return n||(n=e[Gm]={hoistableStyles:new Map,hoistableScripts:new Map}),n}function jt(e){e[as]=!0}var Ym=new Set,Fm={};function Yr(e,n){Bi(e,n),Bi(e+"Capture",n)}function Bi(e,n){for(Fm[e]=n,e=0;e<n.length;e++)Ym.add(n[e])}var v2=RegExp("^[: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]*$"),Xm={},$m={};function g2(e){return es.call($m,e)?!0:es.call(Xm,e)?!1:v2.test(e)?$m[e]=!0:(Xm[e]=!0,!1)}function ku(e,n,i){if(g2(n))if(i===null)e.removeAttribute(n);else{switch(typeof i){case"undefined":case"function":case"symbol":e.removeAttribute(n);return;case"boolean":var s=n.toLowerCase().slice(0,5);if(s!=="data-"&&s!=="aria-"){e.removeAttribute(n);return}}e.setAttribute(n,""+i)}}function zu(e,n,i){if(i===null)e.removeAttribute(n);else{switch(typeof i){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(n);return}e.setAttribute(n,""+i)}}function _a(e,n,i,s){if(s===null)e.removeAttribute(i);else{switch(typeof s){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(i);return}e.setAttributeNS(n,i,""+s)}}function Dn(e){switch(typeof e){case"bigint":case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Km(e){var n=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(n==="checkbox"||n==="radio")}function b2(e,n,i){var s=Object.getOwnPropertyDescriptor(e.constructor.prototype,n);if(!e.hasOwnProperty(n)&&typeof s<"u"&&typeof s.get=="function"&&typeof s.set=="function"){var c=s.get,f=s.set;return Object.defineProperty(e,n,{configurable:!0,get:function(){return c.call(this)},set:function(p){i=""+p,f.call(this,p)}}),Object.defineProperty(e,n,{enumerable:s.enumerable}),{getValue:function(){return i},setValue:function(p){i=""+p},stopTracking:function(){e._valueTracker=null,delete e[n]}}}}function nf(e){if(!e._valueTracker){var n=Km(e)?"checked":"value";e._valueTracker=b2(e,n,""+e[n])}}function Pm(e){if(!e)return!1;var n=e._valueTracker;if(!n)return!0;var i=n.getValue(),s="";return e&&(s=Km(e)?e.checked?"true":"false":e.value),e=s,e!==i?(n.setValue(e),!0):!1}function Nu(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}var _2=/[\n"\\]/g;function Un(e){return e.replace(_2,function(n){return"\\"+n.charCodeAt(0).toString(16)+" "})}function af(e,n,i,s,c,f,p,b){e.name="",p!=null&&typeof p!="function"&&typeof p!="symbol"&&typeof p!="boolean"?e.type=p:e.removeAttribute("type"),n!=null?p==="number"?(n===0&&e.value===""||e.value!=n)&&(e.value=""+Dn(n)):e.value!==""+Dn(n)&&(e.value=""+Dn(n)):p!=="submit"&&p!=="reset"||e.removeAttribute("value"),n!=null?rf(e,p,Dn(n)):i!=null?rf(e,p,Dn(i)):s!=null&&e.removeAttribute("value"),c==null&&f!=null&&(e.defaultChecked=!!f),c!=null&&(e.checked=c&&typeof c!="function"&&typeof c!="symbol"),b!=null&&typeof b!="function"&&typeof b!="symbol"&&typeof b!="boolean"?e.name=""+Dn(b):e.removeAttribute("name")}function Jm(e,n,i,s,c,f,p,b){if(f!=null&&typeof f!="function"&&typeof f!="symbol"&&typeof f!="boolean"&&(e.type=f),n!=null||i!=null){if(!(f!=="submit"&&f!=="reset"||n!=null)){nf(e);return}i=i!=null?""+Dn(i):"",n=n!=null?""+Dn(n):i,b||n===e.value||(e.value=n),e.defaultValue=n}s=s??c,s=typeof s!="function"&&typeof s!="symbol"&&!!s,e.checked=b?e.checked:!!s,e.defaultChecked=!!s,p!=null&&typeof p!="function"&&typeof p!="symbol"&&typeof p!="boolean"&&(e.name=p),nf(e)}function rf(e,n,i){n==="number"&&Nu(e.ownerDocument)===e||e.defaultValue===""+i||(e.defaultValue=""+i)}function Vi(e,n,i,s){if(e=e.options,n){n={};for(var c=0;c<i.length;c++)n["$"+i[c]]=!0;for(i=0;i<e.length;i++)c=n.hasOwnProperty("$"+e[i].value),e[i].selected!==c&&(e[i].selected=c),c&&s&&(e[i].defaultSelected=!0)}else{for(i=""+Dn(i),n=null,c=0;c<e.length;c++){if(e[c].value===i){e[c].selected=!0,s&&(e[c].defaultSelected=!0);return}n!==null||e[c].disabled||(n=e[c])}n!==null&&(n.selected=!0)}}function Im(e,n,i){if(n!=null&&(n=""+Dn(n),n!==e.value&&(e.value=n),i==null)){e.defaultValue!==n&&(e.defaultValue=n);return}e.defaultValue=i!=null?""+Dn(i):""}function Wm(e,n,i,s){if(n==null){if(s!=null){if(i!=null)throw Error(l(92));if(Ce(s)){if(1<s.length)throw Error(l(93));s=s[0]}i=s}i==null&&(i=""),n=i}i=Dn(n),e.defaultValue=i,s=e.textContent,s===i&&s!==""&&s!==null&&(e.value=s),nf(e)}function Hi(e,n){if(n){var i=e.firstChild;if(i&&i===e.lastChild&&i.nodeType===3){i.nodeValue=n;return}}e.textContent=n}var S2=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function ep(e,n,i){var s=n.indexOf("--")===0;i==null||typeof i=="boolean"||i===""?s?e.setProperty(n,""):n==="float"?e.cssFloat="":e[n]="":s?e.setProperty(n,i):typeof i!="number"||i===0||S2.has(n)?n==="float"?e.cssFloat=i:e[n]=(""+i).trim():e[n]=i+"px"}function tp(e,n,i){if(n!=null&&typeof n!="object")throw Error(l(62));if(e=e.style,i!=null){for(var s in i)!i.hasOwnProperty(s)||n!=null&&n.hasOwnProperty(s)||(s.indexOf("--")===0?e.setProperty(s,""):s==="float"?e.cssFloat="":e[s]="");for(var c in n)s=n[c],n.hasOwnProperty(c)&&i[c]!==s&&ep(e,c,s)}else for(var f in n)n.hasOwnProperty(f)&&ep(e,f,n[f])}function lf(e){if(e.indexOf("-")===-1)return!1;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 E2=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),x2=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function Du(e){return x2.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function Sa(){}var sf=null;function uf(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Zi=null,Qi=null;function np(e){var n=ji(e);if(n&&(e=n.stateNode)){var i=e[ln]||null;e:switch(e=n.stateNode,n.type){case"input":if(af(e,i.value,i.defaultValue,i.defaultValue,i.checked,i.defaultChecked,i.type,i.name),n=i.name,i.type==="radio"&&n!=null){for(i=e;i.parentNode;)i=i.parentNode;for(i=i.querySelectorAll('input[name="'+Un(""+n)+'"][type="radio"]'),n=0;n<i.length;n++){var s=i[n];if(s!==e&&s.form===e.form){var c=s[ln]||null;if(!c)throw Error(l(90));af(s,c.value,c.defaultValue,c.defaultValue,c.checked,c.defaultChecked,c.type,c.name)}}for(n=0;n<i.length;n++)s=i[n],s.form===e.form&&Pm(s)}break e;case"textarea":Im(e,i.value,i.defaultValue);break e;case"select":n=i.value,n!=null&&Vi(e,!!i.multiple,n,!1)}}}var of=!1;function ap(e,n,i){if(of)return e(n,i);of=!0;try{var s=e(n);return s}finally{if(of=!1,(Zi!==null||Qi!==null)&&(Eo(),Zi&&(n=Zi,e=Qi,Qi=Zi=null,np(n),e)))for(n=0;n<e.length;n++)np(e[n])}}function is(e,n){var i=e.stateNode;if(i===null)return null;var s=i[ln]||null;if(s===null)return null;i=s[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":(s=!s.disabled)||(e=e.type,s=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!s;break e;default:e=!1}if(e)return null;if(i&&typeof i!="function")throw Error(l(231,n,typeof i));return i}var Ea=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),cf=!1;if(Ea)try{var ls={};Object.defineProperty(ls,"passive",{get:function(){cf=!0}}),window.addEventListener("test",ls,ls),window.removeEventListener("test",ls,ls)}catch{cf=!1}var er=null,ff=null,Uu=null;function rp(){if(Uu)return Uu;var e,n=ff,i=n.length,s,c="value"in er?er.value:er.textContent,f=c.length;for(e=0;e<i&&n[e]===c[e];e++);var p=i-e;for(s=1;s<=p&&n[i-s]===c[f-s];s++);return Uu=c.slice(e,1<s?1-s:void 0)}function Lu(e){var n=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&n===13&&(e=13)):e=n,e===10&&(e=13),32<=e||e===13?e:0}function ju(){return!0}function ip(){return!1}function sn(e){function n(i,s,c,f,p){this._reactName=i,this._targetInst=c,this.type=s,this.nativeEvent=f,this.target=p,this.currentTarget=null;for(var b in e)e.hasOwnProperty(b)&&(i=e[b],this[b]=i?i(f):f[b]);return this.isDefaultPrevented=(f.defaultPrevented!=null?f.defaultPrevented:f.returnValue===!1)?ju:ip,this.isPropagationStopped=ip,this}return v(n.prototype,{preventDefault:function(){this.defaultPrevented=!0;var i=this.nativeEvent;i&&(i.preventDefault?i.preventDefault():typeof i.returnValue!="unknown"&&(i.returnValue=!1),this.isDefaultPrevented=ju)},stopPropagation:function(){var i=this.nativeEvent;i&&(i.stopPropagation?i.stopPropagation():typeof i.cancelBubble!="unknown"&&(i.cancelBubble=!0),this.isPropagationStopped=ju)},persist:function(){},isPersistent:ju}),n}var Fr={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},qu=sn(Fr),ss=v({},Fr,{view:0,detail:0}),w2=sn(ss),df,hf,us,Bu=v({},ss,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:mf,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==us&&(us&&e.type==="mousemove"?(df=e.screenX-us.screenX,hf=e.screenY-us.screenY):hf=df=0,us=e),df)},movementY:function(e){return"movementY"in e?e.movementY:hf}}),lp=sn(Bu),T2=v({},Bu,{dataTransfer:0}),A2=sn(T2),C2=v({},ss,{relatedTarget:0}),yf=sn(C2),O2=v({},Fr,{animationName:0,elapsedTime:0,pseudoElement:0}),R2=sn(O2),M2=v({},Fr,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),k2=sn(M2),z2=v({},Fr,{data:0}),sp=sn(z2),N2={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},D2={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"},U2={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function L2(e){var n=this.nativeEvent;return n.getModifierState?n.getModifierState(e):(e=U2[e])?!!n[e]:!1}function mf(){return L2}var j2=v({},ss,{key:function(e){if(e.key){var n=N2[e.key]||e.key;if(n!=="Unidentified")return n}return e.type==="keypress"?(e=Lu(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?D2[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:mf,charCode:function(e){return e.type==="keypress"?Lu(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?Lu(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),q2=sn(j2),B2=v({},Bu,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),up=sn(B2),V2=v({},ss,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:mf}),H2=sn(V2),Z2=v({},Fr,{propertyName:0,elapsedTime:0,pseudoElement:0}),Q2=sn(Z2),G2=v({},Bu,{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}),Y2=sn(G2),F2=v({},Fr,{newState:0,oldState:0}),X2=sn(F2),$2=[9,13,27,32],pf=Ea&&"CompositionEvent"in window,os=null;Ea&&"documentMode"in document&&(os=document.documentMode);var K2=Ea&&"TextEvent"in window&&!os,op=Ea&&(!pf||os&&8<os&&11>=os),cp=" ",fp=!1;function dp(e,n){switch(e){case"keyup":return $2.indexOf(n.keyCode)!==-1;case"keydown":return n.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function hp(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Gi=!1;function P2(e,n){switch(e){case"compositionend":return hp(n);case"keypress":return n.which!==32?null:(fp=!0,cp);case"textInput":return e=n.data,e===cp&&fp?null:e;default:return null}}function J2(e,n){if(Gi)return e==="compositionend"||!pf&&dp(e,n)?(e=rp(),Uu=ff=er=null,Gi=!1,e):null;switch(e){case"paste":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 op&&n.locale!=="ko"?null:n.data;default:return null}}var I2={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 yp(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n==="input"?!!I2[e.type]:n==="textarea"}function mp(e,n,i,s){Zi?Qi?Qi.push(s):Qi=[s]:Zi=s,n=Ro(n,"onChange"),0<n.length&&(i=new qu("onChange","change",null,i,s),e.push({event:i,listeners:n}))}var cs=null,fs=null;function W2(e){Jg(e,0)}function Vu(e){var n=rs(e);if(Pm(n))return e}function pp(e,n){if(e==="change")return n}var vp=!1;if(Ea){var vf;if(Ea){var gf="oninput"in document;if(!gf){var gp=document.createElement("div");gp.setAttribute("oninput","return;"),gf=typeof gp.oninput=="function"}vf=gf}else vf=!1;vp=vf&&(!document.documentMode||9<document.documentMode)}function bp(){cs&&(cs.detachEvent("onpropertychange",_p),fs=cs=null)}function _p(e){if(e.propertyName==="value"&&Vu(fs)){var n=[];mp(n,fs,e,uf(e)),ap(W2,n)}}function eE(e,n,i){e==="focusin"?(bp(),cs=n,fs=i,cs.attachEvent("onpropertychange",_p)):e==="focusout"&&bp()}function tE(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return Vu(fs)}function nE(e,n){if(e==="click")return Vu(n)}function aE(e,n){if(e==="input"||e==="change")return Vu(n)}function rE(e,n){return e===n&&(e!==0||1/e===1/n)||e!==e&&n!==n}var vn=typeof Object.is=="function"?Object.is:rE;function ds(e,n){if(vn(e,n))return!0;if(typeof e!="object"||e===null||typeof n!="object"||n===null)return!1;var i=Object.keys(e),s=Object.keys(n);if(i.length!==s.length)return!1;for(s=0;s<i.length;s++){var c=i[s];if(!es.call(n,c)||!vn(e[c],n[c]))return!1}return!0}function Sp(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function Ep(e,n){var i=Sp(e);e=0;for(var s;i;){if(i.nodeType===3){if(s=e+i.textContent.length,e<=n&&s>=n)return{node:i,offset:n-e};e=s}e:{for(;i;){if(i.nextSibling){i=i.nextSibling;break e}i=i.parentNode}i=void 0}i=Sp(i)}}function xp(e,n){return e&&n?e===n?!0:e&&e.nodeType===3?!1:n&&n.nodeType===3?xp(e,n.parentNode):"contains"in e?e.contains(n):e.compareDocumentPosition?!!(e.compareDocumentPosition(n)&16):!1:!1}function wp(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var n=Nu(e.document);n instanceof e.HTMLIFrameElement;){try{var i=typeof n.contentWindow.location.href=="string"}catch{i=!1}if(i)e=n.contentWindow;else break;n=Nu(e.document)}return n}function bf(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n&&(n==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||n==="textarea"||e.contentEditable==="true")}var iE=Ea&&"documentMode"in document&&11>=document.documentMode,Yi=null,_f=null,hs=null,Sf=!1;function Tp(e,n,i){var s=i.window===i?i.document:i.nodeType===9?i:i.ownerDocument;Sf||Yi==null||Yi!==Nu(s)||(s=Yi,"selectionStart"in s&&bf(s)?s={start:s.selectionStart,end:s.selectionEnd}:(s=(s.ownerDocument&&s.ownerDocument.defaultView||window).getSelection(),s={anchorNode:s.anchorNode,anchorOffset:s.anchorOffset,focusNode:s.focusNode,focusOffset:s.focusOffset}),hs&&ds(hs,s)||(hs=s,s=Ro(_f,"onSelect"),0<s.length&&(n=new qu("onSelect","select",null,n,i),e.push({event:n,listeners:s}),n.target=Yi)))}function Xr(e,n){var i={};return i[e.toLowerCase()]=n.toLowerCase(),i["Webkit"+e]="webkit"+n,i["Moz"+e]="moz"+n,i}var Fi={animationend:Xr("Animation","AnimationEnd"),animationiteration:Xr("Animation","AnimationIteration"),animationstart:Xr("Animation","AnimationStart"),transitionrun:Xr("Transition","TransitionRun"),transitionstart:Xr("Transition","TransitionStart"),transitioncancel:Xr("Transition","TransitionCancel"),transitionend:Xr("Transition","TransitionEnd")},Ef={},Ap={};Ea&&(Ap=document.createElement("div").style,"AnimationEvent"in window||(delete Fi.animationend.animation,delete Fi.animationiteration.animation,delete Fi.animationstart.animation),"TransitionEvent"in window||delete Fi.transitionend.transition);function $r(e){if(Ef[e])return Ef[e];if(!Fi[e])return e;var n=Fi[e],i;for(i in n)if(n.hasOwnProperty(i)&&i in Ap)return Ef[e]=n[i];return e}var Cp=$r("animationend"),Op=$r("animationiteration"),Rp=$r("animationstart"),lE=$r("transitionrun"),sE=$r("transitionstart"),uE=$r("transitioncancel"),Mp=$r("transitionend"),kp=new Map,xf="abort auxClick beforeToggle 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(" ");xf.push("scrollEnd");function Jn(e,n){kp.set(e,n),Yr(n,[e])}var Hu=typeof reportError=="function"?reportError:function(e){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var n=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof e=="object"&&e!==null&&typeof e.message=="string"?String(e.message):String(e),error:e});if(!window.dispatchEvent(n))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",e);return}console.error(e)},Ln=[],Xi=0,wf=0;function Zu(){for(var e=Xi,n=wf=Xi=0;n<e;){var i=Ln[n];Ln[n++]=null;var s=Ln[n];Ln[n++]=null;var c=Ln[n];Ln[n++]=null;var f=Ln[n];if(Ln[n++]=null,s!==null&&c!==null){var p=s.pending;p===null?c.next=c:(c.next=p.next,p.next=c),s.pending=c}f!==0&&zp(i,c,f)}}function Qu(e,n,i,s){Ln[Xi++]=e,Ln[Xi++]=n,Ln[Xi++]=i,Ln[Xi++]=s,wf|=s,e.lanes|=s,e=e.alternate,e!==null&&(e.lanes|=s)}function Tf(e,n,i,s){return Qu(e,n,i,s),Gu(e)}function Kr(e,n){return Qu(e,null,null,n),Gu(e)}function zp(e,n,i){e.lanes|=i;var s=e.alternate;s!==null&&(s.lanes|=i);for(var c=!1,f=e.return;f!==null;)f.childLanes|=i,s=f.alternate,s!==null&&(s.childLanes|=i),f.tag===22&&(e=f.stateNode,e===null||e._visibility&1||(c=!0)),e=f,f=f.return;return e.tag===3?(f=e.stateNode,c&&n!==null&&(c=31-Ht(i),e=f.hiddenUpdates,s=e[c],s===null?e[c]=[n]:s.push(n),n.lane=i|536870912),f):null}function Gu(e){if(50<Us)throw Us=0,Dd=null,Error(l(185));for(var n=e.return;n!==null;)e=n,n=e.return;return e.tag===3?e.stateNode:null}var $i={};function oE(e,n,i,s){this.tag=e,this.key=i,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=n,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=s,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function gn(e,n,i,s){return new oE(e,n,i,s)}function Af(e){return e=e.prototype,!(!e||!e.isReactComponent)}function xa(e,n){var i=e.alternate;return i===null?(i=gn(e.tag,n,e.key,e.mode),i.elementType=e.elementType,i.type=e.type,i.stateNode=e.stateNode,i.alternate=e,e.alternate=i):(i.pendingProps=n,i.type=e.type,i.flags=0,i.subtreeFlags=0,i.deletions=null),i.flags=e.flags&65011712,i.childLanes=e.childLanes,i.lanes=e.lanes,i.child=e.child,i.memoizedProps=e.memoizedProps,i.memoizedState=e.memoizedState,i.updateQueue=e.updateQueue,n=e.dependencies,i.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext},i.sibling=e.sibling,i.index=e.index,i.ref=e.ref,i.refCleanup=e.refCleanup,i}function Np(e,n){e.flags&=65011714;var i=e.alternate;return i===null?(e.childLanes=0,e.lanes=n,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=i.childLanes,e.lanes=i.lanes,e.child=i.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=i.memoizedProps,e.memoizedState=i.memoizedState,e.updateQueue=i.updateQueue,e.type=i.type,n=i.dependencies,e.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext}),e}function Yu(e,n,i,s,c,f){var p=0;if(s=e,typeof e=="function")Af(e)&&(p=1);else if(typeof e=="string")p=yx(e,i,ue.current)?26:e==="html"||e==="head"||e==="body"?27:5;else e:switch(e){case re:return e=gn(31,i,n,c),e.elementType=re,e.lanes=f,e;case S:return Pr(i.children,c,f,n);case x:p=8,c|=24;break;case M:return e=gn(12,i,n,c|2),e.elementType=M,e.lanes=f,e;case Q:return e=gn(13,i,n,c),e.elementType=Q,e.lanes=f,e;case K:return e=gn(19,i,n,c),e.elementType=K,e.lanes=f,e;default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case Z:p=10;break e;case V:p=9;break e;case q:p=11;break e;case P:p=14;break e;case G:p=16,s=null;break e}p=29,i=Error(l(130,e===null?"null":typeof e,"")),s=null}return n=gn(p,i,n,c),n.elementType=e,n.type=s,n.lanes=f,n}function Pr(e,n,i,s){return e=gn(7,e,s,n),e.lanes=i,e}function Cf(e,n,i){return e=gn(6,e,null,n),e.lanes=i,e}function Dp(e){var n=gn(18,null,null,0);return n.stateNode=e,n}function Of(e,n,i){return n=gn(4,e.children!==null?e.children:[],e.key,n),n.lanes=i,n.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},n}var Up=new WeakMap;function jn(e,n){if(typeof e=="object"&&e!==null){var i=Up.get(e);return i!==void 0?i:(n={value:e,source:n,stack:Tu(n)},Up.set(e,n),n)}return{value:e,source:n,stack:Tu(n)}}var Ki=[],Pi=0,Fu=null,ys=0,qn=[],Bn=0,tr=null,sa=1,ua="";function wa(e,n){Ki[Pi++]=ys,Ki[Pi++]=Fu,Fu=e,ys=n}function Lp(e,n,i){qn[Bn++]=sa,qn[Bn++]=ua,qn[Bn++]=tr,tr=e;var s=sa;e=ua;var c=32-Ht(s)-1;s&=~(1<<c),i+=1;var f=32-Ht(n)+c;if(30<f){var p=c-c%5;f=(s&(1<<p)-1).toString(32),s>>=p,c-=p,sa=1<<32-Ht(n)+c|i<<c|s,ua=f+e}else sa=1<<f|i<<c|s,ua=e}function Rf(e){e.return!==null&&(wa(e,1),Lp(e,1,0))}function Mf(e){for(;e===Fu;)Fu=Ki[--Pi],Ki[Pi]=null,ys=Ki[--Pi],Ki[Pi]=null;for(;e===tr;)tr=qn[--Bn],qn[Bn]=null,ua=qn[--Bn],qn[Bn]=null,sa=qn[--Bn],qn[Bn]=null}function jp(e,n){qn[Bn++]=sa,qn[Bn++]=ua,qn[Bn++]=tr,sa=n.id,ua=n.overflow,tr=e}var Qt=null,ot=null,Fe=!1,nr=null,Vn=!1,kf=Error(l(519));function ar(e){var n=Error(l(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw ms(jn(n,e)),kf}function qp(e){var n=e.stateNode,i=e.type,s=e.memoizedProps;switch(n[Zt]=e,n[ln]=s,i){case"dialog":Qe("cancel",n),Qe("close",n);break;case"iframe":case"object":case"embed":Qe("load",n);break;case"video":case"audio":for(i=0;i<js.length;i++)Qe(js[i],n);break;case"source":Qe("error",n);break;case"img":case"image":case"link":Qe("error",n),Qe("load",n);break;case"details":Qe("toggle",n);break;case"input":Qe("invalid",n),Jm(n,s.value,s.defaultValue,s.checked,s.defaultChecked,s.type,s.name,!0);break;case"select":Qe("invalid",n);break;case"textarea":Qe("invalid",n),Wm(n,s.value,s.defaultValue,s.children)}i=s.children,typeof i!="string"&&typeof i!="number"&&typeof i!="bigint"||n.textContent===""+i||s.suppressHydrationWarning===!0||t0(n.textContent,i)?(s.popover!=null&&(Qe("beforetoggle",n),Qe("toggle",n)),s.onScroll!=null&&Qe("scroll",n),s.onScrollEnd!=null&&Qe("scrollend",n),s.onClick!=null&&(n.onclick=Sa),n=!0):n=!1,n||ar(e,!0)}function Bp(e){for(Qt=e.return;Qt;)switch(Qt.tag){case 5:case 31:case 13:Vn=!1;return;case 27:case 3:Vn=!0;return;default:Qt=Qt.return}}function Ji(e){if(e!==Qt)return!1;if(!Fe)return Bp(e),Fe=!0,!1;var n=e.tag,i;if((i=n!==3&&n!==27)&&((i=n===5)&&(i=e.type,i=!(i!=="form"&&i!=="button")||Kd(e.type,e.memoizedProps)),i=!i),i&&ot&&ar(e),Bp(e),n===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(l(317));ot=c0(e)}else if(n===31){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(l(317));ot=c0(e)}else n===27?(n=ot,vr(e.type)?(e=eh,eh=null,ot=e):ot=n):ot=Qt?Zn(e.stateNode.nextSibling):null;return!0}function Jr(){ot=Qt=null,Fe=!1}function zf(){var e=nr;return e!==null&&(fn===null?fn=e:fn.push.apply(fn,e),nr=null),e}function ms(e){nr===null?nr=[e]:nr.push(e)}var Nf=R(null),Ir=null,Ta=null;function rr(e,n,i){ae(Nf,n._currentValue),n._currentValue=i}function Aa(e){e._currentValue=Nf.current,X(Nf)}function Df(e,n,i){for(;e!==null;){var s=e.alternate;if((e.childLanes&n)!==n?(e.childLanes|=n,s!==null&&(s.childLanes|=n)):s!==null&&(s.childLanes&n)!==n&&(s.childLanes|=n),e===i)break;e=e.return}}function Uf(e,n,i,s){var c=e.child;for(c!==null&&(c.return=e);c!==null;){var f=c.dependencies;if(f!==null){var p=c.child;f=f.firstContext;e:for(;f!==null;){var b=f;f=c;for(var T=0;T<n.length;T++)if(b.context===n[T]){f.lanes|=i,b=f.alternate,b!==null&&(b.lanes|=i),Df(f.return,i,e),s||(p=null);break e}f=b.next}}else if(c.tag===18){if(p=c.return,p===null)throw Error(l(341));p.lanes|=i,f=p.alternate,f!==null&&(f.lanes|=i),Df(p,i,e),p=null}else p=c.child;if(p!==null)p.return=c;else for(p=c;p!==null;){if(p===e){p=null;break}if(c=p.sibling,c!==null){c.return=p.return,p=c;break}p=p.return}c=p}}function Ii(e,n,i,s){e=null;for(var c=n,f=!1;c!==null;){if(!f){if((c.flags&524288)!==0)f=!0;else if((c.flags&262144)!==0)break}if(c.tag===10){var p=c.alternate;if(p===null)throw Error(l(387));if(p=p.memoizedProps,p!==null){var b=c.type;vn(c.pendingProps.value,p.value)||(e!==null?e.push(b):e=[b])}}else if(c===Ve.current){if(p=c.alternate,p===null)throw Error(l(387));p.memoizedState.memoizedState!==c.memoizedState.memoizedState&&(e!==null?e.push(Zs):e=[Zs])}c=c.return}e!==null&&Uf(n,e,i,s),n.flags|=262144}function Xu(e){for(e=e.firstContext;e!==null;){if(!vn(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Wr(e){Ir=e,Ta=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function Gt(e){return Vp(Ir,e)}function $u(e,n){return Ir===null&&Wr(e),Vp(e,n)}function Vp(e,n){var i=n._currentValue;if(n={context:n,memoizedValue:i,next:null},Ta===null){if(e===null)throw Error(l(308));Ta=n,e.dependencies={lanes:0,firstContext:n},e.flags|=524288}else Ta=Ta.next=n;return i}var cE=typeof AbortController<"u"?AbortController:function(){var e=[],n=this.signal={aborted:!1,addEventListener:function(i,s){e.push(s)}};this.abort=function(){n.aborted=!0,e.forEach(function(i){return i()})}},fE=t.unstable_scheduleCallback,dE=t.unstable_NormalPriority,At={$$typeof:Z,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function Lf(){return{controller:new cE,data:new Map,refCount:0}}function ps(e){e.refCount--,e.refCount===0&&fE(dE,function(){e.controller.abort()})}var vs=null,jf=0,Wi=0,el=null;function hE(e,n){if(vs===null){var i=vs=[];jf=0,Wi=Vd(),el={status:"pending",value:void 0,then:function(s){i.push(s)}}}return jf++,n.then(Hp,Hp),n}function Hp(){if(--jf===0&&vs!==null){el!==null&&(el.status="fulfilled");var e=vs;vs=null,Wi=0,el=null;for(var n=0;n<e.length;n++)(0,e[n])()}}function yE(e,n){var i=[],s={status:"pending",value:null,reason:null,then:function(c){i.push(c)}};return e.then(function(){s.status="fulfilled",s.value=n;for(var c=0;c<i.length;c++)(0,i[c])(n)},function(c){for(s.status="rejected",s.reason=c,c=0;c<i.length;c++)(0,i[c])(void 0)}),s}var Zp=B.S;B.S=function(e,n){Tg=L(),typeof n=="object"&&n!==null&&typeof n.then=="function"&&hE(e,n),Zp!==null&&Zp(e,n)};var ei=R(null);function qf(){var e=ei.current;return e!==null?e:st.pooledCache}function Ku(e,n){n===null?ae(ei,ei.current):ae(ei,n.pool)}function Qp(){var e=qf();return e===null?null:{parent:At._currentValue,pool:e}}var tl=Error(l(460)),Bf=Error(l(474)),Pu=Error(l(542)),Ju={then:function(){}};function Gp(e){return e=e.status,e==="fulfilled"||e==="rejected"}function Yp(e,n,i){switch(i=e[i],i===void 0?e.push(n):i!==n&&(n.then(Sa,Sa),n=i),n.status){case"fulfilled":return n.value;case"rejected":throw e=n.reason,Xp(e),e;default:if(typeof n.status=="string")n.then(Sa,Sa);else{if(e=st,e!==null&&100<e.shellSuspendCounter)throw Error(l(482));e=n,e.status="pending",e.then(function(s){if(n.status==="pending"){var c=n;c.status="fulfilled",c.value=s}},function(s){if(n.status==="pending"){var c=n;c.status="rejected",c.reason=s}})}switch(n.status){case"fulfilled":return n.value;case"rejected":throw e=n.reason,Xp(e),e}throw ni=n,tl}}function ti(e){try{var n=e._init;return n(e._payload)}catch(i){throw i!==null&&typeof i=="object"&&typeof i.then=="function"?(ni=i,tl):i}}var ni=null;function Fp(){if(ni===null)throw Error(l(459));var e=ni;return ni=null,e}function Xp(e){if(e===tl||e===Pu)throw Error(l(483))}var nl=null,gs=0;function Iu(e){var n=gs;return gs+=1,nl===null&&(nl=[]),Yp(nl,e,n)}function bs(e,n){n=n.props.ref,e.ref=n!==void 0?n:null}function Wu(e,n){throw n.$$typeof===E?Error(l(525)):(e=Object.prototype.toString.call(n),Error(l(31,e==="[object Object]"?"object with keys {"+Object.keys(n).join(", ")+"}":e)))}function $p(e){function n(k,O){if(e){var D=k.deletions;D===null?(k.deletions=[O],k.flags|=16):D.push(O)}}function i(k,O){if(!e)return null;for(;O!==null;)n(k,O),O=O.sibling;return null}function s(k){for(var O=new Map;k!==null;)k.key!==null?O.set(k.key,k):O.set(k.index,k),k=k.sibling;return O}function c(k,O){return k=xa(k,O),k.index=0,k.sibling=null,k}function f(k,O,D){return k.index=D,e?(D=k.alternate,D!==null?(D=D.index,D<O?(k.flags|=67108866,O):D):(k.flags|=67108866,O)):(k.flags|=1048576,O)}function p(k){return e&&k.alternate===null&&(k.flags|=67108866),k}function b(k,O,D,F){return O===null||O.tag!==6?(O=Cf(D,k.mode,F),O.return=k,O):(O=c(O,D),O.return=k,O)}function T(k,O,D,F){var xe=D.type;return xe===S?Y(k,O,D.props.children,F,D.key):O!==null&&(O.elementType===xe||typeof xe=="object"&&xe!==null&&xe.$$typeof===G&&ti(xe)===O.type)?(O=c(O,D.props),bs(O,D),O.return=k,O):(O=Yu(D.type,D.key,D.props,null,k.mode,F),bs(O,D),O.return=k,O)}function U(k,O,D,F){return O===null||O.tag!==4||O.stateNode.containerInfo!==D.containerInfo||O.stateNode.implementation!==D.implementation?(O=Of(D,k.mode,F),O.return=k,O):(O=c(O,D.children||[]),O.return=k,O)}function Y(k,O,D,F,xe){return O===null||O.tag!==7?(O=Pr(D,k.mode,F,xe),O.return=k,O):(O=c(O,D),O.return=k,O)}function $(k,O,D){if(typeof O=="string"&&O!==""||typeof O=="number"||typeof O=="bigint")return O=Cf(""+O,k.mode,D),O.return=k,O;if(typeof O=="object"&&O!==null){switch(O.$$typeof){case _:return D=Yu(O.type,O.key,O.props,null,k.mode,D),bs(D,O),D.return=k,D;case w:return O=Of(O,k.mode,D),O.return=k,O;case G:return O=ti(O),$(k,O,D)}if(Ce(O)||ne(O))return O=Pr(O,k.mode,D,null),O.return=k,O;if(typeof O.then=="function")return $(k,Iu(O),D);if(O.$$typeof===Z)return $(k,$u(k,O),D);Wu(k,O)}return null}function j(k,O,D,F){var xe=O!==null?O.key:null;if(typeof D=="string"&&D!==""||typeof D=="number"||typeof D=="bigint")return xe!==null?null:b(k,O,""+D,F);if(typeof D=="object"&&D!==null){switch(D.$$typeof){case _:return D.key===xe?T(k,O,D,F):null;case w:return D.key===xe?U(k,O,D,F):null;case G:return D=ti(D),j(k,O,D,F)}if(Ce(D)||ne(D))return xe!==null?null:Y(k,O,D,F,null);if(typeof D.then=="function")return j(k,O,Iu(D),F);if(D.$$typeof===Z)return j(k,O,$u(k,D),F);Wu(k,D)}return null}function H(k,O,D,F,xe){if(typeof F=="string"&&F!==""||typeof F=="number"||typeof F=="bigint")return k=k.get(D)||null,b(O,k,""+F,xe);if(typeof F=="object"&&F!==null){switch(F.$$typeof){case _:return k=k.get(F.key===null?D:F.key)||null,T(O,k,F,xe);case w:return k=k.get(F.key===null?D:F.key)||null,U(O,k,F,xe);case G:return F=ti(F),H(k,O,D,F,xe)}if(Ce(F)||ne(F))return k=k.get(D)||null,Y(O,k,F,xe,null);if(typeof F.then=="function")return H(k,O,D,Iu(F),xe);if(F.$$typeof===Z)return H(k,O,D,$u(O,F),xe);Wu(O,F)}return null}function ce(k,O,D,F){for(var xe=null,Pe=null,be=O,Le=O=0,Ye=null;be!==null&&Le<D.length;Le++){be.index>Le?(Ye=be,be=null):Ye=be.sibling;var Je=j(k,be,D[Le],F);if(Je===null){be===null&&(be=Ye);break}e&&be&&Je.alternate===null&&n(k,be),O=f(Je,O,Le),Pe===null?xe=Je:Pe.sibling=Je,Pe=Je,be=Ye}if(Le===D.length)return i(k,be),Fe&&wa(k,Le),xe;if(be===null){for(;Le<D.length;Le++)be=$(k,D[Le],F),be!==null&&(O=f(be,O,Le),Pe===null?xe=be:Pe.sibling=be,Pe=be);return Fe&&wa(k,Le),xe}for(be=s(be);Le<D.length;Le++)Ye=H(be,k,Le,D[Le],F),Ye!==null&&(e&&Ye.alternate!==null&&be.delete(Ye.key===null?Le:Ye.key),O=f(Ye,O,Le),Pe===null?xe=Ye:Pe.sibling=Ye,Pe=Ye);return e&&be.forEach(function(Er){return n(k,Er)}),Fe&&wa(k,Le),xe}function Te(k,O,D,F){if(D==null)throw Error(l(151));for(var xe=null,Pe=null,be=O,Le=O=0,Ye=null,Je=D.next();be!==null&&!Je.done;Le++,Je=D.next()){be.index>Le?(Ye=be,be=null):Ye=be.sibling;var Er=j(k,be,Je.value,F);if(Er===null){be===null&&(be=Ye);break}e&&be&&Er.alternate===null&&n(k,be),O=f(Er,O,Le),Pe===null?xe=Er:Pe.sibling=Er,Pe=Er,be=Ye}if(Je.done)return i(k,be),Fe&&wa(k,Le),xe;if(be===null){for(;!Je.done;Le++,Je=D.next())Je=$(k,Je.value,F),Je!==null&&(O=f(Je,O,Le),Pe===null?xe=Je:Pe.sibling=Je,Pe=Je);return Fe&&wa(k,Le),xe}for(be=s(be);!Je.done;Le++,Je=D.next())Je=H(be,k,Le,Je.value,F),Je!==null&&(e&&Je.alternate!==null&&be.delete(Je.key===null?Le:Je.key),O=f(Je,O,Le),Pe===null?xe=Je:Pe.sibling=Je,Pe=Je);return e&&be.forEach(function(Tx){return n(k,Tx)}),Fe&&wa(k,Le),xe}function it(k,O,D,F){if(typeof D=="object"&&D!==null&&D.type===S&&D.key===null&&(D=D.props.children),typeof D=="object"&&D!==null){switch(D.$$typeof){case _:e:{for(var xe=D.key;O!==null;){if(O.key===xe){if(xe=D.type,xe===S){if(O.tag===7){i(k,O.sibling),F=c(O,D.props.children),F.return=k,k=F;break e}}else if(O.elementType===xe||typeof xe=="object"&&xe!==null&&xe.$$typeof===G&&ti(xe)===O.type){i(k,O.sibling),F=c(O,D.props),bs(F,D),F.return=k,k=F;break e}i(k,O);break}else n(k,O);O=O.sibling}D.type===S?(F=Pr(D.props.children,k.mode,F,D.key),F.return=k,k=F):(F=Yu(D.type,D.key,D.props,null,k.mode,F),bs(F,D),F.return=k,k=F)}return p(k);case w:e:{for(xe=D.key;O!==null;){if(O.key===xe)if(O.tag===4&&O.stateNode.containerInfo===D.containerInfo&&O.stateNode.implementation===D.implementation){i(k,O.sibling),F=c(O,D.children||[]),F.return=k,k=F;break e}else{i(k,O);break}else n(k,O);O=O.sibling}F=Of(D,k.mode,F),F.return=k,k=F}return p(k);case G:return D=ti(D),it(k,O,D,F)}if(Ce(D))return ce(k,O,D,F);if(ne(D)){if(xe=ne(D),typeof xe!="function")throw Error(l(150));return D=xe.call(D),Te(k,O,D,F)}if(typeof D.then=="function")return it(k,O,Iu(D),F);if(D.$$typeof===Z)return it(k,O,$u(k,D),F);Wu(k,D)}return typeof D=="string"&&D!==""||typeof D=="number"||typeof D=="bigint"?(D=""+D,O!==null&&O.tag===6?(i(k,O.sibling),F=c(O,D),F.return=k,k=F):(i(k,O),F=Cf(D,k.mode,F),F.return=k,k=F),p(k)):i(k,O)}return function(k,O,D,F){try{gs=0;var xe=it(k,O,D,F);return nl=null,xe}catch(be){if(be===tl||be===Pu)throw be;var Pe=gn(29,be,null,k.mode);return Pe.lanes=F,Pe.return=k,Pe}finally{}}}var ai=$p(!0),Kp=$p(!1),ir=!1;function Vf(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Hf(e,n){e=e.updateQueue,n.updateQueue===e&&(n.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function lr(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function sr(e,n,i){var s=e.updateQueue;if(s===null)return null;if(s=s.shared,(We&2)!==0){var c=s.pending;return c===null?n.next=n:(n.next=c.next,c.next=n),s.pending=n,n=Gu(e),zp(e,null,i),n}return Qu(e,s,n,i),Gu(e)}function _s(e,n,i){if(n=n.updateQueue,n!==null&&(n=n.shared,(i&4194048)!==0)){var s=n.lanes;s&=e.pendingLanes,i|=s,n.lanes=i,Vm(e,i)}}function Zf(e,n){var i=e.updateQueue,s=e.alternate;if(s!==null&&(s=s.updateQueue,i===s)){var c=null,f=null;if(i=i.firstBaseUpdate,i!==null){do{var p={lane:i.lane,tag:i.tag,payload:i.payload,callback:null,next:null};f===null?c=f=p:f=f.next=p,i=i.next}while(i!==null);f===null?c=f=n:f=f.next=n}else c=f=n;i={baseState:s.baseState,firstBaseUpdate:c,lastBaseUpdate:f,shared:s.shared,callbacks:s.callbacks},e.updateQueue=i;return}e=i.lastBaseUpdate,e===null?i.firstBaseUpdate=n:e.next=n,i.lastBaseUpdate=n}var Qf=!1;function Ss(){if(Qf){var e=el;if(e!==null)throw e}}function Es(e,n,i,s){Qf=!1;var c=e.updateQueue;ir=!1;var f=c.firstBaseUpdate,p=c.lastBaseUpdate,b=c.shared.pending;if(b!==null){c.shared.pending=null;var T=b,U=T.next;T.next=null,p===null?f=U:p.next=U,p=T;var Y=e.alternate;Y!==null&&(Y=Y.updateQueue,b=Y.lastBaseUpdate,b!==p&&(b===null?Y.firstBaseUpdate=U:b.next=U,Y.lastBaseUpdate=T))}if(f!==null){var $=c.baseState;p=0,Y=U=T=null,b=f;do{var j=b.lane&-536870913,H=j!==b.lane;if(H?(Ge&j)===j:(s&j)===j){j!==0&&j===Wi&&(Qf=!0),Y!==null&&(Y=Y.next={lane:0,tag:b.tag,payload:b.payload,callback:null,next:null});e:{var ce=e,Te=b;j=n;var it=i;switch(Te.tag){case 1:if(ce=Te.payload,typeof ce=="function"){$=ce.call(it,$,j);break e}$=ce;break e;case 3:ce.flags=ce.flags&-65537|128;case 0:if(ce=Te.payload,j=typeof ce=="function"?ce.call(it,$,j):ce,j==null)break e;$=v({},$,j);break e;case 2:ir=!0}}j=b.callback,j!==null&&(e.flags|=64,H&&(e.flags|=8192),H=c.callbacks,H===null?c.callbacks=[j]:H.push(j))}else H={lane:j,tag:b.tag,payload:b.payload,callback:b.callback,next:null},Y===null?(U=Y=H,T=$):Y=Y.next=H,p|=j;if(b=b.next,b===null){if(b=c.shared.pending,b===null)break;H=b,b=H.next,H.next=null,c.lastBaseUpdate=H,c.shared.pending=null}}while(!0);Y===null&&(T=$),c.baseState=T,c.firstBaseUpdate=U,c.lastBaseUpdate=Y,f===null&&(c.shared.lanes=0),dr|=p,e.lanes=p,e.memoizedState=$}}function Pp(e,n){if(typeof e!="function")throw Error(l(191,e));e.call(n)}function Jp(e,n){var i=e.callbacks;if(i!==null)for(e.callbacks=null,e=0;e<i.length;e++)Pp(i[e],n)}var al=R(null),eo=R(0);function Ip(e,n){e=Ua,ae(eo,e),ae(al,n),Ua=e|n.baseLanes}function Gf(){ae(eo,Ua),ae(al,al.current)}function Yf(){Ua=eo.current,X(al),X(eo)}var bn=R(null),Hn=null;function ur(e){var n=e.alternate;ae(_t,_t.current&1),ae(bn,e),Hn===null&&(n===null||al.current!==null||n.memoizedState!==null)&&(Hn=e)}function Ff(e){ae(_t,_t.current),ae(bn,e),Hn===null&&(Hn=e)}function Wp(e){e.tag===22?(ae(_t,_t.current),ae(bn,e),Hn===null&&(Hn=e)):or()}function or(){ae(_t,_t.current),ae(bn,bn.current)}function _n(e){X(bn),Hn===e&&(Hn=null),X(_t)}var _t=R(0);function to(e){for(var n=e;n!==null;){if(n.tag===13){var i=n.memoizedState;if(i!==null&&(i=i.dehydrated,i===null||Id(i)||Wd(i)))return n}else if(n.tag===19&&(n.memoizedProps.revealOrder==="forwards"||n.memoizedProps.revealOrder==="backwards"||n.memoizedProps.revealOrder==="unstable_legacy-backwards"||n.memoizedProps.revealOrder==="together")){if((n.flags&128)!==0)return n}else if(n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}return null}var Ca=0,Ue=null,at=null,Ct=null,no=!1,rl=!1,ri=!1,ao=0,xs=0,il=null,mE=0;function vt(){throw Error(l(321))}function Xf(e,n){if(n===null)return!1;for(var i=0;i<n.length&&i<e.length;i++)if(!vn(e[i],n[i]))return!1;return!0}function $f(e,n,i,s,c,f){return Ca=f,Ue=n,n.memoizedState=null,n.updateQueue=null,n.lanes=0,B.H=e===null||e.memoizedState===null?Lv:od,ri=!1,f=i(s,c),ri=!1,rl&&(f=tv(n,i,s,c)),ev(e),f}function ev(e){B.H=As;var n=at!==null&&at.next!==null;if(Ca=0,Ct=at=Ue=null,no=!1,xs=0,il=null,n)throw Error(l(300));e===null||Ot||(e=e.dependencies,e!==null&&Xu(e)&&(Ot=!0))}function tv(e,n,i,s){Ue=e;var c=0;do{if(rl&&(il=null),xs=0,rl=!1,25<=c)throw Error(l(301));if(c+=1,Ct=at=null,e.updateQueue!=null){var f=e.updateQueue;f.lastEffect=null,f.events=null,f.stores=null,f.memoCache!=null&&(f.memoCache.index=0)}B.H=jv,f=n(i,s)}while(rl);return f}function pE(){var e=B.H,n=e.useState()[0];return n=typeof n.then=="function"?ws(n):n,e=e.useState()[0],(at!==null?at.memoizedState:null)!==e&&(Ue.flags|=1024),n}function Kf(){var e=ao!==0;return ao=0,e}function Pf(e,n,i){n.updateQueue=e.updateQueue,n.flags&=-2053,e.lanes&=~i}function Jf(e){if(no){for(e=e.memoizedState;e!==null;){var n=e.queue;n!==null&&(n.pending=null),e=e.next}no=!1}Ca=0,Ct=at=Ue=null,rl=!1,xs=ao=0,il=null}function Wt(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Ct===null?Ue.memoizedState=Ct=e:Ct=Ct.next=e,Ct}function St(){if(at===null){var e=Ue.alternate;e=e!==null?e.memoizedState:null}else e=at.next;var n=Ct===null?Ue.memoizedState:Ct.next;if(n!==null)Ct=n,at=e;else{if(e===null)throw Ue.alternate===null?Error(l(467)):Error(l(310));at=e,e={memoizedState:at.memoizedState,baseState:at.baseState,baseQueue:at.baseQueue,queue:at.queue,next:null},Ct===null?Ue.memoizedState=Ct=e:Ct=Ct.next=e}return Ct}function ro(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function ws(e){var n=xs;return xs+=1,il===null&&(il=[]),e=Yp(il,e,n),n=Ue,(Ct===null?n.memoizedState:Ct.next)===null&&(n=n.alternate,B.H=n===null||n.memoizedState===null?Lv:od),e}function io(e){if(e!==null&&typeof e=="object"){if(typeof e.then=="function")return ws(e);if(e.$$typeof===Z)return Gt(e)}throw Error(l(438,String(e)))}function If(e){var n=null,i=Ue.updateQueue;if(i!==null&&(n=i.memoCache),n==null){var s=Ue.alternate;s!==null&&(s=s.updateQueue,s!==null&&(s=s.memoCache,s!=null&&(n={data:s.data.map(function(c){return c.slice()}),index:0})))}if(n==null&&(n={data:[],index:0}),i===null&&(i=ro(),Ue.updateQueue=i),i.memoCache=n,i=n.data[n.index],i===void 0)for(i=n.data[n.index]=Array(e),s=0;s<e;s++)i[s]=ze;return n.index++,i}function Oa(e,n){return typeof n=="function"?n(e):n}function lo(e){var n=St();return Wf(n,at,e)}function Wf(e,n,i){var s=e.queue;if(s===null)throw Error(l(311));s.lastRenderedReducer=i;var c=e.baseQueue,f=s.pending;if(f!==null){if(c!==null){var p=c.next;c.next=f.next,f.next=p}n.baseQueue=c=f,s.pending=null}if(f=e.baseState,c===null)e.memoizedState=f;else{n=c.next;var b=p=null,T=null,U=n,Y=!1;do{var $=U.lane&-536870913;if($!==U.lane?(Ge&$)===$:(Ca&$)===$){var j=U.revertLane;if(j===0)T!==null&&(T=T.next={lane:0,revertLane:0,gesture:null,action:U.action,hasEagerState:U.hasEagerState,eagerState:U.eagerState,next:null}),$===Wi&&(Y=!0);else if((Ca&j)===j){U=U.next,j===Wi&&(Y=!0);continue}else $={lane:0,revertLane:U.revertLane,gesture:null,action:U.action,hasEagerState:U.hasEagerState,eagerState:U.eagerState,next:null},T===null?(b=T=$,p=f):T=T.next=$,Ue.lanes|=j,dr|=j;$=U.action,ri&&i(f,$),f=U.hasEagerState?U.eagerState:i(f,$)}else j={lane:$,revertLane:U.revertLane,gesture:U.gesture,action:U.action,hasEagerState:U.hasEagerState,eagerState:U.eagerState,next:null},T===null?(b=T=j,p=f):T=T.next=j,Ue.lanes|=$,dr|=$;U=U.next}while(U!==null&&U!==n);if(T===null?p=f:T.next=b,!vn(f,e.memoizedState)&&(Ot=!0,Y&&(i=el,i!==null)))throw i;e.memoizedState=f,e.baseState=p,e.baseQueue=T,s.lastRenderedState=f}return c===null&&(s.lanes=0),[e.memoizedState,s.dispatch]}function ed(e){var n=St(),i=n.queue;if(i===null)throw Error(l(311));i.lastRenderedReducer=e;var s=i.dispatch,c=i.pending,f=n.memoizedState;if(c!==null){i.pending=null;var p=c=c.next;do f=e(f,p.action),p=p.next;while(p!==c);vn(f,n.memoizedState)||(Ot=!0),n.memoizedState=f,n.baseQueue===null&&(n.baseState=f),i.lastRenderedState=f}return[f,s]}function nv(e,n,i){var s=Ue,c=St(),f=Fe;if(f){if(i===void 0)throw Error(l(407));i=i()}else i=n();var p=!vn((at||c).memoizedState,i);if(p&&(c.memoizedState=i,Ot=!0),c=c.queue,ad(iv.bind(null,s,c,e),[e]),c.getSnapshot!==n||p||Ct!==null&&Ct.memoizedState.tag&1){if(s.flags|=2048,ll(9,{destroy:void 0},rv.bind(null,s,c,i,n),null),st===null)throw Error(l(349));f||(Ca&127)!==0||av(s,n,i)}return i}function av(e,n,i){e.flags|=16384,e={getSnapshot:n,value:i},n=Ue.updateQueue,n===null?(n=ro(),Ue.updateQueue=n,n.stores=[e]):(i=n.stores,i===null?n.stores=[e]:i.push(e))}function rv(e,n,i,s){n.value=i,n.getSnapshot=s,lv(n)&&sv(e)}function iv(e,n,i){return i(function(){lv(n)&&sv(e)})}function lv(e){var n=e.getSnapshot;e=e.value;try{var i=n();return!vn(e,i)}catch{return!0}}function sv(e){var n=Kr(e,2);n!==null&&dn(n,e,2)}function td(e){var n=Wt();if(typeof e=="function"){var i=e;if(e=i(),ri){Nn(!0);try{i()}finally{Nn(!1)}}}return n.memoizedState=n.baseState=e,n.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Oa,lastRenderedState:e},n}function uv(e,n,i,s){return e.baseState=i,Wf(e,at,typeof s=="function"?s:Oa)}function vE(e,n,i,s,c){if(oo(e))throw Error(l(485));if(e=n.action,e!==null){var f={payload:c,action:e,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(p){f.listeners.push(p)}};B.T!==null?i(!0):f.isTransition=!1,s(f),i=n.pending,i===null?(f.next=n.pending=f,ov(n,f)):(f.next=i.next,n.pending=i.next=f)}}function ov(e,n){var i=n.action,s=n.payload,c=e.state;if(n.isTransition){var f=B.T,p={};B.T=p;try{var b=i(c,s),T=B.S;T!==null&&T(p,b),cv(e,n,b)}catch(U){nd(e,n,U)}finally{f!==null&&p.types!==null&&(f.types=p.types),B.T=f}}else try{f=i(c,s),cv(e,n,f)}catch(U){nd(e,n,U)}}function cv(e,n,i){i!==null&&typeof i=="object"&&typeof i.then=="function"?i.then(function(s){fv(e,n,s)},function(s){return nd(e,n,s)}):fv(e,n,i)}function fv(e,n,i){n.status="fulfilled",n.value=i,dv(n),e.state=i,n=e.pending,n!==null&&(i=n.next,i===n?e.pending=null:(i=i.next,n.next=i,ov(e,i)))}function nd(e,n,i){var s=e.pending;if(e.pending=null,s!==null){s=s.next;do n.status="rejected",n.reason=i,dv(n),n=n.next;while(n!==s)}e.action=null}function dv(e){e=e.listeners;for(var n=0;n<e.length;n++)(0,e[n])()}function hv(e,n){return n}function yv(e,n){if(Fe){var i=st.formState;if(i!==null){e:{var s=Ue;if(Fe){if(ot){t:{for(var c=ot,f=Vn;c.nodeType!==8;){if(!f){c=null;break t}if(c=Zn(c.nextSibling),c===null){c=null;break t}}f=c.data,c=f==="F!"||f==="F"?c:null}if(c){ot=Zn(c.nextSibling),s=c.data==="F!";break e}}ar(s)}s=!1}s&&(n=i[0])}}return i=Wt(),i.memoizedState=i.baseState=n,s={pending:null,lanes:0,dispatch:null,lastRenderedReducer:hv,lastRenderedState:n},i.queue=s,i=Nv.bind(null,Ue,s),s.dispatch=i,s=td(!1),f=ud.bind(null,Ue,!1,s.queue),s=Wt(),c={state:n,dispatch:null,action:e,pending:null},s.queue=c,i=vE.bind(null,Ue,c,f,i),c.dispatch=i,s.memoizedState=e,[n,i,!1]}function mv(e){var n=St();return pv(n,at,e)}function pv(e,n,i){if(n=Wf(e,n,hv)[0],e=lo(Oa)[0],typeof n=="object"&&n!==null&&typeof n.then=="function")try{var s=ws(n)}catch(p){throw p===tl?Pu:p}else s=n;n=St();var c=n.queue,f=c.dispatch;return i!==n.memoizedState&&(Ue.flags|=2048,ll(9,{destroy:void 0},gE.bind(null,c,i),null)),[s,f,e]}function gE(e,n){e.action=n}function vv(e){var n=St(),i=at;if(i!==null)return pv(n,i,e);St(),n=n.memoizedState,i=St();var s=i.queue.dispatch;return i.memoizedState=e,[n,s,!1]}function ll(e,n,i,s){return e={tag:e,create:i,deps:s,inst:n,next:null},n=Ue.updateQueue,n===null&&(n=ro(),Ue.updateQueue=n),i=n.lastEffect,i===null?n.lastEffect=e.next=e:(s=i.next,i.next=e,e.next=s,n.lastEffect=e),e}function gv(){return St().memoizedState}function so(e,n,i,s){var c=Wt();Ue.flags|=e,c.memoizedState=ll(1|n,{destroy:void 0},i,s===void 0?null:s)}function uo(e,n,i,s){var c=St();s=s===void 0?null:s;var f=c.memoizedState.inst;at!==null&&s!==null&&Xf(s,at.memoizedState.deps)?c.memoizedState=ll(n,f,i,s):(Ue.flags|=e,c.memoizedState=ll(1|n,f,i,s))}function bv(e,n){so(8390656,8,e,n)}function ad(e,n){uo(2048,8,e,n)}function bE(e){Ue.flags|=4;var n=Ue.updateQueue;if(n===null)n=ro(),Ue.updateQueue=n,n.events=[e];else{var i=n.events;i===null?n.events=[e]:i.push(e)}}function _v(e){var n=St().memoizedState;return bE({ref:n,nextImpl:e}),function(){if((We&2)!==0)throw Error(l(440));return n.impl.apply(void 0,arguments)}}function Sv(e,n){return uo(4,2,e,n)}function Ev(e,n){return uo(4,4,e,n)}function xv(e,n){if(typeof n=="function"){e=e();var i=n(e);return function(){typeof i=="function"?i():n(null)}}if(n!=null)return e=e(),n.current=e,function(){n.current=null}}function wv(e,n,i){i=i!=null?i.concat([e]):null,uo(4,4,xv.bind(null,n,e),i)}function rd(){}function Tv(e,n){var i=St();n=n===void 0?null:n;var s=i.memoizedState;return n!==null&&Xf(n,s[1])?s[0]:(i.memoizedState=[e,n],e)}function Av(e,n){var i=St();n=n===void 0?null:n;var s=i.memoizedState;if(n!==null&&Xf(n,s[1]))return s[0];if(s=e(),ri){Nn(!0);try{e()}finally{Nn(!1)}}return i.memoizedState=[s,n],s}function id(e,n,i){return i===void 0||(Ca&1073741824)!==0&&(Ge&261930)===0?e.memoizedState=n:(e.memoizedState=i,e=Cg(),Ue.lanes|=e,dr|=e,i)}function Cv(e,n,i,s){return vn(i,n)?i:al.current!==null?(e=id(e,i,s),vn(e,n)||(Ot=!0),e):(Ca&42)===0||(Ca&1073741824)!==0&&(Ge&261930)===0?(Ot=!0,e.memoizedState=i):(e=Cg(),Ue.lanes|=e,dr|=e,n)}function Ov(e,n,i,s,c){var f=J.p;J.p=f!==0&&8>f?f:8;var p=B.T,b={};B.T=b,ud(e,!1,n,i);try{var T=c(),U=B.S;if(U!==null&&U(b,T),T!==null&&typeof T=="object"&&typeof T.then=="function"){var Y=yE(T,s);Ts(e,n,Y,xn(e))}else Ts(e,n,s,xn(e))}catch($){Ts(e,n,{then:function(){},status:"rejected",reason:$},xn())}finally{J.p=f,p!==null&&b.types!==null&&(p.types=b.types),B.T=p}}function _E(){}function ld(e,n,i,s){if(e.tag!==5)throw Error(l(476));var c=Rv(e).queue;Ov(e,c,n,ge,i===null?_E:function(){return Mv(e),i(s)})}function Rv(e){var n=e.memoizedState;if(n!==null)return n;n={memoizedState:ge,baseState:ge,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Oa,lastRenderedState:ge},next:null};var i={};return n.next={memoizedState:i,baseState:i,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Oa,lastRenderedState:i},next:null},e.memoizedState=n,e=e.alternate,e!==null&&(e.memoizedState=n),n}function Mv(e){var n=Rv(e);n.next===null&&(n=e.alternate.memoizedState),Ts(e,n.next.queue,{},xn())}function sd(){return Gt(Zs)}function kv(){return St().memoizedState}function zv(){return St().memoizedState}function SE(e){for(var n=e.return;n!==null;){switch(n.tag){case 24:case 3:var i=xn();e=lr(i);var s=sr(n,e,i);s!==null&&(dn(s,n,i),_s(s,n,i)),n={cache:Lf()},e.payload=n;return}n=n.return}}function EE(e,n,i){var s=xn();i={lane:s,revertLane:0,gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null},oo(e)?Dv(n,i):(i=Tf(e,n,i,s),i!==null&&(dn(i,e,s),Uv(i,n,s)))}function Nv(e,n,i){var s=xn();Ts(e,n,i,s)}function Ts(e,n,i,s){var c={lane:s,revertLane:0,gesture:null,action:i,hasEagerState:!1,eagerState:null,next:null};if(oo(e))Dv(n,c);else{var f=e.alternate;if(e.lanes===0&&(f===null||f.lanes===0)&&(f=n.lastRenderedReducer,f!==null))try{var p=n.lastRenderedState,b=f(p,i);if(c.hasEagerState=!0,c.eagerState=b,vn(b,p))return Qu(e,n,c,0),st===null&&Zu(),!1}catch{}finally{}if(i=Tf(e,n,c,s),i!==null)return dn(i,e,s),Uv(i,n,s),!0}return!1}function ud(e,n,i,s){if(s={lane:2,revertLane:Vd(),gesture:null,action:s,hasEagerState:!1,eagerState:null,next:null},oo(e)){if(n)throw Error(l(479))}else n=Tf(e,i,s,2),n!==null&&dn(n,e,2)}function oo(e){var n=e.alternate;return e===Ue||n!==null&&n===Ue}function Dv(e,n){rl=no=!0;var i=e.pending;i===null?n.next=n:(n.next=i.next,i.next=n),e.pending=n}function Uv(e,n,i){if((i&4194048)!==0){var s=n.lanes;s&=e.pendingLanes,i|=s,n.lanes=i,Vm(e,i)}}var As={readContext:Gt,use:io,useCallback:vt,useContext:vt,useEffect:vt,useImperativeHandle:vt,useLayoutEffect:vt,useInsertionEffect:vt,useMemo:vt,useReducer:vt,useRef:vt,useState:vt,useDebugValue:vt,useDeferredValue:vt,useTransition:vt,useSyncExternalStore:vt,useId:vt,useHostTransitionStatus:vt,useFormState:vt,useActionState:vt,useOptimistic:vt,useMemoCache:vt,useCacheRefresh:vt};As.useEffectEvent=vt;var Lv={readContext:Gt,use:io,useCallback:function(e,n){return Wt().memoizedState=[e,n===void 0?null:n],e},useContext:Gt,useEffect:bv,useImperativeHandle:function(e,n,i){i=i!=null?i.concat([e]):null,so(4194308,4,xv.bind(null,n,e),i)},useLayoutEffect:function(e,n){return so(4194308,4,e,n)},useInsertionEffect:function(e,n){so(4,2,e,n)},useMemo:function(e,n){var i=Wt();n=n===void 0?null:n;var s=e();if(ri){Nn(!0);try{e()}finally{Nn(!1)}}return i.memoizedState=[s,n],s},useReducer:function(e,n,i){var s=Wt();if(i!==void 0){var c=i(n);if(ri){Nn(!0);try{i(n)}finally{Nn(!1)}}}else c=n;return s.memoizedState=s.baseState=c,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:c},s.queue=e,e=e.dispatch=EE.bind(null,Ue,e),[s.memoizedState,e]},useRef:function(e){var n=Wt();return e={current:e},n.memoizedState=e},useState:function(e){e=td(e);var n=e.queue,i=Nv.bind(null,Ue,n);return n.dispatch=i,[e.memoizedState,i]},useDebugValue:rd,useDeferredValue:function(e,n){var i=Wt();return id(i,e,n)},useTransition:function(){var e=td(!1);return e=Ov.bind(null,Ue,e.queue,!0,!1),Wt().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,n,i){var s=Ue,c=Wt();if(Fe){if(i===void 0)throw Error(l(407));i=i()}else{if(i=n(),st===null)throw Error(l(349));(Ge&127)!==0||av(s,n,i)}c.memoizedState=i;var f={value:i,getSnapshot:n};return c.queue=f,bv(iv.bind(null,s,f,e),[e]),s.flags|=2048,ll(9,{destroy:void 0},rv.bind(null,s,f,i,n),null),i},useId:function(){var e=Wt(),n=st.identifierPrefix;if(Fe){var i=ua,s=sa;i=(s&~(1<<32-Ht(s)-1)).toString(32)+i,n="_"+n+"R_"+i,i=ao++,0<i&&(n+="H"+i.toString(32)),n+="_"}else i=mE++,n="_"+n+"r_"+i.toString(32)+"_";return e.memoizedState=n},useHostTransitionStatus:sd,useFormState:yv,useActionState:yv,useOptimistic:function(e){var n=Wt();n.memoizedState=n.baseState=e;var i={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return n.queue=i,n=ud.bind(null,Ue,!0,i),i.dispatch=n,[e,n]},useMemoCache:If,useCacheRefresh:function(){return Wt().memoizedState=SE.bind(null,Ue)},useEffectEvent:function(e){var n=Wt(),i={impl:e};return n.memoizedState=i,function(){if((We&2)!==0)throw Error(l(440));return i.impl.apply(void 0,arguments)}}},od={readContext:Gt,use:io,useCallback:Tv,useContext:Gt,useEffect:ad,useImperativeHandle:wv,useInsertionEffect:Sv,useLayoutEffect:Ev,useMemo:Av,useReducer:lo,useRef:gv,useState:function(){return lo(Oa)},useDebugValue:rd,useDeferredValue:function(e,n){var i=St();return Cv(i,at.memoizedState,e,n)},useTransition:function(){var e=lo(Oa)[0],n=St().memoizedState;return[typeof e=="boolean"?e:ws(e),n]},useSyncExternalStore:nv,useId:kv,useHostTransitionStatus:sd,useFormState:mv,useActionState:mv,useOptimistic:function(e,n){var i=St();return uv(i,at,e,n)},useMemoCache:If,useCacheRefresh:zv};od.useEffectEvent=_v;var jv={readContext:Gt,use:io,useCallback:Tv,useContext:Gt,useEffect:ad,useImperativeHandle:wv,useInsertionEffect:Sv,useLayoutEffect:Ev,useMemo:Av,useReducer:ed,useRef:gv,useState:function(){return ed(Oa)},useDebugValue:rd,useDeferredValue:function(e,n){var i=St();return at===null?id(i,e,n):Cv(i,at.memoizedState,e,n)},useTransition:function(){var e=ed(Oa)[0],n=St().memoizedState;return[typeof e=="boolean"?e:ws(e),n]},useSyncExternalStore:nv,useId:kv,useHostTransitionStatus:sd,useFormState:vv,useActionState:vv,useOptimistic:function(e,n){var i=St();return at!==null?uv(i,at,e,n):(i.baseState=e,[e,i.queue.dispatch])},useMemoCache:If,useCacheRefresh:zv};jv.useEffectEvent=_v;function cd(e,n,i,s){n=e.memoizedState,i=i(s,n),i=i==null?n:v({},n,i),e.memoizedState=i,e.lanes===0&&(e.updateQueue.baseState=i)}var fd={enqueueSetState:function(e,n,i){e=e._reactInternals;var s=xn(),c=lr(s);c.payload=n,i!=null&&(c.callback=i),n=sr(e,c,s),n!==null&&(dn(n,e,s),_s(n,e,s))},enqueueReplaceState:function(e,n,i){e=e._reactInternals;var s=xn(),c=lr(s);c.tag=1,c.payload=n,i!=null&&(c.callback=i),n=sr(e,c,s),n!==null&&(dn(n,e,s),_s(n,e,s))},enqueueForceUpdate:function(e,n){e=e._reactInternals;var i=xn(),s=lr(i);s.tag=2,n!=null&&(s.callback=n),n=sr(e,s,i),n!==null&&(dn(n,e,i),_s(n,e,i))}};function qv(e,n,i,s,c,f,p){return e=e.stateNode,typeof e.shouldComponentUpdate=="function"?e.shouldComponentUpdate(s,f,p):n.prototype&&n.prototype.isPureReactComponent?!ds(i,s)||!ds(c,f):!0}function Bv(e,n,i,s){e=n.state,typeof n.componentWillReceiveProps=="function"&&n.componentWillReceiveProps(i,s),typeof n.UNSAFE_componentWillReceiveProps=="function"&&n.UNSAFE_componentWillReceiveProps(i,s),n.state!==e&&fd.enqueueReplaceState(n,n.state,null)}function ii(e,n){var i=n;if("ref"in n){i={};for(var s in n)s!=="ref"&&(i[s]=n[s])}if(e=e.defaultProps){i===n&&(i=v({},i));for(var c in e)i[c]===void 0&&(i[c]=e[c])}return i}function Vv(e){Hu(e)}function Hv(e){console.error(e)}function Zv(e){Hu(e)}function co(e,n){try{var i=e.onUncaughtError;i(n.value,{componentStack:n.stack})}catch(s){setTimeout(function(){throw s})}}function Qv(e,n,i){try{var s=e.onCaughtError;s(i.value,{componentStack:i.stack,errorBoundary:n.tag===1?n.stateNode:null})}catch(c){setTimeout(function(){throw c})}}function dd(e,n,i){return i=lr(i),i.tag=3,i.payload={element:null},i.callback=function(){co(e,n)},i}function Gv(e){return e=lr(e),e.tag=3,e}function Yv(e,n,i,s){var c=i.type.getDerivedStateFromError;if(typeof c=="function"){var f=s.value;e.payload=function(){return c(f)},e.callback=function(){Qv(n,i,s)}}var p=i.stateNode;p!==null&&typeof p.componentDidCatch=="function"&&(e.callback=function(){Qv(n,i,s),typeof c!="function"&&(hr===null?hr=new Set([this]):hr.add(this));var b=s.stack;this.componentDidCatch(s.value,{componentStack:b!==null?b:""})})}function xE(e,n,i,s,c){if(i.flags|=32768,s!==null&&typeof s=="object"&&typeof s.then=="function"){if(n=i.alternate,n!==null&&Ii(n,i,c,!0),i=bn.current,i!==null){switch(i.tag){case 31:case 13:return Hn===null?xo():i.alternate===null&&gt===0&&(gt=3),i.flags&=-257,i.flags|=65536,i.lanes=c,s===Ju?i.flags|=16384:(n=i.updateQueue,n===null?i.updateQueue=new Set([s]):n.add(s),jd(e,s,c)),!1;case 22:return i.flags|=65536,s===Ju?i.flags|=16384:(n=i.updateQueue,n===null?(n={transitions:null,markerInstances:null,retryQueue:new Set([s])},i.updateQueue=n):(i=n.retryQueue,i===null?n.retryQueue=new Set([s]):i.add(s)),jd(e,s,c)),!1}throw Error(l(435,i.tag))}return jd(e,s,c),xo(),!1}if(Fe)return n=bn.current,n!==null?((n.flags&65536)===0&&(n.flags|=256),n.flags|=65536,n.lanes=c,s!==kf&&(e=Error(l(422),{cause:s}),ms(jn(e,i)))):(s!==kf&&(n=Error(l(423),{cause:s}),ms(jn(n,i))),e=e.current.alternate,e.flags|=65536,c&=-c,e.lanes|=c,s=jn(s,i),c=dd(e.stateNode,s,c),Zf(e,c),gt!==4&&(gt=2)),!1;var f=Error(l(520),{cause:s});if(f=jn(f,i),Ds===null?Ds=[f]:Ds.push(f),gt!==4&&(gt=2),n===null)return!0;s=jn(s,i),i=n;do{switch(i.tag){case 3:return i.flags|=65536,e=c&-c,i.lanes|=e,e=dd(i.stateNode,s,e),Zf(i,e),!1;case 1:if(n=i.type,f=i.stateNode,(i.flags&128)===0&&(typeof n.getDerivedStateFromError=="function"||f!==null&&typeof f.componentDidCatch=="function"&&(hr===null||!hr.has(f))))return i.flags|=65536,c&=-c,i.lanes|=c,c=Gv(c),Yv(c,e,i,s),Zf(i,c),!1}i=i.return}while(i!==null);return!1}var hd=Error(l(461)),Ot=!1;function Yt(e,n,i,s){n.child=e===null?Kp(n,null,i,s):ai(n,e.child,i,s)}function Fv(e,n,i,s,c){i=i.render;var f=n.ref;if("ref"in s){var p={};for(var b in s)b!=="ref"&&(p[b]=s[b])}else p=s;return Wr(n),s=$f(e,n,i,p,f,c),b=Kf(),e!==null&&!Ot?(Pf(e,n,c),Ra(e,n,c)):(Fe&&b&&Rf(n),n.flags|=1,Yt(e,n,s,c),n.child)}function Xv(e,n,i,s,c){if(e===null){var f=i.type;return typeof f=="function"&&!Af(f)&&f.defaultProps===void 0&&i.compare===null?(n.tag=15,n.type=f,$v(e,n,f,s,c)):(e=Yu(i.type,null,s,n,n.mode,c),e.ref=n.ref,e.return=n,n.child=e)}if(f=e.child,!Sd(e,c)){var p=f.memoizedProps;if(i=i.compare,i=i!==null?i:ds,i(p,s)&&e.ref===n.ref)return Ra(e,n,c)}return n.flags|=1,e=xa(f,s),e.ref=n.ref,e.return=n,n.child=e}function $v(e,n,i,s,c){if(e!==null){var f=e.memoizedProps;if(ds(f,s)&&e.ref===n.ref)if(Ot=!1,n.pendingProps=s=f,Sd(e,c))(e.flags&131072)!==0&&(Ot=!0);else return n.lanes=e.lanes,Ra(e,n,c)}return yd(e,n,i,s,c)}function Kv(e,n,i,s){var c=s.children,f=e!==null?e.memoizedState:null;if(e===null&&n.stateNode===null&&(n.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),s.mode==="hidden"){if((n.flags&128)!==0){if(f=f!==null?f.baseLanes|i:i,e!==null){for(s=n.child=e.child,c=0;s!==null;)c=c|s.lanes|s.childLanes,s=s.sibling;s=c&~f}else s=0,n.child=null;return Pv(e,n,f,i,s)}if((i&536870912)!==0)n.memoizedState={baseLanes:0,cachePool:null},e!==null&&Ku(n,f!==null?f.cachePool:null),f!==null?Ip(n,f):Gf(),Wp(n);else return s=n.lanes=536870912,Pv(e,n,f!==null?f.baseLanes|i:i,i,s)}else f!==null?(Ku(n,f.cachePool),Ip(n,f),or(),n.memoizedState=null):(e!==null&&Ku(n,null),Gf(),or());return Yt(e,n,c,i),n.child}function Cs(e,n){return e!==null&&e.tag===22||n.stateNode!==null||(n.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),n.sibling}function Pv(e,n,i,s,c){var f=qf();return f=f===null?null:{parent:At._currentValue,pool:f},n.memoizedState={baseLanes:i,cachePool:f},e!==null&&Ku(n,null),Gf(),Wp(n),e!==null&&Ii(e,n,s,!0),n.childLanes=c,null}function fo(e,n){return n=yo({mode:n.mode,children:n.children},e.mode),n.ref=e.ref,e.child=n,n.return=e,n}function Jv(e,n,i){return ai(n,e.child,null,i),e=fo(n,n.pendingProps),e.flags|=2,_n(n),n.memoizedState=null,e}function wE(e,n,i){var s=n.pendingProps,c=(n.flags&128)!==0;if(n.flags&=-129,e===null){if(Fe){if(s.mode==="hidden")return e=fo(n,s),n.lanes=536870912,Cs(null,e);if(Ff(n),(e=ot)?(e=o0(e,Vn),e=e!==null&&e.data==="&"?e:null,e!==null&&(n.memoizedState={dehydrated:e,treeContext:tr!==null?{id:sa,overflow:ua}:null,retryLane:536870912,hydrationErrors:null},i=Dp(e),i.return=n,n.child=i,Qt=n,ot=null)):e=null,e===null)throw ar(n);return n.lanes=536870912,null}return fo(n,s)}var f=e.memoizedState;if(f!==null){var p=f.dehydrated;if(Ff(n),c)if(n.flags&256)n.flags&=-257,n=Jv(e,n,i);else if(n.memoizedState!==null)n.child=e.child,n.flags|=128,n=null;else throw Error(l(558));else if(Ot||Ii(e,n,i,!1),c=(i&e.childLanes)!==0,Ot||c){if(s=st,s!==null&&(p=Hm(s,i),p!==0&&p!==f.retryLane))throw f.retryLane=p,Kr(e,p),dn(s,e,p),hd;xo(),n=Jv(e,n,i)}else e=f.treeContext,ot=Zn(p.nextSibling),Qt=n,Fe=!0,nr=null,Vn=!1,e!==null&&jp(n,e),n=fo(n,s),n.flags|=4096;return n}return e=xa(e.child,{mode:s.mode,children:s.children}),e.ref=n.ref,n.child=e,e.return=n,e}function ho(e,n){var i=n.ref;if(i===null)e!==null&&e.ref!==null&&(n.flags|=4194816);else{if(typeof i!="function"&&typeof i!="object")throw Error(l(284));(e===null||e.ref!==i)&&(n.flags|=4194816)}}function yd(e,n,i,s,c){return Wr(n),i=$f(e,n,i,s,void 0,c),s=Kf(),e!==null&&!Ot?(Pf(e,n,c),Ra(e,n,c)):(Fe&&s&&Rf(n),n.flags|=1,Yt(e,n,i,c),n.child)}function Iv(e,n,i,s,c,f){return Wr(n),n.updateQueue=null,i=tv(n,s,i,c),ev(e),s=Kf(),e!==null&&!Ot?(Pf(e,n,f),Ra(e,n,f)):(Fe&&s&&Rf(n),n.flags|=1,Yt(e,n,i,f),n.child)}function Wv(e,n,i,s,c){if(Wr(n),n.stateNode===null){var f=$i,p=i.contextType;typeof p=="object"&&p!==null&&(f=Gt(p)),f=new i(s,f),n.memoizedState=f.state!==null&&f.state!==void 0?f.state:null,f.updater=fd,n.stateNode=f,f._reactInternals=n,f=n.stateNode,f.props=s,f.state=n.memoizedState,f.refs={},Vf(n),p=i.contextType,f.context=typeof p=="object"&&p!==null?Gt(p):$i,f.state=n.memoizedState,p=i.getDerivedStateFromProps,typeof p=="function"&&(cd(n,i,p,s),f.state=n.memoizedState),typeof i.getDerivedStateFromProps=="function"||typeof f.getSnapshotBeforeUpdate=="function"||typeof f.UNSAFE_componentWillMount!="function"&&typeof f.componentWillMount!="function"||(p=f.state,typeof f.componentWillMount=="function"&&f.componentWillMount(),typeof f.UNSAFE_componentWillMount=="function"&&f.UNSAFE_componentWillMount(),p!==f.state&&fd.enqueueReplaceState(f,f.state,null),Es(n,s,f,c),Ss(),f.state=n.memoizedState),typeof f.componentDidMount=="function"&&(n.flags|=4194308),s=!0}else if(e===null){f=n.stateNode;var b=n.memoizedProps,T=ii(i,b);f.props=T;var U=f.context,Y=i.contextType;p=$i,typeof Y=="object"&&Y!==null&&(p=Gt(Y));var $=i.getDerivedStateFromProps;Y=typeof $=="function"||typeof f.getSnapshotBeforeUpdate=="function",b=n.pendingProps!==b,Y||typeof f.UNSAFE_componentWillReceiveProps!="function"&&typeof f.componentWillReceiveProps!="function"||(b||U!==p)&&Bv(n,f,s,p),ir=!1;var j=n.memoizedState;f.state=j,Es(n,s,f,c),Ss(),U=n.memoizedState,b||j!==U||ir?(typeof $=="function"&&(cd(n,i,$,s),U=n.memoizedState),(T=ir||qv(n,i,T,s,j,U,p))?(Y||typeof f.UNSAFE_componentWillMount!="function"&&typeof f.componentWillMount!="function"||(typeof f.componentWillMount=="function"&&f.componentWillMount(),typeof f.UNSAFE_componentWillMount=="function"&&f.UNSAFE_componentWillMount()),typeof f.componentDidMount=="function"&&(n.flags|=4194308)):(typeof f.componentDidMount=="function"&&(n.flags|=4194308),n.memoizedProps=s,n.memoizedState=U),f.props=s,f.state=U,f.context=p,s=T):(typeof f.componentDidMount=="function"&&(n.flags|=4194308),s=!1)}else{f=n.stateNode,Hf(e,n),p=n.memoizedProps,Y=ii(i,p),f.props=Y,$=n.pendingProps,j=f.context,U=i.contextType,T=$i,typeof U=="object"&&U!==null&&(T=Gt(U)),b=i.getDerivedStateFromProps,(U=typeof b=="function"||typeof f.getSnapshotBeforeUpdate=="function")||typeof f.UNSAFE_componentWillReceiveProps!="function"&&typeof f.componentWillReceiveProps!="function"||(p!==$||j!==T)&&Bv(n,f,s,T),ir=!1,j=n.memoizedState,f.state=j,Es(n,s,f,c),Ss();var H=n.memoizedState;p!==$||j!==H||ir||e!==null&&e.dependencies!==null&&Xu(e.dependencies)?(typeof b=="function"&&(cd(n,i,b,s),H=n.memoizedState),(Y=ir||qv(n,i,Y,s,j,H,T)||e!==null&&e.dependencies!==null&&Xu(e.dependencies))?(U||typeof f.UNSAFE_componentWillUpdate!="function"&&typeof f.componentWillUpdate!="function"||(typeof f.componentWillUpdate=="function"&&f.componentWillUpdate(s,H,T),typeof f.UNSAFE_componentWillUpdate=="function"&&f.UNSAFE_componentWillUpdate(s,H,T)),typeof f.componentDidUpdate=="function"&&(n.flags|=4),typeof f.getSnapshotBeforeUpdate=="function"&&(n.flags|=1024)):(typeof f.componentDidUpdate!="function"||p===e.memoizedProps&&j===e.memoizedState||(n.flags|=4),typeof f.getSnapshotBeforeUpdate!="function"||p===e.memoizedProps&&j===e.memoizedState||(n.flags|=1024),n.memoizedProps=s,n.memoizedState=H),f.props=s,f.state=H,f.context=T,s=Y):(typeof f.componentDidUpdate!="function"||p===e.memoizedProps&&j===e.memoizedState||(n.flags|=4),typeof f.getSnapshotBeforeUpdate!="function"||p===e.memoizedProps&&j===e.memoizedState||(n.flags|=1024),s=!1)}return f=s,ho(e,n),s=(n.flags&128)!==0,f||s?(f=n.stateNode,i=s&&typeof i.getDerivedStateFromError!="function"?null:f.render(),n.flags|=1,e!==null&&s?(n.child=ai(n,e.child,null,c),n.child=ai(n,null,i,c)):Yt(e,n,i,c),n.memoizedState=f.state,e=n.child):e=Ra(e,n,c),e}function eg(e,n,i,s){return Jr(),n.flags|=256,Yt(e,n,i,s),n.child}var md={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function pd(e){return{baseLanes:e,cachePool:Qp()}}function vd(e,n,i){return e=e!==null?e.childLanes&~i:0,n&&(e|=En),e}function tg(e,n,i){var s=n.pendingProps,c=!1,f=(n.flags&128)!==0,p;if((p=f)||(p=e!==null&&e.memoizedState===null?!1:(_t.current&2)!==0),p&&(c=!0,n.flags&=-129),p=(n.flags&32)!==0,n.flags&=-33,e===null){if(Fe){if(c?ur(n):or(),(e=ot)?(e=o0(e,Vn),e=e!==null&&e.data!=="&"?e:null,e!==null&&(n.memoizedState={dehydrated:e,treeContext:tr!==null?{id:sa,overflow:ua}:null,retryLane:536870912,hydrationErrors:null},i=Dp(e),i.return=n,n.child=i,Qt=n,ot=null)):e=null,e===null)throw ar(n);return Wd(e)?n.lanes=32:n.lanes=536870912,null}var b=s.children;return s=s.fallback,c?(or(),c=n.mode,b=yo({mode:"hidden",children:b},c),s=Pr(s,c,i,null),b.return=n,s.return=n,b.sibling=s,n.child=b,s=n.child,s.memoizedState=pd(i),s.childLanes=vd(e,p,i),n.memoizedState=md,Cs(null,s)):(ur(n),gd(n,b))}var T=e.memoizedState;if(T!==null&&(b=T.dehydrated,b!==null)){if(f)n.flags&256?(ur(n),n.flags&=-257,n=bd(e,n,i)):n.memoizedState!==null?(or(),n.child=e.child,n.flags|=128,n=null):(or(),b=s.fallback,c=n.mode,s=yo({mode:"visible",children:s.children},c),b=Pr(b,c,i,null),b.flags|=2,s.return=n,b.return=n,s.sibling=b,n.child=s,ai(n,e.child,null,i),s=n.child,s.memoizedState=pd(i),s.childLanes=vd(e,p,i),n.memoizedState=md,n=Cs(null,s));else if(ur(n),Wd(b)){if(p=b.nextSibling&&b.nextSibling.dataset,p)var U=p.dgst;p=U,s=Error(l(419)),s.stack="",s.digest=p,ms({value:s,source:null,stack:null}),n=bd(e,n,i)}else if(Ot||Ii(e,n,i,!1),p=(i&e.childLanes)!==0,Ot||p){if(p=st,p!==null&&(s=Hm(p,i),s!==0&&s!==T.retryLane))throw T.retryLane=s,Kr(e,s),dn(p,e,s),hd;Id(b)||xo(),n=bd(e,n,i)}else Id(b)?(n.flags|=192,n.child=e.child,n=null):(e=T.treeContext,ot=Zn(b.nextSibling),Qt=n,Fe=!0,nr=null,Vn=!1,e!==null&&jp(n,e),n=gd(n,s.children),n.flags|=4096);return n}return c?(or(),b=s.fallback,c=n.mode,T=e.child,U=T.sibling,s=xa(T,{mode:"hidden",children:s.children}),s.subtreeFlags=T.subtreeFlags&65011712,U!==null?b=xa(U,b):(b=Pr(b,c,i,null),b.flags|=2),b.return=n,s.return=n,s.sibling=b,n.child=s,Cs(null,s),s=n.child,b=e.child.memoizedState,b===null?b=pd(i):(c=b.cachePool,c!==null?(T=At._currentValue,c=c.parent!==T?{parent:T,pool:T}:c):c=Qp(),b={baseLanes:b.baseLanes|i,cachePool:c}),s.memoizedState=b,s.childLanes=vd(e,p,i),n.memoizedState=md,Cs(e.child,s)):(ur(n),i=e.child,e=i.sibling,i=xa(i,{mode:"visible",children:s.children}),i.return=n,i.sibling=null,e!==null&&(p=n.deletions,p===null?(n.deletions=[e],n.flags|=16):p.push(e)),n.child=i,n.memoizedState=null,i)}function gd(e,n){return n=yo({mode:"visible",children:n},e.mode),n.return=e,e.child=n}function yo(e,n){return e=gn(22,e,null,n),e.lanes=0,e}function bd(e,n,i){return ai(n,e.child,null,i),e=gd(n,n.pendingProps.children),e.flags|=2,n.memoizedState=null,e}function ng(e,n,i){e.lanes|=n;var s=e.alternate;s!==null&&(s.lanes|=n),Df(e.return,n,i)}function _d(e,n,i,s,c,f){var p=e.memoizedState;p===null?e.memoizedState={isBackwards:n,rendering:null,renderingStartTime:0,last:s,tail:i,tailMode:c,treeForkCount:f}:(p.isBackwards=n,p.rendering=null,p.renderingStartTime=0,p.last=s,p.tail=i,p.tailMode=c,p.treeForkCount=f)}function ag(e,n,i){var s=n.pendingProps,c=s.revealOrder,f=s.tail;s=s.children;var p=_t.current,b=(p&2)!==0;if(b?(p=p&1|2,n.flags|=128):p&=1,ae(_t,p),Yt(e,n,s,i),s=Fe?ys:0,!b&&e!==null&&(e.flags&128)!==0)e:for(e=n.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&ng(e,i,n);else if(e.tag===19)ng(e,i,n);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===n)break e;for(;e.sibling===null;){if(e.return===null||e.return===n)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(c){case"forwards":for(i=n.child,c=null;i!==null;)e=i.alternate,e!==null&&to(e)===null&&(c=i),i=i.sibling;i=c,i===null?(c=n.child,n.child=null):(c=i.sibling,i.sibling=null),_d(n,!1,c,i,f,s);break;case"backwards":case"unstable_legacy-backwards":for(i=null,c=n.child,n.child=null;c!==null;){if(e=c.alternate,e!==null&&to(e)===null){n.child=c;break}e=c.sibling,c.sibling=i,i=c,c=e}_d(n,!0,i,null,f,s);break;case"together":_d(n,!1,null,null,void 0,s);break;default:n.memoizedState=null}return n.child}function Ra(e,n,i){if(e!==null&&(n.dependencies=e.dependencies),dr|=n.lanes,(i&n.childLanes)===0)if(e!==null){if(Ii(e,n,i,!1),(i&n.childLanes)===0)return null}else return null;if(e!==null&&n.child!==e.child)throw Error(l(153));if(n.child!==null){for(e=n.child,i=xa(e,e.pendingProps),n.child=i,i.return=n;e.sibling!==null;)e=e.sibling,i=i.sibling=xa(e,e.pendingProps),i.return=n;i.sibling=null}return n.child}function Sd(e,n){return(e.lanes&n)!==0?!0:(e=e.dependencies,!!(e!==null&&Xu(e)))}function TE(e,n,i){switch(n.tag){case 3:wt(n,n.stateNode.containerInfo),rr(n,At,e.memoizedState.cache),Jr();break;case 27:case 5:Pn(n);break;case 4:wt(n,n.stateNode.containerInfo);break;case 10:rr(n,n.type,n.memoizedProps.value);break;case 31:if(n.memoizedState!==null)return n.flags|=128,Ff(n),null;break;case 13:var s=n.memoizedState;if(s!==null)return s.dehydrated!==null?(ur(n),n.flags|=128,null):(i&n.child.childLanes)!==0?tg(e,n,i):(ur(n),e=Ra(e,n,i),e!==null?e.sibling:null);ur(n);break;case 19:var c=(e.flags&128)!==0;if(s=(i&n.childLanes)!==0,s||(Ii(e,n,i,!1),s=(i&n.childLanes)!==0),c){if(s)return ag(e,n,i);n.flags|=128}if(c=n.memoizedState,c!==null&&(c.rendering=null,c.tail=null,c.lastEffect=null),ae(_t,_t.current),s)break;return null;case 22:return n.lanes=0,Kv(e,n,i,n.pendingProps);case 24:rr(n,At,e.memoizedState.cache)}return Ra(e,n,i)}function rg(e,n,i){if(e!==null)if(e.memoizedProps!==n.pendingProps)Ot=!0;else{if(!Sd(e,i)&&(n.flags&128)===0)return Ot=!1,TE(e,n,i);Ot=(e.flags&131072)!==0}else Ot=!1,Fe&&(n.flags&1048576)!==0&&Lp(n,ys,n.index);switch(n.lanes=0,n.tag){case 16:e:{var s=n.pendingProps;if(e=ti(n.elementType),n.type=e,typeof e=="function")Af(e)?(s=ii(e,s),n.tag=1,n=Wv(null,n,e,s,i)):(n.tag=0,n=yd(null,n,e,s,i));else{if(e!=null){var c=e.$$typeof;if(c===q){n.tag=11,n=Fv(null,n,e,s,i);break e}else if(c===P){n.tag=14,n=Xv(null,n,e,s,i);break e}}throw n=Ne(e)||e,Error(l(306,n,""))}}return n;case 0:return yd(e,n,n.type,n.pendingProps,i);case 1:return s=n.type,c=ii(s,n.pendingProps),Wv(e,n,s,c,i);case 3:e:{if(wt(n,n.stateNode.containerInfo),e===null)throw Error(l(387));s=n.pendingProps;var f=n.memoizedState;c=f.element,Hf(e,n),Es(n,s,null,i);var p=n.memoizedState;if(s=p.cache,rr(n,At,s),s!==f.cache&&Uf(n,[At],i,!0),Ss(),s=p.element,f.isDehydrated)if(f={element:s,isDehydrated:!1,cache:p.cache},n.updateQueue.baseState=f,n.memoizedState=f,n.flags&256){n=eg(e,n,s,i);break e}else if(s!==c){c=jn(Error(l(424)),n),ms(c),n=eg(e,n,s,i);break e}else{switch(e=n.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName==="HTML"?e.ownerDocument.body:e}for(ot=Zn(e.firstChild),Qt=n,Fe=!0,nr=null,Vn=!0,i=Kp(n,null,s,i),n.child=i;i;)i.flags=i.flags&-3|4096,i=i.sibling}else{if(Jr(),s===c){n=Ra(e,n,i);break e}Yt(e,n,s,i)}n=n.child}return n;case 26:return ho(e,n),e===null?(i=m0(n.type,null,n.pendingProps,null))?n.memoizedState=i:Fe||(i=n.type,e=n.pendingProps,s=Mo(Ee.current).createElement(i),s[Zt]=n,s[ln]=e,Ft(s,i,e),jt(s),n.stateNode=s):n.memoizedState=m0(n.type,e.memoizedProps,n.pendingProps,e.memoizedState),null;case 27:return Pn(n),e===null&&Fe&&(s=n.stateNode=d0(n.type,n.pendingProps,Ee.current),Qt=n,Vn=!0,c=ot,vr(n.type)?(eh=c,ot=Zn(s.firstChild)):ot=c),Yt(e,n,n.pendingProps.children,i),ho(e,n),e===null&&(n.flags|=4194304),n.child;case 5:return e===null&&Fe&&((c=s=ot)&&(s=tx(s,n.type,n.pendingProps,Vn),s!==null?(n.stateNode=s,Qt=n,ot=Zn(s.firstChild),Vn=!1,c=!0):c=!1),c||ar(n)),Pn(n),c=n.type,f=n.pendingProps,p=e!==null?e.memoizedProps:null,s=f.children,Kd(c,f)?s=null:p!==null&&Kd(c,p)&&(n.flags|=32),n.memoizedState!==null&&(c=$f(e,n,pE,null,null,i),Zs._currentValue=c),ho(e,n),Yt(e,n,s,i),n.child;case 6:return e===null&&Fe&&((e=i=ot)&&(i=nx(i,n.pendingProps,Vn),i!==null?(n.stateNode=i,Qt=n,ot=null,e=!0):e=!1),e||ar(n)),null;case 13:return tg(e,n,i);case 4:return wt(n,n.stateNode.containerInfo),s=n.pendingProps,e===null?n.child=ai(n,null,s,i):Yt(e,n,s,i),n.child;case 11:return Fv(e,n,n.type,n.pendingProps,i);case 7:return Yt(e,n,n.pendingProps,i),n.child;case 8:return Yt(e,n,n.pendingProps.children,i),n.child;case 12:return Yt(e,n,n.pendingProps.children,i),n.child;case 10:return s=n.pendingProps,rr(n,n.type,s.value),Yt(e,n,s.children,i),n.child;case 9:return c=n.type._context,s=n.pendingProps.children,Wr(n),c=Gt(c),s=s(c),n.flags|=1,Yt(e,n,s,i),n.child;case 14:return Xv(e,n,n.type,n.pendingProps,i);case 15:return $v(e,n,n.type,n.pendingProps,i);case 19:return ag(e,n,i);case 31:return wE(e,n,i);case 22:return Kv(e,n,i,n.pendingProps);case 24:return Wr(n),s=Gt(At),e===null?(c=qf(),c===null&&(c=st,f=Lf(),c.pooledCache=f,f.refCount++,f!==null&&(c.pooledCacheLanes|=i),c=f),n.memoizedState={parent:s,cache:c},Vf(n),rr(n,At,c)):((e.lanes&i)!==0&&(Hf(e,n),Es(n,null,null,i),Ss()),c=e.memoizedState,f=n.memoizedState,c.parent!==s?(c={parent:s,cache:s},n.memoizedState=c,n.lanes===0&&(n.memoizedState=n.updateQueue.baseState=c),rr(n,At,s)):(s=f.cache,rr(n,At,s),s!==c.cache&&Uf(n,[At],i,!0))),Yt(e,n,n.pendingProps.children,i),n.child;case 29:throw n.pendingProps}throw Error(l(156,n.tag))}function Ma(e){e.flags|=4}function Ed(e,n,i,s,c){if((n=(e.mode&32)!==0)&&(n=!1),n){if(e.flags|=16777216,(c&335544128)===c)if(e.stateNode.complete)e.flags|=8192;else if(kg())e.flags|=8192;else throw ni=Ju,Bf}else e.flags&=-16777217}function ig(e,n){if(n.type!=="stylesheet"||(n.state.loading&4)!==0)e.flags&=-16777217;else if(e.flags|=16777216,!_0(n))if(kg())e.flags|=8192;else throw ni=Ju,Bf}function mo(e,n){n!==null&&(e.flags|=4),e.flags&16384&&(n=e.tag!==22?qm():536870912,e.lanes|=n,cl|=n)}function Os(e,n){if(!Fe)switch(e.tailMode){case"hidden":n=e.tail;for(var i=null;n!==null;)n.alternate!==null&&(i=n),n=n.sibling;i===null?e.tail=null:i.sibling=null;break;case"collapsed":i=e.tail;for(var s=null;i!==null;)i.alternate!==null&&(s=i),i=i.sibling;s===null?n||e.tail===null?e.tail=null:e.tail.sibling=null:s.sibling=null}}function ct(e){var n=e.alternate!==null&&e.alternate.child===e.child,i=0,s=0;if(n)for(var c=e.child;c!==null;)i|=c.lanes|c.childLanes,s|=c.subtreeFlags&65011712,s|=c.flags&65011712,c.return=e,c=c.sibling;else for(c=e.child;c!==null;)i|=c.lanes|c.childLanes,s|=c.subtreeFlags,s|=c.flags,c.return=e,c=c.sibling;return e.subtreeFlags|=s,e.childLanes=i,n}function AE(e,n,i){var s=n.pendingProps;switch(Mf(n),n.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return ct(n),null;case 1:return ct(n),null;case 3:return i=n.stateNode,s=null,e!==null&&(s=e.memoizedState.cache),n.memoizedState.cache!==s&&(n.flags|=2048),Aa(At),Oe(),i.pendingContext&&(i.context=i.pendingContext,i.pendingContext=null),(e===null||e.child===null)&&(Ji(n)?Ma(n):e===null||e.memoizedState.isDehydrated&&(n.flags&256)===0||(n.flags|=1024,zf())),ct(n),null;case 26:var c=n.type,f=n.memoizedState;return e===null?(Ma(n),f!==null?(ct(n),ig(n,f)):(ct(n),Ed(n,c,null,s,i))):f?f!==e.memoizedState?(Ma(n),ct(n),ig(n,f)):(ct(n),n.flags&=-16777217):(e=e.memoizedProps,e!==s&&Ma(n),ct(n),Ed(n,c,e,s,i)),null;case 27:if(pn(n),i=Ee.current,c=n.type,e!==null&&n.stateNode!=null)e.memoizedProps!==s&&Ma(n);else{if(!s){if(n.stateNode===null)throw Error(l(166));return ct(n),null}e=ue.current,Ji(n)?qp(n):(e=d0(c,s,i),n.stateNode=e,Ma(n))}return ct(n),null;case 5:if(pn(n),c=n.type,e!==null&&n.stateNode!=null)e.memoizedProps!==s&&Ma(n);else{if(!s){if(n.stateNode===null)throw Error(l(166));return ct(n),null}if(f=ue.current,Ji(n))qp(n);else{var p=Mo(Ee.current);switch(f){case 1:f=p.createElementNS("http://www.w3.org/2000/svg",c);break;case 2:f=p.createElementNS("http://www.w3.org/1998/Math/MathML",c);break;default:switch(c){case"svg":f=p.createElementNS("http://www.w3.org/2000/svg",c);break;case"math":f=p.createElementNS("http://www.w3.org/1998/Math/MathML",c);break;case"script":f=p.createElement("div"),f.innerHTML="<script><\/script>",f=f.removeChild(f.firstChild);break;case"select":f=typeof s.is=="string"?p.createElement("select",{is:s.is}):p.createElement("select"),s.multiple?f.multiple=!0:s.size&&(f.size=s.size);break;default:f=typeof s.is=="string"?p.createElement(c,{is:s.is}):p.createElement(c)}}f[Zt]=n,f[ln]=s;e:for(p=n.child;p!==null;){if(p.tag===5||p.tag===6)f.appendChild(p.stateNode);else if(p.tag!==4&&p.tag!==27&&p.child!==null){p.child.return=p,p=p.child;continue}if(p===n)break e;for(;p.sibling===null;){if(p.return===null||p.return===n)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}n.stateNode=f;e:switch(Ft(f,c,s),c){case"button":case"input":case"select":case"textarea":s=!!s.autoFocus;break e;case"img":s=!0;break e;default:s=!1}s&&Ma(n)}}return ct(n),Ed(n,n.type,e===null?null:e.memoizedProps,n.pendingProps,i),null;case 6:if(e&&n.stateNode!=null)e.memoizedProps!==s&&Ma(n);else{if(typeof s!="string"&&n.stateNode===null)throw Error(l(166));if(e=Ee.current,Ji(n)){if(e=n.stateNode,i=n.memoizedProps,s=null,c=Qt,c!==null)switch(c.tag){case 27:case 5:s=c.memoizedProps}e[Zt]=n,e=!!(e.nodeValue===i||s!==null&&s.suppressHydrationWarning===!0||t0(e.nodeValue,i)),e||ar(n,!0)}else e=Mo(e).createTextNode(s),e[Zt]=n,n.stateNode=e}return ct(n),null;case 31:if(i=n.memoizedState,e===null||e.memoizedState!==null){if(s=Ji(n),i!==null){if(e===null){if(!s)throw Error(l(318));if(e=n.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(l(557));e[Zt]=n}else Jr(),(n.flags&128)===0&&(n.memoizedState=null),n.flags|=4;ct(n),e=!1}else i=zf(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=i),e=!0;if(!e)return n.flags&256?(_n(n),n):(_n(n),null);if((n.flags&128)!==0)throw Error(l(558))}return ct(n),null;case 13:if(s=n.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(c=Ji(n),s!==null&&s.dehydrated!==null){if(e===null){if(!c)throw Error(l(318));if(c=n.memoizedState,c=c!==null?c.dehydrated:null,!c)throw Error(l(317));c[Zt]=n}else Jr(),(n.flags&128)===0&&(n.memoizedState=null),n.flags|=4;ct(n),c=!1}else c=zf(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=c),c=!0;if(!c)return n.flags&256?(_n(n),n):(_n(n),null)}return _n(n),(n.flags&128)!==0?(n.lanes=i,n):(i=s!==null,e=e!==null&&e.memoizedState!==null,i&&(s=n.child,c=null,s.alternate!==null&&s.alternate.memoizedState!==null&&s.alternate.memoizedState.cachePool!==null&&(c=s.alternate.memoizedState.cachePool.pool),f=null,s.memoizedState!==null&&s.memoizedState.cachePool!==null&&(f=s.memoizedState.cachePool.pool),f!==c&&(s.flags|=2048)),i!==e&&i&&(n.child.flags|=8192),mo(n,n.updateQueue),ct(n),null);case 4:return Oe(),e===null&&Gd(n.stateNode.containerInfo),ct(n),null;case 10:return Aa(n.type),ct(n),null;case 19:if(X(_t),s=n.memoizedState,s===null)return ct(n),null;if(c=(n.flags&128)!==0,f=s.rendering,f===null)if(c)Os(s,!1);else{if(gt!==0||e!==null&&(e.flags&128)!==0)for(e=n.child;e!==null;){if(f=to(e),f!==null){for(n.flags|=128,Os(s,!1),e=f.updateQueue,n.updateQueue=e,mo(n,e),n.subtreeFlags=0,e=i,i=n.child;i!==null;)Np(i,e),i=i.sibling;return ae(_t,_t.current&1|2),Fe&&wa(n,s.treeForkCount),n.child}e=e.sibling}s.tail!==null&&L()>_o&&(n.flags|=128,c=!0,Os(s,!1),n.lanes=4194304)}else{if(!c)if(e=to(f),e!==null){if(n.flags|=128,c=!0,e=e.updateQueue,n.updateQueue=e,mo(n,e),Os(s,!0),s.tail===null&&s.tailMode==="hidden"&&!f.alternate&&!Fe)return ct(n),null}else 2*L()-s.renderingStartTime>_o&&i!==536870912&&(n.flags|=128,c=!0,Os(s,!1),n.lanes=4194304);s.isBackwards?(f.sibling=n.child,n.child=f):(e=s.last,e!==null?e.sibling=f:n.child=f,s.last=f)}return s.tail!==null?(e=s.tail,s.rendering=e,s.tail=e.sibling,s.renderingStartTime=L(),e.sibling=null,i=_t.current,ae(_t,c?i&1|2:i&1),Fe&&wa(n,s.treeForkCount),e):(ct(n),null);case 22:case 23:return _n(n),Yf(),s=n.memoizedState!==null,e!==null?e.memoizedState!==null!==s&&(n.flags|=8192):s&&(n.flags|=8192),s?(i&536870912)!==0&&(n.flags&128)===0&&(ct(n),n.subtreeFlags&6&&(n.flags|=8192)):ct(n),i=n.updateQueue,i!==null&&mo(n,i.retryQueue),i=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(i=e.memoizedState.cachePool.pool),s=null,n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(s=n.memoizedState.cachePool.pool),s!==i&&(n.flags|=2048),e!==null&&X(ei),null;case 24:return i=null,e!==null&&(i=e.memoizedState.cache),n.memoizedState.cache!==i&&(n.flags|=2048),Aa(At),ct(n),null;case 25:return null;case 30:return null}throw Error(l(156,n.tag))}function CE(e,n){switch(Mf(n),n.tag){case 1:return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 3:return Aa(At),Oe(),e=n.flags,(e&65536)!==0&&(e&128)===0?(n.flags=e&-65537|128,n):null;case 26:case 27:case 5:return pn(n),null;case 31:if(n.memoizedState!==null){if(_n(n),n.alternate===null)throw Error(l(340));Jr()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 13:if(_n(n),e=n.memoizedState,e!==null&&e.dehydrated!==null){if(n.alternate===null)throw Error(l(340));Jr()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 19:return X(_t),null;case 4:return Oe(),null;case 10:return Aa(n.type),null;case 22:case 23:return _n(n),Yf(),e!==null&&X(ei),e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 24:return Aa(At),null;case 25:return null;default:return null}}function lg(e,n){switch(Mf(n),n.tag){case 3:Aa(At),Oe();break;case 26:case 27:case 5:pn(n);break;case 4:Oe();break;case 31:n.memoizedState!==null&&_n(n);break;case 13:_n(n);break;case 19:X(_t);break;case 10:Aa(n.type);break;case 22:case 23:_n(n),Yf(),e!==null&&X(ei);break;case 24:Aa(At)}}function Rs(e,n){try{var i=n.updateQueue,s=i!==null?i.lastEffect:null;if(s!==null){var c=s.next;i=c;do{if((i.tag&e)===e){s=void 0;var f=i.create,p=i.inst;s=f(),p.destroy=s}i=i.next}while(i!==c)}}catch(b){nt(n,n.return,b)}}function cr(e,n,i){try{var s=n.updateQueue,c=s!==null?s.lastEffect:null;if(c!==null){var f=c.next;s=f;do{if((s.tag&e)===e){var p=s.inst,b=p.destroy;if(b!==void 0){p.destroy=void 0,c=n;var T=i,U=b;try{U()}catch(Y){nt(c,T,Y)}}}s=s.next}while(s!==f)}}catch(Y){nt(n,n.return,Y)}}function sg(e){var n=e.updateQueue;if(n!==null){var i=e.stateNode;try{Jp(n,i)}catch(s){nt(e,e.return,s)}}}function ug(e,n,i){i.props=ii(e.type,e.memoizedProps),i.state=e.memoizedState;try{i.componentWillUnmount()}catch(s){nt(e,n,s)}}function Ms(e,n){try{var i=e.ref;if(i!==null){switch(e.tag){case 26:case 27:case 5:var s=e.stateNode;break;case 30:s=e.stateNode;break;default:s=e.stateNode}typeof i=="function"?e.refCleanup=i(s):i.current=s}}catch(c){nt(e,n,c)}}function oa(e,n){var i=e.ref,s=e.refCleanup;if(i!==null)if(typeof s=="function")try{s()}catch(c){nt(e,n,c)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof i=="function")try{i(null)}catch(c){nt(e,n,c)}else i.current=null}function og(e){var n=e.type,i=e.memoizedProps,s=e.stateNode;try{e:switch(n){case"button":case"input":case"select":case"textarea":i.autoFocus&&s.focus();break e;case"img":i.src?s.src=i.src:i.srcSet&&(s.srcset=i.srcSet)}}catch(c){nt(e,e.return,c)}}function xd(e,n,i){try{var s=e.stateNode;KE(s,e.type,i,n),s[ln]=n}catch(c){nt(e,e.return,c)}}function cg(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&vr(e.type)||e.tag===4}function wd(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||cg(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&vr(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Td(e,n,i){var s=e.tag;if(s===5||s===6)e=e.stateNode,n?(i.nodeType===9?i.body:i.nodeName==="HTML"?i.ownerDocument.body:i).insertBefore(e,n):(n=i.nodeType===9?i.body:i.nodeName==="HTML"?i.ownerDocument.body:i,n.appendChild(e),i=i._reactRootContainer,i!=null||n.onclick!==null||(n.onclick=Sa));else if(s!==4&&(s===27&&vr(e.type)&&(i=e.stateNode,n=null),e=e.child,e!==null))for(Td(e,n,i),e=e.sibling;e!==null;)Td(e,n,i),e=e.sibling}function po(e,n,i){var s=e.tag;if(s===5||s===6)e=e.stateNode,n?i.insertBefore(e,n):i.appendChild(e);else if(s!==4&&(s===27&&vr(e.type)&&(i=e.stateNode),e=e.child,e!==null))for(po(e,n,i),e=e.sibling;e!==null;)po(e,n,i),e=e.sibling}function fg(e){var n=e.stateNode,i=e.memoizedProps;try{for(var s=e.type,c=n.attributes;c.length;)n.removeAttributeNode(c[0]);Ft(n,s,i),n[Zt]=e,n[ln]=i}catch(f){nt(e,e.return,f)}}var ka=!1,Rt=!1,Ad=!1,dg=typeof WeakSet=="function"?WeakSet:Set,qt=null;function OE(e,n){if(e=e.containerInfo,Xd=jo,e=wp(e),bf(e)){if("selectionStart"in e)var i={start:e.selectionStart,end:e.selectionEnd};else e:{i=(i=e.ownerDocument)&&i.defaultView||window;var s=i.getSelection&&i.getSelection();if(s&&s.rangeCount!==0){i=s.anchorNode;var c=s.anchorOffset,f=s.focusNode;s=s.focusOffset;try{i.nodeType,f.nodeType}catch{i=null;break e}var p=0,b=-1,T=-1,U=0,Y=0,$=e,j=null;t:for(;;){for(var H;$!==i||c!==0&&$.nodeType!==3||(b=p+c),$!==f||s!==0&&$.nodeType!==3||(T=p+s),$.nodeType===3&&(p+=$.nodeValue.length),(H=$.firstChild)!==null;)j=$,$=H;for(;;){if($===e)break t;if(j===i&&++U===c&&(b=p),j===f&&++Y===s&&(T=p),(H=$.nextSibling)!==null)break;$=j,j=$.parentNode}$=H}i=b===-1||T===-1?null:{start:b,end:T}}else i=null}i=i||{start:0,end:0}}else i=null;for($d={focusedElem:e,selectionRange:i},jo=!1,qt=n;qt!==null;)if(n=qt,e=n.child,(n.subtreeFlags&1028)!==0&&e!==null)e.return=n,qt=e;else for(;qt!==null;){switch(n=qt,f=n.alternate,e=n.flags,n.tag){case 0:if((e&4)!==0&&(e=n.updateQueue,e=e!==null?e.events:null,e!==null))for(i=0;i<e.length;i++)c=e[i],c.ref.impl=c.nextImpl;break;case 11:case 15:break;case 1:if((e&1024)!==0&&f!==null){e=void 0,i=n,c=f.memoizedProps,f=f.memoizedState,s=i.stateNode;try{var ce=ii(i.type,c);e=s.getSnapshotBeforeUpdate(ce,f),s.__reactInternalSnapshotBeforeUpdate=e}catch(Te){nt(i,i.return,Te)}}break;case 3:if((e&1024)!==0){if(e=n.stateNode.containerInfo,i=e.nodeType,i===9)Jd(e);else if(i===1)switch(e.nodeName){case"HEAD":case"HTML":case"BODY":Jd(e);break;default:e.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((e&1024)!==0)throw Error(l(163))}if(e=n.sibling,e!==null){e.return=n.return,qt=e;break}qt=n.return}}function hg(e,n,i){var s=i.flags;switch(i.tag){case 0:case 11:case 15:Na(e,i),s&4&&Rs(5,i);break;case 1:if(Na(e,i),s&4)if(e=i.stateNode,n===null)try{e.componentDidMount()}catch(p){nt(i,i.return,p)}else{var c=ii(i.type,n.memoizedProps);n=n.memoizedState;try{e.componentDidUpdate(c,n,e.__reactInternalSnapshotBeforeUpdate)}catch(p){nt(i,i.return,p)}}s&64&&sg(i),s&512&&Ms(i,i.return);break;case 3:if(Na(e,i),s&64&&(e=i.updateQueue,e!==null)){if(n=null,i.child!==null)switch(i.child.tag){case 27:case 5:n=i.child.stateNode;break;case 1:n=i.child.stateNode}try{Jp(e,n)}catch(p){nt(i,i.return,p)}}break;case 27:n===null&&s&4&&fg(i);case 26:case 5:Na(e,i),n===null&&s&4&&og(i),s&512&&Ms(i,i.return);break;case 12:Na(e,i);break;case 31:Na(e,i),s&4&&pg(e,i);break;case 13:Na(e,i),s&4&&vg(e,i),s&64&&(e=i.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(i=jE.bind(null,i),ax(e,i))));break;case 22:if(s=i.memoizedState!==null||ka,!s){n=n!==null&&n.memoizedState!==null||Rt,c=ka;var f=Rt;ka=s,(Rt=n)&&!f?Da(e,i,(i.subtreeFlags&8772)!==0):Na(e,i),ka=c,Rt=f}break;case 30:break;default:Na(e,i)}}function yg(e){var n=e.alternate;n!==null&&(e.alternate=null,yg(n)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(n=e.stateNode,n!==null&&tf(n)),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}var ht=null,un=!1;function za(e,n,i){for(i=i.child;i!==null;)mg(e,n,i),i=i.sibling}function mg(e,n,i){if(It&&typeof It.onCommitFiberUnmount=="function")try{It.onCommitFiberUnmount(Tt,i)}catch{}switch(i.tag){case 26:Rt||oa(i,n),za(e,n,i),i.memoizedState?i.memoizedState.count--:i.stateNode&&(i=i.stateNode,i.parentNode.removeChild(i));break;case 27:Rt||oa(i,n);var s=ht,c=un;vr(i.type)&&(ht=i.stateNode,un=!1),za(e,n,i),Bs(i.stateNode),ht=s,un=c;break;case 5:Rt||oa(i,n);case 6:if(s=ht,c=un,ht=null,za(e,n,i),ht=s,un=c,ht!==null)if(un)try{(ht.nodeType===9?ht.body:ht.nodeName==="HTML"?ht.ownerDocument.body:ht).removeChild(i.stateNode)}catch(f){nt(i,n,f)}else try{ht.removeChild(i.stateNode)}catch(f){nt(i,n,f)}break;case 18:ht!==null&&(un?(e=ht,s0(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e,i.stateNode),gl(e)):s0(ht,i.stateNode));break;case 4:s=ht,c=un,ht=i.stateNode.containerInfo,un=!0,za(e,n,i),ht=s,un=c;break;case 0:case 11:case 14:case 15:cr(2,i,n),Rt||cr(4,i,n),za(e,n,i);break;case 1:Rt||(oa(i,n),s=i.stateNode,typeof s.componentWillUnmount=="function"&&ug(i,n,s)),za(e,n,i);break;case 21:za(e,n,i);break;case 22:Rt=(s=Rt)||i.memoizedState!==null,za(e,n,i),Rt=s;break;default:za(e,n,i)}}function pg(e,n){if(n.memoizedState===null&&(e=n.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{gl(e)}catch(i){nt(n,n.return,i)}}}function vg(e,n){if(n.memoizedState===null&&(e=n.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{gl(e)}catch(i){nt(n,n.return,i)}}function RE(e){switch(e.tag){case 31:case 13:case 19:var n=e.stateNode;return n===null&&(n=e.stateNode=new dg),n;case 22:return e=e.stateNode,n=e._retryCache,n===null&&(n=e._retryCache=new dg),n;default:throw Error(l(435,e.tag))}}function vo(e,n){var i=RE(e);n.forEach(function(s){if(!i.has(s)){i.add(s);var c=qE.bind(null,e,s);s.then(c,c)}})}function on(e,n){var i=n.deletions;if(i!==null)for(var s=0;s<i.length;s++){var c=i[s],f=e,p=n,b=p;e:for(;b!==null;){switch(b.tag){case 27:if(vr(b.type)){ht=b.stateNode,un=!1;break e}break;case 5:ht=b.stateNode,un=!1;break e;case 3:case 4:ht=b.stateNode.containerInfo,un=!0;break e}b=b.return}if(ht===null)throw Error(l(160));mg(f,p,c),ht=null,un=!1,f=c.alternate,f!==null&&(f.return=null),c.return=null}if(n.subtreeFlags&13886)for(n=n.child;n!==null;)gg(n,e),n=n.sibling}var In=null;function gg(e,n){var i=e.alternate,s=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:on(n,e),cn(e),s&4&&(cr(3,e,e.return),Rs(3,e),cr(5,e,e.return));break;case 1:on(n,e),cn(e),s&512&&(Rt||i===null||oa(i,i.return)),s&64&&ka&&(e=e.updateQueue,e!==null&&(s=e.callbacks,s!==null&&(i=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=i===null?s:i.concat(s))));break;case 26:var c=In;if(on(n,e),cn(e),s&512&&(Rt||i===null||oa(i,i.return)),s&4){var f=i!==null?i.memoizedState:null;if(s=e.memoizedState,i===null)if(s===null)if(e.stateNode===null){e:{s=e.type,i=e.memoizedProps,c=c.ownerDocument||c;t:switch(s){case"title":f=c.getElementsByTagName("title")[0],(!f||f[as]||f[Zt]||f.namespaceURI==="http://www.w3.org/2000/svg"||f.hasAttribute("itemprop"))&&(f=c.createElement(s),c.head.insertBefore(f,c.querySelector("head > title"))),Ft(f,s,i),f[Zt]=e,jt(f),s=f;break e;case"link":var p=g0("link","href",c).get(s+(i.href||""));if(p){for(var b=0;b<p.length;b++)if(f=p[b],f.getAttribute("href")===(i.href==null||i.href===""?null:i.href)&&f.getAttribute("rel")===(i.rel==null?null:i.rel)&&f.getAttribute("title")===(i.title==null?null:i.title)&&f.getAttribute("crossorigin")===(i.crossOrigin==null?null:i.crossOrigin)){p.splice(b,1);break t}}f=c.createElement(s),Ft(f,s,i),c.head.appendChild(f);break;case"meta":if(p=g0("meta","content",c).get(s+(i.content||""))){for(b=0;b<p.length;b++)if(f=p[b],f.getAttribute("content")===(i.content==null?null:""+i.content)&&f.getAttribute("name")===(i.name==null?null:i.name)&&f.getAttribute("property")===(i.property==null?null:i.property)&&f.getAttribute("http-equiv")===(i.httpEquiv==null?null:i.httpEquiv)&&f.getAttribute("charset")===(i.charSet==null?null:i.charSet)){p.splice(b,1);break t}}f=c.createElement(s),Ft(f,s,i),c.head.appendChild(f);break;default:throw Error(l(468,s))}f[Zt]=e,jt(f),s=f}e.stateNode=s}else b0(c,e.type,e.stateNode);else e.stateNode=v0(c,s,e.memoizedProps);else f!==s?(f===null?i.stateNode!==null&&(i=i.stateNode,i.parentNode.removeChild(i)):f.count--,s===null?b0(c,e.type,e.stateNode):v0(c,s,e.memoizedProps)):s===null&&e.stateNode!==null&&xd(e,e.memoizedProps,i.memoizedProps)}break;case 27:on(n,e),cn(e),s&512&&(Rt||i===null||oa(i,i.return)),i!==null&&s&4&&xd(e,e.memoizedProps,i.memoizedProps);break;case 5:if(on(n,e),cn(e),s&512&&(Rt||i===null||oa(i,i.return)),e.flags&32){c=e.stateNode;try{Hi(c,"")}catch(ce){nt(e,e.return,ce)}}s&4&&e.stateNode!=null&&(c=e.memoizedProps,xd(e,c,i!==null?i.memoizedProps:c)),s&1024&&(Ad=!0);break;case 6:if(on(n,e),cn(e),s&4){if(e.stateNode===null)throw Error(l(162));s=e.memoizedProps,i=e.stateNode;try{i.nodeValue=s}catch(ce){nt(e,e.return,ce)}}break;case 3:if(No=null,c=In,In=ko(n.containerInfo),on(n,e),In=c,cn(e),s&4&&i!==null&&i.memoizedState.isDehydrated)try{gl(n.containerInfo)}catch(ce){nt(e,e.return,ce)}Ad&&(Ad=!1,bg(e));break;case 4:s=In,In=ko(e.stateNode.containerInfo),on(n,e),cn(e),In=s;break;case 12:on(n,e),cn(e);break;case 31:on(n,e),cn(e),s&4&&(s=e.updateQueue,s!==null&&(e.updateQueue=null,vo(e,s)));break;case 13:on(n,e),cn(e),e.child.flags&8192&&e.memoizedState!==null!=(i!==null&&i.memoizedState!==null)&&(bo=L()),s&4&&(s=e.updateQueue,s!==null&&(e.updateQueue=null,vo(e,s)));break;case 22:c=e.memoizedState!==null;var T=i!==null&&i.memoizedState!==null,U=ka,Y=Rt;if(ka=U||c,Rt=Y||T,on(n,e),Rt=Y,ka=U,cn(e),s&8192)e:for(n=e.stateNode,n._visibility=c?n._visibility&-2:n._visibility|1,c&&(i===null||T||ka||Rt||li(e)),i=null,n=e;;){if(n.tag===5||n.tag===26){if(i===null){T=i=n;try{if(f=T.stateNode,c)p=f.style,typeof p.setProperty=="function"?p.setProperty("display","none","important"):p.display="none";else{b=T.stateNode;var $=T.memoizedProps.style,j=$!=null&&$.hasOwnProperty("display")?$.display:null;b.style.display=j==null||typeof j=="boolean"?"":(""+j).trim()}}catch(ce){nt(T,T.return,ce)}}}else if(n.tag===6){if(i===null){T=n;try{T.stateNode.nodeValue=c?"":T.memoizedProps}catch(ce){nt(T,T.return,ce)}}}else if(n.tag===18){if(i===null){T=n;try{var H=T.stateNode;c?u0(H,!0):u0(T.stateNode,!1)}catch(ce){nt(T,T.return,ce)}}}else if((n.tag!==22&&n.tag!==23||n.memoizedState===null||n===e)&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break e;for(;n.sibling===null;){if(n.return===null||n.return===e)break e;i===n&&(i=null),n=n.return}i===n&&(i=null),n.sibling.return=n.return,n=n.sibling}s&4&&(s=e.updateQueue,s!==null&&(i=s.retryQueue,i!==null&&(s.retryQueue=null,vo(e,i))));break;case 19:on(n,e),cn(e),s&4&&(s=e.updateQueue,s!==null&&(e.updateQueue=null,vo(e,s)));break;case 30:break;case 21:break;default:on(n,e),cn(e)}}function cn(e){var n=e.flags;if(n&2){try{for(var i,s=e.return;s!==null;){if(cg(s)){i=s;break}s=s.return}if(i==null)throw Error(l(160));switch(i.tag){case 27:var c=i.stateNode,f=wd(e);po(e,f,c);break;case 5:var p=i.stateNode;i.flags&32&&(Hi(p,""),i.flags&=-33);var b=wd(e);po(e,b,p);break;case 3:case 4:var T=i.stateNode.containerInfo,U=wd(e);Td(e,U,T);break;default:throw Error(l(161))}}catch(Y){nt(e,e.return,Y)}e.flags&=-3}n&4096&&(e.flags&=-4097)}function bg(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var n=e;bg(n),n.tag===5&&n.flags&1024&&n.stateNode.reset(),e=e.sibling}}function Na(e,n){if(n.subtreeFlags&8772)for(n=n.child;n!==null;)hg(e,n.alternate,n),n=n.sibling}function li(e){for(e=e.child;e!==null;){var n=e;switch(n.tag){case 0:case 11:case 14:case 15:cr(4,n,n.return),li(n);break;case 1:oa(n,n.return);var i=n.stateNode;typeof i.componentWillUnmount=="function"&&ug(n,n.return,i),li(n);break;case 27:Bs(n.stateNode);case 26:case 5:oa(n,n.return),li(n);break;case 22:n.memoizedState===null&&li(n);break;case 30:li(n);break;default:li(n)}e=e.sibling}}function Da(e,n,i){for(i=i&&(n.subtreeFlags&8772)!==0,n=n.child;n!==null;){var s=n.alternate,c=e,f=n,p=f.flags;switch(f.tag){case 0:case 11:case 15:Da(c,f,i),Rs(4,f);break;case 1:if(Da(c,f,i),s=f,c=s.stateNode,typeof c.componentDidMount=="function")try{c.componentDidMount()}catch(U){nt(s,s.return,U)}if(s=f,c=s.updateQueue,c!==null){var b=s.stateNode;try{var T=c.shared.hiddenCallbacks;if(T!==null)for(c.shared.hiddenCallbacks=null,c=0;c<T.length;c++)Pp(T[c],b)}catch(U){nt(s,s.return,U)}}i&&p&64&&sg(f),Ms(f,f.return);break;case 27:fg(f);case 26:case 5:Da(c,f,i),i&&s===null&&p&4&&og(f),Ms(f,f.return);break;case 12:Da(c,f,i);break;case 31:Da(c,f,i),i&&p&4&&pg(c,f);break;case 13:Da(c,f,i),i&&p&4&&vg(c,f);break;case 22:f.memoizedState===null&&Da(c,f,i),Ms(f,f.return);break;case 30:break;default:Da(c,f,i)}n=n.sibling}}function Cd(e,n){var i=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(i=e.memoizedState.cachePool.pool),e=null,n.memoizedState!==null&&n.memoizedState.cachePool!==null&&(e=n.memoizedState.cachePool.pool),e!==i&&(e!=null&&e.refCount++,i!=null&&ps(i))}function Od(e,n){e=null,n.alternate!==null&&(e=n.alternate.memoizedState.cache),n=n.memoizedState.cache,n!==e&&(n.refCount++,e!=null&&ps(e))}function Wn(e,n,i,s){if(n.subtreeFlags&10256)for(n=n.child;n!==null;)_g(e,n,i,s),n=n.sibling}function _g(e,n,i,s){var c=n.flags;switch(n.tag){case 0:case 11:case 15:Wn(e,n,i,s),c&2048&&Rs(9,n);break;case 1:Wn(e,n,i,s);break;case 3:Wn(e,n,i,s),c&2048&&(e=null,n.alternate!==null&&(e=n.alternate.memoizedState.cache),n=n.memoizedState.cache,n!==e&&(n.refCount++,e!=null&&ps(e)));break;case 12:if(c&2048){Wn(e,n,i,s),e=n.stateNode;try{var f=n.memoizedProps,p=f.id,b=f.onPostCommit;typeof b=="function"&&b(p,n.alternate===null?"mount":"update",e.passiveEffectDuration,-0)}catch(T){nt(n,n.return,T)}}else Wn(e,n,i,s);break;case 31:Wn(e,n,i,s);break;case 13:Wn(e,n,i,s);break;case 23:break;case 22:f=n.stateNode,p=n.alternate,n.memoizedState!==null?f._visibility&2?Wn(e,n,i,s):ks(e,n):f._visibility&2?Wn(e,n,i,s):(f._visibility|=2,sl(e,n,i,s,(n.subtreeFlags&10256)!==0||!1)),c&2048&&Cd(p,n);break;case 24:Wn(e,n,i,s),c&2048&&Od(n.alternate,n);break;default:Wn(e,n,i,s)}}function sl(e,n,i,s,c){for(c=c&&((n.subtreeFlags&10256)!==0||!1),n=n.child;n!==null;){var f=e,p=n,b=i,T=s,U=p.flags;switch(p.tag){case 0:case 11:case 15:sl(f,p,b,T,c),Rs(8,p);break;case 23:break;case 22:var Y=p.stateNode;p.memoizedState!==null?Y._visibility&2?sl(f,p,b,T,c):ks(f,p):(Y._visibility|=2,sl(f,p,b,T,c)),c&&U&2048&&Cd(p.alternate,p);break;case 24:sl(f,p,b,T,c),c&&U&2048&&Od(p.alternate,p);break;default:sl(f,p,b,T,c)}n=n.sibling}}function ks(e,n){if(n.subtreeFlags&10256)for(n=n.child;n!==null;){var i=e,s=n,c=s.flags;switch(s.tag){case 22:ks(i,s),c&2048&&Cd(s.alternate,s);break;case 24:ks(i,s),c&2048&&Od(s.alternate,s);break;default:ks(i,s)}n=n.sibling}}var zs=8192;function ul(e,n,i){if(e.subtreeFlags&zs)for(e=e.child;e!==null;)Sg(e,n,i),e=e.sibling}function Sg(e,n,i){switch(e.tag){case 26:ul(e,n,i),e.flags&zs&&e.memoizedState!==null&&mx(i,In,e.memoizedState,e.memoizedProps);break;case 5:ul(e,n,i);break;case 3:case 4:var s=In;In=ko(e.stateNode.containerInfo),ul(e,n,i),In=s;break;case 22:e.memoizedState===null&&(s=e.alternate,s!==null&&s.memoizedState!==null?(s=zs,zs=16777216,ul(e,n,i),zs=s):ul(e,n,i));break;default:ul(e,n,i)}}function Eg(e){var n=e.alternate;if(n!==null&&(e=n.child,e!==null)){n.child=null;do n=e.sibling,e.sibling=null,e=n;while(e!==null)}}function Ns(e){var n=e.deletions;if((e.flags&16)!==0){if(n!==null)for(var i=0;i<n.length;i++){var s=n[i];qt=s,wg(s,e)}Eg(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)xg(e),e=e.sibling}function xg(e){switch(e.tag){case 0:case 11:case 15:Ns(e),e.flags&2048&&cr(9,e,e.return);break;case 3:Ns(e);break;case 12:Ns(e);break;case 22:var n=e.stateNode;e.memoizedState!==null&&n._visibility&2&&(e.return===null||e.return.tag!==13)?(n._visibility&=-3,go(e)):Ns(e);break;default:Ns(e)}}function go(e){var n=e.deletions;if((e.flags&16)!==0){if(n!==null)for(var i=0;i<n.length;i++){var s=n[i];qt=s,wg(s,e)}Eg(e)}for(e=e.child;e!==null;){switch(n=e,n.tag){case 0:case 11:case 15:cr(8,n,n.return),go(n);break;case 22:i=n.stateNode,i._visibility&2&&(i._visibility&=-3,go(n));break;default:go(n)}e=e.sibling}}function wg(e,n){for(;qt!==null;){var i=qt;switch(i.tag){case 0:case 11:case 15:cr(8,i,n);break;case 23:case 22:if(i.memoizedState!==null&&i.memoizedState.cachePool!==null){var s=i.memoizedState.cachePool.pool;s!=null&&s.refCount++}break;case 24:ps(i.memoizedState.cache)}if(s=i.child,s!==null)s.return=i,qt=s;else e:for(i=e;qt!==null;){s=qt;var c=s.sibling,f=s.return;if(yg(s),s===i){qt=null;break e}if(c!==null){c.return=f,qt=c;break e}qt=f}}}var ME={getCacheForType:function(e){var n=Gt(At),i=n.data.get(e);return i===void 0&&(i=e(),n.data.set(e,i)),i},cacheSignal:function(){return Gt(At).controller.signal}},kE=typeof WeakMap=="function"?WeakMap:Map,We=0,st=null,Ze=null,Ge=0,tt=0,Sn=null,fr=!1,ol=!1,Rd=!1,Ua=0,gt=0,dr=0,si=0,Md=0,En=0,cl=0,Ds=null,fn=null,kd=!1,bo=0,Tg=0,_o=1/0,So=null,hr=null,Dt=0,yr=null,fl=null,La=0,zd=0,Nd=null,Ag=null,Us=0,Dd=null;function xn(){return(We&2)!==0&&Ge!==0?Ge&-Ge:B.T!==null?Vd():Zm()}function Cg(){if(En===0)if((Ge&536870912)===0||Fe){var e=Ou;Ou<<=1,(Ou&3932160)===0&&(Ou=262144),En=e}else En=536870912;return e=bn.current,e!==null&&(e.flags|=32),En}function dn(e,n,i){(e===st&&(tt===2||tt===9)||e.cancelPendingCommit!==null)&&(dl(e,0),mr(e,Ge,En,!1)),ns(e,i),((We&2)===0||e!==st)&&(e===st&&((We&2)===0&&(si|=i),gt===4&&mr(e,Ge,En,!1)),ca(e))}function Og(e,n,i){if((We&6)!==0)throw Error(l(327));var s=!i&&(n&127)===0&&(n&e.expiredLanes)===0||ts(e,n),c=s?DE(e,n):Ld(e,n,!0),f=s;do{if(c===0){ol&&!s&&mr(e,n,0,!1);break}else{if(i=e.current.alternate,f&&!zE(i)){c=Ld(e,n,!1),f=!1;continue}if(c===2){if(f=n,e.errorRecoveryDisabledLanes&f)var p=0;else p=e.pendingLanes&-536870913,p=p!==0?p:p&536870912?536870912:0;if(p!==0){n=p;e:{var b=e;c=Ds;var T=b.current.memoizedState.isDehydrated;if(T&&(dl(b,p).flags|=256),p=Ld(b,p,!1),p!==2){if(Rd&&!T){b.errorRecoveryDisabledLanes|=f,si|=f,c=4;break e}f=fn,fn=c,f!==null&&(fn===null?fn=f:fn.push.apply(fn,f))}c=p}if(f=!1,c!==2)continue}}if(c===1){dl(e,0),mr(e,n,0,!0);break}e:{switch(s=e,f=c,f){case 0:case 1:throw Error(l(345));case 4:if((n&4194048)!==n)break;case 6:mr(s,n,En,!fr);break e;case 2:fn=null;break;case 3:case 5:break;default:throw Error(l(329))}if((n&62914560)===n&&(c=bo+300-L(),10<c)){if(mr(s,n,En,!fr),Mu(s,0,!0)!==0)break e;La=n,s.timeoutHandle=i0(Rg.bind(null,s,i,fn,So,kd,n,En,si,cl,fr,f,"Throttled",-0,0),c);break e}Rg(s,i,fn,So,kd,n,En,si,cl,fr,f,null,-0,0)}}break}while(!0);ca(e)}function Rg(e,n,i,s,c,f,p,b,T,U,Y,$,j,H){if(e.timeoutHandle=-1,$=n.subtreeFlags,$&8192||($&16785408)===16785408){$={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:Sa},Sg(n,f,$);var ce=(f&62914560)===f?bo-L():(f&4194048)===f?Tg-L():0;if(ce=px($,ce),ce!==null){La=f,e.cancelPendingCommit=ce(jg.bind(null,e,n,f,i,s,c,p,b,T,Y,$,null,j,H)),mr(e,f,p,!U);return}}jg(e,n,f,i,s,c,p,b,T)}function zE(e){for(var n=e;;){var i=n.tag;if((i===0||i===11||i===15)&&n.flags&16384&&(i=n.updateQueue,i!==null&&(i=i.stores,i!==null)))for(var s=0;s<i.length;s++){var c=i[s],f=c.getSnapshot;c=c.value;try{if(!vn(f(),c))return!1}catch{return!1}}if(i=n.child,n.subtreeFlags&16384&&i!==null)i.return=n,n=i;else{if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return!0;n=n.return}n.sibling.return=n.return,n=n.sibling}}return!0}function mr(e,n,i,s){n&=~Md,n&=~si,e.suspendedLanes|=n,e.pingedLanes&=~n,s&&(e.warmLanes|=n),s=e.expirationTimes;for(var c=n;0<c;){var f=31-Ht(c),p=1<<f;s[f]=-1,c&=~p}i!==0&&Bm(e,i,n)}function Eo(){return(We&6)===0?(Ls(0),!1):!0}function Ud(){if(Ze!==null){if(tt===0)var e=Ze.return;else e=Ze,Ta=Ir=null,Jf(e),nl=null,gs=0,e=Ze;for(;e!==null;)lg(e.alternate,e),e=e.return;Ze=null}}function dl(e,n){var i=e.timeoutHandle;i!==-1&&(e.timeoutHandle=-1,IE(i)),i=e.cancelPendingCommit,i!==null&&(e.cancelPendingCommit=null,i()),La=0,Ud(),st=e,Ze=i=xa(e.current,null),Ge=n,tt=0,Sn=null,fr=!1,ol=ts(e,n),Rd=!1,cl=En=Md=si=dr=gt=0,fn=Ds=null,kd=!1,(n&8)!==0&&(n|=n&32);var s=e.entangledLanes;if(s!==0)for(e=e.entanglements,s&=n;0<s;){var c=31-Ht(s),f=1<<c;n|=e[c],s&=~f}return Ua=n,Zu(),i}function Mg(e,n){Ue=null,B.H=As,n===tl||n===Pu?(n=Fp(),tt=3):n===Bf?(n=Fp(),tt=4):tt=n===hd?8:n!==null&&typeof n=="object"&&typeof n.then=="function"?6:1,Sn=n,Ze===null&&(gt=1,co(e,jn(n,e.current)))}function kg(){var e=bn.current;return e===null?!0:(Ge&4194048)===Ge?Hn===null:(Ge&62914560)===Ge||(Ge&536870912)!==0?e===Hn:!1}function zg(){var e=B.H;return B.H=As,e===null?As:e}function Ng(){var e=B.A;return B.A=ME,e}function xo(){gt=4,fr||(Ge&4194048)!==Ge&&bn.current!==null||(ol=!0),(dr&134217727)===0&&(si&134217727)===0||st===null||mr(st,Ge,En,!1)}function Ld(e,n,i){var s=We;We|=2;var c=zg(),f=Ng();(st!==e||Ge!==n)&&(So=null,dl(e,n)),n=!1;var p=gt;e:do try{if(tt!==0&&Ze!==null){var b=Ze,T=Sn;switch(tt){case 8:Ud(),p=6;break e;case 3:case 2:case 9:case 6:bn.current===null&&(n=!0);var U=tt;if(tt=0,Sn=null,hl(e,b,T,U),i&&ol){p=0;break e}break;default:U=tt,tt=0,Sn=null,hl(e,b,T,U)}}NE(),p=gt;break}catch(Y){Mg(e,Y)}while(!0);return n&&e.shellSuspendCounter++,Ta=Ir=null,We=s,B.H=c,B.A=f,Ze===null&&(st=null,Ge=0,Zu()),p}function NE(){for(;Ze!==null;)Dg(Ze)}function DE(e,n){var i=We;We|=2;var s=zg(),c=Ng();st!==e||Ge!==n?(So=null,_o=L()+500,dl(e,n)):ol=ts(e,n);e:do try{if(tt!==0&&Ze!==null){n=Ze;var f=Sn;t:switch(tt){case 1:tt=0,Sn=null,hl(e,n,f,1);break;case 2:case 9:if(Gp(f)){tt=0,Sn=null,Ug(n);break}n=function(){tt!==2&&tt!==9||st!==e||(tt=7),ca(e)},f.then(n,n);break e;case 3:tt=7;break e;case 4:tt=5;break e;case 7:Gp(f)?(tt=0,Sn=null,Ug(n)):(tt=0,Sn=null,hl(e,n,f,7));break;case 5:var p=null;switch(Ze.tag){case 26:p=Ze.memoizedState;case 5:case 27:var b=Ze;if(p?_0(p):b.stateNode.complete){tt=0,Sn=null;var T=b.sibling;if(T!==null)Ze=T;else{var U=b.return;U!==null?(Ze=U,wo(U)):Ze=null}break t}}tt=0,Sn=null,hl(e,n,f,5);break;case 6:tt=0,Sn=null,hl(e,n,f,6);break;case 8:Ud(),gt=6;break e;default:throw Error(l(462))}}UE();break}catch(Y){Mg(e,Y)}while(!0);return Ta=Ir=null,B.H=s,B.A=c,We=i,Ze!==null?0:(st=null,Ge=0,Zu(),gt)}function UE(){for(;Ze!==null&&!C();)Dg(Ze)}function Dg(e){var n=rg(e.alternate,e,Ua);e.memoizedProps=e.pendingProps,n===null?wo(e):Ze=n}function Ug(e){var n=e,i=n.alternate;switch(n.tag){case 15:case 0:n=Iv(i,n,n.pendingProps,n.type,void 0,Ge);break;case 11:n=Iv(i,n,n.pendingProps,n.type.render,n.ref,Ge);break;case 5:Jf(n);default:lg(i,n),n=Ze=Np(n,Ua),n=rg(i,n,Ua)}e.memoizedProps=e.pendingProps,n===null?wo(e):Ze=n}function hl(e,n,i,s){Ta=Ir=null,Jf(n),nl=null,gs=0;var c=n.return;try{if(xE(e,c,n,i,Ge)){gt=1,co(e,jn(i,e.current)),Ze=null;return}}catch(f){if(c!==null)throw Ze=c,f;gt=1,co(e,jn(i,e.current)),Ze=null;return}n.flags&32768?(Fe||s===1?e=!0:ol||(Ge&536870912)!==0?e=!1:(fr=e=!0,(s===2||s===9||s===3||s===6)&&(s=bn.current,s!==null&&s.tag===13&&(s.flags|=16384))),Lg(n,e)):wo(n)}function wo(e){var n=e;do{if((n.flags&32768)!==0){Lg(n,fr);return}e=n.return;var i=AE(n.alternate,n,Ua);if(i!==null){Ze=i;return}if(n=n.sibling,n!==null){Ze=n;return}Ze=n=e}while(n!==null);gt===0&&(gt=5)}function Lg(e,n){do{var i=CE(e.alternate,e);if(i!==null){i.flags&=32767,Ze=i;return}if(i=e.return,i!==null&&(i.flags|=32768,i.subtreeFlags=0,i.deletions=null),!n&&(e=e.sibling,e!==null)){Ze=e;return}Ze=e=i}while(e!==null);gt=6,Ze=null}function jg(e,n,i,s,c,f,p,b,T){e.cancelPendingCommit=null;do To();while(Dt!==0);if((We&6)!==0)throw Error(l(327));if(n!==null){if(n===e.current)throw Error(l(177));if(f=n.lanes|n.childLanes,f|=wf,y2(e,i,f,p,b,T),e===st&&(Ze=st=null,Ge=0),fl=n,yr=e,La=i,zd=f,Nd=c,Ag=s,(n.subtreeFlags&10256)!==0||(n.flags&10256)!==0?(e.callbackNode=null,e.callbackPriority=0,BE(fe,function(){return Zg(),null})):(e.callbackNode=null,e.callbackPriority=0),s=(n.flags&13878)!==0,(n.subtreeFlags&13878)!==0||s){s=B.T,B.T=null,c=J.p,J.p=2,p=We,We|=4;try{OE(e,n,i)}finally{We=p,J.p=c,B.T=s}}Dt=1,qg(),Bg(),Vg()}}function qg(){if(Dt===1){Dt=0;var e=yr,n=fl,i=(n.flags&13878)!==0;if((n.subtreeFlags&13878)!==0||i){i=B.T,B.T=null;var s=J.p;J.p=2;var c=We;We|=4;try{gg(n,e);var f=$d,p=wp(e.containerInfo),b=f.focusedElem,T=f.selectionRange;if(p!==b&&b&&b.ownerDocument&&xp(b.ownerDocument.documentElement,b)){if(T!==null&&bf(b)){var U=T.start,Y=T.end;if(Y===void 0&&(Y=U),"selectionStart"in b)b.selectionStart=U,b.selectionEnd=Math.min(Y,b.value.length);else{var $=b.ownerDocument||document,j=$&&$.defaultView||window;if(j.getSelection){var H=j.getSelection(),ce=b.textContent.length,Te=Math.min(T.start,ce),it=T.end===void 0?Te:Math.min(T.end,ce);!H.extend&&Te>it&&(p=it,it=Te,Te=p);var k=Ep(b,Te),O=Ep(b,it);if(k&&O&&(H.rangeCount!==1||H.anchorNode!==k.node||H.anchorOffset!==k.offset||H.focusNode!==O.node||H.focusOffset!==O.offset)){var D=$.createRange();D.setStart(k.node,k.offset),H.removeAllRanges(),Te>it?(H.addRange(D),H.extend(O.node,O.offset)):(D.setEnd(O.node,O.offset),H.addRange(D))}}}}for($=[],H=b;H=H.parentNode;)H.nodeType===1&&$.push({element:H,left:H.scrollLeft,top:H.scrollTop});for(typeof b.focus=="function"&&b.focus(),b=0;b<$.length;b++){var F=$[b];F.element.scrollLeft=F.left,F.element.scrollTop=F.top}}jo=!!Xd,$d=Xd=null}finally{We=c,J.p=s,B.T=i}}e.current=n,Dt=2}}function Bg(){if(Dt===2){Dt=0;var e=yr,n=fl,i=(n.flags&8772)!==0;if((n.subtreeFlags&8772)!==0||i){i=B.T,B.T=null;var s=J.p;J.p=2;var c=We;We|=4;try{hg(e,n.alternate,n)}finally{We=c,J.p=s,B.T=i}}Dt=3}}function Vg(){if(Dt===4||Dt===3){Dt=0,N();var e=yr,n=fl,i=La,s=Ag;(n.subtreeFlags&10256)!==0||(n.flags&10256)!==0?Dt=5:(Dt=0,fl=yr=null,Hg(e,e.pendingLanes));var c=e.pendingLanes;if(c===0&&(hr=null),Wc(i),n=n.stateNode,It&&typeof It.onCommitFiberRoot=="function")try{It.onCommitFiberRoot(Tt,n,void 0,(n.current.flags&128)===128)}catch{}if(s!==null){n=B.T,c=J.p,J.p=2,B.T=null;try{for(var f=e.onRecoverableError,p=0;p<s.length;p++){var b=s[p];f(b.value,{componentStack:b.stack})}}finally{B.T=n,J.p=c}}(La&3)!==0&&To(),ca(e),c=e.pendingLanes,(i&261930)!==0&&(c&42)!==0?e===Dd?Us++:(Us=0,Dd=e):Us=0,Ls(0)}}function Hg(e,n){(e.pooledCacheLanes&=n)===0&&(n=e.pooledCache,n!=null&&(e.pooledCache=null,ps(n)))}function To(){return qg(),Bg(),Vg(),Zg()}function Zg(){if(Dt!==5)return!1;var e=yr,n=zd;zd=0;var i=Wc(La),s=B.T,c=J.p;try{J.p=32>i?32:i,B.T=null,i=Nd,Nd=null;var f=yr,p=La;if(Dt=0,fl=yr=null,La=0,(We&6)!==0)throw Error(l(331));var b=We;if(We|=4,xg(f.current),_g(f,f.current,p,i),We=b,Ls(0,!1),It&&typeof It.onPostCommitFiberRoot=="function")try{It.onPostCommitFiberRoot(Tt,f)}catch{}return!0}finally{J.p=c,B.T=s,Hg(e,n)}}function Qg(e,n,i){n=jn(i,n),n=dd(e.stateNode,n,2),e=sr(e,n,2),e!==null&&(ns(e,2),ca(e))}function nt(e,n,i){if(e.tag===3)Qg(e,e,i);else for(;n!==null;){if(n.tag===3){Qg(n,e,i);break}else if(n.tag===1){var s=n.stateNode;if(typeof n.type.getDerivedStateFromError=="function"||typeof s.componentDidCatch=="function"&&(hr===null||!hr.has(s))){e=jn(i,e),i=Gv(2),s=sr(n,i,2),s!==null&&(Yv(i,s,n,e),ns(s,2),ca(s));break}}n=n.return}}function jd(e,n,i){var s=e.pingCache;if(s===null){s=e.pingCache=new kE;var c=new Set;s.set(n,c)}else c=s.get(n),c===void 0&&(c=new Set,s.set(n,c));c.has(i)||(Rd=!0,c.add(i),e=LE.bind(null,e,n,i),n.then(e,e))}function LE(e,n,i){var s=e.pingCache;s!==null&&s.delete(n),e.pingedLanes|=e.suspendedLanes&i,e.warmLanes&=~i,st===e&&(Ge&i)===i&&(gt===4||gt===3&&(Ge&62914560)===Ge&&300>L()-bo?(We&2)===0&&dl(e,0):Md|=i,cl===Ge&&(cl=0)),ca(e)}function Gg(e,n){n===0&&(n=qm()),e=Kr(e,n),e!==null&&(ns(e,n),ca(e))}function jE(e){var n=e.memoizedState,i=0;n!==null&&(i=n.retryLane),Gg(e,i)}function qE(e,n){var i=0;switch(e.tag){case 31:case 13:var s=e.stateNode,c=e.memoizedState;c!==null&&(i=c.retryLane);break;case 19:s=e.stateNode;break;case 22:s=e.stateNode._retryCache;break;default:throw Error(l(314))}s!==null&&s.delete(n),Gg(e,i)}function BE(e,n){return Au(e,n)}var Ao=null,yl=null,qd=!1,Co=!1,Bd=!1,pr=0;function ca(e){e!==yl&&e.next===null&&(yl===null?Ao=yl=e:yl=yl.next=e),Co=!0,qd||(qd=!0,HE())}function Ls(e,n){if(!Bd&&Co){Bd=!0;do for(var i=!1,s=Ao;s!==null;){if(e!==0){var c=s.pendingLanes;if(c===0)var f=0;else{var p=s.suspendedLanes,b=s.pingedLanes;f=(1<<31-Ht(42|e)+1)-1,f&=c&~(p&~b),f=f&201326741?f&201326741|1:f?f|2:0}f!==0&&(i=!0,$g(s,f))}else f=Ge,f=Mu(s,s===st?f:0,s.cancelPendingCommit!==null||s.timeoutHandle!==-1),(f&3)===0||ts(s,f)||(i=!0,$g(s,f));s=s.next}while(i);Bd=!1}}function VE(){Yg()}function Yg(){Co=qd=!1;var e=0;pr!==0&&JE()&&(e=pr);for(var n=L(),i=null,s=Ao;s!==null;){var c=s.next,f=Fg(s,n);f===0?(s.next=null,i===null?Ao=c:i.next=c,c===null&&(yl=i)):(i=s,(e!==0||(f&3)!==0)&&(Co=!0)),s=c}Dt!==0&&Dt!==5||Ls(e),pr!==0&&(pr=0)}function Fg(e,n){for(var i=e.suspendedLanes,s=e.pingedLanes,c=e.expirationTimes,f=e.pendingLanes&-62914561;0<f;){var p=31-Ht(f),b=1<<p,T=c[p];T===-1?((b&i)===0||(b&s)!==0)&&(c[p]=h2(b,n)):T<=n&&(e.expiredLanes|=b),f&=~b}if(n=st,i=Ge,i=Mu(e,e===n?i:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),s=e.callbackNode,i===0||e===n&&(tt===2||tt===9)||e.cancelPendingCommit!==null)return s!==null&&s!==null&&Di(s),e.callbackNode=null,e.callbackPriority=0;if((i&3)===0||ts(e,i)){if(n=i&-i,n===e.callbackPriority)return n;switch(s!==null&&Di(s),Wc(i)){case 2:case 8:i=te;break;case 32:i=fe;break;case 268435456:i=Ke;break;default:i=fe}return s=Xg.bind(null,e),i=Au(i,s),e.callbackPriority=n,e.callbackNode=i,n}return s!==null&&s!==null&&Di(s),e.callbackPriority=2,e.callbackNode=null,2}function Xg(e,n){if(Dt!==0&&Dt!==5)return e.callbackNode=null,e.callbackPriority=0,null;var i=e.callbackNode;if(To()&&e.callbackNode!==i)return null;var s=Ge;return s=Mu(e,e===st?s:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),s===0?null:(Og(e,s,n),Fg(e,L()),e.callbackNode!=null&&e.callbackNode===i?Xg.bind(null,e):null)}function $g(e,n){if(To())return null;Og(e,n,!0)}function HE(){WE(function(){(We&6)!==0?Au(W,VE):Yg()})}function Vd(){if(pr===0){var e=Wi;e===0&&(e=Qr,Qr<<=1,(Qr&261888)===0&&(Qr=256)),pr=e}return pr}function Kg(e){return e==null||typeof e=="symbol"||typeof e=="boolean"?null:typeof e=="function"?e:Du(""+e)}function Pg(e,n){var i=n.ownerDocument.createElement("input");return i.name=n.name,i.value=n.value,e.id&&i.setAttribute("form",e.id),n.parentNode.insertBefore(i,n),e=new FormData(e),i.parentNode.removeChild(i),e}function ZE(e,n,i,s,c){if(n==="submit"&&i&&i.stateNode===c){var f=Kg((c[ln]||null).action),p=s.submitter;p&&(n=(n=p[ln]||null)?Kg(n.formAction):p.getAttribute("formAction"),n!==null&&(f=n,p=null));var b=new qu("action","action",null,s,c);e.push({event:b,listeners:[{instance:null,listener:function(){if(s.defaultPrevented){if(pr!==0){var T=p?Pg(c,p):new FormData(c);ld(i,{pending:!0,data:T,method:c.method,action:f},null,T)}}else typeof f=="function"&&(b.preventDefault(),T=p?Pg(c,p):new FormData(c),ld(i,{pending:!0,data:T,method:c.method,action:f},f,T))},currentTarget:c}]})}}for(var Hd=0;Hd<xf.length;Hd++){var Zd=xf[Hd],QE=Zd.toLowerCase(),GE=Zd[0].toUpperCase()+Zd.slice(1);Jn(QE,"on"+GE)}Jn(Cp,"onAnimationEnd"),Jn(Op,"onAnimationIteration"),Jn(Rp,"onAnimationStart"),Jn("dblclick","onDoubleClick"),Jn("focusin","onFocus"),Jn("focusout","onBlur"),Jn(lE,"onTransitionRun"),Jn(sE,"onTransitionStart"),Jn(uE,"onTransitionCancel"),Jn(Mp,"onTransitionEnd"),Bi("onMouseEnter",["mouseout","mouseover"]),Bi("onMouseLeave",["mouseout","mouseover"]),Bi("onPointerEnter",["pointerout","pointerover"]),Bi("onPointerLeave",["pointerout","pointerover"]),Yr("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),Yr("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),Yr("onBeforeInput",["compositionend","keypress","textInput","paste"]),Yr("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),Yr("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),Yr("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var js="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(" "),YE=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(js));function Jg(e,n){n=(n&4)!==0;for(var i=0;i<e.length;i++){var s=e[i],c=s.event;s=s.listeners;e:{var f=void 0;if(n)for(var p=s.length-1;0<=p;p--){var b=s[p],T=b.instance,U=b.currentTarget;if(b=b.listener,T!==f&&c.isPropagationStopped())break e;f=b,c.currentTarget=U;try{f(c)}catch(Y){Hu(Y)}c.currentTarget=null,f=T}else for(p=0;p<s.length;p++){if(b=s[p],T=b.instance,U=b.currentTarget,b=b.listener,T!==f&&c.isPropagationStopped())break e;f=b,c.currentTarget=U;try{f(c)}catch(Y){Hu(Y)}c.currentTarget=null,f=T}}}}function Qe(e,n){var i=n[ef];i===void 0&&(i=n[ef]=new Set);var s=e+"__bubble";i.has(s)||(Ig(n,e,2,!1),i.add(s))}function Qd(e,n,i){var s=0;n&&(s|=4),Ig(i,e,s,n)}var Oo="_reactListening"+Math.random().toString(36).slice(2);function Gd(e){if(!e[Oo]){e[Oo]=!0,Ym.forEach(function(i){i!=="selectionchange"&&(YE.has(i)||Qd(i,!1,e),Qd(i,!0,e))});var n=e.nodeType===9?e:e.ownerDocument;n===null||n[Oo]||(n[Oo]=!0,Qd("selectionchange",!1,n))}}function Ig(e,n,i,s){switch(C0(n)){case 2:var c=bx;break;case 8:c=_x;break;default:c=ih}i=c.bind(null,n,i,e),c=void 0,!cf||n!=="touchstart"&&n!=="touchmove"&&n!=="wheel"||(c=!0),s?c!==void 0?e.addEventListener(n,i,{capture:!0,passive:c}):e.addEventListener(n,i,!0):c!==void 0?e.addEventListener(n,i,{passive:c}):e.addEventListener(n,i,!1)}function Yd(e,n,i,s,c){var f=s;if((n&1)===0&&(n&2)===0&&s!==null)e:for(;;){if(s===null)return;var p=s.tag;if(p===3||p===4){var b=s.stateNode.containerInfo;if(b===c)break;if(p===4)for(p=s.return;p!==null;){var T=p.tag;if((T===3||T===4)&&p.stateNode.containerInfo===c)return;p=p.return}for(;b!==null;){if(p=Li(b),p===null)return;if(T=p.tag,T===5||T===6||T===26||T===27){s=f=p;continue e}b=b.parentNode}}s=s.return}ap(function(){var U=f,Y=uf(i),$=[];e:{var j=kp.get(e);if(j!==void 0){var H=qu,ce=e;switch(e){case"keypress":if(Lu(i)===0)break e;case"keydown":case"keyup":H=q2;break;case"focusin":ce="focus",H=yf;break;case"focusout":ce="blur",H=yf;break;case"beforeblur":case"afterblur":H=yf;break;case"click":if(i.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":H=lp;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":H=A2;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":H=H2;break;case Cp:case Op:case Rp:H=R2;break;case Mp:H=Q2;break;case"scroll":case"scrollend":H=w2;break;case"wheel":H=Y2;break;case"copy":case"cut":case"paste":H=k2;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":H=up;break;case"toggle":case"beforetoggle":H=X2}var Te=(n&4)!==0,it=!Te&&(e==="scroll"||e==="scrollend"),k=Te?j!==null?j+"Capture":null:j;Te=[];for(var O=U,D;O!==null;){var F=O;if(D=F.stateNode,F=F.tag,F!==5&&F!==26&&F!==27||D===null||k===null||(F=is(O,k),F!=null&&Te.push(qs(O,F,D))),it)break;O=O.return}0<Te.length&&(j=new H(j,ce,null,i,Y),$.push({event:j,listeners:Te}))}}if((n&7)===0){e:{if(j=e==="mouseover"||e==="pointerover",H=e==="mouseout"||e==="pointerout",j&&i!==sf&&(ce=i.relatedTarget||i.fromElement)&&(Li(ce)||ce[Ui]))break e;if((H||j)&&(j=Y.window===Y?Y:(j=Y.ownerDocument)?j.defaultView||j.parentWindow:window,H?(ce=i.relatedTarget||i.toElement,H=U,ce=ce?Li(ce):null,ce!==null&&(it=o(ce),Te=ce.tag,ce!==it||Te!==5&&Te!==27&&Te!==6)&&(ce=null)):(H=null,ce=U),H!==ce)){if(Te=lp,F="onMouseLeave",k="onMouseEnter",O="mouse",(e==="pointerout"||e==="pointerover")&&(Te=up,F="onPointerLeave",k="onPointerEnter",O="pointer"),it=H==null?j:rs(H),D=ce==null?j:rs(ce),j=new Te(F,O+"leave",H,i,Y),j.target=it,j.relatedTarget=D,F=null,Li(Y)===U&&(Te=new Te(k,O+"enter",ce,i,Y),Te.target=D,Te.relatedTarget=it,F=Te),it=F,H&&ce)t:{for(Te=FE,k=H,O=ce,D=0,F=k;F;F=Te(F))D++;F=0;for(var xe=O;xe;xe=Te(xe))F++;for(;0<D-F;)k=Te(k),D--;for(;0<F-D;)O=Te(O),F--;for(;D--;){if(k===O||O!==null&&k===O.alternate){Te=k;break t}k=Te(k),O=Te(O)}Te=null}else Te=null;H!==null&&Wg($,j,H,Te,!1),ce!==null&&it!==null&&Wg($,it,ce,Te,!0)}}e:{if(j=U?rs(U):window,H=j.nodeName&&j.nodeName.toLowerCase(),H==="select"||H==="input"&&j.type==="file")var Pe=pp;else if(yp(j))if(vp)Pe=aE;else{Pe=tE;var be=eE}else H=j.nodeName,!H||H.toLowerCase()!=="input"||j.type!=="checkbox"&&j.type!=="radio"?U&&lf(U.elementType)&&(Pe=pp):Pe=nE;if(Pe&&(Pe=Pe(e,U))){mp($,Pe,i,Y);break e}be&&be(e,j,U),e==="focusout"&&U&&j.type==="number"&&U.memoizedProps.value!=null&&rf(j,"number",j.value)}switch(be=U?rs(U):window,e){case"focusin":(yp(be)||be.contentEditable==="true")&&(Yi=be,_f=U,hs=null);break;case"focusout":hs=_f=Yi=null;break;case"mousedown":Sf=!0;break;case"contextmenu":case"mouseup":case"dragend":Sf=!1,Tp($,i,Y);break;case"selectionchange":if(iE)break;case"keydown":case"keyup":Tp($,i,Y)}var Le;if(pf)e:{switch(e){case"compositionstart":var Ye="onCompositionStart";break e;case"compositionend":Ye="onCompositionEnd";break e;case"compositionupdate":Ye="onCompositionUpdate";break e}Ye=void 0}else Gi?dp(e,i)&&(Ye="onCompositionEnd"):e==="keydown"&&i.keyCode===229&&(Ye="onCompositionStart");Ye&&(op&&i.locale!=="ko"&&(Gi||Ye!=="onCompositionStart"?Ye==="onCompositionEnd"&&Gi&&(Le=rp()):(er=Y,ff="value"in er?er.value:er.textContent,Gi=!0)),be=Ro(U,Ye),0<be.length&&(Ye=new sp(Ye,e,null,i,Y),$.push({event:Ye,listeners:be}),Le?Ye.data=Le:(Le=hp(i),Le!==null&&(Ye.data=Le)))),(Le=K2?P2(e,i):J2(e,i))&&(Ye=Ro(U,"onBeforeInput"),0<Ye.length&&(be=new sp("onBeforeInput","beforeinput",null,i,Y),$.push({event:be,listeners:Ye}),be.data=Le)),ZE($,e,U,i,Y)}Jg($,n)})}function qs(e,n,i){return{instance:e,listener:n,currentTarget:i}}function Ro(e,n){for(var i=n+"Capture",s=[];e!==null;){var c=e,f=c.stateNode;if(c=c.tag,c!==5&&c!==26&&c!==27||f===null||(c=is(e,i),c!=null&&s.unshift(qs(e,c,f)),c=is(e,n),c!=null&&s.push(qs(e,c,f))),e.tag===3)return s;e=e.return}return[]}function FE(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function Wg(e,n,i,s,c){for(var f=n._reactName,p=[];i!==null&&i!==s;){var b=i,T=b.alternate,U=b.stateNode;if(b=b.tag,T!==null&&T===s)break;b!==5&&b!==26&&b!==27||U===null||(T=U,c?(U=is(i,f),U!=null&&p.unshift(qs(i,U,T))):c||(U=is(i,f),U!=null&&p.push(qs(i,U,T)))),i=i.return}p.length!==0&&e.push({event:n,listeners:p})}var XE=/\r\n?/g,$E=/\u0000|\uFFFD/g;function e0(e){return(typeof e=="string"?e:""+e).replace(XE,`
49
+ `).replace($E,"")}function t0(e,n){return n=e0(n),e0(e)===n}function rt(e,n,i,s,c,f){switch(i){case"children":typeof s=="string"?n==="body"||n==="textarea"&&s===""||Hi(e,s):(typeof s=="number"||typeof s=="bigint")&&n!=="body"&&Hi(e,""+s);break;case"className":zu(e,"class",s);break;case"tabIndex":zu(e,"tabindex",s);break;case"dir":case"role":case"viewBox":case"width":case"height":zu(e,i,s);break;case"style":tp(e,s,f);break;case"data":if(n!=="object"){zu(e,"data",s);break}case"src":case"href":if(s===""&&(n!=="a"||i!=="href")){e.removeAttribute(i);break}if(s==null||typeof s=="function"||typeof s=="symbol"||typeof s=="boolean"){e.removeAttribute(i);break}s=Du(""+s),e.setAttribute(i,s);break;case"action":case"formAction":if(typeof s=="function"){e.setAttribute(i,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof f=="function"&&(i==="formAction"?(n!=="input"&&rt(e,n,"name",c.name,c,null),rt(e,n,"formEncType",c.formEncType,c,null),rt(e,n,"formMethod",c.formMethod,c,null),rt(e,n,"formTarget",c.formTarget,c,null)):(rt(e,n,"encType",c.encType,c,null),rt(e,n,"method",c.method,c,null),rt(e,n,"target",c.target,c,null)));if(s==null||typeof s=="symbol"||typeof s=="boolean"){e.removeAttribute(i);break}s=Du(""+s),e.setAttribute(i,s);break;case"onClick":s!=null&&(e.onclick=Sa);break;case"onScroll":s!=null&&Qe("scroll",e);break;case"onScrollEnd":s!=null&&Qe("scrollend",e);break;case"dangerouslySetInnerHTML":if(s!=null){if(typeof s!="object"||!("__html"in s))throw Error(l(61));if(i=s.__html,i!=null){if(c.children!=null)throw Error(l(60));e.innerHTML=i}}break;case"multiple":e.multiple=s&&typeof s!="function"&&typeof s!="symbol";break;case"muted":e.muted=s&&typeof s!="function"&&typeof s!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(s==null||typeof s=="function"||typeof s=="boolean"||typeof s=="symbol"){e.removeAttribute("xlink:href");break}i=Du(""+s),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",i);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":s!=null&&typeof s!="function"&&typeof s!="symbol"?e.setAttribute(i,""+s):e.removeAttribute(i);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":s&&typeof s!="function"&&typeof s!="symbol"?e.setAttribute(i,""):e.removeAttribute(i);break;case"capture":case"download":s===!0?e.setAttribute(i,""):s!==!1&&s!=null&&typeof s!="function"&&typeof s!="symbol"?e.setAttribute(i,s):e.removeAttribute(i);break;case"cols":case"rows":case"size":case"span":s!=null&&typeof s!="function"&&typeof s!="symbol"&&!isNaN(s)&&1<=s?e.setAttribute(i,s):e.removeAttribute(i);break;case"rowSpan":case"start":s==null||typeof s=="function"||typeof s=="symbol"||isNaN(s)?e.removeAttribute(i):e.setAttribute(i,s);break;case"popover":Qe("beforetoggle",e),Qe("toggle",e),ku(e,"popover",s);break;case"xlinkActuate":_a(e,"http://www.w3.org/1999/xlink","xlink:actuate",s);break;case"xlinkArcrole":_a(e,"http://www.w3.org/1999/xlink","xlink:arcrole",s);break;case"xlinkRole":_a(e,"http://www.w3.org/1999/xlink","xlink:role",s);break;case"xlinkShow":_a(e,"http://www.w3.org/1999/xlink","xlink:show",s);break;case"xlinkTitle":_a(e,"http://www.w3.org/1999/xlink","xlink:title",s);break;case"xlinkType":_a(e,"http://www.w3.org/1999/xlink","xlink:type",s);break;case"xmlBase":_a(e,"http://www.w3.org/XML/1998/namespace","xml:base",s);break;case"xmlLang":_a(e,"http://www.w3.org/XML/1998/namespace","xml:lang",s);break;case"xmlSpace":_a(e,"http://www.w3.org/XML/1998/namespace","xml:space",s);break;case"is":ku(e,"is",s);break;case"innerText":case"textContent":break;default:(!(2<i.length)||i[0]!=="o"&&i[0]!=="O"||i[1]!=="n"&&i[1]!=="N")&&(i=E2.get(i)||i,ku(e,i,s))}}function Fd(e,n,i,s,c,f){switch(i){case"style":tp(e,s,f);break;case"dangerouslySetInnerHTML":if(s!=null){if(typeof s!="object"||!("__html"in s))throw Error(l(61));if(i=s.__html,i!=null){if(c.children!=null)throw Error(l(60));e.innerHTML=i}}break;case"children":typeof s=="string"?Hi(e,s):(typeof s=="number"||typeof s=="bigint")&&Hi(e,""+s);break;case"onScroll":s!=null&&Qe("scroll",e);break;case"onScrollEnd":s!=null&&Qe("scrollend",e);break;case"onClick":s!=null&&(e.onclick=Sa);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!Fm.hasOwnProperty(i))e:{if(i[0]==="o"&&i[1]==="n"&&(c=i.endsWith("Capture"),n=i.slice(2,c?i.length-7:void 0),f=e[ln]||null,f=f!=null?f[i]:null,typeof f=="function"&&e.removeEventListener(n,f,c),typeof s=="function")){typeof f!="function"&&f!==null&&(i in e?e[i]=null:e.hasAttribute(i)&&e.removeAttribute(i)),e.addEventListener(n,s,c);break e}i in e?e[i]=s:s===!0?e.setAttribute(i,""):ku(e,i,s)}}}function Ft(e,n,i){switch(n){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":Qe("error",e),Qe("load",e);var s=!1,c=!1,f;for(f in i)if(i.hasOwnProperty(f)){var p=i[f];if(p!=null)switch(f){case"src":s=!0;break;case"srcSet":c=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(l(137,n));default:rt(e,n,f,p,i,null)}}c&&rt(e,n,"srcSet",i.srcSet,i,null),s&&rt(e,n,"src",i.src,i,null);return;case"input":Qe("invalid",e);var b=f=p=c=null,T=null,U=null;for(s in i)if(i.hasOwnProperty(s)){var Y=i[s];if(Y!=null)switch(s){case"name":c=Y;break;case"type":p=Y;break;case"checked":T=Y;break;case"defaultChecked":U=Y;break;case"value":f=Y;break;case"defaultValue":b=Y;break;case"children":case"dangerouslySetInnerHTML":if(Y!=null)throw Error(l(137,n));break;default:rt(e,n,s,Y,i,null)}}Jm(e,f,b,T,U,p,c,!1);return;case"select":Qe("invalid",e),s=p=f=null;for(c in i)if(i.hasOwnProperty(c)&&(b=i[c],b!=null))switch(c){case"value":f=b;break;case"defaultValue":p=b;break;case"multiple":s=b;default:rt(e,n,c,b,i,null)}n=f,i=p,e.multiple=!!s,n!=null?Vi(e,!!s,n,!1):i!=null&&Vi(e,!!s,i,!0);return;case"textarea":Qe("invalid",e),f=c=s=null;for(p in i)if(i.hasOwnProperty(p)&&(b=i[p],b!=null))switch(p){case"value":s=b;break;case"defaultValue":c=b;break;case"children":f=b;break;case"dangerouslySetInnerHTML":if(b!=null)throw Error(l(91));break;default:rt(e,n,p,b,i,null)}Wm(e,s,c,f);return;case"option":for(T in i)if(i.hasOwnProperty(T)&&(s=i[T],s!=null))switch(T){case"selected":e.selected=s&&typeof s!="function"&&typeof s!="symbol";break;default:rt(e,n,T,s,i,null)}return;case"dialog":Qe("beforetoggle",e),Qe("toggle",e),Qe("cancel",e),Qe("close",e);break;case"iframe":case"object":Qe("load",e);break;case"video":case"audio":for(s=0;s<js.length;s++)Qe(js[s],e);break;case"image":Qe("error",e),Qe("load",e);break;case"details":Qe("toggle",e);break;case"embed":case"source":case"link":Qe("error",e),Qe("load",e);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(U in i)if(i.hasOwnProperty(U)&&(s=i[U],s!=null))switch(U){case"children":case"dangerouslySetInnerHTML":throw Error(l(137,n));default:rt(e,n,U,s,i,null)}return;default:if(lf(n)){for(Y in i)i.hasOwnProperty(Y)&&(s=i[Y],s!==void 0&&Fd(e,n,Y,s,i,void 0));return}}for(b in i)i.hasOwnProperty(b)&&(s=i[b],s!=null&&rt(e,n,b,s,i,null))}function KE(e,n,i,s){switch(n){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var c=null,f=null,p=null,b=null,T=null,U=null,Y=null;for(H in i){var $=i[H];if(i.hasOwnProperty(H)&&$!=null)switch(H){case"checked":break;case"value":break;case"defaultValue":T=$;default:s.hasOwnProperty(H)||rt(e,n,H,null,s,$)}}for(var j in s){var H=s[j];if($=i[j],s.hasOwnProperty(j)&&(H!=null||$!=null))switch(j){case"type":f=H;break;case"name":c=H;break;case"checked":U=H;break;case"defaultChecked":Y=H;break;case"value":p=H;break;case"defaultValue":b=H;break;case"children":case"dangerouslySetInnerHTML":if(H!=null)throw Error(l(137,n));break;default:H!==$&&rt(e,n,j,H,s,$)}}af(e,p,b,T,U,Y,f,c);return;case"select":H=p=b=j=null;for(f in i)if(T=i[f],i.hasOwnProperty(f)&&T!=null)switch(f){case"value":break;case"multiple":H=T;default:s.hasOwnProperty(f)||rt(e,n,f,null,s,T)}for(c in s)if(f=s[c],T=i[c],s.hasOwnProperty(c)&&(f!=null||T!=null))switch(c){case"value":j=f;break;case"defaultValue":b=f;break;case"multiple":p=f;default:f!==T&&rt(e,n,c,f,s,T)}n=b,i=p,s=H,j!=null?Vi(e,!!i,j,!1):!!s!=!!i&&(n!=null?Vi(e,!!i,n,!0):Vi(e,!!i,i?[]:"",!1));return;case"textarea":H=j=null;for(b in i)if(c=i[b],i.hasOwnProperty(b)&&c!=null&&!s.hasOwnProperty(b))switch(b){case"value":break;case"children":break;default:rt(e,n,b,null,s,c)}for(p in s)if(c=s[p],f=i[p],s.hasOwnProperty(p)&&(c!=null||f!=null))switch(p){case"value":j=c;break;case"defaultValue":H=c;break;case"children":break;case"dangerouslySetInnerHTML":if(c!=null)throw Error(l(91));break;default:c!==f&&rt(e,n,p,c,s,f)}Im(e,j,H);return;case"option":for(var ce in i)if(j=i[ce],i.hasOwnProperty(ce)&&j!=null&&!s.hasOwnProperty(ce))switch(ce){case"selected":e.selected=!1;break;default:rt(e,n,ce,null,s,j)}for(T in s)if(j=s[T],H=i[T],s.hasOwnProperty(T)&&j!==H&&(j!=null||H!=null))switch(T){case"selected":e.selected=j&&typeof j!="function"&&typeof j!="symbol";break;default:rt(e,n,T,j,s,H)}return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var Te in i)j=i[Te],i.hasOwnProperty(Te)&&j!=null&&!s.hasOwnProperty(Te)&&rt(e,n,Te,null,s,j);for(U in s)if(j=s[U],H=i[U],s.hasOwnProperty(U)&&j!==H&&(j!=null||H!=null))switch(U){case"children":case"dangerouslySetInnerHTML":if(j!=null)throw Error(l(137,n));break;default:rt(e,n,U,j,s,H)}return;default:if(lf(n)){for(var it in i)j=i[it],i.hasOwnProperty(it)&&j!==void 0&&!s.hasOwnProperty(it)&&Fd(e,n,it,void 0,s,j);for(Y in s)j=s[Y],H=i[Y],!s.hasOwnProperty(Y)||j===H||j===void 0&&H===void 0||Fd(e,n,Y,j,s,H);return}}for(var k in i)j=i[k],i.hasOwnProperty(k)&&j!=null&&!s.hasOwnProperty(k)&&rt(e,n,k,null,s,j);for($ in s)j=s[$],H=i[$],!s.hasOwnProperty($)||j===H||j==null&&H==null||rt(e,n,$,j,s,H)}function n0(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function PE(){if(typeof performance.getEntriesByType=="function"){for(var e=0,n=0,i=performance.getEntriesByType("resource"),s=0;s<i.length;s++){var c=i[s],f=c.transferSize,p=c.initiatorType,b=c.duration;if(f&&b&&n0(p)){for(p=0,b=c.responseEnd,s+=1;s<i.length;s++){var T=i[s],U=T.startTime;if(U>b)break;var Y=T.transferSize,$=T.initiatorType;Y&&n0($)&&(T=T.responseEnd,p+=Y*(T<b?1:(b-U)/(T-U)))}if(--s,n+=8*(f+p)/(c.duration/1e3),e++,10<e)break}}if(0<e)return n/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e=="number")?e:5}var Xd=null,$d=null;function Mo(e){return e.nodeType===9?e:e.ownerDocument}function a0(e){switch(e){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function r0(e,n){if(e===0)switch(n){case"svg":return 1;case"math":return 2;default:return 0}return e===1&&n==="foreignObject"?0:e}function Kd(e,n){return e==="textarea"||e==="noscript"||typeof n.children=="string"||typeof n.children=="number"||typeof n.children=="bigint"||typeof n.dangerouslySetInnerHTML=="object"&&n.dangerouslySetInnerHTML!==null&&n.dangerouslySetInnerHTML.__html!=null}var Pd=null;function JE(){var e=window.event;return e&&e.type==="popstate"?e===Pd?!1:(Pd=e,!0):(Pd=null,!1)}var i0=typeof setTimeout=="function"?setTimeout:void 0,IE=typeof clearTimeout=="function"?clearTimeout:void 0,l0=typeof Promise=="function"?Promise:void 0,WE=typeof queueMicrotask=="function"?queueMicrotask:typeof l0<"u"?function(e){return l0.resolve(null).then(e).catch(ex)}:i0;function ex(e){setTimeout(function(){throw e})}function vr(e){return e==="head"}function s0(e,n){var i=n,s=0;do{var c=i.nextSibling;if(e.removeChild(i),c&&c.nodeType===8)if(i=c.data,i==="/$"||i==="/&"){if(s===0){e.removeChild(c),gl(n);return}s--}else if(i==="$"||i==="$?"||i==="$~"||i==="$!"||i==="&")s++;else if(i==="html")Bs(e.ownerDocument.documentElement);else if(i==="head"){i=e.ownerDocument.head,Bs(i);for(var f=i.firstChild;f;){var p=f.nextSibling,b=f.nodeName;f[as]||b==="SCRIPT"||b==="STYLE"||b==="LINK"&&f.rel.toLowerCase()==="stylesheet"||i.removeChild(f),f=p}}else i==="body"&&Bs(e.ownerDocument.body);i=c}while(i);gl(n)}function u0(e,n){var i=e;e=0;do{var s=i.nextSibling;if(i.nodeType===1?n?(i._stashedDisplay=i.style.display,i.style.display="none"):(i.style.display=i._stashedDisplay||"",i.getAttribute("style")===""&&i.removeAttribute("style")):i.nodeType===3&&(n?(i._stashedText=i.nodeValue,i.nodeValue=""):i.nodeValue=i._stashedText||""),s&&s.nodeType===8)if(i=s.data,i==="/$"){if(e===0)break;e--}else i!=="$"&&i!=="$?"&&i!=="$~"&&i!=="$!"||e++;i=s}while(i)}function Jd(e){var n=e.firstChild;for(n&&n.nodeType===10&&(n=n.nextSibling);n;){var i=n;switch(n=n.nextSibling,i.nodeName){case"HTML":case"HEAD":case"BODY":Jd(i),tf(i);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(i.rel.toLowerCase()==="stylesheet")continue}e.removeChild(i)}}function tx(e,n,i,s){for(;e.nodeType===1;){var c=i;if(e.nodeName.toLowerCase()!==n.toLowerCase()){if(!s&&(e.nodeName!=="INPUT"||e.type!=="hidden"))break}else if(s){if(!e[as])switch(n){case"meta":if(!e.hasAttribute("itemprop"))break;return e;case"link":if(f=e.getAttribute("rel"),f==="stylesheet"&&e.hasAttribute("data-precedence"))break;if(f!==c.rel||e.getAttribute("href")!==(c.href==null||c.href===""?null:c.href)||e.getAttribute("crossorigin")!==(c.crossOrigin==null?null:c.crossOrigin)||e.getAttribute("title")!==(c.title==null?null:c.title))break;return e;case"style":if(e.hasAttribute("data-precedence"))break;return e;case"script":if(f=e.getAttribute("src"),(f!==(c.src==null?null:c.src)||e.getAttribute("type")!==(c.type==null?null:c.type)||e.getAttribute("crossorigin")!==(c.crossOrigin==null?null:c.crossOrigin))&&f&&e.hasAttribute("async")&&!e.hasAttribute("itemprop"))break;return e;default:return e}}else if(n==="input"&&e.type==="hidden"){var f=c.name==null?null:""+c.name;if(c.type==="hidden"&&e.getAttribute("name")===f)return e}else return e;if(e=Zn(e.nextSibling),e===null)break}return null}function nx(e,n,i){if(n==="")return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!i||(e=Zn(e.nextSibling),e===null))return null;return e}function o0(e,n){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!n||(e=Zn(e.nextSibling),e===null))return null;return e}function Id(e){return e.data==="$?"||e.data==="$~"}function Wd(e){return e.data==="$!"||e.data==="$?"&&e.ownerDocument.readyState!=="loading"}function ax(e,n){var i=e.ownerDocument;if(e.data==="$~")e._reactRetry=n;else if(e.data!=="$?"||i.readyState!=="loading")n();else{var s=function(){n(),i.removeEventListener("DOMContentLoaded",s)};i.addEventListener("DOMContentLoaded",s),e._reactRetry=s}}function Zn(e){for(;e!=null;e=e.nextSibling){var n=e.nodeType;if(n===1||n===3)break;if(n===8){if(n=e.data,n==="$"||n==="$!"||n==="$?"||n==="$~"||n==="&"||n==="F!"||n==="F")break;if(n==="/$"||n==="/&")return null}}return e}var eh=null;function c0(e){e=e.nextSibling;for(var n=0;e;){if(e.nodeType===8){var i=e.data;if(i==="/$"||i==="/&"){if(n===0)return Zn(e.nextSibling);n--}else i!=="$"&&i!=="$!"&&i!=="$?"&&i!=="$~"&&i!=="&"||n++}e=e.nextSibling}return null}function f0(e){e=e.previousSibling;for(var n=0;e;){if(e.nodeType===8){var i=e.data;if(i==="$"||i==="$!"||i==="$?"||i==="$~"||i==="&"){if(n===0)return e;n--}else i!=="/$"&&i!=="/&"||n++}e=e.previousSibling}return null}function d0(e,n,i){switch(n=Mo(i),e){case"html":if(e=n.documentElement,!e)throw Error(l(452));return e;case"head":if(e=n.head,!e)throw Error(l(453));return e;case"body":if(e=n.body,!e)throw Error(l(454));return e;default:throw Error(l(451))}}function Bs(e){for(var n=e.attributes;n.length;)e.removeAttributeNode(n[0]);tf(e)}var Qn=new Map,h0=new Set;function ko(e){return typeof e.getRootNode=="function"?e.getRootNode():e.nodeType===9?e:e.ownerDocument}var ja=J.d;J.d={f:rx,r:ix,D:lx,C:sx,L:ux,m:ox,X:fx,S:cx,M:dx};function rx(){var e=ja.f(),n=Eo();return e||n}function ix(e){var n=ji(e);n!==null&&n.tag===5&&n.type==="form"?Mv(n):ja.r(e)}var ml=typeof document>"u"?null:document;function y0(e,n,i){var s=ml;if(s&&typeof n=="string"&&n){var c=Un(n);c='link[rel="'+e+'"][href="'+c+'"]',typeof i=="string"&&(c+='[crossorigin="'+i+'"]'),h0.has(c)||(h0.add(c),e={rel:e,crossOrigin:i,href:n},s.querySelector(c)===null&&(n=s.createElement("link"),Ft(n,"link",e),jt(n),s.head.appendChild(n)))}}function lx(e){ja.D(e),y0("dns-prefetch",e,null)}function sx(e,n){ja.C(e,n),y0("preconnect",e,n)}function ux(e,n,i){ja.L(e,n,i);var s=ml;if(s&&e&&n){var c='link[rel="preload"][as="'+Un(n)+'"]';n==="image"&&i&&i.imageSrcSet?(c+='[imagesrcset="'+Un(i.imageSrcSet)+'"]',typeof i.imageSizes=="string"&&(c+='[imagesizes="'+Un(i.imageSizes)+'"]')):c+='[href="'+Un(e)+'"]';var f=c;switch(n){case"style":f=pl(e);break;case"script":f=vl(e)}Qn.has(f)||(e=v({rel:"preload",href:n==="image"&&i&&i.imageSrcSet?void 0:e,as:n},i),Qn.set(f,e),s.querySelector(c)!==null||n==="style"&&s.querySelector(Vs(f))||n==="script"&&s.querySelector(Hs(f))||(n=s.createElement("link"),Ft(n,"link",e),jt(n),s.head.appendChild(n)))}}function ox(e,n){ja.m(e,n);var i=ml;if(i&&e){var s=n&&typeof n.as=="string"?n.as:"script",c='link[rel="modulepreload"][as="'+Un(s)+'"][href="'+Un(e)+'"]',f=c;switch(s){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":f=vl(e)}if(!Qn.has(f)&&(e=v({rel:"modulepreload",href:e},n),Qn.set(f,e),i.querySelector(c)===null)){switch(s){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(i.querySelector(Hs(f)))return}s=i.createElement("link"),Ft(s,"link",e),jt(s),i.head.appendChild(s)}}}function cx(e,n,i){ja.S(e,n,i);var s=ml;if(s&&e){var c=qi(s).hoistableStyles,f=pl(e);n=n||"default";var p=c.get(f);if(!p){var b={loading:0,preload:null};if(p=s.querySelector(Vs(f)))b.loading=5;else{e=v({rel:"stylesheet",href:e,"data-precedence":n},i),(i=Qn.get(f))&&th(e,i);var T=p=s.createElement("link");jt(T),Ft(T,"link",e),T._p=new Promise(function(U,Y){T.onload=U,T.onerror=Y}),T.addEventListener("load",function(){b.loading|=1}),T.addEventListener("error",function(){b.loading|=2}),b.loading|=4,zo(p,n,s)}p={type:"stylesheet",instance:p,count:1,state:b},c.set(f,p)}}}function fx(e,n){ja.X(e,n);var i=ml;if(i&&e){var s=qi(i).hoistableScripts,c=vl(e),f=s.get(c);f||(f=i.querySelector(Hs(c)),f||(e=v({src:e,async:!0},n),(n=Qn.get(c))&&nh(e,n),f=i.createElement("script"),jt(f),Ft(f,"link",e),i.head.appendChild(f)),f={type:"script",instance:f,count:1,state:null},s.set(c,f))}}function dx(e,n){ja.M(e,n);var i=ml;if(i&&e){var s=qi(i).hoistableScripts,c=vl(e),f=s.get(c);f||(f=i.querySelector(Hs(c)),f||(e=v({src:e,async:!0,type:"module"},n),(n=Qn.get(c))&&nh(e,n),f=i.createElement("script"),jt(f),Ft(f,"link",e),i.head.appendChild(f)),f={type:"script",instance:f,count:1,state:null},s.set(c,f))}}function m0(e,n,i,s){var c=(c=Ee.current)?ko(c):null;if(!c)throw Error(l(446));switch(e){case"meta":case"title":return null;case"style":return typeof i.precedence=="string"&&typeof i.href=="string"?(n=pl(i.href),i=qi(c).hoistableStyles,s=i.get(n),s||(s={type:"style",instance:null,count:0,state:null},i.set(n,s)),s):{type:"void",instance:null,count:0,state:null};case"link":if(i.rel==="stylesheet"&&typeof i.href=="string"&&typeof i.precedence=="string"){e=pl(i.href);var f=qi(c).hoistableStyles,p=f.get(e);if(p||(c=c.ownerDocument||c,p={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},f.set(e,p),(f=c.querySelector(Vs(e)))&&!f._p&&(p.instance=f,p.state.loading=5),Qn.has(e)||(i={rel:"preload",as:"style",href:i.href,crossOrigin:i.crossOrigin,integrity:i.integrity,media:i.media,hrefLang:i.hrefLang,referrerPolicy:i.referrerPolicy},Qn.set(e,i),f||hx(c,e,i,p.state))),n&&s===null)throw Error(l(528,""));return p}if(n&&s!==null)throw Error(l(529,""));return null;case"script":return n=i.async,i=i.src,typeof i=="string"&&n&&typeof n!="function"&&typeof n!="symbol"?(n=vl(i),i=qi(c).hoistableScripts,s=i.get(n),s||(s={type:"script",instance:null,count:0,state:null},i.set(n,s)),s):{type:"void",instance:null,count:0,state:null};default:throw Error(l(444,e))}}function pl(e){return'href="'+Un(e)+'"'}function Vs(e){return'link[rel="stylesheet"]['+e+"]"}function p0(e){return v({},e,{"data-precedence":e.precedence,precedence:null})}function hx(e,n,i,s){e.querySelector('link[rel="preload"][as="style"]['+n+"]")?s.loading=1:(n=e.createElement("link"),s.preload=n,n.addEventListener("load",function(){return s.loading|=1}),n.addEventListener("error",function(){return s.loading|=2}),Ft(n,"link",i),jt(n),e.head.appendChild(n))}function vl(e){return'[src="'+Un(e)+'"]'}function Hs(e){return"script[async]"+e}function v0(e,n,i){if(n.count++,n.instance===null)switch(n.type){case"style":var s=e.querySelector('style[data-href~="'+Un(i.href)+'"]');if(s)return n.instance=s,jt(s),s;var c=v({},i,{"data-href":i.href,"data-precedence":i.precedence,href:null,precedence:null});return s=(e.ownerDocument||e).createElement("style"),jt(s),Ft(s,"style",c),zo(s,i.precedence,e),n.instance=s;case"stylesheet":c=pl(i.href);var f=e.querySelector(Vs(c));if(f)return n.state.loading|=4,n.instance=f,jt(f),f;s=p0(i),(c=Qn.get(c))&&th(s,c),f=(e.ownerDocument||e).createElement("link"),jt(f);var p=f;return p._p=new Promise(function(b,T){p.onload=b,p.onerror=T}),Ft(f,"link",s),n.state.loading|=4,zo(f,i.precedence,e),n.instance=f;case"script":return f=vl(i.src),(c=e.querySelector(Hs(f)))?(n.instance=c,jt(c),c):(s=i,(c=Qn.get(f))&&(s=v({},i),nh(s,c)),e=e.ownerDocument||e,c=e.createElement("script"),jt(c),Ft(c,"link",s),e.head.appendChild(c),n.instance=c);case"void":return null;default:throw Error(l(443,n.type))}else n.type==="stylesheet"&&(n.state.loading&4)===0&&(s=n.instance,n.state.loading|=4,zo(s,i.precedence,e));return n.instance}function zo(e,n,i){for(var s=i.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),c=s.length?s[s.length-1]:null,f=c,p=0;p<s.length;p++){var b=s[p];if(b.dataset.precedence===n)f=b;else if(f!==c)break}f?f.parentNode.insertBefore(e,f.nextSibling):(n=i.nodeType===9?i.head:i,n.insertBefore(e,n.firstChild))}function th(e,n){e.crossOrigin==null&&(e.crossOrigin=n.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=n.referrerPolicy),e.title==null&&(e.title=n.title)}function nh(e,n){e.crossOrigin==null&&(e.crossOrigin=n.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=n.referrerPolicy),e.integrity==null&&(e.integrity=n.integrity)}var No=null;function g0(e,n,i){if(No===null){var s=new Map,c=No=new Map;c.set(i,s)}else c=No,s=c.get(i),s||(s=new Map,c.set(i,s));if(s.has(e))return s;for(s.set(e,null),i=i.getElementsByTagName(e),c=0;c<i.length;c++){var f=i[c];if(!(f[as]||f[Zt]||e==="link"&&f.getAttribute("rel")==="stylesheet")&&f.namespaceURI!=="http://www.w3.org/2000/svg"){var p=f.getAttribute(n)||"";p=e+p;var b=s.get(p);b?b.push(f):s.set(p,[f])}}return s}function b0(e,n,i){e=e.ownerDocument||e,e.head.insertBefore(i,n==="title"?e.querySelector("head > title"):null)}function yx(e,n,i){if(i===1||n.itemProp!=null)return!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof n.precedence!="string"||typeof n.href!="string"||n.href==="")break;return!0;case"link":if(typeof n.rel!="string"||typeof n.href!="string"||n.href===""||n.onLoad||n.onError)break;switch(n.rel){case"stylesheet":return e=n.disabled,typeof n.precedence=="string"&&e==null;default:return!0}case"script":if(n.async&&typeof n.async!="function"&&typeof n.async!="symbol"&&!n.onLoad&&!n.onError&&n.src&&typeof n.src=="string")return!0}return!1}function _0(e){return!(e.type==="stylesheet"&&(e.state.loading&3)===0)}function mx(e,n,i,s){if(i.type==="stylesheet"&&(typeof s.media!="string"||matchMedia(s.media).matches!==!1)&&(i.state.loading&4)===0){if(i.instance===null){var c=pl(s.href),f=n.querySelector(Vs(c));if(f){n=f._p,n!==null&&typeof n=="object"&&typeof n.then=="function"&&(e.count++,e=Do.bind(e),n.then(e,e)),i.state.loading|=4,i.instance=f,jt(f);return}f=n.ownerDocument||n,s=p0(s),(c=Qn.get(c))&&th(s,c),f=f.createElement("link"),jt(f);var p=f;p._p=new Promise(function(b,T){p.onload=b,p.onerror=T}),Ft(f,"link",s),i.instance=f}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(i,n),(n=i.state.preload)&&(i.state.loading&3)===0&&(e.count++,i=Do.bind(e),n.addEventListener("load",i),n.addEventListener("error",i))}}var ah=0;function px(e,n){return e.stylesheets&&e.count===0&&Lo(e,e.stylesheets),0<e.count||0<e.imgCount?function(i){var s=setTimeout(function(){if(e.stylesheets&&Lo(e,e.stylesheets),e.unsuspend){var f=e.unsuspend;e.unsuspend=null,f()}},6e4+n);0<e.imgBytes&&ah===0&&(ah=62500*PE());var c=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Lo(e,e.stylesheets),e.unsuspend)){var f=e.unsuspend;e.unsuspend=null,f()}},(e.imgBytes>ah?50:800)+n);return e.unsuspend=i,function(){e.unsuspend=null,clearTimeout(s),clearTimeout(c)}}:null}function Do(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Lo(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var Uo=null;function Lo(e,n){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Uo=new Map,n.forEach(vx,e),Uo=null,Do.call(e))}function vx(e,n){if(!(n.state.loading&4)){var i=Uo.get(e);if(i)var s=i.get(null);else{i=new Map,Uo.set(e,i);for(var c=e.querySelectorAll("link[data-precedence],style[data-precedence]"),f=0;f<c.length;f++){var p=c[f];(p.nodeName==="LINK"||p.getAttribute("media")!=="not all")&&(i.set(p.dataset.precedence,p),s=p)}s&&i.set(null,s)}c=n.instance,p=c.getAttribute("data-precedence"),f=i.get(p)||s,f===s&&i.set(null,c),i.set(p,c),this.count++,s=Do.bind(this),c.addEventListener("load",s),c.addEventListener("error",s),f?f.parentNode.insertBefore(c,f.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(c,e.firstChild)),n.state.loading|=4}}var Zs={$$typeof:Z,Provider:null,Consumer:null,_currentValue:ge,_currentValue2:ge,_threadCount:0};function gx(e,n,i,s,c,f,p,b,T){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Jc(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Jc(0),this.hiddenUpdates=Jc(null),this.identifierPrefix=s,this.onUncaughtError=c,this.onCaughtError=f,this.onRecoverableError=p,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=T,this.incompleteTransitions=new Map}function S0(e,n,i,s,c,f,p,b,T,U,Y,$){return e=new gx(e,n,i,p,T,U,Y,$,b),n=1,f===!0&&(n|=24),f=gn(3,null,null,n),e.current=f,f.stateNode=e,n=Lf(),n.refCount++,e.pooledCache=n,n.refCount++,f.memoizedState={element:s,isDehydrated:i,cache:n},Vf(f),e}function E0(e){return e?(e=$i,e):$i}function x0(e,n,i,s,c,f){c=E0(c),s.context===null?s.context=c:s.pendingContext=c,s=lr(n),s.payload={element:i},f=f===void 0?null:f,f!==null&&(s.callback=f),i=sr(e,s,n),i!==null&&(dn(i,e,n),_s(i,e,n))}function w0(e,n){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var i=e.retryLane;e.retryLane=i!==0&&i<n?i:n}}function rh(e,n){w0(e,n),(e=e.alternate)&&w0(e,n)}function T0(e){if(e.tag===13||e.tag===31){var n=Kr(e,67108864);n!==null&&dn(n,e,67108864),rh(e,67108864)}}function A0(e){if(e.tag===13||e.tag===31){var n=xn();n=Ic(n);var i=Kr(e,n);i!==null&&dn(i,e,n),rh(e,n)}}var jo=!0;function bx(e,n,i,s){var c=B.T;B.T=null;var f=J.p;try{J.p=2,ih(e,n,i,s)}finally{J.p=f,B.T=c}}function _x(e,n,i,s){var c=B.T;B.T=null;var f=J.p;try{J.p=8,ih(e,n,i,s)}finally{J.p=f,B.T=c}}function ih(e,n,i,s){if(jo){var c=lh(s);if(c===null)Yd(e,n,s,qo,i),O0(e,s);else if(Ex(c,e,n,i,s))s.stopPropagation();else if(O0(e,s),n&4&&-1<Sx.indexOf(e)){for(;c!==null;){var f=ji(c);if(f!==null)switch(f.tag){case 3:if(f=f.stateNode,f.current.memoizedState.isDehydrated){var p=Gr(f.pendingLanes);if(p!==0){var b=f;for(b.pendingLanes|=2,b.entangledLanes|=2;p;){var T=1<<31-Ht(p);b.entanglements[1]|=T,p&=~T}ca(f),(We&6)===0&&(_o=L()+500,Ls(0))}}break;case 31:case 13:b=Kr(f,2),b!==null&&dn(b,f,2),Eo(),rh(f,2)}if(f=lh(s),f===null&&Yd(e,n,s,qo,i),f===c)break;c=f}c!==null&&s.stopPropagation()}else Yd(e,n,s,null,i)}}function lh(e){return e=uf(e),sh(e)}var qo=null;function sh(e){if(qo=null,e=Li(e),e!==null){var n=o(e);if(n===null)e=null;else{var i=n.tag;if(i===13){if(e=d(n),e!==null)return e;e=null}else if(i===31){if(e=h(n),e!==null)return e;e=null}else if(i===3){if(n.stateNode.current.memoizedState.isDehydrated)return n.tag===3?n.stateNode.containerInfo:null;e=null}else n!==e&&(e=null)}}return qo=e,null}function C0(e){switch(e){case"beforetoggle":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"toggle":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 2;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"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(ie()){case W:return 2;case te:return 8;case fe:case De:return 32;case Ke:return 268435456;default:return 32}default:return 32}}var uh=!1,gr=null,br=null,_r=null,Qs=new Map,Gs=new Map,Sr=[],Sx="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".split(" ");function O0(e,n){switch(e){case"focusin":case"focusout":gr=null;break;case"dragenter":case"dragleave":br=null;break;case"mouseover":case"mouseout":_r=null;break;case"pointerover":case"pointerout":Qs.delete(n.pointerId);break;case"gotpointercapture":case"lostpointercapture":Gs.delete(n.pointerId)}}function Ys(e,n,i,s,c,f){return e===null||e.nativeEvent!==f?(e={blockedOn:n,domEventName:i,eventSystemFlags:s,nativeEvent:f,targetContainers:[c]},n!==null&&(n=ji(n),n!==null&&T0(n)),e):(e.eventSystemFlags|=s,n=e.targetContainers,c!==null&&n.indexOf(c)===-1&&n.push(c),e)}function Ex(e,n,i,s,c){switch(n){case"focusin":return gr=Ys(gr,e,n,i,s,c),!0;case"dragenter":return br=Ys(br,e,n,i,s,c),!0;case"mouseover":return _r=Ys(_r,e,n,i,s,c),!0;case"pointerover":var f=c.pointerId;return Qs.set(f,Ys(Qs.get(f)||null,e,n,i,s,c)),!0;case"gotpointercapture":return f=c.pointerId,Gs.set(f,Ys(Gs.get(f)||null,e,n,i,s,c)),!0}return!1}function R0(e){var n=Li(e.target);if(n!==null){var i=o(n);if(i!==null){if(n=i.tag,n===13){if(n=d(i),n!==null){e.blockedOn=n,Qm(e.priority,function(){A0(i)});return}}else if(n===31){if(n=h(i),n!==null){e.blockedOn=n,Qm(e.priority,function(){A0(i)});return}}else if(n===3&&i.stateNode.current.memoizedState.isDehydrated){e.blockedOn=i.tag===3?i.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Bo(e){if(e.blockedOn!==null)return!1;for(var n=e.targetContainers;0<n.length;){var i=lh(e.nativeEvent);if(i===null){i=e.nativeEvent;var s=new i.constructor(i.type,i);sf=s,i.target.dispatchEvent(s),sf=null}else return n=ji(i),n!==null&&T0(n),e.blockedOn=i,!1;n.shift()}return!0}function M0(e,n,i){Bo(e)&&i.delete(n)}function xx(){uh=!1,gr!==null&&Bo(gr)&&(gr=null),br!==null&&Bo(br)&&(br=null),_r!==null&&Bo(_r)&&(_r=null),Qs.forEach(M0),Gs.forEach(M0)}function Vo(e,n){e.blockedOn===n&&(e.blockedOn=null,uh||(uh=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,xx)))}var Ho=null;function k0(e){Ho!==e&&(Ho=e,t.unstable_scheduleCallback(t.unstable_NormalPriority,function(){Ho===e&&(Ho=null);for(var n=0;n<e.length;n+=3){var i=e[n],s=e[n+1],c=e[n+2];if(typeof s!="function"){if(sh(s||i)===null)continue;break}var f=ji(i);f!==null&&(e.splice(n,3),n-=3,ld(f,{pending:!0,data:c,method:i.method,action:s},s,c))}}))}function gl(e){function n(T){return Vo(T,e)}gr!==null&&Vo(gr,e),br!==null&&Vo(br,e),_r!==null&&Vo(_r,e),Qs.forEach(n),Gs.forEach(n);for(var i=0;i<Sr.length;i++){var s=Sr[i];s.blockedOn===e&&(s.blockedOn=null)}for(;0<Sr.length&&(i=Sr[0],i.blockedOn===null);)R0(i),i.blockedOn===null&&Sr.shift();if(i=(e.ownerDocument||e).$$reactFormReplay,i!=null)for(s=0;s<i.length;s+=3){var c=i[s],f=i[s+1],p=c[ln]||null;if(typeof f=="function")p||k0(i);else if(p){var b=null;if(f&&f.hasAttribute("formAction")){if(c=f,p=f[ln]||null)b=p.formAction;else if(sh(c)!==null)continue}else b=p.action;typeof b=="function"?i[s+1]=b:(i.splice(s,3),s-=3),k0(i)}}}function z0(){function e(f){f.canIntercept&&f.info==="react-transition"&&f.intercept({handler:function(){return new Promise(function(p){return c=p})},focusReset:"manual",scroll:"manual"})}function n(){c!==null&&(c(),c=null),s||setTimeout(i,20)}function i(){if(!s&&!navigation.transition){var f=navigation.currentEntry;f&&f.url!=null&&navigation.navigate(f.url,{state:f.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var s=!1,c=null;return navigation.addEventListener("navigate",e),navigation.addEventListener("navigatesuccess",n),navigation.addEventListener("navigateerror",n),setTimeout(i,100),function(){s=!0,navigation.removeEventListener("navigate",e),navigation.removeEventListener("navigatesuccess",n),navigation.removeEventListener("navigateerror",n),c!==null&&(c(),c=null)}}}function oh(e){this._internalRoot=e}Zo.prototype.render=oh.prototype.render=function(e){var n=this._internalRoot;if(n===null)throw Error(l(409));var i=n.current,s=xn();x0(i,s,e,n,null,null)},Zo.prototype.unmount=oh.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var n=e.containerInfo;x0(e.current,2,null,e,null,null),Eo(),n[Ui]=null}};function Zo(e){this._internalRoot=e}Zo.prototype.unstable_scheduleHydration=function(e){if(e){var n=Zm();e={blockedOn:null,target:e,priority:n};for(var i=0;i<Sr.length&&n!==0&&n<Sr[i].priority;i++);Sr.splice(i,0,e),i===0&&R0(e)}};var N0=a.version;if(N0!=="19.2.4")throw Error(l(527,N0,"19.2.4"));J.findDOMNode=function(e){var n=e._reactInternals;if(n===void 0)throw typeof e.render=="function"?Error(l(188)):(e=Object.keys(e).join(","),Error(l(268,e)));return e=m(n),e=e!==null?g(e):null,e=e===null?null:e.stateNode,e};var wx={bundleType:0,version:"19.2.4",rendererPackageName:"react-dom",currentDispatcherRef:B,reconcilerVersion:"19.2.4"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Qo=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Qo.isDisabled&&Qo.supportsFiber)try{Tt=Qo.inject(wx),It=Qo}catch{}}return Xs.createRoot=function(e,n){if(!u(e))throw Error(l(299));var i=!1,s="",c=Vv,f=Hv,p=Zv;return n!=null&&(n.unstable_strictMode===!0&&(i=!0),n.identifierPrefix!==void 0&&(s=n.identifierPrefix),n.onUncaughtError!==void 0&&(c=n.onUncaughtError),n.onCaughtError!==void 0&&(f=n.onCaughtError),n.onRecoverableError!==void 0&&(p=n.onRecoverableError)),n=S0(e,1,!1,null,null,i,s,null,c,f,p,z0),e[Ui]=n.current,Gd(e),new oh(n)},Xs.hydrateRoot=function(e,n,i){if(!u(e))throw Error(l(299));var s=!1,c="",f=Vv,p=Hv,b=Zv,T=null;return i!=null&&(i.unstable_strictMode===!0&&(s=!0),i.identifierPrefix!==void 0&&(c=i.identifierPrefix),i.onUncaughtError!==void 0&&(f=i.onUncaughtError),i.onCaughtError!==void 0&&(p=i.onCaughtError),i.onRecoverableError!==void 0&&(b=i.onRecoverableError),i.formState!==void 0&&(T=i.formState)),n=S0(e,1,!0,n,i??null,s,c,T,f,p,b,z0),n.context=E0(null),i=n.current,s=xn(),s=Ic(s),c=lr(s),c.callback=null,sr(i,c,s),i=s,n.current.lanes=i,ns(n,i),ca(n),e[Ui]=n.current,Gd(e),new Zo(n)},Xs.version="19.2.4",Xs}var G0;function jx(){if(G0)return yh.exports;G0=1;function t(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(a){console.error(a)}}return t(),yh.exports=Lx(),yh.exports}var qx=jx();const BM=Ja(qx);var Xl=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(t){return this.listeners.add(t),this.onSubscribe(),()=>{this.listeners.delete(t),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}},hi,Rr,Al,s_,Bx=(s_=class extends Xl{constructor(){super();Se(this,hi);Se(this,Rr);Se(this,Al);le(this,Al,a=>{if(typeof window<"u"&&window.addEventListener){const r=()=>a();return window.addEventListener("visibilitychange",r,!1),()=>{window.removeEventListener("visibilitychange",r)}}})}onSubscribe(){A(this,Rr)||this.setEventListener(A(this,Al))}onUnsubscribe(){var a;this.hasListeners()||((a=A(this,Rr))==null||a.call(this),le(this,Rr,void 0))}setEventListener(a){var r;le(this,Al,a),(r=A(this,Rr))==null||r.call(this),le(this,Rr,a(l=>{typeof l=="boolean"?this.setFocused(l):this.onFocus()}))}setFocused(a){A(this,hi)!==a&&(le(this,hi,a),this.onFocus())}onFocus(){const a=this.isFocused();this.listeners.forEach(r=>{r(a)})}isFocused(){var a;return typeof A(this,hi)=="boolean"?A(this,hi):((a=globalThis.document)==null?void 0:a.visibilityState)!=="hidden"}},hi=new WeakMap,Rr=new WeakMap,Al=new WeakMap,s_),sm=new Bx,Vx={setTimeout:(t,a)=>setTimeout(t,a),clearTimeout:t=>clearTimeout(t),setInterval:(t,a)=>setInterval(t,a),clearInterval:t=>clearInterval(t)},Mr,lm,u_,Hx=(u_=class{constructor(){Se(this,Mr,Vx);Se(this,lm,!1)}setTimeoutProvider(t){le(this,Mr,t)}setTimeout(t,a){return A(this,Mr).setTimeout(t,a)}clearTimeout(t){A(this,Mr).clearTimeout(t)}setInterval(t,a){return A(this,Mr).setInterval(t,a)}clearInterval(t){A(this,Mr).clearInterval(t)}},Mr=new WeakMap,lm=new WeakMap,u_),fi=new Hx;function Zx(t){setTimeout(t,0)}var Qx=typeof window>"u"||"Deno"in globalThis;function nn(){}function Gx(t,a){return typeof t=="function"?t(a):t}function by(t){return typeof t=="number"&&t>=0&&t!==1/0}function b_(t,a){return Math.max(t+(a||0)-Date.now(),0)}function qr(t,a){return typeof t=="function"?t(a):t}function Yn(t,a){return typeof t=="function"?t(a):t}function Y0(t,a){const{type:r="all",exact:l,fetchStatus:u,predicate:o,queryKey:d,stale:h}=t;if(d){if(l){if(a.queryHash!==um(d,a.options))return!1}else if(!nu(a.queryKey,d))return!1}if(r!=="all"){const y=a.isActive();if(r==="active"&&!y||r==="inactive"&&y)return!1}return!(typeof h=="boolean"&&a.isStale()!==h||u&&u!==a.state.fetchStatus||o&&!o(a))}function F0(t,a){const{exact:r,status:l,predicate:u,mutationKey:o}=t;if(o){if(!a.options.mutationKey)return!1;if(r){if(wi(a.options.mutationKey)!==wi(o))return!1}else if(!nu(a.options.mutationKey,o))return!1}return!(l&&a.state.status!==l||u&&!u(a))}function um(t,a){return((a==null?void 0:a.queryKeyHashFn)||wi)(t)}function wi(t){return JSON.stringify(t,(a,r)=>_y(r)?Object.keys(r).sort().reduce((l,u)=>(l[u]=r[u],l),{}):r)}function nu(t,a){return t===a?!0:typeof t!=typeof a?!1:t&&a&&typeof t=="object"&&typeof a=="object"?Object.keys(a).every(r=>nu(t[r],a[r])):!1}var Yx=Object.prototype.hasOwnProperty;function om(t,a,r=0){if(t===a)return t;if(r>500)return a;const l=X0(t)&&X0(a);if(!l&&!(_y(t)&&_y(a)))return a;const o=(l?t:Object.keys(t)).length,d=l?a:Object.keys(a),h=d.length,y=l?new Array(h):{};let m=0;for(let g=0;g<h;g++){const v=l?g:d[g],E=t[v],_=a[v];if(E===_){y[v]=E,(l?g<o:Yx.call(t,v))&&m++;continue}if(E===null||_===null||typeof E!="object"||typeof _!="object"){y[v]=_;continue}const w=om(E,_,r+1);y[v]=w,w===E&&m++}return o===h&&m===o?t:y}function sc(t,a){if(!a||Object.keys(t).length!==Object.keys(a).length)return!1;for(const r in t)if(t[r]!==a[r])return!1;return!0}function X0(t){return Array.isArray(t)&&t.length===Object.keys(t).length}function _y(t){if(!$0(t))return!1;const a=t.constructor;if(a===void 0)return!0;const r=a.prototype;return!(!$0(r)||!r.hasOwnProperty("isPrototypeOf")||Object.getPrototypeOf(t)!==Object.prototype)}function $0(t){return Object.prototype.toString.call(t)==="[object Object]"}function Fx(t){return new Promise(a=>{fi.setTimeout(a,t)})}function Sy(t,a,r){return typeof r.structuralSharing=="function"?r.structuralSharing(t,a):r.structuralSharing!==!1?om(t,a):a}function Xx(t,a,r=0){const l=[...t,a];return r&&l.length>r?l.slice(1):l}function $x(t,a,r=0){const l=[a,...t];return r&&l.length>r?l.slice(0,-1):l}var cm=Symbol();function __(t,a){return!t.queryFn&&(a!=null&&a.initialPromise)?()=>a.initialPromise:!t.queryFn||t.queryFn===cm?()=>Promise.reject(new Error(`Missing queryFn: '${t.queryHash}'`)):t.queryFn}function fm(t,a){return typeof t=="function"?t(...a):!!t}function Kx(t,a,r){let l=!1,u;return Object.defineProperty(t,"signal",{enumerable:!0,get:()=>(u??(u=a()),l||(l=!0,u.aborted?r():u.addEventListener("abort",r,{once:!0})),u)}),t}var au=(()=>{let t=()=>Qx;return{isServer(){return t()},setIsServer(a){t=a}}})();function Ey(){let t,a;const r=new Promise((u,o)=>{t=u,a=o});r.status="pending",r.catch(()=>{});function l(u){Object.assign(r,u),delete r.resolve,delete r.reject}return r.resolve=u=>{l({status:"fulfilled",value:u}),t(u)},r.reject=u=>{l({status:"rejected",reason:u}),a(u)},r}var Px=Zx;function Jx(){let t=[],a=0,r=h=>{h()},l=h=>{h()},u=Px;const o=h=>{a?t.push(h):u(()=>{r(h)})},d=()=>{const h=t;t=[],h.length&&u(()=>{l(()=>{h.forEach(y=>{r(y)})})})};return{batch:h=>{let y;a++;try{y=h()}finally{a--,a||d()}return y},batchCalls:h=>(...y)=>{o(()=>{h(...y)})},schedule:o,setNotifyFunction:h=>{r=h},setBatchNotifyFunction:h=>{l=h},setScheduler:h=>{u=h}}}var Et=Jx(),Cl,kr,Ol,o_,Ix=(o_=class extends Xl{constructor(){super();Se(this,Cl,!0);Se(this,kr);Se(this,Ol);le(this,Ol,a=>{if(typeof window<"u"&&window.addEventListener){const r=()=>a(!0),l=()=>a(!1);return window.addEventListener("online",r,!1),window.addEventListener("offline",l,!1),()=>{window.removeEventListener("online",r),window.removeEventListener("offline",l)}}})}onSubscribe(){A(this,kr)||this.setEventListener(A(this,Ol))}onUnsubscribe(){var a;this.hasListeners()||((a=A(this,kr))==null||a.call(this),le(this,kr,void 0))}setEventListener(a){var r;le(this,Ol,a),(r=A(this,kr))==null||r.call(this),le(this,kr,a(this.setOnline.bind(this)))}setOnline(a){A(this,Cl)!==a&&(le(this,Cl,a),this.listeners.forEach(l=>{l(a)}))}isOnline(){return A(this,Cl)}},Cl=new WeakMap,kr=new WeakMap,Ol=new WeakMap,o_),uc=new Ix;function Wx(t){return Math.min(1e3*2**t,3e4)}function S_(t){return(t??"online")==="online"?uc.isOnline():!0}var xy=class extends Error{constructor(t){super("CancelledError"),this.revert=t==null?void 0:t.revert,this.silent=t==null?void 0:t.silent}};function E_(t){let a=!1,r=0,l;const u=Ey(),o=()=>u.status!=="pending",d=S=>{var x;if(!o()){const M=new xy(S);E(M),(x=t.onCancel)==null||x.call(t,M)}},h=()=>{a=!0},y=()=>{a=!1},m=()=>sm.isFocused()&&(t.networkMode==="always"||uc.isOnline())&&t.canRun(),g=()=>S_(t.networkMode)&&t.canRun(),v=S=>{o()||(l==null||l(),u.resolve(S))},E=S=>{o()||(l==null||l(),u.reject(S))},_=()=>new Promise(S=>{var x;l=M=>{(o()||m())&&S(M)},(x=t.onPause)==null||x.call(t)}).then(()=>{var S;l=void 0,o()||(S=t.onContinue)==null||S.call(t)}),w=()=>{if(o())return;let S;const x=r===0?t.initialPromise:void 0;try{S=x??t.fn()}catch(M){S=Promise.reject(M)}Promise.resolve(S).then(v).catch(M=>{var K;if(o())return;const V=t.retry??(au.isServer()?0:3),Z=t.retryDelay??Wx,q=typeof Z=="function"?Z(r,M):Z,Q=V===!0||typeof V=="number"&&r<V||typeof V=="function"&&V(r,M);if(a||!Q){E(M);return}r++,(K=t.onFail)==null||K.call(t,r,M),Fx(q).then(()=>m()?void 0:_()).then(()=>{a?E(M):w()})})};return{promise:u,status:()=>u.status,cancel:d,continue:()=>(l==null||l(),u),cancelRetry:h,continueRetry:y,canStart:g,start:()=>(g()?w():_().then(w),u)}}var yi,c_,x_=(c_=class{constructor(){Se(this,yi)}destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),by(this.gcTime)&&le(this,yi,fi.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(t){this.gcTime=Math.max(this.gcTime||0,t??(au.isServer()?1/0:300*1e3))}clearGcTimeout(){A(this,yi)&&(fi.clearTimeout(A(this,yi)),le(this,yi,void 0))}},yi=new WeakMap,c_),mi,Rl,Gn,pi,Bt,hu,vi,wn,w_,Ba,f_,ew=(f_=class extends x_{constructor(a){super();Se(this,wn);Se(this,mi);Se(this,Rl);Se(this,Gn);Se(this,pi);Se(this,Bt);Se(this,hu);Se(this,vi);le(this,vi,!1),le(this,hu,a.defaultOptions),this.setOptions(a.options),this.observers=[],le(this,pi,a.client),le(this,Gn,A(this,pi).getQueryCache()),this.queryKey=a.queryKey,this.queryHash=a.queryHash,le(this,mi,P0(this.options)),this.state=a.state??A(this,mi),this.scheduleGc()}get meta(){return this.options.meta}get promise(){var a;return(a=A(this,Bt))==null?void 0:a.promise}setOptions(a){if(this.options={...A(this,hu),...a},this.updateGcTime(this.options.gcTime),this.state&&this.state.data===void 0){const r=P0(this.options);r.data!==void 0&&(this.setState(K0(r.data,r.dataUpdatedAt)),le(this,mi,r))}}optionalRemove(){!this.observers.length&&this.state.fetchStatus==="idle"&&A(this,Gn).remove(this)}setData(a,r){const l=Sy(this.state.data,a,this.options);return je(this,wn,Ba).call(this,{data:l,type:"success",dataUpdatedAt:r==null?void 0:r.updatedAt,manual:r==null?void 0:r.manual}),l}setState(a,r){je(this,wn,Ba).call(this,{type:"setState",state:a,setStateOptions:r})}cancel(a){var l,u;const r=(l=A(this,Bt))==null?void 0:l.promise;return(u=A(this,Bt))==null||u.cancel(a),r?r.then(nn).catch(nn):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return A(this,mi)}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(a=>Yn(a.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===cm||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0?this.observers.some(a=>qr(a.options.staleTime,this)==="static"):!1}isStale(){return this.getObserversCount()>0?this.observers.some(a=>a.getCurrentResult().isStale):this.state.data===void 0||this.state.isInvalidated}isStaleByTime(a=0){return this.state.data===void 0?!0:a==="static"?!1:this.state.isInvalidated?!0:!b_(this.state.dataUpdatedAt,a)}onFocus(){var r;const a=this.observers.find(l=>l.shouldFetchOnWindowFocus());a==null||a.refetch({cancelRefetch:!1}),(r=A(this,Bt))==null||r.continue()}onOnline(){var r;const a=this.observers.find(l=>l.shouldFetchOnReconnect());a==null||a.refetch({cancelRefetch:!1}),(r=A(this,Bt))==null||r.continue()}addObserver(a){this.observers.includes(a)||(this.observers.push(a),this.clearGcTimeout(),A(this,Gn).notify({type:"observerAdded",query:this,observer:a}))}removeObserver(a){this.observers.includes(a)&&(this.observers=this.observers.filter(r=>r!==a),this.observers.length||(A(this,Bt)&&(A(this,vi)||je(this,wn,w_).call(this)?A(this,Bt).cancel({revert:!0}):A(this,Bt).cancelRetry()),this.scheduleGc()),A(this,Gn).notify({type:"observerRemoved",query:this,observer:a}))}getObserversCount(){return this.observers.length}invalidate(){this.state.isInvalidated||je(this,wn,Ba).call(this,{type:"invalidate"})}async fetch(a,r){var y,m,g,v,E,_,w,S,x,M,V,Z;if(this.state.fetchStatus!=="idle"&&((y=A(this,Bt))==null?void 0:y.status())!=="rejected"){if(this.state.data!==void 0&&(r!=null&&r.cancelRefetch))this.cancel({silent:!0});else if(A(this,Bt))return A(this,Bt).continueRetry(),A(this,Bt).promise}if(a&&this.setOptions(a),!this.options.queryFn){const q=this.observers.find(Q=>Q.options.queryFn);q&&this.setOptions(q.options)}const l=new AbortController,u=q=>{Object.defineProperty(q,"signal",{enumerable:!0,get:()=>(le(this,vi,!0),l.signal)})},o=()=>{const q=__(this.options,r),K=(()=>{const P={client:A(this,pi),queryKey:this.queryKey,meta:this.meta};return u(P),P})();return le(this,vi,!1),this.options.persister?this.options.persister(q,K,this):q(K)},h=(()=>{const q={fetchOptions:r,options:this.options,queryKey:this.queryKey,client:A(this,pi),state:this.state,fetchFn:o};return u(q),q})();(m=this.options.behavior)==null||m.onFetch(h,this),le(this,Rl,this.state),(this.state.fetchStatus==="idle"||this.state.fetchMeta!==((g=h.fetchOptions)==null?void 0:g.meta))&&je(this,wn,Ba).call(this,{type:"fetch",meta:(v=h.fetchOptions)==null?void 0:v.meta}),le(this,Bt,E_({initialPromise:r==null?void 0:r.initialPromise,fn:h.fetchFn,onCancel:q=>{q instanceof xy&&q.revert&&this.setState({...A(this,Rl),fetchStatus:"idle"}),l.abort()},onFail:(q,Q)=>{je(this,wn,Ba).call(this,{type:"failed",failureCount:q,error:Q})},onPause:()=>{je(this,wn,Ba).call(this,{type:"pause"})},onContinue:()=>{je(this,wn,Ba).call(this,{type:"continue"})},retry:h.options.retry,retryDelay:h.options.retryDelay,networkMode:h.options.networkMode,canRun:()=>!0}));try{const q=await A(this,Bt).start();if(q===void 0)throw new Error(`${this.queryHash} data is undefined`);return this.setData(q),(_=(E=A(this,Gn).config).onSuccess)==null||_.call(E,q,this),(S=(w=A(this,Gn).config).onSettled)==null||S.call(w,q,this.state.error,this),q}catch(q){if(q instanceof xy){if(q.silent)return A(this,Bt).promise;if(q.revert){if(this.state.data===void 0)throw q;return this.state.data}}throw je(this,wn,Ba).call(this,{type:"error",error:q}),(M=(x=A(this,Gn).config).onError)==null||M.call(x,q,this),(Z=(V=A(this,Gn).config).onSettled)==null||Z.call(V,this.state.data,q,this),q}finally{this.scheduleGc()}}},mi=new WeakMap,Rl=new WeakMap,Gn=new WeakMap,pi=new WeakMap,Bt=new WeakMap,hu=new WeakMap,vi=new WeakMap,wn=new WeakSet,w_=function(){return this.state.fetchStatus==="paused"&&this.state.status==="pending"},Ba=function(a){const r=l=>{switch(a.type){case"failed":return{...l,fetchFailureCount:a.failureCount,fetchFailureReason:a.error};case"pause":return{...l,fetchStatus:"paused"};case"continue":return{...l,fetchStatus:"fetching"};case"fetch":return{...l,...T_(l.data,this.options),fetchMeta:a.meta??null};case"success":const u={...l,...K0(a.data,a.dataUpdatedAt),dataUpdateCount:l.dataUpdateCount+1,...!a.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};return le(this,Rl,a.manual?u:void 0),u;case"error":const o=a.error;return{...l,error:o,errorUpdateCount:l.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:l.fetchFailureCount+1,fetchFailureReason:o,fetchStatus:"idle",status:"error",isInvalidated:!0};case"invalidate":return{...l,isInvalidated:!0};case"setState":return{...l,...a.state}}};this.state=r(this.state),Et.batch(()=>{this.observers.forEach(l=>{l.onQueryUpdate()}),A(this,Gn).notify({query:this,type:"updated",action:a})})},f_);function T_(t,a){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:S_(a.networkMode)?"fetching":"paused",...t===void 0&&{error:null,status:"pending"}}}function K0(t,a){return{data:t,dataUpdatedAt:a??Date.now(),error:null,isInvalidated:!1,status:"success"}}function P0(t){const a=typeof t.initialData=="function"?t.initialData():t.initialData,r=a!==void 0,l=r?typeof t.initialDataUpdatedAt=="function"?t.initialDataUpdatedAt():t.initialDataUpdatedAt:0;return{data:a,dataUpdateCount:0,dataUpdatedAt:r?l??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:r?"success":"pending",fetchStatus:"idle"}}var hn,Xe,yu,en,gi,Ml,Ha,zr,mu,kl,zl,bi,_i,Nr,Nl,et,Js,wy,Ty,Ay,Cy,Oy,Ry,My,A_,d_,tw=(d_=class extends Xl{constructor(a,r){super();Se(this,et);Se(this,hn);Se(this,Xe);Se(this,yu);Se(this,en);Se(this,gi);Se(this,Ml);Se(this,Ha);Se(this,zr);Se(this,mu);Se(this,kl);Se(this,zl);Se(this,bi);Se(this,_i);Se(this,Nr);Se(this,Nl,new Set);this.options=r,le(this,hn,a),le(this,zr,null),le(this,Ha,Ey()),this.bindMethods(),this.setOptions(r)}bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){this.listeners.size===1&&(A(this,Xe).addObserver(this),J0(A(this,Xe),this.options)?je(this,et,Js).call(this):this.updateResult(),je(this,et,Cy).call(this))}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return ky(A(this,Xe),this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return ky(A(this,Xe),this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,je(this,et,Oy).call(this),je(this,et,Ry).call(this),A(this,Xe).removeObserver(this)}setOptions(a){const r=this.options,l=A(this,Xe);if(this.options=A(this,hn).defaultQueryOptions(a),this.options.enabled!==void 0&&typeof this.options.enabled!="boolean"&&typeof this.options.enabled!="function"&&typeof Yn(this.options.enabled,A(this,Xe))!="boolean")throw new Error("Expected enabled to be a boolean or a callback that returns a boolean");je(this,et,My).call(this),A(this,Xe).setOptions(this.options),r._defaulted&&!sc(this.options,r)&&A(this,hn).getQueryCache().notify({type:"observerOptionsUpdated",query:A(this,Xe),observer:this});const u=this.hasListeners();u&&I0(A(this,Xe),l,this.options,r)&&je(this,et,Js).call(this),this.updateResult(),u&&(A(this,Xe)!==l||Yn(this.options.enabled,A(this,Xe))!==Yn(r.enabled,A(this,Xe))||qr(this.options.staleTime,A(this,Xe))!==qr(r.staleTime,A(this,Xe)))&&je(this,et,wy).call(this);const o=je(this,et,Ty).call(this);u&&(A(this,Xe)!==l||Yn(this.options.enabled,A(this,Xe))!==Yn(r.enabled,A(this,Xe))||o!==A(this,Nr))&&je(this,et,Ay).call(this,o)}getOptimisticResult(a){const r=A(this,hn).getQueryCache().build(A(this,hn),a),l=this.createResult(r,a);return aw(this,l)&&(le(this,en,l),le(this,Ml,this.options),le(this,gi,A(this,Xe).state)),l}getCurrentResult(){return A(this,en)}trackResult(a,r){return new Proxy(a,{get:(l,u)=>(this.trackProp(u),r==null||r(u),u==="promise"&&(this.trackProp("data"),!this.options.experimental_prefetchInRender&&A(this,Ha).status==="pending"&&A(this,Ha).reject(new Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(l,u))})}trackProp(a){A(this,Nl).add(a)}getCurrentQuery(){return A(this,Xe)}refetch({...a}={}){return this.fetch({...a})}fetchOptimistic(a){const r=A(this,hn).defaultQueryOptions(a),l=A(this,hn).getQueryCache().build(A(this,hn),r);return l.fetch().then(()=>this.createResult(l,r))}fetch(a){return je(this,et,Js).call(this,{...a,cancelRefetch:a.cancelRefetch??!0}).then(()=>(this.updateResult(),A(this,en)))}createResult(a,r){var re;const l=A(this,Xe),u=this.options,o=A(this,en),d=A(this,gi),h=A(this,Ml),m=a!==l?a.state:A(this,yu),{state:g}=a;let v={...g},E=!1,_;if(r._optimisticResults){const ze=this.hasListeners(),Ae=!ze&&J0(a,r),ne=ze&&I0(a,l,r,u);(Ae||ne)&&(v={...v,...T_(g.data,a.options)}),r._optimisticResults==="isRestoring"&&(v.fetchStatus="idle")}let{error:w,errorUpdatedAt:S,status:x}=v;_=v.data;let M=!1;if(r.placeholderData!==void 0&&_===void 0&&x==="pending"){let ze;o!=null&&o.isPlaceholderData&&r.placeholderData===(h==null?void 0:h.placeholderData)?(ze=o.data,M=!0):ze=typeof r.placeholderData=="function"?r.placeholderData((re=A(this,zl))==null?void 0:re.state.data,A(this,zl)):r.placeholderData,ze!==void 0&&(x="success",_=Sy(o==null?void 0:o.data,ze,r),E=!0)}if(r.select&&_!==void 0&&!M)if(o&&_===(d==null?void 0:d.data)&&r.select===A(this,mu))_=A(this,kl);else try{le(this,mu,r.select),_=r.select(_),_=Sy(o==null?void 0:o.data,_,r),le(this,kl,_),le(this,zr,null)}catch(ze){le(this,zr,ze)}A(this,zr)&&(w=A(this,zr),_=A(this,kl),S=Date.now(),x="error");const V=v.fetchStatus==="fetching",Z=x==="pending",q=x==="error",Q=Z&&V,K=_!==void 0,G={status:x,fetchStatus:v.fetchStatus,isPending:Z,isSuccess:x==="success",isError:q,isInitialLoading:Q,isLoading:Q,data:_,dataUpdatedAt:v.dataUpdatedAt,error:w,errorUpdatedAt:S,failureCount:v.fetchFailureCount,failureReason:v.fetchFailureReason,errorUpdateCount:v.errorUpdateCount,isFetched:a.isFetched(),isFetchedAfterMount:v.dataUpdateCount>m.dataUpdateCount||v.errorUpdateCount>m.errorUpdateCount,isFetching:V,isRefetching:V&&!Z,isLoadingError:q&&!K,isPaused:v.fetchStatus==="paused",isPlaceholderData:E,isRefetchError:q&&K,isStale:dm(a,r),refetch:this.refetch,promise:A(this,Ha),isEnabled:Yn(r.enabled,a)!==!1};if(this.options.experimental_prefetchInRender){const ze=G.data!==void 0,Ae=G.status==="error"&&!ze,ne=Ce=>{Ae?Ce.reject(G.error):ze&&Ce.resolve(G.data)},we=()=>{const Ce=le(this,Ha,G.promise=Ey());ne(Ce)},Ne=A(this,Ha);switch(Ne.status){case"pending":a.queryHash===l.queryHash&&ne(Ne);break;case"fulfilled":(Ae||G.data!==Ne.value)&&we();break;case"rejected":(!Ae||G.error!==Ne.reason)&&we();break}}return G}updateResult(){const a=A(this,en),r=this.createResult(A(this,Xe),this.options);if(le(this,gi,A(this,Xe).state),le(this,Ml,this.options),A(this,gi).data!==void 0&&le(this,zl,A(this,Xe)),sc(r,a))return;le(this,en,r);const l=()=>{if(!a)return!0;const{notifyOnChangeProps:u}=this.options,o=typeof u=="function"?u():u;if(o==="all"||!o&&!A(this,Nl).size)return!0;const d=new Set(o??A(this,Nl));return this.options.throwOnError&&d.add("error"),Object.keys(A(this,en)).some(h=>{const y=h;return A(this,en)[y]!==a[y]&&d.has(y)})};je(this,et,A_).call(this,{listeners:l()})}onQueryUpdate(){this.updateResult(),this.hasListeners()&&je(this,et,Cy).call(this)}},hn=new WeakMap,Xe=new WeakMap,yu=new WeakMap,en=new WeakMap,gi=new WeakMap,Ml=new WeakMap,Ha=new WeakMap,zr=new WeakMap,mu=new WeakMap,kl=new WeakMap,zl=new WeakMap,bi=new WeakMap,_i=new WeakMap,Nr=new WeakMap,Nl=new WeakMap,et=new WeakSet,Js=function(a){je(this,et,My).call(this);let r=A(this,Xe).fetch(this.options,a);return a!=null&&a.throwOnError||(r=r.catch(nn)),r},wy=function(){je(this,et,Oy).call(this);const a=qr(this.options.staleTime,A(this,Xe));if(au.isServer()||A(this,en).isStale||!by(a))return;const l=b_(A(this,en).dataUpdatedAt,a)+1;le(this,bi,fi.setTimeout(()=>{A(this,en).isStale||this.updateResult()},l))},Ty=function(){return(typeof this.options.refetchInterval=="function"?this.options.refetchInterval(A(this,Xe)):this.options.refetchInterval)??!1},Ay=function(a){je(this,et,Ry).call(this),le(this,Nr,a),!(au.isServer()||Yn(this.options.enabled,A(this,Xe))===!1||!by(A(this,Nr))||A(this,Nr)===0)&&le(this,_i,fi.setInterval(()=>{(this.options.refetchIntervalInBackground||sm.isFocused())&&je(this,et,Js).call(this)},A(this,Nr)))},Cy=function(){je(this,et,wy).call(this),je(this,et,Ay).call(this,je(this,et,Ty).call(this))},Oy=function(){A(this,bi)&&(fi.clearTimeout(A(this,bi)),le(this,bi,void 0))},Ry=function(){A(this,_i)&&(fi.clearInterval(A(this,_i)),le(this,_i,void 0))},My=function(){const a=A(this,hn).getQueryCache().build(A(this,hn),this.options);if(a===A(this,Xe))return;const r=A(this,Xe);le(this,Xe,a),le(this,yu,a.state),this.hasListeners()&&(r==null||r.removeObserver(this),a.addObserver(this))},A_=function(a){Et.batch(()=>{a.listeners&&this.listeners.forEach(r=>{r(A(this,en))}),A(this,hn).getQueryCache().notify({query:A(this,Xe),type:"observerResultsUpdated"})})},d_);function nw(t,a){return Yn(a.enabled,t)!==!1&&t.state.data===void 0&&!(t.state.status==="error"&&a.retryOnMount===!1)}function J0(t,a){return nw(t,a)||t.state.data!==void 0&&ky(t,a,a.refetchOnMount)}function ky(t,a,r){if(Yn(a.enabled,t)!==!1&&qr(a.staleTime,t)!=="static"){const l=typeof r=="function"?r(t):r;return l==="always"||l!==!1&&dm(t,a)}return!1}function I0(t,a,r,l){return(t!==a||Yn(l.enabled,t)===!1)&&(!r.suspense||t.state.status!=="error")&&dm(t,r)}function dm(t,a){return Yn(a.enabled,t)!==!1&&t.isStaleByTime(qr(a.staleTime,t))}function aw(t,a){return!sc(t.getCurrentResult(),a)}function W0(t){return{onFetch:(a,r)=>{var g,v,E,_,w;const l=a.options,u=(E=(v=(g=a.fetchOptions)==null?void 0:g.meta)==null?void 0:v.fetchMore)==null?void 0:E.direction,o=((_=a.state.data)==null?void 0:_.pages)||[],d=((w=a.state.data)==null?void 0:w.pageParams)||[];let h={pages:[],pageParams:[]},y=0;const m=async()=>{let S=!1;const x=Z=>{Kx(Z,()=>a.signal,()=>S=!0)},M=__(a.options,a.fetchOptions),V=async(Z,q,Q)=>{if(S)return Promise.reject();if(q==null&&Z.pages.length)return Promise.resolve(Z);const P=(()=>{const Ae={client:a.client,queryKey:a.queryKey,pageParam:q,direction:Q?"backward":"forward",meta:a.options.meta};return x(Ae),Ae})(),G=await M(P),{maxPages:re}=a.options,ze=Q?$x:Xx;return{pages:ze(Z.pages,G,re),pageParams:ze(Z.pageParams,q,re)}};if(u&&o.length){const Z=u==="backward",q=Z?rw:e1,Q={pages:o,pageParams:d},K=q(l,Q);h=await V(Q,K,Z)}else{const Z=t??o.length;do{const q=y===0?d[0]??l.initialPageParam:e1(l,h);if(y>0&&q==null)break;h=await V(h,q),y++}while(y<Z)}return h};a.options.persister?a.fetchFn=()=>{var S,x;return(x=(S=a.options).persister)==null?void 0:x.call(S,m,{client:a.client,queryKey:a.queryKey,meta:a.options.meta,signal:a.signal},r)}:a.fetchFn=m}}}function e1(t,{pages:a,pageParams:r}){const l=a.length-1;return a.length>0?t.getNextPageParam(a[l],a,r[l],r):void 0}function rw(t,{pages:a,pageParams:r}){var l;return a.length>0?(l=t.getPreviousPageParam)==null?void 0:l.call(t,a[0],a,r[0],r):void 0}var pu,da,Kt,Si,ha,Tr,h_,iw=(h_=class extends x_{constructor(a){super();Se(this,ha);Se(this,pu);Se(this,da);Se(this,Kt);Se(this,Si);le(this,pu,a.client),this.mutationId=a.mutationId,le(this,Kt,a.mutationCache),le(this,da,[]),this.state=a.state||C_(),this.setOptions(a.options),this.scheduleGc()}setOptions(a){this.options=a,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(a){A(this,da).includes(a)||(A(this,da).push(a),this.clearGcTimeout(),A(this,Kt).notify({type:"observerAdded",mutation:this,observer:a}))}removeObserver(a){le(this,da,A(this,da).filter(r=>r!==a)),this.scheduleGc(),A(this,Kt).notify({type:"observerRemoved",mutation:this,observer:a})}optionalRemove(){A(this,da).length||(this.state.status==="pending"?this.scheduleGc():A(this,Kt).remove(this))}continue(){var a;return((a=A(this,Si))==null?void 0:a.continue())??this.execute(this.state.variables)}async execute(a){var d,h,y,m,g,v,E,_,w,S,x,M,V,Z,q,Q,K,P;const r=()=>{je(this,ha,Tr).call(this,{type:"continue"})},l={client:A(this,pu),meta:this.options.meta,mutationKey:this.options.mutationKey};le(this,Si,E_({fn:()=>this.options.mutationFn?this.options.mutationFn(a,l):Promise.reject(new Error("No mutationFn found")),onFail:(G,re)=>{je(this,ha,Tr).call(this,{type:"failed",failureCount:G,error:re})},onPause:()=>{je(this,ha,Tr).call(this,{type:"pause"})},onContinue:r,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>A(this,Kt).canRun(this)}));const u=this.state.status==="pending",o=!A(this,Si).canStart();try{if(u)r();else{je(this,ha,Tr).call(this,{type:"pending",variables:a,isPaused:o}),A(this,Kt).config.onMutate&&await A(this,Kt).config.onMutate(a,this,l);const re=await((h=(d=this.options).onMutate)==null?void 0:h.call(d,a,l));re!==this.state.context&&je(this,ha,Tr).call(this,{type:"pending",context:re,variables:a,isPaused:o})}const G=await A(this,Si).start();return await((m=(y=A(this,Kt).config).onSuccess)==null?void 0:m.call(y,G,a,this.state.context,this,l)),await((v=(g=this.options).onSuccess)==null?void 0:v.call(g,G,a,this.state.context,l)),await((_=(E=A(this,Kt).config).onSettled)==null?void 0:_.call(E,G,null,this.state.variables,this.state.context,this,l)),await((S=(w=this.options).onSettled)==null?void 0:S.call(w,G,null,a,this.state.context,l)),je(this,ha,Tr).call(this,{type:"success",data:G}),G}catch(G){try{await((M=(x=A(this,Kt).config).onError)==null?void 0:M.call(x,G,a,this.state.context,this,l))}catch(re){Promise.reject(re)}try{await((Z=(V=this.options).onError)==null?void 0:Z.call(V,G,a,this.state.context,l))}catch(re){Promise.reject(re)}try{await((Q=(q=A(this,Kt).config).onSettled)==null?void 0:Q.call(q,void 0,G,this.state.variables,this.state.context,this,l))}catch(re){Promise.reject(re)}try{await((P=(K=this.options).onSettled)==null?void 0:P.call(K,void 0,G,a,this.state.context,l))}catch(re){Promise.reject(re)}throw je(this,ha,Tr).call(this,{type:"error",error:G}),G}finally{A(this,Kt).runNext(this)}}},pu=new WeakMap,da=new WeakMap,Kt=new WeakMap,Si=new WeakMap,ha=new WeakSet,Tr=function(a){const r=l=>{switch(a.type){case"failed":return{...l,failureCount:a.failureCount,failureReason:a.error};case"pause":return{...l,isPaused:!0};case"continue":return{...l,isPaused:!1};case"pending":return{...l,context:a.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:a.isPaused,status:"pending",variables:a.variables,submittedAt:Date.now()};case"success":return{...l,data:a.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...l,data:void 0,error:a.error,failureCount:l.failureCount+1,failureReason:a.error,isPaused:!1,status:"error"}}};this.state=r(this.state),Et.batch(()=>{A(this,da).forEach(l=>{l.onMutationUpdate(a)}),A(this,Kt).notify({mutation:this,type:"updated",action:a})})},h_);function C_(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}var Za,ta,vu,y_,lw=(y_=class extends Xl{constructor(a={}){super();Se(this,Za);Se(this,ta);Se(this,vu);this.config=a,le(this,Za,new Set),le(this,ta,new Map),le(this,vu,0)}build(a,r,l){const u=new iw({client:a,mutationCache:this,mutationId:++Go(this,vu)._,options:a.defaultMutationOptions(r),state:l});return this.add(u),u}add(a){A(this,Za).add(a);const r=Yo(a);if(typeof r=="string"){const l=A(this,ta).get(r);l?l.push(a):A(this,ta).set(r,[a])}this.notify({type:"added",mutation:a})}remove(a){if(A(this,Za).delete(a)){const r=Yo(a);if(typeof r=="string"){const l=A(this,ta).get(r);if(l)if(l.length>1){const u=l.indexOf(a);u!==-1&&l.splice(u,1)}else l[0]===a&&A(this,ta).delete(r)}}this.notify({type:"removed",mutation:a})}canRun(a){const r=Yo(a);if(typeof r=="string"){const l=A(this,ta).get(r),u=l==null?void 0:l.find(o=>o.state.status==="pending");return!u||u===a}else return!0}runNext(a){var l;const r=Yo(a);if(typeof r=="string"){const u=(l=A(this,ta).get(r))==null?void 0:l.find(o=>o!==a&&o.state.isPaused);return(u==null?void 0:u.continue())??Promise.resolve()}else return Promise.resolve()}clear(){Et.batch(()=>{A(this,Za).forEach(a=>{this.notify({type:"removed",mutation:a})}),A(this,Za).clear(),A(this,ta).clear()})}getAll(){return Array.from(A(this,Za))}find(a){const r={exact:!0,...a};return this.getAll().find(l=>F0(r,l))}findAll(a={}){return this.getAll().filter(r=>F0(a,r))}notify(a){Et.batch(()=>{this.listeners.forEach(r=>{r(a)})})}resumePausedMutations(){const a=this.getAll().filter(r=>r.state.isPaused);return Et.batch(()=>Promise.all(a.map(r=>r.continue().catch(nn))))}},Za=new WeakMap,ta=new WeakMap,vu=new WeakMap,y_);function Yo(t){var a;return(a=t.options.scope)==null?void 0:a.id}var Qa,Dr,yn,Ga,Xa,nc,zy,m_,sw=(m_=class extends Xl{constructor(r,l){super();Se(this,Xa);Se(this,Qa);Se(this,Dr);Se(this,yn);Se(this,Ga);le(this,Qa,r),this.setOptions(l),this.bindMethods(),je(this,Xa,nc).call(this)}bindMethods(){this.mutate=this.mutate.bind(this),this.reset=this.reset.bind(this)}setOptions(r){var u;const l=this.options;this.options=A(this,Qa).defaultMutationOptions(r),sc(this.options,l)||A(this,Qa).getMutationCache().notify({type:"observerOptionsUpdated",mutation:A(this,yn),observer:this}),l!=null&&l.mutationKey&&this.options.mutationKey&&wi(l.mutationKey)!==wi(this.options.mutationKey)?this.reset():((u=A(this,yn))==null?void 0:u.state.status)==="pending"&&A(this,yn).setOptions(this.options)}onUnsubscribe(){var r;this.hasListeners()||(r=A(this,yn))==null||r.removeObserver(this)}onMutationUpdate(r){je(this,Xa,nc).call(this),je(this,Xa,zy).call(this,r)}getCurrentResult(){return A(this,Dr)}reset(){var r;(r=A(this,yn))==null||r.removeObserver(this),le(this,yn,void 0),je(this,Xa,nc).call(this),je(this,Xa,zy).call(this)}mutate(r,l){var u;return le(this,Ga,l),(u=A(this,yn))==null||u.removeObserver(this),le(this,yn,A(this,Qa).getMutationCache().build(A(this,Qa),this.options)),A(this,yn).addObserver(this),A(this,yn).execute(r)}},Qa=new WeakMap,Dr=new WeakMap,yn=new WeakMap,Ga=new WeakMap,Xa=new WeakSet,nc=function(){var l;const r=((l=A(this,yn))==null?void 0:l.state)??C_();le(this,Dr,{...r,isPending:r.status==="pending",isSuccess:r.status==="success",isError:r.status==="error",isIdle:r.status==="idle",mutate:this.mutate,reset:this.reset})},zy=function(r){Et.batch(()=>{var l,u,o,d,h,y,m,g;if(A(this,Ga)&&this.hasListeners()){const v=A(this,Dr).variables,E=A(this,Dr).context,_={client:A(this,Qa),meta:this.options.meta,mutationKey:this.options.mutationKey};if((r==null?void 0:r.type)==="success"){try{(u=(l=A(this,Ga)).onSuccess)==null||u.call(l,r.data,v,E,_)}catch(w){Promise.reject(w)}try{(d=(o=A(this,Ga)).onSettled)==null||d.call(o,r.data,null,v,E,_)}catch(w){Promise.reject(w)}}else if((r==null?void 0:r.type)==="error"){try{(y=(h=A(this,Ga)).onError)==null||y.call(h,r.error,v,E,_)}catch(w){Promise.reject(w)}try{(g=(m=A(this,Ga)).onSettled)==null||g.call(m,void 0,r.error,v,E,_)}catch(w){Promise.reject(w)}}}this.listeners.forEach(v=>{v(A(this,Dr))})})},m_),ya,p_,uw=(p_=class extends Xl{constructor(a={}){super();Se(this,ya);this.config=a,le(this,ya,new Map)}build(a,r,l){const u=r.queryKey,o=r.queryHash??um(u,r);let d=this.get(o);return d||(d=new ew({client:a,queryKey:u,queryHash:o,options:a.defaultQueryOptions(r),state:l,defaultOptions:a.getQueryDefaults(u)}),this.add(d)),d}add(a){A(this,ya).has(a.queryHash)||(A(this,ya).set(a.queryHash,a),this.notify({type:"added",query:a}))}remove(a){const r=A(this,ya).get(a.queryHash);r&&(a.destroy(),r===a&&A(this,ya).delete(a.queryHash),this.notify({type:"removed",query:a}))}clear(){Et.batch(()=>{this.getAll().forEach(a=>{this.remove(a)})})}get(a){return A(this,ya).get(a)}getAll(){return[...A(this,ya).values()]}find(a){const r={exact:!0,...a};return this.getAll().find(l=>Y0(r,l))}findAll(a={}){const r=this.getAll();return Object.keys(a).length>0?r.filter(l=>Y0(a,l)):r}notify(a){Et.batch(()=>{this.listeners.forEach(r=>{r(a)})})}onFocus(){Et.batch(()=>{this.getAll().forEach(a=>{a.onFocus()})})}onOnline(){Et.batch(()=>{this.getAll().forEach(a=>{a.onOnline()})})}},ya=new WeakMap,p_),bt,Ur,Lr,Dl,Ul,jr,Ll,jl,v_,HM=(v_=class{constructor(t={}){Se(this,bt);Se(this,Ur);Se(this,Lr);Se(this,Dl);Se(this,Ul);Se(this,jr);Se(this,Ll);Se(this,jl);le(this,bt,t.queryCache||new uw),le(this,Ur,t.mutationCache||new lw),le(this,Lr,t.defaultOptions||{}),le(this,Dl,new Map),le(this,Ul,new Map),le(this,jr,0)}mount(){Go(this,jr)._++,A(this,jr)===1&&(le(this,Ll,sm.subscribe(async t=>{t&&(await this.resumePausedMutations(),A(this,bt).onFocus())})),le(this,jl,uc.subscribe(async t=>{t&&(await this.resumePausedMutations(),A(this,bt).onOnline())})))}unmount(){var t,a;Go(this,jr)._--,A(this,jr)===0&&((t=A(this,Ll))==null||t.call(this),le(this,Ll,void 0),(a=A(this,jl))==null||a.call(this),le(this,jl,void 0))}isFetching(t){return A(this,bt).findAll({...t,fetchStatus:"fetching"}).length}isMutating(t){return A(this,Ur).findAll({...t,status:"pending"}).length}getQueryData(t){var r;const a=this.defaultQueryOptions({queryKey:t});return(r=A(this,bt).get(a.queryHash))==null?void 0:r.state.data}ensureQueryData(t){const a=this.defaultQueryOptions(t),r=A(this,bt).build(this,a),l=r.state.data;return l===void 0?this.fetchQuery(t):(t.revalidateIfStale&&r.isStaleByTime(qr(a.staleTime,r))&&this.prefetchQuery(a),Promise.resolve(l))}getQueriesData(t){return A(this,bt).findAll(t).map(({queryKey:a,state:r})=>{const l=r.data;return[a,l]})}setQueryData(t,a,r){const l=this.defaultQueryOptions({queryKey:t}),u=A(this,bt).get(l.queryHash),o=u==null?void 0:u.state.data,d=Gx(a,o);if(d!==void 0)return A(this,bt).build(this,l).setData(d,{...r,manual:!0})}setQueriesData(t,a,r){return Et.batch(()=>A(this,bt).findAll(t).map(({queryKey:l})=>[l,this.setQueryData(l,a,r)]))}getQueryState(t){var r;const a=this.defaultQueryOptions({queryKey:t});return(r=A(this,bt).get(a.queryHash))==null?void 0:r.state}removeQueries(t){const a=A(this,bt);Et.batch(()=>{a.findAll(t).forEach(r=>{a.remove(r)})})}resetQueries(t,a){const r=A(this,bt);return Et.batch(()=>(r.findAll(t).forEach(l=>{l.reset()}),this.refetchQueries({type:"active",...t},a)))}cancelQueries(t,a={}){const r={revert:!0,...a},l=Et.batch(()=>A(this,bt).findAll(t).map(u=>u.cancel(r)));return Promise.all(l).then(nn).catch(nn)}invalidateQueries(t,a={}){return Et.batch(()=>(A(this,bt).findAll(t).forEach(r=>{r.invalidate()}),(t==null?void 0:t.refetchType)==="none"?Promise.resolve():this.refetchQueries({...t,type:(t==null?void 0:t.refetchType)??(t==null?void 0:t.type)??"active"},a)))}refetchQueries(t,a={}){const r={...a,cancelRefetch:a.cancelRefetch??!0},l=Et.batch(()=>A(this,bt).findAll(t).filter(u=>!u.isDisabled()&&!u.isStatic()).map(u=>{let o=u.fetch(void 0,r);return r.throwOnError||(o=o.catch(nn)),u.state.fetchStatus==="paused"?Promise.resolve():o}));return Promise.all(l).then(nn)}fetchQuery(t){const a=this.defaultQueryOptions(t);a.retry===void 0&&(a.retry=!1);const r=A(this,bt).build(this,a);return r.isStaleByTime(qr(a.staleTime,r))?r.fetch(a):Promise.resolve(r.state.data)}prefetchQuery(t){return this.fetchQuery(t).then(nn).catch(nn)}fetchInfiniteQuery(t){return t.behavior=W0(t.pages),this.fetchQuery(t)}prefetchInfiniteQuery(t){return this.fetchInfiniteQuery(t).then(nn).catch(nn)}ensureInfiniteQueryData(t){return t.behavior=W0(t.pages),this.ensureQueryData(t)}resumePausedMutations(){return uc.isOnline()?A(this,Ur).resumePausedMutations():Promise.resolve()}getQueryCache(){return A(this,bt)}getMutationCache(){return A(this,Ur)}getDefaultOptions(){return A(this,Lr)}setDefaultOptions(t){le(this,Lr,t)}setQueryDefaults(t,a){A(this,Dl).set(wi(t),{queryKey:t,defaultOptions:a})}getQueryDefaults(t){const a=[...A(this,Dl).values()],r={};return a.forEach(l=>{nu(t,l.queryKey)&&Object.assign(r,l.defaultOptions)}),r}setMutationDefaults(t,a){A(this,Ul).set(wi(t),{mutationKey:t,defaultOptions:a})}getMutationDefaults(t){const a=[...A(this,Ul).values()],r={};return a.forEach(l=>{nu(t,l.mutationKey)&&Object.assign(r,l.defaultOptions)}),r}defaultQueryOptions(t){if(t._defaulted)return t;const a={...A(this,Lr).queries,...this.getQueryDefaults(t.queryKey),...t,_defaulted:!0};return a.queryHash||(a.queryHash=um(a.queryKey,a)),a.refetchOnReconnect===void 0&&(a.refetchOnReconnect=a.networkMode!=="always"),a.throwOnError===void 0&&(a.throwOnError=!!a.suspense),!a.networkMode&&a.persister&&(a.networkMode="offlineFirst"),a.queryFn===cm&&(a.enabled=!1),a}defaultMutationOptions(t){return t!=null&&t._defaulted?t:{...A(this,Lr).mutations,...(t==null?void 0:t.mutationKey)&&this.getMutationDefaults(t.mutationKey),...t,_defaulted:!0}}clear(){A(this,bt).clear(),A(this,Ur).clear()}},bt=new WeakMap,Ur=new WeakMap,Lr=new WeakMap,Dl=new WeakMap,Ul=new WeakMap,jr=new WeakMap,Ll=new WeakMap,jl=new WeakMap,v_),O_=z.createContext(void 0),gu=t=>{const a=z.useContext(O_);if(t)return t;if(!a)throw new Error("No QueryClient set, use QueryClientProvider to set one");return a},ZM=({client:t,children:a})=>(z.useEffect(()=>(t.mount(),()=>{t.unmount()}),[t]),kx.jsx(O_.Provider,{value:t,children:a})),R_=z.createContext(!1),ow=()=>z.useContext(R_);R_.Provider;function cw(){let t=!1;return{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t}}var fw=z.createContext(cw()),dw=()=>z.useContext(fw),hw=(t,a,r)=>{const l=r!=null&&r.state.error&&typeof t.throwOnError=="function"?fm(t.throwOnError,[r.state.error,r]):t.throwOnError;(t.suspense||t.experimental_prefetchInRender||l)&&(a.isReset()||(t.retryOnMount=!1))},yw=t=>{z.useEffect(()=>{t.clearReset()},[t])},mw=({result:t,errorResetBoundary:a,throwOnError:r,query:l,suspense:u})=>t.isError&&!a.isReset()&&!t.isFetching&&l&&(u&&t.data===void 0||fm(r,[t.error,l])),pw=t=>{if(t.suspense){const r=u=>u==="static"?u:Math.max(u??1e3,1e3),l=t.staleTime;t.staleTime=typeof l=="function"?(...u)=>r(l(...u)):r(l),typeof t.gcTime=="number"&&(t.gcTime=Math.max(t.gcTime,1e3))}},vw=(t,a)=>t.isLoading&&t.isFetching&&!a,gw=(t,a)=>(t==null?void 0:t.suspense)&&a.isPending,t1=(t,a,r)=>a.fetchOptimistic(t).catch(()=>{r.clearReset()});function bw(t,a,r){var E,_,w,S;const l=ow(),u=dw(),o=gu(r),d=o.defaultQueryOptions(t);(_=(E=o.getDefaultOptions().queries)==null?void 0:E._experimental_beforeQuery)==null||_.call(E,d);const h=o.getQueryCache().get(d.queryHash);d._optimisticResults=l?"isRestoring":"optimistic",pw(d),hw(d,u,h),yw(u);const y=!o.getQueryCache().get(d.queryHash),[m]=z.useState(()=>new a(o,d)),g=m.getOptimisticResult(d),v=!l&&t.subscribed!==!1;if(z.useSyncExternalStore(z.useCallback(x=>{const M=v?m.subscribe(Et.batchCalls(x)):nn;return m.updateResult(),M},[m,v]),()=>m.getCurrentResult(),()=>m.getCurrentResult()),z.useEffect(()=>{m.setOptions(d)},[d,m]),gw(d,g))throw t1(d,m,u);if(mw({result:g,errorResetBoundary:u,throwOnError:d.throwOnError,query:h,suspense:d.suspense}))throw g.error;if((S=(w=o.getDefaultOptions().queries)==null?void 0:w._experimental_afterQuery)==null||S.call(w,d,g),d.experimental_prefetchInRender&&!au.isServer()&&vw(g,l)){const x=y?t1(d,m,u):h==null?void 0:h.promise;x==null||x.catch(nn).finally(()=>{m.updateResult()})}return d.notifyOnChangeProps?g:m.trackResult(g)}function QM(t,a){return bw(t,tw,a)}function GM(t,a){const r=gu(a),l=r.getQueryCache();return z.useSyncExternalStore(z.useCallback(u=>l.subscribe(Et.batchCalls(u)),[l]),()=>r.isFetching(t),()=>r.isFetching(t))}function YM(t,a){const r=gu(a);return _w({filters:{...t,status:"pending"}},r).length}function n1(t,a){return t.findAll(a.filters).map(r=>a.select?a.select(r):r.state)}function _w(t={},a){const r=gu(a).getMutationCache(),l=z.useRef(t),u=z.useRef(null);return u.current===null&&(u.current=n1(r,t)),z.useEffect(()=>{l.current=t}),z.useSyncExternalStore(z.useCallback(o=>r.subscribe(()=>{const d=om(u.current,n1(r,l.current));u.current!==d&&(u.current=d,Et.schedule(o))}),[r]),()=>u.current,()=>u.current)}function FM(t,a){const r=gu(a),[l]=z.useState(()=>new sw(r,t));z.useEffect(()=>{l.setOptions(t)},[l,t]);const u=z.useSyncExternalStore(z.useCallback(d=>l.subscribe(Et.batchCalls(d)),[l]),()=>l.getCurrentResult(),()=>l.getCurrentResult()),o=z.useCallback((d,h)=>{l.mutate(d,h).catch(nn)},[l]);if(u.error&&fm(l.options.throwOnError,[u.error]))throw u.error;return{...u,mutate:o,mutateAsync:u.mutate}}/**
50
+ * react-router v7.13.1
51
+ *
52
+ * Copyright (c) Remix Software Inc.
53
+ *
54
+ * This source code is licensed under the MIT license found in the
55
+ * LICENSE.md file in the root directory of this source tree.
56
+ *
57
+ * @license MIT
58
+ */var a1="popstate";function r1(t){return typeof t=="object"&&t!=null&&"pathname"in t&&"search"in t&&"hash"in t&&"state"in t&&"key"in t}function Sw(t={}){function a(l,u){var m;let o=(m=u.state)==null?void 0:m.masked,{pathname:d,search:h,hash:y}=o||l.location;return Ny("",{pathname:d,search:h,hash:y},u.state&&u.state.usr||null,u.state&&u.state.key||"default",o?{pathname:l.location.pathname,search:l.location.search,hash:l.location.hash}:void 0)}function r(l,u){return typeof u=="string"?u:ru(u)}return xw(a,r,null,t)}function mt(t,a){if(t===!1||t===null||typeof t>"u")throw new Error(a)}function Fn(t,a){if(!t){typeof console<"u"&&console.warn(a);try{throw new Error(a)}catch{}}}function Ew(){return Math.random().toString(36).substring(2,10)}function i1(t,a){return{usr:t.state,key:t.key,idx:a,masked:t.unstable_mask?{pathname:t.pathname,search:t.search,hash:t.hash}:void 0}}function Ny(t,a,r=null,l,u){return{pathname:typeof t=="string"?t:t.pathname,search:"",hash:"",...typeof a=="string"?$l(a):a,state:r,key:a&&a.key||l||Ew(),unstable_mask:u}}function ru({pathname:t="/",search:a="",hash:r=""}){return a&&a!=="?"&&(t+=a.charAt(0)==="?"?a:"?"+a),r&&r!=="#"&&(t+=r.charAt(0)==="#"?r:"#"+r),t}function $l(t){let a={};if(t){let r=t.indexOf("#");r>=0&&(a.hash=t.substring(r),t=t.substring(0,r));let l=t.indexOf("?");l>=0&&(a.search=t.substring(l),t=t.substring(0,l)),t&&(a.pathname=t)}return a}function xw(t,a,r,l={}){let{window:u=document.defaultView,v5Compat:o=!1}=l,d=u.history,h="POP",y=null,m=g();m==null&&(m=0,d.replaceState({...d.state,idx:m},""));function g(){return(d.state||{idx:null}).idx}function v(){h="POP";let x=g(),M=x==null?null:x-m;m=x,y&&y({action:h,location:S.location,delta:M})}function E(x,M){h="PUSH";let V=r1(x)?x:Ny(S.location,x,M);m=g()+1;let Z=i1(V,m),q=S.createHref(V.unstable_mask||V);try{d.pushState(Z,"",q)}catch(Q){if(Q instanceof DOMException&&Q.name==="DataCloneError")throw Q;u.location.assign(q)}o&&y&&y({action:h,location:S.location,delta:1})}function _(x,M){h="REPLACE";let V=r1(x)?x:Ny(S.location,x,M);m=g();let Z=i1(V,m),q=S.createHref(V.unstable_mask||V);d.replaceState(Z,"",q),o&&y&&y({action:h,location:S.location,delta:0})}function w(x){return ww(x)}let S={get action(){return h},get location(){return t(u,d)},listen(x){if(y)throw new Error("A history only accepts one active listener");return u.addEventListener(a1,v),y=x,()=>{u.removeEventListener(a1,v),y=null}},createHref(x){return a(u,x)},createURL:w,encodeLocation(x){let M=w(x);return{pathname:M.pathname,search:M.search,hash:M.hash}},push:E,replace:_,go(x){return d.go(x)}};return S}function ww(t,a=!1){let r="http://localhost";typeof window<"u"&&(r=window.location.origin!=="null"?window.location.origin:window.location.href),mt(r,"No window.location.(origin|href) available to create URL");let l=typeof t=="string"?t:ru(t);return l=l.replace(/ $/,"%20"),!a&&l.startsWith("//")&&(l=r+l),new URL(l,r)}function M_(t,a,r="/"){return Tw(t,a,r,!1)}function Tw(t,a,r,l){let u=typeof a=="string"?$l(a):a,o=$a(u.pathname||"/",r);if(o==null)return null;let d=k_(t);Aw(d);let h=null;for(let y=0;h==null&&y<d.length;++y){let m=jw(o);h=Uw(d[y],m,l)}return h}function k_(t,a=[],r=[],l="",u=!1){let o=(d,h,y=u,m)=>{let g={relativePath:m===void 0?d.path||"":m,caseSensitive:d.caseSensitive===!0,childrenIndex:h,route:d};if(g.relativePath.startsWith("/")){if(!g.relativePath.startsWith(l)&&y)return;mt(g.relativePath.startsWith(l),`Absolute route path "${g.relativePath}" nested under path "${l}" is not valid. An absolute child route path must start with the combined path of all its parent routes.`),g.relativePath=g.relativePath.slice(l.length)}let v=pa([l,g.relativePath]),E=r.concat(g);d.children&&d.children.length>0&&(mt(d.index!==!0,`Index routes must not have child routes. Please remove all child routes from route path "${v}".`),k_(d.children,a,E,v,y)),!(d.path==null&&!d.index)&&a.push({path:v,score:Nw(v,d.index),routesMeta:E})};return t.forEach((d,h)=>{var y;if(d.path===""||!((y=d.path)!=null&&y.includes("?")))o(d,h);else for(let m of z_(d.path))o(d,h,!0,m)}),a}function z_(t){let a=t.split("/");if(a.length===0)return[];let[r,...l]=a,u=r.endsWith("?"),o=r.replace(/\?$/,"");if(l.length===0)return u?[o,""]:[o];let d=z_(l.join("/")),h=[];return h.push(...d.map(y=>y===""?o:[o,y].join("/"))),u&&h.push(...d),h.map(y=>t.startsWith("/")&&y===""?"/":y)}function Aw(t){t.sort((a,r)=>a.score!==r.score?r.score-a.score:Dw(a.routesMeta.map(l=>l.childrenIndex),r.routesMeta.map(l=>l.childrenIndex)))}var Cw=/^:[\w-]+$/,Ow=3,Rw=2,Mw=1,kw=10,zw=-2,l1=t=>t==="*";function Nw(t,a){let r=t.split("/"),l=r.length;return r.some(l1)&&(l+=zw),a&&(l+=Rw),r.filter(u=>!l1(u)).reduce((u,o)=>u+(Cw.test(o)?Ow:o===""?Mw:kw),l)}function Dw(t,a){return t.length===a.length&&t.slice(0,-1).every((l,u)=>l===a[u])?t[t.length-1]-a[a.length-1]:0}function Uw(t,a,r=!1){let{routesMeta:l}=t,u={},o="/",d=[];for(let h=0;h<l.length;++h){let y=l[h],m=h===l.length-1,g=o==="/"?a:a.slice(o.length)||"/",v=oc({path:y.relativePath,caseSensitive:y.caseSensitive,end:m},g),E=y.route;if(!v&&m&&r&&!l[l.length-1].route.index&&(v=oc({path:y.relativePath,caseSensitive:y.caseSensitive,end:!1},g)),!v)return null;Object.assign(u,v.params),d.push({params:u,pathname:pa([o,v.pathname]),pathnameBase:Hw(pa([o,v.pathnameBase])),route:E}),v.pathnameBase!=="/"&&(o=pa([o,v.pathnameBase]))}return d}function oc(t,a){typeof t=="string"&&(t={path:t,caseSensitive:!1,end:!0});let[r,l]=Lw(t.path,t.caseSensitive,t.end),u=a.match(r);if(!u)return null;let o=u[0],d=o.replace(/(.)\/+$/,"$1"),h=u.slice(1);return{params:l.reduce((m,{paramName:g,isOptional:v},E)=>{if(g==="*"){let w=h[E]||"";d=o.slice(0,o.length-w.length).replace(/(.)\/+$/,"$1")}const _=h[E];return v&&!_?m[g]=void 0:m[g]=(_||"").replace(/%2F/g,"/"),m},{}),pathname:o,pathnameBase:d,pattern:t}}function Lw(t,a=!1,r=!0){Fn(t==="*"||!t.endsWith("*")||t.endsWith("/*"),`Route path "${t}" will be treated as if it were "${t.replace(/\*$/,"/*")}" because the \`*\` character must always follow a \`/\` in the pattern. To get rid of this warning, please change the route path to "${t.replace(/\*$/,"/*")}".`);let l=[],u="^"+t.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(d,h,y,m,g)=>{if(l.push({paramName:h,isOptional:y!=null}),y){let v=g.charAt(m+d.length);return v&&v!=="/"?"/([^\\/]*)":"(?:/([^\\/]*))?"}return"/([^\\/]+)"}).replace(/\/([\w-]+)\?(\/|$)/g,"(/$1)?$2");return t.endsWith("*")?(l.push({paramName:"*"}),u+=t==="*"||t==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):r?u+="\\/*$":t!==""&&t!=="/"&&(u+="(?:(?=\\/|$))"),[new RegExp(u,a?void 0:"i"),l]}function jw(t){try{return t.split("/").map(a=>decodeURIComponent(a).replace(/\//g,"%2F")).join("/")}catch(a){return Fn(!1,`The URL path "${t}" could not be decoded because it is a malformed URL segment. This is probably due to a bad percent encoding (${a}).`),t}}function $a(t,a){if(a==="/")return t;if(!t.toLowerCase().startsWith(a.toLowerCase()))return null;let r=a.endsWith("/")?a.length-1:a.length,l=t.charAt(r);return l&&l!=="/"?null:t.slice(r)||"/"}var qw=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i;function Bw(t,a="/"){let{pathname:r,search:l="",hash:u=""}=typeof t=="string"?$l(t):t,o;return r?(r=r.replace(/\/\/+/g,"/"),r.startsWith("/")?o=s1(r.substring(1),"/"):o=s1(r,a)):o=a,{pathname:o,search:Zw(l),hash:Qw(u)}}function s1(t,a){let r=a.replace(/\/+$/,"").split("/");return t.split("/").forEach(u=>{u===".."?r.length>1&&r.pop():u!=="."&&r.push(u)}),r.length>1?r.join("/"):"/"}function gh(t,a,r,l){return`Cannot include a '${t}' character in a manually specified \`to.${a}\` field [${JSON.stringify(l)}]. Please separate it out to the \`to.${r}\` field. Alternatively you may provide the full path as a string in <Link to="..."> and the router will parse it for you.`}function Vw(t){return t.filter((a,r)=>r===0||a.route.path&&a.route.path.length>0)}function hm(t){let a=Vw(t);return a.map((r,l)=>l===a.length-1?r.pathname:r.pathnameBase)}function Nc(t,a,r,l=!1){let u;typeof t=="string"?u=$l(t):(u={...t},mt(!u.pathname||!u.pathname.includes("?"),gh("?","pathname","search",u)),mt(!u.pathname||!u.pathname.includes("#"),gh("#","pathname","hash",u)),mt(!u.search||!u.search.includes("#"),gh("#","search","hash",u)));let o=t===""||u.pathname==="",d=o?"/":u.pathname,h;if(d==null)h=r;else{let v=a.length-1;if(!l&&d.startsWith("..")){let E=d.split("/");for(;E[0]==="..";)E.shift(),v-=1;u.pathname=E.join("/")}h=v>=0?a[v]:"/"}let y=Bw(u,h),m=d&&d!=="/"&&d.endsWith("/"),g=(o||d===".")&&r.endsWith("/");return!y.pathname.endsWith("/")&&(m||g)&&(y.pathname+="/"),y}var pa=t=>t.join("/").replace(/\/\/+/g,"/"),Hw=t=>t.replace(/\/+$/,"").replace(/^\/*/,"/"),Zw=t=>!t||t==="?"?"":t.startsWith("?")?t:"?"+t,Qw=t=>!t||t==="#"?"":t.startsWith("#")?t:"#"+t,Gw=class{constructor(t,a,r,l=!1){this.status=t,this.statusText=a||"",this.internal=l,r instanceof Error?(this.data=r.toString(),this.error=r):this.data=r}};function Yw(t){return t!=null&&typeof t.status=="number"&&typeof t.statusText=="string"&&typeof t.internal=="boolean"&&"data"in t}function Fw(t){return t.map(a=>a.route.path).filter(Boolean).join("/").replace(/\/\/*/g,"/")||"/"}var N_=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u";function D_(t,a){let r=t;if(typeof r!="string"||!qw.test(r))return{absoluteURL:void 0,isExternal:!1,to:r};let l=r,u=!1;if(N_)try{let o=new URL(window.location.href),d=r.startsWith("//")?new URL(o.protocol+r):new URL(r),h=$a(d.pathname,a);d.origin===o.origin&&h!=null?r=h+d.search+d.hash:u=!0}catch{Fn(!1,`<Link to="${r}"> contains an invalid URL which will probably break when clicked - please update to a valid URL path.`)}return{absoluteURL:l,isExternal:u,to:r}}Object.getOwnPropertyNames(Object.prototype).sort().join("\0");var U_=["POST","PUT","PATCH","DELETE"];new Set(U_);var Xw=["GET",...U_];new Set(Xw);var Kl=z.createContext(null);Kl.displayName="DataRouter";var Dc=z.createContext(null);Dc.displayName="DataRouterState";var $w=z.createContext(!1),L_=z.createContext({isTransitioning:!1});L_.displayName="ViewTransition";var Kw=z.createContext(new Map);Kw.displayName="Fetchers";var Pw=z.createContext(null);Pw.displayName="Await";var Mn=z.createContext(null);Mn.displayName="Navigation";var bu=z.createContext(null);bu.displayName="Location";var $n=z.createContext({outlet:null,matches:[],isDataRoute:!1});$n.displayName="Route";var ym=z.createContext(null);ym.displayName="RouteError";var j_="REACT_ROUTER_ERROR",Jw="REDIRECT",Iw="ROUTE_ERROR_RESPONSE";function Ww(t){if(t.startsWith(`${j_}:${Jw}:{`))try{let a=JSON.parse(t.slice(28));if(typeof a=="object"&&a&&typeof a.status=="number"&&typeof a.statusText=="string"&&typeof a.location=="string"&&typeof a.reloadDocument=="boolean"&&typeof a.replace=="boolean")return a}catch{}}function eT(t){if(t.startsWith(`${j_}:${Iw}:{`))try{let a=JSON.parse(t.slice(40));if(typeof a=="object"&&a&&typeof a.status=="number"&&typeof a.statusText=="string")return new Gw(a.status,a.statusText,a.data)}catch{}}function tT(t,{relative:a}={}){mt(Pl(),"useHref() may be used only in the context of a <Router> component.");let{basename:r,navigator:l}=z.useContext(Mn),{hash:u,pathname:o,search:d}=_u(t,{relative:a}),h=o;return r!=="/"&&(h=o==="/"?r:pa([r,o])),l.createHref({pathname:h,search:d,hash:u})}function Pl(){return z.useContext(bu)!=null}function ba(){return mt(Pl(),"useLocation() may be used only in the context of a <Router> component."),z.useContext(bu).location}var q_="You should call navigate() in a React.useEffect(), not when your component is first rendered.";function B_(t){z.useContext(Mn).static||z.useLayoutEffect(t)}function mm(){let{isDataRoute:t}=z.useContext($n);return t?mT():nT()}function nT(){mt(Pl(),"useNavigate() may be used only in the context of a <Router> component.");let t=z.useContext(Kl),{basename:a,navigator:r}=z.useContext(Mn),{matches:l}=z.useContext($n),{pathname:u}=ba(),o=JSON.stringify(hm(l)),d=z.useRef(!1);return B_(()=>{d.current=!0}),z.useCallback((y,m={})=>{if(Fn(d.current,q_),!d.current)return;if(typeof y=="number"){r.go(y);return}let g=Nc(y,JSON.parse(o),u,m.relative==="path");t==null&&a!=="/"&&(g.pathname=g.pathname==="/"?a:pa([a,g.pathname])),(m.replace?r.replace:r.push)(g,m.state,m)},[a,r,o,u,t])}var V_=z.createContext(null);function XM(){return z.useContext(V_)}function aT(t){let a=z.useContext($n).outlet;return z.useMemo(()=>a&&z.createElement(V_.Provider,{value:t},a),[a,t])}function $M(){let{matches:t}=z.useContext($n),a=t[t.length-1];return a?a.params:{}}function _u(t,{relative:a}={}){let{matches:r}=z.useContext($n),{pathname:l}=ba(),u=JSON.stringify(hm(r));return z.useMemo(()=>Nc(t,JSON.parse(u),l,a==="path"),[t,u,l,a])}function rT(t,a){return H_(t,a)}function H_(t,a,r){var x;mt(Pl(),"useRoutes() may be used only in the context of a <Router> component.");let{navigator:l}=z.useContext(Mn),{matches:u}=z.useContext($n),o=u[u.length-1],d=o?o.params:{},h=o?o.pathname:"/",y=o?o.pathnameBase:"/",m=o&&o.route;{let M=m&&m.path||"";Q_(h,!m||M.endsWith("*")||M.endsWith("*?"),`You rendered descendant <Routes> (or called \`useRoutes()\`) at "${h}" (under <Route path="${M}">) but the parent route path has no trailing "*". This means if you navigate deeper, the parent won't match anymore and therefore the child routes will never render.
59
+
60
+ Please change the parent <Route path="${M}"> to <Route path="${M==="/"?"*":`${M}/*`}">.`)}let g=ba(),v;if(a){let M=typeof a=="string"?$l(a):a;mt(y==="/"||((x=M.pathname)==null?void 0:x.startsWith(y)),`When overriding the location using \`<Routes location>\` or \`useRoutes(routes, location)\`, the location pathname must begin with the portion of the URL pathname that was matched by all parent routes. The current pathname base is "${y}" but pathname "${M.pathname}" was given in the \`location\` prop.`),v=M}else v=g;let E=v.pathname||"/",_=E;if(y!=="/"){let M=y.replace(/^\//,"").split("/");_="/"+E.replace(/^\//,"").split("/").slice(M.length).join("/")}let w=M_(t,{pathname:_});Fn(m||w!=null,`No routes matched location "${v.pathname}${v.search}${v.hash}" `),Fn(w==null||w[w.length-1].route.element!==void 0||w[w.length-1].route.Component!==void 0||w[w.length-1].route.lazy!==void 0,`Matched leaf route at location "${v.pathname}${v.search}${v.hash}" does not have an element or Component. This means it will render an <Outlet /> with a null value by default resulting in an "empty" page.`);let S=oT(w&&w.map(M=>Object.assign({},M,{params:Object.assign({},d,M.params),pathname:pa([y,l.encodeLocation?l.encodeLocation(M.pathname.replace(/\?/g,"%3F").replace(/#/g,"%23")).pathname:M.pathname]),pathnameBase:M.pathnameBase==="/"?y:pa([y,l.encodeLocation?l.encodeLocation(M.pathnameBase.replace(/\?/g,"%3F").replace(/#/g,"%23")).pathname:M.pathnameBase])})),u,r);return a&&S?z.createElement(bu.Provider,{value:{location:{pathname:"/",search:"",hash:"",state:null,key:"default",unstable_mask:void 0,...v},navigationType:"POP"}},S):S}function iT(){let t=yT(),a=Yw(t)?`${t.status} ${t.statusText}`:t instanceof Error?t.message:JSON.stringify(t),r=t instanceof Error?t.stack:null,l="rgba(200,200,200, 0.5)",u={padding:"0.5rem",backgroundColor:l},o={padding:"2px 4px",backgroundColor:l},d=null;return console.error("Error handled by React Router default ErrorBoundary:",t),d=z.createElement(z.Fragment,null,z.createElement("p",null,"💿 Hey developer 👋"),z.createElement("p",null,"You can provide a way better UX than this when your app throws errors by providing your own ",z.createElement("code",{style:o},"ErrorBoundary")," or"," ",z.createElement("code",{style:o},"errorElement")," prop on your route.")),z.createElement(z.Fragment,null,z.createElement("h2",null,"Unexpected Application Error!"),z.createElement("h3",{style:{fontStyle:"italic"}},a),r?z.createElement("pre",{style:u},r):null,d)}var lT=z.createElement(iT,null),Z_=class extends z.Component{constructor(t){super(t),this.state={location:t.location,revalidation:t.revalidation,error:t.error}}static getDerivedStateFromError(t){return{error:t}}static getDerivedStateFromProps(t,a){return a.location!==t.location||a.revalidation!=="idle"&&t.revalidation==="idle"?{error:t.error,location:t.location,revalidation:t.revalidation}:{error:t.error!==void 0?t.error:a.error,location:a.location,revalidation:t.revalidation||a.revalidation}}componentDidCatch(t,a){this.props.onError?this.props.onError(t,a):console.error("React Router caught the following error during render",t)}render(){let t=this.state.error;if(this.context&&typeof t=="object"&&t&&"digest"in t&&typeof t.digest=="string"){const r=eT(t.digest);r&&(t=r)}let a=t!==void 0?z.createElement($n.Provider,{value:this.props.routeContext},z.createElement(ym.Provider,{value:t,children:this.props.component})):this.props.children;return this.context?z.createElement(sT,{error:t},a):a}};Z_.contextType=$w;var bh=new WeakMap;function sT({children:t,error:a}){let{basename:r}=z.useContext(Mn);if(typeof a=="object"&&a&&"digest"in a&&typeof a.digest=="string"){let l=Ww(a.digest);if(l){let u=bh.get(a);if(u)throw u;let o=D_(l.location,r);if(N_&&!bh.get(a))if(o.isExternal||l.reloadDocument)window.location.href=o.absoluteURL||o.to;else{const d=Promise.resolve().then(()=>window.__reactRouterDataRouter.navigate(o.to,{replace:l.replace}));throw bh.set(a,d),d}return z.createElement("meta",{httpEquiv:"refresh",content:`0;url=${o.absoluteURL||o.to}`})}}return t}function uT({routeContext:t,match:a,children:r}){let l=z.useContext(Kl);return l&&l.static&&l.staticContext&&(a.route.errorElement||a.route.ErrorBoundary)&&(l.staticContext._deepestRenderedBoundaryId=a.route.id),z.createElement($n.Provider,{value:t},r)}function oT(t,a=[],r){let l=r==null?void 0:r.state;if(t==null){if(!l)return null;if(l.errors)t=l.matches;else if(a.length===0&&!l.initialized&&l.matches.length>0)t=l.matches;else return null}let u=t,o=l==null?void 0:l.errors;if(o!=null){let g=u.findIndex(v=>v.route.id&&(o==null?void 0:o[v.route.id])!==void 0);mt(g>=0,`Could not find a matching route for errors on route IDs: ${Object.keys(o).join(",")}`),u=u.slice(0,Math.min(u.length,g+1))}let d=!1,h=-1;if(r&&l){d=l.renderFallback;for(let g=0;g<u.length;g++){let v=u[g];if((v.route.HydrateFallback||v.route.hydrateFallbackElement)&&(h=g),v.route.id){let{loaderData:E,errors:_}=l,w=v.route.loader&&!E.hasOwnProperty(v.route.id)&&(!_||_[v.route.id]===void 0);if(v.route.lazy||w){r.isStatic&&(d=!0),h>=0?u=u.slice(0,h+1):u=[u[0]];break}}}}let y=r==null?void 0:r.onError,m=l&&y?(g,v)=>{var E,_;y(g,{location:l.location,params:((_=(E=l.matches)==null?void 0:E[0])==null?void 0:_.params)??{},unstable_pattern:Fw(l.matches),errorInfo:v})}:void 0;return u.reduceRight((g,v,E)=>{let _,w=!1,S=null,x=null;l&&(_=o&&v.route.id?o[v.route.id]:void 0,S=v.route.errorElement||lT,d&&(h<0&&E===0?(Q_("route-fallback",!1,"No `HydrateFallback` element provided to render during initial hydration"),w=!0,x=null):h===E&&(w=!0,x=v.route.hydrateFallbackElement||null)));let M=a.concat(u.slice(0,E+1)),V=()=>{let Z;return _?Z=S:w?Z=x:v.route.Component?Z=z.createElement(v.route.Component,null):v.route.element?Z=v.route.element:Z=g,z.createElement(uT,{match:v,routeContext:{outlet:g,matches:M,isDataRoute:l!=null},children:Z})};return l&&(v.route.ErrorBoundary||v.route.errorElement||E===0)?z.createElement(Z_,{location:l.location,revalidation:l.revalidation,component:S,error:_,children:V(),routeContext:{outlet:null,matches:M,isDataRoute:!0},onError:m}):V()},null)}function pm(t){return`${t} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`}function cT(t){let a=z.useContext(Kl);return mt(a,pm(t)),a}function fT(t){let a=z.useContext(Dc);return mt(a,pm(t)),a}function dT(t){let a=z.useContext($n);return mt(a,pm(t)),a}function vm(t){let a=dT(t),r=a.matches[a.matches.length-1];return mt(r.route.id,`${t} can only be used on routes that contain a unique "id"`),r.route.id}function hT(){return vm("useRouteId")}function yT(){var l;let t=z.useContext(ym),a=fT("useRouteError"),r=vm("useRouteError");return t!==void 0?t:(l=a.errors)==null?void 0:l[r]}function mT(){let{router:t}=cT("useNavigate"),a=vm("useNavigate"),r=z.useRef(!1);return B_(()=>{r.current=!0}),z.useCallback(async(u,o={})=>{Fn(r.current,q_),r.current&&(typeof u=="number"?await t.navigate(u):await t.navigate(u,{fromRouteId:a,...o}))},[t,a])}var u1={};function Q_(t,a,r){!a&&!u1[t]&&(u1[t]=!0,Fn(!1,r))}z.memo(pT);function pT({routes:t,future:a,state:r,isStatic:l,onError:u}){return H_(t,void 0,{state:r,isStatic:l,onError:u})}function KM({to:t,replace:a,state:r,relative:l}){mt(Pl(),"<Navigate> may be used only in the context of a <Router> component.");let{static:u}=z.useContext(Mn);Fn(!u,"<Navigate> must not be used on the initial render in a <StaticRouter>. This is a no-op, but you should modify your code so the <Navigate> is only ever rendered in response to some user interaction or state change.");let{matches:o}=z.useContext($n),{pathname:d}=ba(),h=mm(),y=Nc(t,hm(o),d,l==="path"),m=JSON.stringify(y);return z.useEffect(()=>{h(JSON.parse(m),{replace:a,state:r,relative:l})},[h,m,l,a,r]),null}function PM(t){return aT(t.context)}function vT(t){mt(!1,"A <Route> is only ever to be used as the child of <Routes> element, never rendered directly. Please wrap your <Route> in a <Routes>.")}function gT({basename:t="/",children:a=null,location:r,navigationType:l="POP",navigator:u,static:o=!1,unstable_useTransitions:d}){mt(!Pl(),"You cannot render a <Router> inside another <Router>. You should never have more than one in your app.");let h=t.replace(/^\/*/,"/"),y=z.useMemo(()=>({basename:h,navigator:u,static:o,unstable_useTransitions:d,future:{}}),[h,u,o,d]);typeof r=="string"&&(r=$l(r));let{pathname:m="/",search:g="",hash:v="",state:E=null,key:_="default",unstable_mask:w}=r,S=z.useMemo(()=>{let x=$a(m,h);return x==null?null:{location:{pathname:x,search:g,hash:v,state:E,key:_,unstable_mask:w},navigationType:l}},[h,m,g,v,E,_,l,w]);return Fn(S!=null,`<Router basename="${h}"> is not able to match the URL "${m}${g}${v}" because it does not start with the basename, so the <Router> won't render anything.`),S==null?null:z.createElement(Mn.Provider,{value:y},z.createElement(bu.Provider,{children:a,value:S}))}function JM({children:t,location:a}){return rT(Dy(t),a)}function Dy(t,a=[]){let r=[];return z.Children.forEach(t,(l,u)=>{if(!z.isValidElement(l))return;let o=[...a,u];if(l.type===z.Fragment){r.push.apply(r,Dy(l.props.children,o));return}mt(l.type===vT,`[${typeof l.type=="string"?l.type:l.type.name}] is not a <Route> component. All component children of <Routes> must be a <Route> or <React.Fragment>`),mt(!l.props.index||!l.props.children,"An index route cannot have child routes.");let d={id:l.props.id||o.join("-"),caseSensitive:l.props.caseSensitive,element:l.props.element,Component:l.props.Component,index:l.props.index,path:l.props.path,middleware:l.props.middleware,loader:l.props.loader,action:l.props.action,hydrateFallbackElement:l.props.hydrateFallbackElement,HydrateFallback:l.props.HydrateFallback,errorElement:l.props.errorElement,ErrorBoundary:l.props.ErrorBoundary,hasErrorBoundary:l.props.hasErrorBoundary===!0||l.props.ErrorBoundary!=null||l.props.errorElement!=null,shouldRevalidate:l.props.shouldRevalidate,handle:l.props.handle,lazy:l.props.lazy};l.props.children&&(d.children=Dy(l.props.children,o)),r.push(d)}),r}var ac="get",rc="application/x-www-form-urlencoded";function Uc(t){return typeof HTMLElement<"u"&&t instanceof HTMLElement}function bT(t){return Uc(t)&&t.tagName.toLowerCase()==="button"}function _T(t){return Uc(t)&&t.tagName.toLowerCase()==="form"}function ST(t){return Uc(t)&&t.tagName.toLowerCase()==="input"}function ET(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function xT(t,a){return t.button===0&&(!a||a==="_self")&&!ET(t)}function Uy(t=""){return new URLSearchParams(typeof t=="string"||Array.isArray(t)||t instanceof URLSearchParams?t:Object.keys(t).reduce((a,r)=>{let l=t[r];return a.concat(Array.isArray(l)?l.map(u=>[r,u]):[[r,l]])},[]))}function wT(t,a){let r=Uy(t);return a&&a.forEach((l,u)=>{r.has(u)||a.getAll(u).forEach(o=>{r.append(u,o)})}),r}var Fo=null;function TT(){if(Fo===null)try{new FormData(document.createElement("form"),0),Fo=!1}catch{Fo=!0}return Fo}var AT=new Set(["application/x-www-form-urlencoded","multipart/form-data","text/plain"]);function _h(t){return t!=null&&!AT.has(t)?(Fn(!1,`"${t}" is not a valid \`encType\` for \`<Form>\`/\`<fetcher.Form>\` and will default to "${rc}"`),null):t}function CT(t,a){let r,l,u,o,d;if(_T(t)){let h=t.getAttribute("action");l=h?$a(h,a):null,r=t.getAttribute("method")||ac,u=_h(t.getAttribute("enctype"))||rc,o=new FormData(t)}else if(bT(t)||ST(t)&&(t.type==="submit"||t.type==="image")){let h=t.form;if(h==null)throw new Error('Cannot submit a <button> or <input type="submit"> without a <form>');let y=t.getAttribute("formaction")||h.getAttribute("action");if(l=y?$a(y,a):null,r=t.getAttribute("formmethod")||h.getAttribute("method")||ac,u=_h(t.getAttribute("formenctype"))||_h(h.getAttribute("enctype"))||rc,o=new FormData(h,t),!TT()){let{name:m,type:g,value:v}=t;if(g==="image"){let E=m?`${m}.`:"";o.append(`${E}x`,"0"),o.append(`${E}y`,"0")}else m&&o.append(m,v)}}else{if(Uc(t))throw new Error('Cannot submit element that is not <form>, <button>, or <input type="submit|image">');r=ac,l=null,u=rc,d=t}return o&&u==="text/plain"&&(d=o,o=void 0),{action:l,method:r.toLowerCase(),encType:u,formData:o,body:d}}Object.getOwnPropertyNames(Object.prototype).sort().join("\0");function gm(t,a){if(t===!1||t===null||typeof t>"u")throw new Error(a)}function OT(t,a,r,l){let u=typeof t=="string"?new URL(t,typeof window>"u"?"server://singlefetch/":window.location.origin):t;return r?u.pathname.endsWith("/")?u.pathname=`${u.pathname}_.${l}`:u.pathname=`${u.pathname}.${l}`:u.pathname==="/"?u.pathname=`_root.${l}`:a&&$a(u.pathname,a)==="/"?u.pathname=`${a.replace(/\/$/,"")}/_root.${l}`:u.pathname=`${u.pathname.replace(/\/$/,"")}.${l}`,u}async function RT(t,a){if(t.id in a)return a[t.id];try{let r=await import(t.module);return a[t.id]=r,r}catch(r){return console.error(`Error loading route module \`${t.module}\`, reloading page...`),console.error(r),window.__reactRouterContext&&window.__reactRouterContext.isSpaMode,window.location.reload(),new Promise(()=>{})}}function MT(t){return t==null?!1:t.href==null?t.rel==="preload"&&typeof t.imageSrcSet=="string"&&typeof t.imageSizes=="string":typeof t.rel=="string"&&typeof t.href=="string"}async function kT(t,a,r){let l=await Promise.all(t.map(async u=>{let o=a.routes[u.route.id];if(o){let d=await RT(o,r);return d.links?d.links():[]}return[]}));return UT(l.flat(1).filter(MT).filter(u=>u.rel==="stylesheet"||u.rel==="preload").map(u=>u.rel==="stylesheet"?{...u,rel:"prefetch",as:"style"}:{...u,rel:"prefetch"}))}function o1(t,a,r,l,u,o){let d=(y,m)=>r[m]?y.route.id!==r[m].route.id:!0,h=(y,m)=>{var g;return r[m].pathname!==y.pathname||((g=r[m].route.path)==null?void 0:g.endsWith("*"))&&r[m].params["*"]!==y.params["*"]};return o==="assets"?a.filter((y,m)=>d(y,m)||h(y,m)):o==="data"?a.filter((y,m)=>{var v;let g=l.routes[y.route.id];if(!g||!g.hasLoader)return!1;if(d(y,m)||h(y,m))return!0;if(y.route.shouldRevalidate){let E=y.route.shouldRevalidate({currentUrl:new URL(u.pathname+u.search+u.hash,window.origin),currentParams:((v=r[0])==null?void 0:v.params)||{},nextUrl:new URL(t,window.origin),nextParams:y.params,defaultShouldRevalidate:!0});if(typeof E=="boolean")return E}return!0}):[]}function zT(t,a,{includeHydrateFallback:r}={}){return NT(t.map(l=>{let u=a.routes[l.route.id];if(!u)return[];let o=[u.module];return u.clientActionModule&&(o=o.concat(u.clientActionModule)),u.clientLoaderModule&&(o=o.concat(u.clientLoaderModule)),r&&u.hydrateFallbackModule&&(o=o.concat(u.hydrateFallbackModule)),u.imports&&(o=o.concat(u.imports)),o}).flat(1))}function NT(t){return[...new Set(t)]}function DT(t){let a={},r=Object.keys(t).sort();for(let l of r)a[l]=t[l];return a}function UT(t,a){let r=new Set;return new Set(a),t.reduce((l,u)=>{let o=JSON.stringify(DT(u));return r.has(o)||(r.add(o),l.push({key:o,link:u})),l},[])}function G_(){let t=z.useContext(Kl);return gm(t,"You must render this element inside a <DataRouterContext.Provider> element"),t}function LT(){let t=z.useContext(Dc);return gm(t,"You must render this element inside a <DataRouterStateContext.Provider> element"),t}var bm=z.createContext(void 0);bm.displayName="FrameworkContext";function Y_(){let t=z.useContext(bm);return gm(t,"You must render this element inside a <HydratedRouter> element"),t}function jT(t,a){let r=z.useContext(bm),[l,u]=z.useState(!1),[o,d]=z.useState(!1),{onFocus:h,onBlur:y,onMouseEnter:m,onMouseLeave:g,onTouchStart:v}=a,E=z.useRef(null);z.useEffect(()=>{if(t==="render"&&d(!0),t==="viewport"){let S=M=>{M.forEach(V=>{d(V.isIntersecting)})},x=new IntersectionObserver(S,{threshold:.5});return E.current&&x.observe(E.current),()=>{x.disconnect()}}},[t]),z.useEffect(()=>{if(l){let S=setTimeout(()=>{d(!0)},100);return()=>{clearTimeout(S)}}},[l]);let _=()=>{u(!0)},w=()=>{u(!1),d(!1)};return r?t!=="intent"?[o,E,{}]:[o,E,{onFocus:$s(h,_),onBlur:$s(y,w),onMouseEnter:$s(m,_),onMouseLeave:$s(g,w),onTouchStart:$s(v,_)}]:[!1,E,{}]}function $s(t,a){return r=>{t&&t(r),r.defaultPrevented||a(r)}}function qT({page:t,...a}){let{router:r}=G_(),l=z.useMemo(()=>M_(r.routes,t,r.basename),[r.routes,t,r.basename]);return l?z.createElement(VT,{page:t,matches:l,...a}):null}function BT(t){let{manifest:a,routeModules:r}=Y_(),[l,u]=z.useState([]);return z.useEffect(()=>{let o=!1;return kT(t,a,r).then(d=>{o||u(d)}),()=>{o=!0}},[t,a,r]),l}function VT({page:t,matches:a,...r}){let l=ba(),{future:u,manifest:o,routeModules:d}=Y_(),{basename:h}=G_(),{loaderData:y,matches:m}=LT(),g=z.useMemo(()=>o1(t,a,m,o,l,"data"),[t,a,m,o,l]),v=z.useMemo(()=>o1(t,a,m,o,l,"assets"),[t,a,m,o,l]),E=z.useMemo(()=>{if(t===l.pathname+l.search+l.hash)return[];let S=new Set,x=!1;if(a.forEach(V=>{var q;let Z=o.routes[V.route.id];!Z||!Z.hasLoader||(!g.some(Q=>Q.route.id===V.route.id)&&V.route.id in y&&((q=d[V.route.id])!=null&&q.shouldRevalidate)||Z.hasClientLoader?x=!0:S.add(V.route.id))}),S.size===0)return[];let M=OT(t,h,u.unstable_trailingSlashAwareDataRequests,"data");return x&&S.size>0&&M.searchParams.set("_routes",a.filter(V=>S.has(V.route.id)).map(V=>V.route.id).join(",")),[M.pathname+M.search]},[h,u.unstable_trailingSlashAwareDataRequests,y,l,o,g,a,t,d]),_=z.useMemo(()=>zT(v,o),[v,o]),w=BT(v);return z.createElement(z.Fragment,null,E.map(S=>z.createElement("link",{key:S,rel:"prefetch",as:"fetch",href:S,...r})),_.map(S=>z.createElement("link",{key:S,rel:"modulepreload",href:S,...r})),w.map(({key:S,link:x})=>z.createElement("link",{key:S,nonce:r.nonce,...x,crossOrigin:x.crossOrigin??r.crossOrigin})))}function HT(...t){return a=>{t.forEach(r=>{typeof r=="function"?r(a):r!=null&&(r.current=a)})}}var ZT=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u";try{ZT&&(window.__reactRouterVersion="7.13.1")}catch{}function IM({basename:t,children:a,unstable_useTransitions:r,window:l}){let u=z.useRef();u.current==null&&(u.current=Sw({window:l,v5Compat:!0}));let o=u.current,[d,h]=z.useState({action:o.action,location:o.location}),y=z.useCallback(m=>{r===!1?h(m):z.startTransition(()=>h(m))},[r]);return z.useLayoutEffect(()=>o.listen(y),[o,y]),z.createElement(gT,{basename:t,children:a,location:d.location,navigationType:d.action,navigator:o,unstable_useTransitions:r})}var F_=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,X_=z.forwardRef(function({onClick:a,discover:r="render",prefetch:l="none",relative:u,reloadDocument:o,replace:d,unstable_mask:h,state:y,target:m,to:g,preventScrollReset:v,viewTransition:E,unstable_defaultShouldRevalidate:_,...w},S){let{basename:x,navigator:M,unstable_useTransitions:V}=z.useContext(Mn),Z=typeof g=="string"&&F_.test(g),q=D_(g,x);g=q.to;let Q=tT(g,{relative:u}),K=ba(),P=null;if(h){let Ce=Nc(h,[],K.unstable_mask?K.unstable_mask.pathname:"/",!0);x!=="/"&&(Ce.pathname=Ce.pathname==="/"?x:pa([x,Ce.pathname])),P=M.createHref(Ce)}let[G,re,ze]=jT(l,w),Ae=FT(g,{replace:d,unstable_mask:h,state:y,target:m,preventScrollReset:v,relative:u,viewTransition:E,unstable_defaultShouldRevalidate:_,unstable_useTransitions:V});function ne(Ce){a&&a(Ce),Ce.defaultPrevented||Ae(Ce)}let we=!(q.isExternal||o),Ne=z.createElement("a",{...w,...ze,href:(we?P:void 0)||q.absoluteURL||Q,onClick:we?ne:a,ref:HT(S,re),target:m,"data-discover":!Z&&r==="render"?"true":void 0});return G&&!Z?z.createElement(z.Fragment,null,Ne,z.createElement(qT,{page:Q})):Ne});X_.displayName="Link";var QT=z.forwardRef(function({"aria-current":a="page",caseSensitive:r=!1,className:l="",end:u=!1,style:o,to:d,viewTransition:h,children:y,...m},g){let v=_u(d,{relative:m.relative}),E=ba(),_=z.useContext(Dc),{navigator:w,basename:S}=z.useContext(Mn),x=_!=null&&JT(v)&&h===!0,M=w.encodeLocation?w.encodeLocation(v).pathname:v.pathname,V=E.pathname,Z=_&&_.navigation&&_.navigation.location?_.navigation.location.pathname:null;r||(V=V.toLowerCase(),Z=Z?Z.toLowerCase():null,M=M.toLowerCase()),Z&&S&&(Z=$a(Z,S)||Z);const q=M!=="/"&&M.endsWith("/")?M.length-1:M.length;let Q=V===M||!u&&V.startsWith(M)&&V.charAt(q)==="/",K=Z!=null&&(Z===M||!u&&Z.startsWith(M)&&Z.charAt(M.length)==="/"),P={isActive:Q,isPending:K,isTransitioning:x},G=Q?a:void 0,re;typeof l=="function"?re=l(P):re=[l,Q?"active":null,K?"pending":null,x?"transitioning":null].filter(Boolean).join(" ");let ze=typeof o=="function"?o(P):o;return z.createElement(X_,{...m,"aria-current":G,className:re,ref:g,style:ze,to:d,viewTransition:h},typeof y=="function"?y(P):y)});QT.displayName="NavLink";var GT=z.forwardRef(({discover:t="render",fetcherKey:a,navigate:r,reloadDocument:l,replace:u,state:o,method:d=ac,action:h,onSubmit:y,relative:m,preventScrollReset:g,viewTransition:v,unstable_defaultShouldRevalidate:E,..._},w)=>{let{unstable_useTransitions:S}=z.useContext(Mn),x=KT(),M=PT(h,{relative:m}),V=d.toLowerCase()==="get"?"get":"post",Z=typeof h=="string"&&F_.test(h),q=Q=>{if(y&&y(Q),Q.defaultPrevented)return;Q.preventDefault();let K=Q.nativeEvent.submitter,P=(K==null?void 0:K.getAttribute("formmethod"))||d,G=()=>x(K||Q.currentTarget,{fetcherKey:a,method:P,navigate:r,replace:u,state:o,relative:m,preventScrollReset:g,viewTransition:v,unstable_defaultShouldRevalidate:E});S&&r!==!1?z.startTransition(()=>G()):G()};return z.createElement("form",{ref:w,method:V,action:M,onSubmit:l?y:q,..._,"data-discover":!Z&&t==="render"?"true":void 0})});GT.displayName="Form";function YT(t){return`${t} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`}function $_(t){let a=z.useContext(Kl);return mt(a,YT(t)),a}function FT(t,{target:a,replace:r,unstable_mask:l,state:u,preventScrollReset:o,relative:d,viewTransition:h,unstable_defaultShouldRevalidate:y,unstable_useTransitions:m}={}){let g=mm(),v=ba(),E=_u(t,{relative:d});return z.useCallback(_=>{if(xT(_,a)){_.preventDefault();let w=r!==void 0?r:ru(v)===ru(E),S=()=>g(t,{replace:w,unstable_mask:l,state:u,preventScrollReset:o,relative:d,viewTransition:h,unstable_defaultShouldRevalidate:y});m?z.startTransition(()=>S()):S()}},[v,g,E,r,l,u,a,t,o,d,h,y,m])}function WM(t){Fn(typeof URLSearchParams<"u","You cannot use the `useSearchParams` hook in a browser that does not support the URLSearchParams API. If you need to support Internet Explorer 11, we recommend you load a polyfill such as https://github.com/ungap/url-search-params.");let a=z.useRef(Uy(t)),r=z.useRef(!1),l=ba(),u=z.useMemo(()=>wT(l.search,r.current?null:a.current),[l.search]),o=mm(),d=z.useCallback((h,y)=>{const m=Uy(typeof h=="function"?h(new URLSearchParams(u)):h);r.current=!0,o("?"+m,y)},[o,u]);return[u,d]}var XT=0,$T=()=>`__${String(++XT)}__`;function KT(){let{router:t}=$_("useSubmit"),{basename:a}=z.useContext(Mn),r=hT(),l=t.fetch,u=t.navigate;return z.useCallback(async(o,d={})=>{let{action:h,method:y,encType:m,formData:g,body:v}=CT(o,a);if(d.navigate===!1){let E=d.fetcherKey||$T();await l(E,r,d.action||h,{unstable_defaultShouldRevalidate:d.unstable_defaultShouldRevalidate,preventScrollReset:d.preventScrollReset,formData:g,body:v,formMethod:d.method||y,formEncType:d.encType||m,flushSync:d.flushSync})}else await u(d.action||h,{unstable_defaultShouldRevalidate:d.unstable_defaultShouldRevalidate,preventScrollReset:d.preventScrollReset,formData:g,body:v,formMethod:d.method||y,formEncType:d.encType||m,replace:d.replace,state:d.state,fromRouteId:r,flushSync:d.flushSync,viewTransition:d.viewTransition})},[l,u,a,r])}function PT(t,{relative:a}={}){let{basename:r}=z.useContext(Mn),l=z.useContext($n);mt(l,"useFormAction must be used inside a RouteContext");let[u]=l.matches.slice(-1),o={..._u(t||".",{relative:a})},d=ba();if(t==null){o.search=d.search;let h=new URLSearchParams(o.search),y=h.getAll("index");if(y.some(g=>g==="")){h.delete("index"),y.filter(v=>v).forEach(v=>h.append("index",v));let g=h.toString();o.search=g?`?${g}`:""}}return(!t||t===".")&&u.route.index&&(o.search=o.search?o.search.replace(/^\?/,"?index&"):"?index"),r!=="/"&&(o.pathname=o.pathname==="/"?r:pa([r,o.pathname])),ru(o)}function JT(t,{relative:a}={}){let r=z.useContext(L_);mt(r!=null,"`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`. Did you accidentally import `RouterProvider` from `react-router`?");let{basename:l}=$_("useViewTransitionState"),u=_u(t,{relative:a});if(!r.isTransitioning)return!1;let o=$a(r.currentLocation.pathname,l)||r.currentLocation.pathname,d=$a(r.nextLocation.pathname,l)||r.nextLocation.pathname;return oc(u.pathname,d)!=null||oc(u.pathname,o)!=null}var IT=g_();const ek=Ja(IT);/**
61
+ * @license lucide-react v0.525.0 - ISC
62
+ *
63
+ * This source code is licensed under the ISC license.
64
+ * See the LICENSE file in the root directory of this source tree.
65
+ */const WT=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),eA=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(a,r,l)=>l?l.toUpperCase():r.toLowerCase()),c1=t=>{const a=eA(t);return a.charAt(0).toUpperCase()+a.slice(1)},K_=(...t)=>t.filter((a,r,l)=>!!a&&a.trim()!==""&&l.indexOf(a)===r).join(" ").trim(),tA=t=>{for(const a in t)if(a.startsWith("aria-")||a==="role"||a==="title")return!0};/**
66
+ * @license lucide-react v0.525.0 - ISC
67
+ *
68
+ * This source code is licensed under the ISC license.
69
+ * See the LICENSE file in the root directory of this source tree.
70
+ */var nA={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/**
71
+ * @license lucide-react v0.525.0 - ISC
72
+ *
73
+ * This source code is licensed under the ISC license.
74
+ * See the LICENSE file in the root directory of this source tree.
75
+ */const aA=z.forwardRef(({color:t="currentColor",size:a=24,strokeWidth:r=2,absoluteStrokeWidth:l,className:u="",children:o,iconNode:d,...h},y)=>z.createElement("svg",{ref:y,...nA,width:a,height:a,stroke:t,strokeWidth:l?Number(r)*24/Number(a):r,className:K_("lucide",u),...!o&&!tA(h)&&{"aria-hidden":"true"},...h},[...d.map(([m,g])=>z.createElement(m,g)),...Array.isArray(o)?o:[o]]));/**
76
+ * @license lucide-react v0.525.0 - ISC
77
+ *
78
+ * This source code is licensed under the ISC license.
79
+ * See the LICENSE file in the root directory of this source tree.
80
+ */const ve=(t,a)=>{const r=z.forwardRef(({className:l,...u},o)=>z.createElement(aA,{ref:o,iconNode:a,className:K_(`lucide-${WT(c1(t))}`,`lucide-${t}`,l),...u}));return r.displayName=c1(t),r};/**
81
+ * @license lucide-react v0.525.0 - ISC
82
+ *
83
+ * This source code is licensed under the ISC license.
84
+ * See the LICENSE file in the root directory of this source tree.
85
+ */const rA=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]],tk=ve("activity",rA);/**
86
+ * @license lucide-react v0.525.0 - ISC
87
+ *
88
+ * This source code is licensed under the ISC license.
89
+ * See the LICENSE file in the root directory of this source tree.
90
+ */const iA=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1",key:"1wp1u1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2",key:"tvwodi"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2",key:"1gkqxj"}],["path",{d:"m9 15 3-3 3 3",key:"1pd0qc"}],["path",{d:"M12 12v9",key:"192myk"}]],nk=ve("archive-restore",iA);/**
91
+ * @license lucide-react v0.525.0 - ISC
92
+ *
93
+ * This source code is licensed under the ISC license.
94
+ * See the LICENSE file in the root directory of this source tree.
95
+ */const lA=[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]],ak=ve("arrow-left",lA);/**
96
+ * @license lucide-react v0.525.0 - ISC
97
+ *
98
+ * This source code is licensed under the ISC license.
99
+ * See the LICENSE file in the root directory of this source tree.
100
+ */const sA=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],rk=ve("arrow-right",sA);/**
101
+ * @license lucide-react v0.525.0 - ISC
102
+ *
103
+ * This source code is licensed under the ISC license.
104
+ * See the LICENSE file in the root directory of this source tree.
105
+ */const uA=[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]],ik=ve("arrow-up-right",uA);/**
106
+ * @license lucide-react v0.525.0 - ISC
107
+ *
108
+ * This source code is licensed under the ISC license.
109
+ * See the LICENSE file in the root directory of this source tree.
110
+ */const oA=[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]],lk=ve("bot",oA);/**
111
+ * @license lucide-react v0.525.0 - ISC
112
+ *
113
+ * This source code is licensed under the ISC license.
114
+ * See the LICENSE file in the root directory of this source tree.
115
+ */const cA=[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4",key:"10igwf"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M12 13h4",key:"1ku699"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1",key:"105ag5"}],["path",{d:"M12 8h8",key:"1lhi5i"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2",key:"u6izg6"}],["circle",{cx:"16",cy:"13",r:".5",key:"ry7gng"}],["circle",{cx:"18",cy:"3",r:".5",key:"1aiba7"}],["circle",{cx:"20",cy:"21",r:".5",key:"yhc1fs"}],["circle",{cx:"20",cy:"8",r:".5",key:"1e43v0"}]],sk=ve("brain-circuit",cA);/**
116
+ * @license lucide-react v0.525.0 - ISC
117
+ *
118
+ * This source code is licensed under the ISC license.
119
+ * See the LICENSE file in the root directory of this source tree.
120
+ */const fA=[["path",{d:"M12 12h.01",key:"1mp3jc"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2",key:"1ksdt3"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0",key:"12hx5q"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2",key:"i6l2r4"}]],uk=ve("briefcase-business",fA);/**
121
+ * @license lucide-react v0.525.0 - ISC
122
+ *
123
+ * This source code is licensed under the ISC license.
124
+ * See the LICENSE file in the root directory of this source tree.
125
+ */const dA=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16",key:"c24i48"}],["path",{d:"M18 17V9",key:"2bz60n"}],["path",{d:"M13 17V5",key:"1frdt8"}],["path",{d:"M8 17v-3",key:"17ska0"}]],ok=ve("chart-column",dA);/**
126
+ * @license lucide-react v0.525.0 - ISC
127
+ *
128
+ * This source code is licensed under the ISC license.
129
+ * See the LICENSE file in the root directory of this source tree.
130
+ */const hA=[["path",{d:"M18 6 7 17l-5-5",key:"116fxf"}],["path",{d:"m22 10-7.5 7.5L13 16",key:"ke71qq"}]],ck=ve("check-check",hA);/**
131
+ * @license lucide-react v0.525.0 - ISC
132
+ *
133
+ * This source code is licensed under the ISC license.
134
+ * See the LICENSE file in the root directory of this source tree.
135
+ */const yA=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],fk=ve("check",yA);/**
136
+ * @license lucide-react v0.525.0 - ISC
137
+ *
138
+ * This source code is licensed under the ISC license.
139
+ * See the LICENSE file in the root directory of this source tree.
140
+ */const mA=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],dk=ve("chevron-down",mA);/**
141
+ * @license lucide-react v0.525.0 - ISC
142
+ *
143
+ * This source code is licensed under the ISC license.
144
+ * See the LICENSE file in the root directory of this source tree.
145
+ */const pA=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],hk=ve("chevron-up",pA);/**
146
+ * @license lucide-react v0.525.0 - ISC
147
+ *
148
+ * This source code is licensed under the ISC license.
149
+ * See the LICENSE file in the root directory of this source tree.
150
+ */const vA=[["path",{d:"m11 17-5-5 5-5",key:"13zhaf"}],["path",{d:"m18 17-5-5 5-5",key:"h8a8et"}]],yk=ve("chevrons-left",vA);/**
151
+ * @license lucide-react v0.525.0 - ISC
152
+ *
153
+ * This source code is licensed under the ISC license.
154
+ * See the LICENSE file in the root directory of this source tree.
155
+ */const gA=[["path",{d:"m6 17 5-5-5-5",key:"xnjwq"}],["path",{d:"m13 17 5-5-5-5",key:"17xmmf"}]],mk=ve("chevrons-right",gA);/**
156
+ * @license lucide-react v0.525.0 - ISC
157
+ *
158
+ * This source code is licensed under the ISC license.
159
+ * See the LICENSE file in the root directory of this source tree.
160
+ */const bA=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],pk=ve("circle-alert",bA);/**
161
+ * @license lucide-react v0.525.0 - ISC
162
+ *
163
+ * This source code is licensed under the ISC license.
164
+ * See the LICENSE file in the root directory of this source tree.
165
+ */const _A=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9",key:"c1nkhi"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9",key:"h65svq"}]],vk=ve("circle-pause",_A);/**
166
+ * @license lucide-react v0.525.0 - ISC
167
+ *
168
+ * This source code is licensed under the ISC license.
169
+ * See the LICENSE file in the root directory of this source tree.
170
+ */const SA=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],gk=ve("circle-question-mark",SA);/**
171
+ * @license lucide-react v0.525.0 - ISC
172
+ *
173
+ * This source code is licensed under the ISC license.
174
+ * See the LICENSE file in the root directory of this source tree.
175
+ */const EA=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}],["path",{d:"M12 11h4",key:"1jrz19"}],["path",{d:"M12 16h4",key:"n85exb"}],["path",{d:"M8 11h.01",key:"1dfujw"}],["path",{d:"M8 16h.01",key:"18s6g9"}]],bk=ve("clipboard-list",EA);/**
176
+ * @license lucide-react v0.525.0 - ISC
177
+ *
178
+ * This source code is licensed under the ISC license.
179
+ * See the LICENSE file in the root directory of this source tree.
180
+ */const xA=[["path",{d:"M12 6v6h4",key:"135r8i"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],_k=ve("clock-3",xA);/**
181
+ * @license lucide-react v0.525.0 - ISC
182
+ *
183
+ * This source code is licensed under the ISC license.
184
+ * See the LICENSE file in the root directory of this source tree.
185
+ */const wA=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],Sk=ve("copy",wA);/**
186
+ * @license lucide-react v0.525.0 - ISC
187
+ *
188
+ * This source code is licensed under the ISC license.
189
+ * See the LICENSE file in the root directory of this source tree.
190
+ */const TA=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]],Ek=ve("file-text",TA);/**
191
+ * @license lucide-react v0.525.0 - ISC
192
+ *
193
+ * This source code is licensed under the ISC license.
194
+ * See the LICENSE file in the root directory of this source tree.
195
+ */const AA=[["path",{d:"M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z",key:"96xj49"}]],xk=ve("flame",AA);/**
196
+ * @license lucide-react v0.525.0 - ISC
197
+ *
198
+ * This source code is licensed under the ISC license.
199
+ * See the LICENSE file in the root directory of this source tree.
200
+ */const CA=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]],wk=ve("folder-open",CA);/**
201
+ * @license lucide-react v0.525.0 - ISC
202
+ *
203
+ * This source code is licensed under the ISC license.
204
+ * See the LICENSE file in the root directory of this source tree.
205
+ */const OA=[["path",{d:"M6 3v12",key:"qpgusn"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"1d02ji"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z",key:"chk6ph"}],["path",{d:"M15 6a9 9 0 0 0-9 9",key:"or332x"}],["path",{d:"M18 15v6",key:"9wciyi"}],["path",{d:"M21 18h-6",key:"139f0c"}]],Tk=ve("git-branch-plus",OA);/**
206
+ * @license lucide-react v0.525.0 - ISC
207
+ *
208
+ * This source code is licensed under the ISC license.
209
+ * See the LICENSE file in the root directory of this source tree.
210
+ */const RA=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}],["path",{d:"M12 5 9.04 7.96a2.17 2.17 0 0 0 0 3.08c.82.82 2.13.85 3 .07l2.07-1.9a2.82 2.82 0 0 1 3.79 0l2.96 2.66",key:"4oyue0"}],["path",{d:"m18 15-2-2",key:"60u0ii"}],["path",{d:"m15 18-2-2",key:"6p76be"}]],Ak=ve("heart-handshake",RA);/**
211
+ * @license lucide-react v0.525.0 - ISC
212
+ *
213
+ * This source code is licensed under the ISC license.
214
+ * See the LICENSE file in the root directory of this source tree.
215
+ */const MA=[["path",{d:"M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z",key:"c3ymky"}]],Ck=ve("heart",MA);/**
216
+ * @license lucide-react v0.525.0 - ISC
217
+ *
218
+ * This source code is licensed under the ISC license.
219
+ * See the LICENSE file in the root directory of this source tree.
220
+ */const kA=[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",key:"1s6t7t"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}]],Ok=ve("key-round",kA);/**
221
+ * @license lucide-react v0.525.0 - ISC
222
+ *
223
+ * This source code is licensed under the ISC license.
224
+ * See the LICENSE file in the root directory of this source tree.
225
+ */const zA=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]],Rk=ve("layout-dashboard",zA);/**
226
+ * @license lucide-react v0.525.0 - ISC
227
+ *
228
+ * This source code is licensed under the ISC license.
229
+ * See the LICENSE file in the root directory of this source tree.
230
+ */const NA=[["rect",{x:"3",y:"5",width:"6",height:"6",rx:"1",key:"1defrl"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"M13 6h8",key:"15sg57"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 18h8",key:"oe0vm4"}]],Mk=ve("list-todo",NA);/**
231
+ * @license lucide-react v0.525.0 - ISC
232
+ *
233
+ * This source code is licensed under the ISC license.
234
+ * See the LICENSE file in the root directory of this source tree.
235
+ */const DA=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3",key:"1dcmit"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3",key:"1e4gt3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3",key:"wsl5sc"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3",key:"18trek"}]],kk=ve("maximize",DA);/**
236
+ * @license lucide-react v0.525.0 - ISC
237
+ *
238
+ * This source code is licensed under the ISC license.
239
+ * See the LICENSE file in the root directory of this source tree.
240
+ */const UA=[["path",{d:"M5 12h14",key:"1ays0h"}]],zk=ve("minus",UA);/**
241
+ * @license lucide-react v0.525.0 - ISC
242
+ *
243
+ * This source code is licensed under the ISC license.
244
+ * See the LICENSE file in the root directory of this source tree.
245
+ */const LA=[["path",{d:"M12 2v20",key:"t6zp3m"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m19 9 3 3-3 3",key:"1mg7y2"}],["path",{d:"M2 12h20",key:"9i4pu4"}],["path",{d:"m5 9-3 3 3 3",key:"j64kie"}],["path",{d:"m9 5 3-3 3 3",key:"l8vdw6"}]],Nk=ve("move",LA);/**
246
+ * @license lucide-react v0.525.0 - ISC
247
+ *
248
+ * This source code is licensed under the ISC license.
249
+ * See the LICENSE file in the root directory of this source tree.
250
+ */const jA=[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85",key:"1enhxb"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152",key:"1crzgf"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["circle",{cx:"19",cy:"5",r:"2",key:"mhkx31"}],["circle",{cx:"5",cy:"19",r:"2",key:"v8kfzx"}]],Dk=ve("orbit",jA);/**
251
+ * @license lucide-react v0.525.0 - ISC
252
+ *
253
+ * This source code is licensed under the ISC license.
254
+ * See the LICENSE file in the root directory of this source tree.
255
+ */const qA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m8 9 3 3-3 3",key:"12hl5m"}]],Uk=ve("panel-right-close",qA);/**
256
+ * @license lucide-react v0.525.0 - ISC
257
+ *
258
+ * This source code is licensed under the ISC license.
259
+ * See the LICENSE file in the root directory of this source tree.
260
+ */const BA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}]],Lk=ve("panel-right-open",BA);/**
261
+ * @license lucide-react v0.525.0 - ISC
262
+ *
263
+ * This source code is licensed under the ISC license.
264
+ * See the LICENSE file in the root directory of this source tree.
265
+ */const VA=[["path",{d:"M12 20h9",key:"t2du7b"}],["path",{d:"M16.376 3.622a1 1 0 0 1 3.002 3.002L7.368 18.635a2 2 0 0 1-.855.506l-2.872.838a.5.5 0 0 1-.62-.62l.838-2.872a2 2 0 0 1 .506-.854z",key:"1ykcvy"}],["path",{d:"m15 5 3 3",key:"1w25hb"}]],jk=ve("pencil-line",VA);/**
266
+ * @license lucide-react v0.525.0 - ISC
267
+ *
268
+ * This source code is licensed under the ISC license.
269
+ * See the LICENSE file in the root directory of this source tree.
270
+ */const HA=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],qk=ve("pencil",HA);/**
271
+ * @license lucide-react v0.525.0 - ISC
272
+ *
273
+ * This source code is licensed under the ISC license.
274
+ * See the LICENSE file in the root directory of this source tree.
275
+ */const ZA=[["polygon",{points:"6 3 20 12 6 21 6 3",key:"1oa8hb"}]],Bk=ve("play",ZA);/**
276
+ * @license lucide-react v0.525.0 - ISC
277
+ *
278
+ * This source code is licensed under the ISC license.
279
+ * See the LICENSE file in the root directory of this source tree.
280
+ */const QA=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],Vk=ve("plus",QA);/**
281
+ * @license lucide-react v0.525.0 - ISC
282
+ *
283
+ * This source code is licensed under the ISC license.
284
+ * See the LICENSE file in the root directory of this source tree.
285
+ */const GA=[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"rib7q0"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z",key:"1ymkrd"}]],Hk=ve("quote",GA);/**
286
+ * @license lucide-react v0.525.0 - ISC
287
+ *
288
+ * This source code is licensed under the ISC license.
289
+ * See the LICENSE file in the root directory of this source tree.
290
+ */const YA=[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34",key:"z3du51"}],["path",{d:"M4 6h.01",key:"oypzma"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35",key:"qzzz0"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67",key:"1yjesh"}],["path",{d:"M12 18h.01",key:"mhygvu"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67",key:"1u2y91"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"m13.41 10.59 5.66-5.66",key:"mhq4k0"}]],Zk=ve("radar",YA);/**
291
+ * @license lucide-react v0.525.0 - ISC
292
+ *
293
+ * This source code is licensed under the ISC license.
294
+ * See the LICENSE file in the root directory of this source tree.
295
+ */const FA=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"14sxne"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16",key:"1hlbsb"}],["path",{d:"M16 16h5v5",key:"ccwih5"}]],Qk=ve("refresh-ccw",FA);/**
296
+ * @license lucide-react v0.525.0 - ISC
297
+ *
298
+ * This source code is licensed under the ISC license.
299
+ * See the LICENSE file in the root directory of this source tree.
300
+ */const XA=[["path",{d:"m17 2 4 4-4 4",key:"nntrym"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14",key:"84bu3i"}],["path",{d:"m7 22-4-4 4-4",key:"1wqhfi"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3",key:"1rx37r"}]],Gk=ve("repeat",XA);/**
301
+ * @license lucide-react v0.525.0 - ISC
302
+ *
303
+ * This source code is licensed under the ISC license.
304
+ * See the LICENSE file in the root directory of this source tree.
305
+ */const $A=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],Yk=ve("rotate-ccw",$A);/**
306
+ * @license lucide-react v0.525.0 - ISC
307
+ *
308
+ * This source code is licensed under the ISC license.
309
+ * See the LICENSE file in the root directory of this source tree.
310
+ */const KA=[["circle",{cx:"6",cy:"19",r:"3",key:"1kj8tv"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15",key:"1d8sl"}],["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}]],Fk=ve("route",KA);/**
311
+ * @license lucide-react v0.525.0 - ISC
312
+ *
313
+ * This source code is licensed under the ISC license.
314
+ * See the LICENSE file in the root directory of this source tree.
315
+ */const PA=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],Xk=ve("search",PA);/**
316
+ * @license lucide-react v0.525.0 - ISC
317
+ *
318
+ * This source code is licensed under the ISC license.
319
+ * See the LICENSE file in the root directory of this source tree.
320
+ */const JA=[["path",{d:"M14 17H5",key:"gfn3mx"}],["path",{d:"M19 7h-9",key:"6i9tg"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]],$k=ve("settings-2",JA);/**
321
+ * @license lucide-react v0.525.0 - ISC
322
+ *
323
+ * This source code is licensed under the ISC license.
324
+ * See the LICENSE file in the root directory of this source tree.
325
+ */const IA=[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],Kk=ve("settings",IA);/**
326
+ * @license lucide-react v0.525.0 - ISC
327
+ *
328
+ * This source code is licensed under the ISC license.
329
+ * See the LICENSE file in the root directory of this source tree.
330
+ */const WA=[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z",key:"1bo67w"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1",key:"1bkyp8"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5",key:"w3z12y"}]],Pk=ve("shapes",WA);/**
331
+ * @license lucide-react v0.525.0 - ISC
332
+ *
333
+ * This source code is licensed under the ISC license.
334
+ * See the LICENSE file in the root directory of this source tree.
335
+ */const eC=[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]],Jk=ve("sparkles",eC);/**
336
+ * @license lucide-react v0.525.0 - ISC
337
+ *
338
+ * This source code is licensed under the ISC license.
339
+ * See the LICENSE file in the root directory of this source tree.
340
+ */const tC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],Ik=ve("square",tC);/**
341
+ * @license lucide-react v0.525.0 - ISC
342
+ *
343
+ * This source code is licensed under the ISC license.
344
+ * See the LICENSE file in the root directory of this source tree.
345
+ */const nC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],Wk=ve("target",nC);/**
346
+ * @license lucide-react v0.525.0 - ISC
347
+ *
348
+ * This source code is licensed under the ISC license.
349
+ * See the LICENSE file in the root directory of this source tree.
350
+ */const aC=[["path",{d:"M10 2h4",key:"n1abiw"}],["path",{d:"M12 14v-4",key:"1evpnu"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6",key:"1ts96g"}],["path",{d:"M9 17H4v5",key:"8t5av"}]],e4=ve("timer-reset",aC);/**
351
+ * @license lucide-react v0.525.0 - ISC
352
+ *
353
+ * This source code is licensed under the ISC license.
354
+ * See the LICENSE file in the root directory of this source tree.
355
+ */const rC=[["line",{x1:"10",x2:"14",y1:"2",y2:"2",key:"14vaq8"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11",key:"17fdiu"}],["circle",{cx:"12",cy:"14",r:"8",key:"1e1u0o"}]],t4=ve("timer",rC);/**
356
+ * @license lucide-react v0.525.0 - ISC
357
+ *
358
+ * This source code is licensed under the ISC license.
359
+ * See the LICENSE file in the root directory of this source tree.
360
+ */const iC=[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]],n4=ve("trash-2",iC);/**
361
+ * @license lucide-react v0.525.0 - ISC
362
+ *
363
+ * This source code is licensed under the ISC license.
364
+ * See the LICENSE file in the root directory of this source tree.
365
+ */const lC=[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978",key:"1n3hpd"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978",key:"rfe1zi"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18",key:"7xy6bh"}],["path",{d:"M4 22h16",key:"57wxv0"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z",key:"1mhfuq"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6",key:"tex48p"}]],a4=ve("trophy",lC);/**
366
+ * @license lucide-react v0.525.0 - ISC
367
+ *
368
+ * This source code is licensed under the ISC license.
369
+ * See the LICENSE file in the root directory of this source tree.
370
+ */const sC=[["path",{d:"M12 22v-6",key:"6o8u61"}],["path",{d:"M12 8V2",key:"1wkif3"}],["path",{d:"M4 12H2",key:"rhcxmi"}],["path",{d:"M10 12H8",key:"s88cx1"}],["path",{d:"M16 12h-2",key:"10asgb"}],["path",{d:"M22 12h-2",key:"14jgyd"}],["path",{d:"m15 19-3 3-3-3",key:"11eu04"}],["path",{d:"m15 5-3-3-3 3",key:"itvq4r"}]],r4=ve("unfold-vertical",sC);/**
371
+ * @license lucide-react v0.525.0 - ISC
372
+ *
373
+ * This source code is licensed under the ISC license.
374
+ * See the LICENSE file in the root directory of this source tree.
375
+ */const uC=[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"knzxuh"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"2jd2cc"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1",key:"rd2r6e"}]],i4=ve("waves",uC);/**
376
+ * @license lucide-react v0.525.0 - ISC
377
+ *
378
+ * This source code is licensed under the ISC license.
379
+ * See the LICENSE file in the root directory of this source tree.
380
+ */const oC=[["circle",{cx:"12",cy:"4.5",r:"2.5",key:"r5ysbb"}],["path",{d:"m10.2 6.3-3.9 3.9",key:"1nzqf6"}],["circle",{cx:"4.5",cy:"12",r:"2.5",key:"jydg6v"}],["path",{d:"M7 12h10",key:"b7w52i"}],["circle",{cx:"19.5",cy:"12",r:"2.5",key:"1piiel"}],["path",{d:"m13.8 17.7 3.9-3.9",key:"1wyg1y"}],["circle",{cx:"12",cy:"19.5",r:"2.5",key:"13o1pw"}]],l4=ve("waypoints",oC);/**
381
+ * @license lucide-react v0.525.0 - ISC
382
+ *
383
+ * This source code is licensed under the ISC license.
384
+ * See the LICENSE file in the root directory of this source tree.
385
+ */const cC=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],s4=ve("x",cC);/**
386
+ * @license lucide-react v0.525.0 - ISC
387
+ *
388
+ * This source code is licensed under the ISC license.
389
+ * See the LICENSE file in the root directory of this source tree.
390
+ */const fC=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]],u4=ve("zap",fC);function P_(t){var a,r,l="";if(typeof t=="string"||typeof t=="number")l+=t;else if(typeof t=="object")if(Array.isArray(t)){var u=t.length;for(a=0;a<u;a++)t[a]&&(r=P_(t[a]))&&(l&&(l+=" "),l+=r)}else for(r in t)t[r]&&(l&&(l+=" "),l+=r);return l}function dC(){for(var t,a,r=0,l="",u=arguments.length;r<u;r++)(t=arguments[r])&&(a=P_(t))&&(l&&(l+=" "),l+=a);return l}const hC=(t,a)=>{const r=new Array(t.length+a.length);for(let l=0;l<t.length;l++)r[l]=t[l];for(let l=0;l<a.length;l++)r[t.length+l]=a[l];return r},yC=(t,a)=>({classGroupId:t,validator:a}),J_=(t=new Map,a=null,r)=>({nextPart:t,validators:a,classGroupId:r}),cc="-",f1=[],mC="arbitrary..",pC=t=>{const a=gC(t),{conflictingClassGroups:r,conflictingClassGroupModifiers:l}=t;return{getClassGroupId:d=>{if(d.startsWith("[")&&d.endsWith("]"))return vC(d);const h=d.split(cc),y=h[0]===""&&h.length>1?1:0;return I_(h,y,a)},getConflictingClassGroupIds:(d,h)=>{if(h){const y=l[d],m=r[d];return y?m?hC(m,y):y:m||f1}return r[d]||f1}}},I_=(t,a,r)=>{if(t.length-a===0)return r.classGroupId;const u=t[a],o=r.nextPart.get(u);if(o){const m=I_(t,a+1,o);if(m)return m}const d=r.validators;if(d===null)return;const h=a===0?t.join(cc):t.slice(a).join(cc),y=d.length;for(let m=0;m<y;m++){const g=d[m];if(g.validator(h))return g.classGroupId}},vC=t=>t.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const a=t.slice(1,-1),r=a.indexOf(":"),l=a.slice(0,r);return l?mC+l:void 0})(),gC=t=>{const{theme:a,classGroups:r}=t;return bC(r,a)},bC=(t,a)=>{const r=J_();for(const l in t){const u=t[l];_m(u,r,l,a)}return r},_m=(t,a,r,l)=>{const u=t.length;for(let o=0;o<u;o++){const d=t[o];_C(d,a,r,l)}},_C=(t,a,r,l)=>{if(typeof t=="string"){SC(t,a,r);return}if(typeof t=="function"){EC(t,a,r,l);return}xC(t,a,r,l)},SC=(t,a,r)=>{const l=t===""?a:W_(a,t);l.classGroupId=r},EC=(t,a,r,l)=>{if(wC(t)){_m(t(l),a,r,l);return}a.validators===null&&(a.validators=[]),a.validators.push(yC(r,t))},xC=(t,a,r,l)=>{const u=Object.entries(t),o=u.length;for(let d=0;d<o;d++){const[h,y]=u[d];_m(y,W_(a,h),r,l)}},W_=(t,a)=>{let r=t;const l=a.split(cc),u=l.length;for(let o=0;o<u;o++){const d=l[o];let h=r.nextPart.get(d);h||(h=J_(),r.nextPart.set(d,h)),r=h}return r},wC=t=>"isThemeGetter"in t&&t.isThemeGetter===!0,TC=t=>{if(t<1)return{get:()=>{},set:()=>{}};let a=0,r=Object.create(null),l=Object.create(null);const u=(o,d)=>{r[o]=d,a++,a>t&&(a=0,l=r,r=Object.create(null))};return{get(o){let d=r[o];if(d!==void 0)return d;if((d=l[o])!==void 0)return u(o,d),d},set(o,d){o in r?r[o]=d:u(o,d)}}},Ly="!",d1=":",AC=[],h1=(t,a,r,l,u)=>({modifiers:t,hasImportantModifier:a,baseClassName:r,maybePostfixModifierPosition:l,isExternal:u}),CC=t=>{const{prefix:a,experimentalParseClassName:r}=t;let l=u=>{const o=[];let d=0,h=0,y=0,m;const g=u.length;for(let S=0;S<g;S++){const x=u[S];if(d===0&&h===0){if(x===d1){o.push(u.slice(y,S)),y=S+1;continue}if(x==="/"){m=S;continue}}x==="["?d++:x==="]"?d--:x==="("?h++:x===")"&&h--}const v=o.length===0?u:u.slice(y);let E=v,_=!1;v.endsWith(Ly)?(E=v.slice(0,-1),_=!0):v.startsWith(Ly)&&(E=v.slice(1),_=!0);const w=m&&m>y?m-y:void 0;return h1(o,_,E,w)};if(a){const u=a+d1,o=l;l=d=>d.startsWith(u)?o(d.slice(u.length)):h1(AC,!1,d,void 0,!0)}if(r){const u=l;l=o=>r({className:o,parseClassName:u})}return l},OC=t=>{const a=new Map;return t.orderSensitiveModifiers.forEach((r,l)=>{a.set(r,1e6+l)}),r=>{const l=[];let u=[];for(let o=0;o<r.length;o++){const d=r[o],h=d[0]==="[",y=a.has(d);h||y?(u.length>0&&(u.sort(),l.push(...u),u=[]),l.push(d)):u.push(d)}return u.length>0&&(u.sort(),l.push(...u)),l}},RC=t=>({cache:TC(t.cacheSize),parseClassName:CC(t),sortModifiers:OC(t),...pC(t)}),MC=/\s+/,kC=(t,a)=>{const{parseClassName:r,getClassGroupId:l,getConflictingClassGroupIds:u,sortModifiers:o}=a,d=[],h=t.trim().split(MC);let y="";for(let m=h.length-1;m>=0;m-=1){const g=h[m],{isExternal:v,modifiers:E,hasImportantModifier:_,baseClassName:w,maybePostfixModifierPosition:S}=r(g);if(v){y=g+(y.length>0?" "+y:y);continue}let x=!!S,M=l(x?w.substring(0,S):w);if(!M){if(!x){y=g+(y.length>0?" "+y:y);continue}if(M=l(w),!M){y=g+(y.length>0?" "+y:y);continue}x=!1}const V=E.length===0?"":E.length===1?E[0]:o(E).join(":"),Z=_?V+Ly:V,q=Z+M;if(d.indexOf(q)>-1)continue;d.push(q);const Q=u(M,x);for(let K=0;K<Q.length;++K){const P=Q[K];d.push(Z+P)}y=g+(y.length>0?" "+y:y)}return y},zC=(...t)=>{let a=0,r,l,u="";for(;a<t.length;)(r=t[a++])&&(l=eS(r))&&(u&&(u+=" "),u+=l);return u},eS=t=>{if(typeof t=="string")return t;let a,r="";for(let l=0;l<t.length;l++)t[l]&&(a=eS(t[l]))&&(r&&(r+=" "),r+=a);return r},NC=(t,...a)=>{let r,l,u,o;const d=y=>{const m=a.reduce((g,v)=>v(g),t());return r=RC(m),l=r.cache.get,u=r.cache.set,o=h,h(y)},h=y=>{const m=l(y);if(m)return m;const g=kC(y,r);return u(y,g),g};return o=d,(...y)=>o(zC(...y))},DC=[],Ut=t=>{const a=r=>r[t]||DC;return a.isThemeGetter=!0,a},tS=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,nS=/^\((?:(\w[\w-]*):)?(.+)\)$/i,UC=/^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/,LC=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,jC=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,qC=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,BC=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,VC=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,xr=t=>UC.test(t),qe=t=>!!t&&!Number.isNaN(Number(t)),wr=t=>!!t&&Number.isInteger(Number(t)),Sh=t=>t.endsWith("%")&&qe(t.slice(0,-1)),qa=t=>LC.test(t),aS=()=>!0,HC=t=>jC.test(t)&&!qC.test(t),Sm=()=>!1,ZC=t=>BC.test(t),QC=t=>VC.test(t),GC=t=>!de(t)&&!ye(t),YC=t=>Zr(t,lS,Sm),de=t=>tS.test(t),ui=t=>Zr(t,sS,HC),y1=t=>Zr(t,WC,qe),FC=t=>Zr(t,oS,aS),XC=t=>Zr(t,uS,Sm),m1=t=>Zr(t,rS,Sm),$C=t=>Zr(t,iS,QC),Xo=t=>Zr(t,cS,ZC),ye=t=>nS.test(t),Ks=t=>zi(t,sS),KC=t=>zi(t,uS),p1=t=>zi(t,rS),PC=t=>zi(t,lS),JC=t=>zi(t,iS),$o=t=>zi(t,cS,!0),IC=t=>zi(t,oS,!0),Zr=(t,a,r)=>{const l=tS.exec(t);return l?l[1]?a(l[1]):r(l[2]):!1},zi=(t,a,r=!1)=>{const l=nS.exec(t);return l?l[1]?a(l[1]):r:!1},rS=t=>t==="position"||t==="percentage",iS=t=>t==="image"||t==="url",lS=t=>t==="length"||t==="size"||t==="bg-size",sS=t=>t==="length",WC=t=>t==="number",uS=t=>t==="family-name",oS=t=>t==="number"||t==="weight",cS=t=>t==="shadow",eO=()=>{const t=Ut("color"),a=Ut("font"),r=Ut("text"),l=Ut("font-weight"),u=Ut("tracking"),o=Ut("leading"),d=Ut("breakpoint"),h=Ut("container"),y=Ut("spacing"),m=Ut("radius"),g=Ut("shadow"),v=Ut("inset-shadow"),E=Ut("text-shadow"),_=Ut("drop-shadow"),w=Ut("blur"),S=Ut("perspective"),x=Ut("aspect"),M=Ut("ease"),V=Ut("animate"),Z=()=>["auto","avoid","all","avoid-page","page","left","right","column"],q=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],Q=()=>[...q(),ye,de],K=()=>["auto","hidden","clip","visible","scroll"],P=()=>["auto","contain","none"],G=()=>[ye,de,y],re=()=>[xr,"full","auto",...G()],ze=()=>[wr,"none","subgrid",ye,de],Ae=()=>["auto",{span:["full",wr,ye,de]},wr,ye,de],ne=()=>[wr,"auto",ye,de],we=()=>["auto","min","max","fr",ye,de],Ne=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],Ce=()=>["start","end","center","stretch","center-safe","end-safe"],B=()=>["auto",...G()],J=()=>[xr,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...G()],ge=()=>[xr,"screen","full","dvw","lvw","svw","min","max","fit",...G()],Be=()=>[xr,"screen","full","lh","dvh","lvh","svh","min","max","fit",...G()],ee=()=>[t,ye,de],R=()=>[...q(),p1,m1,{position:[ye,de]}],X=()=>["no-repeat",{repeat:["","x","y","space","round"]}],ae=()=>["auto","cover","contain",PC,YC,{size:[ye,de]}],ue=()=>[Sh,Ks,ui],he=()=>["","none","full",m,ye,de],Ee=()=>["",qe,Ks,ui],Ve=()=>["solid","dashed","dotted","double"],wt=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],Oe=()=>[qe,Sh,p1,m1],Pn=()=>["","none",w,ye,de],pn=()=>["none",qe,ye,de],kn=()=>["none",qe,ye,de],Ia=()=>[qe,ye,de],Pt=()=>[xr,"full",...G()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[qa],breakpoint:[qa],color:[aS],container:[qa],"drop-shadow":[qa],ease:["in","out","in-out"],font:[GC],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[qa],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[qa],shadow:[qa],spacing:["px",qe],text:[qa],"text-shadow":[qa],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",xr,de,ye,x]}],container:["container"],columns:[{columns:[qe,de,ye,h]}],"break-after":[{"break-after":Z()}],"break-before":[{"break-before":Z()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:Q()}],overflow:[{overflow:K()}],"overflow-x":[{"overflow-x":K()}],"overflow-y":[{"overflow-y":K()}],overscroll:[{overscroll:P()}],"overscroll-x":[{"overscroll-x":P()}],"overscroll-y":[{"overscroll-y":P()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:re()}],"inset-x":[{"inset-x":re()}],"inset-y":[{"inset-y":re()}],start:[{"inset-s":re(),start:re()}],end:[{"inset-e":re(),end:re()}],"inset-bs":[{"inset-bs":re()}],"inset-be":[{"inset-be":re()}],top:[{top:re()}],right:[{right:re()}],bottom:[{bottom:re()}],left:[{left:re()}],visibility:["visible","invisible","collapse"],z:[{z:[wr,"auto",ye,de]}],basis:[{basis:[xr,"full","auto",h,...G()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[qe,xr,"auto","initial","none",de]}],grow:[{grow:["",qe,ye,de]}],shrink:[{shrink:["",qe,ye,de]}],order:[{order:[wr,"first","last","none",ye,de]}],"grid-cols":[{"grid-cols":ze()}],"col-start-end":[{col:Ae()}],"col-start":[{"col-start":ne()}],"col-end":[{"col-end":ne()}],"grid-rows":[{"grid-rows":ze()}],"row-start-end":[{row:Ae()}],"row-start":[{"row-start":ne()}],"row-end":[{"row-end":ne()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":we()}],"auto-rows":[{"auto-rows":we()}],gap:[{gap:G()}],"gap-x":[{"gap-x":G()}],"gap-y":[{"gap-y":G()}],"justify-content":[{justify:[...Ne(),"normal"]}],"justify-items":[{"justify-items":[...Ce(),"normal"]}],"justify-self":[{"justify-self":["auto",...Ce()]}],"align-content":[{content:["normal",...Ne()]}],"align-items":[{items:[...Ce(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...Ce(),{baseline:["","last"]}]}],"place-content":[{"place-content":Ne()}],"place-items":[{"place-items":[...Ce(),"baseline"]}],"place-self":[{"place-self":["auto",...Ce()]}],p:[{p:G()}],px:[{px:G()}],py:[{py:G()}],ps:[{ps:G()}],pe:[{pe:G()}],pbs:[{pbs:G()}],pbe:[{pbe:G()}],pt:[{pt:G()}],pr:[{pr:G()}],pb:[{pb:G()}],pl:[{pl:G()}],m:[{m:B()}],mx:[{mx:B()}],my:[{my:B()}],ms:[{ms:B()}],me:[{me:B()}],mbs:[{mbs:B()}],mbe:[{mbe:B()}],mt:[{mt:B()}],mr:[{mr:B()}],mb:[{mb:B()}],ml:[{ml:B()}],"space-x":[{"space-x":G()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":G()}],"space-y-reverse":["space-y-reverse"],size:[{size:J()}],"inline-size":[{inline:["auto",...ge()]}],"min-inline-size":[{"min-inline":["auto",...ge()]}],"max-inline-size":[{"max-inline":["none",...ge()]}],"block-size":[{block:["auto",...Be()]}],"min-block-size":[{"min-block":["auto",...Be()]}],"max-block-size":[{"max-block":["none",...Be()]}],w:[{w:[h,"screen",...J()]}],"min-w":[{"min-w":[h,"screen","none",...J()]}],"max-w":[{"max-w":[h,"screen","none","prose",{screen:[d]},...J()]}],h:[{h:["screen","lh",...J()]}],"min-h":[{"min-h":["screen","lh","none",...J()]}],"max-h":[{"max-h":["screen","lh",...J()]}],"font-size":[{text:["base",r,Ks,ui]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[l,IC,FC]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",Sh,de]}],"font-family":[{font:[KC,XC,a]}],"font-features":[{"font-features":[de]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[u,ye,de]}],"line-clamp":[{"line-clamp":[qe,"none",ye,y1]}],leading:[{leading:[o,...G()]}],"list-image":[{"list-image":["none",ye,de]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",ye,de]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:ee()}],"text-color":[{text:ee()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...Ve(),"wavy"]}],"text-decoration-thickness":[{decoration:[qe,"from-font","auto",ye,ui]}],"text-decoration-color":[{decoration:ee()}],"underline-offset":[{"underline-offset":[qe,"auto",ye,de]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:G()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",ye,de]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",ye,de]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:R()}],"bg-repeat":[{bg:X()}],"bg-size":[{bg:ae()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},wr,ye,de],radial:["",ye,de],conic:[wr,ye,de]},JC,$C]}],"bg-color":[{bg:ee()}],"gradient-from-pos":[{from:ue()}],"gradient-via-pos":[{via:ue()}],"gradient-to-pos":[{to:ue()}],"gradient-from":[{from:ee()}],"gradient-via":[{via:ee()}],"gradient-to":[{to:ee()}],rounded:[{rounded:he()}],"rounded-s":[{"rounded-s":he()}],"rounded-e":[{"rounded-e":he()}],"rounded-t":[{"rounded-t":he()}],"rounded-r":[{"rounded-r":he()}],"rounded-b":[{"rounded-b":he()}],"rounded-l":[{"rounded-l":he()}],"rounded-ss":[{"rounded-ss":he()}],"rounded-se":[{"rounded-se":he()}],"rounded-ee":[{"rounded-ee":he()}],"rounded-es":[{"rounded-es":he()}],"rounded-tl":[{"rounded-tl":he()}],"rounded-tr":[{"rounded-tr":he()}],"rounded-br":[{"rounded-br":he()}],"rounded-bl":[{"rounded-bl":he()}],"border-w":[{border:Ee()}],"border-w-x":[{"border-x":Ee()}],"border-w-y":[{"border-y":Ee()}],"border-w-s":[{"border-s":Ee()}],"border-w-e":[{"border-e":Ee()}],"border-w-bs":[{"border-bs":Ee()}],"border-w-be":[{"border-be":Ee()}],"border-w-t":[{"border-t":Ee()}],"border-w-r":[{"border-r":Ee()}],"border-w-b":[{"border-b":Ee()}],"border-w-l":[{"border-l":Ee()}],"divide-x":[{"divide-x":Ee()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":Ee()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...Ve(),"hidden","none"]}],"divide-style":[{divide:[...Ve(),"hidden","none"]}],"border-color":[{border:ee()}],"border-color-x":[{"border-x":ee()}],"border-color-y":[{"border-y":ee()}],"border-color-s":[{"border-s":ee()}],"border-color-e":[{"border-e":ee()}],"border-color-bs":[{"border-bs":ee()}],"border-color-be":[{"border-be":ee()}],"border-color-t":[{"border-t":ee()}],"border-color-r":[{"border-r":ee()}],"border-color-b":[{"border-b":ee()}],"border-color-l":[{"border-l":ee()}],"divide-color":[{divide:ee()}],"outline-style":[{outline:[...Ve(),"none","hidden"]}],"outline-offset":[{"outline-offset":[qe,ye,de]}],"outline-w":[{outline:["",qe,Ks,ui]}],"outline-color":[{outline:ee()}],shadow:[{shadow:["","none",g,$o,Xo]}],"shadow-color":[{shadow:ee()}],"inset-shadow":[{"inset-shadow":["none",v,$o,Xo]}],"inset-shadow-color":[{"inset-shadow":ee()}],"ring-w":[{ring:Ee()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:ee()}],"ring-offset-w":[{"ring-offset":[qe,ui]}],"ring-offset-color":[{"ring-offset":ee()}],"inset-ring-w":[{"inset-ring":Ee()}],"inset-ring-color":[{"inset-ring":ee()}],"text-shadow":[{"text-shadow":["none",E,$o,Xo]}],"text-shadow-color":[{"text-shadow":ee()}],opacity:[{opacity:[qe,ye,de]}],"mix-blend":[{"mix-blend":[...wt(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":wt()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[qe]}],"mask-image-linear-from-pos":[{"mask-linear-from":Oe()}],"mask-image-linear-to-pos":[{"mask-linear-to":Oe()}],"mask-image-linear-from-color":[{"mask-linear-from":ee()}],"mask-image-linear-to-color":[{"mask-linear-to":ee()}],"mask-image-t-from-pos":[{"mask-t-from":Oe()}],"mask-image-t-to-pos":[{"mask-t-to":Oe()}],"mask-image-t-from-color":[{"mask-t-from":ee()}],"mask-image-t-to-color":[{"mask-t-to":ee()}],"mask-image-r-from-pos":[{"mask-r-from":Oe()}],"mask-image-r-to-pos":[{"mask-r-to":Oe()}],"mask-image-r-from-color":[{"mask-r-from":ee()}],"mask-image-r-to-color":[{"mask-r-to":ee()}],"mask-image-b-from-pos":[{"mask-b-from":Oe()}],"mask-image-b-to-pos":[{"mask-b-to":Oe()}],"mask-image-b-from-color":[{"mask-b-from":ee()}],"mask-image-b-to-color":[{"mask-b-to":ee()}],"mask-image-l-from-pos":[{"mask-l-from":Oe()}],"mask-image-l-to-pos":[{"mask-l-to":Oe()}],"mask-image-l-from-color":[{"mask-l-from":ee()}],"mask-image-l-to-color":[{"mask-l-to":ee()}],"mask-image-x-from-pos":[{"mask-x-from":Oe()}],"mask-image-x-to-pos":[{"mask-x-to":Oe()}],"mask-image-x-from-color":[{"mask-x-from":ee()}],"mask-image-x-to-color":[{"mask-x-to":ee()}],"mask-image-y-from-pos":[{"mask-y-from":Oe()}],"mask-image-y-to-pos":[{"mask-y-to":Oe()}],"mask-image-y-from-color":[{"mask-y-from":ee()}],"mask-image-y-to-color":[{"mask-y-to":ee()}],"mask-image-radial":[{"mask-radial":[ye,de]}],"mask-image-radial-from-pos":[{"mask-radial-from":Oe()}],"mask-image-radial-to-pos":[{"mask-radial-to":Oe()}],"mask-image-radial-from-color":[{"mask-radial-from":ee()}],"mask-image-radial-to-color":[{"mask-radial-to":ee()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":q()}],"mask-image-conic-pos":[{"mask-conic":[qe]}],"mask-image-conic-from-pos":[{"mask-conic-from":Oe()}],"mask-image-conic-to-pos":[{"mask-conic-to":Oe()}],"mask-image-conic-from-color":[{"mask-conic-from":ee()}],"mask-image-conic-to-color":[{"mask-conic-to":ee()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:R()}],"mask-repeat":[{mask:X()}],"mask-size":[{mask:ae()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",ye,de]}],filter:[{filter:["","none",ye,de]}],blur:[{blur:Pn()}],brightness:[{brightness:[qe,ye,de]}],contrast:[{contrast:[qe,ye,de]}],"drop-shadow":[{"drop-shadow":["","none",_,$o,Xo]}],"drop-shadow-color":[{"drop-shadow":ee()}],grayscale:[{grayscale:["",qe,ye,de]}],"hue-rotate":[{"hue-rotate":[qe,ye,de]}],invert:[{invert:["",qe,ye,de]}],saturate:[{saturate:[qe,ye,de]}],sepia:[{sepia:["",qe,ye,de]}],"backdrop-filter":[{"backdrop-filter":["","none",ye,de]}],"backdrop-blur":[{"backdrop-blur":Pn()}],"backdrop-brightness":[{"backdrop-brightness":[qe,ye,de]}],"backdrop-contrast":[{"backdrop-contrast":[qe,ye,de]}],"backdrop-grayscale":[{"backdrop-grayscale":["",qe,ye,de]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[qe,ye,de]}],"backdrop-invert":[{"backdrop-invert":["",qe,ye,de]}],"backdrop-opacity":[{"backdrop-opacity":[qe,ye,de]}],"backdrop-saturate":[{"backdrop-saturate":[qe,ye,de]}],"backdrop-sepia":[{"backdrop-sepia":["",qe,ye,de]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":G()}],"border-spacing-x":[{"border-spacing-x":G()}],"border-spacing-y":[{"border-spacing-y":G()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",ye,de]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[qe,"initial",ye,de]}],ease:[{ease:["linear","initial",M,ye,de]}],delay:[{delay:[qe,ye,de]}],animate:[{animate:["none",V,ye,de]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[S,ye,de]}],"perspective-origin":[{"perspective-origin":Q()}],rotate:[{rotate:pn()}],"rotate-x":[{"rotate-x":pn()}],"rotate-y":[{"rotate-y":pn()}],"rotate-z":[{"rotate-z":pn()}],scale:[{scale:kn()}],"scale-x":[{"scale-x":kn()}],"scale-y":[{"scale-y":kn()}],"scale-z":[{"scale-z":kn()}],"scale-3d":["scale-3d"],skew:[{skew:Ia()}],"skew-x":[{"skew-x":Ia()}],"skew-y":[{"skew-y":Ia()}],transform:[{transform:[ye,de,"","none","gpu","cpu"]}],"transform-origin":[{origin:Q()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:Pt()}],"translate-x":[{"translate-x":Pt()}],"translate-y":[{"translate-y":Pt()}],"translate-z":[{"translate-z":Pt()}],"translate-none":["translate-none"],accent:[{accent:ee()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:ee()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",ye,de]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":G()}],"scroll-mx":[{"scroll-mx":G()}],"scroll-my":[{"scroll-my":G()}],"scroll-ms":[{"scroll-ms":G()}],"scroll-me":[{"scroll-me":G()}],"scroll-mbs":[{"scroll-mbs":G()}],"scroll-mbe":[{"scroll-mbe":G()}],"scroll-mt":[{"scroll-mt":G()}],"scroll-mr":[{"scroll-mr":G()}],"scroll-mb":[{"scroll-mb":G()}],"scroll-ml":[{"scroll-ml":G()}],"scroll-p":[{"scroll-p":G()}],"scroll-px":[{"scroll-px":G()}],"scroll-py":[{"scroll-py":G()}],"scroll-ps":[{"scroll-ps":G()}],"scroll-pe":[{"scroll-pe":G()}],"scroll-pbs":[{"scroll-pbs":G()}],"scroll-pbe":[{"scroll-pbe":G()}],"scroll-pt":[{"scroll-pt":G()}],"scroll-pr":[{"scroll-pr":G()}],"scroll-pb":[{"scroll-pb":G()}],"scroll-pl":[{"scroll-pl":G()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",ye,de]}],fill:[{fill:["none",...ee()]}],"stroke-w":[{stroke:[qe,Ks,ui,y1]}],stroke:[{stroke:["none",...ee()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","inset-bs","inset-be","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pbs","pbe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mbs","mbe","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-bs","border-w-be","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-bs","border-color-be","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mbs","scroll-mbe","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pbs","scroll-pbe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},o4=NC(eO);var fc=function(){return fc=Object.assign||function(a){for(var r,l=1,u=arguments.length;l<u;l++){r=arguments[l];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(a[o]=r[o])}return a},fc.apply(this,arguments)};function tO(t,a){var r={};for(var l in t)Object.prototype.hasOwnProperty.call(t,l)&&a.indexOf(l)<0&&(r[l]=t[l]);if(t!=null&&typeof Object.getOwnPropertySymbols=="function")for(var u=0,l=Object.getOwnPropertySymbols(t);u<l.length;u++)a.indexOf(l[u])<0&&Object.prototype.propertyIsEnumerable.call(t,l[u])&&(r[l[u]]=t[l[u]]);return r}function c4(t,a,r){if(r||arguments.length===2)for(var l=0,u=a.length,o;l<u;l++)(o||!(l in a))&&(o||(o=Array.prototype.slice.call(a,0,l)),o[l]=a[l]);return t.concat(o||Array.prototype.slice.call(a))}function Eh(t,a){return typeof t=="function"?t(a):t&&(t.current=a),t}function nO(t,a){var r=z.useState(function(){return{value:t,callback:a,facade:{get current(){return r.value},set current(l){var u=r.value;u!==l&&(r.value=l,r.callback(l,u))}}}})[0];return r.callback=a,r.facade}var aO=typeof window<"u"?z.useLayoutEffect:z.useEffect,v1=new WeakMap;function f4(t,a){var r=nO(null,function(l){return t.forEach(function(u){return Eh(u,l)})});return aO(function(){var l=v1.get(r);if(l){var u=new Set(l),o=new Set(t),d=r.current;u.forEach(function(h){o.has(h)||Eh(h,null)}),o.forEach(function(h){u.has(h)||Eh(h,d)})}v1.set(r,t)},[t]),r}function rO(t){return t}function iO(t,a){a===void 0&&(a=rO);var r=[],l=!1,u={read:function(){if(l)throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");return r.length?r[r.length-1]:t},useMedium:function(o){var d=a(o,l);return r.push(d),function(){r=r.filter(function(h){return h!==d})}},assignSyncMedium:function(o){for(l=!0;r.length;){var d=r;r=[],d.forEach(o)}r={push:function(h){return o(h)},filter:function(){return r}}},assignMedium:function(o){l=!0;var d=[];if(r.length){var h=r;r=[],h.forEach(o),d=r}var y=function(){var g=d;d=[],g.forEach(o)},m=function(){return Promise.resolve().then(y)};m(),r={push:function(g){d.push(g),m()},filter:function(g){return d=d.filter(g),r}}}};return u}function d4(t){t===void 0&&(t={});var a=iO(null);return a.options=fc({async:!0,ssr:!1},t),a}var fS=function(t){var a=t.sideCar,r=tO(t,["sideCar"]);if(!a)throw new Error("Sidecar: please provide `sideCar` property to import the right car");var l=a.read();if(!l)throw new Error("Sidecar medium not found");return z.createElement(l,fc({},r))};fS.isSideCarExport=!0;function h4(t,a){return t.useMedium(a),fS}var lO=function(){if(typeof __webpack_nonce__<"u")return __webpack_nonce__};function sO(){if(!document)return null;var t=document.createElement("style");t.type="text/css";var a=lO();return a&&t.setAttribute("nonce",a),t}function uO(t,a){t.styleSheet?t.styleSheet.cssText=a:t.appendChild(document.createTextNode(a))}function oO(t){var a=document.head||document.getElementsByTagName("head")[0];a.appendChild(t)}var cO=function(){var t=0,a=null;return{add:function(r){t==0&&(a=sO())&&(uO(a,r),oO(a)),t++},remove:function(){t--,!t&&a&&(a.parentNode&&a.parentNode.removeChild(a),a=null)}}},fO=function(){var t=cO();return function(a,r){z.useEffect(function(){return t.add(a),function(){t.remove()}},[a&&r])}},y4=function(){var t=fO(),a=function(r){var l=r.styles,u=r.dynamic;return t(l,u),null};return a},dO=function(t){if(typeof document>"u")return null;var a=Array.isArray(t)?t[0]:t;return a.ownerDocument.body},bl=new WeakMap,Ko=new WeakMap,Po={},xh=0,dS=function(t){return t&&(t.host||dS(t.parentNode))},hO=function(t,a){return a.map(function(r){if(t.contains(r))return r;var l=dS(r);return l&&t.contains(l)?l:(console.error("aria-hidden",r,"in not contained inside",t,". Doing nothing"),null)}).filter(function(r){return!!r})},yO=function(t,a,r,l){var u=hO(a,Array.isArray(t)?t:[t]);Po[r]||(Po[r]=new WeakMap);var o=Po[r],d=[],h=new Set,y=new Set(u),m=function(v){!v||h.has(v)||(h.add(v),m(v.parentNode))};u.forEach(m);var g=function(v){!v||y.has(v)||Array.prototype.forEach.call(v.children,function(E){if(h.has(E))g(E);else try{var _=E.getAttribute(l),w=_!==null&&_!=="false",S=(bl.get(E)||0)+1,x=(o.get(E)||0)+1;bl.set(E,S),o.set(E,x),d.push(E),S===1&&w&&Ko.set(E,!0),x===1&&E.setAttribute(r,"true"),w||E.setAttribute(l,"true")}catch(M){console.error("aria-hidden: cannot operate on ",E,M)}})};return g(a),h.clear(),xh++,function(){d.forEach(function(v){var E=bl.get(v)-1,_=o.get(v)-1;bl.set(v,E),o.set(v,_),E||(Ko.has(v)||v.removeAttribute(l),Ko.delete(v)),_||v.removeAttribute(r)}),xh--,xh||(bl=new WeakMap,bl=new WeakMap,Ko=new WeakMap,Po={})}},m4=function(t,a,r){r===void 0&&(r="data-aria-hidden");var l=Array.from(Array.isArray(t)?t:[t]),u=dO(t);return u?(l.push.apply(l,Array.from(u.querySelectorAll("[aria-live], script"))),yO(l,u,r,"aria-hidden")):function(){return null}};const g1=t=>typeof t=="boolean"?`${t}`:t===0?"0":t,b1=dC,p4=(t,a)=>r=>{var l;if((a==null?void 0:a.variants)==null)return b1(t,r==null?void 0:r.class,r==null?void 0:r.className);const{variants:u,defaultVariants:o}=a,d=Object.keys(u).map(m=>{const g=r==null?void 0:r[m],v=o==null?void 0:o[m];if(g===null)return null;const E=g1(g)||g1(v);return u[m][E]}),h=r&&Object.entries(r).reduce((m,g)=>{let[v,E]=g;return E===void 0||(m[v]=E),m},{}),y=a==null||(l=a.compoundVariants)===null||l===void 0?void 0:l.reduce((m,g)=>{let{class:v,className:E,..._}=g;return Object.entries(_).every(w=>{let[S,x]=w;return Array.isArray(x)?x.includes({...o,...h}[S]):{...o,...h}[S]===x})?[...m,v,E]:m},[]);return b1(t,d,y,r==null?void 0:r.class,r==null?void 0:r.className)};var Ie;(function(t){t.assertEqual=u=>{};function a(u){}t.assertIs=a;function r(u){throw new Error}t.assertNever=r,t.arrayToEnum=u=>{const o={};for(const d of u)o[d]=d;return o},t.getValidEnumValues=u=>{const o=t.objectKeys(u).filter(h=>typeof u[u[h]]!="number"),d={};for(const h of o)d[h]=u[h];return t.objectValues(d)},t.objectValues=u=>t.objectKeys(u).map(function(o){return u[o]}),t.objectKeys=typeof Object.keys=="function"?u=>Object.keys(u):u=>{const o=[];for(const d in u)Object.prototype.hasOwnProperty.call(u,d)&&o.push(d);return o},t.find=(u,o)=>{for(const d of u)if(o(d))return d},t.isInteger=typeof Number.isInteger=="function"?u=>Number.isInteger(u):u=>typeof u=="number"&&Number.isFinite(u)&&Math.floor(u)===u;function l(u,o=" | "){return u.map(d=>typeof d=="string"?`'${d}'`:d).join(o)}t.joinValues=l,t.jsonStringifyReplacer=(u,o)=>typeof o=="bigint"?o.toString():o})(Ie||(Ie={}));var _1;(function(t){t.mergeShapes=(a,r)=>({...a,...r})})(_1||(_1={}));const pe=Ie.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),Ar=t=>{switch(typeof t){case"undefined":return pe.undefined;case"string":return pe.string;case"number":return Number.isNaN(t)?pe.nan:pe.number;case"boolean":return pe.boolean;case"function":return pe.function;case"bigint":return pe.bigint;case"symbol":return pe.symbol;case"object":return Array.isArray(t)?pe.array:t===null?pe.null:t.then&&typeof t.then=="function"&&t.catch&&typeof t.catch=="function"?pe.promise:typeof Map<"u"&&t instanceof Map?pe.map:typeof Set<"u"&&t instanceof Set?pe.set:typeof Date<"u"&&t instanceof Date?pe.date:pe.object;default:return pe.unknown}},I=Ie.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]);class Ka extends Error{get errors(){return this.issues}constructor(a){super(),this.issues=[],this.addIssue=l=>{this.issues=[...this.issues,l]},this.addIssues=(l=[])=>{this.issues=[...this.issues,...l]};const r=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,r):this.__proto__=r,this.name="ZodError",this.issues=a}format(a){const r=a||function(o){return o.message},l={_errors:[]},u=o=>{for(const d of o.issues)if(d.code==="invalid_union")d.unionErrors.map(u);else if(d.code==="invalid_return_type")u(d.returnTypeError);else if(d.code==="invalid_arguments")u(d.argumentsError);else if(d.path.length===0)l._errors.push(r(d));else{let h=l,y=0;for(;y<d.path.length;){const m=d.path[y];y===d.path.length-1?(h[m]=h[m]||{_errors:[]},h[m]._errors.push(r(d))):h[m]=h[m]||{_errors:[]},h=h[m],y++}}};return u(this),l}static assert(a){if(!(a instanceof Ka))throw new Error(`Not a ZodError: ${a}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,Ie.jsonStringifyReplacer,2)}get isEmpty(){return this.issues.length===0}flatten(a=r=>r.message){const r={},l=[];for(const u of this.issues)if(u.path.length>0){const o=u.path[0];r[o]=r[o]||[],r[o].push(a(u))}else l.push(a(u));return{formErrors:l,fieldErrors:r}}get formErrors(){return this.flatten()}}Ka.create=t=>new Ka(t);const jy=(t,a)=>{let r;switch(t.code){case I.invalid_type:t.received===pe.undefined?r="Required":r=`Expected ${t.expected}, received ${t.received}`;break;case I.invalid_literal:r=`Invalid literal value, expected ${JSON.stringify(t.expected,Ie.jsonStringifyReplacer)}`;break;case I.unrecognized_keys:r=`Unrecognized key(s) in object: ${Ie.joinValues(t.keys,", ")}`;break;case I.invalid_union:r="Invalid input";break;case I.invalid_union_discriminator:r=`Invalid discriminator value. Expected ${Ie.joinValues(t.options)}`;break;case I.invalid_enum_value:r=`Invalid enum value. Expected ${Ie.joinValues(t.options)}, received '${t.received}'`;break;case I.invalid_arguments:r="Invalid function arguments";break;case I.invalid_return_type:r="Invalid function return type";break;case I.invalid_date:r="Invalid date";break;case I.invalid_string:typeof t.validation=="object"?"includes"in t.validation?(r=`Invalid input: must include "${t.validation.includes}"`,typeof t.validation.position=="number"&&(r=`${r} at one or more positions greater than or equal to ${t.validation.position}`)):"startsWith"in t.validation?r=`Invalid input: must start with "${t.validation.startsWith}"`:"endsWith"in t.validation?r=`Invalid input: must end with "${t.validation.endsWith}"`:Ie.assertNever(t.validation):t.validation!=="regex"?r=`Invalid ${t.validation}`:r="Invalid";break;case I.too_small:t.type==="array"?r=`Array must contain ${t.exact?"exactly":t.inclusive?"at least":"more than"} ${t.minimum} element(s)`:t.type==="string"?r=`String must contain ${t.exact?"exactly":t.inclusive?"at least":"over"} ${t.minimum} character(s)`:t.type==="number"?r=`Number must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${t.minimum}`:t.type==="bigint"?r=`Number must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${t.minimum}`:t.type==="date"?r=`Date must be ${t.exact?"exactly equal to ":t.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(t.minimum))}`:r="Invalid input";break;case I.too_big:t.type==="array"?r=`Array must contain ${t.exact?"exactly":t.inclusive?"at most":"less than"} ${t.maximum} element(s)`:t.type==="string"?r=`String must contain ${t.exact?"exactly":t.inclusive?"at most":"under"} ${t.maximum} character(s)`:t.type==="number"?r=`Number must be ${t.exact?"exactly":t.inclusive?"less than or equal to":"less than"} ${t.maximum}`:t.type==="bigint"?r=`BigInt must be ${t.exact?"exactly":t.inclusive?"less than or equal to":"less than"} ${t.maximum}`:t.type==="date"?r=`Date must be ${t.exact?"exactly":t.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(t.maximum))}`:r="Invalid input";break;case I.custom:r="Invalid input";break;case I.invalid_intersection_types:r="Intersection results could not be merged";break;case I.not_multiple_of:r=`Number must be a multiple of ${t.multipleOf}`;break;case I.not_finite:r="Number must be finite";break;default:r=a.defaultError,Ie.assertNever(t)}return{message:r}};let mO=jy;function pO(){return mO}const vO=t=>{const{data:a,path:r,errorMaps:l,issueData:u}=t,o=[...r,...u.path||[]],d={...u,path:o};if(u.message!==void 0)return{...u,path:o,message:u.message};let h="";const y=l.filter(m=>!!m).slice().reverse();for(const m of y)h=m(d,{data:a,defaultError:h}).message;return{...u,path:o,message:h}};function se(t,a){const r=pO(),l=vO({issueData:a,data:t.data,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,r,r===jy?void 0:jy].filter(u=>!!u)});t.common.issues.push(l)}class On{constructor(){this.value="valid"}dirty(){this.value==="valid"&&(this.value="dirty")}abort(){this.value!=="aborted"&&(this.value="aborted")}static mergeArray(a,r){const l=[];for(const u of r){if(u.status==="aborted")return Me;u.status==="dirty"&&a.dirty(),l.push(u.value)}return{status:a.value,value:l}}static async mergeObjectAsync(a,r){const l=[];for(const u of r){const o=await u.key,d=await u.value;l.push({key:o,value:d})}return On.mergeObjectSync(a,l)}static mergeObjectSync(a,r){const l={};for(const u of r){const{key:o,value:d}=u;if(o.status==="aborted"||d.status==="aborted")return Me;o.status==="dirty"&&a.dirty(),d.status==="dirty"&&a.dirty(),o.value!=="__proto__"&&(typeof d.value<"u"||u.alwaysSet)&&(l[o.value]=d.value)}return{status:a.value,value:l}}}const Me=Object.freeze({status:"aborted"}),Is=t=>({status:"dirty",value:t}),Kn=t=>({status:"valid",value:t}),S1=t=>t.status==="aborted",E1=t=>t.status==="dirty",ql=t=>t.status==="valid",dc=t=>typeof Promise<"u"&&t instanceof Promise;var _e;(function(t){t.errToObj=a=>typeof a=="string"?{message:a}:a||{},t.toString=a=>typeof a=="string"?a:a==null?void 0:a.message})(_e||(_e={}));class Vr{constructor(a,r,l,u){this._cachedPath=[],this.parent=a,this.data=r,this._path=l,this._key=u}get path(){return this._cachedPath.length||(Array.isArray(this._key)?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}}const x1=(t,a)=>{if(ql(a))return{success:!0,data:a.value};if(!t.common.issues.length)throw new Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;const r=new Ka(t.common.issues);return this._error=r,this._error}}};function He(t){if(!t)return{};const{errorMap:a,invalid_type_error:r,required_error:l,description:u}=t;if(a&&(r||l))throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);return a?{errorMap:a,description:u}:{errorMap:(d,h)=>{const{message:y}=t;return d.code==="invalid_enum_value"?{message:y??h.defaultError}:typeof h.data>"u"?{message:y??l??h.defaultError}:d.code!=="invalid_type"?{message:h.defaultError}:{message:y??r??h.defaultError}},description:u}}class $e{get description(){return this._def.description}_getType(a){return Ar(a.data)}_getOrReturnCtx(a,r){return r||{common:a.parent.common,data:a.data,parsedType:Ar(a.data),schemaErrorMap:this._def.errorMap,path:a.path,parent:a.parent}}_processInputParams(a){return{status:new On,ctx:{common:a.parent.common,data:a.data,parsedType:Ar(a.data),schemaErrorMap:this._def.errorMap,path:a.path,parent:a.parent}}}_parseSync(a){const r=this._parse(a);if(dc(r))throw new Error("Synchronous parse encountered promise.");return r}_parseAsync(a){const r=this._parse(a);return Promise.resolve(r)}parse(a,r){const l=this.safeParse(a,r);if(l.success)return l.data;throw l.error}safeParse(a,r){const l={common:{issues:[],async:(r==null?void 0:r.async)??!1,contextualErrorMap:r==null?void 0:r.errorMap},path:(r==null?void 0:r.path)||[],schemaErrorMap:this._def.errorMap,parent:null,data:a,parsedType:Ar(a)},u=this._parseSync({data:a,path:l.path,parent:l});return x1(l,u)}"~validate"(a){var l,u;const r={common:{issues:[],async:!!this["~standard"].async},path:[],schemaErrorMap:this._def.errorMap,parent:null,data:a,parsedType:Ar(a)};if(!this["~standard"].async)try{const o=this._parseSync({data:a,path:[],parent:r});return ql(o)?{value:o.value}:{issues:r.common.issues}}catch(o){(u=(l=o==null?void 0:o.message)==null?void 0:l.toLowerCase())!=null&&u.includes("encountered")&&(this["~standard"].async=!0),r.common={issues:[],async:!0}}return this._parseAsync({data:a,path:[],parent:r}).then(o=>ql(o)?{value:o.value}:{issues:r.common.issues})}async parseAsync(a,r){const l=await this.safeParseAsync(a,r);if(l.success)return l.data;throw l.error}async safeParseAsync(a,r){const l={common:{issues:[],contextualErrorMap:r==null?void 0:r.errorMap,async:!0},path:(r==null?void 0:r.path)||[],schemaErrorMap:this._def.errorMap,parent:null,data:a,parsedType:Ar(a)},u=this._parse({data:a,path:l.path,parent:l}),o=await(dc(u)?u:Promise.resolve(u));return x1(l,o)}refine(a,r){const l=u=>typeof r=="string"||typeof r>"u"?{message:r}:typeof r=="function"?r(u):r;return this._refinement((u,o)=>{const d=a(u),h=()=>o.addIssue({code:I.custom,...l(u)});return typeof Promise<"u"&&d instanceof Promise?d.then(y=>y?!0:(h(),!1)):d?!0:(h(),!1)})}refinement(a,r){return this._refinement((l,u)=>a(l)?!0:(u.addIssue(typeof r=="function"?r(l,u):r),!1))}_refinement(a){return new Hl({schema:this,typeName:ke.ZodEffects,effect:{type:"refinement",refinement:a}})}superRefine(a){return this._refinement(a)}constructor(a){this.spa=this.safeParseAsync,this._def=a,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this),this["~standard"]={version:1,vendor:"zod",validate:r=>this["~validate"](r)}}optional(){return Br.create(this,this._def)}nullable(){return Zl.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return va.create(this)}promise(){return pc.create(this,this._def)}or(a){return yc.create([this,a],this._def)}and(a){return mc.create(this,a,this._def)}transform(a){return new Hl({...He(this._def),schema:this,typeName:ke.ZodEffects,effect:{type:"transform",transform:a}})}default(a){const r=typeof a=="function"?a:()=>a;return new By({...He(this._def),innerType:this,defaultValue:r,typeName:ke.ZodDefault})}brand(){return new VO({typeName:ke.ZodBranded,type:this,...He(this._def)})}catch(a){const r=typeof a=="function"?a:()=>a;return new Vy({...He(this._def),innerType:this,catchValue:r,typeName:ke.ZodCatch})}describe(a){const r=this.constructor;return new r({...this._def,description:a})}pipe(a){return Em.create(this,a)}readonly(){return Hy.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}}const gO=/^c[^\s-]{8,}$/i,bO=/^[0-9a-z]+$/,_O=/^[0-9A-HJKMNP-TV-Z]{26}$/i,SO=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i,EO=/^[a-z0-9_-]{21}$/i,xO=/^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$/,wO=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,TO=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i,AO="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";let wh;const CO=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,OO=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/(3[0-2]|[12]?[0-9])$/,RO=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$/,MO=/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,kO=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,zO=/^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/,hS="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",NO=new RegExp(`^${hS}$`);function yS(t){let a="[0-5]\\d";t.precision?a=`${a}\\.\\d{${t.precision}}`:t.precision==null&&(a=`${a}(\\.\\d+)?`);const r=t.precision?"+":"?";return`([01]\\d|2[0-3]):[0-5]\\d(:${a})${r}`}function DO(t){return new RegExp(`^${yS(t)}$`)}function UO(t){let a=`${hS}T${yS(t)}`;const r=[];return r.push(t.local?"Z?":"Z"),t.offset&&r.push("([+-]\\d{2}:?\\d{2})"),a=`${a}(${r.join("|")})`,new RegExp(`^${a}$`)}function LO(t,a){return!!((a==="v4"||!a)&&CO.test(t)||(a==="v6"||!a)&&RO.test(t))}function jO(t,a){if(!xO.test(t))return!1;try{const[r]=t.split(".");if(!r)return!1;const l=r.replace(/-/g,"+").replace(/_/g,"/").padEnd(r.length+(4-r.length%4)%4,"="),u=JSON.parse(atob(l));return!(typeof u!="object"||u===null||"typ"in u&&(u==null?void 0:u.typ)!=="JWT"||!u.alg||a&&u.alg!==a)}catch{return!1}}function qO(t,a){return!!((a==="v4"||!a)&&OO.test(t)||(a==="v6"||!a)&&MO.test(t))}class Ya extends $e{_parse(a){if(this._def.coerce&&(a.data=String(a.data)),this._getType(a)!==pe.string){const o=this._getOrReturnCtx(a);return se(o,{code:I.invalid_type,expected:pe.string,received:o.parsedType}),Me}const l=new On;let u;for(const o of this._def.checks)if(o.kind==="min")a.data.length<o.value&&(u=this._getOrReturnCtx(a,u),se(u,{code:I.too_small,minimum:o.value,type:"string",inclusive:!0,exact:!1,message:o.message}),l.dirty());else if(o.kind==="max")a.data.length>o.value&&(u=this._getOrReturnCtx(a,u),se(u,{code:I.too_big,maximum:o.value,type:"string",inclusive:!0,exact:!1,message:o.message}),l.dirty());else if(o.kind==="length"){const d=a.data.length>o.value,h=a.data.length<o.value;(d||h)&&(u=this._getOrReturnCtx(a,u),d?se(u,{code:I.too_big,maximum:o.value,type:"string",inclusive:!0,exact:!0,message:o.message}):h&&se(u,{code:I.too_small,minimum:o.value,type:"string",inclusive:!0,exact:!0,message:o.message}),l.dirty())}else if(o.kind==="email")TO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"email",code:I.invalid_string,message:o.message}),l.dirty());else if(o.kind==="emoji")wh||(wh=new RegExp(AO,"u")),wh.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"emoji",code:I.invalid_string,message:o.message}),l.dirty());else if(o.kind==="uuid")SO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"uuid",code:I.invalid_string,message:o.message}),l.dirty());else if(o.kind==="nanoid")EO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"nanoid",code:I.invalid_string,message:o.message}),l.dirty());else if(o.kind==="cuid")gO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"cuid",code:I.invalid_string,message:o.message}),l.dirty());else if(o.kind==="cuid2")bO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"cuid2",code:I.invalid_string,message:o.message}),l.dirty());else if(o.kind==="ulid")_O.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"ulid",code:I.invalid_string,message:o.message}),l.dirty());else if(o.kind==="url")try{new URL(a.data)}catch{u=this._getOrReturnCtx(a,u),se(u,{validation:"url",code:I.invalid_string,message:o.message}),l.dirty()}else o.kind==="regex"?(o.regex.lastIndex=0,o.regex.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"regex",code:I.invalid_string,message:o.message}),l.dirty())):o.kind==="trim"?a.data=a.data.trim():o.kind==="includes"?a.data.includes(o.value,o.position)||(u=this._getOrReturnCtx(a,u),se(u,{code:I.invalid_string,validation:{includes:o.value,position:o.position},message:o.message}),l.dirty()):o.kind==="toLowerCase"?a.data=a.data.toLowerCase():o.kind==="toUpperCase"?a.data=a.data.toUpperCase():o.kind==="startsWith"?a.data.startsWith(o.value)||(u=this._getOrReturnCtx(a,u),se(u,{code:I.invalid_string,validation:{startsWith:o.value},message:o.message}),l.dirty()):o.kind==="endsWith"?a.data.endsWith(o.value)||(u=this._getOrReturnCtx(a,u),se(u,{code:I.invalid_string,validation:{endsWith:o.value},message:o.message}),l.dirty()):o.kind==="datetime"?UO(o).test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{code:I.invalid_string,validation:"datetime",message:o.message}),l.dirty()):o.kind==="date"?NO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{code:I.invalid_string,validation:"date",message:o.message}),l.dirty()):o.kind==="time"?DO(o).test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{code:I.invalid_string,validation:"time",message:o.message}),l.dirty()):o.kind==="duration"?wO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"duration",code:I.invalid_string,message:o.message}),l.dirty()):o.kind==="ip"?LO(a.data,o.version)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"ip",code:I.invalid_string,message:o.message}),l.dirty()):o.kind==="jwt"?jO(a.data,o.alg)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"jwt",code:I.invalid_string,message:o.message}),l.dirty()):o.kind==="cidr"?qO(a.data,o.version)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"cidr",code:I.invalid_string,message:o.message}),l.dirty()):o.kind==="base64"?kO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"base64",code:I.invalid_string,message:o.message}),l.dirty()):o.kind==="base64url"?zO.test(a.data)||(u=this._getOrReturnCtx(a,u),se(u,{validation:"base64url",code:I.invalid_string,message:o.message}),l.dirty()):Ie.assertNever(o);return{status:l.value,value:a.data}}_regex(a,r,l){return this.refinement(u=>a.test(u),{validation:r,code:I.invalid_string,..._e.errToObj(l)})}_addCheck(a){return new Ya({...this._def,checks:[...this._def.checks,a]})}email(a){return this._addCheck({kind:"email",..._e.errToObj(a)})}url(a){return this._addCheck({kind:"url",..._e.errToObj(a)})}emoji(a){return this._addCheck({kind:"emoji",..._e.errToObj(a)})}uuid(a){return this._addCheck({kind:"uuid",..._e.errToObj(a)})}nanoid(a){return this._addCheck({kind:"nanoid",..._e.errToObj(a)})}cuid(a){return this._addCheck({kind:"cuid",..._e.errToObj(a)})}cuid2(a){return this._addCheck({kind:"cuid2",..._e.errToObj(a)})}ulid(a){return this._addCheck({kind:"ulid",..._e.errToObj(a)})}base64(a){return this._addCheck({kind:"base64",..._e.errToObj(a)})}base64url(a){return this._addCheck({kind:"base64url",..._e.errToObj(a)})}jwt(a){return this._addCheck({kind:"jwt",..._e.errToObj(a)})}ip(a){return this._addCheck({kind:"ip",..._e.errToObj(a)})}cidr(a){return this._addCheck({kind:"cidr",..._e.errToObj(a)})}datetime(a){return typeof a=="string"?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:a}):this._addCheck({kind:"datetime",precision:typeof(a==null?void 0:a.precision)>"u"?null:a==null?void 0:a.precision,offset:(a==null?void 0:a.offset)??!1,local:(a==null?void 0:a.local)??!1,..._e.errToObj(a==null?void 0:a.message)})}date(a){return this._addCheck({kind:"date",message:a})}time(a){return typeof a=="string"?this._addCheck({kind:"time",precision:null,message:a}):this._addCheck({kind:"time",precision:typeof(a==null?void 0:a.precision)>"u"?null:a==null?void 0:a.precision,..._e.errToObj(a==null?void 0:a.message)})}duration(a){return this._addCheck({kind:"duration",..._e.errToObj(a)})}regex(a,r){return this._addCheck({kind:"regex",regex:a,..._e.errToObj(r)})}includes(a,r){return this._addCheck({kind:"includes",value:a,position:r==null?void 0:r.position,..._e.errToObj(r==null?void 0:r.message)})}startsWith(a,r){return this._addCheck({kind:"startsWith",value:a,..._e.errToObj(r)})}endsWith(a,r){return this._addCheck({kind:"endsWith",value:a,..._e.errToObj(r)})}min(a,r){return this._addCheck({kind:"min",value:a,..._e.errToObj(r)})}max(a,r){return this._addCheck({kind:"max",value:a,..._e.errToObj(r)})}length(a,r){return this._addCheck({kind:"length",value:a,..._e.errToObj(r)})}nonempty(a){return this.min(1,_e.errToObj(a))}trim(){return new Ya({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new Ya({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new Ya({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find(a=>a.kind==="datetime")}get isDate(){return!!this._def.checks.find(a=>a.kind==="date")}get isTime(){return!!this._def.checks.find(a=>a.kind==="time")}get isDuration(){return!!this._def.checks.find(a=>a.kind==="duration")}get isEmail(){return!!this._def.checks.find(a=>a.kind==="email")}get isURL(){return!!this._def.checks.find(a=>a.kind==="url")}get isEmoji(){return!!this._def.checks.find(a=>a.kind==="emoji")}get isUUID(){return!!this._def.checks.find(a=>a.kind==="uuid")}get isNANOID(){return!!this._def.checks.find(a=>a.kind==="nanoid")}get isCUID(){return!!this._def.checks.find(a=>a.kind==="cuid")}get isCUID2(){return!!this._def.checks.find(a=>a.kind==="cuid2")}get isULID(){return!!this._def.checks.find(a=>a.kind==="ulid")}get isIP(){return!!this._def.checks.find(a=>a.kind==="ip")}get isCIDR(){return!!this._def.checks.find(a=>a.kind==="cidr")}get isBase64(){return!!this._def.checks.find(a=>a.kind==="base64")}get isBase64url(){return!!this._def.checks.find(a=>a.kind==="base64url")}get minLength(){let a=null;for(const r of this._def.checks)r.kind==="min"&&(a===null||r.value>a)&&(a=r.value);return a}get maxLength(){let a=null;for(const r of this._def.checks)r.kind==="max"&&(a===null||r.value<a)&&(a=r.value);return a}}Ya.create=t=>new Ya({checks:[],typeName:ke.ZodString,coerce:(t==null?void 0:t.coerce)??!1,...He(t)});function BO(t,a){const r=(t.toString().split(".")[1]||"").length,l=(a.toString().split(".")[1]||"").length,u=r>l?r:l,o=Number.parseInt(t.toFixed(u).replace(".","")),d=Number.parseInt(a.toFixed(u).replace(".",""));return o%d/10**u}class Ti extends $e{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(a){if(this._def.coerce&&(a.data=Number(a.data)),this._getType(a)!==pe.number){const o=this._getOrReturnCtx(a);return se(o,{code:I.invalid_type,expected:pe.number,received:o.parsedType}),Me}let l;const u=new On;for(const o of this._def.checks)o.kind==="int"?Ie.isInteger(a.data)||(l=this._getOrReturnCtx(a,l),se(l,{code:I.invalid_type,expected:"integer",received:"float",message:o.message}),u.dirty()):o.kind==="min"?(o.inclusive?a.data<o.value:a.data<=o.value)&&(l=this._getOrReturnCtx(a,l),se(l,{code:I.too_small,minimum:o.value,type:"number",inclusive:o.inclusive,exact:!1,message:o.message}),u.dirty()):o.kind==="max"?(o.inclusive?a.data>o.value:a.data>=o.value)&&(l=this._getOrReturnCtx(a,l),se(l,{code:I.too_big,maximum:o.value,type:"number",inclusive:o.inclusive,exact:!1,message:o.message}),u.dirty()):o.kind==="multipleOf"?BO(a.data,o.value)!==0&&(l=this._getOrReturnCtx(a,l),se(l,{code:I.not_multiple_of,multipleOf:o.value,message:o.message}),u.dirty()):o.kind==="finite"?Number.isFinite(a.data)||(l=this._getOrReturnCtx(a,l),se(l,{code:I.not_finite,message:o.message}),u.dirty()):Ie.assertNever(o);return{status:u.value,value:a.data}}gte(a,r){return this.setLimit("min",a,!0,_e.toString(r))}gt(a,r){return this.setLimit("min",a,!1,_e.toString(r))}lte(a,r){return this.setLimit("max",a,!0,_e.toString(r))}lt(a,r){return this.setLimit("max",a,!1,_e.toString(r))}setLimit(a,r,l,u){return new Ti({...this._def,checks:[...this._def.checks,{kind:a,value:r,inclusive:l,message:_e.toString(u)}]})}_addCheck(a){return new Ti({...this._def,checks:[...this._def.checks,a]})}int(a){return this._addCheck({kind:"int",message:_e.toString(a)})}positive(a){return this._addCheck({kind:"min",value:0,inclusive:!1,message:_e.toString(a)})}negative(a){return this._addCheck({kind:"max",value:0,inclusive:!1,message:_e.toString(a)})}nonpositive(a){return this._addCheck({kind:"max",value:0,inclusive:!0,message:_e.toString(a)})}nonnegative(a){return this._addCheck({kind:"min",value:0,inclusive:!0,message:_e.toString(a)})}multipleOf(a,r){return this._addCheck({kind:"multipleOf",value:a,message:_e.toString(r)})}finite(a){return this._addCheck({kind:"finite",message:_e.toString(a)})}safe(a){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:_e.toString(a)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:_e.toString(a)})}get minValue(){let a=null;for(const r of this._def.checks)r.kind==="min"&&(a===null||r.value>a)&&(a=r.value);return a}get maxValue(){let a=null;for(const r of this._def.checks)r.kind==="max"&&(a===null||r.value<a)&&(a=r.value);return a}get isInt(){return!!this._def.checks.find(a=>a.kind==="int"||a.kind==="multipleOf"&&Ie.isInteger(a.value))}get isFinite(){let a=null,r=null;for(const l of this._def.checks){if(l.kind==="finite"||l.kind==="int"||l.kind==="multipleOf")return!0;l.kind==="min"?(r===null||l.value>r)&&(r=l.value):l.kind==="max"&&(a===null||l.value<a)&&(a=l.value)}return Number.isFinite(r)&&Number.isFinite(a)}}Ti.create=t=>new Ti({checks:[],typeName:ke.ZodNumber,coerce:(t==null?void 0:t.coerce)||!1,...He(t)});class Ai extends $e{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(a){if(this._def.coerce)try{a.data=BigInt(a.data)}catch{return this._getInvalidInput(a)}if(this._getType(a)!==pe.bigint)return this._getInvalidInput(a);let l;const u=new On;for(const o of this._def.checks)o.kind==="min"?(o.inclusive?a.data<o.value:a.data<=o.value)&&(l=this._getOrReturnCtx(a,l),se(l,{code:I.too_small,type:"bigint",minimum:o.value,inclusive:o.inclusive,message:o.message}),u.dirty()):o.kind==="max"?(o.inclusive?a.data>o.value:a.data>=o.value)&&(l=this._getOrReturnCtx(a,l),se(l,{code:I.too_big,type:"bigint",maximum:o.value,inclusive:o.inclusive,message:o.message}),u.dirty()):o.kind==="multipleOf"?a.data%o.value!==BigInt(0)&&(l=this._getOrReturnCtx(a,l),se(l,{code:I.not_multiple_of,multipleOf:o.value,message:o.message}),u.dirty()):Ie.assertNever(o);return{status:u.value,value:a.data}}_getInvalidInput(a){const r=this._getOrReturnCtx(a);return se(r,{code:I.invalid_type,expected:pe.bigint,received:r.parsedType}),Me}gte(a,r){return this.setLimit("min",a,!0,_e.toString(r))}gt(a,r){return this.setLimit("min",a,!1,_e.toString(r))}lte(a,r){return this.setLimit("max",a,!0,_e.toString(r))}lt(a,r){return this.setLimit("max",a,!1,_e.toString(r))}setLimit(a,r,l,u){return new Ai({...this._def,checks:[...this._def.checks,{kind:a,value:r,inclusive:l,message:_e.toString(u)}]})}_addCheck(a){return new Ai({...this._def,checks:[...this._def.checks,a]})}positive(a){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:_e.toString(a)})}negative(a){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:_e.toString(a)})}nonpositive(a){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:_e.toString(a)})}nonnegative(a){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:_e.toString(a)})}multipleOf(a,r){return this._addCheck({kind:"multipleOf",value:a,message:_e.toString(r)})}get minValue(){let a=null;for(const r of this._def.checks)r.kind==="min"&&(a===null||r.value>a)&&(a=r.value);return a}get maxValue(){let a=null;for(const r of this._def.checks)r.kind==="max"&&(a===null||r.value<a)&&(a=r.value);return a}}Ai.create=t=>new Ai({checks:[],typeName:ke.ZodBigInt,coerce:(t==null?void 0:t.coerce)??!1,...He(t)});class hc extends $e{_parse(a){if(this._def.coerce&&(a.data=!!a.data),this._getType(a)!==pe.boolean){const l=this._getOrReturnCtx(a);return se(l,{code:I.invalid_type,expected:pe.boolean,received:l.parsedType}),Me}return Kn(a.data)}}hc.create=t=>new hc({typeName:ke.ZodBoolean,coerce:(t==null?void 0:t.coerce)||!1,...He(t)});class Bl extends $e{_parse(a){if(this._def.coerce&&(a.data=new Date(a.data)),this._getType(a)!==pe.date){const o=this._getOrReturnCtx(a);return se(o,{code:I.invalid_type,expected:pe.date,received:o.parsedType}),Me}if(Number.isNaN(a.data.getTime())){const o=this._getOrReturnCtx(a);return se(o,{code:I.invalid_date}),Me}const l=new On;let u;for(const o of this._def.checks)o.kind==="min"?a.data.getTime()<o.value&&(u=this._getOrReturnCtx(a,u),se(u,{code:I.too_small,message:o.message,inclusive:!0,exact:!1,minimum:o.value,type:"date"}),l.dirty()):o.kind==="max"?a.data.getTime()>o.value&&(u=this._getOrReturnCtx(a,u),se(u,{code:I.too_big,message:o.message,inclusive:!0,exact:!1,maximum:o.value,type:"date"}),l.dirty()):Ie.assertNever(o);return{status:l.value,value:new Date(a.data.getTime())}}_addCheck(a){return new Bl({...this._def,checks:[...this._def.checks,a]})}min(a,r){return this._addCheck({kind:"min",value:a.getTime(),message:_e.toString(r)})}max(a,r){return this._addCheck({kind:"max",value:a.getTime(),message:_e.toString(r)})}get minDate(){let a=null;for(const r of this._def.checks)r.kind==="min"&&(a===null||r.value>a)&&(a=r.value);return a!=null?new Date(a):null}get maxDate(){let a=null;for(const r of this._def.checks)r.kind==="max"&&(a===null||r.value<a)&&(a=r.value);return a!=null?new Date(a):null}}Bl.create=t=>new Bl({checks:[],coerce:(t==null?void 0:t.coerce)||!1,typeName:ke.ZodDate,...He(t)});class w1 extends $e{_parse(a){if(this._getType(a)!==pe.symbol){const l=this._getOrReturnCtx(a);return se(l,{code:I.invalid_type,expected:pe.symbol,received:l.parsedType}),Me}return Kn(a.data)}}w1.create=t=>new w1({typeName:ke.ZodSymbol,...He(t)});class T1 extends $e{_parse(a){if(this._getType(a)!==pe.undefined){const l=this._getOrReturnCtx(a);return se(l,{code:I.invalid_type,expected:pe.undefined,received:l.parsedType}),Me}return Kn(a.data)}}T1.create=t=>new T1({typeName:ke.ZodUndefined,...He(t)});class A1 extends $e{_parse(a){if(this._getType(a)!==pe.null){const l=this._getOrReturnCtx(a);return se(l,{code:I.invalid_type,expected:pe.null,received:l.parsedType}),Me}return Kn(a.data)}}A1.create=t=>new A1({typeName:ke.ZodNull,...He(t)});class C1 extends $e{constructor(){super(...arguments),this._any=!0}_parse(a){return Kn(a.data)}}C1.create=t=>new C1({typeName:ke.ZodAny,...He(t)});class O1 extends $e{constructor(){super(...arguments),this._unknown=!0}_parse(a){return Kn(a.data)}}O1.create=t=>new O1({typeName:ke.ZodUnknown,...He(t)});class Hr extends $e{_parse(a){const r=this._getOrReturnCtx(a);return se(r,{code:I.invalid_type,expected:pe.never,received:r.parsedType}),Me}}Hr.create=t=>new Hr({typeName:ke.ZodNever,...He(t)});class R1 extends $e{_parse(a){if(this._getType(a)!==pe.undefined){const l=this._getOrReturnCtx(a);return se(l,{code:I.invalid_type,expected:pe.void,received:l.parsedType}),Me}return Kn(a.data)}}R1.create=t=>new R1({typeName:ke.ZodVoid,...He(t)});class va extends $e{_parse(a){const{ctx:r,status:l}=this._processInputParams(a),u=this._def;if(r.parsedType!==pe.array)return se(r,{code:I.invalid_type,expected:pe.array,received:r.parsedType}),Me;if(u.exactLength!==null){const d=r.data.length>u.exactLength.value,h=r.data.length<u.exactLength.value;(d||h)&&(se(r,{code:d?I.too_big:I.too_small,minimum:h?u.exactLength.value:void 0,maximum:d?u.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:u.exactLength.message}),l.dirty())}if(u.minLength!==null&&r.data.length<u.minLength.value&&(se(r,{code:I.too_small,minimum:u.minLength.value,type:"array",inclusive:!0,exact:!1,message:u.minLength.message}),l.dirty()),u.maxLength!==null&&r.data.length>u.maxLength.value&&(se(r,{code:I.too_big,maximum:u.maxLength.value,type:"array",inclusive:!0,exact:!1,message:u.maxLength.message}),l.dirty()),r.common.async)return Promise.all([...r.data].map((d,h)=>u.type._parseAsync(new Vr(r,d,r.path,h)))).then(d=>On.mergeArray(l,d));const o=[...r.data].map((d,h)=>u.type._parseSync(new Vr(r,d,r.path,h)));return On.mergeArray(l,o)}get element(){return this._def.type}min(a,r){return new va({...this._def,minLength:{value:a,message:_e.toString(r)}})}max(a,r){return new va({...this._def,maxLength:{value:a,message:_e.toString(r)}})}length(a,r){return new va({...this._def,exactLength:{value:a,message:_e.toString(r)}})}nonempty(a){return this.min(1,a)}}va.create=(t,a)=>new va({type:t,minLength:null,maxLength:null,exactLength:null,typeName:ke.ZodArray,...He(a)});function El(t){if(t instanceof zt){const a={};for(const r in t.shape){const l=t.shape[r];a[r]=Br.create(El(l))}return new zt({...t._def,shape:()=>a})}else return t instanceof va?new va({...t._def,type:El(t.element)}):t instanceof Br?Br.create(El(t.unwrap())):t instanceof Zl?Zl.create(El(t.unwrap())):t instanceof Ci?Ci.create(t.items.map(a=>El(a))):t}class zt extends $e{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(this._cached!==null)return this._cached;const a=this._def.shape(),r=Ie.objectKeys(a);return this._cached={shape:a,keys:r},this._cached}_parse(a){if(this._getType(a)!==pe.object){const m=this._getOrReturnCtx(a);return se(m,{code:I.invalid_type,expected:pe.object,received:m.parsedType}),Me}const{status:l,ctx:u}=this._processInputParams(a),{shape:o,keys:d}=this._getCached(),h=[];if(!(this._def.catchall instanceof Hr&&this._def.unknownKeys==="strip"))for(const m in u.data)d.includes(m)||h.push(m);const y=[];for(const m of d){const g=o[m],v=u.data[m];y.push({key:{status:"valid",value:m},value:g._parse(new Vr(u,v,u.path,m)),alwaysSet:m in u.data})}if(this._def.catchall instanceof Hr){const m=this._def.unknownKeys;if(m==="passthrough")for(const g of h)y.push({key:{status:"valid",value:g},value:{status:"valid",value:u.data[g]}});else if(m==="strict")h.length>0&&(se(u,{code:I.unrecognized_keys,keys:h}),l.dirty());else if(m!=="strip")throw new Error("Internal ZodObject error: invalid unknownKeys value.")}else{const m=this._def.catchall;for(const g of h){const v=u.data[g];y.push({key:{status:"valid",value:g},value:m._parse(new Vr(u,v,u.path,g)),alwaysSet:g in u.data})}}return u.common.async?Promise.resolve().then(async()=>{const m=[];for(const g of y){const v=await g.key,E=await g.value;m.push({key:v,value:E,alwaysSet:g.alwaysSet})}return m}).then(m=>On.mergeObjectSync(l,m)):On.mergeObjectSync(l,y)}get shape(){return this._def.shape()}strict(a){return _e.errToObj,new zt({...this._def,unknownKeys:"strict",...a!==void 0?{errorMap:(r,l)=>{var o,d;const u=((d=(o=this._def).errorMap)==null?void 0:d.call(o,r,l).message)??l.defaultError;return r.code==="unrecognized_keys"?{message:_e.errToObj(a).message??u}:{message:u}}}:{}})}strip(){return new zt({...this._def,unknownKeys:"strip"})}passthrough(){return new zt({...this._def,unknownKeys:"passthrough"})}extend(a){return new zt({...this._def,shape:()=>({...this._def.shape(),...a})})}merge(a){return new zt({unknownKeys:a._def.unknownKeys,catchall:a._def.catchall,shape:()=>({...this._def.shape(),...a._def.shape()}),typeName:ke.ZodObject})}setKey(a,r){return this.augment({[a]:r})}catchall(a){return new zt({...this._def,catchall:a})}pick(a){const r={};for(const l of Ie.objectKeys(a))a[l]&&this.shape[l]&&(r[l]=this.shape[l]);return new zt({...this._def,shape:()=>r})}omit(a){const r={};for(const l of Ie.objectKeys(this.shape))a[l]||(r[l]=this.shape[l]);return new zt({...this._def,shape:()=>r})}deepPartial(){return El(this)}partial(a){const r={};for(const l of Ie.objectKeys(this.shape)){const u=this.shape[l];a&&!a[l]?r[l]=u:r[l]=u.optional()}return new zt({...this._def,shape:()=>r})}required(a){const r={};for(const l of Ie.objectKeys(this.shape))if(a&&!a[l])r[l]=this.shape[l];else{let o=this.shape[l];for(;o instanceof Br;)o=o._def.innerType;r[l]=o}return new zt({...this._def,shape:()=>r})}keyof(){return mS(Ie.objectKeys(this.shape))}}zt.create=(t,a)=>new zt({shape:()=>t,unknownKeys:"strip",catchall:Hr.create(),typeName:ke.ZodObject,...He(a)});zt.strictCreate=(t,a)=>new zt({shape:()=>t,unknownKeys:"strict",catchall:Hr.create(),typeName:ke.ZodObject,...He(a)});zt.lazycreate=(t,a)=>new zt({shape:t,unknownKeys:"strip",catchall:Hr.create(),typeName:ke.ZodObject,...He(a)});class yc extends $e{_parse(a){const{ctx:r}=this._processInputParams(a),l=this._def.options;function u(o){for(const h of o)if(h.result.status==="valid")return h.result;for(const h of o)if(h.result.status==="dirty")return r.common.issues.push(...h.ctx.common.issues),h.result;const d=o.map(h=>new Ka(h.ctx.common.issues));return se(r,{code:I.invalid_union,unionErrors:d}),Me}if(r.common.async)return Promise.all(l.map(async o=>{const d={...r,common:{...r.common,issues:[]},parent:null};return{result:await o._parseAsync({data:r.data,path:r.path,parent:d}),ctx:d}})).then(u);{let o;const d=[];for(const y of l){const m={...r,common:{...r.common,issues:[]},parent:null},g=y._parseSync({data:r.data,path:r.path,parent:m});if(g.status==="valid")return g;g.status==="dirty"&&!o&&(o={result:g,ctx:m}),m.common.issues.length&&d.push(m.common.issues)}if(o)return r.common.issues.push(...o.ctx.common.issues),o.result;const h=d.map(y=>new Ka(y));return se(r,{code:I.invalid_union,unionErrors:h}),Me}}get options(){return this._def.options}}yc.create=(t,a)=>new yc({options:t,typeName:ke.ZodUnion,...He(a)});function qy(t,a){const r=Ar(t),l=Ar(a);if(t===a)return{valid:!0,data:t};if(r===pe.object&&l===pe.object){const u=Ie.objectKeys(a),o=Ie.objectKeys(t).filter(h=>u.indexOf(h)!==-1),d={...t,...a};for(const h of o){const y=qy(t[h],a[h]);if(!y.valid)return{valid:!1};d[h]=y.data}return{valid:!0,data:d}}else if(r===pe.array&&l===pe.array){if(t.length!==a.length)return{valid:!1};const u=[];for(let o=0;o<t.length;o++){const d=t[o],h=a[o],y=qy(d,h);if(!y.valid)return{valid:!1};u.push(y.data)}return{valid:!0,data:u}}else return r===pe.date&&l===pe.date&&+t==+a?{valid:!0,data:t}:{valid:!1}}class mc extends $e{_parse(a){const{status:r,ctx:l}=this._processInputParams(a),u=(o,d)=>{if(S1(o)||S1(d))return Me;const h=qy(o.value,d.value);return h.valid?((E1(o)||E1(d))&&r.dirty(),{status:r.value,value:h.data}):(se(l,{code:I.invalid_intersection_types}),Me)};return l.common.async?Promise.all([this._def.left._parseAsync({data:l.data,path:l.path,parent:l}),this._def.right._parseAsync({data:l.data,path:l.path,parent:l})]).then(([o,d])=>u(o,d)):u(this._def.left._parseSync({data:l.data,path:l.path,parent:l}),this._def.right._parseSync({data:l.data,path:l.path,parent:l}))}}mc.create=(t,a,r)=>new mc({left:t,right:a,typeName:ke.ZodIntersection,...He(r)});class Ci extends $e{_parse(a){const{status:r,ctx:l}=this._processInputParams(a);if(l.parsedType!==pe.array)return se(l,{code:I.invalid_type,expected:pe.array,received:l.parsedType}),Me;if(l.data.length<this._def.items.length)return se(l,{code:I.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),Me;!this._def.rest&&l.data.length>this._def.items.length&&(se(l,{code:I.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),r.dirty());const o=[...l.data].map((d,h)=>{const y=this._def.items[h]||this._def.rest;return y?y._parse(new Vr(l,d,l.path,h)):null}).filter(d=>!!d);return l.common.async?Promise.all(o).then(d=>On.mergeArray(r,d)):On.mergeArray(r,o)}get items(){return this._def.items}rest(a){return new Ci({...this._def,rest:a})}}Ci.create=(t,a)=>{if(!Array.isArray(t))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new Ci({items:t,typeName:ke.ZodTuple,rest:null,...He(a)})};class M1 extends $e{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(a){const{status:r,ctx:l}=this._processInputParams(a);if(l.parsedType!==pe.map)return se(l,{code:I.invalid_type,expected:pe.map,received:l.parsedType}),Me;const u=this._def.keyType,o=this._def.valueType,d=[...l.data.entries()].map(([h,y],m)=>({key:u._parse(new Vr(l,h,l.path,[m,"key"])),value:o._parse(new Vr(l,y,l.path,[m,"value"]))}));if(l.common.async){const h=new Map;return Promise.resolve().then(async()=>{for(const y of d){const m=await y.key,g=await y.value;if(m.status==="aborted"||g.status==="aborted")return Me;(m.status==="dirty"||g.status==="dirty")&&r.dirty(),h.set(m.value,g.value)}return{status:r.value,value:h}})}else{const h=new Map;for(const y of d){const m=y.key,g=y.value;if(m.status==="aborted"||g.status==="aborted")return Me;(m.status==="dirty"||g.status==="dirty")&&r.dirty(),h.set(m.value,g.value)}return{status:r.value,value:h}}}}M1.create=(t,a,r)=>new M1({valueType:a,keyType:t,typeName:ke.ZodMap,...He(r)});class iu extends $e{_parse(a){const{status:r,ctx:l}=this._processInputParams(a);if(l.parsedType!==pe.set)return se(l,{code:I.invalid_type,expected:pe.set,received:l.parsedType}),Me;const u=this._def;u.minSize!==null&&l.data.size<u.minSize.value&&(se(l,{code:I.too_small,minimum:u.minSize.value,type:"set",inclusive:!0,exact:!1,message:u.minSize.message}),r.dirty()),u.maxSize!==null&&l.data.size>u.maxSize.value&&(se(l,{code:I.too_big,maximum:u.maxSize.value,type:"set",inclusive:!0,exact:!1,message:u.maxSize.message}),r.dirty());const o=this._def.valueType;function d(y){const m=new Set;for(const g of y){if(g.status==="aborted")return Me;g.status==="dirty"&&r.dirty(),m.add(g.value)}return{status:r.value,value:m}}const h=[...l.data.values()].map((y,m)=>o._parse(new Vr(l,y,l.path,m)));return l.common.async?Promise.all(h).then(y=>d(y)):d(h)}min(a,r){return new iu({...this._def,minSize:{value:a,message:_e.toString(r)}})}max(a,r){return new iu({...this._def,maxSize:{value:a,message:_e.toString(r)}})}size(a,r){return this.min(a,r).max(a,r)}nonempty(a){return this.min(1,a)}}iu.create=(t,a)=>new iu({valueType:t,minSize:null,maxSize:null,typeName:ke.ZodSet,...He(a)});class k1 extends $e{get schema(){return this._def.getter()}_parse(a){const{ctx:r}=this._processInputParams(a);return this._def.getter()._parse({data:r.data,path:r.path,parent:r})}}k1.create=(t,a)=>new k1({getter:t,typeName:ke.ZodLazy,...He(a)});class z1 extends $e{_parse(a){if(a.data!==this._def.value){const r=this._getOrReturnCtx(a);return se(r,{received:r.data,code:I.invalid_literal,expected:this._def.value}),Me}return{status:"valid",value:a.data}}get value(){return this._def.value}}z1.create=(t,a)=>new z1({value:t,typeName:ke.ZodLiteral,...He(a)});function mS(t,a){return new Vl({values:t,typeName:ke.ZodEnum,...He(a)})}class Vl extends $e{_parse(a){if(typeof a.data!="string"){const r=this._getOrReturnCtx(a),l=this._def.values;return se(r,{expected:Ie.joinValues(l),received:r.parsedType,code:I.invalid_type}),Me}if(this._cache||(this._cache=new Set(this._def.values)),!this._cache.has(a.data)){const r=this._getOrReturnCtx(a),l=this._def.values;return se(r,{received:r.data,code:I.invalid_enum_value,options:l}),Me}return Kn(a.data)}get options(){return this._def.values}get enum(){const a={};for(const r of this._def.values)a[r]=r;return a}get Values(){const a={};for(const r of this._def.values)a[r]=r;return a}get Enum(){const a={};for(const r of this._def.values)a[r]=r;return a}extract(a,r=this._def){return Vl.create(a,{...this._def,...r})}exclude(a,r=this._def){return Vl.create(this.options.filter(l=>!a.includes(l)),{...this._def,...r})}}Vl.create=mS;class N1 extends $e{_parse(a){const r=Ie.getValidEnumValues(this._def.values),l=this._getOrReturnCtx(a);if(l.parsedType!==pe.string&&l.parsedType!==pe.number){const u=Ie.objectValues(r);return se(l,{expected:Ie.joinValues(u),received:l.parsedType,code:I.invalid_type}),Me}if(this._cache||(this._cache=new Set(Ie.getValidEnumValues(this._def.values))),!this._cache.has(a.data)){const u=Ie.objectValues(r);return se(l,{received:l.data,code:I.invalid_enum_value,options:u}),Me}return Kn(a.data)}get enum(){return this._def.values}}N1.create=(t,a)=>new N1({values:t,typeName:ke.ZodNativeEnum,...He(a)});class pc extends $e{unwrap(){return this._def.type}_parse(a){const{ctx:r}=this._processInputParams(a);if(r.parsedType!==pe.promise&&r.common.async===!1)return se(r,{code:I.invalid_type,expected:pe.promise,received:r.parsedType}),Me;const l=r.parsedType===pe.promise?r.data:Promise.resolve(r.data);return Kn(l.then(u=>this._def.type.parseAsync(u,{path:r.path,errorMap:r.common.contextualErrorMap})))}}pc.create=(t,a)=>new pc({type:t,typeName:ke.ZodPromise,...He(a)});class Hl extends $e{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===ke.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(a){const{status:r,ctx:l}=this._processInputParams(a),u=this._def.effect||null,o={addIssue:d=>{se(l,d),d.fatal?r.abort():r.dirty()},get path(){return l.path}};if(o.addIssue=o.addIssue.bind(o),u.type==="preprocess"){const d=u.transform(l.data,o);if(l.common.async)return Promise.resolve(d).then(async h=>{if(r.value==="aborted")return Me;const y=await this._def.schema._parseAsync({data:h,path:l.path,parent:l});return y.status==="aborted"?Me:y.status==="dirty"||r.value==="dirty"?Is(y.value):y});{if(r.value==="aborted")return Me;const h=this._def.schema._parseSync({data:d,path:l.path,parent:l});return h.status==="aborted"?Me:h.status==="dirty"||r.value==="dirty"?Is(h.value):h}}if(u.type==="refinement"){const d=h=>{const y=u.refinement(h,o);if(l.common.async)return Promise.resolve(y);if(y instanceof Promise)throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return h};if(l.common.async===!1){const h=this._def.schema._parseSync({data:l.data,path:l.path,parent:l});return h.status==="aborted"?Me:(h.status==="dirty"&&r.dirty(),d(h.value),{status:r.value,value:h.value})}else return this._def.schema._parseAsync({data:l.data,path:l.path,parent:l}).then(h=>h.status==="aborted"?Me:(h.status==="dirty"&&r.dirty(),d(h.value).then(()=>({status:r.value,value:h.value}))))}if(u.type==="transform")if(l.common.async===!1){const d=this._def.schema._parseSync({data:l.data,path:l.path,parent:l});if(!ql(d))return Me;const h=u.transform(d.value,o);if(h instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:r.value,value:h}}else return this._def.schema._parseAsync({data:l.data,path:l.path,parent:l}).then(d=>ql(d)?Promise.resolve(u.transform(d.value,o)).then(h=>({status:r.value,value:h})):Me);Ie.assertNever(u)}}Hl.create=(t,a,r)=>new Hl({schema:t,typeName:ke.ZodEffects,effect:a,...He(r)});Hl.createWithPreprocess=(t,a,r)=>new Hl({schema:a,effect:{type:"preprocess",transform:t},typeName:ke.ZodEffects,...He(r)});class Br extends $e{_parse(a){return this._getType(a)===pe.undefined?Kn(void 0):this._def.innerType._parse(a)}unwrap(){return this._def.innerType}}Br.create=(t,a)=>new Br({innerType:t,typeName:ke.ZodOptional,...He(a)});class Zl extends $e{_parse(a){return this._getType(a)===pe.null?Kn(null):this._def.innerType._parse(a)}unwrap(){return this._def.innerType}}Zl.create=(t,a)=>new Zl({innerType:t,typeName:ke.ZodNullable,...He(a)});class By extends $e{_parse(a){const{ctx:r}=this._processInputParams(a);let l=r.data;return r.parsedType===pe.undefined&&(l=this._def.defaultValue()),this._def.innerType._parse({data:l,path:r.path,parent:r})}removeDefault(){return this._def.innerType}}By.create=(t,a)=>new By({innerType:t,typeName:ke.ZodDefault,defaultValue:typeof a.default=="function"?a.default:()=>a.default,...He(a)});class Vy extends $e{_parse(a){const{ctx:r}=this._processInputParams(a),l={...r,common:{...r.common,issues:[]}},u=this._def.innerType._parse({data:l.data,path:l.path,parent:{...l}});return dc(u)?u.then(o=>({status:"valid",value:o.status==="valid"?o.value:this._def.catchValue({get error(){return new Ka(l.common.issues)},input:l.data})})):{status:"valid",value:u.status==="valid"?u.value:this._def.catchValue({get error(){return new Ka(l.common.issues)},input:l.data})}}removeCatch(){return this._def.innerType}}Vy.create=(t,a)=>new Vy({innerType:t,typeName:ke.ZodCatch,catchValue:typeof a.catch=="function"?a.catch:()=>a.catch,...He(a)});class D1 extends $e{_parse(a){if(this._getType(a)!==pe.nan){const l=this._getOrReturnCtx(a);return se(l,{code:I.invalid_type,expected:pe.nan,received:l.parsedType}),Me}return{status:"valid",value:a.data}}}D1.create=t=>new D1({typeName:ke.ZodNaN,...He(t)});class VO extends $e{_parse(a){const{ctx:r}=this._processInputParams(a),l=r.data;return this._def.type._parse({data:l,path:r.path,parent:r})}unwrap(){return this._def.type}}class Em extends $e{_parse(a){const{status:r,ctx:l}=this._processInputParams(a);if(l.common.async)return(async()=>{const o=await this._def.in._parseAsync({data:l.data,path:l.path,parent:l});return o.status==="aborted"?Me:o.status==="dirty"?(r.dirty(),Is(o.value)):this._def.out._parseAsync({data:o.value,path:l.path,parent:l})})();{const u=this._def.in._parseSync({data:l.data,path:l.path,parent:l});return u.status==="aborted"?Me:u.status==="dirty"?(r.dirty(),{status:"dirty",value:u.value}):this._def.out._parseSync({data:u.value,path:l.path,parent:l})}}static create(a,r){return new Em({in:a,out:r,typeName:ke.ZodPipeline})}}class Hy extends $e{_parse(a){const r=this._def.innerType._parse(a),l=u=>(ql(u)&&(u.value=Object.freeze(u.value)),u);return dc(r)?r.then(u=>l(u)):l(r)}unwrap(){return this._def.innerType}}Hy.create=(t,a)=>new Hy({innerType:t,typeName:ke.ZodReadonly,...He(a)});var ke;(function(t){t.ZodString="ZodString",t.ZodNumber="ZodNumber",t.ZodNaN="ZodNaN",t.ZodBigInt="ZodBigInt",t.ZodBoolean="ZodBoolean",t.ZodDate="ZodDate",t.ZodSymbol="ZodSymbol",t.ZodUndefined="ZodUndefined",t.ZodNull="ZodNull",t.ZodAny="ZodAny",t.ZodUnknown="ZodUnknown",t.ZodNever="ZodNever",t.ZodVoid="ZodVoid",t.ZodArray="ZodArray",t.ZodObject="ZodObject",t.ZodUnion="ZodUnion",t.ZodDiscriminatedUnion="ZodDiscriminatedUnion",t.ZodIntersection="ZodIntersection",t.ZodTuple="ZodTuple",t.ZodRecord="ZodRecord",t.ZodMap="ZodMap",t.ZodSet="ZodSet",t.ZodFunction="ZodFunction",t.ZodLazy="ZodLazy",t.ZodLiteral="ZodLiteral",t.ZodEnum="ZodEnum",t.ZodEffects="ZodEffects",t.ZodNativeEnum="ZodNativeEnum",t.ZodOptional="ZodOptional",t.ZodNullable="ZodNullable",t.ZodDefault="ZodDefault",t.ZodCatch="ZodCatch",t.ZodPromise="ZodPromise",t.ZodBranded="ZodBranded",t.ZodPipeline="ZodPipeline",t.ZodReadonly="ZodReadonly"})(ke||(ke={}));const v4=Ya.create,g4=Ti.create;Ai.create;const b4=hc.create;Bl.create;Hr.create;const _4=va.create,S4=zt.create;yc.create;mc.create;Ci.create;const E4=Vl.create;pc.create;Br.create;Zl.create;const x4={string:(t=>Ya.create({...t,coerce:!0})),number:(t=>Ti.create({...t,coerce:!0})),boolean:(t=>hc.create({...t,coerce:!0})),bigint:(t=>Ai.create({...t,coerce:!0})),date:(t=>Bl.create({...t,coerce:!0}))};var Th={},Ah={},U1;function HO(){return U1||(U1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){return r==="__proto__"}t.isUnsafeProperty=a})(Ah)),Ah}var Ch={},L1;function ZO(){return L1||(L1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){switch(typeof r){case"number":case"symbol":return!1;case"string":return r.includes(".")||r.includes("[")||r.includes("]")}}t.isDeepKey=a})(Ch)),Ch}var Oh={},j1;function pS(){return j1||(j1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){var l;return typeof r=="string"||typeof r=="symbol"?r:Object.is((l=r==null?void 0:r.valueOf)==null?void 0:l.call(r),-0)?"-0":String(r)}t.toKey=a})(Oh)),Oh}var Rh={},Mh={},q1;function QO(){return q1||(q1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){if(r==null)return"";if(typeof r=="string")return r;if(Array.isArray(r))return r.map(a).join(",");const l=String(r);return l==="0"&&Object.is(Number(r),-0)?"-0":l}t.toString=a})(Mh)),Mh}var B1;function vS(){return B1||(B1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=QO(),r=pS();function l(u){if(Array.isArray(u))return u.map(r.toKey);if(typeof u=="symbol")return[u];u=a.toString(u);const o=[],d=u.length;if(d===0)return o;let h=0,y="",m="",g=!1;for(u.charCodeAt(0)===46&&(o.push(""),h++);h<d;){const v=u[h];m?v==="\\"&&h+1<d?(h++,y+=u[h]):v===m?m="":y+=v:g?v==='"'||v==="'"?m=v:v==="]"?(g=!1,o.push(y),y=""):y+=v:v==="["?(g=!0,y&&(o.push(y),y="")):v==="."?y&&(o.push(y),y=""):y+=v,h++}return y&&o.push(y),o}t.toPath=l})(Rh)),Rh}var V1;function GO(){return V1||(V1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=HO(),r=ZO(),l=pS(),u=vS();function o(h,y,m){if(h==null)return m;switch(typeof y){case"string":{if(a.isUnsafeProperty(y))return m;const g=h[y];return g===void 0?r.isDeepKey(y)?o(h,u.toPath(y),m):m:g}case"number":case"symbol":{typeof y=="number"&&(y=l.toKey(y));const g=h[y];return g===void 0?m:g}default:{if(Array.isArray(y))return d(h,y,m);if(Object.is(y==null?void 0:y.valueOf(),-0)?y="-0":y=String(y),a.isUnsafeProperty(y))return m;const g=h[y];return g===void 0?m:g}}}function d(h,y,m){if(y.length===0)return m;let g=h;for(let v=0;v<y.length;v++){if(g==null||a.isUnsafeProperty(y[v]))return m;g=g[y[v]]}return g===void 0?m:g}t.get=o})(Th)),Th}var kh,H1;function YO(){return H1||(H1=1,kh=GO().get),kh}var FO=YO();const w4=Ja(FO);var zh={},Nh={},Z1;function XO(){return Z1||(Z1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){return Number.isSafeInteger(r)&&r>=0}t.isLength=a})(Nh)),Nh}var Q1;function $O(){return Q1||(Q1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=XO();function r(l){return l!=null&&typeof l!="function"&&a.isLength(l.length)}t.isArrayLike=r})(zh)),zh}var Dh={},G1;function KO(){return G1||(G1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){return r!==null&&(typeof r=="object"||typeof r=="function")}t.isObject=a})(Dh)),Dh}var Uh={},Y1;function PO(){return Y1||(Y1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r,l){return r===l||Number.isNaN(r)&&Number.isNaN(l)}t.isEqualsSameValueZero=a})(Uh)),Uh}var Lh={},F1;function JO(){return F1||(F1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=/^(?:0|[1-9]\d*)$/;function r(l,u=Number.MAX_SAFE_INTEGER){switch(typeof l){case"number":return Number.isInteger(l)&&l>=0&&l<u;case"symbol":return!1;case"string":return a.test(l)}}t.isIndex=r})(Lh)),Lh}var jh={exports:{}},qh={},Bh={exports:{}},Vh={};/**
391
+ * @license React
392
+ * use-sync-external-store-shim.production.js
393
+ *
394
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
395
+ *
396
+ * This source code is licensed under the MIT license found in the
397
+ * LICENSE file in the root directory of this source tree.
398
+ */var X1;function IO(){if(X1)return Vh;X1=1;var t=Fl();function a(v,E){return v===E&&(v!==0||1/v===1/E)||v!==v&&E!==E}var r=typeof Object.is=="function"?Object.is:a,l=t.useState,u=t.useEffect,o=t.useLayoutEffect,d=t.useDebugValue;function h(v,E){var _=E(),w=l({inst:{value:_,getSnapshot:E}}),S=w[0].inst,x=w[1];return o(function(){S.value=_,S.getSnapshot=E,y(S)&&x({inst:S})},[v,_,E]),u(function(){return y(S)&&x({inst:S}),v(function(){y(S)&&x({inst:S})})},[v]),d(_),_}function y(v){var E=v.getSnapshot;v=v.value;try{var _=E();return!r(v,_)}catch{return!0}}function m(v,E){return E()}var g=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?m:h;return Vh.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:g,Vh}var $1;function WO(){return $1||($1=1,Bh.exports=IO()),Bh.exports}/**
399
+ * @license React
400
+ * use-sync-external-store-shim/with-selector.production.js
401
+ *
402
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
403
+ *
404
+ * This source code is licensed under the MIT license found in the
405
+ * LICENSE file in the root directory of this source tree.
406
+ */var K1;function eR(){if(K1)return qh;K1=1;var t=Fl(),a=WO();function r(m,g){return m===g&&(m!==0||1/m===1/g)||m!==m&&g!==g}var l=typeof Object.is=="function"?Object.is:r,u=a.useSyncExternalStore,o=t.useRef,d=t.useEffect,h=t.useMemo,y=t.useDebugValue;return qh.useSyncExternalStoreWithSelector=function(m,g,v,E,_){var w=o(null);if(w.current===null){var S={hasValue:!1,value:null};w.current=S}else S=w.current;w=h(function(){function M(K){if(!V){if(V=!0,Z=K,K=E(K),_!==void 0&&S.hasValue){var P=S.value;if(_(P,K))return q=P}return q=K}if(P=q,l(Z,K))return P;var G=E(K);return _!==void 0&&_(P,G)?(Z=K,P):(Z=K,q=G)}var V=!1,Z,q,Q=v===void 0?null:v;return[function(){return M(g())},Q===null?void 0:function(){return M(Q())}]},[g,v,E,_]);var x=u(m,w[0],w[1]);return d(function(){S.hasValue=!0,S.value=x},[x]),y(x),x},qh}var P1;function tR(){return P1||(P1=1,jh.exports=eR()),jh.exports}var T4=tR();function nR(t,a=`expected a function, instead received ${typeof t}`){if(typeof t!="function")throw new TypeError(a)}function aR(t,a=`expected an object, instead received ${typeof t}`){if(typeof t!="object")throw new TypeError(a)}function rR(t,a="expected all items to be functions, instead received the following types: "){if(!t.every(r=>typeof r=="function")){const r=t.map(l=>typeof l=="function"?`function ${l.name||"unnamed"}()`:typeof l).join(", ");throw new TypeError(`${a}[${r}]`)}}var J1=t=>Array.isArray(t)?t:[t];function iR(t){const a=Array.isArray(t[0])?t[0]:t;return rR(a,"createSelector expects all input-selectors to be functions, but received the following types: "),a}function lR(t,a){const r=[],{length:l}=t;for(let u=0;u<l;u++)r.push(t[u].apply(null,a));return r}var sR=class{constructor(t){this.value=t}deref(){return this.value}},uR=typeof WeakRef<"u"?WeakRef:sR,oR=0,I1=1;function Jo(){return{s:oR,v:void 0,o:null,p:null}}function gS(t,a={}){let r=Jo();const{resultEqualityCheck:l}=a;let u,o=0;function d(){var v;let h=r;const{length:y}=arguments;for(let E=0,_=y;E<_;E++){const w=arguments[E];if(typeof w=="function"||typeof w=="object"&&w!==null){let S=h.o;S===null&&(h.o=S=new WeakMap);const x=S.get(w);x===void 0?(h=Jo(),S.set(w,h)):h=x}else{let S=h.p;S===null&&(h.p=S=new Map);const x=S.get(w);x===void 0?(h=Jo(),S.set(w,h)):h=x}}const m=h;let g;if(h.s===I1)g=h.v;else if(g=t.apply(null,arguments),o++,l){const E=((v=u==null?void 0:u.deref)==null?void 0:v.call(u))??u;E!=null&&l(E,g)&&(g=E,o!==0&&o--),u=typeof g=="object"&&g!==null||typeof g=="function"?new uR(g):g}return m.s=I1,m.v=g,g}return d.clearCache=()=>{r=Jo(),d.resetResultsCount()},d.resultsCount=()=>o,d.resetResultsCount=()=>{o=0},d}function cR(t,...a){const r=typeof t=="function"?{memoize:t,memoizeOptions:a}:t,l=(...u)=>{let o=0,d=0,h,y={},m=u.pop();typeof m=="object"&&(y=m,m=u.pop()),nR(m,`createSelector expects an output function after the inputs, but received: [${typeof m}]`);const g={...r,...y},{memoize:v,memoizeOptions:E=[],argsMemoize:_=gS,argsMemoizeOptions:w=[]}=g,S=J1(E),x=J1(w),M=iR(u),V=v(function(){return o++,m.apply(null,arguments)},...S),Z=_(function(){d++;const Q=lR(M,arguments);return h=V.apply(null,Q),h},...x);return Object.assign(Z,{resultFunc:m,memoizedResultFunc:V,dependencies:M,dependencyRecomputations:()=>d,resetDependencyRecomputations:()=>{d=0},lastResult:()=>h,recomputations:()=>o,resetRecomputations:()=>{o=0},memoize:v,argsMemoize:_})};return Object.assign(l,{withTypes:()=>l}),l}var fR=cR(gS),dR=Object.assign((t,a=fR)=>{aR(t,`createStructuredSelector expects first argument to be an object where each property is a selector, instead received a ${typeof t}`);const r=Object.keys(t),l=r.map(o=>t[o]);return a(l,(...o)=>o.reduce((d,h,y)=>(d[r[y]]=h,d),{}))},{withTypes:()=>dR}),Hh={},Zh={},Qh={},W1;function hR(){return W1||(W1=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(l){return typeof l=="symbol"?1:l===null?2:l===void 0?3:l!==l?4:0}const r=(l,u,o)=>{if(l!==u){const d=a(l),h=a(u);if(d===h&&d===0){if(l<u)return o==="desc"?1:-1;if(l>u)return o==="desc"?-1:1}return o==="desc"?h-d:d-h}return 0};t.compareValues=r})(Qh)),Qh}var Gh={},Yh={},eb;function bS(){return eb||(eb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){return typeof r=="symbol"||r instanceof Symbol}t.isSymbol=a})(Yh)),Yh}var tb;function yR(){return tb||(tb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=bS(),r=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,l=/^\w*$/;function u(o,d){return Array.isArray(o)?!1:typeof o=="number"||typeof o=="boolean"||o==null||a.isSymbol(o)?!0:typeof o=="string"&&(l.test(o)||!r.test(o))||d!=null&&Object.hasOwn(d,o)}t.isKey=u})(Gh)),Gh}var nb;function mR(){return nb||(nb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=hR(),r=yR(),l=vS();function u(o,d,h,y){if(o==null)return[];h=y?void 0:h,Array.isArray(o)||(o=Object.values(o)),Array.isArray(d)||(d=d==null?[null]:[d]),d.length===0&&(d=[null]),Array.isArray(h)||(h=h==null?[]:[h]),h=h.map(_=>String(_));const m=(_,w)=>{let S=_;for(let x=0;x<w.length&&S!=null;++x)S=S[w[x]];return S},g=(_,w)=>w==null||_==null?w:typeof _=="object"&&"key"in _?Object.hasOwn(w,_.key)?w[_.key]:m(w,_.path):typeof _=="function"?_(w):Array.isArray(_)?m(w,_):typeof w=="object"?w[_]:w,v=d.map(_=>(Array.isArray(_)&&_.length===1&&(_=_[0]),_==null||typeof _=="function"||Array.isArray(_)||r.isKey(_)?_:{key:_,path:l.toPath(_)}));return o.map(_=>({original:_,criteria:v.map(w=>g(w,_))})).slice().sort((_,w)=>{for(let S=0;S<v.length;S++){const x=a.compareValues(_.criteria[S],w.criteria[S],h[S]);if(x!==0)return x}return 0}).map(_=>_.original)}t.orderBy=u})(Zh)),Zh}var Fh={},ab;function pR(){return ab||(ab=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r,l=1){const u=[],o=Math.floor(l),d=(h,y)=>{for(let m=0;m<h.length;m++){const g=h[m];Array.isArray(g)&&y<o?d(g,y+1):u.push(g)}};return d(r,0),u}t.flatten=a})(Fh)),Fh}var Xh={},rb;function _S(){return rb||(rb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=JO(),r=$O(),l=KO(),u=PO();function o(d,h,y){return l.isObject(y)&&(typeof h=="number"&&r.isArrayLike(y)&&a.isIndex(h)&&h<y.length||typeof h=="string"&&h in y)?u.isEqualsSameValueZero(y[h],d):!1}t.isIterateeCall=o})(Xh)),Xh}var ib;function vR(){return ib||(ib=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=mR(),r=pR(),l=_S();function u(o,...d){const h=d.length;return h>1&&l.isIterateeCall(o,d[0],d[1])?d=[]:h>2&&l.isIterateeCall(d[0],d[1],d[2])&&(d=[d[0]]),a.orderBy(o,r.flatten(d),["asc"])}t.sortBy=u})(Hh)),Hh}var $h,lb;function gR(){return lb||(lb=1,$h=vR().sortBy),$h}var bR=gR();const A4=Ja(bR);function Xt(t){return`Minified Redux error #${t}; visit https://redux.js.org/Errors?code=${t} for the full message or use the non-minified dev environment for full errors. `}var _R=typeof Symbol=="function"&&Symbol.observable||"@@observable",sb=_R,Kh=()=>Math.random().toString(36).substring(7).split("").join("."),SR={INIT:`@@redux/INIT${Kh()}`,REPLACE:`@@redux/REPLACE${Kh()}`,PROBE_UNKNOWN_ACTION:()=>`@@redux/PROBE_UNKNOWN_ACTION${Kh()}`},vc=SR;function xm(t){if(typeof t!="object"||t===null)return!1;let a=t;for(;Object.getPrototypeOf(a)!==null;)a=Object.getPrototypeOf(a);return Object.getPrototypeOf(t)===a||Object.getPrototypeOf(t)===null}function SS(t,a,r){if(typeof t!="function")throw new Error(Xt(2));if(typeof a=="function"&&typeof r=="function"||typeof r=="function"&&typeof arguments[3]=="function")throw new Error(Xt(0));if(typeof a=="function"&&typeof r>"u"&&(r=a,a=void 0),typeof r<"u"){if(typeof r!="function")throw new Error(Xt(1));return r(SS)(t,a)}let l=t,u=a,o=new Map,d=o,h=0,y=!1;function m(){d===o&&(d=new Map,o.forEach((x,M)=>{d.set(M,x)}))}function g(){if(y)throw new Error(Xt(3));return u}function v(x){if(typeof x!="function")throw new Error(Xt(4));if(y)throw new Error(Xt(5));let M=!0;m();const V=h++;return d.set(V,x),function(){if(M){if(y)throw new Error(Xt(6));M=!1,m(),d.delete(V),o=null}}}function E(x){if(!xm(x))throw new Error(Xt(7));if(typeof x.type>"u")throw new Error(Xt(8));if(typeof x.type!="string")throw new Error(Xt(17));if(y)throw new Error(Xt(9));try{y=!0,u=l(u,x)}finally{y=!1}return(o=d).forEach(V=>{V()}),x}function _(x){if(typeof x!="function")throw new Error(Xt(10));l=x,E({type:vc.REPLACE})}function w(){const x=v;return{subscribe(M){if(typeof M!="object"||M===null)throw new Error(Xt(11));function V(){const q=M;q.next&&q.next(g())}return V(),{unsubscribe:x(V)}},[sb](){return this}}}return E({type:vc.INIT}),{dispatch:E,subscribe:v,getState:g,replaceReducer:_,[sb]:w}}function ER(t){Object.keys(t).forEach(a=>{const r=t[a];if(typeof r(void 0,{type:vc.INIT})>"u")throw new Error(Xt(12));if(typeof r(void 0,{type:vc.PROBE_UNKNOWN_ACTION()})>"u")throw new Error(Xt(13))})}function xR(t){const a=Object.keys(t),r={};for(let o=0;o<a.length;o++){const d=a[o];typeof t[d]=="function"&&(r[d]=t[d])}const l=Object.keys(r);let u;try{ER(r)}catch(o){u=o}return function(d={},h){if(u)throw u;let y=!1;const m={};for(let g=0;g<l.length;g++){const v=l[g],E=r[v],_=d[v],w=E(_,h);if(typeof w>"u")throw h&&h.type,new Error(Xt(14));m[v]=w,y=y||w!==_}return y=y||l.length!==Object.keys(d).length,y?m:d}}function gc(...t){return t.length===0?a=>a:t.length===1?t[0]:t.reduce((a,r)=>(...l)=>a(r(...l)))}function wR(...t){return a=>(r,l)=>{const u=a(r,l);let o=()=>{throw new Error(Xt(15))};const d={getState:u.getState,dispatch:(y,...m)=>o(y,...m)},h=t.map(y=>y(d));return o=gc(...h)(u.dispatch),{...u,dispatch:o}}}function ES(t){return xm(t)&&"type"in t&&typeof t.type=="string"}var xS=Symbol.for("immer-nothing"),ub=Symbol.for("immer-draftable"),rn=Symbol.for("immer-state");function na(t,...a){throw new Error(`[Immer] minified error nr: ${t}. Full error at: https://bit.ly/3cXEKWf`)}var An=Object,Ql=An.getPrototypeOf,bc="constructor",Lc="prototype",Zy="configurable",_c="enumerable",ic="writable",lu="value",Pa=t=>!!t&&!!t[rn];function la(t){var a;return t?wS(t)||qc(t)||!!t[ub]||!!((a=t[bc])!=null&&a[ub])||Bc(t)||Vc(t):!1}var TR=An[Lc][bc].toString(),ob=new WeakMap;function wS(t){if(!t||!wm(t))return!1;const a=Ql(t);if(a===null||a===An[Lc])return!0;const r=An.hasOwnProperty.call(a,bc)&&a[bc];if(r===Object)return!0;if(!xl(r))return!1;let l=ob.get(r);return l===void 0&&(l=Function.toString.call(r),ob.set(r,l)),l===TR}function jc(t,a,r=!0){Su(t)===0?(r?Reflect.ownKeys(t):An.keys(t)).forEach(u=>{a(u,t[u],t)}):t.forEach((l,u)=>a(u,l,t))}function Su(t){const a=t[rn];return a?a.type_:qc(t)?1:Bc(t)?2:Vc(t)?3:0}var cb=(t,a,r=Su(t))=>r===2?t.has(a):An[Lc].hasOwnProperty.call(t,a),Qy=(t,a,r=Su(t))=>r===2?t.get(a):t[a],Sc=(t,a,r,l=Su(t))=>{l===2?t.set(a,r):l===3?t.add(r):t[a]=r};function AR(t,a){return t===a?t!==0||1/t===1/a:t!==t&&a!==a}var qc=Array.isArray,Bc=t=>t instanceof Map,Vc=t=>t instanceof Set,wm=t=>typeof t=="object",xl=t=>typeof t=="function",Ph=t=>typeof t=="boolean";function CR(t){const a=+t;return Number.isInteger(a)&&String(a)===t}var Va=t=>t.copy_||t.base_,Tm=t=>t.modified_?t.copy_:t.base_;function Gy(t,a){if(Bc(t))return new Map(t);if(Vc(t))return new Set(t);if(qc(t))return Array[Lc].slice.call(t);const r=wS(t);if(a===!0||a==="class_only"&&!r){const l=An.getOwnPropertyDescriptors(t);delete l[rn];let u=Reflect.ownKeys(l);for(let o=0;o<u.length;o++){const d=u[o],h=l[d];h[ic]===!1&&(h[ic]=!0,h[Zy]=!0),(h.get||h.set)&&(l[d]={[Zy]:!0,[ic]:!0,[_c]:h[_c],[lu]:t[d]})}return An.create(Ql(t),l)}else{const l=Ql(t);if(l!==null&&r)return{...t};const u=An.create(l);return An.assign(u,t)}}function Am(t,a=!1){return Hc(t)||Pa(t)||!la(t)||(Su(t)>1&&An.defineProperties(t,{set:Io,add:Io,clear:Io,delete:Io}),An.freeze(t),a&&jc(t,(r,l)=>{Am(l,!0)},!1)),t}function OR(){na(2)}var Io={[lu]:OR};function Hc(t){return t===null||!wm(t)?!0:An.isFrozen(t)}var Ec="MapSet",Yy="Patches",fb="ArrayMethods",TS={};function Oi(t){const a=TS[t];return a||na(0,t),a}var db=t=>!!TS[t],su,AS=()=>su,RR=(t,a)=>({drafts_:[],parent_:t,immer_:a,canAutoFreeze_:!0,unfinalizedDrafts_:0,handledSet_:new Set,processedForPatches_:new Set,mapSetPlugin_:db(Ec)?Oi(Ec):void 0,arrayMethodsPlugin_:db(fb)?Oi(fb):void 0});function hb(t,a){a&&(t.patchPlugin_=Oi(Yy),t.patches_=[],t.inversePatches_=[],t.patchListener_=a)}function Fy(t){Xy(t),t.drafts_.forEach(MR),t.drafts_=null}function Xy(t){t===su&&(su=t.parent_)}var yb=t=>su=RR(su,t);function MR(t){const a=t[rn];a.type_===0||a.type_===1?a.revoke_():a.revoked_=!0}function mb(t,a){a.unfinalizedDrafts_=a.drafts_.length;const r=a.drafts_[0];if(t!==void 0&&t!==r){r[rn].modified_&&(Fy(a),na(4)),la(t)&&(t=pb(a,t));const{patchPlugin_:u}=a;u&&u.generateReplacementPatches_(r[rn].base_,t,a)}else t=pb(a,r);return kR(a,t,!0),Fy(a),a.patches_&&a.patchListener_(a.patches_,a.inversePatches_),t!==xS?t:void 0}function pb(t,a){if(Hc(a))return a;const r=a[rn];if(!r)return xc(a,t.handledSet_,t);if(!Zc(r,t))return a;if(!r.modified_)return r.base_;if(!r.finalized_){const{callbacks_:l}=r;if(l)for(;l.length>0;)l.pop()(t);RS(r,t)}return r.copy_}function kR(t,a,r=!1){!t.parent_&&t.immer_.autoFreeze_&&t.canAutoFreeze_&&Am(a,r)}function CS(t){t.finalized_=!0,t.scope_.unfinalizedDrafts_--}var Zc=(t,a)=>t.scope_===a,zR=[];function OS(t,a,r,l){const u=Va(t),o=t.type_;if(l!==void 0&&Qy(u,l,o)===a){Sc(u,l,r,o);return}if(!t.draftLocations_){const h=t.draftLocations_=new Map;jc(u,(y,m)=>{if(Pa(m)){const g=h.get(m)||[];g.push(y),h.set(m,g)}})}const d=t.draftLocations_.get(a)??zR;for(const h of d)Sc(u,h,r,o)}function NR(t,a,r){t.callbacks_.push(function(u){var h;const o=a;if(!o||!Zc(o,u))return;(h=u.mapSetPlugin_)==null||h.fixSetContents(o);const d=Tm(o);OS(t,o.draft_??o,d,r),RS(o,u)})}function RS(t,a){var l;if(t.modified_&&!t.finalized_&&(t.type_===3||t.type_===1&&t.allIndicesReassigned_||(((l=t.assigned_)==null?void 0:l.size)??0)>0)){const{patchPlugin_:u}=a;if(u){const o=u.getPath(t);o&&u.generatePatches_(t,o,a)}CS(t)}}function DR(t,a,r){const{scope_:l}=t;if(Pa(r)){const u=r[rn];Zc(u,l)&&u.callbacks_.push(function(){lc(t);const d=Tm(u);OS(t,r,d,a)})}else la(r)&&t.callbacks_.push(function(){const o=Va(t);t.type_===3?o.has(r)&&xc(r,l.handledSet_,l):Qy(o,a,t.type_)===r&&l.drafts_.length>1&&(t.assigned_.get(a)??!1)===!0&&t.copy_&&xc(Qy(t.copy_,a,t.type_),l.handledSet_,l)})}function xc(t,a,r){return!r.immer_.autoFreeze_&&r.unfinalizedDrafts_<1||Pa(t)||a.has(t)||!la(t)||Hc(t)||(a.add(t),jc(t,(l,u)=>{if(Pa(u)){const o=u[rn];if(Zc(o,r)){const d=Tm(o);Sc(t,l,d,t.type_),CS(o)}}else la(u)&&xc(u,a,r)})),t}function UR(t,a){const r=qc(t),l={type_:r?1:0,scope_:a?a.scope_:AS(),modified_:!1,finalized_:!1,assigned_:void 0,parent_:a,base_:t,draft_:null,copy_:null,revoke_:null,isManual_:!1,callbacks_:void 0};let u=l,o=wc;r&&(u=[l],o=uu);const{revoke:d,proxy:h}=Proxy.revocable(u,o);return l.draft_=h,l.revoke_=d,[h,l]}var wc={get(t,a){if(a===rn)return t;let r=t.scope_.arrayMethodsPlugin_;const l=t.type_===1&&typeof a=="string";if(l&&r!=null&&r.isArrayOperationMethod(a))return r.createMethodInterceptor(t,a);const u=Va(t);if(!cb(u,a,t.type_))return LR(t,u,a);const o=u[a];if(t.finalized_||!la(o)||l&&t.operationMethod&&(r!=null&&r.isMutatingArrayMethod(t.operationMethod))&&CR(a))return o;if(o===Jh(t.base_,a)){lc(t);const d=t.type_===1?+a:a,h=Ky(t.scope_,o,t,d);return t.copy_[d]=h}return o},has(t,a){return a in Va(t)},ownKeys(t){return Reflect.ownKeys(Va(t))},set(t,a,r){const l=MS(Va(t),a);if(l!=null&&l.set)return l.set.call(t.draft_,r),!0;if(!t.modified_){const u=Jh(Va(t),a),o=u==null?void 0:u[rn];if(o&&o.base_===r)return t.copy_[a]=r,t.assigned_.set(a,!1),!0;if(AR(r,u)&&(r!==void 0||cb(t.base_,a,t.type_)))return!0;lc(t),$y(t)}return t.copy_[a]===r&&(r!==void 0||a in t.copy_)||Number.isNaN(r)&&Number.isNaN(t.copy_[a])||(t.copy_[a]=r,t.assigned_.set(a,!0),DR(t,a,r)),!0},deleteProperty(t,a){return lc(t),Jh(t.base_,a)!==void 0||a in t.base_?(t.assigned_.set(a,!1),$y(t)):t.assigned_.delete(a),t.copy_&&delete t.copy_[a],!0},getOwnPropertyDescriptor(t,a){const r=Va(t),l=Reflect.getOwnPropertyDescriptor(r,a);return l&&{[ic]:!0,[Zy]:t.type_!==1||a!=="length",[_c]:l[_c],[lu]:r[a]}},defineProperty(){na(11)},getPrototypeOf(t){return Ql(t.base_)},setPrototypeOf(){na(12)}},uu={};for(let t in wc){let a=wc[t];uu[t]=function(){const r=arguments;return r[0]=r[0][0],a.apply(this,r)}}uu.deleteProperty=function(t,a){return uu.set.call(this,t,a,void 0)};uu.set=function(t,a,r){return wc.set.call(this,t[0],a,r,t[0])};function Jh(t,a){const r=t[rn];return(r?Va(r):t)[a]}function LR(t,a,r){var u;const l=MS(a,r);return l?lu in l?l[lu]:(u=l.get)==null?void 0:u.call(t.draft_):void 0}function MS(t,a){if(!(a in t))return;let r=Ql(t);for(;r;){const l=Object.getOwnPropertyDescriptor(r,a);if(l)return l;r=Ql(r)}}function $y(t){t.modified_||(t.modified_=!0,t.parent_&&$y(t.parent_))}function lc(t){t.copy_||(t.assigned_=new Map,t.copy_=Gy(t.base_,t.scope_.immer_.useStrictShallowCopy_))}var jR=class{constructor(a){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.useStrictIteration_=!1,this.produce=(r,l,u)=>{if(xl(r)&&!xl(l)){const d=l;l=r;const h=this;return function(m=d,...g){return h.produce(m,v=>l.call(this,v,...g))}}xl(l)||na(6),u!==void 0&&!xl(u)&&na(7);let o;if(la(r)){const d=yb(this),h=Ky(d,r,void 0);let y=!0;try{o=l(h),y=!1}finally{y?Fy(d):Xy(d)}return hb(d,u),mb(o,d)}else if(!r||!wm(r)){if(o=l(r),o===void 0&&(o=r),o===xS&&(o=void 0),this.autoFreeze_&&Am(o,!0),u){const d=[],h=[];Oi(Yy).generateReplacementPatches_(r,o,{patches_:d,inversePatches_:h}),u(d,h)}return o}else na(1,r)},this.produceWithPatches=(r,l)=>{if(xl(r))return(h,...y)=>this.produceWithPatches(h,m=>r(m,...y));let u,o;return[this.produce(r,l,(h,y)=>{u=h,o=y}),u,o]},Ph(a==null?void 0:a.autoFreeze)&&this.setAutoFreeze(a.autoFreeze),Ph(a==null?void 0:a.useStrictShallowCopy)&&this.setUseStrictShallowCopy(a.useStrictShallowCopy),Ph(a==null?void 0:a.useStrictIteration)&&this.setUseStrictIteration(a.useStrictIteration)}createDraft(a){la(a)||na(8),Pa(a)&&(a=qR(a));const r=yb(this),l=Ky(r,a,void 0);return l[rn].isManual_=!0,Xy(r),l}finishDraft(a,r){const l=a&&a[rn];(!l||!l.isManual_)&&na(9);const{scope_:u}=l;return hb(u,r),mb(void 0,u)}setAutoFreeze(a){this.autoFreeze_=a}setUseStrictShallowCopy(a){this.useStrictShallowCopy_=a}setUseStrictIteration(a){this.useStrictIteration_=a}shouldUseStrictIteration(){return this.useStrictIteration_}applyPatches(a,r){let l;for(l=r.length-1;l>=0;l--){const o=r[l];if(o.path.length===0&&o.op==="replace"){a=o.value;break}}l>-1&&(r=r.slice(l+1));const u=Oi(Yy).applyPatches_;return Pa(a)?u(a,r):this.produce(a,o=>u(o,r))}};function Ky(t,a,r,l){const[u,o]=Bc(a)?Oi(Ec).proxyMap_(a,r):Vc(a)?Oi(Ec).proxySet_(a,r):UR(a,r);return((r==null?void 0:r.scope_)??AS()).drafts_.push(u),o.callbacks_=(r==null?void 0:r.callbacks_)??[],o.key_=l,r&&l!==void 0?NR(r,o,l):o.callbacks_.push(function(y){var g;(g=y.mapSetPlugin_)==null||g.fixSetContents(o);const{patchPlugin_:m}=y;o.modified_&&m&&m.generatePatches_(o,[],y)}),u}function qR(t){return Pa(t)||na(10,t),kS(t)}function kS(t){if(!la(t)||Hc(t))return t;const a=t[rn];let r,l=!0;if(a){if(!a.modified_)return a.base_;a.finalized_=!0,r=Gy(t,a.scope_.immer_.useStrictShallowCopy_),l=a.scope_.immer_.shouldUseStrictIteration()}else r=Gy(t,!0);return jc(r,(u,o)=>{Sc(r,u,kS(o))},l),a&&(a.finalized_=!1),r}var BR=new jR,zS=BR.produce;function NS(t){return({dispatch:r,getState:l})=>u=>o=>typeof o=="function"?o(r,l,t):u(o)}var VR=NS(),HR=NS,ZR=typeof window<"u"&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(arguments.length!==0)return typeof arguments[0]=="object"?gc:gc.apply(null,arguments)};function Gl(t,a){function r(...l){if(a){let u=a(...l);if(!u)throw new Error(Cn(0));return{type:t,payload:u.payload,..."meta"in u&&{meta:u.meta},..."error"in u&&{error:u.error}}}return{type:t,payload:l[0]}}return r.toString=()=>`${t}`,r.type=t,r.match=l=>ES(l)&&l.type===t,r}var DS=class Ws extends Array{constructor(...a){super(...a),Object.setPrototypeOf(this,Ws.prototype)}static get[Symbol.species](){return Ws}concat(...a){return super.concat.apply(this,a)}prepend(...a){return a.length===1&&Array.isArray(a[0])?new Ws(...a[0].concat(this)):new Ws(...a.concat(this))}};function vb(t){return la(t)?zS(t,()=>{}):t}function Wo(t,a,r){return t.has(a)?t.get(a):t.set(a,r(a)).get(a)}function QR(t){return typeof t=="boolean"}var GR=()=>function(a){const{thunk:r=!0,immutableCheck:l=!0,serializableCheck:u=!0,actionCreatorCheck:o=!0}=a??{};let d=new DS;return r&&(QR(r)?d.push(VR):d.push(HR(r.extraArgument))),d},US="RTK_autoBatch",O4=()=>t=>({payload:t,meta:{[US]:!0}}),gb=t=>a=>{setTimeout(a,t)},YR=(t={type:"raf"})=>a=>(...r)=>{const l=a(...r);let u=!0,o=!1,d=!1;const h=new Set,y=t.type==="tick"?queueMicrotask:t.type==="raf"?typeof window<"u"&&window.requestAnimationFrame?window.requestAnimationFrame:gb(10):t.type==="callback"?t.queueNotification:gb(t.timeout),m=()=>{d=!1,o&&(o=!1,h.forEach(g=>g()))};return Object.assign({},l,{subscribe(g){const v=()=>u&&g(),E=l.subscribe(v);return h.add(g),()=>{E(),h.delete(g)}},dispatch(g){var v;try{return u=!((v=g==null?void 0:g.meta)!=null&&v[US]),o=!u,o&&(d||(d=!0,y(m))),l.dispatch(g)}finally{u=!0}}})},FR=t=>function(r){const{autoBatch:l=!0}=r??{};let u=new DS(t);return l&&u.push(YR(typeof l=="object"?l:void 0)),u};function R4(t){const a=GR(),{reducer:r=void 0,middleware:l,devTools:u=!0,preloadedState:o=void 0,enhancers:d=void 0}=t||{};let h;if(typeof r=="function")h=r;else if(xm(r))h=xR(r);else throw new Error(Cn(1));let y;typeof l=="function"?y=l(a):y=a();let m=gc;u&&(m=ZR({trace:!1,...typeof u=="object"&&u}));const g=wR(...y),v=FR(g);let E=typeof d=="function"?d(v):v();const _=m(...E);return SS(h,o,_)}function LS(t){const a={},r=[];let l;const u={addCase(o,d){const h=typeof o=="string"?o:o.type;if(!h)throw new Error(Cn(28));if(h in a)throw new Error(Cn(29));return a[h]=d,u},addAsyncThunk(o,d){return d.pending&&(a[o.pending.type]=d.pending),d.rejected&&(a[o.rejected.type]=d.rejected),d.fulfilled&&(a[o.fulfilled.type]=d.fulfilled),d.settled&&r.push({matcher:o.settled,reducer:d.settled}),u},addMatcher(o,d){return r.push({matcher:o,reducer:d}),u},addDefaultCase(o){return l=o,u}};return t(u),[a,r,l]}function XR(t){return typeof t=="function"}function $R(t,a){let[r,l,u]=LS(a),o;if(XR(t))o=()=>vb(t());else{const h=vb(t);o=()=>h}function d(h=o(),y){let m=[r[y.type],...l.filter(({matcher:g})=>g(y)).map(({reducer:g})=>g)];return m.filter(g=>!!g).length===0&&(m=[u]),m.reduce((g,v)=>{if(v)if(Pa(g)){const _=v(g,y);return _===void 0?g:_}else{if(la(g))return zS(g,E=>v(E,y));{const E=v(g,y);if(E===void 0){if(g===null)return g;throw Error("A case reducer on a non-draftable value must not return undefined")}return E}}return g},h)}return d.getInitialState=o,d}var KR="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW",PR=(t=21)=>{let a="",r=t;for(;r--;)a+=KR[Math.random()*64|0];return a},JR=Symbol.for("rtk-slice-createasyncthunk");function IR(t,a){return`${t}/${a}`}function WR({creators:t}={}){var r;const a=(r=t==null?void 0:t.asyncThunk)==null?void 0:r[JR];return function(u){const{name:o,reducerPath:d=o}=u;if(!o)throw new Error(Cn(11));const h=(typeof u.reducers=="function"?u.reducers(t3()):u.reducers)||{},y=Object.keys(h),m={sliceCaseReducersByName:{},sliceCaseReducersByType:{},actionCreators:{},sliceMatchers:[]},g={addCase(q,Q){const K=typeof q=="string"?q:q.type;if(!K)throw new Error(Cn(12));if(K in m.sliceCaseReducersByType)throw new Error(Cn(13));return m.sliceCaseReducersByType[K]=Q,g},addMatcher(q,Q){return m.sliceMatchers.push({matcher:q,reducer:Q}),g},exposeAction(q,Q){return m.actionCreators[q]=Q,g},exposeCaseReducer(q,Q){return m.sliceCaseReducersByName[q]=Q,g}};y.forEach(q=>{const Q=h[q],K={reducerName:q,type:IR(o,q),createNotation:typeof u.reducers=="function"};a3(Q)?i3(K,Q,g,a):n3(K,Q,g)});function v(){const[q={},Q=[],K=void 0]=typeof u.extraReducers=="function"?LS(u.extraReducers):[u.extraReducers],P={...q,...m.sliceCaseReducersByType};return $R(u.initialState,G=>{for(let re in P)G.addCase(re,P[re]);for(let re of m.sliceMatchers)G.addMatcher(re.matcher,re.reducer);for(let re of Q)G.addMatcher(re.matcher,re.reducer);K&&G.addDefaultCase(K)})}const E=q=>q,_=new Map,w=new WeakMap;let S;function x(q,Q){return S||(S=v()),S(q,Q)}function M(){return S||(S=v()),S.getInitialState()}function V(q,Q=!1){function K(G){let re=G[q];return typeof re>"u"&&Q&&(re=Wo(w,K,M)),re}function P(G=E){const re=Wo(_,Q,()=>new WeakMap);return Wo(re,G,()=>{const ze={};for(const[Ae,ne]of Object.entries(u.selectors??{}))ze[Ae]=e3(ne,G,()=>Wo(w,G,M),Q);return ze})}return{reducerPath:q,getSelectors:P,get selectors(){return P(K)},selectSlice:K}}const Z={name:o,reducer:x,actions:m.actionCreators,caseReducers:m.sliceCaseReducersByName,getInitialState:M,...V(d),injectInto(q,{reducerPath:Q,...K}={}){const P=Q??d;return q.inject({reducerPath:P,reducer:x},K),{...Z,...V(P,!0)}}};return Z}}function e3(t,a,r,l){function u(o,...d){let h=a(o);return typeof h>"u"&&l&&(h=r()),t(h,...d)}return u.unwrapped=t,u}var M4=WR();function t3(){function t(a,r){return{_reducerDefinitionType:"asyncThunk",payloadCreator:a,...r}}return t.withTypes=()=>t,{reducer(a){return Object.assign({[a.name](...r){return a(...r)}}[a.name],{_reducerDefinitionType:"reducer"})},preparedReducer(a,r){return{_reducerDefinitionType:"reducerWithPrepare",prepare:a,reducer:r}},asyncThunk:t}}function n3({type:t,reducerName:a,createNotation:r},l,u){let o,d;if("reducer"in l){if(r&&!r3(l))throw new Error(Cn(17));o=l.reducer,d=l.prepare}else o=l;u.addCase(t,o).exposeCaseReducer(a,o).exposeAction(a,d?Gl(t,d):Gl(t))}function a3(t){return t._reducerDefinitionType==="asyncThunk"}function r3(t){return t._reducerDefinitionType==="reducerWithPrepare"}function i3({type:t,reducerName:a},r,l,u){if(!u)throw new Error(Cn(18));const{payloadCreator:o,fulfilled:d,pending:h,rejected:y,settled:m,options:g}=r,v=u(t,o,g);l.exposeAction(a,v),d&&l.addCase(v.fulfilled,d),h&&l.addCase(v.pending,h),y&&l.addCase(v.rejected,y),m&&l.addMatcher(v.settled,m),l.exposeCaseReducer(a,{fulfilled:d||ec,pending:h||ec,rejected:y||ec,settled:m||ec})}function ec(){}var l3="task",jS="listener",qS="completed",Cm="cancelled",s3=`task-${Cm}`,u3=`task-${qS}`,Py=`${jS}-${Cm}`,o3=`${jS}-${qS}`,Qc=class{constructor(t){ch(this,"name","TaskAbortError");ch(this,"message");this.code=t,this.message=`${l3} ${Cm} (reason: ${t})`}},Om=(t,a)=>{if(typeof t!="function")throw new TypeError(Cn(32))},Tc=()=>{},BS=(t,a=Tc)=>(t.catch(a),t),VS=(t,a)=>(t.addEventListener("abort",a,{once:!0}),()=>t.removeEventListener("abort",a)),Ei=t=>{if(t.aborted)throw new Qc(t.reason)};function HS(t,a){let r=Tc;return new Promise((l,u)=>{const o=()=>u(new Qc(t.reason));if(t.aborted){o();return}r=VS(t,o),a.finally(()=>r()).then(l,u)}).finally(()=>{r=Tc})}var c3=async(t,a)=>{try{return await Promise.resolve(),{status:"ok",value:await t()}}catch(r){return{status:r instanceof Qc?"cancelled":"rejected",error:r}}finally{a==null||a()}},Ac=t=>a=>BS(HS(t,a).then(r=>(Ei(t),r))),ZS=t=>{const a=Ac(t);return r=>a(new Promise(l=>setTimeout(l,r)))},{assign:Tl}=Object,bb={},Gc="listenerMiddleware",f3=(t,a)=>{const r=l=>VS(t,()=>l.abort(t.reason));return(l,u)=>{Om(l);const o=new AbortController;r(o);const d=c3(async()=>{Ei(t),Ei(o.signal);const h=await l({pause:Ac(o.signal),delay:ZS(o.signal),signal:o.signal});return Ei(o.signal),h},()=>o.abort(u3));return u!=null&&u.autoJoin&&a.push(d.catch(Tc)),{result:Ac(t)(d),cancel(){o.abort(s3)}}}},d3=(t,a)=>{const r=async(l,u)=>{Ei(a);let o=()=>{};const h=[new Promise((y,m)=>{let g=t({predicate:l,effect:(v,E)=>{E.unsubscribe(),y([v,E.getState(),E.getOriginalState()])}});o=()=>{g(),m()}})];u!=null&&h.push(new Promise(y=>setTimeout(y,u,null)));try{const y=await HS(a,Promise.race(h));return Ei(a),y}finally{o()}};return(l,u)=>BS(r(l,u))},QS=t=>{let{type:a,actionCreator:r,matcher:l,predicate:u,effect:o}=t;if(a)u=Gl(a).match;else if(r)a=r.type,u=r.match;else if(l)u=l;else if(!u)throw new Error(Cn(21));return Om(o),{predicate:u,type:a,effect:o}},GS=Tl(t=>{const{type:a,predicate:r,effect:l}=QS(t);return{id:PR(),effect:l,type:a,predicate:r,pending:new Set,unsubscribe:()=>{throw new Error(Cn(22))}}},{withTypes:()=>GS}),_b=(t,a)=>{const{type:r,effect:l,predicate:u}=QS(a);return Array.from(t.values()).find(o=>(typeof r=="string"?o.type===r:o.predicate===u)&&o.effect===l)},Jy=t=>{t.pending.forEach(a=>{a.abort(Py)})},h3=(t,a)=>()=>{for(const r of a.keys())Jy(r);t.clear()},Sb=(t,a,r)=>{try{t(a,r)}catch(l){setTimeout(()=>{throw l},0)}},YS=Tl(Gl(`${Gc}/add`),{withTypes:()=>YS}),y3=Gl(`${Gc}/removeAll`),FS=Tl(Gl(`${Gc}/remove`),{withTypes:()=>FS}),m3=(...t)=>{console.error(`${Gc}/error`,...t)},k4=(t={})=>{const a=new Map,r=new Map,l=_=>{const w=r.get(_)??0;r.set(_,w+1)},u=_=>{const w=r.get(_)??1;w===1?r.delete(_):r.set(_,w-1)},{extra:o,onError:d=m3}=t;Om(d);const h=_=>(_.unsubscribe=()=>a.delete(_.id),a.set(_.id,_),w=>{_.unsubscribe(),w!=null&&w.cancelActive&&Jy(_)}),y=_=>{const w=_b(a,_)??GS(_);return h(w)};Tl(y,{withTypes:()=>y});const m=_=>{const w=_b(a,_);return w&&(w.unsubscribe(),_.cancelActive&&Jy(w)),!!w};Tl(m,{withTypes:()=>m});const g=async(_,w,S,x)=>{const M=new AbortController,V=d3(y,M.signal),Z=[];try{_.pending.add(M),l(_),await Promise.resolve(_.effect(w,Tl({},S,{getOriginalState:x,condition:(q,Q)=>V(q,Q).then(Boolean),take:V,delay:ZS(M.signal),pause:Ac(M.signal),extra:o,signal:M.signal,fork:f3(M.signal,Z),unsubscribe:_.unsubscribe,subscribe:()=>{a.set(_.id,_)},cancelActiveListeners:()=>{_.pending.forEach((q,Q,K)=>{q!==M&&(q.abort(Py),K.delete(q))})},cancel:()=>{M.abort(Py),_.pending.delete(M)},throwIfCancelled:()=>{Ei(M.signal)}})))}catch(q){q instanceof Qc||Sb(d,q,{raisedBy:"effect"})}finally{await Promise.all(Z),M.abort(o3),u(_),_.pending.delete(M)}},v=h3(a,r);return{middleware:_=>w=>S=>{if(!ES(S))return w(S);if(YS.match(S))return y(S.payload);if(y3.match(S)){v();return}if(FS.match(S))return m(S.payload);let x=_.getState();const M=()=>{if(x===bb)throw new Error(Cn(23));return x};let V;try{if(V=w(S),a.size>0){const Z=_.getState(),q=Array.from(a.values());for(const Q of q){let K=!1;try{K=Q.predicate(S,Z,x)}catch(P){K=!1,Sb(d,P,{raisedBy:"predicate"})}K&&g(Q,S,_,M)}}}finally{x=bb}return V},startListening:y,stopListening:m,clearListeners:v}};function Cn(t){return`Minified Redux Toolkit error #${t}; visit https://redux-toolkit.js.org/Errors?code=${t} for the full message or use the non-minified dev environment for full errors. `}var Ih={},Wh={},ey={},Eb;function p3(){return Eb||(Eb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r,l,{signal:u,edges:o}={}){let d,h=null;const y=o!=null&&o.includes("leading"),m=o==null||o.includes("trailing"),g=()=>{h!==null&&(r.apply(d,h),d=void 0,h=null)},v=()=>{m&&g(),S()};let E=null;const _=()=>{E!=null&&clearTimeout(E),E=setTimeout(()=>{E=null,v()},l)},w=()=>{E!==null&&(clearTimeout(E),E=null)},S=()=>{w(),d=void 0,h=null},x=()=>{g()},M=function(...V){if(u!=null&&u.aborted)return;d=this,h=V;const Z=E==null;_(),y&&Z&&g()};return M.schedule=_,M.cancel=S,M.flush=x,u==null||u.addEventListener("abort",S,{once:!0}),M}t.debounce=a})(ey)),ey}var xb;function v3(){return xb||(xb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=p3();function r(l,u=0,o={}){typeof o!="object"&&(o={});const{leading:d=!1,trailing:h=!0,maxWait:y}=o,m=Array(2);d&&(m[0]="leading"),h&&(m[1]="trailing");let g,v=null;const E=a.debounce(function(...S){g=l.apply(this,S),v=null},u,{edges:m}),_=function(...S){return y!=null&&(v===null&&(v=Date.now()),Date.now()-v>=y)?(g=l.apply(this,S),v=Date.now(),E.cancel(),E.schedule(),g):(E.apply(this,S),g)},w=()=>(E.flush(),g);return _.cancel=E.cancel,_.flush=w,_}t.debounce=r})(Wh)),Wh}var wb;function g3(){return wb||(wb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=v3();function r(l,u=0,o={}){const{leading:d=!0,trailing:h=!0}=o;return a.debounce(l,u,{leading:d,maxWait:u,trailing:h})}t.throttle=r})(Ih)),Ih}var ty,Tb;function b3(){return Tb||(Tb=1,ty=g3().throttle),ty}var _3=b3();const z4=Ja(_3);var XS=Symbol.for("immer-nothing"),Ab=Symbol.for("immer-draftable"),Rn=Symbol.for("immer-state");function aa(t,...a){throw new Error(`[Immer] minified error nr: ${t}. Full error at: https://bit.ly/3cXEKWf`)}var ou=Object.getPrototypeOf;function Yl(t){return!!t&&!!t[Rn]}function Ri(t){var a;return t?$S(t)||Array.isArray(t)||!!t[Ab]||!!((a=t.constructor)!=null&&a[Ab])||Eu(t)||Fc(t):!1}var S3=Object.prototype.constructor.toString(),Cb=new WeakMap;function $S(t){if(!t||typeof t!="object")return!1;const a=Object.getPrototypeOf(t);if(a===null||a===Object.prototype)return!0;const r=Object.hasOwnProperty.call(a,"constructor")&&a.constructor;if(r===Object)return!0;if(typeof r!="function")return!1;let l=Cb.get(r);return l===void 0&&(l=Function.toString.call(r),Cb.set(r,l)),l===S3}function Cc(t,a,r=!0){Yc(t)===0?(r?Reflect.ownKeys(t):Object.keys(t)).forEach(u=>{a(u,t[u],t)}):t.forEach((l,u)=>a(u,l,t))}function Yc(t){const a=t[Rn];return a?a.type_:Array.isArray(t)?1:Eu(t)?2:Fc(t)?3:0}function Iy(t,a){return Yc(t)===2?t.has(a):Object.prototype.hasOwnProperty.call(t,a)}function KS(t,a,r){const l=Yc(t);l===2?t.set(a,r):l===3?t.add(r):t[a]=r}function E3(t,a){return t===a?t!==0||1/t===1/a:t!==t&&a!==a}function Eu(t){return t instanceof Map}function Fc(t){return t instanceof Set}function oi(t){return t.copy_||t.base_}function Wy(t,a){if(Eu(t))return new Map(t);if(Fc(t))return new Set(t);if(Array.isArray(t))return Array.prototype.slice.call(t);const r=$S(t);if(a===!0||a==="class_only"&&!r){const l=Object.getOwnPropertyDescriptors(t);delete l[Rn];let u=Reflect.ownKeys(l);for(let o=0;o<u.length;o++){const d=u[o],h=l[d];h.writable===!1&&(h.writable=!0,h.configurable=!0),(h.get||h.set)&&(l[d]={configurable:!0,writable:!0,enumerable:h.enumerable,value:t[d]})}return Object.create(ou(t),l)}else{const l=ou(t);if(l!==null&&r)return{...t};const u=Object.create(l);return Object.assign(u,t)}}function Rm(t,a=!1){return Xc(t)||Yl(t)||!Ri(t)||(Yc(t)>1&&Object.defineProperties(t,{set:tc,add:tc,clear:tc,delete:tc}),Object.freeze(t),a&&Object.values(t).forEach(r=>Rm(r,!0))),t}function x3(){aa(2)}var tc={value:x3};function Xc(t){return t===null||typeof t!="object"?!0:Object.isFrozen(t)}var w3={};function Mi(t){const a=w3[t];return a||aa(0,t),a}var cu;function PS(){return cu}function T3(t,a){return{drafts_:[],parent_:t,immer_:a,canAutoFreeze_:!0,unfinalizedDrafts_:0}}function Ob(t,a){a&&(Mi("Patches"),t.patches_=[],t.inversePatches_=[],t.patchListener_=a)}function em(t){tm(t),t.drafts_.forEach(A3),t.drafts_=null}function tm(t){t===cu&&(cu=t.parent_)}function Rb(t){return cu=T3(cu,t)}function A3(t){const a=t[Rn];a.type_===0||a.type_===1?a.revoke_():a.revoked_=!0}function Mb(t,a){a.unfinalizedDrafts_=a.drafts_.length;const r=a.drafts_[0];return t!==void 0&&t!==r?(r[Rn].modified_&&(em(a),aa(4)),Ri(t)&&(t=Oc(a,t),a.parent_||Rc(a,t)),a.patches_&&Mi("Patches").generateReplacementPatches_(r[Rn].base_,t,a.patches_,a.inversePatches_)):t=Oc(a,r,[]),em(a),a.patches_&&a.patchListener_(a.patches_,a.inversePatches_),t!==XS?t:void 0}function Oc(t,a,r){if(Xc(a))return a;const l=t.immer_.shouldUseStrictIteration(),u=a[Rn];if(!u)return Cc(a,(o,d)=>kb(t,u,a,o,d,r),l),a;if(u.scope_!==t)return a;if(!u.modified_)return Rc(t,u.base_,!0),u.base_;if(!u.finalized_){u.finalized_=!0,u.scope_.unfinalizedDrafts_--;const o=u.copy_;let d=o,h=!1;u.type_===3&&(d=new Set(o),o.clear(),h=!0),Cc(d,(y,m)=>kb(t,u,o,y,m,r,h),l),Rc(t,o,!1),r&&t.patches_&&Mi("Patches").generatePatches_(u,r,t.patches_,t.inversePatches_)}return u.copy_}function kb(t,a,r,l,u,o,d){if(u==null||typeof u!="object"&&!d)return;const h=Xc(u);if(!(h&&!d)){if(Yl(u)){const y=o&&a&&a.type_!==3&&!Iy(a.assigned_,l)?o.concat(l):void 0,m=Oc(t,u,y);if(KS(r,l,m),Yl(m))t.canAutoFreeze_=!1;else return}else d&&r.add(u);if(Ri(u)&&!h){if(!t.immer_.autoFreeze_&&t.unfinalizedDrafts_<1||a&&a.base_&&a.base_[l]===u&&h)return;Oc(t,u),(!a||!a.scope_.parent_)&&typeof l!="symbol"&&(Eu(r)?r.has(l):Object.prototype.propertyIsEnumerable.call(r,l))&&Rc(t,u)}}}function Rc(t,a,r=!1){!t.parent_&&t.immer_.autoFreeze_&&t.canAutoFreeze_&&Rm(a,r)}function C3(t,a){const r=Array.isArray(t),l={type_:r?1:0,scope_:a?a.scope_:PS(),modified_:!1,finalized_:!1,assigned_:{},parent_:a,base_:t,draft_:null,copy_:null,revoke_:null,isManual_:!1};let u=l,o=Mm;r&&(u=[l],o=fu);const{revoke:d,proxy:h}=Proxy.revocable(u,o);return l.draft_=h,l.revoke_=d,h}var Mm={get(t,a){if(a===Rn)return t;const r=oi(t);if(!Iy(r,a))return O3(t,r,a);const l=r[a];return t.finalized_||!Ri(l)?l:l===ny(t.base_,a)?(ay(t),t.copy_[a]=am(l,t)):l},has(t,a){return a in oi(t)},ownKeys(t){return Reflect.ownKeys(oi(t))},set(t,a,r){const l=JS(oi(t),a);if(l!=null&&l.set)return l.set.call(t.draft_,r),!0;if(!t.modified_){const u=ny(oi(t),a),o=u==null?void 0:u[Rn];if(o&&o.base_===r)return t.copy_[a]=r,t.assigned_[a]=!1,!0;if(E3(r,u)&&(r!==void 0||Iy(t.base_,a)))return!0;ay(t),nm(t)}return t.copy_[a]===r&&(r!==void 0||a in t.copy_)||Number.isNaN(r)&&Number.isNaN(t.copy_[a])||(t.copy_[a]=r,t.assigned_[a]=!0),!0},deleteProperty(t,a){return ny(t.base_,a)!==void 0||a in t.base_?(t.assigned_[a]=!1,ay(t),nm(t)):delete t.assigned_[a],t.copy_&&delete t.copy_[a],!0},getOwnPropertyDescriptor(t,a){const r=oi(t),l=Reflect.getOwnPropertyDescriptor(r,a);return l&&{writable:!0,configurable:t.type_!==1||a!=="length",enumerable:l.enumerable,value:r[a]}},defineProperty(){aa(11)},getPrototypeOf(t){return ou(t.base_)},setPrototypeOf(){aa(12)}},fu={};Cc(Mm,(t,a)=>{fu[t]=function(){return arguments[0]=arguments[0][0],a.apply(this,arguments)}});fu.deleteProperty=function(t,a){return fu.set.call(this,t,a,void 0)};fu.set=function(t,a,r){return Mm.set.call(this,t[0],a,r,t[0])};function ny(t,a){const r=t[Rn];return(r?oi(r):t)[a]}function O3(t,a,r){var u;const l=JS(a,r);return l?"value"in l?l.value:(u=l.get)==null?void 0:u.call(t.draft_):void 0}function JS(t,a){if(!(a in t))return;let r=ou(t);for(;r;){const l=Object.getOwnPropertyDescriptor(r,a);if(l)return l;r=ou(r)}}function nm(t){t.modified_||(t.modified_=!0,t.parent_&&nm(t.parent_))}function ay(t){t.copy_||(t.copy_=Wy(t.base_,t.scope_.immer_.useStrictShallowCopy_))}var R3=class{constructor(t){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.useStrictIteration_=!0,this.produce=(a,r,l)=>{if(typeof a=="function"&&typeof r!="function"){const o=r;r=a;const d=this;return function(y=o,...m){return d.produce(y,g=>r.call(this,g,...m))}}typeof r!="function"&&aa(6),l!==void 0&&typeof l!="function"&&aa(7);let u;if(Ri(a)){const o=Rb(this),d=am(a,void 0);let h=!0;try{u=r(d),h=!1}finally{h?em(o):tm(o)}return Ob(o,l),Mb(u,o)}else if(!a||typeof a!="object"){if(u=r(a),u===void 0&&(u=a),u===XS&&(u=void 0),this.autoFreeze_&&Rm(u,!0),l){const o=[],d=[];Mi("Patches").generateReplacementPatches_(a,u,o,d),l(o,d)}return u}else aa(1,a)},this.produceWithPatches=(a,r)=>{if(typeof a=="function")return(d,...h)=>this.produceWithPatches(d,y=>a(y,...h));let l,u;return[this.produce(a,r,(d,h)=>{l=d,u=h}),l,u]},typeof(t==null?void 0:t.autoFreeze)=="boolean"&&this.setAutoFreeze(t.autoFreeze),typeof(t==null?void 0:t.useStrictShallowCopy)=="boolean"&&this.setUseStrictShallowCopy(t.useStrictShallowCopy),typeof(t==null?void 0:t.useStrictIteration)=="boolean"&&this.setUseStrictIteration(t.useStrictIteration)}createDraft(t){Ri(t)||aa(8),Yl(t)&&(t=M3(t));const a=Rb(this),r=am(t,void 0);return r[Rn].isManual_=!0,tm(a),r}finishDraft(t,a){const r=t&&t[Rn];(!r||!r.isManual_)&&aa(9);const{scope_:l}=r;return Ob(l,a),Mb(void 0,l)}setAutoFreeze(t){this.autoFreeze_=t}setUseStrictShallowCopy(t){this.useStrictShallowCopy_=t}setUseStrictIteration(t){this.useStrictIteration_=t}shouldUseStrictIteration(){return this.useStrictIteration_}applyPatches(t,a){let r;for(r=a.length-1;r>=0;r--){const u=a[r];if(u.path.length===0&&u.op==="replace"){t=u.value;break}}r>-1&&(a=a.slice(r+1));const l=Mi("Patches").applyPatches_;return Yl(t)?l(t,a):this.produce(t,u=>l(u,a))}};function am(t,a){const r=Eu(t)?Mi("MapSet").proxyMap_(t,a):Fc(t)?Mi("MapSet").proxySet_(t,a):C3(t,a);return(a?a.scope_:PS()).drafts_.push(r),r}function M3(t){return Yl(t)||aa(10,t),IS(t)}function IS(t){if(!Ri(t)||Xc(t))return t;const a=t[Rn];let r,l=!0;if(a){if(!a.modified_)return a.base_;a.finalized_=!0,r=Wy(t,a.scope_.immer_.useStrictShallowCopy_),l=a.scope_.immer_.shouldUseStrictIteration()}else r=Wy(t,!0);return Cc(r,(u,o)=>{KS(r,u,IS(o))},l),a&&(a.finalized_=!1),r}var k3=new R3;k3.produce;function N4(t){return t}var ry={exports:{}},iy={};/**
407
+ * @license React
408
+ * use-sync-external-store-with-selector.production.js
409
+ *
410
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
411
+ *
412
+ * This source code is licensed under the MIT license found in the
413
+ * LICENSE file in the root directory of this source tree.
414
+ */var zb;function z3(){if(zb)return iy;zb=1;var t=Fl();function a(y,m){return y===m&&(y!==0||1/y===1/m)||y!==y&&m!==m}var r=typeof Object.is=="function"?Object.is:a,l=t.useSyncExternalStore,u=t.useRef,o=t.useEffect,d=t.useMemo,h=t.useDebugValue;return iy.useSyncExternalStoreWithSelector=function(y,m,g,v,E){var _=u(null);if(_.current===null){var w={hasValue:!1,value:null};_.current=w}else w=_.current;_=d(function(){function x(Q){if(!M){if(M=!0,V=Q,Q=v(Q),E!==void 0&&w.hasValue){var K=w.value;if(E(K,Q))return Z=K}return Z=Q}if(K=Z,r(V,Q))return K;var P=v(Q);return E!==void 0&&E(K,P)?(V=Q,K):(V=Q,Z=P)}var M=!1,V,Z,q=g===void 0?null:g;return[function(){return x(m())},q===null?void 0:function(){return x(q())}]},[m,g,v,E]);var S=l(y,_[0],_[1]);return o(function(){w.hasValue=!0,w.value=S},[S]),h(S),S},iy}var Nb;function N3(){return Nb||(Nb=1,ry.exports=z3()),ry.exports}N3();function D3(t){t()}function U3(){let t=null,a=null;return{clear(){t=null,a=null},notify(){D3(()=>{let r=t;for(;r;)r.callback(),r=r.next})},get(){const r=[];let l=t;for(;l;)r.push(l),l=l.next;return r},subscribe(r){let l=!0;const u=a={callback:r,next:null,prev:a};return u.prev?u.prev.next=u:t=u,function(){!l||t===null||(l=!1,u.next?u.next.prev=u.prev:a=u.prev,u.prev?u.prev.next=u.next:t=u.next)}}}}var Db={notify(){},get:()=>[]};function L3(t,a){let r,l=Db,u=0,o=!1;function d(S){g();const x=l.subscribe(S);let M=!1;return()=>{M||(M=!0,x(),v())}}function h(){l.notify()}function y(){w.onStateChange&&w.onStateChange()}function m(){return o}function g(){u++,r||(r=t.subscribe(y),l=U3())}function v(){u--,r&&u===0&&(r(),r=void 0,l.clear(),l=Db)}function E(){o||(o=!0,g())}function _(){o&&(o=!1,v())}const w={addNestedSub:d,notifyNestedSubs:h,handleChangeWrapper:y,isSubscribed:m,trySubscribe:E,tryUnsubscribe:_,getListeners:()=>l};return w}var j3=()=>typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",q3=j3(),B3=()=>typeof navigator<"u"&&navigator.product==="ReactNative",V3=B3(),H3=()=>q3||V3?z.useLayoutEffect:z.useEffect,Z3=H3();function Ub(t,a){return t===a?t!==0||a!==0||1/t===1/a:t!==t&&a!==a}function D4(t,a){if(Ub(t,a))return!0;if(typeof t!="object"||t===null||typeof a!="object"||a===null)return!1;const r=Object.keys(t),l=Object.keys(a);if(r.length!==l.length)return!1;for(let u=0;u<r.length;u++)if(!Object.prototype.hasOwnProperty.call(a,r[u])||!Ub(t[r[u]],a[r[u]]))return!1;return!0}var ly=Symbol.for("react-redux-context"),sy=typeof globalThis<"u"?globalThis:{};function Q3(){if(!z.createContext)return{};const t=sy[ly]??(sy[ly]=new Map);let a=t.get(z.createContext);return a||(a=z.createContext(null),t.set(z.createContext,a)),a}var G3=Q3();function Y3(t){const{children:a,context:r,serverState:l,store:u}=t,o=z.useMemo(()=>{const y=L3(u);return{store:u,subscription:y,getServerState:l?()=>l:void 0}},[u,l]),d=z.useMemo(()=>u.getState(),[u]);Z3(()=>{const{subscription:y}=o;return y.onStateChange=y.notifyNestedSubs,y.trySubscribe(),d!==u.getState()&&y.notifyNestedSubs(),()=>{y.tryUnsubscribe(),y.onStateChange=void 0}},[o,d]);const h=r||G3;return z.createElement(h.Provider,{value:o},a)}var U4=Y3,uy={},oy={},cy={},Lb;function F3(){return Lb||(Lb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=bS();function r(l){return a.isSymbol(l)?NaN:Number(l)}t.toNumber=r})(cy)),cy}var jb;function X3(){return jb||(jb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=F3();function r(l){return l?(l=a.toNumber(l),l===1/0||l===-1/0?(l<0?-1:1)*Number.MAX_VALUE:l===l?l:0):l===0?l:0}t.toFinite=r})(oy)),oy}var qb;function $3(){return qb||(qb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});const a=_S(),r=X3();function l(u,o,d){d&&typeof d!="number"&&a.isIterateeCall(u,o,d)&&(o=d=void 0),u=r.toFinite(u),o===void 0?(o=u,u=0):o=r.toFinite(o),d=d===void 0?u<o?1:-1:r.toFinite(d);const h=Math.max(Math.ceil((o-u)/(d||1)),0),y=new Array(h);for(let m=0;m<h;m++)y[m]=u,u+=d;return y}t.range=l})(uy)),uy}var fy,Bb;function K3(){return Bb||(Bb=1,fy=$3().range),fy}var P3=K3();const L4=Ja(P3);var Jl=1e9,J3={precision:20,rounding:4,toExpNeg:-7,toExpPos:21,LN10:"2.302585092994045684017991454684364207601101488628772976033327900967572609677352480235997205089598298341967784042286"},zm,yt=!0,Xn="[DecimalError] ",xi=Xn+"Invalid argument: ",km=Xn+"Exponent out of range: ",Il=Math.floor,ci=Math.pow,I3=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,Tn,Vt=1e7,dt=7,WS=9007199254740991,Mc=Il(WS/dt),oe={};oe.absoluteValue=oe.abs=function(){var t=new this.constructor(this);return t.s&&(t.s=1),t};oe.comparedTo=oe.cmp=function(t){var a,r,l,u,o=this;if(t=new o.constructor(t),o.s!==t.s)return o.s||-t.s;if(o.e!==t.e)return o.e>t.e^o.s<0?1:-1;for(l=o.d.length,u=t.d.length,a=0,r=l<u?l:u;a<r;++a)if(o.d[a]!==t.d[a])return o.d[a]>t.d[a]^o.s<0?1:-1;return l===u?0:l>u^o.s<0?1:-1};oe.decimalPlaces=oe.dp=function(){var t=this,a=t.d.length-1,r=(a-t.e)*dt;if(a=t.d[a],a)for(;a%10==0;a/=10)r--;return r<0?0:r};oe.dividedBy=oe.div=function(t){return Fa(this,new this.constructor(t))};oe.dividedToIntegerBy=oe.idiv=function(t){var a=this,r=a.constructor;return ut(Fa(a,new r(t),0,1),r.precision)};oe.equals=oe.eq=function(t){return!this.cmp(t)};oe.exponent=function(){return Nt(this)};oe.greaterThan=oe.gt=function(t){return this.cmp(t)>0};oe.greaterThanOrEqualTo=oe.gte=function(t){return this.cmp(t)>=0};oe.isInteger=oe.isint=function(){return this.e>this.d.length-2};oe.isNegative=oe.isneg=function(){return this.s<0};oe.isPositive=oe.ispos=function(){return this.s>0};oe.isZero=function(){return this.s===0};oe.lessThan=oe.lt=function(t){return this.cmp(t)<0};oe.lessThanOrEqualTo=oe.lte=function(t){return this.cmp(t)<1};oe.logarithm=oe.log=function(t){var a,r=this,l=r.constructor,u=l.precision,o=u+5;if(t===void 0)t=new l(10);else if(t=new l(t),t.s<1||t.eq(Tn))throw Error(Xn+"NaN");if(r.s<1)throw Error(Xn+(r.s?"NaN":"-Infinity"));return r.eq(Tn)?new l(0):(yt=!1,a=Fa(du(r,o),du(t,o),o),yt=!0,ut(a,u))};oe.minus=oe.sub=function(t){var a=this;return t=new a.constructor(t),a.s==t.s?n2(a,t):e2(a,(t.s=-t.s,t))};oe.modulo=oe.mod=function(t){var a,r=this,l=r.constructor,u=l.precision;if(t=new l(t),!t.s)throw Error(Xn+"NaN");return r.s?(yt=!1,a=Fa(r,t,0,1).times(t),yt=!0,r.minus(a)):ut(new l(r),u)};oe.naturalExponential=oe.exp=function(){return t2(this)};oe.naturalLogarithm=oe.ln=function(){return du(this)};oe.negated=oe.neg=function(){var t=new this.constructor(this);return t.s=-t.s||0,t};oe.plus=oe.add=function(t){var a=this;return t=new a.constructor(t),a.s==t.s?e2(a,t):n2(a,(t.s=-t.s,t))};oe.precision=oe.sd=function(t){var a,r,l,u=this;if(t!==void 0&&t!==!!t&&t!==1&&t!==0)throw Error(xi+t);if(a=Nt(u)+1,l=u.d.length-1,r=l*dt+1,l=u.d[l],l){for(;l%10==0;l/=10)r--;for(l=u.d[0];l>=10;l/=10)r++}return t&&a>r?a:r};oe.squareRoot=oe.sqrt=function(){var t,a,r,l,u,o,d,h=this,y=h.constructor;if(h.s<1){if(!h.s)return new y(0);throw Error(Xn+"NaN")}for(t=Nt(h),yt=!1,u=Math.sqrt(+h),u==0||u==1/0?(a=ma(h.d),(a.length+t)%2==0&&(a+="0"),u=Math.sqrt(a),t=Il((t+1)/2)-(t<0||t%2),u==1/0?a="5e"+t:(a=u.toExponential(),a=a.slice(0,a.indexOf("e")+1)+t),l=new y(a)):l=new y(u.toString()),r=y.precision,u=d=r+3;;)if(o=l,l=o.plus(Fa(h,o,d+2)).times(.5),ma(o.d).slice(0,d)===(a=ma(l.d)).slice(0,d)){if(a=a.slice(d-3,d+1),u==d&&a=="4999"){if(ut(o,r+1,0),o.times(o).eq(h)){l=o;break}}else if(a!="9999")break;d+=4}return yt=!0,ut(l,r)};oe.times=oe.mul=function(t){var a,r,l,u,o,d,h,y,m,g=this,v=g.constructor,E=g.d,_=(t=new v(t)).d;if(!g.s||!t.s)return new v(0);for(t.s*=g.s,r=g.e+t.e,y=E.length,m=_.length,y<m&&(o=E,E=_,_=o,d=y,y=m,m=d),o=[],d=y+m,l=d;l--;)o.push(0);for(l=m;--l>=0;){for(a=0,u=y+l;u>l;)h=o[u]+_[l]*E[u-l-1]+a,o[u--]=h%Vt|0,a=h/Vt|0;o[u]=(o[u]+a)%Vt|0}for(;!o[--d];)o.pop();return a?++r:o.shift(),t.d=o,t.e=r,yt?ut(t,v.precision):t};oe.toDecimalPlaces=oe.todp=function(t,a){var r=this,l=r.constructor;return r=new l(r),t===void 0?r:(ga(t,0,Jl),a===void 0?a=l.rounding:ga(a,0,8),ut(r,t+Nt(r)+1,a))};oe.toExponential=function(t,a){var r,l=this,u=l.constructor;return t===void 0?r=ki(l,!0):(ga(t,0,Jl),a===void 0?a=u.rounding:ga(a,0,8),l=ut(new u(l),t+1,a),r=ki(l,!0,t+1)),r};oe.toFixed=function(t,a){var r,l,u=this,o=u.constructor;return t===void 0?ki(u):(ga(t,0,Jl),a===void 0?a=o.rounding:ga(a,0,8),l=ut(new o(u),t+Nt(u)+1,a),r=ki(l.abs(),!1,t+Nt(l)+1),u.isneg()&&!u.isZero()?"-"+r:r)};oe.toInteger=oe.toint=function(){var t=this,a=t.constructor;return ut(new a(t),Nt(t)+1,a.rounding)};oe.toNumber=function(){return+this};oe.toPower=oe.pow=function(t){var a,r,l,u,o,d,h=this,y=h.constructor,m=12,g=+(t=new y(t));if(!t.s)return new y(Tn);if(h=new y(h),!h.s){if(t.s<1)throw Error(Xn+"Infinity");return h}if(h.eq(Tn))return h;if(l=y.precision,t.eq(Tn))return ut(h,l);if(a=t.e,r=t.d.length-1,d=a>=r,o=h.s,d){if((r=g<0?-g:g)<=WS){for(u=new y(Tn),a=Math.ceil(l/dt+4),yt=!1;r%2&&(u=u.times(h),Hb(u.d,a)),r=Il(r/2),r!==0;)h=h.times(h),Hb(h.d,a);return yt=!0,t.s<0?new y(Tn).div(u):ut(u,l)}}else if(o<0)throw Error(Xn+"NaN");return o=o<0&&t.d[Math.max(a,r)]&1?-1:1,h.s=1,yt=!1,u=t.times(du(h,l+m)),yt=!0,u=t2(u),u.s=o,u};oe.toPrecision=function(t,a){var r,l,u=this,o=u.constructor;return t===void 0?(r=Nt(u),l=ki(u,r<=o.toExpNeg||r>=o.toExpPos)):(ga(t,1,Jl),a===void 0?a=o.rounding:ga(a,0,8),u=ut(new o(u),t,a),r=Nt(u),l=ki(u,t<=r||r<=o.toExpNeg,t)),l};oe.toSignificantDigits=oe.tosd=function(t,a){var r=this,l=r.constructor;return t===void 0?(t=l.precision,a=l.rounding):(ga(t,1,Jl),a===void 0?a=l.rounding:ga(a,0,8)),ut(new l(r),t,a)};oe.toString=oe.valueOf=oe.val=oe.toJSON=oe[Symbol.for("nodejs.util.inspect.custom")]=function(){var t=this,a=Nt(t),r=t.constructor;return ki(t,a<=r.toExpNeg||a>=r.toExpPos)};function e2(t,a){var r,l,u,o,d,h,y,m,g=t.constructor,v=g.precision;if(!t.s||!a.s)return a.s||(a=new g(t)),yt?ut(a,v):a;if(y=t.d,m=a.d,d=t.e,u=a.e,y=y.slice(),o=d-u,o){for(o<0?(l=y,o=-o,h=m.length):(l=m,u=d,h=y.length),d=Math.ceil(v/dt),h=d>h?d+1:h+1,o>h&&(o=h,l.length=1),l.reverse();o--;)l.push(0);l.reverse()}for(h=y.length,o=m.length,h-o<0&&(o=h,l=m,m=y,y=l),r=0;o;)r=(y[--o]=y[o]+m[o]+r)/Vt|0,y[o]%=Vt;for(r&&(y.unshift(r),++u),h=y.length;y[--h]==0;)y.pop();return a.d=y,a.e=u,yt?ut(a,v):a}function ga(t,a,r){if(t!==~~t||t<a||t>r)throw Error(xi+t)}function ma(t){var a,r,l,u=t.length-1,o="",d=t[0];if(u>0){for(o+=d,a=1;a<u;a++)l=t[a]+"",r=dt-l.length,r&&(o+=Cr(r)),o+=l;d=t[a],l=d+"",r=dt-l.length,r&&(o+=Cr(r))}else if(d===0)return"0";for(;d%10===0;)d/=10;return o+d}var Fa=(function(){function t(l,u){var o,d=0,h=l.length;for(l=l.slice();h--;)o=l[h]*u+d,l[h]=o%Vt|0,d=o/Vt|0;return d&&l.unshift(d),l}function a(l,u,o,d){var h,y;if(o!=d)y=o>d?1:-1;else for(h=y=0;h<o;h++)if(l[h]!=u[h]){y=l[h]>u[h]?1:-1;break}return y}function r(l,u,o){for(var d=0;o--;)l[o]-=d,d=l[o]<u[o]?1:0,l[o]=d*Vt+l[o]-u[o];for(;!l[0]&&l.length>1;)l.shift()}return function(l,u,o,d){var h,y,m,g,v,E,_,w,S,x,M,V,Z,q,Q,K,P,G,re=l.constructor,ze=l.s==u.s?1:-1,Ae=l.d,ne=u.d;if(!l.s)return new re(l);if(!u.s)throw Error(Xn+"Division by zero");for(y=l.e-u.e,P=ne.length,Q=Ae.length,_=new re(ze),w=_.d=[],m=0;ne[m]==(Ae[m]||0);)++m;if(ne[m]>(Ae[m]||0)&&--y,o==null?V=o=re.precision:d?V=o+(Nt(l)-Nt(u))+1:V=o,V<0)return new re(0);if(V=V/dt+2|0,m=0,P==1)for(g=0,ne=ne[0],V++;(m<Q||g)&&V--;m++)Z=g*Vt+(Ae[m]||0),w[m]=Z/ne|0,g=Z%ne|0;else{for(g=Vt/(ne[0]+1)|0,g>1&&(ne=t(ne,g),Ae=t(Ae,g),P=ne.length,Q=Ae.length),q=P,S=Ae.slice(0,P),x=S.length;x<P;)S[x++]=0;G=ne.slice(),G.unshift(0),K=ne[0],ne[1]>=Vt/2&&++K;do g=0,h=a(ne,S,P,x),h<0?(M=S[0],P!=x&&(M=M*Vt+(S[1]||0)),g=M/K|0,g>1?(g>=Vt&&(g=Vt-1),v=t(ne,g),E=v.length,x=S.length,h=a(v,S,E,x),h==1&&(g--,r(v,P<E?G:ne,E))):(g==0&&(h=g=1),v=ne.slice()),E=v.length,E<x&&v.unshift(0),r(S,v,x),h==-1&&(x=S.length,h=a(ne,S,P,x),h<1&&(g++,r(S,P<x?G:ne,x))),x=S.length):h===0&&(g++,S=[0]),w[m++]=g,h&&S[0]?S[x++]=Ae[q]||0:(S=[Ae[q]],x=1);while((q++<Q||S[0]!==void 0)&&V--)}return w[0]||w.shift(),_.e=y,ut(_,d?o+Nt(_)+1:o)}})();function t2(t,a){var r,l,u,o,d,h,y=0,m=0,g=t.constructor,v=g.precision;if(Nt(t)>16)throw Error(km+Nt(t));if(!t.s)return new g(Tn);for(yt=!1,h=v,d=new g(.03125);t.abs().gte(.1);)t=t.times(d),m+=5;for(l=Math.log(ci(2,m))/Math.LN10*2+5|0,h+=l,r=u=o=new g(Tn),g.precision=h;;){if(u=ut(u.times(t),h),r=r.times(++y),d=o.plus(Fa(u,r,h)),ma(d.d).slice(0,h)===ma(o.d).slice(0,h)){for(;m--;)o=ut(o.times(o),h);return g.precision=v,a==null?(yt=!0,ut(o,v)):o}o=d}}function Nt(t){for(var a=t.e*dt,r=t.d[0];r>=10;r/=10)a++;return a}function dy(t,a,r){if(a>t.LN10.sd())throw yt=!0,r&&(t.precision=r),Error(Xn+"LN10 precision limit exceeded");return ut(new t(t.LN10),a)}function Cr(t){for(var a="";t--;)a+="0";return a}function du(t,a){var r,l,u,o,d,h,y,m,g,v=1,E=10,_=t,w=_.d,S=_.constructor,x=S.precision;if(_.s<1)throw Error(Xn+(_.s?"NaN":"-Infinity"));if(_.eq(Tn))return new S(0);if(a==null?(yt=!1,m=x):m=a,_.eq(10))return a==null&&(yt=!0),dy(S,m);if(m+=E,S.precision=m,r=ma(w),l=r.charAt(0),o=Nt(_),Math.abs(o)<15e14){for(;l<7&&l!=1||l==1&&r.charAt(1)>3;)_=_.times(t),r=ma(_.d),l=r.charAt(0),v++;o=Nt(_),l>1?(_=new S("0."+r),o++):_=new S(l+"."+r.slice(1))}else return y=dy(S,m+2,x).times(o+""),_=du(new S(l+"."+r.slice(1)),m-E).plus(y),S.precision=x,a==null?(yt=!0,ut(_,x)):_;for(h=d=_=Fa(_.minus(Tn),_.plus(Tn),m),g=ut(_.times(_),m),u=3;;){if(d=ut(d.times(g),m),y=h.plus(Fa(d,new S(u),m)),ma(y.d).slice(0,m)===ma(h.d).slice(0,m))return h=h.times(2),o!==0&&(h=h.plus(dy(S,m+2,x).times(o+""))),h=Fa(h,new S(v),m),S.precision=x,a==null?(yt=!0,ut(h,x)):h;h=y,u+=2}}function Vb(t,a){var r,l,u;for((r=a.indexOf("."))>-1&&(a=a.replace(".","")),(l=a.search(/e/i))>0?(r<0&&(r=l),r+=+a.slice(l+1),a=a.substring(0,l)):r<0&&(r=a.length),l=0;a.charCodeAt(l)===48;)++l;for(u=a.length;a.charCodeAt(u-1)===48;)--u;if(a=a.slice(l,u),a){if(u-=l,r=r-l-1,t.e=Il(r/dt),t.d=[],l=(r+1)%dt,r<0&&(l+=dt),l<u){for(l&&t.d.push(+a.slice(0,l)),u-=dt;l<u;)t.d.push(+a.slice(l,l+=dt));a=a.slice(l),l=dt-a.length}else l-=u;for(;l--;)a+="0";if(t.d.push(+a),yt&&(t.e>Mc||t.e<-Mc))throw Error(km+r)}else t.s=0,t.e=0,t.d=[0];return t}function ut(t,a,r){var l,u,o,d,h,y,m,g,v=t.d;for(d=1,o=v[0];o>=10;o/=10)d++;if(l=a-d,l<0)l+=dt,u=a,m=v[g=0];else{if(g=Math.ceil((l+1)/dt),o=v.length,g>=o)return t;for(m=o=v[g],d=1;o>=10;o/=10)d++;l%=dt,u=l-dt+d}if(r!==void 0&&(o=ci(10,d-u-1),h=m/o%10|0,y=a<0||v[g+1]!==void 0||m%o,y=r<4?(h||y)&&(r==0||r==(t.s<0?3:2)):h>5||h==5&&(r==4||y||r==6&&(l>0?u>0?m/ci(10,d-u):0:v[g-1])%10&1||r==(t.s<0?8:7))),a<1||!v[0])return y?(o=Nt(t),v.length=1,a=a-o-1,v[0]=ci(10,(dt-a%dt)%dt),t.e=Il(-a/dt)||0):(v.length=1,v[0]=t.e=t.s=0),t;if(l==0?(v.length=g,o=1,g--):(v.length=g+1,o=ci(10,dt-l),v[g]=u>0?(m/ci(10,d-u)%ci(10,u)|0)*o:0),y)for(;;)if(g==0){(v[0]+=o)==Vt&&(v[0]=1,++t.e);break}else{if(v[g]+=o,v[g]!=Vt)break;v[g--]=0,o=1}for(l=v.length;v[--l]===0;)v.pop();if(yt&&(t.e>Mc||t.e<-Mc))throw Error(km+Nt(t));return t}function n2(t,a){var r,l,u,o,d,h,y,m,g,v,E=t.constructor,_=E.precision;if(!t.s||!a.s)return a.s?a.s=-a.s:a=new E(t),yt?ut(a,_):a;if(y=t.d,v=a.d,l=a.e,m=t.e,y=y.slice(),d=m-l,d){for(g=d<0,g?(r=y,d=-d,h=v.length):(r=v,l=m,h=y.length),u=Math.max(Math.ceil(_/dt),h)+2,d>u&&(d=u,r.length=1),r.reverse(),u=d;u--;)r.push(0);r.reverse()}else{for(u=y.length,h=v.length,g=u<h,g&&(h=u),u=0;u<h;u++)if(y[u]!=v[u]){g=y[u]<v[u];break}d=0}for(g&&(r=y,y=v,v=r,a.s=-a.s),h=y.length,u=v.length-h;u>0;--u)y[h++]=0;for(u=v.length;u>d;){if(y[--u]<v[u]){for(o=u;o&&y[--o]===0;)y[o]=Vt-1;--y[o],y[u]+=Vt}y[u]-=v[u]}for(;y[--h]===0;)y.pop();for(;y[0]===0;y.shift())--l;return y[0]?(a.d=y,a.e=l,yt?ut(a,_):a):new E(0)}function ki(t,a,r){var l,u=Nt(t),o=ma(t.d),d=o.length;return a?(r&&(l=r-d)>0?o=o.charAt(0)+"."+o.slice(1)+Cr(l):d>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(u<0?"e":"e+")+u):u<0?(o="0."+Cr(-u-1)+o,r&&(l=r-d)>0&&(o+=Cr(l))):u>=d?(o+=Cr(u+1-d),r&&(l=r-u-1)>0&&(o=o+"."+Cr(l))):((l=u+1)<d&&(o=o.slice(0,l)+"."+o.slice(l)),r&&(l=r-d)>0&&(u+1===d&&(o+="."),o+=Cr(l))),t.s<0?"-"+o:o}function Hb(t,a){if(t.length>a)return t.length=a,!0}function a2(t){var a,r,l;function u(o){var d=this;if(!(d instanceof u))return new u(o);if(d.constructor=u,o instanceof u){d.s=o.s,d.e=o.e,d.d=(o=o.d)?o.slice():o;return}if(typeof o=="number"){if(o*0!==0)throw Error(xi+o);if(o>0)d.s=1;else if(o<0)o=-o,d.s=-1;else{d.s=0,d.e=0,d.d=[0];return}if(o===~~o&&o<1e7){d.e=0,d.d=[o];return}return Vb(d,o.toString())}else if(typeof o!="string")throw Error(xi+o);if(o.charCodeAt(0)===45?(o=o.slice(1),d.s=-1):d.s=1,I3.test(o))Vb(d,o);else throw Error(xi+o)}if(u.prototype=oe,u.ROUND_UP=0,u.ROUND_DOWN=1,u.ROUND_CEIL=2,u.ROUND_FLOOR=3,u.ROUND_HALF_UP=4,u.ROUND_HALF_DOWN=5,u.ROUND_HALF_EVEN=6,u.ROUND_HALF_CEIL=7,u.ROUND_HALF_FLOOR=8,u.clone=a2,u.config=u.set=W3,t===void 0&&(t={}),t)for(l=["precision","rounding","toExpNeg","toExpPos","LN10"],a=0;a<l.length;)t.hasOwnProperty(r=l[a++])||(t[r]=this[r]);return u.config(t),u}function W3(t){if(!t||typeof t!="object")throw Error(Xn+"Object expected");var a,r,l,u=["precision",1,Jl,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(a=0;a<u.length;a+=3)if((l=t[r=u[a]])!==void 0)if(Il(l)===l&&l>=u[a+1]&&l<=u[a+2])this[r]=l;else throw Error(xi+r+": "+l);if((l=t[r="LN10"])!==void 0)if(l==Math.LN10)this[r]=new this(l);else throw Error(xi+r+": "+l);return this}var zm=a2(J3);Tn=new zm(1);const j4=zm;class q4 extends Map{constructor(a,r=nM){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:r}}),a!=null)for(const[l,u]of a)this.set(l,u)}get(a){return super.get(Zb(this,a))}has(a){return super.has(Zb(this,a))}set(a,r){return super.set(eM(this,a),r)}delete(a){return super.delete(tM(this,a))}}function Zb({_intern:t,_key:a},r){const l=a(r);return t.has(l)?t.get(l):r}function eM({_intern:t,_key:a},r){const l=a(r);return t.has(l)?t.get(l):(t.set(l,r),r)}function tM({_intern:t,_key:a},r){const l=a(r);return t.has(l)&&(r=t.get(l),t.delete(l)),r}function nM(t){return t!==null&&typeof t=="object"?t.valueOf():t}var hy={exports:{}},Qb;function aM(){return Qb||(Qb=1,(function(t){var a=Object.prototype.hasOwnProperty,r="~";function l(){}Object.create&&(l.prototype=Object.create(null),new l().__proto__||(r=!1));function u(y,m,g){this.fn=y,this.context=m,this.once=g||!1}function o(y,m,g,v,E){if(typeof g!="function")throw new TypeError("The listener must be a function");var _=new u(g,v||y,E),w=r?r+m:m;return y._events[w]?y._events[w].fn?y._events[w]=[y._events[w],_]:y._events[w].push(_):(y._events[w]=_,y._eventsCount++),y}function d(y,m){--y._eventsCount===0?y._events=new l:delete y._events[m]}function h(){this._events=new l,this._eventsCount=0}h.prototype.eventNames=function(){var m=[],g,v;if(this._eventsCount===0)return m;for(v in g=this._events)a.call(g,v)&&m.push(r?v.slice(1):v);return Object.getOwnPropertySymbols?m.concat(Object.getOwnPropertySymbols(g)):m},h.prototype.listeners=function(m){var g=r?r+m:m,v=this._events[g];if(!v)return[];if(v.fn)return[v.fn];for(var E=0,_=v.length,w=new Array(_);E<_;E++)w[E]=v[E].fn;return w},h.prototype.listenerCount=function(m){var g=r?r+m:m,v=this._events[g];return v?v.fn?1:v.length:0},h.prototype.emit=function(m,g,v,E,_,w){var S=r?r+m:m;if(!this._events[S])return!1;var x=this._events[S],M=arguments.length,V,Z;if(x.fn){switch(x.once&&this.removeListener(m,x.fn,void 0,!0),M){case 1:return x.fn.call(x.context),!0;case 2:return x.fn.call(x.context,g),!0;case 3:return x.fn.call(x.context,g,v),!0;case 4:return x.fn.call(x.context,g,v,E),!0;case 5:return x.fn.call(x.context,g,v,E,_),!0;case 6:return x.fn.call(x.context,g,v,E,_,w),!0}for(Z=1,V=new Array(M-1);Z<M;Z++)V[Z-1]=arguments[Z];x.fn.apply(x.context,V)}else{var q=x.length,Q;for(Z=0;Z<q;Z++)switch(x[Z].once&&this.removeListener(m,x[Z].fn,void 0,!0),M){case 1:x[Z].fn.call(x[Z].context);break;case 2:x[Z].fn.call(x[Z].context,g);break;case 3:x[Z].fn.call(x[Z].context,g,v);break;case 4:x[Z].fn.call(x[Z].context,g,v,E);break;default:if(!V)for(Q=1,V=new Array(M-1);Q<M;Q++)V[Q-1]=arguments[Q];x[Z].fn.apply(x[Z].context,V)}}return!0},h.prototype.on=function(m,g,v){return o(this,m,g,v,!1)},h.prototype.once=function(m,g,v){return o(this,m,g,v,!0)},h.prototype.removeListener=function(m,g,v,E){var _=r?r+m:m;if(!this._events[_])return this;if(!g)return d(this,_),this;var w=this._events[_];if(w.fn)w.fn===g&&(!E||w.once)&&(!v||w.context===v)&&d(this,_);else{for(var S=0,x=[],M=w.length;S<M;S++)(w[S].fn!==g||E&&!w[S].once||v&&w[S].context!==v)&&x.push(w[S]);x.length?this._events[_]=x.length===1?x[0]:x:d(this,_)}return this},h.prototype.removeAllListeners=function(m){var g;return m?(g=r?r+m:m,this._events[g]&&d(this,g)):(this._events=new l,this._eventsCount=0),this},h.prototype.off=h.prototype.removeListener,h.prototype.addListener=h.prototype.on,h.prefixed=r,h.EventEmitter=h,t.exports=h})(hy)),hy.exports}var rM=aM();const B4=Ja(rM);var yy={exports:{}},lt={};/**
415
+ * @license React
416
+ * react-is.production.js
417
+ *
418
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
419
+ *
420
+ * This source code is licensed under the MIT license found in the
421
+ * LICENSE file in the root directory of this source tree.
422
+ */var Gb;function iM(){if(Gb)return lt;Gb=1;var t=Symbol.for("react.transitional.element"),a=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),l=Symbol.for("react.strict_mode"),u=Symbol.for("react.profiler"),o=Symbol.for("react.consumer"),d=Symbol.for("react.context"),h=Symbol.for("react.forward_ref"),y=Symbol.for("react.suspense"),m=Symbol.for("react.suspense_list"),g=Symbol.for("react.memo"),v=Symbol.for("react.lazy"),E=Symbol.for("react.view_transition"),_=Symbol.for("react.client.reference");function w(S){if(typeof S=="object"&&S!==null){var x=S.$$typeof;switch(x){case t:switch(S=S.type,S){case r:case u:case l:case y:case m:case E:return S;default:switch(S=S&&S.$$typeof,S){case d:case h:case v:case g:return S;case o:return S;default:return x}}case a:return x}}}return lt.ContextConsumer=o,lt.ContextProvider=d,lt.Element=t,lt.ForwardRef=h,lt.Fragment=r,lt.Lazy=v,lt.Memo=g,lt.Portal=a,lt.Profiler=u,lt.StrictMode=l,lt.Suspense=y,lt.SuspenseList=m,lt.isContextConsumer=function(S){return w(S)===o},lt.isContextProvider=function(S){return w(S)===d},lt.isElement=function(S){return typeof S=="object"&&S!==null&&S.$$typeof===t},lt.isForwardRef=function(S){return w(S)===h},lt.isFragment=function(S){return w(S)===r},lt.isLazy=function(S){return w(S)===v},lt.isMemo=function(S){return w(S)===g},lt.isPortal=function(S){return w(S)===a},lt.isProfiler=function(S){return w(S)===u},lt.isStrictMode=function(S){return w(S)===l},lt.isSuspense=function(S){return w(S)===y},lt.isSuspenseList=function(S){return w(S)===m},lt.isValidElementType=function(S){return typeof S=="string"||typeof S=="function"||S===r||S===u||S===l||S===y||S===m||typeof S=="object"&&S!==null&&(S.$$typeof===v||S.$$typeof===g||S.$$typeof===d||S.$$typeof===o||S.$$typeof===h||S.$$typeof===_||S.getModuleId!==void 0)},lt.typeOf=w,lt}var Yb;function lM(){return Yb||(Yb=1,yy.exports=iM()),yy.exports}var V4=lM(),my={},Fb;function sM(){return Fb||(Fb=1,(function(t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});function a(r){var u;if(typeof r!="object"||r==null)return!1;if(Object.getPrototypeOf(r)===null)return!0;if(Object.prototype.toString.call(r)!=="[object Object]"){const o=r[Symbol.toStringTag];return o==null||!((u=Object.getOwnPropertyDescriptor(r,Symbol.toStringTag))!=null&&u.writable)?!1:r.toString()===`[object ${o}]`}let l=r;for(;Object.getPrototypeOf(l)!==null;)l=Object.getPrototypeOf(l);return Object.getPrototypeOf(r)===l}t.isPlainObject=a})(my)),my}var py,Xb;function uM(){return Xb||(Xb=1,py=sM().isPlainObject),py}var oM=uM();const H4=Ja(oM);var cM="Invariant failed";function Z4(t,a){throw new Error(cM)}const $b=t=>{let a;const r=new Set,l=(m,g)=>{const v=typeof m=="function"?m(a):m;if(!Object.is(v,a)){const E=a;a=g??(typeof v!="object"||v===null)?v:Object.assign({},a,v),r.forEach(_=>_(a,E))}},u=()=>a,h={setState:l,getState:u,getInitialState:()=>y,subscribe:m=>(r.add(m),()=>r.delete(m))},y=a=t(l,u,h);return h},fM=(t=>t?$b(t):$b),dM=t=>t;function hM(t,a=dM){const r=kt.useSyncExternalStore(t.subscribe,kt.useCallback(()=>a(t.getState()),[t,a]),kt.useCallback(()=>a(t.getInitialState()),[t,a]));return kt.useDebugValue(r),r}const Kb=t=>{const a=fM(t),r=l=>hM(a,l);return Object.assign(r,a),r},Q4=(t=>t?Kb(t):Kb);var xu=t=>t.type==="checkbox",di=t=>t instanceof Date,mn=t=>t==null;const r2=t=>typeof t=="object";var xt=t=>!mn(t)&&!Array.isArray(t)&&r2(t)&&!di(t),yM=t=>xt(t)&&t.target?xu(t.target)?t.target.checked:t.target.value:t,i2=t=>t.substring(0,t.search(/\.\d+(\.|$)/))||t,mM=(t,a)=>t.has(i2(a)),pM=t=>{const a=t.constructor&&t.constructor.prototype;return xt(a)&&a.hasOwnProperty("isPrototypeOf")},Nm=typeof window<"u"&&typeof window.HTMLElement<"u"&&typeof document<"u";function Lt(t){if(t instanceof Date)return new Date(t);const a=typeof FileList<"u"&&t instanceof FileList;if(Nm&&(t instanceof Blob||a))return t;const r=Array.isArray(t);if(!r&&!(xt(t)&&pM(t)))return t;const l=r?[]:Object.create(Object.getPrototypeOf(t));for(const u in t)Object.prototype.hasOwnProperty.call(t,u)&&(l[u]=Lt(t[u]));return l}var $c=t=>/^\w*$/.test(t),pt=t=>t===void 0,Dm=t=>Array.isArray(t)?t.filter(Boolean):[],Um=t=>Dm(t.replace(/["|']|\]/g,"").split(/\.|\[/)),me=(t,a,r)=>{if(!a||!xt(t))return r;const l=($c(a)?[a]:Um(a)).reduce((u,o)=>mn(u)?u:u[o],t);return pt(l)||l===t?pt(t[a])?r:t[a]:l},fa=t=>typeof t=="boolean",ra=t=>typeof t=="function",ft=(t,a,r)=>{let l=-1;const u=$c(a)?[a]:Um(a),o=u.length,d=o-1;for(;++l<o;){const h=u[l];let y=r;if(l!==d){const m=t[h];y=xt(m)||Array.isArray(m)?m:isNaN(+u[l+1])?{}:[]}if(h==="__proto__"||h==="constructor"||h==="prototype")return;t[h]=y,t=t[h]}};const _l={BLUR:"blur",FOCUS_OUT:"focusout",SUBMIT:"submit",TRIGGER:"trigger",VALID:"valid"},ia={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},ea={max:"max",min:"min",maxLength:"maxLength",minLength:"minLength",pattern:"pattern",required:"required",validate:"validate"},vy="form",l2="root",vM=kt.createContext(null);vM.displayName="HookFormControlContext";var gM=(t,a,r,l=!0)=>{const u={defaultValues:a._defaultValues};for(const o in t)Object.defineProperty(u,o,{get:()=>{const d=o;return a._proxyFormState[d]!==ia.all&&(a._proxyFormState[d]=!l||ia.all),t[d]}});return u};const bM=typeof window<"u"?kt.useLayoutEffect:kt.useEffect;var an=t=>typeof t=="string",_M=(t,a,r,l,u)=>an(t)?(l&&a.watch.add(t),me(r,t,u)):Array.isArray(t)?t.map(o=>(l&&a.watch.add(o),me(r,o))):(l&&(a.watchAll=!0),r),rm=t=>mn(t)||!r2(t);function Or(t,a,r=new WeakSet){if(rm(t)||rm(a))return Object.is(t,a);if(di(t)&&di(a))return Object.is(t.getTime(),a.getTime());const l=Object.keys(t),u=Object.keys(a);if(l.length!==u.length)return!1;if(r.has(t)||r.has(a))return!0;r.add(t),r.add(a);for(const o of l){const d=t[o];if(!u.includes(o))return!1;if(o!=="ref"){const h=a[o];if(di(d)&&di(h)||xt(d)&&xt(h)||Array.isArray(d)&&Array.isArray(h)?!Or(d,h,r):!Object.is(d,h))return!1}}return!0}const SM=kt.createContext(null);SM.displayName="HookFormContext";var EM=(t,a,r,l,u)=>a?{...r[t],types:{...r[t]&&r[t].types?r[t].types:{},[l]:u||!0}}:{},eu=t=>Array.isArray(t)?t:[t],Pb=()=>{let t=[];return{get observers(){return t},next:u=>{for(const o of t)o.next&&o.next(u)},subscribe:u=>(t.push(u),{unsubscribe:()=>{t=t.filter(o=>o!==u)}}),unsubscribe:()=>{t=[]}}};function s2(t,a){const r={};for(const l in t)if(t.hasOwnProperty(l)){const u=t[l],o=a[l];if(u&&xt(u)&&o){const d=s2(u,o);xt(d)&&(r[l]=d)}else t[l]&&(r[l]=o)}return r}var tn=t=>xt(t)&&!Object.keys(t).length,Lm=t=>t.type==="file",kc=t=>{if(!Nm)return!1;const a=t?t.ownerDocument:0;return t instanceof(a&&a.defaultView?a.defaultView.HTMLElement:HTMLElement)},u2=t=>t.type==="select-multiple",jm=t=>t.type==="radio",xM=t=>jm(t)||xu(t),gy=t=>kc(t)&&t.isConnected;function wM(t,a){const r=a.slice(0,-1).length;let l=0;for(;l<r;)t=pt(t)?l++:t[a[l++]];return t}function TM(t){for(const a in t)if(t.hasOwnProperty(a)&&!pt(t[a]))return!1;return!0}function Mt(t,a){const r=Array.isArray(a)?a:$c(a)?[a]:Um(a),l=r.length===1?t:wM(t,r),u=r.length-1,o=r[u];return l&&delete l[o],u!==0&&(xt(l)&&tn(l)||Array.isArray(l)&&TM(l))&&Mt(t,r.slice(0,-1)),t}var AM=t=>{for(const a in t)if(ra(t[a]))return!0;return!1};function o2(t){return Array.isArray(t)||xt(t)&&!AM(t)}function im(t,a={}){for(const r in t){const l=t[r];o2(l)?(a[r]=Array.isArray(l)?[]:{},im(l,a[r])):pt(l)||(a[r]=!0)}return a}function wl(t,a,r){r||(r=im(a));for(const l in t){const u=t[l];if(o2(u))pt(a)||rm(r[l])?r[l]=im(u,Array.isArray(u)?[]:{}):wl(u,mn(a)?{}:a[l],r[l]);else{const o=a[l];r[l]=!Or(u,o)}}return r}const Jb={value:!1,isValid:!1},Ib={value:!0,isValid:!0};var c2=t=>{if(Array.isArray(t)){if(t.length>1){const a=t.filter(r=>r&&r.checked&&!r.disabled).map(r=>r.value);return{value:a,isValid:!!a.length}}return t[0].checked&&!t[0].disabled?t[0].attributes&&!pt(t[0].attributes.value)?pt(t[0].value)||t[0].value===""?Ib:{value:t[0].value,isValid:!0}:Ib:Jb}return Jb},f2=(t,{valueAsNumber:a,valueAsDate:r,setValueAs:l})=>pt(t)?t:a?t===""?NaN:t&&+t:r&&an(t)?new Date(t):l?l(t):t;const Wb={isValid:!1,value:null};var d2=t=>Array.isArray(t)?t.reduce((a,r)=>r&&r.checked&&!r.disabled?{isValid:!0,value:r.value}:a,Wb):Wb;function e_(t){const a=t.ref;return Lm(a)?a.files:jm(a)?d2(t.refs).value:u2(a)?[...a.selectedOptions].map(({value:r})=>r):xu(a)?c2(t.refs).value:f2(pt(a.value)?t.ref.value:a.value,t)}var CM=(t,a,r,l)=>{const u={};for(const o of t){const d=me(a,o);d&&ft(u,o,d._f)}return{criteriaMode:r,names:[...t],fields:u,shouldUseNativeValidation:l}},zc=t=>t instanceof RegExp,Ps=t=>pt(t)?t:zc(t)?t.source:xt(t)?zc(t.value)?t.value.source:t.value:t,t_=t=>({isOnSubmit:!t||t===ia.onSubmit,isOnBlur:t===ia.onBlur,isOnChange:t===ia.onChange,isOnAll:t===ia.all,isOnTouch:t===ia.onTouched});const n_="AsyncFunction";var OM=t=>!!t&&!!t.validate&&!!(ra(t.validate)&&t.validate.constructor.name===n_||xt(t.validate)&&Object.values(t.validate).find(a=>a.constructor.name===n_)),RM=t=>t.mount&&(t.required||t.min||t.max||t.maxLength||t.minLength||t.pattern||t.validate),a_=(t,a,r)=>!r&&(a.watchAll||a.watch.has(t)||[...a.watch].some(l=>t.startsWith(l)&&/^\.\w+/.test(t.slice(l.length))));const tu=(t,a,r,l)=>{for(const u of r||Object.keys(t)){const o=me(t,u);if(o){const{_f:d,...h}=o;if(d){if(d.refs&&d.refs[0]&&a(d.refs[0],u)&&!l)return!0;if(d.ref&&a(d.ref,d.name)&&!l)return!0;if(tu(h,a))break}else if(xt(h)&&tu(h,a))break}}};function r_(t,a,r){const l=me(t,r);if(l||$c(r))return{error:l,name:r};const u=r.split(".");for(;u.length;){const o=u.join("."),d=me(a,o),h=me(t,o);if(d&&!Array.isArray(d)&&r!==o)return{name:r};if(h&&h.type)return{name:o,error:h};if(h&&h.root&&h.root.type)return{name:`${o}.root`,error:h.root};u.pop()}return{name:r}}var MM=(t,a,r,l)=>{r(t);const{name:u,...o}=t;return tn(o)||Object.keys(o).length>=Object.keys(a).length||Object.keys(o).find(d=>a[d]===(!l||ia.all))},kM=(t,a,r)=>!t||!a||t===a||eu(t).some(l=>l&&(r?l===a:l.startsWith(a)||a.startsWith(l))),zM=(t,a,r,l,u)=>u.isOnAll?!1:!r&&u.isOnTouch?!(a||t):(r?l.isOnBlur:u.isOnBlur)?!t:(r?l.isOnChange:u.isOnChange)?t:!0,NM=(t,a)=>!Dm(me(t,a)).length&&Mt(t,a),DM=(t,a,r)=>{const l=eu(me(t,r));return ft(l,l2,a[r]),ft(t,r,l),t};function i_(t,a,r="validate"){if(an(t)||Array.isArray(t)&&t.every(an)||fa(t)&&!t)return{type:r,message:an(t)?t:"",ref:a}}var Sl=t=>xt(t)&&!zc(t)?t:{value:t,message:""},l_=async(t,a,r,l,u,o)=>{const{ref:d,refs:h,required:y,maxLength:m,minLength:g,min:v,max:E,pattern:_,validate:w,name:S,valueAsNumber:x,mount:M}=t._f,V=me(r,S);if(!M||a.has(S))return{};const Z=h?h[0]:d,q=ne=>{u&&Z.reportValidity&&(Z.setCustomValidity(fa(ne)?"":ne||""),Z.reportValidity())},Q={},K=jm(d),P=xu(d),G=K||P,re=(x||Lm(d))&&pt(d.value)&&pt(V)||kc(d)&&d.value===""||V===""||Array.isArray(V)&&!V.length,ze=EM.bind(null,S,l,Q),Ae=(ne,we,Ne,Ce=ea.maxLength,B=ea.minLength)=>{const J=ne?we:Ne;Q[S]={type:ne?Ce:B,message:J,ref:d,...ze(ne?Ce:B,J)}};if(o?!Array.isArray(V)||!V.length:y&&(!G&&(re||mn(V))||fa(V)&&!V||P&&!c2(h).isValid||K&&!d2(h).isValid)){const{value:ne,message:we}=an(y)?{value:!!y,message:y}:Sl(y);if(ne&&(Q[S]={type:ea.required,message:we,ref:Z,...ze(ea.required,we)},!l))return q(we),Q}if(!re&&(!mn(v)||!mn(E))){let ne,we;const Ne=Sl(E),Ce=Sl(v);if(!mn(V)&&!isNaN(V)){const B=d.valueAsNumber||V&&+V;mn(Ne.value)||(ne=B>Ne.value),mn(Ce.value)||(we=B<Ce.value)}else{const B=d.valueAsDate||new Date(V),J=ee=>new Date(new Date().toDateString()+" "+ee),ge=d.type=="time",Be=d.type=="week";an(Ne.value)&&V&&(ne=ge?J(V)>J(Ne.value):Be?V>Ne.value:B>new Date(Ne.value)),an(Ce.value)&&V&&(we=ge?J(V)<J(Ce.value):Be?V<Ce.value:B<new Date(Ce.value))}if((ne||we)&&(Ae(!!ne,Ne.message,Ce.message,ea.max,ea.min),!l))return q(Q[S].message),Q}if((m||g)&&!re&&(an(V)||o&&Array.isArray(V))){const ne=Sl(m),we=Sl(g),Ne=!mn(ne.value)&&V.length>+ne.value,Ce=!mn(we.value)&&V.length<+we.value;if((Ne||Ce)&&(Ae(Ne,ne.message,we.message),!l))return q(Q[S].message),Q}if(_&&!re&&an(V)){const{value:ne,message:we}=Sl(_);if(zc(ne)&&!V.match(ne)&&(Q[S]={type:ea.pattern,message:we,ref:d,...ze(ea.pattern,we)},!l))return q(we),Q}if(w){if(ra(w)){const ne=await w(V,r),we=i_(ne,Z);if(we&&(Q[S]={...we,...ze(ea.validate,we.message)},!l))return q(we.message),Q}else if(xt(w)){let ne={};for(const we in w){if(!tn(ne)&&!l)break;const Ne=i_(await w[we](V,r),Z,we);Ne&&(ne={...Ne,...ze(we,Ne.message)},q(Ne.message),l&&(Q[S]=ne))}if(!tn(ne)&&(Q[S]={ref:Z,...ne},!l))return Q}}return q(!0),Q};const UM={mode:ia.onSubmit,reValidateMode:ia.onChange,shouldFocusError:!0};function LM(t={}){let a={...UM,...t},r={submitCount:0,isDirty:!1,isReady:!1,isLoading:ra(a.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},validatingFields:{},errors:a.errors||{},disabled:a.disabled||!1},l={},u=xt(a.defaultValues)||xt(a.values)?Lt(a.defaultValues||a.values)||{}:{},o=a.shouldUnregister?{}:Lt(u),d={action:!1,mount:!1,watch:!1,keepIsValid:!1},h={mount:new Set,disabled:new Set,unMount:new Set,array:new Set,watch:new Set},y,m=0;const g={isDirty:!1,dirtyFields:!1,validatingFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1},v={...g};let E={...v};const _={array:Pb(),state:Pb()},w=a.criteriaMode===ia.all,S=C=>N=>{clearTimeout(m),m=setTimeout(C,N)},x=async C=>{if(!d.keepIsValid&&!a.disabled&&(v.isValid||E.isValid||C)){let N;a.resolver?(N=tn((await G()).errors),M()):N=await Ae({fields:l,onlyCheckValid:!0,eventType:_l.VALID}),N!==r.isValid&&_.state.next({isValid:N})}},M=(C,N)=>{!a.disabled&&(v.isValidating||v.validatingFields||E.isValidating||E.validatingFields)&&((C||Array.from(h.mount)).forEach(L=>{L&&(N?ft(r.validatingFields,L,N):Mt(r.validatingFields,L))}),_.state.next({validatingFields:r.validatingFields,isValidating:!tn(r.validatingFields)}))},V=(C,N=[],L,ie,W=!0,te=!0)=>{if(ie&&L&&!a.disabled){if(d.action=!0,te&&Array.isArray(me(l,C))){const fe=L(me(l,C),ie.argA,ie.argB);W&&ft(l,C,fe)}if(te&&Array.isArray(me(r.errors,C))){const fe=L(me(r.errors,C),ie.argA,ie.argB);W&&ft(r.errors,C,fe),NM(r.errors,C)}if((v.touchedFields||E.touchedFields)&&te&&Array.isArray(me(r.touchedFields,C))){const fe=L(me(r.touchedFields,C),ie.argA,ie.argB);W&&ft(r.touchedFields,C,fe)}if(v.dirtyFields||E.dirtyFields){const fe=wl(u,o),De=i2(C);ft(r.dirtyFields,De,me(fe,De))}_.state.next({name:C,isDirty:we(C,N),dirtyFields:r.dirtyFields,errors:r.errors,isValid:r.isValid})}else ft(o,C,N)},Z=(C,N)=>{ft(r.errors,C,N),_.state.next({errors:r.errors})},q=C=>{r.errors=C,_.state.next({errors:r.errors,isValid:!1})},Q=(C,N,L,ie)=>{const W=me(l,C);if(W){const te=me(o,C,pt(L)?me(u,C):L);pt(te)||ie&&ie.defaultChecked||N?ft(o,C,N?te:e_(W._f)):B(C,te),d.mount&&!d.action&&x()}},K=(C,N,L,ie,W)=>{let te=!1,fe=!1;const De={name:C};if(!a.disabled){if(!L||ie){(v.isDirty||E.isDirty)&&(fe=r.isDirty,r.isDirty=De.isDirty=we(),te=fe!==De.isDirty);const Ke=Or(me(u,C),N);fe=!!me(r.dirtyFields,C),Ke?Mt(r.dirtyFields,C):ft(r.dirtyFields,C,!0),De.dirtyFields=r.dirtyFields,te=te||(v.dirtyFields||E.dirtyFields)&&fe!==!Ke}if(L){const Ke=me(r.touchedFields,C);Ke||(ft(r.touchedFields,C,L),De.touchedFields=r.touchedFields,te=te||(v.touchedFields||E.touchedFields)&&Ke!==L)}te&&W&&_.state.next(De)}return te?De:{}},P=(C,N,L,ie)=>{const W=me(r.errors,C),te=(v.isValid||E.isValid)&&fa(N)&&r.isValid!==N;if(a.delayError&&L?(y=S(()=>Z(C,L)),y(a.delayError)):(clearTimeout(m),y=null,L?ft(r.errors,C,L):Mt(r.errors,C)),(L?!Or(W,L):W)||!tn(ie)||te){const fe={...ie,...te&&fa(N)?{isValid:N}:{},errors:r.errors,name:C};r={...r,...fe},_.state.next(fe)}},G=async C=>(M(C,!0),await a.resolver(o,a.context,CM(C||h.mount,l,a.criteriaMode,a.shouldUseNativeValidation))),re=async C=>{const{errors:N}=await G(C);if(M(C),C)for(const L of C){const ie=me(N,L);ie?ft(r.errors,L,ie):Mt(r.errors,L)}else r.errors=N;return N},ze=async({name:C,eventType:N})=>{if(t.validate){const L=await t.validate({formValues:o,formState:r,name:C,eventType:N});if(xt(L))for(const ie in L)L[ie]&&he(`${vy}.${ie}`,{message:an(L.message)?L.message:"",type:ea.validate});else an(L)||!L?he(vy,{message:L||"",type:ea.validate}):ue(vy);return L}return!0},Ae=async({fields:C,onlyCheckValid:N,name:L,eventType:ie,context:W={valid:!0,runRootValidation:!1}})=>{if(t.validate&&(W.runRootValidation=!0,!await ze({name:L,eventType:ie})&&(W.valid=!1,N)))return W.valid;for(const te in C){const fe=C[te];if(fe){const{_f:De,...Ke}=fe;if(De){const Jt=h.array.has(De.name),zn=fe._f&&OM(fe._f);zn&&v.validatingFields&&M([De.name],!0);const Tt=await l_(fe,h.disabled,o,w,a.shouldUseNativeValidation&&!N,Jt);if(zn&&v.validatingFields&&M([De.name]),Tt[De.name]&&(W.valid=!1,N)||(!N&&(me(Tt,De.name)?Jt?DM(r.errors,Tt,De.name):ft(r.errors,De.name,Tt[De.name]):Mt(r.errors,De.name)),t.shouldUseNativeValidation&&Tt[De.name]))break}!tn(Ke)&&await Ae({context:W,onlyCheckValid:N,fields:Ke,name:te,eventType:ie})}}return W.valid},ne=()=>{for(const C of h.unMount){const N=me(l,C);N&&(N._f.refs?N._f.refs.every(L=>!gy(L)):!gy(N._f.ref))&&Oe(C)}h.unMount=new Set},we=(C,N)=>!a.disabled&&(C&&N&&ft(o,C,N),!Or(X(),u)),Ne=(C,N,L)=>_M(C,h,{...d.mount?o:pt(N)?u:an(C)?{[C]:N}:N},L,N),Ce=C=>Dm(me(d.mount?o:u,C,a.shouldUnregister?me(u,C,[]):[])),B=(C,N,L={})=>{const ie=me(l,C);let W=N;if(ie){const te=ie._f;te&&(!te.disabled&&ft(o,C,f2(N,te)),W=kc(te.ref)&&mn(N)?"":N,u2(te.ref)?[...te.ref.options].forEach(fe=>fe.selected=W.includes(fe.value)):te.refs?xu(te.ref)?te.refs.forEach(fe=>{(!fe.defaultChecked||!fe.disabled)&&(Array.isArray(W)?fe.checked=!!W.find(De=>De===fe.value):fe.checked=W===fe.value||!!W)}):te.refs.forEach(fe=>fe.checked=fe.value===W):Lm(te.ref)?te.ref.value="":(te.ref.value=W,te.ref.type||_.state.next({name:C,values:Lt(o)})))}(L.shouldDirty||L.shouldTouch)&&K(C,W,L.shouldTouch,L.shouldDirty,!0),L.shouldValidate&&R(C)},J=(C,N,L)=>{for(const ie in N){if(!N.hasOwnProperty(ie))return;const W=N[ie],te=C+"."+ie,fe=me(l,te);(h.array.has(C)||xt(W)||fe&&!fe._f)&&!di(W)?J(te,W,L):B(te,W,L)}},ge=(C,N,L={})=>{const ie=me(l,C),W=h.array.has(C),te=Lt(N);ft(o,C,te),W?(_.array.next({name:C,values:Lt(o)}),(v.isDirty||v.dirtyFields||E.isDirty||E.dirtyFields)&&L.shouldDirty&&_.state.next({name:C,dirtyFields:wl(u,o),isDirty:we(C,te)})):ie&&!ie._f&&!mn(te)?J(C,te,L):B(C,te,L),a_(C,h)?_.state.next({...r,name:C,values:Lt(o)}):_.state.next({name:d.mount?C:void 0,values:Lt(o)})},Be=async C=>{d.mount=!0;const N=C.target;let L=N.name,ie=!0;const W=me(l,L),te=Ke=>{ie=Number.isNaN(Ke)||di(Ke)&&isNaN(Ke.getTime())||Or(Ke,me(o,L,Ke))},fe=t_(a.mode),De=t_(a.reValidateMode);if(W){let Ke,Jt;const zn=N.type?e_(W._f):yM(C),Tt=C.type===_l.BLUR||C.type===_l.FOCUS_OUT,It=!RM(W._f)&&!t.validate&&!a.resolver&&!me(r.errors,L)&&!W._f.deps||zM(Tt,me(r.touchedFields,L),r.isSubmitted,De,fe),Nn=a_(L,h,Tt);ft(o,L,zn),Tt?(!N||!N.readOnly)&&(W._f.onBlur&&W._f.onBlur(C),y&&y(0)):W._f.onChange&&W._f.onChange(C);const Ht=K(L,zn,Tt),Kc=!tn(Ht)||Nn;if(!Tt&&_.state.next({name:L,type:C.type,values:Lt(o)}),It)return(v.isValid||E.isValid)&&(a.mode==="onBlur"?Tt&&x():Tt||x()),Kc&&_.state.next({name:L,...Nn?{}:Ht});if(!a.resolver&&t.validate&&await ze({name:L,eventType:C.type}),!Tt&&Nn&&_.state.next({...r}),a.resolver){const{errors:Cu}=await G([L]);if(M([L]),te(zn),ie){const Pc=r_(r.errors,l,L),Qr=r_(Cu,l,Pc.name||L);Ke=Qr.error,L=Qr.name,Jt=tn(Cu)}}else M([L],!0),Ke=(await l_(W,h.disabled,o,w,a.shouldUseNativeValidation))[L],M([L]),te(zn),ie&&(Ke?Jt=!1:(v.isValid||E.isValid)&&(Jt=await Ae({fields:l,onlyCheckValid:!0,name:L,eventType:C.type})));ie&&(W._f.deps&&(!Array.isArray(W._f.deps)||W._f.deps.length>0)&&R(W._f.deps),P(L,Jt,Ke,Ht))}},ee=(C,N)=>{if(me(r.errors,N)&&C.focus)return C.focus(),1},R=async(C,N={})=>{let L,ie;const W=eu(C);if(a.resolver){const te=await re(pt(C)?C:W);L=tn(te),ie=C?!W.some(fe=>me(te,fe)):L}else C?(ie=(await Promise.all(W.map(async te=>{const fe=me(l,te);return await Ae({fields:fe&&fe._f?{[te]:fe}:fe,eventType:_l.TRIGGER})}))).every(Boolean),!(!ie&&!r.isValid)&&x()):ie=L=await Ae({fields:l,name:C,eventType:_l.TRIGGER});return _.state.next({...!an(C)||(v.isValid||E.isValid)&&L!==r.isValid?{}:{name:C},...a.resolver||!C?{isValid:L}:{},errors:r.errors}),N.shouldFocus&&!ie&&tu(l,ee,C?W:h.mount),ie},X=(C,N)=>{let L={...d.mount?o:u};return N&&(L=s2(N.dirtyFields?r.dirtyFields:r.touchedFields,L)),pt(C)?L:an(C)?me(L,C):C.map(ie=>me(L,ie))},ae=(C,N)=>({invalid:!!me((N||r).errors,C),isDirty:!!me((N||r).dirtyFields,C),error:me((N||r).errors,C),isValidating:!!me(r.validatingFields,C),isTouched:!!me((N||r).touchedFields,C)}),ue=C=>{const N=C?eu(C):void 0;N==null||N.forEach(L=>Mt(r.errors,L)),N?N.forEach(L=>{_.state.next({name:L,errors:r.errors})}):_.state.next({errors:{}})},he=(C,N,L)=>{const ie=(me(l,C,{_f:{}})._f||{}).ref,W=me(r.errors,C)||{},{ref:te,message:fe,type:De,...Ke}=W;ft(r.errors,C,{...Ke,...N,ref:ie}),_.state.next({name:C,errors:r.errors,isValid:!1}),L&&L.shouldFocus&&ie&&ie.focus&&ie.focus()},Ee=(C,N)=>ra(C)?_.state.subscribe({next:L=>"values"in L&&C(Ne(void 0,N),L)}):Ne(C,N,!0),Ve=C=>_.state.subscribe({next:N=>{kM(C.name,N.name,C.exact)&&MM(N,C.formState||v,es,C.reRenderRoot)&&C.callback({values:{...o},...r,...N,defaultValues:u})}}).unsubscribe,wt=C=>(d.mount=!0,E={...E,...C.formState},Ve({...C,formState:{...g,...C.formState}})),Oe=(C,N={})=>{for(const L of C?eu(C):h.mount)h.mount.delete(L),h.array.delete(L),N.keepValue||(Mt(l,L),Mt(o,L)),!N.keepError&&Mt(r.errors,L),!N.keepDirty&&Mt(r.dirtyFields,L),!N.keepTouched&&Mt(r.touchedFields,L),!N.keepIsValidating&&Mt(r.validatingFields,L),!a.shouldUnregister&&!N.keepDefaultValue&&Mt(u,L);_.state.next({values:Lt(o)}),_.state.next({...r,...N.keepDirty?{isDirty:we()}:{}}),!N.keepIsValid&&x()},Pn=({disabled:C,name:N})=>{if(fa(C)&&d.mount||C||h.disabled.has(N)){const W=h.disabled.has(N)!==!!C;C?h.disabled.add(N):h.disabled.delete(N),W&&d.mount&&!d.action&&x()}},pn=(C,N={})=>{let L=me(l,C);const ie=fa(N.disabled)||fa(a.disabled);return ft(l,C,{...L||{},_f:{...L&&L._f?L._f:{ref:{name:C}},name:C,mount:!0,...N}}),h.mount.add(C),L?Pn({disabled:fa(N.disabled)?N.disabled:a.disabled,name:C}):Q(C,!0,N.value),{...ie?{disabled:N.disabled||a.disabled}:{},...a.progressive?{required:!!N.required,min:Ps(N.min),max:Ps(N.max),minLength:Ps(N.minLength),maxLength:Ps(N.maxLength),pattern:Ps(N.pattern)}:{},name:C,onChange:Be,onBlur:Be,ref:W=>{if(W){pn(C,N),L=me(l,C);const te=pt(W.value)&&W.querySelectorAll&&W.querySelectorAll("input,select,textarea")[0]||W,fe=xM(te),De=L._f.refs||[];if(fe?De.find(Ke=>Ke===te):te===L._f.ref)return;ft(l,C,{_f:{...L._f,...fe?{refs:[...De.filter(gy),te,...Array.isArray(me(u,C))?[{}]:[]],ref:{type:te.type,name:C}}:{ref:te}}}),Q(C,!1,void 0,te)}else L=me(l,C,{}),L._f&&(L._f.mount=!1),(a.shouldUnregister||N.shouldUnregister)&&!(mM(h.array,C)&&d.action)&&h.unMount.add(C)}}},kn=()=>a.shouldFocusError&&tu(l,ee,h.mount),Ia=C=>{fa(C)&&(_.state.next({disabled:C}),tu(l,(N,L)=>{const ie=me(l,L);ie&&(N.disabled=ie._f.disabled||C,Array.isArray(ie._f.refs)&&ie._f.refs.forEach(W=>{W.disabled=ie._f.disabled||C}))},0,!1))},Pt=(C,N)=>async L=>{let ie;L&&(L.preventDefault&&L.preventDefault(),L.persist&&L.persist());let W=Lt(o);if(_.state.next({isSubmitting:!0}),a.resolver){const{errors:te,values:fe}=await G();M(),r.errors=te,W=Lt(fe)}else await Ae({fields:l,eventType:_l.SUBMIT});if(h.disabled.size)for(const te of h.disabled)Mt(W,te);if(Mt(r.errors,l2),tn(r.errors)){_.state.next({errors:{}});try{await C(W,L)}catch(te){ie=te}}else N&&await N({...r.errors},L),kn(),setTimeout(kn);if(_.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:tn(r.errors)&&!ie,submitCount:r.submitCount+1,errors:r.errors}),ie)throw ie},Wl=(C,N={})=>{me(l,C)&&(pt(N.defaultValue)?ge(C,Lt(me(u,C))):(ge(C,N.defaultValue),ft(u,C,Lt(N.defaultValue))),N.keepTouched||Mt(r.touchedFields,C),N.keepDirty||(Mt(r.dirtyFields,C),r.isDirty=N.defaultValue?we(C,Lt(me(u,C))):we()),N.keepError||(Mt(r.errors,C),v.isValid&&x()),_.state.next({...r}))},Ni=(C,N={})=>{const L=C?Lt(C):u,ie=Lt(L),W=tn(C),te=W?u:ie;if(N.keepDefaultValues||(u=L),!N.keepValues){if(N.keepDirtyValues){const fe=new Set([...h.mount,...Object.keys(wl(u,o))]);for(const De of Array.from(fe)){const Ke=me(r.dirtyFields,De),Jt=me(o,De),zn=me(te,De);Ke&&!pt(Jt)?ft(te,De,Jt):!Ke&&!pt(zn)&&ge(De,zn)}}else{if(Nm&&pt(C))for(const fe of h.mount){const De=me(l,fe);if(De&&De._f){const Ke=Array.isArray(De._f.refs)?De._f.refs[0]:De._f.ref;if(kc(Ke)){const Jt=Ke.closest("form");if(Jt){Jt.reset();break}}}}if(N.keepFieldsRef)for(const fe of h.mount)ge(fe,me(te,fe));else l={}}o=a.shouldUnregister?N.keepDefaultValues?Lt(u):{}:Lt(te),_.array.next({values:{...te}}),_.state.next({values:{...te}})}h={mount:N.keepDirtyValues?h.mount:new Set,unMount:new Set,array:new Set,disabled:new Set,watch:new Set,watchAll:!1,focus:""},d.mount=!v.isValid||!!N.keepIsValid||!!N.keepDirtyValues||!a.shouldUnregister&&!tn(te),d.watch=!!a.shouldUnregister,d.keepIsValid=!!N.keepIsValid,d.action=!1,N.keepErrors||(r.errors={}),_.state.next({submitCount:N.keepSubmitCount?r.submitCount:0,isDirty:W?!1:N.keepDirty?r.isDirty:!!(N.keepDefaultValues&&!Or(C,u)),isSubmitted:N.keepIsSubmitted?r.isSubmitted:!1,dirtyFields:W?{}:N.keepDirtyValues?N.keepDefaultValues&&o?wl(u,o):r.dirtyFields:N.keepDefaultValues&&C?wl(u,C):N.keepDirty?r.dirtyFields:{},touchedFields:N.keepTouched?r.touchedFields:{},errors:N.keepErrors?r.errors:{},isSubmitSuccessful:N.keepIsSubmitSuccessful?r.isSubmitSuccessful:!1,isSubmitting:!1,defaultValues:u})},wu=(C,N)=>Ni(ra(C)?C(o):C,{...a.resetOptions,...N}),Tu=(C,N={})=>{const L=me(l,C),ie=L&&L._f;if(ie){const W=ie.refs?ie.refs[0]:ie.ref;W.focus&&setTimeout(()=>{W.focus(),N.shouldSelect&&ra(W.select)&&W.select()})}},es=C=>{r={...r,...C}},Di={control:{register:pn,unregister:Oe,getFieldState:ae,handleSubmit:Pt,setError:he,_subscribe:Ve,_runSchema:G,_updateIsValidating:M,_focusError:kn,_getWatch:Ne,_getDirty:we,_setValid:x,_setFieldArray:V,_setDisabledField:Pn,_setErrors:q,_getFieldArray:Ce,_reset:Ni,_resetDefaultValues:()=>ra(a.defaultValues)&&a.defaultValues().then(C=>{wu(C,a.resetOptions),_.state.next({isLoading:!1})}),_removeUnmounted:ne,_disableForm:Ia,_subjects:_,_proxyFormState:v,get _fields(){return l},get _formValues(){return o},get _state(){return d},set _state(C){d=C},get _defaultValues(){return u},get _names(){return h},set _names(C){h=C},get _formState(){return r},get _options(){return a},set _options(C){a={...a,...C}}},subscribe:wt,trigger:R,register:pn,handleSubmit:Pt,watch:Ee,setValue:ge,getValues:X,reset:wu,resetField:Wl,clearErrors:ue,unregister:Oe,setError:he,setFocus:Tu,getFieldState:ae};return{...Di,formControl:Di}}function G4(t={}){const a=kt.useRef(void 0),r=kt.useRef(void 0),[l,u]=kt.useState({isDirty:!1,isValidating:!1,isLoading:ra(t.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},validatingFields:{},errors:t.errors||{},disabled:t.disabled||!1,isReady:!1,defaultValues:ra(t.defaultValues)?void 0:t.defaultValues});if(!a.current)if(t.formControl)a.current={...t.formControl,formState:l},t.defaultValues&&!ra(t.defaultValues)&&t.formControl.reset(t.defaultValues,t.resetOptions);else{const{formControl:d,...h}=LM(t);a.current={...h,formState:l}}const o=a.current.control;return o._options=t,bM(()=>{const d=o._subscribe({formState:o._proxyFormState,callback:()=>u({...o._formState}),reRenderRoot:!0});return u(h=>({...h,isReady:!0})),o._formState.isReady=!0,d},[o]),kt.useEffect(()=>o._disableForm(t.disabled),[o,t.disabled]),kt.useEffect(()=>{t.mode&&(o._options.mode=t.mode),t.reValidateMode&&(o._options.reValidateMode=t.reValidateMode)},[o,t.mode,t.reValidateMode]),kt.useEffect(()=>{t.errors&&(o._setErrors(t.errors),o._focusError())},[o,t.errors]),kt.useEffect(()=>{t.shouldUnregister&&o._subjects.state.next({values:o._getWatch()})},[o,t.shouldUnregister]),kt.useEffect(()=>{if(o._proxyFormState.isDirty){const d=o._getDirty();d!==l.isDirty&&o._subjects.state.next({isDirty:d})}},[o,l.isDirty]),kt.useEffect(()=>{var d;t.values&&!Or(t.values,r.current)?(o._reset(t.values,{keepFieldsRef:!0,...o._options.resetOptions}),!((d=o._options.resetOptions)===null||d===void 0)&&d.keepIsValid||o._setValid(),r.current=t.values,u(h=>({...h}))):o._resetDefaultValues()},[o,t.values]),kt.useEffect(()=>{o._state.mount||(o._setValid(),o._state.mount=!0),o._state.watch&&(o._state.watch=!1,o._subjects.state.next({...o._formState})),o._removeUnmounted()}),a.current.formState=kt.useMemo(()=>gM(l,o),[o,l]),a.current}export{sk as $,Gl as A,k4 as B,R4 as C,j4 as D,B4 as E,xR as F,YR as G,kt as H,q4 as I,o4 as J,Ek as K,Fk as L,Gk as M,Ck as N,Mk as O,U4 as P,Hk as Q,qM as R,Pk as S,wk as T,Wk as U,mm as V,Xk as W,Rk as X,_k as Y,u4 as Z,tO as _,IT as a,a4 as a$,uk as a0,Kk as a1,rk as a2,p4 as a3,gk as a4,s4 as a5,ak as a6,fk as a7,E4 as a8,S4 as a9,mk as aA,yk as aB,QT as aC,WM as aD,$M as aE,jk as aF,qk as aG,hk as aH,dk as aI,Q4 as aJ,Nk as aK,Vk as aL,zk as aM,kk as aN,Yk as aO,Dk as aP,i4 as aQ,Tk as aR,l4 as aS,r4 as aT,Ak as aU,g4 as aV,G4 as aW,Uk as aX,Lk as aY,$k as aZ,lk as a_,_4 as aa,v4 as ab,x4 as ac,b4 as ad,Jk as ae,t4 as af,e4 as ag,Bk as ah,Ik as ai,vk as aj,ck as ak,Qk as al,gu as am,QM as an,FM as ao,PM as ap,XM as aq,ba as ar,ik as as,Zk as at,ok as au,GM as av,YM as aw,xk as ax,tk as ay,X_ as az,ek as b,nk as b0,Ok as b1,Sk as b2,bk as b3,n4 as b4,pk as b5,JM as b6,vT as b7,KM as b8,HM as b9,BM as ba,ZM as bb,IM as bc,d4 as c,fc as d,c4 as e,h4 as f,dC as g,m4 as h,w4 as i,kx as j,fR as k,A4 as l,M4 as m,qR as n,N4 as o,O4 as p,D4 as q,z as r,y4 as s,z4 as t,f4 as u,L4 as v,T4 as w,V4 as x,H4 as y,Z4 as z};
423
+ //# sourceMappingURL=vendor-DyHAI6nk.js.map