solforge 0.2.11 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -8
- package/docs/API.md +0 -379
- package/docs/CONFIGURATION.md +0 -407
- package/docs/bun-single-file-executable.md +0 -585
- package/docs/cli-plan.md +0 -154
- package/docs/data-indexing-plan.md +0 -214
- package/docs/gui-roadmap.md +0 -202
- package/scripts/decode-b58.ts +0 -10
- package/scripts/install.sh +0 -112
- package/server/index.ts +0 -5
- package/server/lib/base58.ts +0 -33
- package/server/lib/faucet.ts +0 -110
- package/server/lib/instruction-parser.ts +0 -328
- package/server/lib/parsers/spl-associated-token-account.ts +0 -50
- package/server/lib/parsers/spl-token.ts +0 -340
- package/server/lib/spl-token.ts +0 -57
- package/server/methods/TEMPLATE.md +0 -117
- package/server/methods/account/get-account-info.ts +0 -86
- package/server/methods/account/get-balance.ts +0 -23
- package/server/methods/account/get-multiple-accounts.ts +0 -84
- package/server/methods/account/get-parsed-account-info.ts +0 -17
- package/server/methods/account/index.ts +0 -12
- package/server/methods/account/parsers/index.ts +0 -52
- package/server/methods/account/parsers/loader-upgradeable.ts +0 -79
- package/server/methods/account/parsers/spl-token.ts +0 -256
- package/server/methods/account/parsers/system.ts +0 -4
- package/server/methods/account/request-airdrop.ts +0 -271
- package/server/methods/admin/adopt-mint-authority.ts +0 -94
- package/server/methods/admin/clone-program-accounts.ts +0 -55
- package/server/methods/admin/clone-program.ts +0 -152
- package/server/methods/admin/clone-token-accounts.ts +0 -117
- package/server/methods/admin/clone-token-mint.ts +0 -82
- package/server/methods/admin/create-mint.ts +0 -114
- package/server/methods/admin/create-token-account.ts +0 -137
- package/server/methods/admin/helpers.ts +0 -70
- package/server/methods/admin/index.ts +0 -10
- package/server/methods/admin/list-mints.ts +0 -21
- package/server/methods/admin/load-program.ts +0 -52
- package/server/methods/admin/mint-to.ts +0 -266
- package/server/methods/block/get-block-height.ts +0 -5
- package/server/methods/block/get-block.ts +0 -31
- package/server/methods/block/get-blocks-with-limit.ts +0 -19
- package/server/methods/block/get-latest-blockhash.ts +0 -12
- package/server/methods/block/get-slot.ts +0 -5
- package/server/methods/block/index.ts +0 -6
- package/server/methods/block/is-blockhash-valid.ts +0 -19
- package/server/methods/epoch/get-cluster-nodes.ts +0 -17
- package/server/methods/epoch/get-epoch-info.ts +0 -16
- package/server/methods/epoch/get-epoch-schedule.ts +0 -15
- package/server/methods/epoch/get-highest-snapshot-slot.ts +0 -9
- package/server/methods/epoch/get-leader-schedule.ts +0 -8
- package/server/methods/epoch/get-max-retransmit-slot.ts +0 -9
- package/server/methods/epoch/get-max-shred-insert-slot.ts +0 -9
- package/server/methods/epoch/get-slot-leader.ts +0 -6
- package/server/methods/epoch/get-slot-leaders.ts +0 -9
- package/server/methods/epoch/get-stake-activation.ts +0 -9
- package/server/methods/epoch/get-stake-minimum-delegation.ts +0 -9
- package/server/methods/epoch/get-vote-accounts.ts +0 -19
- package/server/methods/epoch/index.ts +0 -13
- package/server/methods/epoch/minimum-ledger-slot.ts +0 -5
- package/server/methods/fee/get-fee-calculator-for-blockhash.ts +0 -12
- package/server/methods/fee/get-fee-for-message.ts +0 -8
- package/server/methods/fee/get-fee-rate-governor.ts +0 -16
- package/server/methods/fee/get-fees.ts +0 -14
- package/server/methods/fee/get-recent-prioritization-fees.ts +0 -22
- package/server/methods/fee/index.ts +0 -5
- package/server/methods/get-address-lookup-table.ts +0 -27
- package/server/methods/index.ts +0 -265
- package/server/methods/performance/get-recent-performance-samples.ts +0 -25
- package/server/methods/performance/get-transaction-count.ts +0 -5
- package/server/methods/performance/index.ts +0 -2
- package/server/methods/program/get-block-commitment.ts +0 -9
- package/server/methods/program/get-block-production.ts +0 -14
- package/server/methods/program/get-block-time.ts +0 -21
- package/server/methods/program/get-blocks.ts +0 -11
- package/server/methods/program/get-first-available-block.ts +0 -9
- package/server/methods/program/get-genesis-hash.ts +0 -6
- package/server/methods/program/get-identity.ts +0 -6
- package/server/methods/program/get-inflation-governor.ts +0 -15
- package/server/methods/program/get-inflation-rate.ts +0 -10
- package/server/methods/program/get-inflation-reward.ts +0 -12
- package/server/methods/program/get-largest-accounts.ts +0 -8
- package/server/methods/program/get-parsed-program-accounts.ts +0 -12
- package/server/methods/program/get-parsed-token-accounts-by-delegate.ts +0 -12
- package/server/methods/program/get-parsed-token-accounts-by-owner.ts +0 -12
- package/server/methods/program/get-program-accounts.ts +0 -221
- package/server/methods/program/get-supply.ts +0 -13
- package/server/methods/program/get-token-account-balance.ts +0 -60
- package/server/methods/program/get-token-accounts-by-delegate.ts +0 -82
- package/server/methods/program/get-token-accounts-by-owner.ts +0 -416
- package/server/methods/program/get-token-largest-accounts.ts +0 -81
- package/server/methods/program/get-token-supply.ts +0 -39
- package/server/methods/program/index.ts +0 -21
- package/server/methods/solforge/index.ts +0 -158
- package/server/methods/system/get-health.ts +0 -5
- package/server/methods/system/get-minimum-balance-for-rent-exemption.ts +0 -13
- package/server/methods/system/get-version.ts +0 -9
- package/server/methods/system/index.ts +0 -3
- package/server/methods/transaction/get-confirmed-transaction.ts +0 -11
- package/server/methods/transaction/get-parsed-transaction.ts +0 -17
- package/server/methods/transaction/get-signature-statuses.ts +0 -79
- package/server/methods/transaction/get-signatures-for-address.ts +0 -41
- package/server/methods/transaction/get-transaction.ts +0 -639
- package/server/methods/transaction/index.ts +0 -7
- package/server/methods/transaction/inner-instructions.test.ts +0 -104
- package/server/methods/transaction/send-transaction.ts +0 -469
- package/server/methods/transaction/simulate-transaction.ts +0 -57
- package/server/rpc-server.ts +0 -521
- package/server/types.ts +0 -109
- package/server/ws-server.ts +0 -178
- package/src/api-server-entry.ts +0 -109
- package/src/cli/bootstrap.ts +0 -67
- package/src/cli/commands/airdrop.ts +0 -37
- package/src/cli/commands/config.ts +0 -39
- package/src/cli/commands/mint.ts +0 -187
- package/src/cli/commands/program-clone.ts +0 -122
- package/src/cli/commands/program-load.ts +0 -64
- package/src/cli/commands/rpc-start.ts +0 -49
- package/src/cli/commands/token-adopt-authority.ts +0 -37
- package/src/cli/commands/token-clone.ts +0 -112
- package/src/cli/commands/token-create.ts +0 -81
- package/src/cli/main.ts +0 -152
- package/src/cli/run-solforge.ts +0 -112
- package/src/cli/setup-utils.ts +0 -54
- package/src/cli/setup-wizard.ts +0 -258
- package/src/cli/utils/args.ts +0 -15
- package/src/commands/add-program.ts +0 -333
- package/src/commands/init.ts +0 -122
- package/src/commands/list.ts +0 -136
- package/src/commands/mint.ts +0 -287
- package/src/commands/start.ts +0 -881
- package/src/commands/status.ts +0 -99
- package/src/commands/stop.ts +0 -405
- package/src/config/index.ts +0 -146
- package/src/config/manager.ts +0 -157
- package/src/db/index.ts +0 -83
- package/src/db/schema/accounts.ts +0 -23
- package/src/db/schema/address-signatures.ts +0 -31
- package/src/db/schema/index.ts +0 -6
- package/src/db/schema/meta-kv.ts +0 -9
- package/src/db/schema/transactions.ts +0 -36
- package/src/db/schema/tx-account-states.ts +0 -23
- package/src/db/schema/tx-accounts.ts +0 -33
- package/src/db/tx-store.ts +0 -264
- package/src/gui/public/app.css +0 -1556
- package/src/gui/public/build/main.css +0 -1569
- package/src/gui/public/build/main.js +0 -303
- package/src/gui/public/build/main.js.txt +0 -231
- package/src/gui/public/index.html +0 -19
- package/src/gui/server.ts +0 -296
- package/src/gui/src/api.ts +0 -127
- package/src/gui/src/app.tsx +0 -441
- package/src/gui/src/components/airdrop-mint-form.tsx +0 -246
- package/src/gui/src/components/clone-program-modal.tsx +0 -202
- package/src/gui/src/components/clone-token-modal.tsx +0 -230
- package/src/gui/src/components/modal.tsx +0 -134
- package/src/gui/src/components/programs-panel.tsx +0 -124
- package/src/gui/src/components/status-panel.tsx +0 -136
- package/src/gui/src/components/tokens-panel.tsx +0 -122
- package/src/gui/src/hooks/use-interval.ts +0 -17
- package/src/gui/src/index.css +0 -557
- package/src/gui/src/main.tsx +0 -17
- package/src/index.ts +0 -216
- package/src/migrations-bundled.ts +0 -23
- package/src/rpc/start.ts +0 -44
- package/src/services/api-server.ts +0 -504
- package/src/services/port-manager.ts +0 -174
- package/src/services/process-registry.ts +0 -153
- package/src/services/program-cloner.ts +0 -317
- package/src/services/token-cloner.ts +0 -811
- package/src/services/validator.ts +0 -293
- package/src/types/config.ts +0 -110
- package/src/utils/shell.ts +0 -110
- package/src/utils/token-loader.ts +0 -115
- /package/{start.js → start.cjs} +0 -0
|
@@ -1,303 +0,0 @@
|
|
|
1
|
-
var Yz=Object.create;var{getPrototypeOf:Xz,defineProperty:Xo,getOwnPropertyNames:Rz}=Object;var Gz=Object.prototype.hasOwnProperty;var O0=(J,s,h)=>{h=J!=null?Yz(Xz(J)):{};let T=s||!J||!J.__esModule?Xo(h,"default",{value:J,enumerable:!0}):h;for(let P of Rz(J))if(!Gz.call(T,P))Xo(T,P,{get:()=>J[P],enumerable:!0});return T};var jg=(J,s)=>()=>(s||J((s={exports:{}}).exports,s),s.exports);var Ro=jg((Zz)=>{(function(){function J(){if(S0=!1,Ua){var K=Zz.unstable_now();X0=K;var c=!0;try{a:{P0=!1,z0&&(z0=!1,i0(O),O=-1),V0=!0;var V=b0;try{t:{a0(K);for(U0=h(L);U0!==null&&!(U0.expirationTime>K&&n());){var R0=U0.callback;if(typeof R0==="function"){U0.callback=null,b0=U0.priorityLevel;var X=R0(U0.expirationTime<=K);if(K=Zz.unstable_now(),typeof X==="function"){U0.callback=X,a0(K),c=!0;break t}U0===h(L)&&T(L),a0(K)}else T(L);U0=h(L)}if(U0!==null)c=!0;else{var S=h(x0);S!==null&&A(W0,S.startTime-K),c=!1}}break a}finally{U0=null,b0=V,V0=!1}c=void 0}}finally{c?o0():Ua=!1}}}function s(K,c){var V=K.length;K.push(c);a:for(;0<V;){var R0=V-1>>>1,X=K[R0];if(0<P(X,c))K[R0]=c,K[V]=X,V=R0;else break a}}function h(K){return K.length===0?null:K[0]}function T(K){if(K.length===0)return null;var c=K[0],V=K.pop();if(V!==c){K[0]=V;a:for(var R0=0,X=K.length,S=X>>>1;R0<S;){var l0=2*(R0+1)-1,i=K[l0],ga=l0+1,oa=K[ga];if(0>P(i,V))ga<X&&0>P(oa,i)?(K[R0]=oa,K[ga]=V,R0=ga):(K[R0]=i,K[l0]=V,R0=l0);else if(ga<X&&0>P(oa,V))K[R0]=oa,K[ga]=V,R0=ga;else break a}}return c}function P(K,c){var V=K.sortIndex-c.sortIndex;return V!==0?V:K.id-c.id}function a0(K){for(var c=h(x0);c!==null;){if(c.callback===null)T(x0);else if(c.startTime<=K)T(x0),c.sortIndex=c.expirationTime,s(L,c);else break;c=h(x0)}}function W0(K){if(z0=!1,a0(K),!P0)if(h(L)!==null)P0=!0,Ua||(Ua=!0,o0());else{var c=h(x0);c!==null&&A(W0,c.startTime-K)}}function n(){return S0?!0:Zz.unstable_now()-X0<E0?!1:!0}function A(K,c){O=Qa(function(){K(Zz.unstable_now())},c)}if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error()),Zz.unstable_now=void 0,typeof performance==="object"&&typeof performance.now==="function"){var Q0=performance;Zz.unstable_now=function(){return Q0.now()}}else{var I=Date,$=I.now();Zz.unstable_now=function(){return I.now()-$}}var L=[],x0=[],c0=1,U0=null,b0=3,V0=!1,P0=!1,z0=!1,S0=!1,Qa=typeof setTimeout==="function"?setTimeout:null,i0=typeof clearTimeout==="function"?clearTimeout:null,I0=typeof setImmediate!=="undefined"?setImmediate:null,Ua=!1,O=-1,E0=5,X0=-1;if(typeof I0==="function")var o0=function(){I0(J)};else if(typeof MessageChannel!=="undefined"){var ra=new MessageChannel,Wa=ra.port2;ra.port1.onmessage=J,o0=function(){Wa.postMessage(null)}}else o0=function(){Qa(J,0)};Zz.unstable_IdlePriority=5,Zz.unstable_ImmediatePriority=1,Zz.unstable_LowPriority=4,Zz.unstable_NormalPriority=3,Zz.unstable_Profiling=null,Zz.unstable_UserBlockingPriority=2,Zz.unstable_cancelCallback=function(K){K.callback=null},Zz.unstable_forceFrameRate=function(K){0>K||125<K?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):E0=0<K?Math.floor(1000/K):5},Zz.unstable_getCurrentPriorityLevel=function(){return b0},Zz.unstable_next=function(K){switch(b0){case 1:case 2:case 3:var c=3;break;default:c=b0}var V=b0;b0=c;try{return K()}finally{b0=V}},Zz.unstable_requestPaint=function(){S0=!0},Zz.unstable_runWithPriority=function(K,c){switch(K){case 1:case 2:case 3:case 4:case 5:break;default:K=3}var V=b0;b0=K;try{return c()}finally{b0=V}},Zz.unstable_scheduleCallback=function(K,c,V){var R0=Zz.unstable_now();switch(typeof V==="object"&&V!==null?(V=V.delay,V=typeof V==="number"&&0<V?R0+V:R0):V=R0,K){case 1:var X=-1;break;case 2:X=250;break;case 5:X=1073741823;break;case 4:X=1e4;break;default:X=5000}return X=V+X,K={id:c0++,callback:c,priorityLevel:K,startTime:V,expirationTime:X,sortIndex:-1},V>R0?(K.sortIndex=V,s(x0,K),h(L)===null&&K===h(x0)&&(z0?(i0(O),O=-1):z0=!0,A(W0,V-R0))):(K.sortIndex=X,s(L,K),P0||V0||(P0=!0,Ua||(Ua=!0,o0()))),K},Zz.unstable_shouldYield=n,Zz.unstable_wrapCallback=function(K){var c=b0;return function(){var V=b0;b0=c;try{return K.apply(this,arguments)}finally{b0=V}}},typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()});var ww=jg((Hz,Lv)=>{(function(){function J(r,l){Object.defineProperty(T.prototype,r,{get:function(){console.warn("%s(...) is deprecated in plain JavaScript React classes. %s",l[0],l[1])}})}function s(r){if(r===null||typeof r!=="object")return null;return r=dt&&r[dt]||r["@@iterator"],typeof r==="function"?r:null}function h(r,l){r=(r=r.constructor)&&(r.displayName||r.name)||"ReactClass";var q=r+"."+l;It[q]||(console.error("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.",l,r),It[q]=!0)}function T(r,l,q){this.props=r,this.context=l,this.refs=gw,this.updater=q||mm}function P(){}function a0(r,l,q){this.props=r,this.context=l,this.refs=gw,this.updater=q||mm}function W0(r){return""+r}function n(r){try{W0(r);var l=!1}catch(u){l=!0}if(l){l=console;var q=l.error,U=typeof Symbol==="function"&&Symbol.toStringTag&&r[Symbol.toStringTag]||r.constructor.name||"Object";return q.call(l,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",U),W0(r)}}function A(r){if(r==null)return null;if(typeof r==="function")return r.$$typeof===pg?null:r.displayName||r.name||null;if(typeof r==="string")return r;switch(r){case R0:return"Fragment";case S:return"Profiler";case X:return"StrictMode";case oa:return"Suspense";case Ft:return"SuspenseList";case Jt:return"Activity"}if(typeof r==="object")switch(typeof r.tag==="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),r.$$typeof){case V:return"Portal";case i:return(r.displayName||"Context")+".Provider";case l0:return(r._context.displayName||"Context")+".Consumer";case ga:var l=r.render;return r=r.displayName,r||(r=l.displayName||l.name||"",r=r!==""?"ForwardRef("+r+")":"ForwardRef"),r;case K0:return l=r.displayName||null,l!==null?l:A(r.type)||"Memo";case aa:l=r._payload,r=r._init;try{return A(r(l))}catch(q){}}return null}function Q0(r){if(r===R0)return"<>";if(typeof r==="object"&&r!==null&&r.$$typeof===aa)return"<...>";try{var l=A(r);return l?"<"+l+">":"<...>"}catch(q){return"<...>"}}function I(){var r=f0.A;return r===null?null:r.getOwner()}function $(){return Error("react-stack-top-frame")}function L(r){if(eg.call(r,"key")){var l=Object.getOwnPropertyDescriptor(r,"key").get;if(l&&l.isReactWarning)return!1}return r.key!==void 0}function x0(r,l){function q(){dm||(dm=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",l))}q.isReactWarning=!0,Object.defineProperty(r,"key",{get:q,configurable:!0})}function c0(){var r=A(this.type);return Aw[r]||(Aw[r]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),r=this.props.ref,r!==void 0?r:null}function U0(r,l,q,U,u,v0,t0,L0){return q=v0.ref,r={$$typeof:c,type:r,key:l,props:v0,_owner:u},(q!==void 0?q:null)!==null?Object.defineProperty(r,"ref",{enumerable:!1,get:c0}):Object.defineProperty(r,"ref",{enumerable:!1,value:null}),r._store={},Object.defineProperty(r._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(r,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(r,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:t0}),Object.defineProperty(r,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:L0}),Object.freeze&&(Object.freeze(r.props),Object.freeze(r)),r}function b0(r,l){return l=U0(r.type,l,void 0,void 0,r._owner,r.props,r._debugStack,r._debugTask),r._store&&(l._store.validated=r._store.validated),l}function V0(r){return typeof r==="object"&&r!==null&&r.$$typeof===c}function P0(r){var l={"=":"=0",":":"=2"};return"$"+r.replace(/[=:]/g,function(q){return l[q]})}function z0(r,l){return typeof r==="object"&&r!==null&&r.key!=null?(n(r.key),P0(""+r.key)):l.toString(36)}function S0(){}function Qa(r){switch(r.status){case"fulfilled":return r.value;case"rejected":throw r.reason;default:switch(typeof r.status==="string"?r.then(S0,S0):(r.status="pending",r.then(function(l){r.status==="pending"&&(r.status="fulfilled",r.value=l)},function(l){r.status==="pending"&&(r.status="rejected",r.reason=l)})),r.status){case"fulfilled":return r.value;case"rejected":throw r.reason}}throw r}function i0(r,l,q,U,u){var v0=typeof r;if(v0==="undefined"||v0==="boolean")r=null;var t0=!1;if(r===null)t0=!0;else switch(v0){case"bigint":case"string":case"number":t0=!0;break;case"object":switch(r.$$typeof){case c:case V:t0=!0;break;case aa:return t0=r._init,i0(t0(r._payload),l,q,U,u)}}if(t0){t0=r,u=u(t0);var L0=U===""?"."+z0(t0,0):U;return yt(u)?(q="",L0!=null&&(q=L0.replace(t1,"$&/")+"/"),i0(u,l,q,"",function(Ea){return Ea})):u!=null&&(V0(u)&&(u.key!=null&&(t0&&t0.key===u.key||n(u.key)),q=b0(u,q+(u.key==null||t0&&t0.key===u.key?"":(""+u.key).replace(t1,"$&/")+"/")+L0),U!==""&&t0!=null&&V0(t0)&&t0.key==null&&t0._store&&!t0._store.validated&&(q._store.validated=2),u=q),l.push(u)),1}if(t0=0,L0=U===""?".":U+":",yt(r))for(var $0=0;$0<r.length;$0++)U=r[$0],v0=L0+z0(U,$0),t0+=i0(U,l,q,v0,u);else if($0=s(r),typeof $0==="function")for($0===r.entries&&(rm||console.warn("Using Maps as children is not supported. Use an array of keyed ReactElements instead."),rm=!0),r=$0.call(r),$0=0;!(U=r.next()).done;)U=U.value,v0=L0+z0(U,$0++),t0+=i0(U,l,q,v0,u);else if(v0==="object"){if(typeof r.then==="function")return i0(Qa(r),l,q,U,u);throw l=String(r),Error("Objects are not valid as a React child (found: "+(l==="[object Object]"?"object with keys {"+Object.keys(r).join(", ")+"}":l)+"). If you meant to render a collection of children, use an array instead.")}return t0}function I0(r,l,q){if(r==null)return r;var U=[],u=0;return i0(r,U,"","",function(v0){return l.call(q,v0,u++)}),U}function Ua(r){if(r._status===-1){var l=r._result;l=l(),l.then(function(q){if(r._status===0||r._status===-1)r._status=1,r._result=q},function(q){if(r._status===0||r._status===-1)r._status=2,r._result=q}),r._status===-1&&(r._status=0,r._result=l)}if(r._status===1)return l=r._result,l===void 0&&console.error(`lazy: Expected the result of a dynamic import() call. Instead received: %s
|
|
2
|
-
|
|
3
|
-
Your code should look like:
|
|
4
|
-
const MyComponent = lazy(() => import('./MyComponent'))
|
|
5
|
-
|
|
6
|
-
Did you accidentally put curly braces around the import?`,l),"default"in l||console.error(`lazy: Expected the result of a dynamic import() call. Instead received: %s
|
|
7
|
-
|
|
8
|
-
Your code should look like:
|
|
9
|
-
const MyComponent = lazy(() => import('./MyComponent'))`,l),l.default;throw r._result}function O(){var r=f0.H;return r===null&&console.error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
|
10
|
-
1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
11
|
-
2. You might be breaking the Rules of Hooks
|
|
12
|
-
3. You might have more than one copy of React in the same app
|
|
13
|
-
See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`),r}function E0(){}function X0(r){if(Lw===null)try{var l=("require"+Math.random()).slice(0,7);Lw=(Lv&&Lv[l]).call(Lv,"timers").setImmediate}catch(q){Lw=function(U){fm===!1&&(fm=!0,typeof MessageChannel==="undefined"&&console.error("This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."));var u=new MessageChannel;u.port1.onmessage=U,u.port2.postMessage(void 0)}}return Lw(r)}function o0(r){return 1<r.length&&typeof AggregateError==="function"?new AggregateError(r):r[0]}function ra(r,l){l!==xg-1&&console.error("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "),xg=l}function Wa(r,l,q){var U=f0.actQueue;if(U!==null)if(U.length!==0)try{K(U),X0(function(){return Wa(r,l,q)});return}catch(u){f0.thrownErrors.push(u)}else f0.actQueue=null;0<f0.thrownErrors.length?(U=o0(f0.thrownErrors),f0.thrownErrors.length=0,q(U)):l(r)}function K(r){if(!fg){fg=!0;var l=0;try{for(;l<r.length;l++){var q=r[l];do{f0.didUsePromise=!1;var U=q(!1);if(U!==null){if(f0.didUsePromise){r[l]=q,r.splice(0,l);return}q=U}else break}while(1)}r.length=0}catch(u){r.splice(0,l+1),f0.thrownErrors.push(u)}finally{fg=!1}}}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var c=Symbol.for("react.transitional.element"),V=Symbol.for("react.portal"),R0=Symbol.for("react.fragment"),X=Symbol.for("react.strict_mode"),S=Symbol.for("react.profiler"),l0=Symbol.for("react.consumer"),i=Symbol.for("react.context"),ga=Symbol.for("react.forward_ref"),oa=Symbol.for("react.suspense"),Ft=Symbol.for("react.suspense_list"),K0=Symbol.for("react.memo"),aa=Symbol.for("react.lazy"),Jt=Symbol.for("react.activity"),dt=Symbol.iterator,It={},mm={isMounted:function(){return!1},enqueueForceUpdate:function(r){h(r,"forceUpdate")},enqueueReplaceState:function(r){h(r,"replaceState")},enqueueSetState:function(r){h(r,"setState")}},bm=Object.assign,gw={};Object.freeze(gw),T.prototype.isReactComponent={},T.prototype.setState=function(r,l){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,l,"setState")},T.prototype.forceUpdate=function(r){this.updater.enqueueForceUpdate(this,r,"forceUpdate")};var ua={isMounted:["isMounted","Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."],replaceState:["replaceState","Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."]},Dg;for(Dg in ua)ua.hasOwnProperty(Dg)&&J(Dg,ua[Dg]);P.prototype=T.prototype,ua=a0.prototype=new P,ua.constructor=a0,bm(ua,T.prototype),ua.isPureReactComponent=!0;var yt=Array.isArray,pg=Symbol.for("react.client.reference"),f0={H:null,A:null,T:null,S:null,V:null,actQueue:null,isBatchingLegacy:!1,didScheduleLegacyUpdate:!1,didUsePromise:!1,thrownErrors:[],getCurrentStack:null,recentlyCreatedOwnerStacks:0},eg=Object.prototype.hasOwnProperty,vm=console.createTask?console.createTask:function(){return null};ua={react_stack_bottom_frame:function(r){return r()}};var dm,a1,Aw={},Ov=ua.react_stack_bottom_frame.bind(ua,$)(),Pb=vm(Q0($)),rm=!1,t1=/\/+/g,xm=typeof reportError==="function"?reportError:function(r){if(typeof window==="object"&&typeof window.ErrorEvent==="function"){var l=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(l))return}else if(typeof process==="object"&&typeof process.emit==="function"){process.emit("uncaughtException",r);return}console.error(r)},fm=!1,Lw=null,xg=0,w1=!1,fg=!1,mw=typeof queueMicrotask==="function"?function(r){queueMicrotask(function(){return queueMicrotask(r)})}:X0;ua=Object.freeze({__proto__:null,c:function(r){return O().useMemoCache(r)}}),Hz.Children={map:I0,forEach:function(r,l,q){I0(r,function(){l.apply(this,arguments)},q)},count:function(r){var l=0;return I0(r,function(){l++}),l},toArray:function(r){return I0(r,function(l){return l})||[]},only:function(r){if(!V0(r))throw Error("React.Children.only expected to receive a single React element child.");return r}},Hz.Component=T,Hz.Fragment=R0,Hz.Profiler=S,Hz.PureComponent=a0,Hz.StrictMode=X,Hz.Suspense=oa,Hz.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=f0,Hz.__COMPILER_RUNTIME=ua,Hz.act=function(r){var l=f0.actQueue,q=xg;xg++;var U=f0.actQueue=l!==null?l:[],u=!1;try{var v0=r()}catch($0){f0.thrownErrors.push($0)}if(0<f0.thrownErrors.length)throw ra(l,q),r=o0(f0.thrownErrors),f0.thrownErrors.length=0,r;if(v0!==null&&typeof v0==="object"&&typeof v0.then==="function"){var t0=v0;return mw(function(){u||w1||(w1=!0,console.error("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);"))}),{then:function($0,Ea){u=!0,t0.then(function(Qt){if(ra(l,q),q===0){try{K(U),X0(function(){return Wa(Qt,$0,Ea)})}catch(_b){f0.thrownErrors.push(_b)}if(0<f0.thrownErrors.length){var Ut=o0(f0.thrownErrors);f0.thrownErrors.length=0,Ea(Ut)}}else $0(Qt)},function(Qt){ra(l,q),0<f0.thrownErrors.length?(Qt=o0(f0.thrownErrors),f0.thrownErrors.length=0,Ea(Qt)):Ea(Qt)})}}}var L0=v0;if(ra(l,q),q===0&&(K(U),U.length!==0&&mw(function(){u||w1||(w1=!0,console.error("A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)"))}),f0.actQueue=null),0<f0.thrownErrors.length)throw r=o0(f0.thrownErrors),f0.thrownErrors.length=0,r;return{then:function($0,Ea){u=!0,q===0?(f0.actQueue=U,X0(function(){return Wa(L0,$0,Ea)})):$0(L0)}}},Hz.cache=function(r){return function(){return r.apply(null,arguments)}},Hz.captureOwnerStack=function(){var r=f0.getCurrentStack;return r===null?null:r()},Hz.cloneElement=function(r,l,q){if(r===null||r===void 0)throw Error("The argument must be a React element, but you passed "+r+".");var U=bm({},r.props),u=r.key,v0=r._owner;if(l!=null){var t0;a:{if(eg.call(l,"ref")&&(t0=Object.getOwnPropertyDescriptor(l,"ref").get)&&t0.isReactWarning){t0=!1;break a}t0=l.ref!==void 0}t0&&(v0=I()),L(l)&&(n(l.key),u=""+l.key);for(L0 in l)!eg.call(l,L0)||L0==="key"||L0==="__self"||L0==="__source"||L0==="ref"&&l.ref===void 0||(U[L0]=l[L0])}var L0=arguments.length-2;if(L0===1)U.children=q;else if(1<L0){t0=Array(L0);for(var $0=0;$0<L0;$0++)t0[$0]=arguments[$0+2];U.children=t0}U=U0(r.type,u,void 0,void 0,v0,U,r._debugStack,r._debugTask);for(u=2;u<arguments.length;u++)v0=arguments[u],V0(v0)&&v0._store&&(v0._store.validated=1);return U},Hz.createContext=function(r){return r={$$typeof:i,_currentValue:r,_currentValue2:r,_threadCount:0,Provider:null,Consumer:null},r.Provider=r,r.Consumer={$$typeof:l0,_context:r},r._currentRenderer=null,r._currentRenderer2=null,r},Hz.createElement=function(r,l,q){for(var U=2;U<arguments.length;U++){var u=arguments[U];V0(u)&&u._store&&(u._store.validated=1)}if(U={},u=null,l!=null)for($0 in a1||!("__self"in l)||"key"in l||(a1=!0,console.warn("Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform")),L(l)&&(n(l.key),u=""+l.key),l)eg.call(l,$0)&&$0!=="key"&&$0!=="__self"&&$0!=="__source"&&(U[$0]=l[$0]);var v0=arguments.length-2;if(v0===1)U.children=q;else if(1<v0){for(var t0=Array(v0),L0=0;L0<v0;L0++)t0[L0]=arguments[L0+2];Object.freeze&&Object.freeze(t0),U.children=t0}if(r&&r.defaultProps)for($0 in v0=r.defaultProps,v0)U[$0]===void 0&&(U[$0]=v0[$0]);u&&x0(U,typeof r==="function"?r.displayName||r.name||"Unknown":r);var $0=1e4>f0.recentlyCreatedOwnerStacks++;return U0(r,u,void 0,void 0,I(),U,$0?Error("react-stack-top-frame"):Ov,$0?vm(Q0(r)):Pb)},Hz.createRef=function(){var r={current:null};return Object.seal(r),r},Hz.forwardRef=function(r){r!=null&&r.$$typeof===K0?console.error("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."):typeof r!=="function"?console.error("forwardRef requires a render function but was given %s.",r===null?"null":typeof r):r.length!==0&&r.length!==2&&console.error("forwardRef render functions accept exactly two parameters: props and ref. %s",r.length===1?"Did you forget to use the ref parameter?":"Any additional parameter will be undefined."),r!=null&&r.defaultProps!=null&&console.error("forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?");var l={$$typeof:ga,render:r},q;return Object.defineProperty(l,"displayName",{enumerable:!1,configurable:!0,get:function(){return q},set:function(U){q=U,r.name||r.displayName||(Object.defineProperty(r,"name",{value:U}),r.displayName=U)}}),l},Hz.isValidElement=V0,Hz.lazy=function(r){return{$$typeof:aa,_payload:{_status:-1,_result:r},_init:Ua}},Hz.memo=function(r,l){r==null&&console.error("memo: The first argument must be a component. Instead received: %s",r===null?"null":typeof r),l={$$typeof:K0,type:r,compare:l===void 0?null:l};var q;return Object.defineProperty(l,"displayName",{enumerable:!1,configurable:!0,get:function(){return q},set:function(U){q=U,r.name||r.displayName||(Object.defineProperty(r,"name",{value:U}),r.displayName=U)}}),l},Hz.startTransition=function(r){var l=f0.T,q={};f0.T=q,q._updatedFibers=new Set;try{var U=r(),u=f0.S;u!==null&&u(q,U),typeof U==="object"&&U!==null&&typeof U.then==="function"&&U.then(E0,xm)}catch(v0){xm(v0)}finally{l===null&&q._updatedFibers&&(r=q._updatedFibers.size,q._updatedFibers.clear(),10<r&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table.")),f0.T=l}},Hz.unstable_useCacheRefresh=function(){return O().useCacheRefresh()},Hz.use=function(r){return O().use(r)},Hz.useActionState=function(r,l,q){return O().useActionState(r,l,q)},Hz.useCallback=function(r,l){return O().useCallback(r,l)},Hz.useContext=function(r){var l=O();return r.$$typeof===l0&&console.error("Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?"),l.useContext(r)},Hz.useDebugValue=function(r,l){return O().useDebugValue(r,l)},Hz.useDeferredValue=function(r,l){return O().useDeferredValue(r,l)},Hz.useEffect=function(r,l,q){r==null&&console.warn("React Hook useEffect requires an effect callback. Did you forget to pass a callback to the hook?");var U=O();if(typeof q==="function")throw Error("useEffect CRUD overload is not enabled in this build of React.");return U.useEffect(r,l)},Hz.useId=function(){return O().useId()},Hz.useImperativeHandle=function(r,l,q){return O().useImperativeHandle(r,l,q)},Hz.useInsertionEffect=function(r,l){return r==null&&console.warn("React Hook useInsertionEffect requires an effect callback. Did you forget to pass a callback to the hook?"),O().useInsertionEffect(r,l)},Hz.useLayoutEffect=function(r,l){return r==null&&console.warn("React Hook useLayoutEffect requires an effect callback. Did you forget to pass a callback to the hook?"),O().useLayoutEffect(r,l)},Hz.useMemo=function(r,l){return O().useMemo(r,l)},Hz.useOptimistic=function(r,l){return O().useOptimistic(r,l)},Hz.useReducer=function(r,l,q){return O().useReducer(r,l,q)},Hz.useRef=function(r){return O().useRef(r)},Hz.useState=function(r){return O().useState(r)},Hz.useSyncExternalStore=function(r,l,q){return O().useSyncExternalStore(r,l,q)},Hz.useTransition=function(){return O().useTransition()},Hz.version="19.1.1",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()});var Go=jg((Mz)=>{var w3=O0(ww(),1);(function(){function J(){}function s(I){return""+I}function h(I,$,L){var x0=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;try{s(x0);var c0=!1}catch(U0){c0=!0}return c0&&(console.error("The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",typeof Symbol==="function"&&Symbol.toStringTag&&x0[Symbol.toStringTag]||x0.constructor.name||"Object"),s(x0)),{$$typeof:A,key:x0==null?null:""+x0,children:I,containerInfo:$,implementation:L}}function T(I,$){if(I==="font")return"";if(typeof $==="string")return $==="use-credentials"?$:""}function P(I){return I===null?"`null`":I===void 0?"`undefined`":I===""?"an empty string":'something with type "'+typeof I+'"'}function a0(I){return I===null?"`null`":I===void 0?"`undefined`":I===""?"an empty string":typeof I==="string"?JSON.stringify(I):typeof I==="number"?"`"+I+"`":'something with type "'+typeof I+'"'}function W0(){var I=Q0.H;return I===null&&console.error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
|
14
|
-
1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
15
|
-
2. You might be breaking the Rules of Hooks
|
|
16
|
-
3. You might have more than one copy of React in the same app
|
|
17
|
-
See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`),I}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var n={d:{f:J,r:function(){throw Error("Invalid form element. requestFormReset must be passed a form that was rendered by React.")},D:J,C:J,L:J,m:J,X:J,S:J,M:J},p:0,findDOMNode:null},A=Symbol.for("react.portal"),Q0=w3.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;typeof Map==="function"&&Map.prototype!=null&&typeof Map.prototype.forEach==="function"&&typeof Set==="function"&&Set.prototype!=null&&typeof Set.prototype.clear==="function"&&typeof Set.prototype.forEach==="function"||console.error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),Mz.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=n,Mz.createPortal=function(I,$){var L=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!$||$.nodeType!==1&&$.nodeType!==9&&$.nodeType!==11)throw Error("Target container is not a DOM element.");return h(I,$,null,L)},Mz.flushSync=function(I){var $=Q0.T,L=n.p;try{if(Q0.T=null,n.p=2,I)return I()}finally{Q0.T=$,n.p=L,n.d.f()&&console.error("flushSync was called from inside a lifecycle method. React cannot flush when React is already rendering. Consider moving this call to a scheduler task or micro task.")}},Mz.preconnect=function(I,$){typeof I==="string"&&I?$!=null&&typeof $!=="object"?console.error("ReactDOM.preconnect(): Expected the `options` argument (second) to be an object but encountered %s instead. The only supported option at this time is `crossOrigin` which accepts a string.",a0($)):$!=null&&typeof $.crossOrigin!=="string"&&console.error("ReactDOM.preconnect(): Expected the `crossOrigin` option (second argument) to be a string but encountered %s instead. Try removing this option or passing a string value instead.",P($.crossOrigin)):console.error("ReactDOM.preconnect(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",P(I)),typeof I==="string"&&($?($=$.crossOrigin,$=typeof $==="string"?$==="use-credentials"?$:"":void 0):$=null,n.d.C(I,$))},Mz.prefetchDNS=function(I){if(typeof I!=="string"||!I)console.error("ReactDOM.prefetchDNS(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",P(I));else if(1<arguments.length){var $=arguments[1];typeof $==="object"&&$.hasOwnProperty("crossOrigin")?console.error("ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. It looks like the you are attempting to set a crossOrigin property for this DNS lookup hint. Browsers do not perform DNS queries using CORS and setting this attribute on the resource hint has no effect. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.",a0($)):console.error("ReactDOM.prefetchDNS(): Expected only one argument, `href`, but encountered %s as a second argument instead. This argument is reserved for future options and is currently disallowed. Try calling ReactDOM.prefetchDNS() with just a single string argument, `href`.",a0($))}typeof I==="string"&&n.d.D(I)},Mz.preinit=function(I,$){if(typeof I==="string"&&I?$==null||typeof $!=="object"?console.error("ReactDOM.preinit(): Expected the `options` argument (second) to be an object with an `as` property describing the type of resource to be preinitialized but encountered %s instead.",a0($)):$.as!=="style"&&$.as!=="script"&&console.error('ReactDOM.preinit(): Expected the `as` property in the `options` argument (second) to contain a valid value describing the type of resource to be preinitialized but encountered %s instead. Valid values for `as` are "style" and "script".',a0($.as)):console.error("ReactDOM.preinit(): Expected the `href` argument (first) to be a non-empty string but encountered %s instead.",P(I)),typeof I==="string"&&$&&typeof $.as==="string"){var L=$.as,x0=T(L,$.crossOrigin),c0=typeof $.integrity==="string"?$.integrity:void 0,U0=typeof $.fetchPriority==="string"?$.fetchPriority:void 0;L==="style"?n.d.S(I,typeof $.precedence==="string"?$.precedence:void 0,{crossOrigin:x0,integrity:c0,fetchPriority:U0}):L==="script"&&n.d.X(I,{crossOrigin:x0,integrity:c0,fetchPriority:U0,nonce:typeof $.nonce==="string"?$.nonce:void 0})}},Mz.preinitModule=function(I,$){var L="";if(typeof I==="string"&&I||(L+=" The `href` argument encountered was "+P(I)+"."),$!==void 0&&typeof $!=="object"?L+=" The `options` argument encountered was "+P($)+".":$&&("as"in $)&&$.as!=="script"&&(L+=" The `as` option encountered was "+a0($.as)+"."),L)console.error("ReactDOM.preinitModule(): Expected up to two arguments, a non-empty `href` string and, optionally, an `options` object with a valid `as` property.%s",L);else switch(L=$&&typeof $.as==="string"?$.as:"script",L){case"script":break;default:L=a0(L),console.error('ReactDOM.preinitModule(): Currently the only supported "as" type for this function is "script" but received "%s" instead. This warning was generated for `href` "%s". In the future other module types will be supported, aligning with the import-attributes proposal. Learn more here: (https://github.com/tc39/proposal-import-attributes)',L,I)}if(typeof I==="string")if(typeof $==="object"&&$!==null){if($.as==null||$.as==="script")L=T($.as,$.crossOrigin),n.d.M(I,{crossOrigin:L,integrity:typeof $.integrity==="string"?$.integrity:void 0,nonce:typeof $.nonce==="string"?$.nonce:void 0})}else $==null&&n.d.M(I)},Mz.preload=function(I,$){var L="";if(typeof I==="string"&&I||(L+=" The `href` argument encountered was "+P(I)+"."),$==null||typeof $!=="object"?L+=" The `options` argument encountered was "+P($)+".":typeof $.as==="string"&&$.as||(L+=" The `as` option encountered was "+P($.as)+"."),L&&console.error('ReactDOM.preload(): Expected two arguments, a non-empty `href` string and an `options` object with an `as` property valid for a `<link rel="preload" as="..." />` tag.%s',L),typeof I==="string"&&typeof $==="object"&&$!==null&&typeof $.as==="string"){L=$.as;var x0=T(L,$.crossOrigin);n.d.L(I,L,{crossOrigin:x0,integrity:typeof $.integrity==="string"?$.integrity:void 0,nonce:typeof $.nonce==="string"?$.nonce:void 0,type:typeof $.type==="string"?$.type:void 0,fetchPriority:typeof $.fetchPriority==="string"?$.fetchPriority:void 0,referrerPolicy:typeof $.referrerPolicy==="string"?$.referrerPolicy:void 0,imageSrcSet:typeof $.imageSrcSet==="string"?$.imageSrcSet:void 0,imageSizes:typeof $.imageSizes==="string"?$.imageSizes:void 0,media:typeof $.media==="string"?$.media:void 0})}},Mz.preloadModule=function(I,$){var L="";typeof I==="string"&&I||(L+=" The `href` argument encountered was "+P(I)+"."),$!==void 0&&typeof $!=="object"?L+=" The `options` argument encountered was "+P($)+".":$&&("as"in $)&&typeof $.as!=="string"&&(L+=" The `as` option encountered was "+P($.as)+"."),L&&console.error('ReactDOM.preloadModule(): Expected two arguments, a non-empty `href` string and, optionally, an `options` object with an `as` property valid for a `<link rel="modulepreload" as="..." />` tag.%s',L),typeof I==="string"&&($?(L=T($.as,$.crossOrigin),n.d.m(I,{as:typeof $.as==="string"&&$.as!=="script"?$.as:void 0,crossOrigin:L,integrity:typeof $.integrity==="string"?$.integrity:void 0})):n.d.m(I))},Mz.requestFormReset=function(I){n.d.r(I)},Mz.unstable_batchedUpdates=function(I,$){return I($)},Mz.useFormState=function(I,$,L){return W0().useFormState(I,$,L)},Mz.useFormStatus=function(){return W0().useHostTransitionStatus()},Mz.version="19.1.1",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()});var Ho=jg((Dl,Zo)=>{var Jz=O0(Go(),1);Zo.exports=Jz});var Mo=jg((Iz)=>{var A0=O0(Ro(),1),gm=O0(ww(),1),g3=O0(Ho(),1);(function(){function J(a,t){for(a=a.memoizedState;a!==null&&0<t;)a=a.next,t--;return a}function s(a,t,w,g){if(w>=t.length)return g;var m=t[w],b=Ha(a)?a.slice():B0({},a);return b[m]=s(a[m],t,w+1,g),b}function h(a,t,w){if(t.length!==w.length)console.warn("copyWithRename() expects paths of the same length");else{for(var g=0;g<w.length-1;g++)if(t[g]!==w[g]){console.warn("copyWithRename() expects paths to be the same except for the deepest key");return}return T(a,t,w,0)}}function T(a,t,w,g){var m=t[g],b=Ha(a)?a.slice():B0({},a);return g+1===t.length?(b[w[g]]=b[m],Ha(b)?b.splice(m,1):delete b[m]):b[m]=T(a[m],t,w,g+1),b}function P(a,t,w){var g=t[w],m=Ha(a)?a.slice():B0({},a);if(w+1===t.length)return Ha(m)?m.splice(g,1):delete m[g],m;return m[g]=P(a[g],t,w+1),m}function a0(){return!1}function W0(){return null}function n(){}function A(){console.error("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://react.dev/link/rules-of-hooks")}function Q0(){console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().")}function I(){}function $(a){var t=[];return a.forEach(function(w){t.push(w)}),t.sort().join(", ")}function L(a,t,w,g){return new B8(a,t,w,g)}function x0(a,t){a.context===iw&&(Ad(a.current,2,t,a,null,null),z1())}function c0(a,t){if(lt!==null){var w=t.staleFamilies;t=t.updatedFamilies,sm(),nv(a.current,t,w),z1()}}function U0(a){lt=a}function b0(a){return!(!a||a.nodeType!==1&&a.nodeType!==9&&a.nodeType!==11)}function V0(a){var t=a,w=a;if(a.alternate)for(;t.return;)t=t.return;else{a=t;do t=a,(t.flags&4098)!==0&&(w=t.return),a=t.return;while(a)}return t.tag===3?w:null}function P0(a){if(a.tag===13){var t=a.memoizedState;if(t===null&&(a=a.alternate,a!==null&&(t=a.memoizedState)),t!==null)return t.dehydrated}return null}function z0(a){if(V0(a)!==a)throw Error("Unable to find node on an unmounted component.")}function S0(a){var t=a.alternate;if(!t){if(t=V0(a),t===null)throw Error("Unable to find node on an unmounted component.");return t!==a?null:a}for(var w=a,g=t;;){var m=w.return;if(m===null)break;var b=m.alternate;if(b===null){if(g=m.return,g!==null){w=g;continue}break}if(m.child===b.child){for(b=m.child;b;){if(b===w)return z0(m),a;if(b===g)return z0(m),t;b=b.sibling}throw Error("Unable to find node on an unmounted component.")}if(w.return!==g.return)w=m,g=b;else{for(var v=!1,d=m.child;d;){if(d===w){v=!0,w=m,g=b;break}if(d===g){v=!0,g=m,w=b;break}d=d.sibling}if(!v){for(d=b.child;d;){if(d===w){v=!0,w=b,g=m;break}if(d===g){v=!0,g=b,w=m;break}d=d.sibling}if(!v)throw Error("Child was not found in either parent set. This indicates a bug in React related to the return pointer. Please file an issue.")}}if(w.alternate!==g)throw Error("Return fibers should always be each others' alternates. This error is likely caused by a bug in React. Please file an issue.")}if(w.tag!==3)throw Error("Unable to find node on an unmounted component.");return w.stateNode.current===w?a:t}function Qa(a){var t=a.tag;if(t===5||t===26||t===27||t===6)return a;for(a=a.child;a!==null;){if(t=Qa(a),t!==null)return t;a=a.sibling}return null}function i0(a){if(a===null||typeof a!=="object")return null;return a=y6&&a[y6]||a["@@iterator"],typeof a==="function"?a:null}function I0(a){if(a==null)return null;if(typeof a==="function")return a.$$typeof===WN?null:a.displayName||a.name||null;if(typeof a==="string")return a;switch(a){case G1:return"Fragment";case _d:return"Profiler";case s2:return"StrictMode";case Fd:return"Suspense";case yd:return"SuspenseList";case Cd:return"Activity"}if(typeof a==="object")switch(typeof a.tag==="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),a.$$typeof){case R1:return"Portal";case it:return(a.displayName||"Context")+".Provider";case sd:return(a._context.displayName||"Context")+".Consumer";case Sm:var t=a.render;return a=a.displayName,a||(a=t.displayName||t.name||"",a=a!==""?"ForwardRef("+a+")":"ForwardRef"),a;case F2:return t=a.displayName||null,t!==null?t:I0(a.type)||"Memo";case tt:t=a._payload,a=a._init;try{return I0(a(t))}catch(w){}}return null}function Ua(a){return typeof a.tag==="number"?O(a):typeof a.name==="string"?a.name:null}function O(a){var t=a.type;switch(a.tag){case 31:return"Activity";case 24:return"Cache";case 9:return(t._context.displayName||"Context")+".Consumer";case 10:return(t.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return a=t.render,a=a.displayName||a.name||"",t.displayName||(a!==""?"ForwardRef("+a+")":"ForwardRef");case 7:return"Fragment";case 26:case 27:case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return I0(t);case 8:return t===s2?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 14:case 15:if(typeof t==="function")return t.displayName||t.name||null;if(typeof t==="string")return t;break;case 29:if(t=a._debugInfo,t!=null){for(var w=t.length-1;0<=w;w--)if(typeof t[w].name==="string")return t[w].name}if(a.return!==null)return O(a.return)}return null}function E0(a){return{current:a}}function X0(a,t){0>lw?console.error("Unexpected pop."):(t!==Td[lw]&&console.error("Unexpected Fiber popped."),a.current=ud[lw],ud[lw]=null,Td[lw]=null,lw--)}function o0(a,t,w){lw++,ud[lw]=a.current,Td[lw]=w,a.current=t}function ra(a){return a===null&&console.error("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue."),a}function Wa(a,t){o0(kw,t,a),o0(im,a,a),o0(Tw,null,a);var w=t.nodeType;switch(w){case 9:case 11:w=w===9?"#document":"#fragment",t=(t=t.documentElement)?(t=t.namespaceURI)?N6(t):Iw:Iw;break;default:if(w=t.tagName,t=t.namespaceURI)t=N6(t),t=z6(t,w);else switch(w){case"svg":t=tm;break;case"math":t=Mv;break;default:t=Iw}}w=w.toLowerCase(),w=H3(null,w),w={context:t,ancestorInfo:w},X0(Tw,a),o0(Tw,w,a)}function K(a){X0(Tw,a),X0(im,a),X0(kw,a)}function c(){return ra(Tw.current)}function V(a){a.memoizedState!==null&&o0(y2,a,a);var t=ra(Tw.current),w=a.type,g=z6(t.context,w);w=H3(t.ancestorInfo,w),g={context:g,ancestorInfo:w},t!==g&&(o0(im,a,a),o0(Tw,g,a))}function R0(a){im.current===a&&(X0(Tw,a),X0(im,a)),y2.current===a&&(X0(y2,a),Lb._currentValue=ig)}function X(a){return typeof Symbol==="function"&&Symbol.toStringTag&&a[Symbol.toStringTag]||a.constructor.name||"Object"}function S(a){try{return l0(a),!1}catch(t){return!0}}function l0(a){return""+a}function i(a,t){if(S(a))return console.error("The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before using it here.",t,X(a)),l0(a)}function ga(a,t){if(S(a))return console.error("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before using it here.",t,X(a)),l0(a)}function oa(a){if(S(a))return console.error("Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coerced to a string before using it here.",X(a)),l0(a)}function Ft(a){if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__==="undefined")return!1;var t=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(t.isDisabled)return!0;if(!t.supportsFiber)return console.error("The installed version of React DevTools is too old and will not work with the current version of React. Please update React DevTools. https://react.dev/link/react-devtools"),!0;try{H1=t.inject(a),qa=t}catch(w){console.error("React instrumentation encountered an error: %s.",w)}return t.checkDCE?!0:!1}function K0(a){if(typeof yN==="function"&&CN(a),qa&&typeof qa.setStrictMode==="function")try{qa.setStrictMode(H1,a)}catch(t){nt||(nt=!0,console.error("React instrumentation encountered an error: %s",t))}}function aa(a){_=a}function Jt(){_!==null&&typeof _.markCommitStopped==="function"&&_.markCommitStopped()}function dt(a){_!==null&&typeof _.markComponentRenderStarted==="function"&&_.markComponentRenderStarted(a)}function It(){_!==null&&typeof _.markComponentRenderStopped==="function"&&_.markComponentRenderStopped()}function mm(a){_!==null&&typeof _.markRenderStarted==="function"&&_.markRenderStarted(a)}function bm(){_!==null&&typeof _.markRenderStopped==="function"&&_.markRenderStopped()}function gw(a,t){_!==null&&typeof _.markStateUpdateScheduled==="function"&&_.markStateUpdateScheduled(a,t)}function ua(a){return a>>>=0,a===0?32:31-(uN(a)/TN|0)|0}function Dg(a){if(a&1)return"SyncHydrationLane";if(a&2)return"Sync";if(a&4)return"InputContinuousHydration";if(a&8)return"InputContinuous";if(a&16)return"DefaultHydration";if(a&32)return"Default";if(a&128)return"TransitionHydration";if(a&4194048)return"Transition";if(a&62914560)return"Retry";if(a&67108864)return"SelectiveHydration";if(a&134217728)return"IdleHydration";if(a&268435456)return"Idle";if(a&536870912)return"Offscreen";if(a&1073741824)return"Deferred"}function yt(a){var t=a&42;if(t!==0)return t;switch(a&-a){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:case 262144:case 524288:case 1048576:case 2097152:return a&4194048;case 4194304:case 8388608:case 16777216:case 33554432:return a&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return console.error("Should have found matching lanes. This is a bug in React."),a}}function pg(a,t,w){var g=a.pendingLanes;if(g===0)return 0;var m=0,b=a.suspendedLanes,v=a.pingedLanes;a=a.warmLanes;var d=g&134217727;return d!==0?(g=d&~b,g!==0?m=yt(g):(v&=d,v!==0?m=yt(v):w||(w=d&~a,w!==0&&(m=yt(w))))):(d=g&~b,d!==0?m=yt(d):v!==0?m=yt(v):w||(w=g&~a,w!==0&&(m=yt(w)))),m===0?0:t!==0&&t!==m&&(t&b)===0&&(b=m&-m,w=t&-t,b>=w||b===32&&(w&4194048)!==0)?t:m}function f0(a,t){return(a.pendingLanes&~(a.suspendedLanes&~a.pingedLanes)&t)===0}function eg(a,t){switch(a){case 1:case 2:case 4:case 8:case 64:return t+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 t+5000;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return console.error("Should have found matching lanes. This is a bug in React."),-1}}function vm(){var a=C2;return C2<<=1,(C2&4194048)===0&&(C2=256),a}function dm(){var a=u2;return u2<<=1,(u2&62914560)===0&&(u2=4194304),a}function a1(a){for(var t=[],w=0;31>w;w++)t.push(a);return t}function Aw(a,t){a.pendingLanes|=t,t!==268435456&&(a.suspendedLanes=0,a.pingedLanes=0,a.warmLanes=0)}function Ov(a,t,w,g,m,b){var v=a.pendingLanes;a.pendingLanes=w,a.suspendedLanes=0,a.pingedLanes=0,a.warmLanes=0,a.expiredLanes&=w,a.entangledLanes&=w,a.errorRecoveryDisabledLanes&=w,a.shellSuspendCounter=0;var{entanglements:d,expirationTimes:x,hiddenUpdates:f}=a;for(w=v&~w;0<w;){var Y=31-Ka(w),Z=1<<Y;d[Y]=0,x[Y]=-1;var B=f[Y];if(B!==null)for(f[Y]=null,Y=0;Y<B.length;Y++){var H=B[Y];H!==null&&(H.lane&=-536870913)}w&=~Z}g!==0&&Pb(a,g,0),b!==0&&m===0&&a.tag!==0&&(a.suspendedLanes|=b&~(v&~t))}function Pb(a,t,w){a.pendingLanes|=t,a.suspendedLanes&=~t;var g=31-Ka(t);a.entangledLanes|=t,a.entanglements[g]=a.entanglements[g]|1073741824|w&4194090}function rm(a,t){var w=a.entangledLanes|=t;for(a=a.entanglements;w;){var g=31-Ka(w),m=1<<g;m&t|a[g]&t&&(a[g]|=t),w&=~m}}function t1(a){switch(a){case 2:a=1;break;case 8:a=4;break;case 32:a=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:a=128;break;case 268435456:a=134217728;break;default:a=0}return a}function xm(a,t,w){if(Lt)for(a=a.pendingUpdatersLaneMap;0<w;){var g=31-Ka(w),m=1<<g;a[g].add(t),w&=~m}}function fm(a,t){if(Lt)for(var{pendingUpdatersLaneMap:w,memoizedUpdaters:g}=a;0<t;){var m=31-Ka(t);a=1<<m,m=w[m],0<m.size&&(m.forEach(function(b){var v=b.alternate;v!==null&&g.has(v)||g.add(b)}),m.clear()),t&=~a}}function Lw(a){return a&=-a,wt!==0&&wt<a?Wt!==0&&Wt<a?(a&134217727)!==0?Et:T2:Wt:wt}function xg(){var a=_0.p;if(a!==0)return a;return a=window.event,a===void 0?Et:K6(a.type)}function w1(a,t){var w=_0.p;try{return _0.p=a,t()}finally{_0.p=w}}function fg(a){delete a[Aa],delete a[Sa],delete a[id],delete a[kN],delete a[hN]}function mw(a){var t=a[Aa];if(t)return t;for(var w=a.parentNode;w;){if(t=w[cw]||w[Aa]){if(w=t.alternate,t.child!==null||w!==null&&w.child!==null)for(a=R6(a);a!==null;){if(w=a[Aa])return w;a=R6(a)}return t}a=w,w=a.parentNode}return null}function r(a){if(a=a[Aa]||a[cw]){var t=a.tag;if(t===5||t===6||t===13||t===26||t===27||t===3)return a}return null}function l(a){var t=a.tag;if(t===5||t===26||t===27||t===6)return a.stateNode;throw Error("getNodeFromInstance: Invalid argument.")}function q(a){var t=a[C6];return t||(t=a[C6]={hoistableStyles:new Map,hoistableScripts:new Map}),t}function U(a){a[jm]=!0}function u(a,t){v0(a,t),v0(a+"Capture",t)}function v0(a,t){Ug[a]&&console.error("EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.",a),Ug[a]=t;var w=a.toLowerCase();jd[w]=a,a==="onDoubleClick"&&(jd.ondblclick=a);for(a=0;a<t.length;a++)u6.add(t[a])}function t0(a,t){cN[t.type]||t.onChange||t.onInput||t.readOnly||t.disabled||t.value==null||(a==="select"?console.error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set `onChange`."):console.error("You provided a `value` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either `onChange` or `readOnly`.")),t.onChange||t.readOnly||t.disabled||t.checked==null||console.error("You provided a `checked` prop to a form field without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set either `onChange` or `readOnly`.")}function L0(a){if($w.call(k6,a))return!0;if($w.call(T6,a))return!1;if(SN.test(a))return k6[a]=!0;return T6[a]=!0,console.error("Invalid attribute name: `%s`",a),!1}function $0(a,t,w){if(L0(t)){if(!a.hasAttribute(t)){switch(typeof w){case"symbol":case"object":return w;case"function":return w;case"boolean":if(w===!1)return w}return w===void 0?void 0:null}if(a=a.getAttribute(t),a===""&&w===!0)return!0;return i(w,t),a===""+w?w:a}}function Ea(a,t,w){if(L0(t))if(w===null)a.removeAttribute(t);else{switch(typeof w){case"undefined":case"function":case"symbol":a.removeAttribute(t);return;case"boolean":var g=t.toLowerCase().slice(0,5);if(g!=="data-"&&g!=="aria-"){a.removeAttribute(t);return}}i(w,t),a.setAttribute(t,""+w)}}function Qt(a,t,w){if(w===null)a.removeAttribute(t);else{switch(typeof w){case"undefined":case"function":case"symbol":case"boolean":a.removeAttribute(t);return}i(w,t),a.setAttribute(t,""+w)}}function Ut(a,t,w,g){if(g===null)a.removeAttribute(w);else{switch(typeof g){case"undefined":case"function":case"symbol":case"boolean":a.removeAttribute(w);return}i(g,w),a.setAttributeNS(t,w,""+g)}}function _b(){}function jo(){if(nm===0){h6=console.log,c6=console.info,S6=console.warn,i6=console.error,j6=console.group,n6=console.groupCollapsed,E6=console.groupEnd;var a={configurable:!0,enumerable:!0,value:_b,writable:!0};Object.defineProperties(console,{info:a,log:a,warn:a,error:a,group:a,groupCollapsed:a,groupEnd:a})}nm++}function no(){if(nm--,nm===0){var a={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:B0({},a,{value:h6}),info:B0({},a,{value:c6}),warn:B0({},a,{value:S6}),error:B0({},a,{value:i6}),group:B0({},a,{value:j6}),groupCollapsed:B0({},a,{value:n6}),groupEnd:B0({},a,{value:E6})})}0>nm&&console.error("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}function rt(a){if(nd===void 0)try{throw Error()}catch(w){var t=w.stack.trim().match(/\n( *(at )?)/);nd=t&&t[1]||"",V6=-1<w.stack.indexOf(`
|
|
18
|
-
at`)?" (<anonymous>)":-1<w.stack.indexOf("@")?"@unknown:0:0":""}return`
|
|
19
|
-
`+nd+a+V6}function Pv(a,t){if(!a||Ed)return"";var w=Vd.get(a);if(w!==void 0)return w;Ed=!0,w=Error.prepareStackTrace,Error.prepareStackTrace=void 0;var g=null;g=G.H,G.H=null,jo();try{var m={DetermineComponentFrameRoot:function(){try{if(t){var B=function(){throw Error()};if(Object.defineProperty(B.prototype,"props",{set:function(){throw Error()}}),typeof Reflect==="object"&&Reflect.construct){try{Reflect.construct(B,[])}catch(F){var H=F}Reflect.construct(a,[],B)}else{try{B.call()}catch(F){H=F}a.call(B.prototype)}}else{try{throw Error()}catch(F){H=F}(B=a())&&typeof B.catch==="function"&&B.catch(function(){})}}catch(F){if(F&&H&&typeof F.stack==="string")return[F.stack,H.stack]}return[null,null]}};m.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var b=Object.getOwnPropertyDescriptor(m.DetermineComponentFrameRoot,"name");b&&b.configurable&&Object.defineProperty(m.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var v=m.DetermineComponentFrameRoot(),d=v[0],x=v[1];if(d&&x){var f=d.split(`
|
|
20
|
-
`),Y=x.split(`
|
|
21
|
-
`);for(v=b=0;b<f.length&&!f[b].includes("DetermineComponentFrameRoot");)b++;for(;v<Y.length&&!Y[v].includes("DetermineComponentFrameRoot");)v++;if(b===f.length||v===Y.length)for(b=f.length-1,v=Y.length-1;1<=b&&0<=v&&f[b]!==Y[v];)v--;for(;1<=b&&0<=v;b--,v--)if(f[b]!==Y[v]){if(b!==1||v!==1)do if(b--,v--,0>v||f[b]!==Y[v]){var Z=`
|
|
22
|
-
`+f[b].replace(" at new "," at ");return a.displayName&&Z.includes("<anonymous>")&&(Z=Z.replace("<anonymous>",a.displayName)),typeof a==="function"&&Vd.set(a,Z),Z}while(1<=b&&0<=v);break}}}finally{Ed=!1,G.H=g,no(),Error.prepareStackTrace=w}return f=(f=a?a.displayName||a.name:"")?rt(f):"",typeof a==="function"&&Vd.set(a,f),f}function b3(a){var t=Error.prepareStackTrace;if(Error.prepareStackTrace=void 0,a=a.stack,Error.prepareStackTrace=t,a.startsWith(`Error: react-stack-top-frame
|
|
23
|
-
`)&&(a=a.slice(29)),t=a.indexOf(`
|
|
24
|
-
`),t!==-1&&(a=a.slice(t+1)),t=a.indexOf("react_stack_bottom_frame"),t!==-1&&(t=a.lastIndexOf(`
|
|
25
|
-
`,t)),t!==-1)a=a.slice(0,t);else return"";return a}function Eo(a){switch(a.tag){case 26:case 27:case 5:return rt(a.type);case 16:return rt("Lazy");case 13:return rt("Suspense");case 19:return rt("SuspenseList");case 0:case 15:return Pv(a.type,!1);case 11:return Pv(a.type.render,!1);case 1:return Pv(a.type,!0);case 31:return rt("Activity");default:return""}}function v3(a){try{var t="";do{t+=Eo(a);var w=a._debugInfo;if(w)for(var g=w.length-1;0<=g;g--){var m=w[g];if(typeof m.name==="string"){var b=t,v=m.env,d=rt(m.name+(v?" ["+v+"]":""));t=b+d}}a=a.return}while(a);return t}catch(x){return`
|
|
26
|
-
Error generating stack: `+x.message+`
|
|
27
|
-
`+x.stack}}function d3(a){return(a=a?a.displayName||a.name:"")?rt(a):""}function sb(){if(gt===null)return null;var a=gt._debugOwner;return a!=null?Ua(a):null}function Vo(){if(gt===null)return"";var a=gt;try{var t="";switch(a.tag===6&&(a=a.return),a.tag){case 26:case 27:case 5:t+=rt(a.type);break;case 13:t+=rt("Suspense");break;case 19:t+=rt("SuspenseList");break;case 31:t+=rt("Activity");break;case 30:case 0:case 15:case 1:a._debugOwner||t!==""||(t+=d3(a.type));break;case 11:a._debugOwner||t!==""||(t+=d3(a.type.render))}for(;a;)if(typeof a.tag==="number"){var w=a;a=w._debugOwner;var g=w._debugStack;a&&g&&(typeof g!=="string"&&(w._debugStack=g=b3(g)),g!==""&&(t+=`
|
|
28
|
-
`+g))}else if(a.debugStack!=null){var m=a.debugStack;(a=a.owner)&&m&&(t+=`
|
|
29
|
-
`+b3(m))}else break;var b=t}catch(v){b=`
|
|
30
|
-
Error generating stack: `+v.message+`
|
|
31
|
-
`+v.stack}return b}function k(a,t,w,g,m,b,v){var d=gt;_v(a);try{return a!==null&&a._debugTask?a._debugTask.run(t.bind(null,w,g,m,b,v)):t(w,g,m,b,v)}finally{_v(d)}throw Error("runWithFiberInDEV should never be called in production. This is a bug in React.")}function _v(a){G.getCurrentStack=a===null?null:Vo,Vt=!1,gt=a}function xt(a){switch(typeof a){case"bigint":case"boolean":case"number":case"string":case"undefined":return a;case"object":return oa(a),a;default:return""}}function r3(a){var t=a.type;return(a=a.nodeName)&&a.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function Do(a){var t=r3(a)?"checked":"value",w=Object.getOwnPropertyDescriptor(a.constructor.prototype,t);oa(a[t]);var g=""+a[t];if(!a.hasOwnProperty(t)&&typeof w!=="undefined"&&typeof w.get==="function"&&typeof w.set==="function"){var{get:m,set:b}=w;return Object.defineProperty(a,t,{configurable:!0,get:function(){return m.call(this)},set:function(v){oa(v),g=""+v,b.call(this,v)}}),Object.defineProperty(a,t,{enumerable:w.enumerable}),{getValue:function(){return g},setValue:function(v){oa(v),g=""+v},stopTracking:function(){a._valueTracker=null,delete a[t]}}}}function Fb(a){a._valueTracker||(a._valueTracker=Do(a))}function x3(a){if(!a)return!1;var t=a._valueTracker;if(!t)return!0;var w=t.getValue(),g="";return a&&(g=r3(a)?a.checked?"true":"false":a.value),a=g,a!==w?(t.setValue(a),!0):!1}function yb(a){if(a=a||(typeof document!=="undefined"?document:void 0),typeof a==="undefined")return null;try{return a.activeElement||a.body}catch(t){return a.body}}function ft(a){return a.replace(iN,function(t){return"\\"+t.charCodeAt(0).toString(16)+" "})}function f3(a,t){t.checked===void 0||t.defaultChecked===void 0||p6||(console.error("%s contains an input of type %s with both checked and defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components",sb()||"A component",t.type),p6=!0),t.value===void 0||t.defaultValue===void 0||D6||(console.error("%s contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://react.dev/link/controlled-components",sb()||"A component",t.type),D6=!0)}function sv(a,t,w,g,m,b,v,d){if(a.name="",v!=null&&typeof v!=="function"&&typeof v!=="symbol"&&typeof v!=="boolean"?(i(v,"type"),a.type=v):a.removeAttribute("type"),t!=null)if(v==="number"){if(t===0&&a.value===""||a.value!=t)a.value=""+xt(t)}else a.value!==""+xt(t)&&(a.value=""+xt(t));else v!=="submit"&&v!=="reset"||a.removeAttribute("value");t!=null?Fv(a,v,xt(t)):w!=null?Fv(a,v,xt(w)):g!=null&&a.removeAttribute("value"),m==null&&b!=null&&(a.defaultChecked=!!b),m!=null&&(a.checked=m&&typeof m!=="function"&&typeof m!=="symbol"),d!=null&&typeof d!=="function"&&typeof d!=="symbol"&&typeof d!=="boolean"?(i(d,"name"),a.name=""+xt(d)):a.removeAttribute("name")}function o3(a,t,w,g,m,b,v,d){if(b!=null&&typeof b!=="function"&&typeof b!=="symbol"&&typeof b!=="boolean"&&(i(b,"type"),a.type=b),t!=null||w!=null){if(!(b!=="submit"&&b!=="reset"||t!==void 0&&t!==null))return;w=w!=null?""+xt(w):"",t=t!=null?""+xt(t):w,d||t===a.value||(a.value=t),a.defaultValue=t}g=g!=null?g:m,g=typeof g!=="function"&&typeof g!=="symbol"&&!!g,a.checked=d?a.checked:!!g,a.defaultChecked=!!g,v!=null&&typeof v!=="function"&&typeof v!=="symbol"&&typeof v!=="boolean"&&(i(v,"name"),a.name=v)}function Fv(a,t,w){t==="number"&&yb(a.ownerDocument)===a||a.defaultValue===""+w||(a.defaultValue=""+w)}function N3(a,t){t.value==null&&(typeof t.children==="object"&&t.children!==null?gm.Children.forEach(t.children,function(w){w==null||typeof w==="string"||typeof w==="number"||typeof w==="bigint"||a9||(a9=!0,console.error("Cannot infer the option value of complex children. Pass a `value` prop or use a plain string as children to <option>."))}):t.dangerouslySetInnerHTML==null||t9||(t9=!0,console.error("Pass a `value` prop if you set dangerouslyInnerHTML so React knows which value should be selected."))),t.selected==null||e6||(console.error("Use the `defaultValue` or `value` props on <select> instead of setting `selected` on <option>."),e6=!0)}function z3(){var a=sb();return a?`
|
|
32
|
-
|
|
33
|
-
Check the render method of \``+a+"`.":""}function g1(a,t,w,g){if(a=a.options,t){t={};for(var m=0;m<w.length;m++)t["$"+w[m]]=!0;for(w=0;w<a.length;w++)m=t.hasOwnProperty("$"+a[w].value),a[w].selected!==m&&(a[w].selected=m),m&&g&&(a[w].defaultSelected=!0)}else{w=""+xt(w),t=null;for(m=0;m<a.length;m++){if(a[m].value===w){a[m].selected=!0,g&&(a[m].defaultSelected=!0);return}t!==null||a[m].disabled||(t=a[m])}t!==null&&(t.selected=!0)}}function l3(a,t){for(a=0;a<g9.length;a++){var w=g9[a];if(t[w]!=null){var g=Ha(t[w]);t.multiple&&!g?console.error("The `%s` prop supplied to <select> must be an array if `multiple` is true.%s",w,z3()):!t.multiple&&g&&console.error("The `%s` prop supplied to <select> must be a scalar value if `multiple` is false.%s",w,z3())}}t.value===void 0||t.defaultValue===void 0||w9||(console.error("Select elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled select element and remove one of these props. More info: https://react.dev/link/controlled-components"),w9=!0)}function $3(a,t){t.value===void 0||t.defaultValue===void 0||m9||(console.error("%s contains a textarea with both value and defaultValue props. Textarea elements must be either controlled or uncontrolled (specify either the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled textarea and remove one of these props. More info: https://react.dev/link/controlled-components",sb()||"A component"),m9=!0),t.children!=null&&t.value==null&&console.error("Use the `defaultValue` or `value` props instead of setting children on <textarea>.")}function B3(a,t,w){if(t!=null&&(t=""+xt(t),t!==a.value&&(a.value=t),w==null)){a.defaultValue!==t&&(a.defaultValue=t);return}a.defaultValue=w!=null?""+xt(w):""}function Y3(a,t,w,g){if(t==null){if(g!=null){if(w!=null)throw Error("If you supply `defaultValue` on a <textarea>, do not pass children.");if(Ha(g)){if(1<g.length)throw Error("<textarea> can only have at most one child.");g=g[0]}w=g}w==null&&(w=""),t=w}w=xt(t),a.defaultValue=w,g=a.textContent,g===w&&g!==""&&g!==null&&(a.value=g)}function X3(a,t){return a.serverProps===void 0&&a.serverTail.length===0&&a.children.length===1&&3<a.distanceFromLeaf&&a.distanceFromLeaf>15-t?X3(a.children[0],t):a}function Va(a){return" "+" ".repeat(a)}function m1(a){return"+ "+" ".repeat(a)}function og(a){return"- "+" ".repeat(a)}function R3(a){switch(a.tag){case 26:case 27:case 5:return a.type;case 16:return"Lazy";case 13:return"Suspense";case 19:return"SuspenseList";case 0:case 15:return a=a.type,a.displayName||a.name||null;case 11:return a=a.type.render,a.displayName||a.name||null;case 1:return a=a.type,a.displayName||a.name||null;default:return null}}function om(a,t){return b9.test(a)?(a=JSON.stringify(a),a.length>t-2?8>t?'{"..."}':"{"+a.slice(0,t-7)+'..."}':"{"+a+"}"):a.length>t?5>t?'{"..."}':a.slice(0,t-3)+"...":a}function Cb(a,t,w){var g=120-2*w;if(t===null)return m1(w)+om(a,g)+`
|
|
34
|
-
`;if(typeof t==="string"){for(var m=0;m<t.length&&m<a.length&&t.charCodeAt(m)===a.charCodeAt(m);m++);return m>g-8&&10<m&&(a="..."+a.slice(m-8),t="..."+t.slice(m-8)),m1(w)+om(a,g)+`
|
|
35
|
-
`+og(w)+om(t,g)+`
|
|
36
|
-
`}return Va(w)+om(a,g)+`
|
|
37
|
-
`}function yv(a){return Object.prototype.toString.call(a).replace(/^\[object (.*)\]$/,function(t,w){return w})}function Nm(a,t){switch(typeof a){case"string":return a=JSON.stringify(a),a.length>t?5>t?'"..."':a.slice(0,t-4)+'..."':a;case"object":if(a===null)return"null";if(Ha(a))return"[...]";if(a.$$typeof===uw)return(t=I0(a.type))?"<"+t+">":"<...>";var w=yv(a);if(w==="Object"){w="",t-=2;for(var g in a)if(a.hasOwnProperty(g)){var m=JSON.stringify(g);if(m!=='"'+g+'"'&&(g=m),t-=g.length-2,m=Nm(a[g],15>t?t:15),t-=m.length,0>t){w+=w===""?"...":", ...";break}w+=(w===""?"":",")+g+":"+m}return"{"+w+"}"}return w;case"function":return(t=a.displayName||a.name)?"function "+t:"function";default:return String(a)}}function b1(a,t){return typeof a!=="string"||b9.test(a)?"{"+Nm(a,t-2)+"}":a.length>t-2?5>t?'"..."':'"'+a.slice(0,t-5)+'..."':'"'+a+'"'}function Cv(a,t,w){var g=120-w.length-a.length,m=[],b;for(b in t)if(t.hasOwnProperty(b)&&b!=="children"){var v=b1(t[b],120-w.length-b.length-1);g-=b.length+v.length+2,m.push(b+"="+v)}return m.length===0?w+"<"+a+`>
|
|
38
|
-
`:0<g?w+"<"+a+" "+m.join(" ")+`>
|
|
39
|
-
`:w+"<"+a+`
|
|
40
|
-
`+w+" "+m.join(`
|
|
41
|
-
`+w+" ")+`
|
|
42
|
-
`+w+`>
|
|
43
|
-
`}function po(a,t,w){var g="",m=B0({},t),b;for(b in a)if(a.hasOwnProperty(b)){delete m[b];var v=120-2*w-b.length-2,d=Nm(a[b],v);t.hasOwnProperty(b)?(v=Nm(t[b],v),g+=m1(w)+b+": "+d+`
|
|
44
|
-
`,g+=og(w)+b+": "+v+`
|
|
45
|
-
`):g+=m1(w)+b+": "+d+`
|
|
46
|
-
`}for(var x in m)m.hasOwnProperty(x)&&(a=Nm(m[x],120-2*w-x.length-2),g+=og(w)+x+": "+a+`
|
|
47
|
-
`);return g}function eo(a,t,w,g){var m="",b=new Map;for(f in w)w.hasOwnProperty(f)&&b.set(f.toLowerCase(),f);if(b.size===1&&b.has("children"))m+=Cv(a,t,Va(g));else{for(var v in t)if(t.hasOwnProperty(v)&&v!=="children"){var d=120-2*(g+1)-v.length-1,x=b.get(v.toLowerCase());if(x!==void 0){b.delete(v.toLowerCase());var f=t[v];x=w[x];var Y=b1(f,d);d=b1(x,d),typeof f==="object"&&f!==null&&typeof x==="object"&&x!==null&&yv(f)==="Object"&&yv(x)==="Object"&&(2<Object.keys(f).length||2<Object.keys(x).length||-1<Y.indexOf("...")||-1<d.indexOf("..."))?m+=Va(g+1)+v+`={{
|
|
48
|
-
`+po(f,x,g+2)+Va(g+1)+`}}
|
|
49
|
-
`:(m+=m1(g+1)+v+"="+Y+`
|
|
50
|
-
`,m+=og(g+1)+v+"="+d+`
|
|
51
|
-
`)}else m+=Va(g+1)+v+"="+b1(t[v],d)+`
|
|
52
|
-
`}b.forEach(function(Z){if(Z!=="children"){var B=120-2*(g+1)-Z.length-1;m+=og(g+1)+Z+"="+b1(w[Z],B)+`
|
|
53
|
-
`}}),m=m===""?Va(g)+"<"+a+`>
|
|
54
|
-
`:Va(g)+"<"+a+`
|
|
55
|
-
`+m+Va(g)+`>
|
|
56
|
-
`}if(a=w.children,t=t.children,typeof a==="string"||typeof a==="number"||typeof a==="bigint"){if(b="",typeof t==="string"||typeof t==="number"||typeof t==="bigint")b=""+t;m+=Cb(b,""+a,g+1)}else if(typeof t==="string"||typeof t==="number"||typeof t==="bigint")m=a==null?m+Cb(""+t,null,g+1):m+Cb(""+t,void 0,g+1);return m}function G3(a,t){var w=R3(a);if(w===null){w="";for(a=a.child;a;)w+=G3(a,t),a=a.sibling;return w}return Va(t)+"<"+w+`>
|
|
57
|
-
`}function uv(a,t){var w=X3(a,t);if(w!==a&&(a.children.length!==1||a.children[0]!==w))return Va(t)+`...
|
|
58
|
-
`+uv(w,t+1);w="";var g=a.fiber._debugInfo;if(g)for(var m=0;m<g.length;m++){var b=g[m].name;typeof b==="string"&&(w+=Va(t)+"<"+b+`>
|
|
59
|
-
`,t++)}if(g="",m=a.fiber.pendingProps,a.fiber.tag===6)g=Cb(m,a.serverProps,t),t++;else if(b=R3(a.fiber),b!==null)if(a.serverProps===void 0){g=t;var v=120-2*g-b.length-2,d="";for(f in m)if(m.hasOwnProperty(f)&&f!=="children"){var x=b1(m[f],15);if(v-=f.length+x.length+2,0>v){d+=" ...";break}d+=" "+f+"="+x}g=Va(g)+"<"+b+d+`>
|
|
60
|
-
`,t++}else a.serverProps===null?(g=Cv(b,m,m1(t)),t++):typeof a.serverProps==="string"?console.error("Should not have matched a non HostText fiber to a Text node. This is a bug in React."):(g=eo(b,m,a.serverProps,t),t++);var f="";m=a.fiber.child;for(b=0;m&&b<a.children.length;)v=a.children[b],v.fiber===m?(f+=uv(v,t),b++):f+=G3(m,t),m=m.sibling;m&&0<a.children.length&&(f+=Va(t)+`...
|
|
61
|
-
`),m=a.serverTail,a.serverProps===null&&t--;for(a=0;a<m.length;a++)b=m[a],f=typeof b==="string"?f+(og(t)+om(b,120-2*t)+`
|
|
62
|
-
`):f+Cv(b.type,b.props,og(t));return w+g+f}function Tv(a){try{return`
|
|
63
|
-
|
|
64
|
-
`+uv(a,0)}catch(t){return""}}function Z3(a,t,w){for(var g=t,m=null,b=0;g;)g===a&&(b=0),m={fiber:g,children:m!==null?[m]:[],serverProps:g===t?w:g===a?null:void 0,serverTail:[],distanceFromLeaf:b},b++,g=g.return;return m!==null?Tv(m).replaceAll(/^[+-]/gm,">"):""}function H3(a,t){var w=B0({},a||d9),g={tag:t};if(v9.indexOf(t)!==-1&&(w.aTagInScope=null,w.buttonTagInScope=null,w.nobrTagInScope=null),nN.indexOf(t)!==-1&&(w.pTagInButtonScope=null),jN.indexOf(t)!==-1&&t!=="address"&&t!=="div"&&t!=="p"&&(w.listItemTagAutoclosing=null,w.dlItemTagAutoclosing=null),w.current=g,t==="form"&&(w.formTag=g),t==="a"&&(w.aTagInScope=g),t==="button"&&(w.buttonTagInScope=g),t==="nobr"&&(w.nobrTagInScope=g),t==="p"&&(w.pTagInButtonScope=g),t==="li"&&(w.listItemTagAutoclosing=g),t==="dd"||t==="dt")w.dlItemTagAutoclosing=g;return t==="#document"||t==="html"?w.containerTagInScope=null:w.containerTagInScope||(w.containerTagInScope=g),a!==null||t!=="#document"&&t!=="html"&&t!=="body"?w.implicitRootScope===!0&&(w.implicitRootScope=!1):w.implicitRootScope=!0,w}function M3(a,t,w){switch(t){case"select":return a==="hr"||a==="option"||a==="optgroup"||a==="script"||a==="template"||a==="#text";case"optgroup":return a==="option"||a==="#text";case"option":return a==="#text";case"tr":return a==="th"||a==="td"||a==="style"||a==="script"||a==="template";case"tbody":case"thead":case"tfoot":return a==="tr"||a==="style"||a==="script"||a==="template";case"colgroup":return a==="col"||a==="template";case"table":return a==="caption"||a==="colgroup"||a==="tbody"||a==="tfoot"||a==="thead"||a==="style"||a==="script"||a==="template";case"head":return a==="base"||a==="basefont"||a==="bgsound"||a==="link"||a==="meta"||a==="title"||a==="noscript"||a==="noframes"||a==="style"||a==="script"||a==="template";case"html":if(w)break;return a==="head"||a==="body"||a==="frameset";case"frameset":return a==="frame";case"#document":if(!w)return a==="html"}switch(a){case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":return t!=="h1"&&t!=="h2"&&t!=="h3"&&t!=="h4"&&t!=="h5"&&t!=="h6";case"rp":case"rt":return EN.indexOf(t)===-1;case"caption":case"col":case"colgroup":case"frameset":case"frame":case"tbody":case"td":case"tfoot":case"th":case"thead":case"tr":return t==null;case"head":return w||t===null;case"html":return w&&t==="#document"||t===null;case"body":return w&&(t==="#document"||t==="html")||t===null}return!0}function a8(a,t){switch(a){case"address":case"article":case"aside":case"blockquote":case"center":case"details":case"dialog":case"dir":case"div":case"dl":case"fieldset":case"figcaption":case"figure":case"footer":case"header":case"hgroup":case"main":case"menu":case"nav":case"ol":case"p":case"section":case"summary":case"ul":case"pre":case"listing":case"table":case"hr":case"xmp":case"h1":case"h2":case"h3":case"h4":case"h5":case"h6":return t.pTagInButtonScope;case"form":return t.formTag||t.pTagInButtonScope;case"li":return t.listItemTagAutoclosing;case"dd":case"dt":return t.dlItemTagAutoclosing;case"button":return t.buttonTagInScope;case"a":return t.aTagInScope;case"nobr":return t.nobrTagInScope}return null}function J3(a,t){for(;a;){switch(a.tag){case 5:case 26:case 27:if(a.type===t)return a}a=a.return}return null}function kv(a,t){t=t||d9;var w=t.current;if(t=(w=M3(a,w&&w.tag,t.implicitRootScope)?null:w)?null:a8(a,t),t=w||t,!t)return!0;var g=t.tag;if(t=String(!!w)+"|"+a+"|"+g,k2[t])return!1;k2[t]=!0;var m=(t=gt)?J3(t.return,g):null,b=t!==null&&m!==null?Z3(m,t,null):"",v="<"+a+">";return w?(w="",g==="table"&&a==="tr"&&(w+=" Add a <tbody>, <thead> or <tfoot> to your code to match the DOM tree generated by the browser."),console.error(`In HTML, %s cannot be a child of <%s>.%s
|
|
65
|
-
This will cause a hydration error.%s`,v,g,w,b)):console.error(`In HTML, %s cannot be a descendant of <%s>.
|
|
66
|
-
This will cause a hydration error.%s`,v,g,b),t&&(a=t.return,m===null||a===null||m===a&&a._debugOwner===t._debugOwner||k(m,function(){console.error(`<%s> cannot contain a nested %s.
|
|
67
|
-
See this log for the ancestor stack trace.`,g,v)})),!1}function ub(a,t,w){if(w||M3("#text",t,!1))return!0;if(w="#text|"+t,k2[w])return!1;k2[w]=!0;var g=(w=gt)?J3(w,t):null;return w=w!==null&&g!==null?Z3(g,w,w.tag!==6?{children:null}:null):"",/\S/.test(a)?console.error(`In HTML, text nodes cannot be a child of <%s>.
|
|
68
|
-
This will cause a hydration error.%s`,t,w):console.error(`In HTML, whitespace text nodes cannot be a child of <%s>. Make sure you don't have any extra whitespace between tags on each line of your source code.
|
|
69
|
-
This will cause a hydration error.%s`,t,w),!1}function zm(a,t){if(t){var w=a.firstChild;if(w&&w===a.lastChild&&w.nodeType===3){w.nodeValue=t;return}}a.textContent=t}function t8(a){return a.replace(pN,function(t,w){return w.toUpperCase()})}function I3(a,t,w){var g=t.indexOf("--")===0;g||(-1<t.indexOf("-")?M1.hasOwnProperty(t)&&M1[t]||(M1[t]=!0,console.error("Unsupported style property %s. Did you mean %s?",t,t8(t.replace(DN,"ms-")))):VN.test(t)?M1.hasOwnProperty(t)&&M1[t]||(M1[t]=!0,console.error("Unsupported vendor-prefixed style property %s. Did you mean %s?",t,t.charAt(0).toUpperCase()+t.slice(1))):!f9.test(w)||pd.hasOwnProperty(w)&&pd[w]||(pd[w]=!0,console.error(`Style property values shouldn't contain a semicolon. Try "%s: %s" instead.`,t,w.replace(f9,""))),typeof w==="number"&&(isNaN(w)?o9||(o9=!0,console.error("`NaN` is an invalid value for the `%s` css style property.",t)):isFinite(w)||N9||(N9=!0,console.error("`Infinity` is an invalid value for the `%s` css style property.",t)))),w==null||typeof w==="boolean"||w===""?g?a.setProperty(t,""):t==="float"?a.cssFloat="":a[t]="":g?a.setProperty(t,w):typeof w!=="number"||w===0||z9.has(t)?t==="float"?a.cssFloat=w:(ga(w,t),a[t]=(""+w).trim()):a[t]=w+"px"}function Q3(a,t,w){if(t!=null&&typeof t!=="object")throw Error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.");if(t&&Object.freeze(t),a=a.style,w!=null){if(t){var g={};if(w){for(var m in w)if(w.hasOwnProperty(m)&&!t.hasOwnProperty(m))for(var b=Dd[m]||[m],v=0;v<b.length;v++)g[b[v]]=m}for(var d in t)if(t.hasOwnProperty(d)&&(!w||w[d]!==t[d]))for(m=Dd[d]||[d],b=0;b<m.length;b++)g[m[b]]=d;d={};for(var x in t)for(m=Dd[x]||[x],b=0;b<m.length;b++)d[m[b]]=x;x={};for(var f in g)if(m=g[f],(b=d[f])&&m!==b&&(v=m+","+b,!x[v])){x[v]=!0,v=console;var Y=t[m];v.error.call(v,"%s a style property during rerender (%s) when a conflicting property is set (%s) can lead to styling bugs. To avoid this, don't mix shorthand and non-shorthand properties for the same value; instead, replace the shorthand with separate values.",Y==null||typeof Y==="boolean"||Y===""?"Removing":"Updating",m,b)}}for(var Z in w)!w.hasOwnProperty(Z)||t!=null&&t.hasOwnProperty(Z)||(Z.indexOf("--")===0?a.setProperty(Z,""):Z==="float"?a.cssFloat="":a[Z]="");for(var B in t)f=t[B],t.hasOwnProperty(B)&&w[B]!==f&&I3(a,B,f)}else for(g in t)t.hasOwnProperty(g)&&I3(a,g,t[g])}function lm(a){if(a.indexOf("-")===-1)return!1;switch(a){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}}function U3(a){return eN.get(a)||a}function w8(a,t){if($w.call(I1,t)&&I1[t])return!0;if(t7.test(t)){if(a="aria-"+t.slice(4).toLowerCase(),a=l9.hasOwnProperty(a)?a:null,a==null)return console.error("Invalid ARIA attribute `%s`. ARIA attributes follow the pattern aria-* and must be lowercase.",t),I1[t]=!0;if(t!==a)return console.error("Invalid ARIA attribute `%s`. Did you mean `%s`?",t,a),I1[t]=!0}if(a7.test(t)){if(a=t.toLowerCase(),a=l9.hasOwnProperty(a)?a:null,a==null)return I1[t]=!0,!1;t!==a&&(console.error("Unknown ARIA attribute `%s`. Did you mean `%s`?",t,a),I1[t]=!0)}return!0}function g8(a,t){var w=[],g;for(g in t)w8(a,g)||w.push(g);t=w.map(function(m){return"`"+m+"`"}).join(", "),w.length===1?console.error("Invalid aria prop %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props",t,a):1<w.length&&console.error("Invalid aria props %s on <%s> tag. For details, see https://react.dev/link/invalid-aria-props",t,a)}function m8(a,t,w,g){if($w.call(Oa,t)&&Oa[t])return!0;var m=t.toLowerCase();if(m==="onfocusin"||m==="onfocusout")return console.error("React uses onFocus and onBlur instead of onFocusIn and onFocusOut. All React events are normalized to bubble, so onFocusIn and onFocusOut are not needed/supported by React."),Oa[t]=!0;if(typeof w==="function"&&(a==="form"&&t==="action"||a==="input"&&t==="formAction"||a==="button"&&t==="formAction"))return!0;if(g!=null){if(a=g.possibleRegistrationNames,g.registrationNameDependencies.hasOwnProperty(t))return!0;if(g=a.hasOwnProperty(m)?a[m]:null,g!=null)return console.error("Invalid event handler property `%s`. Did you mean `%s`?",t,g),Oa[t]=!0;if(B9.test(t))return console.error("Unknown event handler property `%s`. It will be ignored.",t),Oa[t]=!0}else if(B9.test(t))return w7.test(t)&&console.error("Invalid event handler property `%s`. React events use the camelCase naming convention, for example `onClick`.",t),Oa[t]=!0;if(g7.test(t)||m7.test(t))return!0;if(m==="innerhtml")return console.error("Directly setting property `innerHTML` is not permitted. For more information, lookup documentation on `dangerouslySetInnerHTML`."),Oa[t]=!0;if(m==="aria")return console.error("The `aria` attribute is reserved for future use in React. Pass individual `aria-` attributes instead."),Oa[t]=!0;if(m==="is"&&w!==null&&w!==void 0&&typeof w!=="string")return console.error("Received a `%s` for a string attribute `is`. If this is expected, cast the value to a string.",typeof w),Oa[t]=!0;if(typeof w==="number"&&isNaN(w))return console.error("Received NaN for the `%s` attribute. If this is expected, cast the value to a string.",t),Oa[t]=!0;if(c2.hasOwnProperty(m)){if(m=c2[m],m!==t)return console.error("Invalid DOM property `%s`. Did you mean `%s`?",t,m),Oa[t]=!0}else if(t!==m)return console.error("React does not recognize the `%s` prop on a DOM element. If you intentionally want it to appear in the DOM as a custom attribute, spell it as lowercase `%s` instead. If you accidentally passed it from a parent component, remove it from the DOM element.",t,m),Oa[t]=!0;switch(t){case"dangerouslySetInnerHTML":case"children":case"style":case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":return!0;case"innerText":case"textContent":return!0}switch(typeof w){case"boolean":switch(t){case"autoFocus":case"checked":case"multiple":case"muted":case"selected":case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":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":case"capture":case"download":case"inert":return!0;default:if(m=t.toLowerCase().slice(0,5),m==="data-"||m==="aria-")return!0;return w?console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.',w,t,t,w,t):console.error('Received `%s` for a non-boolean attribute `%s`.\n\nIf you want to write it to the DOM, pass a string instead: %s="%s" or %s={value.toString()}.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.',w,t,t,w,t,t,t),Oa[t]=!0}case"function":case"symbol":return Oa[t]=!0,!1;case"string":if(w==="false"||w==="true"){switch(t){case"checked":case"selected":case"multiple":case"muted":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":case"inert":break;default:return!0}console.error("Received the string `%s` for the boolean attribute `%s`. %s Did you mean %s={%s}?",w,t,w==="false"?"The browser will interpret it as a truthy value.":'Although this works, it will not work as expected if you pass the string "false".',t,w),Oa[t]=!0}}return!0}function b8(a,t,w){var g=[],m;for(m in t)m8(a,m,t[m],w)||g.push(m);t=g.map(function(b){return"`"+b+"`"}).join(", "),g.length===1?console.error("Invalid value for prop %s on <%s> tag. Either remove it from the element, or pass a string or number value to keep it in the DOM. For details, see https://react.dev/link/attribute-behavior ",t,a):1<g.length&&console.error("Invalid values for props %s on <%s> tag. Either remove them from the element, or pass a string or number value to keep them in the DOM. For details, see https://react.dev/link/attribute-behavior ",t,a)}function $m(a){return b7.test(""+a)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":a}function hv(a){return a=a.target||a.srcElement||window,a.correspondingUseElement&&(a=a.correspondingUseElement),a.nodeType===3?a.parentNode:a}function q3(a){var t=r(a);if(t&&(a=t.stateNode)){var w=a[Sa]||null;a:switch(a=t.stateNode,t.type){case"input":if(sv(a,w.value,w.defaultValue,w.defaultValue,w.checked,w.defaultChecked,w.type,w.name),t=w.name,w.type==="radio"&&t!=null){for(w=a;w.parentNode;)w=w.parentNode;i(t,"name"),w=w.querySelectorAll('input[name="'+ft(""+t)+'"][type="radio"]');for(t=0;t<w.length;t++){var g=w[t];if(g!==a&&g.form===a.form){var m=g[Sa]||null;if(!m)throw Error("ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.");sv(g,m.value,m.defaultValue,m.defaultValue,m.checked,m.defaultChecked,m.type,m.name)}}for(t=0;t<w.length;t++)g=w[t],g.form===a.form&&x3(g)}break a;case"textarea":B3(a,w.value,w.defaultValue);break a;case"select":t=w.value,t!=null&&g1(a,!!w.multiple,t,!1)}}}function A3(a,t,w){if(ed)return a(t,w);ed=!0;try{var g=a(t);return g}finally{if(ed=!1,Q1!==null||U1!==null){if(z1(),Q1&&(t=Q1,a=U1,U1=Q1=null,q3(t),a))for(t=0;t<a.length;t++)q3(a[t])}}}function Bm(a,t){var w=a.stateNode;if(w===null)return null;var g=w[Sa]||null;if(g===null)return null;w=g[t];a:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(g=!g.disabled)||(a=a.type,g=!(a==="button"||a==="input"||a==="select"||a==="textarea")),a=!g;break a;default:a=!1}if(a)return null;if(w&&typeof w!=="function")throw Error("Expected `"+t+"` listener to be a function, instead got a value of `"+typeof w+"` type.");return w}function L3(){if(S2)return S2;var a,t=tr,w=t.length,g,m="value"in Sw?Sw.value:Sw.textContent,b=m.length;for(a=0;a<w&&t[a]===m[a];a++);var v=w-a;for(g=1;g<=v&&t[w-g]===m[b-g];g++);return S2=m.slice(a,1<g?1-g:void 0)}function Tb(a){var t=a.keyCode;return"charCode"in a?(a=a.charCode,a===0&&t===13&&(a=13)):a=t,a===10&&(a=13),32<=a||a===13?a:0}function kb(){return!0}function W3(){return!1}function Ta(a){function t(w,g,m,b,v){this._reactName=w,this._targetInst=m,this.type=g,this.nativeEvent=b,this.target=v,this.currentTarget=null;for(var d in a)a.hasOwnProperty(d)&&(w=a[d],this[d]=w?w(b):b[d]);return this.isDefaultPrevented=(b.defaultPrevented!=null?b.defaultPrevented:b.returnValue===!1)?kb:W3,this.isPropagationStopped=W3,this}return B0(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var w=this.nativeEvent;w&&(w.preventDefault?w.preventDefault():typeof w.returnValue!=="unknown"&&(w.returnValue=!1),this.isDefaultPrevented=kb)},stopPropagation:function(){var w=this.nativeEvent;w&&(w.stopPropagation?w.stopPropagation():typeof w.cancelBubble!=="unknown"&&(w.cancelBubble=!0),this.isPropagationStopped=kb)},persist:function(){},isPersistent:kb}),t}function v8(a){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(a):(a=X7[a])?!!t[a]:!1}function cv(){return v8}function K3(a,t){switch(a){case"keyup":return L7.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==G9;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function O3(a){return a=a.detail,typeof a==="object"&&"data"in a?a.data:null}function d8(a,t){switch(a){case"compositionend":return O3(t);case"keypress":if(t.which!==H9)return null;return J9=!0,M9;case"textInput":return a=t.data,a===M9&&J9?null:a;default:return null}}function r8(a,t){if(q1)return a==="compositionend"||!br&&K3(a,t)?(a=L3(),S2=tr=Sw=null,q1=!1,a):null;switch(a){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Z9&&t.locale!=="ko"?null:t.data;default:return null}}function P3(a){var t=a&&a.nodeName&&a.nodeName.toLowerCase();return t==="input"?!!K7[a.type]:t==="textarea"?!0:!1}function x8(a){if(!Dt)return!1;a="on"+a;var t=a in document;return t||(t=document.createElement("div"),t.setAttribute(a,"return;"),t=typeof t[a]==="function"),t}function _3(a,t,w,g){Q1?U1?U1.push(g):U1=[g]:Q1=g,t=Q2(t,"onChange"),0<t.length&&(w=new i2("onChange","change",null,w,g),a.push({event:w,listeners:t}))}function f8(a){w6(a,0)}function hb(a){var t=l(a);if(x3(t))return a}function s3(a,t){if(a==="change")return t}function F3(){ab&&(ab.detachEvent("onpropertychange",y3),tb=ab=null)}function y3(a){if(a.propertyName==="value"&&hb(tb)){var t=[];_3(t,tb,a,hv(a)),A3(f8,t)}}function o8(a,t,w){a==="focusin"?(F3(),ab=t,tb=w,ab.attachEvent("onpropertychange",y3)):a==="focusout"&&F3()}function N8(a){if(a==="selectionchange"||a==="keyup"||a==="keydown")return hb(tb)}function z8(a,t){if(a==="click")return hb(t)}function l8(a,t){if(a==="input"||a==="change")return hb(t)}function $8(a,t){return a===t&&(a!==0||1/a===1/t)||a!==a&&t!==t}function Ym(a,t){if(Pa(a,t))return!0;if(typeof a!=="object"||a===null||typeof t!=="object"||t===null)return!1;var w=Object.keys(a),g=Object.keys(t);if(w.length!==g.length)return!1;for(g=0;g<w.length;g++){var m=w[g];if(!$w.call(t,m)||!Pa(a[m],t[m]))return!1}return!0}function C3(a){for(;a&&a.firstChild;)a=a.firstChild;return a}function u3(a,t){var w=C3(a);a=0;for(var g;w;){if(w.nodeType===3){if(g=a+w.textContent.length,a<=t&&g>=t)return{node:w,offset:t-a};a=g}a:{for(;w;){if(w.nextSibling){w=w.nextSibling;break a}w=w.parentNode}w=void 0}w=C3(w)}}function T3(a,t){return a&&t?a===t?!0:a&&a.nodeType===3?!1:t&&t.nodeType===3?T3(a,t.parentNode):("contains"in a)?a.contains(t):a.compareDocumentPosition?!!(a.compareDocumentPosition(t)&16):!1:!1}function k3(a){a=a!=null&&a.ownerDocument!=null&&a.ownerDocument.defaultView!=null?a.ownerDocument.defaultView:window;for(var t=yb(a.document);t instanceof a.HTMLIFrameElement;){try{var w=typeof t.contentWindow.location.href==="string"}catch(g){w=!1}if(w)a=t.contentWindow;else break;t=yb(a.document)}return t}function Sv(a){var t=a&&a.nodeName&&a.nodeName.toLowerCase();return t&&(t==="input"&&(a.type==="text"||a.type==="search"||a.type==="tel"||a.type==="url"||a.type==="password")||t==="textarea"||a.contentEditable==="true")}function h3(a,t,w){var g=w.window===w?w.document:w.nodeType===9?w:w.ownerDocument;dr||A1==null||A1!==yb(g)||(g=A1,("selectionStart"in g)&&Sv(g)?g={start:g.selectionStart,end:g.selectionEnd}:(g=(g.ownerDocument&&g.ownerDocument.defaultView||window).getSelection(),g={anchorNode:g.anchorNode,anchorOffset:g.anchorOffset,focusNode:g.focusNode,focusOffset:g.focusOffset}),wb&&Ym(wb,g)||(wb=g,g=Q2(vr,"onSelect"),0<g.length&&(t=new i2("onSelect","select",null,t,w),a.push({event:t,listeners:g}),t.target=A1)))}function Ng(a,t){var w={};return w[a.toLowerCase()]=t.toLowerCase(),w["Webkit"+a]="webkit"+t,w["Moz"+a]="moz"+t,w}function zg(a){if(rr[a])return rr[a];if(!L1[a])return a;var t=L1[a],w;for(w in t)if(t.hasOwnProperty(w)&&w in Q9)return rr[a]=t[w];return a}function qt(a,t){W9.set(a,t),u(t,[a])}function Da(a,t){if(typeof a==="object"&&a!==null){var w=fr.get(a);if(w!==void 0)return w;return t={value:a,source:t,stack:v3(t)},fr.set(a,t),t}return{value:a,source:t,stack:v3(t)}}function cb(){for(var a=W1,t=or=W1=0;t<a;){var w=zt[t];zt[t++]=null;var g=zt[t];zt[t++]=null;var m=zt[t];zt[t++]=null;var b=zt[t];if(zt[t++]=null,g!==null&&m!==null){var v=g.pending;v===null?m.next=m:(m.next=v.next,v.next=m),g.pending=m}b!==0&&c3(w,m,b)}}function Sb(a,t,w,g){zt[W1++]=a,zt[W1++]=t,zt[W1++]=w,zt[W1++]=g,or|=g,a.lanes|=g,a=a.alternate,a!==null&&(a.lanes|=g)}function iv(a,t,w,g){return Sb(a,t,w,g),ib(a)}function ka(a,t){return Sb(a,null,null,t),ib(a)}function c3(a,t,w){a.lanes|=w;var g=a.alternate;g!==null&&(g.lanes|=w);for(var m=!1,b=a.return;b!==null;)b.childLanes|=w,g=b.alternate,g!==null&&(g.childLanes|=w),b.tag===22&&(a=b.stateNode,a===null||a._visibility&n2||(m=!0)),a=b,b=b.return;return a.tag===3?(b=a.stateNode,m&&t!==null&&(m=31-Ka(w),a=b.hiddenUpdates,g=a[m],g===null?a[m]=[t]:g.push(t),t.lane=w|536870912),b):null}function ib(a){if(Jb>tz)throw Tg=Jb=0,Ib=Tr=null,Error("Maximum update depth exceeded. This can happen when a component repeatedly calls setState inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to prevent infinite loops.");Tg>wz&&(Tg=0,Ib=null,console.error("Maximum update depth exceeded. This can happen when a component calls setState inside useEffect, but useEffect either doesn't have a dependency array, or one of the dependencies changes on every render.")),a.alternate===null&&(a.flags&4098)!==0&&Ex(a);for(var t=a,w=t.return;w!==null;)t.alternate===null&&(t.flags&4098)!==0&&Ex(a),t=w,w=t.return;return t.tag===3?t.stateNode:null}function lg(a){if(lt===null)return a;var t=lt(a);return t===void 0?a:t.current}function jv(a){if(lt===null)return a;var t=lt(a);return t===void 0?a!==null&&a!==void 0&&typeof a.render==="function"&&(t=lg(a.render),a.render!==t)?(t={$$typeof:Sm,render:t},a.displayName!==void 0&&(t.displayName=a.displayName),t):a:t.current}function S3(a,t){if(lt===null)return!1;var w=a.elementType;t=t.type;var g=!1,m=typeof t==="object"&&t!==null?t.$$typeof:null;switch(a.tag){case 1:typeof t==="function"&&(g=!0);break;case 0:typeof t==="function"?g=!0:m===tt&&(g=!0);break;case 11:m===Sm?g=!0:m===tt&&(g=!0);break;case 14:case 15:m===F2?g=!0:m===tt&&(g=!0);break;default:return!1}return g&&(a=lt(w),a!==void 0&&a===lt(t))?!0:!1}function i3(a){lt!==null&&typeof WeakSet==="function"&&(K1===null&&(K1=new WeakSet),K1.add(a))}function nv(a,t,w){var{alternate:g,child:m,sibling:b,tag:v,type:d}=a,x=null;switch(v){case 0:case 15:case 1:x=d;break;case 11:x=d.render}if(lt===null)throw Error("Expected resolveFamily to be set during hot reload.");var f=!1;if(d=!1,x!==null&&(x=lt(x),x!==void 0&&(w.has(x)?d=!0:t.has(x)&&(v===1?d=!0:f=!0))),K1!==null&&(K1.has(a)||g!==null&&K1.has(g))&&(d=!0),d&&(a._debugNeedsRemount=!0),d||f)g=ka(a,2),g!==null&&ba(g,a,2);m===null||d||nv(m,t,w),b!==null&&nv(b,t,w)}function B8(a,t,w,g){this.tag=a,this.key=w,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=g,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null,this.actualDuration=-0,this.actualStartTime=-1.1,this.treeBaseDuration=this.selfBaseDuration=-0,this._debugTask=this._debugStack=this._debugOwner=this._debugInfo=null,this._debugNeedsRemount=!1,this._debugHookTypes=null,O9||typeof Object.preventExtensions!=="function"||Object.preventExtensions(this)}function Ev(a){return a=a.prototype,!(!a||!a.isReactComponent)}function bw(a,t){var w=a.alternate;switch(w===null?(w=L(a.tag,t,a.key,a.mode),w.elementType=a.elementType,w.type=a.type,w.stateNode=a.stateNode,w._debugOwner=a._debugOwner,w._debugStack=a._debugStack,w._debugTask=a._debugTask,w._debugHookTypes=a._debugHookTypes,w.alternate=a,a.alternate=w):(w.pendingProps=t,w.type=a.type,w.flags=0,w.subtreeFlags=0,w.deletions=null,w.actualDuration=-0,w.actualStartTime=-1.1),w.flags=a.flags&65011712,w.childLanes=a.childLanes,w.lanes=a.lanes,w.child=a.child,w.memoizedProps=a.memoizedProps,w.memoizedState=a.memoizedState,w.updateQueue=a.updateQueue,t=a.dependencies,w.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext,_debugThenableState:t._debugThenableState},w.sibling=a.sibling,w.index=a.index,w.ref=a.ref,w.refCleanup=a.refCleanup,w.selfBaseDuration=a.selfBaseDuration,w.treeBaseDuration=a.treeBaseDuration,w._debugInfo=a._debugInfo,w._debugNeedsRemount=a._debugNeedsRemount,w.tag){case 0:case 15:w.type=lg(a.type);break;case 1:w.type=lg(a.type);break;case 11:w.type=jv(a.type)}return w}function j3(a,t){a.flags&=65011714;var w=a.alternate;return w===null?(a.childLanes=0,a.lanes=t,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null,a.selfBaseDuration=0,a.treeBaseDuration=0):(a.childLanes=w.childLanes,a.lanes=w.lanes,a.child=w.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=w.memoizedProps,a.memoizedState=w.memoizedState,a.updateQueue=w.updateQueue,a.type=w.type,t=w.dependencies,a.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext,_debugThenableState:t._debugThenableState},a.selfBaseDuration=w.selfBaseDuration,a.treeBaseDuration=w.treeBaseDuration),a}function Vv(a,t,w,g,m,b){var v=0,d=a;if(typeof a==="function")Ev(a)&&(v=1),d=lg(d);else if(typeof a==="string")v=c(),v=BN(a,w,v)?26:a==="html"||a==="head"||a==="body"?27:5;else a:switch(a){case Cd:return t=L(31,w,t,m),t.elementType=Cd,t.lanes=b,t;case G1:return $g(w.children,m,b,t);case s2:v=8,m|=La,m|=Kt;break;case _d:return a=w,g=m,typeof a.id!=="string"&&console.error('Profiler must specify an "id" of type `string` as a prop. Received the type `%s` instead.',typeof a.id),t=L(12,a,t,g|Ma),t.elementType=_d,t.lanes=b,t.stateNode={effectDuration:0,passiveEffectDuration:0},t;case Fd:return t=L(13,w,t,m),t.elementType=Fd,t.lanes=b,t;case yd:return t=L(19,w,t,m),t.elementType=yd,t.lanes=b,t;default:if(typeof a==="object"&&a!==null)switch(a.$$typeof){case AN:case it:v=10;break a;case sd:v=9;break a;case Sm:v=11,d=jv(d);break a;case F2:v=14;break a;case tt:v=16,d=null;break a}if(d="",a===void 0||typeof a==="object"&&a!==null&&Object.keys(a).length===0)d+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";a===null?w="null":Ha(a)?w="array":a!==void 0&&a.$$typeof===uw?(w="<"+(I0(a.type)||"Unknown")+" />",d=" Did you accidentally export a JSX literal instead of a component?"):w=typeof a,(v=g?Ua(g):null)&&(d+=`
|
|
70
|
-
|
|
71
|
-
Check the render method of \``+v+"`."),v=29,w=Error("Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: "+(w+"."+d)),d=null}return t=L(v,w,t,m),t.elementType=a,t.type=d,t.lanes=b,t._debugOwner=g,t}function jb(a,t,w){return t=Vv(a.type,a.key,a.props,a._owner,t,w),t._debugOwner=a._owner,t._debugStack=a._debugStack,t._debugTask=a._debugTask,t}function $g(a,t,w,g){return a=L(7,a,g,t),a.lanes=w,a}function Dv(a,t,w){return a=L(6,a,null,t),a.lanes=w,a}function pv(a,t,w){return t=L(4,a.children!==null?a.children:[],a.key,t),t.lanes=w,t.stateNode={containerInfo:a.containerInfo,pendingChildren:null,implementation:a.implementation},t}function Bg(a,t){Yg(),O1[P1++]=V2,O1[P1++]=E2,E2=a,V2=t}function n3(a,t,w){Yg(),$t[Bt++]=Yw,$t[Bt++]=Xw,$t[Bt++]=Ag,Ag=a;var g=Yw;a=Xw;var m=32-Ka(g)-1;g&=~(1<<m),w+=1;var b=32-Ka(t)+m;if(30<b){var v=m-m%5;b=(g&(1<<v)-1).toString(32),g>>=v,m-=v,Yw=1<<32-Ka(t)+m|w<<m|g,Xw=b+a}else Yw=1<<b|w<<m|g,Xw=a}function ev(a){Yg(),a.return!==null&&(Bg(a,1),n3(a,1,0))}function a5(a){for(;a===E2;)E2=O1[--P1],O1[P1]=null,V2=O1[--P1],O1[P1]=null;for(;a===Ag;)Ag=$t[--Bt],$t[Bt]=null,Xw=$t[--Bt],$t[Bt]=null,Yw=$t[--Bt],$t[Bt]=null}function Yg(){q0||console.error("Expected to be hydrating. This is a bug in React. Please file an issue.")}function Xg(a,t){if(a.return===null){if(Yt===null)Yt={fiber:a,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:t};else{if(Yt.fiber!==a)throw Error("Saw multiple hydration diff roots in a pass. This is a bug in React.");Yt.distanceFromLeaf>t&&(Yt.distanceFromLeaf=t)}return Yt}var w=Xg(a.return,t+1).children;if(0<w.length&&w[w.length-1].fiber===a)return w=w[w.length-1],w.distanceFromLeaf>t&&(w.distanceFromLeaf=t),w;return t={fiber:a,children:[],serverProps:void 0,serverTail:[],distanceFromLeaf:t},w.push(t),t}function t5(a,t){Rw||(a=Xg(a,0),a.serverProps=null,t!==null&&(t=B6(t),a.serverTail.push(t)))}function Rg(a){var t="",w=Yt;throw w!==null&&(Yt=null,t=Tv(w)),Gm(Da(Error(`Hydration failed because the server rendered HTML didn't match the client. As a result this tree will be regenerated on the client. This can happen if a SSR-ed Client Component used:
|
|
72
|
-
|
|
73
|
-
- A server/client branch \`if (typeof window !== 'undefined')\`.
|
|
74
|
-
- Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
|
|
75
|
-
- Date formatting in a user's locale which doesn't match the server.
|
|
76
|
-
- External changing data without sending a snapshot of it along with the HTML.
|
|
77
|
-
- Invalid HTML tag nesting.
|
|
78
|
-
|
|
79
|
-
It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
|
|
80
|
-
|
|
81
|
-
https://react.dev/link/hydration-mismatch`+t),a)),Nr}function E3(a){var{stateNode:t,type:w,memoizedProps:g}=a;switch(t[Aa]=a,t[Sa]=g,Xd(w,g),w){case"dialog":M0("cancel",t),M0("close",t);break;case"iframe":case"object":case"embed":M0("load",t);break;case"video":case"audio":for(w=0;w<Qb.length;w++)M0(Qb[w],t);break;case"source":M0("error",t);break;case"img":case"image":case"link":M0("error",t),M0("load",t);break;case"details":M0("toggle",t);break;case"input":t0("input",g),M0("invalid",t),f3(t,g),o3(t,g.value,g.defaultValue,g.checked,g.defaultChecked,g.type,g.name,!0),Fb(t);break;case"option":N3(t,g);break;case"select":t0("select",g),M0("invalid",t),l3(t,g);break;case"textarea":t0("textarea",g),M0("invalid",t),$3(t,g),Y3(t,g.value,g.defaultValue,g.children),Fb(t)}w=g.children,typeof w!=="string"&&typeof w!=="number"&&typeof w!=="bigint"||t.textContent===""+w||g.suppressHydrationWarning===!0||v6(t.textContent,w)?(g.popover!=null&&(M0("beforetoggle",t),M0("toggle",t)),g.onScroll!=null&&M0("scroll",t),g.onScrollEnd!=null&&M0("scrollend",t),g.onClick!=null&&(t.onclick=U2),t=!0):t=!1,t||Rg(a)}function V3(a){for(_a=a.return;_a;)switch(_a.tag){case 5:case 13:pt=!1;return;case 27:case 3:pt=!0;return;default:_a=_a.return}}function Xm(a){if(a!==_a)return!1;if(!q0)return V3(a),q0=!0,!1;var t=a.tag,w;if(w=t!==3&&t!==27){if(w=t===5)w=a.type,w=!(w!=="form"&&w!=="button")||Md(a.type,a.memoizedProps);w=!w}if(w&&ta){for(w=ta;w;){var g=Xg(a,0),m=B6(w);g.serverTail.push(m),w=m.type==="Suspense"?X6(w):Nt(w.nextSibling)}Rg(a)}if(V3(a),t===13){if(a=a.memoizedState,a=a!==null?a.dehydrated:null,!a)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");ta=X6(a)}else t===27?(t=ta,Cw(a.type)?(a=er,er=null,ta=a):ta=t):ta=_a?Nt(a.stateNode.nextSibling):null;return!0}function Rm(){ta=_a=null,Rw=q0=!1}function D3(){var a=Lg;return a!==null&&(ya===null?ya=a:ya.push.apply(ya,a),Lg=null),a}function Gm(a){Lg===null?Lg=[a]:Lg.push(a)}function p3(){var a=Yt;if(a!==null){Yt=null;for(var t=Tv(a);0<a.children.length;)a=a.children[0];k(a.fiber,function(){console.error(`A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used:
|
|
82
|
-
|
|
83
|
-
- A server/client branch \`if (typeof window !== 'undefined')\`.
|
|
84
|
-
- Variable input such as \`Date.now()\` or \`Math.random()\` which changes each time it's called.
|
|
85
|
-
- Date formatting in a user's locale which doesn't match the server.
|
|
86
|
-
- External changing data without sending a snapshot of it along with the HTML.
|
|
87
|
-
- Invalid HTML tag nesting.
|
|
88
|
-
|
|
89
|
-
It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
|
|
90
|
-
|
|
91
|
-
%s%s`,"https://react.dev/link/hydration-mismatch",t)})}}function nb(){_1=D2=null,s1=!1}function Ww(a,t,w){o0(zr,t._currentValue,a),t._currentValue=w,o0(lr,t._currentRenderer,a),t._currentRenderer!==void 0&&t._currentRenderer!==null&&t._currentRenderer!==F9&&console.error("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."),t._currentRenderer=F9}function vw(a,t){a._currentValue=zr.current;var w=lr.current;X0(lr,t),a._currentRenderer=w,X0(zr,t)}function w5(a,t,w){for(;a!==null;){var g=a.alternate;if((a.childLanes&t)!==t?(a.childLanes|=t,g!==null&&(g.childLanes|=t)):g!==null&&(g.childLanes&t)!==t&&(g.childLanes|=t),a===w)break;a=a.return}a!==w&&console.error("Expected to find the propagation root when scheduling context work. This error is likely caused by a bug in React. Please file an issue.")}function g5(a,t,w,g){var m=a.child;m!==null&&(m.return=a);for(;m!==null;){var b=m.dependencies;if(b!==null){var v=m.child;b=b.firstContext;a:for(;b!==null;){var d=b;b=m;for(var x=0;x<t.length;x++)if(d.context===t[x]){b.lanes|=w,d=b.alternate,d!==null&&(d.lanes|=w),w5(b.return,w,a),g||(v=null);break a}b=d.next}}else if(m.tag===18){if(v=m.return,v===null)throw Error("We just came from a parent so we must have had a parent. This is a bug in React.");v.lanes|=w,b=v.alternate,b!==null&&(b.lanes|=w),w5(v,w,a),v=null}else v=m.child;if(v!==null)v.return=m;else for(v=m;v!==null;){if(v===a){v=null;break}if(m=v.sibling,m!==null){m.return=v.return,v=m;break}v=v.return}m=v}}function Zm(a,t,w,g){a=null;for(var m=t,b=!1;m!==null;){if(!b){if((m.flags&524288)!==0)b=!0;else if((m.flags&262144)!==0)break}if(m.tag===10){var v=m.alternate;if(v===null)throw Error("Should have a current fiber. This is a bug in React.");if(v=v.memoizedProps,v!==null){var d=m.type;Pa(m.pendingProps.value,v.value)||(a!==null?a.push(d):a=[d])}}else if(m===y2.current){if(v=m.alternate,v===null)throw Error("Should have a current fiber. This is a bug in React.");v.memoizedState.memoizedState!==m.memoizedState.memoizedState&&(a!==null?a.push(Lb):a=[Lb])}m=m.return}a!==null&&g5(t,a,w,g),t.flags|=262144}function Eb(a){for(a=a.firstContext;a!==null;){if(!Pa(a.context._currentValue,a.memoizedValue))return!0;a=a.next}return!1}function Gg(a){D2=a,_1=null,a=a.dependencies,a!==null&&(a.firstContext=null)}function D0(a){return s1&&console.error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."),e3(D2,a)}function Vb(a,t){return D2===null&&Gg(a),e3(a,t)}function e3(a,t){var w=t._currentValue;if(t={context:t,memoizedValue:w,next:null},_1===null){if(a===null)throw Error("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");_1=t,a.dependencies={lanes:0,firstContext:t,_debugThenableState:null},a.flags|=524288}else _1=_1.next=t;return w}function m5(){return{controller:new u7,data:new Map,refCount:0}}function Zg(a){a.controller.signal.aborted&&console.warn("A cache instance was retained after it was already freed. This likely indicates a bug in React."),a.refCount++}function Hm(a){a.refCount--,0>a.refCount&&console.warn("A cache instance was released after it was already freed. This likely indicates a bug in React."),a.refCount===0&&T7(k7,function(){a.controller.abort()})}function dw(){var a=Wg;return Wg=0,a}function Db(a){var t=Wg;return Wg=a,t}function Mm(a){var t=Wg;return Wg+=a,t}function b5(a){ia=F1(),0>a.actualStartTime&&(a.actualStartTime=ia)}function v5(a){if(0<=ia){var t=F1()-ia;a.actualDuration+=t,a.selfBaseDuration=t,ia=-1}}function a4(a){if(0<=ia){var t=F1()-ia;a.actualDuration+=t,ia=-1}}function Ct(){if(0<=ia){var a=F1()-ia;ia=-1,Wg+=a}}function ut(){ia=F1()}function pb(a){for(var t=a.child;t;)a.actualDuration+=t.actualDuration,t=t.sibling}function Y8(a,t){if(gb===null){var w=gb=[];$r=0,Kg=ld(),y1={status:"pending",value:void 0,then:function(g){w.push(g)}}}return $r++,t.then(t4,t4),t}function t4(){if(--$r===0&&gb!==null){y1!==null&&(y1.status="fulfilled");var a=gb;gb=null,Kg=0,y1=null;for(var t=0;t<a.length;t++)(0,a[t])()}}function X8(a,t){var w=[],g={status:"pending",value:null,reason:null,then:function(m){w.push(m)}};return a.then(function(){g.status="fulfilled",g.value=t;for(var m=0;m<w.length;m++)(0,w[m])(t)},function(m){g.status="rejected",g.reason=m;for(m=0;m<w.length;m++)(0,w[m])(void 0)}),g}function d5(){var a=Og.current;return a!==null?a:k0.pooledCache}function eb(a,t){t===null?o0(Og,Og.current,a):o0(Og,t.pool,a)}function w4(){var a=d5();return a===null?null:{parent:Na._currentValue,pool:a}}function g4(){return{didWarnAboutUncachedPromise:!1,thenables:[]}}function m4(a){return a=a.status,a==="fulfilled"||a==="rejected"}function a2(){}function b4(a,t,w){G.actQueue!==null&&(G.didUsePromise=!0);var g=a.thenables;switch(w=g[w],w===void 0?g.push(t):w!==t&&(a.didWarnAboutUncachedPromise||(a.didWarnAboutUncachedPromise=!0,console.error("A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework.")),t.then(a2,a2),t=w),t.status){case"fulfilled":return t.value;case"rejected":throw a=t.reason,d4(a),a;default:if(typeof t.status==="string")t.then(a2,a2);else{if(a=k0,a!==null&&100<a.shellSuspendCounter)throw Error("An unknown Component is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.");a=t,a.status="pending",a.then(function(m){if(t.status==="pending"){var b=t;b.status="fulfilled",b.value=m}},function(m){if(t.status==="pending"){var b=t;b.status="rejected",b.reason=m}})}switch(t.status){case"fulfilled":return t.value;case"rejected":throw a=t.reason,d4(a),a}throw ob=t,gv=!0,fb}}function v4(){if(ob===null)throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue.");var a=ob;return ob=null,gv=!1,a}function d4(a){if(a===fb||a===wv)throw Error("Hooks are not supported inside an async component. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.")}function r5(a){a.updateQueue={baseState:a.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function x5(a,t){a=a.updateQueue,t.updateQueue===a&&(t.updateQueue={baseState:a.baseState,firstBaseUpdate:a.firstBaseUpdate,lastBaseUpdate:a.lastBaseUpdate,shared:a.shared,callbacks:null})}function Kw(a){return{lane:a,tag:k9,payload:null,callback:null,next:null}}function Ow(a,t,w){var g=a.updateQueue;if(g===null)return null;if(g=g.shared,Xr===g&&!S9){var m=O(a);console.error(`An update (setState, replaceState, or forceUpdate) was scheduled from inside an update function. Update functions should be pure, with zero side-effects. Consider using componentDidUpdate or a callback.
|
|
92
|
-
|
|
93
|
-
Please update the following component: %s`,m),S9=!0}if((s0&Fa)!==mt)return m=g.pending,m===null?t.next=t:(t.next=m.next,m.next=t),g.pending=t,t=ib(a),c3(a,null,w),t;return Sb(a,g,t,w),ib(a)}function Jm(a,t,w){if(t=t.updateQueue,t!==null&&(t=t.shared,(w&4194048)!==0)){var g=t.lanes;g&=a.pendingLanes,w|=g,t.lanes=w,rm(a,w)}}function t2(a,t){var{updateQueue:w,alternate:g}=a;if(g!==null&&(g=g.updateQueue,w===g)){var m=null,b=null;if(w=w.firstBaseUpdate,w!==null){do{var v={lane:w.lane,tag:w.tag,payload:w.payload,callback:null,next:null};b===null?m=b=v:b=b.next=v,w=w.next}while(w!==null);b===null?m=b=t:b=b.next=t}else m=b=t;w={baseState:g.baseState,firstBaseUpdate:m,lastBaseUpdate:b,shared:g.shared,callbacks:g.callbacks},a.updateQueue=w;return}a=w.lastBaseUpdate,a===null?w.firstBaseUpdate=t:a.next=t,w.lastBaseUpdate=t}function Im(){if(Rr){var a=y1;if(a!==null)throw a}}function Qm(a,t,w,g){Rr=!1;var m=a.updateQueue;jw=!1,Xr=m.shared;var{firstBaseUpdate:b,lastBaseUpdate:v}=m,d=m.shared.pending;if(d!==null){m.shared.pending=null;var x=d,f=x.next;x.next=null,v===null?b=f:v.next=f,v=x;var Y=a.alternate;Y!==null&&(Y=Y.updateQueue,d=Y.lastBaseUpdate,d!==v&&(d===null?Y.firstBaseUpdate=f:d.next=f,Y.lastBaseUpdate=x))}if(b!==null){var Z=m.baseState;v=0,Y=f=x=null,d=b;do{var B=d.lane&-536870913,H=B!==d.lane;if(H?(Z0&B)===B:(g&B)===B){B!==0&&B===Kg&&(Rr=!0),Y!==null&&(Y=Y.next={lane:0,tag:d.tag,payload:d.payload,callback:null,next:null});a:{B=a;var F=d,D=t,h0=w;switch(F.tag){case h9:if(F=F.payload,typeof F==="function"){s1=!0;var J0=F.call(h0,Z,D);if(B.mode&La){K0(!0);try{F.call(h0,Z,D)}finally{K0(!1)}}s1=!1,Z=J0;break a}Z=F;break a;case Yr:B.flags=B.flags&-65537|128;case k9:if(J0=F.payload,typeof J0==="function"){if(s1=!0,F=J0.call(h0,Z,D),B.mode&La){K0(!0);try{J0.call(h0,Z,D)}finally{K0(!1)}}s1=!1}else F=J0;if(F===null||F===void 0)break a;Z=B0({},Z,F);break a;case c9:jw=!0}}B=d.callback,B!==null&&(a.flags|=64,H&&(a.flags|=8192),H=m.callbacks,H===null?m.callbacks=[B]:H.push(B))}else H={lane:B,tag:d.tag,payload:d.payload,callback:d.callback,next:null},Y===null?(f=Y=H,x=Z):Y=Y.next=H,v|=B;if(d=d.next,d===null)if(d=m.shared.pending,d===null)break;else H=d,d=H.next,H.next=null,m.lastBaseUpdate=H,m.shared.pending=null}while(1);Y===null&&(x=Z),m.baseState=x,m.firstBaseUpdate=f,m.lastBaseUpdate=Y,b===null&&(m.shared.lanes=0),Dw|=v,a.lanes=v,a.memoizedState=Z}Xr=null}function r4(a,t){if(typeof a!=="function")throw Error("Invalid argument passed as callback. Expected a function. Instead received: "+a);a.call(t)}function R8(a,t){var w=a.shared.hiddenCallbacks;if(w!==null)for(a.shared.hiddenCallbacks=null,a=0;a<w.length;a++)r4(w[a],t)}function x4(a,t){var w=a.callbacks;if(w!==null)for(a.callbacks=null,a=0;a<w.length;a++)r4(w[a],t)}function f4(a,t){var w=tw;o0(mv,w,a),o0(C1,t,a),tw=w|t.baseLanes}function f5(a){o0(mv,tw,a),o0(C1,C1.current,a)}function o5(a){tw=mv.current,X0(C1,a),X0(mv,a)}function G0(){var a=R;Gt===null?Gt=[a]:Gt.push(a)}function Q(){var a=R;if(Gt!==null&&(Zw++,Gt[Zw]!==a)){var t=O(w0);if(!i9.has(t)&&(i9.add(t),Gt!==null)){for(var w="",g=0;g<=Zw;g++){var m=Gt[g],b=g===Zw?a:m;for(m=g+1+". "+m;30>m.length;)m+=" ";m+=b+`
|
|
94
|
-
`,w+=m}console.error(`React has detected a change in the order of Hooks called by %s. This will lead to bugs and errors if not fixed. For more information, read the Rules of Hooks: https://react.dev/link/rules-of-hooks
|
|
95
|
-
|
|
96
|
-
Previous render Next render
|
|
97
|
-
------------------------------------------------------
|
|
98
|
-
%s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
99
|
-
`,t,w)}}}function v1(a){a===void 0||a===null||Ha(a)||console.error("%s received a final argument that is not an array (instead, received `%s`). When specified, the final argument must be an array.",R,typeof a)}function w2(){var a=O(w0);n9.has(a)||(n9.add(a),console.error("ReactDOM.useFormState has been renamed to React.useActionState. Please update %s to use React.useActionState.",a))}function ma(){throw Error(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
|
|
100
|
-
1. You might have mismatching versions of React and the renderer (such as React DOM)
|
|
101
|
-
2. You might be breaking the Rules of Hooks
|
|
102
|
-
3. You might have more than one copy of React in the same app
|
|
103
|
-
See https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem.`)}function N5(a,t){if(zb)return!1;if(t===null)return console.error("%s received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.",R),!1;a.length!==t.length&&console.error(`The final argument passed to %s changed size between renders. The order and size of this array must remain constant.
|
|
104
|
-
|
|
105
|
-
Previous: %s
|
|
106
|
-
Incoming: %s`,R,"["+t.join(", ")+"]","["+a.join(", ")+"]");for(var w=0;w<t.length&&w<a.length;w++)if(!Pa(a[w],t[w]))return!1;return!0}function z5(a,t,w,g,m,b){if(nw=b,w0=t,Gt=a!==null?a._debugHookTypes:null,Zw=-1,zb=a!==null&&a.type!==t.type,Object.prototype.toString.call(w)==="[object AsyncFunction]"||Object.prototype.toString.call(w)==="[object AsyncGeneratorFunction]")b=O(w0),Gr.has(b)||(Gr.add(b),console.error("%s is an async Client Component. Only Server Components can be async at the moment. This error is often caused by accidentally adding `'use client'` to a module that was originally written for the server.",b===null?"An unknown Component":"<"+b+">"));t.memoizedState=null,t.updateQueue=null,t.lanes=0,G.H=a!==null&&a.memoizedState!==null?Hr:Gt!==null?E9:Zr,_g=b=(t.mode&La)!==j0;var v=Mr(w,g,m);if(_g=!1,T1&&(v=l5(t,w,g,m)),b){K0(!0);try{v=l5(t,w,g,m)}finally{K0(!1)}}return o4(a,t),v}function o4(a,t){t._debugHookTypes=Gt,t.dependencies===null?Gw!==null&&(t.dependencies={lanes:0,firstContext:null,_debugThenableState:Gw}):t.dependencies._debugThenableState=Gw,G.H=dv;var w=T0!==null&&T0.next!==null;if(nw=0,Gt=R=xa=T0=w0=null,Zw=-1,a!==null&&(a.flags&65011712)!==(t.flags&65011712)&&console.error("Internal React error: Expected static flag was missing. Please notify the React team."),bv=!1,Nb=0,Gw=null,w)throw Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement.");a===null||Ya||(a=a.dependencies,a!==null&&Eb(a)&&(Ya=!0)),gv?(gv=!1,a=!0):a=!1,a&&(t=O(t)||"Unknown",j9.has(t)||Gr.has(t)||(j9.add(t),console.error("`use` was called from inside a try/catch block. This is not allowed and can lead to unexpected behavior. To handle errors triggered by `use`, wrap your component in a error boundary.")))}function l5(a,t,w,g){w0=a;var m=0;do{if(T1&&(Gw=null),Nb=0,T1=!1,m>=c7)throw Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");if(m+=1,zb=!1,xa=T0=null,a.updateQueue!=null){var b=a.updateQueue;b.lastEffect=null,b.events=null,b.stores=null,b.memoCache!=null&&(b.memoCache.index=0)}Zw=-1,G.H=V9,b=Mr(t,w,g)}while(T1);return b}function G8(){var a=G.H,t=a.useState()[0];return t=typeof t.then==="function"?Um(t):t,a=a.useState()[0],(T0!==null?T0.memoizedState:null)!==a&&(w0.flags|=1024),t}function $5(){var a=vv!==0;return vv=0,a}function B5(a,t,w){t.updateQueue=a.updateQueue,t.flags=(t.mode&Kt)!==j0?t.flags&-402655237:t.flags&-2053,a.lanes&=~w}function Y5(a){if(bv){for(a=a.memoizedState;a!==null;){var t=a.queue;t!==null&&(t.pending=null),a=a.next}bv=!1}nw=0,Gt=xa=T0=w0=null,Zw=-1,R=null,T1=!1,Nb=vv=0,Gw=null}function ha(){var a={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return xa===null?w0.memoizedState=xa=a:xa=xa.next=a,xa}function y0(){if(T0===null){var a=w0.alternate;a=a!==null?a.memoizedState:null}else a=T0.next;var t=xa===null?w0.memoizedState:xa.next;if(t!==null)xa=t,T0=a;else{if(a===null){if(w0.alternate===null)throw Error("Update hook called on initial render. This is likely a bug in React. Please file an issue.");throw Error("Rendered more hooks than during the previous render.")}T0=a,a={memoizedState:T0.memoizedState,baseState:T0.baseState,baseQueue:T0.baseQueue,queue:T0.queue,next:null},xa===null?w0.memoizedState=xa=a:xa=xa.next=a}return xa}function X5(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Um(a){var t=Nb;return Nb+=1,Gw===null&&(Gw=g4()),a=b4(Gw,a,t),t=w0,(xa===null?t.memoizedState:xa.next)===null&&(t=t.alternate,G.H=t!==null&&t.memoizedState!==null?Hr:Zr),a}function Pw(a){if(a!==null&&typeof a==="object"){if(typeof a.then==="function")return Um(a);if(a.$$typeof===it)return D0(a)}throw Error("An unsupported type was passed to use(): "+String(a))}function Hg(a){var t=null,w=w0.updateQueue;if(w!==null&&(t=w.memoCache),t==null){var g=w0.alternate;g!==null&&(g=g.updateQueue,g!==null&&(g=g.memoCache,g!=null&&(t={data:g.data.map(function(m){return m.slice()}),index:0})))}if(t==null&&(t={data:[],index:0}),w===null&&(w=X5(),w0.updateQueue=w),w.memoCache=t,w=t.data[t.index],w===void 0||zb)for(w=t.data[t.index]=Array(a),g=0;g<a;g++)w[g]=LN;else w.length!==a&&console.error("Expected a constant size argument for each invocation of useMemoCache. The previous cache was allocated with size %s but size %s was requested.",w.length,a);return t.index++,w}function At(a,t){return typeof t==="function"?t(a):t}function R5(a,t,w){var g=ha();if(w!==void 0){var m=w(t);if(_g){K0(!0);try{w(t)}finally{K0(!1)}}}else m=t;return g.memoizedState=g.baseState=m,a={pending:null,lanes:0,dispatch:null,lastRenderedReducer:a,lastRenderedState:m},g.queue=a,a=a.dispatch=J8.bind(null,w0,a),[g.memoizedState,a]}function d1(a){var t=y0();return G5(t,T0,a)}function G5(a,t,w){var g=a.queue;if(g===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");g.lastRenderedReducer=w;var m=a.baseQueue,b=g.pending;if(b!==null){if(m!==null){var v=m.next;m.next=b.next,b.next=v}t.baseQueue!==m&&console.error("Internal error: Expected work-in-progress queue to be a clone. This is a bug in React."),t.baseQueue=m=b,g.pending=null}if(b=a.baseState,m===null)a.memoizedState=b;else{t=m.next;var d=v=null,x=null,f=t,Y=!1;do{var Z=f.lane&-536870913;if(Z!==f.lane?(Z0&Z)===Z:(nw&Z)===Z){var B=f.revertLane;if(B===0)x!==null&&(x=x.next={lane:0,revertLane:0,action:f.action,hasEagerState:f.hasEagerState,eagerState:f.eagerState,next:null}),Z===Kg&&(Y=!0);else if((nw&B)===B){f=f.next,B===Kg&&(Y=!0);continue}else Z={lane:0,revertLane:f.revertLane,action:f.action,hasEagerState:f.hasEagerState,eagerState:f.eagerState,next:null},x===null?(d=x=Z,v=b):x=x.next=Z,w0.lanes|=B,Dw|=B;Z=f.action,_g&&w(b,Z),b=f.hasEagerState?f.eagerState:w(b,Z)}else B={lane:Z,revertLane:f.revertLane,action:f.action,hasEagerState:f.hasEagerState,eagerState:f.eagerState,next:null},x===null?(d=x=B,v=b):x=x.next=B,w0.lanes|=Z,Dw|=Z;f=f.next}while(f!==null&&f!==t);if(x===null?v=b:x.next=d,!Pa(b,a.memoizedState)&&(Ya=!0,Y&&(w=y1,w!==null)))throw w;a.memoizedState=b,a.baseState=v,a.baseQueue=x,g.lastRenderedState=b}return m===null&&(g.lanes=0),[a.memoizedState,g.dispatch]}function qm(a){var t=y0(),w=t.queue;if(w===null)throw Error("Should have a queue. You are likely calling Hooks conditionally, which is not allowed. (https://react.dev/link/invalid-hook-call)");w.lastRenderedReducer=a;var{dispatch:g,pending:m}=w,b=t.memoizedState;if(m!==null){w.pending=null;var v=m=m.next;do b=a(b,v.action),v=v.next;while(v!==m);Pa(b,t.memoizedState)||(Ya=!0),t.memoizedState=b,t.baseQueue===null&&(t.baseState=b),w.lastRenderedState=b}return[b,g]}function Z5(a,t,w){var g=w0,m=ha();if(q0){if(w===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");var b=w();u1||b===w()||(console.error("The result of getServerSnapshot should be cached to avoid an infinite loop"),u1=!0)}else{if(b=t(),u1||(w=t(),Pa(b,w)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),u1=!0)),k0===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");(Z0&124)!==0||N4(g,t,b)}return m.memoizedState=b,w={value:b,getSnapshot:t},m.queue=w,d2(l4.bind(null,g,w,a),[a]),g.flags|=2048,x1(Rt|za,v2(),z4.bind(null,g,w,b,t),null),b}function g2(a,t,w){var g=w0,m=y0(),b=q0;if(b){if(w===void 0)throw Error("Missing getServerSnapshot, which is required for server-rendered content. Will revert to client rendering.");w=w()}else if(w=t(),!u1){var v=t();Pa(w,v)||(console.error("The result of getSnapshot should be cached to avoid an infinite loop"),u1=!0)}if(v=!Pa((T0||m).memoizedState,w))m.memoizedState=w,Ya=!0;m=m.queue;var d=l4.bind(null,g,m,a);if(ca(2048,za,d,[a]),m.getSnapshot!==t||v||xa!==null&&xa.memoizedState.tag&Rt){if(g.flags|=2048,x1(Rt|za,v2(),z4.bind(null,g,m,w,t),null),k0===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");b||(nw&124)!==0||N4(g,t,w)}return w}function N4(a,t,w){a.flags|=16384,a={getSnapshot:t,value:w},t=w0.updateQueue,t===null?(t=X5(),w0.updateQueue=t,t.stores=[a]):(w=t.stores,w===null?t.stores=[a]:w.push(a))}function z4(a,t,w,g){t.value=w,t.getSnapshot=g,$4(t)&&B4(a)}function l4(a,t,w){return w(function(){$4(t)&&B4(a)})}function $4(a){var t=a.getSnapshot;a=a.value;try{var w=t();return!Pa(a,w)}catch(g){return!0}}function B4(a){var t=ka(a,2);t!==null&&ba(t,a,2)}function H5(a){var t=ha();if(typeof a==="function"){var w=a;if(a=w(),_g){K0(!0);try{w()}finally{K0(!1)}}}return t.memoizedState=t.baseState=a,t.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:At,lastRenderedState:a},t}function M5(a){a=H5(a);var t=a.queue,w=_4.bind(null,w0,t);return t.dispatch=w,[a.memoizedState,w]}function J5(a){var t=ha();t.memoizedState=t.baseState=a;var w={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return t.queue=w,t=F5.bind(null,w0,!0,w),w.dispatch=t,[a,t]}function Y4(a,t){var w=y0();return X4(w,T0,a,t)}function X4(a,t,w,g){return a.baseState=w,G5(a,T0,typeof g==="function"?g:At)}function R4(a,t){var w=y0();if(T0!==null)return X4(w,T0,a,t);return w.baseState=a,[a,w.queue.dispatch]}function Z8(a,t,w,g,m){if(o2(a))throw Error("Cannot update form state while rendering.");if(a=t.action,a!==null){var b={payload:m,action:a,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(v){b.listeners.push(v)}};G.T!==null?w(!0):b.isTransition=!1,g(b),w=t.pending,w===null?(b.next=t.pending=b,G4(t,b)):(b.next=w.next,t.pending=w.next=b)}}function G4(a,t){var{action:w,payload:g}=t,m=a.state;if(t.isTransition){var b=G.T,v={};G.T=v,G.T._updatedFibers=new Set;try{var d=w(m,g),x=G.S;x!==null&&x(v,d),Z4(a,t,d)}catch(f){I5(a,t,f)}finally{G.T=b,b===null&&v._updatedFibers&&(a=v._updatedFibers.size,v._updatedFibers.clear(),10<a&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}else try{v=w(m,g),Z4(a,t,v)}catch(f){I5(a,t,f)}}function Z4(a,t,w){w!==null&&typeof w==="object"&&typeof w.then==="function"?(w.then(function(g){H4(a,t,g)},function(g){return I5(a,t,g)}),t.isTransition||console.error("An async function with useActionState was called outside of a transition. This is likely not what you intended (for example, isPending will not update correctly). Either call the returned function inside startTransition, or pass it to an `action` or `formAction` prop.")):H4(a,t,w)}function H4(a,t,w){t.status="fulfilled",t.value=w,M4(t),a.state=w,t=a.pending,t!==null&&(w=t.next,w===t?a.pending=null:(w=w.next,t.next=w,G4(a,w)))}function I5(a,t,w){var g=a.pending;if(a.pending=null,g!==null){g=g.next;do t.status="rejected",t.reason=w,M4(t),t=t.next;while(t!==g)}a.action=null}function M4(a){a=a.listeners;for(var t=0;t<a.length;t++)(0,a[t])()}function J4(a,t){return t}function r1(a,t){if(q0){var w=k0.formState;if(w!==null){a:{var g=w0;if(q0){if(ta){t:{var m=ta;for(var b=pt;m.nodeType!==8;){if(!b){m=null;break t}if(m=Nt(m.nextSibling),m===null){m=null;break t}}b=m.data,m=b===Er||b===Ef?m:null}if(m){ta=Nt(m.nextSibling),g=m.data===Er;break a}}Rg(g)}g=!1}g&&(t=w[0])}}return w=ha(),w.memoizedState=w.baseState=t,g={pending:null,lanes:0,dispatch:null,lastRenderedReducer:J4,lastRenderedState:t},w.queue=g,w=_4.bind(null,w0,g),g.dispatch=w,g=H5(!1),b=F5.bind(null,w0,!1,g.queue),g=ha(),m={state:t,dispatch:null,action:a,pending:null},g.queue=m,w=Z8.bind(null,w0,m,b,w),m.dispatch=w,g.memoizedState=a,[t,w,!1]}function m2(a){var t=y0();return I4(t,T0,a)}function I4(a,t,w){if(t=G5(a,t,J4)[0],a=d1(At)[0],typeof t==="object"&&t!==null&&typeof t.then==="function")try{var g=Um(t)}catch(v){if(v===fb)throw wv;throw v}else g=t;t=y0();var m=t.queue,b=m.dispatch;return w!==t.memoizedState&&(w0.flags|=2048,x1(Rt|za,v2(),H8.bind(null,m,w),null)),[g,b,a]}function H8(a,t){a.action=t}function b2(a){var t=y0(),w=T0;if(w!==null)return I4(t,w,a);y0(),t=t.memoizedState,w=y0();var g=w.queue.dispatch;return w.memoizedState=a,[t,g,!1]}function x1(a,t,w,g){return a={tag:a,create:w,deps:g,inst:t,next:null},t=w0.updateQueue,t===null&&(t=X5(),w0.updateQueue=t),w=t.lastEffect,w===null?t.lastEffect=a.next=a:(g=w.next,w.next=a,a.next=g,t.lastEffect=a),a}function v2(){return{destroy:void 0,resource:void 0}}function Q5(a){var t=ha();return a={current:a},t.memoizedState=a}function Mg(a,t,w,g){var m=ha();g=g===void 0?null:g,w0.flags|=a,m.memoizedState=x1(Rt|t,v2(),w,g)}function ca(a,t,w,g){var m=y0();g=g===void 0?null:g;var b=m.memoizedState.inst;T0!==null&&g!==null&&N5(g,T0.memoizedState.deps)?m.memoizedState=x1(t,b,w,g):(w0.flags|=a,m.memoizedState=x1(Rt|t,b,w,g))}function d2(a,t){(w0.mode&Kt)!==j0&&(w0.mode&K9)===j0?Mg(276826112,za,a,t):Mg(8390656,za,a,t)}function U5(a,t){var w=4194308;return(w0.mode&Kt)!==j0&&(w|=134217728),Mg(w,Ja,a,t)}function Q4(a,t){if(typeof t==="function"){a=a();var w=t(a);return function(){typeof w==="function"?w():t(null)}}if(t!==null&&t!==void 0)return t.hasOwnProperty("current")||console.error("Expected useImperativeHandle() first argument to either be a ref callback or React.createRef() object. Instead received: %s.","an object with keys {"+Object.keys(t).join(", ")+"}"),a=a(),t.current=a,function(){t.current=null}}function q5(a,t,w){typeof t!=="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",t!==null?typeof t:"null"),w=w!==null&&w!==void 0?w.concat([a]):null;var g=4194308;(w0.mode&Kt)!==j0&&(g|=134217728),Mg(g,Ja,Q4.bind(null,t,a),w)}function r2(a,t,w){typeof t!=="function"&&console.error("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.",t!==null?typeof t:"null"),w=w!==null&&w!==void 0?w.concat([a]):null,ca(4,Ja,Q4.bind(null,t,a),w)}function A5(a,t){return ha().memoizedState=[a,t===void 0?null:t],a}function x2(a,t){var w=y0();t=t===void 0?null:t;var g=w.memoizedState;if(t!==null&&N5(t,g[1]))return g[0];return w.memoizedState=[a,t],a}function L5(a,t){var w=ha();t=t===void 0?null:t;var g=a();if(_g){K0(!0);try{a()}finally{K0(!1)}}return w.memoizedState=[g,t],g}function f2(a,t){var w=y0();t=t===void 0?null:t;var g=w.memoizedState;if(t!==null&&N5(t,g[1]))return g[0];if(g=a(),_g){K0(!0);try{a()}finally{K0(!1)}}return w.memoizedState=[g,t],g}function W5(a,t){var w=ha();return K5(w,a,t)}function U4(a,t){var w=y0();return A4(w,T0.memoizedState,a,t)}function q4(a,t){var w=y0();return T0===null?K5(w,a,t):A4(w,T0.memoizedState,a,t)}function K5(a,t,w){if(w===void 0||(nw&1073741824)!==0)return a.memoizedState=t;return a.memoizedState=w,a=Lx(),w0.lanes|=a,Dw|=a,w}function A4(a,t,w,g){if(Pa(w,t))return w;if(C1.current!==null)return a=K5(a,w,g),Pa(a,t)||(Ya=!0),a;if((nw&42)===0)return Ya=!0,a.memoizedState=w;return a=Lx(),w0.lanes|=a,Dw|=a,t}function L4(a,t,w,g,m){var b=_0.p;_0.p=b!==0&&b<Wt?b:Wt;var v=G.T,d={};G.T=d,F5(a,!1,t,w),d._updatedFibers=new Set;try{var x=m(),f=G.S;if(f!==null&&f(d,x),x!==null&&typeof x==="object"&&typeof x.then==="function"){var Y=X8(x,g);Am(a,t,Y,at(a))}else Am(a,t,g,at(a))}catch(Z){Am(a,t,{then:function(){},status:"rejected",reason:Z},at(a))}finally{_0.p=b,G.T=v,v===null&&d._updatedFibers&&(a=d._updatedFibers.size,d._updatedFibers.clear(),10<a&&console.warn("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."))}}function O5(a,t,w,g){if(a.tag!==5)throw Error("Expected the form instance to be a HostComponent. This is a bug in React.");var m=W4(a).queue;L4(a,m,t,ig,w===null?I:function(){return K4(a),w(g)})}function W4(a){var t=a.memoizedState;if(t!==null)return t;t={memoizedState:ig,baseState:ig,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:At,lastRenderedState:ig},next:null};var w={};return t.next={memoizedState:w,baseState:w,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:At,lastRenderedState:w},next:null},a.memoizedState=t,a=a.alternate,a!==null&&(a.memoizedState=t),t}function K4(a){G.T===null&&console.error("requestFormReset was called outside a transition or action. To fix, move to an action, or wrap with startTransition.");var t=W4(a).next.queue;Am(a,t,{},at(a))}function P5(){var a=H5(!1);return a=L4.bind(null,w0,a.queue,!0,!1),ha().memoizedState=a,[!1,a]}function O4(){var a=d1(At)[0],t=y0().memoizedState;return[typeof a==="boolean"?a:Um(a),t]}function P4(){var a=qm(At)[0],t=y0().memoizedState;return[typeof a==="boolean"?a:Um(a),t]}function Jg(){return D0(Lb)}function _5(){var a=ha(),t=k0.identifierPrefix;if(q0){var w=Xw,g=Yw;w=(g&~(1<<32-Ka(g)-1)).toString(32)+w,t="«"+t+"R"+w,w=vv++,0<w&&(t+="H"+w.toString(32)),t+="»"}else w=h7++,t="«"+t+"r"+w.toString(32)+"»";return a.memoizedState=t}function s5(){return ha().memoizedState=M8.bind(null,w0)}function M8(a,t){for(var w=a.return;w!==null;){switch(w.tag){case 24:case 3:var g=at(w);a=Kw(g);var m=Ow(w,a,g);m!==null&&(ba(m,w,g),Jm(m,w,g)),w=m5(),t!==null&&t!==void 0&&m!==null&&console.error("The seed argument is not enabled outside experimental channels."),a.payload={cache:w};return}w=w.return}}function J8(a,t,w){var g=arguments;typeof g[3]==="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),g=at(a);var m={lane:g,revertLane:0,action:w,hasEagerState:!1,eagerState:null,next:null};o2(a)?s4(t,m):(m=iv(a,t,m,g),m!==null&&(ba(m,a,g),F4(m,t,g))),gw(a,g)}function _4(a,t,w){var g=arguments;typeof g[3]==="function"&&console.error("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect()."),g=at(a),Am(a,t,w,g),gw(a,g)}function Am(a,t,w,g){var m={lane:g,revertLane:0,action:w,hasEagerState:!1,eagerState:null,next:null};if(o2(a))s4(t,m);else{var b=a.alternate;if(a.lanes===0&&(b===null||b.lanes===0)&&(b=t.lastRenderedReducer,b!==null)){var v=G.H;G.H=Pt;try{var d=t.lastRenderedState,x=b(d,w);if(m.hasEagerState=!0,m.eagerState=x,Pa(x,d))return Sb(a,t,m,0),k0===null&&cb(),!1}catch(f){}finally{G.H=v}}if(w=iv(a,t,m,g),w!==null)return ba(w,a,g),F4(w,t,g),!0}return!1}function F5(a,t,w,g){if(G.T===null&&Kg===0&&console.error("An optimistic state update occurred outside a transition or action. To fix, move the update to an action, or wrap with startTransition."),g={lane:2,revertLane:ld(),action:g,hasEagerState:!1,eagerState:null,next:null},o2(a)){if(t)throw Error("Cannot update optimistic state while rendering.");console.error("Cannot call startTransition while rendering.")}else t=iv(a,w,g,2),t!==null&&ba(t,a,2);gw(a,2)}function o2(a){var t=a.alternate;return a===w0||t!==null&&t===w0}function s4(a,t){T1=bv=!0;var w=a.pending;w===null?t.next=t:(t.next=w.next,w.next=t),a.pending=t}function F4(a,t,w){if((w&4194048)!==0){var g=t.lanes;g&=a.pendingLanes,w|=g,t.lanes=w,rm(a,w)}}function Ra(a){var t=N0;return a!=null&&(N0=t===null?a:t.concat(a)),t}function N2(a,t,w){for(var g=Object.keys(a.props),m=0;m<g.length;m++){var b=g[m];if(b!=="children"&&b!=="key"){t===null&&(t=jb(a,w.mode,0),t._debugInfo=N0,t.return=w),k(t,function(v){console.error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",v)},b);break}}}function z2(a){var t=lb;return lb+=1,k1===null&&(k1=g4()),b4(k1,a,t)}function Lm(a,t){t=t.props.ref,a.ref=t!==void 0?t:null}function l2(a,t){if(t.$$typeof===qN)throw Error(`A React Element from an older version of React was rendered. This is not supported. It can happen if:
|
|
107
|
-
- Multiple copies of the "react" package is used.
|
|
108
|
-
- A library pre-bundled an old copy of "react" or "react/jsx-runtime".
|
|
109
|
-
- A compiler tries to "inline" JSX instead of using the runtime.`);throw a=Object.prototype.toString.call(t),Error("Objects are not valid as a React child (found: "+(a==="[object Object]"?"object with keys {"+Object.keys(t).join(", ")+"}":a)+"). If you meant to render a collection of children, use an array instead.")}function $2(a,t){var w=O(a)||"Component";of[w]||(of[w]=!0,t=t.displayName||t.name||"Component",a.tag===3?console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
|
|
110
|
-
root.render(%s)`,t,t,t):console.error(`Functions are not valid as a React child. This may happen if you return %s instead of <%s /> from render. Or maybe you meant to call this function rather than return it.
|
|
111
|
-
<%s>{%s}</%s>`,t,t,w,t,w))}function B2(a,t){var w=O(a)||"Component";Nf[w]||(Nf[w]=!0,t=String(t),a.tag===3?console.error(`Symbols are not valid as a React child.
|
|
112
|
-
root.render(%s)`,t):console.error(`Symbols are not valid as a React child.
|
|
113
|
-
<%s>%s</%s>`,w,t,w))}function y4(a){function t(o,N){if(a){var z=o.deletions;z===null?(o.deletions=[N],o.flags|=16):z.push(N)}}function w(o,N){if(!a)return null;for(;N!==null;)t(o,N),N=N.sibling;return null}function g(o){for(var N=new Map;o!==null;)o.key!==null?N.set(o.key,o):N.set(o.index,o),o=o.sibling;return N}function m(o,N){return o=bw(o,N),o.index=0,o.sibling=null,o}function b(o,N,z){if(o.index=z,!a)return o.flags|=1048576,N;if(z=o.alternate,z!==null)return z=z.index,z<N?(o.flags|=67108866,N):z;return o.flags|=67108866,N}function v(o){return a&&o.alternate===null&&(o.flags|=67108866),o}function d(o,N,z,M){if(N===null||N.tag!==6)return N=Dv(z,o.mode,M),N.return=o,N._debugOwner=o,N._debugTask=o._debugTask,N._debugInfo=N0,N;return N=m(N,z),N.return=o,N._debugInfo=N0,N}function x(o,N,z,M){var W=z.type;if(W===G1)return N=Y(o,N,z.props.children,M,z.key),N2(z,N,o),N;if(N!==null&&(N.elementType===W||S3(N,z)||typeof W==="object"&&W!==null&&W.$$typeof===tt&&Ew(W)===N.type))return N=m(N,z.props),Lm(N,z),N.return=o,N._debugOwner=z._owner,N._debugInfo=N0,N;return N=jb(z,o.mode,M),Lm(N,z),N.return=o,N._debugInfo=N0,N}function f(o,N,z,M){if(N===null||N.tag!==4||N.stateNode.containerInfo!==z.containerInfo||N.stateNode.implementation!==z.implementation)return N=pv(z,o.mode,M),N.return=o,N._debugInfo=N0,N;return N=m(N,z.children||[]),N.return=o,N._debugInfo=N0,N}function Y(o,N,z,M,W){if(N===null||N.tag!==7)return N=$g(z,o.mode,M,W),N.return=o,N._debugOwner=o,N._debugTask=o._debugTask,N._debugInfo=N0,N;return N=m(N,z),N.return=o,N._debugInfo=N0,N}function Z(o,N,z){if(typeof N==="string"&&N!==""||typeof N==="number"||typeof N==="bigint")return N=Dv(""+N,o.mode,z),N.return=o,N._debugOwner=o,N._debugTask=o._debugTask,N._debugInfo=N0,N;if(typeof N==="object"&&N!==null){switch(N.$$typeof){case uw:return z=jb(N,o.mode,z),Lm(z,N),z.return=o,o=Ra(N._debugInfo),z._debugInfo=N0,N0=o,z;case R1:return N=pv(N,o.mode,z),N.return=o,N._debugInfo=N0,N;case tt:var M=Ra(N._debugInfo);return N=Ew(N),o=Z(o,N,z),N0=M,o}if(Ha(N)||i0(N))return z=$g(N,o.mode,z,null),z.return=o,z._debugOwner=o,z._debugTask=o._debugTask,o=Ra(N._debugInfo),z._debugInfo=N0,N0=o,z;if(typeof N.then==="function")return M=Ra(N._debugInfo),o=Z(o,z2(N),z),N0=M,o;if(N.$$typeof===it)return Z(o,Vb(o,N),z);l2(o,N)}return typeof N==="function"&&$2(o,N),typeof N==="symbol"&&B2(o,N),null}function B(o,N,z,M){var W=N!==null?N.key:null;if(typeof z==="string"&&z!==""||typeof z==="number"||typeof z==="bigint")return W!==null?null:d(o,N,""+z,M);if(typeof z==="object"&&z!==null){switch(z.$$typeof){case uw:return z.key===W?(W=Ra(z._debugInfo),o=x(o,N,z,M),N0=W,o):null;case R1:return z.key===W?f(o,N,z,M):null;case tt:return W=Ra(z._debugInfo),z=Ew(z),o=B(o,N,z,M),N0=W,o}if(Ha(z)||i0(z)){if(W!==null)return null;return W=Ra(z._debugInfo),o=Y(o,N,z,M,null),N0=W,o}if(typeof z.then==="function")return W=Ra(z._debugInfo),o=B(o,N,z2(z),M),N0=W,o;if(z.$$typeof===it)return B(o,N,Vb(o,z),M);l2(o,z)}return typeof z==="function"&&$2(o,z),typeof z==="symbol"&&B2(o,z),null}function H(o,N,z,M,W){if(typeof M==="string"&&M!==""||typeof M==="number"||typeof M==="bigint")return o=o.get(z)||null,d(N,o,""+M,W);if(typeof M==="object"&&M!==null){switch(M.$$typeof){case uw:return z=o.get(M.key===null?z:M.key)||null,o=Ra(M._debugInfo),N=x(N,z,M,W),N0=o,N;case R1:return o=o.get(M.key===null?z:M.key)||null,f(N,o,M,W);case tt:var g0=Ra(M._debugInfo);return M=Ew(M),N=H(o,N,z,M,W),N0=g0,N}if(Ha(M)||i0(M))return z=o.get(z)||null,o=Ra(M._debugInfo),N=Y(N,z,M,W,null),N0=o,N;if(typeof M.then==="function")return g0=Ra(M._debugInfo),N=H(o,N,z,z2(M),W),N0=g0,N;if(M.$$typeof===it)return H(o,N,z,Vb(N,M),W);l2(N,M)}return typeof M==="function"&&$2(N,M),typeof M==="symbol"&&B2(N,M),null}function F(o,N,z,M){if(typeof z!=="object"||z===null)return M;switch(z.$$typeof){case uw:case R1:n(o,N,z);var W=z.key;if(typeof W!=="string")break;if(M===null){M=new Set,M.add(W);break}if(!M.has(W)){M.add(W);break}k(N,function(){console.error("Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted — the behavior is unsupported and could change in a future version.",W)});break;case tt:z=Ew(z),F(o,N,z,M)}return M}function D(o,N,z,M){for(var W=null,g0=null,y=null,m0=N,d0=N=0,n0=null;m0!==null&&d0<z.length;d0++){m0.index>d0?(n0=m0,m0=null):n0=m0.sibling;var da=B(o,m0,z[d0],M);if(da===null){m0===null&&(m0=n0);break}W=F(o,da,z[d0],W),a&&m0&&da.alternate===null&&t(o,m0),N=b(da,N,d0),y===null?g0=da:y.sibling=da,y=da,m0=n0}if(d0===z.length)return w(o,m0),q0&&Bg(o,d0),g0;if(m0===null){for(;d0<z.length;d0++)m0=Z(o,z[d0],M),m0!==null&&(W=F(o,m0,z[d0],W),N=b(m0,N,d0),y===null?g0=m0:y.sibling=m0,y=m0);return q0&&Bg(o,d0),g0}for(m0=g(m0);d0<z.length;d0++)n0=H(m0,o,d0,z[d0],M),n0!==null&&(W=F(o,n0,z[d0],W),a&&n0.alternate!==null&&m0.delete(n0.key===null?d0:n0.key),N=b(n0,N,d0),y===null?g0=n0:y.sibling=n0,y=n0);return a&&m0.forEach(function(Uw){return t(o,Uw)}),q0&&Bg(o,d0),g0}function h0(o,N,z,M){if(z==null)throw Error("An iterable object provided no iterator.");for(var W=null,g0=null,y=N,m0=N=0,d0=null,n0=null,da=z.next();y!==null&&!da.done;m0++,da=z.next()){y.index>m0?(d0=y,y=null):d0=y.sibling;var Uw=B(o,y,da.value,M);if(Uw===null){y===null&&(y=d0);break}n0=F(o,Uw,da.value,n0),a&&y&&Uw.alternate===null&&t(o,y),N=b(Uw,N,m0),g0===null?W=Uw:g0.sibling=Uw,g0=Uw,y=d0}if(da.done)return w(o,y),q0&&Bg(o,m0),W;if(y===null){for(;!da.done;m0++,da=z.next())y=Z(o,da.value,M),y!==null&&(n0=F(o,y,da.value,n0),N=b(y,N,m0),g0===null?W=y:g0.sibling=y,g0=y);return q0&&Bg(o,m0),W}for(y=g(y);!da.done;m0++,da=z.next())d0=H(y,o,m0,da.value,M),d0!==null&&(n0=F(o,d0,da.value,n0),a&&d0.alternate!==null&&y.delete(d0.key===null?m0:d0.key),N=b(d0,N,m0),g0===null?W=d0:g0.sibling=d0,g0=d0);return a&&y.forEach(function(Bz){return t(o,Bz)}),q0&&Bg(o,m0),W}function J0(o,N,z,M){if(typeof z==="object"&&z!==null&&z.type===G1&&z.key===null&&(N2(z,null,o),z=z.props.children),typeof z==="object"&&z!==null){switch(z.$$typeof){case uw:var W=Ra(z._debugInfo);a:{for(var g0=z.key;N!==null;){if(N.key===g0){if(g0=z.type,g0===G1){if(N.tag===7){w(o,N.sibling),M=m(N,z.props.children),M.return=o,M._debugOwner=z._owner,M._debugInfo=N0,N2(z,M,o),o=M;break a}}else if(N.elementType===g0||S3(N,z)||typeof g0==="object"&&g0!==null&&g0.$$typeof===tt&&Ew(g0)===N.type){w(o,N.sibling),M=m(N,z.props),Lm(M,z),M.return=o,M._debugOwner=z._owner,M._debugInfo=N0,o=M;break a}w(o,N);break}else t(o,N);N=N.sibling}z.type===G1?(M=$g(z.props.children,o.mode,M,z.key),M.return=o,M._debugOwner=o,M._debugTask=o._debugTask,M._debugInfo=N0,N2(z,M,o),o=M):(M=jb(z,o.mode,M),Lm(M,z),M.return=o,M._debugInfo=N0,o=M)}return o=v(o),N0=W,o;case R1:a:{W=z;for(z=W.key;N!==null;){if(N.key===z)if(N.tag===4&&N.stateNode.containerInfo===W.containerInfo&&N.stateNode.implementation===W.implementation){w(o,N.sibling),M=m(N,W.children||[]),M.return=o,o=M;break a}else{w(o,N);break}else t(o,N);N=N.sibling}M=pv(W,o.mode,M),M.return=o,o=M}return v(o);case tt:return W=Ra(z._debugInfo),z=Ew(z),o=J0(o,N,z,M),N0=W,o}if(Ha(z))return W=Ra(z._debugInfo),o=D(o,N,z,M),N0=W,o;if(i0(z)){if(W=Ra(z._debugInfo),g0=i0(z),typeof g0!=="function")throw Error("An object is not an iterable. This error is likely caused by a bug in React. Please file an issue.");var y=g0.call(z);if(y===z){if(o.tag!==0||Object.prototype.toString.call(o.type)!=="[object GeneratorFunction]"||Object.prototype.toString.call(y)!=="[object Generator]")xf||console.error("Using Iterators as children is unsupported and will likely yield unexpected results because enumerating a generator mutates it. You may convert it to an array with `Array.from()` or the `[...spread]` operator before rendering. You can also use an Iterable that can iterate multiple times over the same items."),xf=!0}else z.entries!==g0||Ir||(console.error("Using Maps as children is not supported. Use an array of keyed ReactElements instead."),Ir=!0);return o=h0(o,N,y,M),N0=W,o}if(typeof z.then==="function")return W=Ra(z._debugInfo),o=J0(o,N,z2(z),M),N0=W,o;if(z.$$typeof===it)return J0(o,N,Vb(o,z),M);l2(o,z)}if(typeof z==="string"&&z!==""||typeof z==="number"||typeof z==="bigint")return W=""+z,N!==null&&N.tag===6?(w(o,N.sibling),M=m(N,W),M.return=o,o=M):(w(o,N),M=Dv(W,o.mode,M),M.return=o,M._debugOwner=o,M._debugTask=o._debugTask,M._debugInfo=N0,o=M),v(o);return typeof z==="function"&&$2(o,z),typeof z==="symbol"&&B2(o,z),w(o,N)}return function(o,N,z,M){var W=N0;N0=null;try{lb=0;var g0=J0(o,N,z,M);return k1=null,g0}catch(n0){if(n0===fb||n0===wv)throw n0;var y=L(29,n0,null,o.mode);y.lanes=M,y.return=o;var m0=y._debugInfo=N0;if(y._debugOwner=o._debugOwner,y._debugTask=o._debugTask,m0!=null){for(var d0=m0.length-1;0<=d0;d0--)if(typeof m0[d0].stack==="string"){y._debugOwner=m0[d0],y._debugTask=m0[d0].debugTask;break}}return y}finally{N0=W}}}function _w(a){var t=a.alternate;o0(la,la.current&c1,a),o0(Zt,a,a),aw===null&&(t===null||C1.current!==null?aw=a:t.memoizedState!==null&&(aw=a))}function C4(a){if(a.tag===22){if(o0(la,la.current,a),o0(Zt,a,a),aw===null){var t=a.alternate;t!==null&&t.memoizedState!==null&&(aw=a)}}else sw(a)}function sw(a){o0(la,la.current,a),o0(Zt,Zt.current,a)}function rw(a){X0(Zt,a),aw===a&&(aw=null),X0(la,a)}function Y2(a){for(var t=a;t!==null;){if(t.tag===13){var w=t.memoizedState;if(w!==null&&(w=w.dehydrated,w===null||w.data===Jw||Id(w)))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===a)break;for(;t.sibling===null;){if(t.return===null||t.return===a)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function y5(a){if(a!==null&&typeof a!=="function"){var t=String(a);Jf.has(t)||(Jf.add(t),console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",a))}}function C5(a,t,w,g){var m=a.memoizedState,b=w(g,m);if(a.mode&La){K0(!0);try{b=w(g,m)}finally{K0(!1)}}b===void 0&&(t=I0(t)||"Component",Gf.has(t)||(Gf.add(t),console.error("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.",t))),m=b===null||b===void 0?m:B0({},m,b),a.memoizedState=m,a.lanes===0&&(a.updateQueue.baseState=m)}function u4(a,t,w,g,m,b,v){var d=a.stateNode;if(typeof d.shouldComponentUpdate==="function"){if(w=d.shouldComponentUpdate(g,b,v),a.mode&La){K0(!0);try{w=d.shouldComponentUpdate(g,b,v)}finally{K0(!1)}}return w===void 0&&console.error("%s.shouldComponentUpdate(): Returned undefined instead of a boolean value. Make sure to return true or false.",I0(t)||"Component"),w}return t.prototype&&t.prototype.isPureReactComponent?!Ym(w,g)||!Ym(m,b):!0}function T4(a,t,w,g){var m=t.state;typeof t.componentWillReceiveProps==="function"&&t.componentWillReceiveProps(w,g),typeof t.UNSAFE_componentWillReceiveProps==="function"&&t.UNSAFE_componentWillReceiveProps(w,g),t.state!==m&&(a=O(a)||"Component",$f.has(a)||($f.add(a),console.error("%s.componentWillReceiveProps(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",a)),Qr.enqueueReplaceState(t,t.state,null))}function Ig(a,t){var w=t;if("ref"in t){w={};for(var g in t)g!=="ref"&&(w[g]=t[g])}if(a=a.defaultProps){w===t&&(w=B0({},w));for(var m in a)w[m]===void 0&&(w[m]=a[m])}return w}function k4(a){Ur(a),console.warn(`%s
|
|
114
|
-
|
|
115
|
-
%s
|
|
116
|
-
`,S1?"An error occurred in the <"+S1+"> component.":"An error occurred in one of your React components.",`Consider adding an error boundary to your tree to customize error handling behavior.
|
|
117
|
-
Visit https://react.dev/link/error-boundaries to learn more about error boundaries.`)}function h4(a){var t=S1?"The above error occurred in the <"+S1+"> component.":"The above error occurred in one of your React components.",w="React will try to recreate this component tree from scratch using the error boundary you provided, "+((qr||"Anonymous")+".");if(typeof a==="object"&&a!==null&&typeof a.environmentName==="string"){var g=a.environmentName;a=[`%o
|
|
118
|
-
|
|
119
|
-
%s
|
|
120
|
-
|
|
121
|
-
%s
|
|
122
|
-
`,a,t,w].slice(0),typeof a[0]==="string"?a.splice(0,1,go+a[0],mo,Qv+g+Qv,bo):a.splice(0,0,go,mo,Qv+g+Qv,bo),a.unshift(console),g=lz.apply(console.error,a),g()}else console.error(`%o
|
|
123
|
-
|
|
124
|
-
%s
|
|
125
|
-
|
|
126
|
-
%s
|
|
127
|
-
`,a,t,w)}function c4(a){Ur(a)}function X2(a,t){try{S1=t.source?O(t.source):null,qr=null;var w=t.value;if(G.actQueue!==null)G.thrownErrors.push(w);else{var g=a.onUncaughtError;g(w,{componentStack:t.stack})}}catch(m){setTimeout(function(){throw m})}}function S4(a,t,w){try{S1=w.source?O(w.source):null,qr=O(t);var g=a.onCaughtError;g(w.value,{componentStack:w.stack,errorBoundary:t.tag===1?t.stateNode:null})}catch(m){setTimeout(function(){throw m})}}function u5(a,t,w){return w=Kw(w),w.tag=Yr,w.payload={element:null},w.callback=function(){k(t.source,X2,a,t)},w}function T5(a){return a=Kw(a),a.tag=Yr,a}function k5(a,t,w,g){var m=w.type.getDerivedStateFromError;if(typeof m==="function"){var b=g.value;a.payload=function(){return m(b)},a.callback=function(){i3(w),k(g.source,S4,t,w,g)}}var v=w.stateNode;v!==null&&typeof v.componentDidCatch==="function"&&(a.callback=function(){i3(w),k(g.source,S4,t,w,g),typeof m!=="function"&&(ew===null?ew=new Set([this]):ew.add(this)),S7(this,g),typeof m==="function"||(w.lanes&2)===0&&console.error("%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.",O(w)||"Unknown")})}function I8(a,t,w,g,m){if(w.flags|=32768,Lt&&Fm(a,m),g!==null&&typeof g==="object"&&typeof g.then==="function"){if(t=w.alternate,t!==null&&Zm(t,w,m,!0),q0&&(Rw=!0),w=Zt.current,w!==null){switch(w.tag){case 13:return aw===null?dd():w.alternate===null&&wa===Mw&&(wa=Kr),w.flags&=-257,w.flags|=65536,w.lanes=m,g===Br?w.flags|=16384:(t=w.updateQueue,t===null?w.updateQueue=new Set([g]):t.add(g),fd(a,g,m)),!1;case 22:return w.flags|=65536,g===Br?w.flags|=16384:(t=w.updateQueue,t===null?(t={transitions:null,markerInstances:null,retryQueue:new Set([g])},w.updateQueue=t):(w=t.retryQueue,w===null?t.retryQueue=new Set([g]):w.add(g)),fd(a,g,m)),!1}throw Error("Unexpected Suspense handler tag ("+w.tag+"). This is a bug in React.")}return fd(a,g,m),dd(),!1}if(q0)return Rw=!0,t=Zt.current,t!==null?((t.flags&65536)===0&&(t.flags|=256),t.flags|=65536,t.lanes=m,g!==Nr&&Gm(Da(Error("There was an error while hydrating but React was able to recover by instead client rendering from the nearest Suspense boundary.",{cause:g}),w))):(g!==Nr&&Gm(Da(Error("There was an error while hydrating but React was able to recover by instead client rendering the entire root.",{cause:g}),w)),a=a.current.alternate,a.flags|=65536,m&=-m,a.lanes|=m,g=Da(g,w),m=u5(a.stateNode,g,m),t2(a,m),wa!==sg&&(wa=E1)),!1;var b=Da(Error("There was an error during concurrent rendering but React was able to recover by instead synchronously rendering the entire root.",{cause:g}),w);if(Hb===null?Hb=[b]:Hb.push(b),wa!==sg&&(wa=E1),t===null)return!0;g=Da(g,w),w=t;do{switch(w.tag){case 3:return w.flags|=65536,a=m&-m,w.lanes|=a,a=u5(w.stateNode,g,a),t2(w,a),!1;case 1:if(t=w.type,b=w.stateNode,(w.flags&128)===0&&(typeof t.getDerivedStateFromError==="function"||b!==null&&typeof b.componentDidCatch==="function"&&(ew===null||!ew.has(b))))return w.flags|=65536,m&=-m,w.lanes|=m,m=T5(m),k5(m,a,w,g),t2(w,m),!1}w=w.return}while(w!==null);return!1}function Ga(a,t,w,g){t.child=a===null?zf(t,null,w,g):h1(t,a.child,w,g)}function i4(a,t,w,g,m){w=w.render;var b=t.ref;if("ref"in g){var v={};for(var d in g)d!=="ref"&&(v[d]=g[d])}else v=g;if(Gg(t),dt(t),g=z5(a,t,w,v,b,m),d=$5(),It(),a!==null&&!Ya)return B5(a,t,m),xw(a,t,m);return q0&&d&&ev(t),t.flags|=1,Ga(a,t,g,m),t.child}function j4(a,t,w,g,m){if(a===null){var b=w.type;if(typeof b==="function"&&!Ev(b)&&b.defaultProps===void 0&&w.compare===null)return w=lg(b),t.tag=15,t.type=w,c5(t,b),n4(a,t,w,g,m);return a=Vv(w.type,null,g,t,t.mode,m),a.ref=t.ref,a.return=t,t.child=a}if(b=a.child,!V5(a,m)){var v=b.memoizedProps;if(w=w.compare,w=w!==null?w:Ym,w(v,g)&&a.ref===t.ref)return xw(a,t,m)}return t.flags|=1,a=bw(b,g),a.ref=t.ref,a.return=t,t.child=a}function n4(a,t,w,g,m){if(a!==null){var b=a.memoizedProps;if(Ym(b,g)&&a.ref===t.ref&&t.type===a.type)if(Ya=!1,t.pendingProps=g=b,V5(a,m))(a.flags&131072)!==0&&(Ya=!0);else return t.lanes=a.lanes,xw(a,t,m)}return h5(a,t,w,g,m)}function E4(a,t,w){var g=t.pendingProps,m=g.children,b=a!==null?a.memoizedState:null;if(g.mode==="hidden"){if((t.flags&128)!==0){if(g=b!==null?b.baseLanes|w:w,a!==null){m=t.child=a.child;for(b=0;m!==null;)b=b|m.lanes|m.childLanes,m=m.sibling;t.childLanes=b&~g}else t.childLanes=0,t.child=null;return V4(a,t,g,w)}if((w&536870912)!==0)t.memoizedState={baseLanes:0,cachePool:null},a!==null&&eb(t,b!==null?b.cachePool:null),b!==null?f4(t,b):f5(t),C4(t);else return t.lanes=t.childLanes=536870912,V4(a,t,b!==null?b.baseLanes|w:w,w)}else b!==null?(eb(t,b.cachePool),f4(t,b),sw(t),t.memoizedState=null):(a!==null&&eb(t,null),f5(t),sw(t));return Ga(a,t,m,w),t.child}function V4(a,t,w,g){var m=d5();return m=m===null?null:{parent:Na._currentValue,pool:m},t.memoizedState={baseLanes:w,cachePool:m},a!==null&&eb(t,null),f5(t),C4(t),a!==null&&Zm(a,t,g,!0),null}function R2(a,t){var w=t.ref;if(w===null)a!==null&&a.ref!==null&&(t.flags|=4194816);else{if(typeof w!=="function"&&typeof w!=="object")throw Error("Expected ref to be a function, an object returned by React.createRef(), or undefined/null.");if(a===null||a.ref!==w)t.flags|=4194816}}function h5(a,t,w,g,m){if(w.prototype&&typeof w.prototype.render==="function"){var b=I0(w)||"Unknown";Qf[b]||(console.error("The <%s /> component appears to have a render method, but doesn't extend React.Component. This is likely to cause errors. Change %s to extend React.Component instead.",b,b),Qf[b]=!0)}if(t.mode&La&&Ot.recordLegacyContextWarning(t,null),a===null&&(c5(t,t.type),w.contextTypes&&(b=I0(w)||"Unknown",qf[b]||(qf[b]=!0,console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with React.useContext() instead. (https://react.dev/link/legacy-context)",b)))),Gg(t),dt(t),w=z5(a,t,w,g,void 0,m),g=$5(),It(),a!==null&&!Ya)return B5(a,t,m),xw(a,t,m);return q0&&g&&ev(t),t.flags|=1,Ga(a,t,w,m),t.child}function D4(a,t,w,g,m,b){if(Gg(t),dt(t),Zw=-1,zb=a!==null&&a.type!==t.type,t.updateQueue=null,w=l5(t,g,w,m),o4(a,t),g=$5(),It(),a!==null&&!Ya)return B5(a,t,b),xw(a,t,b);return q0&&g&&ev(t),t.flags|=1,Ga(a,t,w,b),t.child}function p4(a,t,w,g,m){switch(W0(t)){case!1:var b=t.stateNode,v=new t.type(t.memoizedProps,b.context).state;b.updater.enqueueSetState(b,v,null);break;case!0:t.flags|=128,t.flags|=65536,b=Error("Simulated error coming from DevTools");var d=m&-m;if(t.lanes|=d,v=k0,v===null)throw Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");d=T5(d),k5(d,v,t,Da(b,t)),t2(t,d)}if(Gg(t),t.stateNode===null){if(v=iw,b=w.contextType,"contextType"in w&&b!==null&&(b===void 0||b.$$typeof!==it)&&!Mf.has(w)&&(Mf.add(w),d=b===void 0?" However, it is set to undefined. This can be caused by a typo or by mixing up named and default imports. This can also happen due to a circular dependency, so try moving the createContext() call to a separate file.":typeof b!=="object"?" However, it is set to a "+typeof b+".":b.$$typeof===sd?" Did you accidentally pass the Context.Consumer instead?":" However, it is set to an object with keys {"+Object.keys(b).join(", ")+"}.",console.error("%s defines an invalid contextType. contextType should point to the Context object returned by React.createContext().%s",I0(w)||"Component",d)),typeof b==="object"&&b!==null&&(v=D0(b)),b=new w(g,v),t.mode&La){K0(!0);try{b=new w(g,v)}finally{K0(!1)}}if(v=t.memoizedState=b.state!==null&&b.state!==void 0?b.state:null,b.updater=Qr,t.stateNode=b,b._reactInternals=t,b._reactInternalInstance=lf,typeof w.getDerivedStateFromProps==="function"&&v===null&&(v=I0(w)||"Component",Bf.has(v)||(Bf.add(v),console.error("`%s` uses `getDerivedStateFromProps` but its initial state is %s. This is not recommended. Instead, define the initial state by assigning an object to `this.state` in the constructor of `%s`. This ensures that `getDerivedStateFromProps` arguments have a consistent shape.",v,b.state===null?"null":"undefined",v))),typeof w.getDerivedStateFromProps==="function"||typeof b.getSnapshotBeforeUpdate==="function"){var x=d=v=null;if(typeof b.componentWillMount==="function"&&b.componentWillMount.__suppressDeprecationWarning!==!0?v="componentWillMount":typeof b.UNSAFE_componentWillMount==="function"&&(v="UNSAFE_componentWillMount"),typeof b.componentWillReceiveProps==="function"&&b.componentWillReceiveProps.__suppressDeprecationWarning!==!0?d="componentWillReceiveProps":typeof b.UNSAFE_componentWillReceiveProps==="function"&&(d="UNSAFE_componentWillReceiveProps"),typeof b.componentWillUpdate==="function"&&b.componentWillUpdate.__suppressDeprecationWarning!==!0?x="componentWillUpdate":typeof b.UNSAFE_componentWillUpdate==="function"&&(x="UNSAFE_componentWillUpdate"),v!==null||d!==null||x!==null){b=I0(w)||"Component";var f=typeof w.getDerivedStateFromProps==="function"?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";Xf.has(b)||(Xf.add(b),console.error(`Unsafe legacy lifecycles will not be called for components using new component APIs.
|
|
128
|
-
|
|
129
|
-
%s uses %s but also contains the following legacy lifecycles:%s%s%s
|
|
130
|
-
|
|
131
|
-
The above lifecycles should be removed. Learn more about this warning here:
|
|
132
|
-
https://react.dev/link/unsafe-component-lifecycles`,b,f,v!==null?`
|
|
133
|
-
`+v:"",d!==null?`
|
|
134
|
-
`+d:"",x!==null?`
|
|
135
|
-
`+x:""))}}b=t.stateNode,v=I0(w)||"Component",b.render||(w.prototype&&typeof w.prototype.render==="function"?console.error("No `render` method found on the %s instance: did you accidentally return an object from the constructor?",v):console.error("No `render` method found on the %s instance: you may have forgotten to define `render`.",v)),!b.getInitialState||b.getInitialState.isReactClassApproved||b.state||console.error("getInitialState was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Did you mean to define a state property instead?",v),b.getDefaultProps&&!b.getDefaultProps.isReactClassApproved&&console.error("getDefaultProps was defined on %s, a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.",v),b.contextType&&console.error("contextType was defined as an instance property on %s. Use a static property to define contextType instead.",v),w.childContextTypes&&!Hf.has(w)&&(Hf.add(w),console.error("%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead. (https://react.dev/link/legacy-context)",v)),w.contextTypes&&!Zf.has(w)&&(Zf.add(w),console.error("%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead. (https://react.dev/link/legacy-context)",v)),typeof b.componentShouldUpdate==="function"&&console.error("%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",v),w.prototype&&w.prototype.isPureReactComponent&&typeof b.shouldComponentUpdate!=="undefined"&&console.error("%s has a method called shouldComponentUpdate(). shouldComponentUpdate should not be used when extending React.PureComponent. Please extend React.Component if shouldComponentUpdate is used.",I0(w)||"A pure component"),typeof b.componentDidUnmount==="function"&&console.error("%s has a method called componentDidUnmount(). But there is no such lifecycle method. Did you mean componentWillUnmount()?",v),typeof b.componentDidReceiveProps==="function"&&console.error("%s has a method called componentDidReceiveProps(). But there is no such lifecycle method. If you meant to update the state in response to changing props, use componentWillReceiveProps(). If you meant to fetch data or run side-effects or mutations after React has updated the UI, use componentDidUpdate().",v),typeof b.componentWillRecieveProps==="function"&&console.error("%s has a method called componentWillRecieveProps(). Did you mean componentWillReceiveProps()?",v),typeof b.UNSAFE_componentWillRecieveProps==="function"&&console.error("%s has a method called UNSAFE_componentWillRecieveProps(). Did you mean UNSAFE_componentWillReceiveProps()?",v),d=b.props!==g,b.props!==void 0&&d&&console.error("When calling super() in `%s`, make sure to pass up the same props that your component's constructor was passed.",v),b.defaultProps&&console.error("Setting defaultProps as an instance property on %s is not supported and will be ignored. Instead, define defaultProps as a static property on %s.",v,v),typeof b.getSnapshotBeforeUpdate!=="function"||typeof b.componentDidUpdate==="function"||Yf.has(w)||(Yf.add(w),console.error("%s: getSnapshotBeforeUpdate() should be used with componentDidUpdate(). This component defines getSnapshotBeforeUpdate() only.",I0(w))),typeof b.getDerivedStateFromProps==="function"&&console.error("%s: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method.",v),typeof b.getDerivedStateFromError==="function"&&console.error("%s: getDerivedStateFromError() is defined as an instance method and will be ignored. Instead, declare it as a static method.",v),typeof w.getSnapshotBeforeUpdate==="function"&&console.error("%s: getSnapshotBeforeUpdate() is defined as a static method and will be ignored. Instead, declare it as an instance method.",v),(d=b.state)&&(typeof d!=="object"||Ha(d))&&console.error("%s.state: must be set to an object or null",v),typeof b.getChildContext==="function"&&typeof w.childContextTypes!=="object"&&console.error("%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().",v),b=t.stateNode,b.props=g,b.state=t.memoizedState,b.refs={},r5(t),v=w.contextType,b.context=typeof v==="object"&&v!==null?D0(v):iw,b.state===g&&(v=I0(w)||"Component",Rf.has(v)||(Rf.add(v),console.error("%s: It is not recommended to assign props directly to state because updates to props won't be reflected in state. In most cases, it is better to use props directly.",v))),t.mode&La&&Ot.recordLegacyContextWarning(t,b),Ot.recordUnsafeLifecycleWarnings(t,b),b.state=t.memoizedState,v=w.getDerivedStateFromProps,typeof v==="function"&&(C5(t,w,v,g),b.state=t.memoizedState),typeof w.getDerivedStateFromProps==="function"||typeof b.getSnapshotBeforeUpdate==="function"||typeof b.UNSAFE_componentWillMount!=="function"&&typeof b.componentWillMount!=="function"||(v=b.state,typeof b.componentWillMount==="function"&&b.componentWillMount(),typeof b.UNSAFE_componentWillMount==="function"&&b.UNSAFE_componentWillMount(),v!==b.state&&(console.error("%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.",O(t)||"Component"),Qr.enqueueReplaceState(b,b.state,null)),Qm(t,g,b,m),Im(),b.state=t.memoizedState),typeof b.componentDidMount==="function"&&(t.flags|=4194308),(t.mode&Kt)!==j0&&(t.flags|=134217728),b=!0}else if(a===null){b=t.stateNode;var Y=t.memoizedProps;d=Ig(w,Y),b.props=d;var Z=b.context;x=w.contextType,v=iw,typeof x==="object"&&x!==null&&(v=D0(x)),f=w.getDerivedStateFromProps,x=typeof f==="function"||typeof b.getSnapshotBeforeUpdate==="function",Y=t.pendingProps!==Y,x||typeof b.UNSAFE_componentWillReceiveProps!=="function"&&typeof b.componentWillReceiveProps!=="function"||(Y||Z!==v)&&T4(t,b,g,v),jw=!1;var B=t.memoizedState;b.state=B,Qm(t,g,b,m),Im(),Z=t.memoizedState,Y||B!==Z||jw?(typeof f==="function"&&(C5(t,w,f,g),Z=t.memoizedState),(d=jw||u4(t,w,d,g,B,Z,v))?(x||typeof b.UNSAFE_componentWillMount!=="function"&&typeof b.componentWillMount!=="function"||(typeof b.componentWillMount==="function"&&b.componentWillMount(),typeof b.UNSAFE_componentWillMount==="function"&&b.UNSAFE_componentWillMount()),typeof b.componentDidMount==="function"&&(t.flags|=4194308),(t.mode&Kt)!==j0&&(t.flags|=134217728)):(typeof b.componentDidMount==="function"&&(t.flags|=4194308),(t.mode&Kt)!==j0&&(t.flags|=134217728),t.memoizedProps=g,t.memoizedState=Z),b.props=g,b.state=Z,b.context=v,b=d):(typeof b.componentDidMount==="function"&&(t.flags|=4194308),(t.mode&Kt)!==j0&&(t.flags|=134217728),b=!1)}else{b=t.stateNode,x5(a,t),v=t.memoizedProps,x=Ig(w,v),b.props=x,f=t.pendingProps,B=b.context,Z=w.contextType,d=iw,typeof Z==="object"&&Z!==null&&(d=D0(Z)),Y=w.getDerivedStateFromProps,(Z=typeof Y==="function"||typeof b.getSnapshotBeforeUpdate==="function")||typeof b.UNSAFE_componentWillReceiveProps!=="function"&&typeof b.componentWillReceiveProps!=="function"||(v!==f||B!==d)&&T4(t,b,g,d),jw=!1,B=t.memoizedState,b.state=B,Qm(t,g,b,m),Im();var H=t.memoizedState;v!==f||B!==H||jw||a!==null&&a.dependencies!==null&&Eb(a.dependencies)?(typeof Y==="function"&&(C5(t,w,Y,g),H=t.memoizedState),(x=jw||u4(t,w,x,g,B,H,d)||a!==null&&a.dependencies!==null&&Eb(a.dependencies))?(Z||typeof b.UNSAFE_componentWillUpdate!=="function"&&typeof b.componentWillUpdate!=="function"||(typeof b.componentWillUpdate==="function"&&b.componentWillUpdate(g,H,d),typeof b.UNSAFE_componentWillUpdate==="function"&&b.UNSAFE_componentWillUpdate(g,H,d)),typeof b.componentDidUpdate==="function"&&(t.flags|=4),typeof b.getSnapshotBeforeUpdate==="function"&&(t.flags|=1024)):(typeof b.componentDidUpdate!=="function"||v===a.memoizedProps&&B===a.memoizedState||(t.flags|=4),typeof b.getSnapshotBeforeUpdate!=="function"||v===a.memoizedProps&&B===a.memoizedState||(t.flags|=1024),t.memoizedProps=g,t.memoizedState=H),b.props=g,b.state=H,b.context=d,b=x):(typeof b.componentDidUpdate!=="function"||v===a.memoizedProps&&B===a.memoizedState||(t.flags|=4),typeof b.getSnapshotBeforeUpdate!=="function"||v===a.memoizedProps&&B===a.memoizedState||(t.flags|=1024),b=!1)}if(d=b,R2(a,t),v=(t.flags&128)!==0,d||v){if(d=t.stateNode,_v(t),v&&typeof w.getDerivedStateFromError!=="function")w=null,ia=-1;else{if(dt(t),w=e9(d),t.mode&La){K0(!0);try{e9(d)}finally{K0(!1)}}It()}t.flags|=1,a!==null&&v?(t.child=h1(t,a.child,null,m),t.child=h1(t,null,w,m)):Ga(a,t,w,m),t.memoizedState=d.state,a=t.child}else a=xw(a,t,m);return m=t.stateNode,b&&m.props!==g&&(i1||console.error("It looks like %s is reassigning its own `this.props` while rendering. This is not supported and can lead to confusing bugs.",O(t)||"a component"),i1=!0),a}function e4(a,t,w,g){return Rm(),t.flags|=256,Ga(a,t,w,g),t.child}function c5(a,t){t&&t.childContextTypes&&console.error(`childContextTypes cannot be defined on a function component.
|
|
136
|
-
%s.childContextTypes = ...`,t.displayName||t.name||"Component"),typeof t.getDerivedStateFromProps==="function"&&(a=I0(t)||"Unknown",Af[a]||(console.error("%s: Function components do not support getDerivedStateFromProps.",a),Af[a]=!0)),typeof t.contextType==="object"&&t.contextType!==null&&(t=I0(t)||"Unknown",Uf[t]||(console.error("%s: Function components do not support contextType.",t),Uf[t]=!0))}function S5(a){return{baseLanes:a,cachePool:w4()}}function i5(a,t,w){return a=a!==null?a.childLanes&~w:0,t&&(a|=vt),a}function ax(a,t,w){var g,m=t.pendingProps;a0(t)&&(t.flags|=128);var b=!1,v=(t.flags&128)!==0;if((g=v)||(g=a!==null&&a.memoizedState===null?!1:(la.current&$b)!==0),g&&(b=!0,t.flags&=-129),g=(t.flags&32)!==0,t.flags&=-33,a===null){if(q0){if(b?_w(t):sw(t),q0){var d=ta,x;if(!(x=!d)){a:{var f=d;for(x=pt;f.nodeType!==8;){if(!x){x=null;break a}if(f=Nt(f.nextSibling),f===null){x=null;break a}}x=f}x!==null?(Yg(),t.memoizedState={dehydrated:x,treeContext:Ag!==null?{id:Yw,overflow:Xw}:null,retryLane:536870912,hydrationErrors:null},f=L(18,null,null,j0),f.stateNode=x,f.return=t,t.child=f,_a=t,ta=null,x=!0):x=!1,x=!x}x&&(t5(t,d),Rg(t))}if(d=t.memoizedState,d!==null&&(d=d.dehydrated,d!==null))return Id(d)?t.lanes=32:t.lanes=536870912,null;rw(t)}if(d=m.children,m=m.fallback,b)return sw(t),b=t.mode,d=G2({mode:"hidden",children:d},b),m=$g(m,b,w,null),d.return=t,m.return=t,d.sibling=m,t.child=d,b=t.child,b.memoizedState=S5(w),b.childLanes=i5(a,g,w),t.memoizedState=Lr,m;return _w(t),j5(t,d)}var Y=a.memoizedState;if(Y!==null&&(d=Y.dehydrated,d!==null)){if(v)t.flags&256?(_w(t),t.flags&=-257,t=n5(a,t,w)):t.memoizedState!==null?(sw(t),t.child=a.child,t.flags|=128,t=null):(sw(t),b=m.fallback,d=t.mode,m=G2({mode:"visible",children:m.children},d),b=$g(b,d,w,null),b.flags|=2,m.return=t,b.return=t,m.sibling=b,t.child=m,h1(t,a.child,null,w),m=t.child,m.memoizedState=S5(w),m.childLanes=i5(a,g,w),t.memoizedState=Lr,t=b);else if(_w(t),q0&&console.error("We should not be hydrating here. This is a bug in React. Please file a bug."),Id(d)){if(g=d.nextSibling&&d.nextSibling.dataset,g){x=g.dgst;var Z=g.msg;f=g.stck;var B=g.cstck}d=Z,g=x,m=f,x=b=B,b=d?Error(d):Error("The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."),b.stack=m||"",b.digest=g,g=x===void 0?null:x,m={value:b,source:null,stack:g},typeof g==="string"&&fr.set(b,m),Gm(m),t=n5(a,t,w)}else if(Ya||Zm(a,t,w,!1),g=(w&a.childLanes)!==0,Ya||g){if(g=k0,g!==null&&(m=w&-w,m=(m&42)!==0?1:t1(m),m=(m&(g.suspendedLanes|w))!==0?0:m,m!==0&&m!==Y.retryLane))throw Y.retryLane=m,ka(a,m),ba(g,a,m),If;d.data===Jw||dd(),t=n5(a,t,w)}else d.data===Jw?(t.flags|=192,t.child=a.child,t=null):(a=Y.treeContext,ta=Nt(d.nextSibling),_a=t,q0=!0,Lg=null,Rw=!1,Yt=null,pt=!1,a!==null&&(Yg(),$t[Bt++]=Yw,$t[Bt++]=Xw,$t[Bt++]=Ag,Yw=a.id,Xw=a.overflow,Ag=t),t=j5(t,m.children),t.flags|=4096);return t}if(b)return sw(t),b=m.fallback,d=t.mode,x=a.child,f=x.sibling,m=bw(x,{mode:"hidden",children:m.children}),m.subtreeFlags=x.subtreeFlags&65011712,f!==null?b=bw(f,b):(b=$g(b,d,w,null),b.flags|=2),b.return=t,m.return=t,m.sibling=b,t.child=m,m=b,b=t.child,d=a.child.memoizedState,d===null?d=S5(w):(x=d.cachePool,x!==null?(f=Na._currentValue,x=x.parent!==f?{parent:f,pool:f}:x):x=w4(),d={baseLanes:d.baseLanes|w,cachePool:x}),b.memoizedState=d,b.childLanes=i5(a,g,w),t.memoizedState=Lr,m;return _w(t),w=a.child,a=w.sibling,w=bw(w,{mode:"visible",children:m.children}),w.return=t,w.sibling=null,a!==null&&(g=t.deletions,g===null?(t.deletions=[a],t.flags|=16):g.push(a)),t.child=w,t.memoizedState=null,w}function j5(a,t){return t=G2({mode:"visible",children:t},a.mode),t.return=a,a.child=t}function G2(a,t){return a=L(22,a,null,t),a.lanes=0,a.stateNode={_visibility:n2,_pendingMarkers:null,_retryCache:null,_transitions:null},a}function n5(a,t,w){return h1(t,a.child,null,w),a=j5(t,t.pendingProps.children),a.flags|=2,t.memoizedState=null,a}function tx(a,t,w){a.lanes|=t;var g=a.alternate;g!==null&&(g.lanes|=t),w5(a.return,t,w)}function wx(a,t){var w=Ha(a);return a=!w&&typeof i0(a)==="function",w||a?(w=w?"array":"iterable",console.error("A nested %s was passed to row #%s in <SuspenseList />. Wrap it in an additional SuspenseList to configure its revealOrder: <SuspenseList revealOrder=...> ... <SuspenseList revealOrder=...>{%s}</SuspenseList> ... </SuspenseList>",w,t,w),!1):!0}function E5(a,t,w,g,m){var b=a.memoizedState;b===null?a.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:g,tail:w,tailMode:m}:(b.isBackwards=t,b.rendering=null,b.renderingStartTime=0,b.last=g,b.tail=w,b.tailMode=m)}function gx(a,t,w){var g=t.pendingProps,m=g.revealOrder,b=g.tail;if(g=g.children,m!==void 0&&m!=="forwards"&&m!=="backwards"&&m!=="together"&&!Lf[m])if(Lf[m]=!0,typeof m==="string")switch(m.toLowerCase()){case"together":case"forwards":case"backwards":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. Use lowercase "%s" instead.',m,m.toLowerCase());break;case"forward":case"backward":console.error('"%s" is not a valid value for revealOrder on <SuspenseList />. React uses the -s suffix in the spelling. Use "%ss" instead.',m,m.toLowerCase());break;default:console.error('"%s" is not a supported revealOrder on <SuspenseList />. Did you mean "together", "forwards" or "backwards"?',m)}else console.error('%s is not a supported value for revealOrder on <SuspenseList />. Did you mean "together", "forwards" or "backwards"?',m);b===void 0||Ar[b]||(b!=="collapsed"&&b!=="hidden"?(Ar[b]=!0,console.error('"%s" is not a supported value for tail on <SuspenseList />. Did you mean "collapsed" or "hidden"?',b)):m!=="forwards"&&m!=="backwards"&&(Ar[b]=!0,console.error('<SuspenseList tail="%s" /> is only valid if revealOrder is "forwards" or "backwards". Did you mean to specify revealOrder="forwards"?',b)));a:if((m==="forwards"||m==="backwards")&&g!==void 0&&g!==null&&g!==!1)if(Ha(g)){for(var v=0;v<g.length;v++)if(!wx(g[v],v))break a}else if(v=i0(g),typeof v==="function"){if(v=v.call(g))for(var d=v.next(),x=0;!d.done;d=v.next()){if(!wx(d.value,x))break a;x++}}else console.error('A single row was passed to a <SuspenseList revealOrder="%s" />. This is not useful since it needs multiple rows. Did you mean to pass multiple children or an array?',m);if(Ga(a,t,g,w),g=la.current,(g&$b)!==0)g=g&c1|$b,t.flags|=128;else{if(a!==null&&(a.flags&128)!==0)a:for(a=t.child;a!==null;){if(a.tag===13)a.memoizedState!==null&&tx(a,w,t);else if(a.tag===19)tx(a,w,t);else if(a.child!==null){a.child.return=a,a=a.child;continue}if(a===t)break a;for(;a.sibling===null;){if(a.return===null||a.return===t)break a;a=a.return}a.sibling.return=a.return,a=a.sibling}g&=c1}switch(o0(la,g,t),m){case"forwards":w=t.child;for(m=null;w!==null;)a=w.alternate,a!==null&&Y2(a)===null&&(m=w),w=w.sibling;w=m,w===null?(m=t.child,t.child=null):(m=w.sibling,w.sibling=null),E5(t,!1,m,w,b);break;case"backwards":w=null,m=t.child;for(t.child=null;m!==null;){if(a=m.alternate,a!==null&&Y2(a)===null){t.child=m;break}a=m.sibling,m.sibling=w,w=m,m=a}E5(t,!0,w,null,b);break;case"together":E5(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function xw(a,t,w){if(a!==null&&(t.dependencies=a.dependencies),ia=-1,Dw|=t.lanes,(w&t.childLanes)===0)if(a!==null){if(Zm(a,t,w,!1),(w&t.childLanes)===0)return null}else return null;if(a!==null&&t.child!==a.child)throw Error("Resuming work not yet implemented.");if(t.child!==null){a=t.child,w=bw(a,a.pendingProps),t.child=w;for(w.return=t;a.sibling!==null;)a=a.sibling,w=w.sibling=bw(a,a.pendingProps),w.return=t;w.sibling=null}return t.child}function V5(a,t){if((a.lanes&t)!==0)return!0;return a=a.dependencies,a!==null&&Eb(a)?!0:!1}function Q8(a,t,w){switch(t.tag){case 3:Wa(t,t.stateNode.containerInfo),Ww(t,Na,a.memoizedState.cache),Rm();break;case 27:case 5:V(t);break;case 4:Wa(t,t.stateNode.containerInfo);break;case 10:Ww(t,t.type,t.memoizedProps.value);break;case 12:(w&t.childLanes)!==0&&(t.flags|=4),t.flags|=2048;var g=t.stateNode;g.effectDuration=-0,g.passiveEffectDuration=-0;break;case 13:if(g=t.memoizedState,g!==null){if(g.dehydrated!==null)return _w(t),t.flags|=128,null;if((w&t.child.childLanes)!==0)return ax(a,t,w);return _w(t),a=xw(a,t,w),a!==null?a.sibling:null}_w(t);break;case 19:var m=(a.flags&128)!==0;if(g=(w&t.childLanes)!==0,g||(Zm(a,t,w,!1),g=(w&t.childLanes)!==0),m){if(g)return gx(a,t,w);t.flags|=128}if(m=t.memoizedState,m!==null&&(m.rendering=null,m.tail=null,m.lastEffect=null),o0(la,la.current,t),g)break;else return null;case 22:case 23:return t.lanes=0,E4(a,t,w);case 24:Ww(t,Na,a.memoizedState.cache)}return xw(a,t,w)}function D5(a,t,w){if(t._debugNeedsRemount&&a!==null){w=Vv(t.type,t.key,t.pendingProps,t._debugOwner||null,t.mode,t.lanes),w._debugStack=t._debugStack,w._debugTask=t._debugTask;var g=t.return;if(g===null)throw Error("Cannot swap the root fiber.");if(a.alternate=null,t.alternate=null,w.index=t.index,w.sibling=t.sibling,w.return=t.return,w.ref=t.ref,w._debugInfo=t._debugInfo,t===g.child)g.child=w;else{var m=g.child;if(m===null)throw Error("Expected parent to have a child.");for(;m.sibling!==t;)if(m=m.sibling,m===null)throw Error("Expected to find the previous sibling.");m.sibling=w}return t=g.deletions,t===null?(g.deletions=[a],g.flags|=16):t.push(a),w.flags|=2,w}if(a!==null)if(a.memoizedProps!==t.pendingProps||t.type!==a.type)Ya=!0;else{if(!V5(a,w)&&(t.flags&128)===0)return Ya=!1,Q8(a,t,w);Ya=(a.flags&131072)!==0?!0:!1}else{if(Ya=!1,g=q0)Yg(),g=(t.flags&1048576)!==0;g&&(g=t.index,Yg(),n3(t,V2,g))}switch(t.lanes=0,t.tag){case 16:a:if(g=t.pendingProps,a=Ew(t.elementType),t.type=a,typeof a==="function")Ev(a)?(g=Ig(a,g),t.tag=1,t.type=a=lg(a),t=p4(null,t,a,g,w)):(t.tag=0,c5(t,a),t.type=a=lg(a),t=h5(null,t,a,g,w));else{if(a!==void 0&&a!==null){if(m=a.$$typeof,m===Sm){t.tag=11,t.type=a=jv(a),t=i4(null,t,a,g,w);break a}else if(m===F2){t.tag=14,t=j4(null,t,a,g,w);break a}}throw t="",a!==null&&typeof a==="object"&&a.$$typeof===tt&&(t=" Did you wrap a component in React.lazy() more than once?"),a=I0(a)||a,Error("Element type is invalid. Received a promise that resolves to: "+a+". Lazy element type must resolve to a class or function."+t)}return t;case 0:return h5(a,t,t.type,t.pendingProps,w);case 1:return g=t.type,m=Ig(g,t.pendingProps),p4(a,t,g,m,w);case 3:a:{if(Wa(t,t.stateNode.containerInfo),a===null)throw Error("Should have a current fiber. This is a bug in React.");g=t.pendingProps;var b=t.memoizedState;m=b.element,x5(a,t),Qm(t,g,null,w);var v=t.memoizedState;if(g=v.cache,Ww(t,Na,g),g!==b.cache&&g5(t,[Na],w,!0),Im(),g=v.element,b.isDehydrated)if(b={element:g,isDehydrated:!1,cache:v.cache},t.updateQueue.baseState=b,t.memoizedState=b,t.flags&256){t=e4(a,t,g,w);break a}else if(g!==m){m=Da(Error("This root received an early update, before anything was able hydrate. Switched the entire root to client rendering."),t),Gm(m),t=e4(a,t,g,w);break a}else{switch(a=t.stateNode.containerInfo,a.nodeType){case 9:a=a.body;break;default:a=a.nodeName==="HTML"?a.ownerDocument.body:a}ta=Nt(a.firstChild),_a=t,q0=!0,Lg=null,Rw=!1,Yt=null,pt=!0,a=zf(t,null,g,w);for(t.child=a;a;)a.flags=a.flags&-3|4096,a=a.sibling}else{if(Rm(),g===m){t=xw(a,t,w);break a}Ga(a,t,g,w)}t=t.child}return t;case 26:return R2(a,t),a===null?(a=H6(t.type,null,t.pendingProps,null))?t.memoizedState=a:q0||(a=t.type,w=t.pendingProps,g=ra(kw.current),g=q2(g).createElement(a),g[Aa]=t,g[Sa]=w,Za(g,a,w),U(g),t.stateNode=g):t.memoizedState=H6(t.type,a.memoizedProps,t.pendingProps,a.memoizedState),null;case 27:return V(t),a===null&&q0&&(g=ra(kw.current),m=c(),g=t.stateNode=G6(t.type,t.pendingProps,g,m,!1),Rw||(m=o6(g,t.type,t.pendingProps,m),m!==null&&(Xg(t,0).serverProps=m)),_a=t,pt=!0,m=ta,Cw(t.type)?(er=m,ta=Nt(g.firstChild)):ta=m),Ga(a,t,t.pendingProps.children,w),R2(a,t),a===null&&(t.flags|=4194304),t.child;case 5:return a===null&&q0&&(b=c(),g=kv(t.type,b.ancestorInfo),m=ta,(v=!m)||(v=xN(m,t.type,t.pendingProps,pt),v!==null?(t.stateNode=v,Rw||(b=o6(v,t.type,t.pendingProps,b),b!==null&&(Xg(t,0).serverProps=b)),_a=t,ta=Nt(v.firstChild),pt=!1,b=!0):b=!1,v=!b),v&&(g&&t5(t,m),Rg(t))),V(t),m=t.type,b=t.pendingProps,v=a!==null?a.memoizedProps:null,g=b.children,Md(m,b)?g=null:v!==null&&Md(m,v)&&(t.flags|=32),t.memoizedState!==null&&(m=z5(a,t,G8,null,null,w),Lb._currentValue=m),R2(a,t),Ga(a,t,g,w),t.child;case 6:return a===null&&q0&&(a=t.pendingProps,w=c(),g=w.ancestorInfo.current,a=g!=null?ub(a,g.tag,w.ancestorInfo.implicitRootScope):!0,w=ta,(g=!w)||(g=fN(w,t.pendingProps,pt),g!==null?(t.stateNode=g,_a=t,ta=null,g=!0):g=!1,g=!g),g&&(a&&t5(t,w),Rg(t))),null;case 13:return ax(a,t,w);case 4:return Wa(t,t.stateNode.containerInfo),g=t.pendingProps,a===null?t.child=h1(t,null,g,w):Ga(a,t,g,w),t.child;case 11:return i4(a,t,t.type,t.pendingProps,w);case 7:return Ga(a,t,t.pendingProps,w),t.child;case 8:return Ga(a,t,t.pendingProps.children,w),t.child;case 12:return t.flags|=4,t.flags|=2048,g=t.stateNode,g.effectDuration=-0,g.passiveEffectDuration=-0,Ga(a,t,t.pendingProps.children,w),t.child;case 10:return g=t.type,m=t.pendingProps,b=m.value,"value"in m||Wf||(Wf=!0,console.error("The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?")),Ww(t,g,b),Ga(a,t,m.children,w),t.child;case 9:return m=t.type._context,g=t.pendingProps.children,typeof g!=="function"&&console.error("A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."),Gg(t),m=D0(m),dt(t),g=Mr(g,m,void 0),It(),t.flags|=1,Ga(a,t,g,w),t.child;case 14:return j4(a,t,t.type,t.pendingProps,w);case 15:return n4(a,t,t.type,t.pendingProps,w);case 19:return gx(a,t,w);case 31:return g=t.pendingProps,w=t.mode,g={mode:g.mode,children:g.children},a===null?(a=G2(g,w),a.ref=t.ref,t.child=a,a.return=t,t=a):(a=bw(a.child,g),a.ref=t.ref,t.child=a,a.return=t,t=a),t;case 22:return E4(a,t,w);case 24:return Gg(t),g=D0(Na),a===null?(m=d5(),m===null&&(m=k0,b=m5(),m.pooledCache=b,Zg(b),b!==null&&(m.pooledCacheLanes|=w),m=b),t.memoizedState={parent:g,cache:m},r5(t),Ww(t,Na,m)):((a.lanes&w)!==0&&(x5(a,t),Qm(t,null,null,w),Im()),m=a.memoizedState,b=t.memoizedState,m.parent!==g?(m={parent:g,cache:g},t.memoizedState=m,t.lanes===0&&(t.memoizedState=t.updateQueue.baseState=m),Ww(t,Na,g)):(g=b.cache,Ww(t,Na,g),g!==m.cache&&g5(t,[Na],w,!0))),Ga(a,t,t.pendingProps.children,w),t.child;case 29:throw t.pendingProps}throw Error("Unknown unit of work tag ("+t.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function fw(a){a.flags|=4}function mx(a,t){if(t.type!=="stylesheet"||(t.state.loading&Ht)!==Sg)a.flags&=-16777217;else if(a.flags|=16777216,!U6(t)){if(t=Zt.current,t!==null&&((Z0&4194048)===Z0?aw!==null:(Z0&62914560)!==Z0&&(Z0&536870912)===0||t!==aw))throw ob=Br,T9;a.flags|=8192}}function Z2(a,t){t!==null&&(a.flags|=4),a.flags&16384&&(t=a.tag!==22?dm():536870912,a.lanes|=t,Cg|=t)}function Wm(a,t){if(!q0)switch(a.tailMode){case"hidden":t=a.tail;for(var w=null;t!==null;)t.alternate!==null&&(w=t),t=t.sibling;w===null?a.tail=null:w.sibling=null;break;case"collapsed":w=a.tail;for(var g=null;w!==null;)w.alternate!==null&&(g=w),w=w.sibling;g===null?t||a.tail===null?a.tail=null:a.tail.sibling=null:g.sibling=null}}function p0(a){var t=a.alternate!==null&&a.alternate.child===a.child,w=0,g=0;if(t)if((a.mode&Ma)!==j0){for(var{selfBaseDuration:m,child:b}=a;b!==null;)w|=b.lanes|b.childLanes,g|=b.subtreeFlags&65011712,g|=b.flags&65011712,m+=b.treeBaseDuration,b=b.sibling;a.treeBaseDuration=m}else for(m=a.child;m!==null;)w|=m.lanes|m.childLanes,g|=m.subtreeFlags&65011712,g|=m.flags&65011712,m.return=a,m=m.sibling;else if((a.mode&Ma)!==j0){m=a.actualDuration,b=a.selfBaseDuration;for(var v=a.child;v!==null;)w|=v.lanes|v.childLanes,g|=v.subtreeFlags,g|=v.flags,m+=v.actualDuration,b+=v.treeBaseDuration,v=v.sibling;a.actualDuration=m,a.treeBaseDuration=b}else for(m=a.child;m!==null;)w|=m.lanes|m.childLanes,g|=m.subtreeFlags,g|=m.flags,m.return=a,m=m.sibling;return a.subtreeFlags|=g,a.childLanes=w,t}function U8(a,t,w){var g=t.pendingProps;switch(a5(t),t.tag){case 31:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return p0(t),null;case 1:return p0(t),null;case 3:if(w=t.stateNode,g=null,a!==null&&(g=a.memoizedState.cache),t.memoizedState.cache!==g&&(t.flags|=2048),vw(Na,t),K(t),w.pendingContext&&(w.context=w.pendingContext,w.pendingContext=null),a===null||a.child===null)Xm(t)?(p3(),fw(t)):a===null||a.memoizedState.isDehydrated&&(t.flags&256)===0||(t.flags|=1024,D3());return p0(t),null;case 26:return w=t.memoizedState,a===null?(fw(t),w!==null?(p0(t),mx(t,w)):(p0(t),t.flags&=-16777217)):w?w!==a.memoizedState?(fw(t),p0(t),mx(t,w)):(p0(t),t.flags&=-16777217):(a.memoizedProps!==g&&fw(t),p0(t),t.flags&=-16777217),null;case 27:R0(t),w=ra(kw.current);var m=t.type;if(a!==null&&t.stateNode!=null)a.memoizedProps!==g&&fw(t);else{if(!g){if(t.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return p0(t),null}a=c(),Xm(t)?E3(t,a):(a=G6(m,g,w,a,!0),t.stateNode=a,fw(t))}return p0(t),null;case 5:if(R0(t),w=t.type,a!==null&&t.stateNode!=null)a.memoizedProps!==g&&fw(t);else{if(!g){if(t.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");return p0(t),null}if(m=c(),Xm(t))E3(t,m);else{switch(a=ra(kw.current),kv(w,m.ancestorInfo),m=m.context,a=q2(a),m){case tm:a=a.createElementNS(J1,w);break;case Mv:a=a.createElementNS(h2,w);break;default:switch(w){case"svg":a=a.createElementNS(J1,w);break;case"math":a=a.createElementNS(h2,w);break;case"script":a=a.createElement("div"),a.innerHTML="<script></script>",a=a.removeChild(a.firstChild);break;case"select":a=typeof g.is==="string"?a.createElement("select",{is:g.is}):a.createElement("select"),g.multiple?a.multiple=!0:g.size&&(a.size=g.size);break;default:a=typeof g.is==="string"?a.createElement(w,{is:g.is}):a.createElement(w),w.indexOf("-")===-1&&(w!==w.toLowerCase()&&console.error("<%s /> is using incorrect casing. Use PascalCase for React components, or lowercase for HTML elements.",w),Object.prototype.toString.call(a)!=="[object HTMLUnknownElement]"||$w.call(Df,w)||(Df[w]=!0,console.error("The tag <%s> is unrecognized in this browser. If you meant to render a React component, start its name with an uppercase letter.",w)))}}a[Aa]=t,a[Sa]=g;a:for(m=t.child;m!==null;){if(m.tag===5||m.tag===6)a.appendChild(m.stateNode);else if(m.tag!==4&&m.tag!==27&&m.child!==null){m.child.return=m,m=m.child;continue}if(m===t)break a;for(;m.sibling===null;){if(m.return===null||m.return===t)break a;m=m.return}m.sibling.return=m.return,m=m.sibling}t.stateNode=a;a:switch(Za(a,w,g),w){case"button":case"input":case"select":case"textarea":a=!!g.autoFocus;break a;case"img":a=!0;break a;default:a=!1}a&&fw(t)}}return p0(t),t.flags&=-16777217,null;case 6:if(a&&t.stateNode!=null)a.memoizedProps!==g&&fw(t);else{if(typeof g!=="string"&&t.stateNode===null)throw Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");if(a=ra(kw.current),w=c(),Xm(t)){a=t.stateNode,w=t.memoizedProps,m=!Rw,g=null;var b=_a;if(b!==null)switch(b.tag){case 3:m&&(m=Y6(a,w,g),m!==null&&(Xg(t,0).serverProps=m));break;case 27:case 5:g=b.memoizedProps,m&&(m=Y6(a,w,g),m!==null&&(Xg(t,0).serverProps=m))}a[Aa]=t,a=a.nodeValue===w||g!==null&&g.suppressHydrationWarning===!0||v6(a.nodeValue,w)?!0:!1,a||Rg(t)}else m=w.ancestorInfo.current,m!=null&&ub(g,m.tag,w.ancestorInfo.implicitRootScope),a=q2(a).createTextNode(g),a[Aa]=t,t.stateNode=a}return p0(t),null;case 13:if(g=t.memoizedState,a===null||a.memoizedState!==null&&a.memoizedState.dehydrated!==null){if(m=Xm(t),g!==null&&g.dehydrated!==null){if(a===null){if(!m)throw Error("A dehydrated suspense component was completed without a hydrated node. This is probably a bug in React.");if(m=t.memoizedState,m=m!==null?m.dehydrated:null,!m)throw Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");m[Aa]=t,p0(t),(t.mode&Ma)!==j0&&g!==null&&(m=t.child,m!==null&&(t.treeBaseDuration-=m.treeBaseDuration))}else p3(),Rm(),(t.flags&128)===0&&(t.memoizedState=null),t.flags|=4,p0(t),(t.mode&Ma)!==j0&&g!==null&&(m=t.child,m!==null&&(t.treeBaseDuration-=m.treeBaseDuration));m=!1}else m=D3(),a!==null&&a.memoizedState!==null&&(a.memoizedState.hydrationErrors=m),m=!0;if(!m){if(t.flags&256)return rw(t),t;return rw(t),null}}if(rw(t),(t.flags&128)!==0)return t.lanes=w,(t.mode&Ma)!==j0&&pb(t),t;return w=g!==null,a=a!==null&&a.memoizedState!==null,w&&(g=t.child,m=null,g.alternate!==null&&g.alternate.memoizedState!==null&&g.alternate.memoizedState.cachePool!==null&&(m=g.alternate.memoizedState.cachePool.pool),b=null,g.memoizedState!==null&&g.memoizedState.cachePool!==null&&(b=g.memoizedState.cachePool.pool),b!==m&&(g.flags|=2048)),w!==a&&w&&(t.child.flags|=8192),Z2(t,t.updateQueue),p0(t),(t.mode&Ma)!==j0&&w&&(a=t.child,a!==null&&(t.treeBaseDuration-=a.treeBaseDuration)),null;case 4:return K(t),a===null&&Bd(t.stateNode.containerInfo),p0(t),null;case 10:return vw(t.type,t),p0(t),null;case 19:if(X0(la,t),m=t.memoizedState,m===null)return p0(t),null;if(g=(t.flags&128)!==0,b=m.rendering,b===null)if(g)Wm(m,!1);else{if(wa!==Mw||a!==null&&(a.flags&128)!==0)for(a=t.child;a!==null;){if(b=Y2(a),b!==null){t.flags|=128,Wm(m,!1),a=b.updateQueue,t.updateQueue=a,Z2(t,a),t.subtreeFlags=0,a=w;for(w=t.child;w!==null;)j3(w,a),w=w.sibling;return o0(la,la.current&c1|$b,t),t.child}a=a.sibling}m.tail!==null&&jt()>ov&&(t.flags|=128,g=!0,Wm(m,!1),t.lanes=4194304)}else{if(!g)if(a=Y2(b),a!==null){if(t.flags|=128,g=!0,a=a.updateQueue,t.updateQueue=a,Z2(t,a),Wm(m,!0),m.tail===null&&m.tailMode==="hidden"&&!b.alternate&&!q0)return p0(t),null}else 2*jt()-m.renderingStartTime>ov&&w!==536870912&&(t.flags|=128,g=!0,Wm(m,!1),t.lanes=4194304);m.isBackwards?(b.sibling=t.child,t.child=b):(a=m.last,a!==null?a.sibling=b:t.child=b,m.last=b)}if(m.tail!==null)return a=m.tail,m.rendering=a,m.tail=a.sibling,m.renderingStartTime=jt(),a.sibling=null,w=la.current,w=g?w&c1|$b:w&c1,o0(la,w,t),a;return p0(t),null;case 22:case 23:return rw(t),o5(t),g=t.memoizedState!==null,a!==null?a.memoizedState!==null!==g&&(t.flags|=8192):g&&(t.flags|=8192),g?(w&536870912)!==0&&(t.flags&128)===0&&(p0(t),t.subtreeFlags&6&&(t.flags|=8192)):p0(t),w=t.updateQueue,w!==null&&Z2(t,w.retryQueue),w=null,a!==null&&a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(w=a.memoizedState.cachePool.pool),g=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(g=t.memoizedState.cachePool.pool),g!==w&&(t.flags|=2048),a!==null&&X0(Og,t),null;case 24:return w=null,a!==null&&(w=a.memoizedState.cache),t.memoizedState.cache!==w&&(t.flags|=2048),vw(Na,t),p0(t),null;case 25:return null;case 30:return null}throw Error("Unknown unit of work tag ("+t.tag+"). This error is likely caused by a bug in React. Please file an issue.")}function q8(a,t){switch(a5(t),t.tag){case 1:return a=t.flags,a&65536?(t.flags=a&-65537|128,(t.mode&Ma)!==j0&&pb(t),t):null;case 3:return vw(Na,t),K(t),a=t.flags,(a&65536)!==0&&(a&128)===0?(t.flags=a&-65537|128,t):null;case 26:case 27:case 5:return R0(t),null;case 13:if(rw(t),a=t.memoizedState,a!==null&&a.dehydrated!==null){if(t.alternate===null)throw Error("Threw in newly mounted dehydrated component. This is likely a bug in React. Please file an issue.");Rm()}return a=t.flags,a&65536?(t.flags=a&-65537|128,(t.mode&Ma)!==j0&&pb(t),t):null;case 19:return X0(la,t),null;case 4:return K(t),null;case 10:return vw(t.type,t),null;case 22:case 23:return rw(t),o5(t),a!==null&&X0(Og,t),a=t.flags,a&65536?(t.flags=a&-65537|128,(t.mode&Ma)!==j0&&pb(t),t):null;case 24:return vw(Na,t),null;case 25:return null;default:return null}}function bx(a,t){switch(a5(t),t.tag){case 3:vw(Na,t),K(t);break;case 26:case 27:case 5:R0(t);break;case 4:K(t);break;case 13:rw(t);break;case 19:X0(la,t);break;case 10:vw(t.type,t);break;case 22:case 23:rw(t),o5(t),a!==null&&X0(Og,t);break;case 24:vw(Na,t)}}function Tt(a){return(a.mode&Ma)!==j0}function vx(a,t){Tt(a)?(ut(),Km(t,a),Ct()):Km(t,a)}function p5(a,t,w){Tt(a)?(ut(),f1(w,a,t),Ct()):f1(w,a,t)}function Km(a,t){try{var w=t.updateQueue,g=w!==null?w.lastEffect:null;if(g!==null){var m=g.next;w=m;do{if((w.tag&a)===a&&((a&za)!==Xt?_!==null&&typeof _.markComponentPassiveEffectMountStarted==="function"&&_.markComponentPassiveEffectMountStarted(t):(a&Ja)!==Xt&&_!==null&&typeof _.markComponentLayoutEffectMountStarted==="function"&&_.markComponentLayoutEffectMountStarted(t),g=void 0,(a&sa)!==Xt&&(e1=!0),g=k(t,i7,w),(a&sa)!==Xt&&(e1=!1),(a&za)!==Xt?_!==null&&typeof _.markComponentPassiveEffectMountStopped==="function"&&_.markComponentPassiveEffectMountStopped():(a&Ja)!==Xt&&_!==null&&typeof _.markComponentLayoutEffectMountStopped==="function"&&_.markComponentLayoutEffectMountStopped(),g!==void 0&&typeof g!=="function")){var b=void 0;b=(w.tag&Ja)!==0?"useLayoutEffect":(w.tag&sa)!==0?"useInsertionEffect":"useEffect";var v=void 0;v=g===null?" You returned null. If your effect does not require clean up, return undefined (or nothing).":typeof g.then==="function"?`
|
|
137
|
-
|
|
138
|
-
It looks like you wrote `+b+`(async () => ...) or returned a Promise. Instead, write the async function inside your effect and call it immediately:
|
|
139
|
-
|
|
140
|
-
`+b+`(() => {
|
|
141
|
-
async function fetchData() {
|
|
142
|
-
// You can await here
|
|
143
|
-
const response = await MyAPI.getData(someId);
|
|
144
|
-
// ...
|
|
145
|
-
}
|
|
146
|
-
fetchData();
|
|
147
|
-
}, [someId]); // Or [] if effect doesn't need props or state
|
|
148
|
-
|
|
149
|
-
Learn more about data fetching with Hooks: https://react.dev/link/hooks-data-fetching`:" You returned: "+g,k(t,function(d,x){console.error("%s must not return anything besides a function, which is used for clean-up.%s",d,x)},b,v)}w=w.next}while(w!==m)}}catch(d){C0(t,t.return,d)}}function f1(a,t,w){try{var g=t.updateQueue,m=g!==null?g.lastEffect:null;if(m!==null){var b=m.next;g=b;do{if((g.tag&a)===a){var v=g.inst,d=v.destroy;d!==void 0&&(v.destroy=void 0,(a&za)!==Xt?_!==null&&typeof _.markComponentPassiveEffectUnmountStarted==="function"&&_.markComponentPassiveEffectUnmountStarted(t):(a&Ja)!==Xt&&_!==null&&typeof _.markComponentLayoutEffectUnmountStarted==="function"&&_.markComponentLayoutEffectUnmountStarted(t),(a&sa)!==Xt&&(e1=!0),m=t,k(m,j7,m,w,d),(a&sa)!==Xt&&(e1=!1),(a&za)!==Xt?_!==null&&typeof _.markComponentPassiveEffectUnmountStopped==="function"&&_.markComponentPassiveEffectUnmountStopped():(a&Ja)!==Xt&&_!==null&&typeof _.markComponentLayoutEffectUnmountStopped==="function"&&_.markComponentLayoutEffectUnmountStopped())}g=g.next}while(g!==b)}}catch(x){C0(t,t.return,x)}}function dx(a,t){Tt(a)?(ut(),Km(t,a),Ct()):Km(t,a)}function e5(a,t,w){Tt(a)?(ut(),f1(w,a,t),Ct()):f1(w,a,t)}function rx(a){var t=a.updateQueue;if(t!==null){var w=a.stateNode;a.type.defaultProps||"ref"in a.memoizedProps||i1||(w.props!==a.memoizedProps&&console.error("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",O(a)||"instance"),w.state!==a.memoizedState&&console.error("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",O(a)||"instance"));try{k(a,x4,t,w)}catch(g){C0(a,a.return,g)}}}function A8(a,t,w){return a.getSnapshotBeforeUpdate(t,w)}function L8(a,t){var{memoizedProps:w,memoizedState:g}=t;t=a.stateNode,a.type.defaultProps||"ref"in a.memoizedProps||i1||(t.props!==a.memoizedProps&&console.error("Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",O(a)||"instance"),t.state!==a.memoizedState&&console.error("Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",O(a)||"instance"));try{var m=Ig(a.type,w,a.elementType===a.type),b=k(a,A8,t,m,g);w=Kf,b!==void 0||w.has(a.type)||(w.add(a.type),k(a,function(){console.error("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.",O(a))})),t.__reactInternalSnapshotBeforeUpdate=b}catch(v){C0(a,a.return,v)}}function xx(a,t,w){w.props=Ig(a.type,a.memoizedProps),w.state=a.memoizedState,Tt(a)?(ut(),k(a,bf,a,t,w),Ct()):k(a,bf,a,t,w)}function W8(a){var t=a.ref;if(t!==null){switch(a.tag){case 26:case 27:case 5:var w=a.stateNode;break;case 30:w=a.stateNode;break;default:w=a.stateNode}if(typeof t==="function")if(Tt(a))try{ut(),a.refCleanup=t(w)}finally{Ct()}else a.refCleanup=t(w);else typeof t==="string"?console.error("String refs are no longer supported."):t.hasOwnProperty("current")||console.error("Unexpected ref object provided for %s. Use either a ref-setter function or React.createRef().",O(a)),t.current=w}}function Om(a,t){try{k(a,W8,a)}catch(w){C0(a,t,w)}}function kt(a,t){var{ref:w,refCleanup:g}=a;if(w!==null)if(typeof g==="function")try{if(Tt(a))try{ut(),k(a,g)}finally{Ct(a)}else k(a,g)}catch(m){C0(a,t,m)}finally{a.refCleanup=null,a=a.alternate,a!=null&&(a.refCleanup=null)}else if(typeof w==="function")try{if(Tt(a))try{ut(),k(a,w,null)}finally{Ct(a)}else k(a,w,null)}catch(m){C0(a,t,m)}else w.current=null}function fx(a,t,w,g){var m=a.memoizedProps,b=m.id,v=m.onCommit;m=m.onRender,t=t===null?"mount":"update",e2&&(t="nested-update"),typeof m==="function"&&m(b,t,a.actualDuration,a.treeBaseDuration,a.actualStartTime,w),typeof v==="function"&&v(a.memoizedProps.id,t,g,w)}function K8(a,t,w,g){var m=a.memoizedProps;a=m.id,m=m.onPostCommit,t=t===null?"mount":"update",e2&&(t="nested-update"),typeof m==="function"&&m(a,t,g,w)}function ox(a){var{type:t,memoizedProps:w,stateNode:g}=a;try{k(a,aN,g,t,w,a)}catch(m){C0(a,a.return,m)}}function ad(a,t,w){try{k(a,tN,a.stateNode,a.type,w,t,a)}catch(g){C0(a,a.return,g)}}function Nx(a){return a.tag===5||a.tag===3||a.tag===26||a.tag===27&&Cw(a.type)||a.tag===4}function td(a){a:for(;;){for(;a.sibling===null;){if(a.return===null||Nx(a.return))return null;a=a.return}a.sibling.return=a.return;for(a=a.sibling;a.tag!==5&&a.tag!==6&&a.tag!==18;){if(a.tag===27&&Cw(a.type))continue a;if(a.flags&2)continue a;if(a.child===null||a.tag===4)continue a;else a.child.return=a,a=a.child}if(!(a.flags&2))return a.stateNode}}function wd(a,t,w){var g=a.tag;if(g===5||g===6)a=a.stateNode,t?(w.nodeType===9?w.body:w.nodeName==="HTML"?w.ownerDocument.body:w).insertBefore(a,t):(t=w.nodeType===9?w.body:w.nodeName==="HTML"?w.ownerDocument.body:w,t.appendChild(a),w=w._reactRootContainer,w!==null&&w!==void 0||t.onclick!==null||(t.onclick=U2));else if(g!==4&&(g===27&&Cw(a.type)&&(w=a.stateNode,t=null),a=a.child,a!==null))for(wd(a,t,w),a=a.sibling;a!==null;)wd(a,t,w),a=a.sibling}function H2(a,t,w){var g=a.tag;if(g===5||g===6)a=a.stateNode,t?w.insertBefore(a,t):w.appendChild(a);else if(g!==4&&(g===27&&Cw(a.type)&&(w=a.stateNode),a=a.child,a!==null))for(H2(a,t,w),a=a.sibling;a!==null;)H2(a,t,w),a=a.sibling}function O8(a){for(var t,w=a.return;w!==null;){if(Nx(w)){t=w;break}w=w.return}if(t==null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");switch(t.tag){case 27:t=t.stateNode,w=td(a),H2(a,w,t);break;case 5:w=t.stateNode,t.flags&32&&(l6(w),t.flags&=-33),t=td(a),H2(a,t,w);break;case 3:case 4:t=t.stateNode.containerInfo,w=td(a),wd(a,w,t);break;default:throw Error("Invalid host parent fiber. This error is likely caused by a bug in React. Please file an issue.")}}function zx(a){var{stateNode:t,memoizedProps:w}=a;try{k(a,lN,a.type,w,t,a)}catch(g){C0(a,a.return,g)}}function P8(a,t){if(a=a.containerInfo,Vr=Uv,a=k3(a),Sv(a)){if("selectionStart"in a)var w={start:a.selectionStart,end:a.selectionEnd};else a:{w=(w=a.ownerDocument)&&w.defaultView||window;var g=w.getSelection&&w.getSelection();if(g&&g.rangeCount!==0){w=g.anchorNode;var{anchorOffset:m,focusNode:b}=g;g=g.focusOffset;try{w.nodeType,b.nodeType}catch(F){w=null;break a}var v=0,d=-1,x=-1,f=0,Y=0,Z=a,B=null;t:for(;;){for(var H;;){if(Z!==w||m!==0&&Z.nodeType!==3||(d=v+m),Z!==b||g!==0&&Z.nodeType!==3||(x=v+g),Z.nodeType===3&&(v+=Z.nodeValue.length),(H=Z.firstChild)===null)break;B=Z,Z=H}for(;;){if(Z===a)break t;if(B===w&&++f===m&&(d=v),B===b&&++Y===g&&(x=v),(H=Z.nextSibling)!==null)break;Z=B,B=Z.parentNode}Z=H}w=d===-1||x===-1?null:{start:d,end:x}}else w=null}w=w||{start:0,end:0}}else w=null;Dr={focusedElem:a,selectionRange:w},Uv=!1;for(Xa=t;Xa!==null;)if(t=Xa,a=t.child,(t.subtreeFlags&1024)!==0&&a!==null)a.return=t,Xa=a;else for(;Xa!==null;){switch(a=t=Xa,w=a.alternate,m=a.flags,a.tag){case 0:break;case 11:case 15:break;case 1:(m&1024)!==0&&w!==null&&L8(a,w);break;case 3:if((m&1024)!==0){if(a=a.stateNode.containerInfo,w=a.nodeType,w===9)Jd(a);else if(w===1)switch(a.nodeName){case"HEAD":case"HTML":case"BODY":Jd(a);break;default:a.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((m&1024)!==0)throw Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.")}if(a=t.sibling,a!==null){a.return=t.return,Xa=a;break}Xa=t.return}}function lx(a,t,w){var g=w.flags;switch(w.tag){case 0:case 11:case 15:Nw(a,w),g&4&&vx(w,Ja|Rt);break;case 1:if(Nw(a,w),g&4)if(a=w.stateNode,t===null)w.type.defaultProps||"ref"in w.memoizedProps||i1||(a.props!==w.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",O(w)||"instance"),a.state!==w.memoizedState&&console.error("Expected %s state to match memoized state before componentDidMount. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",O(w)||"instance")),Tt(w)?(ut(),k(w,Jr,w,a),Ct()):k(w,Jr,w,a);else{var m=Ig(w.type,t.memoizedProps);t=t.memoizedState,w.type.defaultProps||"ref"in w.memoizedProps||i1||(a.props!==w.memoizedProps&&console.error("Expected %s props to match memoized props before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.",O(w)||"instance"),a.state!==w.memoizedState&&console.error("Expected %s state to match memoized state before componentDidUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.",O(w)||"instance")),Tt(w)?(ut(),k(w,wf,w,a,m,t,a.__reactInternalSnapshotBeforeUpdate),Ct()):k(w,wf,w,a,m,t,a.__reactInternalSnapshotBeforeUpdate)}g&64&&rx(w),g&512&&Om(w,w.return);break;case 3:if(t=dw(),Nw(a,w),g&64&&(g=w.updateQueue,g!==null)){if(m=null,w.child!==null)switch(w.child.tag){case 27:case 5:m=w.child.stateNode;break;case 1:m=w.child.stateNode}try{k(w,x4,g,m)}catch(v){C0(w,w.return,v)}}a.effectDuration+=Db(t);break;case 27:t===null&&g&4&&zx(w);case 26:case 5:Nw(a,w),t===null&&g&4&&ox(w),g&512&&Om(w,w.return);break;case 12:if(g&4){g=dw(),Nw(a,w),a=w.stateNode,a.effectDuration+=Mm(g);try{k(w,fx,w,t,p2,a.effectDuration)}catch(v){C0(w,w.return,v)}}else Nw(a,w);break;case 13:Nw(a,w),g&4&&Yx(a,w),g&64&&(a=w.memoizedState,a!==null&&(a=a.dehydrated,a!==null&&(w=h8.bind(null,w),oN(a,w))));break;case 22:if(g=w.memoizedState!==null||Hw,!g){t=t!==null&&t.memoizedState!==null||va,m=Hw;var b=va;Hw=g,(va=t)&&!b?zw(a,w,(w.subtreeFlags&8772)!==0):Nw(a,w),Hw=m,va=b}break;case 30:break;default:Nw(a,w)}}function $x(a){var t=a.alternate;t!==null&&(a.alternate=null,$x(t)),a.child=null,a.deletions=null,a.sibling=null,a.tag===5&&(t=a.stateNode,t!==null&&fg(t)),a.stateNode=null,a._debugOwner=null,a.return=null,a.dependencies=null,a.memoizedProps=null,a.memoizedState=null,a.pendingProps=null,a.stateNode=null,a.updateQueue=null}function ow(a,t,w){for(w=w.child;w!==null;)Bx(a,t,w),w=w.sibling}function Bx(a,t,w){if(qa&&typeof qa.onCommitFiberUnmount==="function")try{qa.onCommitFiberUnmount(H1,w)}catch(b){nt||(nt=!0,console.error("React instrumentation encountered an error: %s",b))}switch(w.tag){case 26:va||kt(w,t),ow(a,t,w),w.memoizedState?w.memoizedState.count--:w.stateNode&&(w=w.stateNode,w.parentNode.removeChild(w));break;case 27:va||kt(w,t);var g=fa,m=ja;Cw(w.type)&&(fa=w.stateNode,ja=!1),ow(a,t,w),k(w,um,w.stateNode),fa=g,ja=m;break;case 5:va||kt(w,t);case 6:if(g=fa,m=ja,fa=null,ow(a,t,w),fa=g,ja=m,fa!==null)if(ja)try{k(w,mN,fa,w.stateNode)}catch(b){C0(w,t,b)}else try{k(w,gN,fa,w.stateNode)}catch(b){C0(w,t,b)}break;case 18:fa!==null&&(ja?(a=fa,$6(a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a,w.stateNode),cm(a)):$6(fa,w.stateNode));break;case 4:g=fa,m=ja,fa=w.stateNode.containerInfo,ja=!0,ow(a,t,w),fa=g,ja=m;break;case 0:case 11:case 14:case 15:va||f1(sa,w,t),va||p5(w,t,Ja),ow(a,t,w);break;case 1:va||(kt(w,t),g=w.stateNode,typeof g.componentWillUnmount==="function"&&xx(w,t,g)),ow(a,t,w);break;case 21:ow(a,t,w);break;case 22:va=(g=va)||w.memoizedState!==null,ow(a,t,w),va=g;break;default:ow(a,t,w)}}function Yx(a,t){if(t.memoizedState===null&&(a=t.alternate,a!==null&&(a=a.memoizedState,a!==null&&(a=a.dehydrated,a!==null))))try{k(t,zN,a)}catch(w){C0(t,t.return,w)}}function _8(a){switch(a.tag){case 13:case 19:var t=a.stateNode;return t===null&&(t=a.stateNode=new Of),t;case 22:return a=a.stateNode,t=a._retryCache,t===null&&(t=a._retryCache=new Of),t;default:throw Error("Unexpected Suspense handler tag ("+a.tag+"). This is a bug in React.")}}function gd(a,t){var w=_8(a);t.forEach(function(g){var m=c8.bind(null,a,g);if(!w.has(g)){if(w.add(g),Lt)if(j1!==null&&n1!==null)Fm(n1,j1);else throw Error("Expected finished root and lanes to be set. This is a bug in React.");g.then(m,m)}})}function pa(a,t){var w=t.deletions;if(w!==null)for(var g=0;g<w.length;g++){var m=a,b=t,v=w[g],d=b;a:for(;d!==null;){switch(d.tag){case 27:if(Cw(d.type)){fa=d.stateNode,ja=!1;break a}break;case 5:fa=d.stateNode,ja=!1;break a;case 3:case 4:fa=d.stateNode.containerInfo,ja=!0;break a}d=d.return}if(fa===null)throw Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");Bx(m,b,v),fa=null,ja=!1,m=v,b=m.alternate,b!==null&&(b.return=null),m.return=null}if(t.subtreeFlags&13878)for(t=t.child;t!==null;)Xx(t,a),t=t.sibling}function Xx(a,t){var{alternate:w,flags:g}=a;switch(a.tag){case 0:case 11:case 14:case 15:pa(t,a),ea(a),g&4&&(f1(sa|Rt,a,a.return),Km(sa|Rt,a),p5(a,a.return,Ja|Rt));break;case 1:pa(t,a),ea(a),g&512&&(va||w===null||kt(w,w.return)),g&64&&Hw&&(a=a.updateQueue,a!==null&&(g=a.callbacks,g!==null&&(w=a.shared.hiddenCallbacks,a.shared.hiddenCallbacks=w===null?g:w.concat(g))));break;case 26:var m=_t;if(pa(t,a),ea(a),g&512&&(va||w===null||kt(w,w.return)),g&4)if(t=w!==null?w.memoizedState:null,g=a.memoizedState,w===null)if(g===null)if(a.stateNode===null){a:{g=a.type,w=a.memoizedProps,t=m.ownerDocument||m;t:switch(g){case"title":if(m=t.getElementsByTagName("title")[0],!m||m[jm]||m[Aa]||m.namespaceURI===J1||m.hasAttribute("itemprop"))m=t.createElement(g),t.head.insertBefore(m,t.querySelector("head > title"));Za(m,g,w),m[Aa]=a,U(m),g=m;break a;case"link":var b=I6("link","href",t).get(g+(w.href||""));if(b){for(var v=0;v<b.length;v++)if(m=b[v],m.getAttribute("href")===(w.href==null||w.href===""?null:w.href)&&m.getAttribute("rel")===(w.rel==null?null:w.rel)&&m.getAttribute("title")===(w.title==null?null:w.title)&&m.getAttribute("crossorigin")===(w.crossOrigin==null?null:w.crossOrigin)){b.splice(v,1);break t}}m=t.createElement(g),Za(m,g,w),t.head.appendChild(m);break;case"meta":if(b=I6("meta","content",t).get(g+(w.content||""))){for(v=0;v<b.length;v++)if(m=b[v],i(w.content,"content"),m.getAttribute("content")===(w.content==null?null:""+w.content)&&m.getAttribute("name")===(w.name==null?null:w.name)&&m.getAttribute("property")===(w.property==null?null:w.property)&&m.getAttribute("http-equiv")===(w.httpEquiv==null?null:w.httpEquiv)&&m.getAttribute("charset")===(w.charSet==null?null:w.charSet)){b.splice(v,1);break t}}m=t.createElement(g),Za(m,g,w),t.head.appendChild(m);break;default:throw Error('getNodesForType encountered a type it did not expect: "'+g+'". This is a bug in React.')}m[Aa]=a,U(m),g=m}a.stateNode=g}else Q6(m,a.type,a.stateNode);else a.stateNode=J6(m,g,a.memoizedProps);else t!==g?(t===null?w.stateNode!==null&&(w=w.stateNode,w.parentNode.removeChild(w)):t.count--,g===null?Q6(m,a.type,a.stateNode):J6(m,g,a.memoizedProps)):g===null&&a.stateNode!==null&&ad(a,a.memoizedProps,w.memoizedProps);break;case 27:pa(t,a),ea(a),g&512&&(va||w===null||kt(w,w.return)),w!==null&&g&4&&ad(a,a.memoizedProps,w.memoizedProps);break;case 5:if(pa(t,a),ea(a),g&512&&(va||w===null||kt(w,w.return)),a.flags&32){t=a.stateNode;try{k(a,l6,t)}catch(Y){C0(a,a.return,Y)}}g&4&&a.stateNode!=null&&(t=a.memoizedProps,ad(a,t,w!==null?w.memoizedProps:t)),g&1024&&(Wr=!0,a.type!=="form"&&console.error("Unexpected host component type. Expected a form. This is a bug in React."));break;case 6:if(pa(t,a),ea(a),g&4){if(a.stateNode===null)throw Error("This should have a text node initialized. This error is likely caused by a bug in React. Please file an issue.");g=a.memoizedProps,w=w!==null?w.memoizedProps:g,t=a.stateNode;try{k(a,wN,t,w,g)}catch(Y){C0(a,a.return,Y)}}break;case 3:if(m=dw(),Jv=null,b=_t,_t=A2(t.containerInfo),pa(t,a),_t=b,ea(a),g&4&&w!==null&&w.memoizedState.isDehydrated)try{k(a,NN,t.containerInfo)}catch(Y){C0(a,a.return,Y)}Wr&&(Wr=!1,Rx(a)),t.effectDuration+=Db(m);break;case 4:g=_t,_t=A2(a.stateNode.containerInfo),pa(t,a),ea(a),_t=g;break;case 12:g=dw(),pa(t,a),ea(a),a.stateNode.effectDuration+=Mm(g);break;case 13:pa(t,a),ea(a),a.child.flags&8192&&a.memoizedState!==null!==(w!==null&&w.memoizedState!==null)&&(Fr=jt()),g&4&&(g=a.updateQueue,g!==null&&(a.updateQueue=null,gd(a,g)));break;case 22:m=a.memoizedState!==null;var d=w!==null&&w.memoizedState!==null,x=Hw,f=va;if(Hw=x||m,va=f||d,pa(t,a),va=f,Hw=x,ea(a),g&8192)a:for(t=a.stateNode,t._visibility=m?t._visibility&~n2:t._visibility|n2,m&&(w===null||d||Hw||va||Qg(a)),w=null,t=a;;){if(t.tag===5||t.tag===26){if(w===null){d=w=t;try{b=d.stateNode,m?k(d,bN,b):k(d,dN,d.stateNode,d.memoizedProps)}catch(Y){C0(d,d.return,Y)}}}else if(t.tag===6){if(w===null){d=t;try{v=d.stateNode,m?k(d,vN,v):k(d,rN,v,d.memoizedProps)}catch(Y){C0(d,d.return,Y)}}}else if((t.tag!==22&&t.tag!==23||t.memoizedState===null||t===a)&&t.child!==null){t.child.return=t,t=t.child;continue}if(t===a)break a;for(;t.sibling===null;){if(t.return===null||t.return===a)break a;w===t&&(w=null),t=t.return}w===t&&(w=null),t.sibling.return=t.return,t=t.sibling}g&4&&(g=a.updateQueue,g!==null&&(w=g.retryQueue,w!==null&&(g.retryQueue=null,gd(a,w))));break;case 19:pa(t,a),ea(a),g&4&&(g=a.updateQueue,g!==null&&(a.updateQueue=null,gd(a,g)));break;case 30:break;case 21:break;default:pa(t,a),ea(a)}}function ea(a){var t=a.flags;if(t&2){try{k(a,O8,a)}catch(w){C0(a,a.return,w)}a.flags&=-3}t&4096&&(a.flags&=-4097)}function Rx(a){if(a.subtreeFlags&1024)for(a=a.child;a!==null;){var t=a;Rx(t),t.tag===5&&t.flags&1024&&t.stateNode.reset(),a=a.sibling}}function Nw(a,t){if(t.subtreeFlags&8772)for(t=t.child;t!==null;)lx(a,t.alternate,t),t=t.sibling}function Gx(a){switch(a.tag){case 0:case 11:case 14:case 15:p5(a,a.return,Ja),Qg(a);break;case 1:kt(a,a.return);var t=a.stateNode;typeof t.componentWillUnmount==="function"&&xx(a,a.return,t),Qg(a);break;case 27:k(a,um,a.stateNode);case 26:case 5:kt(a,a.return),Qg(a);break;case 22:a.memoizedState===null&&Qg(a);break;case 30:Qg(a);break;default:Qg(a)}}function Qg(a){for(a=a.child;a!==null;)Gx(a),a=a.sibling}function Zx(a,t,w,g){var m=w.flags;switch(w.tag){case 0:case 11:case 15:zw(a,w,g),vx(w,Ja);break;case 1:if(zw(a,w,g),t=w.stateNode,typeof t.componentDidMount==="function"&&k(w,Jr,w,t),t=w.updateQueue,t!==null){a=w.stateNode;try{k(w,R8,t,a)}catch(b){C0(w,w.return,b)}}g&&m&64&&rx(w),Om(w,w.return);break;case 27:zx(w);case 26:case 5:zw(a,w,g),g&&t===null&&m&4&&ox(w),Om(w,w.return);break;case 12:if(g&&m&4){m=dw(),zw(a,w,g),g=w.stateNode,g.effectDuration+=Mm(m);try{k(w,fx,w,t,p2,g.effectDuration)}catch(b){C0(w,w.return,b)}}else zw(a,w,g);break;case 13:zw(a,w,g),g&&m&4&&Yx(a,w);break;case 22:w.memoizedState===null&&zw(a,w,g),Om(w,w.return);break;case 30:break;default:zw(a,w,g)}}function zw(a,t,w){w=w&&(t.subtreeFlags&8772)!==0;for(t=t.child;t!==null;)Zx(a,t.alternate,t,w),t=t.sibling}function md(a,t){var w=null;a!==null&&a.memoizedState!==null&&a.memoizedState.cachePool!==null&&(w=a.memoizedState.cachePool.pool),a=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(a=t.memoizedState.cachePool.pool),a!==w&&(a!=null&&Zg(a),w!=null&&Hm(w))}function bd(a,t){a=null,t.alternate!==null&&(a=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==a&&(Zg(t),a!=null&&Hm(a))}function ht(a,t,w,g){if(t.subtreeFlags&10256)for(t=t.child;t!==null;)Hx(a,t,w,g),t=t.sibling}function Hx(a,t,w,g){var m=t.flags;switch(t.tag){case 0:case 11:case 15:ht(a,t,w,g),m&2048&&dx(t,za|Rt);break;case 1:ht(a,t,w,g);break;case 3:var b=dw();ht(a,t,w,g),m&2048&&(w=null,t.alternate!==null&&(w=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==w&&(Zg(t),w!=null&&Hm(w))),a.passiveEffectDuration+=Db(b);break;case 12:if(m&2048){m=dw(),ht(a,t,w,g),a=t.stateNode,a.passiveEffectDuration+=Mm(m);try{k(t,K8,t,t.alternate,p2,a.passiveEffectDuration)}catch(d){C0(t,t.return,d)}}else ht(a,t,w,g);break;case 13:ht(a,t,w,g);break;case 23:break;case 22:b=t.stateNode;var v=t.alternate;t.memoizedState!==null?b._visibility&Bw?ht(a,t,w,g):Pm(a,t):b._visibility&Bw?ht(a,t,w,g):(b._visibility|=Bw,o1(a,t,w,g,(t.subtreeFlags&10256)!==0)),m&2048&&md(v,t);break;case 24:ht(a,t,w,g),m&2048&&bd(t.alternate,t);break;default:ht(a,t,w,g)}}function o1(a,t,w,g,m){m=m&&(t.subtreeFlags&10256)!==0;for(t=t.child;t!==null;)Mx(a,t,w,g,m),t=t.sibling}function Mx(a,t,w,g,m){var b=t.flags;switch(t.tag){case 0:case 11:case 15:o1(a,t,w,g,m),dx(t,za);break;case 23:break;case 22:var v=t.stateNode;t.memoizedState!==null?v._visibility&Bw?o1(a,t,w,g,m):Pm(a,t):(v._visibility|=Bw,o1(a,t,w,g,m)),m&&b&2048&&md(t.alternate,t);break;case 24:o1(a,t,w,g,m),m&&b&2048&&bd(t.alternate,t);break;default:o1(a,t,w,g,m)}}function Pm(a,t){if(t.subtreeFlags&10256)for(t=t.child;t!==null;){var w=a,g=t,m=g.flags;switch(g.tag){case 22:Pm(w,g),m&2048&&md(g.alternate,g);break;case 24:Pm(w,g),m&2048&&bd(g.alternate,g);break;default:Pm(w,g)}t=t.sibling}}function N1(a){if(a.subtreeFlags&Bb)for(a=a.child;a!==null;)Jx(a),a=a.sibling}function Jx(a){switch(a.tag){case 26:N1(a),a.flags&Bb&&a.memoizedState!==null&&XN(_t,a.memoizedState,a.memoizedProps);break;case 5:N1(a);break;case 3:case 4:var t=_t;_t=A2(a.stateNode.containerInfo),N1(a),_t=t;break;case 22:a.memoizedState===null&&(t=a.alternate,t!==null&&t.memoizedState!==null?(t=Bb,Bb=16777216,N1(a),Bb=t):N1(a));break;default:N1(a)}}function Ix(a){var t=a.alternate;if(t!==null&&(a=t.child,a!==null)){t.child=null;do t=a.sibling,a.sibling=null,a=t;while(a!==null)}}function _m(a){var t=a.deletions;if((a.flags&16)!==0){if(t!==null)for(var w=0;w<t.length;w++){var g=t[w];Xa=g,qx(g,a)}Ix(a)}if(a.subtreeFlags&10256)for(a=a.child;a!==null;)Qx(a),a=a.sibling}function Qx(a){switch(a.tag){case 0:case 11:case 15:_m(a),a.flags&2048&&e5(a,a.return,za|Rt);break;case 3:var t=dw();_m(a),a.stateNode.passiveEffectDuration+=Db(t);break;case 12:t=dw(),_m(a),a.stateNode.passiveEffectDuration+=Mm(t);break;case 22:t=a.stateNode,a.memoizedState!==null&&t._visibility&Bw&&(a.return===null||a.return.tag!==13)?(t._visibility&=~Bw,M2(a)):_m(a);break;default:_m(a)}}function M2(a){var t=a.deletions;if((a.flags&16)!==0){if(t!==null)for(var w=0;w<t.length;w++){var g=t[w];Xa=g,qx(g,a)}Ix(a)}for(a=a.child;a!==null;)Ux(a),a=a.sibling}function Ux(a){switch(a.tag){case 0:case 11:case 15:e5(a,a.return,za),M2(a);break;case 22:var t=a.stateNode;t._visibility&Bw&&(t._visibility&=~Bw,M2(a));break;default:M2(a)}}function qx(a,t){for(;Xa!==null;){var w=Xa,g=w;switch(g.tag){case 0:case 11:case 15:e5(g,t,za);break;case 23:case 22:g.memoizedState!==null&&g.memoizedState.cachePool!==null&&(g=g.memoizedState.cachePool.pool,g!=null&&Zg(g));break;case 24:Hm(g.memoizedState.cache)}if(g=w.child,g!==null)g.return=w,Xa=g;else a:for(w=a;Xa!==null;){g=Xa;var{sibling:m,return:b}=g;if($x(g),g===w){Xa=null;break a}if(m!==null){m.return=b,Xa=m;break a}Xa=b}}}function s8(){E7.forEach(function(a){return a()})}function Ax(){var a=typeof IS_REACT_ACT_ENVIRONMENT!=="undefined"?IS_REACT_ACT_ENVIRONMENT:void 0;return a||G.actQueue===null||console.error("The current testing environment is not configured to support act(...)"),a}function at(a){if((s0&Fa)!==mt&&Z0!==0)return Z0&-Z0;var t=G.T;return t!==null?(t._updatedFibers||(t._updatedFibers=new Set),t._updatedFibers.add(a),a=Kg,a!==0?a:ld()):xg()}function Lx(){vt===0&&(vt=(Z0&536870912)===0||q0?vm():536870912);var a=Zt.current;return a!==null&&(a.flags|=32),vt}function ba(a,t,w){if(e1&&console.error("useInsertionEffect must not schedule updates."),kr&&(Nv=!0),a===k0&&(F0===Fg||F0===yg)||a.cancelPendingCommit!==null)l1(a,0),Fw(a,Z0,vt,!1);if(Aw(a,w),(s0&Fa)!==0&&a===k0){if(Vt)switch(t.tag){case 0:case 11:case 15:a=Y0&&O(Y0)||"Unknown",hf.has(a)||(hf.add(a),t=O(t)||"Unknown",console.error("Cannot update a component (`%s`) while rendering a different component (`%s`). To locate the bad setState() call inside `%s`, follow the stack trace as described in https://react.dev/link/setstate-in-render",t,a,a));break;case 1:kf||(console.error("Cannot update during an existing state transition (such as within `render`). Render methods should be a pure function of props and state."),kf=!0)}}else Lt&&xm(a,t,w),i8(t),a===k0&&((s0&Fa)===mt&&(pw|=w),wa===sg&&Fw(a,Z0,vt,!1)),ct(a)}function Wx(a,t,w){if((s0&(Fa|st))!==mt)throw Error("Should not already be working.");var g=!w&&(t&124)===0&&(t&a.expiredLanes)===0||f0(a,t),m=g?y8(a,t):rd(a,t,!0),b=g;do{if(m===Mw){D1&&!g&&Fw(a,t,0,!1);break}else{if(w=a.current.alternate,b&&!F8(w)){m=rd(a,t,!1),b=!1;continue}if(m===E1){if(b=t,a.errorRecoveryDisabledLanes&b)var v=0;else v=a.pendingLanes&-536870913,v=v!==0?v:v&536870912?536870912:0;if(v!==0){t=v;a:{m=a;var d=v;v=Hb;var x=m.current.memoizedState.isDehydrated;if(x&&(l1(m,d).flags|=256),d=rd(m,d,!1),d!==E1){if(_r&&!x){m.errorRecoveryDisabledLanes|=b,pw|=b,m=sg;break a}m=ya,ya=v,m!==null&&(ya===null?ya=m:ya.push.apply(ya,m))}m=d}if(b=!1,m!==E1)continue}}if(m===Xb){l1(a,0),Fw(a,t,0,!0);break}a:{switch(g=a,m){case Mw:case Xb:throw Error("Root did not complete. This is a bug in React.");case sg:if((t&4194048)!==t)break;case xv:Fw(g,t,vt,!Vw);break a;case E1:ya=null;break;case Kr:case Pf:break;default:throw Error("Unknown root exit status.")}if(G.actQueue!==null)xd(g,w,t,ya,Mb,fv,vt,pw,Cg);else{if((t&62914560)===t&&(b=Fr+sf-jt(),10<b)){if(Fw(g,t,vt,!Vw),pg(g,0,!0)!==0)break a;g.timeoutHandle=pf(Kx.bind(null,g,w,ya,Mb,fv,t,vt,pw,Cg,Vw,m,e7,y9,0),b);break a}Kx(g,w,ya,Mb,fv,t,vt,pw,Cg,Vw,m,D7,y9,0)}}}break}while(1);ct(a)}function Kx(a,t,w,g,m,b,v,d,x,f,Y,Z,B,H){if(a.timeoutHandle=cg,Z=t.subtreeFlags,Z&8192||(Z&16785408)===16785408){if(Ab={stylesheets:null,count:0,unsuspend:YN},Jx(t),Z=RN(),Z!==null){a.cancelPendingCommit=Z(xd.bind(null,a,t,b,w,g,m,v,d,x,Y,p7,B,H)),Fw(a,b,v,!f);return}}xd(a,t,b,w,g,m,v,d,x)}function F8(a){for(var t=a;;){var w=t.tag;if((w===0||w===11||w===15)&&t.flags&16384&&(w=t.updateQueue,w!==null&&(w=w.stores,w!==null)))for(var g=0;g<w.length;g++){var m=w[g],b=m.getSnapshot;m=m.value;try{if(!Pa(b(),m))return!1}catch(v){return!1}}if(w=t.child,t.subtreeFlags&16384&&w!==null)w.return=t,t=w;else{if(t===a)break;for(;t.sibling===null;){if(t.return===null||t.return===a)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}function Fw(a,t,w,g){t&=~sr,t&=~pw,a.suspendedLanes|=t,a.pingedLanes&=~t,g&&(a.warmLanes|=t),g=a.expirationTimes;for(var m=t;0<m;){var b=31-Ka(m),v=1<<b;g[b]=-1,m&=~v}w!==0&&Pb(a,w,t)}function z1(){return(s0&(Fa|st))===mt?(ym(0,!1),!1):!0}function vd(){if(Y0!==null){if(F0===na)var a=Y0.return;else a=Y0,nb(),Y5(a),k1=null,lb=0,a=Y0;for(;a!==null;)bx(a.alternate,a),a=a.return;Y0=null}}function l1(a,t){var w=a.timeoutHandle;w!==cg&&(a.timeoutHandle=cg,Nz(w)),w=a.cancelPendingCommit,w!==null&&(a.cancelPendingCommit=null,w()),vd(),k0=a,Y0=w=bw(a.current,null),Z0=t,F0=na,bt=null,Vw=!1,D1=f0(a,t),_r=!1,wa=Mw,Cg=vt=sr=pw=Dw=0,ya=Hb=null,fv=!1,(t&8)!==0&&(t|=t&32);var g=a.entangledLanes;if(g!==0)for(a=a.entanglements,g&=t;0<g;){var m=31-Ka(g),b=1<<m;t|=a[m],g&=~b}return tw=t,cb(),t=s9(),1000<t-_9&&(G.recentlyCreatedOwnerStacks=0,_9=t),Ot.discardPendingWarnings(),w}function Ox(a,t){w0=null,G.H=dv,G.getCurrentStack=null,Vt=!1,gt=null,t===fb||t===wv?(t=v4(),F0=Gb):t===T9?(t=v4(),F0=_f):F0=t===If?Pr:t!==null&&typeof t==="object"&&typeof t.then==="function"?V1:Rb,bt=t;var w=Y0;if(w===null)wa=Xb,X2(a,Da(t,a.current));else switch(w.mode&Ma&&v5(w),It(),F0){case Rb:_!==null&&typeof _.markComponentErrored==="function"&&_.markComponentErrored(w,t,Z0);break;case Fg:case yg:case Gb:case V1:case Zb:_!==null&&typeof _.markComponentSuspended==="function"&&_.markComponentSuspended(w,t,Z0)}}function Px(){var a=G.H;return G.H=dv,a===null?dv:a}function _x(){var a=G.A;return G.A=n7,a}function dd(){wa=sg,Vw||(Z0&4194048)!==Z0&&Zt.current!==null||(D1=!0),(Dw&134217727)===0&&(pw&134217727)===0||k0===null||Fw(k0,Z0,vt,!1)}function rd(a,t,w){var g=s0;s0|=Fa;var m=Px(),b=_x();if(k0!==a||Z0!==t){if(Lt){var v=a.memoizedUpdaters;0<v.size&&(Fm(a,Z0),v.clear()),fm(a,t)}Mb=null,l1(a,t)}mm(t),t=!1,v=wa;a:do try{if(F0!==na&&Y0!==null){var d=Y0,x=bt;switch(F0){case Pr:vd(),v=xv;break a;case Gb:case Fg:case yg:case V1:Zt.current===null&&(t=!0);var f=F0;if(F0=na,bt=null,$1(a,d,x,f),w&&D1){v=Mw;break a}break;default:f=F0,F0=na,bt=null,$1(a,d,x,f)}}sx(),v=wa;break}catch(Y){Ox(a,Y)}while(1);return t&&a.shellSuspendCounter++,nb(),s0=g,G.H=m,G.A=b,bm(),Y0===null&&(k0=null,Z0=0,cb()),v}function sx(){for(;Y0!==null;)Fx(Y0)}function y8(a,t){var w=s0;s0|=Fa;var g=Px(),m=_x();if(k0!==a||Z0!==t){if(Lt){var b=a.memoizedUpdaters;0<b.size&&(Fm(a,Z0),b.clear()),fm(a,t)}Mb=null,ov=jt()+Ff,l1(a,t)}else D1=f0(a,t);mm(t);a:do try{if(F0!==na&&Y0!==null)t:switch(t=Y0,b=bt,F0){case Rb:F0=na,bt=null,$1(a,t,b,Rb);break;case Fg:case yg:if(m4(b)){F0=na,bt=null,yx(t);break}t=function(){F0!==Fg&&F0!==yg||k0!==a||(F0=Zb),ct(a)},b.then(t,t);break a;case Gb:F0=Zb;break a;case _f:F0=Or;break a;case Zb:m4(b)?(F0=na,bt=null,yx(t)):(F0=na,bt=null,$1(a,t,b,Zb));break;case Or:var v=null;switch(Y0.tag){case 26:v=Y0.memoizedState;case 5:case 27:var d=Y0;if(v?U6(v):1){F0=na,bt=null;var x=d.sibling;if(x!==null)Y0=x;else{var f=d.return;f!==null?(Y0=f,J2(f)):Y0=null}break t}break;default:console.error("Unexpected type of fiber triggered a suspensey commit. This is a bug in React.")}F0=na,bt=null,$1(a,t,b,Or);break;case V1:F0=na,bt=null,$1(a,t,b,V1);break;case Pr:vd(),wa=xv;break a;default:throw Error("Unexpected SuspendedReason. This is a bug in React.")}G.actQueue!==null?sx():C8();break}catch(Y){Ox(a,Y)}while(1);if(nb(),G.H=g,G.A=m,s0=w,Y0!==null)return _!==null&&typeof _.markRenderYielded==="function"&&_.markRenderYielded(),Mw;return bm(),k0=null,Z0=0,cb(),wa}function C8(){for(;Y0!==null&&!PN();)Fx(Y0)}function Fx(a){var t=a.alternate;(a.mode&Ma)!==j0?(b5(a),t=k(a,D5,t,a,tw),v5(a)):t=k(a,D5,t,a,tw),a.memoizedProps=a.pendingProps,t===null?J2(a):Y0=t}function yx(a){var t=k(a,u8,a);a.memoizedProps=a.pendingProps,t===null?J2(a):Y0=t}function u8(a){var t=a.alternate,w=(a.mode&Ma)!==j0;switch(w&&b5(a),a.tag){case 15:case 0:t=D4(t,a,a.pendingProps,a.type,void 0,Z0);break;case 11:t=D4(t,a,a.pendingProps,a.type.render,a.ref,Z0);break;case 5:Y5(a);default:bx(t,a),a=Y0=j3(a,tw),t=D5(t,a,tw)}return w&&v5(a),t}function $1(a,t,w,g){nb(),Y5(t),k1=null,lb=0;var m=t.return;try{if(I8(a,m,t,w,Z0)){wa=Xb,X2(a,Da(w,a.current)),Y0=null;return}}catch(b){if(m!==null)throw Y0=m,b;wa=Xb,X2(a,Da(w,a.current)),Y0=null;return}if(t.flags&32768){if(q0||g===Rb)a=!0;else if(D1||(Z0&536870912)!==0)a=!1;else if(Vw=a=!0,g===Fg||g===yg||g===Gb||g===V1)g=Zt.current,g!==null&&g.tag===13&&(g.flags|=16384);Cx(t,a)}else J2(t)}function J2(a){var t=a;do{if((t.flags&32768)!==0){Cx(t,Vw);return}var w=t.alternate;if(a=t.return,b5(t),w=k(t,U8,w,t,tw),(t.mode&Ma)!==j0&&a4(t),w!==null){Y0=w;return}if(t=t.sibling,t!==null){Y0=t;return}Y0=t=a}while(t!==null);wa===Mw&&(wa=Pf)}function Cx(a,t){do{var w=q8(a.alternate,a);if(w!==null){w.flags&=32767,Y0=w;return}if((a.mode&Ma)!==j0){a4(a),w=a.actualDuration;for(var g=a.child;g!==null;)w+=g.actualDuration,g=g.sibling;a.actualDuration=w}if(w=a.return,w!==null&&(w.flags|=32768,w.subtreeFlags=0,w.deletions=null),!t&&(a=a.sibling,a!==null)){Y0=a;return}Y0=a=w}while(a!==null);wa=xv,Y0=null}function xd(a,t,w,g,m,b,v,d,x){a.cancelPendingCommit=null;do sm();while(Ia!==ug);if(Ot.flushLegacyContextWarning(),Ot.flushPendingUnsafeLifecycleWarnings(),(s0&(Fa|st))!==mt)throw Error("Should not already be working.");if(_!==null&&typeof _.markCommitStarted==="function"&&_.markCommitStarted(w),t===null)Jt();else{if(w===0&&console.error("finishedLanes should not be empty during a commit. This is a bug in React."),t===a.current)throw Error("Cannot commit the same tree as before. This error is likely caused by a bug in React. Please file an issue.");if(b=t.lanes|t.childLanes,b|=or,Ov(a,w,b,v,d,x),a===k0&&(Y0=k0=null,Z0=0),p1=t,ag=a,tg=w,Cr=b,ur=m,Tf=g,(t.subtreeFlags&10256)!==0||(t.flags&10256)!==0?(a.callbackNode=null,a.callbackPriority=0,S8(Z1,function(){return cx(!0),null})):(a.callbackNode=null,a.callbackPriority=0),p2=F1(),g=(t.flags&13878)!==0,(t.subtreeFlags&13878)!==0||g){g=G.T,G.T=null,m=_0.p,_0.p=wt,v=s0,s0|=st;try{P8(a,t,w)}finally{s0=v,_0.p=m,G.T=g}}Ia=yf,ux(),Tx(),kx()}}function ux(){if(Ia===yf){Ia=ug;var a=ag,t=p1,w=tg,g=(t.flags&13878)!==0;if((t.subtreeFlags&13878)!==0||g){g=G.T,G.T=null;var m=_0.p;_0.p=wt;var b=s0;s0|=st;try{j1=w,n1=a,Xx(t,a),n1=j1=null,w=Dr;var v=k3(a.containerInfo),d=w.focusedElem,x=w.selectionRange;if(v!==d&&d&&d.ownerDocument&&T3(d.ownerDocument.documentElement,d)){if(x!==null&&Sv(d)){var{start:f,end:Y}=x;if(Y===void 0&&(Y=f),"selectionStart"in d)d.selectionStart=f,d.selectionEnd=Math.min(Y,d.value.length);else{var Z=d.ownerDocument||document,B=Z&&Z.defaultView||window;if(B.getSelection){var H=B.getSelection(),F=d.textContent.length,D=Math.min(x.start,F),h0=x.end===void 0?D:Math.min(x.end,F);!H.extend&&D>h0&&(v=h0,h0=D,D=v);var J0=u3(d,D),o=u3(d,h0);if(J0&&o&&(H.rangeCount!==1||H.anchorNode!==J0.node||H.anchorOffset!==J0.offset||H.focusNode!==o.node||H.focusOffset!==o.offset)){var N=Z.createRange();N.setStart(J0.node,J0.offset),H.removeAllRanges(),D>h0?(H.addRange(N),H.extend(o.node,o.offset)):(N.setEnd(o.node,o.offset),H.addRange(N))}}}}Z=[];for(H=d;H=H.parentNode;)H.nodeType===1&&Z.push({element:H,left:H.scrollLeft,top:H.scrollTop});typeof d.focus==="function"&&d.focus();for(d=0;d<Z.length;d++){var z=Z[d];z.element.scrollLeft=z.left,z.element.scrollTop=z.top}}Uv=!!Vr,Dr=Vr=null}finally{s0=b,_0.p=m,G.T=g}}a.current=t,Ia=Cf}}function Tx(){if(Ia===Cf){Ia=ug;var a=ag,t=p1,w=tg,g=(t.flags&8772)!==0;if((t.subtreeFlags&8772)!==0||g){g=G.T,G.T=null;var m=_0.p;_0.p=wt;var b=s0;s0|=st;try{_!==null&&typeof _.markLayoutEffectsStarted==="function"&&_.markLayoutEffectsStarted(w),j1=w,n1=a,lx(a,t.alternate,t),n1=j1=null,_!==null&&typeof _.markLayoutEffectsStopped==="function"&&_.markLayoutEffectsStopped()}finally{s0=b,_0.p=m,G.T=g}}Ia=uf}}function kx(){if(Ia===az||Ia===uf){Ia=ug,_N();var a=ag,t=p1,w=tg,g=Tf,m=(t.subtreeFlags&10256)!==0||(t.flags&10256)!==0;m?Ia=yr:(Ia=ug,p1=ag=null,hx(a,a.pendingLanes),Tg=0,Ib=null);var b=a.pendingLanes;if(b===0&&(ew=null),m||nx(a),m=Lw(w),t=t.stateNode,qa&&typeof qa.onCommitFiberRoot==="function")try{var v=(t.current.flags&128)===128;switch(m){case wt:var d=hd;break;case Wt:d=cd;break;case Et:d=Z1;break;case T2:d=Sd;break;default:d=Z1}qa.onCommitFiberRoot(H1,t,d,v)}catch(Z){nt||(nt=!0,console.error("React instrumentation encountered an error: %s",Z))}if(Lt&&a.memoizedUpdaters.clear(),s8(),g!==null){v=G.T,d=_0.p,_0.p=wt,G.T=null;try{var x=a.onRecoverableError;for(t=0;t<g.length;t++){var f=g[t],Y=T8(f.stack);k(f.source,x,f.value,Y)}}finally{G.T=v,_0.p=d}}(tg&3)!==0&&sm(),ct(a),b=a.pendingLanes,(w&4194090)!==0&&(b&42)!==0?(av=!0,a===Tr?Jb++:(Jb=0,Tr=a)):Jb=0,ym(0,!1),Jt()}}function T8(a){return a={componentStack:a},Object.defineProperty(a,"digest",{get:function(){console.error('You are accessing "digest" from the errorInfo object passed to onRecoverableError. This property is no longer provided as part of errorInfo but can be accessed as a property of the Error instance itself.')}}),a}function hx(a,t){(a.pooledCacheLanes&=t)===0&&(t=a.pooledCache,t!=null&&(a.pooledCache=null,Hm(t)))}function sm(a){return ux(),Tx(),kx(),cx(a)}function cx(){if(Ia!==yr)return!1;var a=ag,t=Cr;Cr=0;var w=Lw(tg),g=Et===0||Et>w?Et:w;w=G.T;var m=_0.p;try{_0.p=g,G.T=null,g=ur,ur=null;var b=ag,v=tg;if(Ia=ug,p1=ag=null,tg=0,(s0&(Fa|st))!==mt)throw Error("Cannot flush passive effects while already rendering.");kr=!0,Nv=!1,_!==null&&typeof _.markPassiveEffectsStarted==="function"&&_.markPassiveEffectsStarted(v);var d=s0;if(s0|=st,Qx(b.current),Hx(b,b.current,v,g),_!==null&&typeof _.markPassiveEffectsStopped==="function"&&_.markPassiveEffectsStopped(),nx(b),s0=d,ym(0,!1),Nv?b===Ib?Tg++:(Tg=0,Ib=b):Tg=0,Nv=kr=!1,qa&&typeof qa.onPostCommitFiberRoot==="function")try{qa.onPostCommitFiberRoot(H1,b)}catch(f){nt||(nt=!0,console.error("React instrumentation encountered an error: %s",f))}var x=b.current.stateNode;return x.effectDuration=0,x.passiveEffectDuration=0,!0}finally{_0.p=m,G.T=w,hx(a,t)}}function Sx(a,t,w){t=Da(w,t),t=u5(a.stateNode,t,2),a=Ow(a,t,2),a!==null&&(Aw(a,2),ct(a))}function C0(a,t,w){if(e1=!1,a.tag===3)Sx(a,a,w);else{for(;t!==null;){if(t.tag===3){Sx(t,a,w);return}if(t.tag===1){var g=t.stateNode;if(typeof t.type.getDerivedStateFromError==="function"||typeof g.componentDidCatch==="function"&&(ew===null||!ew.has(g))){a=Da(w,a),w=T5(2),g=Ow(t,w,2),g!==null&&(k5(w,g,t,a),Aw(g,2),ct(g));return}}t=t.return}console.error(`Internal React error: Attempted to capture a commit phase error inside a detached tree. This indicates a bug in React. Potential causes include deleting the same fiber more than once, committing an already-finished tree, or an inconsistent return pointer.
|
|
150
|
-
|
|
151
|
-
Error message:
|
|
152
|
-
|
|
153
|
-
%s`,w)}}function fd(a,t,w){var g=a.pingCache;if(g===null){g=a.pingCache=new V7;var m=new Set;g.set(t,m)}else m=g.get(t),m===void 0&&(m=new Set,g.set(t,m));m.has(w)||(_r=!0,m.add(w),g=k8.bind(null,a,t,w),Lt&&Fm(a,w),t.then(g,g))}function k8(a,t,w){var g=a.pingCache;g!==null&&g.delete(t),a.pingedLanes|=a.suspendedLanes&w,a.warmLanes&=~w,Ax()&&G.actQueue===null&&console.error(`A suspended resource finished loading inside a test, but the event was not wrapped in act(...).
|
|
154
|
-
|
|
155
|
-
When testing, code that resolves suspended data should be wrapped into act(...):
|
|
156
|
-
|
|
157
|
-
act(() => {
|
|
158
|
-
/* finish loading suspended data */
|
|
159
|
-
});
|
|
160
|
-
/* assert on the output */
|
|
161
|
-
|
|
162
|
-
This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`),k0===a&&(Z0&w)===w&&(wa===sg||wa===Kr&&(Z0&62914560)===Z0&&jt()-Fr<sf?(s0&Fa)===mt&&l1(a,0):sr|=w,Cg===Z0&&(Cg=0)),ct(a)}function ix(a,t){t===0&&(t=dm()),a=ka(a,t),a!==null&&(Aw(a,t),ct(a))}function h8(a){var t=a.memoizedState,w=0;t!==null&&(w=t.retryLane),ix(a,w)}function c8(a,t){var w=0;switch(a.tag){case 13:var{stateNode:g,memoizedState:m}=a;m!==null&&(w=m.retryLane);break;case 19:g=a.stateNode;break;case 22:g=a.stateNode._retryCache;break;default:throw Error("Pinged unknown suspense boundary type. This is probably a bug in React.")}g!==null&&g.delete(t),ix(a,w)}function od(a,t,w){if((t.subtreeFlags&67117056)!==0)for(t=t.child;t!==null;){var g=a,m=t,b=m.type===s2;b=w||b,m.tag!==22?m.flags&67108864?b&&k(m,jx,g,m,(m.mode&K9)===j0):od(g,m,b):m.memoizedState===null&&(b&&m.flags&8192?k(m,jx,g,m):m.subtreeFlags&67108864&&k(m,od,g,m,b)),t=t.sibling}}function jx(a,t){var w=2<arguments.length&&arguments[2]!==void 0?arguments[2]:!0;K0(!0);try{Gx(t),w&&Ux(t),Zx(a,t.alternate,t,!1),w&&Mx(a,t,0,null,!1,0)}finally{K0(!1)}}function nx(a){var t=!0;a.current.mode&(La|Kt)||(t=!1),od(a,a.current,t)}function Ex(a){if((s0&Fa)===mt){var t=a.tag;if(t===3||t===1||t===0||t===11||t===14||t===15){if(t=O(a)||"ReactComponent",zv!==null){if(zv.has(t))return;zv.add(t)}else zv=new Set([t]);k(a,function(){console.error("Can't perform a React state update on a component that hasn't mounted yet. This indicates that you have a side-effect in your render function that asynchronously later calls tries to update the component. Move this work to useEffect instead.")})}}}function Fm(a,t){Lt&&a.memoizedUpdaters.forEach(function(w){xm(a,w,t)})}function S8(a,t){var w=G.actQueue;return w!==null?(w.push(t),gz):kd(a,t)}function i8(a){Ax()&&G.actQueue===null&&k(a,function(){console.error(`An update to %s inside a test was not wrapped in act(...).
|
|
163
|
-
|
|
164
|
-
When testing, code that causes React state updates should be wrapped into act(...):
|
|
165
|
-
|
|
166
|
-
act(() => {
|
|
167
|
-
/* fire events that update state */
|
|
168
|
-
});
|
|
169
|
-
/* assert on the output */
|
|
170
|
-
|
|
171
|
-
This ensures that you're testing the behavior the user would see in the browser. Learn more at https://react.dev/link/wrap-tests-with-act`,O(a))})}function ct(a){a!==am&&a.next===null&&(am===null?lv=am=a:am=am.next=a),$v=!0,G.actQueue!==null?cr||(cr=!0,ex()):hr||(hr=!0,ex())}function ym(a,t){if(!Sr&&$v){Sr=!0;do{var w=!1;for(var g=lv;g!==null;){if(!t)if(a!==0){var m=g.pendingLanes;if(m===0)var b=0;else{var{suspendedLanes:v,pingedLanes:d}=g;b=(1<<31-Ka(42|a)+1)-1,b&=m&~(v&~d),b=b&201326741?b&201326741|1:b?b|2:0}b!==0&&(w=!0,px(g,b))}else b=Z0,b=pg(g,g===k0?b:0,g.cancelPendingCommit!==null||g.timeoutHandle!==cg),(b&3)===0||f0(g,b)||(w=!0,px(g,b));g=g.next}}while(w);Sr=!1}}function j8(){Nd()}function Nd(){$v=cr=hr=!1;var a=0;kg!==0&&(p8()&&(a=kg),kg=0);for(var t=jt(),w=null,g=lv;g!==null;){var m=g.next,b=Vx(g,t);if(b===0)g.next=null,w===null?lv=m:w.next=m,m===null&&(am=w);else if(w=g,a!==0||(b&3)!==0)$v=!0;g=m}ym(a,!1)}function Vx(a,t){for(var{suspendedLanes:w,pingedLanes:g,expirationTimes:m}=a,b=a.pendingLanes&-62914561;0<b;){var v=31-Ka(b),d=1<<v,x=m[v];if(x===-1){if((d&w)===0||(d&g)!==0)m[v]=eg(d,t)}else x<=t&&(a.expiredLanes|=d);b&=~d}if(t=k0,w=Z0,w=pg(a,a===t?w:0,a.cancelPendingCommit!==null||a.timeoutHandle!==cg),g=a.callbackNode,w===0||a===t&&(F0===Fg||F0===yg)||a.cancelPendingCommit!==null)return g!==null&&zd(g),a.callbackNode=null,a.callbackPriority=0;if((w&3)===0||f0(a,w)){if(t=w&-w,t!==a.callbackPriority||G.actQueue!==null&&g!==ir)zd(g);else return t;switch(Lw(w)){case wt:case Wt:w=cd;break;case Et:w=Z1;break;case T2:w=Sd;break;default:w=Z1}return g=Dx.bind(null,a),G.actQueue!==null?(G.actQueue.push(g),w=ir):w=kd(w,g),a.callbackPriority=t,a.callbackNode=w,t}return g!==null&&zd(g),a.callbackPriority=2,a.callbackNode=null,2}function Dx(a,t){if(av=e2=!1,Ia!==ug&&Ia!==yr)return a.callbackNode=null,a.callbackPriority=0,null;var w=a.callbackNode;if(sm(!0)&&a.callbackNode!==w)return null;var g=Z0;if(g=pg(a,a===k0?g:0,a.cancelPendingCommit!==null||a.timeoutHandle!==cg),g===0)return null;return Wx(a,g,t),Vx(a,jt()),a.callbackNode!=null&&a.callbackNode===w?Dx.bind(null,a):null}function px(a,t){if(sm())return null;e2=av,av=!1,Wx(a,t,!0)}function zd(a){a!==ir&&a!==null&&ON(a)}function ex(){G.actQueue!==null&&G.actQueue.push(function(){return Nd(),null}),zz(function(){(s0&(Fa|st))!==mt?kd(hd,j8):Nd()})}function ld(){return kg===0&&(kg=vm()),kg}function a6(a){if(a==null||typeof a==="symbol"||typeof a==="boolean")return null;if(typeof a==="function")return a;return i(a,"action"),$m(""+a)}function t6(a,t){var w=t.ownerDocument.createElement("input");return w.name=t.name,w.value=t.value,a.id&&w.setAttribute("form",a.id),t.parentNode.insertBefore(w,t),a=new FormData(a),w.parentNode.removeChild(w),a}function n8(a,t,w,g,m){if(t==="submit"&&w&&w.stateNode===m){var b=a6((m[Sa]||null).action),v=g.submitter;v&&(t=(t=v[Sa]||null)?a6(t.formAction):v.getAttribute("formAction"),t!==null&&(b=t,v=null));var d=new i2("action","action",null,g,m);a.push({event:d,listeners:[{instance:null,listener:function(){if(g.defaultPrevented){if(kg!==0){var x=v?t6(m,v):new FormData(m),f={pending:!0,data:x,method:m.method,action:b};Object.freeze(f),O5(w,f,null,x)}}else typeof b==="function"&&(d.preventDefault(),x=v?t6(m,v):new FormData(m),f={pending:!0,data:x,method:m.method,action:b},Object.freeze(f),O5(w,f,b,x))},currentTarget:m}]})}}function I2(a,t,w){a.currentTarget=w;try{t(a)}catch(g){Ur(g)}a.currentTarget=null}function w6(a,t){t=(t&4)!==0;for(var w=0;w<a.length;w++){var g=a[w];a:{var m=void 0,b=g.event;if(g=g.listeners,t)for(var v=g.length-1;0<=v;v--){var d=g[v],x=d.instance,f=d.currentTarget;if(d=d.listener,x!==m&&b.isPropagationStopped())break a;x!==null?k(x,I2,b,d,f):I2(b,d,f),m=x}else for(v=0;v<g.length;v++){if(d=g[v],x=d.instance,f=d.currentTarget,d=d.listener,x!==m&&b.isPropagationStopped())break a;x!==null?k(x,I2,b,d,f):I2(b,d,f),m=x}}}}function M0(a,t){jr.has(a)||console.error('Did not expect a listenToNonDelegatedEvent() call for "%s". This is a bug in React. Please file an issue.',a);var w=t[id];w===void 0&&(w=t[id]=new Set);var g=a+"__bubble";w.has(g)||(g6(t,a,2,!1),w.add(g))}function $d(a,t,w){jr.has(a)&&!t&&console.error('Did not expect a listenToNativeEvent() call for "%s" in the bubble phase. This is a bug in React. Please file an issue.',a);var g=0;t&&(g|=4),g6(w,a,g,t)}function Bd(a){if(!a[Bv]){a[Bv]=!0,u6.forEach(function(w){w!=="selectionchange"&&(jr.has(w)||$d(w,!1,a),$d(w,!0,a))});var t=a.nodeType===9?a:a.ownerDocument;t===null||t[Bv]||(t[Bv]=!0,$d("selectionchange",!1,t))}}function g6(a,t,w,g){switch(K6(t)){case wt:var m=JN;break;case Wt:m=IN;break;default:m=Wd}w=m.bind(null,t,w,a),m=void 0,!ar||t!=="touchstart"&&t!=="touchmove"&&t!=="wheel"||(m=!0),g?m!==void 0?a.addEventListener(t,w,{capture:!0,passive:m}):a.addEventListener(t,w,!0):m!==void 0?a.addEventListener(t,w,{passive:m}):a.addEventListener(t,w,!1)}function Yd(a,t,w,g,m){var b=g;if((t&1)===0&&(t&2)===0&&g!==null)a:for(;;){if(g===null)return;var v=g.tag;if(v===3||v===4){var d=g.stateNode.containerInfo;if(d===m)break;if(v===4)for(v=g.return;v!==null;){var x=v.tag;if((x===3||x===4)&&v.stateNode.containerInfo===m)return;v=v.return}for(;d!==null;){if(v=mw(d),v===null)return;if(x=v.tag,x===5||x===6||x===26||x===27){g=b=v;continue a}d=d.parentNode}}g=g.return}A3(function(){var f=b,Y=hv(w),Z=[];a:{var B=W9.get(a);if(B!==void 0){var H=i2,F=a;switch(a){case"keypress":if(Tb(w)===0)break a;case"keydown":case"keyup":H=G7;break;case"focusin":F="focus",H=mr;break;case"focusout":F="blur",H=mr;break;case"beforeblur":case"afterblur":H=mr;break;case"click":if(w.button===2)break a;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":H=Y9;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":H=r7;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":H=M7;break;case U9:case q9:case A9:H=o7;break;case L9:H=I7;break;case"scroll":case"scrollend":H=v7;break;case"wheel":H=U7;break;case"copy":case"cut":case"paste":H=z7;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":H=R9;break;case"toggle":case"beforetoggle":H=A7}var D=(t&4)!==0,h0=!D&&(a==="scroll"||a==="scrollend"),J0=D?B!==null?B+"Capture":null:B;D=[];for(var o=f,N;o!==null;){var z=o;if(N=z.stateNode,z=z.tag,z!==5&&z!==26&&z!==27||N===null||J0===null||(z=Bm(o,J0),z!=null&&D.push(Cm(o,z,N))),h0)break;o=o.return}0<D.length&&(B=new H(B,F,null,w,Y),Z.push({event:B,listeners:D}))}}if((t&7)===0){a:{if(B=a==="mouseover"||a==="pointerover",H=a==="mouseout"||a==="pointerout",B&&w!==Em&&(F=w.relatedTarget||w.fromElement)&&(mw(F)||F[cw]))break a;if(H||B){if(B=Y.window===Y?Y:(B=Y.ownerDocument)?B.defaultView||B.parentWindow:window,H){if(F=w.relatedTarget||w.toElement,H=f,F=F?mw(F):null,F!==null&&(h0=V0(F),D=F.tag,F!==h0||D!==5&&D!==27&&D!==6))F=null}else H=null,F=f;if(H!==F){if(D=Y9,z="onMouseLeave",J0="onMouseEnter",o="mouse",a==="pointerout"||a==="pointerover")D=R9,z="onPointerLeave",J0="onPointerEnter",o="pointer";if(h0=H==null?B:l(H),N=F==null?B:l(F),B=new D(z,o+"leave",H,w,Y),B.target=h0,B.relatedTarget=N,z=null,mw(Y)===f&&(D=new D(J0,o+"enter",F,w,Y),D.target=N,D.relatedTarget=h0,z=D),h0=z,H&&F)t:{D=H,J0=F,o=0;for(N=D;N;N=B1(N))o++;N=0;for(z=J0;z;z=B1(z))N++;for(;0<o-N;)D=B1(D),o--;for(;0<N-o;)J0=B1(J0),N--;for(;o--;){if(D===J0||J0!==null&&D===J0.alternate)break t;D=B1(D),J0=B1(J0)}D=null}else D=null;H!==null&&m6(Z,B,H,D,!1),F!==null&&h0!==null&&m6(Z,h0,F,D,!0)}}}a:{if(B=f?l(f):window,H=B.nodeName&&B.nodeName.toLowerCase(),H==="select"||H==="input"&&B.type==="file")var M=s3;else if(P3(B))if(I9)M=l8;else{M=N8;var W=o8}else H=B.nodeName,!H||H.toLowerCase()!=="input"||B.type!=="checkbox"&&B.type!=="radio"?f&&lm(f.elementType)&&(M=s3):M=z8;if(M&&(M=M(a,f))){_3(Z,M,w,Y);break a}W&&W(a,B,f),a==="focusout"&&f&&B.type==="number"&&f.memoizedProps.value!=null&&Fv(B,"number",B.value)}switch(W=f?l(f):window,a){case"focusin":if(P3(W)||W.contentEditable==="true")A1=W,vr=f,wb=null;break;case"focusout":wb=vr=A1=null;break;case"mousedown":dr=!0;break;case"contextmenu":case"mouseup":case"dragend":dr=!1,h3(Z,w,Y);break;case"selectionchange":if(O7)break;case"keydown":case"keyup":h3(Z,w,Y)}var g0;if(br)a:{switch(a){case"compositionstart":var y="onCompositionStart";break a;case"compositionend":y="onCompositionEnd";break a;case"compositionupdate":y="onCompositionUpdate";break a}y=void 0}else q1?K3(a,w)&&(y="onCompositionEnd"):a==="keydown"&&w.keyCode===G9&&(y="onCompositionStart");if(y&&(Z9&&w.locale!=="ko"&&(q1||y!=="onCompositionStart"?y==="onCompositionEnd"&&q1&&(g0=L3()):(Sw=Y,tr=("value"in Sw)?Sw.value:Sw.textContent,q1=!0)),W=Q2(f,y),0<W.length&&(y=new X9(y,a,null,w,Y),Z.push({event:y,listeners:W}),g0?y.data=g0:(g0=O3(w),g0!==null&&(y.data=g0)))),g0=W7?d8(a,w):r8(a,w))y=Q2(f,"onBeforeInput"),0<y.length&&(W=new $7("onBeforeInput","beforeinput",null,w,Y),Z.push({event:W,listeners:y}),W.data=g0);n8(Z,a,f,w,Y)}w6(Z,t)})}function Cm(a,t,w){return{instance:a,listener:t,currentTarget:w}}function Q2(a,t){for(var w=t+"Capture",g=[];a!==null;){var m=a,b=m.stateNode;if(m=m.tag,m!==5&&m!==26&&m!==27||b===null||(m=Bm(a,w),m!=null&&g.unshift(Cm(a,m,b)),m=Bm(a,t),m!=null&&g.push(Cm(a,m,b))),a.tag===3)return g;a=a.return}return[]}function B1(a){if(a===null)return null;do a=a.return;while(a&&a.tag!==5&&a.tag!==27);return a?a:null}function m6(a,t,w,g,m){for(var b=t._reactName,v=[];w!==null&&w!==g;){var d=w,x=d.alternate,f=d.stateNode;if(d=d.tag,x!==null&&x===g)break;d!==5&&d!==26&&d!==27||f===null||(x=f,m?(f=Bm(w,b),f!=null&&v.unshift(Cm(w,f,x))):m||(f=Bm(w,b),f!=null&&v.push(Cm(w,f,x)))),w=w.return}v.length!==0&&a.push({event:t,listeners:v})}function Xd(a,t){g8(a,t),a!=="input"&&a!=="textarea"&&a!=="select"||t==null||t.value!==null||$9||($9=!0,a==="select"&&t.multiple?console.error("`value` prop on `%s` should not be null. Consider using an empty array when `multiple` is set to `true` to clear the component or `undefined` for uncontrolled components.",a):console.error("`value` prop on `%s` should not be null. Consider using an empty string to clear the component or `undefined` for uncontrolled components.",a));var w={registrationNameDependencies:Ug,possibleRegistrationNames:jd};lm(a)||typeof t.is==="string"||b8(a,t,w),t.contentEditable&&!t.suppressContentEditableWarning&&t.children!=null&&console.error("A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.")}function Ba(a,t,w,g){t!==w&&(w=yw(w),yw(t)!==w&&(g[a]=t))}function E8(a,t,w){t.forEach(function(g){w[d6(g)]=g==="style"?Gd(a):a.getAttribute(g)})}function St(a,t){t===!1?console.error("Expected `%s` listener to be a function, instead got `false`.\n\nIf you used to conditionally omit it with %s={condition && value}, pass %s={condition ? value : undefined} instead.",a,a,a):console.error("Expected `%s` listener to be a function, instead got a value of `%s` type.",a,typeof t)}function b6(a,t){return a=a.namespaceURI===h2||a.namespaceURI===J1?a.ownerDocument.createElementNS(a.namespaceURI,a.tagName):a.ownerDocument.createElement(a.tagName),a.innerHTML=t,a.innerHTML}function yw(a){return S(a)&&(console.error("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before using it here.",X(a)),l0(a)),(typeof a==="string"?a:""+a).replace(mz,`
|
|
172
|
-
`).replace(bz,"")}function v6(a,t){return t=yw(t),yw(a)===t?!0:!1}function U2(){}function u0(a,t,w,g,m,b){switch(w){case"children":if(typeof g==="string")ub(g,t,!1),t==="body"||t==="textarea"&&g===""||zm(a,g);else if(typeof g==="number"||typeof g==="bigint")ub(""+g,t,!1),t!=="body"&&zm(a,""+g);break;case"className":Qt(a,"class",g);break;case"tabIndex":Qt(a,"tabindex",g);break;case"dir":case"role":case"viewBox":case"width":case"height":Qt(a,w,g);break;case"style":Q3(a,g,b);break;case"data":if(t!=="object"){Qt(a,"data",g);break}case"src":case"href":if(g===""&&(t!=="a"||w!=="href")){w==="src"?console.error('An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',w,w):console.error('An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',w,w),a.removeAttribute(w);break}if(g==null||typeof g==="function"||typeof g==="symbol"||typeof g==="boolean"){a.removeAttribute(w);break}i(g,w),g=$m(""+g),a.setAttribute(w,g);break;case"action":case"formAction":if(g!=null&&(t==="form"?w==="formAction"?console.error("You can only pass the formAction prop to <input> or <button>. Use the action prop on <form>."):typeof g==="function"&&(m.encType==null&&m.method==null||Rv||(Rv=!0,console.error("Cannot specify a encType or method for a form that specifies a function as the action. React provides those automatically. They will get overridden.")),m.target==null||Xv||(Xv=!0,console.error("Cannot specify a target for a form that specifies a function as the action. The function will always be executed in the same window."))):t==="input"||t==="button"?w==="action"?console.error("You can only pass the action prop to <form>. Use the formAction prop on <input> or <button>."):t!=="input"||m.type==="submit"||m.type==="image"||Yv?t!=="button"||m.type==null||m.type==="submit"||Yv?typeof g==="function"&&(m.name==null||jf||(jf=!0,console.error('Cannot specify a "name" prop for a button that specifies a function as a formAction. React needs it to encode which action should be invoked. It will get overridden.')),m.formEncType==null&&m.formMethod==null||Rv||(Rv=!0,console.error("Cannot specify a formEncType or formMethod for a button that specifies a function as a formAction. React provides those automatically. They will get overridden.")),m.formTarget==null||Xv||(Xv=!0,console.error("Cannot specify a formTarget for a button that specifies a function as a formAction. The function will always be executed in the same window."))):(Yv=!0,console.error('A button can only specify a formAction along with type="submit" or no type.')):(Yv=!0,console.error('An input can only specify a formAction along with type="submit" or type="image".')):w==="action"?console.error("You can only pass the action prop to <form>."):console.error("You can only pass the formAction prop to <input> or <button>.")),typeof g==="function"){a.setAttribute(w,"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 b==="function"&&(w==="formAction"?(t!=="input"&&u0(a,t,"name",m.name,m,null),u0(a,t,"formEncType",m.formEncType,m,null),u0(a,t,"formMethod",m.formMethod,m,null),u0(a,t,"formTarget",m.formTarget,m,null)):(u0(a,t,"encType",m.encType,m,null),u0(a,t,"method",m.method,m,null),u0(a,t,"target",m.target,m,null)));if(g==null||typeof g==="symbol"||typeof g==="boolean"){a.removeAttribute(w);break}i(g,w),g=$m(""+g),a.setAttribute(w,g);break;case"onClick":g!=null&&(typeof g!=="function"&&St(w,g),a.onclick=U2);break;case"onScroll":g!=null&&(typeof g!=="function"&&St(w,g),M0("scroll",a));break;case"onScrollEnd":g!=null&&(typeof g!=="function"&&St(w,g),M0("scrollend",a));break;case"dangerouslySetInnerHTML":if(g!=null){if(typeof g!=="object"||!("__html"in g))throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.");if(w=g.__html,w!=null){if(m.children!=null)throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");a.innerHTML=w}}break;case"multiple":a.multiple=g&&typeof g!=="function"&&typeof g!=="symbol";break;case"muted":a.muted=g&&typeof g!=="function"&&typeof g!=="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(g==null||typeof g==="function"||typeof g==="boolean"||typeof g==="symbol"){a.removeAttribute("xlink:href");break}i(g,w),w=$m(""+g),a.setAttributeNS(hg,"xlink:href",w);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":g!=null&&typeof g!=="function"&&typeof g!=="symbol"?(i(g,w),a.setAttribute(w,""+g)):a.removeAttribute(w);break;case"inert":g!==""||Gv[w]||(Gv[w]=!0,console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.",w));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":g&&typeof g!=="function"&&typeof g!=="symbol"?a.setAttribute(w,""):a.removeAttribute(w);break;case"capture":case"download":g===!0?a.setAttribute(w,""):g!==!1&&g!=null&&typeof g!=="function"&&typeof g!=="symbol"?(i(g,w),a.setAttribute(w,g)):a.removeAttribute(w);break;case"cols":case"rows":case"size":case"span":g!=null&&typeof g!=="function"&&typeof g!=="symbol"&&!isNaN(g)&&1<=g?(i(g,w),a.setAttribute(w,g)):a.removeAttribute(w);break;case"rowSpan":case"start":g==null||typeof g==="function"||typeof g==="symbol"||isNaN(g)?a.removeAttribute(w):(i(g,w),a.setAttribute(w,g));break;case"popover":M0("beforetoggle",a),M0("toggle",a),Ea(a,"popover",g);break;case"xlinkActuate":Ut(a,hg,"xlink:actuate",g);break;case"xlinkArcrole":Ut(a,hg,"xlink:arcrole",g);break;case"xlinkRole":Ut(a,hg,"xlink:role",g);break;case"xlinkShow":Ut(a,hg,"xlink:show",g);break;case"xlinkTitle":Ut(a,hg,"xlink:title",g);break;case"xlinkType":Ut(a,hg,"xlink:type",g);break;case"xmlBase":Ut(a,nr,"xml:base",g);break;case"xmlLang":Ut(a,nr,"xml:lang",g);break;case"xmlSpace":Ut(a,nr,"xml:space",g);break;case"is":b!=null&&console.error('Cannot update the "is" prop after it has been initialized.'),Ea(a,"is",g);break;case"innerText":case"textContent":break;case"popoverTarget":nf||g==null||typeof g!=="object"||(nf=!0,console.error("The `popoverTarget` prop expects the ID of an Element as a string. Received %s instead.",g));default:!(2<w.length)||w[0]!=="o"&&w[0]!=="O"||w[1]!=="n"&&w[1]!=="N"?(w=U3(w),Ea(a,w,g)):Ug.hasOwnProperty(w)&&g!=null&&typeof g!=="function"&&St(w,g)}}function Rd(a,t,w,g,m,b){switch(w){case"style":Q3(a,g,b);break;case"dangerouslySetInnerHTML":if(g!=null){if(typeof g!=="object"||!("__html"in g))throw Error("`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://react.dev/link/dangerously-set-inner-html for more information.");if(w=g.__html,w!=null){if(m.children!=null)throw Error("Can only set one of `children` or `props.dangerouslySetInnerHTML`.");a.innerHTML=w}}break;case"children":typeof g==="string"?zm(a,g):(typeof g==="number"||typeof g==="bigint")&&zm(a,""+g);break;case"onScroll":g!=null&&(typeof g!=="function"&&St(w,g),M0("scroll",a));break;case"onScrollEnd":g!=null&&(typeof g!=="function"&&St(w,g),M0("scrollend",a));break;case"onClick":g!=null&&(typeof g!=="function"&&St(w,g),a.onclick=U2);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(Ug.hasOwnProperty(w))g!=null&&typeof g!=="function"&&St(w,g);else a:{if(w[0]==="o"&&w[1]==="n"&&(m=w.endsWith("Capture"),t=w.slice(2,m?w.length-7:void 0),b=a[Sa]||null,b=b!=null?b[w]:null,typeof b==="function"&&a.removeEventListener(t,b,m),typeof g==="function")){typeof b!=="function"&&b!==null&&(w in a?a[w]=null:a.hasAttribute(w)&&a.removeAttribute(w)),a.addEventListener(t,g,m);break a}w in a?a[w]=g:g===!0?a.setAttribute(w,""):Ea(a,w,g)}}}function Za(a,t,w){switch(Xd(t,w),t){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":M0("error",a),M0("load",a);var g=!1,m=!1,b;for(b in w)if(w.hasOwnProperty(b)){var v=w[b];if(v!=null)switch(b){case"src":g=!0;break;case"srcSet":m=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");default:u0(a,t,b,v,w,null)}}m&&u0(a,t,"srcSet",w.srcSet,w,null),g&&u0(a,t,"src",w.src,w,null);return;case"input":t0("input",w),M0("invalid",a);var d=b=v=m=null,x=null,f=null;for(g in w)if(w.hasOwnProperty(g)){var Y=w[g];if(Y!=null)switch(g){case"name":m=Y;break;case"type":v=Y;break;case"checked":x=Y;break;case"defaultChecked":f=Y;break;case"value":b=Y;break;case"defaultValue":d=Y;break;case"children":case"dangerouslySetInnerHTML":if(Y!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:u0(a,t,g,Y,w,null)}}f3(a,w),o3(a,b,d,x,f,v,m,!1),Fb(a);return;case"select":t0("select",w),M0("invalid",a),g=v=b=null;for(m in w)if(w.hasOwnProperty(m)&&(d=w[m],d!=null))switch(m){case"value":b=d;break;case"defaultValue":v=d;break;case"multiple":g=d;default:u0(a,t,m,d,w,null)}l3(a,w),t=b,w=v,a.multiple=!!g,t!=null?g1(a,!!g,t,!1):w!=null&&g1(a,!!g,w,!0);return;case"textarea":t0("textarea",w),M0("invalid",a),b=m=g=null;for(v in w)if(w.hasOwnProperty(v)&&(d=w[v],d!=null))switch(v){case"value":g=d;break;case"defaultValue":m=d;break;case"children":b=d;break;case"dangerouslySetInnerHTML":if(d!=null)throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");break;default:u0(a,t,v,d,w,null)}$3(a,w),Y3(a,g,m,b),Fb(a);return;case"option":N3(a,w);for(x in w)if(w.hasOwnProperty(x)&&(g=w[x],g!=null))switch(x){case"selected":a.selected=g&&typeof g!=="function"&&typeof g!=="symbol";break;default:u0(a,t,x,g,w,null)}return;case"dialog":M0("beforetoggle",a),M0("toggle",a),M0("cancel",a),M0("close",a);break;case"iframe":case"object":M0("load",a);break;case"video":case"audio":for(g=0;g<Qb.length;g++)M0(Qb[g],a);break;case"image":M0("error",a),M0("load",a);break;case"details":M0("toggle",a);break;case"embed":case"source":case"link":M0("error",a),M0("load",a);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(f in w)if(w.hasOwnProperty(f)&&(g=w[f],g!=null))switch(f){case"children":case"dangerouslySetInnerHTML":throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");default:u0(a,t,f,g,w,null)}return;default:if(lm(t)){for(Y in w)w.hasOwnProperty(Y)&&(g=w[Y],g!==void 0&&Rd(a,t,Y,g,w,void 0));return}}for(d in w)w.hasOwnProperty(d)&&(g=w[d],g!=null&&u0(a,t,d,g,w,null))}function V8(a,t,w,g){switch(Xd(t,g),t){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var m=null,b=null,v=null,d=null,x=null,f=null,Y=null;for(H in w){var Z=w[H];if(w.hasOwnProperty(H)&&Z!=null)switch(H){case"checked":break;case"value":break;case"defaultValue":x=Z;default:g.hasOwnProperty(H)||u0(a,t,H,null,g,Z)}}for(var B in g){var H=g[B];if(Z=w[B],g.hasOwnProperty(B)&&(H!=null||Z!=null))switch(B){case"type":b=H;break;case"name":m=H;break;case"checked":f=H;break;case"defaultChecked":Y=H;break;case"value":v=H;break;case"defaultValue":d=H;break;case"children":case"dangerouslySetInnerHTML":if(H!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:H!==Z&&u0(a,t,B,H,g,Z)}}t=w.type==="checkbox"||w.type==="radio"?w.checked!=null:w.value!=null,g=g.type==="checkbox"||g.type==="radio"?g.checked!=null:g.value!=null,t||!g||Sf||(console.error("A component is changing an uncontrolled input to be controlled. This is likely caused by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"),Sf=!0),!t||g||cf||(console.error("A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://react.dev/link/controlled-components"),cf=!0),sv(a,v,d,x,f,Y,b,m);return;case"select":H=v=d=B=null;for(b in w)if(x=w[b],w.hasOwnProperty(b)&&x!=null)switch(b){case"value":break;case"multiple":H=x;default:g.hasOwnProperty(b)||u0(a,t,b,null,g,x)}for(m in g)if(b=g[m],x=w[m],g.hasOwnProperty(m)&&(b!=null||x!=null))switch(m){case"value":B=b;break;case"defaultValue":d=b;break;case"multiple":v=b;default:b!==x&&u0(a,t,m,b,g,x)}g=d,t=v,w=H,B!=null?g1(a,!!t,B,!1):!!w!==!!t&&(g!=null?g1(a,!!t,g,!0):g1(a,!!t,t?[]:"",!1));return;case"textarea":H=B=null;for(d in w)if(m=w[d],w.hasOwnProperty(d)&&m!=null&&!g.hasOwnProperty(d))switch(d){case"value":break;case"children":break;default:u0(a,t,d,null,g,m)}for(v in g)if(m=g[v],b=w[v],g.hasOwnProperty(v)&&(m!=null||b!=null))switch(v){case"value":B=m;break;case"defaultValue":H=m;break;case"children":break;case"dangerouslySetInnerHTML":if(m!=null)throw Error("`dangerouslySetInnerHTML` does not make sense on <textarea>.");break;default:m!==b&&u0(a,t,v,m,g,b)}B3(a,B,H);return;case"option":for(var F in w)if(B=w[F],w.hasOwnProperty(F)&&B!=null&&!g.hasOwnProperty(F))switch(F){case"selected":a.selected=!1;break;default:u0(a,t,F,null,g,B)}for(x in g)if(B=g[x],H=w[x],g.hasOwnProperty(x)&&B!==H&&(B!=null||H!=null))switch(x){case"selected":a.selected=B&&typeof B!=="function"&&typeof B!=="symbol";break;default:u0(a,t,x,B,g,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 D in w)B=w[D],w.hasOwnProperty(D)&&B!=null&&!g.hasOwnProperty(D)&&u0(a,t,D,null,g,B);for(f in g)if(B=g[f],H=w[f],g.hasOwnProperty(f)&&B!==H&&(B!=null||H!=null))switch(f){case"children":case"dangerouslySetInnerHTML":if(B!=null)throw Error(t+" is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.");break;default:u0(a,t,f,B,g,H)}return;default:if(lm(t)){for(var h0 in w)B=w[h0],w.hasOwnProperty(h0)&&B!==void 0&&!g.hasOwnProperty(h0)&&Rd(a,t,h0,void 0,g,B);for(Y in g)B=g[Y],H=w[Y],!g.hasOwnProperty(Y)||B===H||B===void 0&&H===void 0||Rd(a,t,Y,B,g,H);return}}for(var J0 in w)B=w[J0],w.hasOwnProperty(J0)&&B!=null&&!g.hasOwnProperty(J0)&&u0(a,t,J0,null,g,B);for(Z in g)B=g[Z],H=w[Z],!g.hasOwnProperty(Z)||B===H||B==null&&H==null||u0(a,t,Z,B,g,H)}function d6(a){switch(a){case"class":return"className";case"for":return"htmlFor";default:return a}}function Gd(a){var t={};a=a.style;for(var w=0;w<a.length;w++){var g=a[w];t[g]=a.getPropertyValue(g)}return t}function r6(a,t,w){if(t!=null&&typeof t!=="object")console.error("The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + 'em'}} when using JSX.");else{var g,m=g="",b;for(b in t)if(t.hasOwnProperty(b)){var v=t[b];v!=null&&typeof v!=="boolean"&&v!==""&&(b.indexOf("--")===0?(ga(v,b),g+=m+b+":"+(""+v).trim()):typeof v!=="number"||v===0||z9.has(b)?(ga(v,b),g+=m+b.replace(r9,"-$1").toLowerCase().replace(x9,"-ms-")+":"+(""+v).trim()):g+=m+b.replace(r9,"-$1").toLowerCase().replace(x9,"-ms-")+":"+v+"px",m=";")}g=g||null,t=a.getAttribute("style"),t!==g&&(g=yw(g),yw(t)!==g&&(w.style=Gd(a)))}}function ot(a,t,w,g,m,b){if(m.delete(w),a=a.getAttribute(w),a===null)switch(typeof g){case"undefined":case"function":case"symbol":case"boolean":return}else if(g!=null)switch(typeof g){case"function":case"symbol":case"boolean":break;default:if(i(g,t),a===""+g)return}Ba(t,a,g,b)}function x6(a,t,w,g,m,b){if(m.delete(w),a=a.getAttribute(w),a===null){switch(typeof g){case"function":case"symbol":return}if(!g)return}else switch(typeof g){case"function":case"symbol":break;default:if(g)return}Ba(t,a,g,b)}function Zd(a,t,w,g,m,b){if(m.delete(w),a=a.getAttribute(w),a===null)switch(typeof g){case"undefined":case"function":case"symbol":return}else if(g!=null)switch(typeof g){case"function":case"symbol":break;default:if(i(g,w),a===""+g)return}Ba(t,a,g,b)}function f6(a,t,w,g,m,b){if(m.delete(w),a=a.getAttribute(w),a===null)switch(typeof g){case"undefined":case"function":case"symbol":case"boolean":return;default:if(isNaN(g))return}else if(g!=null)switch(typeof g){case"function":case"symbol":case"boolean":break;default:if(!isNaN(g)&&(i(g,t),a===""+g))return}Ba(t,a,g,b)}function Hd(a,t,w,g,m,b){if(m.delete(w),a=a.getAttribute(w),a===null)switch(typeof g){case"undefined":case"function":case"symbol":case"boolean":return}else if(g!=null)switch(typeof g){case"function":case"symbol":case"boolean":break;default:if(i(g,t),w=$m(""+g),a===w)return}Ba(t,a,g,b)}function o6(a,t,w,g){for(var m={},b=new Set,v=a.attributes,d=0;d<v.length;d++)switch(v[d].name.toLowerCase()){case"value":break;case"checked":break;case"selected":break;default:b.add(v[d].name)}if(lm(t)){for(var x in w)if(w.hasOwnProperty(x)){var f=w[x];if(f!=null){if(Ug.hasOwnProperty(x))typeof f!=="function"&&St(x,f);else if(w.suppressHydrationWarning!==!0)switch(x){case"children":typeof f!=="string"&&typeof f!=="number"||Ba("children",a.textContent,f,m);continue;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":continue;case"dangerouslySetInnerHTML":v=a.innerHTML,f=f?f.__html:void 0,f!=null&&(f=b6(a,f),Ba(x,v,f,m));continue;case"style":b.delete(x),r6(a,f,m);continue;case"offsetParent":case"offsetTop":case"offsetLeft":case"offsetWidth":case"offsetHeight":case"isContentEditable":case"outerText":case"outerHTML":b.delete(x.toLowerCase()),console.error("Assignment to read-only property will result in a no-op: `%s`",x);continue;case"className":b.delete("class"),v=$0(a,"class",f),Ba("className",v,f,m);continue;default:g.context===Iw&&t!=="svg"&&t!=="math"?b.delete(x.toLowerCase()):b.delete(x),v=$0(a,x,f),Ba(x,v,f,m)}}}}else for(f in w)if(w.hasOwnProperty(f)&&(x=w[f],x!=null)){if(Ug.hasOwnProperty(f))typeof x!=="function"&&St(f,x);else if(w.suppressHydrationWarning!==!0)switch(f){case"children":typeof x!=="string"&&typeof x!=="number"||Ba("children",a.textContent,x,m);continue;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"value":case"checked":case"selected":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":continue;case"dangerouslySetInnerHTML":v=a.innerHTML,x=x?x.__html:void 0,x!=null&&(x=b6(a,x),v!==x&&(m[f]={__html:v}));continue;case"className":ot(a,f,"class",x,b,m);continue;case"tabIndex":ot(a,f,"tabindex",x,b,m);continue;case"style":b.delete(f),r6(a,x,m);continue;case"multiple":b.delete(f),Ba(f,a.multiple,x,m);continue;case"muted":b.delete(f),Ba(f,a.muted,x,m);continue;case"autoFocus":b.delete("autofocus"),Ba(f,a.autofocus,x,m);continue;case"data":if(t!=="object"){b.delete(f),v=a.getAttribute("data"),Ba(f,v,x,m);continue}case"src":case"href":if(!(x!==""||t==="a"&&f==="href"||t==="object"&&f==="data")){f==="src"?console.error('An empty string ("") was passed to the %s attribute. This may cause the browser to download the whole page again over the network. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',f,f):console.error('An empty string ("") was passed to the %s attribute. To fix this, either do not render the element at all or pass null to %s instead of an empty string.',f,f);continue}Hd(a,f,f,x,b,m);continue;case"action":case"formAction":if(v=a.getAttribute(f),typeof x==="function"){b.delete(f.toLowerCase()),f==="formAction"?(b.delete("name"),b.delete("formenctype"),b.delete("formmethod"),b.delete("formtarget")):(b.delete("enctype"),b.delete("method"),b.delete("target"));continue}else if(v===vz){b.delete(f.toLowerCase()),Ba(f,"function",x,m);continue}Hd(a,f,f.toLowerCase(),x,b,m);continue;case"xlinkHref":Hd(a,f,"xlink:href",x,b,m);continue;case"contentEditable":Zd(a,f,"contenteditable",x,b,m);continue;case"spellCheck":Zd(a,f,"spellcheck",x,b,m);continue;case"draggable":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":Zd(a,f,f,x,b,m);continue;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":x6(a,f,f.toLowerCase(),x,b,m);continue;case"capture":case"download":a:{d=a;var Y=v=f,Z=m;if(b.delete(Y),d=d.getAttribute(Y),d===null)switch(typeof x){case"undefined":case"function":case"symbol":break a;default:if(x===!1)break a}else if(x!=null)switch(typeof x){case"function":case"symbol":break;case"boolean":if(x===!0&&d==="")break a;break;default:if(i(x,v),d===""+x)break a}Ba(v,d,x,Z)}continue;case"cols":case"rows":case"size":case"span":a:{if(d=a,Y=v=f,Z=m,b.delete(Y),d=d.getAttribute(Y),d===null)switch(typeof x){case"undefined":case"function":case"symbol":case"boolean":break a;default:if(isNaN(x)||1>x)break a}else if(x!=null)switch(typeof x){case"function":case"symbol":case"boolean":break;default:if(!(isNaN(x)||1>x)&&(i(x,v),d===""+x))break a}Ba(v,d,x,Z)}continue;case"rowSpan":f6(a,f,"rowspan",x,b,m);continue;case"start":f6(a,f,f,x,b,m);continue;case"xHeight":ot(a,f,"x-height",x,b,m);continue;case"xlinkActuate":ot(a,f,"xlink:actuate",x,b,m);continue;case"xlinkArcrole":ot(a,f,"xlink:arcrole",x,b,m);continue;case"xlinkRole":ot(a,f,"xlink:role",x,b,m);continue;case"xlinkShow":ot(a,f,"xlink:show",x,b,m);continue;case"xlinkTitle":ot(a,f,"xlink:title",x,b,m);continue;case"xlinkType":ot(a,f,"xlink:type",x,b,m);continue;case"xmlBase":ot(a,f,"xml:base",x,b,m);continue;case"xmlLang":ot(a,f,"xml:lang",x,b,m);continue;case"xmlSpace":ot(a,f,"xml:space",x,b,m);continue;case"inert":x!==""||Gv[f]||(Gv[f]=!0,console.error("Received an empty string for a boolean attribute `%s`. This will treat the attribute as if it were false. Either pass `false` to silence this warning, or pass `true` if you used an empty string in earlier versions of React to indicate this attribute is true.",f)),x6(a,f,f,x,b,m);continue;default:if(!(2<f.length)||f[0]!=="o"&&f[0]!=="O"||f[1]!=="n"&&f[1]!=="N"){d=U3(f),v=!1,g.context===Iw&&t!=="svg"&&t!=="math"?b.delete(d.toLowerCase()):(Y=f.toLowerCase(),Y=c2.hasOwnProperty(Y)?c2[Y]||null:null,Y!==null&&Y!==f&&(v=!0,b.delete(Y)),b.delete(d));a:if(Y=a,Z=d,d=x,L0(Z))if(Y.hasAttribute(Z))Y=Y.getAttribute(Z),i(d,Z),d=Y===""+d?d:Y;else{switch(typeof d){case"function":case"symbol":break a;case"boolean":if(Y=Z.toLowerCase().slice(0,5),Y!=="data-"&&Y!=="aria-")break a}d=d===void 0?void 0:null}else d=void 0;v||Ba(f,d,x,m)}}}return 0<b.size&&w.suppressHydrationWarning!==!0&&E8(a,b,m),Object.keys(m).length===0?null:m}function D8(a,t){switch(a.length){case 0:return"";case 1:return a[0];case 2:return a[0]+" "+t+" "+a[1];default:return a.slice(0,-1).join(", ")+", "+t+" "+a[a.length-1]}}function q2(a){return a.nodeType===9?a:a.ownerDocument}function N6(a){switch(a){case J1:return tm;case h2:return Mv;default:return Iw}}function z6(a,t){if(a===Iw)switch(t){case"svg":return tm;case"math":return Mv;default:return Iw}return a===tm&&t==="foreignObject"?Iw:a}function Md(a,t){return a==="textarea"||a==="noscript"||typeof t.children==="string"||typeof t.children==="number"||typeof t.children==="bigint"||typeof t.dangerouslySetInnerHTML==="object"&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}function p8(){var a=window.event;if(a&&a.type==="popstate"){if(a===pr)return!1;return pr=a,!0}return pr=null,!1}function e8(a){setTimeout(function(){throw a})}function aN(a,t,w){switch(t){case"button":case"input":case"select":case"textarea":w.autoFocus&&a.focus();break;case"img":w.src?a.src=w.src:w.srcSet&&(a.srcset=w.srcSet)}}function tN(a,t,w,g){V8(a,t,w,g),a[Sa]=g}function l6(a){zm(a,"")}function wN(a,t,w){a.nodeValue=w}function Cw(a){return a==="head"}function gN(a,t){a.removeChild(t)}function mN(a,t){(a.nodeType===9?a.body:a.nodeName==="HTML"?a.ownerDocument.body:a).removeChild(t)}function $6(a,t){var w=t,g=0,m=0;do{var b=w.nextSibling;if(a.removeChild(w),b&&b.nodeType===8)if(w=b.data,w===Hv){if(0<g&&8>g){w=g;var v=a.ownerDocument;if(w&rz&&um(v.documentElement),w&xz&&um(v.body),w&fz)for(w=v.head,um(w),v=w.firstChild;v;){var{nextSibling:d,nodeName:x}=v;v[jm]||x==="SCRIPT"||x==="STYLE"||x==="LINK"&&v.rel.toLowerCase()==="stylesheet"||w.removeChild(v),v=d}}if(m===0){a.removeChild(b),cm(t);return}m--}else w===Zv||w===Jw||w===Ub?m++:g=w.charCodeAt(0)-48;else g=0;w=b}while(w);cm(t)}function bN(a){a=a.style,typeof a.setProperty==="function"?a.setProperty("display","none","important"):a.display="none"}function vN(a){a.nodeValue=""}function dN(a,t){t=t[oz],t=t!==void 0&&t!==null&&t.hasOwnProperty("display")?t.display:null,a.style.display=t==null||typeof t==="boolean"?"":(""+t).trim()}function rN(a,t){a.nodeValue=t}function Jd(a){var t=a.firstChild;t&&t.nodeType===10&&(t=t.nextSibling);for(;t;){var w=t;switch(t=t.nextSibling,w.nodeName){case"HTML":case"HEAD":case"BODY":Jd(w),fg(w);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(w.rel.toLowerCase()==="stylesheet")continue}a.removeChild(w)}}function xN(a,t,w,g){for(;a.nodeType===1;){var m=w;if(a.nodeName.toLowerCase()!==t.toLowerCase()){if(!g&&(a.nodeName!=="INPUT"||a.type!=="hidden"))break}else if(!g)if(t==="input"&&a.type==="hidden"){i(m.name,"name");var b=m.name==null?null:""+m.name;if(m.type==="hidden"&&a.getAttribute("name")===b)return a}else return a;else if(!a[jm])switch(t){case"meta":if(!a.hasAttribute("itemprop"))break;return a;case"link":if(b=a.getAttribute("rel"),b==="stylesheet"&&a.hasAttribute("data-precedence"))break;else if(b!==m.rel||a.getAttribute("href")!==(m.href==null||m.href===""?null:m.href)||a.getAttribute("crossorigin")!==(m.crossOrigin==null?null:m.crossOrigin)||a.getAttribute("title")!==(m.title==null?null:m.title))break;return a;case"style":if(a.hasAttribute("data-precedence"))break;return a;case"script":if(b=a.getAttribute("src"),(b!==(m.src==null?null:m.src)||a.getAttribute("type")!==(m.type==null?null:m.type)||a.getAttribute("crossorigin")!==(m.crossOrigin==null?null:m.crossOrigin))&&b&&a.hasAttribute("async")&&!a.hasAttribute("itemprop"))break;return a;default:return a}if(a=Nt(a.nextSibling),a===null)break}return null}function fN(a,t,w){if(t==="")return null;for(;a.nodeType!==3;){if((a.nodeType!==1||a.nodeName!=="INPUT"||a.type!=="hidden")&&!w)return null;if(a=Nt(a.nextSibling),a===null)return null}return a}function Id(a){return a.data===Ub||a.data===Jw&&a.ownerDocument.readyState===Vf}function oN(a,t){var w=a.ownerDocument;if(a.data!==Jw||w.readyState===Vf)t();else{var g=function(){t(),w.removeEventListener("DOMContentLoaded",g)};w.addEventListener("DOMContentLoaded",g),a._reactRetry=g}}function Nt(a){for(;a!=null;a=a.nextSibling){var t=a.nodeType;if(t===1||t===3)break;if(t===8){if(t=a.data,t===Zv||t===Ub||t===Jw||t===Er||t===Ef)break;if(t===Hv)return null}}return a}function B6(a){if(a.nodeType===1){for(var t=a.nodeName.toLowerCase(),w={},g=a.attributes,m=0;m<g.length;m++){var b=g[m];w[d6(b.name)]=b.name.toLowerCase()==="style"?Gd(a):b.value}return{type:t,props:w}}return a.nodeType===8?{type:"Suspense",props:{}}:a.nodeValue}function Y6(a,t,w){return w===null||w[dz]!==!0?(a.nodeValue===t?a=null:(t=yw(t),a=yw(a.nodeValue)===t?null:a.nodeValue),a):null}function X6(a){a=a.nextSibling;for(var t=0;a;){if(a.nodeType===8){var w=a.data;if(w===Hv){if(t===0)return Nt(a.nextSibling);t--}else w!==Zv&&w!==Ub&&w!==Jw||t++}a=a.nextSibling}return null}function R6(a){a=a.previousSibling;for(var t=0;a;){if(a.nodeType===8){var w=a.data;if(w===Zv||w===Ub||w===Jw){if(t===0)return a;t--}else w===Hv&&t++}a=a.previousSibling}return null}function NN(a){cm(a)}function zN(a){cm(a)}function G6(a,t,w,g,m){switch(m&&kv(a,g.ancestorInfo),t=q2(w),a){case"html":if(a=t.documentElement,!a)throw Error("React expected an <html> element (document.documentElement) to exist in the Document but one was not found. React never removes the documentElement for any Document it renders into so the cause is likely in some other script running on this page.");return a;case"head":if(a=t.head,!a)throw Error("React expected a <head> element (document.head) to exist in the Document but one was not found. React never removes the head for any Document it renders into so the cause is likely in some other script running on this page.");return a;case"body":if(a=t.body,!a)throw Error("React expected a <body> element (document.body) to exist in the Document but one was not found. React never removes the body for any Document it renders into so the cause is likely in some other script running on this page.");return a;default:throw Error("resolveSingletonInstance was called with an element type that is not supported. This is a bug in React.")}}function lN(a,t,w,g){if(!w[cw]&&r(w)){var m=w.tagName.toLowerCase();console.error("You are mounting a new %s component when a previous one has not first unmounted. It is an error to render more than one %s component at a time and attributes and children of these components will likely fail in unpredictable ways. Please only render a single instance of <%s> and if you need to mount a new one, ensure any previous ones have unmounted first.",m,m,m)}switch(a){case"html":case"head":case"body":break;default:console.error("acquireSingletonInstance was called with an element type that is not supported. This is a bug in React.")}for(m=w.attributes;m.length;)w.removeAttributeNode(m[0]);Za(w,a,t),w[Aa]=g,w[Sa]=t}function um(a){for(var t=a.attributes;t.length;)a.removeAttributeNode(t[0]);fg(a)}function A2(a){return typeof a.getRootNode==="function"?a.getRootNode():a.nodeType===9?a:a.ownerDocument}function Z6(a,t,w){var g=wm;if(g&&typeof t==="string"&&t){var m=ft(t);m='link[rel="'+a+'"][href="'+m+'"]',typeof w==="string"&&(m+='[crossorigin="'+w+'"]'),wo.has(m)||(wo.add(m),a={rel:a,crossOrigin:w,href:t},g.querySelector(m)===null&&(t=g.createElement("link"),Za(t,"link",a),U(t),g.head.appendChild(t)))}}function H6(a,t,w,g){var m=(m=kw.current)?A2(m):null;if(!m)throw Error('"resourceRoot" was expected to exist. This is a bug in React.');switch(a){case"meta":case"title":return null;case"style":return typeof w.precedence==="string"&&typeof w.href==="string"?(w=Y1(w.href),t=q(m).hoistableStyles,g=t.get(w),g||(g={type:"style",instance:null,count:0,state:null},t.set(w,g)),g):{type:"void",instance:null,count:0,state:null};case"link":if(w.rel==="stylesheet"&&typeof w.href==="string"&&typeof w.precedence==="string"){a=Y1(w.href);var b=q(m).hoistableStyles,v=b.get(a);if(!v&&(m=m.ownerDocument||m,v={type:"stylesheet",instance:null,count:0,state:{loading:Sg,preload:null}},b.set(a,v),(b=m.querySelector(Tm(a)))&&!b._p&&(v.instance=b,v.state.loading=qb|Ht),!Mt.has(a))){var d={rel:"preload",as:"style",href:w.href,crossOrigin:w.crossOrigin,integrity:w.integrity,media:w.media,hrefLang:w.hrefLang,referrerPolicy:w.referrerPolicy};Mt.set(a,d),b||$N(m,a,d,v.state)}if(t&&g===null)throw w=`
|
|
173
|
-
|
|
174
|
-
- `+L2(t)+`
|
|
175
|
-
+ `+L2(w),Error("Expected <link> not to update to be updated to a stylesheet with precedence. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key."+w);return v}if(t&&g!==null)throw w=`
|
|
176
|
-
|
|
177
|
-
- `+L2(t)+`
|
|
178
|
-
+ `+L2(w),Error("Expected stylesheet with precedence to not be updated to a different kind of <link>. Check the `rel`, `href`, and `precedence` props of this component. Alternatively, check whether two different <link> components render in the same slot or share the same key."+w);return null;case"script":return t=w.async,w=w.src,typeof w==="string"&&t&&typeof t!=="function"&&typeof t!=="symbol"?(w=X1(w),t=q(m).hoistableScripts,g=t.get(w),g||(g={type:"script",instance:null,count:0,state:null},t.set(w,g)),g):{type:"void",instance:null,count:0,state:null};default:throw Error('getResource encountered a type it did not expect: "'+a+'". this is a bug in React.')}}function L2(a){var t=0,w="<link";return typeof a.rel==="string"?(t++,w+=' rel="'+a.rel+'"'):$w.call(a,"rel")&&(t++,w+=' rel="'+(a.rel===null?"null":"invalid type "+typeof a.rel)+'"'),typeof a.href==="string"?(t++,w+=' href="'+a.href+'"'):$w.call(a,"href")&&(t++,w+=' href="'+(a.href===null?"null":"invalid type "+typeof a.href)+'"'),typeof a.precedence==="string"?(t++,w+=' precedence="'+a.precedence+'"'):$w.call(a,"precedence")&&(t++,w+=" precedence={"+(a.precedence===null?"null":"invalid type "+typeof a.precedence)+"}"),Object.getOwnPropertyNames(a).length>t&&(w+=" ..."),w+" />"}function Y1(a){return'href="'+ft(a)+'"'}function Tm(a){return'link[rel="stylesheet"]['+a+"]"}function M6(a){return B0({},a,{"data-precedence":a.precedence,precedence:null})}function $N(a,t,w,g){a.querySelector('link[rel="preload"][as="style"]['+t+"]")?g.loading=qb:(t=a.createElement("link"),g.preload=t,t.addEventListener("load",function(){return g.loading|=qb}),t.addEventListener("error",function(){return g.loading|=ao}),Za(t,"link",w),U(t),a.head.appendChild(t))}function X1(a){return'[src="'+ft(a)+'"]'}function km(a){return"script[async]"+a}function J6(a,t,w){if(t.count++,t.instance===null)switch(t.type){case"style":var g=a.querySelector('style[data-href~="'+ft(w.href)+'"]');if(g)return t.instance=g,U(g),g;var m=B0({},w,{"data-href":w.href,"data-precedence":w.precedence,href:null,precedence:null});return g=(a.ownerDocument||a).createElement("style"),U(g),Za(g,"style",m),W2(g,w.precedence,a),t.instance=g;case"stylesheet":m=Y1(w.href);var b=a.querySelector(Tm(m));if(b)return t.state.loading|=Ht,t.instance=b,U(b),b;g=M6(w),(m=Mt.get(m))&&Qd(g,m),b=(a.ownerDocument||a).createElement("link"),U(b);var v=b;return v._p=new Promise(function(d,x){v.onload=d,v.onerror=x}),Za(b,"link",g),t.state.loading|=Ht,W2(b,w.precedence,a),t.instance=b;case"script":if(b=X1(w.src),m=a.querySelector(km(b)))return t.instance=m,U(m),m;if(g=w,m=Mt.get(b))g=B0({},w),Ud(g,m);return a=a.ownerDocument||a,m=a.createElement("script"),U(m),Za(m,"link",g),a.head.appendChild(m),t.instance=m;case"void":return null;default:throw Error('acquireResource encountered a resource type it did not expect: "'+t.type+'". this is a bug in React.')}else t.type==="stylesheet"&&(t.state.loading&Ht)===Sg&&(g=t.instance,t.state.loading|=Ht,W2(g,w.precedence,a));return t.instance}function W2(a,t,w){for(var g=w.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),m=g.length?g[g.length-1]:null,b=m,v=0;v<g.length;v++){var d=g[v];if(d.dataset.precedence===t)b=d;else if(b!==m)break}b?b.parentNode.insertBefore(a,b.nextSibling):(t=w.nodeType===9?w.head:w,t.insertBefore(a,t.firstChild))}function Qd(a,t){a.crossOrigin==null&&(a.crossOrigin=t.crossOrigin),a.referrerPolicy==null&&(a.referrerPolicy=t.referrerPolicy),a.title==null&&(a.title=t.title)}function Ud(a,t){a.crossOrigin==null&&(a.crossOrigin=t.crossOrigin),a.referrerPolicy==null&&(a.referrerPolicy=t.referrerPolicy),a.integrity==null&&(a.integrity=t.integrity)}function I6(a,t,w){if(Jv===null){var g=new Map,m=Jv=new Map;m.set(w,g)}else m=Jv,g=m.get(w),g||(g=new Map,m.set(w,g));if(g.has(a))return g;g.set(a,null),w=w.getElementsByTagName(a);for(m=0;m<w.length;m++){var b=w[m];if(!(b[jm]||b[Aa]||a==="link"&&b.getAttribute("rel")==="stylesheet")&&b.namespaceURI!==J1){var v=b.getAttribute(t)||"";v=a+v;var d=g.get(v);d?d.push(b):g.set(v,[b])}}return g}function Q6(a,t,w){a=a.ownerDocument||a,a.head.insertBefore(w,t==="title"?a.querySelector("head > title"):null)}function BN(a,t,w){var g=!w.ancestorInfo.containerTagInScope;if(w.context===tm||t.itemProp!=null)return!g||t.itemProp==null||a!=="meta"&&a!=="title"&&a!=="style"&&a!=="link"&&a!=="script"||console.error("Cannot render a <%s> outside the main document if it has an `itemProp` prop. `itemProp` suggests the tag belongs to an `itemScope` which can appear anywhere in the DOM. If you were intending for React to hoist this <%s> remove the `itemProp` prop. Otherwise, try moving this tag into the <head> or <body> of the Document.",a,a),!1;switch(a){case"meta":case"title":return!0;case"style":if(typeof t.precedence!=="string"||typeof t.href!=="string"||t.href===""){g&&console.error('Cannot render a <style> outside the main document without knowing its precedence and a unique href key. React can hoist and deduplicate <style> tags if you provide a `precedence` prop along with an `href` prop that does not conflict with the `href` values used in any other hoisted <style> or <link rel="stylesheet" ...> tags. Note that hoisting <style> tags is considered an advanced feature that most will not use directly. Consider moving the <style> tag to the <head> or consider adding a `precedence="default"` and `href="some unique resource identifier"`.');break}return!0;case"link":if(typeof t.rel!=="string"||typeof t.href!=="string"||t.href===""||t.onLoad||t.onError){if(t.rel==="stylesheet"&&typeof t.precedence==="string"){a=t.href;var{onError:m,disabled:b}=t;w=[],t.onLoad&&w.push("`onLoad`"),m&&w.push("`onError`"),b!=null&&w.push("`disabled`"),m=D8(w,"and"),m+=w.length===1?" prop":" props",b=w.length===1?"an "+m:"the "+m,w.length&&console.error('React encountered a <link rel="stylesheet" href="%s" ... /> with a `precedence` prop that also included %s. The presence of loading and error handlers indicates an intent to manage the stylesheet loading state from your from your Component code and React will not hoist or deduplicate this stylesheet. If your intent was to have React hoist and deduplciate this stylesheet using the `precedence` prop remove the %s, otherwise remove the `precedence` prop.',a,b,m)}g&&(typeof t.rel!=="string"||typeof t.href!=="string"||t.href===""?console.error("Cannot render a <link> outside the main document without a `rel` and `href` prop. Try adding a `rel` and/or `href` prop to this <link> or moving the link into the <head> tag"):(t.onError||t.onLoad)&&console.error("Cannot render a <link> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>."));break}switch(t.rel){case"stylesheet":return a=t.precedence,t=t.disabled,typeof a!=="string"&&g&&console.error('Cannot render a <link rel="stylesheet" /> outside the main document without knowing its precedence. Consider adding precedence="default" or moving it into the root <head> tag.'),typeof a==="string"&&t==null;default:return!0}case"script":if(a=t.async&&typeof t.async!=="function"&&typeof t.async!=="symbol",!a||t.onLoad||t.onError||!t.src||typeof t.src!=="string"){g&&(a?t.onLoad||t.onError?console.error("Cannot render a <script> with onLoad or onError listeners outside the main document. Try removing onLoad={...} and onError={...} or moving it into the root <head> tag or somewhere in the <body>."):console.error("Cannot render a <script> outside the main document without `async={true}` and a non-empty `src` prop. Ensure there is a valid `src` and either make the script async or move it into the root <head> tag or somewhere in the <body>."):console.error('Cannot render a sync or defer <script> outside the main document without knowing its order. Try adding async="" or moving it into the root <head> tag.'));break}return!0;case"noscript":case"template":g&&console.error("Cannot render <%s> outside the main document. Try moving it into the root <head> tag.",a)}return!1}function U6(a){return a.type==="stylesheet"&&(a.state.loading&to)===Sg?!1:!0}function YN(){}function XN(a,t,w){if(Ab===null)throw Error("Internal React Error: suspendedState null when it was expected to exists. Please report this as a React bug.");var g=Ab;if(t.type==="stylesheet"&&(typeof w.media!=="string"||matchMedia(w.media).matches!==!1)&&(t.state.loading&Ht)===Sg){if(t.instance===null){var m=Y1(w.href),b=a.querySelector(Tm(m));if(b){a=b._p,a!==null&&typeof a==="object"&&typeof a.then==="function"&&(g.count++,g=K2.bind(g),a.then(g,g)),t.state.loading|=Ht,t.instance=b,U(b);return}b=a.ownerDocument||a,w=M6(w),(m=Mt.get(m))&&Qd(w,m),b=b.createElement("link"),U(b);var v=b;v._p=new Promise(function(d,x){v.onload=d,v.onerror=x}),Za(b,"link",w),t.instance=b}g.stylesheets===null&&(g.stylesheets=new Map),g.stylesheets.set(t,a),(a=t.state.preload)&&(t.state.loading&to)===Sg&&(g.count++,t=K2.bind(g),a.addEventListener("load",t),a.addEventListener("error",t))}}function RN(){if(Ab===null)throw Error("Internal React Error: suspendedState null when it was expected to exists. Please report this as a React bug.");var a=Ab;return a.stylesheets&&a.count===0&&qd(a,a.stylesheets),0<a.count?function(t){var w=setTimeout(function(){if(a.stylesheets&&qd(a,a.stylesheets),a.unsuspend){var g=a.unsuspend;a.unsuspend=null,g()}},60000);return a.unsuspend=t,function(){a.unsuspend=null,clearTimeout(w)}}:null}function K2(){if(this.count--,this.count===0){if(this.stylesheets)qd(this,this.stylesheets);else if(this.unsuspend){var a=this.unsuspend;this.unsuspend=null,a()}}}function qd(a,t){a.stylesheets=null,a.unsuspend!==null&&(a.count++,Iv=new Map,t.forEach(GN,a),Iv=null,K2.call(a))}function GN(a,t){if(!(t.state.loading&Ht)){var w=Iv.get(a);if(w)var g=w.get(a3);else{w=new Map,Iv.set(a,w);for(var m=a.querySelectorAll("link[data-precedence],style[data-precedence]"),b=0;b<m.length;b++){var v=m[b];if(v.nodeName==="LINK"||v.getAttribute("media")!=="not all")w.set(v.dataset.precedence,v),g=v}g&&w.set(a3,g)}m=t.instance,v=m.getAttribute("data-precedence"),b=w.get(v)||g,b===g&&w.set(a3,m),w.set(v,m),this.count++,g=K2.bind(this),m.addEventListener("load",g),m.addEventListener("error",g),b?b.parentNode.insertBefore(m,b.nextSibling):(a=a.nodeType===9?a.head:a,a.insertBefore(m,a.firstChild)),t.state.loading|=Ht}}function ZN(a,t,w,g,m,b,v,d){this.tag=1,this.containerInfo=a,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=cg,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=a1(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=a1(0),this.hiddenUpdates=a1(null),this.identifierPrefix=g,this.onUncaughtError=m,this.onCaughtError=b,this.onRecoverableError=v,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=d,this.incompleteTransitions=new Map,this.passiveEffectDuration=this.effectDuration=-0,this.memoizedUpdaters=new Set,a=this.pendingUpdatersLaneMap=[];for(t=0;31>t;t++)a.push(new Set);this._debugRootType=w?"hydrateRoot()":"createRoot()"}function q6(a,t,w,g,m,b,v,d,x,f,Y,Z){return a=new ZN(a,t,w,v,d,x,f,Z),t=F7,b===!0&&(t|=La|Kt),Lt&&(t|=Ma),b=L(3,null,null,t),a.current=b,b.stateNode=a,t=m5(),Zg(t),a.pooledCache=t,Zg(t),b.memoizedState={element:g,isDehydrated:w,cache:t},r5(b),a}function A6(a){if(!a)return iw;return a=iw,a}function Ad(a,t,w,g,m,b){if(qa&&typeof qa.onScheduleFiberRoot==="function")try{qa.onScheduleFiberRoot(H1,g,w)}catch(v){nt||(nt=!0,console.error("React instrumentation encountered an error: %s",v))}_!==null&&typeof _.markRenderScheduled==="function"&&_.markRenderScheduled(t),m=A6(m),g.context===null?g.context=m:g.pendingContext=m,Vt&>!==null&&!vo&&(vo=!0,console.error(`Render methods should be a pure function of props and state; triggering nested component updates from render is not allowed. If necessary, trigger nested updates in componentDidUpdate.
|
|
179
|
-
|
|
180
|
-
Check the render method of %s.`,O(gt)||"Unknown")),g=Kw(t),g.payload={element:w},b=b===void 0?null:b,b!==null&&(typeof b!=="function"&&console.error("Expected the last optional `callback` argument to be a function. Instead received: %s.",b),g.callback=b),w=Ow(a,g,t),w!==null&&(ba(w,a,t),Jm(w,a,t))}function L6(a,t){if(a=a.memoizedState,a!==null&&a.dehydrated!==null){var w=a.retryLane;a.retryLane=w!==0&&w<t?w:t}}function Ld(a,t){L6(a,t),(a=a.alternate)&&L6(a,t)}function W6(a){if(a.tag===13){var t=ka(a,67108864);t!==null&&ba(t,a,67108864),Ld(a,67108864)}}function HN(){return gt}function MN(){for(var a=new Map,t=1,w=0;31>w;w++){var g=Dg(t);a.set(t,g),t*=2}return a}function JN(a,t,w,g){var m=G.T;G.T=null;var b=_0.p;try{_0.p=wt,Wd(a,t,w,g)}finally{_0.p=b,G.T=m}}function IN(a,t,w,g){var m=G.T;G.T=null;var b=_0.p;try{_0.p=Wt,Wd(a,t,w,g)}finally{_0.p=b,G.T=m}}function Wd(a,t,w,g){if(Uv){var m=Kd(g);if(m===null)Yd(a,t,g,qv,w),O6(a,g);else if(QN(m,a,t,w,g))g.stopPropagation();else if(O6(a,g),t&4&&-1<$z.indexOf(a)){for(;m!==null;){var b=r(m);if(b!==null)switch(b.tag){case 3:if(b=b.stateNode,b.current.memoizedState.isDehydrated){var v=yt(b.pendingLanes);if(v!==0){var d=b;d.pendingLanes|=2;for(d.entangledLanes|=2;v;){var x=1<<31-Ka(v);d.entanglements[1]|=x,v&=~x}ct(b),(s0&(Fa|st))===mt&&(ov=jt()+Ff,ym(0,!1))}}break;case 13:d=ka(b,2),d!==null&&ba(d,b,2),z1(),Ld(b,2)}if(b=Kd(g),b===null&&Yd(a,t,g,qv,w),b===m)break;m=b}m!==null&&g.stopPropagation()}else Yd(a,t,g,null,w)}}function Kd(a){return a=hv(a),Od(a)}function Od(a){if(qv=null,a=mw(a),a!==null){var t=V0(a);if(t===null)a=null;else{var w=t.tag;if(w===13){if(a=P0(t),a!==null)return a;a=null}else if(w===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;a=null}else t!==a&&(a=null)}}return qv=a,null}function K6(a){switch(a){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 wt;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 Wt;case"message":switch(sN()){case hd:return wt;case cd:return Wt;case Z1:case FN:return Et;case Sd:return T2;default:return Et}default:return Et}}function O6(a,t){switch(a){case"focusin":case"focusout":wg=null;break;case"dragenter":case"dragleave":gg=null;break;case"mouseover":case"mouseout":mg=null;break;case"pointerover":case"pointerout":Wb.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Kb.delete(t.pointerId)}}function hm(a,t,w,g,m,b){if(a===null||a.nativeEvent!==b)return a={blockedOn:t,domEventName:w,eventSystemFlags:g,nativeEvent:b,targetContainers:[m]},t!==null&&(t=r(t),t!==null&&W6(t)),a;return a.eventSystemFlags|=g,t=a.targetContainers,m!==null&&t.indexOf(m)===-1&&t.push(m),a}function QN(a,t,w,g,m){switch(t){case"focusin":return wg=hm(wg,a,t,w,g,m),!0;case"dragenter":return gg=hm(gg,a,t,w,g,m),!0;case"mouseover":return mg=hm(mg,a,t,w,g,m),!0;case"pointerover":var b=m.pointerId;return Wb.set(b,hm(Wb.get(b)||null,a,t,w,g,m)),!0;case"gotpointercapture":return b=m.pointerId,Kb.set(b,hm(Kb.get(b)||null,a,t,w,g,m)),!0}return!1}function P6(a){var t=mw(a.target);if(t!==null){var w=V0(t);if(w!==null){if(t=w.tag,t===13){if(t=P0(w),t!==null){a.blockedOn=t,w1(a.priority,function(){if(w.tag===13){var g=at(w);g=t1(g);var m=ka(w,g);m!==null&&ba(m,w,g),Ld(w,g)}});return}}else if(t===3&&w.stateNode.current.memoizedState.isDehydrated){a.blockedOn=w.tag===3?w.stateNode.containerInfo:null;return}}}a.blockedOn=null}function O2(a){if(a.blockedOn!==null)return!1;for(var t=a.targetContainers;0<t.length;){var w=Kd(a.nativeEvent);if(w===null){w=a.nativeEvent;var g=new w.constructor(w.type,w),m=g;Em!==null&&console.error("Expected currently replaying event to be null. This error is likely caused by a bug in React. Please file an issue."),Em=m,w.target.dispatchEvent(g),Em===null&&console.error("Expected currently replaying event to not be null. This error is likely caused by a bug in React. Please file an issue."),Em=null}else return t=r(w),t!==null&&W6(t),a.blockedOn=w,!1;t.shift()}return!0}function _6(a,t,w){O2(a)&&w.delete(t)}function UN(){t3=!1,wg!==null&&O2(wg)&&(wg=null),gg!==null&&O2(gg)&&(gg=null),mg!==null&&O2(mg)&&(mg=null),Wb.forEach(_6),Kb.forEach(_6)}function P2(a,t){a.blockedOn===t&&(a.blockedOn=null,t3||(t3=!0,A0.unstable_scheduleCallback(A0.unstable_NormalPriority,UN)))}function s6(a){Av!==a&&(Av=a,A0.unstable_scheduleCallback(A0.unstable_NormalPriority,function(){Av===a&&(Av=null);for(var t=0;t<a.length;t+=3){var w=a[t],g=a[t+1],m=a[t+2];if(typeof g!=="function")if(Od(g||w)===null)continue;else break;var b=r(w);b!==null&&(a.splice(t,3),t-=3,w={pending:!0,data:m,method:w.method,action:g},Object.freeze(w),O5(b,w,g,m))}}))}function cm(a){function t(x){return P2(x,a)}wg!==null&&P2(wg,a),gg!==null&&P2(gg,a),mg!==null&&P2(mg,a),Wb.forEach(t),Kb.forEach(t);for(var w=0;w<bg.length;w++){var g=bg[w];g.blockedOn===a&&(g.blockedOn=null)}for(;0<bg.length&&(w=bg[0],w.blockedOn===null);)P6(w),w.blockedOn===null&&bg.shift();if(w=(a.ownerDocument||a).$$reactFormReplay,w!=null)for(g=0;g<w.length;g+=3){var m=w[g],b=w[g+1],v=m[Sa]||null;if(typeof b==="function")v||s6(w);else if(v){var d=null;if(b&&b.hasAttribute("formAction")){if(m=b,v=b[Sa]||null)d=v.formAction;else if(Od(m)!==null)continue}else d=v.action;typeof d==="function"?w[g+1]=d:(w.splice(g,3),g-=3),s6(w)}}}function Pd(a){this._internalRoot=a}function _2(a){this._internalRoot=a}function F6(a){a[cw]&&(a._reactRootContainer?console.error("You are calling ReactDOMClient.createRoot() on a container that was previously passed to ReactDOM.render(). This is not supported."):console.error("You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it."))}typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());var B0=Object.assign,qN=Symbol.for("react.element"),uw=Symbol.for("react.transitional.element"),R1=Symbol.for("react.portal"),G1=Symbol.for("react.fragment"),s2=Symbol.for("react.strict_mode"),_d=Symbol.for("react.profiler"),AN=Symbol.for("react.provider"),sd=Symbol.for("react.consumer"),it=Symbol.for("react.context"),Sm=Symbol.for("react.forward_ref"),Fd=Symbol.for("react.suspense"),yd=Symbol.for("react.suspense_list"),F2=Symbol.for("react.memo"),tt=Symbol.for("react.lazy"),Cd=Symbol.for("react.activity"),LN=Symbol.for("react.memo_cache_sentinel"),y6=Symbol.iterator,WN=Symbol.for("react.client.reference"),Ha=Array.isArray,G=gm.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,_0=g3.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,KN=Object.freeze({pending:!1,data:null,method:null,action:null}),ud=[],Td=[],lw=-1,Tw=E0(null),im=E0(null),kw=E0(null),y2=E0(null),$w=Object.prototype.hasOwnProperty,kd=A0.unstable_scheduleCallback,ON=A0.unstable_cancelCallback,PN=A0.unstable_shouldYield,_N=A0.unstable_requestPaint,jt=A0.unstable_now,sN=A0.unstable_getCurrentPriorityLevel,hd=A0.unstable_ImmediatePriority,cd=A0.unstable_UserBlockingPriority,Z1=A0.unstable_NormalPriority,FN=A0.unstable_LowPriority,Sd=A0.unstable_IdlePriority,yN=A0.log,CN=A0.unstable_setDisableYieldValue,H1=null,qa=null,_=null,nt=!1,Lt=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined",Ka=Math.clz32?Math.clz32:ua,uN=Math.log,TN=Math.LN2,C2=256,u2=4194304,wt=2,Wt=8,Et=32,T2=268435456,hw=Math.random().toString(36).slice(2),Aa="__reactFiber$"+hw,Sa="__reactProps$"+hw,cw="__reactContainer$"+hw,id="__reactEvents$"+hw,kN="__reactListeners$"+hw,hN="__reactHandles$"+hw,C6="__reactResources$"+hw,jm="__reactMarker$"+hw,u6=new Set,Ug={},jd={},cN={button:!0,checkbox:!0,image:!0,hidden:!0,radio:!0,reset:!0,submit:!0},SN=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]*$"),T6={},k6={},nm=0,h6,c6,S6,i6,j6,n6,E6;_b.__reactDisabledLog=!0;var nd,V6,Ed=!1,Vd=new(typeof WeakMap==="function"?WeakMap:Map),gt=null,Vt=!1,iN=/[\n"\\]/g,D6=!1,p6=!1,e6=!1,a9=!1,t9=!1,w9=!1,g9=["value","defaultValue"],m9=!1,b9=/["'&<>\n\t]|^\s|\s$/,jN="address applet area article aside base basefont bgsound blockquote body br button caption center col colgroup dd details dir div dl dt embed fieldset figcaption figure footer form frame frameset h1 h2 h3 h4 h5 h6 head header hgroup hr html iframe img input isindex li link listing main marquee menu menuitem meta nav noembed noframes noscript object ol p param plaintext pre script section select source style summary table tbody td template textarea tfoot th thead title tr track ul wbr xmp".split(" "),v9="applet caption html table td th marquee object template foreignObject desc title".split(" "),nN=v9.concat(["button"]),EN="dd dt li option optgroup p rp rt".split(" "),d9={current:null,formTag:null,aTagInScope:null,buttonTagInScope:null,nobrTagInScope:null,pTagInButtonScope:null,listItemTagAutoclosing:null,dlItemTagAutoclosing:null,containerTagInScope:null,implicitRootScope:!1},k2={},Dd={animation:"animationDelay animationDirection animationDuration animationFillMode animationIterationCount animationName animationPlayState animationTimingFunction".split(" "),background:"backgroundAttachment backgroundClip backgroundColor backgroundImage backgroundOrigin backgroundPositionX backgroundPositionY backgroundRepeat backgroundSize".split(" "),backgroundPosition:["backgroundPositionX","backgroundPositionY"],border:"borderBottomColor borderBottomStyle borderBottomWidth borderImageOutset borderImageRepeat borderImageSlice borderImageSource borderImageWidth borderLeftColor borderLeftStyle borderLeftWidth borderRightColor borderRightStyle borderRightWidth borderTopColor borderTopStyle borderTopWidth".split(" "),borderBlockEnd:["borderBlockEndColor","borderBlockEndStyle","borderBlockEndWidth"],borderBlockStart:["borderBlockStartColor","borderBlockStartStyle","borderBlockStartWidth"],borderBottom:["borderBottomColor","borderBottomStyle","borderBottomWidth"],borderColor:["borderBottomColor","borderLeftColor","borderRightColor","borderTopColor"],borderImage:["borderImageOutset","borderImageRepeat","borderImageSlice","borderImageSource","borderImageWidth"],borderInlineEnd:["borderInlineEndColor","borderInlineEndStyle","borderInlineEndWidth"],borderInlineStart:["borderInlineStartColor","borderInlineStartStyle","borderInlineStartWidth"],borderLeft:["borderLeftColor","borderLeftStyle","borderLeftWidth"],borderRadius:["borderBottomLeftRadius","borderBottomRightRadius","borderTopLeftRadius","borderTopRightRadius"],borderRight:["borderRightColor","borderRightStyle","borderRightWidth"],borderStyle:["borderBottomStyle","borderLeftStyle","borderRightStyle","borderTopStyle"],borderTop:["borderTopColor","borderTopStyle","borderTopWidth"],borderWidth:["borderBottomWidth","borderLeftWidth","borderRightWidth","borderTopWidth"],columnRule:["columnRuleColor","columnRuleStyle","columnRuleWidth"],columns:["columnCount","columnWidth"],flex:["flexBasis","flexGrow","flexShrink"],flexFlow:["flexDirection","flexWrap"],font:"fontFamily fontFeatureSettings fontKerning fontLanguageOverride fontSize fontSizeAdjust fontStretch fontStyle fontVariant fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition fontWeight lineHeight".split(" "),fontVariant:"fontVariantAlternates fontVariantCaps fontVariantEastAsian fontVariantLigatures fontVariantNumeric fontVariantPosition".split(" "),gap:["columnGap","rowGap"],grid:"gridAutoColumns gridAutoFlow gridAutoRows gridTemplateAreas gridTemplateColumns gridTemplateRows".split(" "),gridArea:["gridColumnEnd","gridColumnStart","gridRowEnd","gridRowStart"],gridColumn:["gridColumnEnd","gridColumnStart"],gridColumnGap:["columnGap"],gridGap:["columnGap","rowGap"],gridRow:["gridRowEnd","gridRowStart"],gridRowGap:["rowGap"],gridTemplate:["gridTemplateAreas","gridTemplateColumns","gridTemplateRows"],listStyle:["listStyleImage","listStylePosition","listStyleType"],margin:["marginBottom","marginLeft","marginRight","marginTop"],marker:["markerEnd","markerMid","markerStart"],mask:"maskClip maskComposite maskImage maskMode maskOrigin maskPositionX maskPositionY maskRepeat maskSize".split(" "),maskPosition:["maskPositionX","maskPositionY"],outline:["outlineColor","outlineStyle","outlineWidth"],overflow:["overflowX","overflowY"],padding:["paddingBottom","paddingLeft","paddingRight","paddingTop"],placeContent:["alignContent","justifyContent"],placeItems:["alignItems","justifyItems"],placeSelf:["alignSelf","justifySelf"],textDecoration:["textDecorationColor","textDecorationLine","textDecorationStyle"],textEmphasis:["textEmphasisColor","textEmphasisStyle"],transition:["transitionDelay","transitionDuration","transitionProperty","transitionTimingFunction"],wordWrap:["overflowWrap"]},r9=/([A-Z])/g,x9=/^ms-/,VN=/^(?:webkit|moz|o)[A-Z]/,DN=/^-ms-/,pN=/-(.)/g,f9=/;\s*$/,M1={},pd={},o9=!1,N9=!1,z9=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(" ")),h2="http://www.w3.org/1998/Math/MathML",J1="http://www.w3.org/2000/svg",eN=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"]]),c2={accept:"accept",acceptcharset:"acceptCharset","accept-charset":"acceptCharset",accesskey:"accessKey",action:"action",allowfullscreen:"allowFullScreen",alt:"alt",as:"as",async:"async",autocapitalize:"autoCapitalize",autocomplete:"autoComplete",autocorrect:"autoCorrect",autofocus:"autoFocus",autoplay:"autoPlay",autosave:"autoSave",capture:"capture",cellpadding:"cellPadding",cellspacing:"cellSpacing",challenge:"challenge",charset:"charSet",checked:"checked",children:"children",cite:"cite",class:"className",classid:"classID",classname:"className",cols:"cols",colspan:"colSpan",content:"content",contenteditable:"contentEditable",contextmenu:"contextMenu",controls:"controls",controlslist:"controlsList",coords:"coords",crossorigin:"crossOrigin",dangerouslysetinnerhtml:"dangerouslySetInnerHTML",data:"data",datetime:"dateTime",default:"default",defaultchecked:"defaultChecked",defaultvalue:"defaultValue",defer:"defer",dir:"dir",disabled:"disabled",disablepictureinpicture:"disablePictureInPicture",disableremoteplayback:"disableRemotePlayback",download:"download",draggable:"draggable",enctype:"encType",enterkeyhint:"enterKeyHint",fetchpriority:"fetchPriority",for:"htmlFor",form:"form",formmethod:"formMethod",formaction:"formAction",formenctype:"formEncType",formnovalidate:"formNoValidate",formtarget:"formTarget",frameborder:"frameBorder",headers:"headers",height:"height",hidden:"hidden",high:"high",href:"href",hreflang:"hrefLang",htmlfor:"htmlFor",httpequiv:"httpEquiv","http-equiv":"httpEquiv",icon:"icon",id:"id",imagesizes:"imageSizes",imagesrcset:"imageSrcSet",inert:"inert",innerhtml:"innerHTML",inputmode:"inputMode",integrity:"integrity",is:"is",itemid:"itemID",itemprop:"itemProp",itemref:"itemRef",itemscope:"itemScope",itemtype:"itemType",keyparams:"keyParams",keytype:"keyType",kind:"kind",label:"label",lang:"lang",list:"list",loop:"loop",low:"low",manifest:"manifest",marginwidth:"marginWidth",marginheight:"marginHeight",max:"max",maxlength:"maxLength",media:"media",mediagroup:"mediaGroup",method:"method",min:"min",minlength:"minLength",multiple:"multiple",muted:"muted",name:"name",nomodule:"noModule",nonce:"nonce",novalidate:"noValidate",open:"open",optimum:"optimum",pattern:"pattern",placeholder:"placeholder",playsinline:"playsInline",poster:"poster",preload:"preload",profile:"profile",radiogroup:"radioGroup",readonly:"readOnly",referrerpolicy:"referrerPolicy",rel:"rel",required:"required",reversed:"reversed",role:"role",rows:"rows",rowspan:"rowSpan",sandbox:"sandbox",scope:"scope",scoped:"scoped",scrolling:"scrolling",seamless:"seamless",selected:"selected",shape:"shape",size:"size",sizes:"sizes",span:"span",spellcheck:"spellCheck",src:"src",srcdoc:"srcDoc",srclang:"srcLang",srcset:"srcSet",start:"start",step:"step",style:"style",summary:"summary",tabindex:"tabIndex",target:"target",title:"title",type:"type",usemap:"useMap",value:"value",width:"width",wmode:"wmode",wrap:"wrap",about:"about",accentheight:"accentHeight","accent-height":"accentHeight",accumulate:"accumulate",additive:"additive",alignmentbaseline:"alignmentBaseline","alignment-baseline":"alignmentBaseline",allowreorder:"allowReorder",alphabetic:"alphabetic",amplitude:"amplitude",arabicform:"arabicForm","arabic-form":"arabicForm",ascent:"ascent",attributename:"attributeName",attributetype:"attributeType",autoreverse:"autoReverse",azimuth:"azimuth",basefrequency:"baseFrequency",baselineshift:"baselineShift","baseline-shift":"baselineShift",baseprofile:"baseProfile",bbox:"bbox",begin:"begin",bias:"bias",by:"by",calcmode:"calcMode",capheight:"capHeight","cap-height":"capHeight",clip:"clip",clippath:"clipPath","clip-path":"clipPath",clippathunits:"clipPathUnits",cliprule:"clipRule","clip-rule":"clipRule",color:"color",colorinterpolation:"colorInterpolation","color-interpolation":"colorInterpolation",colorinterpolationfilters:"colorInterpolationFilters","color-interpolation-filters":"colorInterpolationFilters",colorprofile:"colorProfile","color-profile":"colorProfile",colorrendering:"colorRendering","color-rendering":"colorRendering",contentscripttype:"contentScriptType",contentstyletype:"contentStyleType",cursor:"cursor",cx:"cx",cy:"cy",d:"d",datatype:"datatype",decelerate:"decelerate",descent:"descent",diffuseconstant:"diffuseConstant",direction:"direction",display:"display",divisor:"divisor",dominantbaseline:"dominantBaseline","dominant-baseline":"dominantBaseline",dur:"dur",dx:"dx",dy:"dy",edgemode:"edgeMode",elevation:"elevation",enablebackground:"enableBackground","enable-background":"enableBackground",end:"end",exponent:"exponent",externalresourcesrequired:"externalResourcesRequired",fill:"fill",fillopacity:"fillOpacity","fill-opacity":"fillOpacity",fillrule:"fillRule","fill-rule":"fillRule",filter:"filter",filterres:"filterRes",filterunits:"filterUnits",floodopacity:"floodOpacity","flood-opacity":"floodOpacity",floodcolor:"floodColor","flood-color":"floodColor",focusable:"focusable",fontfamily:"fontFamily","font-family":"fontFamily",fontsize:"fontSize","font-size":"fontSize",fontsizeadjust:"fontSizeAdjust","font-size-adjust":"fontSizeAdjust",fontstretch:"fontStretch","font-stretch":"fontStretch",fontstyle:"fontStyle","font-style":"fontStyle",fontvariant:"fontVariant","font-variant":"fontVariant",fontweight:"fontWeight","font-weight":"fontWeight",format:"format",from:"from",fx:"fx",fy:"fy",g1:"g1",g2:"g2",glyphname:"glyphName","glyph-name":"glyphName",glyphorientationhorizontal:"glyphOrientationHorizontal","glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphorientationvertical:"glyphOrientationVertical","glyph-orientation-vertical":"glyphOrientationVertical",glyphref:"glyphRef",gradienttransform:"gradientTransform",gradientunits:"gradientUnits",hanging:"hanging",horizadvx:"horizAdvX","horiz-adv-x":"horizAdvX",horizoriginx:"horizOriginX","horiz-origin-x":"horizOriginX",ideographic:"ideographic",imagerendering:"imageRendering","image-rendering":"imageRendering",in2:"in2",in:"in",inlist:"inlist",intercept:"intercept",k1:"k1",k2:"k2",k3:"k3",k4:"k4",k:"k",kernelmatrix:"kernelMatrix",kernelunitlength:"kernelUnitLength",kerning:"kerning",keypoints:"keyPoints",keysplines:"keySplines",keytimes:"keyTimes",lengthadjust:"lengthAdjust",letterspacing:"letterSpacing","letter-spacing":"letterSpacing",lightingcolor:"lightingColor","lighting-color":"lightingColor",limitingconeangle:"limitingConeAngle",local:"local",markerend:"markerEnd","marker-end":"markerEnd",markerheight:"markerHeight",markermid:"markerMid","marker-mid":"markerMid",markerstart:"markerStart","marker-start":"markerStart",markerunits:"markerUnits",markerwidth:"markerWidth",mask:"mask",maskcontentunits:"maskContentUnits",maskunits:"maskUnits",mathematical:"mathematical",mode:"mode",numoctaves:"numOctaves",offset:"offset",opacity:"opacity",operator:"operator",order:"order",orient:"orient",orientation:"orientation",origin:"origin",overflow:"overflow",overlineposition:"overlinePosition","overline-position":"overlinePosition",overlinethickness:"overlineThickness","overline-thickness":"overlineThickness",paintorder:"paintOrder","paint-order":"paintOrder",panose1:"panose1","panose-1":"panose1",pathlength:"pathLength",patterncontentunits:"patternContentUnits",patterntransform:"patternTransform",patternunits:"patternUnits",pointerevents:"pointerEvents","pointer-events":"pointerEvents",points:"points",pointsatx:"pointsAtX",pointsaty:"pointsAtY",pointsatz:"pointsAtZ",popover:"popover",popovertarget:"popoverTarget",popovertargetaction:"popoverTargetAction",prefix:"prefix",preservealpha:"preserveAlpha",preserveaspectratio:"preserveAspectRatio",primitiveunits:"primitiveUnits",property:"property",r:"r",radius:"radius",refx:"refX",refy:"refY",renderingintent:"renderingIntent","rendering-intent":"renderingIntent",repeatcount:"repeatCount",repeatdur:"repeatDur",requiredextensions:"requiredExtensions",requiredfeatures:"requiredFeatures",resource:"resource",restart:"restart",result:"result",results:"results",rotate:"rotate",rx:"rx",ry:"ry",scale:"scale",security:"security",seed:"seed",shaperendering:"shapeRendering","shape-rendering":"shapeRendering",slope:"slope",spacing:"spacing",specularconstant:"specularConstant",specularexponent:"specularExponent",speed:"speed",spreadmethod:"spreadMethod",startoffset:"startOffset",stddeviation:"stdDeviation",stemh:"stemh",stemv:"stemv",stitchtiles:"stitchTiles",stopcolor:"stopColor","stop-color":"stopColor",stopopacity:"stopOpacity","stop-opacity":"stopOpacity",strikethroughposition:"strikethroughPosition","strikethrough-position":"strikethroughPosition",strikethroughthickness:"strikethroughThickness","strikethrough-thickness":"strikethroughThickness",string:"string",stroke:"stroke",strokedasharray:"strokeDasharray","stroke-dasharray":"strokeDasharray",strokedashoffset:"strokeDashoffset","stroke-dashoffset":"strokeDashoffset",strokelinecap:"strokeLinecap","stroke-linecap":"strokeLinecap",strokelinejoin:"strokeLinejoin","stroke-linejoin":"strokeLinejoin",strokemiterlimit:"strokeMiterlimit","stroke-miterlimit":"strokeMiterlimit",strokewidth:"strokeWidth","stroke-width":"strokeWidth",strokeopacity:"strokeOpacity","stroke-opacity":"strokeOpacity",suppresscontenteditablewarning:"suppressContentEditableWarning",suppresshydrationwarning:"suppressHydrationWarning",surfacescale:"surfaceScale",systemlanguage:"systemLanguage",tablevalues:"tableValues",targetx:"targetX",targety:"targetY",textanchor:"textAnchor","text-anchor":"textAnchor",textdecoration:"textDecoration","text-decoration":"textDecoration",textlength:"textLength",textrendering:"textRendering","text-rendering":"textRendering",to:"to",transform:"transform",transformorigin:"transformOrigin","transform-origin":"transformOrigin",typeof:"typeof",u1:"u1",u2:"u2",underlineposition:"underlinePosition","underline-position":"underlinePosition",underlinethickness:"underlineThickness","underline-thickness":"underlineThickness",unicode:"unicode",unicodebidi:"unicodeBidi","unicode-bidi":"unicodeBidi",unicoderange:"unicodeRange","unicode-range":"unicodeRange",unitsperem:"unitsPerEm","units-per-em":"unitsPerEm",unselectable:"unselectable",valphabetic:"vAlphabetic","v-alphabetic":"vAlphabetic",values:"values",vectoreffect:"vectorEffect","vector-effect":"vectorEffect",version:"version",vertadvy:"vertAdvY","vert-adv-y":"vertAdvY",vertoriginx:"vertOriginX","vert-origin-x":"vertOriginX",vertoriginy:"vertOriginY","vert-origin-y":"vertOriginY",vhanging:"vHanging","v-hanging":"vHanging",videographic:"vIdeographic","v-ideographic":"vIdeographic",viewbox:"viewBox",viewtarget:"viewTarget",visibility:"visibility",vmathematical:"vMathematical","v-mathematical":"vMathematical",vocab:"vocab",widths:"widths",wordspacing:"wordSpacing","word-spacing":"wordSpacing",writingmode:"writingMode","writing-mode":"writingMode",x1:"x1",x2:"x2",x:"x",xchannelselector:"xChannelSelector",xheight:"xHeight","x-height":"xHeight",xlinkactuate:"xlinkActuate","xlink:actuate":"xlinkActuate",xlinkarcrole:"xlinkArcrole","xlink:arcrole":"xlinkArcrole",xlinkhref:"xlinkHref","xlink:href":"xlinkHref",xlinkrole:"xlinkRole","xlink:role":"xlinkRole",xlinkshow:"xlinkShow","xlink:show":"xlinkShow",xlinktitle:"xlinkTitle","xlink:title":"xlinkTitle",xlinktype:"xlinkType","xlink:type":"xlinkType",xmlbase:"xmlBase","xml:base":"xmlBase",xmllang:"xmlLang","xml:lang":"xmlLang",xmlns:"xmlns","xml:space":"xmlSpace",xmlnsxlink:"xmlnsXlink","xmlns:xlink":"xmlnsXlink",xmlspace:"xmlSpace",y1:"y1",y2:"y2",y:"y",ychannelselector:"yChannelSelector",z:"z",zoomandpan:"zoomAndPan"},l9={"aria-current":0,"aria-description":0,"aria-details":0,"aria-disabled":0,"aria-hidden":0,"aria-invalid":0,"aria-keyshortcuts":0,"aria-label":0,"aria-roledescription":0,"aria-autocomplete":0,"aria-checked":0,"aria-expanded":0,"aria-haspopup":0,"aria-level":0,"aria-modal":0,"aria-multiline":0,"aria-multiselectable":0,"aria-orientation":0,"aria-placeholder":0,"aria-pressed":0,"aria-readonly":0,"aria-required":0,"aria-selected":0,"aria-sort":0,"aria-valuemax":0,"aria-valuemin":0,"aria-valuenow":0,"aria-valuetext":0,"aria-atomic":0,"aria-busy":0,"aria-live":0,"aria-relevant":0,"aria-dropeffect":0,"aria-grabbed":0,"aria-activedescendant":0,"aria-colcount":0,"aria-colindex":0,"aria-colspan":0,"aria-controls":0,"aria-describedby":0,"aria-errormessage":0,"aria-flowto":0,"aria-labelledby":0,"aria-owns":0,"aria-posinset":0,"aria-rowcount":0,"aria-rowindex":0,"aria-rowspan":0,"aria-setsize":0},I1={},a7=RegExp("^(aria)-[: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]*$"),t7=RegExp("^(aria)[A-Z][: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]*$"),$9=!1,Oa={},B9=/^on./,w7=/^on[^A-Z]/,g7=RegExp("^(aria)-[: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]*$"),m7=RegExp("^(aria)[A-Z][: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]*$"),b7=/^[\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,Em=null,Q1=null,U1=null,ed=!1,Dt=!(typeof window==="undefined"||typeof window.document==="undefined"||typeof window.document.createElement==="undefined"),ar=!1;if(Dt)try{var Vm={};Object.defineProperty(Vm,"passive",{get:function(){ar=!0}}),window.addEventListener("test",Vm,Vm),window.removeEventListener("test",Vm,Vm)}catch(a){ar=!1}var Sw=null,tr=null,S2=null,qg={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(a){return a.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},i2=Ta(qg),Dm=B0({},qg,{view:0,detail:0}),v7=Ta(Dm),wr,gr,pm,j2=B0({},Dm,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:cv,button:0,buttons:0,relatedTarget:function(a){return a.relatedTarget===void 0?a.fromElement===a.srcElement?a.toElement:a.fromElement:a.relatedTarget},movementX:function(a){if("movementX"in a)return a.movementX;return a!==pm&&(pm&&a.type==="mousemove"?(wr=a.screenX-pm.screenX,gr=a.screenY-pm.screenY):gr=wr=0,pm=a),wr},movementY:function(a){return"movementY"in a?a.movementY:gr}}),Y9=Ta(j2),d7=B0({},j2,{dataTransfer:0}),r7=Ta(d7),x7=B0({},Dm,{relatedTarget:0}),mr=Ta(x7),f7=B0({},qg,{animationName:0,elapsedTime:0,pseudoElement:0}),o7=Ta(f7),N7=B0({},qg,{clipboardData:function(a){return"clipboardData"in a?a.clipboardData:window.clipboardData}}),z7=Ta(N7),l7=B0({},qg,{data:0}),X9=Ta(l7),$7=X9,B7={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Y7={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"},X7={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"},R7=B0({},Dm,{key:function(a){if(a.key){var t=B7[a.key]||a.key;if(t!=="Unidentified")return t}return a.type==="keypress"?(a=Tb(a),a===13?"Enter":String.fromCharCode(a)):a.type==="keydown"||a.type==="keyup"?Y7[a.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:cv,charCode:function(a){return a.type==="keypress"?Tb(a):0},keyCode:function(a){return a.type==="keydown"||a.type==="keyup"?a.keyCode:0},which:function(a){return a.type==="keypress"?Tb(a):a.type==="keydown"||a.type==="keyup"?a.keyCode:0}}),G7=Ta(R7),Z7=B0({},j2,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),R9=Ta(Z7),H7=B0({},Dm,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:cv}),M7=Ta(H7),J7=B0({},qg,{propertyName:0,elapsedTime:0,pseudoElement:0}),I7=Ta(J7),Q7=B0({},j2,{deltaX:function(a){return"deltaX"in a?a.deltaX:("wheelDeltaX"in a)?-a.wheelDeltaX:0},deltaY:function(a){return"deltaY"in a?a.deltaY:("wheelDeltaY"in a)?-a.wheelDeltaY:("wheelDelta"in a)?-a.wheelDelta:0},deltaZ:0,deltaMode:0}),U7=Ta(Q7),q7=B0({},qg,{newState:0,oldState:0}),A7=Ta(q7),L7=[9,13,27,32],G9=229,br=Dt&&"CompositionEvent"in window,em=null;Dt&&"documentMode"in document&&(em=document.documentMode);var W7=Dt&&"TextEvent"in window&&!em,Z9=Dt&&(!br||em&&8<em&&11>=em),H9=32,M9=String.fromCharCode(H9),J9=!1,q1=!1,K7={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},ab=null,tb=null,I9=!1;Dt&&(I9=x8("input")&&(!document.documentMode||9<document.documentMode));var Pa=typeof Object.is==="function"?Object.is:$8,O7=Dt&&"documentMode"in document&&11>=document.documentMode,A1=null,vr=null,wb=null,dr=!1,L1={animationend:Ng("Animation","AnimationEnd"),animationiteration:Ng("Animation","AnimationIteration"),animationstart:Ng("Animation","AnimationStart"),transitionrun:Ng("Transition","TransitionRun"),transitionstart:Ng("Transition","TransitionStart"),transitioncancel:Ng("Transition","TransitionCancel"),transitionend:Ng("Transition","TransitionEnd")},rr={},Q9={};Dt&&(Q9=document.createElement("div").style,("AnimationEvent"in window)||(delete L1.animationend.animation,delete L1.animationiteration.animation,delete L1.animationstart.animation),("TransitionEvent"in window)||delete L1.transitionend.transition);var U9=zg("animationend"),q9=zg("animationiteration"),A9=zg("animationstart"),P7=zg("transitionrun"),_7=zg("transitionstart"),s7=zg("transitioncancel"),L9=zg("transitionend"),W9=new Map,xr="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(" ");xr.push("scrollEnd");var fr=new WeakMap,n2=1,Bw=2,zt=[],W1=0,or=0,iw={};Object.freeze(iw);var lt=null,K1=null,j0=0,F7=1,Ma=2,La=8,Kt=16,K9=64,O9=!1;try{var P9=Object.preventExtensions({});}catch(a){O9=!0}var O1=[],P1=0,E2=null,V2=0,$t=[],Bt=0,Ag=null,Yw=1,Xw="",_a=null,ta=null,q0=!1,Rw=!1,Yt=null,Lg=null,pt=!1,Nr=Error("Hydration Mismatch Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),_9=0;if(typeof performance==="object"&&typeof performance.now==="function")var y7=performance,s9=function(){return y7.now()};else{var C7=Date;s9=function(){return C7.now()}}var zr=E0(null),lr=E0(null),F9={},D2=null,_1=null,s1=!1,u7=typeof AbortController!=="undefined"?AbortController:function(){var a=[],t=this.signal={aborted:!1,addEventListener:function(w,g){a.push(g)}};this.abort=function(){t.aborted=!0,a.forEach(function(w){return w()})}},T7=A0.unstable_scheduleCallback,k7=A0.unstable_NormalPriority,Na={$$typeof:it,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0,_currentRenderer:null,_currentRenderer2:null},F1=A0.unstable_now,y9=-0,p2=-0,ia=-1.1,Wg=-0,e2=!1,av=!1,gb=null,$r=0,Kg=0,y1=null,C9=G.S;G.S=function(a,t){typeof t==="object"&&t!==null&&typeof t.then==="function"&&Y8(a,t),C9!==null&&C9(a,t)};var Og=E0(null),Ot={recordUnsafeLifecycleWarnings:function(){},flushPendingUnsafeLifecycleWarnings:function(){},recordLegacyContextWarning:function(){},flushLegacyContextWarning:function(){},discardPendingWarnings:function(){}},mb=[],bb=[],vb=[],db=[],rb=[],xb=[],Pg=new Set;Ot.recordUnsafeLifecycleWarnings=function(a,t){Pg.has(a.type)||(typeof t.componentWillMount==="function"&&t.componentWillMount.__suppressDeprecationWarning!==!0&&mb.push(a),a.mode&La&&typeof t.UNSAFE_componentWillMount==="function"&&bb.push(a),typeof t.componentWillReceiveProps==="function"&&t.componentWillReceiveProps.__suppressDeprecationWarning!==!0&&vb.push(a),a.mode&La&&typeof t.UNSAFE_componentWillReceiveProps==="function"&&db.push(a),typeof t.componentWillUpdate==="function"&&t.componentWillUpdate.__suppressDeprecationWarning!==!0&&rb.push(a),a.mode&La&&typeof t.UNSAFE_componentWillUpdate==="function"&&xb.push(a))},Ot.flushPendingUnsafeLifecycleWarnings=function(){var a=new Set;0<mb.length&&(mb.forEach(function(d){a.add(O(d)||"Component"),Pg.add(d.type)}),mb=[]);var t=new Set;0<bb.length&&(bb.forEach(function(d){t.add(O(d)||"Component"),Pg.add(d.type)}),bb=[]);var w=new Set;0<vb.length&&(vb.forEach(function(d){w.add(O(d)||"Component"),Pg.add(d.type)}),vb=[]);var g=new Set;0<db.length&&(db.forEach(function(d){g.add(O(d)||"Component"),Pg.add(d.type)}),db=[]);var m=new Set;0<rb.length&&(rb.forEach(function(d){m.add(O(d)||"Component"),Pg.add(d.type)}),rb=[]);var b=new Set;if(0<xb.length&&(xb.forEach(function(d){b.add(O(d)||"Component"),Pg.add(d.type)}),xb=[]),0<t.size){var v=$(t);console.error(`Using UNSAFE_componentWillMount in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
181
|
-
|
|
182
|
-
* Move code with side effects to componentDidMount, and set initial state in the constructor.
|
|
183
|
-
|
|
184
|
-
Please update the following components: %s`,v)}0<g.size&&(v=$(g),console.error(`Using UNSAFE_componentWillReceiveProps in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
185
|
-
|
|
186
|
-
* Move data fetching code or side effects to componentDidUpdate.
|
|
187
|
-
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
|
|
188
|
-
|
|
189
|
-
Please update the following components: %s`,v)),0<b.size&&(v=$(b),console.error(`Using UNSAFE_componentWillUpdate in strict mode is not recommended and may indicate bugs in your code. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
190
|
-
|
|
191
|
-
* Move data fetching code or side effects to componentDidUpdate.
|
|
192
|
-
|
|
193
|
-
Please update the following components: %s`,v)),0<a.size&&(v=$(a),console.warn(`componentWillMount has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
194
|
-
|
|
195
|
-
* Move code with side effects to componentDidMount, and set initial state in the constructor.
|
|
196
|
-
* Rename componentWillMount to UNSAFE_componentWillMount to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
|
|
197
|
-
|
|
198
|
-
Please update the following components: %s`,v)),0<w.size&&(v=$(w),console.warn(`componentWillReceiveProps has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
199
|
-
|
|
200
|
-
* Move data fetching code or side effects to componentDidUpdate.
|
|
201
|
-
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://react.dev/link/derived-state
|
|
202
|
-
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
|
|
203
|
-
|
|
204
|
-
Please update the following components: %s`,v)),0<m.size&&(v=$(m),console.warn(`componentWillUpdate has been renamed, and is not recommended for use. See https://react.dev/link/unsafe-component-lifecycles for details.
|
|
205
|
-
|
|
206
|
-
* Move data fetching code or side effects to componentDidUpdate.
|
|
207
|
-
* Rename componentWillUpdate to UNSAFE_componentWillUpdate to suppress this warning in non-strict mode. In React 18.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run \`npx react-codemod rename-unsafe-lifecycles\` in your project source folder.
|
|
208
|
-
|
|
209
|
-
Please update the following components: %s`,v))};var tv=new Map,u9=new Set;Ot.recordLegacyContextWarning=function(a,t){var w=null;for(var g=a;g!==null;)g.mode&La&&(w=g),g=g.return;w===null?console.error("Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue."):!u9.has(a.type)&&(g=tv.get(w),a.type.contextTypes!=null||a.type.childContextTypes!=null||t!==null&&typeof t.getChildContext==="function")&&(g===void 0&&(g=[],tv.set(w,g)),g.push(a))},Ot.flushLegacyContextWarning=function(){tv.forEach(function(a){if(a.length!==0){var t=a[0],w=new Set;a.forEach(function(m){w.add(O(m)||"Component"),u9.add(m.type)});var g=$(w);k(t,function(){console.error(`Legacy context API has been detected within a strict-mode tree.
|
|
210
|
-
|
|
211
|
-
The old API will be supported in all 16.x releases, but applications using it should migrate to the new version.
|
|
212
|
-
|
|
213
|
-
Please update the following components: %s
|
|
214
|
-
|
|
215
|
-
Learn more about this warning here: https://react.dev/link/legacy-context`,g)})}})},Ot.discardPendingWarnings=function(){mb=[],bb=[],vb=[],db=[],rb=[],xb=[],tv=new Map};var fb=Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."),T9=Error("Suspense Exception: This is not a real error, and should not leak into userspace. If you're seeing this, it's likely a bug in React."),wv=Error("Suspense Exception: This is not a real error! It's an implementation detail of `useActionState` to interrupt the current render. You must either rethrow it immediately, or move the `useActionState` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary."),Br={then:function(){console.error('Internal React error: A listener was unexpectedly attached to a "noop" thenable. This is a bug in React. Please file an issue.')}},ob=null,gv=!1,Xt=0,Rt=1,sa=2,Ja=4,za=8,k9=0,h9=1,c9=2,Yr=3,jw=!1,S9=!1,Xr=null,Rr=!1,C1=E0(null),mv=E0(0),u1,i9=new Set,j9=new Set,Gr=new Set,n9=new Set,nw=0,w0=null,T0=null,xa=null,bv=!1,T1=!1,_g=!1,vv=0,Nb=0,Gw=null,h7=0,c7=25,R=null,Gt=null,Zw=-1,zb=!1,dv={readContext:D0,use:Pw,useCallback:ma,useContext:ma,useEffect:ma,useImperativeHandle:ma,useLayoutEffect:ma,useInsertionEffect:ma,useMemo:ma,useReducer:ma,useRef:ma,useState:ma,useDebugValue:ma,useDeferredValue:ma,useTransition:ma,useSyncExternalStore:ma,useId:ma,useHostTransitionStatus:ma,useFormState:ma,useActionState:ma,useOptimistic:ma,useMemoCache:ma,useCacheRefresh:ma},Zr=null,E9=null,Hr=null,V9=null,et=null,Pt=null,rv=null;Zr={readContext:function(a){return D0(a)},use:Pw,useCallback:function(a,t){return R="useCallback",G0(),v1(t),A5(a,t)},useContext:function(a){return R="useContext",G0(),D0(a)},useEffect:function(a,t){return R="useEffect",G0(),v1(t),d2(a,t)},useImperativeHandle:function(a,t,w){return R="useImperativeHandle",G0(),v1(w),q5(a,t,w)},useInsertionEffect:function(a,t){R="useInsertionEffect",G0(),v1(t),Mg(4,sa,a,t)},useLayoutEffect:function(a,t){return R="useLayoutEffect",G0(),v1(t),U5(a,t)},useMemo:function(a,t){R="useMemo",G0(),v1(t);var w=G.H;G.H=et;try{return L5(a,t)}finally{G.H=w}},useReducer:function(a,t,w){R="useReducer",G0();var g=G.H;G.H=et;try{return R5(a,t,w)}finally{G.H=g}},useRef:function(a){return R="useRef",G0(),Q5(a)},useState:function(a){R="useState",G0();var t=G.H;G.H=et;try{return M5(a)}finally{G.H=t}},useDebugValue:function(){R="useDebugValue",G0()},useDeferredValue:function(a,t){return R="useDeferredValue",G0(),W5(a,t)},useTransition:function(){return R="useTransition",G0(),P5()},useSyncExternalStore:function(a,t,w){return R="useSyncExternalStore",G0(),Z5(a,t,w)},useId:function(){return R="useId",G0(),_5()},useFormState:function(a,t){return R="useFormState",G0(),w2(),r1(a,t)},useActionState:function(a,t){return R="useActionState",G0(),r1(a,t)},useOptimistic:function(a){return R="useOptimistic",G0(),J5(a)},useHostTransitionStatus:Jg,useMemoCache:Hg,useCacheRefresh:function(){return R="useCacheRefresh",G0(),s5()}},E9={readContext:function(a){return D0(a)},use:Pw,useCallback:function(a,t){return R="useCallback",Q(),A5(a,t)},useContext:function(a){return R="useContext",Q(),D0(a)},useEffect:function(a,t){return R="useEffect",Q(),d2(a,t)},useImperativeHandle:function(a,t,w){return R="useImperativeHandle",Q(),q5(a,t,w)},useInsertionEffect:function(a,t){R="useInsertionEffect",Q(),Mg(4,sa,a,t)},useLayoutEffect:function(a,t){return R="useLayoutEffect",Q(),U5(a,t)},useMemo:function(a,t){R="useMemo",Q();var w=G.H;G.H=et;try{return L5(a,t)}finally{G.H=w}},useReducer:function(a,t,w){R="useReducer",Q();var g=G.H;G.H=et;try{return R5(a,t,w)}finally{G.H=g}},useRef:function(a){return R="useRef",Q(),Q5(a)},useState:function(a){R="useState",Q();var t=G.H;G.H=et;try{return M5(a)}finally{G.H=t}},useDebugValue:function(){R="useDebugValue",Q()},useDeferredValue:function(a,t){return R="useDeferredValue",Q(),W5(a,t)},useTransition:function(){return R="useTransition",Q(),P5()},useSyncExternalStore:function(a,t,w){return R="useSyncExternalStore",Q(),Z5(a,t,w)},useId:function(){return R="useId",Q(),_5()},useActionState:function(a,t){return R="useActionState",Q(),r1(a,t)},useFormState:function(a,t){return R="useFormState",Q(),w2(),r1(a,t)},useOptimistic:function(a){return R="useOptimistic",Q(),J5(a)},useHostTransitionStatus:Jg,useMemoCache:Hg,useCacheRefresh:function(){return R="useCacheRefresh",Q(),s5()}},Hr={readContext:function(a){return D0(a)},use:Pw,useCallback:function(a,t){return R="useCallback",Q(),x2(a,t)},useContext:function(a){return R="useContext",Q(),D0(a)},useEffect:function(a,t){R="useEffect",Q(),ca(2048,za,a,t)},useImperativeHandle:function(a,t,w){return R="useImperativeHandle",Q(),r2(a,t,w)},useInsertionEffect:function(a,t){return R="useInsertionEffect",Q(),ca(4,sa,a,t)},useLayoutEffect:function(a,t){return R="useLayoutEffect",Q(),ca(4,Ja,a,t)},useMemo:function(a,t){R="useMemo",Q();var w=G.H;G.H=Pt;try{return f2(a,t)}finally{G.H=w}},useReducer:function(a,t,w){R="useReducer",Q();var g=G.H;G.H=Pt;try{return d1(a,t,w)}finally{G.H=g}},useRef:function(){return R="useRef",Q(),y0().memoizedState},useState:function(){R="useState",Q();var a=G.H;G.H=Pt;try{return d1(At)}finally{G.H=a}},useDebugValue:function(){R="useDebugValue",Q()},useDeferredValue:function(a,t){return R="useDeferredValue",Q(),U4(a,t)},useTransition:function(){return R="useTransition",Q(),O4()},useSyncExternalStore:function(a,t,w){return R="useSyncExternalStore",Q(),g2(a,t,w)},useId:function(){return R="useId",Q(),y0().memoizedState},useFormState:function(a){return R="useFormState",Q(),w2(),m2(a)},useActionState:function(a){return R="useActionState",Q(),m2(a)},useOptimistic:function(a,t){return R="useOptimistic",Q(),Y4(a,t)},useHostTransitionStatus:Jg,useMemoCache:Hg,useCacheRefresh:function(){return R="useCacheRefresh",Q(),y0().memoizedState}},V9={readContext:function(a){return D0(a)},use:Pw,useCallback:function(a,t){return R="useCallback",Q(),x2(a,t)},useContext:function(a){return R="useContext",Q(),D0(a)},useEffect:function(a,t){R="useEffect",Q(),ca(2048,za,a,t)},useImperativeHandle:function(a,t,w){return R="useImperativeHandle",Q(),r2(a,t,w)},useInsertionEffect:function(a,t){return R="useInsertionEffect",Q(),ca(4,sa,a,t)},useLayoutEffect:function(a,t){return R="useLayoutEffect",Q(),ca(4,Ja,a,t)},useMemo:function(a,t){R="useMemo",Q();var w=G.H;G.H=rv;try{return f2(a,t)}finally{G.H=w}},useReducer:function(a,t,w){R="useReducer",Q();var g=G.H;G.H=rv;try{return qm(a,t,w)}finally{G.H=g}},useRef:function(){return R="useRef",Q(),y0().memoizedState},useState:function(){R="useState",Q();var a=G.H;G.H=rv;try{return qm(At)}finally{G.H=a}},useDebugValue:function(){R="useDebugValue",Q()},useDeferredValue:function(a,t){return R="useDeferredValue",Q(),q4(a,t)},useTransition:function(){return R="useTransition",Q(),P4()},useSyncExternalStore:function(a,t,w){return R="useSyncExternalStore",Q(),g2(a,t,w)},useId:function(){return R="useId",Q(),y0().memoizedState},useFormState:function(a){return R="useFormState",Q(),w2(),b2(a)},useActionState:function(a){return R="useActionState",Q(),b2(a)},useOptimistic:function(a,t){return R="useOptimistic",Q(),R4(a,t)},useHostTransitionStatus:Jg,useMemoCache:Hg,useCacheRefresh:function(){return R="useCacheRefresh",Q(),y0().memoizedState}},et={readContext:function(a){return Q0(),D0(a)},use:function(a){return A(),Pw(a)},useCallback:function(a,t){return R="useCallback",A(),G0(),A5(a,t)},useContext:function(a){return R="useContext",A(),G0(),D0(a)},useEffect:function(a,t){return R="useEffect",A(),G0(),d2(a,t)},useImperativeHandle:function(a,t,w){return R="useImperativeHandle",A(),G0(),q5(a,t,w)},useInsertionEffect:function(a,t){R="useInsertionEffect",A(),G0(),Mg(4,sa,a,t)},useLayoutEffect:function(a,t){return R="useLayoutEffect",A(),G0(),U5(a,t)},useMemo:function(a,t){R="useMemo",A(),G0();var w=G.H;G.H=et;try{return L5(a,t)}finally{G.H=w}},useReducer:function(a,t,w){R="useReducer",A(),G0();var g=G.H;G.H=et;try{return R5(a,t,w)}finally{G.H=g}},useRef:function(a){return R="useRef",A(),G0(),Q5(a)},useState:function(a){R="useState",A(),G0();var t=G.H;G.H=et;try{return M5(a)}finally{G.H=t}},useDebugValue:function(){R="useDebugValue",A(),G0()},useDeferredValue:function(a,t){return R="useDeferredValue",A(),G0(),W5(a,t)},useTransition:function(){return R="useTransition",A(),G0(),P5()},useSyncExternalStore:function(a,t,w){return R="useSyncExternalStore",A(),G0(),Z5(a,t,w)},useId:function(){return R="useId",A(),G0(),_5()},useFormState:function(a,t){return R="useFormState",A(),G0(),r1(a,t)},useActionState:function(a,t){return R="useActionState",A(),G0(),r1(a,t)},useOptimistic:function(a){return R="useOptimistic",A(),G0(),J5(a)},useMemoCache:function(a){return A(),Hg(a)},useHostTransitionStatus:Jg,useCacheRefresh:function(){return R="useCacheRefresh",G0(),s5()}},Pt={readContext:function(a){return Q0(),D0(a)},use:function(a){return A(),Pw(a)},useCallback:function(a,t){return R="useCallback",A(),Q(),x2(a,t)},useContext:function(a){return R="useContext",A(),Q(),D0(a)},useEffect:function(a,t){R="useEffect",A(),Q(),ca(2048,za,a,t)},useImperativeHandle:function(a,t,w){return R="useImperativeHandle",A(),Q(),r2(a,t,w)},useInsertionEffect:function(a,t){return R="useInsertionEffect",A(),Q(),ca(4,sa,a,t)},useLayoutEffect:function(a,t){return R="useLayoutEffect",A(),Q(),ca(4,Ja,a,t)},useMemo:function(a,t){R="useMemo",A(),Q();var w=G.H;G.H=Pt;try{return f2(a,t)}finally{G.H=w}},useReducer:function(a,t,w){R="useReducer",A(),Q();var g=G.H;G.H=Pt;try{return d1(a,t,w)}finally{G.H=g}},useRef:function(){return R="useRef",A(),Q(),y0().memoizedState},useState:function(){R="useState",A(),Q();var a=G.H;G.H=Pt;try{return d1(At)}finally{G.H=a}},useDebugValue:function(){R="useDebugValue",A(),Q()},useDeferredValue:function(a,t){return R="useDeferredValue",A(),Q(),U4(a,t)},useTransition:function(){return R="useTransition",A(),Q(),O4()},useSyncExternalStore:function(a,t,w){return R="useSyncExternalStore",A(),Q(),g2(a,t,w)},useId:function(){return R="useId",A(),Q(),y0().memoizedState},useFormState:function(a){return R="useFormState",A(),Q(),m2(a)},useActionState:function(a){return R="useActionState",A(),Q(),m2(a)},useOptimistic:function(a,t){return R="useOptimistic",A(),Q(),Y4(a,t)},useMemoCache:function(a){return A(),Hg(a)},useHostTransitionStatus:Jg,useCacheRefresh:function(){return R="useCacheRefresh",Q(),y0().memoizedState}},rv={readContext:function(a){return Q0(),D0(a)},use:function(a){return A(),Pw(a)},useCallback:function(a,t){return R="useCallback",A(),Q(),x2(a,t)},useContext:function(a){return R="useContext",A(),Q(),D0(a)},useEffect:function(a,t){R="useEffect",A(),Q(),ca(2048,za,a,t)},useImperativeHandle:function(a,t,w){return R="useImperativeHandle",A(),Q(),r2(a,t,w)},useInsertionEffect:function(a,t){return R="useInsertionEffect",A(),Q(),ca(4,sa,a,t)},useLayoutEffect:function(a,t){return R="useLayoutEffect",A(),Q(),ca(4,Ja,a,t)},useMemo:function(a,t){R="useMemo",A(),Q();var w=G.H;G.H=Pt;try{return f2(a,t)}finally{G.H=w}},useReducer:function(a,t,w){R="useReducer",A(),Q();var g=G.H;G.H=Pt;try{return qm(a,t,w)}finally{G.H=g}},useRef:function(){return R="useRef",A(),Q(),y0().memoizedState},useState:function(){R="useState",A(),Q();var a=G.H;G.H=Pt;try{return qm(At)}finally{G.H=a}},useDebugValue:function(){R="useDebugValue",A(),Q()},useDeferredValue:function(a,t){return R="useDeferredValue",A(),Q(),q4(a,t)},useTransition:function(){return R="useTransition",A(),Q(),P4()},useSyncExternalStore:function(a,t,w){return R="useSyncExternalStore",A(),Q(),g2(a,t,w)},useId:function(){return R="useId",A(),Q(),y0().memoizedState},useFormState:function(a){return R="useFormState",A(),Q(),b2(a)},useActionState:function(a){return R="useActionState",A(),Q(),b2(a)},useOptimistic:function(a,t){return R="useOptimistic",A(),Q(),R4(a,t)},useMemoCache:function(a){return A(),Hg(a)},useHostTransitionStatus:Jg,useCacheRefresh:function(){return R="useCacheRefresh",Q(),y0().memoizedState}};var D9={react_stack_bottom_frame:function(a,t,w){var g=Vt;Vt=!0;try{return a(t,w)}finally{Vt=g}}},Mr=D9.react_stack_bottom_frame.bind(D9),p9={react_stack_bottom_frame:function(a){var t=Vt;Vt=!0;try{return a.render()}finally{Vt=t}}},e9=p9.react_stack_bottom_frame.bind(p9),af={react_stack_bottom_frame:function(a,t){try{t.componentDidMount()}catch(w){C0(a,a.return,w)}}},Jr=af.react_stack_bottom_frame.bind(af),tf={react_stack_bottom_frame:function(a,t,w,g,m){try{t.componentDidUpdate(w,g,m)}catch(b){C0(a,a.return,b)}}},wf=tf.react_stack_bottom_frame.bind(tf),gf={react_stack_bottom_frame:function(a,t){var w=t.stack;a.componentDidCatch(t.value,{componentStack:w!==null?w:""})}},S7=gf.react_stack_bottom_frame.bind(gf),mf={react_stack_bottom_frame:function(a,t,w){try{w.componentWillUnmount()}catch(g){C0(a,t,g)}}},bf=mf.react_stack_bottom_frame.bind(mf),vf={react_stack_bottom_frame:function(a){a.resourceKind!=null&&console.error("Expected only SimpleEffects when enableUseEffectCRUDOverload is disabled, got %s",a.resourceKind);var t=a.create;return a=a.inst,t=t(),a.destroy=t}},i7=vf.react_stack_bottom_frame.bind(vf),df={react_stack_bottom_frame:function(a,t,w){try{w()}catch(g){C0(a,t,g)}}},j7=df.react_stack_bottom_frame.bind(df),rf={react_stack_bottom_frame:function(a){var t=a._init;return t(a._payload)}},Ew=rf.react_stack_bottom_frame.bind(rf),k1=null,lb=0,N0=null,Ir,xf=Ir=!1,ff={},of={},Nf={};n=function(a,t,w){if(w!==null&&typeof w==="object"&&w._store&&(!w._store.validated&&w.key==null||w._store.validated===2)){if(typeof w._store!=="object")throw Error("React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.");w._store.validated=1;var g=O(a),m=g||"null";if(!ff[m]){ff[m]=!0,w=w._owner,a=a._debugOwner;var b="";a&&typeof a.tag==="number"&&(m=O(a))&&(b=`
|
|
216
|
-
|
|
217
|
-
Check the render method of \``+m+"`."),b||g&&(b=`
|
|
218
|
-
|
|
219
|
-
Check the top-level render call using <`+g+">.");var v="";w!=null&&a!==w&&(g=null,typeof w.tag==="number"?g=O(w):typeof w.name==="string"&&(g=w.name),g&&(v=" It was passed a child from "+g+".")),k(t,function(){console.error('Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.',b,v)})}}};var h1=y4(!0),zf=y4(!1),Zt=E0(null),aw=null,c1=1,$b=2,la=E0(0),lf={},$f=new Set,Bf=new Set,Yf=new Set,Xf=new Set,Rf=new Set,Gf=new Set,Zf=new Set,Hf=new Set,Mf=new Set,Jf=new Set;Object.freeze(lf);var Qr={enqueueSetState:function(a,t,w){a=a._reactInternals;var g=at(a),m=Kw(g);m.payload=t,w!==void 0&&w!==null&&(y5(w),m.callback=w),t=Ow(a,m,g),t!==null&&(ba(t,a,g),Jm(t,a,g)),gw(a,g)},enqueueReplaceState:function(a,t,w){a=a._reactInternals;var g=at(a),m=Kw(g);m.tag=h9,m.payload=t,w!==void 0&&w!==null&&(y5(w),m.callback=w),t=Ow(a,m,g),t!==null&&(ba(t,a,g),Jm(t,a,g)),gw(a,g)},enqueueForceUpdate:function(a,t){a=a._reactInternals;var w=at(a),g=Kw(w);g.tag=c9,t!==void 0&&t!==null&&(y5(t),g.callback=t),t=Ow(a,g,w),t!==null&&(ba(t,a,w),Jm(t,a,w)),_!==null&&typeof _.markForceUpdateScheduled==="function"&&_.markForceUpdateScheduled(a,w)}},Ur=typeof reportError==="function"?reportError:function(a){if(typeof window==="object"&&typeof window.ErrorEvent==="function"){var t=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof a==="object"&&a!==null&&typeof a.message==="string"?String(a.message):String(a),error:a});if(!window.dispatchEvent(t))return}else if(typeof process==="object"&&typeof process.emit==="function"){process.emit("uncaughtException",a);return}console.error(a)},S1=null,qr=null,If=Error("This is not a real error. It's an implementation detail of React's selective hydration feature. If this leaks into userspace, it's a bug in React. Please file an issue."),Ya=!1,Qf={},Uf={},qf={},Af={},i1=!1,Lf={},Ar={},Lr={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null},Wf=!1,Kf=null;Kf=new Set;var Hw=!1,va=!1,Wr=!1,Of=typeof WeakSet==="function"?WeakSet:Set,Xa=null,j1=null,n1=null,fa=null,ja=!1,_t=null,Bb=8192,n7={getCacheForType:function(a){var t=D0(Na),w=t.data.get(a);return w===void 0&&(w=a(),t.data.set(a,w)),w},getOwner:function(){return gt}};if(typeof Symbol==="function"&&Symbol.for){var Yb=Symbol.for;Yb("selector.component"),Yb("selector.has_pseudo_class"),Yb("selector.role"),Yb("selector.test_id"),Yb("selector.text")}var E7=[],V7=typeof WeakMap==="function"?WeakMap:Map,mt=0,Fa=2,st=4,Mw=0,Xb=1,E1=2,Kr=3,sg=4,xv=6,Pf=5,s0=mt,k0=null,Y0=null,Z0=0,na=0,Rb=1,Fg=2,Gb=3,_f=4,Or=5,V1=6,Zb=7,Pr=8,yg=9,F0=na,bt=null,Vw=!1,D1=!1,_r=!1,tw=0,wa=Mw,Dw=0,pw=0,sr=0,vt=0,Cg=0,Hb=null,ya=null,fv=!1,Fr=0,sf=300,ov=1/0,Ff=500,Mb=null,ew=null,D7=0,p7=1,e7=2,ug=0,yf=1,Cf=2,uf=3,az=4,yr=5,Ia=0,ag=null,p1=null,tg=0,Cr=0,ur=null,Tf=null,tz=50,Jb=0,Tr=null,kr=!1,Nv=!1,wz=50,Tg=0,Ib=null,e1=!1,zv=null,kf=!1,hf=new Set,gz={},lv=null,am=null,hr=!1,cr=!1,$v=!1,Sr=!1,kg=0,ir={};(function(){for(var a=0;a<xr.length;a++){var t=xr[a],w=t.toLowerCase();t=t[0].toUpperCase()+t.slice(1),qt(w,"on"+t)}qt(U9,"onAnimationEnd"),qt(q9,"onAnimationIteration"),qt(A9,"onAnimationStart"),qt("dblclick","onDoubleClick"),qt("focusin","onFocus"),qt("focusout","onBlur"),qt(P7,"onTransitionRun"),qt(_7,"onTransitionStart"),qt(s7,"onTransitionCancel"),qt(L9,"onTransitionEnd")})(),v0("onMouseEnter",["mouseout","mouseover"]),v0("onMouseLeave",["mouseout","mouseover"]),v0("onPointerEnter",["pointerout","pointerover"]),v0("onPointerLeave",["pointerout","pointerover"]),u("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),u("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),u("onBeforeInput",["compositionend","keypress","textInput","paste"]),u("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Qb="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(" "),jr=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(Qb)),Bv="_reactListening"+Math.random().toString(36).slice(2),cf=!1,Sf=!1,Yv=!1,jf=!1,Xv=!1,Rv=!1,nf=!1,Gv={},mz=/\r\n?/g,bz=/\u0000|\uFFFD/g,hg="http://www.w3.org/1999/xlink",nr="http://www.w3.org/XML/1998/namespace",vz="javascript:throw new Error('React form unexpectedly submitted.')",dz="suppressHydrationWarning",Zv="$",Hv="/$",Jw="$?",Ub="$!",rz=1,xz=2,fz=4,Er="F!",Ef="F",Vf="complete",oz="style",Iw=0,tm=1,Mv=2,Vr=null,Dr=null,Df={dialog:!0,webview:!0},pr=null,pf=typeof setTimeout==="function"?setTimeout:void 0,Nz=typeof clearTimeout==="function"?clearTimeout:void 0,cg=-1,ef=typeof Promise==="function"?Promise:void 0,zz=typeof queueMicrotask==="function"?queueMicrotask:typeof ef!=="undefined"?function(a){return ef.resolve(null).then(a).catch(e8)}:pf,er=null,Sg=0,qb=1,ao=2,to=3,Ht=4,Mt=new Map,wo=new Set,Qw=_0.d;_0.d={f:function(){var a=Qw.f(),t=z1();return a||t},r:function(a){var t=r(a);t!==null&&t.tag===5&&t.type==="form"?K4(t):Qw.r(a)},D:function(a){Qw.D(a),Z6("dns-prefetch",a,null)},C:function(a,t){Qw.C(a,t),Z6("preconnect",a,t)},L:function(a,t,w){Qw.L(a,t,w);var g=wm;if(g&&a&&t){var m='link[rel="preload"][as="'+ft(t)+'"]';t==="image"?w&&w.imageSrcSet?(m+='[imagesrcset="'+ft(w.imageSrcSet)+'"]',typeof w.imageSizes==="string"&&(m+='[imagesizes="'+ft(w.imageSizes)+'"]')):m+='[href="'+ft(a)+'"]':m+='[href="'+ft(a)+'"]';var b=m;switch(t){case"style":b=Y1(a);break;case"script":b=X1(a)}Mt.has(b)||(a=B0({rel:"preload",href:t==="image"&&w&&w.imageSrcSet?void 0:a,as:t},w),Mt.set(b,a),g.querySelector(m)!==null||t==="style"&&g.querySelector(Tm(b))||t==="script"&&g.querySelector(km(b))||(t=g.createElement("link"),Za(t,"link",a),U(t),g.head.appendChild(t)))}},m:function(a,t){Qw.m(a,t);var w=wm;if(w&&a){var g=t&&typeof t.as==="string"?t.as:"script",m='link[rel="modulepreload"][as="'+ft(g)+'"][href="'+ft(a)+'"]',b=m;switch(g){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":b=X1(a)}if(!Mt.has(b)&&(a=B0({rel:"modulepreload",href:a},t),Mt.set(b,a),w.querySelector(m)===null)){switch(g){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(w.querySelector(km(b)))return}g=w.createElement("link"),Za(g,"link",a),U(g),w.head.appendChild(g)}}},X:function(a,t){Qw.X(a,t);var w=wm;if(w&&a){var g=q(w).hoistableScripts,m=X1(a),b=g.get(m);b||(b=w.querySelector(km(m)),b||(a=B0({src:a,async:!0},t),(t=Mt.get(m))&&Ud(a,t),b=w.createElement("script"),U(b),Za(b,"link",a),w.head.appendChild(b)),b={type:"script",instance:b,count:1,state:null},g.set(m,b))}},S:function(a,t,w){Qw.S(a,t,w);var g=wm;if(g&&a){var m=q(g).hoistableStyles,b=Y1(a);t=t||"default";var v=m.get(b);if(!v){var d={loading:Sg,preload:null};if(v=g.querySelector(Tm(b)))d.loading=qb|Ht;else{a=B0({rel:"stylesheet",href:a,"data-precedence":t},w),(w=Mt.get(b))&&Qd(a,w);var x=v=g.createElement("link");U(x),Za(x,"link",a),x._p=new Promise(function(f,Y){x.onload=f,x.onerror=Y}),x.addEventListener("load",function(){d.loading|=qb}),x.addEventListener("error",function(){d.loading|=ao}),d.loading|=Ht,W2(v,t,g)}v={type:"stylesheet",instance:v,count:1,state:d},m.set(b,v)}}},M:function(a,t){Qw.M(a,t);var w=wm;if(w&&a){var g=q(w).hoistableScripts,m=X1(a),b=g.get(m);b||(b=w.querySelector(km(m)),b||(a=B0({src:a,async:!0,type:"module"},t),(t=Mt.get(m))&&Ud(a,t),b=w.createElement("script"),U(b),Za(b,"link",a),w.head.appendChild(b)),b={type:"script",instance:b,count:1,state:null},g.set(m,b))}}};var wm=typeof document==="undefined"?null:document,Jv=null,Ab=null,a3=null,Iv=null,ig=KN,Lb={$$typeof:it,Provider:null,Consumer:null,_currentValue:ig,_currentValue2:ig,_threadCount:0},go="%c%s%c ",mo="background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px",bo="",Qv=" ",lz=Function.prototype.bind,vo=!1,ro=null,xo=null,fo=null,oo=null,No=null,zo=null,lo=null,$o=null,Bo=null;ro=function(a,t,w,g){t=J(a,t),t!==null&&(w=s(t.memoizedState,w,0,g),t.memoizedState=w,t.baseState=w,a.memoizedProps=B0({},a.memoizedProps),w=ka(a,2),w!==null&&ba(w,a,2))},xo=function(a,t,w){t=J(a,t),t!==null&&(w=P(t.memoizedState,w,0),t.memoizedState=w,t.baseState=w,a.memoizedProps=B0({},a.memoizedProps),w=ka(a,2),w!==null&&ba(w,a,2))},fo=function(a,t,w,g){t=J(a,t),t!==null&&(w=h(t.memoizedState,w,g),t.memoizedState=w,t.baseState=w,a.memoizedProps=B0({},a.memoizedProps),w=ka(a,2),w!==null&&ba(w,a,2))},oo=function(a,t,w){a.pendingProps=s(a.memoizedProps,t,0,w),a.alternate&&(a.alternate.pendingProps=a.pendingProps),t=ka(a,2),t!==null&&ba(t,a,2)},No=function(a,t){a.pendingProps=P(a.memoizedProps,t,0),a.alternate&&(a.alternate.pendingProps=a.pendingProps),t=ka(a,2),t!==null&&ba(t,a,2)},zo=function(a,t,w){a.pendingProps=h(a.memoizedProps,t,w),a.alternate&&(a.alternate.pendingProps=a.pendingProps),t=ka(a,2),t!==null&&ba(t,a,2)},lo=function(a){var t=ka(a,2);t!==null&&ba(t,a,2)},$o=function(a){W0=a},Bo=function(a){a0=a};var Uv=!0,qv=null,t3=!1,wg=null,gg=null,mg=null,Wb=new Map,Kb=new Map,bg=[],$z="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(" "),Av=null;if(_2.prototype.render=Pd.prototype.render=function(a){var t=this._internalRoot;if(t===null)throw Error("Cannot update an unmounted root.");var w=arguments;typeof w[1]==="function"?console.error("does not support the second callback argument. To execute a side effect after rendering, declare it in a component body with useEffect()."):b0(w[1])?console.error("You passed a container to the second argument of root.render(...). You don't need to pass it again since you already passed it to create the root."):typeof w[1]!=="undefined"&&console.error("You passed a second argument to root.render(...) but it only accepts one argument."),w=a;var g=t.current,m=at(g);Ad(g,m,w,t,null,null)},_2.prototype.unmount=Pd.prototype.unmount=function(){var a=arguments;if(typeof a[0]==="function"&&console.error("does not support a callback argument. To execute a side effect after rendering, declare it in a component body with useEffect()."),a=this._internalRoot,a!==null){this._internalRoot=null;var t=a.containerInfo;(s0&(Fa|st))!==mt&&console.error("Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition."),Ad(a.current,2,null,a,null,null),z1(),t[cw]=null}},_2.prototype.unstable_scheduleHydration=function(a){if(a){var t=xg();a={blockedOn:null,target:a,priority:t};for(var w=0;w<bg.length&&t!==0&&t<bg[w].priority;w++);bg.splice(w,0,a),w===0&&P6(a)}},function(){var a=gm.version;if(a!=="19.1.1")throw Error(`Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:
|
|
220
|
-
- react: `+(a+`
|
|
221
|
-
- react-dom: 19.1.1
|
|
222
|
-
Learn more: https://react.dev/warnings/version-mismatch`))}(),typeof Map==="function"&&Map.prototype!=null&&typeof Map.prototype.forEach==="function"&&typeof Set==="function"&&Set.prototype!=null&&typeof Set.prototype.clear==="function"&&typeof Set.prototype.forEach==="function"||console.error("React depends on Map and Set built-in types. Make sure that you load a polyfill in older browsers. https://react.dev/link/react-polyfills"),_0.findDOMNode=function(a){var t=a._reactInternals;if(t===void 0){if(typeof a.render==="function")throw Error("Unable to find node on an unmounted component.");throw a=Object.keys(a).join(","),Error("Argument appears to not be a ReactComponent. Keys: "+a)}return a=S0(t),a=a!==null?Qa(a):null,a=a===null?null:a.stateNode,a},!function(){var a={bundleType:1,version:"19.1.1",rendererPackageName:"react-dom",currentDispatcherRef:G,reconcilerVersion:"19.1.1"};return a.overrideHookState=ro,a.overrideHookStateDeletePath=xo,a.overrideHookStateRenamePath=fo,a.overrideProps=oo,a.overridePropsDeletePath=No,a.overridePropsRenamePath=zo,a.scheduleUpdate=lo,a.setErrorHandler=$o,a.setSuspenseHandler=Bo,a.scheduleRefresh=c0,a.scheduleRoot=x0,a.setRefreshHandler=U0,a.getCurrentFiber=HN,a.getLaneLabelMap=MN,a.injectProfilingHooks=aa,Ft(a)}()&&Dt&&window.top===window.self&&(-1<navigator.userAgent.indexOf("Chrome")&&navigator.userAgent.indexOf("Edge")===-1||-1<navigator.userAgent.indexOf("Firefox"))){var Yo=window.location.protocol;/^(https?|file):$/.test(Yo)&&console.info("%cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools"+(Yo==="file:"?`
|
|
223
|
-
You might need to use a local HTTP server (instead of file://): https://react.dev/link/react-devtools-faq`:""),"font-weight:bold")}Iz.createRoot=function(a,t){if(!b0(a))throw Error("Target container is not a DOM element.");F6(a);var w=!1,g="",m=k4,b=h4,v=c4,d=null;return t!==null&&t!==void 0&&(t.hydrate?console.warn("hydrate through createRoot is deprecated. Use ReactDOMClient.hydrateRoot(container, <App />) instead."):typeof t==="object"&&t!==null&&t.$$typeof===uw&&console.error(`You passed a JSX element to createRoot. You probably meant to call root.render instead. Example usage:
|
|
224
|
-
|
|
225
|
-
let root = createRoot(domContainer);
|
|
226
|
-
root.render(<App />);`),t.unstable_strictMode===!0&&(w=!0),t.identifierPrefix!==void 0&&(g=t.identifierPrefix),t.onUncaughtError!==void 0&&(m=t.onUncaughtError),t.onCaughtError!==void 0&&(b=t.onCaughtError),t.onRecoverableError!==void 0&&(v=t.onRecoverableError),t.unstable_transitionCallbacks!==void 0&&(d=t.unstable_transitionCallbacks)),t=q6(a,1,!1,null,null,w,g,m,b,v,d,null),a[cw]=t.current,Bd(a),new Pd(t)},Iz.hydrateRoot=function(a,t,w){if(!b0(a))throw Error("Target container is not a DOM element.");F6(a),t===void 0&&console.error("Must provide initial children as second argument to hydrateRoot. Example usage: hydrateRoot(domContainer, <App />)");var g=!1,m="",b=k4,v=h4,d=c4,x=null,f=null;return w!==null&&w!==void 0&&(w.unstable_strictMode===!0&&(g=!0),w.identifierPrefix!==void 0&&(m=w.identifierPrefix),w.onUncaughtError!==void 0&&(b=w.onUncaughtError),w.onCaughtError!==void 0&&(v=w.onCaughtError),w.onRecoverableError!==void 0&&(d=w.onRecoverableError),w.unstable_transitionCallbacks!==void 0&&(x=w.unstable_transitionCallbacks),w.formState!==void 0&&(f=w.formState)),t=q6(a,1,!0,t,w!=null?w:null,g,m,b,v,d,x,f),t.context=A6(null),w=t.current,g=at(w),g=t1(g),m=Kw(g),m.callback=null,Ow(w,m,g),w=g,t.current.lanes=w,Aw(t,w),ct(t),a[cw]=t.current,Bd(a),new _2(t)},Iz.version="19.1.1",typeof __REACT_DEVTOOLS_GLOBAL_HOOK__!=="undefined"&&typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop==="function"&&__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error())})()});var Io=jg((b$,Jo)=>{var Qz=O0(Mo(),1);Jo.exports=Qz});var $a=jg((Uz)=>{var Eg=O0(ww(),1);(function(){function J(X){if(X==null)return null;if(typeof X==="function")return X.$$typeof===O?null:X.displayName||X.name||null;if(typeof X==="string")return X;switch(X){case c0:return"Fragment";case b0:return"Profiler";case U0:return"StrictMode";case S0:return"Suspense";case Qa:return"SuspenseList";case Ua:return"Activity"}if(typeof X==="object")switch(typeof X.tag==="number"&&console.error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),X.$$typeof){case x0:return"Portal";case P0:return(X.displayName||"Context")+".Provider";case V0:return(X._context.displayName||"Context")+".Consumer";case z0:var S=X.render;return X=X.displayName,X||(X=S.displayName||S.name||"",X=X!==""?"ForwardRef("+X+")":"ForwardRef"),X;case i0:return S=X.displayName||null,S!==null?S:J(X.type)||"Memo";case I0:S=X._payload,X=X._init;try{return J(X(S))}catch(l0){}}return null}function s(X){return""+X}function h(X){try{s(X);var S=!1}catch(ga){S=!0}if(S){S=console;var l0=S.error,i=typeof Symbol==="function"&&Symbol.toStringTag&&X[Symbol.toStringTag]||X.constructor.name||"Object";return l0.call(S,"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",i),s(X)}}function T(X){if(X===c0)return"<>";if(typeof X==="object"&&X!==null&&X.$$typeof===I0)return"<...>";try{var S=J(X);return S?"<"+S+">":"<...>"}catch(l0){return"<...>"}}function P(){var X=E0.A;return X===null?null:X.getOwner()}function a0(){return Error("react-stack-top-frame")}function W0(X){if(X0.call(X,"key")){var S=Object.getOwnPropertyDescriptor(X,"key").get;if(S&&S.isReactWarning)return!1}return X.key!==void 0}function n(X,S){function l0(){Wa||(Wa=!0,console.error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",S))}l0.isReactWarning=!0,Object.defineProperty(X,"key",{get:l0,configurable:!0})}function A(){var X=J(this.type);return K[X]||(K[X]=!0,console.error("Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release.")),X=this.props.ref,X!==void 0?X:null}function Q0(X,S,l0,i,ga,oa,Ft,K0){return l0=oa.ref,X={$$typeof:L,type:X,key:S,props:oa,_owner:ga},(l0!==void 0?l0:null)!==null?Object.defineProperty(X,"ref",{enumerable:!1,get:A}):Object.defineProperty(X,"ref",{enumerable:!1,value:null}),X._store={},Object.defineProperty(X._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:0}),Object.defineProperty(X,"_debugInfo",{configurable:!1,enumerable:!1,writable:!0,value:null}),Object.defineProperty(X,"_debugStack",{configurable:!1,enumerable:!1,writable:!0,value:Ft}),Object.defineProperty(X,"_debugTask",{configurable:!1,enumerable:!1,writable:!0,value:K0}),Object.freeze&&(Object.freeze(X.props),Object.freeze(X)),X}function I(X,S,l0,i,ga,oa,Ft,K0){var aa=S.children;if(aa!==void 0)if(i)if(o0(aa)){for(i=0;i<aa.length;i++)$(aa[i]);Object.freeze&&Object.freeze(aa)}else console.error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else $(aa);if(X0.call(S,"key")){aa=J(X);var Jt=Object.keys(S).filter(function(It){return It!=="key"});i=0<Jt.length?"{key: someKey, "+Jt.join(": ..., ")+": ...}":"{key: someKey}",R0[aa+i]||(Jt=0<Jt.length?"{"+Jt.join(": ..., ")+": ...}":"{}",console.error(`A props object containing a "key" prop is being spread into JSX:
|
|
227
|
-
let props = %s;
|
|
228
|
-
<%s {...props} />
|
|
229
|
-
React keys must be passed directly to JSX without using spread:
|
|
230
|
-
let props = %s;
|
|
231
|
-
<%s key={someKey} {...props} />`,i,aa,Jt,aa),R0[aa+i]=!0)}if(aa=null,l0!==void 0&&(h(l0),aa=""+l0),W0(S)&&(h(S.key),aa=""+S.key),"key"in S){l0={};for(var dt in S)dt!=="key"&&(l0[dt]=S[dt])}else l0=S;return aa&&n(l0,typeof X==="function"?X.displayName||X.name||"Unknown":X),Q0(X,aa,oa,ga,P(),l0,Ft,K0)}function $(X){typeof X==="object"&&X!==null&&X.$$typeof===L&&X._store&&(X._store.validated=1)}var L=Symbol.for("react.transitional.element"),x0=Symbol.for("react.portal"),c0=Symbol.for("react.fragment"),U0=Symbol.for("react.strict_mode"),b0=Symbol.for("react.profiler"),V0=Symbol.for("react.consumer"),P0=Symbol.for("react.context"),z0=Symbol.for("react.forward_ref"),S0=Symbol.for("react.suspense"),Qa=Symbol.for("react.suspense_list"),i0=Symbol.for("react.memo"),I0=Symbol.for("react.lazy"),Ua=Symbol.for("react.activity"),O=Symbol.for("react.client.reference"),E0=Eg.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,X0=Object.prototype.hasOwnProperty,o0=Array.isArray,ra=console.createTask?console.createTask:function(){return null};Eg={react_stack_bottom_frame:function(X){return X()}};var Wa,K={},c=Eg.react_stack_bottom_frame.bind(Eg,a0)(),V=ra(T(a0)),R0={};Uz.Fragment=c0,Uz.jsxDEV=function(X,S,l0,i,ga,oa){var Ft=1e4>E0.recentlyCreatedOwnerStacks++;return I(X,S,l0,i,ga,oa,Ft?Error("react-stack-top-frame"):c,Ft?ra(T(X)):V)}})()});var So=O0(Io(),1);var e0=O0(ww(),1);async function vg(J,s={}){let h=new Headers(s.headers??{});if(!h.has("content-type")&&s.body)h.set("content-type","application/json");let T=await fetch(J,{...s,headers:h}),P=null,a0=await T.text();if(a0)try{P=JSON.parse(a0)}catch(W0){throw new Error(`Failed to parse response from ${J}: ${String(W0)}`)}if(!T.ok){let n=P?.error||T.statusText||"Request failed";throw new Error(n)}return P}var Qo=()=>vg("/api/config"),Uo=()=>vg("/api/status"),qo=()=>vg("/api/programs"),Ao=()=>vg("/api/tokens"),Lo=(J)=>vg("/api/airdrop",{method:"POST",body:JSON.stringify(J)}),Wo=(J)=>vg("/api/mint",{method:"POST",body:JSON.stringify(J)}),Ko=(J)=>vg("/api/clone/program",{method:"POST",body:JSON.stringify(J)}),Oo=(J)=>vg("/api/clone/token",{method:"POST",body:JSON.stringify(J)});var qw=O0(ww(),1),e=O0($a(),1),dg={value:"SOL",label:"SOL (Lamports)",decimals:9},qz=10n;function Po(J,s){let h=J.trim();if(!h)throw new Error("Amount is required");if(h.startsWith("-"))throw new Error("Amount must be positive");let[P="0",a0=""]=h.split("."),W0=P.replace(/[^0-9]/g,"")||"0",n=a0.replace(/[^0-9]/g,"");if(n.length>s)throw new Error(`Too many decimal places (max ${s})`);let A=qz**BigInt(s),Q0=BigInt(W0),I=s===0?"0":n.padEnd(s,"0"),$=BigInt(I||"0"),L=Q0*A+$;if(L<=0n)throw new Error("Amount must be greater than zero");return L.toString()}function Az(J){let s=J.mintAuthority?`Authority ${J.mintAuthority.slice(0,6)}…`:"No authority";return`${J.mint.slice(0,6)}…${J.mint.slice(-4)} · ${J.decimals} dec · ${s}`}function _o({tokens:J,onAirdrop:s,onMint:h}){let[T,P]=qw.useState(dg.value),[a0,W0]=qw.useState(""),[n,A]=qw.useState("1"),[Q0,I]=qw.useState(!1),[$,L]=qw.useState(null),[x0,c0]=qw.useState(null),U0=qw.useMemo(()=>{let z0=J.map((S0)=>({value:S0.mint,label:Az(S0),decimals:S0.decimals}));return[dg,...z0]},[J]),b0=U0.find((z0)=>z0.value===T)??dg,V0=async()=>{if(!a0.trim())throw new Error("Recipient address is required");let z0=a0.trim();if(T===dg.value){let i0=Po(n,dg.decimals),I0=await s(z0,i0);return I0?`Airdrop signature: ${I0}`:"Airdrop submitted"}let S0=Po(n,b0.decimals),Qa=await h(T,z0,S0);return Qa?`Mint signature: ${Qa}`:"Mint submitted"};return e.jsxDEV("form",{onSubmit:async(z0)=>{z0.preventDefault(),I(!0),L(null),c0(null);try{let S0=await V0();c0(S0)}catch(S0){L(S0?.message??String(S0))}finally{I(!1)}},children:[e.jsxDEV("div",{className:"flex flex-col lg:flex-row items-start lg:items-center justify-between gap-4 mb-6",children:[e.jsxDEV("div",{className:"flex items-center gap-3",children:[e.jsxDEV("div",{className:"w-10 h-10 rounded-xl bg-gradient-to-br from-violet-500/20 to-purple-500/20 flex items-center justify-center",children:e.jsxDEV("i",{className:"fas fa-paper-plane text-violet-400"},void 0,!1,void 0,this)},void 0,!1,void 0,this),e.jsxDEV("div",{children:[e.jsxDEV("h2",{className:"text-xl font-bold text-white",children:"Quick Actions"},void 0,!1,void 0,this),e.jsxDEV("p",{className:"text-xs text-gray-500",children:"Airdrop SOL or mint tokens"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),e.jsxDEV("div",{className:"flex items-center gap-2",children:e.jsxDEV("span",{className:"badge badge-info",children:[e.jsxDEV("i",{className:"fas fa-bolt text-xs"},void 0,!1,void 0,this),e.jsxDEV("span",{children:"Faucet Powered"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this),e.jsxDEV("div",{className:"grid gap-4 lg:grid-cols-3",children:[e.jsxDEV("div",{className:"space-y-2",children:[e.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Recipient Address"},void 0,!1,void 0,this),e.jsxDEV("div",{className:"relative",children:[e.jsxDEV("input",{value:a0,onChange:(z0)=>W0(z0.target.value),placeholder:"Enter Solana public key",className:"input pl-10"},void 0,!1,void 0,this),e.jsxDEV("i",{className:"fas fa-user absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),e.jsxDEV("div",{className:"space-y-2",children:[e.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Asset"},void 0,!1,void 0,this),e.jsxDEV("div",{className:"relative",children:[e.jsxDEV("select",{value:T,onChange:(z0)=>P(z0.target.value),className:"select pl-10 appearance-none",children:U0.map((z0)=>e.jsxDEV("option",{value:z0.value,children:z0.label},z0.value,!1,void 0,this))},void 0,!1,void 0,this),e.jsxDEV("i",{className:"fas fa-coins absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),e.jsxDEV("div",{className:"space-y-2",children:[e.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Amount"},void 0,!1,void 0,this),e.jsxDEV("div",{className:"relative",children:[e.jsxDEV("input",{value:n,onChange:(z0)=>A(z0.target.value),placeholder:"1.0",inputMode:"decimal",className:"input pl-10"},void 0,!1,void 0,this),e.jsxDEV("i",{className:"fas fa-calculator absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),e.jsxDEV("p",{className:"text-xs text-gray-500",children:T===dg.value?"In SOL (9 decimals)":`In tokens (${b0.decimals} decimals)`},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),e.jsxDEV("div",{className:"mt-6 flex flex-col sm:flex-row items-stretch sm:items-center gap-4",children:[e.jsxDEV("button",{type:"submit",disabled:Q0,className:`btn-primary flex-1 sm:flex-initial ${Q0?"opacity-50 cursor-not-allowed":""}`,children:Q0?e.jsxDEV(e.Fragment,{children:[e.jsxDEV("div",{className:"spinner"},void 0,!1,void 0,this),e.jsxDEV("span",{children:"Processing"},void 0,!1,void 0,this)]},void 0,!0,void 0,this):e.jsxDEV(e.Fragment,{children:[e.jsxDEV("i",{className:`fas fa-${T===dg.value?"parachute-box":"coins"}`},void 0,!1,void 0,this),e.jsxDEV("span",{children:T===dg.value?"Airdrop SOL":"Mint Tokens"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),$&&e.jsxDEV("div",{className:"flex-1 flex items-center gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/30",children:[e.jsxDEV("i",{className:"fas fa-exclamation-circle text-red-400"},void 0,!1,void 0,this),e.jsxDEV("p",{className:"text-sm text-red-300",children:$},void 0,!1,void 0,this)]},void 0,!0,void 0,this),x0&&e.jsxDEV("div",{className:"flex-1 flex items-center gap-2 p-3 rounded-lg bg-green-500/10 border border-green-500/30",children:[e.jsxDEV("i",{className:"fas fa-check-circle text-green-400"},void 0,!1,void 0,this),e.jsxDEV("p",{className:"text-sm text-green-300 font-mono text-xs break-all",children:x0},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)}var Vg=O0(ww(),1);var so=O0(ww(),1),Ca=O0($a(),1);function Wv({isOpen:J,title:s,onClose:h,children:T,footer:P,icon:a0="fa-window-maximize",iconColor:W0="purple"}){if(so.useEffect(()=>{if(!J||typeof window==="undefined")return;let A=(Q0)=>{if(Q0.key==="Escape")h()};return window.addEventListener("keydown",A),()=>window.removeEventListener("keydown",A)},[J,h]),!J)return null;return Ca.jsxDEV("div",{className:"fixed inset-0 z-50 flex items-center justify-center p-4 animate-fadeIn",children:[Ca.jsxDEV("div",{className:"absolute inset-0 bg-black/80 backdrop-blur-sm",onClick:h},void 0,!1,void 0,this),Ca.jsxDEV("div",{className:"w-full max-w-lg p-0 relative animate-modalSlideIn overflow-hidden rounded-2xl border border-white/20 bg-gray-900/95 backdrop-blur-xl shadow-2xl",children:[Ca.jsxDEV("div",{className:"p-6 border-b border-white/10 bg-gradient-to-r from-white/5 to-transparent",children:Ca.jsxDEV("div",{className:"flex items-center justify-between",children:[Ca.jsxDEV("div",{className:"flex items-center gap-3",children:[Ca.jsxDEV("div",{className:`w-10 h-10 rounded-xl bg-gradient-to-br ${{purple:"from-purple-500/20 to-violet-500/20 text-purple-400",blue:"from-blue-500/20 to-cyan-500/20 text-blue-400",amber:"from-amber-500/20 to-orange-500/20 text-amber-400",green:"from-green-500/20 to-emerald-500/20 text-green-400"}[W0]} flex items-center justify-center`,children:Ca.jsxDEV("i",{className:`fas ${a0}`},void 0,!1,void 0,this)},void 0,!1,void 0,this),Ca.jsxDEV("h3",{className:"text-xl font-bold text-white",children:s},void 0,!1,void 0,this)]},void 0,!0,void 0,this),Ca.jsxDEV("button",{type:"button",onClick:h,className:"btn-icon hover:bg-red-500/20 hover:border-red-500/30 hover:text-red-400","aria-label":"Close modal",children:Ca.jsxDEV("i",{className:"fas fa-times"},void 0,!1,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),Ca.jsxDEV("div",{className:"p-6 max-h-[60vh] overflow-y-auto custom-scrollbar",children:T},void 0,!1,void 0,this),P&&Ca.jsxDEV("div",{className:"p-6 border-t border-white/10 bg-gradient-to-r from-white/5 to-transparent",children:P},void 0,!1,void 0,this)]},void 0,!0,void 0,this),Ca.jsxDEV("style",{jsx:!0,children:`
|
|
232
|
-
@keyframes fadeIn {
|
|
233
|
-
from {
|
|
234
|
-
opacity: 0;
|
|
235
|
-
}
|
|
236
|
-
to {
|
|
237
|
-
opacity: 1;
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
@keyframes modalSlideIn {
|
|
242
|
-
from {
|
|
243
|
-
opacity: 0;
|
|
244
|
-
transform: scale(0.95) translateY(20px);
|
|
245
|
-
}
|
|
246
|
-
to {
|
|
247
|
-
opacity: 1;
|
|
248
|
-
transform: scale(1) translateY(0);
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.animate-fadeIn {
|
|
253
|
-
animation: fadeIn 0.2s ease-out;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.animate-modalSlideIn {
|
|
257
|
-
animation: modalSlideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.custom-scrollbar::-webkit-scrollbar {
|
|
261
|
-
width: 8px;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.custom-scrollbar::-webkit-scrollbar-track {
|
|
265
|
-
background: transparent;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
.custom-scrollbar::-webkit-scrollbar-thumb {
|
|
269
|
-
background: linear-gradient(180deg, var(--color-accent-primary), var(--color-accent-secondary));
|
|
270
|
-
border-radius: 4px;
|
|
271
|
-
}
|
|
272
|
-
`},void 0,!1,void 0,this)]},void 0,!0,void 0,this)}var r0=O0($a(),1);function Fo({isOpen:J,onClose:s,onSubmit:h}){let[T,P]=Vg.useState(""),[a0,W0]=Vg.useState(""),[n,A]=Vg.useState(!0),[Q0,I]=Vg.useState("100"),[$,L]=Vg.useState(!1),[x0,c0]=Vg.useState(null);return r0.jsxDEV(Wv,{isOpen:J,onClose:()=>{if(!$)s()},title:"Clone Program",icon:"fa-code",iconColor:"blue",footer:r0.jsxDEV("div",{className:"flex justify-between items-center",children:[r0.jsxDEV("div",{className:"text-xs text-gray-500",children:[r0.jsxDEV("i",{className:"fas fa-info-circle mr-1"},void 0,!1,void 0,this),"Clone from Solana mainnet or custom RPC"]},void 0,!0,void 0,this),r0.jsxDEV("div",{className:"flex gap-3",children:[r0.jsxDEV("button",{type:"button",onClick:()=>!$&&s(),disabled:$,className:"btn-secondary",children:"Cancel"},void 0,!1,void 0,this),r0.jsxDEV("button",{type:"button",onClick:async()=>{L(!0),c0(null);try{await h({programId:T.trim(),endpoint:a0.trim()?a0.trim():void 0,withAccounts:n,accountsLimit:n&&Q0.trim()?Number(Q0):void 0}),s(),P(""),W0(""),I("100")}catch(b0){c0(b0?.message??String(b0))}finally{L(!1)}},disabled:$||T.trim().length===0,className:`btn-primary ${$||T.trim().length===0?"opacity-50 cursor-not-allowed":""}`,children:$?r0.jsxDEV(r0.Fragment,{children:[r0.jsxDEV("div",{className:"spinner"},void 0,!1,void 0,this),r0.jsxDEV("span",{children:"Cloning Program"},void 0,!1,void 0,this)]},void 0,!0,void 0,this):r0.jsxDEV(r0.Fragment,{children:[r0.jsxDEV("i",{className:"fas fa-download"},void 0,!1,void 0,this),r0.jsxDEV("span",{children:"Clone Program"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),children:r0.jsxDEV("div",{className:"space-y-5",children:[r0.jsxDEV("div",{className:"space-y-2",children:[r0.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Program ID *"},void 0,!1,void 0,this),r0.jsxDEV("div",{className:"relative",children:[r0.jsxDEV("input",{value:T,onChange:(b0)=>P(b0.target.value),placeholder:"Enter program public key (e.g., TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA)",className:"input pl-10 font-mono text-sm"},void 0,!1,void 0,this),r0.jsxDEV("i",{className:"fas fa-fingerprint absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),r0.jsxDEV("div",{className:"space-y-2",children:[r0.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"RPC Endpoint (Optional)"},void 0,!1,void 0,this),r0.jsxDEV("div",{className:"relative",children:[r0.jsxDEV("input",{value:a0,onChange:(b0)=>W0(b0.target.value),placeholder:"https://api.mainnet-beta.solana.com (default)",className:"input pl-10"},void 0,!1,void 0,this),r0.jsxDEV("i",{className:"fas fa-globe absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),r0.jsxDEV("div",{className:"p-4 rounded-xl bg-white/5 border border-white/10 space-y-3",children:[r0.jsxDEV("label",{className:"flex items-center gap-3 cursor-pointer group",children:[r0.jsxDEV("input",{type:"checkbox",checked:n,onChange:(b0)=>A(b0.target.checked),className:"checkbox"},void 0,!1,void 0,this),r0.jsxDEV("div",{children:[r0.jsxDEV("span",{className:"text-sm text-white group-hover:text-purple-300 transition-colors",children:"Clone Program Accounts"},void 0,!1,void 0,this),r0.jsxDEV("p",{className:"text-xs text-gray-500 mt-0.5",children:"Include accounts owned by this program"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),n&&r0.jsxDEV("div",{className:"ml-8 space-y-2 pt-2 border-t border-white/5",children:[r0.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Account Limit"},void 0,!1,void 0,this),r0.jsxDEV("div",{className:"relative",children:[r0.jsxDEV("input",{value:Q0,onChange:(b0)=>I(b0.target.value),placeholder:"100",type:"number",min:"1",max:"1000",className:"input pl-10"},void 0,!1,void 0,this),r0.jsxDEV("i",{className:"fas fa-list-ol absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),r0.jsxDEV("p",{className:"text-xs text-gray-500",children:"Maximum number of accounts to clone"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),x0&&r0.jsxDEV("div",{className:"flex items-start gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/30",children:[r0.jsxDEV("i",{className:"fas fa-exclamation-circle text-red-400 mt-0.5"},void 0,!1,void 0,this),r0.jsxDEV("p",{className:"text-sm text-red-300",children:x0},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)}var rg=O0(ww(),1);var p=O0($a(),1);function yo({isOpen:J,onClose:s,onSubmit:h}){let[T,P]=rg.useState(""),[a0,W0]=rg.useState(""),[n,A]=rg.useState(!1),[Q0,I]=rg.useState("20"),[$,L]=rg.useState(!1),[x0,c0]=rg.useState(!1),[U0,b0]=rg.useState(null);return p.jsxDEV(Wv,{isOpen:J,onClose:()=>{if(!x0)s()},title:"Clone Token",icon:"fa-coins",iconColor:"amber",footer:p.jsxDEV("div",{className:"flex justify-between items-center",children:[p.jsxDEV("div",{className:"text-xs text-gray-500",children:[p.jsxDEV("i",{className:"fas fa-info-circle mr-1"},void 0,!1,void 0,this),"Clone SPL tokens from mainnet"]},void 0,!0,void 0,this),p.jsxDEV("div",{className:"flex gap-3",children:[p.jsxDEV("button",{type:"button",onClick:()=>!x0&&s(),disabled:x0,className:"btn-secondary",children:"Cancel"},void 0,!1,void 0,this),p.jsxDEV("button",{type:"button",onClick:async()=>{c0(!0),b0(null);try{await h({mint:T.trim(),endpoint:a0.trim()?a0.trim():void 0,cloneAccounts:n,holders:n&&!$&&Q0.trim()?Number(Q0):void 0,allAccounts:$}),s(),P(""),W0(""),I("20"),L(!1)}catch(P0){b0(P0?.message??String(P0))}finally{c0(!1)}},disabled:x0||T.trim().length===0,className:`btn-primary ${x0||T.trim().length===0?"opacity-50 cursor-not-allowed":""}`,children:x0?p.jsxDEV(p.Fragment,{children:[p.jsxDEV("div",{className:"spinner"},void 0,!1,void 0,this),p.jsxDEV("span",{children:"Cloning Token"},void 0,!1,void 0,this)]},void 0,!0,void 0,this):p.jsxDEV(p.Fragment,{children:[p.jsxDEV("i",{className:"fas fa-download"},void 0,!1,void 0,this),p.jsxDEV("span",{children:"Clone Token"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),children:p.jsxDEV("div",{className:"space-y-5",children:[p.jsxDEV("div",{className:"space-y-2",children:[p.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Mint Address *"},void 0,!1,void 0,this),p.jsxDEV("div",{className:"relative",children:[p.jsxDEV("input",{value:T,onChange:(P0)=>P(P0.target.value),placeholder:"Enter token mint address (e.g., EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v)",className:"input pl-10 font-mono text-sm"},void 0,!1,void 0,this),p.jsxDEV("i",{className:"fas fa-coin absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),p.jsxDEV("div",{className:"space-y-2",children:[p.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"RPC Endpoint (Optional)"},void 0,!1,void 0,this),p.jsxDEV("div",{className:"relative",children:[p.jsxDEV("input",{value:a0,onChange:(P0)=>W0(P0.target.value),placeholder:"https://api.mainnet-beta.solana.com (default)",className:"input pl-10"},void 0,!1,void 0,this),p.jsxDEV("i",{className:"fas fa-globe absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),p.jsxDEV("div",{className:"p-4 rounded-xl bg-white/5 border border-white/10 space-y-3",children:[p.jsxDEV("label",{className:"flex items-center gap-3 cursor-pointer group",children:[p.jsxDEV("input",{type:"checkbox",checked:n,onChange:(P0)=>A(P0.target.checked),className:"checkbox"},void 0,!1,void 0,this),p.jsxDEV("div",{children:[p.jsxDEV("span",{className:"text-sm text-white group-hover:text-purple-300 transition-colors",children:"Clone Token Accounts"},void 0,!1,void 0,this),p.jsxDEV("p",{className:"text-xs text-gray-500 mt-0.5",children:"Include holder accounts for this token"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),n&&p.jsxDEV("div",{className:"ml-8 space-y-4 pt-3 border-t border-white/5",children:[p.jsxDEV("label",{className:"flex items-center gap-3 cursor-pointer group",children:[p.jsxDEV("input",{type:"checkbox",checked:$,onChange:(P0)=>L(P0.target.checked),className:"checkbox"},void 0,!1,void 0,this),p.jsxDEV("div",{children:[p.jsxDEV("span",{className:"text-sm text-white group-hover:text-purple-300 transition-colors",children:"Clone All Accounts"},void 0,!1,void 0,this),p.jsxDEV("p",{className:"text-xs text-gray-500 mt-0.5",children:"Warning: This may be slow for popular tokens"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),!$&&p.jsxDEV("div",{className:"space-y-2",children:[p.jsxDEV("label",{className:"block text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Top Holders Limit"},void 0,!1,void 0,this),p.jsxDEV("div",{className:"relative",children:[p.jsxDEV("input",{value:Q0,onChange:(P0)=>I(P0.target.value),placeholder:"20",type:"number",min:"1",max:"100",className:"input pl-10"},void 0,!1,void 0,this),p.jsxDEV("i",{className:"fas fa-users absolute left-3 top-1/2 -translate-y-1/2 text-gray-500"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),p.jsxDEV("p",{className:"text-xs text-gray-500",children:"Number of top holders to clone"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),U0&&p.jsxDEV("div",{className:"flex items-start gap-2 p-3 rounded-lg bg-red-500/10 border border-red-500/30",children:[p.jsxDEV("i",{className:"fas fa-exclamation-circle text-red-400 mt-0.5"},void 0,!1,void 0,this),p.jsxDEV("p",{className:"text-sm text-red-300",children:U0},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)}var E=O0($a(),1);function Co({programs:J,loading:s,onRefresh:h,onAdd:T}){return E.jsxDEV("section",{className:"glass-panel p-6",children:[E.jsxDEV("header",{className:"flex flex-wrap items-center justify-between gap-3 mb-6",children:[E.jsxDEV("div",{className:"flex items-center gap-3",children:[E.jsxDEV("div",{className:"w-10 h-10 rounded-xl bg-gradient-to-br from-blue-500/20 to-cyan-500/20 flex items-center justify-center",children:E.jsxDEV("i",{className:"fas fa-code text-blue-400"},void 0,!1,void 0,this)},void 0,!1,void 0,this),E.jsxDEV("div",{children:[E.jsxDEV("h2",{className:"text-xl font-bold text-white",children:"Programs"},void 0,!1,void 0,this),E.jsxDEV("p",{className:"text-xs text-gray-500",children:[J.length," deployed programs"]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),E.jsxDEV("div",{className:"flex items-center gap-2",children:[E.jsxDEV("button",{type:"button",onClick:h,disabled:s,className:`btn-secondary text-sm ${s?"opacity-50 cursor-not-allowed":""}`,children:[E.jsxDEV("i",{className:`fas fa-sync-alt ${s?"animate-spin":""}`},void 0,!1,void 0,this),E.jsxDEV("span",{children:s?"Refreshing":"Refresh"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),E.jsxDEV("button",{type:"button",onClick:T,className:"btn-primary text-sm",children:[E.jsxDEV("i",{className:"fas fa-plus"},void 0,!1,void 0,this),E.jsxDEV("span",{children:"Add Program"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),E.jsxDEV("div",{className:"overflow-x-auto rounded-xl",children:J.length===0?E.jsxDEV("div",{className:"flex flex-col items-center justify-center py-12 text-center",children:[E.jsxDEV("div",{className:"w-16 h-16 rounded-full bg-gradient-to-br from-blue-600/20 to-cyan-600/20 flex items-center justify-center mb-4",children:E.jsxDEV("i",{className:"fas fa-code text-blue-500 text-2xl"},void 0,!1,void 0,this)},void 0,!1,void 0,this),E.jsxDEV("p",{className:"text-gray-400 mb-2",children:"No programs deployed"},void 0,!1,void 0,this),E.jsxDEV("p",{className:"text-sm text-gray-500",children:'Click "Add Program" to clone from mainnet'},void 0,!1,void 0,this)]},void 0,!0,void 0,this):E.jsxDEV("table",{className:"table-modern",children:[E.jsxDEV("thead",{children:E.jsxDEV("tr",{children:[E.jsxDEV("th",{children:"Program ID"},void 0,!1,void 0,this),E.jsxDEV("th",{children:"Owner"},void 0,!1,void 0,this),E.jsxDEV("th",{children:"Status"},void 0,!1,void 0,this),E.jsxDEV("th",{children:"Data Size"},void 0,!1,void 0,this),E.jsxDEV("th",{children:"Balance"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),E.jsxDEV("tbody",{children:J.map((P,a0)=>E.jsxDEV("tr",{style:{animationDelay:`${a0*50}ms`},className:"animate-fadeIn",children:[E.jsxDEV("td",{children:E.jsxDEV("div",{className:"flex items-center gap-2",children:[E.jsxDEV("i",{className:"fas fa-cube text-blue-400 text-xs"},void 0,!1,void 0,this),E.jsxDEV("span",{className:"font-mono text-xs text-blue-300",children:[P.programId.slice(0,8),"...",P.programId.slice(-6)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),E.jsxDEV("td",{children:E.jsxDEV("span",{className:"font-mono text-xs text-gray-400",children:[P.owner.slice(0,8),"..."]},void 0,!0,void 0,this)},void 0,!1,void 0,this),E.jsxDEV("td",{children:E.jsxDEV("span",{className:`badge ${P.executable?"badge-success":"badge-warning"}`,children:[E.jsxDEV("i",{className:`fas fa-${P.executable?"check":"pause"} text-xs`},void 0,!1,void 0,this),E.jsxDEV("span",{children:P.executable?"Executable":"Data Only"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),E.jsxDEV("td",{children:E.jsxDEV("div",{className:"flex items-center gap-2",children:[E.jsxDEV("i",{className:"fas fa-database text-gray-400 text-xs"},void 0,!1,void 0,this),E.jsxDEV("span",{className:"text-gray-300",children:[(P.dataLen/1024).toFixed(1)," KB"]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),E.jsxDEV("td",{children:E.jsxDEV("div",{className:"flex items-center gap-2",children:[E.jsxDEV("i",{className:"fas fa-wallet text-gray-400 text-xs"},void 0,!1,void 0,this),E.jsxDEV("span",{className:"text-gray-300",children:[(Number(BigInt(P.lamports))/1e9).toFixed(4)," SOL"]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)]},P.programId,!0,void 0,this))},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)}var H0=O0($a(),1),m3=new Intl.NumberFormat("en-US");function uo({status:J,loading:s,onRefresh:h}){return H0.jsxDEV("section",{className:"glass-panel p-6",children:[H0.jsxDEV("div",{className:"flex items-center justify-between mb-6",children:[H0.jsxDEV("div",{className:"flex items-center gap-3",children:[H0.jsxDEV("div",{className:"w-10 h-10 rounded-xl bg-gradient-to-br from-green-500/20 to-emerald-500/20 flex items-center justify-center",children:H0.jsxDEV("i",{className:"fas fa-server text-green-400"},void 0,!1,void 0,this)},void 0,!1,void 0,this),H0.jsxDEV("div",{children:[H0.jsxDEV("h2",{className:"text-xl font-bold text-white",children:"Network Status"},void 0,!1,void 0,this),H0.jsxDEV("p",{className:"text-xs text-gray-500",children:"Real-time blockchain metrics"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),H0.jsxDEV("button",{type:"button",onClick:h,disabled:s,className:`btn-secondary ${s?"opacity-50 cursor-not-allowed":""}`,children:[H0.jsxDEV("i",{className:`fas fa-sync-alt ${s?"animate-spin":""}`},void 0,!1,void 0,this),H0.jsxDEV("span",{children:s?"Refreshing":"Refresh"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),J?H0.jsxDEV(H0.Fragment,{children:[H0.jsxDEV("div",{className:"grid gap-4 sm:grid-cols-2 lg:grid-cols-4",children:[H0.jsxDEV(Kv,{title:"Current Slot",value:m3.format(J.slot),subtitle:`Raw: ${J.slotBigint}`,icon:"fa-cube",color:"purple"},void 0,!1,void 0,this),H0.jsxDEV(Kv,{title:"Block Height",value:m3.format(J.blockHeight),subtitle:`Raw: ${J.blockHeightBigint}`,icon:"fa-layer-group",color:"blue"},void 0,!1,void 0,this),H0.jsxDEV(Kv,{title:"Transactions",value:m3.format(J.txCount),subtitle:`Raw: ${J.txCountBigint}`,icon:"fa-exchange-alt",color:"amber"},void 0,!1,void 0,this),H0.jsxDEV(Kv,{title:"Faucet Balance",value:`${J.faucet.sol.toFixed(3)} SOL`,subtitle:J.faucet.address.slice(0,10)+"…",icon:"fa-wallet",color:"green"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),J.latestBlockhash&&H0.jsxDEV("div",{className:"mt-6 p-4 rounded-xl bg-white/5 border border-white/10",children:[H0.jsxDEV("div",{className:"flex items-center gap-2 mb-2",children:[H0.jsxDEV("i",{className:"fas fa-fingerprint text-violet-400 text-xs"},void 0,!1,void 0,this),H0.jsxDEV("span",{className:"text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Latest Blockhash"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),H0.jsxDEV("p",{className:"text-sm font-mono text-violet-300 break-all",children:J.latestBlockhash},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this):H0.jsxDEV("div",{className:"flex flex-col items-center justify-center py-12 text-center",children:[H0.jsxDEV("div",{className:"w-16 h-16 rounded-full bg-gradient-to-br from-gray-600/20 to-gray-700/20 flex items-center justify-center mb-4",children:H0.jsxDEV("i",{className:"fas fa-server text-gray-500 text-2xl"},void 0,!1,void 0,this)},void 0,!1,void 0,this),H0.jsxDEV("p",{className:"text-gray-400 mb-2",children:"No connection to RPC"},void 0,!1,void 0,this),H0.jsxDEV("p",{className:"text-sm text-gray-500",children:"Start the RPC server to see network status"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)}var Lz={purple:"from-purple-500/20 to-violet-500/20 text-purple-400",blue:"from-blue-500/20 to-cyan-500/20 text-blue-400",amber:"from-amber-500/20 to-orange-500/20 text-amber-400",green:"from-green-500/20 to-emerald-500/20 text-green-400"};function Kv({title:J,value:s,subtitle:h,icon:T,color:P}){return H0.jsxDEV("div",{className:"card group hover:scale-[1.02] transition-all duration-200",children:[H0.jsxDEV("div",{className:"flex items-start justify-between mb-3",children:[H0.jsxDEV("div",{className:`w-10 h-10 rounded-xl bg-gradient-to-br ${Lz[P]} flex items-center justify-center group-hover:scale-110 transition-transform`,children:H0.jsxDEV("i",{className:`fas ${T} text-sm`},void 0,!1,void 0,this)},void 0,!1,void 0,this),H0.jsxDEV("span",{className:"status-dot online"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),H0.jsxDEV("p",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider mb-1",children:J},void 0,!1,void 0,this),H0.jsxDEV("p",{className:"text-2xl font-bold text-white",children:s},void 0,!1,void 0,this),h&&H0.jsxDEV("p",{className:"mt-2 text-xs text-gray-500 font-mono truncate",children:h},void 0,!1,void 0,this)]},void 0,!0,void 0,this)}var j=O0($a(),1);function To({tokens:J,loading:s,onRefresh:h,onAdd:T}){return j.jsxDEV("section",{className:"glass-panel p-6",children:[j.jsxDEV("header",{className:"flex flex-wrap items-center justify-between gap-3 mb-6",children:[j.jsxDEV("div",{className:"flex items-center gap-3",children:[j.jsxDEV("div",{className:"w-10 h-10 rounded-xl bg-gradient-to-br from-amber-500/20 to-orange-500/20 flex items-center justify-center",children:j.jsxDEV("i",{className:"fas fa-coins text-amber-400"},void 0,!1,void 0,this)},void 0,!1,void 0,this),j.jsxDEV("div",{children:[j.jsxDEV("h2",{className:"text-xl font-bold text-white",children:"Tokens"},void 0,!1,void 0,this),j.jsxDEV("p",{className:"text-xs text-gray-500",children:[J.length," SPL tokens"]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),j.jsxDEV("div",{className:"flex items-center gap-2",children:[j.jsxDEV("button",{type:"button",onClick:h,disabled:s,className:`btn-secondary text-sm ${s?"opacity-50 cursor-not-allowed":""}`,children:[j.jsxDEV("i",{className:`fas fa-sync-alt ${s?"animate-spin":""}`},void 0,!1,void 0,this),j.jsxDEV("span",{children:s?"Refreshing":"Refresh"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),j.jsxDEV("button",{type:"button",onClick:T,className:"btn-primary text-sm",children:[j.jsxDEV("i",{className:"fas fa-plus"},void 0,!1,void 0,this),j.jsxDEV("span",{children:"Add Token"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),j.jsxDEV("div",{className:"overflow-x-auto rounded-xl",children:J.length===0?j.jsxDEV("div",{className:"flex flex-col items-center justify-center py-12 text-center",children:[j.jsxDEV("div",{className:"w-16 h-16 rounded-full bg-gradient-to-br from-amber-600/20 to-orange-600/20 flex items-center justify-center mb-4",children:j.jsxDEV("i",{className:"fas fa-coins text-amber-500 text-2xl"},void 0,!1,void 0,this)},void 0,!1,void 0,this),j.jsxDEV("p",{className:"text-gray-400 mb-2",children:"No tokens created"},void 0,!1,void 0,this),j.jsxDEV("p",{className:"text-sm text-gray-500",children:'Click "Add Token" to clone from mainnet'},void 0,!1,void 0,this)]},void 0,!0,void 0,this):j.jsxDEV("table",{className:"table-modern",children:[j.jsxDEV("thead",{children:j.jsxDEV("tr",{children:[j.jsxDEV("th",{children:"Token Mint"},void 0,!1,void 0,this),j.jsxDEV("th",{children:"Supply"},void 0,!1,void 0,this),j.jsxDEV("th",{children:"Decimals"},void 0,!1,void 0,this),j.jsxDEV("th",{children:"Authority"},void 0,!1,void 0,this),j.jsxDEV("th",{children:"Status"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),j.jsxDEV("tbody",{children:J.map((P,a0)=>j.jsxDEV("tr",{style:{animationDelay:`${a0*50}ms`},className:"animate-fadeIn",children:[j.jsxDEV("td",{children:j.jsxDEV("div",{className:"flex items-center gap-2",children:[j.jsxDEV("i",{className:"fas fa-coin text-amber-400 text-xs"},void 0,!1,void 0,this),j.jsxDEV("span",{className:"font-mono text-xs text-amber-300",children:[P.mint.slice(0,8),"...",P.mint.slice(-6)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),j.jsxDEV("td",{children:j.jsxDEV("div",{className:"flex items-center gap-2",children:[j.jsxDEV("i",{className:"fas fa-chart-line text-gray-400 text-xs"},void 0,!1,void 0,this),j.jsxDEV("span",{className:"text-gray-300 font-semibold",children:P.uiAmountString},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),j.jsxDEV("td",{children:j.jsxDEV("span",{className:"badge",children:P.decimals},void 0,!1,void 0,this)},void 0,!1,void 0,this),j.jsxDEV("td",{children:P.mintAuthority?j.jsxDEV("div",{className:"flex items-center gap-2",children:[j.jsxDEV("i",{className:"fas fa-key text-purple-400 text-xs"},void 0,!1,void 0,this),j.jsxDEV("span",{className:"font-mono text-xs text-purple-300",children:[P.mintAuthority.slice(0,8),"..."]},void 0,!0,void 0,this)]},void 0,!0,void 0,this):j.jsxDEV("span",{className:"text-gray-500 text-sm",children:"No authority"},void 0,!1,void 0,this)},void 0,!1,void 0,this),j.jsxDEV("td",{children:j.jsxDEV("span",{className:`badge ${P.isInitialized?"badge-success":"badge-warning"}`,children:[j.jsxDEV("i",{className:`fas fa-${P.isInitialized?"check-circle":"clock"} text-xs`},void 0,!1,void 0,this),j.jsxDEV("span",{children:P.isInitialized?"Active":"Pending"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)]},P.mint,!0,void 0,this))},void 0,!1,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)}var Ob=O0(ww(),1);function ko(J,s){let h=Ob.useRef(J);Ob.useEffect(()=>{h.current=J},[J]),Ob.useEffect(()=>{if(s===null)return;let P=setInterval(()=>h.current(),s);return()=>clearInterval(P)},[s])}var C=O0($a(),1);function ho(){let[J,s]=e0.useState(null),[h,T]=e0.useState(null),[P,a0]=e0.useState([]),[W0,n]=e0.useState([]),[A,Q0]=e0.useState(!1),[I,$]=e0.useState(!1),[L,x0]=e0.useState(!1),[c0,U0]=e0.useState(!1),[b0,V0]=e0.useState(!1),[P0,z0]=e0.useState(null),[S0,Qa]=e0.useState(!1),[i0,I0]=e0.useState("status"),Ua=e0.useCallback(async()=>{try{let X=await Qo();s(X),z0(null)}catch(X){z0(X?.message??String(X))}},[]),O=e0.useCallback(async()=>{Q0(!0);try{let X=await Uo();T(X)}catch(X){z0(X?.message??String(X))}finally{Q0(!1)}},[]),E0=e0.useCallback(async()=>{$(!0);try{let X=await qo();a0(X)}catch(X){z0(X?.message??String(X))}finally{$(!1)}},[]),X0=e0.useCallback(async()=>{x0(!0);try{let X=await Ao();n(X)}catch(X){z0(X?.message??String(X))}finally{x0(!1)}},[]);e0.useEffect(()=>{Ua(),O(),E0(),X0()},[Ua,O,E0,X0]),ko(O,5000);let o0=e0.useCallback(async(X,S)=>{let l0=await Lo({address:X,lamports:S});return await O(),l0.signature},[O]),ra=e0.useCallback(async(X,S,l0)=>{let i=await Wo({mint:X,owner:S,amountRaw:l0});if(await Promise.all([O(),X0()]),i&&typeof i==="object"&&"signature"in i)return i.signature;return},[O,X0]),Wa=()=>U0(!0),K=()=>V0(!0),c=e0.useCallback(async(X)=>{await Ko(X),await E0()},[E0]),V=e0.useCallback(async(X)=>{await Oo(X),await X0()},[X0]),R0=(X)=>{I0(X),document.getElementById(X)?.scrollIntoView({behavior:"smooth"}),Qa(!1)};return C.jsxDEV("div",{className:"min-h-screen relative",children:[C.jsxDEV("button",{onClick:()=>Qa(!S0),className:"lg:hidden fixed top-4 left-4 z-50 btn-icon bg-gradient-to-br from-purple-600 to-violet-600 border-purple-500/30","aria-label":"Menu",children:C.jsxDEV("i",{className:`fas fa-${S0?"times":"bars"} text-white`},void 0,!1,void 0,this)},void 0,!1,void 0,this),C.jsxDEV("aside",{className:`fixed top-0 left-0 h-full w-72 glass-panel rounded-none border-r border-white/5 z-40 transition-transform duration-300 ${S0?"translate-x-0":"-translate-x-full lg:translate-x-0"}`,children:C.jsxDEV("div",{className:"p-6 space-y-8",children:[C.jsxDEV("div",{className:"flex items-center gap-3",children:[C.jsxDEV("div",{className:"w-12 h-12 rounded-xl bg-gradient-to-br from-purple-600 to-violet-600 flex items-center justify-center shadow-lg",children:C.jsxDEV("i",{className:"fas fa-fire text-white text-xl"},void 0,!1,void 0,this)},void 0,!1,void 0,this),C.jsxDEV("div",{children:[C.jsxDEV("h1",{className:"text-xl font-bold bg-gradient-to-r from-purple-400 to-violet-400 bg-clip-text text-transparent",children:"SolForge"},void 0,!1,void 0,this),C.jsxDEV("p",{className:"text-xs text-gray-500",children:"Development Suite"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("nav",{className:"space-y-2",children:[C.jsxDEV("button",{onClick:()=>R0("status"),className:`w-full flex items-center gap-3 px-4 py-3 rounded-xl transition-all text-left ${i0==="status"?"bg-gradient-to-r from-purple-600/20 to-violet-600/20 border border-purple-500/30 text-purple-300":"text-gray-400 hover:bg-white/5"}`,children:[C.jsxDEV("i",{className:"fas fa-server w-5"},void 0,!1,void 0,this),C.jsxDEV("span",{className:"font-medium",children:"Network Status"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("button",{onClick:()=>R0("actions"),className:`w-full flex items-center gap-3 px-4 py-3 rounded-xl transition-all text-left ${i0==="actions"?"bg-gradient-to-r from-purple-600/20 to-violet-600/20 border border-purple-500/30 text-purple-300":"text-gray-400 hover:bg-white/5"}`,children:[C.jsxDEV("i",{className:"fas fa-paper-plane w-5"},void 0,!1,void 0,this),C.jsxDEV("span",{className:"font-medium",children:"Quick Actions"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("button",{onClick:()=>R0("programs"),className:`w-full flex items-center gap-3 px-4 py-3 rounded-xl transition-all text-left ${i0==="programs"?"bg-gradient-to-r from-purple-600/20 to-violet-600/20 border border-purple-500/30 text-purple-300":"text-gray-400 hover:bg-white/5"}`,children:[C.jsxDEV("i",{className:"fas fa-code w-5"},void 0,!1,void 0,this),C.jsxDEV("span",{className:"font-medium",children:"Programs"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("button",{onClick:()=>R0("tokens"),className:`w-full flex items-center gap-3 px-4 py-3 rounded-xl transition-all text-left ${i0==="tokens"?"bg-gradient-to-r from-purple-600/20 to-violet-600/20 border border-purple-500/30 text-purple-300":"text-gray-400 hover:bg-white/5"}`,children:[C.jsxDEV("i",{className:"fas fa-coins w-5"},void 0,!1,void 0,this),C.jsxDEV("span",{className:"font-medium",children:"Tokens"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),J&&C.jsxDEV("div",{className:"space-y-3",children:[C.jsxDEV("h3",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Connection"},void 0,!1,void 0,this),C.jsxDEV("div",{className:"p-3 rounded-xl bg-white/5 border border-white/10",children:[C.jsxDEV("div",{className:"flex items-center gap-2 mb-2",children:[C.jsxDEV("span",{className:"status-dot online"},void 0,!1,void 0,this),C.jsxDEV("span",{className:"text-xs text-gray-400",children:"Connected"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("p",{className:"text-xs text-gray-500 font-mono break-all",children:J.rpcUrl},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),S0&&C.jsxDEV("div",{className:"fixed inset-0 bg-black/50 backdrop-blur-sm z-30 lg:hidden",onClick:()=>Qa(!1)},void 0,!1,void 0,this),C.jsxDEV("main",{className:"transition-all duration-300 lg:ml-72 p-4 md:p-8",children:C.jsxDEV("div",{className:"max-w-7xl mx-auto space-y-6",children:[C.jsxDEV("header",{className:"glass-panel p-6 animate-fadeIn hidden md:block",children:[C.jsxDEV("div",{className:"flex flex-col md:flex-row md:items-center md:justify-between gap-4",children:[C.jsxDEV("div",{children:[C.jsxDEV("h2",{className:"text-3xl font-bold bg-gradient-to-r from-purple-400 to-violet-400 bg-clip-text text-transparent",children:"SolForge Dashboard"},void 0,!1,void 0,this),C.jsxDEV("p",{className:"text-gray-400 mt-1",children:"Manage your local Solana development environment"},void 0,!1,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("button",{onClick:O,className:"btn-secondary",children:[C.jsxDEV("i",{className:`fas fa-sync-alt ${A?"animate-spin":""}`},void 0,!1,void 0,this),C.jsxDEV("span",{children:"Refresh All"},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),P0&&C.jsxDEV("div",{className:"mt-6 p-4 rounded-xl bg-gradient-to-r from-red-500/10 to-pink-500/10 border border-red-500/30 flex items-start gap-3 animate-slideIn",children:[C.jsxDEV("i",{className:"fas fa-exclamation-circle text-red-400 mt-0.5"},void 0,!1,void 0,this),C.jsxDEV("div",{className:"flex-1",children:C.jsxDEV("p",{className:"text-sm text-red-300",children:P0},void 0,!1,void 0,this)},void 0,!1,void 0,this),C.jsxDEV("button",{onClick:()=>z0(null),className:"text-red-400 hover:text-red-300","aria-label":"Close error",children:C.jsxDEV("i",{className:"fas fa-times"},void 0,!1,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("div",{className:"md:hidden mb-4",children:[C.jsxDEV("h2",{className:"text-2xl font-bold bg-gradient-to-r from-purple-400 to-violet-400 bg-clip-text text-transparent",children:"SolForge"},void 0,!1,void 0,this),P0&&C.jsxDEV("div",{className:"mt-2 p-3 rounded-lg bg-red-500/10 border border-red-500/30",children:C.jsxDEV("p",{className:"text-xs text-red-300",children:P0},void 0,!1,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this),C.jsxDEV("div",{id:"status",className:"animate-fadeIn scroll-mt-24",children:C.jsxDEV(uo,{status:h,loading:A,onRefresh:O},void 0,!1,void 0,this)},void 0,!1,void 0,this),C.jsxDEV("div",{id:"actions",className:"glass-panel p-6 animate-fadeIn scroll-mt-24",style:{animationDelay:"0.1s"},children:C.jsxDEV(_o,{tokens:W0,onAirdrop:o0,onMint:ra},void 0,!1,void 0,this)},void 0,!1,void 0,this),C.jsxDEV("div",{className:"space-y-6",children:[C.jsxDEV("div",{id:"programs",className:"animate-fadeIn scroll-mt-24",style:{animationDelay:"0.2s"},children:C.jsxDEV(Co,{programs:P,loading:I,onRefresh:E0,onAdd:Wa},void 0,!1,void 0,this)},void 0,!1,void 0,this),C.jsxDEV("div",{id:"tokens",className:"animate-fadeIn scroll-mt-24",style:{animationDelay:"0.3s"},children:C.jsxDEV(To,{tokens:W0,loading:L,onRefresh:X0,onAdd:K},void 0,!1,void 0,this)},void 0,!1,void 0,this)]},void 0,!0,void 0,this)]},void 0,!0,void 0,this)},void 0,!1,void 0,this),C.jsxDEV(Fo,{isOpen:c0,onClose:()=>U0(!1),onSubmit:c},void 0,!1,void 0,this),C.jsxDEV(yo,{isOpen:b0,onClose:()=>V0(!1),onSubmit:V},void 0,!1,void 0,this),C.jsxDEV("style",{jsx:!0,children:`
|
|
273
|
-
@keyframes fadeIn {
|
|
274
|
-
from {
|
|
275
|
-
opacity: 0;
|
|
276
|
-
transform: translateY(20px);
|
|
277
|
-
}
|
|
278
|
-
to {
|
|
279
|
-
opacity: 1;
|
|
280
|
-
transform: translateY(0);
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
@keyframes slideIn {
|
|
285
|
-
from {
|
|
286
|
-
opacity: 0;
|
|
287
|
-
transform: translateX(-20px);
|
|
288
|
-
}
|
|
289
|
-
to {
|
|
290
|
-
opacity: 1;
|
|
291
|
-
transform: translateX(0);
|
|
292
|
-
}
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.animate-fadeIn {
|
|
296
|
-
animation: fadeIn 0.6s ease-out forwards;
|
|
297
|
-
opacity: 0;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.animate-slideIn {
|
|
301
|
-
animation: slideIn 0.4s ease-out forwards;
|
|
302
|
-
}
|
|
303
|
-
`},void 0,!1,void 0,this)]},void 0,!0,void 0,this)}var io=O0($a(),1);function co(){let J=document.getElementById("root");if(!J)return;So.createRoot(J).render(io.jsxDEV(ho,{},void 0,!1,void 0,this))}if(document.readyState==="loading")document.addEventListener("DOMContentLoaded",co);else co();
|