@nickmeriano/task 0.7.1 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/README.md +73 -25
  2. package/dist/asks.test.d.ts +17 -0
  3. package/dist/asks.test.d.ts.map +1 -0
  4. package/dist/asks.test.js +278 -0
  5. package/dist/asks.test.js.map +1 -0
  6. package/dist/check.d.ts +43 -0
  7. package/dist/check.d.ts.map +1 -0
  8. package/dist/check.js +403 -0
  9. package/dist/check.js.map +1 -0
  10. package/dist/check.test.d.ts +9 -0
  11. package/dist/check.test.d.ts.map +1 -0
  12. package/dist/check.test.js +248 -0
  13. package/dist/check.test.js.map +1 -0
  14. package/dist/claim-io.d.ts +73 -0
  15. package/dist/claim-io.d.ts.map +1 -0
  16. package/dist/claim-io.js +344 -0
  17. package/dist/claim-io.js.map +1 -0
  18. package/dist/claim.d.ts +61 -9
  19. package/dist/claim.d.ts.map +1 -1
  20. package/dist/claim.js +197 -67
  21. package/dist/claim.js.map +1 -1
  22. package/dist/claim.test.d.ts +2 -2
  23. package/dist/claim.test.js +235 -64
  24. package/dist/claim.test.js.map +1 -1
  25. package/dist/cli.js +724 -136
  26. package/dist/cli.js.map +1 -1
  27. package/dist/file-store.d.ts +110 -38
  28. package/dist/file-store.d.ts.map +1 -1
  29. package/dist/file-store.js +514 -238
  30. package/dist/file-store.js.map +1 -1
  31. package/dist/git-serve.d.ts +183 -0
  32. package/dist/git-serve.d.ts.map +1 -0
  33. package/dist/git-serve.js +503 -0
  34. package/dist/git-serve.js.map +1 -0
  35. package/dist/git-serve.test.d.ts +16 -0
  36. package/dist/git-serve.test.d.ts.map +1 -0
  37. package/dist/git-serve.test.js +183 -0
  38. package/dist/git-serve.test.js.map +1 -0
  39. package/dist/git.d.ts +65 -0
  40. package/dist/git.d.ts.map +1 -0
  41. package/dist/git.js +114 -0
  42. package/dist/git.js.map +1 -0
  43. package/dist/id.d.ts +39 -0
  44. package/dist/id.d.ts.map +1 -0
  45. package/dist/id.js +67 -0
  46. package/dist/id.js.map +1 -0
  47. package/dist/inbox.d.ts +41 -0
  48. package/dist/inbox.d.ts.map +1 -0
  49. package/dist/inbox.js +56 -0
  50. package/dist/inbox.js.map +1 -0
  51. package/dist/index.d.ts +5 -3
  52. package/dist/index.d.ts.map +1 -1
  53. package/dist/index.js +5 -3
  54. package/dist/index.js.map +1 -1
  55. package/dist/overview.d.ts +52 -0
  56. package/dist/overview.d.ts.map +1 -0
  57. package/dist/overview.js +61 -0
  58. package/dist/overview.js.map +1 -0
  59. package/dist/overview.test.d.ts +8 -0
  60. package/dist/overview.test.d.ts.map +1 -0
  61. package/dist/overview.test.js +48 -0
  62. package/dist/overview.test.js.map +1 -0
  63. package/dist/promote.test.d.ts +15 -0
  64. package/dist/promote.test.d.ts.map +1 -0
  65. package/dist/promote.test.js +104 -0
  66. package/dist/promote.test.js.map +1 -0
  67. package/dist/publish.d.ts +2 -17
  68. package/dist/publish.d.ts.map +1 -1
  69. package/dist/publish.js +4 -49
  70. package/dist/publish.js.map +1 -1
  71. package/dist/search.d.ts +34 -0
  72. package/dist/search.d.ts.map +1 -0
  73. package/dist/search.js +79 -0
  74. package/dist/search.js.map +1 -0
  75. package/dist/search.test.d.ts +2 -0
  76. package/dist/search.test.d.ts.map +1 -0
  77. package/dist/search.test.js +53 -0
  78. package/dist/search.test.js.map +1 -0
  79. package/dist/server.d.ts.map +1 -1
  80. package/dist/server.js +228 -23
  81. package/dist/server.js.map +1 -1
  82. package/dist/store.d.ts +43 -63
  83. package/dist/store.d.ts.map +1 -1
  84. package/dist/store.js +0 -368
  85. package/dist/store.js.map +1 -1
  86. package/dist/store.test.d.ts +1 -2
  87. package/dist/store.test.d.ts.map +1 -1
  88. package/dist/store.test.js +148 -106
  89. package/dist/store.test.js.map +1 -1
  90. package/dist/ticket-doc.d.ts +74 -5
  91. package/dist/ticket-doc.d.ts.map +1 -1
  92. package/dist/ticket-doc.js +229 -15
  93. package/dist/ticket-doc.js.map +1 -1
  94. package/dist/types.d.ts +115 -28
  95. package/dist/types.d.ts.map +1 -1
  96. package/dist/types.js.map +1 -1
  97. package/package.json +1 -1
  98. package/skill/SKILL.md +153 -40
  99. package/src/asks.test.ts +355 -0
  100. package/src/check.test.ts +328 -0
  101. package/src/check.ts +497 -0
  102. package/src/claim-io.ts +401 -0
  103. package/src/claim.test.ts +301 -71
  104. package/src/claim.ts +238 -81
  105. package/src/cli.ts +740 -131
  106. package/src/file-store.ts +572 -254
  107. package/src/git-serve.test.ts +240 -0
  108. package/src/git-serve.ts +595 -0
  109. package/src/git.ts +141 -0
  110. package/src/id.ts +68 -0
  111. package/src/inbox.ts +77 -0
  112. package/src/index.ts +4 -2
  113. package/src/overview.test.ts +52 -0
  114. package/src/overview.ts +105 -0
  115. package/src/promote.test.ts +143 -0
  116. package/src/publish.ts +6 -53
  117. package/src/search.test.ts +64 -0
  118. package/src/search.ts +105 -0
  119. package/src/server.ts +232 -21
  120. package/src/store.test.ts +166 -116
  121. package/src/store.ts +46 -444
  122. package/src/ticket-doc.ts +284 -21
  123. package/src/types.ts +120 -28
  124. package/ui/dist/assets/index-BjsorZOU.js +229 -0
  125. package/ui/dist/assets/index-CoKCUYic.css +1 -0
  126. package/ui/dist/index.html +2 -2
  127. package/ui/dist/assets/index-COunM-QN.css +0 -1
  128. package/ui/dist/assets/index-D4homvrQ.js +0 -229
@@ -0,0 +1,229 @@
1
+ (function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const s of i)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&r(a)}).observe(document,{childList:!0,subtree:!0});function n(i){const s={};return i.integrity&&(s.integrity=i.integrity),i.referrerPolicy&&(s.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?s.credentials="include":i.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function r(i){if(i.ep)return;i.ep=!0;const s=n(i);fetch(i.href,s)}})();function mS(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var c0={exports:{}},Uu={};var dC;function qP(){if(dC)return Uu;dC=1;var t=Symbol.for("react.transitional.element"),e=Symbol.for("react.fragment");function n(r,i,s){var a=null;if(s!==void 0&&(a=""+s),i.key!==void 0&&(a=""+i.key),"key"in i){s={};for(var u in i)u!=="key"&&(s[u]=i[u])}else s=i;return i=s.ref,{$$typeof:t,type:r,key:a,ref:i!==void 0?i:null,props:s}}return Uu.Fragment=e,Uu.jsx=n,Uu.jsxs=n,Uu}var fC;function GP(){return fC||(fC=1,c0.exports=qP()),c0.exports}var C=GP(),d0={exports:{}},Te={};var hC;function WP(){if(hC)return Te;hC=1;var t=Symbol.for("react.transitional.element"),e=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),r=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.consumer"),a=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),c=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),h=Symbol.for("react.lazy"),m=Symbol.for("react.activity"),g=Symbol.iterator;function b(z){return z===null||typeof z!="object"?null:(z=g&&z[g]||z["@@iterator"],typeof z=="function"?z:null)}var x={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},k=Object.assign,E={};function D(z,H,re){this.props=z,this.context=H,this.refs=E,this.updater=re||x}D.prototype.isReactComponent={},D.prototype.setState=function(z,H){if(typeof z!="object"&&typeof z!="function"&&z!=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,z,H,"setState")},D.prototype.forceUpdate=function(z){this.updater.enqueueForceUpdate(this,z,"forceUpdate")};function T(){}T.prototype=D.prototype;function $(z,H,re){this.props=z,this.context=H,this.refs=E,this.updater=re||x}var A=$.prototype=new T;A.constructor=$,k(A,D.prototype),A.isPureReactComponent=!0;var B=Array.isArray;function P(){}var M={H:null,A:null,T:null,S:null},N=Object.prototype.hasOwnProperty;function j(z,H,re){var le=re.ref;return{$$typeof:t,type:z,key:H,ref:le!==void 0?le:null,props:re}}function G(z,H){return j(z.type,H,z.props)}function W(z){return typeof z=="object"&&z!==null&&z.$$typeof===t}function U(z){var H={"=":"=0",":":"=2"};return"$"+z.replace(/[=:]/g,function(re){return H[re]})}var ne=/\/+/g;function F(z,H){return typeof z=="object"&&z!==null&&z.key!=null?U(""+z.key):H.toString(36)}function te(z){switch(z.status){case"fulfilled":return z.value;case"rejected":throw z.reason;default:switch(typeof z.status=="string"?z.then(P,P):(z.status="pending",z.then(function(H){z.status==="pending"&&(z.status="fulfilled",z.value=H)},function(H){z.status==="pending"&&(z.status="rejected",z.reason=H)})),z.status){case"fulfilled":return z.value;case"rejected":throw z.reason}}throw z}function O(z,H,re,le,ue){var he=typeof z;(he==="undefined"||he==="boolean")&&(z=null);var Ce=!1;if(z===null)Ce=!0;else switch(he){case"bigint":case"string":case"number":Ce=!0;break;case"object":switch(z.$$typeof){case t:case e:Ce=!0;break;case h:return Ce=z._init,O(Ce(z._payload),H,re,le,ue)}}if(Ce)return ue=ue(z),Ce=le===""?"."+F(z,0):le,B(ue)?(re="",Ce!=null&&(re=Ce.replace(ne,"$&/")+"/"),O(ue,H,re,"",function(wn){return wn})):ue!=null&&(W(ue)&&(ue=G(ue,re+(ue.key==null||z&&z.key===ue.key?"":(""+ue.key).replace(ne,"$&/")+"/")+Ce)),H.push(ue)),1;Ce=0;var Ue=le===""?".":le+":";if(B(z))for(var Se=0;Se<z.length;Se++)le=z[Se],he=Ue+F(le,Se),Ce+=O(le,H,re,he,ue);else if(Se=b(z),typeof Se=="function")for(z=Se.call(z),Se=0;!(le=z.next()).done;)le=le.value,he=Ue+F(le,Se++),Ce+=O(le,H,re,he,ue);else if(he==="object"){if(typeof z.then=="function")return O(te(z),H,re,le,ue);throw H=String(z),Error("Objects are not valid as a React child (found: "+(H==="[object Object]"?"object with keys {"+Object.keys(z).join(", ")+"}":H)+"). If you meant to render a collection of children, use an array instead.")}return Ce}function K(z,H,re){if(z==null)return z;var le=[],ue=0;return O(z,le,"","",function(he){return H.call(re,he,ue++)}),le}function Q(z){if(z._status===-1){var H=z._result;H=H(),H.then(function(re){(z._status===0||z._status===-1)&&(z._status=1,z._result=re)},function(re){(z._status===0||z._status===-1)&&(z._status=2,z._result=re)}),z._status===-1&&(z._status=0,z._result=H)}if(z._status===1)return z._result.default;throw z._result}var Z=typeof reportError=="function"?reportError:function(z){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var H=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof z=="object"&&z!==null&&typeof z.message=="string"?String(z.message):String(z),error:z});if(!window.dispatchEvent(H))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",z);return}console.error(z)},L={map:K,forEach:function(z,H,re){K(z,function(){H.apply(this,arguments)},re)},count:function(z){var H=0;return K(z,function(){H++}),H},toArray:function(z){return K(z,function(H){return H})||[]},only:function(z){if(!W(z))throw Error("React.Children.only expected to receive a single React element child.");return z}};return Te.Activity=m,Te.Children=L,Te.Component=D,Te.Fragment=n,Te.Profiler=i,Te.PureComponent=$,Te.StrictMode=r,Te.Suspense=c,Te.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=M,Te.__COMPILER_RUNTIME={__proto__:null,c:function(z){return M.H.useMemoCache(z)}},Te.cache=function(z){return function(){return z.apply(null,arguments)}},Te.cacheSignal=function(){return null},Te.cloneElement=function(z,H,re){if(z==null)throw Error("The argument must be a React element, but you passed "+z+".");var le=k({},z.props),ue=z.key;if(H!=null)for(he in H.key!==void 0&&(ue=""+H.key),H)!N.call(H,he)||he==="key"||he==="__self"||he==="__source"||he==="ref"&&H.ref===void 0||(le[he]=H[he]);var he=arguments.length-2;if(he===1)le.children=re;else if(1<he){for(var Ce=Array(he),Ue=0;Ue<he;Ue++)Ce[Ue]=arguments[Ue+2];le.children=Ce}return j(z.type,ue,le)},Te.createContext=function(z){return z={$$typeof:a,_currentValue:z,_currentValue2:z,_threadCount:0,Provider:null,Consumer:null},z.Provider=z,z.Consumer={$$typeof:s,_context:z},z},Te.createElement=function(z,H,re){var le,ue={},he=null;if(H!=null)for(le in H.key!==void 0&&(he=""+H.key),H)N.call(H,le)&&le!=="key"&&le!=="__self"&&le!=="__source"&&(ue[le]=H[le]);var Ce=arguments.length-2;if(Ce===1)ue.children=re;else if(1<Ce){for(var Ue=Array(Ce),Se=0;Se<Ce;Se++)Ue[Se]=arguments[Se+2];ue.children=Ue}if(z&&z.defaultProps)for(le in Ce=z.defaultProps,Ce)ue[le]===void 0&&(ue[le]=Ce[le]);return j(z,he,ue)},Te.createRef=function(){return{current:null}},Te.forwardRef=function(z){return{$$typeof:u,render:z}},Te.isValidElement=W,Te.lazy=function(z){return{$$typeof:h,_payload:{_status:-1,_result:z},_init:Q}},Te.memo=function(z,H){return{$$typeof:f,type:z,compare:H===void 0?null:H}},Te.startTransition=function(z){var H=M.T,re={};M.T=re;try{var le=z(),ue=M.S;ue!==null&&ue(re,le),typeof le=="object"&&le!==null&&typeof le.then=="function"&&le.then(P,Z)}catch(he){Z(he)}finally{H!==null&&re.types!==null&&(H.types=re.types),M.T=H}},Te.unstable_useCacheRefresh=function(){return M.H.useCacheRefresh()},Te.use=function(z){return M.H.use(z)},Te.useActionState=function(z,H,re){return M.H.useActionState(z,H,re)},Te.useCallback=function(z,H){return M.H.useCallback(z,H)},Te.useContext=function(z){return M.H.useContext(z)},Te.useDebugValue=function(){},Te.useDeferredValue=function(z,H){return M.H.useDeferredValue(z,H)},Te.useEffect=function(z,H){return M.H.useEffect(z,H)},Te.useEffectEvent=function(z){return M.H.useEffectEvent(z)},Te.useId=function(){return M.H.useId()},Te.useImperativeHandle=function(z,H,re){return M.H.useImperativeHandle(z,H,re)},Te.useInsertionEffect=function(z,H){return M.H.useInsertionEffect(z,H)},Te.useLayoutEffect=function(z,H){return M.H.useLayoutEffect(z,H)},Te.useMemo=function(z,H){return M.H.useMemo(z,H)},Te.useOptimistic=function(z,H){return M.H.useOptimistic(z,H)},Te.useReducer=function(z,H,re){return M.H.useReducer(z,H,re)},Te.useRef=function(z){return M.H.useRef(z)},Te.useState=function(z){return M.H.useState(z)},Te.useSyncExternalStore=function(z,H,re){return M.H.useSyncExternalStore(z,H,re)},Te.useTransition=function(){return M.H.useTransition()},Te.version="19.2.4",Te}var pC;function cd(){return pC||(pC=1,d0.exports=WP()),d0.exports}var S=cd();const V=mS(S);var f0={exports:{}},qu={},h0={exports:{}},p0={};var mC;function QP(){return mC||(mC=1,(function(t){function e(O,K){var Q=O.length;O.push(K);e:for(;0<Q;){var Z=Q-1>>>1,L=O[Z];if(0<i(L,K))O[Z]=K,O[Q]=L,Q=Z;else break e}}function n(O){return O.length===0?null:O[0]}function r(O){if(O.length===0)return null;var K=O[0],Q=O.pop();if(Q!==K){O[0]=Q;e:for(var Z=0,L=O.length,z=L>>>1;Z<z;){var H=2*(Z+1)-1,re=O[H],le=H+1,ue=O[le];if(0>i(re,Q))le<L&&0>i(ue,re)?(O[Z]=ue,O[le]=Q,Z=le):(O[Z]=re,O[H]=Q,Z=H);else if(le<L&&0>i(ue,Q))O[Z]=ue,O[le]=Q,Z=le;else break e}}return K}function i(O,K){var Q=O.sortIndex-K.sortIndex;return Q!==0?Q:O.id-K.id}if(t.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var s=performance;t.unstable_now=function(){return s.now()}}else{var a=Date,u=a.now();t.unstable_now=function(){return a.now()-u}}var c=[],f=[],h=1,m=null,g=3,b=!1,x=!1,k=!1,E=!1,D=typeof setTimeout=="function"?setTimeout:null,T=typeof clearTimeout=="function"?clearTimeout:null,$=typeof setImmediate<"u"?setImmediate:null;function A(O){for(var K=n(f);K!==null;){if(K.callback===null)r(f);else if(K.startTime<=O)r(f),K.sortIndex=K.expirationTime,e(c,K);else break;K=n(f)}}function B(O){if(k=!1,A(O),!x)if(n(c)!==null)x=!0,P||(P=!0,U());else{var K=n(f);K!==null&&te(B,K.startTime-O)}}var P=!1,M=-1,N=5,j=-1;function G(){return E?!0:!(t.unstable_now()-j<N)}function W(){if(E=!1,P){var O=t.unstable_now();j=O;var K=!0;try{e:{x=!1,k&&(k=!1,T(M),M=-1),b=!0;var Q=g;try{t:{for(A(O),m=n(c);m!==null&&!(m.expirationTime>O&&G());){var Z=m.callback;if(typeof Z=="function"){m.callback=null,g=m.priorityLevel;var L=Z(m.expirationTime<=O);if(O=t.unstable_now(),typeof L=="function"){m.callback=L,A(O),K=!0;break t}m===n(c)&&r(c),A(O)}else r(c);m=n(c)}if(m!==null)K=!0;else{var z=n(f);z!==null&&te(B,z.startTime-O),K=!1}}break e}finally{m=null,g=Q,b=!1}K=void 0}}finally{K?U():P=!1}}}var U;if(typeof $=="function")U=function(){$(W)};else if(typeof MessageChannel<"u"){var ne=new MessageChannel,F=ne.port2;ne.port1.onmessage=W,U=function(){F.postMessage(null)}}else U=function(){D(W,0)};function te(O,K){M=D(function(){O(t.unstable_now())},K)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(O){O.callback=null},t.unstable_forceFrameRate=function(O){0>O||125<O?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):N=0<O?Math.floor(1e3/O):5},t.unstable_getCurrentPriorityLevel=function(){return g},t.unstable_next=function(O){switch(g){case 1:case 2:case 3:var K=3;break;default:K=g}var Q=g;g=K;try{return O()}finally{g=Q}},t.unstable_requestPaint=function(){E=!0},t.unstable_runWithPriority=function(O,K){switch(O){case 1:case 2:case 3:case 4:case 5:break;default:O=3}var Q=g;g=O;try{return K()}finally{g=Q}},t.unstable_scheduleCallback=function(O,K,Q){var Z=t.unstable_now();switch(typeof Q=="object"&&Q!==null?(Q=Q.delay,Q=typeof Q=="number"&&0<Q?Z+Q:Z):Q=Z,O){case 1:var L=-1;break;case 2:L=250;break;case 5:L=1073741823;break;case 4:L=1e4;break;default:L=5e3}return L=Q+L,O={id:h++,callback:K,priorityLevel:O,startTime:Q,expirationTime:L,sortIndex:-1},Q>Z?(O.sortIndex=Q,e(f,O),n(c)===null&&O===n(f)&&(k?(T(M),M=-1):k=!0,te(B,Q-Z))):(O.sortIndex=L,e(c,O),x||b||(x=!0,P||(P=!0,U()))),O},t.unstable_shouldYield=G,t.unstable_wrapCallback=function(O){var K=g;return function(){var Q=g;g=K;try{return O.apply(this,arguments)}finally{g=Q}}}})(p0)),p0}var gC;function YP(){return gC||(gC=1,h0.exports=QP()),h0.exports}var m0={exports:{}},un={};var bC;function XP(){if(bC)return un;bC=1;var t=cd();function e(c){var f="https://react.dev/errors/"+c;if(1<arguments.length){f+="?args[]="+encodeURIComponent(arguments[1]);for(var h=2;h<arguments.length;h++)f+="&args[]="+encodeURIComponent(arguments[h])}return"Minified React error #"+c+"; visit "+f+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function n(){}var r={d:{f:n,r:function(){throw Error(e(522))},D:n,C:n,L:n,m:n,X:n,S:n,M:n},p:0,findDOMNode:null},i=Symbol.for("react.portal");function s(c,f,h){var m=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:i,key:m==null?null:""+m,children:c,containerInfo:f,implementation:h}}var a=t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function u(c,f){if(c==="font")return"";if(typeof f=="string")return f==="use-credentials"?f:""}return un.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=r,un.createPortal=function(c,f){var h=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!f||f.nodeType!==1&&f.nodeType!==9&&f.nodeType!==11)throw Error(e(299));return s(c,f,null,h)},un.flushSync=function(c){var f=a.T,h=r.p;try{if(a.T=null,r.p=2,c)return c()}finally{a.T=f,r.p=h,r.d.f()}},un.preconnect=function(c,f){typeof c=="string"&&(f?(f=f.crossOrigin,f=typeof f=="string"?f==="use-credentials"?f:"":void 0):f=null,r.d.C(c,f))},un.prefetchDNS=function(c){typeof c=="string"&&r.d.D(c)},un.preinit=function(c,f){if(typeof c=="string"&&f&&typeof f.as=="string"){var h=f.as,m=u(h,f.crossOrigin),g=typeof f.integrity=="string"?f.integrity:void 0,b=typeof f.fetchPriority=="string"?f.fetchPriority:void 0;h==="style"?r.d.S(c,typeof f.precedence=="string"?f.precedence:void 0,{crossOrigin:m,integrity:g,fetchPriority:b}):h==="script"&&r.d.X(c,{crossOrigin:m,integrity:g,fetchPriority:b,nonce:typeof f.nonce=="string"?f.nonce:void 0})}},un.preinitModule=function(c,f){if(typeof c=="string")if(typeof f=="object"&&f!==null){if(f.as==null||f.as==="script"){var h=u(f.as,f.crossOrigin);r.d.M(c,{crossOrigin:h,integrity:typeof f.integrity=="string"?f.integrity:void 0,nonce:typeof f.nonce=="string"?f.nonce:void 0})}}else f==null&&r.d.M(c)},un.preload=function(c,f){if(typeof c=="string"&&typeof f=="object"&&f!==null&&typeof f.as=="string"){var h=f.as,m=u(h,f.crossOrigin);r.d.L(c,h,{crossOrigin:m,integrity:typeof f.integrity=="string"?f.integrity:void 0,nonce:typeof f.nonce=="string"?f.nonce:void 0,type:typeof f.type=="string"?f.type:void 0,fetchPriority:typeof f.fetchPriority=="string"?f.fetchPriority:void 0,referrerPolicy:typeof f.referrerPolicy=="string"?f.referrerPolicy:void 0,imageSrcSet:typeof f.imageSrcSet=="string"?f.imageSrcSet:void 0,imageSizes:typeof f.imageSizes=="string"?f.imageSizes:void 0,media:typeof f.media=="string"?f.media:void 0})}},un.preloadModule=function(c,f){if(typeof c=="string")if(f){var h=u(f.as,f.crossOrigin);r.d.m(c,{as:typeof f.as=="string"&&f.as!=="script"?f.as:void 0,crossOrigin:h,integrity:typeof f.integrity=="string"?f.integrity:void 0})}else r.d.m(c)},un.requestFormReset=function(c){r.d.r(c)},un.unstable_batchedUpdates=function(c,f){return c(f)},un.useFormState=function(c,f,h){return a.H.useFormState(c,f,h)},un.useFormStatus=function(){return a.H.useHostTransitionStatus()},un.version="19.2.4",un}var yC;function gS(){if(yC)return m0.exports;yC=1;function t(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),m0.exports=XP(),m0.exports}var xC;function JP(){if(xC)return qu;xC=1;var t=YP(),e=cd(),n=gS();function r(o){var l="https://react.dev/errors/"+o;if(1<arguments.length){l+="?args[]="+encodeURIComponent(arguments[1]);for(var d=2;d<arguments.length;d++)l+="&args[]="+encodeURIComponent(arguments[d])}return"Minified React error #"+o+"; visit "+l+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function i(o){return!(!o||o.nodeType!==1&&o.nodeType!==9&&o.nodeType!==11)}function s(o){var l=o,d=o;if(o.alternate)for(;l.return;)l=l.return;else{o=l;do l=o,(l.flags&4098)!==0&&(d=l.return),o=l.return;while(o)}return l.tag===3?d:null}function a(o){if(o.tag===13){var l=o.memoizedState;if(l===null&&(o=o.alternate,o!==null&&(l=o.memoizedState)),l!==null)return l.dehydrated}return null}function u(o){if(o.tag===31){var l=o.memoizedState;if(l===null&&(o=o.alternate,o!==null&&(l=o.memoizedState)),l!==null)return l.dehydrated}return null}function c(o){if(s(o)!==o)throw Error(r(188))}function f(o){var l=o.alternate;if(!l){if(l=s(o),l===null)throw Error(r(188));return l!==o?null:o}for(var d=o,p=l;;){var y=d.return;if(y===null)break;var v=y.alternate;if(v===null){if(p=y.return,p!==null){d=p;continue}break}if(y.child===v.child){for(v=y.child;v;){if(v===d)return c(y),o;if(v===p)return c(y),l;v=v.sibling}throw Error(r(188))}if(d.return!==p.return)d=y,p=v;else{for(var w=!1,R=y.child;R;){if(R===d){w=!0,d=y,p=v;break}if(R===p){w=!0,p=y,d=v;break}R=R.sibling}if(!w){for(R=v.child;R;){if(R===d){w=!0,d=v,p=y;break}if(R===p){w=!0,p=v,d=y;break}R=R.sibling}if(!w)throw Error(r(189))}}if(d.alternate!==p)throw Error(r(190))}if(d.tag!==3)throw Error(r(188));return d.stateNode.current===d?o:l}function h(o){var l=o.tag;if(l===5||l===26||l===27||l===6)return o;for(o=o.child;o!==null;){if(l=h(o),l!==null)return l;o=o.sibling}return null}var m=Object.assign,g=Symbol.for("react.element"),b=Symbol.for("react.transitional.element"),x=Symbol.for("react.portal"),k=Symbol.for("react.fragment"),E=Symbol.for("react.strict_mode"),D=Symbol.for("react.profiler"),T=Symbol.for("react.consumer"),$=Symbol.for("react.context"),A=Symbol.for("react.forward_ref"),B=Symbol.for("react.suspense"),P=Symbol.for("react.suspense_list"),M=Symbol.for("react.memo"),N=Symbol.for("react.lazy"),j=Symbol.for("react.activity"),G=Symbol.for("react.memo_cache_sentinel"),W=Symbol.iterator;function U(o){return o===null||typeof o!="object"?null:(o=W&&o[W]||o["@@iterator"],typeof o=="function"?o:null)}var ne=Symbol.for("react.client.reference");function F(o){if(o==null)return null;if(typeof o=="function")return o.$$typeof===ne?null:o.displayName||o.name||null;if(typeof o=="string")return o;switch(o){case k:return"Fragment";case D:return"Profiler";case E:return"StrictMode";case B:return"Suspense";case P:return"SuspenseList";case j:return"Activity"}if(typeof o=="object")switch(o.$$typeof){case x:return"Portal";case $:return o.displayName||"Context";case T:return(o._context.displayName||"Context")+".Consumer";case A:var l=o.render;return o=o.displayName,o||(o=l.displayName||l.name||"",o=o!==""?"ForwardRef("+o+")":"ForwardRef"),o;case M:return l=o.displayName||null,l!==null?l:F(o.type)||"Memo";case N:l=o._payload,o=o._init;try{return F(o(l))}catch{}}return null}var te=Array.isArray,O=e.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,K=n.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,Q={pending:!1,data:null,method:null,action:null},Z=[],L=-1;function z(o){return{current:o}}function H(o){0>L||(o.current=Z[L],Z[L]=null,L--)}function re(o,l){L++,Z[L]=o.current,o.current=l}var le=z(null),ue=z(null),he=z(null),Ce=z(null);function Ue(o,l){switch(re(he,l),re(ue,o),re(le,null),l.nodeType){case 9:case 11:o=(o=l.documentElement)&&(o=o.namespaceURI)?P5(o):0;break;default:if(o=l.tagName,l=l.namespaceURI)l=P5(l),o=O5(l,o);else switch(o){case"svg":o=1;break;case"math":o=2;break;default:o=0}}H(le),re(le,o)}function Se(){H(le),H(ue),H(he)}function wn(o){o.memoizedState!==null&&re(Ce,o);var l=le.current,d=O5(l,o.type);l!==d&&(re(ue,o),re(le,d))}function an(o){ue.current===o&&(H(le),H(ue)),Ce.current===o&&(H(Ce),Ku._currentValue=Q)}var bn,xr;function _t(o){if(bn===void 0)try{throw Error()}catch(d){var l=d.stack.trim().match(/\n( *(at )?)/);bn=l&&l[1]||"",xr=-1<d.stack.indexOf(`
2
+ at`)?" (<anonymous>)":-1<d.stack.indexOf("@")?"@unknown:0:0":""}return`
3
+ `+bn+o+xr}var so=!1;function je(o,l){if(!o||so)return"";so=!0;var d=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var p={DetermineComponentFrameRoot:function(){try{if(l){var oe=function(){throw Error()};if(Object.defineProperty(oe.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(oe,[])}catch(ee){var J=ee}Reflect.construct(o,[],oe)}else{try{oe.call()}catch(ee){J=ee}o.call(oe.prototype)}}else{try{throw Error()}catch(ee){J=ee}(oe=o())&&typeof oe.catch=="function"&&oe.catch(function(){})}}catch(ee){if(ee&&J&&typeof ee.stack=="string")return[ee.stack,J.stack]}return[null,null]}};p.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var y=Object.getOwnPropertyDescriptor(p.DetermineComponentFrameRoot,"name");y&&y.configurable&&Object.defineProperty(p.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var v=p.DetermineComponentFrameRoot(),w=v[0],R=v[1];if(w&&R){var I=w.split(`
4
+ `),X=R.split(`
5
+ `);for(y=p=0;p<I.length&&!I[p].includes("DetermineComponentFrameRoot");)p++;for(;y<X.length&&!X[y].includes("DetermineComponentFrameRoot");)y++;if(p===I.length||y===X.length)for(p=I.length-1,y=X.length-1;1<=p&&0<=y&&I[p]!==X[y];)y--;for(;1<=p&&0<=y;p--,y--)if(I[p]!==X[y]){if(p!==1||y!==1)do if(p--,y--,0>y||I[p]!==X[y]){var ie=`
6
+ `+I[p].replace(" at new "," at ");return o.displayName&&ie.includes("<anonymous>")&&(ie=ie.replace("<anonymous>",o.displayName)),ie}while(1<=p&&0<=y);break}}}finally{so=!1,Error.prepareStackTrace=d}return(d=o?o.displayName||o.name:"")?_t(d):""}function Ui(o,l){switch(o.tag){case 26:case 27:case 5:return _t(o.type);case 16:return _t("Lazy");case 13:return o.child!==l&&l!==null?_t("Suspense Fallback"):_t("Suspense");case 19:return _t("SuspenseList");case 0:case 15:return je(o.type,!1);case 11:return je(o.type.render,!1);case 1:return je(o.type,!0);case 31:return _t("Activity");default:return""}}function Zr(o){try{var l="",d=null;do l+=Ui(o,d),d=o,o=o.return;while(o);return l}catch(p){return`
7
+ Error generating stack: `+p.message+`
8
+ `+p.stack}}var oo=Object.prototype.hasOwnProperty,vr=t.unstable_scheduleCallback,Jl=t.unstable_cancelCallback,Bd=t.unstable_shouldYield,Xm=t.unstable_requestPaint,ln=t.unstable_now,at=t.unstable_getCurrentPriorityLevel,Wt=t.unstable_ImmediatePriority,Or=t.unstable_UserBlockingPriority,wa=t.unstable_NormalPriority,$R=t.unstable_LowPriority,p1=t.unstable_IdlePriority,TR=t.log,AR=t.unstable_setDisableYieldValue,Zl=null,Kn=null;function qi(o){if(typeof TR=="function"&&AR(o),Kn&&typeof Kn.setStrictMode=="function")try{Kn.setStrictMode(Zl,o)}catch{}}var _n=Math.clz32?Math.clz32:RR,BR=Math.log,MR=Math.LN2;function RR(o){return o>>>=0,o===0?32:31-(BR(o)/MR|0)|0}var Md=256,Rd=262144,Nd=4194304;function ao(o){var l=o&42;if(l!==0)return l;switch(o&-o){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return o&261888;case 262144:case 524288:case 1048576:case 2097152:return o&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return o&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return o}}function Pd(o,l,d){var p=o.pendingLanes;if(p===0)return 0;var y=0,v=o.suspendedLanes,w=o.pingedLanes;o=o.warmLanes;var R=p&134217727;return R!==0?(p=R&~v,p!==0?y=ao(p):(w&=R,w!==0?y=ao(w):d||(d=R&~o,d!==0&&(y=ao(d))))):(R=p&~v,R!==0?y=ao(R):w!==0?y=ao(w):d||(d=p&~o,d!==0&&(y=ao(d)))),y===0?0:l!==0&&l!==y&&(l&v)===0&&(v=y&-y,d=l&-l,v>=d||v===32&&(d&4194048)!==0)?l:y}function eu(o,l){return(o.pendingLanes&~(o.suspendedLanes&~o.pingedLanes)&l)===0}function NR(o,l){switch(o){case 1:case 2:case 4:case 8:case 64:return l+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 l+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function m1(){var o=Nd;return Nd<<=1,(Nd&62914560)===0&&(Nd=4194304),o}function Jm(o){for(var l=[],d=0;31>d;d++)l.push(o);return l}function tu(o,l){o.pendingLanes|=l,l!==268435456&&(o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0)}function PR(o,l,d,p,y,v){var w=o.pendingLanes;o.pendingLanes=d,o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0,o.expiredLanes&=d,o.entangledLanes&=d,o.errorRecoveryDisabledLanes&=d,o.shellSuspendCounter=0;var R=o.entanglements,I=o.expirationTimes,X=o.hiddenUpdates;for(d=w&~d;0<d;){var ie=31-_n(d),oe=1<<ie;R[ie]=0,I[ie]=-1;var J=X[ie];if(J!==null)for(X[ie]=null,ie=0;ie<J.length;ie++){var ee=J[ie];ee!==null&&(ee.lane&=-536870913)}d&=~oe}p!==0&&g1(o,p,0),v!==0&&y===0&&o.tag!==0&&(o.suspendedLanes|=v&~(w&~l))}function g1(o,l,d){o.pendingLanes|=l,o.suspendedLanes&=~l;var p=31-_n(l);o.entangledLanes|=l,o.entanglements[p]=o.entanglements[p]|1073741824|d&261930}function b1(o,l){var d=o.entangledLanes|=l;for(o=o.entanglements;d;){var p=31-_n(d),y=1<<p;y&l|o[p]&l&&(o[p]|=l),d&=~y}}function y1(o,l){var d=l&-l;return d=(d&42)!==0?1:Zm(d),(d&(o.suspendedLanes|l))!==0?0:d}function Zm(o){switch(o){case 2:o=1;break;case 8:o=4;break;case 32:o=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:o=128;break;case 268435456:o=134217728;break;default:o=0}return o}function eg(o){return o&=-o,2<o?8<o?(o&134217727)!==0?32:268435456:8:2}function x1(){var o=K.p;return o!==0?o:(o=window.event,o===void 0?32:iC(o.type))}function v1(o,l){var d=K.p;try{return K.p=o,l()}finally{K.p=d}}var Gi=Math.random().toString(36).slice(2),Qt="__reactFiber$"+Gi,$n="__reactProps$"+Gi,$a="__reactContainer$"+Gi,tg="__reactEvents$"+Gi,OR="__reactListeners$"+Gi,LR="__reactHandles$"+Gi,k1="__reactResources$"+Gi,nu="__reactMarker$"+Gi;function ng(o){delete o[Qt],delete o[$n],delete o[tg],delete o[OR],delete o[LR]}function Ta(o){var l=o[Qt];if(l)return l;for(var d=o.parentNode;d;){if(l=d[$a]||d[Qt]){if(d=l.alternate,l.child!==null||d!==null&&d.child!==null)for(o=_5(o);o!==null;){if(d=o[Qt])return d;o=_5(o)}return l}o=d,d=o.parentNode}return null}function Aa(o){if(o=o[Qt]||o[$a]){var l=o.tag;if(l===5||l===6||l===13||l===31||l===26||l===27||l===3)return o}return null}function ru(o){var l=o.tag;if(l===5||l===26||l===27||l===6)return o.stateNode;throw Error(r(33))}function Ba(o){var l=o[k1];return l||(l=o[k1]={hoistableStyles:new Map,hoistableScripts:new Map}),l}function Vt(o){o[nu]=!0}var C1=new Set,E1={};function lo(o,l){Ma(o,l),Ma(o+"Capture",l)}function Ma(o,l){for(E1[o]=l,o=0;o<l.length;o++)C1.add(l[o])}var zR=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]*$"),D1={},S1={};function IR(o){return oo.call(S1,o)?!0:oo.call(D1,o)?!1:zR.test(o)?S1[o]=!0:(D1[o]=!0,!1)}function Od(o,l,d){if(IR(l))if(d===null)o.removeAttribute(l);else{switch(typeof d){case"undefined":case"function":case"symbol":o.removeAttribute(l);return;case"boolean":var p=l.toLowerCase().slice(0,5);if(p!=="data-"&&p!=="aria-"){o.removeAttribute(l);return}}o.setAttribute(l,""+d)}}function Ld(o,l,d){if(d===null)o.removeAttribute(l);else{switch(typeof d){case"undefined":case"function":case"symbol":case"boolean":o.removeAttribute(l);return}o.setAttribute(l,""+d)}}function ei(o,l,d,p){if(p===null)o.removeAttribute(d);else{switch(typeof p){case"undefined":case"function":case"symbol":case"boolean":o.removeAttribute(d);return}o.setAttributeNS(l,d,""+p)}}function er(o){switch(typeof o){case"bigint":case"boolean":case"number":case"string":case"undefined":return o;case"object":return o;default:return""}}function w1(o){var l=o.type;return(o=o.nodeName)&&o.toLowerCase()==="input"&&(l==="checkbox"||l==="radio")}function jR(o,l,d){var p=Object.getOwnPropertyDescriptor(o.constructor.prototype,l);if(!o.hasOwnProperty(l)&&typeof p<"u"&&typeof p.get=="function"&&typeof p.set=="function"){var y=p.get,v=p.set;return Object.defineProperty(o,l,{configurable:!0,get:function(){return y.call(this)},set:function(w){d=""+w,v.call(this,w)}}),Object.defineProperty(o,l,{enumerable:p.enumerable}),{getValue:function(){return d},setValue:function(w){d=""+w},stopTracking:function(){o._valueTracker=null,delete o[l]}}}}function rg(o){if(!o._valueTracker){var l=w1(o)?"checked":"value";o._valueTracker=jR(o,l,""+o[l])}}function $1(o){if(!o)return!1;var l=o._valueTracker;if(!l)return!0;var d=l.getValue(),p="";return o&&(p=w1(o)?o.checked?"true":"false":o.value),o=p,o!==d?(l.setValue(o),!0):!1}function zd(o){if(o=o||(typeof document<"u"?document:void 0),typeof o>"u")return null;try{return o.activeElement||o.body}catch{return o.body}}var FR=/[\n"\\]/g;function tr(o){return o.replace(FR,function(l){return"\\"+l.charCodeAt(0).toString(16)+" "})}function ig(o,l,d,p,y,v,w,R){o.name="",w!=null&&typeof w!="function"&&typeof w!="symbol"&&typeof w!="boolean"?o.type=w:o.removeAttribute("type"),l!=null?w==="number"?(l===0&&o.value===""||o.value!=l)&&(o.value=""+er(l)):o.value!==""+er(l)&&(o.value=""+er(l)):w!=="submit"&&w!=="reset"||o.removeAttribute("value"),l!=null?sg(o,w,er(l)):d!=null?sg(o,w,er(d)):p!=null&&o.removeAttribute("value"),y==null&&v!=null&&(o.defaultChecked=!!v),y!=null&&(o.checked=y&&typeof y!="function"&&typeof y!="symbol"),R!=null&&typeof R!="function"&&typeof R!="symbol"&&typeof R!="boolean"?o.name=""+er(R):o.removeAttribute("name")}function T1(o,l,d,p,y,v,w,R){if(v!=null&&typeof v!="function"&&typeof v!="symbol"&&typeof v!="boolean"&&(o.type=v),l!=null||d!=null){if(!(v!=="submit"&&v!=="reset"||l!=null)){rg(o);return}d=d!=null?""+er(d):"",l=l!=null?""+er(l):d,R||l===o.value||(o.value=l),o.defaultValue=l}p=p??y,p=typeof p!="function"&&typeof p!="symbol"&&!!p,o.checked=R?o.checked:!!p,o.defaultChecked=!!p,w!=null&&typeof w!="function"&&typeof w!="symbol"&&typeof w!="boolean"&&(o.name=w),rg(o)}function sg(o,l,d){l==="number"&&zd(o.ownerDocument)===o||o.defaultValue===""+d||(o.defaultValue=""+d)}function Ra(o,l,d,p){if(o=o.options,l){l={};for(var y=0;y<d.length;y++)l["$"+d[y]]=!0;for(d=0;d<o.length;d++)y=l.hasOwnProperty("$"+o[d].value),o[d].selected!==y&&(o[d].selected=y),y&&p&&(o[d].defaultSelected=!0)}else{for(d=""+er(d),l=null,y=0;y<o.length;y++){if(o[y].value===d){o[y].selected=!0,p&&(o[y].defaultSelected=!0);return}l!==null||o[y].disabled||(l=o[y])}l!==null&&(l.selected=!0)}}function A1(o,l,d){if(l!=null&&(l=""+er(l),l!==o.value&&(o.value=l),d==null)){o.defaultValue!==l&&(o.defaultValue=l);return}o.defaultValue=d!=null?""+er(d):""}function B1(o,l,d,p){if(l==null){if(p!=null){if(d!=null)throw Error(r(92));if(te(p)){if(1<p.length)throw Error(r(93));p=p[0]}d=p}d==null&&(d=""),l=d}d=er(l),o.defaultValue=d,p=o.textContent,p===d&&p!==""&&p!==null&&(o.value=p),rg(o)}function Na(o,l){if(l){var d=o.firstChild;if(d&&d===o.lastChild&&d.nodeType===3){d.nodeValue=l;return}}o.textContent=l}var KR=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function M1(o,l,d){var p=l.indexOf("--")===0;d==null||typeof d=="boolean"||d===""?p?o.setProperty(l,""):l==="float"?o.cssFloat="":o[l]="":p?o.setProperty(l,d):typeof d!="number"||d===0||KR.has(l)?l==="float"?o.cssFloat=d:o[l]=(""+d).trim():o[l]=d+"px"}function R1(o,l,d){if(l!=null&&typeof l!="object")throw Error(r(62));if(o=o.style,d!=null){for(var p in d)!d.hasOwnProperty(p)||l!=null&&l.hasOwnProperty(p)||(p.indexOf("--")===0?o.setProperty(p,""):p==="float"?o.cssFloat="":o[p]="");for(var y in l)p=l[y],l.hasOwnProperty(y)&&d[y]!==p&&M1(o,y,p)}else for(var v in l)l.hasOwnProperty(v)&&M1(o,v,l[v])}function og(o){if(o.indexOf("-")===-1)return!1;switch(o){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var _R=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"]]),VR=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function Id(o){return VR.test(""+o)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":o}function ti(){}var ag=null;function lg(o){return o=o.target||o.srcElement||window,o.correspondingUseElement&&(o=o.correspondingUseElement),o.nodeType===3?o.parentNode:o}var Pa=null,Oa=null;function N1(o){var l=Aa(o);if(l&&(o=l.stateNode)){var d=o[$n]||null;e:switch(o=l.stateNode,l.type){case"input":if(ig(o,d.value,d.defaultValue,d.defaultValue,d.checked,d.defaultChecked,d.type,d.name),l=d.name,d.type==="radio"&&l!=null){for(d=o;d.parentNode;)d=d.parentNode;for(d=d.querySelectorAll('input[name="'+tr(""+l)+'"][type="radio"]'),l=0;l<d.length;l++){var p=d[l];if(p!==o&&p.form===o.form){var y=p[$n]||null;if(!y)throw Error(r(90));ig(p,y.value,y.defaultValue,y.defaultValue,y.checked,y.defaultChecked,y.type,y.name)}}for(l=0;l<d.length;l++)p=d[l],p.form===o.form&&$1(p)}break e;case"textarea":A1(o,d.value,d.defaultValue);break e;case"select":l=d.value,l!=null&&Ra(o,!!d.multiple,l,!1)}}}var ug=!1;function P1(o,l,d){if(ug)return o(l,d);ug=!0;try{var p=o(l);return p}finally{if(ug=!1,(Pa!==null||Oa!==null)&&(wf(),Pa&&(l=Pa,o=Oa,Oa=Pa=null,N1(l),o)))for(l=0;l<o.length;l++)N1(o[l])}}function iu(o,l){var d=o.stateNode;if(d===null)return null;var p=d[$n]||null;if(p===null)return null;d=p[l];e:switch(l){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(p=!p.disabled)||(o=o.type,p=!(o==="button"||o==="input"||o==="select"||o==="textarea")),o=!p;break e;default:o=!1}if(o)return null;if(d&&typeof d!="function")throw Error(r(231,l,typeof d));return d}var ni=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),cg=!1;if(ni)try{var su={};Object.defineProperty(su,"passive",{get:function(){cg=!0}}),window.addEventListener("test",su,su),window.removeEventListener("test",su,su)}catch{cg=!1}var Wi=null,dg=null,jd=null;function O1(){if(jd)return jd;var o,l=dg,d=l.length,p,y="value"in Wi?Wi.value:Wi.textContent,v=y.length;for(o=0;o<d&&l[o]===y[o];o++);var w=d-o;for(p=1;p<=w&&l[d-p]===y[v-p];p++);return jd=y.slice(o,1<p?1-p:void 0)}function Fd(o){var l=o.keyCode;return"charCode"in o?(o=o.charCode,o===0&&l===13&&(o=13)):o=l,o===10&&(o=13),32<=o||o===13?o:0}function Kd(){return!0}function L1(){return!1}function Tn(o){function l(d,p,y,v,w){this._reactName=d,this._targetInst=y,this.type=p,this.nativeEvent=v,this.target=w,this.currentTarget=null;for(var R in o)o.hasOwnProperty(R)&&(d=o[R],this[R]=d?d(v):v[R]);return this.isDefaultPrevented=(v.defaultPrevented!=null?v.defaultPrevented:v.returnValue===!1)?Kd:L1,this.isPropagationStopped=L1,this}return m(l.prototype,{preventDefault:function(){this.defaultPrevented=!0;var d=this.nativeEvent;d&&(d.preventDefault?d.preventDefault():typeof d.returnValue!="unknown"&&(d.returnValue=!1),this.isDefaultPrevented=Kd)},stopPropagation:function(){var d=this.nativeEvent;d&&(d.stopPropagation?d.stopPropagation():typeof d.cancelBubble!="unknown"&&(d.cancelBubble=!0),this.isPropagationStopped=Kd)},persist:function(){},isPersistent:Kd}),l}var uo={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(o){return o.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},_d=Tn(uo),ou=m({},uo,{view:0,detail:0}),HR=Tn(ou),fg,hg,au,Vd=m({},ou,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:mg,button:0,buttons:0,relatedTarget:function(o){return o.relatedTarget===void 0?o.fromElement===o.srcElement?o.toElement:o.fromElement:o.relatedTarget},movementX:function(o){return"movementX"in o?o.movementX:(o!==au&&(au&&o.type==="mousemove"?(fg=o.screenX-au.screenX,hg=o.screenY-au.screenY):hg=fg=0,au=o),fg)},movementY:function(o){return"movementY"in o?o.movementY:hg}}),z1=Tn(Vd),UR=m({},Vd,{dataTransfer:0}),qR=Tn(UR),GR=m({},ou,{relatedTarget:0}),pg=Tn(GR),WR=m({},uo,{animationName:0,elapsedTime:0,pseudoElement:0}),QR=Tn(WR),YR=m({},uo,{clipboardData:function(o){return"clipboardData"in o?o.clipboardData:window.clipboardData}}),XR=Tn(YR),JR=m({},uo,{data:0}),I1=Tn(JR),ZR={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},eN={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"},tN={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function nN(o){var l=this.nativeEvent;return l.getModifierState?l.getModifierState(o):(o=tN[o])?!!l[o]:!1}function mg(){return nN}var rN=m({},ou,{key:function(o){if(o.key){var l=ZR[o.key]||o.key;if(l!=="Unidentified")return l}return o.type==="keypress"?(o=Fd(o),o===13?"Enter":String.fromCharCode(o)):o.type==="keydown"||o.type==="keyup"?eN[o.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:mg,charCode:function(o){return o.type==="keypress"?Fd(o):0},keyCode:function(o){return o.type==="keydown"||o.type==="keyup"?o.keyCode:0},which:function(o){return o.type==="keypress"?Fd(o):o.type==="keydown"||o.type==="keyup"?o.keyCode:0}}),iN=Tn(rN),sN=m({},Vd,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),j1=Tn(sN),oN=m({},ou,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:mg}),aN=Tn(oN),lN=m({},uo,{propertyName:0,elapsedTime:0,pseudoElement:0}),uN=Tn(lN),cN=m({},Vd,{deltaX:function(o){return"deltaX"in o?o.deltaX:"wheelDeltaX"in o?-o.wheelDeltaX:0},deltaY:function(o){return"deltaY"in o?o.deltaY:"wheelDeltaY"in o?-o.wheelDeltaY:"wheelDelta"in o?-o.wheelDelta:0},deltaZ:0,deltaMode:0}),dN=Tn(cN),fN=m({},uo,{newState:0,oldState:0}),hN=Tn(fN),pN=[9,13,27,32],gg=ni&&"CompositionEvent"in window,lu=null;ni&&"documentMode"in document&&(lu=document.documentMode);var mN=ni&&"TextEvent"in window&&!lu,F1=ni&&(!gg||lu&&8<lu&&11>=lu),K1=" ",_1=!1;function V1(o,l){switch(o){case"keyup":return pN.indexOf(l.keyCode)!==-1;case"keydown":return l.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function H1(o){return o=o.detail,typeof o=="object"&&"data"in o?o.data:null}var La=!1;function gN(o,l){switch(o){case"compositionend":return H1(l);case"keypress":return l.which!==32?null:(_1=!0,K1);case"textInput":return o=l.data,o===K1&&_1?null:o;default:return null}}function bN(o,l){if(La)return o==="compositionend"||!gg&&V1(o,l)?(o=O1(),jd=dg=Wi=null,La=!1,o):null;switch(o){case"paste":return null;case"keypress":if(!(l.ctrlKey||l.altKey||l.metaKey)||l.ctrlKey&&l.altKey){if(l.char&&1<l.char.length)return l.char;if(l.which)return String.fromCharCode(l.which)}return null;case"compositionend":return F1&&l.locale!=="ko"?null:l.data;default:return null}}var yN={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function U1(o){var l=o&&o.nodeName&&o.nodeName.toLowerCase();return l==="input"?!!yN[o.type]:l==="textarea"}function q1(o,l,d,p){Pa?Oa?Oa.push(p):Oa=[p]:Pa=p,l=Nf(l,"onChange"),0<l.length&&(d=new _d("onChange","change",null,d,p),o.push({event:d,listeners:l}))}var uu=null,cu=null;function xN(o){T5(o,0)}function Hd(o){var l=ru(o);if($1(l))return o}function G1(o,l){if(o==="change")return l}var W1=!1;if(ni){var bg;if(ni){var yg="oninput"in document;if(!yg){var Q1=document.createElement("div");Q1.setAttribute("oninput","return;"),yg=typeof Q1.oninput=="function"}bg=yg}else bg=!1;W1=bg&&(!document.documentMode||9<document.documentMode)}function Y1(){uu&&(uu.detachEvent("onpropertychange",X1),cu=uu=null)}function X1(o){if(o.propertyName==="value"&&Hd(cu)){var l=[];q1(l,cu,o,lg(o)),P1(xN,l)}}function vN(o,l,d){o==="focusin"?(Y1(),uu=l,cu=d,uu.attachEvent("onpropertychange",X1)):o==="focusout"&&Y1()}function kN(o){if(o==="selectionchange"||o==="keyup"||o==="keydown")return Hd(cu)}function CN(o,l){if(o==="click")return Hd(l)}function EN(o,l){if(o==="input"||o==="change")return Hd(l)}function DN(o,l){return o===l&&(o!==0||1/o===1/l)||o!==o&&l!==l}var Vn=typeof Object.is=="function"?Object.is:DN;function du(o,l){if(Vn(o,l))return!0;if(typeof o!="object"||o===null||typeof l!="object"||l===null)return!1;var d=Object.keys(o),p=Object.keys(l);if(d.length!==p.length)return!1;for(p=0;p<d.length;p++){var y=d[p];if(!oo.call(l,y)||!Vn(o[y],l[y]))return!1}return!0}function J1(o){for(;o&&o.firstChild;)o=o.firstChild;return o}function Z1(o,l){var d=J1(o);o=0;for(var p;d;){if(d.nodeType===3){if(p=o+d.textContent.length,o<=l&&p>=l)return{node:d,offset:l-o};o=p}e:{for(;d;){if(d.nextSibling){d=d.nextSibling;break e}d=d.parentNode}d=void 0}d=J1(d)}}function ev(o,l){return o&&l?o===l?!0:o&&o.nodeType===3?!1:l&&l.nodeType===3?ev(o,l.parentNode):"contains"in o?o.contains(l):o.compareDocumentPosition?!!(o.compareDocumentPosition(l)&16):!1:!1}function tv(o){o=o!=null&&o.ownerDocument!=null&&o.ownerDocument.defaultView!=null?o.ownerDocument.defaultView:window;for(var l=zd(o.document);l instanceof o.HTMLIFrameElement;){try{var d=typeof l.contentWindow.location.href=="string"}catch{d=!1}if(d)o=l.contentWindow;else break;l=zd(o.document)}return l}function xg(o){var l=o&&o.nodeName&&o.nodeName.toLowerCase();return l&&(l==="input"&&(o.type==="text"||o.type==="search"||o.type==="tel"||o.type==="url"||o.type==="password")||l==="textarea"||o.contentEditable==="true")}var SN=ni&&"documentMode"in document&&11>=document.documentMode,za=null,vg=null,fu=null,kg=!1;function nv(o,l,d){var p=d.window===d?d.document:d.nodeType===9?d:d.ownerDocument;kg||za==null||za!==zd(p)||(p=za,"selectionStart"in p&&xg(p)?p={start:p.selectionStart,end:p.selectionEnd}:(p=(p.ownerDocument&&p.ownerDocument.defaultView||window).getSelection(),p={anchorNode:p.anchorNode,anchorOffset:p.anchorOffset,focusNode:p.focusNode,focusOffset:p.focusOffset}),fu&&du(fu,p)||(fu=p,p=Nf(vg,"onSelect"),0<p.length&&(l=new _d("onSelect","select",null,l,d),o.push({event:l,listeners:p}),l.target=za)))}function co(o,l){var d={};return d[o.toLowerCase()]=l.toLowerCase(),d["Webkit"+o]="webkit"+l,d["Moz"+o]="moz"+l,d}var Ia={animationend:co("Animation","AnimationEnd"),animationiteration:co("Animation","AnimationIteration"),animationstart:co("Animation","AnimationStart"),transitionrun:co("Transition","TransitionRun"),transitionstart:co("Transition","TransitionStart"),transitioncancel:co("Transition","TransitionCancel"),transitionend:co("Transition","TransitionEnd")},Cg={},rv={};ni&&(rv=document.createElement("div").style,"AnimationEvent"in window||(delete Ia.animationend.animation,delete Ia.animationiteration.animation,delete Ia.animationstart.animation),"TransitionEvent"in window||delete Ia.transitionend.transition);function fo(o){if(Cg[o])return Cg[o];if(!Ia[o])return o;var l=Ia[o],d;for(d in l)if(l.hasOwnProperty(d)&&d in rv)return Cg[o]=l[d];return o}var iv=fo("animationend"),sv=fo("animationiteration"),ov=fo("animationstart"),wN=fo("transitionrun"),$N=fo("transitionstart"),TN=fo("transitioncancel"),av=fo("transitionend"),lv=new Map,Eg="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(" ");Eg.push("scrollEnd");function kr(o,l){lv.set(o,l),lo(l,[o])}var Ud=typeof reportError=="function"?reportError:function(o){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var l=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof o=="object"&&o!==null&&typeof o.message=="string"?String(o.message):String(o),error:o});if(!window.dispatchEvent(l))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",o);return}console.error(o)},nr=[],ja=0,Dg=0;function qd(){for(var o=ja,l=Dg=ja=0;l<o;){var d=nr[l];nr[l++]=null;var p=nr[l];nr[l++]=null;var y=nr[l];nr[l++]=null;var v=nr[l];if(nr[l++]=null,p!==null&&y!==null){var w=p.pending;w===null?y.next=y:(y.next=w.next,w.next=y),p.pending=y}v!==0&&uv(d,y,v)}}function Gd(o,l,d,p){nr[ja++]=o,nr[ja++]=l,nr[ja++]=d,nr[ja++]=p,Dg|=p,o.lanes|=p,o=o.alternate,o!==null&&(o.lanes|=p)}function Sg(o,l,d,p){return Gd(o,l,d,p),Wd(o)}function ho(o,l){return Gd(o,null,null,l),Wd(o)}function uv(o,l,d){o.lanes|=d;var p=o.alternate;p!==null&&(p.lanes|=d);for(var y=!1,v=o.return;v!==null;)v.childLanes|=d,p=v.alternate,p!==null&&(p.childLanes|=d),v.tag===22&&(o=v.stateNode,o===null||o._visibility&1||(y=!0)),o=v,v=v.return;return o.tag===3?(v=o.stateNode,y&&l!==null&&(y=31-_n(d),o=v.hiddenUpdates,p=o[y],p===null?o[y]=[l]:p.push(l),l.lane=d|536870912),v):null}function Wd(o){if(50<Pu)throw Pu=0,Pb=null,Error(r(185));for(var l=o.return;l!==null;)o=l,l=o.return;return o.tag===3?o.stateNode:null}var Fa={};function AN(o,l,d,p){this.tag=o,this.key=d,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=l,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=p,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Hn(o,l,d,p){return new AN(o,l,d,p)}function wg(o){return o=o.prototype,!(!o||!o.isReactComponent)}function ri(o,l){var d=o.alternate;return d===null?(d=Hn(o.tag,l,o.key,o.mode),d.elementType=o.elementType,d.type=o.type,d.stateNode=o.stateNode,d.alternate=o,o.alternate=d):(d.pendingProps=l,d.type=o.type,d.flags=0,d.subtreeFlags=0,d.deletions=null),d.flags=o.flags&65011712,d.childLanes=o.childLanes,d.lanes=o.lanes,d.child=o.child,d.memoizedProps=o.memoizedProps,d.memoizedState=o.memoizedState,d.updateQueue=o.updateQueue,l=o.dependencies,d.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext},d.sibling=o.sibling,d.index=o.index,d.ref=o.ref,d.refCleanup=o.refCleanup,d}function cv(o,l){o.flags&=65011714;var d=o.alternate;return d===null?(o.childLanes=0,o.lanes=l,o.child=null,o.subtreeFlags=0,o.memoizedProps=null,o.memoizedState=null,o.updateQueue=null,o.dependencies=null,o.stateNode=null):(o.childLanes=d.childLanes,o.lanes=d.lanes,o.child=d.child,o.subtreeFlags=0,o.deletions=null,o.memoizedProps=d.memoizedProps,o.memoizedState=d.memoizedState,o.updateQueue=d.updateQueue,o.type=d.type,l=d.dependencies,o.dependencies=l===null?null:{lanes:l.lanes,firstContext:l.firstContext}),o}function Qd(o,l,d,p,y,v){var w=0;if(p=o,typeof o=="function")wg(o)&&(w=1);else if(typeof o=="string")w=PP(o,d,le.current)?26:o==="html"||o==="head"||o==="body"?27:5;else e:switch(o){case j:return o=Hn(31,d,l,y),o.elementType=j,o.lanes=v,o;case k:return po(d.children,y,v,l);case E:w=8,y|=24;break;case D:return o=Hn(12,d,l,y|2),o.elementType=D,o.lanes=v,o;case B:return o=Hn(13,d,l,y),o.elementType=B,o.lanes=v,o;case P:return o=Hn(19,d,l,y),o.elementType=P,o.lanes=v,o;default:if(typeof o=="object"&&o!==null)switch(o.$$typeof){case $:w=10;break e;case T:w=9;break e;case A:w=11;break e;case M:w=14;break e;case N:w=16,p=null;break e}w=29,d=Error(r(130,o===null?"null":typeof o,"")),p=null}return l=Hn(w,d,l,y),l.elementType=o,l.type=p,l.lanes=v,l}function po(o,l,d,p){return o=Hn(7,o,p,l),o.lanes=d,o}function $g(o,l,d){return o=Hn(6,o,null,l),o.lanes=d,o}function dv(o){var l=Hn(18,null,null,0);return l.stateNode=o,l}function Tg(o,l,d){return l=Hn(4,o.children!==null?o.children:[],o.key,l),l.lanes=d,l.stateNode={containerInfo:o.containerInfo,pendingChildren:null,implementation:o.implementation},l}var fv=new WeakMap;function rr(o,l){if(typeof o=="object"&&o!==null){var d=fv.get(o);return d!==void 0?d:(l={value:o,source:l,stack:Zr(l)},fv.set(o,l),l)}return{value:o,source:l,stack:Zr(l)}}var Ka=[],_a=0,Yd=null,hu=0,ir=[],sr=0,Qi=null,Lr=1,zr="";function ii(o,l){Ka[_a++]=hu,Ka[_a++]=Yd,Yd=o,hu=l}function hv(o,l,d){ir[sr++]=Lr,ir[sr++]=zr,ir[sr++]=Qi,Qi=o;var p=Lr;o=zr;var y=32-_n(p)-1;p&=~(1<<y),d+=1;var v=32-_n(l)+y;if(30<v){var w=y-y%5;v=(p&(1<<w)-1).toString(32),p>>=w,y-=w,Lr=1<<32-_n(l)+y|d<<y|p,zr=v+o}else Lr=1<<v|d<<y|p,zr=o}function Ag(o){o.return!==null&&(ii(o,1),hv(o,1,0))}function Bg(o){for(;o===Yd;)Yd=Ka[--_a],Ka[_a]=null,hu=Ka[--_a],Ka[_a]=null;for(;o===Qi;)Qi=ir[--sr],ir[sr]=null,zr=ir[--sr],ir[sr]=null,Lr=ir[--sr],ir[sr]=null}function pv(o,l){ir[sr++]=Lr,ir[sr++]=zr,ir[sr++]=Qi,Lr=l.id,zr=l.overflow,Qi=o}var Yt=null,ct=null,Ve=!1,Yi=null,or=!1,Mg=Error(r(519));function Xi(o){var l=Error(r(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw pu(rr(l,o)),Mg}function mv(o){var l=o.stateNode,d=o.type,p=o.memoizedProps;switch(l[Qt]=o,l[$n]=p,d){case"dialog":Le("cancel",l),Le("close",l);break;case"iframe":case"object":case"embed":Le("load",l);break;case"video":case"audio":for(d=0;d<Lu.length;d++)Le(Lu[d],l);break;case"source":Le("error",l);break;case"img":case"image":case"link":Le("error",l),Le("load",l);break;case"details":Le("toggle",l);break;case"input":Le("invalid",l),T1(l,p.value,p.defaultValue,p.checked,p.defaultChecked,p.type,p.name,!0);break;case"select":Le("invalid",l);break;case"textarea":Le("invalid",l),B1(l,p.value,p.defaultValue,p.children)}d=p.children,typeof d!="string"&&typeof d!="number"&&typeof d!="bigint"||l.textContent===""+d||p.suppressHydrationWarning===!0||R5(l.textContent,d)?(p.popover!=null&&(Le("beforetoggle",l),Le("toggle",l)),p.onScroll!=null&&Le("scroll",l),p.onScrollEnd!=null&&Le("scrollend",l),p.onClick!=null&&(l.onclick=ti),l=!0):l=!1,l||Xi(o,!0)}function gv(o){for(Yt=o.return;Yt;)switch(Yt.tag){case 5:case 31:case 13:or=!1;return;case 27:case 3:or=!0;return;default:Yt=Yt.return}}function Va(o){if(o!==Yt)return!1;if(!Ve)return gv(o),Ve=!0,!1;var l=o.tag,d;if((d=l!==3&&l!==27)&&((d=l===5)&&(d=o.type,d=!(d!=="form"&&d!=="button")||Qb(o.type,o.memoizedProps)),d=!d),d&&ct&&Xi(o),gv(o),l===13){if(o=o.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(r(317));ct=K5(o)}else if(l===31){if(o=o.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(r(317));ct=K5(o)}else l===27?(l=ct,fs(o.type)?(o=e0,e0=null,ct=o):ct=l):ct=Yt?lr(o.stateNode.nextSibling):null;return!0}function mo(){ct=Yt=null,Ve=!1}function Rg(){var o=Yi;return o!==null&&(Rn===null?Rn=o:Rn.push.apply(Rn,o),Yi=null),o}function pu(o){Yi===null?Yi=[o]:Yi.push(o)}var Ng=z(null),go=null,si=null;function Ji(o,l,d){re(Ng,l._currentValue),l._currentValue=d}function oi(o){o._currentValue=Ng.current,H(Ng)}function Pg(o,l,d){for(;o!==null;){var p=o.alternate;if((o.childLanes&l)!==l?(o.childLanes|=l,p!==null&&(p.childLanes|=l)):p!==null&&(p.childLanes&l)!==l&&(p.childLanes|=l),o===d)break;o=o.return}}function Og(o,l,d,p){var y=o.child;for(y!==null&&(y.return=o);y!==null;){var v=y.dependencies;if(v!==null){var w=y.child;v=v.firstContext;e:for(;v!==null;){var R=v;v=y;for(var I=0;I<l.length;I++)if(R.context===l[I]){v.lanes|=d,R=v.alternate,R!==null&&(R.lanes|=d),Pg(v.return,d,o),p||(w=null);break e}v=R.next}}else if(y.tag===18){if(w=y.return,w===null)throw Error(r(341));w.lanes|=d,v=w.alternate,v!==null&&(v.lanes|=d),Pg(w,d,o),w=null}else w=y.child;if(w!==null)w.return=y;else for(w=y;w!==null;){if(w===o){w=null;break}if(y=w.sibling,y!==null){y.return=w.return,w=y;break}w=w.return}y=w}}function Ha(o,l,d,p){o=null;for(var y=l,v=!1;y!==null;){if(!v){if((y.flags&524288)!==0)v=!0;else if((y.flags&262144)!==0)break}if(y.tag===10){var w=y.alternate;if(w===null)throw Error(r(387));if(w=w.memoizedProps,w!==null){var R=y.type;Vn(y.pendingProps.value,w.value)||(o!==null?o.push(R):o=[R])}}else if(y===Ce.current){if(w=y.alternate,w===null)throw Error(r(387));w.memoizedState.memoizedState!==y.memoizedState.memoizedState&&(o!==null?o.push(Ku):o=[Ku])}y=y.return}o!==null&&Og(l,o,d,p),l.flags|=262144}function Xd(o){for(o=o.firstContext;o!==null;){if(!Vn(o.context._currentValue,o.memoizedValue))return!0;o=o.next}return!1}function bo(o){go=o,si=null,o=o.dependencies,o!==null&&(o.firstContext=null)}function Xt(o){return bv(go,o)}function Jd(o,l){return go===null&&bo(o),bv(o,l)}function bv(o,l){var d=l._currentValue;if(l={context:l,memoizedValue:d,next:null},si===null){if(o===null)throw Error(r(308));si=l,o.dependencies={lanes:0,firstContext:l},o.flags|=524288}else si=si.next=l;return d}var BN=typeof AbortController<"u"?AbortController:function(){var o=[],l=this.signal={aborted:!1,addEventListener:function(d,p){o.push(p)}};this.abort=function(){l.aborted=!0,o.forEach(function(d){return d()})}},MN=t.unstable_scheduleCallback,RN=t.unstable_NormalPriority,$t={$$typeof:$,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function Lg(){return{controller:new BN,data:new Map,refCount:0}}function mu(o){o.refCount--,o.refCount===0&&MN(RN,function(){o.controller.abort()})}var gu=null,zg=0,Ua=0,qa=null;function NN(o,l){if(gu===null){var d=gu=[];zg=0,Ua=Fb(),qa={status:"pending",value:void 0,then:function(p){d.push(p)}}}return zg++,l.then(yv,yv),l}function yv(){if(--zg===0&&gu!==null){qa!==null&&(qa.status="fulfilled");var o=gu;gu=null,Ua=0,qa=null;for(var l=0;l<o.length;l++)(0,o[l])()}}function PN(o,l){var d=[],p={status:"pending",value:null,reason:null,then:function(y){d.push(y)}};return o.then(function(){p.status="fulfilled",p.value=l;for(var y=0;y<d.length;y++)(0,d[y])(l)},function(y){for(p.status="rejected",p.reason=y,y=0;y<d.length;y++)(0,d[y])(void 0)}),p}var xv=O.S;O.S=function(o,l){n5=ln(),typeof l=="object"&&l!==null&&typeof l.then=="function"&&NN(o,l),xv!==null&&xv(o,l)};var yo=z(null);function Ig(){var o=yo.current;return o!==null?o:it.pooledCache}function Zd(o,l){l===null?re(yo,yo.current):re(yo,l.pool)}function vv(){var o=Ig();return o===null?null:{parent:$t._currentValue,pool:o}}var Ga=Error(r(460)),jg=Error(r(474)),ef=Error(r(542)),tf={then:function(){}};function kv(o){return o=o.status,o==="fulfilled"||o==="rejected"}function Cv(o,l,d){switch(d=o[d],d===void 0?o.push(l):d!==l&&(l.then(ti,ti),l=d),l.status){case"fulfilled":return l.value;case"rejected":throw o=l.reason,Dv(o),o;default:if(typeof l.status=="string")l.then(ti,ti);else{if(o=it,o!==null&&100<o.shellSuspendCounter)throw Error(r(482));o=l,o.status="pending",o.then(function(p){if(l.status==="pending"){var y=l;y.status="fulfilled",y.value=p}},function(p){if(l.status==="pending"){var y=l;y.status="rejected",y.reason=p}})}switch(l.status){case"fulfilled":return l.value;case"rejected":throw o=l.reason,Dv(o),o}throw vo=l,Ga}}function xo(o){try{var l=o._init;return l(o._payload)}catch(d){throw d!==null&&typeof d=="object"&&typeof d.then=="function"?(vo=d,Ga):d}}var vo=null;function Ev(){if(vo===null)throw Error(r(459));var o=vo;return vo=null,o}function Dv(o){if(o===Ga||o===ef)throw Error(r(483))}var Wa=null,bu=0;function nf(o){var l=bu;return bu+=1,Wa===null&&(Wa=[]),Cv(Wa,o,l)}function yu(o,l){l=l.props.ref,o.ref=l!==void 0?l:null}function rf(o,l){throw l.$$typeof===g?Error(r(525)):(o=Object.prototype.toString.call(l),Error(r(31,o==="[object Object]"?"object with keys {"+Object.keys(l).join(", ")+"}":o)))}function Sv(o){function l(q,_){if(o){var Y=q.deletions;Y===null?(q.deletions=[_],q.flags|=16):Y.push(_)}}function d(q,_){if(!o)return null;for(;_!==null;)l(q,_),_=_.sibling;return null}function p(q){for(var _=new Map;q!==null;)q.key!==null?_.set(q.key,q):_.set(q.index,q),q=q.sibling;return _}function y(q,_){return q=ri(q,_),q.index=0,q.sibling=null,q}function v(q,_,Y){return q.index=Y,o?(Y=q.alternate,Y!==null?(Y=Y.index,Y<_?(q.flags|=67108866,_):Y):(q.flags|=67108866,_)):(q.flags|=1048576,_)}function w(q){return o&&q.alternate===null&&(q.flags|=67108866),q}function R(q,_,Y,se){return _===null||_.tag!==6?(_=$g(Y,q.mode,se),_.return=q,_):(_=y(_,Y),_.return=q,_)}function I(q,_,Y,se){var ve=Y.type;return ve===k?ie(q,_,Y.props.children,se,Y.key):_!==null&&(_.elementType===ve||typeof ve=="object"&&ve!==null&&ve.$$typeof===N&&xo(ve)===_.type)?(_=y(_,Y.props),yu(_,Y),_.return=q,_):(_=Qd(Y.type,Y.key,Y.props,null,q.mode,se),yu(_,Y),_.return=q,_)}function X(q,_,Y,se){return _===null||_.tag!==4||_.stateNode.containerInfo!==Y.containerInfo||_.stateNode.implementation!==Y.implementation?(_=Tg(Y,q.mode,se),_.return=q,_):(_=y(_,Y.children||[]),_.return=q,_)}function ie(q,_,Y,se,ve){return _===null||_.tag!==7?(_=po(Y,q.mode,se,ve),_.return=q,_):(_=y(_,Y),_.return=q,_)}function oe(q,_,Y){if(typeof _=="string"&&_!==""||typeof _=="number"||typeof _=="bigint")return _=$g(""+_,q.mode,Y),_.return=q,_;if(typeof _=="object"&&_!==null){switch(_.$$typeof){case b:return Y=Qd(_.type,_.key,_.props,null,q.mode,Y),yu(Y,_),Y.return=q,Y;case x:return _=Tg(_,q.mode,Y),_.return=q,_;case N:return _=xo(_),oe(q,_,Y)}if(te(_)||U(_))return _=po(_,q.mode,Y,null),_.return=q,_;if(typeof _.then=="function")return oe(q,nf(_),Y);if(_.$$typeof===$)return oe(q,Jd(q,_),Y);rf(q,_)}return null}function J(q,_,Y,se){var ve=_!==null?_.key:null;if(typeof Y=="string"&&Y!==""||typeof Y=="number"||typeof Y=="bigint")return ve!==null?null:R(q,_,""+Y,se);if(typeof Y=="object"&&Y!==null){switch(Y.$$typeof){case b:return Y.key===ve?I(q,_,Y,se):null;case x:return Y.key===ve?X(q,_,Y,se):null;case N:return Y=xo(Y),J(q,_,Y,se)}if(te(Y)||U(Y))return ve!==null?null:ie(q,_,Y,se,null);if(typeof Y.then=="function")return J(q,_,nf(Y),se);if(Y.$$typeof===$)return J(q,_,Jd(q,Y),se);rf(q,Y)}return null}function ee(q,_,Y,se,ve){if(typeof se=="string"&&se!==""||typeof se=="number"||typeof se=="bigint")return q=q.get(Y)||null,R(_,q,""+se,ve);if(typeof se=="object"&&se!==null){switch(se.$$typeof){case b:return q=q.get(se.key===null?Y:se.key)||null,I(_,q,se,ve);case x:return q=q.get(se.key===null?Y:se.key)||null,X(_,q,se,ve);case N:return se=xo(se),ee(q,_,Y,se,ve)}if(te(se)||U(se))return q=q.get(Y)||null,ie(_,q,se,ve,null);if(typeof se.then=="function")return ee(q,_,Y,nf(se),ve);if(se.$$typeof===$)return ee(q,_,Y,Jd(_,se),ve);rf(_,se)}return null}function be(q,_,Y,se){for(var ve=null,qe=null,xe=_,Be=_=0,Ke=null;xe!==null&&Be<Y.length;Be++){xe.index>Be?(Ke=xe,xe=null):Ke=xe.sibling;var Ge=J(q,xe,Y[Be],se);if(Ge===null){xe===null&&(xe=Ke);break}o&&xe&&Ge.alternate===null&&l(q,xe),_=v(Ge,_,Be),qe===null?ve=Ge:qe.sibling=Ge,qe=Ge,xe=Ke}if(Be===Y.length)return d(q,xe),Ve&&ii(q,Be),ve;if(xe===null){for(;Be<Y.length;Be++)xe=oe(q,Y[Be],se),xe!==null&&(_=v(xe,_,Be),qe===null?ve=xe:qe.sibling=xe,qe=xe);return Ve&&ii(q,Be),ve}for(xe=p(xe);Be<Y.length;Be++)Ke=ee(xe,q,Be,Y[Be],se),Ke!==null&&(o&&Ke.alternate!==null&&xe.delete(Ke.key===null?Be:Ke.key),_=v(Ke,_,Be),qe===null?ve=Ke:qe.sibling=Ke,qe=Ke);return o&&xe.forEach(function(bs){return l(q,bs)}),Ve&&ii(q,Be),ve}function Ee(q,_,Y,se){if(Y==null)throw Error(r(151));for(var ve=null,qe=null,xe=_,Be=_=0,Ke=null,Ge=Y.next();xe!==null&&!Ge.done;Be++,Ge=Y.next()){xe.index>Be?(Ke=xe,xe=null):Ke=xe.sibling;var bs=J(q,xe,Ge.value,se);if(bs===null){xe===null&&(xe=Ke);break}o&&xe&&bs.alternate===null&&l(q,xe),_=v(bs,_,Be),qe===null?ve=bs:qe.sibling=bs,qe=bs,xe=Ke}if(Ge.done)return d(q,xe),Ve&&ii(q,Be),ve;if(xe===null){for(;!Ge.done;Be++,Ge=Y.next())Ge=oe(q,Ge.value,se),Ge!==null&&(_=v(Ge,_,Be),qe===null?ve=Ge:qe.sibling=Ge,qe=Ge);return Ve&&ii(q,Be),ve}for(xe=p(xe);!Ge.done;Be++,Ge=Y.next())Ge=ee(xe,q,Be,Ge.value,se),Ge!==null&&(o&&Ge.alternate!==null&&xe.delete(Ge.key===null?Be:Ge.key),_=v(Ge,_,Be),qe===null?ve=Ge:qe.sibling=Ge,qe=Ge);return o&&xe.forEach(function(UP){return l(q,UP)}),Ve&&ii(q,Be),ve}function nt(q,_,Y,se){if(typeof Y=="object"&&Y!==null&&Y.type===k&&Y.key===null&&(Y=Y.props.children),typeof Y=="object"&&Y!==null){switch(Y.$$typeof){case b:e:{for(var ve=Y.key;_!==null;){if(_.key===ve){if(ve=Y.type,ve===k){if(_.tag===7){d(q,_.sibling),se=y(_,Y.props.children),se.return=q,q=se;break e}}else if(_.elementType===ve||typeof ve=="object"&&ve!==null&&ve.$$typeof===N&&xo(ve)===_.type){d(q,_.sibling),se=y(_,Y.props),yu(se,Y),se.return=q,q=se;break e}d(q,_);break}else l(q,_);_=_.sibling}Y.type===k?(se=po(Y.props.children,q.mode,se,Y.key),se.return=q,q=se):(se=Qd(Y.type,Y.key,Y.props,null,q.mode,se),yu(se,Y),se.return=q,q=se)}return w(q);case x:e:{for(ve=Y.key;_!==null;){if(_.key===ve)if(_.tag===4&&_.stateNode.containerInfo===Y.containerInfo&&_.stateNode.implementation===Y.implementation){d(q,_.sibling),se=y(_,Y.children||[]),se.return=q,q=se;break e}else{d(q,_);break}else l(q,_);_=_.sibling}se=Tg(Y,q.mode,se),se.return=q,q=se}return w(q);case N:return Y=xo(Y),nt(q,_,Y,se)}if(te(Y))return be(q,_,Y,se);if(U(Y)){if(ve=U(Y),typeof ve!="function")throw Error(r(150));return Y=ve.call(Y),Ee(q,_,Y,se)}if(typeof Y.then=="function")return nt(q,_,nf(Y),se);if(Y.$$typeof===$)return nt(q,_,Jd(q,Y),se);rf(q,Y)}return typeof Y=="string"&&Y!==""||typeof Y=="number"||typeof Y=="bigint"?(Y=""+Y,_!==null&&_.tag===6?(d(q,_.sibling),se=y(_,Y),se.return=q,q=se):(d(q,_),se=$g(Y,q.mode,se),se.return=q,q=se),w(q)):d(q,_)}return function(q,_,Y,se){try{bu=0;var ve=nt(q,_,Y,se);return Wa=null,ve}catch(xe){if(xe===Ga||xe===ef)throw xe;var qe=Hn(29,xe,null,q.mode);return qe.lanes=se,qe.return=q,qe}}}var ko=Sv(!0),wv=Sv(!1),Zi=!1;function Fg(o){o.updateQueue={baseState:o.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Kg(o,l){o=o.updateQueue,l.updateQueue===o&&(l.updateQueue={baseState:o.baseState,firstBaseUpdate:o.firstBaseUpdate,lastBaseUpdate:o.lastBaseUpdate,shared:o.shared,callbacks:null})}function es(o){return{lane:o,tag:0,payload:null,callback:null,next:null}}function ts(o,l,d){var p=o.updateQueue;if(p===null)return null;if(p=p.shared,(We&2)!==0){var y=p.pending;return y===null?l.next=l:(l.next=y.next,y.next=l),p.pending=l,l=Wd(o),uv(o,null,d),l}return Gd(o,p,l,d),Wd(o)}function xu(o,l,d){if(l=l.updateQueue,l!==null&&(l=l.shared,(d&4194048)!==0)){var p=l.lanes;p&=o.pendingLanes,d|=p,l.lanes=d,b1(o,d)}}function _g(o,l){var d=o.updateQueue,p=o.alternate;if(p!==null&&(p=p.updateQueue,d===p)){var y=null,v=null;if(d=d.firstBaseUpdate,d!==null){do{var w={lane:d.lane,tag:d.tag,payload:d.payload,callback:null,next:null};v===null?y=v=w:v=v.next=w,d=d.next}while(d!==null);v===null?y=v=l:v=v.next=l}else y=v=l;d={baseState:p.baseState,firstBaseUpdate:y,lastBaseUpdate:v,shared:p.shared,callbacks:p.callbacks},o.updateQueue=d;return}o=d.lastBaseUpdate,o===null?d.firstBaseUpdate=l:o.next=l,d.lastBaseUpdate=l}var Vg=!1;function vu(){if(Vg){var o=qa;if(o!==null)throw o}}function ku(o,l,d,p){Vg=!1;var y=o.updateQueue;Zi=!1;var v=y.firstBaseUpdate,w=y.lastBaseUpdate,R=y.shared.pending;if(R!==null){y.shared.pending=null;var I=R,X=I.next;I.next=null,w===null?v=X:w.next=X,w=I;var ie=o.alternate;ie!==null&&(ie=ie.updateQueue,R=ie.lastBaseUpdate,R!==w&&(R===null?ie.firstBaseUpdate=X:R.next=X,ie.lastBaseUpdate=I))}if(v!==null){var oe=y.baseState;w=0,ie=X=I=null,R=v;do{var J=R.lane&-536870913,ee=J!==R.lane;if(ee?(Fe&J)===J:(p&J)===J){J!==0&&J===Ua&&(Vg=!0),ie!==null&&(ie=ie.next={lane:0,tag:R.tag,payload:R.payload,callback:null,next:null});e:{var be=o,Ee=R;J=l;var nt=d;switch(Ee.tag){case 1:if(be=Ee.payload,typeof be=="function"){oe=be.call(nt,oe,J);break e}oe=be;break e;case 3:be.flags=be.flags&-65537|128;case 0:if(be=Ee.payload,J=typeof be=="function"?be.call(nt,oe,J):be,J==null)break e;oe=m({},oe,J);break e;case 2:Zi=!0}}J=R.callback,J!==null&&(o.flags|=64,ee&&(o.flags|=8192),ee=y.callbacks,ee===null?y.callbacks=[J]:ee.push(J))}else ee={lane:J,tag:R.tag,payload:R.payload,callback:R.callback,next:null},ie===null?(X=ie=ee,I=oe):ie=ie.next=ee,w|=J;if(R=R.next,R===null){if(R=y.shared.pending,R===null)break;ee=R,R=ee.next,ee.next=null,y.lastBaseUpdate=ee,y.shared.pending=null}}while(!0);ie===null&&(I=oe),y.baseState=I,y.firstBaseUpdate=X,y.lastBaseUpdate=ie,v===null&&(y.shared.lanes=0),as|=w,o.lanes=w,o.memoizedState=oe}}function $v(o,l){if(typeof o!="function")throw Error(r(191,o));o.call(l)}function Tv(o,l){var d=o.callbacks;if(d!==null)for(o.callbacks=null,o=0;o<d.length;o++)$v(d[o],l)}var Qa=z(null),sf=z(0);function Av(o,l){o=mi,re(sf,o),re(Qa,l),mi=o|l.baseLanes}function Hg(){re(sf,mi),re(Qa,Qa.current)}function Ug(){mi=sf.current,H(Qa),H(sf)}var Un=z(null),ar=null;function ns(o){var l=o.alternate;re(Et,Et.current&1),re(Un,o),ar===null&&(l===null||Qa.current!==null||l.memoizedState!==null)&&(ar=o)}function qg(o){re(Et,Et.current),re(Un,o),ar===null&&(ar=o)}function Bv(o){o.tag===22?(re(Et,Et.current),re(Un,o),ar===null&&(ar=o)):rs()}function rs(){re(Et,Et.current),re(Un,Un.current)}function qn(o){H(Un),ar===o&&(ar=null),H(Et)}var Et=z(0);function of(o){for(var l=o;l!==null;){if(l.tag===13){var d=l.memoizedState;if(d!==null&&(d=d.dehydrated,d===null||Jb(d)||Zb(d)))return l}else if(l.tag===19&&(l.memoizedProps.revealOrder==="forwards"||l.memoizedProps.revealOrder==="backwards"||l.memoizedProps.revealOrder==="unstable_legacy-backwards"||l.memoizedProps.revealOrder==="together")){if((l.flags&128)!==0)return l}else if(l.child!==null){l.child.return=l,l=l.child;continue}if(l===o)break;for(;l.sibling===null;){if(l.return===null||l.return===o)return null;l=l.return}l.sibling.return=l.return,l=l.sibling}return null}var ai=0,Ae=null,et=null,Tt=null,af=!1,Ya=!1,Co=!1,lf=0,Cu=0,Xa=null,ON=0;function yt(){throw Error(r(321))}function Gg(o,l){if(l===null)return!1;for(var d=0;d<l.length&&d<o.length;d++)if(!Vn(o[d],l[d]))return!1;return!0}function Wg(o,l,d,p,y,v){return ai=v,Ae=l,l.memoizedState=null,l.updateQueue=null,l.lanes=0,O.H=o===null||o.memoizedState===null?hk:ub,Co=!1,v=d(p,y),Co=!1,Ya&&(v=Rv(l,d,p,y)),Mv(o),v}function Mv(o){O.H=Su;var l=et!==null&&et.next!==null;if(ai=0,Tt=et=Ae=null,af=!1,Cu=0,Xa=null,l)throw Error(r(300));o===null||At||(o=o.dependencies,o!==null&&Xd(o)&&(At=!0))}function Rv(o,l,d,p){Ae=o;var y=0;do{if(Ya&&(Xa=null),Cu=0,Ya=!1,25<=y)throw Error(r(301));if(y+=1,Tt=et=null,o.updateQueue!=null){var v=o.updateQueue;v.lastEffect=null,v.events=null,v.stores=null,v.memoCache!=null&&(v.memoCache.index=0)}O.H=pk,v=l(d,p)}while(Ya);return v}function LN(){var o=O.H,l=o.useState()[0];return l=typeof l.then=="function"?Eu(l):l,o=o.useState()[0],(et!==null?et.memoizedState:null)!==o&&(Ae.flags|=1024),l}function Qg(){var o=lf!==0;return lf=0,o}function Yg(o,l,d){l.updateQueue=o.updateQueue,l.flags&=-2053,o.lanes&=~d}function Xg(o){if(af){for(o=o.memoizedState;o!==null;){var l=o.queue;l!==null&&(l.pending=null),o=o.next}af=!1}ai=0,Tt=et=Ae=null,Ya=!1,Cu=lf=0,Xa=null}function yn(){var o={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Tt===null?Ae.memoizedState=Tt=o:Tt=Tt.next=o,Tt}function Dt(){if(et===null){var o=Ae.alternate;o=o!==null?o.memoizedState:null}else o=et.next;var l=Tt===null?Ae.memoizedState:Tt.next;if(l!==null)Tt=l,et=o;else{if(o===null)throw Ae.alternate===null?Error(r(467)):Error(r(310));et=o,o={memoizedState:et.memoizedState,baseState:et.baseState,baseQueue:et.baseQueue,queue:et.queue,next:null},Tt===null?Ae.memoizedState=Tt=o:Tt=Tt.next=o}return Tt}function uf(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Eu(o){var l=Cu;return Cu+=1,Xa===null&&(Xa=[]),o=Cv(Xa,o,l),l=Ae,(Tt===null?l.memoizedState:Tt.next)===null&&(l=l.alternate,O.H=l===null||l.memoizedState===null?hk:ub),o}function cf(o){if(o!==null&&typeof o=="object"){if(typeof o.then=="function")return Eu(o);if(o.$$typeof===$)return Xt(o)}throw Error(r(438,String(o)))}function Jg(o){var l=null,d=Ae.updateQueue;if(d!==null&&(l=d.memoCache),l==null){var p=Ae.alternate;p!==null&&(p=p.updateQueue,p!==null&&(p=p.memoCache,p!=null&&(l={data:p.data.map(function(y){return y.slice()}),index:0})))}if(l==null&&(l={data:[],index:0}),d===null&&(d=uf(),Ae.updateQueue=d),d.memoCache=l,d=l.data[l.index],d===void 0)for(d=l.data[l.index]=Array(o),p=0;p<o;p++)d[p]=G;return l.index++,d}function li(o,l){return typeof l=="function"?l(o):l}function df(o){var l=Dt();return Zg(l,et,o)}function Zg(o,l,d){var p=o.queue;if(p===null)throw Error(r(311));p.lastRenderedReducer=d;var y=o.baseQueue,v=p.pending;if(v!==null){if(y!==null){var w=y.next;y.next=v.next,v.next=w}l.baseQueue=y=v,p.pending=null}if(v=o.baseState,y===null)o.memoizedState=v;else{l=y.next;var R=w=null,I=null,X=l,ie=!1;do{var oe=X.lane&-536870913;if(oe!==X.lane?(Fe&oe)===oe:(ai&oe)===oe){var J=X.revertLane;if(J===0)I!==null&&(I=I.next={lane:0,revertLane:0,gesture:null,action:X.action,hasEagerState:X.hasEagerState,eagerState:X.eagerState,next:null}),oe===Ua&&(ie=!0);else if((ai&J)===J){X=X.next,J===Ua&&(ie=!0);continue}else oe={lane:0,revertLane:X.revertLane,gesture:null,action:X.action,hasEagerState:X.hasEagerState,eagerState:X.eagerState,next:null},I===null?(R=I=oe,w=v):I=I.next=oe,Ae.lanes|=J,as|=J;oe=X.action,Co&&d(v,oe),v=X.hasEagerState?X.eagerState:d(v,oe)}else J={lane:oe,revertLane:X.revertLane,gesture:X.gesture,action:X.action,hasEagerState:X.hasEagerState,eagerState:X.eagerState,next:null},I===null?(R=I=J,w=v):I=I.next=J,Ae.lanes|=oe,as|=oe;X=X.next}while(X!==null&&X!==l);if(I===null?w=v:I.next=R,!Vn(v,o.memoizedState)&&(At=!0,ie&&(d=qa,d!==null)))throw d;o.memoizedState=v,o.baseState=w,o.baseQueue=I,p.lastRenderedState=v}return y===null&&(p.lanes=0),[o.memoizedState,p.dispatch]}function eb(o){var l=Dt(),d=l.queue;if(d===null)throw Error(r(311));d.lastRenderedReducer=o;var p=d.dispatch,y=d.pending,v=l.memoizedState;if(y!==null){d.pending=null;var w=y=y.next;do v=o(v,w.action),w=w.next;while(w!==y);Vn(v,l.memoizedState)||(At=!0),l.memoizedState=v,l.baseQueue===null&&(l.baseState=v),d.lastRenderedState=v}return[v,p]}function Nv(o,l,d){var p=Ae,y=Dt(),v=Ve;if(v){if(d===void 0)throw Error(r(407));d=d()}else d=l();var w=!Vn((et||y).memoizedState,d);if(w&&(y.memoizedState=d,At=!0),y=y.queue,rb(Lv.bind(null,p,y,o),[o]),y.getSnapshot!==l||w||Tt!==null&&Tt.memoizedState.tag&1){if(p.flags|=2048,Ja(9,{destroy:void 0},Ov.bind(null,p,y,d,l),null),it===null)throw Error(r(349));v||(ai&127)!==0||Pv(p,l,d)}return d}function Pv(o,l,d){o.flags|=16384,o={getSnapshot:l,value:d},l=Ae.updateQueue,l===null?(l=uf(),Ae.updateQueue=l,l.stores=[o]):(d=l.stores,d===null?l.stores=[o]:d.push(o))}function Ov(o,l,d,p){l.value=d,l.getSnapshot=p,zv(l)&&Iv(o)}function Lv(o,l,d){return d(function(){zv(l)&&Iv(o)})}function zv(o){var l=o.getSnapshot;o=o.value;try{var d=l();return!Vn(o,d)}catch{return!0}}function Iv(o){var l=ho(o,2);l!==null&&Nn(l,o,2)}function tb(o){var l=yn();if(typeof o=="function"){var d=o;if(o=d(),Co){qi(!0);try{d()}finally{qi(!1)}}}return l.memoizedState=l.baseState=o,l.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:li,lastRenderedState:o},l}function jv(o,l,d,p){return o.baseState=d,Zg(o,et,typeof p=="function"?p:li)}function zN(o,l,d,p,y){if(pf(o))throw Error(r(485));if(o=l.action,o!==null){var v={payload:y,action:o,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(w){v.listeners.push(w)}};O.T!==null?d(!0):v.isTransition=!1,p(v),d=l.pending,d===null?(v.next=l.pending=v,Fv(l,v)):(v.next=d.next,l.pending=d.next=v)}}function Fv(o,l){var d=l.action,p=l.payload,y=o.state;if(l.isTransition){var v=O.T,w={};O.T=w;try{var R=d(y,p),I=O.S;I!==null&&I(w,R),Kv(o,l,R)}catch(X){nb(o,l,X)}finally{v!==null&&w.types!==null&&(v.types=w.types),O.T=v}}else try{v=d(y,p),Kv(o,l,v)}catch(X){nb(o,l,X)}}function Kv(o,l,d){d!==null&&typeof d=="object"&&typeof d.then=="function"?d.then(function(p){_v(o,l,p)},function(p){return nb(o,l,p)}):_v(o,l,d)}function _v(o,l,d){l.status="fulfilled",l.value=d,Vv(l),o.state=d,l=o.pending,l!==null&&(d=l.next,d===l?o.pending=null:(d=d.next,l.next=d,Fv(o,d)))}function nb(o,l,d){var p=o.pending;if(o.pending=null,p!==null){p=p.next;do l.status="rejected",l.reason=d,Vv(l),l=l.next;while(l!==p)}o.action=null}function Vv(o){o=o.listeners;for(var l=0;l<o.length;l++)(0,o[l])()}function Hv(o,l){return l}function Uv(o,l){if(Ve){var d=it.formState;if(d!==null){e:{var p=Ae;if(Ve){if(ct){t:{for(var y=ct,v=or;y.nodeType!==8;){if(!v){y=null;break t}if(y=lr(y.nextSibling),y===null){y=null;break t}}v=y.data,y=v==="F!"||v==="F"?y:null}if(y){ct=lr(y.nextSibling),p=y.data==="F!";break e}}Xi(p)}p=!1}p&&(l=d[0])}}return d=yn(),d.memoizedState=d.baseState=l,p={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Hv,lastRenderedState:l},d.queue=p,d=ck.bind(null,Ae,p),p.dispatch=d,p=tb(!1),v=lb.bind(null,Ae,!1,p.queue),p=yn(),y={state:l,dispatch:null,action:o,pending:null},p.queue=y,d=zN.bind(null,Ae,y,v,d),y.dispatch=d,p.memoizedState=o,[l,d,!1]}function qv(o){var l=Dt();return Gv(l,et,o)}function Gv(o,l,d){if(l=Zg(o,l,Hv)[0],o=df(li)[0],typeof l=="object"&&l!==null&&typeof l.then=="function")try{var p=Eu(l)}catch(w){throw w===Ga?ef:w}else p=l;l=Dt();var y=l.queue,v=y.dispatch;return d!==l.memoizedState&&(Ae.flags|=2048,Ja(9,{destroy:void 0},IN.bind(null,y,d),null)),[p,v,o]}function IN(o,l){o.action=l}function Wv(o){var l=Dt(),d=et;if(d!==null)return Gv(l,d,o);Dt(),l=l.memoizedState,d=Dt();var p=d.queue.dispatch;return d.memoizedState=o,[l,p,!1]}function Ja(o,l,d,p){return o={tag:o,create:d,deps:p,inst:l,next:null},l=Ae.updateQueue,l===null&&(l=uf(),Ae.updateQueue=l),d=l.lastEffect,d===null?l.lastEffect=o.next=o:(p=d.next,d.next=o,o.next=p,l.lastEffect=o),o}function Qv(){return Dt().memoizedState}function ff(o,l,d,p){var y=yn();Ae.flags|=o,y.memoizedState=Ja(1|l,{destroy:void 0},d,p===void 0?null:p)}function hf(o,l,d,p){var y=Dt();p=p===void 0?null:p;var v=y.memoizedState.inst;et!==null&&p!==null&&Gg(p,et.memoizedState.deps)?y.memoizedState=Ja(l,v,d,p):(Ae.flags|=o,y.memoizedState=Ja(1|l,v,d,p))}function Yv(o,l){ff(8390656,8,o,l)}function rb(o,l){hf(2048,8,o,l)}function jN(o){Ae.flags|=4;var l=Ae.updateQueue;if(l===null)l=uf(),Ae.updateQueue=l,l.events=[o];else{var d=l.events;d===null?l.events=[o]:d.push(o)}}function Xv(o){var l=Dt().memoizedState;return jN({ref:l,nextImpl:o}),function(){if((We&2)!==0)throw Error(r(440));return l.impl.apply(void 0,arguments)}}function Jv(o,l){return hf(4,2,o,l)}function Zv(o,l){return hf(4,4,o,l)}function ek(o,l){if(typeof l=="function"){o=o();var d=l(o);return function(){typeof d=="function"?d():l(null)}}if(l!=null)return o=o(),l.current=o,function(){l.current=null}}function tk(o,l,d){d=d!=null?d.concat([o]):null,hf(4,4,ek.bind(null,l,o),d)}function ib(){}function nk(o,l){var d=Dt();l=l===void 0?null:l;var p=d.memoizedState;return l!==null&&Gg(l,p[1])?p[0]:(d.memoizedState=[o,l],o)}function rk(o,l){var d=Dt();l=l===void 0?null:l;var p=d.memoizedState;if(l!==null&&Gg(l,p[1]))return p[0];if(p=o(),Co){qi(!0);try{o()}finally{qi(!1)}}return d.memoizedState=[p,l],p}function sb(o,l,d){return d===void 0||(ai&1073741824)!==0&&(Fe&261930)===0?o.memoizedState=l:(o.memoizedState=d,o=i5(),Ae.lanes|=o,as|=o,d)}function ik(o,l,d,p){return Vn(d,l)?d:Qa.current!==null?(o=sb(o,d,p),Vn(o,l)||(At=!0),o):(ai&42)===0||(ai&1073741824)!==0&&(Fe&261930)===0?(At=!0,o.memoizedState=d):(o=i5(),Ae.lanes|=o,as|=o,l)}function sk(o,l,d,p,y){var v=K.p;K.p=v!==0&&8>v?v:8;var w=O.T,R={};O.T=R,lb(o,!1,l,d);try{var I=y(),X=O.S;if(X!==null&&X(R,I),I!==null&&typeof I=="object"&&typeof I.then=="function"){var ie=PN(I,p);Du(o,l,ie,Qn(o))}else Du(o,l,p,Qn(o))}catch(oe){Du(o,l,{then:function(){},status:"rejected",reason:oe},Qn())}finally{K.p=v,w!==null&&R.types!==null&&(w.types=R.types),O.T=w}}function FN(){}function ob(o,l,d,p){if(o.tag!==5)throw Error(r(476));var y=ok(o).queue;sk(o,y,l,Q,d===null?FN:function(){return ak(o),d(p)})}function ok(o){var l=o.memoizedState;if(l!==null)return l;l={memoizedState:Q,baseState:Q,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:li,lastRenderedState:Q},next:null};var d={};return l.next={memoizedState:d,baseState:d,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:li,lastRenderedState:d},next:null},o.memoizedState=l,o=o.alternate,o!==null&&(o.memoizedState=l),l}function ak(o){var l=ok(o);l.next===null&&(l=o.alternate.memoizedState),Du(o,l.next.queue,{},Qn())}function ab(){return Xt(Ku)}function lk(){return Dt().memoizedState}function uk(){return Dt().memoizedState}function KN(o){for(var l=o.return;l!==null;){switch(l.tag){case 24:case 3:var d=Qn();o=es(d);var p=ts(l,o,d);p!==null&&(Nn(p,l,d),xu(p,l,d)),l={cache:Lg()},o.payload=l;return}l=l.return}}function _N(o,l,d){var p=Qn();d={lane:p,revertLane:0,gesture:null,action:d,hasEagerState:!1,eagerState:null,next:null},pf(o)?dk(l,d):(d=Sg(o,l,d,p),d!==null&&(Nn(d,o,p),fk(d,l,p)))}function ck(o,l,d){var p=Qn();Du(o,l,d,p)}function Du(o,l,d,p){var y={lane:p,revertLane:0,gesture:null,action:d,hasEagerState:!1,eagerState:null,next:null};if(pf(o))dk(l,y);else{var v=o.alternate;if(o.lanes===0&&(v===null||v.lanes===0)&&(v=l.lastRenderedReducer,v!==null))try{var w=l.lastRenderedState,R=v(w,d);if(y.hasEagerState=!0,y.eagerState=R,Vn(R,w))return Gd(o,l,y,0),it===null&&qd(),!1}catch{}if(d=Sg(o,l,y,p),d!==null)return Nn(d,o,p),fk(d,l,p),!0}return!1}function lb(o,l,d,p){if(p={lane:2,revertLane:Fb(),gesture:null,action:p,hasEagerState:!1,eagerState:null,next:null},pf(o)){if(l)throw Error(r(479))}else l=Sg(o,d,p,2),l!==null&&Nn(l,o,2)}function pf(o){var l=o.alternate;return o===Ae||l!==null&&l===Ae}function dk(o,l){Ya=af=!0;var d=o.pending;d===null?l.next=l:(l.next=d.next,d.next=l),o.pending=l}function fk(o,l,d){if((d&4194048)!==0){var p=l.lanes;p&=o.pendingLanes,d|=p,l.lanes=d,b1(o,d)}}var Su={readContext:Xt,use:cf,useCallback:yt,useContext:yt,useEffect:yt,useImperativeHandle:yt,useLayoutEffect:yt,useInsertionEffect:yt,useMemo:yt,useReducer:yt,useRef:yt,useState:yt,useDebugValue:yt,useDeferredValue:yt,useTransition:yt,useSyncExternalStore:yt,useId:yt,useHostTransitionStatus:yt,useFormState:yt,useActionState:yt,useOptimistic:yt,useMemoCache:yt,useCacheRefresh:yt};Su.useEffectEvent=yt;var hk={readContext:Xt,use:cf,useCallback:function(o,l){return yn().memoizedState=[o,l===void 0?null:l],o},useContext:Xt,useEffect:Yv,useImperativeHandle:function(o,l,d){d=d!=null?d.concat([o]):null,ff(4194308,4,ek.bind(null,l,o),d)},useLayoutEffect:function(o,l){return ff(4194308,4,o,l)},useInsertionEffect:function(o,l){ff(4,2,o,l)},useMemo:function(o,l){var d=yn();l=l===void 0?null:l;var p=o();if(Co){qi(!0);try{o()}finally{qi(!1)}}return d.memoizedState=[p,l],p},useReducer:function(o,l,d){var p=yn();if(d!==void 0){var y=d(l);if(Co){qi(!0);try{d(l)}finally{qi(!1)}}}else y=l;return p.memoizedState=p.baseState=y,o={pending:null,lanes:0,dispatch:null,lastRenderedReducer:o,lastRenderedState:y},p.queue=o,o=o.dispatch=_N.bind(null,Ae,o),[p.memoizedState,o]},useRef:function(o){var l=yn();return o={current:o},l.memoizedState=o},useState:function(o){o=tb(o);var l=o.queue,d=ck.bind(null,Ae,l);return l.dispatch=d,[o.memoizedState,d]},useDebugValue:ib,useDeferredValue:function(o,l){var d=yn();return sb(d,o,l)},useTransition:function(){var o=tb(!1);return o=sk.bind(null,Ae,o.queue,!0,!1),yn().memoizedState=o,[!1,o]},useSyncExternalStore:function(o,l,d){var p=Ae,y=yn();if(Ve){if(d===void 0)throw Error(r(407));d=d()}else{if(d=l(),it===null)throw Error(r(349));(Fe&127)!==0||Pv(p,l,d)}y.memoizedState=d;var v={value:d,getSnapshot:l};return y.queue=v,Yv(Lv.bind(null,p,v,o),[o]),p.flags|=2048,Ja(9,{destroy:void 0},Ov.bind(null,p,v,d,l),null),d},useId:function(){var o=yn(),l=it.identifierPrefix;if(Ve){var d=zr,p=Lr;d=(p&~(1<<32-_n(p)-1)).toString(32)+d,l="_"+l+"R_"+d,d=lf++,0<d&&(l+="H"+d.toString(32)),l+="_"}else d=ON++,l="_"+l+"r_"+d.toString(32)+"_";return o.memoizedState=l},useHostTransitionStatus:ab,useFormState:Uv,useActionState:Uv,useOptimistic:function(o){var l=yn();l.memoizedState=l.baseState=o;var d={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return l.queue=d,l=lb.bind(null,Ae,!0,d),d.dispatch=l,[o,l]},useMemoCache:Jg,useCacheRefresh:function(){return yn().memoizedState=KN.bind(null,Ae)},useEffectEvent:function(o){var l=yn(),d={impl:o};return l.memoizedState=d,function(){if((We&2)!==0)throw Error(r(440));return d.impl.apply(void 0,arguments)}}},ub={readContext:Xt,use:cf,useCallback:nk,useContext:Xt,useEffect:rb,useImperativeHandle:tk,useInsertionEffect:Jv,useLayoutEffect:Zv,useMemo:rk,useReducer:df,useRef:Qv,useState:function(){return df(li)},useDebugValue:ib,useDeferredValue:function(o,l){var d=Dt();return ik(d,et.memoizedState,o,l)},useTransition:function(){var o=df(li)[0],l=Dt().memoizedState;return[typeof o=="boolean"?o:Eu(o),l]},useSyncExternalStore:Nv,useId:lk,useHostTransitionStatus:ab,useFormState:qv,useActionState:qv,useOptimistic:function(o,l){var d=Dt();return jv(d,et,o,l)},useMemoCache:Jg,useCacheRefresh:uk};ub.useEffectEvent=Xv;var pk={readContext:Xt,use:cf,useCallback:nk,useContext:Xt,useEffect:rb,useImperativeHandle:tk,useInsertionEffect:Jv,useLayoutEffect:Zv,useMemo:rk,useReducer:eb,useRef:Qv,useState:function(){return eb(li)},useDebugValue:ib,useDeferredValue:function(o,l){var d=Dt();return et===null?sb(d,o,l):ik(d,et.memoizedState,o,l)},useTransition:function(){var o=eb(li)[0],l=Dt().memoizedState;return[typeof o=="boolean"?o:Eu(o),l]},useSyncExternalStore:Nv,useId:lk,useHostTransitionStatus:ab,useFormState:Wv,useActionState:Wv,useOptimistic:function(o,l){var d=Dt();return et!==null?jv(d,et,o,l):(d.baseState=o,[o,d.queue.dispatch])},useMemoCache:Jg,useCacheRefresh:uk};pk.useEffectEvent=Xv;function cb(o,l,d,p){l=o.memoizedState,d=d(p,l),d=d==null?l:m({},l,d),o.memoizedState=d,o.lanes===0&&(o.updateQueue.baseState=d)}var db={enqueueSetState:function(o,l,d){o=o._reactInternals;var p=Qn(),y=es(p);y.payload=l,d!=null&&(y.callback=d),l=ts(o,y,p),l!==null&&(Nn(l,o,p),xu(l,o,p))},enqueueReplaceState:function(o,l,d){o=o._reactInternals;var p=Qn(),y=es(p);y.tag=1,y.payload=l,d!=null&&(y.callback=d),l=ts(o,y,p),l!==null&&(Nn(l,o,p),xu(l,o,p))},enqueueForceUpdate:function(o,l){o=o._reactInternals;var d=Qn(),p=es(d);p.tag=2,l!=null&&(p.callback=l),l=ts(o,p,d),l!==null&&(Nn(l,o,d),xu(l,o,d))}};function mk(o,l,d,p,y,v,w){return o=o.stateNode,typeof o.shouldComponentUpdate=="function"?o.shouldComponentUpdate(p,v,w):l.prototype&&l.prototype.isPureReactComponent?!du(d,p)||!du(y,v):!0}function gk(o,l,d,p){o=l.state,typeof l.componentWillReceiveProps=="function"&&l.componentWillReceiveProps(d,p),typeof l.UNSAFE_componentWillReceiveProps=="function"&&l.UNSAFE_componentWillReceiveProps(d,p),l.state!==o&&db.enqueueReplaceState(l,l.state,null)}function Eo(o,l){var d=l;if("ref"in l){d={};for(var p in l)p!=="ref"&&(d[p]=l[p])}if(o=o.defaultProps){d===l&&(d=m({},d));for(var y in o)d[y]===void 0&&(d[y]=o[y])}return d}function bk(o){Ud(o)}function yk(o){console.error(o)}function xk(o){Ud(o)}function mf(o,l){try{var d=o.onUncaughtError;d(l.value,{componentStack:l.stack})}catch(p){setTimeout(function(){throw p})}}function vk(o,l,d){try{var p=o.onCaughtError;p(d.value,{componentStack:d.stack,errorBoundary:l.tag===1?l.stateNode:null})}catch(y){setTimeout(function(){throw y})}}function fb(o,l,d){return d=es(d),d.tag=3,d.payload={element:null},d.callback=function(){mf(o,l)},d}function kk(o){return o=es(o),o.tag=3,o}function Ck(o,l,d,p){var y=d.type.getDerivedStateFromError;if(typeof y=="function"){var v=p.value;o.payload=function(){return y(v)},o.callback=function(){vk(l,d,p)}}var w=d.stateNode;w!==null&&typeof w.componentDidCatch=="function"&&(o.callback=function(){vk(l,d,p),typeof y!="function"&&(ls===null?ls=new Set([this]):ls.add(this));var R=p.stack;this.componentDidCatch(p.value,{componentStack:R!==null?R:""})})}function VN(o,l,d,p,y){if(d.flags|=32768,p!==null&&typeof p=="object"&&typeof p.then=="function"){if(l=d.alternate,l!==null&&Ha(l,d,y,!0),d=Un.current,d!==null){switch(d.tag){case 31:case 13:return ar===null?$f():d.alternate===null&&xt===0&&(xt=3),d.flags&=-257,d.flags|=65536,d.lanes=y,p===tf?d.flags|=16384:(l=d.updateQueue,l===null?d.updateQueue=new Set([p]):l.add(p),zb(o,p,y)),!1;case 22:return d.flags|=65536,p===tf?d.flags|=16384:(l=d.updateQueue,l===null?(l={transitions:null,markerInstances:null,retryQueue:new Set([p])},d.updateQueue=l):(d=l.retryQueue,d===null?l.retryQueue=new Set([p]):d.add(p)),zb(o,p,y)),!1}throw Error(r(435,d.tag))}return zb(o,p,y),$f(),!1}if(Ve)return l=Un.current,l!==null?((l.flags&65536)===0&&(l.flags|=256),l.flags|=65536,l.lanes=y,p!==Mg&&(o=Error(r(422),{cause:p}),pu(rr(o,d)))):(p!==Mg&&(l=Error(r(423),{cause:p}),pu(rr(l,d))),o=o.current.alternate,o.flags|=65536,y&=-y,o.lanes|=y,p=rr(p,d),y=fb(o.stateNode,p,y),_g(o,y),xt!==4&&(xt=2)),!1;var v=Error(r(520),{cause:p});if(v=rr(v,d),Nu===null?Nu=[v]:Nu.push(v),xt!==4&&(xt=2),l===null)return!0;p=rr(p,d),d=l;do{switch(d.tag){case 3:return d.flags|=65536,o=y&-y,d.lanes|=o,o=fb(d.stateNode,p,o),_g(d,o),!1;case 1:if(l=d.type,v=d.stateNode,(d.flags&128)===0&&(typeof l.getDerivedStateFromError=="function"||v!==null&&typeof v.componentDidCatch=="function"&&(ls===null||!ls.has(v))))return d.flags|=65536,y&=-y,d.lanes|=y,y=kk(y),Ck(y,o,d,p),_g(d,y),!1}d=d.return}while(d!==null);return!1}var hb=Error(r(461)),At=!1;function Jt(o,l,d,p){l.child=o===null?wv(l,null,d,p):ko(l,o.child,d,p)}function Ek(o,l,d,p,y){d=d.render;var v=l.ref;if("ref"in p){var w={};for(var R in p)R!=="ref"&&(w[R]=p[R])}else w=p;return bo(l),p=Wg(o,l,d,w,v,y),R=Qg(),o!==null&&!At?(Yg(o,l,y),ui(o,l,y)):(Ve&&R&&Ag(l),l.flags|=1,Jt(o,l,p,y),l.child)}function Dk(o,l,d,p,y){if(o===null){var v=d.type;return typeof v=="function"&&!wg(v)&&v.defaultProps===void 0&&d.compare===null?(l.tag=15,l.type=v,Sk(o,l,v,p,y)):(o=Qd(d.type,null,p,l,l.mode,y),o.ref=l.ref,o.return=l,l.child=o)}if(v=o.child,!kb(o,y)){var w=v.memoizedProps;if(d=d.compare,d=d!==null?d:du,d(w,p)&&o.ref===l.ref)return ui(o,l,y)}return l.flags|=1,o=ri(v,p),o.ref=l.ref,o.return=l,l.child=o}function Sk(o,l,d,p,y){if(o!==null){var v=o.memoizedProps;if(du(v,p)&&o.ref===l.ref)if(At=!1,l.pendingProps=p=v,kb(o,y))(o.flags&131072)!==0&&(At=!0);else return l.lanes=o.lanes,ui(o,l,y)}return pb(o,l,d,p,y)}function wk(o,l,d,p){var y=p.children,v=o!==null?o.memoizedState:null;if(o===null&&l.stateNode===null&&(l.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),p.mode==="hidden"){if((l.flags&128)!==0){if(v=v!==null?v.baseLanes|d:d,o!==null){for(p=l.child=o.child,y=0;p!==null;)y=y|p.lanes|p.childLanes,p=p.sibling;p=y&~v}else p=0,l.child=null;return $k(o,l,v,d,p)}if((d&536870912)!==0)l.memoizedState={baseLanes:0,cachePool:null},o!==null&&Zd(l,v!==null?v.cachePool:null),v!==null?Av(l,v):Hg(),Bv(l);else return p=l.lanes=536870912,$k(o,l,v!==null?v.baseLanes|d:d,d,p)}else v!==null?(Zd(l,v.cachePool),Av(l,v),rs(),l.memoizedState=null):(o!==null&&Zd(l,null),Hg(),rs());return Jt(o,l,y,d),l.child}function wu(o,l){return o!==null&&o.tag===22||l.stateNode!==null||(l.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),l.sibling}function $k(o,l,d,p,y){var v=Ig();return v=v===null?null:{parent:$t._currentValue,pool:v},l.memoizedState={baseLanes:d,cachePool:v},o!==null&&Zd(l,null),Hg(),Bv(l),o!==null&&Ha(o,l,p,!0),l.childLanes=y,null}function gf(o,l){return l=yf({mode:l.mode,children:l.children},o.mode),l.ref=o.ref,o.child=l,l.return=o,l}function Tk(o,l,d){return ko(l,o.child,null,d),o=gf(l,l.pendingProps),o.flags|=2,qn(l),l.memoizedState=null,o}function HN(o,l,d){var p=l.pendingProps,y=(l.flags&128)!==0;if(l.flags&=-129,o===null){if(Ve){if(p.mode==="hidden")return o=gf(l,p),l.lanes=536870912,wu(null,o);if(qg(l),(o=ct)?(o=F5(o,or),o=o!==null&&o.data==="&"?o:null,o!==null&&(l.memoizedState={dehydrated:o,treeContext:Qi!==null?{id:Lr,overflow:zr}:null,retryLane:536870912,hydrationErrors:null},d=dv(o),d.return=l,l.child=d,Yt=l,ct=null)):o=null,o===null)throw Xi(l);return l.lanes=536870912,null}return gf(l,p)}var v=o.memoizedState;if(v!==null){var w=v.dehydrated;if(qg(l),y)if(l.flags&256)l.flags&=-257,l=Tk(o,l,d);else if(l.memoizedState!==null)l.child=o.child,l.flags|=128,l=null;else throw Error(r(558));else if(At||Ha(o,l,d,!1),y=(d&o.childLanes)!==0,At||y){if(p=it,p!==null&&(w=y1(p,d),w!==0&&w!==v.retryLane))throw v.retryLane=w,ho(o,w),Nn(p,o,w),hb;$f(),l=Tk(o,l,d)}else o=v.treeContext,ct=lr(w.nextSibling),Yt=l,Ve=!0,Yi=null,or=!1,o!==null&&pv(l,o),l=gf(l,p),l.flags|=4096;return l}return o=ri(o.child,{mode:p.mode,children:p.children}),o.ref=l.ref,l.child=o,o.return=l,o}function bf(o,l){var d=l.ref;if(d===null)o!==null&&o.ref!==null&&(l.flags|=4194816);else{if(typeof d!="function"&&typeof d!="object")throw Error(r(284));(o===null||o.ref!==d)&&(l.flags|=4194816)}}function pb(o,l,d,p,y){return bo(l),d=Wg(o,l,d,p,void 0,y),p=Qg(),o!==null&&!At?(Yg(o,l,y),ui(o,l,y)):(Ve&&p&&Ag(l),l.flags|=1,Jt(o,l,d,y),l.child)}function Ak(o,l,d,p,y,v){return bo(l),l.updateQueue=null,d=Rv(l,p,d,y),Mv(o),p=Qg(),o!==null&&!At?(Yg(o,l,v),ui(o,l,v)):(Ve&&p&&Ag(l),l.flags|=1,Jt(o,l,d,v),l.child)}function Bk(o,l,d,p,y){if(bo(l),l.stateNode===null){var v=Fa,w=d.contextType;typeof w=="object"&&w!==null&&(v=Xt(w)),v=new d(p,v),l.memoizedState=v.state!==null&&v.state!==void 0?v.state:null,v.updater=db,l.stateNode=v,v._reactInternals=l,v=l.stateNode,v.props=p,v.state=l.memoizedState,v.refs={},Fg(l),w=d.contextType,v.context=typeof w=="object"&&w!==null?Xt(w):Fa,v.state=l.memoizedState,w=d.getDerivedStateFromProps,typeof w=="function"&&(cb(l,d,w,p),v.state=l.memoizedState),typeof d.getDerivedStateFromProps=="function"||typeof v.getSnapshotBeforeUpdate=="function"||typeof v.UNSAFE_componentWillMount!="function"&&typeof v.componentWillMount!="function"||(w=v.state,typeof v.componentWillMount=="function"&&v.componentWillMount(),typeof v.UNSAFE_componentWillMount=="function"&&v.UNSAFE_componentWillMount(),w!==v.state&&db.enqueueReplaceState(v,v.state,null),ku(l,p,v,y),vu(),v.state=l.memoizedState),typeof v.componentDidMount=="function"&&(l.flags|=4194308),p=!0}else if(o===null){v=l.stateNode;var R=l.memoizedProps,I=Eo(d,R);v.props=I;var X=v.context,ie=d.contextType;w=Fa,typeof ie=="object"&&ie!==null&&(w=Xt(ie));var oe=d.getDerivedStateFromProps;ie=typeof oe=="function"||typeof v.getSnapshotBeforeUpdate=="function",R=l.pendingProps!==R,ie||typeof v.UNSAFE_componentWillReceiveProps!="function"&&typeof v.componentWillReceiveProps!="function"||(R||X!==w)&&gk(l,v,p,w),Zi=!1;var J=l.memoizedState;v.state=J,ku(l,p,v,y),vu(),X=l.memoizedState,R||J!==X||Zi?(typeof oe=="function"&&(cb(l,d,oe,p),X=l.memoizedState),(I=Zi||mk(l,d,I,p,J,X,w))?(ie||typeof v.UNSAFE_componentWillMount!="function"&&typeof v.componentWillMount!="function"||(typeof v.componentWillMount=="function"&&v.componentWillMount(),typeof v.UNSAFE_componentWillMount=="function"&&v.UNSAFE_componentWillMount()),typeof v.componentDidMount=="function"&&(l.flags|=4194308)):(typeof v.componentDidMount=="function"&&(l.flags|=4194308),l.memoizedProps=p,l.memoizedState=X),v.props=p,v.state=X,v.context=w,p=I):(typeof v.componentDidMount=="function"&&(l.flags|=4194308),p=!1)}else{v=l.stateNode,Kg(o,l),w=l.memoizedProps,ie=Eo(d,w),v.props=ie,oe=l.pendingProps,J=v.context,X=d.contextType,I=Fa,typeof X=="object"&&X!==null&&(I=Xt(X)),R=d.getDerivedStateFromProps,(X=typeof R=="function"||typeof v.getSnapshotBeforeUpdate=="function")||typeof v.UNSAFE_componentWillReceiveProps!="function"&&typeof v.componentWillReceiveProps!="function"||(w!==oe||J!==I)&&gk(l,v,p,I),Zi=!1,J=l.memoizedState,v.state=J,ku(l,p,v,y),vu();var ee=l.memoizedState;w!==oe||J!==ee||Zi||o!==null&&o.dependencies!==null&&Xd(o.dependencies)?(typeof R=="function"&&(cb(l,d,R,p),ee=l.memoizedState),(ie=Zi||mk(l,d,ie,p,J,ee,I)||o!==null&&o.dependencies!==null&&Xd(o.dependencies))?(X||typeof v.UNSAFE_componentWillUpdate!="function"&&typeof v.componentWillUpdate!="function"||(typeof v.componentWillUpdate=="function"&&v.componentWillUpdate(p,ee,I),typeof v.UNSAFE_componentWillUpdate=="function"&&v.UNSAFE_componentWillUpdate(p,ee,I)),typeof v.componentDidUpdate=="function"&&(l.flags|=4),typeof v.getSnapshotBeforeUpdate=="function"&&(l.flags|=1024)):(typeof v.componentDidUpdate!="function"||w===o.memoizedProps&&J===o.memoizedState||(l.flags|=4),typeof v.getSnapshotBeforeUpdate!="function"||w===o.memoizedProps&&J===o.memoizedState||(l.flags|=1024),l.memoizedProps=p,l.memoizedState=ee),v.props=p,v.state=ee,v.context=I,p=ie):(typeof v.componentDidUpdate!="function"||w===o.memoizedProps&&J===o.memoizedState||(l.flags|=4),typeof v.getSnapshotBeforeUpdate!="function"||w===o.memoizedProps&&J===o.memoizedState||(l.flags|=1024),p=!1)}return v=p,bf(o,l),p=(l.flags&128)!==0,v||p?(v=l.stateNode,d=p&&typeof d.getDerivedStateFromError!="function"?null:v.render(),l.flags|=1,o!==null&&p?(l.child=ko(l,o.child,null,y),l.child=ko(l,null,d,y)):Jt(o,l,d,y),l.memoizedState=v.state,o=l.child):o=ui(o,l,y),o}function Mk(o,l,d,p){return mo(),l.flags|=256,Jt(o,l,d,p),l.child}var mb={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function gb(o){return{baseLanes:o,cachePool:vv()}}function bb(o,l,d){return o=o!==null?o.childLanes&~d:0,l&&(o|=Wn),o}function Rk(o,l,d){var p=l.pendingProps,y=!1,v=(l.flags&128)!==0,w;if((w=v)||(w=o!==null&&o.memoizedState===null?!1:(Et.current&2)!==0),w&&(y=!0,l.flags&=-129),w=(l.flags&32)!==0,l.flags&=-33,o===null){if(Ve){if(y?ns(l):rs(),(o=ct)?(o=F5(o,or),o=o!==null&&o.data!=="&"?o:null,o!==null&&(l.memoizedState={dehydrated:o,treeContext:Qi!==null?{id:Lr,overflow:zr}:null,retryLane:536870912,hydrationErrors:null},d=dv(o),d.return=l,l.child=d,Yt=l,ct=null)):o=null,o===null)throw Xi(l);return Zb(o)?l.lanes=32:l.lanes=536870912,null}var R=p.children;return p=p.fallback,y?(rs(),y=l.mode,R=yf({mode:"hidden",children:R},y),p=po(p,y,d,null),R.return=l,p.return=l,R.sibling=p,l.child=R,p=l.child,p.memoizedState=gb(d),p.childLanes=bb(o,w,d),l.memoizedState=mb,wu(null,p)):(ns(l),yb(l,R))}var I=o.memoizedState;if(I!==null&&(R=I.dehydrated,R!==null)){if(v)l.flags&256?(ns(l),l.flags&=-257,l=xb(o,l,d)):l.memoizedState!==null?(rs(),l.child=o.child,l.flags|=128,l=null):(rs(),R=p.fallback,y=l.mode,p=yf({mode:"visible",children:p.children},y),R=po(R,y,d,null),R.flags|=2,p.return=l,R.return=l,p.sibling=R,l.child=p,ko(l,o.child,null,d),p=l.child,p.memoizedState=gb(d),p.childLanes=bb(o,w,d),l.memoizedState=mb,l=wu(null,p));else if(ns(l),Zb(R)){if(w=R.nextSibling&&R.nextSibling.dataset,w)var X=w.dgst;w=X,p=Error(r(419)),p.stack="",p.digest=w,pu({value:p,source:null,stack:null}),l=xb(o,l,d)}else if(At||Ha(o,l,d,!1),w=(d&o.childLanes)!==0,At||w){if(w=it,w!==null&&(p=y1(w,d),p!==0&&p!==I.retryLane))throw I.retryLane=p,ho(o,p),Nn(w,o,p),hb;Jb(R)||$f(),l=xb(o,l,d)}else Jb(R)?(l.flags|=192,l.child=o.child,l=null):(o=I.treeContext,ct=lr(R.nextSibling),Yt=l,Ve=!0,Yi=null,or=!1,o!==null&&pv(l,o),l=yb(l,p.children),l.flags|=4096);return l}return y?(rs(),R=p.fallback,y=l.mode,I=o.child,X=I.sibling,p=ri(I,{mode:"hidden",children:p.children}),p.subtreeFlags=I.subtreeFlags&65011712,X!==null?R=ri(X,R):(R=po(R,y,d,null),R.flags|=2),R.return=l,p.return=l,p.sibling=R,l.child=p,wu(null,p),p=l.child,R=o.child.memoizedState,R===null?R=gb(d):(y=R.cachePool,y!==null?(I=$t._currentValue,y=y.parent!==I?{parent:I,pool:I}:y):y=vv(),R={baseLanes:R.baseLanes|d,cachePool:y}),p.memoizedState=R,p.childLanes=bb(o,w,d),l.memoizedState=mb,wu(o.child,p)):(ns(l),d=o.child,o=d.sibling,d=ri(d,{mode:"visible",children:p.children}),d.return=l,d.sibling=null,o!==null&&(w=l.deletions,w===null?(l.deletions=[o],l.flags|=16):w.push(o)),l.child=d,l.memoizedState=null,d)}function yb(o,l){return l=yf({mode:"visible",children:l},o.mode),l.return=o,o.child=l}function yf(o,l){return o=Hn(22,o,null,l),o.lanes=0,o}function xb(o,l,d){return ko(l,o.child,null,d),o=yb(l,l.pendingProps.children),o.flags|=2,l.memoizedState=null,o}function Nk(o,l,d){o.lanes|=l;var p=o.alternate;p!==null&&(p.lanes|=l),Pg(o.return,l,d)}function vb(o,l,d,p,y,v){var w=o.memoizedState;w===null?o.memoizedState={isBackwards:l,rendering:null,renderingStartTime:0,last:p,tail:d,tailMode:y,treeForkCount:v}:(w.isBackwards=l,w.rendering=null,w.renderingStartTime=0,w.last=p,w.tail=d,w.tailMode=y,w.treeForkCount=v)}function Pk(o,l,d){var p=l.pendingProps,y=p.revealOrder,v=p.tail;p=p.children;var w=Et.current,R=(w&2)!==0;if(R?(w=w&1|2,l.flags|=128):w&=1,re(Et,w),Jt(o,l,p,d),p=Ve?hu:0,!R&&o!==null&&(o.flags&128)!==0)e:for(o=l.child;o!==null;){if(o.tag===13)o.memoizedState!==null&&Nk(o,d,l);else if(o.tag===19)Nk(o,d,l);else if(o.child!==null){o.child.return=o,o=o.child;continue}if(o===l)break e;for(;o.sibling===null;){if(o.return===null||o.return===l)break e;o=o.return}o.sibling.return=o.return,o=o.sibling}switch(y){case"forwards":for(d=l.child,y=null;d!==null;)o=d.alternate,o!==null&&of(o)===null&&(y=d),d=d.sibling;d=y,d===null?(y=l.child,l.child=null):(y=d.sibling,d.sibling=null),vb(l,!1,y,d,v,p);break;case"backwards":case"unstable_legacy-backwards":for(d=null,y=l.child,l.child=null;y!==null;){if(o=y.alternate,o!==null&&of(o)===null){l.child=y;break}o=y.sibling,y.sibling=d,d=y,y=o}vb(l,!0,d,null,v,p);break;case"together":vb(l,!1,null,null,void 0,p);break;default:l.memoizedState=null}return l.child}function ui(o,l,d){if(o!==null&&(l.dependencies=o.dependencies),as|=l.lanes,(d&l.childLanes)===0)if(o!==null){if(Ha(o,l,d,!1),(d&l.childLanes)===0)return null}else return null;if(o!==null&&l.child!==o.child)throw Error(r(153));if(l.child!==null){for(o=l.child,d=ri(o,o.pendingProps),l.child=d,d.return=l;o.sibling!==null;)o=o.sibling,d=d.sibling=ri(o,o.pendingProps),d.return=l;d.sibling=null}return l.child}function kb(o,l){return(o.lanes&l)!==0?!0:(o=o.dependencies,!!(o!==null&&Xd(o)))}function UN(o,l,d){switch(l.tag){case 3:Ue(l,l.stateNode.containerInfo),Ji(l,$t,o.memoizedState.cache),mo();break;case 27:case 5:wn(l);break;case 4:Ue(l,l.stateNode.containerInfo);break;case 10:Ji(l,l.type,l.memoizedProps.value);break;case 31:if(l.memoizedState!==null)return l.flags|=128,qg(l),null;break;case 13:var p=l.memoizedState;if(p!==null)return p.dehydrated!==null?(ns(l),l.flags|=128,null):(d&l.child.childLanes)!==0?Rk(o,l,d):(ns(l),o=ui(o,l,d),o!==null?o.sibling:null);ns(l);break;case 19:var y=(o.flags&128)!==0;if(p=(d&l.childLanes)!==0,p||(Ha(o,l,d,!1),p=(d&l.childLanes)!==0),y){if(p)return Pk(o,l,d);l.flags|=128}if(y=l.memoizedState,y!==null&&(y.rendering=null,y.tail=null,y.lastEffect=null),re(Et,Et.current),p)break;return null;case 22:return l.lanes=0,wk(o,l,d,l.pendingProps);case 24:Ji(l,$t,o.memoizedState.cache)}return ui(o,l,d)}function Ok(o,l,d){if(o!==null)if(o.memoizedProps!==l.pendingProps)At=!0;else{if(!kb(o,d)&&(l.flags&128)===0)return At=!1,UN(o,l,d);At=(o.flags&131072)!==0}else At=!1,Ve&&(l.flags&1048576)!==0&&hv(l,hu,l.index);switch(l.lanes=0,l.tag){case 16:e:{var p=l.pendingProps;if(o=xo(l.elementType),l.type=o,typeof o=="function")wg(o)?(p=Eo(o,p),l.tag=1,l=Bk(null,l,o,p,d)):(l.tag=0,l=pb(null,l,o,p,d));else{if(o!=null){var y=o.$$typeof;if(y===A){l.tag=11,l=Ek(null,l,o,p,d);break e}else if(y===M){l.tag=14,l=Dk(null,l,o,p,d);break e}}throw l=F(o)||o,Error(r(306,l,""))}}return l;case 0:return pb(o,l,l.type,l.pendingProps,d);case 1:return p=l.type,y=Eo(p,l.pendingProps),Bk(o,l,p,y,d);case 3:e:{if(Ue(l,l.stateNode.containerInfo),o===null)throw Error(r(387));p=l.pendingProps;var v=l.memoizedState;y=v.element,Kg(o,l),ku(l,p,null,d);var w=l.memoizedState;if(p=w.cache,Ji(l,$t,p),p!==v.cache&&Og(l,[$t],d,!0),vu(),p=w.element,v.isDehydrated)if(v={element:p,isDehydrated:!1,cache:w.cache},l.updateQueue.baseState=v,l.memoizedState=v,l.flags&256){l=Mk(o,l,p,d);break e}else if(p!==y){y=rr(Error(r(424)),l),pu(y),l=Mk(o,l,p,d);break e}else for(o=l.stateNode.containerInfo,o.nodeType===9?o=o.body:o=o.nodeName==="HTML"?o.ownerDocument.body:o,ct=lr(o.firstChild),Yt=l,Ve=!0,Yi=null,or=!0,d=wv(l,null,p,d),l.child=d;d;)d.flags=d.flags&-3|4096,d=d.sibling;else{if(mo(),p===y){l=ui(o,l,d);break e}Jt(o,l,p,d)}l=l.child}return l;case 26:return bf(o,l),o===null?(d=q5(l.type,null,l.pendingProps,null))?l.memoizedState=d:Ve||(d=l.type,o=l.pendingProps,p=Pf(he.current).createElement(d),p[Qt]=l,p[$n]=o,Zt(p,d,o),Vt(p),l.stateNode=p):l.memoizedState=q5(l.type,o.memoizedProps,l.pendingProps,o.memoizedState),null;case 27:return wn(l),o===null&&Ve&&(p=l.stateNode=V5(l.type,l.pendingProps,he.current),Yt=l,or=!0,y=ct,fs(l.type)?(e0=y,ct=lr(p.firstChild)):ct=y),Jt(o,l,l.pendingProps.children,d),bf(o,l),o===null&&(l.flags|=4194304),l.child;case 5:return o===null&&Ve&&((y=p=ct)&&(p=kP(p,l.type,l.pendingProps,or),p!==null?(l.stateNode=p,Yt=l,ct=lr(p.firstChild),or=!1,y=!0):y=!1),y||Xi(l)),wn(l),y=l.type,v=l.pendingProps,w=o!==null?o.memoizedProps:null,p=v.children,Qb(y,v)?p=null:w!==null&&Qb(y,w)&&(l.flags|=32),l.memoizedState!==null&&(y=Wg(o,l,LN,null,null,d),Ku._currentValue=y),bf(o,l),Jt(o,l,p,d),l.child;case 6:return o===null&&Ve&&((o=d=ct)&&(d=CP(d,l.pendingProps,or),d!==null?(l.stateNode=d,Yt=l,ct=null,o=!0):o=!1),o||Xi(l)),null;case 13:return Rk(o,l,d);case 4:return Ue(l,l.stateNode.containerInfo),p=l.pendingProps,o===null?l.child=ko(l,null,p,d):Jt(o,l,p,d),l.child;case 11:return Ek(o,l,l.type,l.pendingProps,d);case 7:return Jt(o,l,l.pendingProps,d),l.child;case 8:return Jt(o,l,l.pendingProps.children,d),l.child;case 12:return Jt(o,l,l.pendingProps.children,d),l.child;case 10:return p=l.pendingProps,Ji(l,l.type,p.value),Jt(o,l,p.children,d),l.child;case 9:return y=l.type._context,p=l.pendingProps.children,bo(l),y=Xt(y),p=p(y),l.flags|=1,Jt(o,l,p,d),l.child;case 14:return Dk(o,l,l.type,l.pendingProps,d);case 15:return Sk(o,l,l.type,l.pendingProps,d);case 19:return Pk(o,l,d);case 31:return HN(o,l,d);case 22:return wk(o,l,d,l.pendingProps);case 24:return bo(l),p=Xt($t),o===null?(y=Ig(),y===null&&(y=it,v=Lg(),y.pooledCache=v,v.refCount++,v!==null&&(y.pooledCacheLanes|=d),y=v),l.memoizedState={parent:p,cache:y},Fg(l),Ji(l,$t,y)):((o.lanes&d)!==0&&(Kg(o,l),ku(l,null,null,d),vu()),y=o.memoizedState,v=l.memoizedState,y.parent!==p?(y={parent:p,cache:p},l.memoizedState=y,l.lanes===0&&(l.memoizedState=l.updateQueue.baseState=y),Ji(l,$t,p)):(p=v.cache,Ji(l,$t,p),p!==y.cache&&Og(l,[$t],d,!0))),Jt(o,l,l.pendingProps.children,d),l.child;case 29:throw l.pendingProps}throw Error(r(156,l.tag))}function ci(o){o.flags|=4}function Cb(o,l,d,p,y){if((l=(o.mode&32)!==0)&&(l=!1),l){if(o.flags|=16777216,(y&335544128)===y)if(o.stateNode.complete)o.flags|=8192;else if(l5())o.flags|=8192;else throw vo=tf,jg}else o.flags&=-16777217}function Lk(o,l){if(l.type!=="stylesheet"||(l.state.loading&4)!==0)o.flags&=-16777217;else if(o.flags|=16777216,!X5(l))if(l5())o.flags|=8192;else throw vo=tf,jg}function xf(o,l){l!==null&&(o.flags|=4),o.flags&16384&&(l=o.tag!==22?m1():536870912,o.lanes|=l,nl|=l)}function $u(o,l){if(!Ve)switch(o.tailMode){case"hidden":l=o.tail;for(var d=null;l!==null;)l.alternate!==null&&(d=l),l=l.sibling;d===null?o.tail=null:d.sibling=null;break;case"collapsed":d=o.tail;for(var p=null;d!==null;)d.alternate!==null&&(p=d),d=d.sibling;p===null?l||o.tail===null?o.tail=null:o.tail.sibling=null:p.sibling=null}}function dt(o){var l=o.alternate!==null&&o.alternate.child===o.child,d=0,p=0;if(l)for(var y=o.child;y!==null;)d|=y.lanes|y.childLanes,p|=y.subtreeFlags&65011712,p|=y.flags&65011712,y.return=o,y=y.sibling;else for(y=o.child;y!==null;)d|=y.lanes|y.childLanes,p|=y.subtreeFlags,p|=y.flags,y.return=o,y=y.sibling;return o.subtreeFlags|=p,o.childLanes=d,l}function qN(o,l,d){var p=l.pendingProps;switch(Bg(l),l.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return dt(l),null;case 1:return dt(l),null;case 3:return d=l.stateNode,p=null,o!==null&&(p=o.memoizedState.cache),l.memoizedState.cache!==p&&(l.flags|=2048),oi($t),Se(),d.pendingContext&&(d.context=d.pendingContext,d.pendingContext=null),(o===null||o.child===null)&&(Va(l)?ci(l):o===null||o.memoizedState.isDehydrated&&(l.flags&256)===0||(l.flags|=1024,Rg())),dt(l),null;case 26:var y=l.type,v=l.memoizedState;return o===null?(ci(l),v!==null?(dt(l),Lk(l,v)):(dt(l),Cb(l,y,null,p,d))):v?v!==o.memoizedState?(ci(l),dt(l),Lk(l,v)):(dt(l),l.flags&=-16777217):(o=o.memoizedProps,o!==p&&ci(l),dt(l),Cb(l,y,o,p,d)),null;case 27:if(an(l),d=he.current,y=l.type,o!==null&&l.stateNode!=null)o.memoizedProps!==p&&ci(l);else{if(!p){if(l.stateNode===null)throw Error(r(166));return dt(l),null}o=le.current,Va(l)?mv(l):(o=V5(y,p,d),l.stateNode=o,ci(l))}return dt(l),null;case 5:if(an(l),y=l.type,o!==null&&l.stateNode!=null)o.memoizedProps!==p&&ci(l);else{if(!p){if(l.stateNode===null)throw Error(r(166));return dt(l),null}if(v=le.current,Va(l))mv(l);else{var w=Pf(he.current);switch(v){case 1:v=w.createElementNS("http://www.w3.org/2000/svg",y);break;case 2:v=w.createElementNS("http://www.w3.org/1998/Math/MathML",y);break;default:switch(y){case"svg":v=w.createElementNS("http://www.w3.org/2000/svg",y);break;case"math":v=w.createElementNS("http://www.w3.org/1998/Math/MathML",y);break;case"script":v=w.createElement("div"),v.innerHTML="<script><\/script>",v=v.removeChild(v.firstChild);break;case"select":v=typeof p.is=="string"?w.createElement("select",{is:p.is}):w.createElement("select"),p.multiple?v.multiple=!0:p.size&&(v.size=p.size);break;default:v=typeof p.is=="string"?w.createElement(y,{is:p.is}):w.createElement(y)}}v[Qt]=l,v[$n]=p;e:for(w=l.child;w!==null;){if(w.tag===5||w.tag===6)v.appendChild(w.stateNode);else if(w.tag!==4&&w.tag!==27&&w.child!==null){w.child.return=w,w=w.child;continue}if(w===l)break e;for(;w.sibling===null;){if(w.return===null||w.return===l)break e;w=w.return}w.sibling.return=w.return,w=w.sibling}l.stateNode=v;e:switch(Zt(v,y,p),y){case"button":case"input":case"select":case"textarea":p=!!p.autoFocus;break e;case"img":p=!0;break e;default:p=!1}p&&ci(l)}}return dt(l),Cb(l,l.type,o===null?null:o.memoizedProps,l.pendingProps,d),null;case 6:if(o&&l.stateNode!=null)o.memoizedProps!==p&&ci(l);else{if(typeof p!="string"&&l.stateNode===null)throw Error(r(166));if(o=he.current,Va(l)){if(o=l.stateNode,d=l.memoizedProps,p=null,y=Yt,y!==null)switch(y.tag){case 27:case 5:p=y.memoizedProps}o[Qt]=l,o=!!(o.nodeValue===d||p!==null&&p.suppressHydrationWarning===!0||R5(o.nodeValue,d)),o||Xi(l,!0)}else o=Pf(o).createTextNode(p),o[Qt]=l,l.stateNode=o}return dt(l),null;case 31:if(d=l.memoizedState,o===null||o.memoizedState!==null){if(p=Va(l),d!==null){if(o===null){if(!p)throw Error(r(318));if(o=l.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(r(557));o[Qt]=l}else mo(),(l.flags&128)===0&&(l.memoizedState=null),l.flags|=4;dt(l),o=!1}else d=Rg(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=d),o=!0;if(!o)return l.flags&256?(qn(l),l):(qn(l),null);if((l.flags&128)!==0)throw Error(r(558))}return dt(l),null;case 13:if(p=l.memoizedState,o===null||o.memoizedState!==null&&o.memoizedState.dehydrated!==null){if(y=Va(l),p!==null&&p.dehydrated!==null){if(o===null){if(!y)throw Error(r(318));if(y=l.memoizedState,y=y!==null?y.dehydrated:null,!y)throw Error(r(317));y[Qt]=l}else mo(),(l.flags&128)===0&&(l.memoizedState=null),l.flags|=4;dt(l),y=!1}else y=Rg(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=y),y=!0;if(!y)return l.flags&256?(qn(l),l):(qn(l),null)}return qn(l),(l.flags&128)!==0?(l.lanes=d,l):(d=p!==null,o=o!==null&&o.memoizedState!==null,d&&(p=l.child,y=null,p.alternate!==null&&p.alternate.memoizedState!==null&&p.alternate.memoizedState.cachePool!==null&&(y=p.alternate.memoizedState.cachePool.pool),v=null,p.memoizedState!==null&&p.memoizedState.cachePool!==null&&(v=p.memoizedState.cachePool.pool),v!==y&&(p.flags|=2048)),d!==o&&d&&(l.child.flags|=8192),xf(l,l.updateQueue),dt(l),null);case 4:return Se(),o===null&&Hb(l.stateNode.containerInfo),dt(l),null;case 10:return oi(l.type),dt(l),null;case 19:if(H(Et),p=l.memoizedState,p===null)return dt(l),null;if(y=(l.flags&128)!==0,v=p.rendering,v===null)if(y)$u(p,!1);else{if(xt!==0||o!==null&&(o.flags&128)!==0)for(o=l.child;o!==null;){if(v=of(o),v!==null){for(l.flags|=128,$u(p,!1),o=v.updateQueue,l.updateQueue=o,xf(l,o),l.subtreeFlags=0,o=d,d=l.child;d!==null;)cv(d,o),d=d.sibling;return re(Et,Et.current&1|2),Ve&&ii(l,p.treeForkCount),l.child}o=o.sibling}p.tail!==null&&ln()>Df&&(l.flags|=128,y=!0,$u(p,!1),l.lanes=4194304)}else{if(!y)if(o=of(v),o!==null){if(l.flags|=128,y=!0,o=o.updateQueue,l.updateQueue=o,xf(l,o),$u(p,!0),p.tail===null&&p.tailMode==="hidden"&&!v.alternate&&!Ve)return dt(l),null}else 2*ln()-p.renderingStartTime>Df&&d!==536870912&&(l.flags|=128,y=!0,$u(p,!1),l.lanes=4194304);p.isBackwards?(v.sibling=l.child,l.child=v):(o=p.last,o!==null?o.sibling=v:l.child=v,p.last=v)}return p.tail!==null?(o=p.tail,p.rendering=o,p.tail=o.sibling,p.renderingStartTime=ln(),o.sibling=null,d=Et.current,re(Et,y?d&1|2:d&1),Ve&&ii(l,p.treeForkCount),o):(dt(l),null);case 22:case 23:return qn(l),Ug(),p=l.memoizedState!==null,o!==null?o.memoizedState!==null!==p&&(l.flags|=8192):p&&(l.flags|=8192),p?(d&536870912)!==0&&(l.flags&128)===0&&(dt(l),l.subtreeFlags&6&&(l.flags|=8192)):dt(l),d=l.updateQueue,d!==null&&xf(l,d.retryQueue),d=null,o!==null&&o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(d=o.memoizedState.cachePool.pool),p=null,l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(p=l.memoizedState.cachePool.pool),p!==d&&(l.flags|=2048),o!==null&&H(yo),null;case 24:return d=null,o!==null&&(d=o.memoizedState.cache),l.memoizedState.cache!==d&&(l.flags|=2048),oi($t),dt(l),null;case 25:return null;case 30:return null}throw Error(r(156,l.tag))}function GN(o,l){switch(Bg(l),l.tag){case 1:return o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 3:return oi($t),Se(),o=l.flags,(o&65536)!==0&&(o&128)===0?(l.flags=o&-65537|128,l):null;case 26:case 27:case 5:return an(l),null;case 31:if(l.memoizedState!==null){if(qn(l),l.alternate===null)throw Error(r(340));mo()}return o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 13:if(qn(l),o=l.memoizedState,o!==null&&o.dehydrated!==null){if(l.alternate===null)throw Error(r(340));mo()}return o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 19:return H(Et),null;case 4:return Se(),null;case 10:return oi(l.type),null;case 22:case 23:return qn(l),Ug(),o!==null&&H(yo),o=l.flags,o&65536?(l.flags=o&-65537|128,l):null;case 24:return oi($t),null;case 25:return null;default:return null}}function zk(o,l){switch(Bg(l),l.tag){case 3:oi($t),Se();break;case 26:case 27:case 5:an(l);break;case 4:Se();break;case 31:l.memoizedState!==null&&qn(l);break;case 13:qn(l);break;case 19:H(Et);break;case 10:oi(l.type);break;case 22:case 23:qn(l),Ug(),o!==null&&H(yo);break;case 24:oi($t)}}function Tu(o,l){try{var d=l.updateQueue,p=d!==null?d.lastEffect:null;if(p!==null){var y=p.next;d=y;do{if((d.tag&o)===o){p=void 0;var v=d.create,w=d.inst;p=v(),w.destroy=p}d=d.next}while(d!==y)}}catch(R){Xe(l,l.return,R)}}function is(o,l,d){try{var p=l.updateQueue,y=p!==null?p.lastEffect:null;if(y!==null){var v=y.next;p=v;do{if((p.tag&o)===o){var w=p.inst,R=w.destroy;if(R!==void 0){w.destroy=void 0,y=l;var I=d,X=R;try{X()}catch(ie){Xe(y,I,ie)}}}p=p.next}while(p!==v)}}catch(ie){Xe(l,l.return,ie)}}function Ik(o){var l=o.updateQueue;if(l!==null){var d=o.stateNode;try{Tv(l,d)}catch(p){Xe(o,o.return,p)}}}function jk(o,l,d){d.props=Eo(o.type,o.memoizedProps),d.state=o.memoizedState;try{d.componentWillUnmount()}catch(p){Xe(o,l,p)}}function Au(o,l){try{var d=o.ref;if(d!==null){switch(o.tag){case 26:case 27:case 5:var p=o.stateNode;break;case 30:p=o.stateNode;break;default:p=o.stateNode}typeof d=="function"?o.refCleanup=d(p):d.current=p}}catch(y){Xe(o,l,y)}}function Ir(o,l){var d=o.ref,p=o.refCleanup;if(d!==null)if(typeof p=="function")try{p()}catch(y){Xe(o,l,y)}finally{o.refCleanup=null,o=o.alternate,o!=null&&(o.refCleanup=null)}else if(typeof d=="function")try{d(null)}catch(y){Xe(o,l,y)}else d.current=null}function Fk(o){var l=o.type,d=o.memoizedProps,p=o.stateNode;try{e:switch(l){case"button":case"input":case"select":case"textarea":d.autoFocus&&p.focus();break e;case"img":d.src?p.src=d.src:d.srcSet&&(p.srcset=d.srcSet)}}catch(y){Xe(o,o.return,y)}}function Eb(o,l,d){try{var p=o.stateNode;mP(p,o.type,d,l),p[$n]=l}catch(y){Xe(o,o.return,y)}}function Kk(o){return o.tag===5||o.tag===3||o.tag===26||o.tag===27&&fs(o.type)||o.tag===4}function Db(o){e:for(;;){for(;o.sibling===null;){if(o.return===null||Kk(o.return))return null;o=o.return}for(o.sibling.return=o.return,o=o.sibling;o.tag!==5&&o.tag!==6&&o.tag!==18;){if(o.tag===27&&fs(o.type)||o.flags&2||o.child===null||o.tag===4)continue e;o.child.return=o,o=o.child}if(!(o.flags&2))return o.stateNode}}function Sb(o,l,d){var p=o.tag;if(p===5||p===6)o=o.stateNode,l?(d.nodeType===9?d.body:d.nodeName==="HTML"?d.ownerDocument.body:d).insertBefore(o,l):(l=d.nodeType===9?d.body:d.nodeName==="HTML"?d.ownerDocument.body:d,l.appendChild(o),d=d._reactRootContainer,d!=null||l.onclick!==null||(l.onclick=ti));else if(p!==4&&(p===27&&fs(o.type)&&(d=o.stateNode,l=null),o=o.child,o!==null))for(Sb(o,l,d),o=o.sibling;o!==null;)Sb(o,l,d),o=o.sibling}function vf(o,l,d){var p=o.tag;if(p===5||p===6)o=o.stateNode,l?d.insertBefore(o,l):d.appendChild(o);else if(p!==4&&(p===27&&fs(o.type)&&(d=o.stateNode),o=o.child,o!==null))for(vf(o,l,d),o=o.sibling;o!==null;)vf(o,l,d),o=o.sibling}function _k(o){var l=o.stateNode,d=o.memoizedProps;try{for(var p=o.type,y=l.attributes;y.length;)l.removeAttributeNode(y[0]);Zt(l,p,d),l[Qt]=o,l[$n]=d}catch(v){Xe(o,o.return,v)}}var di=!1,Bt=!1,wb=!1,Vk=typeof WeakSet=="function"?WeakSet:Set,Ht=null;function WN(o,l){if(o=o.containerInfo,Gb=Kf,o=tv(o),xg(o)){if("selectionStart"in o)var d={start:o.selectionStart,end:o.selectionEnd};else e:{d=(d=o.ownerDocument)&&d.defaultView||window;var p=d.getSelection&&d.getSelection();if(p&&p.rangeCount!==0){d=p.anchorNode;var y=p.anchorOffset,v=p.focusNode;p=p.focusOffset;try{d.nodeType,v.nodeType}catch{d=null;break e}var w=0,R=-1,I=-1,X=0,ie=0,oe=o,J=null;t:for(;;){for(var ee;oe!==d||y!==0&&oe.nodeType!==3||(R=w+y),oe!==v||p!==0&&oe.nodeType!==3||(I=w+p),oe.nodeType===3&&(w+=oe.nodeValue.length),(ee=oe.firstChild)!==null;)J=oe,oe=ee;for(;;){if(oe===o)break t;if(J===d&&++X===y&&(R=w),J===v&&++ie===p&&(I=w),(ee=oe.nextSibling)!==null)break;oe=J,J=oe.parentNode}oe=ee}d=R===-1||I===-1?null:{start:R,end:I}}else d=null}d=d||{start:0,end:0}}else d=null;for(Wb={focusedElem:o,selectionRange:d},Kf=!1,Ht=l;Ht!==null;)if(l=Ht,o=l.child,(l.subtreeFlags&1028)!==0&&o!==null)o.return=l,Ht=o;else for(;Ht!==null;){switch(l=Ht,v=l.alternate,o=l.flags,l.tag){case 0:if((o&4)!==0&&(o=l.updateQueue,o=o!==null?o.events:null,o!==null))for(d=0;d<o.length;d++)y=o[d],y.ref.impl=y.nextImpl;break;case 11:case 15:break;case 1:if((o&1024)!==0&&v!==null){o=void 0,d=l,y=v.memoizedProps,v=v.memoizedState,p=d.stateNode;try{var be=Eo(d.type,y);o=p.getSnapshotBeforeUpdate(be,v),p.__reactInternalSnapshotBeforeUpdate=o}catch(Ee){Xe(d,d.return,Ee)}}break;case 3:if((o&1024)!==0){if(o=l.stateNode.containerInfo,d=o.nodeType,d===9)Xb(o);else if(d===1)switch(o.nodeName){case"HEAD":case"HTML":case"BODY":Xb(o);break;default:o.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((o&1024)!==0)throw Error(r(163))}if(o=l.sibling,o!==null){o.return=l.return,Ht=o;break}Ht=l.return}}function Hk(o,l,d){var p=d.flags;switch(d.tag){case 0:case 11:case 15:hi(o,d),p&4&&Tu(5,d);break;case 1:if(hi(o,d),p&4)if(o=d.stateNode,l===null)try{o.componentDidMount()}catch(w){Xe(d,d.return,w)}else{var y=Eo(d.type,l.memoizedProps);l=l.memoizedState;try{o.componentDidUpdate(y,l,o.__reactInternalSnapshotBeforeUpdate)}catch(w){Xe(d,d.return,w)}}p&64&&Ik(d),p&512&&Au(d,d.return);break;case 3:if(hi(o,d),p&64&&(o=d.updateQueue,o!==null)){if(l=null,d.child!==null)switch(d.child.tag){case 27:case 5:l=d.child.stateNode;break;case 1:l=d.child.stateNode}try{Tv(o,l)}catch(w){Xe(d,d.return,w)}}break;case 27:l===null&&p&4&&_k(d);case 26:case 5:hi(o,d),l===null&&p&4&&Fk(d),p&512&&Au(d,d.return);break;case 12:hi(o,d);break;case 31:hi(o,d),p&4&&Gk(o,d);break;case 13:hi(o,d),p&4&&Wk(o,d),p&64&&(o=d.memoizedState,o!==null&&(o=o.dehydrated,o!==null&&(d=rP.bind(null,d),EP(o,d))));break;case 22:if(p=d.memoizedState!==null||di,!p){l=l!==null&&l.memoizedState!==null||Bt,y=di;var v=Bt;di=p,(Bt=l)&&!v?pi(o,d,(d.subtreeFlags&8772)!==0):hi(o,d),di=y,Bt=v}break;case 30:break;default:hi(o,d)}}function Uk(o){var l=o.alternate;l!==null&&(o.alternate=null,Uk(l)),o.child=null,o.deletions=null,o.sibling=null,o.tag===5&&(l=o.stateNode,l!==null&&ng(l)),o.stateNode=null,o.return=null,o.dependencies=null,o.memoizedProps=null,o.memoizedState=null,o.pendingProps=null,o.stateNode=null,o.updateQueue=null}var ht=null,An=!1;function fi(o,l,d){for(d=d.child;d!==null;)qk(o,l,d),d=d.sibling}function qk(o,l,d){if(Kn&&typeof Kn.onCommitFiberUnmount=="function")try{Kn.onCommitFiberUnmount(Zl,d)}catch{}switch(d.tag){case 26:Bt||Ir(d,l),fi(o,l,d),d.memoizedState?d.memoizedState.count--:d.stateNode&&(d=d.stateNode,d.parentNode.removeChild(d));break;case 27:Bt||Ir(d,l);var p=ht,y=An;fs(d.type)&&(ht=d.stateNode,An=!1),fi(o,l,d),Iu(d.stateNode),ht=p,An=y;break;case 5:Bt||Ir(d,l);case 6:if(p=ht,y=An,ht=null,fi(o,l,d),ht=p,An=y,ht!==null)if(An)try{(ht.nodeType===9?ht.body:ht.nodeName==="HTML"?ht.ownerDocument.body:ht).removeChild(d.stateNode)}catch(v){Xe(d,l,v)}else try{ht.removeChild(d.stateNode)}catch(v){Xe(d,l,v)}break;case 18:ht!==null&&(An?(o=ht,I5(o.nodeType===9?o.body:o.nodeName==="HTML"?o.ownerDocument.body:o,d.stateNode),cl(o)):I5(ht,d.stateNode));break;case 4:p=ht,y=An,ht=d.stateNode.containerInfo,An=!0,fi(o,l,d),ht=p,An=y;break;case 0:case 11:case 14:case 15:is(2,d,l),Bt||is(4,d,l),fi(o,l,d);break;case 1:Bt||(Ir(d,l),p=d.stateNode,typeof p.componentWillUnmount=="function"&&jk(d,l,p)),fi(o,l,d);break;case 21:fi(o,l,d);break;case 22:Bt=(p=Bt)||d.memoizedState!==null,fi(o,l,d),Bt=p;break;default:fi(o,l,d)}}function Gk(o,l){if(l.memoizedState===null&&(o=l.alternate,o!==null&&(o=o.memoizedState,o!==null))){o=o.dehydrated;try{cl(o)}catch(d){Xe(l,l.return,d)}}}function Wk(o,l){if(l.memoizedState===null&&(o=l.alternate,o!==null&&(o=o.memoizedState,o!==null&&(o=o.dehydrated,o!==null))))try{cl(o)}catch(d){Xe(l,l.return,d)}}function QN(o){switch(o.tag){case 31:case 13:case 19:var l=o.stateNode;return l===null&&(l=o.stateNode=new Vk),l;case 22:return o=o.stateNode,l=o._retryCache,l===null&&(l=o._retryCache=new Vk),l;default:throw Error(r(435,o.tag))}}function kf(o,l){var d=QN(o);l.forEach(function(p){if(!d.has(p)){d.add(p);var y=iP.bind(null,o,p);p.then(y,y)}})}function Bn(o,l){var d=l.deletions;if(d!==null)for(var p=0;p<d.length;p++){var y=d[p],v=o,w=l,R=w;e:for(;R!==null;){switch(R.tag){case 27:if(fs(R.type)){ht=R.stateNode,An=!1;break e}break;case 5:ht=R.stateNode,An=!1;break e;case 3:case 4:ht=R.stateNode.containerInfo,An=!0;break e}R=R.return}if(ht===null)throw Error(r(160));qk(v,w,y),ht=null,An=!1,v=y.alternate,v!==null&&(v.return=null),y.return=null}if(l.subtreeFlags&13886)for(l=l.child;l!==null;)Qk(l,o),l=l.sibling}var Cr=null;function Qk(o,l){var d=o.alternate,p=o.flags;switch(o.tag){case 0:case 11:case 14:case 15:Bn(l,o),Mn(o),p&4&&(is(3,o,o.return),Tu(3,o),is(5,o,o.return));break;case 1:Bn(l,o),Mn(o),p&512&&(Bt||d===null||Ir(d,d.return)),p&64&&di&&(o=o.updateQueue,o!==null&&(p=o.callbacks,p!==null&&(d=o.shared.hiddenCallbacks,o.shared.hiddenCallbacks=d===null?p:d.concat(p))));break;case 26:var y=Cr;if(Bn(l,o),Mn(o),p&512&&(Bt||d===null||Ir(d,d.return)),p&4){var v=d!==null?d.memoizedState:null;if(p=o.memoizedState,d===null)if(p===null)if(o.stateNode===null){e:{p=o.type,d=o.memoizedProps,y=y.ownerDocument||y;t:switch(p){case"title":v=y.getElementsByTagName("title")[0],(!v||v[nu]||v[Qt]||v.namespaceURI==="http://www.w3.org/2000/svg"||v.hasAttribute("itemprop"))&&(v=y.createElement(p),y.head.insertBefore(v,y.querySelector("head > title"))),Zt(v,p,d),v[Qt]=o,Vt(v),p=v;break e;case"link":var w=Q5("link","href",y).get(p+(d.href||""));if(w){for(var R=0;R<w.length;R++)if(v=w[R],v.getAttribute("href")===(d.href==null||d.href===""?null:d.href)&&v.getAttribute("rel")===(d.rel==null?null:d.rel)&&v.getAttribute("title")===(d.title==null?null:d.title)&&v.getAttribute("crossorigin")===(d.crossOrigin==null?null:d.crossOrigin)){w.splice(R,1);break t}}v=y.createElement(p),Zt(v,p,d),y.head.appendChild(v);break;case"meta":if(w=Q5("meta","content",y).get(p+(d.content||""))){for(R=0;R<w.length;R++)if(v=w[R],v.getAttribute("content")===(d.content==null?null:""+d.content)&&v.getAttribute("name")===(d.name==null?null:d.name)&&v.getAttribute("property")===(d.property==null?null:d.property)&&v.getAttribute("http-equiv")===(d.httpEquiv==null?null:d.httpEquiv)&&v.getAttribute("charset")===(d.charSet==null?null:d.charSet)){w.splice(R,1);break t}}v=y.createElement(p),Zt(v,p,d),y.head.appendChild(v);break;default:throw Error(r(468,p))}v[Qt]=o,Vt(v),p=v}o.stateNode=p}else Y5(y,o.type,o.stateNode);else o.stateNode=W5(y,p,o.memoizedProps);else v!==p?(v===null?d.stateNode!==null&&(d=d.stateNode,d.parentNode.removeChild(d)):v.count--,p===null?Y5(y,o.type,o.stateNode):W5(y,p,o.memoizedProps)):p===null&&o.stateNode!==null&&Eb(o,o.memoizedProps,d.memoizedProps)}break;case 27:Bn(l,o),Mn(o),p&512&&(Bt||d===null||Ir(d,d.return)),d!==null&&p&4&&Eb(o,o.memoizedProps,d.memoizedProps);break;case 5:if(Bn(l,o),Mn(o),p&512&&(Bt||d===null||Ir(d,d.return)),o.flags&32){y=o.stateNode;try{Na(y,"")}catch(be){Xe(o,o.return,be)}}p&4&&o.stateNode!=null&&(y=o.memoizedProps,Eb(o,y,d!==null?d.memoizedProps:y)),p&1024&&(wb=!0);break;case 6:if(Bn(l,o),Mn(o),p&4){if(o.stateNode===null)throw Error(r(162));p=o.memoizedProps,d=o.stateNode;try{d.nodeValue=p}catch(be){Xe(o,o.return,be)}}break;case 3:if(zf=null,y=Cr,Cr=Of(l.containerInfo),Bn(l,o),Cr=y,Mn(o),p&4&&d!==null&&d.memoizedState.isDehydrated)try{cl(l.containerInfo)}catch(be){Xe(o,o.return,be)}wb&&(wb=!1,Yk(o));break;case 4:p=Cr,Cr=Of(o.stateNode.containerInfo),Bn(l,o),Mn(o),Cr=p;break;case 12:Bn(l,o),Mn(o);break;case 31:Bn(l,o),Mn(o),p&4&&(p=o.updateQueue,p!==null&&(o.updateQueue=null,kf(o,p)));break;case 13:Bn(l,o),Mn(o),o.child.flags&8192&&o.memoizedState!==null!=(d!==null&&d.memoizedState!==null)&&(Ef=ln()),p&4&&(p=o.updateQueue,p!==null&&(o.updateQueue=null,kf(o,p)));break;case 22:y=o.memoizedState!==null;var I=d!==null&&d.memoizedState!==null,X=di,ie=Bt;if(di=X||y,Bt=ie||I,Bn(l,o),Bt=ie,di=X,Mn(o),p&8192)e:for(l=o.stateNode,l._visibility=y?l._visibility&-2:l._visibility|1,y&&(d===null||I||di||Bt||Do(o)),d=null,l=o;;){if(l.tag===5||l.tag===26){if(d===null){I=d=l;try{if(v=I.stateNode,y)w=v.style,typeof w.setProperty=="function"?w.setProperty("display","none","important"):w.display="none";else{R=I.stateNode;var oe=I.memoizedProps.style,J=oe!=null&&oe.hasOwnProperty("display")?oe.display:null;R.style.display=J==null||typeof J=="boolean"?"":(""+J).trim()}}catch(be){Xe(I,I.return,be)}}}else if(l.tag===6){if(d===null){I=l;try{I.stateNode.nodeValue=y?"":I.memoizedProps}catch(be){Xe(I,I.return,be)}}}else if(l.tag===18){if(d===null){I=l;try{var ee=I.stateNode;y?j5(ee,!0):j5(I.stateNode,!1)}catch(be){Xe(I,I.return,be)}}}else if((l.tag!==22&&l.tag!==23||l.memoizedState===null||l===o)&&l.child!==null){l.child.return=l,l=l.child;continue}if(l===o)break e;for(;l.sibling===null;){if(l.return===null||l.return===o)break e;d===l&&(d=null),l=l.return}d===l&&(d=null),l.sibling.return=l.return,l=l.sibling}p&4&&(p=o.updateQueue,p!==null&&(d=p.retryQueue,d!==null&&(p.retryQueue=null,kf(o,d))));break;case 19:Bn(l,o),Mn(o),p&4&&(p=o.updateQueue,p!==null&&(o.updateQueue=null,kf(o,p)));break;case 30:break;case 21:break;default:Bn(l,o),Mn(o)}}function Mn(o){var l=o.flags;if(l&2){try{for(var d,p=o.return;p!==null;){if(Kk(p)){d=p;break}p=p.return}if(d==null)throw Error(r(160));switch(d.tag){case 27:var y=d.stateNode,v=Db(o);vf(o,v,y);break;case 5:var w=d.stateNode;d.flags&32&&(Na(w,""),d.flags&=-33);var R=Db(o);vf(o,R,w);break;case 3:case 4:var I=d.stateNode.containerInfo,X=Db(o);Sb(o,X,I);break;default:throw Error(r(161))}}catch(ie){Xe(o,o.return,ie)}o.flags&=-3}l&4096&&(o.flags&=-4097)}function Yk(o){if(o.subtreeFlags&1024)for(o=o.child;o!==null;){var l=o;Yk(l),l.tag===5&&l.flags&1024&&l.stateNode.reset(),o=o.sibling}}function hi(o,l){if(l.subtreeFlags&8772)for(l=l.child;l!==null;)Hk(o,l.alternate,l),l=l.sibling}function Do(o){for(o=o.child;o!==null;){var l=o;switch(l.tag){case 0:case 11:case 14:case 15:is(4,l,l.return),Do(l);break;case 1:Ir(l,l.return);var d=l.stateNode;typeof d.componentWillUnmount=="function"&&jk(l,l.return,d),Do(l);break;case 27:Iu(l.stateNode);case 26:case 5:Ir(l,l.return),Do(l);break;case 22:l.memoizedState===null&&Do(l);break;case 30:Do(l);break;default:Do(l)}o=o.sibling}}function pi(o,l,d){for(d=d&&(l.subtreeFlags&8772)!==0,l=l.child;l!==null;){var p=l.alternate,y=o,v=l,w=v.flags;switch(v.tag){case 0:case 11:case 15:pi(y,v,d),Tu(4,v);break;case 1:if(pi(y,v,d),p=v,y=p.stateNode,typeof y.componentDidMount=="function")try{y.componentDidMount()}catch(X){Xe(p,p.return,X)}if(p=v,y=p.updateQueue,y!==null){var R=p.stateNode;try{var I=y.shared.hiddenCallbacks;if(I!==null)for(y.shared.hiddenCallbacks=null,y=0;y<I.length;y++)$v(I[y],R)}catch(X){Xe(p,p.return,X)}}d&&w&64&&Ik(v),Au(v,v.return);break;case 27:_k(v);case 26:case 5:pi(y,v,d),d&&p===null&&w&4&&Fk(v),Au(v,v.return);break;case 12:pi(y,v,d);break;case 31:pi(y,v,d),d&&w&4&&Gk(y,v);break;case 13:pi(y,v,d),d&&w&4&&Wk(y,v);break;case 22:v.memoizedState===null&&pi(y,v,d),Au(v,v.return);break;case 30:break;default:pi(y,v,d)}l=l.sibling}}function $b(o,l){var d=null;o!==null&&o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(d=o.memoizedState.cachePool.pool),o=null,l.memoizedState!==null&&l.memoizedState.cachePool!==null&&(o=l.memoizedState.cachePool.pool),o!==d&&(o!=null&&o.refCount++,d!=null&&mu(d))}function Tb(o,l){o=null,l.alternate!==null&&(o=l.alternate.memoizedState.cache),l=l.memoizedState.cache,l!==o&&(l.refCount++,o!=null&&mu(o))}function Er(o,l,d,p){if(l.subtreeFlags&10256)for(l=l.child;l!==null;)Xk(o,l,d,p),l=l.sibling}function Xk(o,l,d,p){var y=l.flags;switch(l.tag){case 0:case 11:case 15:Er(o,l,d,p),y&2048&&Tu(9,l);break;case 1:Er(o,l,d,p);break;case 3:Er(o,l,d,p),y&2048&&(o=null,l.alternate!==null&&(o=l.alternate.memoizedState.cache),l=l.memoizedState.cache,l!==o&&(l.refCount++,o!=null&&mu(o)));break;case 12:if(y&2048){Er(o,l,d,p),o=l.stateNode;try{var v=l.memoizedProps,w=v.id,R=v.onPostCommit;typeof R=="function"&&R(w,l.alternate===null?"mount":"update",o.passiveEffectDuration,-0)}catch(I){Xe(l,l.return,I)}}else Er(o,l,d,p);break;case 31:Er(o,l,d,p);break;case 13:Er(o,l,d,p);break;case 23:break;case 22:v=l.stateNode,w=l.alternate,l.memoizedState!==null?v._visibility&2?Er(o,l,d,p):Bu(o,l):v._visibility&2?Er(o,l,d,p):(v._visibility|=2,Za(o,l,d,p,(l.subtreeFlags&10256)!==0||!1)),y&2048&&$b(w,l);break;case 24:Er(o,l,d,p),y&2048&&Tb(l.alternate,l);break;default:Er(o,l,d,p)}}function Za(o,l,d,p,y){for(y=y&&((l.subtreeFlags&10256)!==0||!1),l=l.child;l!==null;){var v=o,w=l,R=d,I=p,X=w.flags;switch(w.tag){case 0:case 11:case 15:Za(v,w,R,I,y),Tu(8,w);break;case 23:break;case 22:var ie=w.stateNode;w.memoizedState!==null?ie._visibility&2?Za(v,w,R,I,y):Bu(v,w):(ie._visibility|=2,Za(v,w,R,I,y)),y&&X&2048&&$b(w.alternate,w);break;case 24:Za(v,w,R,I,y),y&&X&2048&&Tb(w.alternate,w);break;default:Za(v,w,R,I,y)}l=l.sibling}}function Bu(o,l){if(l.subtreeFlags&10256)for(l=l.child;l!==null;){var d=o,p=l,y=p.flags;switch(p.tag){case 22:Bu(d,p),y&2048&&$b(p.alternate,p);break;case 24:Bu(d,p),y&2048&&Tb(p.alternate,p);break;default:Bu(d,p)}l=l.sibling}}var Mu=8192;function el(o,l,d){if(o.subtreeFlags&Mu)for(o=o.child;o!==null;)Jk(o,l,d),o=o.sibling}function Jk(o,l,d){switch(o.tag){case 26:el(o,l,d),o.flags&Mu&&o.memoizedState!==null&&OP(d,Cr,o.memoizedState,o.memoizedProps);break;case 5:el(o,l,d);break;case 3:case 4:var p=Cr;Cr=Of(o.stateNode.containerInfo),el(o,l,d),Cr=p;break;case 22:o.memoizedState===null&&(p=o.alternate,p!==null&&p.memoizedState!==null?(p=Mu,Mu=16777216,el(o,l,d),Mu=p):el(o,l,d));break;default:el(o,l,d)}}function Zk(o){var l=o.alternate;if(l!==null&&(o=l.child,o!==null)){l.child=null;do l=o.sibling,o.sibling=null,o=l;while(o!==null)}}function Ru(o){var l=o.deletions;if((o.flags&16)!==0){if(l!==null)for(var d=0;d<l.length;d++){var p=l[d];Ht=p,t5(p,o)}Zk(o)}if(o.subtreeFlags&10256)for(o=o.child;o!==null;)e5(o),o=o.sibling}function e5(o){switch(o.tag){case 0:case 11:case 15:Ru(o),o.flags&2048&&is(9,o,o.return);break;case 3:Ru(o);break;case 12:Ru(o);break;case 22:var l=o.stateNode;o.memoizedState!==null&&l._visibility&2&&(o.return===null||o.return.tag!==13)?(l._visibility&=-3,Cf(o)):Ru(o);break;default:Ru(o)}}function Cf(o){var l=o.deletions;if((o.flags&16)!==0){if(l!==null)for(var d=0;d<l.length;d++){var p=l[d];Ht=p,t5(p,o)}Zk(o)}for(o=o.child;o!==null;){switch(l=o,l.tag){case 0:case 11:case 15:is(8,l,l.return),Cf(l);break;case 22:d=l.stateNode,d._visibility&2&&(d._visibility&=-3,Cf(l));break;default:Cf(l)}o=o.sibling}}function t5(o,l){for(;Ht!==null;){var d=Ht;switch(d.tag){case 0:case 11:case 15:is(8,d,l);break;case 23:case 22:if(d.memoizedState!==null&&d.memoizedState.cachePool!==null){var p=d.memoizedState.cachePool.pool;p!=null&&p.refCount++}break;case 24:mu(d.memoizedState.cache)}if(p=d.child,p!==null)p.return=d,Ht=p;else e:for(d=o;Ht!==null;){p=Ht;var y=p.sibling,v=p.return;if(Uk(p),p===d){Ht=null;break e}if(y!==null){y.return=v,Ht=y;break e}Ht=v}}}var YN={getCacheForType:function(o){var l=Xt($t),d=l.data.get(o);return d===void 0&&(d=o(),l.data.set(o,d)),d},cacheSignal:function(){return Xt($t).controller.signal}},XN=typeof WeakMap=="function"?WeakMap:Map,We=0,it=null,Oe=null,Fe=0,Ye=0,Gn=null,ss=!1,tl=!1,Ab=!1,mi=0,xt=0,as=0,So=0,Bb=0,Wn=0,nl=0,Nu=null,Rn=null,Mb=!1,Ef=0,n5=0,Df=1/0,Sf=null,ls=null,zt=0,us=null,rl=null,gi=0,Rb=0,Nb=null,r5=null,Pu=0,Pb=null;function Qn(){return(We&2)!==0&&Fe!==0?Fe&-Fe:O.T!==null?Fb():x1()}function i5(){if(Wn===0)if((Fe&536870912)===0||Ve){var o=Rd;Rd<<=1,(Rd&3932160)===0&&(Rd=262144),Wn=o}else Wn=536870912;return o=Un.current,o!==null&&(o.flags|=32),Wn}function Nn(o,l,d){(o===it&&(Ye===2||Ye===9)||o.cancelPendingCommit!==null)&&(il(o,0),cs(o,Fe,Wn,!1)),tu(o,d),((We&2)===0||o!==it)&&(o===it&&((We&2)===0&&(So|=d),xt===4&&cs(o,Fe,Wn,!1)),jr(o))}function s5(o,l,d){if((We&6)!==0)throw Error(r(327));var p=!d&&(l&127)===0&&(l&o.expiredLanes)===0||eu(o,l),y=p?eP(o,l):Lb(o,l,!0),v=p;do{if(y===0){tl&&!p&&cs(o,l,0,!1);break}else{if(d=o.current.alternate,v&&!JN(d)){y=Lb(o,l,!1),v=!1;continue}if(y===2){if(v=l,o.errorRecoveryDisabledLanes&v)var w=0;else w=o.pendingLanes&-536870913,w=w!==0?w:w&536870912?536870912:0;if(w!==0){l=w;e:{var R=o;y=Nu;var I=R.current.memoizedState.isDehydrated;if(I&&(il(R,w).flags|=256),w=Lb(R,w,!1),w!==2){if(Ab&&!I){R.errorRecoveryDisabledLanes|=v,So|=v,y=4;break e}v=Rn,Rn=y,v!==null&&(Rn===null?Rn=v:Rn.push.apply(Rn,v))}y=w}if(v=!1,y!==2)continue}}if(y===1){il(o,0),cs(o,l,0,!0);break}e:{switch(p=o,v=y,v){case 0:case 1:throw Error(r(345));case 4:if((l&4194048)!==l)break;case 6:cs(p,l,Wn,!ss);break e;case 2:Rn=null;break;case 3:case 5:break;default:throw Error(r(329))}if((l&62914560)===l&&(y=Ef+300-ln(),10<y)){if(cs(p,l,Wn,!ss),Pd(p,0,!0)!==0)break e;gi=l,p.timeoutHandle=L5(o5.bind(null,p,d,Rn,Sf,Mb,l,Wn,So,nl,ss,v,"Throttled",-0,0),y);break e}o5(p,d,Rn,Sf,Mb,l,Wn,So,nl,ss,v,null,-0,0)}}break}while(!0);jr(o)}function o5(o,l,d,p,y,v,w,R,I,X,ie,oe,J,ee){if(o.timeoutHandle=-1,oe=l.subtreeFlags,oe&8192||(oe&16785408)===16785408){oe={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:ti},Jk(l,v,oe);var be=(v&62914560)===v?Ef-ln():(v&4194048)===v?n5-ln():0;if(be=LP(oe,be),be!==null){gi=v,o.cancelPendingCommit=be(p5.bind(null,o,l,v,d,p,y,w,R,I,ie,oe,null,J,ee)),cs(o,v,w,!X);return}}p5(o,l,v,d,p,y,w,R,I)}function JN(o){for(var l=o;;){var d=l.tag;if((d===0||d===11||d===15)&&l.flags&16384&&(d=l.updateQueue,d!==null&&(d=d.stores,d!==null)))for(var p=0;p<d.length;p++){var y=d[p],v=y.getSnapshot;y=y.value;try{if(!Vn(v(),y))return!1}catch{return!1}}if(d=l.child,l.subtreeFlags&16384&&d!==null)d.return=l,l=d;else{if(l===o)break;for(;l.sibling===null;){if(l.return===null||l.return===o)return!0;l=l.return}l.sibling.return=l.return,l=l.sibling}}return!0}function cs(o,l,d,p){l&=~Bb,l&=~So,o.suspendedLanes|=l,o.pingedLanes&=~l,p&&(o.warmLanes|=l),p=o.expirationTimes;for(var y=l;0<y;){var v=31-_n(y),w=1<<v;p[v]=-1,y&=~w}d!==0&&g1(o,d,l)}function wf(){return(We&6)===0?(Ou(0),!1):!0}function Ob(){if(Oe!==null){if(Ye===0)var o=Oe.return;else o=Oe,si=go=null,Xg(o),Wa=null,bu=0,o=Oe;for(;o!==null;)zk(o.alternate,o),o=o.return;Oe=null}}function il(o,l){var d=o.timeoutHandle;d!==-1&&(o.timeoutHandle=-1,yP(d)),d=o.cancelPendingCommit,d!==null&&(o.cancelPendingCommit=null,d()),gi=0,Ob(),it=o,Oe=d=ri(o.current,null),Fe=l,Ye=0,Gn=null,ss=!1,tl=eu(o,l),Ab=!1,nl=Wn=Bb=So=as=xt=0,Rn=Nu=null,Mb=!1,(l&8)!==0&&(l|=l&32);var p=o.entangledLanes;if(p!==0)for(o=o.entanglements,p&=l;0<p;){var y=31-_n(p),v=1<<y;l|=o[y],p&=~v}return mi=l,qd(),d}function a5(o,l){Ae=null,O.H=Su,l===Ga||l===ef?(l=Ev(),Ye=3):l===jg?(l=Ev(),Ye=4):Ye=l===hb?8:l!==null&&typeof l=="object"&&typeof l.then=="function"?6:1,Gn=l,Oe===null&&(xt=1,mf(o,rr(l,o.current)))}function l5(){var o=Un.current;return o===null?!0:(Fe&4194048)===Fe?ar===null:(Fe&62914560)===Fe||(Fe&536870912)!==0?o===ar:!1}function u5(){var o=O.H;return O.H=Su,o===null?Su:o}function c5(){var o=O.A;return O.A=YN,o}function $f(){xt=4,ss||(Fe&4194048)!==Fe&&Un.current!==null||(tl=!0),(as&134217727)===0&&(So&134217727)===0||it===null||cs(it,Fe,Wn,!1)}function Lb(o,l,d){var p=We;We|=2;var y=u5(),v=c5();(it!==o||Fe!==l)&&(Sf=null,il(o,l)),l=!1;var w=xt;e:do try{if(Ye!==0&&Oe!==null){var R=Oe,I=Gn;switch(Ye){case 8:Ob(),w=6;break e;case 3:case 2:case 9:case 6:Un.current===null&&(l=!0);var X=Ye;if(Ye=0,Gn=null,sl(o,R,I,X),d&&tl){w=0;break e}break;default:X=Ye,Ye=0,Gn=null,sl(o,R,I,X)}}ZN(),w=xt;break}catch(ie){a5(o,ie)}while(!0);return l&&o.shellSuspendCounter++,si=go=null,We=p,O.H=y,O.A=v,Oe===null&&(it=null,Fe=0,qd()),w}function ZN(){for(;Oe!==null;)d5(Oe)}function eP(o,l){var d=We;We|=2;var p=u5(),y=c5();it!==o||Fe!==l?(Sf=null,Df=ln()+500,il(o,l)):tl=eu(o,l);e:do try{if(Ye!==0&&Oe!==null){l=Oe;var v=Gn;t:switch(Ye){case 1:Ye=0,Gn=null,sl(o,l,v,1);break;case 2:case 9:if(kv(v)){Ye=0,Gn=null,f5(l);break}l=function(){Ye!==2&&Ye!==9||it!==o||(Ye=7),jr(o)},v.then(l,l);break e;case 3:Ye=7;break e;case 4:Ye=5;break e;case 7:kv(v)?(Ye=0,Gn=null,f5(l)):(Ye=0,Gn=null,sl(o,l,v,7));break;case 5:var w=null;switch(Oe.tag){case 26:w=Oe.memoizedState;case 5:case 27:var R=Oe;if(w?X5(w):R.stateNode.complete){Ye=0,Gn=null;var I=R.sibling;if(I!==null)Oe=I;else{var X=R.return;X!==null?(Oe=X,Tf(X)):Oe=null}break t}}Ye=0,Gn=null,sl(o,l,v,5);break;case 6:Ye=0,Gn=null,sl(o,l,v,6);break;case 8:Ob(),xt=6;break e;default:throw Error(r(462))}}tP();break}catch(ie){a5(o,ie)}while(!0);return si=go=null,O.H=p,O.A=y,We=d,Oe!==null?0:(it=null,Fe=0,qd(),xt)}function tP(){for(;Oe!==null&&!Bd();)d5(Oe)}function d5(o){var l=Ok(o.alternate,o,mi);o.memoizedProps=o.pendingProps,l===null?Tf(o):Oe=l}function f5(o){var l=o,d=l.alternate;switch(l.tag){case 15:case 0:l=Ak(d,l,l.pendingProps,l.type,void 0,Fe);break;case 11:l=Ak(d,l,l.pendingProps,l.type.render,l.ref,Fe);break;case 5:Xg(l);default:zk(d,l),l=Oe=cv(l,mi),l=Ok(d,l,mi)}o.memoizedProps=o.pendingProps,l===null?Tf(o):Oe=l}function sl(o,l,d,p){si=go=null,Xg(l),Wa=null,bu=0;var y=l.return;try{if(VN(o,y,l,d,Fe)){xt=1,mf(o,rr(d,o.current)),Oe=null;return}}catch(v){if(y!==null)throw Oe=y,v;xt=1,mf(o,rr(d,o.current)),Oe=null;return}l.flags&32768?(Ve||p===1?o=!0:tl||(Fe&536870912)!==0?o=!1:(ss=o=!0,(p===2||p===9||p===3||p===6)&&(p=Un.current,p!==null&&p.tag===13&&(p.flags|=16384))),h5(l,o)):Tf(l)}function Tf(o){var l=o;do{if((l.flags&32768)!==0){h5(l,ss);return}o=l.return;var d=qN(l.alternate,l,mi);if(d!==null){Oe=d;return}if(l=l.sibling,l!==null){Oe=l;return}Oe=l=o}while(l!==null);xt===0&&(xt=5)}function h5(o,l){do{var d=GN(o.alternate,o);if(d!==null){d.flags&=32767,Oe=d;return}if(d=o.return,d!==null&&(d.flags|=32768,d.subtreeFlags=0,d.deletions=null),!l&&(o=o.sibling,o!==null)){Oe=o;return}Oe=o=d}while(o!==null);xt=6,Oe=null}function p5(o,l,d,p,y,v,w,R,I){o.cancelPendingCommit=null;do Af();while(zt!==0);if((We&6)!==0)throw Error(r(327));if(l!==null){if(l===o.current)throw Error(r(177));if(v=l.lanes|l.childLanes,v|=Dg,PR(o,d,v,w,R,I),o===it&&(Oe=it=null,Fe=0),rl=l,us=o,gi=d,Rb=v,Nb=y,r5=p,(l.subtreeFlags&10256)!==0||(l.flags&10256)!==0?(o.callbackNode=null,o.callbackPriority=0,sP(wa,function(){return x5(),null})):(o.callbackNode=null,o.callbackPriority=0),p=(l.flags&13878)!==0,(l.subtreeFlags&13878)!==0||p){p=O.T,O.T=null,y=K.p,K.p=2,w=We,We|=4;try{WN(o,l,d)}finally{We=w,K.p=y,O.T=p}}zt=1,m5(),g5(),b5()}}function m5(){if(zt===1){zt=0;var o=us,l=rl,d=(l.flags&13878)!==0;if((l.subtreeFlags&13878)!==0||d){d=O.T,O.T=null;var p=K.p;K.p=2;var y=We;We|=4;try{Qk(l,o);var v=Wb,w=tv(o.containerInfo),R=v.focusedElem,I=v.selectionRange;if(w!==R&&R&&R.ownerDocument&&ev(R.ownerDocument.documentElement,R)){if(I!==null&&xg(R)){var X=I.start,ie=I.end;if(ie===void 0&&(ie=X),"selectionStart"in R)R.selectionStart=X,R.selectionEnd=Math.min(ie,R.value.length);else{var oe=R.ownerDocument||document,J=oe&&oe.defaultView||window;if(J.getSelection){var ee=J.getSelection(),be=R.textContent.length,Ee=Math.min(I.start,be),nt=I.end===void 0?Ee:Math.min(I.end,be);!ee.extend&&Ee>nt&&(w=nt,nt=Ee,Ee=w);var q=Z1(R,Ee),_=Z1(R,nt);if(q&&_&&(ee.rangeCount!==1||ee.anchorNode!==q.node||ee.anchorOffset!==q.offset||ee.focusNode!==_.node||ee.focusOffset!==_.offset)){var Y=oe.createRange();Y.setStart(q.node,q.offset),ee.removeAllRanges(),Ee>nt?(ee.addRange(Y),ee.extend(_.node,_.offset)):(Y.setEnd(_.node,_.offset),ee.addRange(Y))}}}}for(oe=[],ee=R;ee=ee.parentNode;)ee.nodeType===1&&oe.push({element:ee,left:ee.scrollLeft,top:ee.scrollTop});for(typeof R.focus=="function"&&R.focus(),R=0;R<oe.length;R++){var se=oe[R];se.element.scrollLeft=se.left,se.element.scrollTop=se.top}}Kf=!!Gb,Wb=Gb=null}finally{We=y,K.p=p,O.T=d}}o.current=l,zt=2}}function g5(){if(zt===2){zt=0;var o=us,l=rl,d=(l.flags&8772)!==0;if((l.subtreeFlags&8772)!==0||d){d=O.T,O.T=null;var p=K.p;K.p=2;var y=We;We|=4;try{Hk(o,l.alternate,l)}finally{We=y,K.p=p,O.T=d}}zt=3}}function b5(){if(zt===4||zt===3){zt=0,Xm();var o=us,l=rl,d=gi,p=r5;(l.subtreeFlags&10256)!==0||(l.flags&10256)!==0?zt=5:(zt=0,rl=us=null,y5(o,o.pendingLanes));var y=o.pendingLanes;if(y===0&&(ls=null),eg(d),l=l.stateNode,Kn&&typeof Kn.onCommitFiberRoot=="function")try{Kn.onCommitFiberRoot(Zl,l,void 0,(l.current.flags&128)===128)}catch{}if(p!==null){l=O.T,y=K.p,K.p=2,O.T=null;try{for(var v=o.onRecoverableError,w=0;w<p.length;w++){var R=p[w];v(R.value,{componentStack:R.stack})}}finally{O.T=l,K.p=y}}(gi&3)!==0&&Af(),jr(o),y=o.pendingLanes,(d&261930)!==0&&(y&42)!==0?o===Pb?Pu++:(Pu=0,Pb=o):Pu=0,Ou(0)}}function y5(o,l){(o.pooledCacheLanes&=l)===0&&(l=o.pooledCache,l!=null&&(o.pooledCache=null,mu(l)))}function Af(){return m5(),g5(),b5(),x5()}function x5(){if(zt!==5)return!1;var o=us,l=Rb;Rb=0;var d=eg(gi),p=O.T,y=K.p;try{K.p=32>d?32:d,O.T=null,d=Nb,Nb=null;var v=us,w=gi;if(zt=0,rl=us=null,gi=0,(We&6)!==0)throw Error(r(331));var R=We;if(We|=4,e5(v.current),Xk(v,v.current,w,d),We=R,Ou(0,!1),Kn&&typeof Kn.onPostCommitFiberRoot=="function")try{Kn.onPostCommitFiberRoot(Zl,v)}catch{}return!0}finally{K.p=y,O.T=p,y5(o,l)}}function v5(o,l,d){l=rr(d,l),l=fb(o.stateNode,l,2),o=ts(o,l,2),o!==null&&(tu(o,2),jr(o))}function Xe(o,l,d){if(o.tag===3)v5(o,o,d);else for(;l!==null;){if(l.tag===3){v5(l,o,d);break}else if(l.tag===1){var p=l.stateNode;if(typeof l.type.getDerivedStateFromError=="function"||typeof p.componentDidCatch=="function"&&(ls===null||!ls.has(p))){o=rr(d,o),d=kk(2),p=ts(l,d,2),p!==null&&(Ck(d,p,l,o),tu(p,2),jr(p));break}}l=l.return}}function zb(o,l,d){var p=o.pingCache;if(p===null){p=o.pingCache=new XN;var y=new Set;p.set(l,y)}else y=p.get(l),y===void 0&&(y=new Set,p.set(l,y));y.has(d)||(Ab=!0,y.add(d),o=nP.bind(null,o,l,d),l.then(o,o))}function nP(o,l,d){var p=o.pingCache;p!==null&&p.delete(l),o.pingedLanes|=o.suspendedLanes&d,o.warmLanes&=~d,it===o&&(Fe&d)===d&&(xt===4||xt===3&&(Fe&62914560)===Fe&&300>ln()-Ef?(We&2)===0&&il(o,0):Bb|=d,nl===Fe&&(nl=0)),jr(o)}function k5(o,l){l===0&&(l=m1()),o=ho(o,l),o!==null&&(tu(o,l),jr(o))}function rP(o){var l=o.memoizedState,d=0;l!==null&&(d=l.retryLane),k5(o,d)}function iP(o,l){var d=0;switch(o.tag){case 31:case 13:var p=o.stateNode,y=o.memoizedState;y!==null&&(d=y.retryLane);break;case 19:p=o.stateNode;break;case 22:p=o.stateNode._retryCache;break;default:throw Error(r(314))}p!==null&&p.delete(l),k5(o,d)}function sP(o,l){return vr(o,l)}var Bf=null,ol=null,Ib=!1,Mf=!1,jb=!1,ds=0;function jr(o){o!==ol&&o.next===null&&(ol===null?Bf=ol=o:ol=ol.next=o),Mf=!0,Ib||(Ib=!0,aP())}function Ou(o,l){if(!jb&&Mf){jb=!0;do for(var d=!1,p=Bf;p!==null;){if(o!==0){var y=p.pendingLanes;if(y===0)var v=0;else{var w=p.suspendedLanes,R=p.pingedLanes;v=(1<<31-_n(42|o)+1)-1,v&=y&~(w&~R),v=v&201326741?v&201326741|1:v?v|2:0}v!==0&&(d=!0,S5(p,v))}else v=Fe,v=Pd(p,p===it?v:0,p.cancelPendingCommit!==null||p.timeoutHandle!==-1),(v&3)===0||eu(p,v)||(d=!0,S5(p,v));p=p.next}while(d);jb=!1}}function oP(){C5()}function C5(){Mf=Ib=!1;var o=0;ds!==0&&bP()&&(o=ds);for(var l=ln(),d=null,p=Bf;p!==null;){var y=p.next,v=E5(p,l);v===0?(p.next=null,d===null?Bf=y:d.next=y,y===null&&(ol=d)):(d=p,(o!==0||(v&3)!==0)&&(Mf=!0)),p=y}zt!==0&&zt!==5||Ou(o),ds!==0&&(ds=0)}function E5(o,l){for(var d=o.suspendedLanes,p=o.pingedLanes,y=o.expirationTimes,v=o.pendingLanes&-62914561;0<v;){var w=31-_n(v),R=1<<w,I=y[w];I===-1?((R&d)===0||(R&p)!==0)&&(y[w]=NR(R,l)):I<=l&&(o.expiredLanes|=R),v&=~R}if(l=it,d=Fe,d=Pd(o,o===l?d:0,o.cancelPendingCommit!==null||o.timeoutHandle!==-1),p=o.callbackNode,d===0||o===l&&(Ye===2||Ye===9)||o.cancelPendingCommit!==null)return p!==null&&p!==null&&Jl(p),o.callbackNode=null,o.callbackPriority=0;if((d&3)===0||eu(o,d)){if(l=d&-d,l===o.callbackPriority)return l;switch(p!==null&&Jl(p),eg(d)){case 2:case 8:d=Or;break;case 32:d=wa;break;case 268435456:d=p1;break;default:d=wa}return p=D5.bind(null,o),d=vr(d,p),o.callbackPriority=l,o.callbackNode=d,l}return p!==null&&p!==null&&Jl(p),o.callbackPriority=2,o.callbackNode=null,2}function D5(o,l){if(zt!==0&&zt!==5)return o.callbackNode=null,o.callbackPriority=0,null;var d=o.callbackNode;if(Af()&&o.callbackNode!==d)return null;var p=Fe;return p=Pd(o,o===it?p:0,o.cancelPendingCommit!==null||o.timeoutHandle!==-1),p===0?null:(s5(o,p,l),E5(o,ln()),o.callbackNode!=null&&o.callbackNode===d?D5.bind(null,o):null)}function S5(o,l){if(Af())return null;s5(o,l,!0)}function aP(){xP(function(){(We&6)!==0?vr(Wt,oP):C5()})}function Fb(){if(ds===0){var o=Ua;o===0&&(o=Md,Md<<=1,(Md&261888)===0&&(Md=256)),ds=o}return ds}function w5(o){return o==null||typeof o=="symbol"||typeof o=="boolean"?null:typeof o=="function"?o:Id(""+o)}function $5(o,l){var d=l.ownerDocument.createElement("input");return d.name=l.name,d.value=l.value,o.id&&d.setAttribute("form",o.id),l.parentNode.insertBefore(d,l),o=new FormData(o),d.parentNode.removeChild(d),o}function lP(o,l,d,p,y){if(l==="submit"&&d&&d.stateNode===y){var v=w5((y[$n]||null).action),w=p.submitter;w&&(l=(l=w[$n]||null)?w5(l.formAction):w.getAttribute("formAction"),l!==null&&(v=l,w=null));var R=new _d("action","action",null,p,y);o.push({event:R,listeners:[{instance:null,listener:function(){if(p.defaultPrevented){if(ds!==0){var I=w?$5(y,w):new FormData(y);ob(d,{pending:!0,data:I,method:y.method,action:v},null,I)}}else typeof v=="function"&&(R.preventDefault(),I=w?$5(y,w):new FormData(y),ob(d,{pending:!0,data:I,method:y.method,action:v},v,I))},currentTarget:y}]})}}for(var Kb=0;Kb<Eg.length;Kb++){var _b=Eg[Kb],uP=_b.toLowerCase(),cP=_b[0].toUpperCase()+_b.slice(1);kr(uP,"on"+cP)}kr(iv,"onAnimationEnd"),kr(sv,"onAnimationIteration"),kr(ov,"onAnimationStart"),kr("dblclick","onDoubleClick"),kr("focusin","onFocus"),kr("focusout","onBlur"),kr(wN,"onTransitionRun"),kr($N,"onTransitionStart"),kr(TN,"onTransitionCancel"),kr(av,"onTransitionEnd"),Ma("onMouseEnter",["mouseout","mouseover"]),Ma("onMouseLeave",["mouseout","mouseover"]),Ma("onPointerEnter",["pointerout","pointerover"]),Ma("onPointerLeave",["pointerout","pointerover"]),lo("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),lo("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),lo("onBeforeInput",["compositionend","keypress","textInput","paste"]),lo("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),lo("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),lo("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Lu="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(" "),dP=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(Lu));function T5(o,l){l=(l&4)!==0;for(var d=0;d<o.length;d++){var p=o[d],y=p.event;p=p.listeners;e:{var v=void 0;if(l)for(var w=p.length-1;0<=w;w--){var R=p[w],I=R.instance,X=R.currentTarget;if(R=R.listener,I!==v&&y.isPropagationStopped())break e;v=R,y.currentTarget=X;try{v(y)}catch(ie){Ud(ie)}y.currentTarget=null,v=I}else for(w=0;w<p.length;w++){if(R=p[w],I=R.instance,X=R.currentTarget,R=R.listener,I!==v&&y.isPropagationStopped())break e;v=R,y.currentTarget=X;try{v(y)}catch(ie){Ud(ie)}y.currentTarget=null,v=I}}}}function Le(o,l){var d=l[tg];d===void 0&&(d=l[tg]=new Set);var p=o+"__bubble";d.has(p)||(A5(l,o,2,!1),d.add(p))}function Vb(o,l,d){var p=0;l&&(p|=4),A5(d,o,p,l)}var Rf="_reactListening"+Math.random().toString(36).slice(2);function Hb(o){if(!o[Rf]){o[Rf]=!0,C1.forEach(function(d){d!=="selectionchange"&&(dP.has(d)||Vb(d,!1,o),Vb(d,!0,o))});var l=o.nodeType===9?o:o.ownerDocument;l===null||l[Rf]||(l[Rf]=!0,Vb("selectionchange",!1,l))}}function A5(o,l,d,p){switch(iC(l)){case 2:var y=jP;break;case 8:y=FP;break;default:y=s0}d=y.bind(null,l,d,o),y=void 0,!cg||l!=="touchstart"&&l!=="touchmove"&&l!=="wheel"||(y=!0),p?y!==void 0?o.addEventListener(l,d,{capture:!0,passive:y}):o.addEventListener(l,d,!0):y!==void 0?o.addEventListener(l,d,{passive:y}):o.addEventListener(l,d,!1)}function Ub(o,l,d,p,y){var v=p;if((l&1)===0&&(l&2)===0&&p!==null)e:for(;;){if(p===null)return;var w=p.tag;if(w===3||w===4){var R=p.stateNode.containerInfo;if(R===y)break;if(w===4)for(w=p.return;w!==null;){var I=w.tag;if((I===3||I===4)&&w.stateNode.containerInfo===y)return;w=w.return}for(;R!==null;){if(w=Ta(R),w===null)return;if(I=w.tag,I===5||I===6||I===26||I===27){p=v=w;continue e}R=R.parentNode}}p=p.return}P1(function(){var X=v,ie=lg(d),oe=[];e:{var J=lv.get(o);if(J!==void 0){var ee=_d,be=o;switch(o){case"keypress":if(Fd(d)===0)break e;case"keydown":case"keyup":ee=iN;break;case"focusin":be="focus",ee=pg;break;case"focusout":be="blur",ee=pg;break;case"beforeblur":case"afterblur":ee=pg;break;case"click":if(d.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":ee=z1;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":ee=qR;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":ee=aN;break;case iv:case sv:case ov:ee=QR;break;case av:ee=uN;break;case"scroll":case"scrollend":ee=HR;break;case"wheel":ee=dN;break;case"copy":case"cut":case"paste":ee=XR;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":ee=j1;break;case"toggle":case"beforetoggle":ee=hN}var Ee=(l&4)!==0,nt=!Ee&&(o==="scroll"||o==="scrollend"),q=Ee?J!==null?J+"Capture":null:J;Ee=[];for(var _=X,Y;_!==null;){var se=_;if(Y=se.stateNode,se=se.tag,se!==5&&se!==26&&se!==27||Y===null||q===null||(se=iu(_,q),se!=null&&Ee.push(zu(_,se,Y))),nt)break;_=_.return}0<Ee.length&&(J=new ee(J,be,null,d,ie),oe.push({event:J,listeners:Ee}))}}if((l&7)===0){e:{if(J=o==="mouseover"||o==="pointerover",ee=o==="mouseout"||o==="pointerout",J&&d!==ag&&(be=d.relatedTarget||d.fromElement)&&(Ta(be)||be[$a]))break e;if((ee||J)&&(J=ie.window===ie?ie:(J=ie.ownerDocument)?J.defaultView||J.parentWindow:window,ee?(be=d.relatedTarget||d.toElement,ee=X,be=be?Ta(be):null,be!==null&&(nt=s(be),Ee=be.tag,be!==nt||Ee!==5&&Ee!==27&&Ee!==6)&&(be=null)):(ee=null,be=X),ee!==be)){if(Ee=z1,se="onMouseLeave",q="onMouseEnter",_="mouse",(o==="pointerout"||o==="pointerover")&&(Ee=j1,se="onPointerLeave",q="onPointerEnter",_="pointer"),nt=ee==null?J:ru(ee),Y=be==null?J:ru(be),J=new Ee(se,_+"leave",ee,d,ie),J.target=nt,J.relatedTarget=Y,se=null,Ta(ie)===X&&(Ee=new Ee(q,_+"enter",be,d,ie),Ee.target=Y,Ee.relatedTarget=nt,se=Ee),nt=se,ee&&be)t:{for(Ee=fP,q=ee,_=be,Y=0,se=q;se;se=Ee(se))Y++;se=0;for(var ve=_;ve;ve=Ee(ve))se++;for(;0<Y-se;)q=Ee(q),Y--;for(;0<se-Y;)_=Ee(_),se--;for(;Y--;){if(q===_||_!==null&&q===_.alternate){Ee=q;break t}q=Ee(q),_=Ee(_)}Ee=null}else Ee=null;ee!==null&&B5(oe,J,ee,Ee,!1),be!==null&&nt!==null&&B5(oe,nt,be,Ee,!0)}}e:{if(J=X?ru(X):window,ee=J.nodeName&&J.nodeName.toLowerCase(),ee==="select"||ee==="input"&&J.type==="file")var qe=G1;else if(U1(J))if(W1)qe=EN;else{qe=kN;var xe=vN}else ee=J.nodeName,!ee||ee.toLowerCase()!=="input"||J.type!=="checkbox"&&J.type!=="radio"?X&&og(X.elementType)&&(qe=G1):qe=CN;if(qe&&(qe=qe(o,X))){q1(oe,qe,d,ie);break e}xe&&xe(o,J,X),o==="focusout"&&X&&J.type==="number"&&X.memoizedProps.value!=null&&sg(J,"number",J.value)}switch(xe=X?ru(X):window,o){case"focusin":(U1(xe)||xe.contentEditable==="true")&&(za=xe,vg=X,fu=null);break;case"focusout":fu=vg=za=null;break;case"mousedown":kg=!0;break;case"contextmenu":case"mouseup":case"dragend":kg=!1,nv(oe,d,ie);break;case"selectionchange":if(SN)break;case"keydown":case"keyup":nv(oe,d,ie)}var Be;if(gg)e:{switch(o){case"compositionstart":var Ke="onCompositionStart";break e;case"compositionend":Ke="onCompositionEnd";break e;case"compositionupdate":Ke="onCompositionUpdate";break e}Ke=void 0}else La?V1(o,d)&&(Ke="onCompositionEnd"):o==="keydown"&&d.keyCode===229&&(Ke="onCompositionStart");Ke&&(F1&&d.locale!=="ko"&&(La||Ke!=="onCompositionStart"?Ke==="onCompositionEnd"&&La&&(Be=O1()):(Wi=ie,dg="value"in Wi?Wi.value:Wi.textContent,La=!0)),xe=Nf(X,Ke),0<xe.length&&(Ke=new I1(Ke,o,null,d,ie),oe.push({event:Ke,listeners:xe}),Be?Ke.data=Be:(Be=H1(d),Be!==null&&(Ke.data=Be)))),(Be=mN?gN(o,d):bN(o,d))&&(Ke=Nf(X,"onBeforeInput"),0<Ke.length&&(xe=new I1("onBeforeInput","beforeinput",null,d,ie),oe.push({event:xe,listeners:Ke}),xe.data=Be)),lP(oe,o,X,d,ie)}T5(oe,l)})}function zu(o,l,d){return{instance:o,listener:l,currentTarget:d}}function Nf(o,l){for(var d=l+"Capture",p=[];o!==null;){var y=o,v=y.stateNode;if(y=y.tag,y!==5&&y!==26&&y!==27||v===null||(y=iu(o,d),y!=null&&p.unshift(zu(o,y,v)),y=iu(o,l),y!=null&&p.push(zu(o,y,v))),o.tag===3)return p;o=o.return}return[]}function fP(o){if(o===null)return null;do o=o.return;while(o&&o.tag!==5&&o.tag!==27);return o||null}function B5(o,l,d,p,y){for(var v=l._reactName,w=[];d!==null&&d!==p;){var R=d,I=R.alternate,X=R.stateNode;if(R=R.tag,I!==null&&I===p)break;R!==5&&R!==26&&R!==27||X===null||(I=X,y?(X=iu(d,v),X!=null&&w.unshift(zu(d,X,I))):y||(X=iu(d,v),X!=null&&w.push(zu(d,X,I)))),d=d.return}w.length!==0&&o.push({event:l,listeners:w})}var hP=/\r\n?/g,pP=/\u0000|\uFFFD/g;function M5(o){return(typeof o=="string"?o:""+o).replace(hP,`
9
+ `).replace(pP,"")}function R5(o,l){return l=M5(l),M5(o)===l}function tt(o,l,d,p,y,v){switch(d){case"children":typeof p=="string"?l==="body"||l==="textarea"&&p===""||Na(o,p):(typeof p=="number"||typeof p=="bigint")&&l!=="body"&&Na(o,""+p);break;case"className":Ld(o,"class",p);break;case"tabIndex":Ld(o,"tabindex",p);break;case"dir":case"role":case"viewBox":case"width":case"height":Ld(o,d,p);break;case"style":R1(o,p,v);break;case"data":if(l!=="object"){Ld(o,"data",p);break}case"src":case"href":if(p===""&&(l!=="a"||d!=="href")){o.removeAttribute(d);break}if(p==null||typeof p=="function"||typeof p=="symbol"||typeof p=="boolean"){o.removeAttribute(d);break}p=Id(""+p),o.setAttribute(d,p);break;case"action":case"formAction":if(typeof p=="function"){o.setAttribute(d,"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 v=="function"&&(d==="formAction"?(l!=="input"&&tt(o,l,"name",y.name,y,null),tt(o,l,"formEncType",y.formEncType,y,null),tt(o,l,"formMethod",y.formMethod,y,null),tt(o,l,"formTarget",y.formTarget,y,null)):(tt(o,l,"encType",y.encType,y,null),tt(o,l,"method",y.method,y,null),tt(o,l,"target",y.target,y,null)));if(p==null||typeof p=="symbol"||typeof p=="boolean"){o.removeAttribute(d);break}p=Id(""+p),o.setAttribute(d,p);break;case"onClick":p!=null&&(o.onclick=ti);break;case"onScroll":p!=null&&Le("scroll",o);break;case"onScrollEnd":p!=null&&Le("scrollend",o);break;case"dangerouslySetInnerHTML":if(p!=null){if(typeof p!="object"||!("__html"in p))throw Error(r(61));if(d=p.__html,d!=null){if(y.children!=null)throw Error(r(60));o.innerHTML=d}}break;case"multiple":o.multiple=p&&typeof p!="function"&&typeof p!="symbol";break;case"muted":o.muted=p&&typeof p!="function"&&typeof p!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(p==null||typeof p=="function"||typeof p=="boolean"||typeof p=="symbol"){o.removeAttribute("xlink:href");break}d=Id(""+p),o.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",d);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":p!=null&&typeof p!="function"&&typeof p!="symbol"?o.setAttribute(d,""+p):o.removeAttribute(d);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":p&&typeof p!="function"&&typeof p!="symbol"?o.setAttribute(d,""):o.removeAttribute(d);break;case"capture":case"download":p===!0?o.setAttribute(d,""):p!==!1&&p!=null&&typeof p!="function"&&typeof p!="symbol"?o.setAttribute(d,p):o.removeAttribute(d);break;case"cols":case"rows":case"size":case"span":p!=null&&typeof p!="function"&&typeof p!="symbol"&&!isNaN(p)&&1<=p?o.setAttribute(d,p):o.removeAttribute(d);break;case"rowSpan":case"start":p==null||typeof p=="function"||typeof p=="symbol"||isNaN(p)?o.removeAttribute(d):o.setAttribute(d,p);break;case"popover":Le("beforetoggle",o),Le("toggle",o),Od(o,"popover",p);break;case"xlinkActuate":ei(o,"http://www.w3.org/1999/xlink","xlink:actuate",p);break;case"xlinkArcrole":ei(o,"http://www.w3.org/1999/xlink","xlink:arcrole",p);break;case"xlinkRole":ei(o,"http://www.w3.org/1999/xlink","xlink:role",p);break;case"xlinkShow":ei(o,"http://www.w3.org/1999/xlink","xlink:show",p);break;case"xlinkTitle":ei(o,"http://www.w3.org/1999/xlink","xlink:title",p);break;case"xlinkType":ei(o,"http://www.w3.org/1999/xlink","xlink:type",p);break;case"xmlBase":ei(o,"http://www.w3.org/XML/1998/namespace","xml:base",p);break;case"xmlLang":ei(o,"http://www.w3.org/XML/1998/namespace","xml:lang",p);break;case"xmlSpace":ei(o,"http://www.w3.org/XML/1998/namespace","xml:space",p);break;case"is":Od(o,"is",p);break;case"innerText":case"textContent":break;default:(!(2<d.length)||d[0]!=="o"&&d[0]!=="O"||d[1]!=="n"&&d[1]!=="N")&&(d=_R.get(d)||d,Od(o,d,p))}}function qb(o,l,d,p,y,v){switch(d){case"style":R1(o,p,v);break;case"dangerouslySetInnerHTML":if(p!=null){if(typeof p!="object"||!("__html"in p))throw Error(r(61));if(d=p.__html,d!=null){if(y.children!=null)throw Error(r(60));o.innerHTML=d}}break;case"children":typeof p=="string"?Na(o,p):(typeof p=="number"||typeof p=="bigint")&&Na(o,""+p);break;case"onScroll":p!=null&&Le("scroll",o);break;case"onScrollEnd":p!=null&&Le("scrollend",o);break;case"onClick":p!=null&&(o.onclick=ti);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!E1.hasOwnProperty(d))e:{if(d[0]==="o"&&d[1]==="n"&&(y=d.endsWith("Capture"),l=d.slice(2,y?d.length-7:void 0),v=o[$n]||null,v=v!=null?v[d]:null,typeof v=="function"&&o.removeEventListener(l,v,y),typeof p=="function")){typeof v!="function"&&v!==null&&(d in o?o[d]=null:o.hasAttribute(d)&&o.removeAttribute(d)),o.addEventListener(l,p,y);break e}d in o?o[d]=p:p===!0?o.setAttribute(d,""):Od(o,d,p)}}}function Zt(o,l,d){switch(l){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":Le("error",o),Le("load",o);var p=!1,y=!1,v;for(v in d)if(d.hasOwnProperty(v)){var w=d[v];if(w!=null)switch(v){case"src":p=!0;break;case"srcSet":y=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(r(137,l));default:tt(o,l,v,w,d,null)}}y&&tt(o,l,"srcSet",d.srcSet,d,null),p&&tt(o,l,"src",d.src,d,null);return;case"input":Le("invalid",o);var R=v=w=y=null,I=null,X=null;for(p in d)if(d.hasOwnProperty(p)){var ie=d[p];if(ie!=null)switch(p){case"name":y=ie;break;case"type":w=ie;break;case"checked":I=ie;break;case"defaultChecked":X=ie;break;case"value":v=ie;break;case"defaultValue":R=ie;break;case"children":case"dangerouslySetInnerHTML":if(ie!=null)throw Error(r(137,l));break;default:tt(o,l,p,ie,d,null)}}T1(o,v,R,I,X,w,y,!1);return;case"select":Le("invalid",o),p=w=v=null;for(y in d)if(d.hasOwnProperty(y)&&(R=d[y],R!=null))switch(y){case"value":v=R;break;case"defaultValue":w=R;break;case"multiple":p=R;default:tt(o,l,y,R,d,null)}l=v,d=w,o.multiple=!!p,l!=null?Ra(o,!!p,l,!1):d!=null&&Ra(o,!!p,d,!0);return;case"textarea":Le("invalid",o),v=y=p=null;for(w in d)if(d.hasOwnProperty(w)&&(R=d[w],R!=null))switch(w){case"value":p=R;break;case"defaultValue":y=R;break;case"children":v=R;break;case"dangerouslySetInnerHTML":if(R!=null)throw Error(r(91));break;default:tt(o,l,w,R,d,null)}B1(o,p,y,v);return;case"option":for(I in d)d.hasOwnProperty(I)&&(p=d[I],p!=null)&&(I==="selected"?o.selected=p&&typeof p!="function"&&typeof p!="symbol":tt(o,l,I,p,d,null));return;case"dialog":Le("beforetoggle",o),Le("toggle",o),Le("cancel",o),Le("close",o);break;case"iframe":case"object":Le("load",o);break;case"video":case"audio":for(p=0;p<Lu.length;p++)Le(Lu[p],o);break;case"image":Le("error",o),Le("load",o);break;case"details":Le("toggle",o);break;case"embed":case"source":case"link":Le("error",o),Le("load",o);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(X in d)if(d.hasOwnProperty(X)&&(p=d[X],p!=null))switch(X){case"children":case"dangerouslySetInnerHTML":throw Error(r(137,l));default:tt(o,l,X,p,d,null)}return;default:if(og(l)){for(ie in d)d.hasOwnProperty(ie)&&(p=d[ie],p!==void 0&&qb(o,l,ie,p,d,void 0));return}}for(R in d)d.hasOwnProperty(R)&&(p=d[R],p!=null&&tt(o,l,R,p,d,null))}function mP(o,l,d,p){switch(l){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var y=null,v=null,w=null,R=null,I=null,X=null,ie=null;for(ee in d){var oe=d[ee];if(d.hasOwnProperty(ee)&&oe!=null)switch(ee){case"checked":break;case"value":break;case"defaultValue":I=oe;default:p.hasOwnProperty(ee)||tt(o,l,ee,null,p,oe)}}for(var J in p){var ee=p[J];if(oe=d[J],p.hasOwnProperty(J)&&(ee!=null||oe!=null))switch(J){case"type":v=ee;break;case"name":y=ee;break;case"checked":X=ee;break;case"defaultChecked":ie=ee;break;case"value":w=ee;break;case"defaultValue":R=ee;break;case"children":case"dangerouslySetInnerHTML":if(ee!=null)throw Error(r(137,l));break;default:ee!==oe&&tt(o,l,J,ee,p,oe)}}ig(o,w,R,I,X,ie,v,y);return;case"select":ee=w=R=J=null;for(v in d)if(I=d[v],d.hasOwnProperty(v)&&I!=null)switch(v){case"value":break;case"multiple":ee=I;default:p.hasOwnProperty(v)||tt(o,l,v,null,p,I)}for(y in p)if(v=p[y],I=d[y],p.hasOwnProperty(y)&&(v!=null||I!=null))switch(y){case"value":J=v;break;case"defaultValue":R=v;break;case"multiple":w=v;default:v!==I&&tt(o,l,y,v,p,I)}l=R,d=w,p=ee,J!=null?Ra(o,!!d,J,!1):!!p!=!!d&&(l!=null?Ra(o,!!d,l,!0):Ra(o,!!d,d?[]:"",!1));return;case"textarea":ee=J=null;for(R in d)if(y=d[R],d.hasOwnProperty(R)&&y!=null&&!p.hasOwnProperty(R))switch(R){case"value":break;case"children":break;default:tt(o,l,R,null,p,y)}for(w in p)if(y=p[w],v=d[w],p.hasOwnProperty(w)&&(y!=null||v!=null))switch(w){case"value":J=y;break;case"defaultValue":ee=y;break;case"children":break;case"dangerouslySetInnerHTML":if(y!=null)throw Error(r(91));break;default:y!==v&&tt(o,l,w,y,p,v)}A1(o,J,ee);return;case"option":for(var be in d)J=d[be],d.hasOwnProperty(be)&&J!=null&&!p.hasOwnProperty(be)&&(be==="selected"?o.selected=!1:tt(o,l,be,null,p,J));for(I in p)J=p[I],ee=d[I],p.hasOwnProperty(I)&&J!==ee&&(J!=null||ee!=null)&&(I==="selected"?o.selected=J&&typeof J!="function"&&typeof J!="symbol":tt(o,l,I,J,p,ee));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 Ee in d)J=d[Ee],d.hasOwnProperty(Ee)&&J!=null&&!p.hasOwnProperty(Ee)&&tt(o,l,Ee,null,p,J);for(X in p)if(J=p[X],ee=d[X],p.hasOwnProperty(X)&&J!==ee&&(J!=null||ee!=null))switch(X){case"children":case"dangerouslySetInnerHTML":if(J!=null)throw Error(r(137,l));break;default:tt(o,l,X,J,p,ee)}return;default:if(og(l)){for(var nt in d)J=d[nt],d.hasOwnProperty(nt)&&J!==void 0&&!p.hasOwnProperty(nt)&&qb(o,l,nt,void 0,p,J);for(ie in p)J=p[ie],ee=d[ie],!p.hasOwnProperty(ie)||J===ee||J===void 0&&ee===void 0||qb(o,l,ie,J,p,ee);return}}for(var q in d)J=d[q],d.hasOwnProperty(q)&&J!=null&&!p.hasOwnProperty(q)&&tt(o,l,q,null,p,J);for(oe in p)J=p[oe],ee=d[oe],!p.hasOwnProperty(oe)||J===ee||J==null&&ee==null||tt(o,l,oe,J,p,ee)}function N5(o){switch(o){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function gP(){if(typeof performance.getEntriesByType=="function"){for(var o=0,l=0,d=performance.getEntriesByType("resource"),p=0;p<d.length;p++){var y=d[p],v=y.transferSize,w=y.initiatorType,R=y.duration;if(v&&R&&N5(w)){for(w=0,R=y.responseEnd,p+=1;p<d.length;p++){var I=d[p],X=I.startTime;if(X>R)break;var ie=I.transferSize,oe=I.initiatorType;ie&&N5(oe)&&(I=I.responseEnd,w+=ie*(I<R?1:(R-X)/(I-X)))}if(--p,l+=8*(v+w)/(y.duration/1e3),o++,10<o)break}}if(0<o)return l/o/1e6}return navigator.connection&&(o=navigator.connection.downlink,typeof o=="number")?o:5}var Gb=null,Wb=null;function Pf(o){return o.nodeType===9?o:o.ownerDocument}function P5(o){switch(o){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function O5(o,l){if(o===0)switch(l){case"svg":return 1;case"math":return 2;default:return 0}return o===1&&l==="foreignObject"?0:o}function Qb(o,l){return o==="textarea"||o==="noscript"||typeof l.children=="string"||typeof l.children=="number"||typeof l.children=="bigint"||typeof l.dangerouslySetInnerHTML=="object"&&l.dangerouslySetInnerHTML!==null&&l.dangerouslySetInnerHTML.__html!=null}var Yb=null;function bP(){var o=window.event;return o&&o.type==="popstate"?o===Yb?!1:(Yb=o,!0):(Yb=null,!1)}var L5=typeof setTimeout=="function"?setTimeout:void 0,yP=typeof clearTimeout=="function"?clearTimeout:void 0,z5=typeof Promise=="function"?Promise:void 0,xP=typeof queueMicrotask=="function"?queueMicrotask:typeof z5<"u"?function(o){return z5.resolve(null).then(o).catch(vP)}:L5;function vP(o){setTimeout(function(){throw o})}function fs(o){return o==="head"}function I5(o,l){var d=l,p=0;do{var y=d.nextSibling;if(o.removeChild(d),y&&y.nodeType===8)if(d=y.data,d==="/$"||d==="/&"){if(p===0){o.removeChild(y),cl(l);return}p--}else if(d==="$"||d==="$?"||d==="$~"||d==="$!"||d==="&")p++;else if(d==="html")Iu(o.ownerDocument.documentElement);else if(d==="head"){d=o.ownerDocument.head,Iu(d);for(var v=d.firstChild;v;){var w=v.nextSibling,R=v.nodeName;v[nu]||R==="SCRIPT"||R==="STYLE"||R==="LINK"&&v.rel.toLowerCase()==="stylesheet"||d.removeChild(v),v=w}}else d==="body"&&Iu(o.ownerDocument.body);d=y}while(d);cl(l)}function j5(o,l){var d=o;o=0;do{var p=d.nextSibling;if(d.nodeType===1?l?(d._stashedDisplay=d.style.display,d.style.display="none"):(d.style.display=d._stashedDisplay||"",d.getAttribute("style")===""&&d.removeAttribute("style")):d.nodeType===3&&(l?(d._stashedText=d.nodeValue,d.nodeValue=""):d.nodeValue=d._stashedText||""),p&&p.nodeType===8)if(d=p.data,d==="/$"){if(o===0)break;o--}else d!=="$"&&d!=="$?"&&d!=="$~"&&d!=="$!"||o++;d=p}while(d)}function Xb(o){var l=o.firstChild;for(l&&l.nodeType===10&&(l=l.nextSibling);l;){var d=l;switch(l=l.nextSibling,d.nodeName){case"HTML":case"HEAD":case"BODY":Xb(d),ng(d);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(d.rel.toLowerCase()==="stylesheet")continue}o.removeChild(d)}}function kP(o,l,d,p){for(;o.nodeType===1;){var y=d;if(o.nodeName.toLowerCase()!==l.toLowerCase()){if(!p&&(o.nodeName!=="INPUT"||o.type!=="hidden"))break}else if(p){if(!o[nu])switch(l){case"meta":if(!o.hasAttribute("itemprop"))break;return o;case"link":if(v=o.getAttribute("rel"),v==="stylesheet"&&o.hasAttribute("data-precedence"))break;if(v!==y.rel||o.getAttribute("href")!==(y.href==null||y.href===""?null:y.href)||o.getAttribute("crossorigin")!==(y.crossOrigin==null?null:y.crossOrigin)||o.getAttribute("title")!==(y.title==null?null:y.title))break;return o;case"style":if(o.hasAttribute("data-precedence"))break;return o;case"script":if(v=o.getAttribute("src"),(v!==(y.src==null?null:y.src)||o.getAttribute("type")!==(y.type==null?null:y.type)||o.getAttribute("crossorigin")!==(y.crossOrigin==null?null:y.crossOrigin))&&v&&o.hasAttribute("async")&&!o.hasAttribute("itemprop"))break;return o;default:return o}}else if(l==="input"&&o.type==="hidden"){var v=y.name==null?null:""+y.name;if(y.type==="hidden"&&o.getAttribute("name")===v)return o}else return o;if(o=lr(o.nextSibling),o===null)break}return null}function CP(o,l,d){if(l==="")return null;for(;o.nodeType!==3;)if((o.nodeType!==1||o.nodeName!=="INPUT"||o.type!=="hidden")&&!d||(o=lr(o.nextSibling),o===null))return null;return o}function F5(o,l){for(;o.nodeType!==8;)if((o.nodeType!==1||o.nodeName!=="INPUT"||o.type!=="hidden")&&!l||(o=lr(o.nextSibling),o===null))return null;return o}function Jb(o){return o.data==="$?"||o.data==="$~"}function Zb(o){return o.data==="$!"||o.data==="$?"&&o.ownerDocument.readyState!=="loading"}function EP(o,l){var d=o.ownerDocument;if(o.data==="$~")o._reactRetry=l;else if(o.data!=="$?"||d.readyState!=="loading")l();else{var p=function(){l(),d.removeEventListener("DOMContentLoaded",p)};d.addEventListener("DOMContentLoaded",p),o._reactRetry=p}}function lr(o){for(;o!=null;o=o.nextSibling){var l=o.nodeType;if(l===1||l===3)break;if(l===8){if(l=o.data,l==="$"||l==="$!"||l==="$?"||l==="$~"||l==="&"||l==="F!"||l==="F")break;if(l==="/$"||l==="/&")return null}}return o}var e0=null;function K5(o){o=o.nextSibling;for(var l=0;o;){if(o.nodeType===8){var d=o.data;if(d==="/$"||d==="/&"){if(l===0)return lr(o.nextSibling);l--}else d!=="$"&&d!=="$!"&&d!=="$?"&&d!=="$~"&&d!=="&"||l++}o=o.nextSibling}return null}function _5(o){o=o.previousSibling;for(var l=0;o;){if(o.nodeType===8){var d=o.data;if(d==="$"||d==="$!"||d==="$?"||d==="$~"||d==="&"){if(l===0)return o;l--}else d!=="/$"&&d!=="/&"||l++}o=o.previousSibling}return null}function V5(o,l,d){switch(l=Pf(d),o){case"html":if(o=l.documentElement,!o)throw Error(r(452));return o;case"head":if(o=l.head,!o)throw Error(r(453));return o;case"body":if(o=l.body,!o)throw Error(r(454));return o;default:throw Error(r(451))}}function Iu(o){for(var l=o.attributes;l.length;)o.removeAttributeNode(l[0]);ng(o)}var ur=new Map,H5=new Set;function Of(o){return typeof o.getRootNode=="function"?o.getRootNode():o.nodeType===9?o:o.ownerDocument}var bi=K.d;K.d={f:DP,r:SP,D:wP,C:$P,L:TP,m:AP,X:MP,S:BP,M:RP};function DP(){var o=bi.f(),l=wf();return o||l}function SP(o){var l=Aa(o);l!==null&&l.tag===5&&l.type==="form"?ak(l):bi.r(o)}var al=typeof document>"u"?null:document;function U5(o,l,d){var p=al;if(p&&typeof l=="string"&&l){var y=tr(l);y='link[rel="'+o+'"][href="'+y+'"]',typeof d=="string"&&(y+='[crossorigin="'+d+'"]'),H5.has(y)||(H5.add(y),o={rel:o,crossOrigin:d,href:l},p.querySelector(y)===null&&(l=p.createElement("link"),Zt(l,"link",o),Vt(l),p.head.appendChild(l)))}}function wP(o){bi.D(o),U5("dns-prefetch",o,null)}function $P(o,l){bi.C(o,l),U5("preconnect",o,l)}function TP(o,l,d){bi.L(o,l,d);var p=al;if(p&&o&&l){var y='link[rel="preload"][as="'+tr(l)+'"]';l==="image"&&d&&d.imageSrcSet?(y+='[imagesrcset="'+tr(d.imageSrcSet)+'"]',typeof d.imageSizes=="string"&&(y+='[imagesizes="'+tr(d.imageSizes)+'"]')):y+='[href="'+tr(o)+'"]';var v=y;switch(l){case"style":v=ll(o);break;case"script":v=ul(o)}ur.has(v)||(o=m({rel:"preload",href:l==="image"&&d&&d.imageSrcSet?void 0:o,as:l},d),ur.set(v,o),p.querySelector(y)!==null||l==="style"&&p.querySelector(ju(v))||l==="script"&&p.querySelector(Fu(v))||(l=p.createElement("link"),Zt(l,"link",o),Vt(l),p.head.appendChild(l)))}}function AP(o,l){bi.m(o,l);var d=al;if(d&&o){var p=l&&typeof l.as=="string"?l.as:"script",y='link[rel="modulepreload"][as="'+tr(p)+'"][href="'+tr(o)+'"]',v=y;switch(p){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":v=ul(o)}if(!ur.has(v)&&(o=m({rel:"modulepreload",href:o},l),ur.set(v,o),d.querySelector(y)===null)){switch(p){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(d.querySelector(Fu(v)))return}p=d.createElement("link"),Zt(p,"link",o),Vt(p),d.head.appendChild(p)}}}function BP(o,l,d){bi.S(o,l,d);var p=al;if(p&&o){var y=Ba(p).hoistableStyles,v=ll(o);l=l||"default";var w=y.get(v);if(!w){var R={loading:0,preload:null};if(w=p.querySelector(ju(v)))R.loading=5;else{o=m({rel:"stylesheet",href:o,"data-precedence":l},d),(d=ur.get(v))&&t0(o,d);var I=w=p.createElement("link");Vt(I),Zt(I,"link",o),I._p=new Promise(function(X,ie){I.onload=X,I.onerror=ie}),I.addEventListener("load",function(){R.loading|=1}),I.addEventListener("error",function(){R.loading|=2}),R.loading|=4,Lf(w,l,p)}w={type:"stylesheet",instance:w,count:1,state:R},y.set(v,w)}}}function MP(o,l){bi.X(o,l);var d=al;if(d&&o){var p=Ba(d).hoistableScripts,y=ul(o),v=p.get(y);v||(v=d.querySelector(Fu(y)),v||(o=m({src:o,async:!0},l),(l=ur.get(y))&&n0(o,l),v=d.createElement("script"),Vt(v),Zt(v,"link",o),d.head.appendChild(v)),v={type:"script",instance:v,count:1,state:null},p.set(y,v))}}function RP(o,l){bi.M(o,l);var d=al;if(d&&o){var p=Ba(d).hoistableScripts,y=ul(o),v=p.get(y);v||(v=d.querySelector(Fu(y)),v||(o=m({src:o,async:!0,type:"module"},l),(l=ur.get(y))&&n0(o,l),v=d.createElement("script"),Vt(v),Zt(v,"link",o),d.head.appendChild(v)),v={type:"script",instance:v,count:1,state:null},p.set(y,v))}}function q5(o,l,d,p){var y=(y=he.current)?Of(y):null;if(!y)throw Error(r(446));switch(o){case"meta":case"title":return null;case"style":return typeof d.precedence=="string"&&typeof d.href=="string"?(l=ll(d.href),d=Ba(y).hoistableStyles,p=d.get(l),p||(p={type:"style",instance:null,count:0,state:null},d.set(l,p)),p):{type:"void",instance:null,count:0,state:null};case"link":if(d.rel==="stylesheet"&&typeof d.href=="string"&&typeof d.precedence=="string"){o=ll(d.href);var v=Ba(y).hoistableStyles,w=v.get(o);if(w||(y=y.ownerDocument||y,w={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},v.set(o,w),(v=y.querySelector(ju(o)))&&!v._p&&(w.instance=v,w.state.loading=5),ur.has(o)||(d={rel:"preload",as:"style",href:d.href,crossOrigin:d.crossOrigin,integrity:d.integrity,media:d.media,hrefLang:d.hrefLang,referrerPolicy:d.referrerPolicy},ur.set(o,d),v||NP(y,o,d,w.state))),l&&p===null)throw Error(r(528,""));return w}if(l&&p!==null)throw Error(r(529,""));return null;case"script":return l=d.async,d=d.src,typeof d=="string"&&l&&typeof l!="function"&&typeof l!="symbol"?(l=ul(d),d=Ba(y).hoistableScripts,p=d.get(l),p||(p={type:"script",instance:null,count:0,state:null},d.set(l,p)),p):{type:"void",instance:null,count:0,state:null};default:throw Error(r(444,o))}}function ll(o){return'href="'+tr(o)+'"'}function ju(o){return'link[rel="stylesheet"]['+o+"]"}function G5(o){return m({},o,{"data-precedence":o.precedence,precedence:null})}function NP(o,l,d,p){o.querySelector('link[rel="preload"][as="style"]['+l+"]")?p.loading=1:(l=o.createElement("link"),p.preload=l,l.addEventListener("load",function(){return p.loading|=1}),l.addEventListener("error",function(){return p.loading|=2}),Zt(l,"link",d),Vt(l),o.head.appendChild(l))}function ul(o){return'[src="'+tr(o)+'"]'}function Fu(o){return"script[async]"+o}function W5(o,l,d){if(l.count++,l.instance===null)switch(l.type){case"style":var p=o.querySelector('style[data-href~="'+tr(d.href)+'"]');if(p)return l.instance=p,Vt(p),p;var y=m({},d,{"data-href":d.href,"data-precedence":d.precedence,href:null,precedence:null});return p=(o.ownerDocument||o).createElement("style"),Vt(p),Zt(p,"style",y),Lf(p,d.precedence,o),l.instance=p;case"stylesheet":y=ll(d.href);var v=o.querySelector(ju(y));if(v)return l.state.loading|=4,l.instance=v,Vt(v),v;p=G5(d),(y=ur.get(y))&&t0(p,y),v=(o.ownerDocument||o).createElement("link"),Vt(v);var w=v;return w._p=new Promise(function(R,I){w.onload=R,w.onerror=I}),Zt(v,"link",p),l.state.loading|=4,Lf(v,d.precedence,o),l.instance=v;case"script":return v=ul(d.src),(y=o.querySelector(Fu(v)))?(l.instance=y,Vt(y),y):(p=d,(y=ur.get(v))&&(p=m({},d),n0(p,y)),o=o.ownerDocument||o,y=o.createElement("script"),Vt(y),Zt(y,"link",p),o.head.appendChild(y),l.instance=y);case"void":return null;default:throw Error(r(443,l.type))}else l.type==="stylesheet"&&(l.state.loading&4)===0&&(p=l.instance,l.state.loading|=4,Lf(p,d.precedence,o));return l.instance}function Lf(o,l,d){for(var p=d.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),y=p.length?p[p.length-1]:null,v=y,w=0;w<p.length;w++){var R=p[w];if(R.dataset.precedence===l)v=R;else if(v!==y)break}v?v.parentNode.insertBefore(o,v.nextSibling):(l=d.nodeType===9?d.head:d,l.insertBefore(o,l.firstChild))}function t0(o,l){o.crossOrigin==null&&(o.crossOrigin=l.crossOrigin),o.referrerPolicy==null&&(o.referrerPolicy=l.referrerPolicy),o.title==null&&(o.title=l.title)}function n0(o,l){o.crossOrigin==null&&(o.crossOrigin=l.crossOrigin),o.referrerPolicy==null&&(o.referrerPolicy=l.referrerPolicy),o.integrity==null&&(o.integrity=l.integrity)}var zf=null;function Q5(o,l,d){if(zf===null){var p=new Map,y=zf=new Map;y.set(d,p)}else y=zf,p=y.get(d),p||(p=new Map,y.set(d,p));if(p.has(o))return p;for(p.set(o,null),d=d.getElementsByTagName(o),y=0;y<d.length;y++){var v=d[y];if(!(v[nu]||v[Qt]||o==="link"&&v.getAttribute("rel")==="stylesheet")&&v.namespaceURI!=="http://www.w3.org/2000/svg"){var w=v.getAttribute(l)||"";w=o+w;var R=p.get(w);R?R.push(v):p.set(w,[v])}}return p}function Y5(o,l,d){o=o.ownerDocument||o,o.head.insertBefore(d,l==="title"?o.querySelector("head > title"):null)}function PP(o,l,d){if(d===1||l.itemProp!=null)return!1;switch(o){case"meta":case"title":return!0;case"style":if(typeof l.precedence!="string"||typeof l.href!="string"||l.href==="")break;return!0;case"link":if(typeof l.rel!="string"||typeof l.href!="string"||l.href===""||l.onLoad||l.onError)break;return l.rel==="stylesheet"?(o=l.disabled,typeof l.precedence=="string"&&o==null):!0;case"script":if(l.async&&typeof l.async!="function"&&typeof l.async!="symbol"&&!l.onLoad&&!l.onError&&l.src&&typeof l.src=="string")return!0}return!1}function X5(o){return!(o.type==="stylesheet"&&(o.state.loading&3)===0)}function OP(o,l,d,p){if(d.type==="stylesheet"&&(typeof p.media!="string"||matchMedia(p.media).matches!==!1)&&(d.state.loading&4)===0){if(d.instance===null){var y=ll(p.href),v=l.querySelector(ju(y));if(v){l=v._p,l!==null&&typeof l=="object"&&typeof l.then=="function"&&(o.count++,o=If.bind(o),l.then(o,o)),d.state.loading|=4,d.instance=v,Vt(v);return}v=l.ownerDocument||l,p=G5(p),(y=ur.get(y))&&t0(p,y),v=v.createElement("link"),Vt(v);var w=v;w._p=new Promise(function(R,I){w.onload=R,w.onerror=I}),Zt(v,"link",p),d.instance=v}o.stylesheets===null&&(o.stylesheets=new Map),o.stylesheets.set(d,l),(l=d.state.preload)&&(d.state.loading&3)===0&&(o.count++,d=If.bind(o),l.addEventListener("load",d),l.addEventListener("error",d))}}var r0=0;function LP(o,l){return o.stylesheets&&o.count===0&&Ff(o,o.stylesheets),0<o.count||0<o.imgCount?function(d){var p=setTimeout(function(){if(o.stylesheets&&Ff(o,o.stylesheets),o.unsuspend){var v=o.unsuspend;o.unsuspend=null,v()}},6e4+l);0<o.imgBytes&&r0===0&&(r0=62500*gP());var y=setTimeout(function(){if(o.waitingForImages=!1,o.count===0&&(o.stylesheets&&Ff(o,o.stylesheets),o.unsuspend)){var v=o.unsuspend;o.unsuspend=null,v()}},(o.imgBytes>r0?50:800)+l);return o.unsuspend=d,function(){o.unsuspend=null,clearTimeout(p),clearTimeout(y)}}:null}function If(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Ff(this,this.stylesheets);else if(this.unsuspend){var o=this.unsuspend;this.unsuspend=null,o()}}}var jf=null;function Ff(o,l){o.stylesheets=null,o.unsuspend!==null&&(o.count++,jf=new Map,l.forEach(zP,o),jf=null,If.call(o))}function zP(o,l){if(!(l.state.loading&4)){var d=jf.get(o);if(d)var p=d.get(null);else{d=new Map,jf.set(o,d);for(var y=o.querySelectorAll("link[data-precedence],style[data-precedence]"),v=0;v<y.length;v++){var w=y[v];(w.nodeName==="LINK"||w.getAttribute("media")!=="not all")&&(d.set(w.dataset.precedence,w),p=w)}p&&d.set(null,p)}y=l.instance,w=y.getAttribute("data-precedence"),v=d.get(w)||p,v===p&&d.set(null,y),d.set(w,y),this.count++,p=If.bind(this),y.addEventListener("load",p),y.addEventListener("error",p),v?v.parentNode.insertBefore(y,v.nextSibling):(o=o.nodeType===9?o.head:o,o.insertBefore(y,o.firstChild)),l.state.loading|=4}}var Ku={$$typeof:$,Provider:null,Consumer:null,_currentValue:Q,_currentValue2:Q,_threadCount:0};function IP(o,l,d,p,y,v,w,R,I){this.tag=1,this.containerInfo=o,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=Jm(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Jm(0),this.hiddenUpdates=Jm(null),this.identifierPrefix=p,this.onUncaughtError=y,this.onCaughtError=v,this.onRecoverableError=w,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=I,this.incompleteTransitions=new Map}function J5(o,l,d,p,y,v,w,R,I,X,ie,oe){return o=new IP(o,l,d,w,I,X,ie,oe,R),l=1,v===!0&&(l|=24),v=Hn(3,null,null,l),o.current=v,v.stateNode=o,l=Lg(),l.refCount++,o.pooledCache=l,l.refCount++,v.memoizedState={element:p,isDehydrated:d,cache:l},Fg(v),o}function Z5(o){return o?(o=Fa,o):Fa}function eC(o,l,d,p,y,v){y=Z5(y),p.context===null?p.context=y:p.pendingContext=y,p=es(l),p.payload={element:d},v=v===void 0?null:v,v!==null&&(p.callback=v),d=ts(o,p,l),d!==null&&(Nn(d,o,l),xu(d,o,l))}function tC(o,l){if(o=o.memoizedState,o!==null&&o.dehydrated!==null){var d=o.retryLane;o.retryLane=d!==0&&d<l?d:l}}function i0(o,l){tC(o,l),(o=o.alternate)&&tC(o,l)}function nC(o){if(o.tag===13||o.tag===31){var l=ho(o,67108864);l!==null&&Nn(l,o,67108864),i0(o,67108864)}}function rC(o){if(o.tag===13||o.tag===31){var l=Qn();l=Zm(l);var d=ho(o,l);d!==null&&Nn(d,o,l),i0(o,l)}}var Kf=!0;function jP(o,l,d,p){var y=O.T;O.T=null;var v=K.p;try{K.p=2,s0(o,l,d,p)}finally{K.p=v,O.T=y}}function FP(o,l,d,p){var y=O.T;O.T=null;var v=K.p;try{K.p=8,s0(o,l,d,p)}finally{K.p=v,O.T=y}}function s0(o,l,d,p){if(Kf){var y=o0(p);if(y===null)Ub(o,l,p,_f,d),sC(o,p);else if(_P(y,o,l,d,p))p.stopPropagation();else if(sC(o,p),l&4&&-1<KP.indexOf(o)){for(;y!==null;){var v=Aa(y);if(v!==null)switch(v.tag){case 3:if(v=v.stateNode,v.current.memoizedState.isDehydrated){var w=ao(v.pendingLanes);if(w!==0){var R=v;for(R.pendingLanes|=2,R.entangledLanes|=2;w;){var I=1<<31-_n(w);R.entanglements[1]|=I,w&=~I}jr(v),(We&6)===0&&(Df=ln()+500,Ou(0))}}break;case 31:case 13:R=ho(v,2),R!==null&&Nn(R,v,2),wf(),i0(v,2)}if(v=o0(p),v===null&&Ub(o,l,p,_f,d),v===y)break;y=v}y!==null&&p.stopPropagation()}else Ub(o,l,p,null,d)}}function o0(o){return o=lg(o),a0(o)}var _f=null;function a0(o){if(_f=null,o=Ta(o),o!==null){var l=s(o);if(l===null)o=null;else{var d=l.tag;if(d===13){if(o=a(l),o!==null)return o;o=null}else if(d===31){if(o=u(l),o!==null)return o;o=null}else if(d===3){if(l.stateNode.current.memoizedState.isDehydrated)return l.tag===3?l.stateNode.containerInfo:null;o=null}else l!==o&&(o=null)}}return _f=o,null}function iC(o){switch(o){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(at()){case Wt:return 2;case Or:return 8;case wa:case $R:return 32;case p1:return 268435456;default:return 32}default:return 32}}var l0=!1,hs=null,ps=null,ms=null,_u=new Map,Vu=new Map,gs=[],KP="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function sC(o,l){switch(o){case"focusin":case"focusout":hs=null;break;case"dragenter":case"dragleave":ps=null;break;case"mouseover":case"mouseout":ms=null;break;case"pointerover":case"pointerout":_u.delete(l.pointerId);break;case"gotpointercapture":case"lostpointercapture":Vu.delete(l.pointerId)}}function Hu(o,l,d,p,y,v){return o===null||o.nativeEvent!==v?(o={blockedOn:l,domEventName:d,eventSystemFlags:p,nativeEvent:v,targetContainers:[y]},l!==null&&(l=Aa(l),l!==null&&nC(l)),o):(o.eventSystemFlags|=p,l=o.targetContainers,y!==null&&l.indexOf(y)===-1&&l.push(y),o)}function _P(o,l,d,p,y){switch(l){case"focusin":return hs=Hu(hs,o,l,d,p,y),!0;case"dragenter":return ps=Hu(ps,o,l,d,p,y),!0;case"mouseover":return ms=Hu(ms,o,l,d,p,y),!0;case"pointerover":var v=y.pointerId;return _u.set(v,Hu(_u.get(v)||null,o,l,d,p,y)),!0;case"gotpointercapture":return v=y.pointerId,Vu.set(v,Hu(Vu.get(v)||null,o,l,d,p,y)),!0}return!1}function oC(o){var l=Ta(o.target);if(l!==null){var d=s(l);if(d!==null){if(l=d.tag,l===13){if(l=a(d),l!==null){o.blockedOn=l,v1(o.priority,function(){rC(d)});return}}else if(l===31){if(l=u(d),l!==null){o.blockedOn=l,v1(o.priority,function(){rC(d)});return}}else if(l===3&&d.stateNode.current.memoizedState.isDehydrated){o.blockedOn=d.tag===3?d.stateNode.containerInfo:null;return}}}o.blockedOn=null}function Vf(o){if(o.blockedOn!==null)return!1;for(var l=o.targetContainers;0<l.length;){var d=o0(o.nativeEvent);if(d===null){d=o.nativeEvent;var p=new d.constructor(d.type,d);ag=p,d.target.dispatchEvent(p),ag=null}else return l=Aa(d),l!==null&&nC(l),o.blockedOn=d,!1;l.shift()}return!0}function aC(o,l,d){Vf(o)&&d.delete(l)}function VP(){l0=!1,hs!==null&&Vf(hs)&&(hs=null),ps!==null&&Vf(ps)&&(ps=null),ms!==null&&Vf(ms)&&(ms=null),_u.forEach(aC),Vu.forEach(aC)}function Hf(o,l){o.blockedOn===l&&(o.blockedOn=null,l0||(l0=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,VP)))}var Uf=null;function lC(o){Uf!==o&&(Uf=o,t.unstable_scheduleCallback(t.unstable_NormalPriority,function(){Uf===o&&(Uf=null);for(var l=0;l<o.length;l+=3){var d=o[l],p=o[l+1],y=o[l+2];if(typeof p!="function"){if(a0(p||d)===null)continue;break}var v=Aa(d);v!==null&&(o.splice(l,3),l-=3,ob(v,{pending:!0,data:y,method:d.method,action:p},p,y))}}))}function cl(o){function l(I){return Hf(I,o)}hs!==null&&Hf(hs,o),ps!==null&&Hf(ps,o),ms!==null&&Hf(ms,o),_u.forEach(l),Vu.forEach(l);for(var d=0;d<gs.length;d++){var p=gs[d];p.blockedOn===o&&(p.blockedOn=null)}for(;0<gs.length&&(d=gs[0],d.blockedOn===null);)oC(d),d.blockedOn===null&&gs.shift();if(d=(o.ownerDocument||o).$$reactFormReplay,d!=null)for(p=0;p<d.length;p+=3){var y=d[p],v=d[p+1],w=y[$n]||null;if(typeof v=="function")w||lC(d);else if(w){var R=null;if(v&&v.hasAttribute("formAction")){if(y=v,w=v[$n]||null)R=w.formAction;else if(a0(y)!==null)continue}else R=w.action;typeof R=="function"?d[p+1]=R:(d.splice(p,3),p-=3),lC(d)}}}function uC(){function o(v){v.canIntercept&&v.info==="react-transition"&&v.intercept({handler:function(){return new Promise(function(w){return y=w})},focusReset:"manual",scroll:"manual"})}function l(){y!==null&&(y(),y=null),p||setTimeout(d,20)}function d(){if(!p&&!navigation.transition){var v=navigation.currentEntry;v&&v.url!=null&&navigation.navigate(v.url,{state:v.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var p=!1,y=null;return navigation.addEventListener("navigate",o),navigation.addEventListener("navigatesuccess",l),navigation.addEventListener("navigateerror",l),setTimeout(d,100),function(){p=!0,navigation.removeEventListener("navigate",o),navigation.removeEventListener("navigatesuccess",l),navigation.removeEventListener("navigateerror",l),y!==null&&(y(),y=null)}}}function u0(o){this._internalRoot=o}qf.prototype.render=u0.prototype.render=function(o){var l=this._internalRoot;if(l===null)throw Error(r(409));var d=l.current,p=Qn();eC(d,p,o,l,null,null)},qf.prototype.unmount=u0.prototype.unmount=function(){var o=this._internalRoot;if(o!==null){this._internalRoot=null;var l=o.containerInfo;eC(o.current,2,null,o,null,null),wf(),l[$a]=null}};function qf(o){this._internalRoot=o}qf.prototype.unstable_scheduleHydration=function(o){if(o){var l=x1();o={blockedOn:null,target:o,priority:l};for(var d=0;d<gs.length&&l!==0&&l<gs[d].priority;d++);gs.splice(d,0,o),d===0&&oC(o)}};var cC=e.version;if(cC!=="19.2.4")throw Error(r(527,cC,"19.2.4"));K.findDOMNode=function(o){var l=o._reactInternals;if(l===void 0)throw typeof o.render=="function"?Error(r(188)):(o=Object.keys(o).join(","),Error(r(268,o)));return o=f(l),o=o!==null?h(o):null,o=o===null?null:o.stateNode,o};var HP={bundleType:0,version:"19.2.4",rendererPackageName:"react-dom",currentDispatcherRef:O,reconcilerVersion:"19.2.4"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var Gf=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!Gf.isDisabled&&Gf.supportsFiber)try{Zl=Gf.inject(HP),Kn=Gf}catch{}}return qu.createRoot=function(o,l){if(!i(o))throw Error(r(299));var d=!1,p="",y=bk,v=yk,w=xk;return l!=null&&(l.unstable_strictMode===!0&&(d=!0),l.identifierPrefix!==void 0&&(p=l.identifierPrefix),l.onUncaughtError!==void 0&&(y=l.onUncaughtError),l.onCaughtError!==void 0&&(v=l.onCaughtError),l.onRecoverableError!==void 0&&(w=l.onRecoverableError)),l=J5(o,1,!1,null,null,d,p,null,y,v,w,uC),o[$a]=l.current,Hb(o),new u0(l)},qu.hydrateRoot=function(o,l,d){if(!i(o))throw Error(r(299));var p=!1,y="",v=bk,w=yk,R=xk,I=null;return d!=null&&(d.unstable_strictMode===!0&&(p=!0),d.identifierPrefix!==void 0&&(y=d.identifierPrefix),d.onUncaughtError!==void 0&&(v=d.onUncaughtError),d.onCaughtError!==void 0&&(w=d.onCaughtError),d.onRecoverableError!==void 0&&(R=d.onRecoverableError),d.formState!==void 0&&(I=d.formState)),l=J5(o,1,!0,l,d??null,p,y,I,v,w,R,uC),l.context=Z5(null),d=l.current,p=Qn(),p=Zm(p),y=es(p),y.callback=null,ts(d,y,p),d=p,l.current.lanes=d,tu(l,d),jr(l),o[$a]=l.current,Hb(o),new qf(l)},qu.version="19.2.4",qu}var vC;function ZP(){if(vC)return f0.exports;vC=1;function t(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(t)}catch(e){console.error(e)}}return t(),f0.exports=JP(),f0.exports}var eO=ZP(),dd=class{constructor(){this.listeners=new Set,this.subscribe=this.subscribe.bind(this)}subscribe(t){return this.listeners.add(t),this.onSubscribe(),()=>{this.listeners.delete(t),this.onUnsubscribe()}}hasListeners(){return this.listeners.size>0}onSubscribe(){}onUnsubscribe(){}},tO=class extends dd{#e;#t;#n;constructor(){super(),this.#n=t=>{if(typeof window<"u"&&window.addEventListener){const e=()=>t();return window.addEventListener("visibilitychange",e,!1),()=>{window.removeEventListener("visibilitychange",e)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(t){this.#n=t,this.#t?.(),this.#t=t(e=>{typeof e=="boolean"?this.setFocused(e):this.onFocus()})}setFocused(t){this.#e!==t&&(this.#e=t,this.onFocus())}onFocus(){const t=this.isFocused();this.listeners.forEach(e=>{e(t)})}isFocused(){return typeof this.#e=="boolean"?this.#e:globalThis.document?.visibilityState!=="hidden"}},o3=new tO,nO={setTimeout:(t,e)=>setTimeout(t,e),clearTimeout:t=>clearTimeout(t),setInterval:(t,e)=>setInterval(t,e),clearInterval:t=>clearInterval(t)},rO=class{#e=nO;#t=!1;setTimeoutProvider(t){this.#e=t}setTimeout(t,e){return this.#e.setTimeout(t,e)}clearTimeout(t){this.#e.clearTimeout(t)}setInterval(t,e){return this.#e.setInterval(t,e)}clearInterval(t){this.#e.clearInterval(t)}},No=new rO;function iO(t){setTimeout(t,0)}var sO=typeof window>"u"||"Deno"in globalThis;function On(){}function oO(t,e){return typeof t=="function"?t(e):t}function Ay(t){return typeof t=="number"&&t>=0&&t!==1/0}function bS(t,e){return Math.max(t+(e||0)-Date.now(),0)}function Ps(t,e){return typeof t=="function"?t(e):t}function Yn(t,e){return typeof t=="function"?t(e):t}function kC(t,e){const{type:n="all",exact:r,fetchStatus:i,predicate:s,queryKey:a,stale:u}=t;if(a){if(r){if(e.queryHash!==a3(a,e.options))return!1}else if(!Al(e.queryKey,a))return!1}if(n!=="all"){const c=e.isActive();if(n==="active"&&!c||n==="inactive"&&c)return!1}return!(typeof u=="boolean"&&e.isStale()!==u||i&&i!==e.state.fetchStatus||s&&!s(e))}function CC(t,e){const{exact:n,status:r,predicate:i,mutationKey:s}=t;if(s){if(!e.options.mutationKey)return!1;if(n){if(Lc(e.options.mutationKey)!==Lc(s))return!1}else if(!Al(e.options.mutationKey,s))return!1}return!(r&&e.state.status!==r||i&&!i(e))}function a3(t,e){return(e?.queryKeyHashFn||Lc)(t)}function Lc(t){return JSON.stringify(t,(e,n)=>My(n)?Object.keys(n).sort().reduce((r,i)=>(r[i]=n[i],r),{}):n)}function Al(t,e){if(t===e)return!0;if(typeof t!=typeof e)return!1;if(t&&e&&typeof t=="object"&&typeof e=="object"){if(Array.isArray(t)&&Array.isArray(e)){for(let r=0;r<e.length;r++)if(!Al(t[r],e[r]))return!1;return!0}const n=Object.keys(e);for(const r of n)if(!Al(t[r],e[r]))return!1;return!0}return!1}var aO=Object.prototype.hasOwnProperty;function yS(t,e,n=0){if(t===e)return t;if(n>500)return e;const r=EC(t)&&EC(e);if(!r&&!(My(t)&&My(e)))return e;const s=(r?t:Object.keys(t)).length,a=r?e:Object.keys(e),u=a.length,c=r?new Array(u):{};let f=0;for(let h=0;h<u;h++){const m=r?h:a[h],g=t[m],b=e[m];if(g===b){c[m]=g,(r?h<s:aO.call(t,m))&&f++;continue}if(g===null||b===null||typeof g!="object"||typeof b!="object"){c[m]=b;continue}const x=yS(g,b,n+1);c[m]=x,x===g&&f++}return s===u&&f===s?t:c}function By(t,e){if(!e||Object.keys(t).length!==Object.keys(e).length)return!1;for(const n in t)if(t[n]!==e[n])return!1;return!0}function EC(t){return Array.isArray(t)&&t.length===Object.keys(t).length}function My(t){if(!DC(t))return!1;const e=t.constructor;if(e===void 0)return!0;const n=e.prototype;return!(!DC(n)||!n.hasOwnProperty("isPrototypeOf")||Object.getPrototypeOf(t)!==Object.prototype)}function DC(t){return Object.prototype.toString.call(t)==="[object Object]"}function lO(t){return new Promise(e=>{No.setTimeout(e,t)})}function Ry(t,e,n){return typeof n.structuralSharing=="function"?n.structuralSharing(t,e):n.structuralSharing!==!1?yS(t,e):e}function uO(t,e,n=0){const r=[...t,e];return n&&r.length>n?r.slice(1):r}function cO(t,e,n=0){const r=[e,...t];return n&&r.length>n?r.slice(0,-1):r}var l3=Symbol();function xS(t,e){return!t.queryFn&&e?.initialPromise?()=>e.initialPromise:!t.queryFn||t.queryFn===l3?()=>Promise.reject(new Error(`Missing queryFn: '${t.queryHash}'`)):t.queryFn}function vS(t,e){return typeof t=="function"?t(...e):!!t}function dO(t,e,n){let r=!1,i;return Object.defineProperty(t,"signal",{enumerable:!0,get:()=>(i??=e(),r||(r=!0,i.aborted?n():i.addEventListener("abort",n,{once:!0})),i)}),t}var zc=(()=>{let t=()=>sO;return{isServer(){return t()},setIsServer(e){t=e}}})();function Ny(){let t,e;const n=new Promise((i,s)=>{t=i,e=s});n.status="pending",n.catch(()=>{});function r(i){Object.assign(n,i),delete n.resolve,delete n.reject}return n.resolve=i=>{r({status:"fulfilled",value:i}),t(i)},n.reject=i=>{r({status:"rejected",reason:i}),e(i)},n}var fO=iO;function hO(){let t=[],e=0,n=u=>{u()},r=u=>{u()},i=fO;const s=u=>{e?t.push(u):i(()=>{n(u)})},a=()=>{const u=t;t=[],u.length&&i(()=>{r(()=>{u.forEach(c=>{n(c)})})})};return{batch:u=>{let c;e++;try{c=u()}finally{e--,e||a()}return c},batchCalls:u=>(...c)=>{s(()=>{u(...c)})},schedule:s,setNotifyFunction:u=>{n=u},setBatchNotifyFunction:u=>{r=u},setScheduler:u=>{i=u}}}var tn=hO(),pO=class extends dd{#e=!0;#t;#n;constructor(){super(),this.#n=t=>{if(typeof window<"u"&&window.addEventListener){const e=()=>t(!0),n=()=>t(!1);return window.addEventListener("online",e,!1),window.addEventListener("offline",n,!1),()=>{window.removeEventListener("online",e),window.removeEventListener("offline",n)}}}}onSubscribe(){this.#t||this.setEventListener(this.#n)}onUnsubscribe(){this.hasListeners()||(this.#t?.(),this.#t=void 0)}setEventListener(t){this.#n=t,this.#t?.(),this.#t=t(this.setOnline.bind(this))}setOnline(t){this.#e!==t&&(this.#e=t,this.listeners.forEach(n=>{n(t)}))}isOnline(){return this.#e}},Vh=new pO;function mO(t){return Math.min(1e3*2**t,3e4)}function kS(t){return(t??"online")==="online"?Vh.isOnline():!0}var Py=class extends Error{constructor(t){super("CancelledError"),this.revert=t?.revert,this.silent=t?.silent}};function CS(t){let e=!1,n=0,r;const i=Ny(),s=()=>i.status!=="pending",a=k=>{if(!s()){const E=new Py(k);g(E),t.onCancel?.(E)}},u=()=>{e=!0},c=()=>{e=!1},f=()=>o3.isFocused()&&(t.networkMode==="always"||Vh.isOnline())&&t.canRun(),h=()=>kS(t.networkMode)&&t.canRun(),m=k=>{s()||(r?.(),i.resolve(k))},g=k=>{s()||(r?.(),i.reject(k))},b=()=>new Promise(k=>{r=E=>{(s()||f())&&k(E)},t.onPause?.()}).then(()=>{r=void 0,s()||t.onContinue?.()}),x=()=>{if(s())return;let k;const E=n===0?t.initialPromise:void 0;try{k=E??t.fn()}catch(D){k=Promise.reject(D)}Promise.resolve(k).then(m).catch(D=>{if(s())return;const T=t.retry??(zc.isServer()?0:3),$=t.retryDelay??mO,A=typeof $=="function"?$(n,D):$,B=T===!0||typeof T=="number"&&n<T||typeof T=="function"&&T(n,D);if(e||!B){g(D);return}n++,t.onFail?.(n,D),lO(A).then(()=>f()?void 0:b()).then(()=>{e?g(D):x()})})};return{promise:i,status:()=>i.status,cancel:a,continue:()=>(r?.(),i),cancelRetry:u,continueRetry:c,canStart:h,start:()=>(h()?x():b().then(x),i)}}var ES=class{#e;destroy(){this.clearGcTimeout()}scheduleGc(){this.clearGcTimeout(),Ay(this.gcTime)&&(this.#e=No.setTimeout(()=>{this.optionalRemove()},this.gcTime))}updateGcTime(t){this.gcTime=Math.max(this.gcTime||0,t??(zc.isServer()?1/0:300*1e3))}clearGcTimeout(){this.#e!==void 0&&(No.clearTimeout(this.#e),this.#e=void 0)}};function gO(t){return{onFetch:(e,n)=>{const r=e.options,i=e.fetchOptions?.meta?.fetchMore?.direction,s=e.state.data?.pages||[],a=e.state.data?.pageParams||[];let u={pages:[],pageParams:[]},c=0;const f=async()=>{let h=!1;const m=x=>{dO(x,()=>e.signal,()=>h=!0)},g=xS(e.options,e.fetchOptions),b=async(x,k,E)=>{if(h)return Promise.reject(e.signal.reason);if(k==null&&x.pages.length)return Promise.resolve(x);const T=(()=>{const P={client:e.client,queryKey:e.queryKey,pageParam:k,direction:E?"backward":"forward",meta:e.options.meta};return m(P),P})(),$=await g(T),{maxPages:A}=e.options,B=E?cO:uO;return{pages:B(x.pages,$,A),pageParams:B(x.pageParams,k,A)}};if(i&&s.length){const x=i==="backward",k=x?bO:SC,E={pages:s,pageParams:a},D=k(r,E);u=await b(E,D,x)}else{const x=t??s.length;do{const k=c===0?a[0]??r.initialPageParam:SC(r,u);if(c>0&&k==null)break;u=await b(u,k),c++}while(c<x)}return u};e.options.persister?e.fetchFn=()=>e.options.persister?.(f,{client:e.client,queryKey:e.queryKey,meta:e.options.meta,signal:e.signal},n):e.fetchFn=f}}}function SC(t,{pages:e,pageParams:n}){const r=e.length-1;return e.length>0?t.getNextPageParam(e[r],e,n[r],n):void 0}function bO(t,{pages:e,pageParams:n}){return e.length>0?t.getPreviousPageParam?.(e[0],e,n[0],n):void 0}var yO=class extends ES{#e;#t;#n;#r;#s;#i;#a;#o;constructor(t){super(),this.#o=!1,this.#a=t.defaultOptions,this.setOptions(t.options),this.observers=[],this.#s=t.client,this.#r=this.#s.getQueryCache(),this.queryKey=t.queryKey,this.queryHash=t.queryHash,this.#t=$C(this.options),this.state=t.state??this.#t,this.scheduleGc()}get meta(){return this.options.meta}get queryType(){return this.#e}get promise(){return this.#i?.promise}setOptions(t){if(this.options={...this.#a,...t},t?._type&&(this.#e=t._type),this.updateGcTime(this.options.gcTime),this.state&&this.state.data===void 0){const e=$C(this.options);e.data!==void 0&&(this.setState(wC(e.data,e.dataUpdatedAt)),this.#t=e)}}optionalRemove(){!this.observers.length&&this.state.fetchStatus==="idle"&&this.#r.remove(this)}setData(t,e){const n=Ry(this.state.data,t,this.options);return this.#l({data:n,type:"success",dataUpdatedAt:e?.updatedAt,manual:e?.manual}),n}setState(t){this.#l({type:"setState",state:t})}cancel(t){const e=this.#i?.promise;return this.#i?.cancel(t),e?e.then(On).catch(On):Promise.resolve()}destroy(){super.destroy(),this.cancel({silent:!0})}get resetState(){return this.#t}reset(){this.destroy(),this.setState(this.resetState)}isActive(){return this.observers.some(t=>Yn(t.options.enabled,this)!==!1)}isDisabled(){return this.getObserversCount()>0?!this.isActive():this.options.queryFn===l3||!this.isFetched()}isFetched(){return this.state.dataUpdateCount+this.state.errorUpdateCount>0}isStatic(){return this.getObserversCount()>0?this.observers.some(t=>Ps(t.options.staleTime,this)==="static"):!1}isStale(){return this.getObserversCount()>0?this.observers.some(t=>t.getCurrentResult().isStale):this.state.data===void 0||this.state.isInvalidated}isStaleByTime(t=0){return this.state.data===void 0?!0:t==="static"?!1:this.state.isInvalidated?!0:!bS(this.state.dataUpdatedAt,t)}onFocus(){this.observers.find(e=>e.shouldFetchOnWindowFocus())?.refetch({cancelRefetch:!1}),this.#i?.continue()}onOnline(){this.observers.find(e=>e.shouldFetchOnReconnect())?.refetch({cancelRefetch:!1}),this.#i?.continue()}addObserver(t){this.observers.includes(t)||(this.observers.push(t),this.clearGcTimeout(),this.#r.notify({type:"observerAdded",query:this,observer:t}))}removeObserver(t){this.observers.includes(t)&&(this.observers=this.observers.filter(e=>e!==t),this.observers.length||(this.#i&&(this.#o||this.#c()?this.#i.cancel({revert:!0}):this.#i.cancelRetry()),this.scheduleGc()),this.#r.notify({type:"observerRemoved",query:this,observer:t}))}getObserversCount(){return this.observers.length}#c(){return this.state.fetchStatus==="paused"&&this.state.status==="pending"}invalidate(){this.state.isInvalidated||this.#l({type:"invalidate"})}async fetch(t,e){if(this.state.fetchStatus!=="idle"&&this.#i?.status()!=="rejected"){if(this.state.data!==void 0&&e?.cancelRefetch)this.cancel({silent:!0});else if(this.#i)return this.#i.continueRetry(),this.#i.promise}if(t&&this.setOptions(t),!this.options.queryFn){const c=this.observers.find(f=>f.options.queryFn);c&&this.setOptions(c.options)}const n=new AbortController,r=c=>{Object.defineProperty(c,"signal",{enumerable:!0,get:()=>(this.#o=!0,n.signal)})},i=()=>{const c=xS(this.options,e),h=(()=>{const m={client:this.#s,queryKey:this.queryKey,meta:this.meta};return r(m),m})();return this.#o=!1,this.options.persister?this.options.persister(c,h,this):c(h)},a=(()=>{const c={fetchOptions:e,options:this.options,queryKey:this.queryKey,client:this.#s,state:this.state,fetchFn:i};return r(c),c})();(this.#e==="infinite"?gO(this.options.pages):this.options.behavior)?.onFetch(a,this),this.#n=this.state,(this.state.fetchStatus==="idle"||this.state.fetchMeta!==a.fetchOptions?.meta)&&this.#l({type:"fetch",meta:a.fetchOptions?.meta}),this.#i=CS({initialPromise:e?.initialPromise,fn:a.fetchFn,onCancel:c=>{c instanceof Py&&c.revert&&this.setState({...this.#n,fetchStatus:"idle"}),n.abort()},onFail:(c,f)=>{this.#l({type:"failed",failureCount:c,error:f})},onPause:()=>{this.#l({type:"pause"})},onContinue:()=>{this.#l({type:"continue"})},retry:a.options.retry,retryDelay:a.options.retryDelay,networkMode:a.options.networkMode,canRun:()=>!0});try{const c=await this.#i.start();if(c===void 0)throw new Error(`${this.queryHash} data is undefined`);return this.setData(c),this.#r.config.onSuccess?.(c,this),this.#r.config.onSettled?.(c,this.state.error,this),c}catch(c){if(c instanceof Py){if(c.silent)return this.#i.promise;if(c.revert){if(this.state.data===void 0)throw c;return this.state.data}}throw this.#l({type:"error",error:c}),this.#r.config.onError?.(c,this),this.#r.config.onSettled?.(this.state.data,c,this),c}finally{this.scheduleGc()}}#l(t){const e=n=>{switch(t.type){case"failed":return{...n,fetchFailureCount:t.failureCount,fetchFailureReason:t.error};case"pause":return{...n,fetchStatus:"paused"};case"continue":return{...n,fetchStatus:"fetching"};case"fetch":return{...n,...DS(n.data,this.options),fetchMeta:t.meta??null};case"success":const r={...n,...wC(t.data,t.dataUpdatedAt),dataUpdateCount:n.dataUpdateCount+1,...!t.manual&&{fetchStatus:"idle",fetchFailureCount:0,fetchFailureReason:null}};return this.#n=t.manual?r:void 0,r;case"error":const i=t.error;return{...n,error:i,errorUpdateCount:n.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:n.fetchFailureCount+1,fetchFailureReason:i,fetchStatus:"idle",status:"error",isInvalidated:!0};case"invalidate":return{...n,isInvalidated:!0};case"setState":return{...n,...t.state}}};this.state=e(this.state),tn.batch(()=>{this.observers.forEach(n=>{n.onQueryUpdate()}),this.#r.notify({query:this,type:"updated",action:t})})}};function DS(t,e){return{fetchFailureCount:0,fetchFailureReason:null,fetchStatus:kS(e.networkMode)?"fetching":"paused",...t===void 0&&{error:null,status:"pending"}}}function wC(t,e){return{data:t,dataUpdatedAt:e??Date.now(),error:null,isInvalidated:!1,status:"success"}}function $C(t){const e=typeof t.initialData=="function"?t.initialData():t.initialData,n=e!==void 0,r=n?typeof t.initialDataUpdatedAt=="function"?t.initialDataUpdatedAt():t.initialDataUpdatedAt:0;return{data:e,dataUpdateCount:0,dataUpdatedAt:n?r??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchFailureReason:null,fetchMeta:null,isInvalidated:!1,status:n?"success":"pending",fetchStatus:"idle"}}var xO=class extends dd{constructor(t,e){super(),this.options=e,this.#e=t,this.#o=null,this.#a=Ny(),this.bindMethods(),this.setOptions(e)}#e;#t=void 0;#n=void 0;#r=void 0;#s;#i;#a;#o;#c;#l;#p;#d;#f;#u;#m=new Set;bindMethods(){this.refetch=this.refetch.bind(this)}onSubscribe(){this.listeners.size===1&&(this.#t.addObserver(this),TC(this.#t,this.options)?this.#h():this.updateResult(),this.#x())}onUnsubscribe(){this.hasListeners()||this.destroy()}shouldFetchOnReconnect(){return Oy(this.#t,this.options,this.options.refetchOnReconnect)}shouldFetchOnWindowFocus(){return Oy(this.#t,this.options,this.options.refetchOnWindowFocus)}destroy(){this.listeners=new Set,this.#v(),this.#k(),this.#t.removeObserver(this)}setOptions(t){const e=this.options,n=this.#t;if(this.options=this.#e.defaultQueryOptions(t),this.options.enabled!==void 0&&typeof this.options.enabled!="boolean"&&typeof this.options.enabled!="function"&&typeof Yn(this.options.enabled,this.#t)!="boolean")throw new Error("Expected enabled to be a boolean or a callback that returns a boolean");this.#C(),this.#t.setOptions(this.options),e._defaulted&&!By(this.options,e)&&this.#e.getQueryCache().notify({type:"observerOptionsUpdated",query:this.#t,observer:this});const r=this.hasListeners();r&&AC(this.#t,n,this.options,e)&&this.#h(),this.updateResult(),r&&(this.#t!==n||Yn(this.options.enabled,this.#t)!==Yn(e.enabled,this.#t)||Ps(this.options.staleTime,this.#t)!==Ps(e.staleTime,this.#t))&&this.#g();const i=this.#b();r&&(this.#t!==n||Yn(this.options.enabled,this.#t)!==Yn(e.enabled,this.#t)||i!==this.#u)&&this.#y(i)}getOptimisticResult(t){const e=this.#e.getQueryCache().build(this.#e,t),n=this.createResult(e,t);return kO(this,n)&&(this.#r=n,this.#i=this.options,this.#s=this.#t.state),n}getCurrentResult(){return this.#r}trackResult(t,e){return new Proxy(t,{get:(n,r)=>(this.trackProp(r),e?.(r),r==="promise"&&(this.trackProp("data"),!this.options.experimental_prefetchInRender&&this.#a.status==="pending"&&this.#a.reject(new Error("experimental_prefetchInRender feature flag is not enabled"))),Reflect.get(n,r))})}trackProp(t){this.#m.add(t)}getCurrentQuery(){return this.#t}refetch({...t}={}){return this.fetch({...t})}fetchOptimistic(t){const e=this.#e.defaultQueryOptions(t),n=this.#e.getQueryCache().build(this.#e,e);return n.fetch().then(()=>this.createResult(n,e))}fetch(t){return this.#h({...t,cancelRefetch:t.cancelRefetch??!0}).then(()=>(this.updateResult(),this.#r))}#h(t){this.#C();let e=this.#t.fetch(this.options,t);return t?.throwOnError||(e=e.catch(On)),e}#g(){this.#v();const t=Ps(this.options.staleTime,this.#t);if(zc.isServer()||this.#r.isStale||!Ay(t))return;const n=bS(this.#r.dataUpdatedAt,t)+1;this.#d=No.setTimeout(()=>{this.#r.isStale||this.updateResult()},n)}#b(){return(typeof this.options.refetchInterval=="function"?this.options.refetchInterval(this.#t):this.options.refetchInterval)??!1}#y(t){this.#k(),this.#u=t,!(zc.isServer()||Yn(this.options.enabled,this.#t)===!1||!Ay(this.#u)||this.#u===0)&&(this.#f=No.setInterval(()=>{(this.options.refetchIntervalInBackground||o3.isFocused())&&this.#h()},this.#u))}#x(){this.#g(),this.#y(this.#b())}#v(){this.#d!==void 0&&(No.clearTimeout(this.#d),this.#d=void 0)}#k(){this.#f!==void 0&&(No.clearInterval(this.#f),this.#f=void 0)}createResult(t,e){const n=this.#t,r=this.options,i=this.#r,s=this.#s,a=this.#i,c=t!==n?t.state:this.#n,{state:f}=t;let h={...f},m=!1,g;if(e._optimisticResults){const N=this.hasListeners(),j=!N&&TC(t,e),G=N&&AC(t,n,e,r);(j||G)&&(h={...h,...DS(f.data,t.options)}),e._optimisticResults==="isRestoring"&&(h.fetchStatus="idle")}let{error:b,errorUpdatedAt:x,status:k}=h;g=h.data;let E=!1;if(e.placeholderData!==void 0&&g===void 0&&k==="pending"){let N;i?.isPlaceholderData&&e.placeholderData===a?.placeholderData?(N=i.data,E=!0):N=typeof e.placeholderData=="function"?e.placeholderData(this.#p?.state.data,this.#p):e.placeholderData,N!==void 0&&(k="success",g=Ry(i?.data,N,e),m=!0)}if(e.select&&g!==void 0&&!E)if(i&&g===s?.data&&e.select===this.#c)g=this.#l;else try{this.#c=e.select,g=e.select(g),g=Ry(i?.data,g,e),this.#l=g,this.#o=null}catch(N){this.#o=N}this.#o&&(b=this.#o,g=this.#l,x=Date.now(),k="error");const D=h.fetchStatus==="fetching",T=k==="pending",$=k==="error",A=T&&D,B=g!==void 0,M={status:k,fetchStatus:h.fetchStatus,isPending:T,isSuccess:k==="success",isError:$,isInitialLoading:A,isLoading:A,data:g,dataUpdatedAt:h.dataUpdatedAt,error:b,errorUpdatedAt:x,failureCount:h.fetchFailureCount,failureReason:h.fetchFailureReason,errorUpdateCount:h.errorUpdateCount,isFetched:t.isFetched(),isFetchedAfterMount:h.dataUpdateCount>c.dataUpdateCount||h.errorUpdateCount>c.errorUpdateCount,isFetching:D,isRefetching:D&&!T,isLoadingError:$&&!B,isPaused:h.fetchStatus==="paused",isPlaceholderData:m,isRefetchError:$&&B,isStale:u3(t,e),refetch:this.refetch,promise:this.#a,isEnabled:Yn(e.enabled,t)!==!1};if(this.options.experimental_prefetchInRender){const N=M.data!==void 0,j=M.status==="error"&&!N,G=ne=>{j?ne.reject(M.error):N&&ne.resolve(M.data)},W=()=>{const ne=this.#a=M.promise=Ny();G(ne)},U=this.#a;switch(U.status){case"pending":t.queryHash===n.queryHash&&G(U);break;case"fulfilled":(j||M.data!==U.value)&&W();break;case"rejected":(!j||M.error!==U.reason)&&W();break}}return M}updateResult(){const t=this.#r,e=this.createResult(this.#t,this.options);if(this.#s=this.#t.state,this.#i=this.options,this.#s.data!==void 0&&(this.#p=this.#t),By(e,t))return;this.#r=e;const n=()=>{if(!t)return!0;const{notifyOnChangeProps:r}=this.options,i=typeof r=="function"?r():r;if(i==="all"||!i&&!this.#m.size)return!0;const s=new Set(i??this.#m);return this.options.throwOnError&&s.add("error"),Object.keys(this.#r).some(a=>{const u=a;return this.#r[u]!==t[u]&&s.has(u)})};this.#E({listeners:n()})}#C(){const t=this.#e.getQueryCache().build(this.#e,this.options);if(t===this.#t)return;const e=this.#t;this.#t=t,this.#n=t.state,this.hasListeners()&&(e?.removeObserver(this),t.addObserver(this))}onQueryUpdate(){this.updateResult(),this.hasListeners()&&this.#x()}#E(t){tn.batch(()=>{t.listeners&&this.listeners.forEach(e=>{e(this.#r)}),this.#e.getQueryCache().notify({query:this.#t,type:"observerResultsUpdated"})})}};function vO(t,e){return Yn(e.enabled,t)!==!1&&t.state.data===void 0&&!(t.state.status==="error"&&Yn(e.retryOnMount,t)===!1)}function TC(t,e){return vO(t,e)||t.state.data!==void 0&&Oy(t,e,e.refetchOnMount)}function Oy(t,e,n){if(Yn(e.enabled,t)!==!1&&Ps(e.staleTime,t)!=="static"){const r=typeof n=="function"?n(t):n;return r==="always"||r!==!1&&u3(t,e)}return!1}function AC(t,e,n,r){return(t!==e||Yn(r.enabled,t)===!1)&&(!n.suspense||t.state.status!=="error")&&u3(t,n)}function u3(t,e){return Yn(e.enabled,t)!==!1&&t.isStaleByTime(Ps(e.staleTime,t))}function kO(t,e){return!By(t.getCurrentResult(),e)}var CO=class extends ES{#e;#t;#n;#r;constructor(t){super(),this.#e=t.client,this.mutationId=t.mutationId,this.#n=t.mutationCache,this.#t=[],this.state=t.state||EO(),this.setOptions(t.options),this.scheduleGc()}setOptions(t){this.options=t,this.updateGcTime(this.options.gcTime)}get meta(){return this.options.meta}addObserver(t){this.#t.includes(t)||(this.#t.push(t),this.clearGcTimeout(),this.#n.notify({type:"observerAdded",mutation:this,observer:t}))}removeObserver(t){this.#t=this.#t.filter(e=>e!==t),this.scheduleGc(),this.#n.notify({type:"observerRemoved",mutation:this,observer:t})}optionalRemove(){this.#t.length||(this.state.status==="pending"?this.scheduleGc():this.#n.remove(this))}continue(){return this.#r?.continue()??this.execute(this.state.variables)}async execute(t){const e=()=>{this.#s({type:"continue"})},n={client:this.#e,meta:this.options.meta,mutationKey:this.options.mutationKey};this.#r=CS({fn:()=>this.options.mutationFn?this.options.mutationFn(t,n):Promise.reject(new Error("No mutationFn found")),onFail:(s,a)=>{this.#s({type:"failed",failureCount:s,error:a})},onPause:()=>{this.#s({type:"pause"})},onContinue:e,retry:this.options.retry??0,retryDelay:this.options.retryDelay,networkMode:this.options.networkMode,canRun:()=>this.#n.canRun(this)});const r=this.state.status==="pending",i=!this.#r.canStart();try{if(r)e();else{this.#s({type:"pending",variables:t,isPaused:i}),this.#n.config.onMutate&&await this.#n.config.onMutate(t,this,n);const a=await this.options.onMutate?.(t,n);a!==this.state.context&&this.#s({type:"pending",context:a,variables:t,isPaused:i})}const s=await this.#r.start();return await this.#n.config.onSuccess?.(s,t,this.state.context,this,n),await this.options.onSuccess?.(s,t,this.state.context,n),await this.#n.config.onSettled?.(s,null,this.state.variables,this.state.context,this,n),await this.options.onSettled?.(s,null,t,this.state.context,n),this.#s({type:"success",data:s}),s}catch(s){try{await this.#n.config.onError?.(s,t,this.state.context,this,n)}catch(a){Promise.reject(a)}try{await this.options.onError?.(s,t,this.state.context,n)}catch(a){Promise.reject(a)}try{await this.#n.config.onSettled?.(void 0,s,this.state.variables,this.state.context,this,n)}catch(a){Promise.reject(a)}try{await this.options.onSettled?.(void 0,s,t,this.state.context,n)}catch(a){Promise.reject(a)}throw this.#s({type:"error",error:s}),s}finally{this.#n.runNext(this)}}#s(t){const e=n=>{switch(t.type){case"failed":return{...n,failureCount:t.failureCount,failureReason:t.error};case"pause":return{...n,isPaused:!0};case"continue":return{...n,isPaused:!1};case"pending":return{...n,context:t.context,data:void 0,failureCount:0,failureReason:null,error:null,isPaused:t.isPaused,status:"pending",variables:t.variables,submittedAt:Date.now()};case"success":return{...n,data:t.data,failureCount:0,failureReason:null,error:null,status:"success",isPaused:!1};case"error":return{...n,data:void 0,error:t.error,failureCount:n.failureCount+1,failureReason:t.error,isPaused:!1,status:"error"}}};this.state=e(this.state),tn.batch(()=>{this.#t.forEach(n=>{n.onMutationUpdate(t)}),this.#n.notify({mutation:this,type:"updated",action:t})})}};function EO(){return{context:void 0,data:void 0,error:null,failureCount:0,failureReason:null,isPaused:!1,status:"idle",variables:void 0,submittedAt:0}}var DO=class extends dd{constructor(t={}){super(),this.config=t,this.#e=new Set,this.#t=new Map,this.#n=0}#e;#t;#n;build(t,e,n){const r=new CO({client:t,mutationCache:this,mutationId:++this.#n,options:t.defaultMutationOptions(e),state:n});return this.add(r),r}add(t){this.#e.add(t);const e=Wf(t);if(typeof e=="string"){const n=this.#t.get(e);n?n.push(t):this.#t.set(e,[t])}this.notify({type:"added",mutation:t})}remove(t){if(this.#e.delete(t)){const e=Wf(t);if(typeof e=="string"){const n=this.#t.get(e);if(n)if(n.length>1){const r=n.indexOf(t);r!==-1&&n.splice(r,1)}else n[0]===t&&this.#t.delete(e)}}this.notify({type:"removed",mutation:t})}canRun(t){const e=Wf(t);if(typeof e=="string"){const r=this.#t.get(e)?.find(i=>i.state.status==="pending");return!r||r===t}else return!0}runNext(t){const e=Wf(t);return typeof e=="string"?this.#t.get(e)?.find(r=>r!==t&&r.state.isPaused)?.continue()??Promise.resolve():Promise.resolve()}clear(){tn.batch(()=>{this.#e.forEach(t=>{this.notify({type:"removed",mutation:t})}),this.#e.clear(),this.#t.clear()})}getAll(){return Array.from(this.#e)}find(t){const e={exact:!0,...t};return this.getAll().find(n=>CC(e,n))}findAll(t={}){return this.getAll().filter(e=>CC(t,e))}notify(t){tn.batch(()=>{this.listeners.forEach(e=>{e(t)})})}resumePausedMutations(){const t=this.getAll().filter(e=>e.state.isPaused);return tn.batch(()=>Promise.all(t.map(e=>e.continue().catch(On))))}};function Wf(t){return t.options.scope?.id}var SO=class extends dd{constructor(t={}){super(),this.config=t,this.#e=new Map}#e;build(t,e,n){const r=e.queryKey,i=e.queryHash??a3(r,e);let s=this.get(i);return s||(s=new yO({client:t,queryKey:r,queryHash:i,options:t.defaultQueryOptions(e),state:n,defaultOptions:t.getQueryDefaults(r)}),this.add(s)),s}add(t){this.#e.has(t.queryHash)||(this.#e.set(t.queryHash,t),this.notify({type:"added",query:t}))}remove(t){const e=this.#e.get(t.queryHash);e&&(t.destroy(),e===t&&this.#e.delete(t.queryHash),this.notify({type:"removed",query:t}))}clear(){tn.batch(()=>{this.getAll().forEach(t=>{this.remove(t)})})}get(t){return this.#e.get(t)}getAll(){return[...this.#e.values()]}find(t){const e={exact:!0,...t};return this.getAll().find(n=>kC(e,n))}findAll(t={}){const e=this.getAll();return Object.keys(t).length>0?e.filter(n=>kC(t,n)):e}notify(t){tn.batch(()=>{this.listeners.forEach(e=>{e(t)})})}onFocus(){tn.batch(()=>{this.getAll().forEach(t=>{t.onFocus()})})}onOnline(){tn.batch(()=>{this.getAll().forEach(t=>{t.onOnline()})})}},wO=class{#e;#t;#n;#r;#s;#i;#a;#o;constructor(t={}){this.#e=t.queryCache||new SO,this.#t=t.mutationCache||new DO,this.#n=t.defaultOptions||{},this.#r=new Map,this.#s=new Map,this.#i=0}mount(){this.#i++,this.#i===1&&(this.#a=o3.subscribe(async t=>{t&&(await this.resumePausedMutations(),this.#e.onFocus())}),this.#o=Vh.subscribe(async t=>{t&&(await this.resumePausedMutations(),this.#e.onOnline())}))}unmount(){this.#i--,this.#i===0&&(this.#a?.(),this.#a=void 0,this.#o?.(),this.#o=void 0)}isFetching(t){return this.#e.findAll({...t,fetchStatus:"fetching"}).length}isMutating(t){return this.#t.findAll({...t,status:"pending"}).length}getQueryData(t){const e=this.defaultQueryOptions({queryKey:t});return this.#e.get(e.queryHash)?.state.data}ensureQueryData(t){const e=this.defaultQueryOptions(t),n=this.#e.build(this,e),r=n.state.data;return r===void 0?this.fetchQuery(t):(t.revalidateIfStale&&n.isStaleByTime(Ps(e.staleTime,n))&&this.prefetchQuery(e),Promise.resolve(r))}getQueriesData(t){return this.#e.findAll(t).map(({queryKey:e,state:n})=>{const r=n.data;return[e,r]})}setQueryData(t,e,n){const r=this.defaultQueryOptions({queryKey:t}),s=this.#e.get(r.queryHash)?.state.data,a=oO(e,s);if(a!==void 0)return this.#e.build(this,r).setData(a,{...n,manual:!0})}setQueriesData(t,e,n){return tn.batch(()=>this.#e.findAll(t).map(({queryKey:r})=>[r,this.setQueryData(r,e,n)]))}getQueryState(t){const e=this.defaultQueryOptions({queryKey:t});return this.#e.get(e.queryHash)?.state}removeQueries(t){const e=this.#e;tn.batch(()=>{e.findAll(t).forEach(n=>{e.remove(n)})})}resetQueries(t,e){const n=this.#e;return tn.batch(()=>(n.findAll(t).forEach(r=>{r.reset()}),this.refetchQueries({type:"active",...t},e)))}cancelQueries(t,e={}){const n={revert:!0,...e},r=tn.batch(()=>this.#e.findAll(t).map(i=>i.cancel(n)));return Promise.all(r).then(On).catch(On)}invalidateQueries(t,e={}){return tn.batch(()=>(this.#e.findAll(t).forEach(n=>{n.invalidate()}),t?.refetchType==="none"?Promise.resolve():this.refetchQueries({...t,type:t?.refetchType??t?.type??"active"},e)))}refetchQueries(t,e={}){const n={...e,cancelRefetch:e.cancelRefetch??!0},r=tn.batch(()=>this.#e.findAll(t).filter(i=>!i.isDisabled()&&!i.isStatic()).map(i=>{let s=i.fetch(void 0,n);return n.throwOnError||(s=s.catch(On)),i.state.fetchStatus==="paused"?Promise.resolve():s}));return Promise.all(r).then(On)}fetchQuery(t){const e=this.defaultQueryOptions(t);e.retry===void 0&&(e.retry=!1);const n=this.#e.build(this,e);return n.isStaleByTime(Ps(e.staleTime,n))?n.fetch(e):Promise.resolve(n.state.data)}prefetchQuery(t){return this.fetchQuery(t).then(On).catch(On)}fetchInfiniteQuery(t){return t._type="infinite",this.fetchQuery(t)}prefetchInfiniteQuery(t){return this.fetchInfiniteQuery(t).then(On).catch(On)}ensureInfiniteQueryData(t){return t._type="infinite",this.ensureQueryData(t)}resumePausedMutations(){return Vh.isOnline()?this.#t.resumePausedMutations():Promise.resolve()}getQueryCache(){return this.#e}getMutationCache(){return this.#t}getDefaultOptions(){return this.#n}setDefaultOptions(t){this.#n=t}setQueryDefaults(t,e){this.#r.set(Lc(t),{queryKey:t,defaultOptions:e})}getQueryDefaults(t){const e=[...this.#r.values()],n={};return e.forEach(r=>{Al(t,r.queryKey)&&Object.assign(n,r.defaultOptions)}),n}setMutationDefaults(t,e){this.#s.set(Lc(t),{mutationKey:t,defaultOptions:e})}getMutationDefaults(t){const e=[...this.#s.values()],n={};return e.forEach(r=>{Al(t,r.mutationKey)&&Object.assign(n,r.defaultOptions)}),n}defaultQueryOptions(t){if(t._defaulted)return t;const e={...this.#n.queries,...this.getQueryDefaults(t.queryKey),...t,_defaulted:!0};return e.queryHash||(e.queryHash=a3(e.queryKey,e)),e.refetchOnReconnect===void 0&&(e.refetchOnReconnect=e.networkMode!=="always"),e.throwOnError===void 0&&(e.throwOnError=!!e.suspense),!e.networkMode&&e.persister&&(e.networkMode="offlineFirst"),e.queryFn===l3&&(e.enabled=!1),e}defaultMutationOptions(t){return t?._defaulted?t:{...this.#n.mutations,...t?.mutationKey&&this.getMutationDefaults(t.mutationKey),...t,_defaulted:!0}}clear(){this.#e.clear(),this.#t.clear()}},SS=S.createContext(void 0),fd=t=>{const e=S.useContext(SS);if(!e)throw new Error("No QueryClient set, use QueryClientProvider to set one");return e},$O=({client:t,children:e})=>(S.useEffect(()=>(t.mount(),()=>{t.unmount()}),[t]),C.jsx(SS.Provider,{value:t,children:e})),wS=S.createContext(!1),TO=()=>S.useContext(wS);wS.Provider;function AO(){let t=!1;return{clearReset:()=>{t=!1},reset:()=>{t=!0},isReset:()=>t}}var BO=S.createContext(AO()),MO=()=>S.useContext(BO),RO=(t,e,n)=>{const r=n?.state.error&&typeof t.throwOnError=="function"?vS(t.throwOnError,[n.state.error,n]):t.throwOnError;(t.suspense||t.experimental_prefetchInRender||r)&&(e.isReset()||(t.retryOnMount=!1))},NO=t=>{S.useEffect(()=>{t.clearReset()},[t])},PO=({result:t,errorResetBoundary:e,throwOnError:n,query:r,suspense:i})=>t.isError&&!e.isReset()&&!t.isFetching&&r&&(i&&t.data===void 0||vS(n,[t.error,r])),OO=t=>{if(t.suspense){const n=i=>i==="static"?i:Math.max(i??1e3,1e3),r=t.staleTime;t.staleTime=typeof r=="function"?(...i)=>n(r(...i)):n(r),typeof t.gcTime=="number"&&(t.gcTime=Math.max(t.gcTime,1e3))}},LO=(t,e)=>t.isLoading&&t.isFetching&&!e,zO=(t,e)=>t?.suspense&&e.isPending,BC=(t,e,n)=>e.fetchOptimistic(t).catch(()=>{n.clearReset()});function IO(t,e,n){const r=TO(),i=MO(),s=fd(),a=s.defaultQueryOptions(t);s.getDefaultOptions().queries?._experimental_beforeQuery?.(a);const u=s.getQueryCache().get(a.queryHash),c=t.subscribed!==!1;a._optimisticResults=r?"isRestoring":c?"optimistic":void 0,OO(a),RO(a,i,u),NO(i);const f=!s.getQueryCache().get(a.queryHash),[h]=S.useState(()=>new e(s,a)),m=h.getOptimisticResult(a),g=!r&&c;if(S.useSyncExternalStore(S.useCallback(b=>{const x=g?h.subscribe(tn.batchCalls(b)):On;return h.updateResult(),x},[h,g]),()=>h.getCurrentResult(),()=>h.getCurrentResult()),S.useEffect(()=>{h.setOptions(a)},[a,h]),zO(a,m))throw BC(a,h,i);if(PO({result:m,errorResetBoundary:i,throwOnError:a.throwOnError,query:u,suspense:a.suspense}))throw m.error;return s.getDefaultOptions().queries?._experimental_afterQuery?.(a,m),a.experimental_prefetchInRender&&!zc.isServer()&&LO(m,r)&&(f?BC(a,h,i):u?.promise)?.catch(On).finally(()=>{h.updateResult()}),a.notifyOnChangeProps?m:h.trackResult(m)}function Jr(t,e){return IO(t,xO)}const Pi=["backlog","todo","in_progress","done","canceled"];function $S(t){return t.asks.filter(e=>!e.resolvedAt)}function TS(t,e){return t.blockedBy.some(n=>{const r=e.find(i=>i.key===n);return r&&r.status!=="done"&&r.status!=="canceled"})}const Ai={backlog:"Backlog",todo:"Todo",in_progress:"In Progress",done:"Done",canceled:"Canceled"};let AS="/api";class kl extends Error{status;reason;constructor(e,n,r){super(n),this.name="ApiError",this.status=e,this.reason=r}}let Ly=null;function jO(t){Ly=t}async function FO(){try{return typeof(await bt("/project"))?.prefix=="string"}catch{return!1}}async function bt(t,e){if(Ly)return await Ly(t,e);const n=await fetch(`${AS}${t}`,{headers:e?.body?{"Content-Type":"application/json"}:void 0,...e}),r=await n.json().catch(()=>({}));if(!n.ok)throw new kl(n.status,r.error??`${n.status}`,r.reason??null);return r}let KO=()=>new URLSearchParams(location.search).get("board");function BS(t){const e=new EventSource(`${AS}/events`);return e.onmessage=n=>{try{const r=JSON.parse(n.data);t(r.board)}catch{t(void 0)}},()=>e.close()}let MS=BS;function _O(t){MS=t??BS}function VO(t){return MS(t)}function am(){return KO()}function Ii(){return typeof location>"u"?null:new URLSearchParams(location.search).get("ref")}function Sn(t){const e=new URLSearchParams,n=am();n&&e.set("board",n);const r=Ii();r&&e.set("ref",r);const i=e.toString();return i?`${t}${t.includes("?")?"&":"?"}${i}`:t}function HO(t){return bt(Sn("/tasks"),{method:"POST",body:JSON.stringify(t)})}function RS(t,e){return bt(Sn(`/tasks/${t}`),{method:"PATCH",body:JSON.stringify(e)})}function UO(t){return bt(Sn(`/tasks/${t}`),{method:"DELETE"})}function qO(t){return bt(Sn(`/tasks/${t}`))}function GO(t,e){return bt(Sn(`/tasks/${t}/comments`),{method:"POST",body:JSON.stringify({body:e})})}function WO(t,e){return bt(Sn(`/tasks/${t}/comments/${encodeURIComponent(e)}`),{method:"DELETE"})}function QO(t,e){return bt(Sn(`/tasks/${t}/asks`),{method:"POST",body:JSON.stringify({text:e})})}function YO(t,e,n){return bt(Sn(`/tasks/${t}/asks/${encodeURIComponent(e)}`),{method:"PATCH",body:JSON.stringify({resolved:n})})}function XO(t,e){return bt(Sn(`/tasks/${t}/asks/${encodeURIComponent(e)}`),{method:"DELETE"})}const NS=t=>t;function JO(){return Jr({queryKey:["boards",Ii()],queryFn:()=>bt(Sn("/boards")).then(t=>t.boards),placeholderData:NS})}function ZO(t){return Jr({queryKey:["project",t,Ii()],queryFn:()=>bt(Sn("/project")),placeholderData:NS})}function eL(t){return Jr({queryKey:["tasks",t,Ii()],queryFn:()=>bt(Sn("/tasks")).then(e=>e.tasks)})}function tL(t){return Jr({queryKey:["goals",t,Ii()],queryFn:()=>bt(Sn("/goals")).then(e=>e.goals),retry:!1})}function PS(){const t=Ii();return Jr({queryKey:["inbox",t],queryFn:()=>bt(t?`/inbox?ref=${encodeURIComponent(t)}`:"/inbox").then(e=>e.inbox),retry:!1})}function nL(t,e){return Jr({queryKey:["task",t,Ii(),e],queryFn:()=>qO(e),enabled:e!==""})}function lm(t){return Jr({queryKey:["git","status"],queryFn:()=>bt("/git/status"),enabled:t,retry:!1,staleTime:3e3})}function rL(t){return Jr({queryKey:["git","branches"],queryFn:()=>bt("/git/branches").then(e=>e.branches),enabled:t,retry:!1,staleTime:1e4})}function zy(t,e){return Jr({queryKey:["git","pr",t],queryFn:()=>bt(`/git/pr?branch=${encodeURIComponent(t)}`),enabled:e&&t!==null,retry:!1,staleTime:3e4})}function iL(t){return bt("/git/commit",{method:"POST",body:JSON.stringify(t)})}function sL(t){return bt("/git/checkout",{method:"POST",body:JSON.stringify({branch:t})})}function OS(t){return bt("/git/pr",{method:"POST",body:JSON.stringify(t)})}function oL(t,e){return bt(Sn("/git/release"),{method:"POST",body:JSON.stringify({key:t,...e?{note:e}:{}})})}function aL(t){return Jr({queryKey:["branches"],queryFn:()=>bt(Sn("/branches")).then(e=>e.branches),enabled:t,retry:!1,staleTime:6e4})}var sc=typeof window<"u"?S.useLayoutEffect:S.useEffect;function g0(t){const e=S.useRef({value:t,prev:null}),n=e.current.value;return t!==n&&(e.current={value:t,prev:n}),e.current.prev}function lL(t,e,n={},r={}){S.useEffect(()=>{if(!t.current||r.disabled||typeof IntersectionObserver!="function")return;const i=new IntersectionObserver(([s])=>{e(s)},n);return i.observe(t.current),()=>{i.disconnect()}},[e,n,r.disabled,t])}function uL(t){const e=S.useRef(null);return S.useImperativeHandle(t,()=>e.current,[]),e}const LS=!1;function Ic(t){return t[t.length-1]}function cL(t){return typeof t=="function"}function Po(t,e){return cL(t)?t(e):t}const zS=Object.prototype.hasOwnProperty,MC=Object.prototype.propertyIsEnumerable;function IS(t){for(const e in t)if(zS.call(t,e))return!0;return!1}const dL=()=>Object.create(null),wo=(t,e)=>Oo(t,e,dL);function Oo(t,e,n=()=>({}),r=0){if(t===e)return t;if(r>500)return e;const i=e,s=PC(t)&&PC(i);if(!s&&!(Hh(t)&&Hh(i)))return i;const a=s?t:RC(t);if(!a)return i;const u=s?i:RC(i);if(!u)return i;const c=a.length,f=u.length,h=s?new Array(f):n();let m=0;for(let g=0;g<f;g++){const b=s?g:u[g],x=t[b],k=i[b];if(x===k){h[b]=x,(s?g<c:zS.call(t,b))&&m++;continue}if(x===null||k===null||typeof x!="object"||typeof k!="object"){h[b]=k;continue}const E=Oo(x,k,n,r+1);h[b]=E,E===x&&m++}return c===f&&m===c?t:h}function RC(t){const e=Object.getOwnPropertyNames(t);for(const i of e)if(!MC.call(t,i))return!1;const n=Object.getOwnPropertySymbols(t);if(n.length===0)return e;const r=e;for(const i of n){if(!MC.call(t,i))return!1;r.push(i)}return r}function Hh(t){if(!NC(t))return!1;const e=t.constructor;if(typeof e>"u")return!0;const n=e.prototype;return!(!NC(n)||!n.hasOwnProperty("isPrototypeOf"))}function NC(t){return Object.prototype.toString.call(t)==="[object Object]"}function PC(t){return Array.isArray(t)&&t.length===Object.keys(t).length}function qo(t,e,n){if(t===e)return!0;if(typeof t!=typeof e)return!1;if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(let r=0,i=t.length;r<i;r++)if(!qo(t[r],e[r],n))return!1;return!0}if(Hh(t)&&Hh(e)){const r=n?.ignoreUndefined??!0;if(n?.partial){for(const a in e)if((!r||e[a]!==void 0)&&!qo(t[a],e[a],n))return!1;return!0}let i=0;if(!r)i=Object.keys(t).length;else for(const a in t)t[a]!==void 0&&i++;let s=0;for(const a in e)if((!r||e[a]!==void 0)&&(s++,s>i||!qo(t[a],e[a],n)))return!1;return i===s}return!1}function Bl(t){let e,n;const r=new Promise((i,s)=>{e=i,n=s});return r.status="pending",r.resolve=i=>{r.status="resolved",r.value=i,e(i),t?.(i)},r.reject=i=>{r.status="rejected",n(i)},r}function jc(t){return!!(t&&typeof t=="object"&&typeof t.then=="function")}const fL=/[\x00-\x1f\x7f"<>`{}]/g;function hL(t){return t.replace(fL,e=>"%"+e.charCodeAt(0).toString(16).toUpperCase().padStart(2,"0"))}function OC(t){let e;try{e=decodeURI(t)}catch{e=t.replaceAll(/%[0-9A-F]{2}/gi,n=>{try{return decodeURI(n)}catch{return n}})}return hL(e)}const pL=["http:","https:","mailto:","tel:"];function Uh(t,e){if(!t)return!1;try{const n=new URL(t);return!e.has(n.protocol)}catch{return!1}}function Gu(t){if(!t)return{path:t,handledProtocolRelativeURL:!1};if(!/[%\\\x00-\x1f\x7f]/.test(t)&&!t.startsWith("//"))return{path:t,handledProtocolRelativeURL:!1};const e=/%25|%5C/gi;let n=0,r="",i;for(;(i=e.exec(t))!==null;)r+=OC(t.slice(n,i.index))+i[0],n=e.lastIndex;r=r+OC(n?t.slice(n):t);let s=!1;return r.startsWith("//")&&(s=!0,r="/"+r.replace(/^\/+/,"")),{path:r,handledProtocolRelativeURL:s}}function mL(t){return/\s|[^\u0000-\u007F]/.test(t)?t.replace(/\s|[^\u0000-\u007F]/gu,encodeURIComponent):t}function gL(t,e){if(t===e)return!0;if(t.length!==e.length)return!1;for(let n=0;n<t.length;n++)if(t[n]!==e[n])return!1;return!0}function Bi(){throw new Error("Invariant failed")}function Fc(t){const e=new Map;let n,r;const i=s=>{s.next&&(s.prev?(s.prev.next=s.next,s.next.prev=s.prev,s.next=void 0,r&&(r.next=s,s.prev=r)):(s.next.prev=void 0,n=s.next,s.next=void 0,r&&(s.prev=r,r.next=s)),r=s)};return{get(s){const a=e.get(s);if(a)return i(a),a.value},set(s,a){if(e.size>=t&&n){const c=n;e.delete(c.key),c.next&&(n=c.next,c.next.prev=void 0),c===r&&(r=void 0)}const u=e.get(s);if(u)u.value=a,i(u);else{const c={key:s,value:a,prev:r};r&&(r.next=c),r=c,n||(n=c),e.set(s,c)}},clear(){e.clear(),n=void 0,r=void 0}}}const Ts=4,jS=5;function bL(t){const e=t.indexOf("{");if(e===-1)return null;const n=t.indexOf("}",e);return n===-1||e+1>=t.length?null:[e,n]}function FS(t,e,n=new Uint16Array(6)){const r=t.indexOf("/",e),i=r===-1?t.length:r,s=t.substring(e,i);if(!s||!s.includes("$"))return n[0]=0,n[1]=e,n[2]=e,n[3]=i,n[4]=i,n[5]=i,n;if(s==="$"){const u=t.length;return n[0]=2,n[1]=e,n[2]=e,n[3]=u,n[4]=u,n[5]=u,n}if(s.charCodeAt(0)===36)return n[0]=1,n[1]=e,n[2]=e+1,n[3]=i,n[4]=i,n[5]=i,n;const a=bL(s);if(a){const[u,c]=a,f=s.charCodeAt(u+1);if(f===45){if(u+2<s.length&&s.charCodeAt(u+2)===36){const h=u+3,m=c;if(h<m)return n[0]=3,n[1]=e+u,n[2]=e+h,n[3]=e+m,n[4]=e+c+1,n[5]=i,n}}else if(f===36){const h=u+1,m=u+2;return m===c?(n[0]=2,n[1]=e+u,n[2]=e+h,n[3]=e+m,n[4]=e+c+1,n[5]=t.length,n):(n[0]=1,n[1]=e+u,n[2]=e+m,n[3]=e+c,n[4]=e+c+1,n[5]=i,n)}}return n[0]=0,n[1]=e,n[2]=e,n[3]=i,n[4]=i,n[5]=i,n}function um(t,e,n,r,i,s,a){a?.(n);let u=r;{const c=n.fullPath??n.from,f=c.length,h=n.options?.caseSensitive??t,m=n.options?.params?.parse??n.options?.parseParams;for(;u<f;){const b=FS(c,u,e);let x;const k=u,E=b[5];switch(u=E+1,s++,b[0]){case 0:{const D=c.substring(b[2],b[3]);if(h){const T=i.static?.get(D);if(T)x=T;else{i.static??=new Map;const $=Lo(n.fullPath??n.from);$.parent=i,$.depth=s,x=$,i.static.set(D,$)}}else{const T=D.toLowerCase(),$=i.staticInsensitive?.get(T);if($)x=$;else{i.staticInsensitive??=new Map;const A=Lo(n.fullPath??n.from);A.parent=i,A.depth=s,x=A,i.staticInsensitive.set(T,A)}}break}case 1:{const D=c.substring(k,b[1]),T=c.substring(b[4],E),$=h&&!!(D||T),A=D?$?D:D.toLowerCase():void 0,B=T?$?T:T.toLowerCase():void 0,P=!m&&i.dynamic?.find(M=>!M.parse&&M.caseSensitive===$&&M.prefix===A&&M.suffix===B);if(P)x=P;else{const M=y0(1,n.fullPath??n.from,$,A,B);x=M,M.depth=s,M.parent=i,i.dynamic??=[],i.dynamic.push(M)}break}case 3:{const D=c.substring(k,b[1]),T=c.substring(b[4],E),$=h&&!!(D||T),A=D?$?D:D.toLowerCase():void 0,B=T?$?T:T.toLowerCase():void 0,P=!m&&i.optional?.find(M=>!M.parse&&M.caseSensitive===$&&M.prefix===A&&M.suffix===B);if(P)x=P;else{const M=y0(3,n.fullPath??n.from,$,A,B);x=M,M.parent=i,M.depth=s,i.optional??=[],i.optional.push(M)}break}case 2:{const D=c.substring(k,b[1]),T=c.substring(b[4],E),$=h&&!!(D||T),A=D?$?D:D.toLowerCase():void 0,B=T?$?T:T.toLowerCase():void 0,P=y0(2,n.fullPath??n.from,$,A,B);x=P,P.parent=i,P.depth=s,i.wildcard??=[],i.wildcard.push(P)}}i=x}if(m&&n.children&&!n.isRoot&&n.id&&n.id.charCodeAt(n.id.lastIndexOf("/")+1)===95){const b=Lo(n.fullPath??n.from);b.kind=jS,b.parent=i,s++,b.depth=s,i.pathless??=[],i.pathless.push(b),i=b}const g=(n.path||!n.children)&&!n.isRoot;if(g&&c.endsWith("/")){const b=Lo(n.fullPath??n.from);b.kind=Ts,b.parent=i,s++,b.depth=s,i.index=b,i=b}i.parse=m??null,i.priority=n.options?.params?.priority??0,g&&!i.route&&(i.route=n,i.fullPath=n.fullPath??n.from)}if(n.children)for(const c of n.children)um(t,e,c,u,i,s,a)}function b0(t,e){if(t.parse&&!e.parse)return-1;if(!t.parse&&e.parse)return 1;if(t.parse&&e.parse&&(t.priority||e.priority))return e.priority-t.priority;if(t.prefix&&e.prefix&&t.prefix!==e.prefix){if(t.prefix.startsWith(e.prefix))return-1;if(e.prefix.startsWith(t.prefix))return 1}if(t.suffix&&e.suffix&&t.suffix!==e.suffix){if(t.suffix.endsWith(e.suffix))return-1;if(e.suffix.endsWith(t.suffix))return 1}return t.prefix&&!e.prefix?-1:!t.prefix&&e.prefix?1:t.suffix&&!e.suffix?-1:!t.suffix&&e.suffix?1:t.caseSensitive&&!e.caseSensitive?-1:!t.caseSensitive&&e.caseSensitive?1:0}function ks(t){if(t.pathless)for(const e of t.pathless)ks(e);if(t.static)for(const e of t.static.values())ks(e);if(t.staticInsensitive)for(const e of t.staticInsensitive.values())ks(e);if(t.dynamic?.length){t.dynamic.sort(b0);for(const e of t.dynamic)ks(e)}if(t.optional?.length){t.optional.sort(b0);for(const e of t.optional)ks(e)}if(t.wildcard?.length){t.wildcard.sort(b0);for(const e of t.wildcard)ks(e)}}function Lo(t){return{kind:0,depth:0,pathless:null,index:null,static:null,staticInsensitive:null,dynamic:null,optional:null,wildcard:null,route:null,fullPath:t,parent:null,parse:null,priority:0}}function y0(t,e,n,r,i){return{kind:t,depth:0,pathless:null,index:null,static:null,staticInsensitive:null,dynamic:null,optional:null,wildcard:null,route:null,fullPath:e,parent:null,parse:null,priority:0,caseSensitive:n,prefix:r,suffix:i}}function yL(t,e){const n=Lo("/"),r=new Uint16Array(6);for(const i of t)um(!1,r,i,1,n,0);ks(n),e.masksTree=n,e.flatCache=Fc(1e3)}function xL(t,e){t||="/";const n=e.flatCache.get(t);if(n)return n;const r=c3(t,e.masksTree);return e.flatCache.set(t,r),r}function vL(t,e,n,r,i){t||="/",r||="/";const s=e?`case\0${t}`:t;let a=i.singleCache.get(s);return a||(a=Lo("/"),um(e,new Uint16Array(6),{from:t},1,a,0),i.singleCache.set(s,a)),c3(r,a,n)}function kL(t,e,n=!1){const r=n?t:`nofuzz\0${t}`,i=e.matchCache.get(r);if(i!==void 0)return i;t||="/";let s;try{s=c3(t,e.segmentTree,n)}catch(a){if(a instanceof URIError)s=null;else throw a}return s&&(s.branch=_S(s.route)),e.matchCache.set(r,s),s}function CL(t){return t==="/"?t:t.replace(/\/{1,}$/,"")}function EL(t,e=!1,n){const r=Lo(t.fullPath),i=new Uint16Array(6),s={},a={};let u=0;return um(e,i,t,1,r,0,c=>{if(n?.(c,u),c.id in s&&Bi(),s[c.id]=c,u!==0&&c.path){const f=CL(c.fullPath);(!a[f]||c.fullPath.endsWith("/"))&&(a[f]=c)}u++}),ks(r),{processedTree:{segmentTree:r,singleCache:Fc(1e3),matchCache:Fc(1e3),flatCache:null,masksTree:null},routesById:s,routesByPath:a}}function c3(t,e,n=!1){const r=t.split("/"),i=SL(t,r,e,n);if(!i)return null;const[s]=KS(t,r,i);return{route:i.node.route,rawParams:s}}function KS(t,e,n){const r=DL(n.node);let i=null;const s=Object.create(null);let a=n.extract?.part??0,u=n.extract?.node??0,c=n.extract?.path??0,f=n.extract?.segment??0;for(;u<r.length;a++,u++,c++,f++){const h=r[u];if(h.kind===Ts)break;if(h.kind===jS){f--,a--,c--;continue}const m=e[a],g=c;if(m&&(c+=m.length),h.kind===1){i??=n.node.fullPath.split("/");const b=i[f],x=h.prefix?.length??0;if(b.charCodeAt(x)===123){const k=h.suffix?.length??0,E=b.substring(x+2,b.length-k-1),D=m.substring(x,m.length-k);s[E]=decodeURIComponent(D)}else{const k=b.substring(1);s[k]=decodeURIComponent(m)}}else if(h.kind===3){if(n.skipped&1<<u){a--,c=g-1;continue}i??=n.node.fullPath.split("/");const b=i[f],x=h.prefix?.length??0,k=h.suffix?.length??0,E=b.substring(x+3,b.length-k-1),D=h.suffix||h.prefix?m.substring(x,m.length-k):m;D&&(s[E]=decodeURIComponent(D))}else if(h.kind===2){const b=h,x=t.substring(g+(b.prefix?.length??0),t.length-(b.suffix?.length??0)),k=decodeURIComponent(x);s["*"]=k,s._splat=k;break}}return n.rawParams&&Object.assign(s,n.rawParams),[s,{part:a,node:u,path:c,segment:f}]}function _S(t){const e=[t];for(;t.parentRoute;)t=t.parentRoute,e.push(t);return e.reverse(),e}function DL(t){const e=Array(t.depth+1);do e[t.depth]=t,t=t.parent;while(t);return e}function SL(t,e,n,r){if(t==="/"&&n.index)return{node:n.index,skipped:0};const i=!Ic(e),s=i&&t!=="/",a=e.length-(i?1:0),u=[{node:n,index:1,skipped:0,depth:1,statics:0,dynamics:0,optionals:0}];let c=null,f=null;for(;u.length;){const h=u.pop(),{node:m,index:g,skipped:b,depth:x,statics:k,dynamics:E,optionals:D}=h;let{extract:T,rawParams:$}=h;if(m.kind===2&&m.route&&!Yf(f,h))continue;if(m.parse){if(!LC(t,e,h))continue;$=h.rawParams,T=h.extract}r&&m.route&&m.kind!==Ts&&Yf(c,h)&&(c=h);const A=g===a;if(A&&(m.route&&(!s||m.kind===Ts||m.kind===2)&&Yf(f,h)&&(f=h),!m.optional&&!m.wildcard&&!m.index&&!m.pathless))continue;const B=A?void 0:e[g];let P;if(A&&m.index){const M={node:m.index,index:g,skipped:b,depth:x+1,statics:k,dynamics:E,optionals:D,extract:T,rawParams:$};let N=!0;if(m.index.parse&&(LC(t,e,M)||(N=!1)),N){if(!E&&!D&&!b&&wL(k,a))return M;Yf(f,M)&&(f=M)}}if(m.wildcard)for(let M=m.wildcard.length-1;M>=0;M--){const N=m.wildcard[M],{prefix:j,suffix:G}=N;if(!(j&&(A||!(N.caseSensitive?B:P??=B.toLowerCase()).startsWith(j)))){if(G){if(A)continue;const W=e.slice(g).join("/").slice(-G.length);if((N.caseSensitive?W:W.toLowerCase())!==G)continue}u.push({node:N,index:a,skipped:b,depth:x+1,statics:k,dynamics:E,optionals:D,extract:T,rawParams:$})}}if(m.optional){const M=b|1<<x,N=x+1;for(let j=m.optional.length-1;j>=0;j--){const G=m.optional[j];u.push({node:G,index:g,skipped:M,depth:N,statics:k,dynamics:E,optionals:D,extract:T,rawParams:$})}if(!A)for(let j=m.optional.length-1;j>=0;j--){const G=m.optional[j],{prefix:W,suffix:U}=G;if(W||U){const ne=G.caseSensitive?B:P??=B.toLowerCase();if(W&&!ne.startsWith(W)||U&&!ne.endsWith(U))continue}u.push({node:G,index:g+1,skipped:b,depth:N,statics:k,dynamics:E,optionals:D+Qf(a,g),extract:T,rawParams:$})}}if(!A&&m.dynamic&&B)for(let M=m.dynamic.length-1;M>=0;M--){const N=m.dynamic[M],{prefix:j,suffix:G}=N;if(j||G){const W=N.caseSensitive?B:P??=B.toLowerCase();if(j&&!W.startsWith(j)||G&&!W.endsWith(G))continue}u.push({node:N,index:g+1,skipped:b,depth:x+1,statics:k,dynamics:E+Qf(a,g),optionals:D,extract:T,rawParams:$})}if(!A&&m.staticInsensitive){const M=m.staticInsensitive.get(P??=B.toLowerCase());M&&u.push({node:M,index:g+1,skipped:b,depth:x+1,statics:k+Qf(a,g),dynamics:E,optionals:D,extract:T,rawParams:$})}if(!A&&m.static){const M=m.static.get(B);M&&u.push({node:M,index:g+1,skipped:b,depth:x+1,statics:k+Qf(a,g),dynamics:E,optionals:D,extract:T,rawParams:$})}if(m.pathless){const M=x+1;for(let N=m.pathless.length-1;N>=0;N--){const j=m.pathless[N];u.push({node:j,index:g,skipped:b,depth:M,statics:k,dynamics:E,optionals:D,extract:T,rawParams:$})}}}if(f)return f;if(r&&c){let h=c.index;for(let g=0;g<c.index;g++)h+=e[g].length;const m=h===t.length?"/":t.slice(h);return c.rawParams??=Object.create(null),c.rawParams["**"]=decodeURIComponent(m),c}return null}function Qf(t,e){return 2**(t-e-1)}function wL(t,e){return t===2**(e-1)-1}function LC(t,e,n){let r,i;try{[r,i]=KS(t,e,n)}catch{return null}if(n.rawParams=r,n.extract=i,!n.node.parse)return!0;try{if(n.node.parse(r)===!1)return null}catch{}return!0}function Yf(t,e){return t?e.statics>t.statics||e.statics===t.statics&&(e.dynamics>t.dynamics||e.dynamics===t.dynamics&&(e.optionals>t.optionals||e.optionals===t.optionals&&((e.node.kind===Ts)>(t.node.kind===Ts)||e.node.kind===Ts==(t.node.kind===Ts)&&e.depth>t.depth))):!0}function Th(t){return d3(t.filter(e=>e!==void 0).join("/"))}function d3(t){return t.replace(/\/{2,}/g,"/")}function VS(t){return t==="/"?t:t.replace(/^\/{1,}/,"")}function wi(t){const e=t.length;return e>1&&t[e-1]==="/"?t.replace(/\/{1,}$/,""):t}function HS(t){return wi(VS(t))}function qh(t,e){return t?.endsWith("/")&&t!=="/"&&t!==`${e}/`?t.slice(0,-1):t}function $L(t,e,n){return qh(t,n)===qh(e,n)}function TL({base:t,to:e,trailingSlash:n="never",cache:r}){const i=e.startsWith("/"),s=!i&&e===".";let a;if(r){a=i?e:s?t:t+"\0"+e;const f=r.get(a);if(f)return f}let u;if(s)u=t.split("/");else if(i)u=e.split("/");else{for(u=t.split("/");u.length>1&&Ic(u)==="";)u.pop();const f=e.split("/");for(let h=0,m=f.length;h<m;h++){const g=f[h];g===""?h?h===m-1&&u.push(g):u=[g]:g===".."?u.pop():g==="."||u.push(g)}}u.length>1&&(Ic(u)===""?n==="never"&&u.pop():n==="always"&&u.push(""));const c=d3(u.join("/"))||"/";return a&&r&&r.set(a,c),c}function AL(t){const e=new Map(t.map(i=>[encodeURIComponent(i),i])),n=Array.from(e.keys()).map(i=>i.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")).join("|"),r=new RegExp(n,"g");return i=>i.replace(r,s=>e.get(s)??s)}function x0(t,e,n){const r=e[t];return typeof r!="string"?r:t==="_splat"?/^[a-zA-Z0-9\-._~!/]*$/.test(r)?r:r.split("/").map(i=>IC(i,n)).join("/"):IC(r,n)}function zC({path:t,params:e,decoder:n,...r}){let i=!1;const s=Object.create(null);if(!t||t==="/")return{interpolatedPath:"/",usedParams:s,isMissingParams:i};if(!t.includes("$"))return{interpolatedPath:t,usedParams:s,isMissingParams:i};const a=t.length;let u=0,c,f="";for(;u<a;){const h=u;c=FS(t,h,c);const m=c[5];if(u=m+1,h===m)continue;const g=c[0];if(g===0){f+="/"+t.substring(h,m);continue}if(g===2){const b=e._splat;s._splat=b,s["*"]=b;const x=t.substring(h,c[1]),k=t.substring(c[4],m);if(!b){i=!0,(x||k)&&(f+="/"+x+k);continue}const E=x0("_splat",e,n);f+="/"+x+E+k;continue}if(g===1){const b=t.substring(c[2],c[3]);!i&&!(b in e)&&(i=!0),s[b]=e[b];const x=t.substring(h,c[1]),k=t.substring(c[4],m),E=x0(b,e,n)??"undefined";f+="/"+x+E+k;continue}if(g===3){const b=t.substring(c[2],c[3]),x=e[b];if(x==null)continue;s[b]=x;const k=t.substring(h,c[1]),E=t.substring(c[4],m),D=x0(b,e,n)??"";f+="/"+k+D+E;continue}}return t.endsWith("/")&&(f+="/"),{usedParams:s,interpolatedPath:f||"/",isMissingParams:i}}function IC(t,e){const n=encodeURIComponent(t);return e?.(n)??n}function US(t={}){if(t.isNotFound=!0,t.throw)throw t;return t}function fn(t){return t?.isNotFound===!0}function BL(){try{return sessionStorage}catch{return}}const ML="tsr-scroll-restoration-v1_3",qS=BL();function RL(){try{return JSON.parse(qS?.getItem("tsr-scroll-restoration-v1_3")||"{}")}catch{return{}}}function NL(){try{qS?.setItem(ML,JSON.stringify(gl))}catch{}}const gl=RL(),jC="data-scroll-restoration-id",PL=t=>t.state.__TSR_key||t.href;function OL(t){const e=t.getAttribute(jC);if(e)return`[${jC}="${e}"]`;let n="",r=t,i;for(;i=r.parentNode;){let s=1,a=r;for(;a=a.previousElementSibling;)s++;const u=`${r.localName}:nth-child(${s})`;n=n?`${u} > ${n}`:u,r=i}return n}let Xf=!1;const Ah="window";function Iy(t){try{return typeof t=="function"?t():document.querySelector(t)}catch{}}function FC(t){const e=new Set;for(const n of t){if(n===Ah)continue;const r=Iy(n);r&&e.add(r)}return e}function LL(t,e){const n=t.options.scrollRestoration,r=t._scroll;n&&(r.restoring=!0);const i=t.options.getScrollRestorationKey||PL,s=new Set,a=u=>{const c=gl[u]||={};for(const f of s)f===document?c[Ah]={scrollX,scrollY}:f.isConnected&&(c[OL(f)]={scrollX:f.scrollLeft,scrollY:f.scrollTop})};n&&!r.restoration&&(r.restoration=!0,Xf=!1,history.scrollRestoration="manual",document.addEventListener("scroll",u=>{Xf||s.add(u.target)},!0),t.subscribe("onBeforeLoad",u=>{u.fromLocation&&a(i(u.fromLocation)),s.clear()}),addEventListener("pagehide",()=>{a(i(t.stores.resolvedLocation.get()??t.stores.location.get())),NL()})),!r.reset&&(r.reset=!0,t.subscribe("onRendered",u=>{const c=t.options.scrollRestorationBehavior,f=t.options.scrollToTopSelectors,h=r.next,m=r.hash;let g;if(s.clear(),r.next=!0,r.hash=!1,typeof t.options.scrollRestoration=="function"&&!t.options.scrollRestoration({location:t.latestLocation}))return;const b=i(u.toLocation),x=u.fromLocation&&i(u.fromLocation);if(r.restoring&&x&&x!==b){const k=gl[x];if(k){let E=gl[b];for(const D in k){if(D===Ah){if(h)continue}else{const T=Iy(D);if(!T||h&&f&&(g??=FC(f),g.has(T)))continue}E||(E=gl[b]={}),E[D]??=k[D]}}}Xf=!0;try{const k=u.toLocation.hash,E=u.toLocation.state.__hashScrollIntoViewOptions??!0;let D=!1;if(h){!k&&f&&(g??=FC(f));const T=k&&E&&m,$=r.restoring?gl[b]:void 0;if($)for(const A in $){const{scrollX:B,scrollY:P}=$[A];if(A===Ah){if(T)continue;scrollTo({top:P,left:B,behavior:c}),D=!0}else{const M=Iy(A);M&&(M.scrollLeft=B,M.scrollTop=P,g?.delete(M))}}if(!k){const A={top:0,left:0,behavior:c};if(D||scrollTo(A),g)for(const B of g)B.scrollTo(A)}}!D&&k&&E&&document.getElementById(k)?.scrollIntoView(E)}finally{Xf=!1}}))}function zL(t,e=String){const n=new URLSearchParams;for(const r in t){const i=t[r];i!==void 0&&n.set(r,e(i))}return n.toString()}function v0(t){return t?t==="false"?!1:t==="true"?!0:+t*0===0&&+t+""===t?+t:t:""}function IL(t){const e=new URLSearchParams(t),n=Object.create(null);for(const[r,i]of e.entries()){const s=n[r];s==null?n[r]=v0(i):Array.isArray(s)?s.push(v0(i)):n[r]=[s,v0(i)]}return n}const jL=KL(JSON.parse),FL=_L(JSON.stringify,JSON.parse);function KL(t){return e=>{e[0]==="?"&&(e=e.substring(1));const n=IL(e);for(const r in n){const i=n[r];if(typeof i=="string")try{n[r]=t(i)}catch{}}return n}}function _L(t,e){const n=typeof e=="function";function r(i){if(typeof i=="object"&&i!==null)try{return t(i)}catch{}else if(n&&typeof i=="string")try{return e(i),t(i)}catch{}return i}return i=>{const s=zL(i,r);return s?`?${s}`:""}}const Go="__root__";function GS(t){if(t.statusCode=t.statusCode||t.code||307,!t._builtLocation&&!t.reloadDocument&&typeof t.href=="string")try{new URL(t.href),t.reloadDocument=!0}catch{}const e=new Headers(t.headers);t.href&&e.get("Location")===null&&e.set("Location",t.href);const n=new Response(null,{status:t.statusCode,headers:e});if(n.options=t,t.throw)throw n;return n}function jn(t){return t instanceof Response&&!!t.options}function VL(t){return{input:({url:e})=>{for(const n of t)e=jy(n,e);return e},output:({url:e})=>{for(let n=t.length-1;n>=0;n--)e=WS(t[n],e);return e}}}function HL(t){const e=HS(t.basepath),n=`/${e}`,r=t.caseSensitive?n:n.toLowerCase(),i=`${r}/`;return{input:({url:s})=>{const a=t.caseSensitive?s.pathname:s.pathname.toLowerCase();return a===r?s.pathname="/":a.startsWith(i)&&(s.pathname=s.pathname.slice(n.length)),s},output:({url:s})=>(s.pathname=Th(["/",e,s.pathname]),s)}}function jy(t,e){const n=t?.input?.({url:e});if(n){if(typeof n=="string")return new URL(n);if(n instanceof URL)return n}return e}function WS(t,e){const n=t?.output?.({url:e});if(n){if(typeof n=="string")return new URL(n);if(n instanceof URL)return n}return e}function UL(t,e){const{createMutableStore:n,createReadonlyStore:r,batch:i,init:s}=e,a=new Map,u=new Map,c=new Map,f=n(t.status),h=n(t.loadedAt),m=n(t.isLoading),g=n(t.isTransitioning),b=n(t.location),x=n(t.resolvedLocation),k=n(t.statusCode),E=n(t.redirect),D=n([]),T=n([]),$=n([]),A=r(()=>k0(a,D.get())),B=r(()=>k0(u,T.get())),P=r(()=>k0(c,$.get())),M=r(()=>D.get()[0]),N=r(()=>D.get().some(K=>a.get(K)?.get().status==="pending")),j=r(()=>({locationHref:b.get().href,resolvedLocationHref:x.get()?.href,status:f.get()})),G=r(()=>({status:f.get(),loadedAt:h.get(),isLoading:m.get(),isTransitioning:g.get(),matches:A.get(),location:b.get(),resolvedLocation:x.get(),statusCode:k.get(),redirect:E.get()})),W=Fc(64);function U(K){let Q=W.get(K);return Q||(Q=r(()=>{const Z=D.get();for(const L of Z){const z=a.get(L);if(z&&z.routeId===K)return z.get()}}),W.set(K,Q)),Q}const ne={status:f,loadedAt:h,isLoading:m,isTransitioning:g,location:b,resolvedLocation:x,statusCode:k,redirect:E,matchesId:D,pendingIds:T,cachedIds:$,matches:A,pendingMatches:B,cachedMatches:P,firstId:M,hasPending:N,matchRouteDeps:j,matchStores:a,pendingMatchStores:u,cachedMatchStores:c,__store:G,getRouteMatchStore:U,setMatches:F,setPending:te,setCached:O};F(t.matches),s?.(ne);function F(K){C0(K,a,D,n,i)}function te(K){C0(K,u,T,n,i)}function O(K){C0(K,c,$,n,i)}return ne}function k0(t,e){const n=[];for(const r of e){const i=t.get(r);i&&n.push(i.get())}return n}function C0(t,e,n,r,i){const s=t.map(u=>u.id),a=new Set(s);i(()=>{for(const u of e.keys())a.has(u)||e.delete(u);for(const u of t){const c=e.get(u.id);if(!c){const f=r(u);f.routeId=u.routeId,e.set(u.id,f);continue}c.routeId=u.routeId,c.get()!==u&&c.set(u)}gL(n.get(),s)||n.set(s)})}const Fy=t=>{if(!t.rendered)return t.rendered=!0,t.onReady?.()},qL=t=>t.stores.matchesId.get().some(e=>t.stores.matchStores.get(e)?.get()._forcePending),cm=(t,e)=>!!(t.preload&&!t.router.stores.matchStores.has(e)),Wo=(t,e,n=!0)=>{const r={...t.router.options.context??{}},i=n?e:e-1;for(let s=0;s<=i;s++){const a=t.matches[s];if(!a)continue;const u=t.router.getMatch(a.id);u&&Object.assign(r,u.__routeContext,u.__beforeLoadContext)}return r},KC=(t,e)=>{if(!t.matches.length)return;const n=e.routeId,r=t.matches.findIndex(a=>a.routeId===t.router.routeTree.id),i=r>=0?r:0;let s=n?t.matches.findIndex(a=>a.routeId===n):t.firstBadMatchIndex??t.matches.length-1;s<0&&(s=i);for(let a=s;a>=0;a--){const u=t.matches[a];if(t.router.looseRoutesById[u.routeId].options.notFoundComponent)return a}return n?s:i},As=(t,e,n)=>{if(!(!jn(n)&&!fn(n)))throw jn(n)&&n.redirectHandled&&!n.options.reloadDocument||(e&&(e._nonReactive.beforeLoadPromise?.resolve(),e._nonReactive.loaderPromise?.resolve(),e._nonReactive.beforeLoadPromise=void 0,e._nonReactive.loaderPromise=void 0,e._nonReactive.error=n,t.updateMatch(e.id,r=>({...r,status:jn(n)?"redirected":fn(n)?"notFound":r.status==="pending"?"success":r.status,context:Wo(t,e.index),isFetching:!1,error:n})),fn(n)&&!n.routeId&&(n.routeId=e.routeId),e._nonReactive.loadPromise?.resolve()),jn(n)&&(t.rendered=!0,n.options._fromLocation=t.location,n.redirectHandled=!0,n=t.router.resolveRedirect(n))),n},QS=(t,e)=>{const n=t.router.getMatch(e);return!!(!n||n._nonReactive.dehydrated)},_C=(t,e,n)=>{const r=Wo(t,n);t.updateMatch(e,i=>({...i,context:r}))},Wu=(t,e,n)=>{const{id:r,routeId:i}=t.matches[e],s=t.router.looseRoutesById[i];if(n instanceof Promise)throw n;t.firstBadMatchIndex??=e,As(t,t.router.getMatch(r),n);try{s.options.onError?.(n)}catch(a){n=a,As(t,t.router.getMatch(r),n)}t.updateMatch(r,a=>(a._nonReactive.beforeLoadPromise?.resolve(),a._nonReactive.beforeLoadPromise=void 0,a._nonReactive.loadPromise?.resolve(),{...a,error:n,status:"error",isFetching:!1,updatedAt:Date.now(),abortController:new AbortController})),!t.preload&&!jn(n)&&!fn(n)&&(t.serialError??=n)},YS=(t,e,n,r)=>{if(r._nonReactive.pendingTimeout!==void 0)return;const i=n.options.pendingMs??t.router.options.defaultPendingMs;if(t.onReady&&!cm(t,e)&&(n.options.loader||n.options.beforeLoad||JS(n))&&typeof i=="number"&&i!==1/0&&(n.options.pendingComponent??t.router.options?.defaultPendingComponent)){const s=setTimeout(()=>{Fy(t)},i);r._nonReactive.pendingTimeout=s}},GL=(t,e,n)=>{const r=t.router.getMatch(e);if(!r._nonReactive.beforeLoadPromise&&!r._nonReactive.loaderPromise)return;YS(t,e,n,r);const i=()=>{const s=t.router.getMatch(e);s.preload&&(s.status==="redirected"||s.status==="notFound")&&As(t,s,s.error)};return r._nonReactive.beforeLoadPromise?r._nonReactive.beforeLoadPromise.then(i):i()},WL=(t,e,n,r)=>{const i=t.router.getMatch(e);let s=i._nonReactive.loadPromise;i._nonReactive.loadPromise=Bl(()=>{s?.resolve(),s=void 0});const{paramsError:a,searchError:u}=i;a&&Wu(t,n,a),u&&Wu(t,n,u),YS(t,e,r,i);const c=new AbortController;let f=!1;const h=()=>{f||(f=!0,t.updateMatch(e,A=>({...A,isFetching:"beforeLoad",fetchCount:A.fetchCount+1,abortController:c})))},m=()=>{i._nonReactive.beforeLoadPromise?.resolve(),i._nonReactive.beforeLoadPromise=void 0,t.updateMatch(e,A=>({...A,isFetching:!1}))};if(!r.options.beforeLoad){t.router.batch(()=>{h(),m()});return}i._nonReactive.beforeLoadPromise=Bl();const g={...Wo(t,n,!1),...i.__routeContext},{search:b,params:x,cause:k}=i,E=cm(t,e),D={search:b,abortController:c,params:x,preload:E,context:g,location:t.location,navigate:A=>t.router.navigate({...A,_fromLocation:t.location}),buildLocation:t.router.buildLocation,cause:E?"preload":k,matches:t.matches,routeId:r.id,...t.router.options.additionalContext},T=A=>{if(A===void 0){t.router.batch(()=>{h(),m()});return}(jn(A)||fn(A))&&(h(),Wu(t,n,A)),t.router.batch(()=>{h(),t.updateMatch(e,B=>({...B,__beforeLoadContext:A})),m()})};let $;try{if($=r.options.beforeLoad(D),jc($))return h(),$.catch(A=>{Wu(t,n,A)}).then(T)}catch(A){h(),Wu(t,n,A)}T($)},QL=(t,e)=>{const{id:n,routeId:r}=t.matches[e],i=t.router.looseRoutesById[r],s=()=>u(),a=()=>WL(t,n,e,i),u=()=>{if(QS(t,n))return;const c=GL(t,n,i);return jc(c)?c.then(a):a()};return s()},YL=(t,e,n)=>{const r=t.router.getMatch(e);if(!r||!n.options.head&&!n.options.scripts&&!n.options.headers)return;const i={ssr:t.router.options.ssr,matches:t.matches,match:r,params:r.params,loaderData:r.loaderData};return Promise.all([n.options.head?.(i),n.options.scripts?.(i),n.options.headers?.(i)]).then(([s,a,u])=>({meta:s?.meta,links:s?.links,headScripts:s?.scripts,headers:u,scripts:a,styles:s?.styles}))},XS=(t,e,n,r,i)=>{const s=e[r-1],{params:a,loaderDeps:u,abortController:c,cause:f}=t.router.getMatch(n),h=Wo(t,r),m=cm(t,n);return{params:a,deps:u,preload:!!m,parentMatchPromise:s,abortController:c,context:h,location:t.location,navigate:g=>t.router.navigate({...g,_fromLocation:t.location}),cause:m?"preload":f,route:i,...t.router.options.additionalContext}},VC=async(t,e,n,r,i)=>{try{const s=t.router.getMatch(n);try{(!(LS??t.router.isServer)||s.ssr===!0)&&Kc(i);const a=i.options.loader,u=typeof a=="function"?a:a?.handler,c=u?.(XS(t,e,n,r,i)),f=!!u&&jc(c);if((f||i._lazyPromise||i._componentsPromise||i.options.head||i.options.scripts||i.options.headers||s._nonReactive.minPendingPromise)&&t.updateMatch(n,m=>({...m,isFetching:"loader"})),u){const m=f?await c:c;As(t,t.router.getMatch(n),m),m!==void 0&&t.updateMatch(n,g=>({...g,loaderData:m}))}i._lazyPromise&&await i._lazyPromise;const h=s._nonReactive.minPendingPromise;h&&await h,i._componentsPromise&&await i._componentsPromise,t.updateMatch(n,m=>({...m,error:void 0,context:Wo(t,r),status:"success",isFetching:!1,updatedAt:Date.now()}))}catch(a){let u=a;if(u?.name==="AbortError"){if(s.abortController.signal.aborted){s._nonReactive.loaderPromise?.resolve(),s._nonReactive.loaderPromise=void 0;return}t.updateMatch(n,f=>({...f,status:f.status==="pending"?"success":f.status,isFetching:!1,context:Wo(t,r)}));return}const c=s._nonReactive.minPendingPromise;c&&await c,fn(a)&&await i.options.notFoundComponent?.preload?.(),As(t,t.router.getMatch(n),a);try{i.options.onError?.(a)}catch(f){u=f,As(t,t.router.getMatch(n),f)}!jn(u)&&!fn(u)&&await Kc(i,["errorComponent"]),t.updateMatch(n,f=>({...f,error:u,context:Wo(t,r),status:"error",isFetching:!1}))}}catch(s){const a=t.router.getMatch(n);a&&(a._nonReactive.loaderPromise=void 0),As(t,a,s)}},XL=async(t,e,n)=>{async function r(b,x,k,E,D){const T=Date.now()-x.updatedAt,$=b?D.options.preloadStaleTime??t.router.options.defaultPreloadStaleTime??3e4:D.options.staleTime??t.router.options.defaultStaleTime??0,A=D.options.shouldReload,B=typeof A=="function"?A(XS(t,e,i,n,D)):A,{status:P,invalid:M}=E,N=T>=$&&(!!t.forceStaleReload||E.cause==="enter"||k!==void 0&&k!==E.id);a=P==="success"&&(M||(B??N)),b&&D.options.preload===!1||(a&&!t.sync&&h?(u=!0,(async()=>{try{await VC(t,e,i,n,D);const j=t.router.getMatch(i);j._nonReactive.loaderPromise?.resolve(),j._nonReactive.loadPromise?.resolve(),j._nonReactive.loaderPromise=void 0,j._nonReactive.loadPromise=void 0}catch(j){jn(j)&&await t.router.navigate(j.options)}})()):P!=="success"||a?await VC(t,e,i,n,D):_C(t,i,n))}const{id:i,routeId:s}=t.matches[n];let a=!1,u=!1;const c=t.router.looseRoutesById[s],f=c.options.loader,h=((typeof f=="function"?void 0:f?.staleReloadMode)??t.router.options.defaultStaleReloadMode)!=="blocking";if(QS(t,i)){if(!t.router.getMatch(i))return t.matches[n];_C(t,i,n)}else{const b=t.router.getMatch(i),x=t.router.stores.matchesId.get()[n],k=(x&&t.router.stores.matchStores.get(x)||null)?.routeId===s?x:t.router.stores.matches.get().find(D=>D.routeId===s)?.id,E=cm(t,i);if(b._nonReactive.loaderPromise){if(b.status==="success"&&!t.sync&&!b.preload&&h)return b;await b._nonReactive.loaderPromise;const D=t.router.getMatch(i),T=D._nonReactive.error||D.error;T&&As(t,D,T),D.status==="pending"&&await r(E,b,k,D,c)}else{const D=E&&!t.router.stores.matchStores.has(i),T=t.router.getMatch(i);T._nonReactive.loaderPromise=Bl(),D!==T.preload&&t.updateMatch(i,$=>({...$,preload:D})),await r(E,b,k,T,c)}}const m=t.router.getMatch(i);u||(m._nonReactive.loaderPromise?.resolve(),m._nonReactive.loadPromise?.resolve(),m._nonReactive.loadPromise=void 0),clearTimeout(m._nonReactive.pendingTimeout),m._nonReactive.pendingTimeout=void 0,u||(m._nonReactive.loaderPromise=void 0),m._nonReactive.dehydrated=void 0;const g=u?m.isFetching:!1;return g!==m.isFetching||m.invalid!==!1?(t.updateMatch(i,b=>({...b,isFetching:g,invalid:!1})),t.router.getMatch(i)):m};async function HC(t){const e=t,n=[];qL(e.router)&&Fy(e);let r;for(let g=0;g<e.matches.length;g++){try{const b=QL(e,g);jc(b)&&await b}catch(b){if(jn(b))throw b;if(fn(b))r=b;else if(!e.preload)throw b;break}if(e.serialError||e.firstBadMatchIndex!=null)break}const i=e.firstBadMatchIndex??e.matches.length,s=r&&!e.preload?KC(e,r):void 0,a=r&&e.preload?0:s!==void 0?Math.min(s+1,i):i;let u,c;for(let g=0;g<a;g++)n.push(XL(e,n,g));try{await Promise.all(n)}catch{const g=await Promise.allSettled(n);for(const b of g){if(b.status!=="rejected")continue;const x=b.reason;if(jn(x))throw x;fn(x)?u??=x:c??=x}if(c!==void 0)throw c}const f=u??(r&&!e.preload?r:void 0);let h=e.firstBadMatchIndex!==void 0?e.firstBadMatchIndex:e.matches.length-1;if(!f&&r&&e.preload)return e.matches;if(f){const g=KC(e,f);g===void 0&&Bi();const b=e.matches[g],x=e.router.looseRoutesById[b.routeId],k=e.router.options?.defaultNotFoundComponent;!x.options.notFoundComponent&&k&&(x.options.notFoundComponent=k),f.routeId=b.routeId;const E=b.routeId===e.router.routeTree.id;e.updateMatch(b.id,D=>({...D,...E?{status:"success",globalNotFound:!0,error:void 0}:{status:"notFound",error:f},isFetching:!1})),h=g,await Kc(x,["notFoundComponent"])}else if(!e.preload){const g=e.matches[0];g.globalNotFound||e.router.getMatch(g.id)?.globalNotFound&&e.updateMatch(g.id,b=>({...b,globalNotFound:!1,error:void 0}))}if(e.serialError&&e.firstBadMatchIndex!==void 0){const g=e.router.looseRoutesById[e.matches[e.firstBadMatchIndex].routeId];await Kc(g,["errorComponent"])}for(let g=0;g<=h;g++){const{id:b,routeId:x}=e.matches[g],k=e.router.looseRoutesById[x];try{const E=YL(e,b,k);if(E){const D=await E;e.updateMatch(b,T=>({...T,...D}))}}catch(E){console.error(`Error executing head for route ${x}:`,E)}}const m=Fy(e);if(jc(m)&&await m,f)throw f;if(e.serialError&&!e.preload&&!e.onReady)throw e.serialError;return e.matches}function UC(t,e){const n=e.map(r=>t.options[r]?.preload?.()).filter(Boolean);if(n.length!==0)return Promise.all(n)}function Kc(t,e=Bh){!t._lazyLoaded&&t._lazyPromise===void 0&&(t.lazyFn?t._lazyPromise=t.lazyFn().then(r=>{const{id:i,...s}=r.options;Object.assign(t.options,s),t._lazyLoaded=!0,t._lazyPromise=void 0}):t._lazyLoaded=!0);const n=()=>t._componentsLoaded?void 0:e===Bh?(()=>{if(t._componentsPromise===void 0){const r=UC(t,Bh);r?t._componentsPromise=r.then(()=>{t._componentsLoaded=!0,t._componentsPromise=void 0}):t._componentsLoaded=!0}return t._componentsPromise})():UC(t,e);return t._lazyPromise?t._lazyPromise.then(n):n()}function JS(t){for(const e of Bh)if(t.options[e]?.preload)return!0;return!1}const Bh=["component","errorComponent","pendingComponent","notFoundComponent"];var Os="__TSR_index",qC="popstate",GC="beforeunload";function JL(t){let e=t.getLocation();const n=new Set,r=a=>{e=t.getLocation(),n.forEach(u=>u({location:e,action:a}))},i=a=>{t.notifyOnIndexChange??!0?r(a):e=t.getLocation()},s=async({task:a,navigateOpts:u,...c})=>{if(u?.ignoreBlocker??!1){a();return}const f=t.getBlockers?.()??[],h=c.type==="PUSH"||c.type==="REPLACE";if(typeof document<"u"&&f.length&&h)for(const m of f){const g=Gh(c.path,c.state);if(await m.blockerFn({currentLocation:e,nextLocation:g,action:c.type})){t.onBlocked?.();return}}a()};return{get location(){return e},get length(){return t.getLength()},subscribers:n,subscribe:a=>(n.add(a),()=>{n.delete(a)}),push:(a,u,c)=>{const f=e.state[Os];u=WC(f+1,u),s({task:()=>{t.pushState(a,u),r({type:"PUSH"})},navigateOpts:c,type:"PUSH",path:a,state:u})},replace:(a,u,c)=>{const f=e.state[Os];u=WC(f,u),s({task:()=>{t.replaceState(a,u),r({type:"REPLACE"})},navigateOpts:c,type:"REPLACE",path:a,state:u})},go:(a,u)=>{s({task:()=>{t.go(a),i({type:"GO",index:a})},navigateOpts:u,type:"GO"})},back:a=>{s({task:()=>{t.back(a?.ignoreBlocker??!1),i({type:"BACK"})},navigateOpts:a,type:"BACK"})},forward:a=>{s({task:()=>{t.forward(a?.ignoreBlocker??!1),i({type:"FORWARD"})},navigateOpts:a,type:"FORWARD"})},canGoBack:()=>e.state[Os]!==0,createHref:a=>t.createHref(a),block:a=>{if(!t.setBlockers)return()=>{};const u=t.getBlockers?.()??[];return t.setBlockers([...u,a]),()=>{const c=t.getBlockers?.()??[];t.setBlockers?.(c.filter(f=>f!==a))}},flush:()=>t.flush?.(),destroy:()=>t.destroy?.(),notify:r}}function WC(t,e){e||(e={});const n=f3();return{...e,key:n,__TSR_key:n,[Os]:t}}function ZL(t){const e=typeof document<"u"?window:void 0,n=e.history.pushState,r=e.history.replaceState;let i=[];const s=()=>i,a=N=>i=N,u=(N=>N),c=(()=>Gh(`${e.location.pathname}${e.location.search}${e.location.hash}`,e.history.state));if(!e.history.state?.__TSR_key&&!e.history.state?.key){const N=f3();e.history.replaceState({[Os]:0,key:N,__TSR_key:N},"")}let f=c(),h,m=!1,g=!1,b=!1,x=!1;const k=()=>f;let E,D;const T=()=>{E&&(M._ignoreSubscribers=!0,(E.isPush?e.history.pushState:e.history.replaceState)(E.state,"",E.href),M._ignoreSubscribers=!1,E=void 0,D=void 0,h=void 0)},$=(N,j,G)=>{const W=u(j);D||(h=f),f=Gh(j,G),E={href:W,state:G,isPush:E?.isPush||N==="push"},D||(D=Promise.resolve().then(()=>T()))},A=N=>{f=c(),M.notify({type:N})},B=async()=>{if(g){g=!1;return}const N=c(),j=N.state[Os]-f.state[Os],G=j===1,W=j===-1,U=!G&&!W||m;m=!1;const ne=U?"GO":W?"BACK":"FORWARD",F=U?{type:"GO",index:j}:{type:W?"BACK":"FORWARD"};if(b)b=!1;else{const te=s();if(typeof document<"u"&&te.length){for(const O of te)if(await O.blockerFn({currentLocation:f,nextLocation:N,action:ne})){g=!0,e.history.go(1),M.notify(F);return}}}f=c(),M.notify(F)},P=N=>{if(x){x=!1;return}let j=!1;const G=s();if(typeof document<"u"&&G.length)for(const W of G){const U=W.enableBeforeUnload??!0;if(U===!0){j=!0;break}if(typeof U=="function"&&U()===!0){j=!0;break}}if(j)return N.preventDefault(),N.returnValue=""},M=JL({getLocation:k,getLength:()=>e.history.length,pushState:(N,j)=>$("push",N,j),replaceState:(N,j)=>$("replace",N,j),back:N=>(N&&(b=!0),x=!0,e.history.back()),forward:N=>{N&&(b=!0),x=!0,e.history.forward()},go:N=>{m=!0,e.history.go(N)},createHref:N=>u(N),flush:T,destroy:()=>{e.history.pushState=n,e.history.replaceState=r,e.removeEventListener(GC,P,{capture:!0}),e.removeEventListener(qC,B)},onBlocked:()=>{h&&f!==h&&(f=h)},getBlockers:s,setBlockers:a,notifyOnIndexChange:!1});return e.addEventListener(GC,P,{capture:!0}),e.addEventListener(qC,B),e.history.pushState=function(...N){const j=n.apply(e.history,N);return M._ignoreSubscribers||A("PUSH"),j},e.history.replaceState=function(...N){const j=r.apply(e.history,N);return M._ignoreSubscribers||A("REPLACE"),j},M}function ez(t){let e=t.replace(/[\x00-\x1f\x7f]/g,"");return e.startsWith("//")&&(e="/"+e.replace(/^\/+/,"")),e}function Gh(t,e){const n=ez(t),r=n.indexOf("#"),i=n.indexOf("?"),s=f3();return{href:n,pathname:n.substring(0,r>0?i>0?Math.min(r,i):r:i>0?i:n.length),hash:r>-1?n.substring(r):"",search:i>-1?n.slice(i,r===-1?void 0:r):"",state:e||{[Os]:0,key:s,__TSR_key:s}}}function f3(){return(Math.random()+1).toString(36).substring(7)}function El(t,e){const n=e,r=t;return{fromLocation:n,toLocation:r,pathChanged:n?.pathname!==r.pathname,hrefChanged:n?.href!==r.href,hashChanged:n?.hash!==r.hash}}var tz=class{constructor(t,e){this.tempLocationKey=`${Math.round(Math.random()*1e7)}`,this._scroll={next:!0},this.shouldViewTransition=void 0,this.isViewTransitionTypesSupported=void 0,this.subscribers=new Set,this.routeBranchCache=new WeakMap,this.lightweightCache=new WeakMap,this.startTransition=n=>n(),this.update=n=>{const r=this.options,i=this.basepath??r?.basepath??"/",s=this.basepath===void 0,a=r?.rewrite;if(this.options={...r,...n},this.isServer=this.options.isServer??typeof document>"u",this.protocolAllowlist=new Set(this.options.protocolAllowlist),this.options.pathParamsAllowedCharacters&&(this.pathParamsDecoder=AL(this.options.pathParamsAllowedCharacters)),(!this.history||this.options.history&&this.options.history!==this.history)&&(this.options.history?this.history=this.options.history:this.history=ZL()),this.origin=this.options.origin,this.origin||(window?.origin&&window.origin!=="null"?this.origin=window.origin:this.origin="http://localhost"),this.history&&this.updateLatestLocation(),this.options.routeTree!==this.routeTree){this.routeTree=this.options.routeTree;let h;this.resolvePathCache=Fc(1e3),h=this.buildRouteTree(),this.setRoutes(h)}if(!this.stores&&this.latestLocation){const h=this.getStoreConfig(this);this.batch=h.batch,this.stores=UL(rz(this.latestLocation),h),LL(this)}let u=!1;const c=this.options.basepath??"/",f=this.options.rewrite;if(s||i!==c||a!==f){this.basepath=c;const h=[],m=HS(c);m&&m!=="/"&&h.push(HL({basepath:c})),f&&h.push(f),this.rewrite=h.length===0?void 0:h.length===1?h[0]:VL(h),this.history&&this.updateLatestLocation(),u=!0}u&&this.stores&&this.stores.location.set(this.latestLocation),typeof window<"u"&&"CSS"in window&&typeof window.CSS?.supports=="function"&&(this.isViewTransitionTypesSupported=window.CSS.supports("selector(:active-view-transition-type(a))"))},this.updateLatestLocation=()=>{this.latestLocation=this.parseLocation(this.history.location,this.latestLocation)},this.buildRouteTree=()=>{const n=EL(this.routeTree,this.options.caseSensitive,(r,i)=>{r.init({originalIndex:i})});return this.options.routeMasks&&yL(this.options.routeMasks,n.processedTree),n},this.subscribe=(n,r)=>{const i={eventType:n,fn:r};return this.subscribers.add(i),()=>{this.subscribers.delete(i)}},this.emit=n=>{this.subscribers.forEach(r=>{r.eventType===n.type&&r.fn(n)})},this.parseLocation=(n,r)=>{const i=({pathname:c,search:f,hash:h,href:m,state:g})=>{if(!this.rewrite&&!/[ \x00-\x1f\x7f\u0080-\uffff]/.test(c)){const D=this.options.parseSearch(f),T=this.options.stringifySearch(D);return{href:c+T+h,publicHref:c+T+h,pathname:Gu(c).path,external:!1,searchStr:T,search:wo(r?.search,D),hash:Gu(h.slice(1)).path,state:Oo(r?.state,g)}}const b=new URL(m,this.origin),x=jy(this.rewrite,b),k=this.options.parseSearch(x.search),E=this.options.stringifySearch(k);return x.search=E,{href:x.href.replace(x.origin,""),publicHref:m,pathname:Gu(x.pathname).path,external:!!this.rewrite&&x.origin!==this.origin,searchStr:E,search:wo(r?.search,k),hash:Gu(x.hash.slice(1)).path,state:Oo(r?.state,g)}},s=i(n),{__tempLocation:a,__tempKey:u}=s.state;if(a&&(!u||u===this.tempLocationKey)){const c=i(a);return c.state.key=s.state.key,c.state.__TSR_key=s.state.__TSR_key,delete c.state.__tempLocation,{...c,maskedLocation:s}}return s},this.resolvePathWithBase=(n,r)=>TL({base:n,to:r.includes("//")?d3(r):r,trailingSlash:this.options.trailingSlash,cache:this.resolvePathCache}),this.matchRoutes=(n,r,i)=>typeof n=="string"?this.matchRoutesInternal({pathname:n,search:r},i):this.matchRoutesInternal(n,r),this.getMatchedRoutes=n=>iz({pathname:n,routesById:this.routesById,processedTree:this.processedTree}),this.cancelMatch=n=>{const r=this.getMatch(n);r&&(r.abortController.abort(),clearTimeout(r._nonReactive.pendingTimeout),r._nonReactive.pendingTimeout=void 0)},this.cancelMatches=()=>{this.stores.pendingIds.get().forEach(n=>{this.cancelMatch(n)}),this.stores.matchesId.get().forEach(n=>{if(this.stores.pendingMatchStores.has(n))return;const r=this.stores.matchStores.get(n)?.get();r&&(r.status==="pending"||r.isFetching==="loader")&&this.cancelMatch(n)})},this.buildLocation=n=>{const r=(s={})=>{const a=s._fromLocation||this.pendingBuiltLocation||this.latestLocation,u=this.matchRoutesLightweight(a);s.from;const c=s.unsafeRelative==="path"?a.pathname:s.from??u.fullPath,f=s.to?`${s.to}`:void 0,h=u.search,m=Object.assign(Object.create(null),u.params),g=f?.charCodeAt(0)===47?"/":this.resolvePathWithBase(c,"."),b=f?this.resolvePathWithBase(g,f):g,x=s.params===!1||s.params===null?Object.create(null):(s.params??!0)===!0?m:Object.assign(m,Po(s.params,m)),k=this.routesByPath[wi(b)];let E;if(k)E=this.getRouteBranch(k);else if(b.includes("$"))E=[];else{const W=this.getMatchedRoutes(b);E=W.matchedRoutes,this.options.notFoundRoute&&(!W.foundRoute||W.foundRoute.path!=="/"&&W.routeParams["**"])&&(E=[...E,this.options.notFoundRoute])}if(E.length&&IS(x))for(const W of E){const U=W.options.params?.stringify??W.options.stringifyParams;if(U)try{Object.assign(x,U(x))}catch{}}const D=n.leaveParams?b:Gu(zC({path:b,params:x,decoder:this.pathParamsDecoder,server:this.isServer}).interpolatedPath).path;let T=h;if(n._includeValidateSearch&&this.options.search?.strict){const W={};E.forEach(U=>{if(U.options.validateSearch)try{Object.assign(W,Mh(U.options.validateSearch,{...W,...T}))}catch{}}),T=W}T=sz({search:T,dest:s,destRoutes:E,_includeValidateSearch:n._includeValidateSearch}),T=wo(h,T);const $=this.options.stringifySearch(T),A=s.hash===!0?a.hash:s.hash?Po(s.hash,a.hash):void 0,B=A?`#${A}`:"";let P=s.state===!0?a.state:s.state?Po(s.state,a.state):{};P=Oo(a.state,P);const M=`${D}${$}${B}`;let N,j,G=!1;if(this.rewrite){const W=new URL(M,this.origin),U=WS(this.rewrite,W);N=W.href.replace(W.origin,""),U.origin!==this.origin?(j=U.href,G=!0):j=U.pathname+U.search+U.hash}else N=mL(M),j=N;return{publicHref:j,href:N,pathname:D,search:T,searchStr:$,state:P,hash:A??"",external:G,unmaskOnReload:s.unmaskOnReload}},i=(s={},a)=>{const u=r(s);let c=a?r(a):void 0;if(!c){const f=Object.create(null);if(this.options.routeMasks){const h=xL(u.pathname,this.processedTree);if(h){Object.assign(f,h.rawParams);const{from:m,params:g,...b}=h.route,x=g===!1||g===null?Object.create(null):(g??!0)===!0?f:Object.assign(f,Po(g,f));a={from:n.from,...b,params:x},c=r(a)}}}return c&&(u.maskedLocation=c),u};return n.mask?i(n,{from:n.from,...n.mask}):i(n)},this.commitLocation=async({viewTransition:n,ignoreBlocker:r,...i})=>{let s;const a=()=>{const f=["key","__TSR_key","__TSR_index","__hashScrollIntoViewOptions"];f.forEach(m=>{i.state[m]=this.latestLocation.state[m]});const h=qo(i.state,this.latestLocation.state);return f.forEach(m=>{delete i.state[m]}),h},u=wi(this.latestLocation.href)===wi(i.href);let c=this.commitLocationPromise;if(this.commitLocationPromise=Bl(()=>{c?.resolve(),c=void 0}),u&&a())this.load();else{let{maskedLocation:f,hashScrollIntoView:h,...m}=i;f&&(m={...f,state:{...f.state,__tempKey:void 0,__tempLocation:{...m,search:m.searchStr,state:{...m.state,__tempKey:void 0,__tempLocation:void 0,__TSR_key:void 0,key:void 0}}}},(m.unmaskOnReload??this.options.unmaskOnReload??!1)&&(m.state.__tempKey=this.tempLocationKey)),m.state.__hashScrollIntoViewOptions=h??this.options.defaultHashScrollIntoView??!0,this.shouldViewTransition=n,s=i.replace?"REPLACE":"PUSH",this.history[s==="REPLACE"?"replace":"push"](m.publicHref,m.state,{ignoreBlocker:r})}return this._scroll.next=i.resetScroll??!0,this.history.subscribers.size||this.load(s?{action:{type:s}}:void 0),this.commitLocationPromise},this.buildAndCommitLocation=({replace:n,resetScroll:r,hashScrollIntoView:i,viewTransition:s,ignoreBlocker:a,href:u,...c}={})=>{if(u){const m=this.history.location.state.__TSR_index,g=Gh(u,{__TSR_index:n?m:m+1}),b=new URL(g.pathname,this.origin);c.to=jy(this.rewrite,b).pathname,c.search=this.options.parseSearch(g.search),c.hash=g.hash.slice(1)}const f=this.buildLocation({...c,_includeValidateSearch:!0});this.pendingBuiltLocation=f;const h=this.commitLocation({...f,viewTransition:s,replace:n,resetScroll:r,hashScrollIntoView:i,ignoreBlocker:a});return queueMicrotask(()=>{this.pendingBuiltLocation===f&&(this.pendingBuiltLocation=void 0)}),h},this.navigate=async({to:n,reloadDocument:r,href:i,publicHref:s,...a})=>{let u=!1;if(i)try{new URL(`${i}`),u=!0}catch{}if(u&&!r&&(r=!0),r){if(n!==void 0||!i){const f=this.buildLocation({to:n,...a});i=i??f.publicHref,s=s??f.publicHref}const c=!u&&s?s:i;if(Uh(c,this.protocolAllowlist))return;if(!a.ignoreBlocker){const f=this.history.getBlockers?.()??[];for(const h of f)if(h?.blockerFn&&await h.blockerFn({currentLocation:this.latestLocation,nextLocation:this.latestLocation,action:"PUSH"}))return}a.replace?window.location.replace(c):window.location.href=c;return}return this.buildAndCommitLocation({...a,href:i,to:n,_isNavigate:!0})},this.beforeLoad=()=>{this.cancelMatches(),this.updateLatestLocation();const n=this.matchRoutes(this.latestLocation),r=this.stores.cachedMatches.get().filter(i=>!n.some(s=>s.id===i.id));this.batch(()=>{this.stores.status.set("pending"),this.stores.statusCode.set(200),this.stores.isLoading.set(!0),this.stores.location.set(this.latestLocation),this.stores.setPending(n),this.stores.setCached(r)})},this.load=async n=>{const r=n?.action?.type;let i,s,a;const u=this.stores.resolvedLocation.get()??this.stores.location.get();for(a=new Promise(f=>{this.startTransition(async()=>{try{this.beforeLoad(),r&&(this._scroll.hash=r==="PUSH"||r==="REPLACE");const h=this.latestLocation,m=El(h,this.stores.resolvedLocation.get());this.stores.redirect.get()||this.emit({type:"onBeforeNavigate",...m}),this.emit({type:"onBeforeLoad",...m}),await HC({router:this,sync:n?.sync,forceStaleReload:u.href===h.href,matches:this.stores.pendingMatches.get(),location:h,updateMatch:this.updateMatch,onReady:async()=>{this.startTransition(()=>{this.startViewTransition(async()=>{let g=null,b=null,x=null,k=null;this.batch(()=>{const E=this.stores.pendingMatches.get(),D=E.length,T=this.stores.matches.get();g=D?T.filter(B=>!this.stores.pendingMatchStores.has(B.id)):null;const $=new Set;for(const B of this.stores.pendingMatchStores.values())B.routeId&&$.add(B.routeId);const A=new Set;for(const B of this.stores.matchStores.values())B.routeId&&A.add(B.routeId);b=D?T.filter(B=>!$.has(B.routeId)):null,x=D?E.filter(B=>!A.has(B.routeId)):null,k=D?E.filter(B=>A.has(B.routeId)):T,this.stores.isLoading.set(!1),this.stores.loadedAt.set(Date.now()),D&&(this.stores.setMatches(E),this.stores.setPending([]),this.stores.setCached([...this.stores.cachedMatches.get(),...g.filter(B=>B.status!=="error"&&B.status!=="notFound"&&B.status!=="redirected")]),this.clearExpiredCache())});for(const[E,D]of[[b,"onLeave"],[x,"onEnter"],[k,"onStay"]])if(E)for(const T of E)this.looseRoutesById[T.routeId].options[D]?.(T)})})}})}catch(h){jn(h)?(i=h,this.navigate({...i.options,replace:!0,ignoreBlocker:!0})):fn(h)&&(s=h);const m=i?i.status:s?404:this.stores.matches.get().some(g=>g.status==="error")?500:200;this.batch(()=>{this.stores.statusCode.set(m),this.stores.redirect.set(i)})}this.latestLoadPromise===a&&(this.commitLocationPromise?.resolve(),this.latestLoadPromise=void 0,this.commitLocationPromise=void 0),f()})}),this.latestLoadPromise=a,await a;this.latestLoadPromise&&a!==this.latestLoadPromise;)await this.latestLoadPromise;let c;this.hasNotFoundMatch()?c=404:this.stores.matches.get().some(f=>f.status==="error")&&(c=500),c!==void 0&&this.stores.statusCode.set(c)},this.startViewTransition=n=>{const r=this.shouldViewTransition??this.options.defaultViewTransition;if(this.shouldViewTransition=void 0,r&&typeof document<"u"&&"startViewTransition"in document&&typeof document.startViewTransition=="function"){let i;if(typeof r=="object"&&this.isViewTransitionTypesSupported){const s=this.latestLocation,a=this.stores.resolvedLocation.get(),u=typeof r.types=="function"?r.types(El(s,a)):r.types;if(u===!1){n();return}i={update:n,types:u}}else i=n;document.startViewTransition(i)}else n()},this.updateMatch=(n,r)=>{this.startTransition(()=>{const i=this.stores.pendingMatchStores.get(n);if(i){i.set(r);return}const s=this.stores.matchStores.get(n);if(s){s.set(r);return}const a=this.stores.cachedMatchStores.get(n);if(a){const u=r(a.get());u.status==="redirected"?this.stores.cachedMatchStores.delete(n)&&this.stores.cachedIds.set(c=>c.filter(f=>f!==n)):a.set(u)}})},this.getMatch=n=>this.stores.cachedMatchStores.get(n)?.get()??this.stores.pendingMatchStores.get(n)?.get()??this.stores.matchStores.get(n)?.get(),this.invalidate=n=>{const r=i=>n?.filter?.(i)??!0?{...i,invalid:!0,...n?.forcePending||i.status==="error"||i.status==="notFound"?{status:"pending",error:void 0}:void 0}:i;return this.batch(()=>{this.stores.setMatches(this.stores.matches.get().map(r)),this.stores.setCached(this.stores.cachedMatches.get().map(r)),this.stores.setPending(this.stores.pendingMatches.get().map(r))}),this.shouldViewTransition=!1,this.load({sync:n?.sync})},this.getParsedLocationHref=n=>n.publicHref||"/",this.resolveRedirect=n=>{const r=n.headers.get("Location");if(!n.options.href||n.options._builtLocation){const i=n.options._builtLocation??this.buildLocation(n.options),s=this.getParsedLocationHref(i);n.options.href=s,n.headers.set("Location",s)}else if(r)try{const i=new URL(r);if(this.origin&&i.origin===this.origin){const s=i.pathname+i.search+i.hash;n.options.href=s,n.headers.set("Location",s)}}catch{}if(n.options.href&&!n.options._builtLocation&&Uh(n.options.href,this.protocolAllowlist))throw new Error("Redirect blocked: unsafe protocol");return n.headers.get("Location")||n.headers.set("Location",n.options.href),n},this.clearCache=n=>{const r=n?.filter;r!==void 0?this.stores.setCached(this.stores.cachedMatches.get().filter(i=>!r(i))):this.stores.setCached([])},this.clearExpiredCache=()=>{const n=Date.now(),r=i=>{const s=this.looseRoutesById[i.routeId];if(!s.options.loader)return!0;const a=(i.preload?s.options.preloadGcTime??this.options.defaultPreloadGcTime:s.options.gcTime??this.options.defaultGcTime)??300*1e3;return i.status==="error"?!0:n-i.updatedAt>=a};this.clearCache({filter:r})},this.loadRouteChunk=Kc,this.preloadRoute=async n=>{const r=n._builtLocation??this.buildLocation(n);let i=this.matchRoutes(r,{throwOnError:!0,preload:!0,dest:n});const s=new Set([...this.stores.matchesId.get(),...this.stores.pendingIds.get()]),a=new Set([...s,...this.stores.cachedIds.get()]),u=i.filter(c=>!a.has(c.id));if(u.length){const c=this.stores.cachedMatches.get();this.stores.setCached([...c,...u])}try{return i=await HC({router:this,matches:i,location:r,preload:!0,updateMatch:(c,f)=>{s.has(c)?i=i.map(h=>h.id===c?f(h):h):this.updateMatch(c,f)}}),i}catch(c){if(jn(c))return c.options.reloadDocument?void 0:await this.preloadRoute({...c.options,_fromLocation:r});fn(c)||console.error(c);return}},this.matchRoute=(n,r)=>{const i={...n,to:n.to?this.resolvePathWithBase(n.from||"",n.to):void 0,params:n.params||{},leaveParams:!0},s=this.buildLocation(i);if(r?.pending&&this.stores.status.get()!=="pending")return!1;const a=(r?.pending===void 0?!this.stores.isLoading.get():r.pending)?this.latestLocation:this.stores.resolvedLocation.get()||this.stores.location.get(),u=vL(s.pathname,r?.caseSensitive??!1,r?.fuzzy??!1,a.pathname,this.processedTree);return!u||n.params&&!qo(u.rawParams,n.params,{partial:!0})?!1:r?.includeSearch??!0?qo(a.search,s.search,{partial:!0})?u.rawParams:!1:u.rawParams},this.hasNotFoundMatch=()=>this.stores.matches.get().some(n=>n.status==="notFound"||n.globalNotFound),this.getStoreConfig=e,this.update({defaultPreloadDelay:50,defaultPendingMs:1e3,defaultPendingMinMs:500,context:void 0,...t,caseSensitive:t.caseSensitive??!1,notFoundMode:t.notFoundMode??"fuzzy",stringifySearch:t.stringifySearch??FL,parseSearch:t.parseSearch??jL,protocolAllowlist:t.protocolAllowlist??pL}),typeof document<"u"&&(self.__TSR_ROUTER__=this)}isShell(){return!!this.options.isShell}isPrerendering(){return!!this.options.isPrerendering}get state(){return this.stores.__store.get()}setRoutes({routesById:t,routesByPath:e,processedTree:n}){this.routesById=t,this.routesByPath=e,this.processedTree=n;const r=this.options.notFoundRoute;r&&(r.init({originalIndex:99999999999}),this.routesById[r.id]=r)}getRouteBranch(t){let e=this.routeBranchCache.get(t);return e||(e=_S(t),this.routeBranchCache.set(t,e)),e}get looseRoutesById(){return this.routesById}getParentContext(t){return t?.id?t.context??this.options.context??void 0:this.options.context??void 0}matchRoutesInternal(t,e){const n=this.getMatchedRoutes(t.pathname),{foundRoute:r,routeParams:i}=n;let{matchedRoutes:s}=n,a=!1;(r?r.path!=="/"&&i["**"]:wi(t.pathname))&&(this.options.notFoundRoute?s=[...s,this.options.notFoundRoute]:a=!0);const u=a?az(this.options.notFoundMode,s):void 0,c=new Array(s.length),f=new Map;for(const h of this.stores.matchStores.values())h.routeId&&f.set(h.routeId,h.get());for(let h=0;h<s.length;h++){const m=s[h],g=c[h-1];let b,x,k;{const U=g?.search??t.search,ne=g?._strictSearch??void 0;try{const F=Mh(m.options.validateSearch,{...U})??void 0;b={...U,...F},x={...ne,...F},k=void 0}catch(F){let te=F;if(F instanceof Wh||(te=new Wh(F.message,{cause:F})),e?.throwOnError)throw te;b=U,x={},k=te}}const E=m.options.loaderDeps?.({search:b})??"",D=E?JSON.stringify(E):"",{interpolatedPath:T,usedParams:$}=zC({path:m.fullPath,params:i,decoder:this.pathParamsDecoder,server:this.isServer}),A=m.id+T+D,B=this.getMatch(A),P=f.get(m.id),M=B?._strictParams??$;let N;if(!B)try{QC(m,M)}catch(U){if(fn(U)||jn(U)?N=U:N=new nz(U.message,{cause:U}),e?.throwOnError)throw N}Object.assign(i,M);const j=P?"stay":"enter";let G;if(B)G={...B,cause:j,params:P?.params??i,_strictParams:M,search:wo(P?P.search:B.search,b),_strictSearch:x};else{const U=m.options.loader||m.options.beforeLoad||m.lazyFn||JS(m)?"pending":"success";G={id:A,ssr:m.options.ssr,index:h,routeId:m.id,params:P?.params??i,_strictParams:M,pathname:T,updatedAt:Date.now(),search:P?wo(P.search,b):b,_strictSearch:x,searchError:void 0,status:U,isFetching:!1,error:void 0,paramsError:N,__routeContext:void 0,_nonReactive:{loadPromise:Bl()},__beforeLoadContext:void 0,context:{},abortController:new AbortController,fetchCount:0,cause:j,loaderDeps:P?Oo(P.loaderDeps,E):E,invalid:!1,preload:!1,links:void 0,scripts:void 0,headScripts:void 0,meta:void 0,staticData:m.options.staticData||{},fullPath:m.fullPath}}e?.preload||(G.globalNotFound=u===m.id),G.searchError=k;const W=this.getParentContext(g);G.context={...W,...G.__routeContext,...G.__beforeLoadContext},c[h]=G}for(let h=0;h<c.length;h++){const m=c[h],g=this.looseRoutesById[m.routeId],b=this.getMatch(m.id),x=f.get(m.routeId);if(m.params=x?wo(x.params,i):i,!b){const k=c[h-1],E=this.getParentContext(k);if(g.options.context){const D={deps:m.loaderDeps,params:m.params,context:E??{},location:t,navigate:T=>this.navigate({...T,_fromLocation:t}),buildLocation:this.buildLocation,cause:m.cause,abortController:m.abortController,preload:!!m.preload,matches:c,routeId:g.id};m.__routeContext=g.options.context(D)??void 0}m.context={...E,...m.__routeContext,...m.__beforeLoadContext}}}return c}matchRoutesLightweight(t){const e=Ic(this.stores.matchesId.get()),n=this.lightweightCache.get(t);if(n&&n[0]===e)return n[1];const{matchedRoutes:r,routeParams:i}=this.getMatchedRoutes(t.pathname),s=Ic(r),a={...t.search};for(const m of r)try{Object.assign(a,Mh(m.options.validateSearch,a))}catch{}const u=e&&this.stores.matchStores.get(e)?.get(),c=u&&u.routeId===s.id&&u.pathname===t.pathname;let f;if(c)f=u.params;else{const m=Object.assign(Object.create(null),i);for(const g of r)try{QC(g,m)}catch{}f=m}const h={matchedRoutes:r,fullPath:s.fullPath,search:a,params:f};return this.lightweightCache.set(t,[e,h]),h}},Wh=class extends Error{},nz=class extends Error{};function rz(t){return{loadedAt:0,isLoading:!1,isTransitioning:!1,status:"idle",resolvedLocation:void 0,location:t,matches:[],statusCode:200}}function Mh(t,e){if(t==null)return{};if("~standard"in t){const n=t["~standard"].validate(e);if(n instanceof Promise)throw new Wh("Async validation not supported");if(n.issues)throw new Wh(JSON.stringify(n.issues,void 0,2),{cause:n});return n.value}return"parse"in t?t.parse(e):typeof t=="function"?t(e):{}}function iz({pathname:t,routesById:e,processedTree:n}){const r=Object.create(null),i=wi(t);let s;const a=kL(i,n,!0);return a&&(s=a.route,Object.assign(r,a.rawParams)),{matchedRoutes:a?.branch||[e.__root__],routeParams:r,foundRoute:s}}function sz({search:t,dest:e,destRoutes:n,_includeValidateSearch:r}){return oz(n)(t,e,r??!1)}function oz(t){let e,n;const r=[];for(const s of t){const a=s.options;if("search"in a)a.search?.middlewares&&r.push(...a.search.middlewares);else if(a.preSearchFilters||a.postSearchFilters){const c=({search:f,next:h})=>{const m=h(a.preSearchFilters?a.preSearchFilters.reduce((g,b)=>b(g),f):f);return a.postSearchFilters?a.postSearchFilters.reduce((g,b)=>b(g),m):m};r.push(c)}const u=a.validateSearch;if(u){const c=({search:f,next:h,meta:m})=>{const g=h(f);if(n)try{const b=Mh(u,g);if(m&&b)for(const x in b)x in g||(m.defaulted||=new Map).set(x,b[x]);return{...g,...b}}catch{}return g};r.push(c)}}const i=(s,a,u)=>{if(s>=r.length){if(!e.search)return{};if(e.search===!0)return a;const f=Po(e.search,a);return u&&(u.explicit=f),f}const c=(f,h)=>{if(h){const m=u||{};return{search:i(s+1,f,m),meta:m}}return i(s+1,f,u)};return r[s]({search:a,next:c,meta:u})};return function(a,u,c){return e=u,n=c,i(0,a)}}function az(t,e){if(t!=="root")for(let n=e.length-1;n>=0;n--){const r=e[n];if(r.children)return r.id}return Go}function QC(t,e){const n=t.options.params?.parse??t.options.parseParams;if(n){const r=n(e);if(r===!1)throw new Error("Route params.parse returned false for a matched route");Object.assign(e,r)}}const lz="Error preloading route! ☝️";var ZS=class{get to(){return this._to}get id(){return this._id}get path(){return this._path}get fullPath(){return this._fullPath}constructor(t){if(this.init=e=>{this.originalIndex=e.originalIndex;const n=this.options,r=!n?.path&&!n?.id;this.parentRoute=this.options.getParentRoute?.(),r?this._path=Go:this.parentRoute||Bi();let i=r?Go:n?.path;i&&i!=="/"&&(i=VS(i));const s=n?.id||i;let a=r?Go:Th([this.parentRoute.id==="__root__"?"":this.parentRoute.id,s]);i==="__root__"&&(i="/"),a!=="__root__"&&(a=Th(["/",a]));const u=a==="__root__"?"/":Th([this.parentRoute.fullPath,i]);this._path=i,this._id=a,this._fullPath=u,this._to=wi(u)},this.addChildren=e=>this._addFileChildren(e),this._addFileChildren=e=>(Array.isArray(e)&&(this.children=e),typeof e=="object"&&e!==null&&(this.children=Object.values(e)),this),this._addFileTypes=()=>this,this.updateLoader=e=>(Object.assign(this.options,e),this),this.update=e=>(Object.assign(this.options,e),this),this.lazy=e=>(this.lazyFn=e,this),this.redirect=e=>GS({from:this.fullPath,...e}),this.options=t||{},this.isRoot=!t?.getParentRoute,t?.id&&t?.path)throw new Error("Route cannot have both an 'id' and a 'path' option.")}},uz=class{constructor({id:t}){this.notFound=e=>US({routeId:this.id,...e}),this.redirect=e=>GS({from:this.id,...e}),this.id=t}},cz=class extends ZS{constructor(t){super(t)}};function h3(t){const e=t.errorComponent??p3;return C.jsx(dz,{getResetKey:t.getResetKey,onCatch:t.onCatch,children:({error:n,reset:r})=>n?S.createElement(e,{error:n,reset:r}):t.children})}var dz=class extends S.Component{constructor(...t){super(...t),this.state={error:null}}static getDerivedStateFromProps(t,e){const n=t.getResetKey();return e.error&&e.resetKey!==n?{resetKey:n,error:null}:{resetKey:n}}static getDerivedStateFromError(t){return{error:t}}reset(){this.setState({error:null})}componentDidCatch(t,e){this.props.onCatch&&this.props.onCatch(t,e)}render(){return this.props.children({error:this.state.error,reset:()=>{this.reset()}})}};function p3({error:t}){const[e,n]=S.useState(!1);return C.jsxs("div",{style:{padding:".5rem",maxWidth:"100%"},children:[C.jsxs("div",{style:{display:"flex",alignItems:"center",gap:".5rem"},children:[C.jsx("strong",{style:{fontSize:"1rem"},children:"Something went wrong!"}),C.jsx("button",{style:{appearance:"none",fontSize:".6em",border:"1px solid currentColor",padding:".1rem .2rem",fontWeight:"bold",borderRadius:".25rem"},onClick:()=>n(r=>!r),children:e?"Hide Error":"Show Error"})]}),C.jsx("div",{style:{height:".25rem"}}),e?C.jsx("div",{children:C.jsx("pre",{style:{fontSize:".7em",border:"1px solid red",borderRadius:".25rem",padding:".3rem",color:"red",overflow:"auto"},children:t.message?C.jsx("code",{children:t.message}):null})}):null]})}function fz({children:t,fallback:e=null}){return ew()?C.jsx(V.Fragment,{children:t}):C.jsx(V.Fragment,{children:e})}function ew(){return V.useSyncExternalStore(hz,()=>!0,()=>!1)}function hz(){return()=>{}}var tw=S.createContext(null);function hn(t){return S.useContext(tw)}var dm=S.createContext(void 0),pz=S.createContext(void 0),pt=(t=>(t[t.None=0]="None",t[t.Mutable=1]="Mutable",t[t.Watching=2]="Watching",t[t.RecursedCheck=4]="RecursedCheck",t[t.Recursed=8]="Recursed",t[t.Dirty=16]="Dirty",t[t.Pending=32]="Pending",t))(pt||{});function mz({update:t,notify:e,unwatched:n}){return{link:r,unlink:i,propagate:s,checkDirty:a,shallowPropagate:u};function r(f,h,m){const g=h.depsTail;if(g!==void 0&&g.dep===f)return;const b=g!==void 0?g.nextDep:h.deps;if(b!==void 0&&b.dep===f){b.version=m,h.depsTail=b;return}const x=f.subsTail;if(x!==void 0&&x.version===m&&x.sub===h)return;const k=h.depsTail=f.subsTail={version:m,dep:f,sub:h,prevDep:g,nextDep:b,prevSub:x,nextSub:void 0};b!==void 0&&(b.prevDep=k),g!==void 0?g.nextDep=k:h.deps=k,x!==void 0?x.nextSub=k:f.subs=k}function i(f,h=f.sub){const m=f.dep,g=f.prevDep,b=f.nextDep,x=f.nextSub,k=f.prevSub;return b!==void 0?b.prevDep=g:h.depsTail=g,g!==void 0?g.nextDep=b:h.deps=b,x!==void 0?x.prevSub=k:m.subsTail=k,k!==void 0?k.nextSub=x:(m.subs=x)===void 0&&n(m),b}function s(f){let h=f.nextSub,m;e:do{const g=f.sub;let b=g.flags;if(b&60?b&12?b&4?!(b&48)&&c(f,g)?(g.flags=b|40,b&=1):b=0:g.flags=b&-9|32:b=0:g.flags=b|32,b&2&&e(g),b&1){const x=g.subs;if(x!==void 0){const k=(f=x).nextSub;k!==void 0&&(m={value:h,prev:m},h=k);continue}}if((f=h)!==void 0){h=f.nextSub;continue}for(;m!==void 0;)if(f=m.value,m=m.prev,f!==void 0){h=f.nextSub;continue e}break}while(!0)}function a(f,h){let m,g=0,b=!1;e:do{const x=f.dep,k=x.flags;if(h.flags&16)b=!0;else if((k&17)===17){if(t(x)){const E=x.subs;E.nextSub!==void 0&&u(E),b=!0}}else if((k&33)===33){(f.nextSub!==void 0||f.prevSub!==void 0)&&(m={value:f,prev:m}),f=x.deps,h=x,++g;continue}if(!b){const E=f.nextDep;if(E!==void 0){f=E;continue}}for(;g--;){const E=h.subs,D=E.nextSub!==void 0;if(D?(f=m.value,m=m.prev):f=E,b){if(t(h)){D&&u(E),h=f.sub;continue}b=!1}else h.flags&=-33;h=f.sub;const T=f.nextDep;if(T!==void 0){f=T;continue e}}return b}while(!0)}function u(f){do{const h=f.sub,m=h.flags;(m&48)===32&&(h.flags=m|16,(m&6)===2&&e(h))}while((f=f.nextSub)!==void 0)}function c(f,h){let m=h.depsTail;for(;m!==void 0;){if(m===f)return!0;m=m.prevDep}return!1}}function gz(t,e,n){const r=typeof t=="object",i=r?t:void 0;return{next:(r?t.next:t)?.bind(i),error:(r?t.error:e)?.bind(i),complete:(r?t.complete:n)?.bind(i)}}const Ky=[];let Rh=0;const{link:YC,unlink:bz,propagate:yz,checkDirty:nw,shallowPropagate:XC}=mz({update(t){return t._update()},notify(t){Ky[_y++]=t,t.flags&=~pt.Watching},unwatched(t){t.depsTail!==void 0&&(t.depsTail=void 0,t.flags=pt.Mutable|pt.Dirty,Qh(t))}});let Jf=0,_y=0,qr,Vy=0;function rw(t){try{++Vy,t()}finally{--Vy||iw()}}function Qh(t){const e=t.depsTail;let n=e!==void 0?e.nextDep:t.deps;for(;n!==void 0;)n=bz(n,t)}function iw(){if(!(Vy>0)){for(;Jf<_y;){const t=Ky[Jf];Ky[Jf++]=void 0,t.notify()}Jf=0,_y=0}}function JC(t,e){const n=typeof t=="function",r=t,i={_snapshot:n?void 0:t,subs:void 0,subsTail:void 0,deps:void 0,depsTail:void 0,flags:n?pt.None:pt.Mutable,get(){return qr!==void 0&&YC(i,qr,Rh),i._snapshot},subscribe(s){const a=gz(s),u={current:!1},c=xz(()=>{i.get(),u.current?a.next?.(i._snapshot):u.current=!0});return{unsubscribe:()=>{c.stop()}}},_update(s){const a=qr,u=e?.compare??Object.is;if(n)qr=i,++Rh,i.depsTail=void 0;else if(s===void 0)return!1;n&&(i.flags=pt.Mutable|pt.RecursedCheck);try{const c=i._snapshot,f=typeof s=="function"?s(c):s===void 0&&n?r(c):s;return c===void 0||!u(c,f)?(i._snapshot=f,!0):!1}finally{qr=a,n&&(i.flags&=~pt.RecursedCheck),Qh(i)}}};return n?(i.flags=pt.Mutable|pt.Dirty,i.get=function(){const s=i.flags;if(s&pt.Dirty||s&pt.Pending&&nw(i.deps,i)){if(i._update()){const a=i.subs;a!==void 0&&XC(a)}}else s&pt.Pending&&(i.flags=s&~pt.Pending);return qr!==void 0&&YC(i,qr,Rh),i._snapshot}):i.set=function(s){if(i._update(s)){const a=i.subs;a!==void 0&&(yz(a),XC(a),iw())}},i}function xz(t){const e=()=>{const r=qr;qr=n,++Rh,n.depsTail=void 0,n.flags=pt.Watching|pt.RecursedCheck;try{return t()}finally{qr=r,n.flags&=~pt.RecursedCheck,Qh(n)}},n={deps:void 0,depsTail:void 0,subs:void 0,subsTail:void 0,flags:pt.Watching|pt.RecursedCheck,notify(){const r=this.flags;r&pt.Dirty||r&pt.Pending&&nw(this.deps,this)?e():this.flags=pt.Watching},stop(){this.flags=pt.None,this.depsTail=void 0,Qh(this)}};return e(),n}var E0={exports:{}},D0={},S0={exports:{}},w0={};var ZC;function vz(){if(ZC)return w0;ZC=1;var t=cd();function e(m,g){return m===g&&(m!==0||1/m===1/g)||m!==m&&g!==g}var n=typeof Object.is=="function"?Object.is:e,r=t.useState,i=t.useEffect,s=t.useLayoutEffect,a=t.useDebugValue;function u(m,g){var b=g(),x=r({inst:{value:b,getSnapshot:g}}),k=x[0].inst,E=x[1];return s(function(){k.value=b,k.getSnapshot=g,c(k)&&E({inst:k})},[m,b,g]),i(function(){return c(k)&&E({inst:k}),m(function(){c(k)&&E({inst:k})})},[m]),a(b),b}function c(m){var g=m.getSnapshot;m=m.value;try{var b=g();return!n(m,b)}catch{return!0}}function f(m,g){return g()}var h=typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"?f:u;return w0.useSyncExternalStore=t.useSyncExternalStore!==void 0?t.useSyncExternalStore:h,w0}var e2;function sw(){return e2||(e2=1,S0.exports=vz()),S0.exports}var t2;function kz(){if(t2)return D0;t2=1;var t=cd(),e=sw();function n(f,h){return f===h&&(f!==0||1/f===1/h)||f!==f&&h!==h}var r=typeof Object.is=="function"?Object.is:n,i=e.useSyncExternalStore,s=t.useRef,a=t.useEffect,u=t.useMemo,c=t.useDebugValue;return D0.useSyncExternalStoreWithSelector=function(f,h,m,g,b){var x=s(null);if(x.current===null){var k={hasValue:!1,value:null};x.current=k}else k=x.current;x=u(function(){function D(P){if(!T){if(T=!0,$=P,P=g(P),b!==void 0&&k.hasValue){var M=k.value;if(b(M,P))return A=M}return A=P}if(M=A,r($,P))return M;var N=g(P);return b!==void 0&&b(M,N)?($=P,M):($=P,A=N)}var T=!1,$,A,B=m===void 0?null:m;return[function(){return D(h())},B===null?void 0:function(){return D(B())}]},[h,m,g,b]);var E=i(f,x[0],x[1]);return a(function(){k.hasValue=!0,k.value=E},[E]),c(E),E},D0}var n2;function Cz(){return n2||(n2=1,E0.exports=kz()),E0.exports}var ow=Cz();function Ez(t,e){return t===e}function Cn(t,e,n=Ez){const r=S.useCallback(a=>{if(!t)return()=>{};const{unsubscribe:u}=t.subscribe(a);return u},[t]),i=S.useCallback(()=>t?.get(),[t]);return ow.useSyncExternalStoreWithSelector(r,i,i,e,n)}var $0={get(){},subscribe(){return{unsubscribe(){}}}};function Dz(t,e){const n=S.useRef();return r=>{const i=t?.select?t.select(r):r;return t?.structuralSharing??e.options.defaultStructuralSharing?n.current=Oo(n.current,i):i}}function Qs(t){const e=hn(),n=S.useContext(t.from?pz:dm),r=t.from?e.stores.getRouteMatchStore(t.from):e.stores.matchStores.get(n),i=Dz(t,e),s=Cn(r??$0,a=>a?i(a):$0);if(s!==$0)return s;(t.shouldThrow??!0)&&Bi()}function m3(t){return Qs({from:t.from,strict:t.strict,structuralSharing:t.structuralSharing,select:e=>t.select?t.select(e.loaderData):e.loaderData})}function g3(t){const{select:e,...n}=t;return Qs({...n,select:r=>e?e(r.loaderDeps):r.loaderDeps})}function b3(t){return Qs({from:t.from,shouldThrow:t.shouldThrow,structuralSharing:t.structuralSharing,strict:t.strict,select:e=>{const n=t.strict===!1?e.params:e._strictParams;return t.select?t.select(n):n}})}function Ys(t){return Qs({from:t.from,strict:t.strict,shouldThrow:t.shouldThrow,structuralSharing:t.structuralSharing,select:e=>t.select?t.select(e.search):e.search})}function ji(t){const e=hn();return S.useCallback(n=>e.navigate({...n,from:n.from??t?.from}),[t?.from,e])}function y3(t){return Qs({...t,select:e=>t.select?t.select(e.context):e.context})}var ha=gS();const aw=mS(ha);function Sz(t,e){const n=hn(),r=uL(e),{activeProps:i,inactiveProps:s,activeOptions:a,to:u,preload:c,preloadDelay:f,preloadIntentProximity:h,hashScrollIntoView:m,replace:g,startTransition:b,resetScroll:x,viewTransition:k,children:E,target:D,disabled:T,style:$,className:A,onClick:B,onBlur:P,onFocus:M,onMouseEnter:N,onMouseLeave:j,onTouchStart:G,ignoreBlocker:W,params:U,search:ne,hash:F,state:te,mask:O,reloadDocument:K,unsafeRelative:Q,from:Z,_fromLocation:L,...z}=t,H=ew(),re=S.useMemo(()=>t,[n,t.from,t._fromLocation,t.hash,t.to,t.search,t.params,t.state,t.mask,t.unsafeRelative]),le=Cn(n.stores.location,at=>at,(at,Wt)=>at.href===Wt.href),ue=S.useMemo(()=>{const at={_fromLocation:le,...re};return n.buildLocation(at)},[n,le,re]),he=ue.maskedLocation?ue.maskedLocation.publicHref:ue.publicHref,Ce=ue.maskedLocation?ue.maskedLocation.external:ue.external,Ue=S.useMemo(()=>Mz(he,Ce,n.history,T),[T,Ce,he,n.history]),Se=S.useMemo(()=>{if(Ue?.external)return Uh(Ue.href,n.protocolAllowlist)?void 0:Ue.href;if(!Rz(u)&&!(typeof u!="string"||u.indexOf(":")===-1))try{return new URL(u),Uh(u,n.protocolAllowlist)?void 0:u}catch{}},[u,Ue,n.protocolAllowlist]),wn=S.useMemo(()=>{if(Se)return!1;if(a?.exact){if(!$L(le.pathname,ue.pathname,n.basepath))return!1}else{const at=qh(le.pathname,n.basepath),Wt=qh(ue.pathname,n.basepath);if(!(at.startsWith(Wt)&&(at.length===Wt.length||at[Wt.length]==="/")))return!1}return(a?.includeSearch??!0)&&!qo(le.search,ue.search,{partial:!a?.exact,ignoreUndefined:!a?.explicitUndefined})?!1:a?.includeHash?H&&le.hash===ue.hash:!0},[a?.exact,a?.explicitUndefined,a?.includeHash,a?.includeSearch,le,Se,H,ue.hash,ue.pathname,ue.search,n.basepath]),an=wn?Po(i,{})??wz:T0,bn=wn?T0:Po(s,{})??T0,xr=[A,an.className,bn.className].filter(Boolean).join(" "),_t=($||an.style||bn.style)&&{...$,...an.style,...bn.style},[so,je]=S.useState(!1),Ui=S.useRef(!1),Zr=t.reloadDocument||Se?!1:c??n.options.defaultPreload,oo=f??n.options.defaultPreloadDelay??0,vr=S.useCallback(()=>{n.preloadRoute({...re,_builtLocation:ue}).catch(at=>{console.warn(at),console.warn(lz)})},[n,re,ue]);lL(r,S.useCallback(at=>{at?.isIntersecting&&vr()},[vr]),Bz,{disabled:!!T||Zr!=="viewport"}),S.useEffect(()=>{Ui.current||!T&&Zr==="render"&&(vr(),Ui.current=!0)},[T,vr,Zr]);const Jl=at=>{const Wt=at.currentTarget.getAttribute("target"),Or=D!==void 0?D:Wt;if(!T&&!Nz(at)&&!at.defaultPrevented&&(!Or||Or==="_self")&&at.button===0){at.preventDefault(),ha.flushSync(()=>{je(!0)});const wa=n.subscribe("onResolved",()=>{wa(),je(!1)});n.navigate({...re,replace:g,resetScroll:x,hashScrollIntoView:m,startTransition:b,viewTransition:k,ignoreBlocker:W})}};if(Se)return{...z,ref:r,href:Se,...E&&{children:E},...D&&{target:D},...T&&{disabled:T},...$&&{style:$},...A&&{className:A},...B&&{onClick:B},...P&&{onBlur:P},...M&&{onFocus:M},...N&&{onMouseEnter:N},...j&&{onMouseLeave:j},...G&&{onTouchStart:G}};const Bd=at=>{if(T||Zr!=="intent")return;if(!oo){vr();return}const Wt=at.currentTarget;if(Qu.has(Wt))return;const Or=setTimeout(()=>{Qu.delete(Wt),vr()},oo);Qu.set(Wt,Or)},Xm=at=>{T||Zr!=="intent"||vr()},ln=at=>{if(T||!Zr||!oo)return;const Wt=at.currentTarget,Or=Qu.get(Wt);Or&&(clearTimeout(Or),Qu.delete(Wt))};return{...z,...an,...bn,href:Ue?.href,ref:r,onClick:dl([B,Jl]),onBlur:dl([P,ln]),onFocus:dl([M,Bd]),onMouseEnter:dl([N,Bd]),onMouseLeave:dl([j,ln]),onTouchStart:dl([G,Xm]),disabled:!!T,target:D,..._t&&{style:_t},...xr&&{className:xr},...T&&$z,...wn&&Tz,...H&&so&&Az}}var T0={},wz={className:"active"},$z={role:"link","aria-disabled":!0},Tz={"data-status":"active","aria-current":"page"},Az={"data-transitioning":"transitioning"},Qu=new WeakMap,Bz={rootMargin:"100px"},dl=t=>e=>{for(const n of t)if(n){if(e.defaultPrevented)return;n(e)}};function Mz(t,e,n,r){if(!r)return e?{href:t,external:!0}:{href:n.createHref(t)||"/",external:!1}}function Rz(t){if(typeof t!="string")return!1;const e=t.charCodeAt(0);return e===47?t.charCodeAt(1)!==47:e===46}var Ml=S.forwardRef((t,e)=>{const{_asChild:n,...r}=t,{type:i,...s}=Sz(r,e),a=typeof r.children=="function"?r.children({isActive:s["data-status"]==="active"}):r.children;if(!n){const{disabled:u,...c}=s;return S.createElement("a",c,a)}return S.createElement(n,s,a)});function Nz(t){return!!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)}function lw(t){return new Pz({id:t})}var Pz=class extends uz{constructor({id:t}){super({id:t}),this.useMatch=e=>Qs({select:e?.select,from:this.id,structuralSharing:e?.structuralSharing}),this.useRouteContext=e=>y3({...e,from:this.id}),this.useSearch=e=>Ys({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useParams=e=>b3({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useLoaderDeps=e=>g3({...e,from:this.id,strict:!1}),this.useLoaderData=e=>m3({...e,from:this.id,strict:!1}),this.useNavigate=()=>ji({from:hn().routesById[this.id].fullPath}),this.notFound=e=>US({routeId:this.id,...e}),this.Link=V.forwardRef((e,n)=>{const r=hn().routesById[this.id].fullPath;return C.jsx(Ml,{ref:n,from:r,...e})})}},Oz=class extends ZS{constructor(t){super(t),this.useMatch=e=>Qs({select:e?.select,from:this.id,structuralSharing:e?.structuralSharing}),this.useRouteContext=e=>y3({...e,from:this.id}),this.useSearch=e=>Ys({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useParams=e=>b3({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useLoaderDeps=e=>g3({...e,from:this.id}),this.useLoaderData=e=>m3({...e,from:this.id}),this.useNavigate=()=>ji({from:this.fullPath}),this.Link=V.forwardRef((e,n)=>C.jsx(Ml,{ref:n,from:this.fullPath,...e}))}};function x3(t){return new Oz(t)}var Lz=class extends cz{constructor(t){super(t),this.useMatch=e=>Qs({select:e?.select,from:this.id,structuralSharing:e?.structuralSharing}),this.useRouteContext=e=>y3({...e,from:this.id}),this.useSearch=e=>Ys({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useParams=e=>b3({select:e?.select,structuralSharing:e?.structuralSharing,from:this.id}),this.useLoaderDeps=e=>g3({...e,from:this.id}),this.useLoaderData=e=>m3({...e,from:this.id}),this.useNavigate=()=>ji({from:this.fullPath}),this.Link=V.forwardRef((e,n)=>C.jsx(Ml,{ref:n,from:this.fullPath,...e}))}};function zz(t){return new Lz(t)}function Iz(t){const e=hn(),n=`not-found-${Cn(e.stores.location,r=>r.pathname)}-${Cn(e.stores.status,r=>r)}`;return C.jsx(h3,{getResetKey:()=>n,onCatch:(r,i)=>{if(fn(r))t.onCatch?.(r,i);else throw r},errorComponent:({error:r})=>{if(fn(r))return t.fallback?.(r);throw r},children:t.children})}function jz(){return C.jsx("p",{children:"Not Found"})}function bl(t){return C.jsx(C.Fragment,{children:t.children})}function uw(t,e,n){return e.options.notFoundComponent?C.jsx(e.options.notFoundComponent,{...n}):t.options.defaultNotFoundComponent?C.jsx(t.options.defaultNotFoundComponent,{...n}):C.jsx(jz,{})}function Fz(t){return null}function Kz(){return Fz(hn()),null}var _z=(t,e)=>t.routeId===e.routeId&&t._displayPending===e._displayPending,Vz=(t,e)=>t[0]===e[0]&&t[1]===e[1],cw=S.memo(function({matchId:e}){const n=hn(),r=n.stores.matchStores.get(e);r||Bi();const i=Cn(n.stores.loadedAt,a=>a),s=Cn(r,a=>a,_z);return C.jsx(Hz,{router:n,matchId:e,resetKey:i,matchState:S.useMemo(()=>{const a=s.routeId,u=n.routesById[a].parentRoute?.id;return{routeId:a,ssr:s.ssr,_displayPending:s._displayPending,parentRouteId:u}},[s._displayPending,s.routeId,s.ssr,n.routesById])})});function Hz({router:t,matchId:e,resetKey:n,matchState:r}){const i=t.routesById[r.routeId],s=i.options.pendingComponent??t.options.defaultPendingComponent,a=s?C.jsx(s,{}):null,u=i.options.errorComponent??t.options.defaultErrorComponent,c=i.options.onCatch??t.options.defaultOnCatch,f=i.isRoot?i.options.notFoundComponent??t.options.notFoundRoute?.options.component:i.options.notFoundComponent,h=r.ssr===!1||r.ssr==="data-only",m=(!i.isRoot||i.options.wrapInSuspense||h)&&(i.options.wrapInSuspense??s??(i.options.errorComponent?.preload||h))?S.Suspense:bl,g=u?h3:bl,b=f?Iz:bl;return C.jsxs(i.isRoot?i.options.shellComponent??bl:bl,{children:[C.jsx(dm.Provider,{value:e,children:C.jsx(m,{fallback:a,children:C.jsx(g,{getResetKey:()=>n,errorComponent:u||p3,onCatch:(x,k)=>{if(fn(x))throw x.routeId??=r.routeId,x;c?.(x,k)},children:C.jsx(b,{fallback:x=>{if(x.routeId??=r.routeId,!f||x.routeId&&x.routeId!==r.routeId||!x.routeId&&!i.isRoot)throw x;return S.createElement(f,x)},children:h||r._displayPending?C.jsx(fz,{fallback:a,children:C.jsx(r2,{matchId:e})}):C.jsx(r2,{matchId:e})})})})}),r.parentRouteId===Go?C.jsxs(C.Fragment,{children:[C.jsx(Uz,{}),t.options.scrollRestoration&&LS?C.jsx(Kz,{}):null]}):null]})}function Uz(){const t=hn(),e=S.useRef();return sc(()=>{const n=t.stores.resolvedLocation.get(),r=e.current;n&&(!r||r.href!==n.href)&&t.emit({type:"onRendered",...El(t.stores.location.get(),r??n)}),e.current=n},[Cn(t.stores.resolvedLocation,n=>n?.state.__TSR_key),t]),null}var r2=S.memo(function({matchId:e}){const n=hn(),r=(h,m)=>n.getMatch(h.id)?._nonReactive[m]??h._nonReactive[m],i=n.stores.matchStores.get(e);i||Bi();const s=Cn(i,h=>h),a=s.routeId,u=n.routesById[a],c=S.useMemo(()=>{const h=(n.routesById[a].options.remountDeps??n.options.defaultRemountDeps)?.({routeId:a,loaderDeps:s.loaderDeps,params:s._strictParams,search:s._strictSearch});return h?JSON.stringify(h):void 0},[a,s.loaderDeps,s._strictParams,s._strictSearch,n.options.defaultRemountDeps,n.routesById]),f=S.useMemo(()=>{const h=u.options.component??n.options.defaultComponent;return h?C.jsx(h,{},c):C.jsx(dw,{})},[c,u.options.component,n.options.defaultComponent]);if(s._displayPending)throw r(s,"displayPendingPromise");if(s._forcePending)throw r(s,"minPendingPromise");if(s.status==="pending"){const h=u.options.pendingMinMs??n.options.defaultPendingMinMs;if(h){const m=n.getMatch(s.id);if(m&&!m._nonReactive.minPendingPromise){const g=Bl();m._nonReactive.minPendingPromise=g,setTimeout(()=>{g.resolve(),m._nonReactive.minPendingPromise=void 0},h)}}throw r(s,"loadPromise")}if(s.status==="notFound")return fn(s.error)||Bi(),uw(n,u,s.error);if(s.status==="redirected")throw jn(s.error)||Bi(),r(s,"loadPromise");if(s.status==="error")throw s.error;return f}),dw=S.memo(function(){const e=hn(),n=S.useContext(dm);let r,i=!1,s;{const f=n?e.stores.matchStores.get(n):void 0;[r,i]=Cn(f,h=>[h?.routeId,h?.globalNotFound??!1],Vz),s=Cn(e.stores.matchesId,h=>h[h.findIndex(m=>m===n)+1])}const a=r?e.routesById[r]:void 0,u=e.options.defaultPendingComponent?C.jsx(e.options.defaultPendingComponent,{}):null;if(i)return a||Bi(),uw(e,a,void 0);if(!s)return null;const c=C.jsx(cw,{matchId:s});return r===Go?C.jsx(S.Suspense,{fallback:u,children:c}):c});function qz(){const t=hn(),e=S.useRef({router:t,mounted:!1}),[n,r]=S.useState(!1),i=Cn(t.stores.isLoading,m=>m),s=Cn(t.stores.hasPending,m=>m),a=g0(i),u=i||n||s,c=g0(u),f=i||s,h=g0(f);return t.startTransition=m=>{r(!0),S.startTransition(()=>{m(),r(!1)})},S.useEffect(()=>{const m=t.history.subscribe(t.load),g=t.buildLocation({to:t.latestLocation.pathname,search:!0,params:!0,hash:!0,state:!0,_includeValidateSearch:!0});return wi(t.latestLocation.publicHref)!==wi(g.publicHref)&&t.commitLocation({...g,replace:!0}),()=>{m()}},[t,t.history]),sc(()=>{if(typeof window<"u"&&t.ssr||e.current.router===t&&e.current.mounted)return;e.current={router:t,mounted:!0},(async()=>{try{await t.load()}catch(g){console.error(g)}})()},[t]),sc(()=>{a&&!i&&t.emit({type:"onLoad",...El(t.stores.location.get(),t.stores.resolvedLocation.get())})},[a,t,i]),sc(()=>{h&&!f&&t.emit({type:"onBeforeRouteMount",...El(t.stores.location.get(),t.stores.resolvedLocation.get())})},[f,h,t]),sc(()=>{if(c&&!u){const m=El(t.stores.location.get(),t.stores.resolvedLocation.get());t.emit({type:"onResolved",...m}),rw(()=>{t.stores.status.set("idle"),t.stores.resolvedLocation.set(t.stores.location.get())})}},[u,c,t]),null}function Gz(){const t=hn(),e=t.routesById[Go].options.pendingComponent??t.options.defaultPendingComponent,n=e?C.jsx(e,{}):null,r=C.jsxs(typeof document<"u"&&t.ssr?bl:S.Suspense,{fallback:n,children:[C.jsx(qz,{}),C.jsx(Wz,{})]});return t.options.InnerWrap?C.jsx(t.options.InnerWrap,{children:r}):r}function Wz(){const t=hn(),e=Cn(t.stores.firstId,i=>i),n=Cn(t.stores.loadedAt,i=>i),r=e?C.jsx(cw,{matchId:e}):null;return C.jsx(dm.Provider,{value:e,children:t.options.disableGlobalCatchBoundary?r:C.jsx(h3,{getResetKey:()=>n,errorComponent:p3,onCatch:void 0,children:r})})}function fw(){const t=hn();return Cn(t.stores.matchRouteDeps,e=>e),S.useCallback(e=>{const{pending:n,caseSensitive:r,fuzzy:i,includeSearch:s,...a}=e;return t.matchRoute(a,{pending:n,caseSensitive:r,fuzzy:i,includeSearch:s})},[t])}var Qz=t=>({createMutableStore:JC,createReadonlyStore:JC,batch:rw}),Yz=t=>new Xz(t),Xz=class extends tz{constructor(t){super(t,Qz)}};function Jz({router:t,children:e,...n}){IS(n)&&t.update({...t.options,...n,context:{...t.options.context,...n.context}});const r=C.jsx(tw.Provider,{value:t,children:e});return t.options.Wrap?C.jsx(t.options.Wrap,{children:r}):r}function Zz({router:t,...e}){return C.jsx(Jz,{router:t,...e,children:C.jsx(Gz,{})})}function Xs(...t){return(...e)=>{for(let n of t)typeof n=="function"&&n(...e)}}const ze=typeof document<"u"?V.useLayoutEffect:()=>{},hw={prefix:String(Math.round(Math.random()*1e10)),current:0},pw=V.createContext(hw),eI=V.createContext(!1);let A0=new WeakMap;function tI(t=!1){let e=S.useContext(pw),n=S.useRef(null);if(n.current===null&&!t){let r=V.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED?.ReactCurrentOwner?.current;if(r){let i=A0.get(r);i==null?A0.set(r,{id:e.current,state:r.memoizedState}):r.memoizedState!==i.state&&(e.current=i.id,A0.delete(r))}n.current=++e.current}return n.current}function nI(t){let e=S.useContext(pw),n=tI(!!t),r=`react-aria${e.prefix}`;return t||`${r}-${n}`}function rI(t){let e=V.useId(),[n]=S.useState(Js()),r=n?"react-aria":`react-aria${hw.prefix}`;return t||`${r}-${e}`}const iI=typeof V.useId=="function"?rI:nI;function sI(){return!1}function oI(){return!0}function aI(t){return()=>{}}function Js(){return typeof V.useSyncExternalStore=="function"?V.useSyncExternalStore(aI,sI,oI):S.useContext(eI)}function lI(t){let[e,n]=S.useState(t),r=S.useRef(e),i=S.useRef(null),s=S.useRef(()=>{if(!i.current)return;let u=i.current.next();if(u.done){i.current=null;return}r.current===u.value?s.current():n(u.value)});ze(()=>{r.current=e,i.current&&s.current()});let a=S.useCallback(u=>{i.current=u(r.current),s.current()},[s]);return[e,a]}let uI=!!(typeof window<"u"&&window.document&&window.document.createElement),Dl=new Map,oc;typeof FinalizationRegistry<"u"&&(oc=new FinalizationRegistry(t=>{Dl.delete(t)}));function on(t){let[e,n]=S.useState(t),r=S.useRef(null),i=iI(e),s=S.useRef(null);if(oc&&oc.register(s,i),uI){const a=Dl.get(i);a&&!a.includes(r)?a.push(r):Dl.set(i,[r])}return ze(()=>{let a=i;return()=>{oc&&oc.unregister(s),Dl.delete(a)}},[i]),S.useEffect(()=>{let a=r.current;return a&&n(a),()=>{a&&(r.current=null)}}),i}function cI(t,e){if(t===e)return t;let n=Dl.get(t);if(n)return n.forEach(i=>i.current=e),e;let r=Dl.get(e);return r?(r.forEach(i=>i.current=t),t):e}function Qo(t=[]){let e=on(),[n,r]=lI(e),i=S.useCallback(()=>{r(function*(){yield e,yield document.getElementById(e)?e:void 0})},[e,r]);return ze(i,[e,i,...t]),n}function hd(...t){return t.length===1&&t[0]?t[0]:e=>{let n=!1;const r=t.map(i=>{const s=i2(i,e);return n||=typeof s=="function",s});if(n)return()=>{r.forEach((i,s)=>{typeof i=="function"?i():i2(t[s],null)})}}}function i2(t,e){if(typeof t=="function")return t(e);t!=null&&(t.current=e)}function mw(t){var e,n,r="";if(typeof t=="string"||typeof t=="number")r+=t;else if(typeof t=="object")if(Array.isArray(t)){var i=t.length;for(e=0;e<i;e++)t[e]&&(n=mw(t[e]))&&(r&&(r+=" "),r+=n)}else for(n in t)t[n]&&(r&&(r+=" "),r+=n);return r}function v3(){for(var t,e,n=0,r="",i=arguments.length;n<i;n++)(t=arguments[n])&&(e=mw(t))&&(r&&(r+=" "),r+=e);return r}function $e(...t){let e={...t[0]};for(let n=1;n<t.length;n++){let r=t[n];for(let i in r){let s=e[i],a=r[i];typeof s=="function"&&typeof a=="function"&&i[0]==="o"&&i[1]==="n"&&i.charCodeAt(2)>=65&&i.charCodeAt(2)<=90?e[i]=Xs(s,a):(i==="className"||i==="UNSAFE_className")&&typeof s=="string"&&typeof a=="string"?e[i]=v3(s,a):i==="id"&&s&&a?e.id=cI(s,a):i==="ref"&&s&&a?e.ref=hd(s,a):e[i]=a!==void 0?a:s}}return e}function Zs(t){const e=S.useRef(null),n=S.useRef(void 0),r=S.useCallback(i=>{if(typeof t=="function"){const s=t,a=s(i);return()=>{typeof a=="function"?a():s(null)}}else if(t)return t.current=i,()=>{t.current=null}},[t]);return S.useMemo(()=>({get current(){return e.current},set current(i){e.current=i,n.current&&(n.current(),n.current=void 0),i!=null&&(n.current=r(i))}}),[r])}const Bs=Symbol("default");function Pr({values:t,children:e}){for(let[n,r]of t)e=V.createElement(n.Provider,{value:r},e);return e}function wt(t){let{className:e,style:n,children:r,defaultClassName:i,defaultChildren:s,defaultStyle:a,values:u,render:c}=t;return S.useMemo(()=>{let f,h,m;return typeof e=="function"?f=e({...u,defaultClassName:i}):f=e,typeof n=="function"?h=n({...u,defaultStyle:a||{}}):h=n,typeof r=="function"?m=r({...u,defaultChildren:s}):r==null?m=s:m=r,{className:f??i,style:h||a?{...a,...h}:void 0,children:m??s,"data-rac":"",render:c?g=>c(g,u):void 0}},[e,n,r,i,s,a,u,c])}function _s(t,e){return n=>e(typeof t=="function"?t(n):t,n)}function Vl(t,e){let n=S.useContext(t);if(e===null)return null;if(n&&typeof n=="object"&&"slots"in n&&n.slots){let r=e||Bs;if(!n.slots[r]){let i=new Intl.ListFormat().format(Object.keys(n.slots).map(a=>`"${a}"`)),s=e?`Invalid slot "${e}".`:"A slot prop is required.";throw new Error(`${s} Valid slot names are ${i}.`)}return n.slots[r]}return n}function Ct(t,e,n){let r=Vl(n,t.slot)||{},{ref:i,...s}=r,a=Zs(S.useMemo(()=>hd(e,i),[e,i])),u=$e(s,t);return"style"in s&&s.style&&"style"in t&&t.style&&(typeof s.style=="function"||typeof t.style=="function"?u.style=c=>{let f=typeof s.style=="function"?s.style(c):s.style,h={...c.defaultStyle,...f},m=typeof t.style=="function"?t.style({...c,defaultStyle:h}):t.style;return{...h,...m}}:u.style={...s.style,...t.style}),[u,a]}function gw(t=!0){let[e,n]=S.useState(t),r=S.useRef(!1),i=S.useCallback(s=>{r.current=!0,n(!!s)},[]);return ze(()=>{r.current||n(!1)},[]),[i,e]}function bw(t){const e=/^(data-.*)$/;let n={};for(const r in t)e.test(r)||(n[r]=t[r]);return n}function dI(t,e,n){let{render:r,...i}=e,s=S.useRef(null),a=S.useMemo(()=>hd(n,s),[n,s]);ze(()=>{},[t,r]);let u={...i,ref:a};return r?r(u,void 0):V.createElement(t,u)}const s2={},ot=new Proxy({},{get(t,e){if(typeof e!="string")return;let n=s2[e];return n||(n=S.forwardRef(dI.bind(null,e)),s2[e]=n),n}}),yw="react-aria-clear-focus",Hy="react-aria-focus",Ie=t=>t?.ownerDocument??document,pn=t=>t&&"window"in t&&t.window===t?t:Ie(t).defaultView||window;function fI(t){return t!==null&&typeof t=="object"&&"nodeType"in t&&typeof t.nodeType=="number"}function hI(t){return fI(t)&&t.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&"host"in t}let pI=!1;function Si(){return pI}function we(t,e){if(!Si())return e&&t?t.contains(e):!1;if(!t||!e)return!1;let n=e;for(;n!==null;){if(n===t)return!0;n.tagName==="SLOT"&&n.assignedSlot?n=n.assignedSlot.parentNode:hI(n)?n=n.host:n=n.parentNode}return!1}const _e=(t=document)=>{if(!Si())return t.activeElement;let e=t.activeElement;for(;e&&"shadowRoot"in e&&e.shadowRoot?.activeElement;)e=e.shadowRoot.activeElement;return e};function de(t){if(Si()&&t.target instanceof Element&&t.target.shadowRoot){if("composedPath"in t)return t.composedPath()[0]??null;if("composedPath"in t.nativeEvent)return t.nativeEvent.composedPath()[0]??null}return t.target}function Rl(t){if(!t)return!1;let e=t.getRootNode(),n=pn(t);if(!(e instanceof n.Document||e instanceof n.ShadowRoot))return!1;let r=e.activeElement;return r!=null&&t.contains(r)}function k3(t){let e=xw(Ie(t));e!==t&&(e&&Uy(e,t),t&&Yh(t,e))}function Uy(t,e){t.dispatchEvent(new FocusEvent("blur",{relatedTarget:e})),t.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:e}))}function Yh(t,e){t.dispatchEvent(new FocusEvent("focus",{relatedTarget:e})),t.dispatchEvent(new FocusEvent("focusin",{bubbles:!0,relatedTarget:e}))}function xw(t){let e=_e(t),n=e?.getAttribute("aria-activedescendant");return n&&t.getElementById(n)||e}function Rr(t){if(mI())t.focus({preventScroll:!0});else{let e=gI(t);t.focus(),bI(e)}}let Zf=null;function mI(){if(Zf==null){Zf=!1;try{document.createElement("div").focus({get preventScroll(){return Zf=!0,!0}})}catch{}}return Zf}function gI(t){let e=t.parentNode,n=[],r=document.scrollingElement||document.documentElement;for(;e instanceof HTMLElement&&e!==r;)(e.offsetHeight<e.scrollHeight||e.offsetWidth<e.scrollWidth)&&n.push({element:e,scrollTop:e.scrollTop,scrollLeft:e.scrollLeft}),e=e.parentNode;return r instanceof HTMLElement&&n.push({element:r,scrollTop:r.scrollTop,scrollLeft:r.scrollLeft}),n}function bI(t){for(let{element:e,scrollTop:n,scrollLeft:r}of t)e.scrollTop=n,e.scrollLeft=r}const yI=typeof Element<"u"&&"checkVisibility"in Element.prototype;function xI(t){const e=pn(t);if(!(t instanceof e.HTMLElement)&&!(t instanceof e.SVGElement))return!1;let{display:n,visibility:r}=t.style,i=n!=="none"&&r!=="hidden"&&r!=="collapse";if(i){const{getComputedStyle:s}=pn(t);let{display:a,visibility:u}=s(t);i=a!=="none"&&u!=="hidden"&&u!=="collapse"}return i}function vI(t,e){return!t.hasAttribute("hidden")&&!t.hasAttribute("data-react-aria-prevent-focus")&&(t.nodeName==="DETAILS"&&e&&e.nodeName!=="SUMMARY"?t.hasAttribute("open"):!0)}function C3(t,e){return yI?t.checkVisibility({visibilityProperty:!0})&&!t.closest("[data-react-aria-prevent-focus]"):t.nodeName!=="#comment"&&xI(t)&&vI(t,e)&&(!t.parentElement||C3(t.parentElement,t))}const E3=["input:not([disabled]):not([type=hidden])","select:not([disabled])","textarea:not([disabled])","button:not([disabled])","a[href]","area[href]","summary","iframe","object","embed","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable^="false"])',"permission"],kI=E3.join(":not([hidden]),")+",[tabindex]:not([disabled]):not([hidden])";E3.push('[tabindex]:not([tabindex="-1"]):not([disabled])');const CI=E3.join(':not([hidden]):not([tabindex="-1"]),');function vw(t,e){return t.matches(kI)&&!kw(t)&&(e?.skipVisibilityCheck||C3(t))}function Xh(t){return t.matches(CI)&&C3(t)&&!kw(t)}function kw(t){let e=t;for(;e!=null;){if(e instanceof pn(e).HTMLElement&&e.inert)return!0;e=e.parentElement}return!1}function D3(t){let e=t;return e.nativeEvent=t,e.isDefaultPrevented=()=>e.defaultPrevented,e.isPropagationStopped=()=>e.cancelBubble,e.persist=()=>{},e}function Cw(t,e){Object.defineProperty(t,"target",{value:e}),Object.defineProperty(t,"currentTarget",{value:e})}function Ew(t){let e=S.useRef({isFocused:!1,observer:null});return ze(()=>{const n=e.current;return()=>{n.observer&&(n.observer.disconnect(),n.observer=null)}},[]),S.useCallback(n=>{let r=de(n);if(r instanceof HTMLButtonElement||r instanceof HTMLInputElement||r instanceof HTMLTextAreaElement||r instanceof HTMLSelectElement){e.current.isFocused=!0;let i=r,s=a=>{if(e.current.isFocused=!1,i.disabled){let u=D3(a);t?.(u)}e.current.observer&&(e.current.observer.disconnect(),e.current.observer=null)};i.addEventListener("focusout",s,{once:!0}),e.current.observer=new MutationObserver(()=>{if(e.current.isFocused&&i.disabled){e.current.observer?.disconnect();let a=i===_e()?null:_e();i.dispatchEvent(new FocusEvent("blur",{relatedTarget:a})),i.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:a}))}}),e.current.observer.observe(i,{attributes:!0,attributeFilter:["disabled"]})}},[t])}let Jh=!1;function EI(t){for(;t&&!vw(t,{skipVisibilityCheck:!0});)t=t.parentElement;let e=pn(t),n=e.document.activeElement;if(!n||n===t)return;Jh=!0;let r=!1,i=h=>{(de(h)===n||r)&&h.stopImmediatePropagation()},s=h=>{(de(h)===n||r)&&(h.stopImmediatePropagation(),!t&&!r&&(r=!0,Rr(n),c()))},a=h=>{(de(h)===t||r)&&h.stopImmediatePropagation()},u=h=>{(de(h)===t||r)&&(h.stopImmediatePropagation(),r||(r=!0,Rr(n),c()))};e.addEventListener("blur",i,!0),e.addEventListener("focusout",s,!0),e.addEventListener("focusin",u,!0),e.addEventListener("focus",a,!0);let c=()=>{cancelAnimationFrame(f),e.removeEventListener("blur",i,!0),e.removeEventListener("focusout",s,!0),e.removeEventListener("focusin",u,!0),e.removeEventListener("focus",a,!0),Jh=!1,r=!1},f=requestAnimationFrame(c);return c}function fm(t){if(typeof window>"u"||window.navigator==null)return!1;let e=window.navigator.userAgentData?.brands;return Array.isArray(e)&&e.some(n=>t.test(n.brand))||t.test(window.navigator.userAgent)}function S3(t){return typeof window<"u"&&window.navigator!=null?t.test(window.navigator.userAgentData?.platform||window.navigator.platform):!1}function Fi(t){let e=null;return()=>(e==null&&(e=t()),e)}const Vs=Fi(function(){return S3(/^Mac/i)}),DI=Fi(function(){return S3(/^iPhone/i)}),w3=Fi(function(){return S3(/^iPad/i)||Vs()&&navigator.maxTouchPoints>1}),Oi=Fi(function(){return DI()||w3()}),SI=Fi(function(){return Vs()||Oi()}),$3=Fi(function(){return fm(/AppleWebKit/i)&&!Dw()}),Dw=Fi(function(){return fm(/Chrome/i)}),hm=Fi(function(){return fm(/Android/i)}),wI=Fi(function(){return fm(/Firefox/i)});function pm(t){return t.pointerType===""&&t.isTrusted?!0:hm()&&t.pointerType?t.type==="click"&&t.buttons===1:t.detail===0&&!t.pointerType}function T3(t){return!hm()&&t.width===0&&t.height===0||t.width===1&&t.height===1&&t.pressure===0&&t.detail===0&&t.pointerType==="mouse"}const Sw=S.createContext({isNative:!0,open:TI,useHref:t=>t});function $I(t){let{children:e,navigate:n,useHref:r}=t,i=S.useMemo(()=>({isNative:!1,open:(s,a,u,c)=>{$w(s,f=>{ww(f,a)?n(u,c):Yr(f,a)})},useHref:r||(s=>s)}),[n,r]);return V.createElement(Sw.Provider,{value:i},e)}function Hl(){return S.useContext(Sw)}function ww(t,e){let n=t.getAttribute("target");return(!n||n==="_self")&&t.origin===location.origin&&!t.hasAttribute("download")&&!e.metaKey&&!e.ctrlKey&&!e.altKey&&!e.shiftKey}function Yr(t,e,n=!0){let{metaKey:r,ctrlKey:i,altKey:s,shiftKey:a}=e;wI()&&window.event?.type?.startsWith("key")&&t.target==="_blank"&&(Vs()?r=!0:i=!0);let u=$3()&&Vs()&&!w3()?new KeyboardEvent("keydown",{keyIdentifier:"Enter",metaKey:r,ctrlKey:i,altKey:s,shiftKey:a}):new MouseEvent("click",{metaKey:r,ctrlKey:i,altKey:s,shiftKey:a,detail:1,bubbles:!0,cancelable:!0});Yr.isOpening=n,Rr(t),t.dispatchEvent(u),Yr.isOpening=!1}Yr.isOpening=!1;function $w(t,e){if(t instanceof HTMLAnchorElement)e(t);else if(t.hasAttribute("data-href")){let n=document.createElement("a");n.href=t.getAttribute("data-href"),t.hasAttribute("data-target")&&(n.target=t.getAttribute("data-target")),t.hasAttribute("data-rel")&&(n.rel=t.getAttribute("data-rel")),t.hasAttribute("data-download")&&(n.download=t.getAttribute("data-download")),t.hasAttribute("data-ping")&&(n.ping=t.getAttribute("data-ping")),t.hasAttribute("data-referrer-policy")&&(n.referrerPolicy=t.getAttribute("data-referrer-policy")),t.appendChild(n),e(n),t.removeChild(n)}}function TI(t,e){$w(t,n=>Yr(n,e))}function AI(t){const n=Hl().useHref(t.href??"");return{"data-href":t.href?n:void 0,"data-target":t.target,"data-rel":t.rel,"data-download":t.download,"data-ping":t.ping,"data-referrer-policy":t.referrerPolicy}}function Tw(t){const n=Hl().useHref(t?.href??"");let r={};if(t)for(let i of["href","target","rel","download","ping","referrerPolicy"])i in t&&(r[i]=i==="href"?n:t[i]);return r}function Aw(t,e,n,r){!e.isNative&&t.currentTarget instanceof HTMLAnchorElement&&t.currentTarget.href&&!t.isDefaultPrevented()&&ww(t.currentTarget,t)&&n&&(t.preventDefault(),e.open(t.currentTarget,t,n,r))}let Li=null,Ul="keyboard";const _c=new Set;let yc=new Map,ra=!1,qy=!1;const BI={Tab:!0,Escape:!0};function mm(t,e){for(let n of _c)n(t,e)}function MI(t){return!(t.metaKey||!Vs()&&t.altKey||t.ctrlKey||t.key==="Control"||t.key==="Shift"||t.key==="Meta")}function Zh(t){ra=!0,!Yr.isOpening&&MI(t)&&(Li="keyboard",Ul="keyboard",mm("keyboard",t))}function Sl(t){Li="pointer",Ul="pointerType"in t?t.pointerType:"mouse",(t.type==="mousedown"||t.type==="pointerdown")&&(ra=!0,mm("pointer",t))}function Bw(t){!Yr.isOpening&&pm(t)&&(ra=!0,Li="virtual",Ul="virtual")}function Mw(t){let e=pn(de(t)),n=Ie(de(t));de(t)===e||de(t)===n||Jh||!t.isTrusted||(!ra&&!qy&&(Li="virtual",Ul="virtual",mm("virtual",t)),ra=!1,qy=!1)}function Rw(){Jh||(ra=!1,qy=!0)}function ep(t){if(typeof window>"u"||typeof document>"u")return;const e=pn(t),n=Ie(t);if(yc.get(e))return;let r=e.HTMLElement.prototype.focus;Reflect.defineProperty(e.HTMLElement.prototype,"focus",{configurable:!0,writable:!0,value:function(){ra=!0,r.apply(this,arguments)}}),n.addEventListener("keydown",Zh,!0),n.addEventListener("keyup",Zh,!0),n.addEventListener("click",Bw,!0),e.addEventListener("focus",Mw,!0),e.addEventListener("blur",Rw,!1),typeof PointerEvent<"u"&&(n.addEventListener("pointerdown",Sl,!0),n.addEventListener("pointermove",Sl,!0),n.addEventListener("pointerup",Sl,!0)),e.addEventListener("beforeunload",()=>{Nw(t)},{once:!0}),yc.set(e,{focus:r})}const Nw=(t,e)=>{const n=pn(t),r=Ie(t);e&&r.removeEventListener("DOMContentLoaded",e),yc.has(n)&&(Reflect.defineProperty(n.HTMLElement.prototype,"focus",{configurable:!0,writable:!0,value:yc.get(n).focus}),r.removeEventListener("keydown",Zh,!0),r.removeEventListener("keyup",Zh,!0),r.removeEventListener("click",Bw,!0),n.removeEventListener("focus",Mw,!0),n.removeEventListener("blur",Rw,!1),typeof PointerEvent<"u"&&(r.removeEventListener("pointerdown",Sl,!0),r.removeEventListener("pointermove",Sl,!0),r.removeEventListener("pointerup",Sl,!0)),yc.delete(n))};function RI(t){const e=Ie(t);let n;return e.readyState!=="loading"?ep(t):(n=()=>{ep(t)},e.addEventListener("DOMContentLoaded",n)),()=>Nw(t,n)}typeof document<"u"&&RI();function Nl(){return Li!=="pointer"}function ia(){return Li}function zo(t){Li=t,Ul=t==="pointer"?"mouse":t,mm(t,null)}function NI(){return Ul}function Pw(){ep();let[t,e]=S.useState(Li);return S.useEffect(()=>{let n=()=>{e(Li)};return _c.add(n),()=>{_c.delete(n)}},[]),Js()?null:t}const PI=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function OI(t,e,n){let r=n?de(n):void 0,i=Ie(r),s=pn(r);const a=typeof s<"u"?s.HTMLInputElement:HTMLInputElement,u=typeof s<"u"?s.HTMLTextAreaElement:HTMLTextAreaElement,c=typeof s<"u"?s.HTMLElement:HTMLElement,f=typeof s<"u"?s.KeyboardEvent:KeyboardEvent;let h=_e(i);return t=t||h instanceof a&&!PI.has(h.type)||h instanceof u||h instanceof c&&h.isContentEditable,!(t&&e==="keyboard"&&n instanceof f&&!BI[n.key])}function LI(t,e,n){ep(),S.useEffect(()=>{if(n?.enabled===!1)return;let r=(i,s)=>{OI(!!n?.isTextInput,i,s)&&t(Nl())};return _c.add(r),()=>{_c.delete(r)}},e)}var Ow={};Ow={collectionLabel:"مقترحات"};var Lw={};Lw={collectionLabel:"Предложения"};var zw={};zw={collectionLabel:"Návrhy"};var Iw={};Iw={collectionLabel:"Forslag"};var jw={};jw={collectionLabel:"Empfehlungen"};var Fw={};Fw={collectionLabel:"Προτάσεις"};var Kw={};Kw={collectionLabel:"Suggestions"};var _w={};_w={collectionLabel:"Sugerencias"};var Vw={};Vw={collectionLabel:"Soovitused"};var Hw={};Hw={collectionLabel:"Ehdotukset"};var Uw={};Uw={collectionLabel:"Suggestions"};var qw={};qw={collectionLabel:"הצעות"};var Gw={};Gw={collectionLabel:"Prijedlozi"};var Ww={};Ww={collectionLabel:"Javaslatok"};var Qw={};Qw={collectionLabel:"Suggerimenti"};var Yw={};Yw={collectionLabel:"候補"};var Xw={};Xw={collectionLabel:"제안"};var Jw={};Jw={collectionLabel:"Pasiūlymai"};var Zw={};Zw={collectionLabel:"Ieteikumi"};var e$={};e$={collectionLabel:"Forslag"};var t$={};t$={collectionLabel:"Suggesties"};var n$={};n$={collectionLabel:"Sugestie"};var r$={};r$={collectionLabel:"Sugestões"};var i$={};i$={collectionLabel:"Sugestões"};var s$={};s$={collectionLabel:"Sugestii"};var o$={};o$={collectionLabel:"Предложения"};var a$={};a$={collectionLabel:"Návrhy"};var l$={};l$={collectionLabel:"Predlogi"};var u$={};u$={collectionLabel:"Predlozi"};var c$={};c$={collectionLabel:"Förslag"};var d$={};d$={collectionLabel:"Öneriler"};var f$={};f$={collectionLabel:"Пропозиції"};var h$={};h$={collectionLabel:"建议"};var p$={};p$={collectionLabel:"建議"};var m$={};m$={"ar-AE":Ow,"bg-BG":Lw,"cs-CZ":zw,"da-DK":Iw,"de-DE":jw,"el-GR":Fw,"en-US":Kw,"es-ES":_w,"et-EE":Vw,"fi-FI":Hw,"fr-FR":Uw,"he-IL":qw,"hr-HR":Gw,"hu-HU":Ww,"it-IT":Qw,"ja-JP":Yw,"ko-KR":Xw,"lt-LT":Jw,"lv-LV":Zw,"nb-NO":e$,"nl-NL":t$,"pl-PL":n$,"pt-BR":r$,"pt-PT":i$,"ro-RO":s$,"ru-RU":o$,"sk-SK":a$,"sl-SI":l$,"sr-SP":u$,"sv-SE":c$,"tr-TR":d$,"uk-UA":f$,"zh-CN":h$,"zh-TW":p$};function Bo(t){return Vs()?t.metaKey:t.ctrlKey}const zI=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function xc(t){return t instanceof HTMLInputElement&&!zI.has(t.type)||t instanceof HTMLTextAreaElement||t instanceof HTMLElement&&t.isContentEditable}const II=V.useInsertionEffect??ze;function Pt(t){const e=S.useRef(null);return II(()=>{e.current=t},[t]),S.useCallback((...n)=>{const r=e.current;return r?.(...n)},[])}function ac(t,e,n,r){let i=Pt(n),s=n==null;S.useEffect(()=>{if(s||!t.current)return;let a=t.current;return a.addEventListener(e,i,r),()=>{a.removeEventListener(e,i,r)}},[t,e,r,s])}function A3(t,e){let{id:n,"aria-label":r,"aria-labelledby":i}=t;return n=on(n),i&&r?i=[...new Set([n,...i.trim().split(/\s+/)])].join(" "):i&&(i=i.trim().split(/\s+/).join(" ")),!r&&!i&&e&&(r=e),{id:n,"aria-label":r,"aria-labelledby":i}}const jI=new Set(["Arab","Syrc","Samr","Mand","Thaa","Mend","Nkoo","Adlm","Rohg","Hebr"]),FI=new Set(["ae","ar","arc","bcc","bqi","ckb","dv","fa","glk","he","ku","mzn","nqo","pnb","ps","sd","ug","ur","yi"]);function KI(t){if(Intl.Locale){let n=new Intl.Locale(t).maximize(),r=typeof n.getTextInfo=="function"?n.getTextInfo():n.textInfo;if(r)return r.direction==="rtl";if(n.script)return jI.has(n.script)}let e=t.split("-")[0];return FI.has(e)}const g$=Symbol.for("react-aria.i18n.locale");function b$(){let t=typeof window<"u"&&window[g$]||typeof navigator<"u"&&(navigator.language||navigator.userLanguage)||"en-US";try{Intl.DateTimeFormat.supportedLocalesOf([t])}catch{t="en-US"}return{locale:t,direction:KI(t)?"rtl":"ltr"}}let Gy=b$(),lc=new Set;function o2(){Gy=b$();for(let t of lc)t(Gy)}function _I(){let t=Js(),[e,n]=S.useState(Gy);return S.useEffect(()=>(lc.size===0&&window.addEventListener("languagechange",o2),lc.add(n),()=>{lc.delete(n),lc.size===0&&window.removeEventListener("languagechange",o2)}),[]),t?{locale:typeof window<"u"&&window[g$]||"en-US",direction:"ltr"}:e}const VI=V.createContext(null);function Ki(){let t=_I();return S.useContext(VI)||t}const HI=Symbol.for("react-aria.i18n.locale"),UI=Symbol.for("react-aria.i18n.strings");let eh;class gm{constructor(e,n="en-US"){this.strings=Object.fromEntries(Object.entries(e).filter(([,r])=>r)),this.defaultLocale=n}getStringForLocale(e,n){let i=this.getStringsForLocale(n)[e];if(!i)throw new Error(`Could not find intl message ${e} in ${n} locale`);return i}getStringsForLocale(e){let n=this.strings[e];return n||(n=qI(e,this.strings,this.defaultLocale),this.strings[e]=n),n}static getGlobalDictionaryForPackage(e){if(typeof window>"u")return null;let n=window[HI];if(eh===void 0){let i=window[UI];if(!i)return null;eh={};for(let s in i)eh[s]=new gm({[n]:i[s]},n)}let r=eh?.[e];if(!r)throw new Error(`Strings for package "${e}" were not included by LocalizedStringProvider. Please add it to the list passed to createLocalizedStringDictionary.`);return r}}function qI(t,e,n="en-US"){if(e[t])return e[t];let r=GI(t);if(e[r])return e[r];for(let i in e)if(i.startsWith(r+"-"))return e[i];return e[n]}function GI(t){return Intl.Locale?new Intl.Locale(t).language:t.split("-")[0]}const a2=new Map,l2=new Map;class WI{constructor(e,n){this.locale=e,this.strings=n}format(e,n){let r=this.strings.getStringForLocale(e,this.locale);return typeof r=="function"?r(n,this):r}plural(e,n,r="cardinal"){let i=n["="+e];if(i)return typeof i=="function"?i():i;let s=this.locale+":"+r,a=a2.get(s);a||(a=new Intl.PluralRules(this.locale,{type:r}),a2.set(s,a));let u=a.select(e);return i=n[u]||n.other,typeof i=="function"?i():i}number(e){let n=l2.get(this.locale);return n||(n=new Intl.NumberFormat(this.locale),l2.set(this.locale,n)),n.format(e)}select(e,n){let r=e[n]||e.other;return typeof r=="function"?r():r}}const u2=new WeakMap;function QI(t){let e=u2.get(t);return e||(e=new gm(t),u2.set(t,e)),e}function YI(t,e){return e&&gm.getGlobalDictionaryForPackage(e)||QI(t)}function yr(t,e){let{locale:n}=Ki(),r=YI(t,e);return S.useMemo(()=>new WI(n,r),[n,r])}function XI(t){return t&&t.__esModule?t.default:t}function JI(t,e){let{inputRef:n,collectionRef:r,filter:i,disableAutoFocusFirst:s=!1,disableVirtualFocus:a=!1}=t,u=on(),c=S.useRef(void 0),f=S.useRef(!1),h=S.useRef(null),m=ia()==="virtual"&&(Oi()||hm()),[g,b]=S.useState(!m&&!a),[x,k]=S.useState(!1),[E,D]=S.useState(!1);S.useEffect(()=>()=>clearTimeout(c.current),[]);let T=Pt(H=>{!H.isTrusted&&g&&n.current&&_e(Ie(n.current))!==n.current&&NI()!=="touch"&&n.current.focus();let re=de(H);H.isTrusted||!re||h.current===re.id||(clearTimeout(c.current),re!==r.current?f.current?(h.current=re.id,c.current=setTimeout(()=>{e.setFocusedNodeId(re.id)},500)):(h.current=re.id,e.setFocusedNodeId(re.id)):h.current&&!document.getElementById(h.current)&&(h.current=null,e.setFocusedNodeId(null)),f.current=!1)}),[$,A]=S.useState(null),B=S.useCallback(H=>{A(H),H!=null?(H.getAttribute("tabindex")!=null&&b(!1),k(!0)):k(!1)},[]);ze(()=>($?.addEventListener("focusin",T),()=>{$?.removeEventListener("focusin",T)}),[$]);let P=Zs(S.useMemo(()=>hd(r,B),[r,B])),M=S.useCallback(()=>{if(!r.current){D(!0);return}f.current=!0,r.current?.dispatchEvent(new CustomEvent(Hy,{cancelable:!0,bubbles:!0,detail:{focusStrategy:"first"}}))},[r]),N=S.useCallback(H=>{D(!1),k3(_e()),h.current=null,e.setFocusedNodeId(null);let re=new CustomEvent(yw,{cancelable:!0,bubbles:!0,detail:{clearFocusKey:H}});clearTimeout(c.current),f.current=!1,r.current?.dispatchEvent(re)},[r,e]),j=S.useRef("");ac(n,"beforeinput",H=>{let{inputType:re}=H;j.current=re});let G=H=>{(j.current==="insertText"||j.current==="insertCompositionText"||j.current==="insertFromComposition")&&!s?M():j.current&&(j.current.includes("insert")||j.current.includes("delete")||j.current.includes("history"))&&(N(!0),xw(document)===n.current&&Yh(n.current,null)),e.setInputValue(H)},W=S.useRef(null),U=H=>{if(W.current=de(H),H.nativeEvent.isComposing)return;let re=h.current;switch(re!==null&&Ie(n.current).getElementById(re)==null&&(h.current=null,re=null),H.key){case"a":if(Bo(H))return;break;case"Escape":if(H.isDefaultPrevented())return;break;case" ":return;case"Tab":"continuePropagation"in H&&H.continuePropagation();return;case"Home":case"End":case"PageDown":case"PageUp":case"ArrowUp":case"ArrowDown":case"ArrowRight":case"ArrowLeft":{if((H.key==="Home"||H.key==="End")&&re==null&&H.shiftKey)return;if(H.key==="ArrowRight"||H.key==="ArrowLeft"){if(re==null){H.isPropagationStopped()||H.stopPropagation();return}break}H.preventDefault();let ue=new CustomEvent(Hy,{cancelable:!0,bubbles:!0});r.current?.dispatchEvent(ue);break}}H.isPropagationStopped()||H.stopPropagation();let le=!0;if(r.current!==null)if(re==null)le=r.current?.dispatchEvent(new KeyboardEvent(H.nativeEvent.type,H.nativeEvent))||!1;else{let ue=document.getElementById(re);ue&&(le=ue?.dispatchEvent(new KeyboardEvent(H.nativeEvent.type,H.nativeEvent))||!1)}if(le)switch(H.key){case"ArrowLeft":case"ArrowRight":N();break;case"Enter":re!=null&&document.getElementById(re)?.dispatchEvent(new PointerEvent("click",H.nativeEvent));break}else H.preventDefault()},ne=Pt(H=>{if(de(H)===W.current){H.stopImmediatePropagation();let re=h.current;re==null?r.current?.dispatchEvent(new KeyboardEvent(H.type,H)):document.getElementById(re)?.dispatchEvent(new KeyboardEvent(H.type,H))}});S.useEffect(()=>(document.addEventListener("keyup",ne,!0),()=>{document.removeEventListener("keyup",ne,!0)}),[]);let F=yr(XI(m$),"@react-aria/autocomplete"),te=A3({id:u,"aria-label":F.format("collectionLabel")}),O=S.useCallback((H,re)=>i?i(H,e.inputValue,re):!0,[e.inputValue,i]),K=H=>{if(!H.isTrusted)return;let re=h.current?document.getElementById(h.current):null;re&&Uy(re,H.relatedTarget)},Q=H=>{if(!H.isTrusted)return;if(h.current?document.getElementById(h.current):null){let le=de(H);queueMicrotask(()=>{Uy(le,r.current),Yh(r.current,le)})}},Z=H=>{H.button!==0||H.pointerType==="touch"||h.current==null||n.current==null||de(H)===n.current&&N()},L={value:e.inputValue,onChange:G},z={onKeyDown:U,"aria-activedescendant":e.focusedNodeId??void 0,onBlur:K,onFocus:Q,onPointerDown:Z};return L={...L,...g&&x&&z,enterKeyHint:"go","aria-controls":x?u:void 0,"aria-autocomplete":"list",autoCorrect:"off",spellCheck:"false",autoComplete:"off"},{inputProps:L,collectionProps:$e(te,{shouldUseVirtualFocus:g,disallowTypeAhead:g,autoFocus:E?"first":!1}),collectionRef:P,filter:i!=null?O:void 0}}const ZI=typeof document<"u"?V.useInsertionEffect??V.useLayoutEffect:()=>{};function eo(t,e,n){let[r,i]=S.useState(t||e),s=S.useRef(r),a=S.useRef(t!==void 0),u=t!==void 0;S.useEffect(()=>{a.current,a.current=u},[u]);let c=u?t:r;ZI(()=>{s.current=c});let[,f]=S.useReducer(()=>({}),{}),h=S.useCallback((m,...g)=>{let b=typeof m=="function"?m(s.current):m;Object.is(s.current,b)||(s.current=b,i(b),f(),n?.(b,...g))},[n]);return[c,h]}function ej(t){let{onInputChange:e,inputValue:n,defaultInputValue:r=""}=t,i=f=>{e&&e(f)},[s,a]=S.useState(null),[u,c]=eo(n,r,i);return{inputValue:u,setInputValue:c,focusedNodeId:s,setFocusedNodeId:a}}const tj=S.createContext(null),nj=S.createContext(null),Vc=S.createContext(null),bm=S.createContext(null);function rj(t){let e=Vl(tj,t.slot);t=$e(e,t);let{filter:n,disableAutoFocusFirst:r}=t,i=ej(t),s=S.useRef(null),a=S.useRef(null),{inputProps:u,collectionProps:c,collectionRef:f,filter:h}=JI({...bw(t),filter:n,disableAutoFocusFirst:r,inputRef:s,collectionRef:a},i);return V.createElement(Pr,{values:[[nj,i],[bm,{...u,ref:s}],[Vc,{...c,filter:h,ref:f}]]},t.children)}class pa{constructor(e){this.value=null,this.level=0,this.hasChildNodes=!1,this.rendered=null,this.textValue="",this["aria-label"]=void 0,this.index=0,this.parentKey=null,this.prevKey=null,this.nextKey=null,this.firstChildKey=null,this.lastChildKey=null,this.props={},this.colSpan=null,this.colIndex=null,this.type=this.constructor.type,this.key=e}get childNodes(){throw new Error("childNodes is not supported")}clone(){let e=new this.constructor(this.key);return e.value=this.value,e.level=this.level,e.hasChildNodes=this.hasChildNodes,e.rendered=this.rendered,e.textValue=this.textValue,e["aria-label"]=this["aria-label"],e.index=this.index,e.parentKey=this.parentKey,e.prevKey=this.prevKey,e.nextKey=this.nextKey,e.firstChildKey=this.firstChildKey,e.lastChildKey=this.lastChildKey,e.props=this.props,e.render=this.render,e.colSpan=this.colSpan,e.colIndex=this.colIndex,e}filter(e,n,r){let i=this.clone();return n.addDescendants(i,e),i}}class y$ extends pa{filter(e,n,r){let[i,s]=x$(e,n,this.firstChildKey,r),a=this.clone();return a.firstChildKey=i,a.lastChildKey=s,a}}const a1=class a1 extends pa{};a1.type="header";let Wy=a1;const l1=class l1 extends pa{};l1.type="loader";let tp=l1;const u1=class u1 extends y${filter(e,n,r){if(r(this.textValue,this)){let i=this.clone();return n.addDescendants(i,e),i}return null}};u1.type="item";let np=u1;const c1=class c1 extends y${filter(e,n,r){let i=super.filter(e,n,r);if(i&&i.lastChildKey!==null){let s=e.getItem(i.lastChildKey);if(s&&s.type!=="header")return i}return null}};c1.type="section";let Qy=c1;class ij{get size(){return this.itemCount}getKeys(){return this.keyMap.keys()}*[Symbol.iterator](){let e=this.firstKey!=null?this.keyMap.get(this.firstKey):void 0;for(;e;)yield e,e=e.nextKey!=null?this.keyMap.get(e.nextKey):void 0}getChildren(e){let n=this.keyMap;return{*[Symbol.iterator](){let r=n.get(e),i=r?.firstChildKey!=null?n.get(r.firstChildKey):null;for(;i;)yield i,i=i.nextKey!=null?n.get(i.nextKey):void 0}}}getKeyBefore(e){let n=this.keyMap.get(e);if(!n)return null;if(n.prevKey!=null){for(n=this.keyMap.get(n.prevKey);n&&n.type!=="item"&&n.lastChildKey!=null;)n=this.keyMap.get(n.lastChildKey);return n?.key??null}return n.parentKey}getKeyAfter(e){let n=this.keyMap.get(e);if(!n)return null;if(n.type!=="item"&&n.firstChildKey!=null)return n.firstChildKey;for(;n;){if(n.nextKey!=null)return n.nextKey;if(n.parentKey!=null)n=this.keyMap.get(n.parentKey);else return null}return null}getFirstKey(){return this.firstKey}getLastKey(){let e=this.lastKey!=null?this.keyMap.get(this.lastKey):null;for(;e?.lastChildKey!=null;)e=this.keyMap.get(e.lastChildKey);return e?.key??null}getItem(e){return this.keyMap.get(e)??null}at(){throw new Error("Not implemented")}clone(){let e=this.constructor,n=new e;return n.keyMap=new Map(this.keyMap),n.firstKey=this.firstKey,n.lastKey=this.lastKey,n.itemCount=this.itemCount,n}addNode(e){if(this.frozen)throw new Error("Cannot add a node to a frozen collection");e.type==="item"&&this.keyMap.get(e.key)==null&&this.itemCount++,this.keyMap.set(e.key,e)}addDescendants(e,n){this.addNode(e);let r=n.getChildren(e.key);for(let i of r)this.addDescendants(i,n)}removeNode(e){if(this.frozen)throw new Error("Cannot remove a node to a frozen collection");let n=this.keyMap.get(e);n!=null&&n.type==="item"&&this.itemCount--,this.keyMap.delete(e)}commit(e,n,r=!1){if(this.frozen)throw new Error("Cannot commit a frozen collection");this.firstKey=e,this.lastKey=n,this.frozen=!r}filter(e){let n=new this.constructor,[r,i]=x$(this,n,this.firstKey,e);return n?.commit(r,i),n}constructor(){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.frozen=!1,this.itemCount=0}}function x$(t,e,n,r){if(n==null)return[null,null];let i=null,s=null,a=t.getItem(n);for(;a!=null;){let u=a.filter(t,e,r);u!=null&&(u.nextKey=null,s&&(u.prevKey=s.key,s.nextKey=u.key),i==null&&(i=u),e.addNode(u),s=u),a=a.nextKey!=null?t.getItem(a.nextKey):null}if(s&&s.type==="separator"){let u=s.prevKey;e.removeNode(s.key),u!=null?(s=e.getItem(u),s.nextKey=null):s=null}return[i?.key??null,s?.key??null]}class v${constructor(e){this._firstChild=null,this._lastChild=null,this._previousSibling=null,this._nextSibling=null,this._parentNode=null,this._minInvalidChildIndex=null,this.ownerDocument=e}*[Symbol.iterator](){let e=this.firstChild;for(;e;)yield e,e=e.nextSibling}get firstChild(){return this._firstChild}set firstChild(e){this._firstChild=e,this.ownerDocument.markDirty(this)}get lastChild(){return this._lastChild}set lastChild(e){this._lastChild=e,this.ownerDocument.markDirty(this)}get previousSibling(){return this._previousSibling}set previousSibling(e){this._previousSibling=e,this.ownerDocument.markDirty(this)}get nextSibling(){return this._nextSibling}set nextSibling(e){this._nextSibling=e,this.ownerDocument.markDirty(this)}get parentNode(){return this._parentNode}set parentNode(e){this._parentNode=e,this.ownerDocument.markDirty(this)}get isConnected(){return this.parentNode?.isConnected||!1}invalidateChildIndices(e){(this._minInvalidChildIndex==null||!this._minInvalidChildIndex.isConnected||e.index<this._minInvalidChildIndex.index)&&(this._minInvalidChildIndex=e,this.ownerDocument.markDirty(this))}updateChildIndices(){let e=this._minInvalidChildIndex;for(;e;)e.index=e.previousSibling?e.previousSibling.index+1:0,e=e.nextSibling;this._minInvalidChildIndex=null}appendChild(e){e.parentNode&&e.parentNode.removeChild(e),this.firstChild==null&&(this.firstChild=e),this.lastChild?(this.lastChild.nextSibling=e,e.index=this.lastChild.index+1,e.previousSibling=this.lastChild):(e.previousSibling=null,e.index=0),e.parentNode=this,e.nextSibling=null,this.lastChild=e,this.ownerDocument.markDirty(this),this.isConnected&&this.ownerDocument.queueUpdate()}insertBefore(e,n){if(n==null)return this.appendChild(e);e.parentNode&&e.parentNode.removeChild(e),e.nextSibling=n,e.previousSibling=n.previousSibling,e.index=n.index-1,this.firstChild===n?this.firstChild=e:n.previousSibling&&(n.previousSibling.nextSibling=e),n.previousSibling=e,e.parentNode=n.parentNode,this.invalidateChildIndices(e),this.isConnected&&this.ownerDocument.queueUpdate()}removeChild(e){e.parentNode===this&&(this._minInvalidChildIndex===e&&(this._minInvalidChildIndex=null),e.nextSibling&&(this.invalidateChildIndices(e.nextSibling),e.nextSibling.previousSibling=e.previousSibling),e.previousSibling&&(e.previousSibling.nextSibling=e.nextSibling),this.firstChild===e&&(this.firstChild=e.nextSibling),this.lastChild===e&&(this.lastChild=e.previousSibling),e.parentNode=null,e.nextSibling=null,e.previousSibling=null,e.index=0,this.ownerDocument.markDirty(e),this.isConnected&&this.ownerDocument.queueUpdate())}addEventListener(){}removeEventListener(){}get previousVisibleSibling(){let e=this.previousSibling;for(;e&&e.isHidden;)e=e.previousSibling;return e}get nextVisibleSibling(){let e=this.nextSibling;for(;e&&e.isHidden;)e=e.nextSibling;return e}get firstVisibleChild(){let e=this.firstChild;for(;e&&e.isHidden;)e=e.nextSibling;return e}get lastVisibleChild(){let e=this.lastChild;for(;e&&e.isHidden;)e=e.previousSibling;return e}}class wl extends v${constructor(e,n){super(n),this.nodeType=8,this.isMutated=!0,this._index=0,this.isHidden=!1,this.node=null}get index(){return this._index}set index(e){this._index=e,this.ownerDocument.markDirty(this)}get level(){return this.parentNode instanceof wl?this.parentNode.level+(this.parentNode.node?.type==="item"?1:0):0}getMutableNode(){return this.node==null?null:(this.isMutated||(this.node=this.node.clone(),this.isMutated=!0),this.ownerDocument.markDirty(this),this.node)}updateNode(){let e=this.nextVisibleSibling,n=this.getMutableNode();if(n!=null&&(n.index=this.index,n.level=this.level,n.parentKey=this.parentNode instanceof wl?this.parentNode.node?.key??null:null,n.prevKey=this.previousVisibleSibling?.node?.key??null,n.nextKey=e?.node?.key??null,n.hasChildNodes=!!this.firstChild,n.firstChildKey=this.firstVisibleChild?.node?.key??null,n.lastChildKey=this.lastVisibleChild?.node?.key??null,(n.colSpan!=null||n.colIndex!=null)&&e)){let r=(n.colIndex??n.index)+(n.colSpan??1);if(e.node!=null&&r!==e.node.colIndex){let i=e.getMutableNode();i.colIndex=r}}}setProps(e,n,r,i,s){let a,{value:u,textValue:c,id:f,...h}=e;if(this.node==null?(a=new r(f??`react-aria-${++this.ownerDocument.nodeId}`),this.node=a):a=this.getMutableNode(),h.ref=n,a.props=h,a.rendered=i,a.render=s,a.value=u,e["aria-label"]&&(a["aria-label"]=e["aria-label"]),a.textValue=c||(typeof h.children=="string"?h.children:"")||e["aria-label"]||"",f!=null&&f!==a.key)throw new Error("Cannot change the id of an item");h.colSpan!=null&&(a.colSpan=h.colSpan),this.isConnected&&this.ownerDocument.queueUpdate()}get style(){let e=this;return{get display(){return e.isHidden?"none":""},set display(n){let r=n==="none";if(e.isHidden!==r){(e.parentNode?.firstVisibleChild===e||e.parentNode?.lastVisibleChild===e)&&e.ownerDocument.markDirty(e.parentNode);let i=e.previousVisibleSibling,s=e.nextVisibleSibling;i&&e.ownerDocument.markDirty(i),s&&e.ownerDocument.markDirty(s),e.isHidden=r,e.ownerDocument.markDirty(e)}}}}hasAttribute(){}setAttribute(){}setAttributeNS(){}removeAttribute(){}}class sj extends v${constructor(e){super(null),this.nodeType=11,this.ownerDocument=this,this.dirtyNodes=new Set,this.isSSR=!1,this.nodeId=0,this.nodesByProps=new WeakMap,this.nextCollection=null,this.subscriptions=new Set,this.queuedRender=!1,this.inSubscription=!1,this.collection=e,this.nextCollection=e}get isConnected(){return!0}createElement(e){return new wl(e,this)}getMutableCollection(){return this.nextCollection||(this.nextCollection=this.collection.clone()),this.nextCollection}markDirty(e){this.dirtyNodes.add(e)}addNode(e){if(e.isHidden||e.node==null)return;let n=this.getMutableCollection();if(!n.getItem(e.node.key))for(let r of e)this.addNode(r);n.addNode(e.node)}removeNode(e){for(let n of e)this.removeNode(n);e.node&&this.getMutableCollection().removeNode(e.node.key)}getCollection(){return this.inSubscription?this.collection:(this.queuedRender=!1,this.updateCollection(),this.collection)}updateCollection(){for(let e of this.dirtyNodes)e instanceof wl&&(!e.isConnected||e.isHidden)?this.removeNode(e):e.updateChildIndices();for(let e of this.dirtyNodes)e instanceof wl?(e.isConnected&&!e.isHidden&&(e.updateNode(),this.addNode(e)),e.node&&this.dirtyNodes.delete(e),e.isMutated=!1):this.dirtyNodes.delete(e);this.nextCollection&&(this.nextCollection.commit(this.firstVisibleChild?.node?.key??null,this.lastVisibleChild?.node?.key??null,this.isSSR),this.isSSR||(this.collection=this.nextCollection,this.nextCollection=null))}queueUpdate(){if(!(this.dirtyNodes.size===0||this.queuedRender)){this.queuedRender=!0,this.inSubscription=!0,this.isSSR||(this.collection=this.collection.clone());for(let e of this.subscriptions)e();this.inSubscription=!1}}subscribe(e){return this.subscriptions.add(e),()=>this.subscriptions.delete(e)}resetAfterSSR(){this.isSSR&&(this.isSSR=!1,this.firstChild=null,this.lastChild=null,this.nodeId=0)}}function k$(t){let{children:e,items:n,idScope:r,addIdAndValue:i,dependencies:s=[]}=t,a=S.useMemo(()=>{},[e]),u=S.useMemo(()=>new WeakMap,[...s,a]);return S.useMemo(()=>{if(n&&typeof e=="function"){let c=[];for(let f of n){let h=oj(f)?f:null,m=h?u.get(h):null;if(!m){m=e(f);let g=m.props.id??f?.key??f?.id;r!=null&&m.props.id==null&&g!=null&&(g=r+":"+g);let b=g??c.length;m=S.cloneElement(m,i?{key:b,id:g,value:f}:{key:b}),h&&u.set(h,m)}c.push(m)}return c}else if(typeof e!="function")return e},[e,n,u,r,i])}function oj(t){switch(typeof t){case"object":return t!=null;case"function":case"symbol":return!0;default:return!1}}let ws=new Map,Yy=new Set;function c2(){if(typeof window>"u")return;function t(r){return"propertyName"in r}let e=r=>{let i=de(r);if(!t(r)||!i)return;let s=ws.get(i);s||(s=new Set,ws.set(i,s),i.addEventListener("transitioncancel",n,{once:!0})),s.add(r.propertyName)},n=r=>{let i=de(r);if(!t(r)||!i)return;let s=ws.get(i);if(s&&(s.delete(r.propertyName),s.size===0&&(i.removeEventListener("transitioncancel",n),ws.delete(i)),ws.size===0)){for(let a of Yy)a();Yy.clear()}};document.body.addEventListener("transitionrun",e),document.body.addEventListener("transitionend",n)}typeof document<"u"&&(document.readyState!=="loading"?c2():document.addEventListener("DOMContentLoaded",c2));function aj(){for(const[t]of ws)"isConnected"in t&&!t.isConnected&&ws.delete(t)}function C$(t){requestAnimationFrame(()=>{aj(),ws.size===0?t():Yy.add(t)})}function xn(t){if(!t.isConnected)return;const e=Ie(t);if(ia()==="virtual"){let n=_e(e);C$(()=>{const r=_e(e);(r===n||r===e.body)&&t.isConnected&&Rr(t)})}else Rr(t)}function E$(t){let{isDisabled:e,onFocus:n,onBlur:r,onFocusChange:i}=t;const s=S.useCallback(c=>{if(de(c)===c.currentTarget)return r&&r(c),i&&i(!1),!0},[r,i]),a=Ew(s),u=S.useCallback(c=>{let f=de(c);const h=Ie(f),m=h?_e(h):_e();f===c.currentTarget&&f===m&&(n&&n(c),i&&i(!0),a(c))},[i,n,a]);return{focusProps:{onFocus:!e&&(n||i||r)?u:void 0,onBlur:!e&&(r||i)?s:void 0}}}function d2(t){if(!t)return;let e=!0;return n=>{let r={...n,preventDefault(){n.preventDefault()},isDefaultPrevented(){return n.isDefaultPrevented()},stopPropagation(){e=!0},continuePropagation(){e=!1,typeof n.continuePropagation=="function"&&n.continuePropagation()},isPropagationStopped(){return e}};t(r),e&&n.stopPropagation()}}function D$(t){return{keyboardProps:t.isDisabled?{}:{onKeyDown:d2(t.onKeyDown),onKeyUp:d2(t.onKeyUp)}}}function B3(t,e){ze(()=>{if(t&&t.ref&&e)return t.ref.current=e.current,()=>{t.ref&&(t.ref.current=null)}})}let Xy=V.createContext(null);function lj(t){let e=S.useContext(Xy)||{};B3(e,t);let{ref:n,...r}=e;return r}function ym(t,e){let{focusProps:n}=E$(t),{keyboardProps:r}=D$(t),i=$e(n,r),s=lj(e),a=t.isDisabled?{}:s,u=S.useRef(t.autoFocus);S.useEffect(()=>{u.current&&e.current&&xn(e.current),u.current=!1},[e]);let c=t.excludeFromTabOrder?-1:0;return t.isDisabled&&(c=void 0),{focusableProps:$e({...i,tabIndex:c},a)}}typeof HTMLTemplateElement<"u"&&(Object.defineProperty(HTMLTemplateElement.prototype,"firstChild",{configurable:!0,enumerable:!0,get:function(){return this.content.firstChild}}),Object.defineProperty(HTMLTemplateElement.prototype,"appendChild",{configurable:!0,enumerable:!0,value:function(t){return this.content.appendChild(t)}}),Object.defineProperty(HTMLTemplateElement.prototype,"removeChild",{configurable:!0,enumerable:!0,value:function(t){return this.content.removeChild(t)}}),Object.defineProperty(HTMLTemplateElement.prototype,"insertBefore",{configurable:!0,enumerable:!0,value:function(t,e){return this.content.insertBefore(t,e)}}));const rp=S.createContext(!1);function uj(t){if(S.useContext(rp))return V.createElement(V.Fragment,null,t.children);let n=V.createElement(rp.Provider,{value:!0},t.children);return V.createElement("template",null,n)}function xm(t){let e=(n,r)=>S.useContext(rp)?null:t(n,r);return e.displayName=t.displayName||t.name,S.forwardRef(e)}function S$(){return S.useContext(rp)}var M3=sw();const w$=S.createContext(!1),Hc=S.createContext(null);function R3(t){if(S.useContext(Hc))return t.content;let{collection:n,document:r}=hj(t.createCollection);return V.createElement(V.Fragment,null,V.createElement(uj,null,V.createElement(Hc.Provider,{value:r},t.content)),V.createElement(cj,{render:t.children,collection:n}))}function cj({collection:t,render:e}){return e(t)}function dj(t,e,n){let r=Js(),i=S.useRef(r);i.current=r;let s=S.useCallback(()=>i.current?n():e(),[e,n]);return M3.useSyncExternalStore(t,s)}const fj=typeof V.useSyncExternalStore=="function"?V.useSyncExternalStore:dj;function hj(t){let[e]=S.useState(()=>new sj(t?.()||new ij)),n=S.useCallback(a=>e.subscribe(a),[e]),r=S.useCallback(()=>{let a=e.getCollection();return e.isSSR&&e.resetAfterSSR(),a},[e]),i=S.useCallback(()=>(e.isSSR=!0,e.getCollection()),[e]);return{collection:fj(n,r,i),document:e}}const Jy=S.createContext(null);function pj(t){var n;return n=class extends pa{},n.type=t,n}function $$(t,e,n,r,i,s){typeof t=="string"&&(t=pj(t));let a=S.useCallback(c=>{c?.setProps(e,n,t,r,s)},[e,n,r,s,t]),u=S.useContext(Jy);if(u){let c=u.ownerDocument.nodesByProps.get(e);return c||(c=u.ownerDocument.createElement(t.type),c.setProps(e,n,t,r,s),u.appendChild(c),u.ownerDocument.updateCollection(),u.ownerDocument.nodesByProps.set(e,c)),i?V.createElement(Jy.Provider,{value:c},i):null}return V.createElement(t.type,{ref:a},i)}function ma(t,e){let n=({node:i})=>e(i.props,i.props.ref,i),r=S.forwardRef((i,s)=>{let a=S.useContext(Xy);if(!S.useContext(w$)){if(e.length>=3)throw new Error(e.name+" cannot be rendered outside a collection.");return e(i,s)}return $$(t,i,s,"children"in i?i.children:null,null,c=>V.createElement(Xy.Provider,{value:a},V.createElement(n,{node:c})))});return r.displayName=e.name,r}function mj(t,e,n=T$){let r=({node:s})=>e(s.props,s.props.ref,s),i=S.forwardRef((s,a)=>{let u=n(s);return $$(t,s,a,null,u,c=>V.createElement(r,{node:c}))??V.createElement(V.Fragment,null)});return i.displayName=e.name,i}function T$(t){return k$({...t,addIdAndValue:!0})}const f2=S.createContext(null);function vm(t){let e=S.useContext(f2),n=(e?.dependencies||[]).concat(t.dependencies),r=t.idScope??e?.idScope,i=T$({...t,idScope:r,dependencies:n});return S.useContext(Hc)&&(i=V.createElement(gj,null,i)),e=S.useMemo(()=>({dependencies:n,idScope:r}),[r,...n]),V.createElement(f2.Provider,{value:e},i)}function gj({children:t}){let e=S.useContext(Hc),n=S.useMemo(()=>V.createElement(Hc.Provider,{value:null},V.createElement(w$.Provider,{value:!0},t)),[t]);return Js()?V.createElement(Jy.Provider,{value:e},n):ha.createPortal(n,e)}const bj=S.createContext(null),A$={CollectionRoot({collection:t,renderDropIndicator:e}){return h2(t,null,e)},CollectionBranch({collection:t,parent:e,renderDropIndicator:n}){return h2(t,e,n)}};function h2(t,e,n){return k$({items:e?t.getChildren(e.key):t,dependencies:[n],children(r){if(r.type==="content")return V.createElement(V.Fragment,null);let i=r.render(r);return!n||r.type!=="item"?i:V.createElement(V.Fragment,null,n({type:"item",key:r.key,dropPosition:"before"}),i,yj(t,r,n))}})}function yj(t,e,n){let r=e.key,i=t.getKeyAfter(r),s=i!=null?t.getItem(i):null;for(;s!=null&&s.type!=="item";)i=t.getKeyAfter(s.key),s=i!=null?t.getItem(i):null;let a=e.nextKey!=null?t.getItem(e.nextKey):null;for(;a!=null&&a.type!=="item";)a=a.nextKey!=null?t.getItem(a.nextKey):null;let u=[];if(a==null){let c=e;for(;c?.type==="item"&&(!s||c.parentKey!==s.parentKey&&s.level<c.level);){let f=n({type:"item",key:c.key,dropPosition:"after"});S.isValidElement(f)&&u.push(S.cloneElement(f,{key:`${c.key}-after`})),c=c.parentKey!=null?t.getItem(c.parentKey):null}}return u}const Hs=S.createContext(A$);function xj(t){return S.useMemo(()=>t!=null?new Set([t]):null,[t])}const vj=new Set(["id"]),kj=new Set(["aria-label","aria-labelledby","aria-describedby","aria-details"]),Cj=new Set(["href","hrefLang","target","rel","download","ping","referrerPolicy"]),Ej=new Set(["dir","lang","hidden","inert","translate"]),p2=new Set(["onClick","onAuxClick","onContextMenu","onDoubleClick","onMouseDown","onMouseEnter","onMouseLeave","onMouseMove","onMouseOut","onMouseOver","onMouseUp","onTouchCancel","onTouchEnd","onTouchMove","onTouchStart","onPointerDown","onPointerMove","onPointerUp","onPointerCancel","onPointerEnter","onPointerLeave","onPointerOver","onPointerOut","onGotPointerCapture","onLostPointerCapture","onScroll","onWheel","onAnimationStart","onAnimationEnd","onAnimationIteration","onTransitionCancel","onTransitionEnd","onTransitionRun","onTransitionStart"]),Dj=/^(data-.*)$/;function Ze(t,e={}){let{labelable:n,isLink:r,global:i,events:s=i,propNames:a}=e,u={};for(const c in t)Object.prototype.hasOwnProperty.call(t,c)&&(vj.has(c)||n&&kj.has(c)||r&&Cj.has(c)||i&&Ej.has(c)||s&&(p2.has(c)||c.endsWith("Capture")&&p2.has(c.slice(0,-7)))||a?.has(c)||Dj.test(c))&&(u[c]=t[c]);return u}let Cl="default",Zy="",Nh=new WeakMap;function Sj(t){if(Oi()){if(Cl==="default"){const e=Ie(t);Zy=e.documentElement.style.webkitUserSelect,e.documentElement.style.webkitUserSelect="none"}Cl="disabled"}else if(t instanceof HTMLElement||t instanceof SVGElement){let e="userSelect"in t.style?"userSelect":"webkitUserSelect";Nh.set(t,t.style[e]),t.style[e]="none"}}function m2(t){if(Oi()){if(Cl!=="disabled")return;Cl="restoring",setTimeout(()=>{C$(()=>{if(Cl==="restoring"){const e=Ie(t);e.documentElement.style.webkitUserSelect==="none"&&(e.documentElement.style.webkitUserSelect=Zy||""),Zy="",Cl="default"}})},300)}else if((t instanceof HTMLElement||t instanceof SVGElement)&&t&&Nh.has(t)){let e=Nh.get(t),n="userSelect"in t.style?"userSelect":"webkitUserSelect";t.style[n]==="none"&&(t.style[n]=e),t.getAttribute("style")===""&&t.removeAttribute("style"),Nh.delete(t)}}function g2(t){return t?.defaultView?.__webpack_nonce__||globalThis.__webpack_nonce__||void 0}let B0=new WeakMap;function B$(t){let e=t??(typeof document<"u"?document:void 0);if(!e)return g2(e);if(B0.has(e))return B0.get(e);let n=e.querySelector('meta[property="csp-nonce"]'),r=n&&n instanceof pn(n).HTMLMetaElement&&(n.nonce||n.content)||g2(e)||void 0;return r!==void 0&&B0.set(e,r),r}const Uc=V.createContext({register:()=>{}});Uc.displayName="PressResponderContext";function pd(){let t=S.useRef(new Map),e=S.useCallback((i,s,a,u)=>{let c=u?.once?(...f)=>{t.current.delete(a),a(...f)}:a;t.current.set(a,{type:s,eventTarget:i,fn:c,options:u}),i.addEventListener(s,c,u)},[]),n=S.useCallback((i,s,a,u)=>{let c=t.current.get(a)?.fn||a;i.removeEventListener(s,c,u),t.current.delete(a)},[]),r=S.useCallback(()=>{t.current.forEach((i,s)=>{n(i.eventTarget,i.type,s,i.options)})},[n]);return S.useEffect(()=>r,[r]),{addGlobalListener:e,removeGlobalListener:n,removeAllGlobalListeners:r}}function wj(t){let e=S.useContext(Uc);if(e){let{register:n,ref:r,...i}=e;t=$e(i,t),n()}return B3(e,t.ref),t}class th{#e;constructor(e,n,r,i){this.#e=!0;const a=(i?.target??r.currentTarget)?.getBoundingClientRect();let u,c=0,f,h=null;r.clientX!=null&&r.clientY!=null&&(f=r.clientX,h=r.clientY),a&&(f!=null&&h!=null?(u=f-a.left,c=h-a.top):(u=a.width/2,c=a.height/2)),this.type=e,this.pointerType=n,this.target=r.currentTarget,this.shiftKey=r.shiftKey,this.metaKey=r.metaKey,this.ctrlKey=r.ctrlKey,this.altKey=r.altKey,this.x=u,this.y=c,this.key=r.key}continuePropagation(){this.#e=!1}get shouldStopPropagation(){return this.#e}}const b2=Symbol("linkClicked"),y2="react-aria-pressable-style",x2="data-react-aria-pressable";function md(t){let{onPress:e,onPressChange:n,onPressStart:r,onPressEnd:i,onPressUp:s,onClick:a,isDisabled:u,isPressed:c,preventFocusOnPress:f,shouldCancelOnPointerExit:h,allowTextSelectionOnPress:m,ref:g,...b}=wj(t),[x,k]=S.useState(!1),E=S.useRef({isPressed:!1,ignoreEmulatedMouseEvents:!1,didFirePressStart:!1,isTriggeringEvent:!1,activePointerId:null,target:null,isOverTarget:!1,pointerType:null,disposables:[]}),{addGlobalListener:D,removeAllGlobalListeners:T}=pd(),$=S.useCallback((F,te)=>{let O=E.current;if(u||O.didFirePressStart)return!1;let K=!0;if(O.isTriggeringEvent=!0,r){let Q=new th("pressstart",te,F);r(Q),K=Q.shouldStopPropagation}return n&&n(!0),O.isTriggeringEvent=!1,O.didFirePressStart=!0,k(!0),K},[u,r,n]),A=S.useCallback((F,te,O=!0)=>{let K=E.current;if(!K.didFirePressStart)return!1;K.didFirePressStart=!1,K.isTriggeringEvent=!0;let Q=!0;if(i){let Z=new th("pressend",te,F);i(Z),Q=Z.shouldStopPropagation}if(n&&n(!1),k(!1),e&&O&&!u){let Z=new th("press",te,F);e(Z),Q&&=Z.shouldStopPropagation}return K.isTriggeringEvent=!1,Q},[u,i,n,e]),B=Pt(A),P=S.useCallback((F,te)=>{let O=E.current;if(u)return!1;if(s){O.isTriggeringEvent=!0;let K=new th("pressup",te,F);return s(K),O.isTriggeringEvent=!1,K.shouldStopPropagation}return!0},[u,s]),M=Pt(P),N=S.useCallback(F=>{let te=E.current;if(te.isPressed&&te.target){te.didFirePressStart&&te.pointerType!=null&&A($o(te.target,F),te.pointerType,!1),te.isPressed=!1,te.isOverTarget=!1,te.activePointerId=null,te.pointerType=null,T(),m||m2(te.target);for(let O of te.disposables)O();te.disposables=[]}},[m,T,A]),j=Pt(N);S.useEffect(()=>{u&&E.current.isPressed&&j({currentTarget:E.current.target,shiftKey:!1,ctrlKey:!1,metaKey:!1,altKey:!1})},[u]);let G=S.useCallback(F=>{h&&N(F)},[h,N]),W=S.useCallback(F=>{u||a?.(F)},[u,a]),U=S.useCallback((F,te)=>{if(!u&&a){let O=new MouseEvent("click",F);Cw(O,te),a(D3(O))}},[u,a]),ne=S.useMemo(()=>{let F=E.current,te={onKeyDown(K){if(M0(K.nativeEvent,K.currentTarget)&&we(K.currentTarget,de(K))){v2(de(K),K.key)&&K.preventDefault();let Q=!0;!F.isPressed&&!K.repeat&&(F.target=K.currentTarget,F.isPressed=!0,F.pointerType="keyboard",Q=$(K,"keyboard"));let Z=K.currentTarget,L=z=>{M0(z,Z)&&!z.repeat&&we(Z,de(z))&&F.target&&M($o(F.target,z),"keyboard")};D(Ie(K.currentTarget),"keyup",Xs(L,O),!0),Q&&K.stopPropagation(),K.metaKey&&Vs()&&F.metaKeyEvents?.set(K.key,K.nativeEvent)}else K.key==="Meta"&&(F.metaKeyEvents=new Map)},onClick(K){if(!(K&&!we(K.currentTarget,de(K)))&&K&&K.button===0&&!F.isTriggeringEvent&&!Yr.isOpening){let Q=!0;if(u&&K.preventDefault(),!F.ignoreEmulatedMouseEvents&&!F.isPressed&&(F.pointerType==="virtual"||pm(K.nativeEvent))){let Z=$(K,"virtual"),L=M(K,"virtual"),z=B(K,"virtual");W(K),Q=Z&&L&&z}else if(F.isPressed&&F.pointerType!=="keyboard"){let Z=F.pointerType||K.nativeEvent.pointerType||"virtual",L=M($o(K.currentTarget,K),Z),z=B($o(K.currentTarget,K),Z,!0);Q=L&&z,F.isOverTarget=!1,W(K),j(K)}F.ignoreEmulatedMouseEvents=!1,Q&&K.stopPropagation()}}},O=K=>{if(F.isPressed&&F.target&&M0(K,F.target)){v2(de(K),K.key)&&K.preventDefault();let Q=de(K),Z=we(F.target,Q);B($o(F.target,K),"keyboard",Z),Z&&U(K,F.target),T(),K.key!=="Enter"&&N3(F.target)&&we(F.target,Q)&&!K[b2]&&(K[b2]=!0,Yr(F.target,K,!1)),F.isPressed=!1,F.metaKeyEvents?.delete(K.key)}else if(K.key==="Meta"&&F.metaKeyEvents?.size){let Q=F.metaKeyEvents;F.metaKeyEvents=void 0;for(let Z of Q.values())F.target?.dispatchEvent(new KeyboardEvent("keyup",Z))}};if(typeof PointerEvent<"u"){te.onPointerDown=Z=>{if(Z.button!==0||!we(Z.currentTarget,de(Z)))return;if(T3(Z.nativeEvent)){F.pointerType="virtual";return}F.pointerType=Z.pointerType;let L=!0;if(!F.isPressed){F.isPressed=!0,F.isOverTarget=!0,F.activePointerId=Z.pointerId,F.target=Z.currentTarget,m||Sj(F.target),L=$(Z,F.pointerType);let z=de(Z);"releasePointerCapture"in z&&("hasPointerCapture"in z?z.hasPointerCapture(Z.pointerId)&&z.releasePointerCapture(Z.pointerId):z.releasePointerCapture(Z.pointerId)),D(Ie(Z.currentTarget),"pointerup",K,!1),D(Ie(Z.currentTarget),"pointercancel",Q,!1)}L&&Z.stopPropagation()},te.onMouseDown=Z=>{if(we(Z.currentTarget,de(Z))&&Z.button===0){if(f){let L=EI(Z.target);L&&F.disposables.push(L)}Z.stopPropagation()}},te.onPointerUp=Z=>{!we(Z.currentTarget,de(Z))||F.pointerType==="virtual"||Z.button===0&&!F.isPressed&&M(Z,F.pointerType||Z.pointerType)},te.onPointerEnter=Z=>{Z.pointerId===F.activePointerId&&F.target&&!F.isOverTarget&&F.pointerType!=null&&(F.isOverTarget=!0,$($o(F.target,Z),F.pointerType))},te.onPointerLeave=Z=>{Z.pointerId===F.activePointerId&&F.target&&F.isOverTarget&&F.pointerType!=null&&(F.isOverTarget=!1,B($o(F.target,Z),F.pointerType,!1),G(Z))};let K=Z=>{if(Z.pointerId===F.activePointerId&&F.isPressed&&Z.button===0&&F.target){if(we(F.target,de(Z))&&F.pointerType!=null){let L=!1,z=setTimeout(()=>{F.isPressed&&F.target instanceof HTMLElement&&(L?j(Z):(Rr(F.target),F.target.click()))},80);D(Z.currentTarget,"click",()=>L=!0,!0),F.disposables.push(()=>clearTimeout(z))}else j(Z);F.isOverTarget=!1}},Q=Z=>{j(Z)};te.onDragStart=Z=>{we(Z.currentTarget,de(Z))&&j(Z)}}return te},[D,u,f,T,m,G,$,W,U]);return S.useEffect(()=>{if(!g)return;const F=Ie(g.current);if(!F||!F.head||F.getElementById(y2))return;const te=F.createElement("style");te.id=y2;let O=B$(F);O&&(te.nonce=O),te.textContent=`
10
+ @layer {
11
+ [${x2}] {
12
+ touch-action: pan-x pan-y pinch-zoom;
13
+ }
14
+ }
15
+ `.trim(),F.head.prepend(te)},[g]),S.useEffect(()=>{let F=E.current;return()=>{m||m2(F.target??void 0);for(let te of F.disposables)te();F.disposables=[]}},[m]),{isPressed:c||x,pressProps:$e(b,ne,{[x2]:!0})}}function N3(t){return t.tagName==="A"&&t.hasAttribute("href")}function M0(t,e){const{key:n,code:r}=t,i=e,s=i.getAttribute("role");return(n==="Enter"||n===" "||n==="Spacebar"||r==="Space")&&!(i instanceof pn(i).HTMLInputElement&&!M$(i,n)||i instanceof pn(i).HTMLTextAreaElement||i.isContentEditable)&&!((s==="link"||!s&&N3(i))&&n!=="Enter")}function $o(t,e){let n=e.clientX,r=e.clientY;return{currentTarget:t,shiftKey:e.shiftKey,ctrlKey:e.ctrlKey,metaKey:e.metaKey,altKey:e.altKey,clientX:n,clientY:r,key:e.key}}function $j(t){return t instanceof HTMLInputElement?!1:t instanceof HTMLButtonElement?t.type!=="submit"&&t.type!=="reset":!N3(t)}function v2(t,e){return t instanceof HTMLInputElement?!M$(t,e):$j(t)}const Tj=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);function M$(t,e){return t.type==="checkbox"||t.type==="radio"?e===" ":Tj.has(t.type)}function Aj(t,e){let{elementType:n="a",onPress:r,onPressStart:i,onPressEnd:s,onClick:a,isDisabled:u,...c}=t,f={};n!=="a"&&(f={role:"link",tabIndex:u?void 0:0});let{focusableProps:h}=ym(t,e),{pressProps:m,isPressed:g}=md({onPress:r,onPressStart:i,onPressEnd:s,onClick:a,isDisabled:u,ref:e}),b=Ze(c,{labelable:!0}),x=$e(h,m),k=Hl(),E=Tw(t);return{isPressed:g,linkProps:$e(b,E,{...x,...f,"aria-disabled":u||void 0,"aria-current":t["aria-current"],onClick:D=>{m.onClick?.(D),Aw(D,k,t.href,t.routerOptions)}})}}function P3(t){let{isDisabled:e,onBlurWithin:n,onFocusWithin:r,onFocusWithinChange:i}=t,s=S.useRef({isFocusWithin:!1}),{addGlobalListener:a,removeAllGlobalListeners:u}=pd(),c=S.useCallback(m=>{we(m.currentTarget,de(m))&&s.current.isFocusWithin&&!we(m.currentTarget,m.relatedTarget)&&(s.current.isFocusWithin=!1,u(),n&&n(m),i&&i(!1))},[n,i,s,u]),f=Ew(c),h=S.useCallback(m=>{if(!we(m.currentTarget,de(m)))return;let g=de(m);const b=Ie(g),x=_e(b);if(!s.current.isFocusWithin&&x===g){r&&r(m),i&&i(!0),s.current.isFocusWithin=!0,f(m);let k=m.currentTarget;a(b,"focus",E=>{let D=de(E);if(s.current.isFocusWithin&&!we(k,D)){let T=new b.defaultView.FocusEvent("blur",{relatedTarget:D});Cw(T,k);let $=D3(T);c($)}},{capture:!0})}},[r,i,f,a,c]);return e?{focusWithinProps:{onFocus:void 0,onBlur:void 0}}:{focusWithinProps:{onFocus:h,onBlur:c}}}function zi(t={}){let{autoFocus:e=!1,isTextInput:n,within:r}=t,i=S.useRef({isFocused:!1,isFocusVisible:e||Nl()}),[s,a]=S.useState(!1),[u,c]=S.useState(()=>i.current.isFocused&&i.current.isFocusVisible),f=S.useCallback(()=>c(i.current.isFocused&&i.current.isFocusVisible),[]),h=S.useCallback(b=>{i.current.isFocused=b,i.current.isFocusVisible=Nl(),a(b),f()},[f]);LI(b=>{i.current.isFocusVisible=b,f()},[n,s],{enabled:s,isTextInput:n});let{focusProps:m}=E$({isDisabled:r,onFocusChange:h}),{focusWithinProps:g}=P3({isDisabled:!r,onFocusWithinChange:h});return{isFocused:s,isFocusVisible:u,focusProps:r?g:m}}let e4=!1,nh=0;function Bj(){e4=!0,setTimeout(()=>{e4=!1},500)}function k2(t){t.pointerType==="touch"&&Bj()}function Mj(){let t=Ie(null);if(!(typeof t>"u"))return nh===0&&typeof PointerEvent<"u"&&t.addEventListener("pointerup",k2),nh++,()=>{nh--,!(nh>0)&&typeof PointerEvent<"u"&&t.removeEventListener("pointerup",k2)}}function _i(t){let{onHoverStart:e,onHoverChange:n,onHoverEnd:r,isDisabled:i}=t,[s,a]=S.useState(!1),u=S.useRef({isHovered:!1,ignoreEmulatedMouseEvents:!1,pointerType:"",target:null}).current;S.useEffect(Mj,[]);let{addGlobalListener:c,removeAllGlobalListeners:f}=pd(),{hoverProps:h,triggerHoverEnd:m}=S.useMemo(()=>{let g=(k,E)=>{if(u.pointerType=E,i||E==="touch"||u.isHovered||!we(k.currentTarget,de(k)))return;u.isHovered=!0;let D=k.currentTarget;u.target=D,c(Ie(de(k)),"pointerover",T=>{u.isHovered&&u.target&&!we(u.target,de(T))&&b(T,T.pointerType)},{capture:!0}),e&&e({type:"hoverstart",target:D,pointerType:E}),n&&n(!0),a(!0)},b=(k,E)=>{let D=u.target;u.pointerType="",u.target=null,!(E==="touch"||!u.isHovered||!D)&&(u.isHovered=!1,f(),r&&r({type:"hoverend",target:D,pointerType:E}),n&&n(!1),a(!1))},x={};return typeof PointerEvent<"u"&&(x.onPointerEnter=k=>{e4&&k.pointerType==="mouse"||g(k,k.pointerType)},x.onPointerLeave=k=>{!i&&we(k.currentTarget,de(k))&&b(k,k.pointerType)}),{hoverProps:x,triggerHoverEnd:b}},[e,n,r,i,u,c,f]);return S.useEffect(()=>{i&&m({currentTarget:u.target},u.pointerType)},[i]),{hoverProps:h,isHovered:s}}const R$=S.createContext(null),O3=S.forwardRef(function(e,n){[e,n]=Ct(e,n,R$);let r=e.href&&!e.isDisabled?"a":"span",{linkProps:i,isPressed:s}=Aj({...e,elementType:r},n),a=ot[r],{hoverProps:u,isHovered:c}=_i(e),{focusProps:f,isFocused:h,isFocusVisible:m}=zi(),g=wt({...e,defaultClassName:"react-aria-Link",values:{isCurrent:!!e["aria-current"],isDisabled:e.isDisabled||!1,isPressed:s,isHovered:c,isFocused:h,isFocusVisible:m}}),b=Ze(e,{global:!0});return delete b.onClick,V.createElement(a,{ref:n,slot:e.slot||void 0,...$e(b,g,i,u,f),"data-focused":h||void 0,"data-hovered":c||void 0,"data-pressed":s||void 0,"data-focus-visible":m||void 0,"data-current":!!e["aria-current"]||void 0,"data-disabled":e.isDisabled||void 0},g.children)});var N$={};N$={breadcrumbs:"عناصر الواجهة"};var P$={};P$={breadcrumbs:"Трохи хляб"};var O$={};O$={breadcrumbs:"Popis cesty"};var L$={};L$={breadcrumbs:"Brødkrummer"};var z$={};z$={breadcrumbs:"Breadcrumbs"};var I$={};I$={breadcrumbs:"Πλοηγήσεις breadcrumb"};var j$={};j$={breadcrumbs:"Breadcrumbs"};var F$={};F$={breadcrumbs:"Migas de pan"};var K$={};K$={breadcrumbs:"Lingiread"};var _$={};_$={breadcrumbs:"Navigointilinkit"};var V$={};V$={breadcrumbs:"Chemin de navigation"};var H$={};H$={breadcrumbs:"שבילי ניווט"};var U$={};U$={breadcrumbs:"Navigacijski putovi"};var q$={};q$={breadcrumbs:"Morzsamenü"};var G$={};G$={breadcrumbs:"Breadcrumb"};var W$={};W$={breadcrumbs:"パンくずリスト"};var Q$={};Q$={breadcrumbs:"탐색 표시"};var Y$={};Y$={breadcrumbs:"Naršymo kelias"};var X$={};X$={breadcrumbs:"Atpakaļceļi"};var J$={};J$={breadcrumbs:"Navigasjonsstier"};var Z$={};Z$={breadcrumbs:"Broodkruimels"};var e6={};e6={breadcrumbs:"Struktura nawigacyjna"};var t6={};t6={breadcrumbs:"Caminho detalhado"};var n6={};n6={breadcrumbs:"Categorias"};var r6={};r6={breadcrumbs:"Miez de pâine"};var i6={};i6={breadcrumbs:"Навигация"};var s6={};s6={breadcrumbs:"Navigačné prvky Breadcrumbs"};var o6={};o6={breadcrumbs:"Drobtine"};var a6={};a6={breadcrumbs:"Putanje navigacije"};var l6={};l6={breadcrumbs:"Sökvägar"};var u6={};u6={breadcrumbs:"İçerik haritaları"};var c6={};c6={breadcrumbs:"Навігаційна стежка"};var d6={};d6={breadcrumbs:"导航栏"};var f6={};f6={breadcrumbs:"導覽列"};var h6={};h6={"ar-AE":N$,"bg-BG":P$,"cs-CZ":O$,"da-DK":L$,"de-DE":z$,"el-GR":I$,"en-US":j$,"es-ES":F$,"et-EE":K$,"fi-FI":_$,"fr-FR":V$,"he-IL":H$,"hr-HR":U$,"hu-HU":q$,"it-IT":G$,"ja-JP":W$,"ko-KR":Q$,"lt-LT":Y$,"lv-LV":X$,"nb-NO":J$,"nl-NL":Z$,"pl-PL":e6,"pt-BR":t6,"pt-PT":n6,"ro-RO":r6,"ru-RU":i6,"sk-SK":s6,"sl-SI":o6,"sr-SP":a6,"sv-SE":l6,"tr-TR":u6,"uk-UA":c6,"zh-CN":d6,"zh-TW":f6};function Rj(t){return t&&t.__esModule?t.default:t}function Nj(t){let{"aria-label":e,...n}=t,r=yr(Rj(h6),"@react-aria/breadcrumbs");return{navProps:{...Ze(n,{labelable:!0}),"aria-label":e||r.format("breadcrumbs")}}}const t4=S.createContext(null),Pj=S.forwardRef(function(e,n){[e,n]=Ct(e,n,t4);let{CollectionRoot:r}=S.useContext(Hs),{navProps:i}=Nj(e),s=Ze(e,{global:!0,labelable:!0});return V.createElement(R3,{content:V.createElement(vm,e)},a=>V.createElement(ot.ol,{render:e.render,ref:n,...$e(s,i),slot:e.slot||void 0,style:e.style,className:e.className??"react-aria-Breadcrumbs"},V.createElement(t4.Provider,{value:e},V.createElement(r,{collection:a}))))}),d1=class d1 extends pa{};d1.type="item";let n4=d1;const Oj=ma(n4,function(e,n,r){let i=r.nextKey==null,{isDisabled:s,onAction:a}=Vl(t4),u={"aria-current":i?"page":null,isDisabled:s||i,onPress:()=>a?.(r.key)},c=wt({...r.props,children:r.rendered,values:{isDisabled:s||i,isCurrent:i},defaultClassName:"react-aria-Breadcrumb"}),f=Ze(e,{global:!0,labelable:!0});return delete f.id,V.createElement(ot.li,{...f,...c,ref:n,"data-disabled":s||i||void 0,"data-current":i||void 0},V.createElement(R$.Provider,{value:u},c.children))}),L3=S.createContext({}),Lj=xm(function(e,n){[e,n]=Ct(e,n,L3);let{elementType:r="label",...i}=e,s=ot[r];return V.createElement(s,{className:"react-aria-Label",...i,ref:n})});function zj(t){let{id:e,label:n,"aria-labelledby":r,"aria-label":i,labelElementType:s="label"}=t;e=on(e);let a=on(),u={};n&&(r=r?`${a} ${r}`:a,u={id:a,htmlFor:s==="label"?e:void 0});let c=A3({id:e,"aria-label":i,"aria-labelledby":r});return{labelProps:u,fieldProps:c}}function r4(t,e=-1/0,n=1/0){return Math.min(Math.max(t,e),n)}const Ij=S.createContext(null),p6=7e3;let fl=null;function Io(t,e="assertive",n=p6){fl?fl.announce(t,e,n):(fl=new jj,(typeof IS_REACT_ACT_ENVIRONMENT=="boolean"?IS_REACT_ACT_ENVIRONMENT:typeof jest<"u")?fl.announce(t,e,n):setTimeout(()=>{fl?.isAttached()&&fl?.announce(t,e,n)},100))}class jj{constructor(){this.node=null,this.assertiveLog=null,this.politeLog=null,typeof document<"u"&&(this.node=document.createElement("div"),this.node.dataset.liveAnnouncer="true",Object.assign(this.node.style,{border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"}),this.assertiveLog=this.createLog("assertive"),this.node.appendChild(this.assertiveLog),this.politeLog=this.createLog("polite"),this.node.appendChild(this.politeLog),document.body.prepend(this.node))}isAttached(){return this.node?.isConnected}createLog(e){let n=document.createElement("div");return n.setAttribute("role","log"),n.setAttribute("aria-live",e),n.setAttribute("aria-relevant","additions"),n}destroy(){this.node&&(document.body.removeChild(this.node),this.node=null)}announce(e,n="assertive",r=p6){if(!this.node)return;let i=document.createElement("div");typeof e=="object"?(i.setAttribute("role","img"),i.setAttribute("aria-labelledby",e["aria-labelledby"])):i.textContent=e,n==="assertive"?this.assertiveLog?.appendChild(i):this.politeLog?.appendChild(i),e!==""&&setTimeout(()=>{i.remove()},r)}clear(e){this.node&&((!e||e==="assertive")&&this.assertiveLog&&(this.assertiveLog.innerHTML=""),(!e||e==="polite")&&this.politeLog&&(this.politeLog.innerHTML=""))}}function m6(t,e){let{elementType:n="button",isDisabled:r,onPress:i,onPressStart:s,onPressEnd:a,onPressUp:u,onPressChange:c,preventFocusOnPress:f,allowFocusWhenDisabled:h,onClick:m,href:g,target:b,rel:x,type:k="button"}=t,E;n==="button"?E={type:k,disabled:r,form:t.form,formAction:t.formAction,formEncType:t.formEncType,formMethod:t.formMethod,formNoValidate:t.formNoValidate,formTarget:t.formTarget,name:t.name,value:t.value}:E={role:"button",href:n==="a"&&!r?g:void 0,target:n==="a"?b:void 0,type:n==="input"?k:void 0,disabled:n==="input"?r:void 0,"aria-disabled":!r||n==="input"?void 0:r,rel:n==="a"?x:void 0};let{pressProps:D,isPressed:T}=md({onPressStart:s,onPressEnd:a,onPressChange:c,onPress:i,onPressUp:u,onClick:m,isDisabled:r,preventFocusOnPress:f,ref:e}),{focusableProps:$}=ym(t,e);h&&($.tabIndex=r?-1:$.tabIndex);let A=$e($,D,Ze(t,{labelable:!0}));return{isPressed:T,buttonProps:$e(E,A,{"aria-haspopup":t["aria-haspopup"],"aria-expanded":t["aria-expanded"],"aria-controls":t["aria-controls"],"aria-pressed":t["aria-pressed"],"aria-current":t["aria-current"],"aria-disabled":t["aria-disabled"]})}}const km=S.createContext({}),g6=xm(function(e,n){[e,n]=Ct(e,n,km);let r=e,{isPending:i}=r,{buttonProps:s,isPressed:a}=m6(e,n);s=Kj(s,i);let{focusProps:u,isFocused:c,isFocusVisible:f}=zi(e),{hoverProps:h,isHovered:m}=_i({...e,isDisabled:e.isDisabled||i}),g={isHovered:m,isPressed:(r.isPressed||a)&&!i,isFocused:c,isFocusVisible:f,isDisabled:e.isDisabled||!1,isPending:i??!1},b=wt({...e,values:g,defaultClassName:"react-aria-Button"}),x=on(s.id),k=on(),E=s["aria-labelledby"];i&&(E?E=`${E} ${k}`:s["aria-label"]&&(E=`${x} ${k}`));let D=S.useRef(i);S.useEffect(()=>{let $={"aria-labelledby":E||x};(!D.current&&c&&i||D.current&&c&&!i)&&Io($,"assertive"),D.current=i},[i,c,E,x]);let T=Ze(e,{global:!0});return delete T.onClick,V.createElement(ot.button,{...$e(T,b,s,u,h),type:s.type==="submit"&&i?"button":s.type,id:x,ref:n,"aria-labelledby":E,slot:e.slot||void 0,"aria-disabled":i?"true":s["aria-disabled"],"data-disabled":e.isDisabled||void 0,"data-pressed":g.isPressed||void 0,"data-hovered":m||void 0,"data-focused":c||void 0,"data-pending":i||void 0,"data-focus-visible":f||void 0},V.createElement(Ij.Provider,{value:{id:k}},b.children))}),Fj=/Focus|Blur|Hover|Pointer(Enter|Leave|Over|Out)|Mouse(Enter|Leave|Over|Out)/;function Kj(t,e){if(e){for(const n in t)n.startsWith("on")&&!Fj.test(n)&&(t[n]=void 0);t.href=void 0,t.target=void 0}return t}const b6=S.createContext({}),_j=S.forwardRef(function(e,n){[e,n]=Ct(e,n,b6);let{children:r,level:i=3,className:s,...a}=e,u=ot[`h${i}`];return V.createElement(u,{...a,ref:n,className:s??"react-aria-Heading"},r)}),z3=S.createContext({});function Vj(t,e){const n=S.useRef(!0),r=S.useRef(null);let i=Pt(t);S.useEffect(()=>(n.current=!0,()=>{n.current=!1}),[]),S.useEffect(()=>{let s=r.current;n.current?n.current=!1:(!s||e.some((a,u)=>!Object.is(a,s[u])))&&i(),r.current=e},e)}function Us(t,e){if(!t)return!1;let n=window.getComputedStyle(t),r=document.scrollingElement||document.documentElement,i=/(auto|scroll)/.test(n.overflow+n.overflowX+n.overflowY);return t===r&&n.overflow!=="hidden"&&(i=!0),i&&e&&(i=t.scrollHeight!==t.clientHeight||t.scrollWidth!==t.clientWidth),i}function Wr(t,e){let n=t;for(Us(n,e)&&(n=n.parentElement);n&&!Us(n,e);)n=n.parentElement;return n||document.scrollingElement||document.documentElement}function R0(t,e){let n=[],r=document.scrollingElement||document.documentElement;for(;t&&(Us(t,e)&&n.push(t),t!==r);)t=t.parentElement;return n}function Ph(t,e,n={}){let{block:r="nearest",inline:i="nearest"}=n;if(t===e)return;let s=t.scrollTop,a=t.scrollLeft,u=e.getBoundingClientRect(),c=t.getBoundingClientRect(),f=window.getComputedStyle(e),h=window.getComputedStyle(t),m=document.scrollingElement||document.documentElement,g=t===m,b=t===m?0:c.top,x=t===m?t.clientHeight:c.bottom,k=t===m?0:c.left,E=t===m?t.clientWidth:c.right,D=parseFloat(f.scrollMarginTop)||0,T=parseFloat(f.scrollMarginBottom)||0,$=parseFloat(f.scrollMarginLeft)||0,A=parseFloat(f.scrollMarginRight)||0,B=parseFloat(h.scrollPaddingTop)||0,P=parseFloat(h.scrollPaddingBottom)||0,M=parseFloat(h.scrollPaddingLeft)||0,N=parseFloat(h.scrollPaddingRight)||0,j=parseFloat(h.borderTopWidth)||0,G=parseFloat(h.borderBottomWidth)||0,W=parseFloat(h.borderLeftWidth)||0,U=parseFloat(h.borderRightWidth)||0,ne=u.top-D,F=u.bottom+T,te=u.left-$,O=u.right+A,K=t===m?0:W+U,Q=t===m?0:j+G,Z=t===m?0:t.offsetWidth-t.clientWidth-K,L=t===m?0:t.offsetHeight-t.clientHeight-Q,z=b+(g?0:j)+B,H=x-(g?0:G)-P-L,re=k+(g?0:W)+M,le=E-(g?0:U)-N;h.direction==="rtl"&&!Oi()?re+=Z:le-=Z;let ue=ne<z||F>H,he=te<re||O>le;if(ue&&r==="start")s+=ne-z;else if(ue&&r==="center")s+=(ne+F)/2-(z+H)/2;else if(ue&&r==="end")s+=F-H;else if(ue&&r==="nearest"){let Ce=ne-z,Ue=F-H;s+=Math.abs(Ce)<=Math.abs(Ue)?Ce:Ue}if(he&&i==="start")a+=te-re;else if(he&&i==="center")a+=(te+O)/2-(re+le)/2;else if(he&&i==="end")a+=O-le;else if(he&&i==="nearest"){let Ce=te-re,Ue=O-le;a+=Math.abs(Ce)<=Math.abs(Ue)?Ce:Ue}t.scrollTo({left:a,top:s})}function Cs(t,e={}){let{containingElement:n}=e;if(t&&t.isConnected){let r=document.scrollingElement||document.documentElement;if(window.getComputedStyle(r).overflow==="hidden"){let{left:s,top:a}=t.getBoundingClientRect(),u=R0(t,!0);for(let h of u)Ph(h,t);let{left:c,top:f}=t.getBoundingClientRect();if(Math.abs(s-c)>1||Math.abs(a-f)>1){u=n?R0(n,!0):[];for(let h of u)Ph(h,n,{block:"center",inline:"center"});for(let h of R0(t,!0))Ph(h,t)}}else{let{left:s,top:a}=t.getBoundingClientRect();t?.scrollIntoView?.({block:"nearest"});let{left:u,top:c}=t.getBoundingClientRect();(Math.abs(s-u)>1||Math.abs(a-c)>1)&&(n?.scrollIntoView?.({block:"center",inline:"center"}),t.scrollIntoView?.({block:"nearest"}))}}}let Hj=0;const N0=new Map;function gd(t){let[e,n]=S.useState();return ze(()=>{if(!t)return;let r=N0.get(t);if(r)n(r.element.id);else{let i=`react-aria-description-${Hj++}`;n(i);let s=document.createElement("div");s.id=i,s.style.display="none",s.textContent=t,document.body.appendChild(s),r={refCount:0,element:s},N0.set(t,r)}return r.refCount++,()=>{r&&--r.refCount===0&&(r.element.remove(),N0.delete(t))}},[t]),{"aria-describedby":t?e:void 0}}const C2={border:0,clip:"rect(0 0 0 0)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",whiteSpace:"nowrap"};function Cm(t={}){let{style:e,isFocusable:n}=t,[r,i]=S.useState(!1),{focusWithinProps:s}=P3({isDisabled:!n,onFocusWithinChange:u=>i(u)}),a=S.useMemo(()=>r?e:e?{...C2,...e}:C2,[r]);return{visuallyHiddenProps:{...s,style:a}}}function Uj(t){let{children:e,elementType:n="div",isFocusable:r,style:i,...s}=t,{visuallyHiddenProps:a}=Cm(t);return V.createElement(n,$e(s,a),e)}const qj=S.createContext(null),y6={badInput:!1,customError:!1,patternMismatch:!1,rangeOverflow:!1,rangeUnderflow:!1,stepMismatch:!1,tooLong:!1,tooShort:!1,typeMismatch:!1,valueMissing:!1,valid:!0},x6={...y6,customError:!0,valid:!1},Yu={isInvalid:!1,validationDetails:y6,validationErrors:[]},Gj=S.createContext({}),E2="__reactAriaFormValidationState";function Wj(t){if(t[E2]){let{realtimeValidation:e,displayValidation:n,updateValidation:r,resetValidation:i,commitValidation:s}=t[E2];return{realtimeValidation:e,displayValidation:n,updateValidation:r,resetValidation:i,commitValidation:s}}return Qj(t)}function Qj(t){let{isInvalid:e,validationState:n,name:r,value:i,builtinValidation:s,validate:a,validationBehavior:u="aria"}=t;n&&(e||=n==="invalid");let c=e!==void 0?{isInvalid:e,validationErrors:[],validationDetails:x6}:null,f=S.useMemo(()=>{if(!a||i==null)return null;let G=Yj(a,i);return D2(G)},[a,i]);s?.validationDetails.valid&&(s=void 0);let h=S.useContext(Gj),m=S.useMemo(()=>r?Array.isArray(r)?r.flatMap(G=>i4(h[G])):i4(h[r]):[],[h,r]),[g,b]=S.useState(h),[x,k]=S.useState(!1);h!==g&&(b(h),k(!1));let E=S.useMemo(()=>D2(x?[]:m),[x,m]),D=S.useRef(Yu),[T,$]=S.useState(Yu),A=S.useRef(Yu),B=()=>{if(!P)return;M(!1);let G=f||s||D.current;P0(G,A.current)||(A.current=G,$(G))},[P,M]=S.useState(!1);return S.useEffect(B),{realtimeValidation:c||E||f||s||Yu,displayValidation:u==="native"?c||E||T:c||E||f||s||T,updateValidation(G){u==="aria"&&!P0(T,G)?$(G):D.current=G},resetValidation(){let G=Yu;P0(G,A.current)||(A.current=G,$(G)),u==="native"&&M(!1),k(!0)},commitValidation(){u==="native"&&M(!0),k(!0)}}}function i4(t){return t?Array.isArray(t)?t:[t]:[]}function Yj(t,e){if(typeof t=="function"){let n=t(e);if(n&&typeof n!="boolean")return i4(n)}return[]}function D2(t){return t.length?{isInvalid:!0,validationErrors:t,validationDetails:x6}:null}function P0(t,e){return t===e?!0:!!t&&!!e&&t.isInvalid===e.isInvalid&&t.validationErrors.length===e.validationErrors.length&&t.validationErrors.every((n,r)=>n===e.validationErrors[r])&&Object.entries(t.validationDetails).every(([n,r])=>e.validationDetails[n]===r)}const Xj=S.createContext(null);function Jj(t){let{description:e,errorMessage:n,isInvalid:r,validationState:i}=t,{labelProps:s,fieldProps:a}=zj(t),u=Qo([!!e,!!n,r,i]),c=Qo([!!e,!!n,r,i]);return a=$e(a,{"aria-describedby":[u,c,t["aria-describedby"]].filter(Boolean).join(" ")||void 0}),{labelProps:s,fieldProps:a,descriptionProps:{id:u},errorMessageProps:{id:c}}}function Zj(t,e,n){let r=Pt(i=>{n&&!i.defaultPrevented&&n(e)});S.useEffect(()=>{let i=t?.current?.form;return i?.addEventListener("reset",r),()=>{i?.removeEventListener("reset",r)}},[t])}function eF(t,e,n){let{validationBehavior:r,focus:i}=t;ze(()=>{if(r==="native"&&n?.current&&"setCustomValidity"in n.current&&!n.current.disabled){let f=e.realtimeValidation.isInvalid?e.realtimeValidation.validationErrors.join(" ")||"Invalid value.":"";n.current.setCustomValidity(f),n.current.hasAttribute("title")||(n.current.title=""),e.realtimeValidation.isInvalid||e.updateValidation(nF(n.current))}});let s=S.useRef(!1),a=Pt(()=>{s.current||e.resetValidation()}),u=Pt(f=>{e.displayValidation.isInvalid||e.commitValidation();let h=n?.current?.form;!f.defaultPrevented&&n&&h&&rF(h)===n.current&&(i?i():n.current?.focus(),zo("keyboard")),f.preventDefault()}),c=Pt(()=>{e.commitValidation()});S.useEffect(()=>{let f=n?.current;if(!f)return;let h=f.form,m=h?.reset;return h&&(h.reset=()=>{s.current=!window.event||window.event.type==="message"&&de(window.event)instanceof MessagePort,m?.call(h),s.current=!1}),f.addEventListener("invalid",u),f.addEventListener("change",c),h?.addEventListener("reset",a),()=>{f.removeEventListener("invalid",u),f.removeEventListener("change",c),h?.removeEventListener("reset",a),h&&(h.reset=m)}},[n,r])}function tF(t){let e=t.validity;return{badInput:e.badInput,customError:e.customError,patternMismatch:e.patternMismatch,rangeOverflow:e.rangeOverflow,rangeUnderflow:e.rangeUnderflow,stepMismatch:e.stepMismatch,tooLong:e.tooLong,tooShort:e.tooShort,typeMismatch:e.typeMismatch,valueMissing:e.valueMissing,valid:e.valid}}function nF(t){return{isInvalid:!t.validity.valid,validationDetails:tF(t),validationErrors:t.validationMessage?[t.validationMessage]:[]}}function rF(t){for(let e=0;e<t.elements.length;e++){let n=t.elements[e];if(n.validity?.valid===!1)return n}return null}function iF(t={}){let{isReadOnly:e}=t,[n,r]=eo(t.isSelected,t.defaultSelected||!1,t.onChange),[i]=S.useState(n);function s(u){e||r(u)}function a(){e||r(!n)}return{isSelected:n,defaultSelected:t.defaultSelected??i,setSelected:s,toggle:a}}const sF=S.createContext(null),oF=S.createContext(null),v6=S.createContext({}),aF=S.forwardRef(function(e,n){[e,n]=Ct(e,n,v6);let{isDisabled:r,isInvalid:i,isReadOnly:s,onHoverStart:a,onHoverChange:u,onHoverEnd:c,...f}=e;r??=!!e["aria-disabled"]&&e["aria-disabled"]!=="false",i??=!!e["aria-invalid"]&&e["aria-invalid"]!=="false";let{hoverProps:h,isHovered:m}=_i({onHoverStart:a,onHoverChange:u,onHoverEnd:c,isDisabled:r}),{isFocused:g,isFocusVisible:b,focusProps:x}=zi({within:!0}),k=wt({...e,values:{isHovered:m,isFocusWithin:g,isFocusVisible:b,isDisabled:r,isInvalid:i},defaultClassName:"react-aria-Group"});return V.createElement(ot.div,{...$e(f,x,h),...k,ref:n,role:e.role??"group",slot:e.slot??void 0,"data-focus-within":g||void 0,"data-hovered":m||void 0,"data-focus-visible":b||void 0,"data-disabled":r||void 0,"data-invalid":i||void 0,"data-readonly":s||void 0},k.children)}),k6=S.createContext({});let lF=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:r,...i}=t;return i};const C6=xm(function(e,n){[e,n]=Ct(e,n,k6);let{hoverProps:r,isHovered:i}=_i({...e,isDisabled:e.disabled}),{isFocused:s,isFocusVisible:a,focusProps:u}=zi({isTextInput:!0,autoFocus:e.autoFocus}),c=!!e["aria-invalid"]&&e["aria-invalid"]!=="false",f=wt({...e,values:{isHovered:i,isFocused:s,isFocusVisible:a,isDisabled:e.disabled||!1,isInvalid:c},defaultClassName:"react-aria-Input"});return V.createElement(ot.input,{...$e(lF(e),u,r),...f,ref:n,"data-focused":s||void 0,"data-disabled":e.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":a||void 0,"data-invalid":c||void 0})});function uF(t,e){let{inputElementType:n="input",isDisabled:r=!1,isRequired:i=!1,isReadOnly:s=!1,type:a="text",validationBehavior:u="aria"}=t,[c,f]=eo(t.value,t.defaultValue||"",t.onChange),{focusableProps:h}=ym(t,e),m=Wj({...t,value:c}),{isInvalid:g,validationErrors:b,validationDetails:x}=m.displayValidation,{labelProps:k,fieldProps:E,descriptionProps:D,errorMessageProps:T}=Jj({...t,isInvalid:g,errorMessage:t.errorMessage||b}),$=Ze(t,{labelable:!0});const A={type:a,pattern:t.pattern};let[B]=S.useState(c);return Zj(e,t.defaultValue??B,f),eF(t,m,e),{labelProps:k,inputProps:$e($,n==="input"?A:void 0,{disabled:r,readOnly:s,required:i&&u==="native","aria-required":i&&u==="aria"||void 0,"aria-invalid":g||void 0,"aria-errormessage":t["aria-errormessage"],"aria-activedescendant":t["aria-activedescendant"],"aria-autocomplete":t["aria-autocomplete"],"aria-haspopup":t["aria-haspopup"],"aria-controls":t["aria-controls"],value:c,onChange:P=>f(de(P).value),autoComplete:t.autoComplete,autoCapitalize:t.autoCapitalize,maxLength:t.maxLength,minLength:t.minLength,name:t.name,form:t.form,placeholder:t.placeholder,inputMode:t.inputMode,autoCorrect:t.autoCorrect,spellCheck:t.spellCheck,[parseInt(V.version,10)>=17?"enterKeyHint":"enterkeyhint"]:t.enterKeyHint,onCopy:t.onCopy,onCut:t.onCut,onPaste:t.onPaste,onCompositionEnd:t.onCompositionEnd,onCompositionStart:t.onCompositionStart,onCompositionUpdate:t.onCompositionUpdate,onSelect:t.onSelect,onBeforeInput:t.onBeforeInput,onInput:t.onInput,...h,...E}),descriptionProps:D,errorMessageProps:T,isInvalid:g,validationErrors:b,validationDetails:x}}const Em=S.createContext({}),E6=S.createContext(null),D6=S.forwardRef(function(e,n){let{render:r}=S.useContext(E6);return V.createElement(V.Fragment,null,r(e,n))});function cF(t,e){let n=t?.renderDropIndicator,r=t?.isVirtualDragging?.(),i=S.useCallback(s=>{if(r||e?.isDropTarget(s))return n?n(s):V.createElement(D6,{target:s})},[e?.target,r,n]);return t?.useDropIndicator?i:void 0}function dF(t,e,n){let r=t.focusedKey,i=null;if(e?.isVirtualDragging?.()&&n?.target?.type==="item"&&(i=n.target.key,n.target.dropPosition==="after")){let s=n.collection.getKeyAfter(i),a=null;if(s!=null){let u=n.collection.getItem(i)?.level??0;for(;s!=null;){let c=n.collection.getItem(s);if(!c)break;if(c.type!=="item"){s=n.collection.getKeyAfter(s);continue}if((c.level??0)<=u)break;a=s,s=n.collection.getKeyAfter(s)}}i=s??a??i}return S.useMemo(()=>new Set([r,i].filter(s=>s!=null)),[r,i])}const S6=S.createContext({}),fF=ma(Wy,function(e,n){return[e,n]=Ct(e,n,S6),V.createElement(ot.header,{className:"react-aria-Header",...e,ref:n},e.children)}),hF=S.createContext(null);function I3(t){let e=S.useRef({});return V.createElement(hF.Provider,{value:e},t.children)}const j3=S.createContext({isSelected:!1});function pF(t){let e=Ze(t,{labelable:!0}),n;return t.orientation==="vertical"&&(n="vertical"),t.elementType!=="hr"?{separatorProps:{...e,role:"separator","aria-orientation":n}}:{separatorProps:e}}const w6=S.createContext({}),f1=class f1 extends pa{filter(e,n){let r=n.getItem(this.prevKey);if(r&&r.type!=="separator"){let i=this.clone();return n.addDescendants(i,e),i}return null}};f1.type="separator";let s4=f1;const mF=ma(s4,function(e,n){[e,n]=Ct(e,n,w6);let{elementType:r,orientation:i,style:s,className:a,slot:u,...c}=e,f=r||"hr";f==="hr"&&i==="vertical"&&(f="div");let h=ot[f],{separatorProps:m}=pF({...c,elementType:r,orientation:i}),g=Ze(e,{global:!0});return V.createElement(h,{render:e.render,...$e(g,m),style:s,className:a??"react-aria-Separator",ref:n,slot:u||void 0})});class gF{constructor(e,n,r,i){this._walkerStack=[],this._currentSetFor=new Set,this._acceptNode=a=>{if(a.nodeType===Node.ELEMENT_NODE){const u=a.shadowRoot;if(u){const c=this._doc.createTreeWalker(u,this.whatToShow,{acceptNode:this._acceptNode});return this._walkerStack.unshift(c),NodeFilter.FILTER_ACCEPT}else{if(typeof this.filter=="function")return this.filter(a);if(this.filter?.acceptNode)return this.filter.acceptNode(a);if(this.filter===null)return NodeFilter.FILTER_ACCEPT}}return NodeFilter.FILTER_SKIP},this._doc=e,this.root=n,this.filter=i??null,this.whatToShow=r??NodeFilter.SHOW_ALL,this._currentNode=n,this._walkerStack.unshift(e.createTreeWalker(n,r,this._acceptNode));const s=n.shadowRoot;if(s){const a=this._doc.createTreeWalker(s,this.whatToShow,{acceptNode:this._acceptNode});this._walkerStack.unshift(a)}}get currentNode(){return this._currentNode}set currentNode(e){if(!we(this.root,e))throw new Error("Cannot set currentNode to a node that is not contained by the root node.");const n=[];let r=e,i=e;for(this._currentNode=e;r&&r!==this.root;)if(r.nodeType===Node.DOCUMENT_FRAGMENT_NODE){const a=r,u=this._doc.createTreeWalker(a,this.whatToShow,{acceptNode:this._acceptNode});n.push(u),u.currentNode=i,this._currentSetFor.add(u),r=i=a.host}else r=r.parentNode;const s=this._doc.createTreeWalker(this.root,this.whatToShow,{acceptNode:this._acceptNode});n.push(s),s.currentNode=i,this._currentSetFor.add(s),this._walkerStack=n}get doc(){return this._doc}firstChild(){let e=this.currentNode,n=this.nextNode();return we(e,n)?(n&&(this.currentNode=n),n):(this.currentNode=e,null)}lastChild(){let n=this._walkerStack[0].lastChild();return n&&(this.currentNode=n),n}nextNode(){const e=this._walkerStack[0].nextNode();if(e){if(e.shadowRoot){let r;if(typeof this.filter=="function"?r=this.filter(e):this.filter?.acceptNode&&(r=this.filter.acceptNode(e)),r===NodeFilter.FILTER_ACCEPT)return this.currentNode=e,e;let i=this.nextNode();return i&&(this.currentNode=i),i}return e&&(this.currentNode=e),e}else if(this._walkerStack.length>1){this._walkerStack.shift();let n=this.nextNode();return n&&(this.currentNode=n),n}else return null}previousNode(){const e=this._walkerStack[0];if(e.currentNode===e.root){if(this._currentSetFor.has(e))if(this._currentSetFor.delete(e),this._walkerStack.length>1){this._walkerStack.shift();let r=this.previousNode();return r&&(this.currentNode=r),r}else return null;return null}const n=e.previousNode();if(n){if(n.shadowRoot){let i;if(typeof this.filter=="function"?i=this.filter(n):this.filter?.acceptNode&&(i=this.filter.acceptNode(n)),i===NodeFilter.FILTER_ACCEPT)return n&&(this.currentNode=n),n;let s=this.lastChild();return s&&(this.currentNode=s),s}return n&&(this.currentNode=n),n}else if(this._walkerStack.length>1){this._walkerStack.shift();let r=this.previousNode();return r&&(this.currentNode=r),r}else return null}nextSibling(){return null}previousSibling(){return null}parentNode(){return null}}function $6(t,e,n,r){return Si()?new gF(t,e,n,r):t.createTreeWalker(e,n,r)}const S2=V.createContext(null),o4="react-aria-focus-scope-restore";let lt=null;function F3(t){let{children:e,contain:n,restoreFocus:r,autoFocus:i}=t,s=S.useRef(null),a=S.useRef(null),u=S.useRef([]),{parentNode:c}=S.useContext(S2)||{},f=S.useMemo(()=>new l4({scopeRef:u}),[u]);ze(()=>{let g=c||Mt.root;if(Mt.getTreeNode(g.scopeRef)&&lt&&!ip(lt,g.scopeRef)){let b=Mt.getTreeNode(lt);b&&(g=b)}g.addChild(f),Mt.addNode(f)},[f,c]),ze(()=>{let g=Mt.getTreeNode(u);g&&(g.contain=!!n)},[n]),ze(()=>{let g=s.current?.nextSibling,b=[],x=k=>k.stopPropagation();for(;g&&g!==a.current;)b.push(g),g.addEventListener(o4,x),g=g.nextSibling;return u.current=b,()=>{for(let k of b)k.removeEventListener(o4,x)}},[e]),EF(u,r,n),vF(u,n),DF(u,r,n),CF(u,i),S.useEffect(()=>{const g=_e(Ie(u.current?u.current[0]:void 0));let b=null;if(br(g,u.current)){for(let x of Mt.traverse())x.scopeRef&&br(g,x.scopeRef.current)&&(b=x);b===Mt.getTreeNode(u)&&(lt=b.scopeRef)}},[u]),ze(()=>()=>{let g=Mt.getTreeNode(u)?.parent?.scopeRef??null;(u===lt||ip(u,lt))&&(!g||Mt.getTreeNode(g))&&(lt=g),Mt.removeTreeNode(u)},[u]);let h=S.useMemo(()=>bF(u),[]),m=S.useMemo(()=>({focusManager:h,parentNode:f}),[f,h]);return V.createElement(S2.Provider,{value:m},V.createElement("span",{"data-focus-scope-start":!0,hidden:!0,ref:s}),e,V.createElement("span",{"data-focus-scope-end":!0,hidden:!0,ref:a}))}function bF(t){return{focusNext(e={}){let n=t.current,{from:r,tabbable:i,wrap:s,accept:a}=e,u=r||_e(Ie(n[0]??void 0)),c=n[0].previousElementSibling,f=jo(n),h=dn(f,{tabbable:i,accept:a},n);h.currentNode=br(u,n)?u:c;let m=h.nextNode();return!m&&s&&(h.currentNode=c,m=h.nextNode()),m&&In(m,!0),m},focusPrevious(e={}){let n=t.current,{from:r,tabbable:i,wrap:s,accept:a}=e,u=r||_e(Ie(n[0]??void 0)),c=n[n.length-1].nextElementSibling,f=jo(n),h=dn(f,{tabbable:i,accept:a},n);h.currentNode=br(u,n)?u:c;let m=h.previousNode();return!m&&s&&(h.currentNode=c,m=h.previousNode()),m&&In(m,!0),m},focusFirst(e={}){let n=t.current,{tabbable:r,accept:i}=e,s=jo(n),a=dn(s,{tabbable:r,accept:i},n);a.currentNode=n[0].previousElementSibling;let u=a.nextNode();return u&&In(u,!0),u},focusLast(e={}){let n=t.current,{tabbable:r,accept:i}=e,s=jo(n),a=dn(s,{tabbable:r,accept:i},n);a.currentNode=n[n.length-1].nextElementSibling;let u=a.previousNode();return u&&In(u,!0),u}}}function jo(t){return t[0].parentElement}function uc(t){let e=Mt.getTreeNode(lt);for(;e&&e.scopeRef!==t;){if(e.contain)return!1;e=e.parent}return!0}function yF(t){if(!t.form)return Array.from(Ie(t).querySelectorAll(`input[type="radio"][name="${CSS.escape(t.name)}"]`)).filter(r=>!r.form);const e=t.form.elements.namedItem(t.name);let n=pn(t);return e instanceof n.RadioNodeList?Array.from(e).filter(r=>r instanceof n.HTMLInputElement):e instanceof n.HTMLInputElement?[e]:[]}function xF(t){if(t.checked)return!0;const e=yF(t);return e.length>0&&!e.some(n=>n.checked)}function vF(t,e){let n=S.useRef(void 0),r=S.useRef(void 0);ze(()=>{let i=t.current;if(!e){r.current&&(cancelAnimationFrame(r.current),r.current=void 0);return}const s=Ie(i?i[0]:void 0);let a=f=>{if(f.key!=="Tab"||f.altKey||f.ctrlKey||f.metaKey||!uc(t)||f.isComposing)return;let h=_e(s),m=t.current;if(!m||!br(h,m))return;let g=jo(m),b=dn(g,{tabbable:!0},m);if(!h)return;b.currentNode=h;let x=f.shiftKey?b.previousNode():b.nextNode();x||(b.currentNode=f.shiftKey?m[m.length-1].nextElementSibling:m[0].previousElementSibling,x=f.shiftKey?b.previousNode():b.nextNode()),f.preventDefault(),x&&(In(x,!0),x instanceof pn(x).HTMLInputElement&&x.select())},u=f=>{(!lt||ip(lt,t))&&br(de(f),t.current)?(lt=t,n.current=de(f)):uc(t)&&!Ms(de(f),t)?n.current?n.current.focus():lt&&lt.current&&a4(lt.current):uc(t)&&(n.current=de(f))},c=f=>{r.current&&cancelAnimationFrame(r.current),r.current=requestAnimationFrame(()=>{let h=ia(),m=(h==="virtual"||h===null)&&hm()&&Dw(),g=_e(s);if(!m&&g&&uc(t)&&!Ms(g,t)){lt=t;let b=de(f);b&&b.isConnected?(n.current=b,n.current?.focus()):lt.current&&a4(lt.current)}})};return s.addEventListener("keydown",a,!1),s.addEventListener("focusin",u,!1),i?.forEach(f=>f.addEventListener("focusin",u,!1)),i?.forEach(f=>f.addEventListener("focusout",c,!1)),()=>{s.removeEventListener("keydown",a,!1),s.removeEventListener("focusin",u,!1),i?.forEach(f=>f.removeEventListener("focusin",u,!1)),i?.forEach(f=>f.removeEventListener("focusout",c,!1))}},[t,e]),ze(()=>()=>{r.current&&cancelAnimationFrame(r.current)},[r])}function T6(t){return Ms(t)}function br(t,e){return!t||!e?!1:e.some(n=>we(n,t))}function Ms(t,e=null){if(t instanceof Element&&t.closest("[data-react-aria-top-layer]"))return!0;for(let{scopeRef:n}of Mt.traverse(Mt.getTreeNode(e)))if(n&&br(t,n.current))return!0;return!1}function kF(t){return Ms(t,lt)}function ip(t,e){let n=Mt.getTreeNode(e)?.parent;for(;n;){if(n.scopeRef===t)return!0;n=n.parent}return!1}function In(t,e=!1){if(t!=null&&!e)try{xn(t)}catch{}else if(t!=null)try{t.focus()}catch{}}function A6(t,e=!0){let n=t[0].previousElementSibling,r=jo(t),i=dn(r,{tabbable:e},t);i.currentNode=n;let s=i.nextNode();return e&&!s&&(r=jo(t),i=dn(r,{tabbable:!1},t),i.currentNode=n,s=i.nextNode()),s}function a4(t,e=!0){In(A6(t,e))}function CF(t,e){const n=V.useRef(e);S.useEffect(()=>{if(n.current){lt=t;const r=Ie(t.current?t.current[0]:void 0);!br(_e(r),lt.current)&&t.current&&a4(t.current)}n.current=!1},[t])}function EF(t,e,n){ze(()=>{if(e||n)return;let r=t.current;const i=Ie(r?r[0]:void 0);let s=a=>{let u=de(a);br(u,t.current)?lt=t:T6(u)||(lt=null)};return i.addEventListener("focusin",s,!1),r?.forEach(a=>a.addEventListener("focusin",s,!1)),()=>{i.removeEventListener("focusin",s,!1),r?.forEach(a=>a.removeEventListener("focusin",s,!1))}},[t,e,n])}function w2(t){let e=Mt.getTreeNode(lt);for(;e&&e.scopeRef!==t;){if(e.nodeToRestore)return!1;e=e.parent}return e?.scopeRef===t}function DF(t,e,n){const r=S.useRef(typeof document<"u"?_e(Ie(t.current?t.current[0]:void 0)):null);ze(()=>{let i=t.current;const s=Ie(i?i[0]:void 0);if(!e||n)return;let a=()=>{(!lt||ip(lt,t))&&br(_e(s),t.current)&&(lt=t)};return s.addEventListener("focusin",a,!1),i?.forEach(u=>u.addEventListener("focusin",a,!1)),()=>{s.removeEventListener("focusin",a,!1),i?.forEach(u=>u.removeEventListener("focusin",a,!1))}},[t,n]),ze(()=>{const i=Ie(t.current?t.current[0]:void 0);if(!e)return;let s=a=>{if(a.key!=="Tab"||a.altKey||a.ctrlKey||a.metaKey||!uc(t)||a.isComposing)return;let u=i.activeElement;if(!Ms(u,t)||!w2(t))return;let c=Mt.getTreeNode(t);if(!c)return;let f=c.nodeToRestore,h=dn(i.body,{tabbable:!0});h.currentNode=u;let m=a.shiftKey?h.previousNode():h.nextNode();if((!f||!f.isConnected||f===i.body)&&(f=void 0,c.nodeToRestore=void 0),(!m||!Ms(m,t))&&f){h.currentNode=f;do m=a.shiftKey?h.previousNode():h.nextNode();while(Ms(m,t));a.preventDefault(),a.stopPropagation(),m?In(m,!0):T6(f)?In(f,!0):u.blur()}};return n||i.addEventListener("keydown",s,!0),()=>{n||i.removeEventListener("keydown",s,!0)}},[t,e,n]),ze(()=>{const i=Ie(t.current?t.current[0]:void 0);if(!e)return;let s=Mt.getTreeNode(t);if(s)return s.nodeToRestore=r.current??void 0,()=>{let a=Mt.getTreeNode(t);if(!a)return;let u=a.nodeToRestore,c=_e(i);if(e&&u&&(c&&Ms(c,t)||c===i.body&&w2(t))){let f=Mt.clone();requestAnimationFrame(()=>{if(i.activeElement===i.body){let h=f.getTreeNode(t);for(;h;){if(h.nodeToRestore&&h.nodeToRestore.isConnected){$2(h.nodeToRestore);return}h=h.parent}for(h=f.getTreeNode(t);h;){if(h.scopeRef&&h.scopeRef.current&&Mt.getTreeNode(h.scopeRef)){let m=A6(h.scopeRef.current,!0);$2(m);return}h=h.parent}}})}}},[t,e])}function $2(t){t.dispatchEvent(new CustomEvent(o4,{bubbles:!0,cancelable:!0}))&&In(t)}function dn(t,e,n){let r=e?.tabbable?Xh:vw,i=t?.nodeType===Node.ELEMENT_NODE?t:null,s=Ie(i),a=$6(s,t||s,NodeFilter.SHOW_ELEMENT,{acceptNode(u){return we(e?.from,u)||e?.tabbable&&u.tagName==="INPUT"&&u.getAttribute("type")==="radio"&&(!xF(u)||a.currentNode.tagName==="INPUT"&&a.currentNode.type==="radio"&&a.currentNode.name===u.name)?NodeFilter.FILTER_REJECT:r(u)&&(!n||br(u,n))&&(!e?.accept||e.accept(u))?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});return e?.from&&(a.currentNode=e.from),a}function SF(t,e={}){return{focusNext(n={}){let r=t.current;if(!r)return null;let{from:i,tabbable:s=e.tabbable,wrap:a=e.wrap,accept:u=e.accept}=n,c=i||_e(Ie(r)),f=dn(r,{tabbable:s,accept:u});we(r,c)&&(f.currentNode=c);let h=f.nextNode();return!h&&a&&(f.currentNode=r,h=f.nextNode()),h&&In(h,!0),h},focusPrevious(n=e){let r=t.current;if(!r)return null;let{from:i,tabbable:s=e.tabbable,wrap:a=e.wrap,accept:u=e.accept}=n,c=i||_e(Ie(r)),f=dn(r,{tabbable:s,accept:u});if(we(r,c))f.currentNode=c;else{let m=O0(f);return m&&In(m,!0),m??null}let h=f.previousNode();if(!h&&a){f.currentNode=r;let m=O0(f);if(!m)return null;h=m}return h&&In(h,!0),h??null},focusFirst(n=e){let r=t.current;if(!r)return null;let{tabbable:i=e.tabbable,accept:s=e.accept}=n,u=dn(r,{tabbable:i,accept:s}).nextNode();return u&&In(u,!0),u},focusLast(n=e){let r=t.current;if(!r)return null;let{tabbable:i=e.tabbable,accept:s=e.accept}=n,a=dn(r,{tabbable:i,accept:s}),u=O0(a);return u&&In(u,!0),u??null}}}function O0(t){let e,n;do n=t.lastChild(),n&&(e=n);while(n);return e}class K3{constructor(){this.fastMap=new Map,this.root=new l4({scopeRef:null}),this.fastMap.set(null,this.root)}get size(){return this.fastMap.size}getTreeNode(e){return this.fastMap.get(e)}addTreeNode(e,n,r){let i=this.fastMap.get(n??null);if(!i)return;let s=new l4({scopeRef:e});i.addChild(s),s.parent=i,this.fastMap.set(e,s),r&&(s.nodeToRestore=r)}addNode(e){this.fastMap.set(e.scopeRef,e)}removeTreeNode(e){if(e===null)return;let n=this.fastMap.get(e);if(!n)return;let r=n.parent;for(let s of this.traverse())s!==n&&n.nodeToRestore&&s.nodeToRestore&&n.scopeRef&&n.scopeRef.current&&br(s.nodeToRestore,n.scopeRef.current)&&(s.nodeToRestore=n.nodeToRestore);let i=n.children;r&&(r.removeChild(n),i.size>0&&i.forEach(s=>r&&r.addChild(s))),this.fastMap.delete(n.scopeRef)}*traverse(e=this.root){if(e.scopeRef!=null&&(yield e),e.children.size>0)for(let n of e.children)yield*this.traverse(n)}clone(){let e=new K3;for(let n of this.traverse())e.addTreeNode(n.scopeRef,n.parent?.scopeRef??null,n.nodeToRestore);return e}}class l4{constructor(e){this.children=new Set,this.contain=!1,this.scopeRef=e.scopeRef}addChild(e){this.children.add(e),e.parent=this}removeChild(e){this.children.delete(e),e.parent=void 0}}let Mt=new K3;function u4(t){return SI()?t.altKey:t.ctrlKey}function Yo(t,e){let n=`[data-key="${CSS.escape(String(e))}"]`,r=t.current?.dataset.collection;return r&&(n=`[data-collection="${CSS.escape(r)}"]${n}`),t.current?.querySelector(n)}const B6=new WeakMap;function wF(t){let e=on();return B6.set(t,e),e}function $F(t){return B6.get(t)}const T2=1e3;function TF(t){let{keyboardDelegate:e,selectionManager:n,onTypeSelect:r}=t,i=S.useRef({search:"",timeout:void 0}),s=u=>{if(i.current.search.length>0&&u.key===" "){if(u.preventDefault(),(!("continuePropagation"in u)||"continuePropagation"in u&&!u.isPropagationStopped())&&u.stopPropagation(),i.current.search+=" ",e.getKeyForSearch!=null){let c=e.getKeyForSearch(i.current.search,n.focusedKey);c==null&&(c=e.getKeyForSearch(i.current.search)),c!=null&&(n.setFocusedKey(c),r&&r(c))}clearTimeout(i.current.timeout),i.current.timeout=setTimeout(()=>{i.current.search=""},T2)}},a=u=>{let c=AF(u.key);if(!(!c||u.ctrlKey||u.metaKey||u.altKey||!we(u.currentTarget,de(u))||i.current.search.length===0&&c===" ")){if(i.current.search+=c,e.getKeyForSearch!=null){let f=e.getKeyForSearch(i.current.search,n.focusedKey);if(f==null&&(f=e.getKeyForSearch(i.current.search)),f!=null)n.setFocusedKey(f),r&&r(f),u.preventDefault(),"continuePropagation"in u||u.stopPropagation();else{i.current.search="",clearTimeout(i.current.timeout),i.current.timeout=void 0;return}}clearTimeout(i.current.timeout),i.current.timeout=setTimeout(()=>{i.current.search=""},T2)}};return S.useEffect(()=>{let u=i.current.timeout;return()=>{clearTimeout(u)}},[i]),{typeSelectProps:{onKeyDownCapture:e.getKeyForSearch?s:void 0,onKeyDown:e.getKeyForSearch?a:void 0}}}function AF(t){return t.length===1||!/^[A-Z]/i.test(t)?t:""}function A2(t,e){const n=S.useRef(!0),r=S.useRef(null);ze(()=>(n.current=!0,()=>{n.current=!1}),[]),ze(()=>{n.current?n.current=!1:(!r.current||e.some((i,s)=>!Object.is(i,r[s])))&&t(),r.current=e},e)}function BF(t){let{selectionManager:e,keyboardDelegate:n,ref:r,autoFocus:i=!1,shouldFocusWrap:s=!1,disallowEmptySelection:a=!1,disallowSelectAll:u=!1,escapeKeyBehavior:c="clearSelection",selectOnFocus:f=e.selectionBehavior==="replace",disallowTypeAhead:h=!1,shouldUseVirtualFocus:m,allowsTabNavigation:g=!1,scrollRef:b=r,linkBehavior:x="action",UNSTABLE_focusOnEntry:k}=t,{direction:E}=Ki(),D=Hl(),T=O=>{if(O.altKey&&O.key==="Tab"&&O.preventDefault(),!r.current||!we(r.current,de(O)))return;const K=(Q,Z)=>{if(Q!=null){if(e.isLink(Q)&&x==="selection"&&f&&!u4(O)){ha.flushSync(()=>{e.setFocusedKey(Q,Z)});let L=Yo(r,Q),z=e.getItemProps(Q);L&&D.open(L,O,z.href,z.routerOptions);return}if(e.setFocusedKey(Q,Z),e.isLink(Q)&&x==="override")return;O.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(Q):f&&!u4(O)&&e.replaceSelection(Q)}};switch(O.key){case"ArrowDown":if(n.getKeyBelow){let Q=e.focusedKey!=null?n.getKeyBelow?.(e.focusedKey):n.getFirstKey?.();Q==null&&s&&(Q=n.getFirstKey?.(e.focusedKey)),Q!=null&&(O.preventDefault(),K(Q))}break;case"ArrowUp":if(n.getKeyAbove){let Q=e.focusedKey!=null?n.getKeyAbove?.(e.focusedKey):n.getLastKey?.();Q==null&&s&&(Q=n.getLastKey?.(e.focusedKey)),Q!=null&&(O.preventDefault(),K(Q))}break;case"ArrowLeft":if(n.getKeyLeftOf){let Q=e.focusedKey!=null?n.getKeyLeftOf?.(e.focusedKey):n.getFirstKey?.();Q==null&&s&&(Q=E==="rtl"?n.getFirstKey?.(e.focusedKey):n.getLastKey?.(e.focusedKey)),Q!=null&&(O.preventDefault(),K(Q,E==="rtl"?"first":"last"))}break;case"ArrowRight":if(n.getKeyRightOf){let Q=e.focusedKey!=null?n.getKeyRightOf?.(e.focusedKey):n.getFirstKey?.();Q==null&&s&&(Q=E==="rtl"?n.getLastKey?.(e.focusedKey):n.getFirstKey?.(e.focusedKey)),Q!=null&&(O.preventDefault(),K(Q,E==="rtl"?"last":"first"))}break;case"Home":if(n.getFirstKey){if(e.focusedKey===null&&O.shiftKey)return;O.preventDefault();let Q=n.getFirstKey(e.focusedKey,Bo(O));e.setFocusedKey(Q),Q!=null&&(Bo(O)&&O.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(Q):f&&e.replaceSelection(Q))}break;case"End":if(n.getLastKey){if(e.focusedKey===null&&O.shiftKey)return;O.preventDefault();let Q=n.getLastKey(e.focusedKey,Bo(O));e.setFocusedKey(Q),Q!=null&&(Bo(O)&&O.shiftKey&&e.selectionMode==="multiple"?e.extendSelection(Q):f&&e.replaceSelection(Q))}break;case"PageDown":if(n.getKeyPageBelow&&e.focusedKey!=null){let Q=n.getKeyPageBelow(e.focusedKey);Q!=null&&(O.preventDefault(),K(Q))}break;case"PageUp":if(n.getKeyPageAbove&&e.focusedKey!=null){let Q=n.getKeyPageAbove(e.focusedKey);Q!=null&&(O.preventDefault(),K(Q))}break;case"a":Bo(O)&&e.selectionMode==="multiple"&&u!==!0&&(O.preventDefault(),e.selectAll());break;case"Escape":c==="clearSelection"&&!a&&e.selectedKeys.size!==0&&(O.stopPropagation(),O.preventDefault(),e.clearSelection());break;case"Tab":if(!g){if(O.shiftKey)r.current.focus();else{let Q=dn(r.current,{tabbable:!0}),Z,L;do L=Q.lastChild(),L&&(Z=L);while(L);let z=_e();Z&&(!Rl(Z)||z&&!Xh(z))&&Rr(Z)}break}}},$=S.useRef({top:0,left:0});ac(b,"scroll",()=>{$.current={top:b.current?.scrollTop??0,left:b.current?.scrollLeft??0}});let A=O=>{if(e.isFocused){we(O.currentTarget,de(O))||e.setFocused(!1);return}if(!we(O.currentTarget,de(O)))return;let K=ia();e.setFocused(!0);let Q=Z=>{Z!=null&&(e.setFocusedKey(Z),f&&!e.isSelected(Z)&&e.replaceSelection(Z))};if(k&&(K==="keyboard"||K==="virtual"))Q(k==="first"?n.getFirstKey?.():n.getLastKey?.());else if(e.focusedKey==null){let Z=O.relatedTarget;Z&&O.currentTarget.compareDocumentPosition(Z)&Node.DOCUMENT_POSITION_FOLLOWING?Q(e.lastSelectedKey??n.getLastKey?.()):Q(e.firstSelectedKey??n.getFirstKey?.())}else b.current&&(b.current.scrollTop=$.current.top,b.current.scrollLeft=$.current.left);if(e.focusedKey!=null&&b.current){let Z=Yo(r,e.focusedKey);Z instanceof HTMLElement&&(!Rl(Z)&&!m&&Rr(Z),(K==="keyboard"||k&&K==="virtual")&&Cs(Z,{containingElement:r.current}))}},B=O=>{we(O.currentTarget,O.relatedTarget)||e.setFocused(!1)},P=S.useRef(!1);ac(r,Hy,m?O=>{let{detail:K}=O;O.stopPropagation(),e.setFocused(!0),K?.focusStrategy==="first"&&(P.current=!0)}:void 0);let M=n.getFirstKey?.()??null;A2(()=>{if(P.current)if(M==null){let O=_e();k3(r.current),Yh(O,null),e.collection.size>0&&(P.current=!1)}else e.setFocusedKey(M),P.current=!1},[M,e.collection.size]),A2(()=>{e.collection.size>0&&(P.current=!1)},[e.focusedKey]),ac(r,yw,m?O=>{O.stopPropagation(),e.setFocused(!1),O.detail?.clearFocusKey&&e.setFocusedKey(null)}:void 0);const N=S.useRef(i),j=S.useRef(!1);S.useEffect(()=>{if(N.current){let O=null;i==="first"&&(O=n.getFirstKey?.()??null),i==="last"&&(O=n.getLastKey?.()??null);let K=e.selectedKeys;if(K.size){for(let Q of K)if(e.canSelectItem(Q)){O=Q;break}}e.setFocused(!0),e.setFocusedKey(O),O==null&&!m&&r.current&&xn(r.current),e.collection.size>0&&(N.current=!1,j.current=!0)}});let G=S.useRef(e.focusedKey),W=S.useRef(null);S.useEffect(()=>{if(e.isFocused&&e.focusedKey!=null&&(e.focusedKey!==G.current||j.current)&&b.current&&r.current){let O=ia(),K=Yo(r,e.focusedKey);if(!(K instanceof HTMLElement))return;(O==="keyboard"||j.current)&&(W.current&&cancelAnimationFrame(W.current),W.current=requestAnimationFrame(()=>{b.current&&(Ph(b.current,K),O!=="virtual"&&Cs(K,{containingElement:r.current}))}))}!m&&e.isFocused&&e.focusedKey==null&&G.current!=null&&r.current&&xn(r.current),G.current=e.focusedKey,j.current=!1}),S.useEffect(()=>()=>{W.current&&cancelAnimationFrame(W.current)},[]),ac(r,"react-aria-focus-scope-restore",O=>{O.preventDefault(),e.setFocused(!0)});let U={onKeyDown:T,onFocus:A,onBlur:B,onMouseDown(O){b.current===de(O)&&O.preventDefault()}},{typeSelectProps:ne}=TF({keyboardDelegate:n,selectionManager:e});h||(U=$e(ne,U));let F;m||(F=e.focusedKey==null?0:-1);let te=wF(e.collection);return{collectionProps:$e(U,{tabIndex:F,"data-collection":te})}}class B2{constructor(e){this.ref=e}getItemRect(e){let n=this.ref.current;if(!n)return null;let r=e!=null?Yo(this.ref,e):null;if(!r)return null;let i=n.getBoundingClientRect(),s=r.getBoundingClientRect();return{x:s.left-i.left-n.clientLeft+n.scrollLeft,y:s.top-i.top-n.clientTop+n.scrollTop,width:s.width,height:s.height}}getContentSize(){let e=this.ref.current;return{width:e?.scrollWidth??0,height:e?.scrollHeight??0}}getVisibleRect(){let e=this.ref.current;return{x:e?.scrollLeft??0,y:e?.scrollTop??0,width:e?.clientWidth??0,height:e?.clientHeight??0}}}class M6{constructor(...e){if(e.length===1){let n=e[0];this.collection=n.collection,this.ref=n.ref,this.collator=n.collator,this.disabledKeys=n.disabledKeys||new Set,this.disabledBehavior=n.disabledBehavior||"all",this.orientation=n.orientation||"vertical",this.direction=n.direction,this.layout=n.layout||"stack",this.layoutDelegate=n.layoutDelegate||new B2(n.ref)}else this.collection=e[0],this.disabledKeys=e[1],this.ref=e[2],this.collator=e[3],this.layout="stack",this.orientation="vertical",this.disabledBehavior="all",this.layoutDelegate=new B2(this.ref);this.layout==="stack"&&this.orientation==="vertical"&&(this.getKeyLeftOf=void 0,this.getKeyRightOf=void 0)}isDisabled(e){return this.disabledBehavior==="all"&&(e.props?.isDisabled||this.disabledKeys.has(e.key))&&e.props?.disabledBehavior!=="selection"}findNextNonDisabled(e,n,r=!1){let i=e;for(;i!=null;){let s=this.collection.getItem(i);if(s?.type==="item"&&(r||!this.isDisabled(s)))return i;i=n(i)}return null}getNextKey(e,n){let r=e;return r=this.collection.getKeyAfter(r),this.findNextNonDisabled(r,i=>this.collection.getKeyAfter(i),n?.includeDisabled)}getPreviousKey(e,n){let r=e;return r=this.collection.getKeyBefore(r),this.findNextNonDisabled(r,i=>this.collection.getKeyBefore(i),n?.includeDisabled)}findKey(e,n,r){let i=e,s=this.layoutDelegate.getItemRect(i);if(!s||i==null)return null;let a=s;do{if(i=n(i),i==null)break;s=this.layoutDelegate.getItemRect(i)}while(s&&r(a,s)&&i!=null);return i}isSameRow(e,n){return e.y===n.y||e.x!==n.x}isSameColumn(e,n){return e.x===n.x||e.y!==n.y}isReversed(e){let n=this.getNextKey(e),r=Yo(this.ref,e);if(n!=null){let s=Yo(this.ref,n);return!r||!s?!1:r.getBoundingClientRect().top>s.getBoundingClientRect().top}let i=this.getPreviousKey(e);if(i!=null){let s=Yo(this.ref,i);return!r||!s?!1:s.getBoundingClientRect().top>r.getBoundingClientRect().top}return!1}getKeyBelow(e,n){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,r=>this.getNextKey(r,n),this.isSameRow):this.orientation==="vertical"?this.isReversed(e)?this.getPreviousKey(e,n):this.getNextKey(e,n):this.getNextKey(e,n)}getKeyAbove(e,n){return this.layout==="grid"&&this.orientation==="vertical"?this.findKey(e,r=>this.getPreviousKey(r,n),this.isSameRow):this.orientation==="vertical"?this.isReversed(e)?this.getNextKey(e,n):this.getPreviousKey(e,n):this.getPreviousKey(e,n)}getNextColumn(e,n,r){return n?this.getPreviousKey(e,r):this.getNextKey(e,r)}getKeyRightOf(e,n){let r=this.direction==="ltr"?"getKeyRightOf":"getKeyLeftOf";return this.layoutDelegate[r]?(e=this.layoutDelegate[r](e),this.findNextNonDisabled(e,i=>this.layoutDelegate[r](i),n?.includeDisabled)):this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="rtl",n):this.findKey(e,i=>this.getNextColumn(i,this.direction==="rtl",n),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="rtl",n):null}getKeyLeftOf(e,n){let r=this.direction==="ltr"?"getKeyLeftOf":"getKeyRightOf";return this.layoutDelegate[r]?(e=this.layoutDelegate[r](e),this.findNextNonDisabled(e,i=>this.layoutDelegate[r](i),n?.includeDisabled)):this.layout==="grid"?this.orientation==="vertical"?this.getNextColumn(e,this.direction==="ltr",n):this.findKey(e,i=>this.getNextColumn(i,this.direction==="ltr",n),this.isSameColumn):this.orientation==="horizontal"?this.getNextColumn(e,this.direction==="ltr",n):null}getFirstKey(){let e=this.collection.getFirstKey();return this.findNextNonDisabled(e,n=>this.collection.getKeyAfter(n))}getLastKey(){let e=this.collection.getLastKey();return this.findNextNonDisabled(e,n=>this.collection.getKeyBefore(n))}getKeyPageAbove(e){let n=this.ref.current,r=this.layoutDelegate.getItemRect(e);if(!r)return null;let i=this.isReversed(e);if(n&&!Us(n))return this.getFirstKey();let s=e;if(this.orientation==="horizontal"){let a=Math.max(0,r.x+r.width-this.layoutDelegate.getVisibleRect().width);for(;r&&r.x>a&&s!=null;)s=this.getKeyAbove(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}else{let a=this.layoutDelegate.getVisibleRect(),u=i?r.y-a.height:Math.max(0,r.y+r.height-a.height);for(;r&&r.y>u&&s!=null;)s=this.getKeyAbove(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}return s??(i?this.getLastKey():this.getFirstKey())}getKeyPageBelow(e){let n=this.ref.current,r=this.layoutDelegate.getItemRect(e);if(!r)return null;let i=this.isReversed(e);if(n&&!Us(n))return this.getLastKey();let s=e;if(this.orientation==="horizontal"){let a=Math.min(this.layoutDelegate.getContentSize().width,r.x-r.width+this.layoutDelegate.getVisibleRect().width);for(;r&&r.x<a&&s!=null;)s=this.getKeyBelow(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}else{let a=Math.min(this.layoutDelegate.getContentSize().height,r.y-r.height+this.layoutDelegate.getVisibleRect().height);for(;r&&r.y<a&&s!=null;)s=this.getKeyBelow(s),r=s==null?null:this.layoutDelegate.getItemRect(s)}return s??(i?this.getFirstKey():this.getLastKey())}getKeyForSearch(e,n){if(!this.collator)return null;let r=this.collection,i=n||this.getFirstKey();for(;i!=null;){let s=r.getItem(i);if(!s)return null;let a=s.textValue.slice(0,e.length);if(s.textValue&&this.collator.compare(a,e)===0)return i;i=this.getNextKey(i)}return null}}let L0=new Map;function _3(t){let{locale:e}=Ki(),n=e+(t?Object.entries(t).sort((i,s)=>i[0]<s[0]?-1:1).join():"");if(L0.has(n))return L0.get(n);let r=new Intl.Collator(e,t);return L0.set(n,r),r}function R6(t){let{selectionManager:e,collection:n,disabledKeys:r,ref:i,keyboardDelegate:s,layoutDelegate:a,orientation:u}=t,c=_3({usage:"search",sensitivity:"base"}),f=e.disabledBehavior,h=S.useMemo(()=>s||new M6({collection:n,disabledKeys:r,disabledBehavior:f,ref:i,collator:c,layoutDelegate:a,orientation:u}),[s,a,n,r,i,c,f,u]),{collectionProps:m}=BF({...t,ref:i,selectionManager:e,keyboardDelegate:h});return{listProps:m}}const MF=500;function N6(t){let{isDisabled:e,onLongPressStart:n,onLongPressEnd:r,onLongPress:i,threshold:s=MF,accessibilityDescription:a}=t;const u=S.useRef(void 0);let{addGlobalListener:c,removeGlobalListener:f}=pd(),{pressProps:h}=md({isDisabled:e,onPressStart(g){if(g.continuePropagation(),(g.pointerType==="mouse"||g.pointerType==="touch")&&(n&&n({...g,type:"longpressstart"}),u.current=setTimeout(()=>{g.target.dispatchEvent(new PointerEvent("pointercancel",{bubbles:!0})),Ie(g.target).activeElement!==g.target&&Rr(g.target),i&&i({...g,type:"longpress"}),u.current=void 0},s),g.pointerType==="touch")){let b=k=>{k.preventDefault()},x=pn(g.target);c(g.target,"contextmenu",b,{once:!0}),c(x,"pointerup",()=>{setTimeout(()=>{f(g.target,"contextmenu",b)},30)},{once:!0})}},onPressEnd(g){u.current&&clearTimeout(u.current),r&&(g.pointerType==="mouse"||g.pointerType==="touch")&&r({...g,type:"longpressend"})}}),m=gd(i&&!e?a:void 0);return{longPressProps:$e(h,m)}}function P6(t){let{id:e,selectionManager:n,key:r,ref:i,shouldSelectOnPressUp:s,shouldUseVirtualFocus:a,focus:u,isDisabled:c,onAction:f,allowsDifferentPressOrigin:h,linkBehavior:m="action"}=t,g=Hl();e=on(e);let b=L=>{if(L.pointerType==="keyboard"&&u4(L))n.toggleSelection(r);else{if(n.selectionMode==="none")return;if(n.isLink(r)){if(m==="selection"&&i.current){let z=n.getItemProps(r);g.open(i.current,L,z.href,z.routerOptions),n.setSelectedKeys(n.selectedKeys);return}else if(m==="override"||m==="none")return}n.selectionMode==="single"?n.isSelected(r)&&!n.disallowEmptySelection?n.toggleSelection(r):n.replaceSelection(r):L&&L.shiftKey?n.extendSelection(r):n.selectionBehavior==="toggle"||L&&(Bo(L)||L.pointerType==="touch"||L.pointerType==="virtual")?n.toggleSelection(r):n.replaceSelection(r)}};S.useEffect(()=>{r===n.focusedKey&&n.isFocused&&(a?k3(i.current):u?u():_e()!==i.current&&i.current&&xn(i.current))},[i,r,n.focusedKey,n.childFocusStrategy,n.isFocused,a]),c=c||n.isDisabled(r);let x={};!a&&!c?x={tabIndex:r===n.focusedKey?0:-1,onFocus(L){de(L)===i.current&&n.setFocusedKey(r)}}:c&&(x.onMouseDown=L=>{L.preventDefault()}),S.useEffect(()=>{c&&n.focusedKey===r&&n.setFocusedKey(null)},[n,c,r]);let k=n.isLink(r)&&m==="override",E=f&&t.UNSTABLE_itemBehavior==="action",D=n.isLink(r)&&m!=="selection"&&m!=="none",T=!c&&n.canSelectItem(r)&&!k&&!E,$=(f||D)&&!c,A=$&&(n.selectionBehavior==="replace"?!T:!T||n.isEmpty),B=$&&T&&n.selectionBehavior==="replace",P=A||B,M=S.useRef(null),N=P&&T,j=S.useRef(!1),G=S.useRef(!1),W=n.getItemProps(r),U=L=>{f&&(f(),i.current?.dispatchEvent(new CustomEvent("react-aria-item-action",{bubbles:!0}))),D&&i.current&&g.open(i.current,L,W.href,W.routerOptions)},ne={ref:i};if(s?(ne.onPressStart=L=>{M.current=L.pointerType,j.current=N,L.pointerType==="keyboard"&&(!P||R2(L.key))&&b(L)},h?(ne.onPressUp=A?void 0:L=>{L.pointerType==="mouse"&&T&&b(L)},ne.onPress=A?U:L=>{L.pointerType!=="keyboard"&&L.pointerType!=="mouse"&&T&&b(L)}):ne.onPress=L=>{if(A||B&&L.pointerType!=="mouse"){if(L.pointerType==="keyboard"&&!M2(L.key))return;U(L)}else L.pointerType!=="keyboard"&&T&&b(L)}):(ne.onPressStart=L=>{M.current=L.pointerType,j.current=N,G.current=A,T&&(L.pointerType==="mouse"&&!A||L.pointerType==="keyboard"&&(!$||R2(L.key)))&&b(L)},ne.onPress=L=>{(L.pointerType==="touch"||L.pointerType==="pen"||L.pointerType==="virtual"||L.pointerType==="keyboard"&&P&&M2(L.key)||L.pointerType==="mouse"&&G.current)&&(P?U(L):T&&b(L))}),x["data-collection"]=$F(n.collection),x["data-key"]=r,ne.preventFocusOnPress=a,a&&(ne=$e(ne,{onPressStart(L){L.pointerType!=="touch"&&(n.setFocused(!0),n.setFocusedKey(r))},onPress(L){L.pointerType==="touch"&&(n.setFocused(!0),n.setFocusedKey(r))}})),W)for(let L of["onPressStart","onPressEnd","onPressChange","onPress","onPressUp","onClick"])W[L]&&(ne[L]=Xs(ne[L],W[L]));let{pressProps:F,isPressed:te}=md(ne),O=B?L=>{M.current==="mouse"&&(L.stopPropagation(),L.preventDefault(),U(L))}:void 0,{longPressProps:K}=N6({isDisabled:!N,onLongPress(L){L.pointerType==="touch"&&(b(L),n.setSelectionBehavior("toggle"))}}),Q=L=>{M.current==="touch"&&j.current&&L.preventDefault()},Z=m!=="none"&&n.isLink(r)?L=>{Yr.isOpening||L.preventDefault()}:void 0;return{itemProps:$e(x,T||A||a&&!c?F:{},N?K:{},{onDoubleClick:O,onDragStartCapture:Q,onClick:Z,id:e},a?{onMouseDown:L=>L.preventDefault()}:void 0),isPressed:te,isSelected:n.isSelected(r),isFocused:n.isFocused&&n.focusedKey===r,isDisabled:c,allowsSelection:T,hasAction:P}}function M2(t){return t==="Enter"}function R2(t){return t===" "}function O6(t,e){return typeof e.getChildren=="function"?e.getChildren(t.key):t.childNodes}function RF(t){return NF(t)}function NF(t,e){for(let n of t)return n}function z0(t,e,n){if(e.parentKey===n.parentKey)return e.index-n.index;let r=[...N2(t,e),e],i=[...N2(t,n),n],s=r.slice(0,i.length).findIndex((a,u)=>a!==i[u]);return s!==-1?(e=r[s],n=i[s],e.index-n.index):r.findIndex(a=>a===n)>=0?1:(i.findIndex(a=>a===e)>=0,-1)}function N2(t,e){let n=[],r=e;for(;r?.parentKey!=null;)r=t.getItem(r.parentKey),r&&n.unshift(r);return n}const P2=new WeakMap;function PF(t){let e=P2.get(t);if(e!=null)return e;let n=0,r=i=>{for(let s of i)s.type==="section"?r(O6(s,t)):s.type==="item"&&n++};return r(t),P2.set(t,n),n}function L6(t){const e=S.version.split(".");return parseInt(e[0],10)>=19?t:t?"true":void 0}class O2{constructor(e){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.iterable=e;let n=a=>{if(this.keyMap.set(a.key,a),a.childNodes&&a.type==="section")for(let u of a.childNodes)n(u)};for(let a of e)n(a);let r=null,i=0,s=0;for(let[a,u]of this.keyMap)r?(r.nextKey=a,u.prevKey=r.key):(this.firstKey=a,u.prevKey=void 0),u.type==="item"&&(u.index=i++),(u.type==="section"||u.type==="item")&&s++,r=u,r.nextKey=void 0;this._size=s,this.lastKey=r?.key??null}*[Symbol.iterator](){yield*this.iterable}get size(){return this._size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey??null:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey??null:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)??null}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}getChildren(e){return this.keyMap.get(e)?.childNodes||[]}}class Sr extends Set{constructor(e,n,r){super(e),e instanceof Sr?(this.anchorKey=n??e.anchorKey,this.currentKey=r??e.currentKey):(this.anchorKey=n??null,this.currentKey=r??null)}}function OF(t,e){if(t.size!==e.size)return!1;for(let n of t)if(!e.has(n))return!1;return!0}function V3(t){let{selectionMode:e="none",disallowEmptySelection:n=!1,allowDuplicateSelectionEvents:r,selectionBehavior:i="toggle",disabledBehavior:s="all"}=t,a=S.useRef(!1),[,u]=S.useState(!1),c=S.useRef(null),f=S.useRef(null),[,h]=S.useState(null),m=S.useMemo(()=>L2(t.selectedKeys),[t.selectedKeys]),g=S.useMemo(()=>L2(t.defaultSelectedKeys,new Sr),[t.defaultSelectedKeys]),[b,x]=eo(m,g,t.onSelectionChange),k=S.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),[E,D]=S.useState(i);i==="replace"&&E==="toggle"&&typeof b=="object"&&b.size===0&&D("replace");let T=S.useRef(i);return S.useEffect(()=>{i!==T.current&&(D(i),T.current=i)},[i]),{selectionMode:e,disallowEmptySelection:n,selectionBehavior:E,setSelectionBehavior:D,get isFocused(){return a.current},setFocused($){a.current=$,u($)},get focusedKey(){return c.current},get childFocusStrategy(){return f.current},setFocusedKey($,A="first"){c.current=$,f.current=A,h($)},selectedKeys:b,setSelectedKeys($){(r||!OF($,b))&&x($)},disabledKeys:k,disabledBehavior:s}}function L2(t,e){return t?t==="all"?"all":new Sr(t):e}class bd{constructor(e,n,r){this.collection=e,this.state=n,this.allowsCellSelection=r?.allowsCellSelection??!1,this._isSelectAll=null,this.layoutDelegate=r?.layoutDelegate||null,this.fullCollection=r?.fullCollection||null}get selectionMode(){return this.state.selectionMode}get disallowEmptySelection(){return this.state.disallowEmptySelection}get selectionBehavior(){return this.state.selectionBehavior}setSelectionBehavior(e){this.state.setSelectionBehavior(e)}get isFocused(){return this.state.isFocused}setFocused(e){this.state.setFocused(e)}get focusedKey(){return this.state.focusedKey}get childFocusStrategy(){return this.state.childFocusStrategy}setFocusedKey(e,n){(e==null||this.collection.getItem(e))&&this.state.setFocusedKey(e,n)}get selectedKeys(){return this.state.selectedKeys==="all"?new Set(this.getSelectAllKeys()):this.state.selectedKeys}get rawSelection(){return this.state.selectedKeys}isSelected(e){if(this.state.selectionMode==="none")return!1;let n=this.getKey(e);return n==null?!1:this.state.selectedKeys==="all"?this.canSelectItem(n):this.state.selectedKeys.has(n)}get isEmpty(){return this.state.selectedKeys!=="all"&&this.state.selectedKeys.size===0}get isSelectAll(){if(this.isEmpty)return!1;if(this.state.selectedKeys==="all")return!0;if(this._isSelectAll!=null)return this._isSelectAll;let e=this.getSelectAllKeys(),n=this.state.selectedKeys;return this._isSelectAll=e.every(r=>n.has(r)),this._isSelectAll}get firstSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let r=this.collection.getItem(n);(!e||r&&z0(this.collection,r,e)<0)&&(e=r)}return e?.key??null}get lastSelectedKey(){let e=null;for(let n of this.state.selectedKeys){let r=this.collection.getItem(n);(!e||r&&z0(this.collection,r,e)>0)&&(e=r)}return e?.key??null}get disabledKeys(){return this.state.disabledKeys}get disabledBehavior(){return this.state.disabledBehavior}extendSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"){this.replaceSelection(e);return}let n=this.getKey(e);if(n==null)return;let r;if(this.state.selectedKeys==="all")r=new Sr([n],n,n);else{let i=this.state.selectedKeys,s=i.anchorKey??n;r=new Sr(i,s,n);for(let a of this.getKeyRange(s,i.currentKey??n))r.delete(a);for(let a of this.getKeyRange(n,s))this.canSelectItem(a)&&r.add(a)}this.state.setSelectedKeys(r)}getKeyRange(e,n){let r=this.collection.getItem(e),i=this.collection.getItem(n);return r&&i?z0(this.collection,r,i)<=0?this.getKeyRangeInternal(e,n):this.getKeyRangeInternal(n,e):[]}getKeyRangeInternal(e,n){if(this.layoutDelegate?.getKeyRange)return this.layoutDelegate.getKeyRange(e,n);let r=[],i=e;for(;i!=null;){let s=this.collection.getItem(i);if(s&&(s.type==="item"||s.type==="cell"&&this.allowsCellSelection)&&r.push(i),i===n)return r;i=this.collection.getKeyAfter(i)}return[]}getKey(e){let n=this.collection.getItem(e);if(!n||n.type==="cell"&&this.allowsCellSelection)return e;for(;n&&n.type!=="item"&&n.parentKey!=null;)n=this.collection.getItem(n.parentKey);return!n||n.type!=="item"?null:n.key}toggleSelection(e){if(this.selectionMode==="none")return;if(this.selectionMode==="single"&&!this.isSelected(e)){this.replaceSelection(e);return}let n=this.getKey(e);if(n==null)return;let r=new Sr(this.state.selectedKeys==="all"?this.getSelectAllKeys():this.state.selectedKeys);r.has(n)?r.delete(n):this.canSelectItem(n)&&(r.add(n),r.anchorKey=n,r.currentKey=n),!(this.disallowEmptySelection&&r.size===0)&&this.state.setSelectedKeys(r)}replaceSelection(e){if(this.selectionMode==="none")return;let n=this.getKey(e);if(n==null)return;let r=this.canSelectItem(n)?new Sr([n],n,n):new Sr;this.state.setSelectedKeys(r)}setSelectedKeys(e){if(this.selectionMode==="none")return;let n=new Sr;for(let r of e){let i=this.getKey(r);if(i!=null&&(n.add(i),this.selectionMode==="single"))break}this.state.setSelectedKeys(n)}getSelectAllKeys(){let e=this.fullCollection??this.collection,n=[],r=i=>{for(;i!=null;){if(this.canSelectItemIn(i,e)){let s=e.getItem(i);s?.type==="item"&&n.push(i),s?.hasChildNodes&&(this.allowsCellSelection||s.type!=="item")&&r(RF(O6(s,e))?.key??null)}i=e.getKeyAfter(i)}};return r(e.getFirstKey()),n}selectAll(){!this.isSelectAll&&this.selectionMode==="multiple"&&this.state.setSelectedKeys("all")}clearSelection(){!this.disallowEmptySelection&&(this.state.selectedKeys==="all"||this.state.selectedKeys.size>0)&&this.state.setSelectedKeys(new Sr)}toggleSelectAll(){this.isSelectAll?this.clearSelection():this.selectAll()}select(e,n){this.selectionMode!=="none"&&(this.selectionMode==="single"?this.isSelected(e)&&!this.disallowEmptySelection?this.toggleSelection(e):this.replaceSelection(e):this.selectionBehavior==="toggle"||n&&(n.pointerType==="touch"||n.pointerType==="virtual")?this.toggleSelection(e):this.replaceSelection(e))}isSelectionEqual(e){if(e===this.state.selectedKeys)return!0;let n=this.selectedKeys;if(e.size!==n.size)return!1;for(let r of e)if(!n.has(r))return!1;for(let r of n)if(!e.has(r))return!1;return!0}canSelectItem(e){return this.canSelectItemIn(e,this.collection)}canSelectItemIn(e,n){if(this.state.selectionMode==="none"||this.state.disabledKeys.has(e))return!1;let r=n.getItem(e);return!(!r||r?.props?.isDisabled||r.type==="cell"&&!this.allowsCellSelection)}isDisabled(e){let n=this.collection.getItem(e);return this.state.disabledBehavior==="all"&&(this.state.disabledKeys.has(e)||!!n?.props?.isDisabled)&&n?.props?.disabledBehavior!=="selection"}isLink(e){return!!this.collection.getItem(e)?.props?.href}getItemProps(e){return this.collection.getItem(e)?.props}withCollection(e){return new bd(e,this.state,{allowsCellSelection:this.allowsCellSelection,layoutDelegate:this.layoutDelegate||void 0,fullCollection:this.fullCollection??this.collection})}}class LF{build(e,n){return this.context=n,z2(()=>this.iterateCollection(e))}*iterateCollection(e){let{children:n,items:r}=e;if(V.isValidElement(n)&&n.type===V.Fragment)yield*this.iterateCollection({children:n.props.children,items:r});else if(typeof n=="function"){if(!r)throw new Error("props.children was a function but props.items is missing");let i=0;for(let s of r)yield*this.getFullNode({value:s,index:i},{renderer:n}),i++}else{let i=[];V.Children.forEach(n,a=>{a&&i.push(a)});let s=0;for(let a of i){let u=this.getFullNode({element:a,index:s},{});for(let c of u)s++,yield c}}}getKey(e,n,r,i){if(e.key!=null)return e.key;if(n.type==="cell"&&n.key!=null)return`${i}${n.key}`;let s=n.value;if(s!=null){let a=s.key??s.id;if(a==null)throw new Error("No key found for item");return a}return i?`${i}.${n.index}`:`$.${n.index}`}getChildState(e,n){return{renderer:n.renderer||e.renderer}}*getFullNode(e,n,r,i){if(V.isValidElement(e.element)&&e.element.type===V.Fragment){let c=[];V.Children.forEach(e.element.props.children,h=>{c.push(h)});let f=e.index??0;for(const h of c)yield*this.getFullNode({element:h,index:f++},n,r,i);return}let s=e.element;if(!s&&e.value&&n&&n.renderer){let c=this.cache.get(e.value);if(c&&(!c.shouldInvalidate||!c.shouldInvalidate(this.context))){c.index=e.index,c.parentKey=i?i.key:null,yield c;return}s=n.renderer(e.value)}if(V.isValidElement(s)){let c=s.type;if(typeof c!="function"&&typeof c.getCollectionNode!="function"){let g=s.type;throw new Error(`Unknown element <${g}> in collection.`)}let f=c.getCollectionNode(s.props,this.context),h=e.index??0,m=f.next();for(;!m.done&&m.value;){let g=m.value;e.index=h;let b=g.key??null;b==null&&(b=g.element?null:this.getKey(s,e,n,r));let k=[...this.getFullNode({...g,key:b,index:h,wrapper:zF(e.wrapper,g.wrapper)},this.getChildState(n,g),r?`${r}${s.key}`:s.key,i)];for(let E of k){if(E.value=g.value??e.value??null,E.value&&this.cache.set(E.value,E),e.type&&E.type!==e.type)throw new Error(`Unsupported type <${I0(E.type)}> in <${I0(i?.type??"unknown parent type")}>. Only <${I0(e.type)}> is supported.`);h++,yield E}m=f.next(k)}return}if(e.key==null||e.type==null)return;let a=this,u={type:e.type,props:e.props,key:e.key,parentKey:i?i.key:null,value:e.value??null,level:(i?.level??0)+(i?.type==="item"?1:0),index:e.index,rendered:e.rendered,textValue:e.textValue??"","aria-label":e["aria-label"],wrapper:e.wrapper,shouldInvalidate:e.shouldInvalidate,hasChildNodes:e.hasChildNodes||!1,childNodes:z2(function*(){if(!e.hasChildNodes||!e.childNodes)return;let c=0;for(let f of e.childNodes()){f.key!=null&&(f.key=`${u.key}${f.key}`);let h=a.getFullNode({...f,index:c},a.getChildState(n,f),u.key,u);for(let m of h)c++,yield m}})};yield u}constructor(){this.cache=new WeakMap}}function z2(t){let e=[],n=null;return{*[Symbol.iterator](){for(let r of e)yield r;n||(n=t());for(let r of n)e.push(r),yield r}}}function zF(t,e){if(t&&e)return n=>t(e(n));if(t)return t;if(e)return e}function I0(t){return t[0].toUpperCase()+t.slice(1)}function z6(t,e,n){let r=S.useMemo(()=>new LF,[]),{children:i,items:s,collection:a}=t;return S.useMemo(()=>{if(a)return a;let c=r.build({children:i,items:s},n);return e(c)},[r,i,s,a,n,e])}function IF(t){let{filter:e,layoutDelegate:n}=t,r=V3(t),i=S.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),s=S.useCallback(f=>e?new O2(e(f)):new O2(f),[e]),a=S.useMemo(()=>({suppressTextValueWarning:t.suppressTextValueWarning}),[t.suppressTextValueWarning]),u=z6(t,s,a),c=S.useMemo(()=>new bd(u,r,{layoutDelegate:n}),[u,r,n]);return I6(u,c),{collection:u,disabledKeys:i,selectionManager:c}}function jF(t,e){let n=S.useMemo(()=>e?t.collection.filter(e):t.collection,[t.collection,e]),r=t.selectionManager.withCollection(n);return I6(n,r),{collection:n,selectionManager:r,disabledKeys:t.disabledKeys}}function I6(t,e){const n=S.useRef(null);S.useEffect(()=>{if(e.focusedKey!=null&&!t.getItem(e.focusedKey)&&n.current){let r=n.current.getKeyAfter(e.focusedKey),i=null;for(;r!=null;){let s=t.getItem(r);if(s&&s.type==="item"&&!e.isDisabled(r)){i=r;break}r=n.current.getKeyAfter(r)}if(i==null)for(r=n.current.getKeyBefore(e.focusedKey);r!=null;){let s=t.getItem(r);if(s&&s.type==="item"&&!e.isDisabled(r)){i=r;break}r=n.current.getKeyBefore(r)}e.setFocusedKey(i)}n.current=t},[t,e])}function j6(t,e){let{collection:n,onLoadMore:r,scrollOffset:i=1}=t,s=S.useRef(null),a=Pt(u=>{for(let c of u)c.isIntersecting&&r&&r()});ze(()=>(e.current&&(s.current=new IntersectionObserver(a,{root:Wr(e?.current),rootMargin:`0px ${100*i}% ${100*i}% ${100*i}%`}),s.current.observe(e.current)),()=>{s.current&&s.current.disconnect()}),[n,e,i])}const qc=S.createContext(null);ma(tp,function(e,n,r){let i=S.useContext(qc),{isLoading:s,onLoadMore:a,scrollOffset:u,...c}=e,f=S.useRef(null),h=S.useMemo(()=>({onLoadMore:a,collection:i?.collection,sentinelRef:f,scrollOffset:u}),[a,u,i?.collection]);j6(h,f);let m=wt({...c,id:void 0,children:r.rendered,defaultClassName:"react-aria-ListBoxLoadingIndicator",values:void 0}),g={tabIndex:-1};return V.createElement(V.Fragment,null,V.createElement("div",{style:{position:"relative",width:0,height:0},inert:L6(!0)},V.createElement("div",{"data-testid":"loadMoreSentinel",ref:f,style:{position:"absolute",height:1,width:1}})),s&&m.children&&V.createElement(V.Fragment,null,V.createElement(ot.div,{...$e(Ze(e,{global:!0}),g),...m,role:"option",ref:n},m.children)))});const FF=S.createContext({placement:"bottom"}),KF=typeof HTMLElement<"u"&&"inert"in HTMLElement.prototype;function I2(t){return t.dataset.liveAnnouncer==="true"||t.dataset.reactAriaTopLayer!==void 0}let Xu=new WeakMap,Pn=[];function H3(t,e){let n=pn(t?.[0]),r=e instanceof n.Element?{root:e}:e,i=r?.root??document.body,s=r?.shouldUseInert&&KF,a=new Set(t),u=new Set,c=E=>s&&E instanceof n.HTMLElement?E.inert:E.getAttribute("aria-hidden")==="true",f=(E,D)=>{s&&E instanceof n.HTMLElement?E.inert=D:D?E.setAttribute("aria-hidden","true"):(E.removeAttribute("aria-hidden"),E instanceof n.HTMLElement&&(E.inert=!1))},h=new Set;if(Si())for(let E of t){let D=E;for(;D&&D!==i;){let T=D.getRootNode();"shadowRoot"in T&&h.add(T.shadowRoot),D=T.parentNode}}let m=E=>{for(let A of E.querySelectorAll("[data-live-announcer], [data-react-aria-top-layer]"))a.add(A);let D=A=>{if(u.has(A)||a.has(A)||A.parentElement&&u.has(A.parentElement)&&A.parentElement.getAttribute("role")!=="row")return NodeFilter.FILTER_REJECT;for(let B of a)if(we(A,B))return NodeFilter.FILTER_SKIP;return NodeFilter.FILTER_ACCEPT},T=$6(Ie(E),E,NodeFilter.SHOW_ELEMENT,{acceptNode:D}),$=D(E);if($===NodeFilter.FILTER_ACCEPT&&g(E),$!==NodeFilter.FILTER_REJECT){let A=T.nextNode();for(;A!=null;)g(A),A=T.nextNode()}},g=E=>{let D=Xu.get(E)??0;c(E)&&D===0||(D===0&&f(E,!0),u.add(E),Xu.set(E,D+1))};Pn.length&&Pn[Pn.length-1].disconnect(),m(i);let b=new MutationObserver(E=>{for(let D of E)if(D.type==="childList"){if(D.target.isConnected&&![...a,...u].some(T=>we(T,D.target)))for(let T of D.addedNodes)(T instanceof HTMLElement||T instanceof SVGElement)&&I2(T)?a.add(T):T instanceof Element&&m(T);if(Si()){for(let T of h)if(!T.isConnected){b.disconnect();break}}}});b.observe(i,{childList:!0,subtree:!0});let x=new Set;if(Si())for(let E of h){let D=new MutationObserver(T=>{for(let $ of T)if($.type==="childList"){if($.target.isConnected&&![...a,...u].some(A=>we(A,$.target)))for(let A of $.addedNodes)(A instanceof HTMLElement||A instanceof SVGElement)&&I2(A)?a.add(A):A instanceof Element&&m(A);if(Si()){for(let A of h)if(!A.isConnected){b.disconnect();break}}}});D.observe(E,{childList:!0,subtree:!0}),x.add(D)}let k={visibleNodes:a,hiddenNodes:u,observe(){b.observe(i,{childList:!0,subtree:!0})},disconnect(){b.disconnect()}};return Pn.push(k),()=>{if(b.disconnect(),Si())for(let E of x)E.disconnect();for(let E of u){let D=Xu.get(E);D!=null&&(D===1?(f(E,!1),Xu.delete(E)):Xu.set(E,D-1))}k===Pn[Pn.length-1]?(Pn.pop(),Pn.length&&Pn[Pn.length-1].observe()):Pn.splice(Pn.indexOf(k),1)}}function _F(t){let e=Pn[Pn.length-1];if(e&&!e.visibleNodes.has(t))return e.visibleNodes.add(t),()=>{e.visibleNodes.delete(t)}}const hr={top:"top",bottom:"top",left:"left",right:"left"},sp={top:"bottom",bottom:"top",left:"right",right:"left"},VF={top:"left",left:"top"},c4={top:"height",left:"width"},F6={width:"totalWidth",height:"totalHeight"},rh={};let HF=()=>typeof document<"u"?window.visualViewport:null;function j2(t,e){let n=0,r=0,i=0,s=0,a=0,u=0,c={},f=(e?.scale??1)>1;if(t.tagName==="BODY"||t.tagName==="HTML"){let h=document.documentElement;i=h.clientWidth,s=h.clientHeight,n=e?.width??i,r=e?.height??s,c.top=h.scrollTop||t.scrollTop,c.left=h.scrollLeft||t.scrollLeft,e&&(a=e.offsetTop,u=e.offsetLeft)}else({width:n,height:r,top:a,left:u}=Gc(t,!1)),c.top=t.scrollTop,c.left=t.scrollLeft,i=n,s=r;return $3()&&(t.tagName==="BODY"||t.tagName==="HTML")&&f&&(c.top=0,c.left=0,a=e?.pageTop??0,u=e?.pageLeft??0),{width:n,height:r,totalWidth:i,totalHeight:s,scroll:c,top:a,left:u}}function UF(t){return{top:t.scrollTop,left:t.scrollLeft,width:t.scrollWidth,height:t.scrollHeight}}function F2(t,e,n,r,i,s,a){let u=i.scroll[t]??0,c=r[c4[t]],f=a[t]+r.scroll[hr[t]]+s,h=a[t]+r.scroll[hr[t]]+c-s,m=e-u+r.scroll[hr[t]]+a[t]-r[hr[t]],g=e-u+n+r.scroll[hr[t]]+a[t]-r[hr[t]];return m<f?f-m:g>h?Math.max(h-g,f-m):0}function qF(t){let e=window.getComputedStyle(t);return{top:parseInt(e.marginTop,10)||0,bottom:parseInt(e.marginBottom,10)||0,left:parseInt(e.marginLeft,10)||0,right:parseInt(e.marginRight,10)||0}}function K2(t){if(rh[t])return rh[t];let[e,n]=t.split(" "),r=hr[e]||"right",i=VF[r];hr[n]||(n="center");let s=c4[r],a=c4[i];return rh[t]={placement:e,crossPlacement:n,axis:r,crossAxis:i,size:s,crossSize:a},rh[t]}function j0(t,e,n,r,i,s,a,u,c,f,h){let{placement:m,crossPlacement:g,axis:b,crossAxis:x,size:k,crossSize:E}=r,D={};D[x]=t[x]??0,g==="center"?D[x]+=((t[E]??0)-(n[E]??0))/2:g!==x&&(D[x]+=(t[E]??0)-(n[E]??0)),D[x]+=s;const T=t[x]-n[E]+c+f,$=t[x]+t[E]-c-f;if(D[x]=r4(D[x],T,$),m===b){let A=u?h[k]:h[F6[k]];D[sp[b]]=Math.floor(A-t[b]+i)}else D[b]=Math.floor(t[b]+t[k]+i);return D}function GF(t,e,n,r,i,s,a,u,c,f,h){let m=(t.top!=null?t.top:c[F6.height]-(t.bottom??0)-a)-(c.scroll.top??0),g=f?n.top:0,b={top:Math.max(e.top+g,(h?.offsetTop??e.top)+g),bottom:Math.min(e.top+e.height+g,(h?.offsetTop??0)+(h?.height??0))};return u!=="top"?Math.max(0,b.bottom-m-((i.top??0)+(i.bottom??0)+s)):Math.max(0,m+a-b.top-((i.top??0)+(i.bottom??0)+s))}function _2(t,e,n,r,i,s,a,u){let{placement:c,axis:f,size:h}=s;return c===f?Math.max(0,n[f]-(a.scroll[f]??0)-(t[f]+(u?e[f]:0))-(r[f]??0)-r[sp[f]]-i):Math.max(0,t[h]+t[f]+(u?e[f]:0)-n[f]-n[h]+(a.scroll[f]??0)-(r[f]??0)-r[sp[f]]-i)}function WF(t,e,n,r,i,s,a,u,c,f,h,m,g,b,x,k,E,D){let T=K2(t),{size:$,crossAxis:A,crossSize:B,placement:P,crossPlacement:M}=T,N=j0(e,u,n,T,h,m,f,g,x,k,c),j=h,G=_2(u,f,e,i,s+h,T,c,E);if(a&&n[$]>G){let ue=K2(`${sp[P]} ${M}`),he=j0(e,u,n,ue,h,m,f,g,x,k,c);_2(u,f,e,i,s+h,ue,c,E)>G&&(T=ue,N=he,j=h)}let W="bottom";T.axis==="top"?T.placement==="top"?W="top":T.placement==="bottom"&&(W="bottom"):T.crossAxis==="top"&&(T.crossPlacement==="top"?W="bottom":T.crossPlacement==="bottom"&&(W="top"));let U=F2(A,N[A],n[B],u,c,s,f);N[A]+=U;let ne=GF(N,u,f,g,i,s,n.height,W,c,E,D);b&&b<ne&&(ne=b),n.height=Math.min(n.height,ne),N=j0(e,u,n,T,j,m,f,g,x,k,c),U=F2(A,N[A],n[B],u,c,s,f),N[A]+=U;let F={},te=e[A]-N[A]-i[hr[A]],O=te+.5*e[B];const K=x/2+k,Q=hr[A]==="left"?(i.left??0)+(i.right??0):(i.top??0)+(i.bottom??0),Z=n[B]-Q-x/2-k,L=e[A]+x/2-(N[A]+i[hr[A]]),z=e[A]+e[B]-x/2-(N[A]+i[hr[A]]),H=r4(O,L,z);F[A]=r4(H,K,Z),{placement:P,crossPlacement:M}=T,x?te=F[A]:M==="right"?te+=e[B]:M==="center"&&(te+=e[B]/2);let re=P==="left"||P==="top"?n[$]:0,le={x:P==="top"||P==="bottom"?te:re,y:P==="left"||P==="right"?te:re};return{position:N,maxHeight:ne,arrowOffsetLeft:F.left,arrowOffsetTop:F.top,placement:P,triggerAnchorPoint:le}}function QF(t){let{placement:e,targetNode:n,overlayNode:r,scrollNode:i,padding:s,shouldFlip:a,boundaryElement:u,offset:c,crossOffset:f,maxHeight:h,arrowSize:m=0,arrowBoundaryOffset:g=0,targetRect:b}=t,x=HF(),k=r instanceof HTMLElement?YF(r):document.documentElement,E=k===document.documentElement;const D=window.getComputedStyle(k).position;let T=!!D&&D!=="static",$=E?Gc(n,!1,b):V2(n,k,!1,b);if(!E){let{marginTop:W,marginLeft:U}=window.getComputedStyle(n);$.top+=parseInt(W,10)||0,$.left+=parseInt(U,10)||0}let A=Gc(r,!0),B=qF(r);A.width+=(B.left??0)+(B.right??0),A.height+=(B.top??0)+(B.bottom??0);let P=UF(i),M=j2(u,x),N=j2(k,x),j;if((u.tagName==="BODY"||u.tagName==="HTML")&&!E){let W=Dm(k,!1);j={top:-(W.top-M.top),left:-(W.left-M.left),width:0,height:0}}else(u.tagName==="BODY"||u.tagName==="HTML")&&E?j={top:0,left:0,width:0,height:0}:j=V2(u,k,!1);let G=we(u,k);return WF(e,$,A,P,B,s,a,M,N,j,c,f,T,h,m,g,G,x)}function Dm(t,e){let{top:n,left:r,width:i,height:s}=t.getBoundingClientRect();return e&&t instanceof t.ownerDocument.defaultView.HTMLElement&&(i=t.offsetWidth,s=t.offsetHeight),{top:n,left:r,width:i,height:s}}function Gc(t,e,n){let{top:r,left:i,width:s,height:a}=n||Dm(t,e),{scrollTop:u,scrollLeft:c,clientTop:f,clientLeft:h}=document.documentElement;return{top:r+u-f,left:i+c-h,width:s,height:a}}function V2(t,e,n,r){let i=window.getComputedStyle(t),s;if(i.position==="fixed")s=r||Dm(t,n);else{s=Gc(t,n,r);let a=Gc(e,n),u=window.getComputedStyle(e);a.top+=(parseInt(u.borderTopWidth,10)||0)-e.scrollTop,a.left+=(parseInt(u.borderLeftWidth,10)||0)-e.scrollLeft,s.top-=a.top,s.left-=a.left}return s.top-=parseInt(i.marginTop,10)||0,s.left-=parseInt(i.marginLeft,10)||0,s}function YF(t){let e=t.offsetParent;if(e&&e===document.body&&window.getComputedStyle(e).position==="static"&&!H2(e)&&(e=document.documentElement),e==null)for(e=t.parentElement;e&&!H2(e);)e=e.parentElement;return e||document.documentElement}function H2(t){let e=window.getComputedStyle(t);return e.transform!=="none"||/transform|perspective/.test(e.willChange)||e.filter!=="none"||e.contain==="paint"||"backdropFilter"in e&&e.backdropFilter!=="none"||"WebkitBackdropFilter"in e&&e.WebkitBackdropFilter!=="none"}const K6=new WeakMap;function XF(t){let{triggerRef:e,isOpen:n,onClose:r}=t;S.useEffect(()=>{if(!n||r===null)return;let i=s=>{let a=de(s);if(!e.current||a instanceof Node&&!we(a,e.current)||a instanceof HTMLInputElement||a instanceof HTMLTextAreaElement)return;let u=r||K6.get(e.current);u&&u()};return window.addEventListener("scroll",i,!0),()=>{window.removeEventListener("scroll",i,!0)}},[n,r,e])}function JF(){return typeof window.ResizeObserver<"u"}function d4(t){const{ref:e,box:n,onResize:r}=t;let i=Pt(r);S.useEffect(()=>{let s=e?.current;if(s)if(JF()){const a=new window.ResizeObserver(u=>{u.length&&i()});return a.observe(s,{box:n}),()=>{s&&a.unobserve(s)}}else return window.addEventListener("resize",i,!1),()=>{window.removeEventListener("resize",i,!1)}},[e,n])}let To=typeof document<"u"?window.visualViewport:null;function ZF(t){let{direction:e}=Ki(),{arrowSize:n,targetRef:r,overlayRef:i,arrowRef:s,scrollRef:a=i,placement:u="bottom",containerPadding:c=12,shouldFlip:f=!0,boundaryElement:h=typeof document<"u"?document.body:null,offset:m=0,crossOffset:g=0,shouldUpdatePosition:b=!0,isOpen:x=!0,onClose:k,maxHeight:E,arrowBoundaryOffset:D=0,getTargetRect:T}=t,[$,A]=S.useState(null),B=[b,u,i.current,r.current,s?.current,a.current,c,f,h,m,g,x,e,E,D,n],P=S.useRef(To?.scale);S.useEffect(()=>{x&&(P.current=To?.scale)},[x]);let M=S.useCallback(()=>{if(b===!1||!x||!i.current||!r.current||!h||To?.scale!==P.current)return;let G=null;if(a.current&&Rl(a.current)){let F=_e()?.getBoundingClientRect(),te=a.current.getBoundingClientRect();G={type:"top",offset:(F?.top??0)-te.top},G.offset>te.height/2&&(G.type="bottom",G.offset=(F?.bottom??0)-te.bottom)}let W=i.current;!E&&i.current&&(W.style.top="0px",W.style.bottom="",W.style.maxHeight=(window.visualViewport?.height??window.innerHeight)+"px");let U=QF({placement:tK(u,e),overlayNode:i.current,targetNode:r.current,scrollNode:a.current||i.current,padding:c,shouldFlip:f,boundaryElement:h,offset:m,crossOffset:g,maxHeight:E,arrowSize:n??(s?.current?Dm(s.current,!0).width:0),arrowBoundaryOffset:D,targetRect:T?.(r.current)});if(!U.position)return;W.style.top="",W.style.bottom="",W.style.left="",W.style.right="",Object.keys(U.position).forEach(F=>W.style[F]=U.position[F]+"px"),W.style.maxHeight=U.maxHeight!=null?U.maxHeight+"px":"";let ne=_e();if(G&&ne&&a.current){let F=ne.getBoundingClientRect(),te=a.current.getBoundingClientRect(),O=F[G.type]-te[G.type];a.current.scrollTop+=O-G.offset}A(U)},B);ze(M,B),eK(M),d4({ref:i,onResize:M}),d4({ref:r,onResize:M});let N=S.useRef(!1);ze(()=>{let G,W=()=>{N.current=!0,clearTimeout(G),G=setTimeout(()=>{N.current=!1},500),M()},U=()=>{N.current&&W()};return To?.addEventListener("resize",W),To?.addEventListener("scroll",U),()=>{To?.removeEventListener("resize",W),To?.removeEventListener("scroll",U)}},[M]);let j=S.useCallback(()=>{N.current||k?.()},[k,N]);return XF({triggerRef:r,isOpen:x,onClose:k&&j}),{overlayProps:{style:{position:$?"absolute":"fixed",top:$?void 0:0,left:$?void 0:0,zIndex:1e5,...$?.position,maxHeight:$?.maxHeight??"100vh"}},placement:$?.placement??null,triggerAnchorPoint:$?.triggerAnchorPoint??null,arrowProps:{"aria-hidden":"true",role:"presentation",style:{left:$?.arrowOffsetLeft,top:$?.arrowOffsetTop}},updatePosition:M}}function eK(t){ze(()=>(window.addEventListener("resize",t,!1),()=>{window.removeEventListener("resize",t,!1)}),[t])}function tK(t,e){return e==="rtl"?t.replace("start","right").replace("end","left"):t.replace("start","left").replace("end","right")}function nK(t){let{ref:e,onInteractOutside:n,isDisabled:r,onInteractOutsideStart:i}=t,s=S.useRef({isPointerDown:!1,ignoreEmulatedMouseEvents:!1}),a=Pt(c=>{n&&U2(c,e)&&(i&&i(c),s.current.isPointerDown=!0)}),u=Pt(c=>{n&&n(c)});S.useEffect(()=>{let c=s.current;if(r)return;const f=e.current,h=Ie(f);if(typeof PointerEvent<"u"){let m=g=>{c.isPointerDown&&U2(g,e)&&u(g),c.isPointerDown=!1};return h.addEventListener("pointerdown",a,!0),h.addEventListener("click",m,!0),()=>{h.removeEventListener("pointerdown",a,!0),h.removeEventListener("click",m,!0)}}},[e,r])}function U2(t,e){if(t.button>0)return!1;let n=de(t);if(n){const r=n.ownerDocument;if(!r||!we(r.documentElement,n)||n.closest("[data-react-aria-top-layer]"))return!1}return e.current?!t.composedPath().includes(e.current):!1}const Fr=[];function _6(t,e){let{onClose:n,shouldCloseOnBlur:r,isOpen:i,isDismissable:s=!1,isKeyboardDismissDisabled:a=!1,shouldCloseOnInteractOutside:u}=t,c=S.useRef(void 0);S.useEffect(()=>{if(i&&!Fr.includes(e))return Fr.push(e),()=>{let x=Fr.indexOf(e);x>=0&&Fr.splice(x,1)}},[i,e]);let f=()=>{Fr[Fr.length-1]===e&&n&&n()},h=x=>{const k=Fr[Fr.length-1];c.current=k,(!u||u(de(x)))&&k===e&&x.stopPropagation()},m=x=>{(!u||u(de(x)))&&(Fr[Fr.length-1]===e&&x.stopPropagation(),c.current===e&&f()),c.current=void 0},g=x=>{x.key==="Escape"&&!a&&!x.nativeEvent.isComposing&&(x.stopPropagation(),x.preventDefault(),f())};nK({ref:e,onInteractOutside:s&&i?m:void 0,onInteractOutsideStart:h});let{focusWithinProps:b}=P3({isDisabled:!r,onBlurWithin:x=>{!x.relatedTarget||kF(x.relatedTarget)||(!u||u(x.relatedTarget))&&n?.()}});return{overlayProps:{onKeyDown:g,...b},underlayProps:{}}}const vc=typeof document<"u"&&window.visualViewport;let ih=0,F0;function V6(t={}){let{isDisabled:e}=t;ze(()=>{if(!e)return ih++,ih===1&&(Oi()?F0=iK():F0=rK()),()=>{ih--,ih===0&&F0()}},[e])}function rK(){let t=window.innerWidth-document.documentElement.clientWidth;return Xs(t>0&&("scrollbarGutter"in document.documentElement.style?Oh(document.documentElement,"scrollbarGutter","stable"):Oh(document.documentElement,"paddingRight",`${t}px`)),Oh(document.documentElement,"overflow","hidden"))}function iK(){let t=Oh(document.documentElement,"overflow","hidden"),e,n=!1,r=h=>{let m=de(h);e=Us(m)?m:Wr(m,!0),n=!1;let g=m.ownerDocument.defaultView.getSelection();g&&!g.isCollapsed&&g.containsNode(m,!0)&&(n=!0),h.composedPath().some(b=>b instanceof HTMLInputElement&&b.type==="range")&&(n=!0),"selectionStart"in m&&"selectionEnd"in m&&m.selectionStart<m.selectionEnd&&m.ownerDocument.activeElement===m&&(n=!0)},i=document.createElement("style"),s=B$();s&&(i.nonce=s),i.textContent=`
16
+ @layer {
17
+ * {
18
+ overscroll-behavior: contain;
19
+ }
20
+ }`.trim(),document.head.prepend(i);let a=h=>{if(!(h.touches.length===2||n)){if(!e||e===document.documentElement||e===document.body){h.preventDefault();return}e.scrollHeight===e.clientHeight&&e.scrollWidth===e.clientWidth&&h.preventDefault()}},u=h=>{let m=de(h),g=h.relatedTarget;g&&xc(g)?(g.focus({preventScroll:!0}),q2(g,xc(m))):g||m.parentElement?.closest("[tabindex]")?.focus({preventScroll:!0})},c=HTMLElement.prototype.focus;HTMLElement.prototype.focus=function(h){let m=_e(),g=m!=null&&xc(m);c.call(this,{...h,preventScroll:!0}),(!h||!h.preventScroll)&&q2(this,g)};let f=Xs(K0(document,"touchstart",r,{passive:!1,capture:!0}),K0(document,"touchmove",a,{passive:!1,capture:!0}),K0(document,"blur",u,!0));return()=>{t(),f(),i.remove(),HTMLElement.prototype.focus=c}}function Oh(t,e,n){let r=t.style[e];return t.style[e]=n,()=>{t.style[e]=r}}function K0(t,e,n,r){return t.addEventListener(e,n,r),()=>{t.removeEventListener(e,n,r)}}function q2(t,e){e||!vc?G2(t):vc.addEventListener("resize",()=>G2(t),{once:!0})}function G2(t){let e=document.scrollingElement||document.documentElement,n=t;for(;n&&n!==e;){let r=Wr(n);if(r!==document.documentElement&&r!==document.body&&r!==n){let i=r.getBoundingClientRect(),s=n.getBoundingClientRect();if(s.top<i.top||s.bottom>i.top+n.clientHeight){let a=i.bottom;vc&&(a=Math.min(a,vc.offsetTop+vc.height));let u=s.top-i.top-((a-i.top)/2-s.height/2);r.scrollTo({top:Math.max(0,Math.min(r.scrollHeight-r.clientHeight,r.scrollTop+u)),behavior:"smooth"})}}n=r.parentElement}}function sK(t,e){let{triggerRef:n,popoverRef:r,groupRef:i,isNonModal:s,isKeyboardDismissDisabled:a,shouldCloseOnInteractOutside:u,...c}=t,f=c.trigger==="SubmenuTrigger",{overlayProps:h,underlayProps:m}=_6({isOpen:e.isOpen,onClose:e.close,shouldCloseOnBlur:!0,isDismissable:!s||f,isKeyboardDismissDisabled:a,shouldCloseOnInteractOutside:u},i??r),{overlayProps:g,arrowProps:b,placement:x,triggerAnchorPoint:k}=ZF({...c,targetRef:n,overlayRef:r,isOpen:e.isOpen,onClose:s&&!f?e.close:null});return V6({isDisabled:s||!e.isOpen}),S.useEffect(()=>{if(e.isOpen&&r.current)return s?_F(i?.current??r.current):H3([i?.current??r.current],{shouldUseInert:!0})},[s,e.isOpen,r,i]),{popoverProps:$e(h,g),arrowProps:b,underlayProps:m,placement:x,triggerAnchorPoint:k}}var H6={};H6={dismiss:"تجاهل"};var U6={};U6={dismiss:"Отхвърляне"};var q6={};q6={dismiss:"Odstranit"};var G6={};G6={dismiss:"Luk"};var W6={};W6={dismiss:"Schließen"};var Q6={};Q6={dismiss:"Απόρριψη"};var Y6={};Y6={dismiss:"Dismiss"};var X6={};X6={dismiss:"Descartar"};var J6={};J6={dismiss:"Lõpeta"};var Z6={};Z6={dismiss:"Hylkää"};var eT={};eT={dismiss:"Rejeter"};var tT={};tT={dismiss:"התעלם"};var nT={};nT={dismiss:"Odbaci"};var rT={};rT={dismiss:"Elutasítás"};var iT={};iT={dismiss:"Ignora"};var sT={};sT={dismiss:"閉じる"};var oT={};oT={dismiss:"무시"};var aT={};aT={dismiss:"Atmesti"};var lT={};lT={dismiss:"Nerādīt"};var uT={};uT={dismiss:"Lukk"};var cT={};cT={dismiss:"Negeren"};var dT={};dT={dismiss:"Zignoruj"};var fT={};fT={dismiss:"Descartar"};var hT={};hT={dismiss:"Dispensar"};var pT={};pT={dismiss:"Revocare"};var mT={};mT={dismiss:"Пропустить"};var gT={};gT={dismiss:"Zrušiť"};var bT={};bT={dismiss:"Opusti"};var yT={};yT={dismiss:"Odbaci"};var xT={};xT={dismiss:"Avvisa"};var vT={};vT={dismiss:"Kapat"};var kT={};kT={dismiss:"Скасувати"};var CT={};CT={dismiss:"取消"};var ET={};ET={dismiss:"關閉"};var DT={};DT={"ar-AE":H6,"bg-BG":U6,"cs-CZ":q6,"da-DK":G6,"de-DE":W6,"el-GR":Q6,"en-US":Y6,"es-ES":X6,"et-EE":J6,"fi-FI":Z6,"fr-FR":eT,"he-IL":tT,"hr-HR":nT,"hu-HU":rT,"it-IT":iT,"ja-JP":sT,"ko-KR":oT,"lt-LT":aT,"lv-LV":lT,"nb-NO":uT,"nl-NL":cT,"pl-PL":dT,"pt-BR":fT,"pt-PT":hT,"ro-RO":pT,"ru-RU":mT,"sk-SK":gT,"sl-SI":bT,"sr-SP":yT,"sv-SE":xT,"tr-TR":vT,"uk-UA":kT,"zh-CN":CT,"zh-TW":ET};function oK(t){return t&&t.__esModule?t.default:t}function f4(t){let{onDismiss:e,...n}=t,r=yr(oK(DT),"@react-aria/overlays"),i=A3(n,r.format("dismiss")),s=()=>{e&&e()};return V.createElement(Uj,null,V.createElement("button",{...i,tabIndex:-1,onClick:s,style:{width:1,height:1}}))}const ST=V.forwardRef(({children:t,...e},n)=>{let r=S.useRef(!1),i=S.useContext(Uc),s=$e(i||{},{...e,register(){r.current=!0,i&&i.register()}});return s.ref=Zs(n||i?.ref),B3(i,s.ref),S.useEffect(()=>{r.current||(r.current=!0)},[]),V.createElement(Uc.Provider,{value:s},t)});function aK({children:t}){let e=S.useMemo(()=>({register:()=>{}}),[]);return V.createElement(Uc.Provider,{value:e},t)}const lK=S.createContext({});function uK(){return S.useContext(lK)??{}}const wT=V.createContext(null);function h4(t){let e=Js(),{portalContainer:n=e?null:document.body,isExiting:r}=t,[i,s]=S.useState(!1),a=S.useMemo(()=>({contain:i,setContain:s}),[i,s]),{getContainer:u}=uK();if(!t.portalContainer&&u&&(n=u()),!n)return null;let c=t.children;return t.disableFocusManagement||(c=V.createElement(F3,{restoreFocus:!0,contain:(t.shouldContainFocus||i)&&!r},c)),c=V.createElement(wT.Provider,{value:a},V.createElement(aK,null,c)),aw.createPortal(c,n)}function $T(){let e=S.useContext(wT)?.setContain;ze(()=>{e?.(!0)},[e])}function U3(t){let[e,n]=eo(t.isOpen,t.defaultOpen||!1,t.onOpenChange);const r=S.useCallback(()=>{n(!0)},[n]),i=S.useCallback(()=>{n(!1)},[n]),s=S.useCallback(()=>{n(!e)},[n,e]);return{isOpen:e,setOpen:n,open:r,close:i,toggle:s}}function q3(t,e=!0){let[n,r]=S.useState(!0),i=n&&e;return ze(()=>{if(i&&t.current&&"getAnimations"in t.current)for(let s of t.current.getAnimations())s instanceof CSSTransition&&s.cancel()},[t,i]),TT(t,i,S.useCallback(()=>r(!1),[])),i}function p4(t,e){let[n,r]=S.useState(e?"open":"closed");switch(n){case"open":e||r("exiting");break;case"closed":case"exiting":e&&r("open");break}let i=n==="exiting";return TT(t,i,S.useCallback(()=>{r(s=>s==="exiting"?"closed":s)},[])),i}function TT(t,e,n){ze(()=>{if(e&&t.current){if(!("getAnimations"in t.current)){n();return}let r=t.current.getAnimations();if(r.length===0){n();return}let i=!1;return Promise.allSettled(r.map(s=>s.finished)).then(()=>{i||ha.flushSync(()=>{n()})}),()=>{i=!0}}},[t,e,n])}const Wc=S.createContext(null),W2=S.createContext(null),Sm=S.forwardRef(function(e,n){[e,n]=Ct(e,n,Wc);let r=S.useContext(ga),i=U3(e),s=e.isOpen!=null||e.defaultOpen!=null||!r?i:r,a=p4(n,s.isOpen)||e.isExiting||!1,u=S$(),{direction:c}=Ki();if(u){let f=e.children;return typeof f=="function"&&(f=f({trigger:e.trigger||null,placement:"bottom",isEntering:!1,isExiting:!1,defaultChildren:null})),V.createElement(V.Fragment,null,f)}return s&&!s.isOpen&&!a?null:V.createElement(cK,{...e,triggerRef:e.triggerRef,state:s,popoverRef:n,isExiting:a,dir:c})});function cK({state:t,isExiting:e,UNSTABLE_portalContainer:n,clearContexts:r,...i}){let s=S.useRef(null),a=S.useRef(null),u=S.useContext(W2),c=u&&i.trigger==="SubmenuTrigger",{popoverProps:f,underlayProps:h,arrowProps:m,placement:g,triggerAnchorPoint:b}=sK({...i,offset:i.offset??8,arrowRef:s,groupRef:c?u:a},t),x=i.popoverRef,k=q3(x,!!g)||i.isEntering||!1,E=wt({...i,defaultClassName:"react-aria-Popover",values:{trigger:i.trigger||null,placement:g,isEntering:k,isExiting:e}}),D=!i.isNonModal||i.trigger==="SubmenuTrigger",[T,$]=S.useState(!1);ze(()=>{x.current&&$(D&&!x.current.querySelector("[role=dialog]"))},[x,D]),S.useEffect(()=>{T&&(i.trigger!=="SubmenuTrigger"||ia()!=="pointer")&&x.current&&!Rl(x.current)&&xn(x.current)},[T,x,i.trigger]);let A=S.useMemo(()=>{let G=E.children;if(r)for(let W of r)G=V.createElement(W.Provider,{value:null},G);return G},[E.children,r]),[B,P]=S.useState(null),M=S.useCallback(()=>{i.triggerRef.current&&P(i.triggerRef.current.getBoundingClientRect().width+"px")},[i.triggerRef]);ze(M,[M]),d4({ref:E.style?.["--trigger-width"]?void 0:i.triggerRef,onResize:M});let N={...f.style,"--trigger-anchor-point":b?`${b.x}px ${b.y}px`:void 0,...E.style,"--trigger-width":E.style?.["--trigger-width"]||B},j=V.createElement(ot.div,{...$e(Ze(i,{global:!0}),f),...E,role:T?"dialog":void 0,tabIndex:T?-1:void 0,"aria-label":i["aria-label"],"aria-labelledby":i["aria-labelledby"],ref:x,slot:i.slot||void 0,style:N,dir:i.dir,"data-trigger":i.trigger,"data-placement":g,"data-entering":k||void 0,"data-exiting":e||void 0},!i.isNonModal&&V.createElement(f4,{onDismiss:t.close}),V.createElement(FF.Provider,{value:{...m,placement:g,ref:s}},A),V.createElement(f4,{onDismiss:t.close}));return c?V.createElement(h4,{...i,shouldContainFocus:T,isExiting:e,portalContainer:n??u?.current??void 0},j):V.createElement(h4,{...i,shouldContainFocus:T,isExiting:e,portalContainer:n},!i.isNonModal&&t.isOpen&&V.createElement("div",{"data-testid":"underlay",...h,style:{position:"fixed",inset:0}}),V.createElement("div",{ref:a,style:{display:"contents"}},V.createElement(W2.Provider,{value:a},j)))}const dK=S.createContext({});var AT={};AT={longPressMessage:"اضغط مطولاً أو اضغط على Alt + السهم لأسفل لفتح القائمة"};var BT={};BT={longPressMessage:"Натиснете продължително или натиснете Alt+ стрелка надолу, за да отворите менюто"};var MT={};MT={longPressMessage:"Dlouhým stiskem nebo stisknutím kláves Alt + šipka dolů otevřete nabídku"};var RT={};RT={longPressMessage:"Langt tryk eller tryk på Alt + pil ned for at åbne menuen"};var NT={};NT={longPressMessage:"Drücken Sie lange oder drücken Sie Alt + Nach-unten, um das Menü zu öffnen"};var PT={};PT={longPressMessage:"Πιέστε παρατεταμένα ή πατήστε Alt + κάτω βέλος για να ανοίξετε το μενού"};var OT={};OT={longPressMessage:"Long press or press Alt + ArrowDown to open menu"};var LT={};LT={longPressMessage:"Mantenga pulsado o pulse Alt + flecha abajo para abrir el menú"};var zT={};zT={longPressMessage:"Menüü avamiseks vajutage pikalt või vajutage klahve Alt + allanool"};var IT={};IT={longPressMessage:"Avaa valikko painamalla pohjassa tai näppäinyhdistelmällä Alt + Alanuoli"};var jT={};jT={longPressMessage:"Appuyez de manière prolongée ou appuyez sur Alt + Flèche vers le bas pour ouvrir le menu."};var FT={};FT={longPressMessage:"לחץ לחיצה ארוכה או הקש Alt + ArrowDown כדי לפתוח את התפריט"};var KT={};KT={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dolje za otvaranje izbornika"};var _T={};_T={longPressMessage:"Nyomja meg hosszan, vagy nyomja meg az Alt + lefele nyíl gombot a menü megnyitásához"};var VT={};VT={longPressMessage:"Premi a lungo o premi Alt + Freccia giù per aprire il menu"};var HT={};HT={longPressMessage:"長押しまたは Alt+下矢印キーでメニューを開く"};var UT={};UT={longPressMessage:"길게 누르거나 Alt + 아래쪽 화살표를 눌러 메뉴 열기"};var qT={};qT={longPressMessage:"Norėdami atidaryti meniu, nuspaudę palaikykite arba paspauskite „Alt + ArrowDown“."};var GT={};GT={longPressMessage:"Lai atvērtu izvēlni, turiet nospiestu vai nospiediet taustiņu kombināciju Alt + lejupvērstā bultiņa"};var WT={};WT={longPressMessage:"Langt trykk eller trykk Alt + PilNed for å åpne menyen"};var QT={};QT={longPressMessage:"Druk lang op Alt + pijl-omlaag of druk op Alt om het menu te openen"};var YT={};YT={longPressMessage:"Naciśnij i przytrzymaj lub naciśnij klawisze Alt + Strzałka w dół, aby otworzyć menu"};var XT={};XT={longPressMessage:"Pressione e segure ou pressione Alt + Seta para baixo para abrir o menu"};var JT={};JT={longPressMessage:"Prima continuamente ou prima Alt + Seta Para Baixo para abrir o menu"};var ZT={};ZT={longPressMessage:"Apăsați lung sau apăsați pe Alt + săgeată în jos pentru a deschide meniul"};var eA={};eA={longPressMessage:"Нажмите и удерживайте или нажмите Alt + Стрелка вниз, чтобы открыть меню"};var tA={};tA={longPressMessage:"Ponuku otvoríte dlhým stlačením alebo stlačením klávesu Alt + klávesu so šípkou nadol"};var nA={};nA={longPressMessage:"Za odprtje menija pritisnite in držite gumb ali pritisnite Alt+puščica navzdol"};var rA={};rA={longPressMessage:"Dugo pritisnite ili pritisnite Alt + strelicu prema dole da otvorite meni"};var iA={};iA={longPressMessage:"Håll nedtryckt eller tryck på Alt + pil nedåt för att öppna menyn"};var sA={};sA={longPressMessage:"Menüyü açmak için uzun basın veya Alt + Aşağı Ok tuşuna basın"};var oA={};oA={longPressMessage:"Довго або звичайно натисніть комбінацію клавіш Alt і стрілка вниз, щоб відкрити меню"};var aA={};aA={longPressMessage:"长按或按 Alt + 向下方向键以打开菜单"};var lA={};lA={longPressMessage:"長按或按 Alt+向下鍵以開啟功能表"};var uA={};uA={"ar-AE":AT,"bg-BG":BT,"cs-CZ":MT,"da-DK":RT,"de-DE":NT,"el-GR":PT,"en-US":OT,"es-ES":LT,"et-EE":zT,"fi-FI":IT,"fr-FR":jT,"he-IL":FT,"hr-HR":KT,"hu-HU":_T,"it-IT":VT,"ja-JP":HT,"ko-KR":UT,"lt-LT":qT,"lv-LV":GT,"nb-NO":WT,"nl-NL":QT,"pl-PL":YT,"pt-BR":XT,"pt-PT":JT,"ro-RO":ZT,"ru-RU":eA,"sk-SK":tA,"sl-SI":nA,"sr-SP":rA,"sv-SE":iA,"tr-TR":sA,"uk-UA":oA,"zh-CN":aA,"zh-TW":lA};function cA(t,e,n){let{type:r}=t,{isOpen:i}=e;S.useEffect(()=>{n&&n.current&&K6.set(n.current,e.close)});let s;r==="menu"?s=!0:r==="listbox"&&(s="listbox");let a=on();return{triggerProps:{"aria-haspopup":s,"aria-expanded":i,"aria-controls":i?a:void 0,onPress:e.toggle},overlayProps:{id:a}}}function fK(t){return t&&t.__esModule?t.default:t}function hK(t,e,n){let{type:r="menu",isDisabled:i,trigger:s="press"}=t,a=on(),{triggerProps:u,overlayProps:c}=cA({type:r},e,n),f=b=>{if(!i&&!(s==="longPress"&&!b.altKey)&&n&&n.current)switch(b.key){case"Enter":case" ":if(s==="longPress"||b.isDefaultPrevented())return;case"ArrowDown":"continuePropagation"in b||b.stopPropagation(),b.preventDefault(),e.toggle("first");break;case"ArrowUp":"continuePropagation"in b||b.stopPropagation(),b.preventDefault(),e.toggle("last");break;default:"continuePropagation"in b&&b.continuePropagation()}},h=yr(fK(uA),"@react-aria/menu"),{longPressProps:m}=N6({isDisabled:i||s!=="longPress",accessibilityDescription:h.format("longPressMessage"),onLongPressStart(){e.close()},onLongPress(){e.open("first")}}),g={preventFocusOnPress:!0,onPressStart(b){b.pointerType!=="touch"&&b.pointerType!=="keyboard"&&!i&&(Rr(b.target),e.open(b.pointerType==="virtual"?"first":null))},onPress(b){b.pointerType==="touch"&&!i&&(Rr(b.target),e.toggle())}};return delete u.onPress,{menuTriggerProps:{...u,...s==="press"?g:m,id:a,onKeyDown:f},menuProps:{...c,"aria-labelledby":a,autoFocus:e.focusStrategy||!0,onClose:e.close}}}const dA=new WeakMap;function pK(t,e,n){let{shouldFocusWrap:r=!0,onKeyDown:i,onKeyUp:s,...a}=t;!t["aria-label"]&&t["aria-labelledby"];let u=Ze(t,{labelable:!0}),{listProps:c}=R6({...a,ref:n,selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,shouldFocusWrap:r,linkBehavior:"override"});return dA.set(e,{onClose:t.onClose,onAction:t.onAction,shouldUseVirtualFocus:t.shouldUseVirtualFocus}),{menuProps:$e(u,{onKeyDown:i,onKeyUp:s},{role:"menu",...c,onKeyDown:f=>{(f.key!=="Escape"||t.shouldUseVirtualFocus)&&c.onKeyDown?.(f)}})}}function mK(t,e,n){let{id:r,key:i,closeOnSelect:s,shouldCloseOnSelect:a,isVirtualized:u,"aria-haspopup":c,onPressStart:f,onPressUp:h,onPress:m,onPressChange:g,onPressEnd:b,onClick:x,onHoverStart:k,onHoverChange:E,onHoverEnd:D,onKeyDown:T,onKeyUp:$,onFocus:A,onFocusChange:B,onBlur:P,selectionManager:M=e.selectionManager}=t,N=!!c,j=N&&t["aria-expanded"]==="true",G=t.isDisabled??M.isDisabled(i),W=t.isSelected??M.isSelected(i),U=dA.get(e),ne=e.collection.getItem(i),F=t.onClose||U.onClose,te=Hl(),O=()=>{if(!N&&(ne?.props?.onAction?ne.props.onAction():t.onAction&&t.onAction(i),U.onAction)){let je=U.onAction;je(i,ne?.value)}},K="menuitem";N||(M.selectionMode==="single"?K="menuitemradio":M.selectionMode==="multiple"&&(K="menuitemcheckbox"));let Q=Qo(),Z=Qo(),L=Qo(),z={id:r,"aria-disabled":G||void 0,role:K,"aria-label":t["aria-label"],"aria-labelledby":Q,"aria-describedby":[t["aria-describedby"],Z,L].filter(Boolean).join(" ")||void 0,"aria-controls":t["aria-controls"],"aria-haspopup":c,"aria-expanded":t["aria-expanded"]};if(M.selectionMode!=="none"&&!N&&(z["aria-checked"]=W),u){let je=Number(ne?.index);z["aria-posinset"]=Number.isNaN(je)?void 0:je+1,z["aria-setsize"]=PF(e.collection)}let H=S.useRef(!1),re=je=>{g?.(je),H.current=je},le=S.useRef(null),ue=je=>{je.pointerType!=="keyboard"&&(le.current={pointerType:je.pointerType}),je.pointerType==="mouse"&&(H.current||je.target.click()),h?.(je)},he=je=>{x?.(je),O(),Aw(je,te,ne.props.href,ne?.props.routerOptions);let Ui=le.current?.pointerType==="keyboard"?le.current?.key==="Enter"||M.selectionMode==="none"||M.isLink(i):M.selectionMode!=="multiple"||M.isLink(i);Ui=a??s??Ui,F&&!N&&Ui&&F(),le.current=null},{itemProps:Ce,isFocused:Ue}=P6({id:r,selectionManager:M,key:i,ref:n,shouldSelectOnPressUp:!0,allowsDifferentPressOrigin:!0,linkBehavior:"none",shouldUseVirtualFocus:U.shouldUseVirtualFocus}),{pressProps:Se,isPressed:wn}=md({onPressStart:f,onPress:m,onPressUp:ue,onPressChange:re,onPressEnd:b,isDisabled:G}),{hoverProps:an}=_i({isDisabled:G,onHoverStart(je){!Nl()&&!(j&&c)&&(M.setFocused(!0),M.setFocusedKey(i)),k?.(je)},onHoverChange:E,onHoverEnd:D}),{keyboardProps:bn}=D$({onKeyDown:je=>{if(je.repeat){je.continuePropagation();return}switch(je.key){case" ":le.current={pointerType:"keyboard",key:" "},de(je).click(),zo("keyboard");break;case"Enter":le.current={pointerType:"keyboard",key:"Enter"},de(je).tagName!=="A"&&de(je).click(),zo("keyboard");break;default:N||je.continuePropagation(),T?.(je);break}},onKeyUp:$}),{focusableProps:xr}=ym({onBlur:P,onFocus:A,onFocusChange:B},n),_t=Ze(ne?.props);delete _t.id;let so=Tw(ne?.props);return{menuItemProps:{...z,...$e(_t,so,N?{onFocus:Ce.onFocus,"data-collection":Ce["data-collection"],"data-key":Ce["data-key"]}:Ce,Se,an,bn,xr,U.shouldUseVirtualFocus||N?{onMouseDown:je=>je.preventDefault()}:void 0,G?void 0:{onClick:he}),tabIndex:Ce.tabIndex!=null&&j&&!U.shouldUseVirtualFocus?-1:Ce.tabIndex},labelProps:{id:Q},descriptionProps:{id:Z},keyboardShortcutProps:{id:L},isFocused:Ue,isFocusVisible:Ue&&M.isFocused&&Nl()&&!j,isSelected:W,isPressed:wn,isDisabled:G}}function gK(t){let{heading:e,"aria-label":n}=t,r=on();return{itemProps:{role:"presentation"},headingProps:e?{id:r,role:"presentation"}:{},groupProps:{role:"group","aria-label":n,"aria-labelledby":e?r:void 0}}}function G3(t){let e=U3(t),[n,r]=S.useState(null),[i,s]=S.useState([]),a=()=>{s([]),e.close()};return{focusStrategy:n,...e,open(f=null){r(f),e.open()},toggle(f=null){r(f),e.toggle()},close(){a()},expandedKeysStack:i,openSubmenu:(f,h)=>{s(m=>h>m.length?m:[...m.slice(0,h),f])},closeSubmenu:(f,h)=>{s(m=>m[h]===f?m.slice(0,h):m)}}}class bK{constructor(e,{expandedKeys:n}={}){this.keyMap=new Map,this.firstKey=null,this.lastKey=null,this.iterable=e,n=n||new Set;let r=a=>{if(this.keyMap.set(a.key,a),a.childNodes&&(a.type==="section"||n.has(a.key)))for(let u of a.childNodes)r(u)};for(let a of e)r(a);let i=null,s=0;for(let[a,u]of this.keyMap)i?(i.nextKey=a,u.prevKey=i.key):(this.firstKey=a,u.prevKey=void 0),u.type==="item"&&(u.index=s++),i=u,i.nextKey=void 0;this.lastKey=i?.key??null}*[Symbol.iterator](){yield*this.iterable}get size(){return this.keyMap.size}getKeys(){return this.keyMap.keys()}getKeyBefore(e){let n=this.keyMap.get(e);return n?n.prevKey??null:null}getKeyAfter(e){let n=this.keyMap.get(e);return n?n.nextKey??null:null}getFirstKey(){return this.firstKey}getLastKey(){return this.lastKey}getItem(e){return this.keyMap.get(e)??null}at(e){const n=[...this.getKeys()];return this.getItem(n[e])}}function yK(t){let{onExpandedChange:e}=t,[n,r]=eo(t.expandedKeys?new Set(t.expandedKeys):void 0,t.defaultExpandedKeys?new Set(t.defaultExpandedKeys):new Set,e),i=V3(t),s=S.useMemo(()=>t.disabledKeys?new Set(t.disabledKeys):new Set,[t.disabledKeys]),a=z6(t,S.useCallback(c=>new bK(c,{expandedKeys:n}),[n]),null);return S.useEffect(()=>{i.focusedKey!=null&&!a.getItem(i.focusedKey)&&i.setFocusedKey(null)},[a,i.focusedKey]),{collection:a,expandedKeys:n,disabledKeys:s,toggleKey:c=>{r(xK(n,c))},setExpandedKeys:r,selectionManager:new bd(a,i)}}function xK(t,e){let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n}const fA=S.createContext(null),W3=S.createContext(null),op=S.createContext(null),ap=S.createContext(null);function Q3(t){let e=G3(t),n=S.useRef(null),{menuTriggerProps:r,menuProps:i}=hK({...t,type:"menu"},e,n),s=S.useRef(null);return S$()?null:V.createElement(Pr,{values:[[fA,{...i,ref:s}],[ga,e],[op,e],[Wc,{trigger:"MenuTrigger",triggerRef:n,scrollRef:s,placement:"bottom start","aria-labelledby":i["aria-labelledby"]}]]},V.createElement(ST,{...r,ref:n,isPressed:e.isOpen},t.children))}const vK=S.createContext(null),h1=class h1 extends pa{filter(e,n,r){let i=e.getItem(this.firstChildKey);if(i&&r(i.textValue,this)){let s=this.clone();return n.addDescendants(s,e),s}return null}};h1.type="submenutrigger";let Q2=h1;const Y3=S.forwardRef(function(e,n){return[e,n]=Ct(e,n,fA),V.createElement(R3,{content:V.createElement(vm,e)},r=>V.createElement(kK,{props:e,collection:r,menuRef:n}))});function kK({props:t,collection:e,menuRef:n}){[t,n]=Ct(t,n,Vc);let{filter:r,...i}=t,s=S.useMemo(()=>r?e.filter(r):e,[e,r]),a=yK({...t,collection:s,children:void 0}),u=S.useContext(op),{isVirtualized:c,CollectionRoot:f}=S.useContext(Hs),{menuProps:h}=pK({...t,isVirtualized:c,onClose:t.onClose||u?.close},a,n),m=wt({...t,children:void 0,defaultClassName:"react-aria-Menu",values:{isEmpty:a.collection.size===0}}),g=null;a.collection.size===0&&t.renderEmptyState&&(g=V.createElement("div",{role:"menuitem",style:{display:"contents"}},t.renderEmptyState()));let b=Ze(t,{global:!0});return V.createElement(F3,null,V.createElement(ot.div,{...$e(b,m,h),ref:n,slot:t.slot||void 0,"data-empty":a.collection.size===0||void 0,onScroll:t.onScroll},V.createElement(Pr,{values:[[W3,a],[w6,{elementType:"div"}],[bj,{name:"MenuSection",render:hA}],[vK,{parentMenuRef:n,shouldUseVirtualFocus:i?.shouldUseVirtualFocus}],[Qc,{shouldCloseOnSelect:t.shouldCloseOnSelect}],[Vc,null],[bm,null],[ap,a.selectionManager],[op,u??G3({})]]},V.createElement(I3,null,V.createElement(f,{collection:a.collection,persistedKeys:xj(a.selectionManager.focusedKey),scrollRef:n}))),g))}class CK extends bd{constructor(e,n){super(e.collection,n),this.parent=e}get focusedKey(){return this.parent.focusedKey}get isFocused(){return this.parent.isFocused}setFocusedKey(e,n){return this.parent.setFocusedKey(e,n)}setFocused(e){this.parent.setFocused(e)}get childFocusStrategy(){return this.parent.childFocusStrategy}}function hA(t,e,n,r="react-aria-MenuSection"){let i=S.useContext(W3),{CollectionBranch:s}=S.useContext(Hs),[a,u]=gw(),{headingProps:c,groupProps:f}=gK({heading:u,"aria-label":n.props["aria-label"]??void 0}),h=wt({...t,id:void 0,children:void 0,defaultClassName:r,className:n.props?.className,style:n.props?.style,values:void 0}),m=S.useContext(ap),g=V3(t),b=t.selectionMode!=null?new CK(m,g):m,x=Vl(Qc)?.shouldCloseOnSelect,k=Ze(t,{global:!0});return delete k.id,V.createElement(ot.section,{...$e(k,h,f),ref:e},V.createElement(Pr,{values:[[S6,{...c,ref:a}],[ap,b],[Qc,{shouldCloseOnSelect:t.shouldCloseOnSelect??x}]]},V.createElement(s,{collection:i.collection,parent:n})))}const EK=mj(Qy,hA),Qc=S.createContext(null),X3=ma(np,function(e,n,r){[e,n]=Ct(e,n,Qc);let i=Vl(Qc)?.id,s=S.useContext(W3),a=Zs(n),u=S.useContext(ap),{isVirtualized:c}=S.useContext(Hs),{menuItemProps:f,labelProps:h,descriptionProps:m,keyboardShortcutProps:g,...b}=mK({...e,id:i,key:r.key,selectionManager:u,isVirtualized:c},s,a),{hoverProps:x,isHovered:k}=_i({isDisabled:b.isDisabled}),E=wt({...e,id:void 0,children:r.rendered,defaultClassName:"react-aria-MenuItem",values:{...b,isHovered:k,isFocusVisible:b.isFocusVisible,selectionMode:u.selectionMode,selectionBehavior:u.selectionBehavior,hasSubmenu:!!e["aria-haspopup"],isOpen:e["aria-expanded"]==="true"}}),D=e.href?ot.a:ot.div,T=Ze(e,{global:!0});return delete T.id,delete T.onClick,V.createElement(D,{...$e(T,E,f,x),ref:a,"data-disabled":b.isDisabled||void 0,"data-hovered":k||void 0,"data-focused":b.isFocused||void 0,"data-focus-visible":b.isFocusVisible||void 0,"data-pressed":b.isPressed||void 0,"data-selected":b.isSelected||void 0,"data-selection-mode":u.selectionMode==="none"?void 0:u.selectionMode,"data-has-submenu":!!e["aria-haspopup"]||void 0,"data-open":e["aria-expanded"]==="true"||void 0},V.createElement(Pr,{values:[[z3,{slots:{[Bs]:h,label:h,description:m}}],[dK,g],[j3,{isSelected:b.isSelected}]]},E.children))});function DK(t,e){let{role:n="dialog"}=t,r=Qo();r=t["aria-label"]?void 0:r;let i=S.useRef(!1);return S.useEffect(()=>{if(e.current&&!Rl(e.current)){xn(e.current);let s=setTimeout(()=>{(_e()===e.current||_e()===document.body)&&(i.current=!0,e.current&&(e.current.blur(),xn(e.current)),i.current=!1)},500);return()=>{clearTimeout(s)}}},[e]),$T(),S.useRef(!1),S.useEffect(()=>{}),{dialogProps:{...Ze(t,{labelable:!0}),role:n,tabIndex:-1,"aria-labelledby":t["aria-labelledby"]||r,onBlur:s=>{i.current&&s.stopPropagation()}},titleProps:{id:r}}}const pA=S.createContext(null),ga=S.createContext(null);function SK(t){let e=G3(t),n=S.useRef(null),{triggerProps:r,overlayProps:i}=cA({type:"dialog"},e,n);return r.id=on(),i["aria-labelledby"]=r.id,V.createElement(Pr,{values:[[ga,e],[op,e],[pA,i],[Wc,{trigger:"DialogTrigger",triggerRef:n,"aria-labelledby":i["aria-labelledby"]}]]},V.createElement(ST,{...r,ref:n,isPressed:e.isOpen},t.children))}const wK=S.forwardRef(function(e,n){let r=e["aria-labelledby"];[e,n]=Ct(e,n,pA);let{dialogProps:i,titleProps:s}=DK({...e,"aria-labelledby":r},n),a=S.useContext(ga);!i["aria-label"]&&!i["aria-labelledby"]&&e["aria-labelledby"]&&(i["aria-labelledby"]=e["aria-labelledby"]);let u=wt({defaultClassName:"react-aria-Dialog",className:e.className,style:e.style,children:e.children,values:{close:a?.close||(()=>{})}}),c=Ze(e,{global:!0});return V.createElement(ot.section,{...$e(c,u,i),render:e.render,ref:n,slot:e.slot||void 0},V.createElement(Pr,{values:[[b6,{slots:{[Bs]:{},title:{...s,level:2}}}],[km,{slots:{[Bs]:{},close:{onPress:()=>a?.close()}}}]]},u.children))});function $K(t){let e=_3({usage:"search",...t}),n=S.useCallback((s,a)=>a.length===0?!0:(s=s.normalize("NFC"),a=a.normalize("NFC"),e.compare(s.slice(0,a.length),a)===0),[e]),r=S.useCallback((s,a)=>a.length===0?!0:(s=s.normalize("NFC"),a=a.normalize("NFC"),e.compare(s.slice(-a.length),a)===0),[e]),i=S.useCallback((s,a)=>{if(a.length===0)return!0;s=s.normalize("NFC"),a=a.normalize("NFC");let u=0,c=a.length;for(;u+c<=s.length;u++){let f=s.slice(u,u+c);if(e.compare(a,f)===0)return!0}return!1},[e]);return S.useMemo(()=>({startsWith:n,endsWith:r,contains:i}),[n,r,i])}var Rt=(function(t){return t[t.none=0]="none",t[t.cancel=0]="cancel",t[t.move=1]="move",t[t.copy=2]="copy",t[t.link=4]="link",t[t.all=7]="all",t})({});const mA={...Rt,copyMove:3,copyLink:6,linkMove:5,all:7,uninitialized:7},gA=bA(mA);gA[7]="all";const kc={none:"cancel",link:"link",copy:"copy",move:"move"},_0=bA(kc);function bA(t){let e={};for(let n in t)e[t[n]]=n;return e}const TK=new Set(["text/plain","text/uri-list","text/html"]),lp="application/vnd.react-aria.items+json",up="application/octet-stream",J3=new WeakMap,yA=Symbol();function AK(t){let{id:e}=J3.get(t)||{};if(!e)throw new Error("Droppable item outside a droppable collection");return e}function BK(t){let{ref:e}=J3.get(t)||{};if(!e)throw new Error("Droppable item outside a droppable collection");return e}function Xo(t){let e=new Set;for(let n of t)for(let r of Object.keys(n))e.add(r);return e}function xA(t){return t||(t="virtual"),t==="pointer"&&(t="virtual"),t==="virtual"&&typeof window<"u"&&typeof window.matchMedia=="function"&&window.matchMedia("(pointer: coarse)").matches&&(t="touch"),t}function Z3(){return xA(Pw())}function vA(){return xA(ia())}function MK(t,e){let n=new Map,r=!1,i=[];for(let s of e){let a=Object.keys(s);a.length>1&&(r=!0);let u={};for(let c of a){let f=n.get(c);f?r=!0:(f=[],n.set(c,f));let h=s[c];u[c]=h,f.push(h)}i.push(u)}for(let[s,a]of n)if(TK.has(s)){let u=a.join(`
21
+ `);t.items.add(u,s)}else t.items.add(a[0],s);if(r){let s=JSON.stringify(i);t.items.add(s,lp)}}class sh{constructor(e){this.types=new Set;let n=!1;for(let r of e.items)r.type!==lp&&(r.kind==="file"&&(n=!0),r.type?this.types.add(r.type):this.types.add(up));this.includesUnknownTypes=!n&&e.types.includes("Files")}has(e){if(Array.isArray(e))return e.some(n=>this.has(n));if(this.includesUnknownTypes||e===yA&&this.types.has(up)||e==="*/*")return!0;if(typeof e=="string"){if(e.endsWith("/*")){for(let n of this.types)if(n.startsWith(e.slice(0,-2)))return!0;return!1}return this.types.has(e)}return!1}}function RK(t){let e=[];if(!t)return e;let n=!1;if(t.types.includes(lp))try{let r=t.getData(lp),i=JSON.parse(r);for(let s of i)e.push({kind:"text",types:new Set(Object.keys(s)),getText:a=>Promise.resolve(s[a])});n=!0}catch{}if(!n){let r=new Map;for(let i of t.items)if(i.kind==="string")r.set(i.type||up,t.getData(i.type));else if(i.kind==="file")if(typeof i.webkitGetAsEntry=="function"){let s=i.webkitGetAsEntry();if(!s)continue;s.isFile?e.push(m4(i.getAsFile())):s.isDirectory&&e.push(kA(s))}else e.push(m4(i.getAsFile()));r.size>0&&e.push({kind:"text",types:new Set(r.keys()),getText:i=>Promise.resolve(r.get(i))})}return e}function NK(t){return typeof t.text=="function"?t.text():new Promise((e,n)=>{let r=new FileReader;r.onload=()=>{e(r.result)},r.onerror=n,r.readAsText(t)})}function m4(t){if(!t)throw new Error("No file provided");return{kind:"file",type:t.type||up,name:t.name,getText:()=>NK(t),getFile:()=>Promise.resolve(t)}}function kA(t){return{kind:"directory",name:t.name,getEntries:()=>PK(t)}}async function*PK(t){let e=t.createReader(),n;do{n=await new Promise((r,i)=>{e.readEntries(r,i)});for(let r of n)if(r.isFile){let i=await OK(r);yield m4(i)}else r.isDirectory&&(yield kA(r))}while(n.length>0)}function OK(t){return new Promise((e,n)=>t.file(e,n))}let jt={draggingKeys:new Set};function LK(t){jt.draggingCollectionRef=t}function zK(t){jt.draggingKeys=t}function hl(t){jt.dropCollectionRef=t}function CA(){jt={draggingKeys:new Set}}function IK(t){jt=t}function Gr(t){let{draggingCollectionRef:e,dropCollectionRef:n}=jt;return e?.current!=null&&e.current===(t?.current||n?.current)}let Lh;function cp(t){Lh=t}let g4=Rt.none;function V0(t){g4=t}let b4=new Map,Cc=new Map,Tr=null,dp=new Set;function EA(t){return b4.set(t.element,t),Tr?.updateValidDropTargets(),()=>{b4.delete(t.element),Tr?.updateValidDropTargets()}}function jK(t){return Cc.set(t.element,t),()=>{Cc.delete(t.element)}}function FK(t,e){if(Tr)throw new Error("Cannot begin dragging while already dragging");Tr=new UK(t,e),requestAnimationFrame(()=>{Tr&&(Tr.setup(),vA()==="keyboard"&&Tr.next())});for(let n of dp)n()}function ex(){let[t,e]=S.useState(Tr);return S.useEffect(()=>{let n=()=>e(Tr);return dp.add(n),()=>{dp.delete(n)}},[]),t}function KK(){return!!Tr}function _K(){Tr=null;for(let t of dp)t()}const Y2=["pointerdown","pointermove","pointerenter","pointerleave","pointerover","pointerout","pointerup","mousedown","mousemove","mouseenter","mouseleave","mouseover","mouseout","mouseup","touchstart","touchmove","touchend","focusin","focusout"],VK=["pointerup","mouseup","touchend"],HK={keyboard:"dragStartedKeyboard",touch:"dragStartedTouch",virtual:"dragStartedVirtual"};class UK{constructor(e,n){this.validDropTargets=[],this.currentDropTarget=null,this.currentDropItem=null,this.dropOperation=null,this.mutationObserver=null,this.restoreAriaHidden=null,this.isVirtualClick=!1,this.dragTarget=e,this.stringFormatter=n,this.onKeyDown=this.onKeyDown.bind(this),this.onKeyUp=this.onKeyUp.bind(this),this.onFocus=this.onFocus.bind(this),this.onBlur=this.onBlur.bind(this),this.onClick=this.onClick.bind(this),this.onPointerDown=this.onPointerDown.bind(this),this.cancelEvent=this.cancelEvent.bind(this),this.initialFocused=!1}setup(){document.addEventListener("keydown",this.onKeyDown,!0),document.addEventListener("keyup",this.onKeyUp,!0),window.addEventListener("focus",this.onFocus,!0),window.addEventListener("blur",this.onBlur,!0),document.addEventListener("click",this.onClick,!0),document.addEventListener("pointerdown",this.onPointerDown,!0);for(let e of Y2)document.addEventListener(e,this.cancelEvent,!0);this.mutationObserver=new MutationObserver(()=>this.updateValidDropTargets()),this.updateValidDropTargets(),Io(this.stringFormatter.format(HK[vA()]))}teardown(){document.removeEventListener("keydown",this.onKeyDown,!0),document.removeEventListener("keyup",this.onKeyUp,!0),window.removeEventListener("focus",this.onFocus,!0),window.removeEventListener("blur",this.onBlur,!0),document.removeEventListener("click",this.onClick,!0),document.removeEventListener("pointerdown",this.onPointerDown,!0);for(let e of Y2)document.removeEventListener(e,this.cancelEvent,!0);this.mutationObserver?.disconnect(),this.restoreAriaHidden?.()}onKeyDown(e){if(this.cancelEvent(e),e.key==="Escape"){this.cancel();return}e.key==="Tab"&&!(e.metaKey||e.altKey||e.ctrlKey)&&(e.shiftKey?this.previous():this.next()),typeof this.currentDropTarget?.onKeyDown=="function"&&this.currentDropTarget.onKeyDown(e,this.dragTarget)}onKeyUp(e){this.cancelEvent(e),e.key==="Enter"&&(e.altKey||we(this.getCurrentActivateButton(),de(e))?this.activate(this.currentDropTarget,this.currentDropItem):this.drop())}getCurrentActivateButton(){return this.currentDropItem?.activateButtonRef?.current??this.currentDropTarget?.activateButtonRef?.current??null}onFocus(e){let n=this.getCurrentActivateButton(),r=de(e);if(r===n){this.cancelEvent(e);return}if(r!==this.dragTarget.element&&this.cancelEvent(e),!(r instanceof HTMLElement)||r===this.dragTarget.element)return;let i=this.validDropTargets.find(a=>a.element===r)||this.validDropTargets.find(a=>we(a.element,r));if(!i){this.currentDropTarget?this.currentDropTarget.element.focus():this.dragTarget.element.focus();return}let s=Cc.get(r);i&&this.setCurrentDropTarget(i,s)}onBlur(e){let n=this.getCurrentActivateButton();if(n&&e.relatedTarget===n){this.cancelEvent(e);return}de(e)!==this.dragTarget.element&&this.cancelEvent(e),(!e.relatedTarget||!(e.relatedTarget instanceof HTMLElement))&&(this.currentDropTarget?this.currentDropTarget.element.focus():this.dragTarget.element.focus())}onClick(e){if(this.cancelEvent(e),pm(e)||this.isVirtualClick){let n=Cc.values(),r=de(e),i=[...n].find(u=>u.element===r||we(u.activateButtonRef?.current,r)),s=this.validDropTargets.find(u=>we(u.element,r)),a=i?.activateButtonRef?.current??s?.activateButtonRef?.current;if(we(a,r)&&s){this.activate(s,i);return}if(de(e)===this.dragTarget.element){this.cancel();return}s&&(this.setCurrentDropTarget(s,i),this.drop(i))}}onPointerDown(e){this.cancelEvent(e),this.isVirtualClick=T3(e)}cancelEvent(e){let n=de(e);(e.type==="focusin"||e.type==="focusout")&&(n===this.dragTarget?.element||n===this.getCurrentActivateButton())||(VK.includes(e.type)||e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation())}updateValidDropTargets(){if(!this.mutationObserver)return;if(this.mutationObserver.disconnect(),this.restoreAriaHidden&&this.restoreAriaHidden(),this.validDropTargets=qK(this.dragTarget),this.validDropTargets.length>0){let i=this.findNearestDropTarget();this.validDropTargets=[...this.validDropTargets.slice(i),...this.validDropTargets.slice(0,i)]}this.currentDropTarget&&!this.validDropTargets.includes(this.currentDropTarget)&&this.setCurrentDropTarget(this.validDropTargets[0]);let e=Xo(this.dragTarget.items),n=[...Cc.values()].filter(i=>typeof i.getDropOperation=="function"?i.getDropOperation(e,this.dragTarget.allowedDropOperations)!=="cancel":!0),r=this.validDropTargets.filter(i=>!n.some(s=>we(i.element,s.element)));this.restoreAriaHidden=H3([this.dragTarget.element,...n.flatMap(i=>i.activateButtonRef?.current?[i.element,i.activateButtonRef?.current]:[i.element]),...r.flatMap(i=>i.activateButtonRef?.current?[i.element,i.activateButtonRef?.current]:[i.element])],{shouldUseInert:!0}),this.mutationObserver.observe(document.body,{subtree:!0,attributes:!0,attributeFilter:["aria-hidden","inert"]})}next(){if(!this.currentDropTarget){this.setCurrentDropTarget(this.validDropTargets[0]);return}let e=this.validDropTargets.indexOf(this.currentDropTarget);if(e<0){this.setCurrentDropTarget(this.validDropTargets[0]);return}e===this.validDropTargets.length-1?this.dragTarget.element.closest('[aria-hidden="true"], [inert]')?this.setCurrentDropTarget(this.validDropTargets[0]):(this.setCurrentDropTarget(null),this.dragTarget.element.focus()):this.setCurrentDropTarget(this.validDropTargets[e+1])}previous(){if(!this.currentDropTarget){this.setCurrentDropTarget(this.validDropTargets[this.validDropTargets.length-1]);return}let e=this.validDropTargets.indexOf(this.currentDropTarget);if(e<0){this.setCurrentDropTarget(this.validDropTargets[this.validDropTargets.length-1]);return}e===0?this.dragTarget.element.closest('[aria-hidden="true"], [inert]')?this.setCurrentDropTarget(this.validDropTargets[this.validDropTargets.length-1]):(this.setCurrentDropTarget(null),this.dragTarget.element.focus()):this.setCurrentDropTarget(this.validDropTargets[e-1])}findNearestDropTarget(){let e=this.dragTarget.element.getBoundingClientRect(),n=1/0,r=-1;for(let i=0;i<this.validDropTargets.length;i++){let a=this.validDropTargets[i].element.getBoundingClientRect(),u=a.left-e.left,c=a.top-e.top,f=u*u+c*c;f<n&&(n=f,r=i)}return r}setCurrentDropTarget(e,n){if(e!==this.currentDropTarget){if(this.currentDropTarget&&typeof this.currentDropTarget.onDropExit=="function"){let r=this.currentDropTarget.element.getBoundingClientRect();this.currentDropTarget.onDropExit({type:"dropexit",x:r.left+r.width/2,y:r.top+r.height/2})}if(this.currentDropTarget=e,e){if(typeof e.onDropEnter=="function"){let r=e.element.getBoundingClientRect();e.onDropEnter({type:"dropenter",x:r.left+r.width/2,y:r.top+r.height/2},this.dragTarget)}n||e?.element.focus()}}if(n!=null&&n!==this.currentDropItem&&(this.currentDropTarget&&typeof this.currentDropTarget.onDropTargetEnter=="function"&&this.currentDropTarget.onDropTargetEnter(n.target),n.element.focus(),this.currentDropItem=n,!this.initialFocused)){let r=n?.element.getAttribute("aria-label");r&&Io(r,"polite"),this.initialFocused=!0}}end(){if(this.teardown(),_K(),typeof this.dragTarget.onDragEnd=="function"){let n=(this.currentDropTarget&&this.dropOperation!=="cancel"?this.currentDropTarget:this.dragTarget).element.getBoundingClientRect();this.dragTarget.onDragEnd({type:"dragend",x:n.x+n.width/2,y:n.y+n.height/2,dropOperation:this.dropOperation||"cancel"})}this.currentDropTarget&&!this.currentDropTarget.preventFocusOnDrop&&_e()?.dispatchEvent(new FocusEvent("focusin",{bubbles:!0})),this.setCurrentDropTarget(null)}cancel(){this.setCurrentDropTarget(null),this.end(),this.dragTarget.element.closest('[aria-hidden="true"], [inert]')||this.dragTarget.element.focus(),_e()?.dispatchEvent(new FocusEvent("focusin",{bubbles:!0})),Io(this.stringFormatter.format("dropCanceled"))}drop(e){if(!this.currentDropTarget){this.cancel();return}if(typeof e?.getDropOperation=="function"){let n=Xo(this.dragTarget.items);this.dropOperation=e.getDropOperation(n,this.dragTarget.allowedDropOperations)}else if(typeof this.currentDropTarget.getDropOperation=="function"){let n=Xo(this.dragTarget.items);this.dropOperation=this.currentDropTarget.getDropOperation(n,this.dragTarget.allowedDropOperations)}else this.dropOperation=this.dragTarget.allowedDropOperations[0];if(typeof this.currentDropTarget.onDrop=="function"){let n=this.dragTarget.items.map(i=>({kind:"text",types:new Set(Object.keys(i)),getText:s=>Promise.resolve(i[s])})),r=this.currentDropTarget.element.getBoundingClientRect();this.currentDropTarget.onDrop({type:"drop",x:r.left+r.width/2,y:r.top+r.height/2,items:n,dropOperation:this.dropOperation},e?.target??null)}this.end(),Io(this.stringFormatter.format("dropComplete"))}activate(e,n){if(e&&typeof e.onDropActivate=="function"){let r=n?.target??null,i=e.element.getBoundingClientRect();e.onDropActivate({type:"dropactivate",x:i.left+i.width/2,y:i.top+i.height/2},r)}}}function qK(t){let e=Xo(t.items);return[...b4.values()].filter(n=>n.element.closest('[aria-hidden="true"], [inert]')?!1:typeof n.getDropOperation=="function"?n.getDropOperation(e,t.allowedDropOperations)!=="cancel":!0)}var DA={};DA={dragDescriptionKeyboard:"اضغط Enter لبدء السحب.",dragDescriptionKeyboardAlt:"اضغط على Alt + Enter لبدء السحب.",dragDescriptionLongPress:"اضغط باستمرار لبدء السحب.",dragDescriptionTouch:"اضغط مرتين لبدء السحب.",dragDescriptionVirtual:"انقر لبدء السحب.",dragItem:t=>`اسحب ${t.itemText}`,dragSelectedItems:(t,e)=>`اسحب ${e.plural(t.count,{one:()=>`${e.number(t.count)} عنصر محدد`,other:()=>`${e.number(t.count)} عناصر محددة`})}`,dragSelectedKeyboard:(t,e)=>`اضغط على Enter للسحب ${e.plural(t.count,{one:"عدد العناصر المختارة",other:"عدد العناصر المختارة"})}.`,dragSelectedKeyboardAlt:(t,e)=>`اضغط على مفتاحي Alt + Enter للسحب ${e.plural(t.count,{one:"عدد العناصر المختارة",other:"عدد العناصر المختارة"})}.`,dragSelectedLongPress:(t,e)=>`اضغط باستمرار للسحب ${e.plural(t.count,{one:"عدد العناصر المختارة",other:"عدد العناصر المختارة"})}.`,dragStartedKeyboard:"بدأ السحب. اضغط Tab للانتقال إلى موضع الإفلات، ثم اضغط Enter للإفلات، أو اضغط Escape للإلغاء.",dragStartedTouch:"بدأ السحب. انتقل إلى موضع الإفلات، ثم اضغط مرتين للإفلات.",dragStartedVirtual:"بدأ السحب. انتقل إلى مكان الإفلات، ثم انقر أو اضغط Enter للإفلات.",dropCanceled:"تم إلغاء الإفلات.",dropComplete:"اكتمل الإفلات.",dropDescriptionKeyboard:"اضغط Enter للإفلات. اضغط Escape لإلغاء السحب.",dropDescriptionTouch:"اضغط مرتين للإفلات.",dropDescriptionVirtual:"انقر للإفلات.",dropIndicator:"مؤشر الإفلات",dropOnItem:t=>`إفلات ${t.itemText}`,dropOnRoot:"الإفلات",endDragKeyboard:"السحب. اضغط Enter لإلغاء السحب.",endDragTouch:"السحب. اضغط مرتين لإلغاء السحب.",endDragVirtual:"السحب. انقر لإلغاء السحب.",insertAfter:t=>`أدخل بعد ${t.itemText}`,insertBefore:t=>`أدخل قبل ${t.itemText}`,insertBetween:t=>`أدخل بين ${t.beforeItemText} و ${t.afterItemText}`};var SA={};SA={dragDescriptionKeyboard:"Натиснете „Enter“, за да започнете да плъзгате.",dragDescriptionKeyboardAlt:"Натиснете Alt + Enter, за да започнете да плъзгате.",dragDescriptionLongPress:"Натиснете продължително, за да започнете да плъзгате.",dragDescriptionTouch:"Натиснете двукратно, за да започнете да плъзгате.",dragDescriptionVirtual:"Щракнете, за да започнете да плъзгате.",dragItem:t=>`Плъзни ${t.itemText}`,dragSelectedItems:(t,e)=>`Плъзни ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елемента`})}`,dragSelectedKeyboard:(t,e)=>`Натиснете Enter, за да плъзнете ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Натиснете Alt и Enter, за да плъзнете ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,dragSelectedLongPress:(t,e)=>`Натиснете продължително, за да плъзнете ${e.plural(t.count,{one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,dragStartedKeyboard:"Започна плъзгане. Натиснете „Tab“, за да се придвижите до целта, след което натиснете „Enter“ за пускане или натиснете „Escape“ за отмяна.",dragStartedTouch:"Започна плъзгане. Придвижете се до целта, след което натиснете двукратно, за да пуснете.",dragStartedVirtual:"Започна плъзгане. Придвижете се до целта, след което щракнете или натиснете „Enter“ за пускане.",dropCanceled:"Пускането е отменено.",dropComplete:"Пускането е завършено.",dropDescriptionKeyboard:"Натиснете „Enter“ за пускане. Натиснете „Escape“ за отмяна на плъзгането.",dropDescriptionTouch:"Натиснете двукратно за пускане.",dropDescriptionVirtual:"Щракнете за пускане.",dropIndicator:"индикатор за пускане",dropOnItem:t=>`Пусни върху ${t.itemText}`,dropOnRoot:"Пусни върху",endDragKeyboard:"Плъзгане. Натиснете „Enter“ за отмяна на плъзгането.",endDragTouch:"Плъзгане. Натиснете двукратно за отмяна на плъзгането.",endDragVirtual:"Плъзгане. Щракнете за отмяна.",insertAfter:t=>`Вмъкни след ${t.itemText}`,insertBefore:t=>`Вмъкни преди ${t.itemText}`,insertBetween:t=>`Вмъкни между ${t.beforeItemText} и ${t.afterItemText}`};var wA={};wA={dragDescriptionKeyboard:"Stisknutím klávesy Enter začnete s přetahováním.",dragDescriptionKeyboardAlt:"Stisknutím Alt + Enter zahájíte přetahování.",dragDescriptionLongPress:"Dlouhým stisknutím zahájíte přetahování.",dragDescriptionTouch:"Poklepáním začnete s přetahováním.",dragDescriptionVirtual:"Kliknutím začnete s přetahováním.",dragItem:t=>`Přetáhnout ${t.itemText}`,dragSelectedItems:(t,e)=>`Přetáhnout ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,few:()=>`${e.number(t.count)} vybrané položky`,other:()=>`${e.number(t.count)} vybraných položek`})}`,dragSelectedKeyboard:(t,e)=>`Stisknutím klávesy Enter přetáhněte ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,other:()=>`${e.number(t.count)} vybrané položky`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Stisknutím Alt + Enter přetáhněte ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,other:()=>`${e.number(t.count)} vybrané položky`})}.`,dragSelectedLongPress:(t,e)=>`Dlouhým stisknutím přetáhnete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybranou položku`,other:()=>`${e.number(t.count)} vybrané položky`})}.`,dragStartedKeyboard:"Začněte s přetahováním. Po stisknutí klávesy Tab najděte požadovaný cíl a stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.",dragStartedTouch:"Začněte s přetahováním. Najděte požadovaný cíl a poklepáním přetažení dokončete.",dragStartedVirtual:"Začněte s přetahováním. Najděte požadovaný cíl a kliknutím nebo stisknutím klávesy Enter přetažení dokončete.",dropCanceled:"Přetažení bylo zrušeno.",dropComplete:"Přetažení bylo dokončeno.",dropDescriptionKeyboard:"Stisknutím klávesy Enter přetažení dokončete nebo stisknutím klávesy Esc akci zrušte.",dropDescriptionTouch:"Poklepáním přetažení dokončete.",dropDescriptionVirtual:"Kliknutím objekt přetáhněte.",dropIndicator:"indikátor přetažení",dropOnItem:t=>`Přetáhnout na ${t.itemText}`,dropOnRoot:"Přetáhnout na",endDragKeyboard:"Probíhá přetahování. Stisknutím klávesy Enter přetažení zrušíte.",endDragTouch:"Probíhá přetahování. Poklepáním přetažení zrušíte.",endDragVirtual:"Probíhá přetahování. Kliknutím přetažení zrušíte.",insertAfter:t=>`Vložit za ${t.itemText}`,insertBefore:t=>`Vložit před ${t.itemText}`,insertBetween:t=>`Vložit mezi ${t.beforeItemText} a ${t.afterItemText}`};var $A={};$A={dragDescriptionKeyboard:"Tryk på Enter for at starte med at trække.",dragDescriptionKeyboardAlt:"Tryk på Alt + Enter for at starte med at trække.",dragDescriptionLongPress:"Tryk længe for at starte med at trække.",dragDescriptionTouch:"Dobbelttryk for at starte med at trække.",dragDescriptionVirtual:"Klik for at starte med at trække.",dragItem:t=>`Træk ${t.itemText}`,dragSelectedItems:(t,e)=>`Træk ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}`,dragSelectedKeyboard:(t,e)=>`Tryk på Enter for at trække ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgte element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Tryk på Alt + Enter for at trække ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgte element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedLongPress:(t,e)=>`Tryk længe for at trække ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgte element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragStartedKeyboard:"Startet med at trække. Tryk på Tab for at gå til et slip-mål, tryk derefter på Enter for at slippe, eller tryk på Escape for at annullere.",dragStartedTouch:"Startet med at trække. Gå til et slip-mål, og dobbelttryk derefter for at slippe.",dragStartedVirtual:"Startet med at trække. Gå til et slip-mål, og klik eller tryk derefter på enter for at slippe.",dropCanceled:"Slip annulleret.",dropComplete:"Slip fuldført.",dropDescriptionKeyboard:"Tryk på Enter for at slippe. Tryk på Escape for at annullere trækning.",dropDescriptionTouch:"Dobbelttryk for at slippe.",dropDescriptionVirtual:"Klik for at slippe.",dropIndicator:"slip-indikator",dropOnItem:t=>`Slip på ${t.itemText}`,dropOnRoot:"Slip på",endDragKeyboard:"Trækning. Tryk på enter for at annullere træk.",endDragTouch:"Trækning. Dobbelttryk for at annullere træk.",endDragVirtual:"Trækning. Klik for at annullere trækning.",insertAfter:t=>`Indsæt efter ${t.itemText}`,insertBefore:t=>`Indsæt før ${t.itemText}`,insertBetween:t=>`Indsæt mellem ${t.beforeItemText} og ${t.afterItemText}`};var TA={};TA={dragDescriptionKeyboard:"Drücken Sie die Eingabetaste, um den Ziehvorgang zu starten.",dragDescriptionKeyboardAlt:"Alt + Eingabe drücken, um den Ziehvorgang zu starten.",dragDescriptionLongPress:"Lang drücken, um mit dem Ziehen zu beginnen.",dragDescriptionTouch:"Tippen Sie doppelt, um den Ziehvorgang zu starten.",dragDescriptionVirtual:"Zum Starten des Ziehvorgangs klicken.",dragItem:t=>`${t.itemText} ziehen`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Objekt`,other:()=>`${e.number(t.count)} ausgewählte Objekte`})} ziehen`,dragSelectedKeyboard:(t,e)=>`Eingabetaste drücken, um ${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Element`,other:()=>`${e.number(t.count)} ausgewählte Elemente`})} zu ziehen.`,dragSelectedKeyboardAlt:(t,e)=>`Alt + Eingabetaste drücken, um ${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Element`,other:()=>`${e.number(t.count)} ausgewählte Elemente`})} zu ziehen.`,dragSelectedLongPress:(t,e)=>`Lang drücken, um ${e.plural(t.count,{one:()=>`${e.number(t.count)} ausgewähltes Element`,other:()=>`${e.number(t.count)} ausgewählte Elemente`})} zu ziehen.`,dragStartedKeyboard:"Ziehvorgang gestartet. Drücken Sie die Tabulatortaste, um zu einem Ablegeziel zu navigieren und drücken Sie dann die Eingabetaste, um das Objekt abzulegen, oder Escape, um den Vorgang abzubrechen.",dragStartedTouch:"Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und tippen Sie doppelt, um das Objekt abzulegen.",dragStartedVirtual:"Ziehvorgang gestartet. Navigieren Sie zu einem Ablegeziel und klicken Sie oder drücken Sie die Eingabetaste, um das Objekt abzulegen.",dropCanceled:"Ablegen abgebrochen.",dropComplete:"Ablegen abgeschlossen.",dropDescriptionKeyboard:"Drücken Sie die Eingabetaste, um das Objekt abzulegen. Drücken Sie Escape, um den Vorgang abzubrechen.",dropDescriptionTouch:"Tippen Sie doppelt, um das Objekt abzulegen.",dropDescriptionVirtual:"Zum Ablegen klicken.",dropIndicator:"Ablegeanzeiger",dropOnItem:t=>`Auf ${t.itemText} ablegen`,dropOnRoot:"Ablegen auf",endDragKeyboard:"Ziehvorgang läuft. Drücken Sie die Eingabetaste, um den Vorgang abzubrechen.",endDragTouch:"Ziehvorgang läuft. Tippen Sie doppelt, um den Vorgang abzubrechen.",endDragVirtual:"Ziehvorgang läuft. Klicken Sie, um den Vorgang abzubrechen.",insertAfter:t=>`Nach ${t.itemText} einfügen`,insertBefore:t=>`Vor ${t.itemText} einfügen`,insertBetween:t=>`Zwischen ${t.beforeItemText} und ${t.afterItemText} einfügen`};var AA={};AA={dragDescriptionKeyboard:"Πατήστε Enter για έναρξη της μεταφοράς.",dragDescriptionKeyboardAlt:"Πατήστε Alt + Enter για έναρξη της μεταφοράς.",dragDescriptionLongPress:"Πατήστε παρατεταμένα για να ξεκινήσετε τη μεταφορά.",dragDescriptionTouch:"Πατήστε δύο φορές για έναρξη της μεταφοράς.",dragDescriptionVirtual:"Κάντε κλικ για να ξεκινήσετε τη μεταφορά.",dragItem:t=>`Μεταφορά ${t.itemText}`,dragSelectedItems:(t,e)=>`Μεταφορά σε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}`,dragSelectedKeyboard:(t,e)=>`Πατήστε Enter για να σύρετε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Πατήστε Alt + Enter για να σύρετε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}.`,dragSelectedLongPress:(t,e)=>`Πατήστε παρατεταμένα για να σύρετε ${e.plural(t.count,{one:()=>`${e.number(t.count)} επιλεγμένο στοιχείο`,other:()=>`${e.number(t.count)} επιλεγμένα στοιχεία`})}.`,dragStartedKeyboard:"Η μεταφορά ξεκίνησε. Πατήστε το πλήκτρο Tab για να μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε Enter για απόθεση ή πατήστε Escape για ακύρωση.",dragStartedTouch:"Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, πατήστε δύο φορές για απόθεση.",dragStartedVirtual:"Η μεταφορά ξεκίνησε. Μεταβείτε σε έναν προορισμό απόθεσης και, στη συνέχεια, κάντε κλικ ή πατήστε Enter για απόθεση.",dropCanceled:"Η απόθεση ακυρώθηκε.",dropComplete:"Η απόθεση ολοκληρώθηκε.",dropDescriptionKeyboard:"Πατήστε Enter για απόθεση. Πατήστε Escape για ακύρωση της μεταφοράς.",dropDescriptionTouch:"Πατήστε δύο φορές για απόθεση.",dropDescriptionVirtual:"Κάντε κλικ για απόθεση.",dropIndicator:"δείκτης απόθεσης",dropOnItem:t=>`Απόθεση σε ${t.itemText}`,dropOnRoot:"Απόθεση σε",endDragKeyboard:"Μεταφορά σε εξέλιξη. Πατήστε Enter για ακύρωση της μεταφοράς.",endDragTouch:"Μεταφορά σε εξέλιξη. Πατήστε δύο φορές για ακύρωση της μεταφοράς.",endDragVirtual:"Μεταφορά σε εξέλιξη. Κάντε κλικ για ακύρωση της μεταφοράς.",insertAfter:t=>`Εισαγωγή μετά από ${t.itemText}`,insertBefore:t=>`Εισαγωγή πριν από ${t.itemText}`,insertBetween:t=>`Εισαγωγή μεταξύ ${t.beforeItemText} και ${t.afterItemText}`};var BA={};BA={dragItem:t=>`Drag ${t.itemText}`,dragSelectedItems:(t,e)=>`Drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}`,dragDescriptionKeyboard:"Press Enter to start dragging.",dragDescriptionKeyboardAlt:"Press Alt + Enter to start dragging.",dragDescriptionTouch:"Double tap to start dragging.",dragDescriptionVirtual:"Click to start dragging.",dragDescriptionLongPress:"Long press to start dragging.",dragSelectedKeyboard:(t,e)=>`Press Enter to drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Press Alt + Enter to drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}.`,dragSelectedLongPress:(t,e)=>`Long press to drag ${e.plural(t.count,{one:()=>`${e.number(t.count)} selected item`,other:()=>`${e.number(t.count)} selected items`})}.`,dragStartedKeyboard:"Started dragging. Press Tab to navigate to a drop target, then press Enter to drop, or press Escape to cancel.",dragStartedTouch:"Started dragging. Navigate to a drop target, then double tap to drop.",dragStartedVirtual:"Started dragging. Navigate to a drop target, then click or press Enter to drop.",endDragKeyboard:"Dragging. Press Enter to cancel drag.",endDragTouch:"Dragging. Double tap to cancel drag.",endDragVirtual:"Dragging. Click to cancel drag.",dropDescriptionKeyboard:"Press Enter to drop. Press Escape to cancel drag.",dropDescriptionTouch:"Double tap to drop.",dropDescriptionVirtual:"Click to drop.",dropCanceled:"Drop canceled.",dropComplete:"Drop complete.",dropIndicator:"drop indicator",dropOnRoot:"Drop on",dropOnItem:t=>`Drop on ${t.itemText}`,insertBefore:t=>`Insert before ${t.itemText}`,insertBetween:t=>`Insert between ${t.beforeItemText} and ${t.afterItemText}`,insertAfter:t=>`Insert after ${t.itemText}`};var MA={};MA={dragDescriptionKeyboard:"Pulse Intro para empezar a arrastrar.",dragDescriptionKeyboardAlt:"Pulse Intro para empezar a arrastrar.",dragDescriptionLongPress:"Mantenga pulsado para comenzar a arrastrar.",dragDescriptionTouch:"Pulse dos veces para iniciar el arrastre.",dragDescriptionVirtual:"Haga clic para iniciar el arrastre.",dragItem:t=>`Arrastrar ${t.itemText}`,dragSelectedItems:(t,e)=>`Arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}`,dragSelectedKeyboard:(t,e)=>`Pulse Intro para arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pulse Alt + Intro para arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,dragSelectedLongPress:(t,e)=>`Mantenga pulsado para arrastrar ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,dragStartedKeyboard:"Se ha empezado a arrastrar. Pulse el tabulador para ir al destino donde se vaya a colocar y, a continuación, pulse Intro para soltar, o pulse Escape para cancelar.",dragStartedTouch:"Se ha empezado a arrastrar. Vaya al destino donde se vaya a colocar y, a continuación, pulse dos veces para soltar.",dragStartedVirtual:"Se ha empezado a arrastrar. Vaya al destino donde se vaya a colocar y, a continuación, haga clic o pulse Intro para soltar.",dropCanceled:"Se ha cancelado la colocación.",dropComplete:"Colocación finalizada.",dropDescriptionKeyboard:"Pulse Intro para soltar. Pulse Escape para cancelar el arrastre.",dropDescriptionTouch:"Pulse dos veces para soltar.",dropDescriptionVirtual:"Haga clic para soltar.",dropIndicator:"indicador de colocación",dropOnItem:t=>`Soltar en ${t.itemText}`,dropOnRoot:"Soltar en",endDragKeyboard:"Arrastrando. Pulse Intro para cancelar el arrastre.",endDragTouch:"Arrastrando. Pulse dos veces para cancelar el arrastre.",endDragVirtual:"Arrastrando. Haga clic para cancelar el arrastre.",insertAfter:t=>`Insertar después de ${t.itemText}`,insertBefore:t=>`Insertar antes de ${t.itemText}`,insertBetween:t=>`Insertar entre ${t.beforeItemText} y ${t.afterItemText}`};var RA={};RA={dragDescriptionKeyboard:"Lohistamise alustamiseks vajutage klahvi Enter.",dragDescriptionKeyboardAlt:"Lohistamise alustamiseks vajutage klahvikombinatsiooni Alt + Enter.",dragDescriptionLongPress:"Vajutage pikalt lohistamise alustamiseks.",dragDescriptionTouch:"Topeltpuudutage lohistamise alustamiseks.",dragDescriptionVirtual:"Klõpsake lohistamise alustamiseks.",dragItem:t=>`Lohista ${t.itemText}`,dragSelectedItems:(t,e)=>`Lohista ${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksust`,other:()=>`${e.number(t.count)} valitud üksust`})}`,dragSelectedKeyboard:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksuse`,other:()=>`${e.number(t.count)} valitud üksuse`})} lohistamiseks vajutage sisestusklahvi Enter.`,dragSelectedKeyboardAlt:(t,e)=>`Lohistamiseks vajutage klahvikombinatsiooni Alt + Enter ${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksuse`,other:()=>`${e.number(t.count)} valitud üksuse`})} jaoks.`,dragSelectedLongPress:(t,e)=>`Pikk vajutus ${e.plural(t.count,{one:()=>`${e.number(t.count)} valitud üksuse`,other:()=>`${e.number(t.count)} valitud üksuse`})} lohistamiseks.`,dragStartedKeyboard:"Alustati lohistamist. Kukutamise sihtmärgi juurde navigeerimiseks vajutage klahvi Tab, seejärel vajutage kukutamiseks klahvi Enter või loobumiseks klahvi Escape.",dragStartedTouch:"Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja topeltpuudutage kukutamiseks.",dragStartedVirtual:"Alustati lohistamist. Navigeerige kukutamise sihtmärgi juurde ja kukutamiseks klõpsake või vajutage klahvi Enter.",dropCanceled:"Lohistamisest loobuti.",dropComplete:"Lohistamine on tehtud.",dropDescriptionKeyboard:"Kukutamiseks vajutage klahvi Enter. Lohistamisest loobumiseks vajutage klahvi Escape.",dropDescriptionTouch:"Kukutamiseks topeltpuudutage.",dropDescriptionVirtual:"Kukutamiseks klõpsake.",dropIndicator:"lohistamise indikaator",dropOnItem:t=>`Kukuta asukohta ${t.itemText}`,dropOnRoot:"Kukuta asukohta",endDragKeyboard:"Lohistamine. Lohistamisest loobumiseks vajutage klahvi Enter.",endDragTouch:"Lohistamine. Lohistamisest loobumiseks topeltpuudutage.",endDragVirtual:"Lohistamine. Lohistamisest loobumiseks klõpsake.",insertAfter:t=>`Sisesta ${t.itemText} järele`,insertBefore:t=>`Sisesta ${t.itemText} ette`,insertBetween:t=>`Sisesta ${t.beforeItemText} ja ${t.afterItemText} vahele`};var NA={};NA={dragDescriptionKeyboard:"Aloita vetäminen painamalla Enter-näppäintä.",dragDescriptionKeyboardAlt:"Aloita vetäminen painamalla Alt + Enter -näppäinyhdistelmää.",dragDescriptionLongPress:"Aloita vetäminen pitämällä painettuna.",dragDescriptionTouch:"Aloita vetäminen kaksoisnapauttamalla.",dragDescriptionVirtual:"Aloita vetäminen napsauttamalla.",dragItem:t=>`Vedä kohdetta ${t.itemText}`,dragSelectedItems:(t,e)=>`Vedä ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittua kohdetta`,other:()=>`${e.number(t.count)} valittua kohdetta`})}`,dragSelectedKeyboard:(t,e)=>`Vedä painamalla Enter ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittu kohde`,other:()=>`${e.number(t.count)} valittua kohdetta`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Vedä painamalla Alt + Enter ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittu kohde`,other:()=>`${e.number(t.count)} valittua kohdetta`})}.`,dragSelectedLongPress:(t,e)=>`Vedä pitämällä painettuna ${e.plural(t.count,{one:()=>`${e.number(t.count)} valittu kohde`,other:()=>`${e.number(t.count)} valittua kohdetta`})}.`,dragStartedKeyboard:"Vetäminen aloitettu. Siirry pudotuskohteeseen painamalla sarkainnäppäintä ja sitten pudota painamalla Enter-näppäintä tai peruuta painamalla Escape-näppäintä.",dragStartedTouch:"Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota kaksoisnapauttamalla.",dragStartedVirtual:"Vetäminen aloitettu. Siirry pudotuskohteeseen ja pudota napsauttamalla tai painamalla Enter-näppäintä.",dropCanceled:"Pudotus peruutettu.",dropComplete:"Pudotus suoritettu.",dropDescriptionKeyboard:"Pudota painamalla Enter-näppäintä. Peruuta vetäminen painamalla Escape-näppäintä.",dropDescriptionTouch:"Pudota kaksoisnapauttamalla.",dropDescriptionVirtual:"Pudota napsauttamalla.",dropIndicator:"pudotuksen ilmaisin",dropOnItem:t=>`Pudota kohteeseen ${t.itemText}`,dropOnRoot:"Pudota kohteeseen",endDragKeyboard:"Vedetään. Peruuta vetäminen painamalla Enter-näppäintä.",endDragTouch:"Vedetään. Peruuta vetäminen kaksoisnapauttamalla.",endDragVirtual:"Vedetään. Peruuta vetäminen napsauttamalla.",insertAfter:t=>`Lisää kohteen ${t.itemText} jälkeen`,insertBefore:t=>`Lisää ennen kohdetta ${t.itemText}`,insertBetween:t=>`Lisää kohteiden ${t.beforeItemText} ja ${t.afterItemText} väliin`};var PA={};PA={dragDescriptionKeyboard:"Appuyez sur Entrée pour commencer le déplacement.",dragDescriptionKeyboardAlt:"Appuyez sur Alt + Entrée pour commencer à faire glisser.",dragDescriptionLongPress:"Appuyez de manière prolongée pour commencer à faire glisser.",dragDescriptionTouch:"Touchez deux fois pour commencer le déplacement.",dragDescriptionVirtual:"Cliquez pour commencer le déplacement.",dragItem:t=>`Déplacer ${t.itemText}`,dragSelectedItems:(t,e)=>`Déplacer ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}`,dragSelectedKeyboard:(t,e)=>`Appuyez sur Entrée pour faire glisser ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Appuyez sur Alt + Entrée pour faire glisser ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,dragSelectedLongPress:(t,e)=>`Appuyez de manière prolongée pour faire glisser ${e.plural(t.count,{one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,dragStartedKeyboard:"Déplacement commencé. Appuyez sur Tabulation pour accéder à une cible de dépôt, puis appuyez sur Entrée pour déposer, ou appuyez sur Échap pour annuler.",dragStartedTouch:"Déplacement commencé. Accédez à une cible de dépôt, puis touchez deux fois pour déposer.",dragStartedVirtual:"Déplacement commencé. Accédez à une cible de dépôt, puis cliquez ou appuyez sur Entrée pour déposer.",dropCanceled:"Dépôt annulé.",dropComplete:"Dépôt terminé.",dropDescriptionKeyboard:"Appuyez sur Entrée pour déposer. Appuyez sur Échap pour annuler le déplacement.",dropDescriptionTouch:"Touchez deux fois pour déposer.",dropDescriptionVirtual:"Cliquez pour déposer.",dropIndicator:"indicateur de dépôt",dropOnItem:t=>`Déposer sur ${t.itemText}`,dropOnRoot:"Déposer sur",endDragKeyboard:"Déplacement. Appuyez sur Entrée pour annuler le déplacement.",endDragTouch:"Déplacement. Touchez deux fois pour annuler le déplacement.",endDragVirtual:"Déplacement. Cliquez pour annuler le déplacement.",insertAfter:t=>`Insérer après ${t.itemText}`,insertBefore:t=>`Insérer avant ${t.itemText}`,insertBetween:t=>`Insérer entre ${t.beforeItemText} et ${t.afterItemText}`};var OA={};OA={dragDescriptionKeyboard:"הקש על Enter כדי להתחיל לגרור.",dragDescriptionKeyboardAlt:"הקש Alt + Enter כדי להתחיל לגרור.",dragDescriptionLongPress:"לחץ לחיצה ארוכה כדי להתחיל לגרור.",dragDescriptionTouch:"הקש פעמיים כדי להתחיל בגרירה.",dragDescriptionVirtual:"לחץ כדי להתחיל לגרור.",dragItem:t=>`גרור את ${t.itemText}`,dragSelectedItems:(t,e)=>`גרור ${e.plural(t.count,{one:()=>`פריט נבחר ${e.number(t.count)}`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}`,dragSelectedKeyboard:(t,e)=>`הקש על Enter כדי לגרור ${e.plural(t.count,{one:()=>`${e.number(t.count)} פריט שנבחר`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}.`,dragSelectedKeyboardAlt:(t,e)=>`הקש Alt + Enter כדי לגרור ${e.plural(t.count,{one:()=>`${e.number(t.count)} פריט שנבחר`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}.`,dragSelectedLongPress:(t,e)=>`לחץ לחיצה ארוכה כדי לגרור ${e.plural(t.count,{one:()=>`${e.number(t.count)} פריט שנבחר`,other:()=>`${e.number(t.count)} פריטים שנבחרו`})}.`,dragStartedKeyboard:"התחלת לגרור. הקש על Tab כדי לנווט לנקודת הגרירה ולאחר מכן הקש על Enter כדי לשחרר או על Escape כדי לבטל.",dragStartedTouch:"התחלת לגרור. נווט לנקודת השחרור ולאחר מכן הקש פעמיים כדי לשחרר.",dragStartedVirtual:"התחלת לגרור. נווט לנקודת השחרור ולאחר מכן לחץ או הקש על Enter כדי לשחרר.",dropCanceled:"השחרור בוטל.",dropComplete:"השחרור הושלם.",dropDescriptionKeyboard:"הקש על Enter כדי לשחרר. הקש על Escape כדי לבטל את הגרירה.",dropDescriptionTouch:"הקש פעמיים כדי לשחרר.",dropDescriptionVirtual:"לחץ כדי לשחרר.",dropIndicator:"מחוון שחרור",dropOnItem:t=>`שחרר על ${t.itemText}`,dropOnRoot:"שחרר על",endDragKeyboard:"גורר. הקש על Enter כדי לבטל את הגרירה.",endDragTouch:"גורר. הקש פעמיים כדי לבטל את הגרירה.",endDragVirtual:"גורר. לחץ כדי לבטל את הגרירה.",insertAfter:t=>`הוסף אחרי ${t.itemText}`,insertBefore:t=>`הוסף לפני ${t.itemText}`,insertBetween:t=>`הוסף בין ${t.beforeItemText} לבין ${t.afterItemText}`};var LA={};LA={dragDescriptionKeyboard:"Pritisnite Enter da biste počeli povlačiti.",dragDescriptionKeyboardAlt:"Pritisnite Alt + Enter za početak povlačenja.",dragDescriptionLongPress:"Dugo pritisnite za početak povlačenja.",dragDescriptionTouch:"Dvaput dodirnite da biste počeli povlačiti.",dragDescriptionVirtual:"Kliknite da biste počeli povlačiti.",dragItem:t=>`Povucite stavku ${t.itemText}`,dragSelectedItems:(t,e)=>`Povucite ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabranu stavku`,other:()=>`ovoliko odabranih stavki: ${e.number(t.count)}`})}`,dragSelectedKeyboard:(t,e)=>`Pritisnite Enter za povlačenje ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabrana stavka`,other:()=>`${e.number(t.count)} odabrane stavke`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pritisnite Alt + Enter za povlačenje ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabrana stavka`,other:()=>`${e.number(t.count)} odabrane stavke`})}.`,dragSelectedLongPress:(t,e)=>`Dugo pritisnite za povlačenje ${e.plural(t.count,{one:()=>`${e.number(t.count)} odabrana stavka`,other:()=>`${e.number(t.count)} odabrane stavke`})}.`,dragStartedKeyboard:"Počeli ste povlačiti. Pritisnite tipku tabulatora da biste došli do cilja ispuštanja, a zatim Enter da biste ispustili stavku ili Escape da biste prekinuli povlačenje.",dragStartedTouch:"Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim dvaput dodirnite da biste ispustili stavku.",dragStartedVirtual:"Počeli ste povlačiti. Dođite do cilja ispuštanja, a zatim kliknite ili pritisnite Enter da biste ispustili stavku.",dropCanceled:"Povlačenje je prekinuto.",dropComplete:"Ispuštanje je dovršeno.",dropDescriptionKeyboard:"Pritisnite Enter da biste ispustili stavku. Pritisnite Escape da biste prekinuli povlačenje.",dropDescriptionTouch:"Dvaput dodirnite da biste ispustili stavku.",dropDescriptionVirtual:"Kliknite da biste ispustili stavku.",dropIndicator:"pokazatelj ispuštanja",dropOnItem:t=>`Ispustite na stavku ${t.itemText}`,dropOnRoot:"Ispustite na",endDragKeyboard:"Povlačenje. Pritisnite Enter da biste prekinuli povlačenje.",endDragTouch:"Povlačenje. Dvaput dodirnite da biste prekinuli povlačenje.",endDragVirtual:"Povlačenje. Kliknite da biste prekinuli povlačenje.",insertAfter:t=>`Umetnite iza stavke ${t.itemText}`,insertBefore:t=>`Ispustite ispred stavke ${t.itemText}`,insertBetween:t=>`Umetnite između stavki ${t.beforeItemText} i ${t.afterItemText}`};var zA={};zA={dragDescriptionKeyboard:"Nyomja le az Enter billentyűt a húzás megkezdéséhez.",dragDescriptionKeyboardAlt:"Nyomja le az Alt + Enter billentyűket a húzás megkezdéséhez.",dragDescriptionLongPress:"Hosszan nyomja meg a húzás elindításához.",dragDescriptionTouch:"Koppintson duplán a húzás megkezdéséhez.",dragDescriptionVirtual:"Kattintson a húzás megkezdéséhez.",dragItem:t=>`${t.itemText} húzása`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzása`,dragSelectedKeyboard:(t,e)=>`Nyomja meg az Entert ${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzásához.`,dragSelectedKeyboardAlt:(t,e)=>`Nyomja meg az Alt + Enter billentyűket ${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzásához.`,dragSelectedLongPress:(t,e)=>`Tartsa lenyomva hosszan ${e.plural(t.count,{one:()=>`${e.number(t.count)} kijelölt elem`,other:()=>`${e.number(t.count)} kijelölt elem`})} húzásához.`,dragStartedKeyboard:"Húzás megkezdve. Nyomja le a Tab billentyűt az elengedési célhoz navigálásához, majd nyomja le az Enter billentyűt az elengedéshez, vagy nyomja le az Escape billentyűt a megszakításhoz.",dragStartedTouch:"Húzás megkezdve. Navigáljon egy elengedési célhoz, majd koppintson duplán az elengedéshez.",dragStartedVirtual:"Húzás megkezdve. Navigáljon egy elengedési célhoz, majd kattintson vagy nyomja le az Enter billentyűt az elengedéshez.",dropCanceled:"Elengedés megszakítva.",dropComplete:"Elengedés teljesítve.",dropDescriptionKeyboard:"Nyomja le az Enter billentyűt az elengedéshez. Nyomja le az Escape billentyűt a húzás megszakításához.",dropDescriptionTouch:"Koppintson duplán az elengedéshez.",dropDescriptionVirtual:"Kattintson az elengedéshez.",dropIndicator:"elengedésjelző",dropOnItem:t=>`Elengedés erre: ${t.itemText}`,dropOnRoot:"Elengedés erre:",endDragKeyboard:"Húzás folyamatban. Nyomja le az Enter billentyűt a húzás megszakításához.",endDragTouch:"Húzás folyamatban. Koppintson duplán a húzás megszakításához.",endDragVirtual:"Húzás folyamatban. Kattintson a húzás megszakításához.",insertAfter:t=>`Beszúrás ${t.itemText} után`,insertBefore:t=>`Beszúrás ${t.itemText} elé`,insertBetween:t=>`Beszúrás ${t.beforeItemText} és ${t.afterItemText} közé`};var IA={};IA={dragDescriptionKeyboard:"Premi Invio per iniziare a trascinare.",dragDescriptionKeyboardAlt:"Premi Alt + Invio per iniziare a trascinare.",dragDescriptionLongPress:"Premi a lungo per iniziare a trascinare.",dragDescriptionTouch:"Tocca due volte per iniziare a trascinare.",dragDescriptionVirtual:"Fai clic per iniziare a trascinare.",dragItem:t=>`Trascina ${t.itemText}`,dragSelectedItems:(t,e)=>`Trascina ${e.plural(t.count,{one:()=>`${e.number(t.count)} altro elemento selezionato`,other:()=>`${e.number(t.count)} altri elementi selezionati`})}`,dragSelectedKeyboard:(t,e)=>`Premi Invio per trascinare ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Premi Alt + Invio per trascinare ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,dragSelectedLongPress:(t,e)=>`Premi a lungo per trascinare ${e.plural(t.count,{one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,dragStartedKeyboard:"Hai iniziato a trascinare. Premi Tab per arrivare sull’area di destinazione, quindi premi Invio per rilasciare o Esc per annullare.",dragStartedTouch:"Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi tocca due volte per rilasciare.",dragStartedVirtual:"Hai iniziato a trascinare. Arriva sull’area di destinazione, quindi fai clic o premi Invio per rilasciare.",dropCanceled:"Rilascio annullato.",dropComplete:"Rilascio completato.",dropDescriptionKeyboard:"Premi Invio per rilasciare. Premi Esc per annullare.",dropDescriptionTouch:"Tocca due volte per rilasciare.",dropDescriptionVirtual:"Fai clic per rilasciare.",dropIndicator:"indicatore di rilascio",dropOnItem:t=>`Rilascia su ${t.itemText}`,dropOnRoot:"Rilascia su",endDragKeyboard:"Trascinamento. Premi Invio per annullare.",endDragTouch:"Trascinamento. Tocca due volte per annullare.",endDragVirtual:"Trascinamento. Fai clic per annullare.",insertAfter:t=>`Inserisci dopo ${t.itemText}`,insertBefore:t=>`Inserisci prima di ${t.itemText}`,insertBetween:t=>`Inserisci tra ${t.beforeItemText} e ${t.afterItemText}`};var jA={};jA={dragDescriptionKeyboard:"Enter キーを押してドラッグを開始してください。",dragDescriptionKeyboardAlt:"Alt+Enter キーを押してドラッグを開始します。",dragDescriptionLongPress:"長押ししてドラッグを開始します。",dragDescriptionTouch:"ダブルタップしてドラッグを開始します。",dragDescriptionVirtual:"クリックしてドラッグを開始します。",dragItem:t=>`${t.itemText} をドラッグ`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} 個の選択項目`,other:()=>`${e.number(t.count)} 個の選択項目`})} をドラッグ`,dragSelectedKeyboard:(t,e)=>`Enter キーを押して、${e.plural(t.count,{one:()=>`${e.number(t.count)} 選択した項目`,other:()=>`${e.number(t.count)} 選択した項目`})}をドラッグします。`,dragSelectedKeyboardAlt:(t,e)=>`Alt+Enter キーを押して、${e.plural(t.count,{one:()=>`${e.number(t.count)} 選択した項目`,other:()=>`${e.number(t.count)} 選択した項目`})}をドラッグします。`,dragSelectedLongPress:(t,e)=>`長押しして、${e.plural(t.count,{one:()=>`${e.number(t.count)} 選択した項目`,other:()=>`${e.number(t.count)} 選択した項目`})}をドラッグします。`,dragStartedKeyboard:"ドラッグを開始します。Tab キーを押してドロップターゲットにいどうし、Enter キーを押してドロップするか、Esc キーを押してキャンセルします。",dragStartedTouch:"ドラッグを開始しました。ドロップのターゲットに移動し、ダブルタップしてドロップします。",dragStartedVirtual:"ドラッグを開始しました。ドロップのターゲットに移動し、クリックまたは Enter キーを押してドロップします。",dropCanceled:"ドロップがキャンセルされました。",dropComplete:"ドロップが完了しました。",dropDescriptionKeyboard:"Enter キーを押してドロップします。Esc キーを押してドラッグをキャンセルします。",dropDescriptionTouch:"ダブルタップしてドロップします。",dropDescriptionVirtual:"クリックしてドロップします。",dropIndicator:"ドロップインジケーター",dropOnItem:t=>`${t.itemText} にドロップ`,dropOnRoot:"ドロップ場所",endDragKeyboard:"ドラッグしています。Enter キーを押してドラッグをキャンセルします。",endDragTouch:"ドラッグしています。ダブルタップしてドラッグをキャンセルします。",endDragVirtual:"ドラッグしています。クリックしてドラッグをキャンセルします。",insertAfter:t=>`${t.itemText} の後に挿入`,insertBefore:t=>`${t.itemText} の前に挿入`,insertBetween:t=>`${t.beforeItemText} と ${t.afterItemText} の間に挿入`};var FA={};FA={dragDescriptionKeyboard:"드래그를 시작하려면 Enter를 누르세요.",dragDescriptionKeyboardAlt:"드래그를 시작하려면 Alt + Enter를 누르십시오.",dragDescriptionLongPress:"드래그를 시작하려면 길게 누르십시오.",dragDescriptionTouch:"드래그를 시작하려면 더블 탭하세요.",dragDescriptionVirtual:"드래그를 시작하려면 클릭하세요.",dragItem:t=>`${t.itemText} 드래그`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})} 드래그`,dragSelectedKeyboard:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})}을 드래그하려면 Enter를 누르십시오.`,dragSelectedKeyboardAlt:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})}을 드래그하려면 Alt + Enter를 누르십시오.`,dragSelectedLongPress:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)}개 선택 항목`,other:()=>`${e.number(t.count)}개 선택 항목`})}을 드래그하려면 길게 누르십시오.`,dragStartedKeyboard:"드래그가 시작되었습니다. Tab을 눌러 드롭 대상으로 이동한 다음 Enter를 눌러 드롭하거나 Esc를 눌러 취소하세요.",dragStartedTouch:"드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 더블 탭하여 드롭하세요.",dragStartedVirtual:"드래그가 시작되었습니다. 드롭 대상으로 이동한 다음 클릭하거나 Enter를 눌러 드롭하세요.",dropCanceled:"드롭이 취소되었습니다.",dropComplete:"드롭이 완료되었습니다.",dropDescriptionKeyboard:"드롭하려면 Enter를 누르세요. 드래그를 취소하려면 Esc를 누르세요.",dropDescriptionTouch:"더블 탭하여 드롭하세요.",dropDescriptionVirtual:"드롭하려면 클릭하세요.",dropIndicator:"드롭 표시기",dropOnItem:t=>`${t.itemText}에 드롭`,dropOnRoot:"드롭 대상",endDragKeyboard:"드래그 중입니다. 드래그를 취소하려면 Enter를 누르세요.",endDragTouch:"드래그 중입니다. 드래그를 취소하려면 더블 탭하세요.",endDragVirtual:"드래그 중입니다. 드래그를 취소하려면 클릭하세요.",insertAfter:t=>`${t.itemText} 이후에 삽입`,insertBefore:t=>`${t.itemText} 이전에 삽입`,insertBetween:t=>`${t.beforeItemText} 및 ${t.afterItemText} 사이에 삽입`};var KA={};KA={dragDescriptionKeyboard:"Paspauskite „Enter“, kad pradėtumėte vilkti.",dragDescriptionKeyboardAlt:"Paspauskite „Alt + Enter“, kad pradėtumėte vilkti.",dragDescriptionLongPress:"Palaikykite nuspaudę, kad pradėtumėte vilkti.",dragDescriptionTouch:"Palieskite dukart, kad pradėtumėte vilkti.",dragDescriptionVirtual:"Spustelėkite, kad pradėtumėte vilkti.",dragItem:t=>`Vilkti ${t.itemText}`,dragSelectedItems:(t,e)=>`Vilkti ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}`,dragSelectedKeyboard:(t,e)=>`Paspauskite „Enter“, jei norite nuvilkti ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Paspauskite „Alt + Enter“, kad nuvilktumėte ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}.`,dragSelectedLongPress:(t,e)=>`Nuspaudę palaikykite, kad nuvilktumėte ${e.plural(t.count,{one:()=>`${e.number(t.count)} pasirinktą elementą`,other:()=>`${e.number(t.count)} pasirinktus elementus`})}.`,dragStartedKeyboard:"Pradėta vilkti. Paspauskite „Tab“, kad pereitumėte į tiesioginę paskirties vietą, tada paspauskite „Enter“, kad numestumėte, arba „Escape“, kad atšauktumėte.",dragStartedTouch:"Pradėta vilkti. Eikite į tiesioginę paskirties vietą, tada palieskite dukart, kad numestumėte.",dragStartedVirtual:"Pradėta vilkti. Eikite į tiesioginę paskirties vietą ir spustelėkite arba paspauskite „Enter“, kad numestumėte.",dropCanceled:"Numetimas atšauktas.",dropComplete:"Numesta.",dropDescriptionKeyboard:"Paspauskite „Enter“, kad numestumėte. Paspauskite „Escape“, kad atšauktumėte vilkimą.",dropDescriptionTouch:"Palieskite dukart, kad numestumėte.",dropDescriptionVirtual:"Spustelėkite, kad numestumėte.",dropIndicator:"numetimo indikatorius",dropOnItem:t=>`Numesti ant ${t.itemText}`,dropOnRoot:"Numesti ant",endDragKeyboard:"Velkama. Paspauskite „Enter“, kad atšauktumėte vilkimą.",endDragTouch:"Velkama. Spustelėkite dukart, kad atšauktumėte vilkimą.",endDragVirtual:"Velkama. Spustelėkite, kad atšauktumėte vilkimą.",insertAfter:t=>`Įterpti po ${t.itemText}`,insertBefore:t=>`Įterpti prieš ${t.itemText}`,insertBetween:t=>`Įterpti tarp ${t.beforeItemText} ir ${t.afterItemText}`};var _A={};_A={dragDescriptionKeyboard:"Nospiediet Enter, lai sāktu vilkšanu.",dragDescriptionKeyboardAlt:"Nospiediet taustiņu kombināciju Alt+Enter, lai sāktu vilkšanu.",dragDescriptionLongPress:"Turiet nospiestu, lai sāktu vilkšanu.",dragDescriptionTouch:"Veiciet dubultskārienu, lai sāktu vilkšanu.",dragDescriptionVirtual:"Noklikšķiniet, lai sāktu vilkšanu.",dragItem:t=>`Velciet ${t.itemText}`,dragSelectedItems:(t,e)=>`Velciet ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}`,dragSelectedKeyboard:(t,e)=>`Nospiediet taustiņu Enter, lai vilktu ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Nospiediet taustiņu kombināciju Alt+Enter, lai vilktu ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}.`,dragSelectedLongPress:(t,e)=>`Turiet nospiestu, lai vilktu ${e.plural(t.count,{one:()=>`${e.number(t.count)} atlasīto vienumu`,other:()=>`${e.number(t.count)} atlasītos vienumus`})}.`,dragStartedKeyboard:"Uzsākta vilkšana. Nospiediet taustiņu Tab, lai pārietu uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu, vai nospiediet Escape, lai atceltu.",dragStartedTouch:"Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam veiciet dubultskārienu, lai nomestu.",dragStartedVirtual:"Uzsākta vilkšana. Pārejiet uz nomešanas mērķi, pēc tam nospiediet Enter, lai nomestu.",dropCanceled:"Nomešana atcelta.",dropComplete:"Nomešana pabeigta.",dropDescriptionKeyboard:"Nospiediet Enter, lai nomestu. Nospiediet Escape, lai atceltu vilkšanu.",dropDescriptionTouch:"Veiciet dubultskārienu, lai nomestu.",dropDescriptionVirtual:"Noklikšķiniet, lai nomestu.",dropIndicator:"nomešanas indikators",dropOnItem:t=>`Nometiet uz ${t.itemText}`,dropOnRoot:"Nometiet uz",endDragKeyboard:"Notiek vilkšana. Nospiediet Enter, lai atceltu vilkšanu.",endDragTouch:"Notiek vilkšana. Veiciet dubultskārienu, lai atceltu vilkšanu.",endDragVirtual:"Notiek vilkšana. Noklikšķiniet, lai atceltu vilkšanu.",insertAfter:t=>`Ievietojiet pēc ${t.itemText}`,insertBefore:t=>`Ievietojiet pirms ${t.itemText}`,insertBetween:t=>`Ievietojiet starp ${t.beforeItemText} un ${t.afterItemText}`};var VA={};VA={dragDescriptionKeyboard:"Trykk på Enter for å begynne å dra.",dragDescriptionKeyboardAlt:"Trykk på Alt + Enter for å begynne å dra.",dragDescriptionLongPress:"Trykk lenge for å begynne å dra.",dragDescriptionTouch:"Dobbelttrykk for å begynne å dra.",dragDescriptionVirtual:"Klikk for å begynne å dra.",dragItem:t=>`Dra ${t.itemText}`,dragSelectedItems:(t,e)=>`Dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} merket element`,other:()=>`${e.number(t.count)} merkede elementer`})}`,dragSelectedKeyboard:(t,e)=>`Trykk Enter for å dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Trykk på Alt + Enter for å dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragSelectedLongPress:(t,e)=>`Trykk lenge for å dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valgt element`,other:()=>`${e.number(t.count)} valgte elementer`})}.`,dragStartedKeyboard:"Begynte å dra. Trykk på Tab for å navigere til et mål, og trykk deretter på Enter for å slippe eller på Esc for å avbryte.",dragStartedTouch:"Begynte å dra. Naviger til et mål, og dobbelttrykk for å slippe.",dragStartedVirtual:"Begynte å dra. Naviger til et mål, og klikk eller trykk på Enter for å slippe.",dropCanceled:"Avbrøt slipping.",dropComplete:"Slippingen er fullført.",dropDescriptionKeyboard:"Trykk på Enter for å slippe. Trykk på Esc hvis du vil avbryte draingen.",dropDescriptionTouch:"Dobbelttrykk for å slippe.",dropDescriptionVirtual:"Klikk for å slippe.",dropIndicator:"slippeindikator",dropOnItem:t=>`Slipp på ${t.itemText}`,dropOnRoot:"Slipp på",endDragKeyboard:"Drar. Trykk på Enter hvis du vil avbryte.",endDragTouch:"Drar. Dobbelttrykk hvis du vil avbryte.",endDragVirtual:"Drar. Klikk hvis du vil avbryte.",insertAfter:t=>`Sett inn etter ${t.itemText}`,insertBefore:t=>`Sett inn før ${t.itemText}`,insertBetween:t=>`Sett inn mellom ${t.beforeItemText} og ${t.afterItemText}`};var HA={};HA={dragDescriptionKeyboard:"Druk op Enter om te slepen.",dragDescriptionKeyboardAlt:"Druk op Alt + Enter om te slepen.",dragDescriptionLongPress:"Houd lang ingedrukt om te slepen.",dragDescriptionTouch:"Dubbeltik om te slepen.",dragDescriptionVirtual:"Klik om met slepen te starten.",dragItem:t=>`${t.itemText} slepen`,dragSelectedItems:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} slepen`,dragSelectedKeyboard:(t,e)=>`Druk op Enter om ${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} te slepen.`,dragSelectedKeyboardAlt:(t,e)=>`Druk op Alt + Enter om ${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} te slepen.`,dragSelectedLongPress:(t,e)=>`Houd lang ingedrukt om ${e.plural(t.count,{one:()=>`${e.number(t.count)} geselecteerd item`,other:()=>`${e.number(t.count)} geselecteerde items`})} te slepen.`,dragStartedKeyboard:"Begonnen met slepen. Druk op Tab om naar een locatie te gaan. Druk dan op Enter om neer te zetten, of op Esc om te annuleren.",dragStartedTouch:"Begonnen met slepen. Ga naar de gewenste locatie en dubbeltik om neer te zetten.",dragStartedVirtual:"Begonnen met slepen. Ga naar de gewenste locatie en klik of druk op Enter om neer te zetten.",dropCanceled:"Neerzetten geannuleerd.",dropComplete:"Neerzetten voltooid.",dropDescriptionKeyboard:"Druk op Enter om neer te zetten. Druk op Esc om het slepen te annuleren.",dropDescriptionTouch:"Dubbeltik om neer te zetten.",dropDescriptionVirtual:"Klik om neer te zetten.",dropIndicator:"aanwijzer voor neerzetten",dropOnItem:t=>`Neerzetten op ${t.itemText}`,dropOnRoot:"Neerzetten op",endDragKeyboard:"Bezig met slepen. Druk op Enter om te annuleren.",endDragTouch:"Bezig met slepen. Dubbeltik om te annuleren.",endDragVirtual:"Bezig met slepen. Klik om te annuleren.",insertAfter:t=>`Plaatsen na ${t.itemText}`,insertBefore:t=>`Plaatsen vóór ${t.itemText}`,insertBetween:t=>`Plaatsen tussen ${t.beforeItemText} en ${t.afterItemText}`};var UA={};UA={dragDescriptionKeyboard:"Naciśnij Enter, aby rozpocząć przeciąganie.",dragDescriptionKeyboardAlt:"Naciśnij Alt + Enter, aby rozpocząć przeciąganie.",dragDescriptionLongPress:"Naciśnij i przytrzymaj, aby rozpocząć przeciąganie.",dragDescriptionTouch:"Dotknij dwukrotnie, aby rozpocząć przeciąganie.",dragDescriptionVirtual:"Kliknij, aby rozpocząć przeciąganie.",dragItem:t=>`Przeciągnij ${t.itemText}`,dragSelectedItems:(t,e)=>`Przeciągnij ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybranych elementów`})}`,dragSelectedKeyboard:(t,e)=>`Naciśnij Enter, aby przeciągnąć ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybrane(-ych) elementy(-ów)`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Naciśnij Alt + Enter, aby przeciągnąć ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybrane(-ych) elementy(-ów)`})}.`,dragSelectedLongPress:(t,e)=>`Naciśnij i przytrzymaj, aby przeciągnąć ${e.plural(t.count,{one:()=>`${e.number(t.count)} wybrany element`,other:()=>`${e.number(t.count)} wybrane(-ych) elementy(-ów)`})}.`,dragStartedKeyboard:"Rozpoczęto przeciąganie. Naciśnij Tab, aby wybrać miejsce docelowe, a następnie naciśnij Enter, aby upuścić, lub Escape, aby anulować.",dragStartedTouch:"Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie dotknij dwukrotnie, aby upuścić.F",dragStartedVirtual:"Rozpoczęto przeciąganie. Wybierz miejsce, w którym chcesz upuścić element, a następnie kliknij lub naciśnij Enter, aby upuścić.",dropCanceled:"Anulowano upuszczenie.",dropComplete:"Zakończono upuszczanie.",dropDescriptionKeyboard:"Naciśnij Enter, aby upuścić. Naciśnij Escape, aby anulować przeciągnięcie.",dropDescriptionTouch:"Dotknij dwukrotnie, aby upuścić.",dropDescriptionVirtual:"Kliknij, aby upuścić.",dropIndicator:"wskaźnik upuszczenia",dropOnItem:t=>`Upuść na ${t.itemText}`,dropOnRoot:"Upuść",endDragKeyboard:"Przeciąganie. Naciśnij Enter, aby anulować przeciągnięcie.",endDragTouch:"Przeciąganie. Kliknij dwukrotnie, aby anulować przeciągnięcie.",endDragVirtual:"Przeciąganie. Kliknij, aby anulować przeciąganie.",insertAfter:t=>`Umieść za ${t.itemText}`,insertBefore:t=>`Umieść przed ${t.itemText}`,insertBetween:t=>`Umieść między ${t.beforeItemText} i ${t.afterItemText}`};var qA={};qA={dragDescriptionKeyboard:"Pressione Enter para começar a arrastar.",dragDescriptionKeyboardAlt:"Pressione Alt + Enter para começar a arrastar.",dragDescriptionLongPress:"Pressione e segure para começar a arrastar.",dragDescriptionTouch:"Toque duas vezes para começar a arrastar.",dragDescriptionVirtual:"Clique para começar a arrastar.",dragItem:t=>`Arrastar ${t.itemText}`,dragSelectedItems:(t,e)=>`Arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}`,dragSelectedKeyboard:(t,e)=>`Pressione Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pressione Alt + Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedLongPress:(t,e)=>`Pressione e segure para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragStartedKeyboard:"Comece a arrastar. Pressione Tab para navegar até um alvo e, em seguida, pressione Enter para soltar ou pressione Escape para cancelar.",dragStartedTouch:"Comece a arrastar. Navegue até um alvo e toque duas vezes para soltar.",dragStartedVirtual:"Comece a arrastar. Navegue até um alvo e clique ou pressione Enter para soltar.",dropCanceled:"Liberação cancelada.",dropComplete:"Liberação concluída.",dropDescriptionKeyboard:"Pressione Enter para soltar. Pressione Escape para cancelar.",dropDescriptionTouch:"Toque duas vezes para soltar.",dropDescriptionVirtual:"Clique para soltar.",dropIndicator:"indicador de liberação",dropOnItem:t=>`Soltar em ${t.itemText}`,dropOnRoot:"Soltar",endDragKeyboard:"Arrastando. Pressione Enter para cancelar.",endDragTouch:"Arrastando. Toque duas vezes para cancelar.",endDragVirtual:"Arrastando. Clique para cancelar.",insertAfter:t=>`Inserir após ${t.itemText}`,insertBefore:t=>`Inserir antes de ${t.itemText}`,insertBetween:t=>`Inserir entre ${t.beforeItemText} e ${t.afterItemText}`};var GA={};GA={dragDescriptionKeyboard:"Prima Enter para iniciar o arrasto.",dragDescriptionKeyboardAlt:"Prima Alt + Enter para iniciar o arrasto.",dragDescriptionLongPress:"Prima longamente para começar a arrastar.",dragDescriptionTouch:"Faça duplo toque para começar a arrastar.",dragDescriptionVirtual:"Clique para iniciar o arrasto.",dragItem:t=>`Arrastar ${t.itemText}`,dragSelectedItems:(t,e)=>`Arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}`,dragSelectedKeyboard:(t,e)=>`Prima Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Prima Alt + Enter para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragSelectedLongPress:(t,e)=>`Prima longamente para arrastar ${e.plural(t.count,{one:()=>`${e.number(t.count)} o item selecionado`,other:()=>`${e.number(t.count)} os itens selecionados`})}.`,dragStartedKeyboard:"Arrasto iniciado. Prima a tecla de tabulação para navegar para um destino para largar, e em seguida prima Enter para largar ou prima Escape para cancelar.",dragStartedTouch:"Arrasto iniciado. Navegue para um destino para largar, e em seguida faça duplo toque para largar.",dragStartedVirtual:"Arrasto iniciado. Navegue para um destino para largar, e em seguida clique ou prima Enter para largar.",dropCanceled:"Largar cancelado.",dropComplete:"Largar completo.",dropDescriptionKeyboard:"Prima Enter para largar. Prima Escape para cancelar o arrasto.",dropDescriptionTouch:"Faça duplo toque para largar.",dropDescriptionVirtual:"Clique para largar.",dropIndicator:"Indicador de largar",dropOnItem:t=>`Largar em ${t.itemText}`,dropOnRoot:"Largar em",endDragKeyboard:"A arrastar. Prima Enter para cancelar o arrasto.",endDragTouch:"A arrastar. Faça duplo toque para cancelar o arrasto.",endDragVirtual:"A arrastar. Clique para cancelar o arrasto.",insertAfter:t=>`Inserir depois de ${t.itemText}`,insertBefore:t=>`Inserir antes de ${t.itemText}`,insertBetween:t=>`Inserir entre ${t.beforeItemText} e ${t.afterItemText}`};var WA={};WA={dragDescriptionKeyboard:"Apăsați pe Enter pentru a începe glisarea.",dragDescriptionKeyboardAlt:"Apăsați pe Alt + Enter pentru a începe glisarea.",dragDescriptionLongPress:"Apăsați lung pentru a începe glisarea.",dragDescriptionTouch:"Atingeți de două ori pentru a începe să glisați.",dragDescriptionVirtual:"Faceți clic pentru a începe glisarea.",dragItem:t=>`Glisați ${t.itemText}`,dragSelectedItems:(t,e)=>`Glisați ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}`,dragSelectedKeyboard:(t,e)=>`Apăsați pe Enter pentru a glisa ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Apăsați pe Alt + Enter pentru a glisa ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,dragSelectedLongPress:(t,e)=>`Apăsați lung pentru a glisa ${e.plural(t.count,{one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,dragStartedKeyboard:"A început glisarea. Apăsați pe Tab pentru a naviga la o țintă de fixare, apoi apăsați pe Enter pentru a fixa sau apăsați pe Escape pentru a anula glisarea.",dragStartedTouch:"A început glisarea. Navigați la o țintă de fixare, apoi atingeți de două ori pentru a fixa.",dragStartedVirtual:"A început glisarea. Navigați la o țintă de fixare, apoi faceți clic sau apăsați pe Enter pentru a fixa.",dropCanceled:"Fixare anulată.",dropComplete:"Fixare finalizată.",dropDescriptionKeyboard:"Apăsați pe Enter pentru a fixa. Apăsați pe Escape pentru a anula glisarea.",dropDescriptionTouch:"Atingeți de două ori pentru a fixa.",dropDescriptionVirtual:"Faceți clic pentru a fixa.",dropIndicator:"indicator de fixare",dropOnItem:t=>`Fixați pe ${t.itemText}`,dropOnRoot:"Fixare pe",endDragKeyboard:"Se glisează. Apăsați pe Enter pentru a anula glisarea.",endDragTouch:"Se glisează. Atingeți de două ori pentru a anula glisarea.",endDragVirtual:"Se glisează. Faceți clic pentru a anula glisarea.",insertAfter:t=>`Inserați după ${t.itemText}`,insertBefore:t=>`Inserați înainte de ${t.itemText}`,insertBetween:t=>`Inserați între ${t.beforeItemText} și ${t.afterItemText}`};var QA={};QA={dragDescriptionKeyboard:"Нажмите клавишу Enter для начала перетаскивания.",dragDescriptionKeyboardAlt:"Нажмите Alt + Enter, чтобы начать перетаскивать.",dragDescriptionLongPress:"Нажмите и удерживайте, чтобы начать перетаскивать.",dragDescriptionTouch:"Дважды нажмите для начала перетаскивания.",dragDescriptionVirtual:"Щелкните для начала перетаскивания.",dragItem:t=>`Перетащить ${t.itemText}`,dragSelectedItems:(t,e)=>`Перетащить ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранный элемент`,other:()=>`${e.number(t.count)} выбранных элем`})}`,dragSelectedKeyboard:(t,e)=>`Нажмите Enter для перетаскивания ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранного элемента`,other:()=>`${e.number(t.count)} выбранных элементов`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Нажмите Alt + Enter для перетаскивания ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранного элемента`,other:()=>`${e.number(t.count)} выбранных элементов`})}.`,dragSelectedLongPress:(t,e)=>`Нажмите и удерживайте для перетаскивания ${e.plural(t.count,{one:()=>`${e.number(t.count)} выбранного элемента`,other:()=>`${e.number(t.count)} выбранных элементов`})}.`,dragStartedKeyboard:"Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание, или клавишу Escape для отмены действия.",dragStartedTouch:"Начато перетаскивание. Выберите цель, затем дважды нажмите, чтобы применить перетаскивание.",dragStartedVirtual:"Начато перетаскивание. Нажмите клавишу Tab для выбора цели, затем нажмите клавишу Enter, чтобы применить перетаскивание.",dropCanceled:"Перетаскивание отменено.",dropComplete:"Перетаскивание завершено.",dropDescriptionKeyboard:"Нажмите клавишу Enter, чтобы применить перетаскивание. Нажмите клавишу Escape для отмены.",dropDescriptionTouch:"Дважды нажмите, чтобы применить перетаскивание.",dropDescriptionVirtual:"Щелкните, чтобы применить перетаскивание.",dropIndicator:"индикатор перетаскивания",dropOnItem:t=>`Перетащить на ${t.itemText}`,dropOnRoot:"Перетащить на",endDragKeyboard:"Перетаскивание. Нажмите клавишу Enter для отмены.",endDragTouch:"Перетаскивание. Дважды нажмите для отмены.",endDragVirtual:"Перетаскивание. Щелкните для отмены.",insertAfter:t=>`Вставить после ${t.itemText}`,insertBefore:t=>`Вставить перед ${t.itemText}`,insertBetween:t=>`Вставить между ${t.beforeItemText} и ${t.afterItemText}`};var YA={};YA={dragDescriptionKeyboard:"Stlačením klávesu Enter začnete presúvanie.",dragDescriptionKeyboardAlt:"Stlačením klávesov Alt + Enter začnete presúvanie.",dragDescriptionLongPress:"Dlhým stlačením začnete presúvanie.",dragDescriptionTouch:"Dvojitým kliknutím začnete presúvanie.",dragDescriptionVirtual:"Kliknutím začnete presúvanie.",dragItem:t=>`Presunúť položku ${t.itemText}`,dragSelectedItems:(t,e)=>`Presunúť ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybraté položky`})}`,dragSelectedKeyboard:(t,e)=>`Stlačením klávesu Enter presuniete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybratých položiek`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Stlačením klávesov Alt + Enter presuniete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybratých položiek`})}.`,dragSelectedLongPress:(t,e)=>`Dlhým stlačením presuniete ${e.plural(t.count,{one:()=>`${e.number(t.count)} vybratú položku`,other:()=>`${e.number(t.count)} vybratých položiek`})}.`,dragStartedKeyboard:"Presúvanie sa začalo. Do cieľového umiestnenia prejdete stlačením klávesu Tab. Ak chcete položku umiestniť, stlačte kláves Enter alebo stlačte kláves Esc, ak chcete presúvanie zrušiť.",dragStartedTouch:"Presúvanie sa začalo. Prejdite na cieľové umiestnenie a dvojitým kliknutím umiestnite položku.",dragStartedVirtual:"Presúvanie sa začalo. Prejdite na cieľové umiestnenie a kliknutím alebo stlačením klávesu Enter umiestnite položku.",dropCanceled:"Umiestnenie zrušené.",dropComplete:"Umiestnenie dokončené.",dropDescriptionKeyboard:"Stlačením klávesu Enter umiestnite položku. Stlačením klávesu Esc zrušíte presúvanie.",dropDescriptionTouch:"Dvojitým kliknutím umiestnite položku.",dropDescriptionVirtual:"Kliknutím umiestnite položku.",dropIndicator:"indikátor umiestnenia",dropOnItem:t=>`Umiestniť na položku ${t.itemText}`,dropOnRoot:"Umiestniť na",endDragKeyboard:"Prebieha presúvanie. Ak ho chcete zrušiť, stlačte kláves Enter.",endDragTouch:"Prebieha presúvanie. Dvojitým kliknutím ho môžete zrušiť.",endDragVirtual:"Prebieha presúvanie.",insertAfter:t=>`Vložiť za položku ${t.itemText}`,insertBefore:t=>`Vložiť pred položku ${t.itemText}`,insertBetween:t=>`Vložiť medzi položky ${t.beforeItemText} a ${t.afterItemText}`};var XA={};XA={dragDescriptionKeyboard:"Pritisnite tipko Enter za začetek vlečenja.",dragDescriptionKeyboardAlt:"Pritisnite tipki Alt + Enter za začetek vlečenja.",dragDescriptionLongPress:"Pritisnite in zadržite za začetek vlečenja.",dragDescriptionTouch:"Dvotapnite za začetek vlečenja.",dragDescriptionVirtual:"Kliknite za začetek vlečenja.",dragItem:t=>`Povleci ${t.itemText}`,dragSelectedItems:(t,e)=>`Povlecite ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbran element`,other:()=>`izbrane elemente (${e.number(t.count)})`})}`,dragSelectedKeyboard:(t,e)=>`Pritisnite tipko Enter, da povlečete ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbrani element`,other:()=>`${e.number(t.count)} izbranih elementov`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pritisnite tipki Alt + Enter, da povlečete ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbrani element`,other:()=>`${e.number(t.count)} izbranih elementov`})}.`,dragSelectedLongPress:(t,e)=>`Pritisnite in zadržite, da povlečete ${e.plural(t.count,{one:()=>`${e.number(t.count)} izbrani element`,other:()=>`${e.number(t.count)} izbranih elementov`})}.`,dragStartedKeyboard:"Vlečenje se je začelo. Pritisnite tipko Tab za pomik na mesto, kamor želite spustiti elemente, in pritisnite tipko Enter, da jih spustite, ali tipko Escape, da prekličete postopek.",dragStartedTouch:"Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in dvotapnite, da jih spustite.",dragStartedVirtual:"Vlečenje se je začelo. Pomaknite se na mesto, kamor želite spustiti elemente, in kliknite ali pritisnite tipko Enter, da jih spustite.",dropCanceled:"Spust je preklican.",dropComplete:"Spust je končan.",dropDescriptionKeyboard:"Pritisnite tipko Enter, da spustite. Pritisnite tipko Escape, da prekličete vlečenje.",dropDescriptionTouch:"Dvotapnite, da spustite.",dropDescriptionVirtual:"Kliknite, da spustite.",dropIndicator:"indikator spusta",dropOnItem:t=>`Spusti na mesto ${t.itemText}`,dropOnRoot:"Spusti na mesto",endDragKeyboard:"Vlečenje. Pritisnite tipko Enter za preklic vlečenja.",endDragTouch:"Vlečenje. Dvotapnite za preklic vlečenja.",endDragVirtual:"Vlečenje. Kliknite, da prekličete vlečenje.",insertAfter:t=>`Vstavi za ${t.itemText}`,insertBefore:t=>`Vstavi pred ${t.itemText}`,insertBetween:t=>`Vstavi med ${t.beforeItemText} in ${t.afterItemText}`};var JA={};JA={dragDescriptionKeyboard:"Pritisnite Enter da biste započeli prevlačenje.",dragDescriptionKeyboardAlt:"Pritisnite Alt + Enter da biste započeli prevlačenje.",dragDescriptionLongPress:"Pritisnite dugo da biste započeli prevlačenje.",dragDescriptionTouch:"Dvaput dodirnite da biste započeli prevlačenje.",dragDescriptionVirtual:"Kliknite da biste započeli prevlačenje.",dragItem:t=>`Prevucite ${t.itemText}`,dragSelectedItems:(t,e)=>`Prevucite ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabrane stavke`})}`,dragSelectedKeyboard:(t,e)=>`Pritisnite Enter da biste prevukli ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabranih stavki`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Pritisnite Alt + Enter da biste prevukli ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabranih stavki`})}.`,dragSelectedLongPress:(t,e)=>`Pritisnite dugo da biste prevukli ${e.plural(t.count,{one:()=>`${e.number(t.count)} izabranu stavku`,other:()=>`${e.number(t.count)} izabranih stavki`})}.`,dragStartedKeyboard:"Prevlačenje je započeto. Pritisnite Tab da biste otišli do cilja za otpuštanje, zatim pritisnite Enter za ispuštanje ili pritisnite Escape za otkazivanje.",dragStartedTouch:"Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim dvaput dodirnite za otpuštanje.",dragStartedVirtual:"Prevlačenje je započeto. Idite do cilja za otpuštanje, a zatim kliknite ili pritinite Enter za otpuštanje.",dropCanceled:"Otpuštanje je otkazano.",dropComplete:"Prevlačenje je završeno.",dropDescriptionKeyboard:"Pritisnite Enter da biste otpustili. Pritisnite Escape da biste otkazali prevlačenje.",dropDescriptionTouch:"Dvaput dodirnite za otpuštanje.",dropDescriptionVirtual:"Kliknite za otpuštanje.",dropIndicator:"Indikator otpuštanja",dropOnItem:t=>`Otpusti na ${t.itemText}`,dropOnRoot:"Otpusti na",endDragKeyboard:"Prevlačenje u toku. Pritisnite Enter da biste otkazali prevlačenje.",endDragTouch:"Prevlačenje u toku. Dvaput dodirnite da biste otkazali prevlačenje.",endDragVirtual:"Prevlačenje u toku. Kliknite da biste otkazali prevlačenje.",insertAfter:t=>`Umetnite posle ${t.itemText}`,insertBefore:t=>`Umetnite ispred ${t.itemText}`,insertBetween:t=>`Umetnite između ${t.beforeItemText} i ${t.afterItemText}`};var ZA={};ZA={dragDescriptionKeyboard:"Tryck på enter för att börja dra.",dragDescriptionKeyboardAlt:"Tryck på Alt + Retur för att börja dra.",dragDescriptionLongPress:"Tryck länge för att börja dra.",dragDescriptionTouch:"Dubbeltryck för att börja dra.",dragDescriptionVirtual:"Klicka för att börja dra.",dragItem:t=>`Dra ${t.itemText}`,dragSelectedItems:(t,e)=>`Dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} valt objekt`,other:()=>`${e.number(t.count)} valda objekt`})}`,dragSelectedKeyboard:(t,e)=>`Tryck på Retur för att dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Tryck på Alt + Retur för att dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,dragSelectedLongPress:(t,e)=>`Tryck länge för att dra ${e.plural(t.count,{one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,dragStartedKeyboard:"Börja dra. Tryck på tabb för att navigera till målet, tryck på enter för att släppa eller på escape för att avbryta.",dragStartedTouch:"Börja dra. Navigera till ett mål och dubbeltryck för att släppa.",dragStartedVirtual:"Börja dra. Navigera till ett mål och klicka eller tryck på enter för att släppa.",dropCanceled:"Släppåtgärd avbröts.",dropComplete:"Släppåtgärd klar.",dropDescriptionKeyboard:"Tryck på enter för att släppa. Tryck på escape för att avbryta dragåtgärd.",dropDescriptionTouch:"Dubbeltryck för att släppa.",dropDescriptionVirtual:"Klicka för att släppa.",dropIndicator:"släppindikator",dropOnItem:t=>`Släpp på ${t.itemText}`,dropOnRoot:"Släpp på",endDragKeyboard:"Drar. Tryck på enter för att avbryta dragåtgärd.",endDragTouch:"Drar. Dubbeltryck för att avbryta dragåtgärd.",endDragVirtual:"Drar. Klicka för att avbryta dragåtgärd.",insertAfter:t=>`Infoga efter ${t.itemText}`,insertBefore:t=>`Infoga före ${t.itemText}`,insertBetween:t=>`Infoga mellan ${t.beforeItemText} och ${t.afterItemText}`};var eB={};eB={dragDescriptionKeyboard:"Sürüklemeyi başlatmak için Enter'a basın.",dragDescriptionKeyboardAlt:"Sürüklemeyi başlatmak için Alt + Enter'a basın.",dragDescriptionLongPress:"Sürüklemeye başlamak için uzun basın.",dragDescriptionTouch:"Sürüklemeyi başlatmak için çift tıklayın.",dragDescriptionVirtual:"Sürüklemeyi başlatmak için tıklayın.",dragItem:t=>`${t.itemText}’i sürükle`,dragSelectedItems:(t,e)=>`Sürükle ${e.plural(t.count,{one:()=>`${e.number(t.count)} seçili öge`,other:()=>`${e.number(t.count)} seçili öge`})}`,dragSelectedKeyboard:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} seçilmiş öğe`,other:()=>`${e.number(t.count)} seçilmiş öğe`})} öğesini sürüklemek için Enter'a basın.`,dragSelectedKeyboardAlt:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} seçilmiş öğe`,other:()=>`${e.number(t.count)} seçilmiş öğe`})} öğesini sürüklemek için Alt + Enter tuşuna basın.`,dragSelectedLongPress:(t,e)=>`${e.plural(t.count,{one:()=>`${e.number(t.count)} seçilmiş öğe`,other:()=>`${e.number(t.count)} seçilmiş öğe`})} öğesini sürüklemek için uzun basın.`,dragStartedKeyboard:"Sürükleme başlatıldı. Bir bırakma hedefine gitmek için Tab’a basın, ardından bırakmak için Enter’a basın veya iptal etmek için Escape’e basın.",dragStartedTouch:"Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için çift tıklayın.",dragStartedVirtual:"Sürükleme başlatıldı. Bir bırakma hedefine gidin, ardından bırakmak için Enter’a tıklayın veya basın.",dropCanceled:"Bırakma iptal edildi.",dropComplete:"Bırakma tamamlandı.",dropDescriptionKeyboard:"Bırakmak için Enter'a basın. Sürüklemeyi iptal etmek için Escape'e basın.",dropDescriptionTouch:"Bırakmak için çift tıklayın.",dropDescriptionVirtual:"Bırakmak için tıklayın.",dropIndicator:"bırakma göstergesi",dropOnItem:t=>`${t.itemText} üzerine bırak`,dropOnRoot:"Bırakın",endDragKeyboard:"Sürükleme. Sürüklemeyi iptal etmek için Enter'a basın.",endDragTouch:"Sürükleme. Sürüklemeyi iptal etmek için çift tıklayın.",endDragVirtual:"Sürükleme. Sürüklemeyi iptal etmek için tıklayın.",insertAfter:t=>`${t.itemText}’den sonra gir`,insertBefore:t=>`${t.itemText}’den önce gir`,insertBetween:t=>`${t.beforeItemText} ve ${t.afterItemText} arasına gir`};var tB={};tB={dragDescriptionKeyboard:"Натисніть Enter, щоб почати перетягування.",dragDescriptionKeyboardAlt:"Натисніть Alt + Enter, щоб почати перетягування.",dragDescriptionLongPress:"Натисніть і утримуйте, щоб почати перетягування.",dragDescriptionTouch:"Натисніть двічі, щоб почати перетягування.",dragDescriptionVirtual:"Натисніть, щоб почати перетягування.",dragItem:t=>`Перетягнути ${t.itemText}`,dragSelectedItems:(t,e)=>`Перетягніть ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елем`})}`,dragSelectedKeyboard:(t,e)=>`Натисніть Enter, щоб перетягнути ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елементи(-ів)`})}.`,dragSelectedKeyboardAlt:(t,e)=>`Натисніть Alt + Enter, щоб перетягнути ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елементи(-ів)`})}.`,dragSelectedLongPress:(t,e)=>`Утримуйте, щоб перетягнути ${e.plural(t.count,{one:()=>`${e.number(t.count)} вибраний елемент`,other:()=>`${e.number(t.count)} вибраних елементи(-ів)`})}.`,dragStartedKeyboard:"Перетягування почалося. Натисніть Tab, щоб перейти до цілі перетягування, потім натисніть Enter, щоб перетягнути, або Escape, щоб скасувати.",dragStartedTouch:"Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть двічі, щоб перетягнути.",dragStartedVirtual:"Перетягування почалося. Перейдіть до цілі перетягування, потім натисніть Enter, щоб перетягнути.",dropCanceled:"Перетягування скасовано.",dropComplete:"Перетягування завершено.",dropDescriptionKeyboard:"Натисніть Enter, щоб перетягнути. Натисніть Escape, щоб скасувати перетягування.",dropDescriptionTouch:"Натисніть двічі, щоб перетягнути.",dropDescriptionVirtual:"Натисніть, щоб перетягнути.",dropIndicator:"індикатор перетягування",dropOnItem:t=>`Перетягнути на ${t.itemText}`,dropOnRoot:"Перетягнути на",endDragKeyboard:"Триває перетягування. Натисніть Enter, щоб скасувати перетягування.",endDragTouch:"Триває перетягування. Натисніть двічі, щоб скасувати перетягування.",endDragVirtual:"Триває перетягування. Натисніть, щоб скасувати перетягування.",insertAfter:t=>`Вставити після ${t.itemText}`,insertBefore:t=>`Вставити перед ${t.itemText}`,insertBetween:t=>`Вставити між ${t.beforeItemText} і ${t.afterItemText}`};var nB={};nB={dragDescriptionKeyboard:"按 Enter 开始拖动。",dragDescriptionKeyboardAlt:"按 Alt + Enter 开始拖动。",dragDescriptionLongPress:"长按以开始拖动。",dragDescriptionTouch:"双击开始拖动。",dragDescriptionVirtual:"单击开始拖动。",dragItem:t=>`拖动 ${t.itemText}`,dragSelectedItems:(t,e)=>`拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 选中项目`,other:()=>`${e.number(t.count)} 选中项目`})}`,dragSelectedKeyboard:(t,e)=>`按 Enter 以拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 个选定项`,other:()=>`${e.number(t.count)} 个选定项`})}。`,dragSelectedKeyboardAlt:(t,e)=>`按 Alt + Enter 以拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 个选定项`,other:()=>`${e.number(t.count)} 个选定项`})}。`,dragSelectedLongPress:(t,e)=>`长按以拖动 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 个选定项`,other:()=>`${e.number(t.count)} 个选定项`})}。`,dragStartedKeyboard:"已开始拖动。按 Tab 导航到放置目标,然后按 Enter 放置或按 Escape 取消。",dragStartedTouch:"已开始拖动。导航到放置目标,然后双击放置。",dragStartedVirtual:"已开始拖动。导航到放置目标,然后单击或按 Enter 放置。",dropCanceled:"放置已取消。",dropComplete:"放置已完成。",dropDescriptionKeyboard:"按 Enter 放置。按 Escape 取消拖动。",dropDescriptionTouch:"双击放置。",dropDescriptionVirtual:"单击放置。",dropIndicator:"放置标记",dropOnItem:t=>`放置于 ${t.itemText}`,dropOnRoot:"放置于",endDragKeyboard:"正在拖动。按 Enter 取消拖动。",endDragTouch:"正在拖动。双击取消拖动。",endDragVirtual:"正在拖动。单击取消拖动。",insertAfter:t=>`插入到 ${t.itemText} 之后`,insertBefore:t=>`插入到 ${t.itemText} 之前`,insertBetween:t=>`插入到 ${t.beforeItemText} 和 ${t.afterItemText} 之间`};var rB={};rB={dragDescriptionKeyboard:"按 Enter 鍵以開始拖曳。",dragDescriptionKeyboardAlt:"按 Alt+Enter 鍵以開始拖曳。",dragDescriptionLongPress:"長按以開始拖曳。",dragDescriptionTouch:"輕點兩下以開始拖曳。",dragDescriptionVirtual:"按一下滑鼠以開始拖曳。",dragItem:t=>`拖曳「${t.itemText}」`,dragSelectedItems:(t,e)=>`拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}`,dragSelectedKeyboard:(t,e)=>`按 Enter 鍵以拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}。`,dragSelectedKeyboardAlt:(t,e)=>`按 Alt+Enter 鍵以拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}。`,dragSelectedLongPress:(t,e)=>`長按以拖曳 ${e.plural(t.count,{one:()=>`${e.number(t.count)} 個選定項目`,other:()=>`${e.number(t.count)} 個選定項目`})}。`,dragStartedKeyboard:"已開始拖曳。按 Tab 鍵以瀏覽至放置目標,然後按 Enter 鍵以放置,或按 Escape 鍵以取消。",dragStartedTouch:"已開始拖曳。瀏覽至放置目標,然後輕點兩下以放置。",dragStartedVirtual:"已開始拖曳。瀏覽至放置目標,然後按一下滑鼠或按 Enter 鍵以放置。",dropCanceled:"放置已取消。",dropComplete:"放置已完成。",dropDescriptionKeyboard:"按 Enter 鍵以放置。按 Escape 鍵以取消拖曳。",dropDescriptionTouch:"輕點兩下以放置。",dropDescriptionVirtual:"按一下滑鼠以放置。",dropIndicator:"放置指示器",dropOnItem:t=>`放置在「${t.itemText}」上`,dropOnRoot:"放置在",endDragKeyboard:"拖曳中。按 Enter 鍵以取消拖曳。",endDragTouch:"拖曳中。輕點兩下以取消拖曳。",endDragVirtual:"拖曳中。按一下滑鼠以取消拖曳。",insertAfter:t=>`插入至「${t.itemText}」之後`,insertBefore:t=>`插入至「${t.itemText}」之前`,insertBetween:t=>`插入至「${t.beforeItemText}」和「${t.afterItemText}」之間`};var yd={};yd={"ar-AE":DA,"bg-BG":SA,"cs-CZ":wA,"da-DK":$A,"de-DE":TA,"el-GR":AA,"en-US":BA,"es-ES":MA,"et-EE":RA,"fi-FI":NA,"fr-FR":PA,"he-IL":OA,"hr-HR":LA,"hu-HU":zA,"it-IT":IA,"ja-JP":jA,"ko-KR":FA,"lt-LT":KA,"lv-LV":_A,"nb-NO":VA,"nl-NL":HA,"pl-PL":UA,"pt-BR":qA,"pt-PT":GA,"ro-RO":WA,"ru-RU":QA,"sk-SK":YA,"sl-SI":XA,"sr-SP":JA,"sv-SE":ZA,"tr-TR":eB,"uk-UA":tB,"zh-CN":nB,"zh-TW":rB};function GK(t){return t&&t.__esModule?t.default:t}const WK={keyboard:"dropDescriptionKeyboard",touch:"dropDescriptionTouch",virtual:"dropDescriptionVirtual"};function iB(){let t=yr(GK(yd),"@react-aria/dnd"),e=Z3(),n=ex();return{dropProps:{...gd(n?t.format(WK[e]):""),onClick:()=>{}}}}const QK=800;function YK(t){let{hasDropButton:e,isDisabled:n}=t,[r,i]=S.useState(!1),s=S.useRef({x:0,y:0,dragOverElements:new Set,dropEffect:"none",allowedOperations:Rt.all,dropActivateTimer:void 0}).current,a=$=>{if(i(!0),typeof t.onDropEnter=="function"){let A=$.currentTarget.getBoundingClientRect();t.onDropEnter({type:"dropenter",x:$.clientX-A.x,y:$.clientY-A.y})}},u=$=>{if(i(!1),typeof t.onDropExit=="function"){let A=$.currentTarget.getBoundingClientRect();t.onDropExit({type:"dropexit",x:$.clientX-A.x,y:$.clientY-A.y})}},c=$=>{$.preventDefault(),$.stopPropagation();let A=X2($);if($.clientX===s.x&&$.clientY===s.y&&A===s.allowedOperations){$.dataTransfer.dropEffect=s.dropEffect;return}s.x=$.clientX,s.y=$.clientY;let B=s.dropEffect;if(A!==s.allowedOperations){let P=H0(A),M=P[0];if(typeof t.getDropOperation=="function"){let N=new sh($.dataTransfer);M=oh(A,t.getDropOperation(N,P))}s.dropEffect=_0[M]||"none"}if(typeof t.getDropOperationForPoint=="function"){let P=new sh($.dataTransfer),M=$.currentTarget.getBoundingClientRect(),N=oh(A,t.getDropOperationForPoint(P,H0(A),s.x-M.x,s.y-M.y));s.dropEffect=_0[N]||"none"}if(s.allowedOperations=A,$.dataTransfer.dropEffect=s.dropEffect,s.dropEffect==="none"&&B!=="none"?u($):s.dropEffect!=="none"&&B==="none"&&a($),typeof t.onDropMove=="function"&&s.dropEffect!=="none"){let P=$.currentTarget.getBoundingClientRect();t.onDropMove({type:"dropmove",x:s.x-P.x,y:s.y-P.y})}if(clearTimeout(s.dropActivateTimer),t.onDropActivate&&typeof t.onDropActivate=="function"&&s.dropEffect!=="none"){let P=t.onDropActivate,M=$.currentTarget.getBoundingClientRect();s.dropActivateTimer=setTimeout(()=>{P({type:"dropactivate",x:s.x-M.x,y:s.y-M.y})},QK)}},f=$=>{if($.preventDefault(),$.stopPropagation(),s.dragOverElements.add(de($)),s.dragOverElements.size>1)return;let A=X2($),B=H0(A),P=B[0];if(typeof t.getDropOperation=="function"){let M=new sh($.dataTransfer);P=oh(A,t.getDropOperation(M,B))}if(typeof t.getDropOperationForPoint=="function"){let M=new sh($.dataTransfer),N=$.currentTarget.getBoundingClientRect();P=oh(A,t.getDropOperationForPoint(M,B,$.clientX-N.x,$.clientY-N.y))}s.x=$.clientX,s.y=$.clientY,s.allowedOperations=A,s.dropEffect=_0[P]||"none",$.dataTransfer.dropEffect=s.dropEffect,P!=="cancel"&&a($)},h=$=>{$.preventDefault(),$.stopPropagation();let A=de($);if(s.dragOverElements.delete(A),A===$.currentTarget)for(let B of s.dragOverElements)we($.currentTarget,B)||s.dragOverElements.delete(B);s.dragOverElements.size>0||(s.dropEffect!=="none"&&u($),clearTimeout(s.dropActivateTimer))},m=$=>{if($.preventDefault(),$.stopPropagation(),cp(s.dropEffect),typeof t.onDrop=="function"){let B=kc[s.dropEffect],P=RK($.dataTransfer),M=$.currentTarget.getBoundingClientRect(),N={type:"drop",x:$.clientX-M.x,y:$.clientY-M.y,items:P,dropOperation:B};t.onDrop(N)}let A={...jt};s.dragOverElements.clear(),u($),clearTimeout(s.dropActivateTimer),A.draggingCollectionRef==null?cp(void 0):IK(A)},g=Pt($=>{typeof t.onDropEnter=="function"&&t.onDropEnter($)}),b=Pt($=>{typeof t.onDropExit=="function"&&t.onDropExit($)}),x=Pt($=>{typeof t.onDropActivate=="function"&&t.onDropActivate($)}),k=Pt($=>{typeof t.onDrop=="function"&&t.onDrop($)}),E=Pt(($,A)=>t.getDropOperation?t.getDropOperation($,A):A[0]),{ref:D}=t;ze(()=>{if(!(n||!D.current))return EA({element:D.current,getDropOperation:E,onDropEnter($){i(!0),g($)},onDropExit($){i(!1),b($)},onDrop:k,onDropActivate:x})},[n,D]);let{dropProps:T}=iB();return n?{dropProps:{},dropButtonProps:{isDisabled:!0},isDropTarget:!1}:{dropProps:{...!e&&T,onDragEnter:f,onDragOver:c,onDragLeave:h,onDrop:m},dropButtonProps:{...e&&T},isDropTarget:r}}function X2(t){let e=mA[t.dataTransfer.effectAllowed];g4&&(e&=g4);let n=Rt.none;return Vs()?(t.altKey&&(n|=Rt.copy),t.ctrlKey&&!w3()&&(n|=Rt.link),t.metaKey&&(n|=Rt.move)):(t.altKey&&(n|=Rt.link),t.shiftKey&&(n|=Rt.move),t.ctrlKey&&(n|=Rt.copy)),n?e&n:e}function H0(t){let e=[];return t&Rt.move&&e.push("move"),t&Rt.copy&&e.push("copy"),t&Rt.link&&e.push("link"),e}function oh(t,e){let n=Rt[e];return t&n?e:"cancel"}const tx=new WeakMap;function y4(t,e){let{id:n}=tx.get(t)??{};if(!n)throw new Error("Unknown list");return`${n}-${XK(e)}`}function XK(t){return typeof t=="string"?t.replace(/\s*/g,""):""+t}var sB={};sB={deselectedItem:t=>`${t.item} غير المحدد`,longPressToSelect:"اضغط مطولًا للدخول إلى وضع التحديد.",select:"تحديد",selectedAll:"جميع العناصر المحددة.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"لم يتم تحديد عناصر",one:()=>`${e.number(t.count)} عنصر محدد`,other:()=>`${e.number(t.count)} عنصر محدد`})}.`,selectedItem:t=>`${t.item} المحدد`};var oB={};oB={deselectedItem:t=>`${t.item} не е избран.`,longPressToSelect:"Натиснете и задръжте за да влезете в избирателен режим.",select:"Изберете",selectedAll:"Всички елементи са избрани.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Няма избрани елементи",one:()=>`${e.number(t.count)} избран елемент`,other:()=>`${e.number(t.count)} избрани елементи`})}.`,selectedItem:t=>`${t.item} избран.`};var aB={};aB={deselectedItem:t=>`Položka ${t.item} není vybrána.`,longPressToSelect:"Dlouhým stisknutím přejdete do režimu výběru.",select:"Vybrat",selectedAll:"Vybrány všechny položky.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nevybrány žádné položky",one:()=>`Vybrána ${e.number(t.count)} položka`,other:()=>`Vybráno ${e.number(t.count)} položek`})}.`,selectedItem:t=>`Vybrána položka ${t.item}.`};var lB={};lB={deselectedItem:t=>`${t.item} ikke valgt.`,longPressToSelect:"Lav et langt tryk for at aktivere valgtilstand.",select:"Vælg",selectedAll:"Alle elementer valgt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ingen elementer valgt",one:()=>`${e.number(t.count)} element valgt`,other:()=>`${e.number(t.count)} elementer valgt`})}.`,selectedItem:t=>`${t.item} valgt.`};var uB={};uB={deselectedItem:t=>`${t.item} nicht ausgewählt.`,longPressToSelect:"Gedrückt halten, um Auswahlmodus zu öffnen.",select:"Auswählen",selectedAll:"Alle Elemente ausgewählt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Keine Elemente ausgewählt",one:()=>`${e.number(t.count)} Element ausgewählt`,other:()=>`${e.number(t.count)} Elemente ausgewählt`})}.`,selectedItem:t=>`${t.item} ausgewählt.`};var cB={};cB={deselectedItem:t=>`Δεν επιλέχθηκε το στοιχείο ${t.item}.`,longPressToSelect:"Πατήστε παρατεταμένα για να μπείτε σε λειτουργία επιλογής.",select:"Επιλογή",selectedAll:"Επιλέχθηκαν όλα τα στοιχεία.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Δεν επιλέχθηκαν στοιχεία",one:()=>`Επιλέχθηκε ${e.number(t.count)} στοιχείο`,other:()=>`Επιλέχθηκαν ${e.number(t.count)} στοιχεία`})}.`,selectedItem:t=>`Επιλέχθηκε το στοιχείο ${t.item}.`};var dB={};dB={deselectedItem:t=>`${t.item} not selected.`,select:"Select",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"No items selected",one:()=>`${e.number(t.count)} item selected`,other:()=>`${e.number(t.count)} items selected`})}.`,selectedAll:"All items selected.",selectedItem:t=>`${t.item} selected.`,longPressToSelect:"Long press to enter selection mode."};var fB={};fB={deselectedItem:t=>`${t.item} no seleccionado.`,longPressToSelect:"Mantenga pulsado para abrir el modo de selección.",select:"Seleccionar",selectedAll:"Todos los elementos seleccionados.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ningún elemento seleccionado",one:()=>`${e.number(t.count)} elemento seleccionado`,other:()=>`${e.number(t.count)} elementos seleccionados`})}.`,selectedItem:t=>`${t.item} seleccionado.`};var hB={};hB={deselectedItem:t=>`${t.item} pole valitud.`,longPressToSelect:"Valikurežiimi sisenemiseks vajutage pikalt.",select:"Vali",selectedAll:"Kõik üksused valitud.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Üksusi pole valitud",one:()=>`${e.number(t.count)} üksus valitud`,other:()=>`${e.number(t.count)} üksust valitud`})}.`,selectedItem:t=>`${t.item} valitud.`};var pB={};pB={deselectedItem:t=>`Kohdetta ${t.item} ei valittu.`,longPressToSelect:"Siirry valintatilaan painamalla pitkään.",select:"Valitse",selectedAll:"Kaikki kohteet valittu.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ei yhtään kohdetta valittu",one:()=>`${e.number(t.count)} kohde valittu`,other:()=>`${e.number(t.count)} kohdetta valittu`})}.`,selectedItem:t=>`${t.item} valittu.`};var mB={};mB={deselectedItem:t=>`${t.item} non sélectionné.`,longPressToSelect:"Appuyez de manière prolongée pour passer en mode de sélection.",select:"Sélectionner",selectedAll:"Tous les éléments sélectionnés.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Aucun élément sélectionné",one:()=>`${e.number(t.count)} élément sélectionné`,other:()=>`${e.number(t.count)} éléments sélectionnés`})}.`,selectedItem:t=>`${t.item} sélectionné.`};var gB={};gB={deselectedItem:t=>`${t.item} לא נבחר.`,longPressToSelect:"הקשה ארוכה לכניסה למצב בחירה.",select:"בחר",selectedAll:"כל הפריטים נבחרו.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"לא נבחרו פריטים",one:()=>`פריט ${e.number(t.count)} נבחר`,other:()=>`${e.number(t.count)} פריטים נבחרו`})}.`,selectedItem:t=>`${t.item} נבחר.`};var bB={};bB={deselectedItem:t=>`Stavka ${t.item} nije odabrana.`,longPressToSelect:"Dugo pritisnite za ulazak u način odabira.",select:"Odaberite",selectedAll:"Odabrane su sve stavke.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nije odabrana nijedna stavka",one:()=>`Odabrana je ${e.number(t.count)} stavka`,other:()=>`Odabrano je ${e.number(t.count)} stavki`})}.`,selectedItem:t=>`Stavka ${t.item} je odabrana.`};var yB={};yB={deselectedItem:t=>`${t.item} nincs kijelölve.`,longPressToSelect:"Nyomja hosszan a kijelöléshez.",select:"Kijelölés",selectedAll:"Az összes elem kijelölve.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Egy elem sincs kijelölve",one:()=>`${e.number(t.count)} elem kijelölve`,other:()=>`${e.number(t.count)} elem kijelölve`})}.`,selectedItem:t=>`${t.item} kijelölve.`};var xB={};xB={deselectedItem:t=>`${t.item} non selezionato.`,longPressToSelect:"Premi a lungo per passare alla modalità di selezione.",select:"Seleziona",selectedAll:"Tutti gli elementi selezionati.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nessun elemento selezionato",one:()=>`${e.number(t.count)} elemento selezionato`,other:()=>`${e.number(t.count)} elementi selezionati`})}.`,selectedItem:t=>`${t.item} selezionato.`};var vB={};vB={deselectedItem:t=>`${t.item} が選択されていません。`,longPressToSelect:"長押しして選択モードを開きます。",select:"選択",selectedAll:"すべての項目を選択しました。",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"項目が選択されていません",one:()=>`${e.number(t.count)} 項目を選択しました`,other:()=>`${e.number(t.count)} 項目を選択しました`})}。`,selectedItem:t=>`${t.item} を選択しました。`};var kB={};kB={deselectedItem:t=>`${t.item}이(가) 선택되지 않았습니다.`,longPressToSelect:"선택 모드로 들어가려면 길게 누르십시오.",select:"선택",selectedAll:"모든 항목이 선택되었습니다.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"선택된 항목이 없습니다",one:()=>`${e.number(t.count)}개 항목이 선택되었습니다`,other:()=>`${e.number(t.count)}개 항목이 선택되었습니다`})}.`,selectedItem:t=>`${t.item}이(가) 선택되었습니다.`};var CB={};CB={deselectedItem:t=>`${t.item} nepasirinkta.`,longPressToSelect:"Norėdami įjungti pasirinkimo režimą, paspauskite ir palaikykite.",select:"Pasirinkti",selectedAll:"Pasirinkti visi elementai.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nepasirinktas nė vienas elementas",one:()=>`Pasirinktas ${e.number(t.count)} elementas`,other:()=>`Pasirinkta elementų: ${e.number(t.count)}`})}.`,selectedItem:t=>`Pasirinkta: ${t.item}.`};var EB={};EB={deselectedItem:t=>`Vienums ${t.item} nav atlasīts.`,longPressToSelect:"Ilgi turiet nospiestu. lai ieslēgtu atlases režīmu.",select:"Atlasīt",selectedAll:"Atlasīti visi vienumi.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nav atlasīts neviens vienums",one:()=>`Atlasīto vienumu skaits: ${e.number(t.count)}`,other:()=>`Atlasīto vienumu skaits: ${e.number(t.count)}`})}.`,selectedItem:t=>`Atlasīts vienums ${t.item}.`};var DB={};DB={deselectedItem:t=>`${t.item} er ikke valgt.`,longPressToSelect:"Bruk et langt trykk for å gå inn i valgmodus.",select:"Velg",selectedAll:"Alle elementer er valgt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Ingen elementer er valgt",one:()=>`${e.number(t.count)} element er valgt`,other:()=>`${e.number(t.count)} elementer er valgt`})}.`,selectedItem:t=>`${t.item} er valgt.`};var SB={};SB={deselectedItem:t=>`${t.item} niet geselecteerd.`,longPressToSelect:"Druk lang om de selectiemodus te openen.",select:"Selecteren",selectedAll:"Alle items geselecteerd.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Geen items geselecteerd",one:()=>`${e.number(t.count)} item geselecteerd`,other:()=>`${e.number(t.count)} items geselecteerd`})}.`,selectedItem:t=>`${t.item} geselecteerd.`};var wB={};wB={deselectedItem:t=>`Nie zaznaczono ${t.item}.`,longPressToSelect:"Naciśnij i przytrzymaj, aby wejść do trybu wyboru.",select:"Zaznacz",selectedAll:"Wszystkie zaznaczone elementy.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nie zaznaczono żadnych elementów",one:()=>`${e.number(t.count)} zaznaczony element`,other:()=>`${e.number(t.count)} zaznaczonych elementów`})}.`,selectedItem:t=>`Zaznaczono ${t.item}.`};var $B={};$B={deselectedItem:t=>`${t.item} não selecionado.`,longPressToSelect:"Mantenha pressionado para entrar no modo de seleção.",select:"Selecionar",selectedAll:"Todos os itens selecionados.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nenhum item selecionado",one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}.`,selectedItem:t=>`${t.item} selecionado.`};var TB={};TB={deselectedItem:t=>`${t.item} não selecionado.`,longPressToSelect:"Prima continuamente para entrar no modo de seleção.",select:"Selecionar",selectedAll:"Todos os itens selecionados.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nenhum item selecionado",one:()=>`${e.number(t.count)} item selecionado`,other:()=>`${e.number(t.count)} itens selecionados`})}.`,selectedItem:t=>`${t.item} selecionado.`};var AB={};AB={deselectedItem:t=>`${t.item} neselectat.`,longPressToSelect:"Apăsați lung pentru a intra în modul de selectare.",select:"Selectare",selectedAll:"Toate elementele selectate.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Niciun element selectat",one:()=>`${e.number(t.count)} element selectat`,other:()=>`${e.number(t.count)} elemente selectate`})}.`,selectedItem:t=>`${t.item} selectat.`};var BB={};BB={deselectedItem:t=>`${t.item} не выбрано.`,longPressToSelect:"Нажмите и удерживайте для входа в режим выбора.",select:"Выбрать",selectedAll:"Выбраны все элементы.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Нет выбранных элементов",one:()=>`${e.number(t.count)} элемент выбран`,other:()=>`${e.number(t.count)} элементов выбрано`})}.`,selectedItem:t=>`${t.item} выбрано.`};var MB={};MB={deselectedItem:t=>`Nevybraté položky: ${t.item}.`,longPressToSelect:"Dlhším stlačením prejdite do režimu výberu.",select:"Vybrať",selectedAll:"Všetky vybraté položky.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Žiadne vybraté položky",one:()=>`${e.number(t.count)} vybratá položka`,other:()=>`Počet vybratých položiek:${e.number(t.count)}`})}.`,selectedItem:t=>`Vybraté položky: ${t.item}.`};var RB={};RB={deselectedItem:t=>`Element ${t.item} ni izbran.`,longPressToSelect:"Za izbirni način pritisnite in dlje časa držite.",select:"Izberite",selectedAll:"Vsi elementi so izbrani.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Noben element ni izbran",one:()=>`${e.number(t.count)} element je izbran`,other:()=>`${e.number(t.count)} elementov je izbranih`})}.`,selectedItem:t=>`Element ${t.item} je izbran.`};var NB={};NB={deselectedItem:t=>`${t.item} nije izabrano.`,longPressToSelect:"Dugo pritisnite za ulazak u režim biranja.",select:"Izaberite",selectedAll:"Izabrane su sve stavke.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Nije izabrana nijedna stavka",one:()=>`Izabrana je ${e.number(t.count)} stavka`,other:()=>`Izabrano je ${e.number(t.count)} stavki`})}.`,selectedItem:t=>`${t.item} je izabrano.`};var PB={};PB={deselectedItem:t=>`${t.item} ej markerat.`,longPressToSelect:"Tryck länge när du vill öppna väljarläge.",select:"Markera",selectedAll:"Alla markerade objekt.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Inga markerade objekt",one:()=>`${e.number(t.count)} markerat objekt`,other:()=>`${e.number(t.count)} markerade objekt`})}.`,selectedItem:t=>`${t.item} markerat.`};var OB={};OB={deselectedItem:t=>`${t.item} seçilmedi.`,longPressToSelect:"Seçim moduna girmek için uzun basın.",select:"Seç",selectedAll:"Tüm ögeler seçildi.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Hiçbir öge seçilmedi",one:()=>`${e.number(t.count)} öge seçildi`,other:()=>`${e.number(t.count)} öge seçildi`})}.`,selectedItem:t=>`${t.item} seçildi.`};var LB={};LB={deselectedItem:t=>`${t.item} не вибрано.`,longPressToSelect:"Виконайте довге натиснення, щоб перейти в режим вибору.",select:"Вибрати",selectedAll:"Усі елементи вибрано.",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"Жодних елементів не вибрано",one:()=>`${e.number(t.count)} елемент вибрано`,other:()=>`Вибрано елементів: ${e.number(t.count)}`})}.`,selectedItem:t=>`${t.item} вибрано.`};var zB={};zB={deselectedItem:t=>`未选择 ${t.item}。`,longPressToSelect:"长按以进入选择模式。",select:"选择",selectedAll:"已选择所有项目。",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"未选择项目",one:()=>`已选择 ${e.number(t.count)} 个项目`,other:()=>`已选择 ${e.number(t.count)} 个项目`})}。`,selectedItem:t=>`已选择 ${t.item}。`};var IB={};IB={deselectedItem:t=>`未選取「${t.item}」。`,longPressToSelect:"長按以進入選擇模式。",select:"選取",selectedAll:"已選取所有項目。",selectedCount:(t,e)=>`${e.plural(t.count,{"=0":"未選取任何項目",one:()=>`已選取 ${e.number(t.count)} 個項目`,other:()=>`已選取 ${e.number(t.count)} 個項目`})}。`,selectedItem:t=>`已選取「${t.item}」。`};var wm={};wm={"ar-AE":sB,"bg-BG":oB,"cs-CZ":aB,"da-DK":lB,"de-DE":uB,"el-GR":cB,"en-US":dB,"es-ES":fB,"et-EE":hB,"fi-FI":pB,"fr-FR":mB,"he-IL":gB,"hr-HR":bB,"hu-HU":yB,"it-IT":xB,"ja-JP":vB,"ko-KR":kB,"lt-LT":CB,"lv-LV":EB,"nb-NO":DB,"nl-NL":SB,"pl-PL":wB,"pt-BR":$B,"pt-PT":TB,"ro-RO":AB,"ru-RU":BB,"sk-SK":MB,"sl-SI":RB,"sr-SP":NB,"sv-SE":PB,"tr-TR":OB,"uk-UA":LB,"zh-CN":zB,"zh-TW":IB};function JK(t){return t&&t.__esModule?t.default:t}function ZK(t,e){let{getRowText:n=u=>e.collection.getTextValue?.(u)??e.collection.getItem(u)?.textValue}=t,r=yr(JK(wm),"@react-aria/grid"),i=e.selectionManager.rawSelection,s=S.useRef(i),a=S.useCallback(()=>{if(!e.selectionManager.isFocused||i===s.current){s.current=i;return}let u=J2(i,s.current),c=J2(s.current,i),f=e.selectionManager.selectionBehavior==="replace",h=[];if(e.selectionManager.selectedKeys.size===1&&f){let m=e.selectionManager.selectedKeys.keys().next().value;if(m!=null&&e.collection.getItem(m)){let g=n(m);g&&h.push(r.format("selectedItem",{item:g}))}}else if(u.size===1&&c.size===0){let m=u.keys().next().value;if(m!=null){let g=n(m);g&&h.push(r.format("selectedItem",{item:g}))}}else if(c.size===1&&u.size===0){let m=c.keys().next().value;if(m!=null&&e.collection.getItem(m)){let g=n(m);g&&h.push(r.format("deselectedItem",{item:g}))}}e.selectionManager.selectionMode==="multiple"&&(h.length===0||i==="all"||i.size>1||s.current==="all"||s.current?.size>1)&&h.push(i==="all"?r.format("selectedAll"):r.format("selectedCount",{count:i.size})),h.length>0&&Io(h.join(" ")),s.current=i},[i,e.selectionManager.selectedKeys,e.selectionManager.isFocused,e.selectionManager.selectionBehavior,e.selectionManager.selectionMode,e.collection,n,r]);Vj(()=>{if(e.selectionManager.isFocused)a();else{let u=requestAnimationFrame(a);return()=>cancelAnimationFrame(u)}},[i,e.selectionManager.isFocused])}function J2(t,e){let n=new Set;if(t==="all"||e==="all")return n;for(let r of t.keys())e.has(r)||n.add(r);return n}function e_(t,e){let n=e?.isDisabled,[r,i]=S.useState(!1);return ze(()=>{if(t?.current&&!n){let s=()=>{if(t.current){let u=dn(t.current,{tabbable:!0});i(!!u.nextNode())}};s();let a=new MutationObserver(s);return a.observe(t.current,{subtree:!0,childList:!0,attributes:!0,attributeFilter:["tabIndex","disabled"]}),()=>{a.disconnect()}}}),n?!1:r}function t_(t){return t&&t.__esModule?t.default:t}function n_(t){let e=yr(t_(wm),"@react-aria/grid"),n=Pw(),r=(n==="pointer"||n==="virtual"||n==null)&&typeof window<"u"&&"ontouchstart"in window,i=S.useMemo(()=>{let a=t.selectionManager.selectionMode,u=t.selectionManager.selectionBehavior,c;return r&&(c=e.format("longPressToSelect")),u==="replace"&&a!=="none"&&t.hasItemActions?c:void 0},[t.selectionManager.selectionMode,t.selectionManager.selectionBehavior,t.hasItemActions,e,r]);return gd(i)}function r_(t,e,n){let{isVirtualized:r,keyboardDelegate:i,layoutDelegate:s,onAction:a,disallowTypeAhead:u,linkBehavior:c="action",keyboardNavigationBehavior:f="arrow",escapeKeyBehavior:h="clearSelection",shouldSelectOnPressUp:m}=t;!t["aria-label"]&&!t["aria-labelledby"]&&console.warn("An aria-label or aria-labelledby prop is required for accessibility.");let{listProps:g}=R6({selectionManager:e.selectionManager,collection:e.collection,disabledKeys:e.disabledKeys,ref:n,keyboardDelegate:i,layoutDelegate:s,isVirtualized:r,selectOnFocus:e.selectionManager.selectionBehavior==="replace",shouldFocusWrap:t.shouldFocusWrap,linkBehavior:c,disallowTypeAhead:u,autoFocus:t.autoFocus,escapeKeyBehavior:h,UNSTABLE_focusOnEntry:t.UNSTABLE_focusOnEntry}),b=on(t.id);tx.set(e,{id:b,onAction:a,linkBehavior:c,keyboardNavigationBehavior:f,shouldSelectOnPressUp:m});let x=n_({selectionManager:e.selectionManager,hasItemActions:!!a}),k=e_(n,{isDisabled:e.collection.size!==0}),E=Ze(t,{labelable:!0}),D=$e(E,{role:"grid",id:b,"aria-multiselectable":e.selectionManager.selectionMode==="multiple"?"true":void 0},e.collection.size===0?{tabIndex:k?-1:0}:g,x);return r&&(D["aria-rowcount"]=e.collection.size,D["aria-colcount"]=1),ZK({},e),{gridProps:D}}const Z2={expand:{ltr:"ArrowRight",rtl:"ArrowLeft"},collapse:{ltr:"ArrowLeft",rtl:"ArrowRight"}};function i_(t,e,n){let{node:r,isVirtualized:i}=t,{direction:s}=Ki(),{onAction:a,linkBehavior:u,keyboardNavigationBehavior:c,shouldSelectOnPressUp:f}=tx.get(e),h=Qo(),m=S.useRef(null),g=()=>{n.current!==null&&(m.current!=null&&r.key!==m.current||!Rl(n.current))&&xn(n.current)},b={},x=t.hasChildItems,k=e.selectionManager.isLink(r.key);if(r!=null&&"expandedKeys"in e){let U=e.collection.getChildren?.(r.key);x=x||[...U??[]].length>1,a==null&&!k&&e.selectionManager.selectionMode==="none"&&x&&(a=()=>e.toggleKey(r.key));let ne=x?e.expandedKeys.has(r.key):void 0,F=1,te=r.index;if(r.level>=0&&r?.parentKey!=null){let O=e.collection.getItem(r.parentKey);if(O){let K=s_(O,e.collection);F=[...K].filter(Q=>Q.type==="item").length,te>0&&K[0].type!=="item"&&(te-=1)}}else F=[...e.collection].filter(O=>O.level===0&&O.type==="item").length;b={"aria-expanded":ne,"aria-level":r.level+1,"aria-posinset":te+1,"aria-setsize":F}}let{itemProps:E,...D}=P6({selectionManager:e.selectionManager,key:r.key,ref:n,isVirtualized:i,shouldSelectOnPressUp:t.shouldSelectOnPressUp||f,onAction:a||r.props?.onAction?Xs(r.props?.onAction,a?()=>a(r.key):void 0):void 0,focus:g,linkBehavior:u}),T=U=>{let ne=_e();if(!we(U.currentTarget,de(U))||!n.current||!ne)return;let F=dn(n.current);if(F.currentNode=ne,!eE(U,e,r,x,s,ne,n.current))switch(U.key){case"ArrowLeft":if(c==="arrow"){let te=s==="rtl"?F.nextNode():F.previousNode();if(te)U.preventDefault(),U.stopPropagation(),xn(te),Cs(te,{containingElement:Wr(n.current)});else if(U.preventDefault(),U.stopPropagation(),s==="rtl")xn(n.current),Cs(n.current,{containingElement:Wr(n.current)});else{F.currentNode=n.current;let O=tE(F);O&&(xn(O),Cs(O,{containingElement:Wr(n.current)}))}}break;case"ArrowRight":if(c==="arrow"){let te=s==="rtl"?F.previousNode():F.nextNode();if(te)U.preventDefault(),U.stopPropagation(),xn(te),Cs(te,{containingElement:Wr(n.current)});else if(U.preventDefault(),U.stopPropagation(),s==="ltr")xn(n.current),Cs(n.current,{containingElement:Wr(n.current)});else{F.currentNode=n.current;let O=tE(F);O&&(xn(O),Cs(O,{containingElement:Wr(n.current)}))}}break;case"ArrowUp":case"ArrowDown":!U.altKey&&we(n.current,de(U))&&(U.stopPropagation(),U.preventDefault(),n.current.parentElement?.dispatchEvent(new KeyboardEvent(U.nativeEvent.type,U.nativeEvent)));break}},$=U=>{if(m.current=r.key,de(U)!==n.current){Nl()||e.selectionManager.setFocusedKey(r.key);return}},A=U=>{let ne=_e();if(!(!we(U.currentTarget,de(U))||!n.current||!ne)){if(c==="tab"){if(de(U)!==n.current&&U.key!=="Tab"){U.stopPropagation();return}if(eE(U,e,r,x,s,ne,n.current))return}switch(U.key){case"Tab":if(c==="tab"){let F=dn(n.current,{tabbable:!0});F.currentNode=ne,(U.shiftKey?F.previousNode():F.nextNode())&&U.stopPropagation()}}}},B=AI(r.props),P=D.hasAction?B:{},M=$e(E,P,{role:"row",onKeyDownCapture:c==="arrow"?T:void 0,onFocus:$,"aria-label":r["aria-label"]||r.textValue||void 0,"aria-selected":e.selectionManager.canSelectItem(r.key)?e.selectionManager.isSelected(r.key):void 0,"aria-disabled":e.selectionManager.isDisabled(r.key)||void 0,"aria-labelledby":h&&(r["aria-label"]||r.textValue)?`${y4(e,r.key)} ${h}`:void 0,id:y4(e,r.key)}),N=M.onKeyDown;M.onKeyDown=U=>{A(U),U.isPropagationStopped()||N?.(U)};let j=M.onPointerDown;M.onPointerDown=U=>{let ne=de(U);if(ne&&ne!==n.current&&Xh(ne)){U.stopPropagation();return}j?.(U)};let G=M.onMouseDown;if(M.onMouseDown=U=>{let ne=de(U);if(ne&&ne!==n.current&&Xh(ne)){U.stopPropagation();return}G?.(U)},i){let{collection:U}=e,ne=[...U];M["aria-rowindex"]=ne.find(F=>F.type==="section")?[...U.getKeys()].filter(F=>U.getItem(F)?.type!=="section").findIndex(F=>F===r.key)+1:r.index+1}let W={role:"gridcell","aria-colindex":1};return{rowProps:{...$e(M,b)},gridCellProps:W,descriptionProps:{id:h},...D}}function eE(t,e,n,r,i,s,a){if(!("expandedKeys"in e)||s!==a)return!1;if(t.key===Z2.expand[i]&&e.selectionManager.focusedKey===n.key&&r&&!e.expandedKeys.has(n.key))return e.toggleKey(n.key),t.stopPropagation(),!0;if(t.key===Z2.collapse[i]&&e.selectionManager.focusedKey===n.key){if(r&&e.expandedKeys.has(n.key))return e.toggleKey(n.key),t.stopPropagation(),!0;if(!e.expandedKeys.has(n.key)&&n.parentKey&&e.collection.getItem(n.parentKey)?.type==="item")return e.selectionManager.setFocusedKey(n.parentKey),t.stopPropagation(),!0}return!1}function tE(t){let e=null,n=null;do n=t.lastChild(),n&&(e=n);while(n);return e}function s_(t,e){let n=e.getChildren?.(t.key),r=n?Array.from(n):[],i=r.length>0?r[0]:null,s=[];for(;i;)s.push(i),i=i.nextKey!=null?e.getItem(i.nextKey):null;return s}function o_(t){return t&&t.__esModule?t.default:t}function a_(t,e){let{key:n}=t,r=e.selectionManager,i=on(),s=!e.selectionManager.canSelectItem(n),a=e.selectionManager.isSelected(n),u=()=>r.toggleSelection(n);const c=yr(o_(wm),"@react-aria/grid");return{checkboxProps:{id:i,"aria-label":c.format("select"),isSelected:a,isDisabled:s,onChange:u}}}function l_(t,e){let{key:n}=t;const{checkboxProps:r}=a_(t,e);return{checkboxProps:{...r,"aria-labelledby":`${r.id} ${y4(e,n)}`}}}const u_=S.createContext(null),c_=S.forwardRef(function(e,n){return[e,n]=Ct(e,n,u_),V.createElement(R3,{content:V.createElement(vm,e)},r=>V.createElement(d_,{props:e,collection:r,gridListRef:n}))});function d_({props:t,collection:e,gridListRef:n}){[t,n]=Ct(t,n,Vc);let{shouldUseVirtualFocus:r,filter:i,disallowTypeAhead:s,UNSTABLE_focusOnEntry:a,...u}=t,{dragAndDropHooks:c,keyboardNavigationBehavior:f="arrow",layout:h="stack",orientation:m="vertical"}=t,{CollectionRoot:g,isVirtualized:b,layoutDelegate:x,dropTargetDelegate:k}=S.useContext(Hs),E=IF({...u,collection:e,children:void 0,layoutDelegate:x}),D=jF(E,i),T=_3({usage:"search",sensitivity:"base"}),{disabledBehavior:$,disabledKeys:A}=D.selectionManager,{direction:B}=Ki(),P=S.useMemo(()=>new M6({collection:D.collection,collator:T,ref:n,disabledKeys:A,disabledBehavior:$,layoutDelegate:x,layout:h,orientation:m,direction:B}),[D.collection,n,h,m,A,$,x,T,B]),{gridProps:M}=r_({...u,keyboardDelegate:P,keyboardNavigationBehavior:h==="grid"?"tab":f,isVirtualized:b,shouldSelectOnPressUp:t.shouldSelectOnPressUp,disallowTypeAhead:s,UNSTABLE_focusOnEntry:a},D,n),N=D.selectionManager,j=!!c?.useDraggableCollectionState,G=!!c?.useDroppableCollectionState;S.useRef(j),S.useRef(G),S.useEffect(()=>{},[j,G]);let W,U,ne,F=!1,te=null,O=S.useRef(null);if(j&&c){W=c.useDraggableCollectionState({collection:D.collection,selectionManager:N,preview:c.renderDragPreview?O:void 0}),c.useDraggableCollection({},W,n);let he=c.DragPreview;te=c.renderDragPreview?V.createElement(he,{ref:O},c.renderDragPreview):null}if(G&&c){U=c.useDroppableCollectionState({collection:D.collection,selectionManager:N});let he=c.dropTargetDelegate||k||new c.ListDropTargetDelegate(e,n,{layout:h,direction:B,orientation:m});ne=c.useDroppableCollection({keyboardDelegate:P,dropTargetDelegate:he},U,n),F=U.isDropTarget({type:"root"})}let{focusProps:K,isFocused:Q,isFocusVisible:Z}=zi(),L=D.collection.size===0,z={isDropTarget:F,orientation:m,isEmpty:L,isFocused:Q,isFocusVisible:Z,layout:h,state:D},H=wt({...t,children:void 0,defaultClassName:"react-aria-GridList",values:z}),re=null,le=null;if(L&&t.renderEmptyState){let he=t.renderEmptyState(z);re=V.createElement("div",{role:"row","aria-rowindex":1,style:{display:"contents"}},V.createElement("div",{role:"gridcell",style:{display:"contents"}},he))}let ue=Ze(t,{global:!0});return V.createElement(F3,null,V.createElement(ot.div,{...$e(ue,H,M,K,ne?.collectionProps,le),ref:n,slot:t.slot||void 0,onScroll:t.onScroll,"data-drop-target":F||void 0,"data-empty":L||void 0,"data-focused":Q||void 0,"data-focus-visible":Z||void 0,"data-layout":h,"data-orientation":m},V.createElement(Pr,{values:[[qc,D],[Em,{dragAndDropHooks:c,dragState:W,dropState:U}],[E6,{render:h_}]]},G&&V.createElement(g_,null),V.createElement(I3,null,V.createElement(g,{collection:D.collection,scrollRef:n,persistedKeys:dF(N,c,U),renderDropIndicator:cF(c,U)}))),re,te))}const f_=ma(np,function(e,n,r){let i=S.useContext(qc),{dragAndDropHooks:s,dragState:a,dropState:u}=S.useContext(Em),c=Zs(n),{isVirtualized:f}=S.useContext(Hs),h=a&&!(a.isDisabled||a.selectionManager.isDisabled(r.key)),{rowProps:m,gridCellProps:g,descriptionProps:b,...x}=i_({node:r,shouldSelectOnPressUp:!!a,isVirtualized:f},i,c),{hoverProps:k,isHovered:E}=_i({isDisabled:!x.allowsSelection&&!x.hasAction&&!h,onHoverStart:r.props.onHoverStart,onHoverChange:r.props.onHoverChange,onHoverEnd:r.props.onHoverEnd}),{isFocusVisible:D,focusProps:T}=zi(),{isFocusVisible:$,focusProps:A}=zi({within:!0}),{checkboxProps:B}=l_({key:r.key},i),P=i.selectionManager.disabledBehavior==="all"&&x.isDisabled?{isDisabled:!0}:{},M=null;a&&s&&(M=s.useDraggableItem({key:r.key,hasDragButton:!0},a));let N=null,j=S.useRef(null),{visuallyHiddenProps:G}=Cm();u&&s&&(N=s.useDropIndicator({target:{type:"item",key:r.key,dropPosition:"on"}},u,j));let W=a&&a.isDragging(r.key),U=wt({...e,id:void 0,children:r.rendered,defaultClassName:"react-aria-GridListItem",values:{...x,isHovered:E,isFocusVisible:D,isFocusVisibleWithin:$,selectionMode:i.selectionManager.selectionMode,selectionBehavior:i.selectionManager.selectionBehavior,allowsDragging:!!a,isDragging:W,isDropTarget:N?.isDropTarget,id:r.key,state:i}}),ne=S.useRef(null);S.useEffect(()=>{a&&!ne.current&&console.warn('Draggable items in a GridList must contain a <Button slot="drag"> element so that keyboard and screen reader users can drag them.')},[]),S.useEffect(()=>{r.textValue},[r.textValue]);let F=Ze(e,{global:!0});return delete F.id,delete F.onClick,V.createElement(V.Fragment,null,N&&!N.isHidden&&V.createElement("div",{role:"row",style:{position:"absolute"}},V.createElement("div",{role:"gridcell"},V.createElement("div",{role:"button",...G,...N?.dropIndicatorProps,ref:j}))),V.createElement(ot.div,{...$e(F,U,m,T,A,k,M?.dragProps),ref:c,"data-selected":x.isSelected||void 0,"data-disabled":x.isDisabled||void 0,"data-hovered":E||void 0,"data-focused":x.isFocused||void 0,"data-focus-visible":D||void 0,"data-focus-visible-within":$||void 0,"data-pressed":x.isPressed||void 0,"data-allows-dragging":!!a||void 0,"data-dragging":W||void 0,"data-drop-target":N?.isDropTarget||void 0,"data-selection-mode":i.selectionManager.selectionMode==="none"?void 0:i.selectionManager.selectionMode},V.createElement("div",{...g,style:{display:"contents"}},V.createElement(Pr,{values:[[sF,{slots:{[Bs]:{},selection:B}}],[oF,{slots:{[Bs]:{},selection:B}}],[km,{slots:{[Bs]:P,drag:{...M?.dragButtonProps,ref:ne,style:{pointerEvents:"none"}}}}],[z3,{slots:{[Bs]:{},description:b}}],[Hs,A$],[qc,null],[Vc,null],[bm,null],[j3,{isSelected:x.isSelected}]]},U.children))))});function h_(t,e){e=Zs(e);let{dragAndDropHooks:n,dropState:r}=S.useContext(Em),i=S.useRef(null),{dropIndicatorProps:s,isHidden:a,isDropTarget:u}=n.useDropIndicator(t,r,i);return a?null:V.createElement(m_,{...t,dropIndicatorProps:s,isDropTarget:u,buttonRef:i,ref:e})}function p_(t,e){let{dropIndicatorProps:n,isDropTarget:r,buttonRef:i,...s}=t,{visuallyHiddenProps:a}=Cm(),u=wt({...s,defaultClassName:"react-aria-DropIndicator",values:{isDropTarget:r}});return V.createElement(ot.div,{...u,role:"row",ref:e,"data-drop-target":r||void 0},V.createElement("div",{role:"gridcell"},V.createElement("div",{...a,role:"button",...n,ref:i}),u.children))}const m_=S.forwardRef(p_);function g_(){let{dragAndDropHooks:t,dropState:e}=S.useContext(Em),n=S.useRef(null),{dropIndicatorProps:r}=t.useDropIndicator({target:{type:"root"}},e,n),i=e.isDropTarget({type:"root"}),{visuallyHiddenProps:s}=Cm();return!i&&r["aria-hidden"]?null:V.createElement("div",{role:"row","aria-hidden":r["aria-hidden"],style:{position:"absolute"}},V.createElement("div",{role:"gridcell"},V.createElement("div",{role:"button",...s,...r,ref:n})))}ma(tp,function(e,n,r){let i=S.useContext(qc),{isVirtualized:s}=S.useContext(Hs),{isLoading:a,onLoadMore:u,scrollOffset:c,...f}=e,h=S.useRef(null),m=S.useMemo(()=>({onLoadMore:u,collection:i?.collection,sentinelRef:h,scrollOffset:c}),[u,c,i?.collection]);j6(m,h);let g=wt({...f,id:void 0,children:r.rendered,defaultClassName:"react-aria-GridListLoadingIndicator",values:void 0});return V.createElement(V.Fragment,null,V.createElement("div",{style:{position:"relative",width:0,height:0},inert:L6(!0)},V.createElement("div",{"data-testid":"loadMoreSentinel",ref:h,style:{position:"absolute",height:1,width:1}})),a&&g.children&&V.createElement(ot.div,{...g,...Ze(e,{global:!0}),role:"row",ref:n},V.createElement("div",{"aria-colindex":s?1:void 0,role:"gridcell"},g.children)))});function b_(t,e,n){let{overlayProps:r,underlayProps:i}=_6({...t,isOpen:e.isOpen,onClose:e.close},n);return V6({isDisabled:!e.isOpen}),$T(),S.useEffect(()=>{if(e.isOpen&&n.current)return H3([n.current],{shouldUseInert:!0})},[e.isOpen,n]),{modalProps:$e(r),underlayProps:i}}let Ln=typeof document<"u"&&window.visualViewport;function y_(){let t=Js(),[e,n]=S.useState(()=>t?{width:0,height:0}:U0());return S.useEffect(()=>{let r=u=>{n(c=>u.width===c.width&&u.height===c.height?c:u)},i=()=>{Ln&&Ln.scale>1||r(U0())},s,a=u=>{Ln&&Ln.scale>1||xc(de(u))&&(s=requestAnimationFrame(()=>{let c=_e();(!c||!xc(c))&&r({width:document.documentElement.clientWidth,height:document.documentElement.clientHeight})}))};return r(U0()),Oi()&&window.addEventListener("blur",a,!0),Ln?Ln.addEventListener("resize",i):window.addEventListener("resize",i),()=>{cancelAnimationFrame(s),Oi()&&window.removeEventListener("blur",a,!0),Ln?Ln.removeEventListener("resize",i):window.removeEventListener("resize",i)}},[]),e}function U0(){return{width:Ln?Math.min(Ln.width*Ln.scale,document.documentElement.clientWidth):document.documentElement.clientWidth,height:Ln?Ln.height*Ln.scale:document.documentElement.clientHeight}}const x_=S.createContext(null),nx=S.createContext(null),v_=S.forwardRef(function(e,n){if(S.useContext(nx))return V.createElement(nE,{...e,modalRef:n},e.children);let{isDismissable:i,isKeyboardDismissDisabled:s,isOpen:a,defaultOpen:u,onOpenChange:c,children:f,isEntering:h,isExiting:m,UNSTABLE_portalContainer:g,shouldCloseOnInteractOutside:b,...x}=e;return V.createElement(jB,{isDismissable:i,isKeyboardDismissDisabled:s,isOpen:a,defaultOpen:u,onOpenChange:c,isEntering:h,isExiting:m,UNSTABLE_portalContainer:g,shouldCloseOnInteractOutside:b},V.createElement(nE,{...x,modalRef:n},f))});function k_(t,e){[t,e]=Ct(t,e,x_);let n=S.useContext(ga),r=U3(t),i=t.isOpen!=null||t.defaultOpen!=null||!n?r:n,s=Zs(e),a=S.useRef(null),u=p4(s,i.isOpen),c=p4(a,i.isOpen),f=u||c||t.isExiting||!1,h=Js();return!i.isOpen&&!f||h?null:V.createElement(C_,{...t,state:i,isExiting:f,overlayRef:s,modalRef:a})}const jB=S.forwardRef(k_);function C_({UNSTABLE_portalContainer:t,...e}){let n=e.modalRef,{state:r}=e,{modalProps:i,underlayProps:s}=b_(e,r,n),a=q3(e.overlayRef)||e.isEntering||!1,u=wt({...e,defaultClassName:"react-aria-ModalOverlay",values:{isEntering:a,isExiting:e.isExiting,state:r}}),c=y_(),f,h;if(typeof document<"u"){let g=Us(document.body)?document.body:document.scrollingElement||document.documentElement,b=g.getBoundingClientRect().width%1,x=g.getBoundingClientRect().height%1;f=g.scrollWidth-b,h=g.scrollHeight-x}let m={...u.style,"--visual-viewport-width":c.width+"px","--visual-viewport-height":c.height+"px","--page-width":f!==void 0?f+"px":void 0,"--page-height":h!==void 0?h+"px":void 0};return V.createElement(h4,{isExiting:e.isExiting,portalContainer:t},V.createElement(ot.div,{...$e(Ze(e,{global:!0}),s),...u,style:m,ref:e.overlayRef,"data-entering":a||void 0,"data-exiting":e.isExiting||void 0},V.createElement(Pr,{values:[[nx,{modalProps:i,modalRef:n,isExiting:e.isExiting,isDismissable:e.isDismissable}],[ga,r]]},u.children)))}function nE(t){let{modalProps:e,modalRef:n,isExiting:r,isDismissable:i}=S.useContext(nx),s=S.useContext(ga),a=S.useMemo(()=>hd(t.modalRef,n),[t.modalRef,n]),u=Zs(a),c=q3(u),f=wt({...t,defaultClassName:"react-aria-Modal",values:{isEntering:c,isExiting:r,state:s}});return V.createElement(ot.div,{...$e(Ze(t,{global:!0}),e),...f,ref:u,"data-entering":c||void 0,"data-exiting":r||void 0},i&&V.createElement(f4,{onDismiss:s.close}),f.children)}var FB={};FB={"Clear search":"مسح البحث"};var KB={};KB={"Clear search":"Изчистване на търсене"};var _B={};_B={"Clear search":"Vymazat hledání"};var VB={};VB={"Clear search":"Ryd søgning"};var HB={};HB={"Clear search":"Suche zurücksetzen"};var UB={};UB={"Clear search":"Απαλοιφή αναζήτησης"};var qB={};qB={"Clear search":"Clear search"};var GB={};GB={"Clear search":"Borrar búsqueda"};var WB={};WB={"Clear search":"Tühjenda otsing"};var QB={};QB={"Clear search":"Tyhjennä haku"};var YB={};YB={"Clear search":"Effacer la recherche"};var XB={};XB={"Clear search":"נקה חיפוש"};var JB={};JB={"Clear search":"Obriši pretragu"};var ZB={};ZB={"Clear search":"Keresés törlése"};var eM={};eM={"Clear search":"Cancella ricerca"};var tM={};tM={"Clear search":"検索をクリア"};var nM={};nM={"Clear search":"검색 지우기"};var rM={};rM={"Clear search":"Išvalyti iešką"};var iM={};iM={"Clear search":"Notīrīt meklēšanu"};var sM={};sM={"Clear search":"Tøm søk"};var oM={};oM={"Clear search":"Zoekactie wissen"};var aM={};aM={"Clear search":"Wyczyść zawartość wyszukiwania"};var lM={};lM={"Clear search":"Limpar pesquisa"};var uM={};uM={"Clear search":"Limpar pesquisa"};var cM={};cM={"Clear search":"Ştergeţi căutarea"};var dM={};dM={"Clear search":"Очистить поиск"};var fM={};fM={"Clear search":"Vymazať vyhľadávanie"};var hM={};hM={"Clear search":"Počisti iskanje"};var pM={};pM={"Clear search":"Obriši pretragu"};var mM={};mM={"Clear search":"Rensa sökning"};var gM={};gM={"Clear search":"Aramayı temizle"};var bM={};bM={"Clear search":"Очистити пошук"};var yM={};yM={"Clear search":"清除搜索"};var xM={};xM={"Clear search":"清除搜尋條件"};var vM={};vM={"ar-AE":FB,"bg-BG":KB,"cs-CZ":_B,"da-DK":VB,"de-DE":HB,"el-GR":UB,"en-US":qB,"es-ES":GB,"et-EE":WB,"fi-FI":QB,"fr-FR":YB,"he-IL":XB,"hr-HR":JB,"hu-HU":ZB,"it-IT":eM,"ja-JP":tM,"ko-KR":nM,"lt-LT":rM,"lv-LV":iM,"nb-NO":sM,"nl-NL":oM,"pl-PL":aM,"pt-BR":lM,"pt-PT":uM,"ro-RO":cM,"ru-RU":dM,"sk-SK":fM,"sl-SI":hM,"sr-SP":pM,"sv-SE":mM,"tr-TR":gM,"uk-UA":bM,"zh-CN":yM,"zh-TW":xM};function E_(t){return t&&t.__esModule?t.default:t}function D_(t,e,n){let r=yr(E_(vM),"@react-aria/searchfield"),{isDisabled:i,isReadOnly:s,onSubmit:a,onClear:u,type:c="search"}=t,f=D=>{const T=D.key;T==="Enter"&&(i||s)&&D.preventDefault(),!(i||s)&&(T==="Enter"&&a&&(D.preventDefault(),a(e.value)),T==="Escape"&&(e.value===""&&(!n.current||n.current.value==="")?D.continuePropagation():(D.preventDefault(),e.setValue(""),u&&u())))},h=()=>{e.setValue(""),u&&u()},m=()=>{n.current?.focus()},{labelProps:g,inputProps:b,descriptionProps:x,errorMessageProps:k,...E}=uF({...t,value:e.value,onChange:e.setValue,onKeyDown:s?t.onKeyDown:Xs(f,t.onKeyDown),type:c},n);return{labelProps:g,inputProps:{...b,defaultValue:void 0},clearButtonProps:{"aria-label":r.format("Clear search"),excludeFromTabOrder:!0,preventFocusOnPress:!0,isDisabled:i||s,onPress:h,onPressStart:m},descriptionProps:x,errorMessageProps:k,...E}}function S_(t){let[e,n]=eo(rE(t.value),rE(t.defaultValue)||"",t.onChange);return{value:e,setValue:n}}function rE(t){if(t!=null)return t.toString()}const w_=S.createContext(null),$_=xm(function(e,n){[e,n]=Ct(e,n,w_);let{validationBehavior:r}=Vl(Xj)||{},i=e.validationBehavior??r??"native",s=S.useRef(null);[e,s]=Ct(e,s,bm);let[a,u]=gw(!e["aria-label"]&&!e["aria-labelledby"]),c=S_({...e,validationBehavior:i}),{labelProps:f,inputProps:h,clearButtonProps:m,descriptionProps:g,errorMessageProps:b,...x}=D_({...bw(e),label:u,validationBehavior:i},c,s),k=wt({...e,values:{isEmpty:c.value==="",isDisabled:e.isDisabled||!1,isInvalid:x.isInvalid||!1,isReadOnly:e.isReadOnly||!1,isRequired:e.isRequired||!1,state:c},defaultClassName:"react-aria-SearchField"}),E=Ze(e,{global:!0});return delete E.id,V.createElement(ot.div,{...E,...k,ref:n,slot:e.slot||void 0,"data-empty":c.value===""||void 0,"data-disabled":e.isDisabled||void 0,"data-invalid":x.isInvalid||void 0,"data-readonly":e.isReadOnly||void 0,"data-required":e.isRequired||void 0},V.createElement(Pr,{values:[[L3,{...f,ref:a}],[k6,{...h,ref:s}],[km,m],[z3,{slots:{description:g,errorMessage:b}}],[v6,{isInvalid:x.isInvalid,isDisabled:e.isDisabled||!1}],[qj,x]]},k.children))}),T_=S.createContext({});let A_=t=>{let{onHoverStart:e,onHoverChange:n,onHoverEnd:r,...i}=t;return i};const B_=S.forwardRef(function(e,n){[e,n]=Ct(e,n,T_);let{hoverProps:r,isHovered:i}=_i(e),{isFocused:s,isFocusVisible:a,focusProps:u}=zi({isTextInput:!0,autoFocus:e.autoFocus}),c=!!e["aria-invalid"]&&e["aria-invalid"]!=="false",f=wt({...e,values:{isHovered:i,isFocused:s,isFocusVisible:a,isDisabled:e.disabled||!1,isInvalid:c},defaultClassName:"react-aria-TextArea"});return V.createElement(ot.textarea,{...$e(A_(e),u,r),...f,ref:n,"data-focused":s||void 0,"data-disabled":e.disabled||void 0,"data-hovered":i||void 0,"data-focus-visible":a||void 0,"data-invalid":c||void 0})});function kM(t,e,n){const{isSelected:r}=e,{isPressed:i,buttonProps:s}=m6({...t,onPress:Xs(e.toggle,t.onPress)},n);return{isPressed:i,isSelected:r,isDisabled:t.isDisabled||!1,buttonProps:$e(s,{"aria-pressed":r})}}function M_(t,e){const{"aria-label":n,"aria-labelledby":r,orientation:i="horizontal"}=t;let[s,a]=S.useState(!1);ze(()=>{a(!!(e.current&&e.current.parentElement?.closest('[role="toolbar"]')))});const{direction:u}=Ki(),c=u==="rtl"&&i==="horizontal";let f=SF(e);const h=x=>{if(we(x.currentTarget,de(x))){if(i==="horizontal"&&x.key==="ArrowRight"||i==="vertical"&&x.key==="ArrowDown")c?f.focusPrevious():f.focusNext();else if(i==="horizontal"&&x.key==="ArrowLeft"||i==="vertical"&&x.key==="ArrowUp")c?f.focusNext():f.focusPrevious();else if(x.key==="Tab"){m.current=_e(),x.shiftKey?f.focusFirst():f.focusLast();return}else return;x.stopPropagation(),x.preventDefault()}},m=S.useRef(null),g=x=>{!we(x.currentTarget,x.relatedTarget)&&!m.current&&(m.current=de(x))},b=x=>{m.current&&!we(x.currentTarget,x.relatedTarget)&&we(e.current,de(x))&&(m.current?.focus(),m.current=null)};return{toolbarProps:{...Ze(t,{labelable:!0}),role:s?"group":"toolbar","aria-orientation":i,"aria-label":n,"aria-labelledby":n==null?r:void 0,onKeyDownCapture:s?void 0:h,onFocusCapture:s?void 0:b,onBlurCapture:s?void 0:g}}}function R_(t,e,n){let{isDisabled:r}=t,{toolbarProps:i}=M_(t,n);return{groupProps:{...i,role:e.selectionMode==="single"?"radiogroup":i.role,"aria-disabled":r}}}function N_(t,e,n){let r={isSelected:e.selectedKeys.has(t.id),defaultSelected:!1,setSelected(c){e.setSelected(t.id,c)},toggle(){e.toggleKey(t.id)}},{isPressed:i,isSelected:s,isDisabled:a,buttonProps:u}=kM({...t,id:void 0,isDisabled:t.isDisabled||e.isDisabled},r,n);return e.selectionMode==="single"&&(u.role="radio",u["aria-checked"]=r.isSelected,delete u["aria-pressed"]),{isPressed:i,isSelected:s,isDisabled:a,buttonProps:u}}function P_(t){let{selectionMode:e="single",disallowEmptySelection:n,isDisabled:r=!1}=t,[i,s]=eo(S.useMemo(()=>t.selectedKeys?new Set(t.selectedKeys):void 0,[t.selectedKeys]),S.useMemo(()=>t.defaultSelectedKeys?new Set(t.defaultSelectedKeys):new Set,[t.defaultSelectedKeys]),t.onSelectionChange);return{selectionMode:e,isDisabled:r,selectedKeys:i,setSelectedKeys:s,toggleKey(a){let u;e==="multiple"?(u=new Set(i),u.has(a)&&(!n||u.size>1)?u.delete(a):u.add(a)):u=new Set(i.has(a)&&!n?[]:[a]),s(u)},setSelected(a,u){u!==i.has(a)&&this.toggleKey(a)}}}const O_=S.createContext({}),CM=S.createContext(null),L_=S.forwardRef(function(e,n){[e,n]=Ct(e,n,O_);let r=P_(e),{groupProps:i}=R_(e,r,n),s=wt({...e,values:{orientation:e.orientation||"horizontal",isDisabled:r.isDisabled,state:r},defaultClassName:"react-aria-ToggleButtonGroup"}),a=Ze(e,{global:!0});return V.createElement(ot.div,{...$e(a,s,i),ref:n,slot:e.slot||void 0,"data-orientation":e.orientation||"horizontal","data-disabled":e.isDisabled||void 0},V.createElement(CM.Provider,{value:r},V.createElement(I3,null,s.children)))}),z_=S.createContext({}),I_=S.forwardRef(function(e,n){[e,n]=Ct(e,n,z_);let r=S.useContext(CM),i=iF(r&&e.id!=null?{isSelected:r.selectedKeys.has(e.id),onChange(E){r.setSelected(e.id,E)}}:e),{buttonProps:s,isPressed:a,isSelected:u,isDisabled:c}=r&&e.id!=null?N_({...e,id:e.id},r,n):kM({...e,id:e.id!=null?String(e.id):void 0},i,n),{focusProps:f,isFocused:h,isFocusVisible:m}=zi(e),{hoverProps:g,isHovered:b}=_i({...e,isDisabled:c}),x=wt({...e,id:void 0,values:{isHovered:b,isPressed:a,isFocused:h,isSelected:i.isSelected,isFocusVisible:m,isDisabled:c,state:i},defaultClassName:"react-aria-ToggleButton"}),k=Ze(e,{global:!0});return delete k.id,delete k.onClick,V.createElement(ot.button,{...$e(k,x,s,f,g),ref:n,slot:e.slot||void 0,"data-focused":h||void 0,"data-disabled":c||void 0,"data-pressed":a||void 0,"data-selected":u||void 0,"data-hovered":b||void 0,"data-focus-visible":m||void 0},V.createElement(j3.Provider,{value:{isSelected:u}},x.children))});function j_(t,e,n,r,i=!1,s=!1){switch(r){case"left":return i?q0(t,e,n,s,"left"):G0(t,e,n,s,"left");case"right":return i?G0(t,e,n,s,"right"):q0(t,e,n,s,"right");case"up":return G0(t,e,n,s);case"down":return q0(t,e,n,s)}}function q0(t,e,n,r=!1,i=null){if(!n)return{type:"root"};if(n.type==="root"){let s=t.getFirstKey?.()??null;return s!=null?{type:"item",key:s,dropPosition:"before"}:null}if(n.type==="item"){let s=null;i?s=i==="right"?t.getKeyRightOf?.(n.key,{includeDisabled:!0}):t.getKeyLeftOf?.(n.key,{includeDisabled:!0}):s=t.getKeyBelow?.(n.key,{includeDisabled:!0});let a=rx(e,n.key,u=>e.getKeyAfter(u));if(s!=null&&s!==a)return{type:"item",key:s,dropPosition:n.dropPosition};switch(n.dropPosition){case"before":return{type:"item",key:n.key,dropPosition:"on"};case"on":{let u=e.getItem(n.key),c=s!=null?e.getItem(s):null;return u&&c&&c.level>=u.level?{type:"item",key:c.key,dropPosition:"before"}:{type:"item",key:n.key,dropPosition:"after"}}case"after":{let u=e.getItem(n.key),c=u?.nextKey!=null?e.getItem(u.nextKey):null;for(;c!=null&&c.type!=="item";)c=c.nextKey!=null?e.getItem(c.nextKey):null;if(u&&c==null&&u.parentKey!=null){let f=e.getItem(u.parentKey);const h=f?.nextKey!=null?e.getItem(f.nextKey):null;if(h?.type==="item")return{type:"item",key:h.key,dropPosition:"before"};if(f?.type==="item")return{type:"item",key:f.key,dropPosition:"after"}}if(c)return{type:"item",key:c.key,dropPosition:"on"}}}}return r?{type:"root"}:null}function G0(t,e,n,r=!1,i=null){if(!n||r&&n.type==="root"){let s=null,a=t.getLastKey?.();for(;a!=null;){let u=e.getItem(a);if(u?.type!=="item")break;s=a,a=u?.parentKey}return s!=null?{type:"item",key:s,dropPosition:"after"}:null}if(n.type==="item"){let s=null;i?s=i==="left"?t.getKeyLeftOf?.(n.key,{includeDisabled:!0}):t.getKeyRightOf?.(n.key,{includeDisabled:!0}):s=t.getKeyAbove?.(n.key,{includeDisabled:!0});let a=rx(e,n.key,u=>e.getKeyBefore(u));if(s!=null&&s!==a)return{type:"item",key:s,dropPosition:n.dropPosition};switch(n.dropPosition){case"before":{let u=e.getItem(n.key);if(u&&u.prevKey!=null){let c=iE(e,u.prevKey);if(c)return c}return s!=null?{type:"item",key:s,dropPosition:"on"}:{type:"root"}}case"on":return{type:"item",key:n.key,dropPosition:"before"};case"after":{let u=iE(e,n.key);return u||{type:"item",key:n.key,dropPosition:"on"}}}}return n.type!=="root"?{type:"root"}:null}function iE(t,e){let n=t.getItem(e),r=rx(t,e,s=>t.getKeyAfter(s)),i=r!=null?t.getItem(r):null;if(n&&i&&i.level>n.level){let s=null;if("lastChildKey"in n)for(s=n.lastChildKey!=null?t.getItem(n.lastChildKey):null;s&&s.type!=="item"&&s.prevKey!=null;)s=t.getItem(s.prevKey);else s=Array.from(n.childNodes).findLast(a=>a.type==="item")||null;if(s)return{type:"item",key:s.key,dropPosition:"after"}}return null}function rx(t,e,n){let r=n(e),i=r!=null?t.getItem(r):null;for(;i&&i.type!=="item";)r=n(i.key),i=r!=null?t.getItem(r):null;return r}const ah=20;function F_(t){let e=S.useRef(null),n=S.useRef(!0),r=S.useRef(!0);S.useEffect(()=>{if(t.current){e.current=Us(t.current)?t.current:Wr(t.current);let a=window.getComputedStyle(e.current);n.current=/(auto|scroll)/.test(a.overflowX),r.current=/(auto|scroll)/.test(a.overflowY)}},[t]);let i=S.useRef({timer:void 0,dx:0,dy:0}).current;S.useEffect(()=>()=>{i.timer&&(cancelAnimationFrame(i.timer),i.timer=void 0)},[i]);let s=S.useCallback(()=>{n.current&&e.current&&(e.current.scrollLeft+=i.dx),r.current&&e.current&&(e.current.scrollTop+=i.dy),i.timer&&(i.timer=requestAnimationFrame(s))},[e,i]);return{move(a,u){if(!$3()||Oi()||!e.current)return;let c=e.current.getBoundingClientRect(),f=ah,h=ah,m=c.height-ah,g=c.width-ah;a<f||a>g||u<h||u>m?(a<f?i.dx=a-f:a>g&&(i.dx=a-g),u<h?i.dy=u-h:u>m&&(i.dy=u-m),i.timer||(i.timer=requestAnimationFrame(s))):this.stop()},stop(){i.timer&&(cancelAnimationFrame(i.timer),i.timer=void 0)}}}function K_(t,e,n){let r=S.useRef({props:t,state:e,nextTarget:null,dropOperation:null}).current;r.props=t,r.state=e;let i=S.useCallback(async g=>{let{onInsert:b,onRootDrop:x,onItemDrop:k,onReorder:E,onMove:D,acceptedDragTypes:T="all",shouldAcceptItemDrop:$}=r.props,{draggingKeys:A}=jt,B=Gr(n),{target:P,dropOperation:M,items:N}=g,j=N;(T!=="all"||$)&&(j=N.filter(G=>{let W;return G.kind==="directory"?W=new Set([yA]):W=G.kind==="file"?new Set([G.type]):G.types,T==="all"||T.some(U=>W.has(U))?P.type==="item"&&P.dropPosition==="on"&&$?$(P,W):!0:!1})),j.length>0&&(P.type==="root"&&x&&await x({items:j,dropOperation:M}),P.type==="item"&&(P.dropPosition==="on"&&k&&await k({items:j,dropOperation:M,isInternal:B,target:P}),D&&B&&await D({keys:A,dropOperation:M,target:P}),P.dropPosition!=="on"&&(!B&&b&&await b({items:j,dropOperation:M,target:P}),B&&E&&await E({keys:A,dropOperation:M,target:P}))))},[r,n]),s=F_(n),{dropProps:a}=YK({ref:n,onDropEnter(){r.nextTarget!=null&&e.setTarget(r.nextTarget)},onDropMove(g){r.nextTarget!=null&&e.setTarget(r.nextTarget),s.move(g.x,g.y)},getDropOperationForPoint(g,b,x,k){let{draggingKeys:E,dropCollectionRef:D}=jt,T=Gr(n),$=B=>e.getDropOperation({target:B,types:g,allowedOperations:b,isInternal:T,draggingKeys:E})!=="cancel",A=t.dropTargetDelegate.getDropTargetFromPoint(x,k,$);if(!A)return r.dropOperation="cancel",r.nextTarget=null,"cancel";if(r.dropOperation=e.getDropOperation({target:A,types:g,allowedOperations:b,isInternal:T,draggingKeys:E}),r.dropOperation==="cancel"){let B={type:"root"},P=e.getDropOperation({target:B,types:g,allowedOperations:b,isInternal:T,draggingKeys:E});P!=="cancel"&&(A=B,r.dropOperation=P)}return A&&r.dropOperation!=="cancel"&&n?.current!==D?.current&&hl(n),r.nextTarget=r.dropOperation==="cancel"?null:A,r.dropOperation},onDropExit(){hl(void 0),e.setTarget(null),s.stop()},onDropActivate(g){e.target?.type==="item"&&typeof t.onDropActivate=="function"&&t.onDropActivate({type:"dropactivate",x:g.x,y:g.y,target:e.target})},onDrop(g){hl(n),e.target&&f(g,e.target);let{draggingCollectionRef:b}=jt;b==null&&CA()}}),u=S.useRef(null),c=S.useCallback(()=>{let{state:g}=r;if(u.current){let{target:b,collection:x,selectedKeys:k,focusedKey:E,isInternal:D,draggingKeys:T}=u.current;if(g.collection.size>x.size&&g.selectionManager.isSelectionEqual(k)){let $=new Set,A=g.collection.getFirstKey();for(;A!=null;){let B=g.collection.getItem(A);B?.type==="item"&&!x.getItem(B.key)&&$.add(B.key),B?.hasChildNodes&&g.collection.getItem(B.lastChildKey)?.type==="item"?A=B.firstChildKey:A=g.collection.getKeyAfter(A)}if(g.selectionManager.setSelectedKeys($),g.selectionManager.focusedKey===E){let B=$.keys().next().value;if(B!=null){let P=g.collection.getItem(B),M=u.current.target,N=g.collection.expandedKeys?g.collection.expandedKeys.has(P?.parentKey):!1;P&&(P?.type==="cell"||M.type==="item"&&M.dropPosition==="on"&&!N)&&(B=P.parentKey),B!=null&&g.selectionManager.setFocusedKey(B),g.selectionManager.selectionMode==="none"&&zo("keyboard")}}}else E!=null&&g.selectionManager.focusedKey===E&&D&&b.type==="item"&&b.dropPosition!=="on"&&T.has(g.collection.getItem(E)?.parentKey)?(g.selectionManager.setFocusedKey(g.collection.getItem(E)?.parentKey??null),zo("keyboard")):g.selectionManager.focusedKey===E&&b.type==="item"&&b.dropPosition==="on"&&g.collection.getItem(b.key)!=null?(g.selectionManager.setFocusedKey(b.key),zo("keyboard")):g.selectionManager.focusedKey!=null&&!g.selectionManager.isSelected(g.selectionManager.focusedKey)&&zo("keyboard");g.selectionManager.setFocused(!0)}},[r]),f=S.useCallback((g,b)=>{let{state:x}=r;u.current={timeout:void 0,focusedKey:x.selectionManager.focusedKey,collection:x.collection,selectedKeys:x.selectionManager.selectedKeys,draggingKeys:jt.draggingKeys,isInternal:Gr(n),target:b},(r.props.onDrop||i)({type:"drop",x:g.x,y:g.y,target:b,items:g.items,dropOperation:g.dropOperation}),u.current.timeout=setTimeout(()=>{c(),u.current=null},50)},[r,i,n,c]);S.useEffect(()=>()=>{u.current&&clearTimeout(u.current.timeout)},[]),ze(()=>{u.current&&e.collection!==u.current.collection&&c()});let{direction:h}=Ki();S.useEffect(()=>{if(!n.current)return;let g=(k,E=!0,D="down")=>j_(r.props.keyboardDelegate,r.state.collection,k,D,h==="rtl",E),b=(k,E=!0)=>g(k,E,"up"),x=(k,E,D,T,$=!0)=>{let A=0,B,{draggingKeys:P}=jt,M=Gr(n);do{let N=T(k,$);if(!N)return null;k=N,B=r.state.getDropOperation({target:N,types:E,allowedOperations:D,isInternal:M,draggingKeys:P}),k.type==="root"&&A++}while(B==="cancel"&&!r.state.isDropTarget(k)&&A<2);return B==="cancel"?null:k};return EA({element:n.current,preventFocusOnDrop:!0,getDropOperation(k,E){if(r.state.target){let{draggingKeys:T}=jt,$=Gr(n);return r.state.getDropOperation({target:r.state.target,types:k,allowedOperations:E,isInternal:$,draggingKeys:T})}return x(null,k,E,g)?"move":"cancel"},onDropEnter(k,E){let D=Xo(E.items),T=r.state.selectionManager,$=null;hl(n);let A=T.focusedKey,B="after",P=A!=null?r.state.collection.getItem(A):null;if(P?.type==="cell"&&(A=P.parentKey),A!=null&&T.isSelected(A)&&(T.selectedKeys.size>1&&T.firstSelectedKey===A?B="before":A=T.lastSelectedKey),A!=null){$={type:"item",key:A,dropPosition:B};let{draggingKeys:M}=jt,N=Gr(n);r.state.getDropOperation({target:$,types:D,allowedOperations:E.allowedDropOperations,isInternal:N,draggingKeys:M})==="cancel"&&($=x($,D,E.allowedDropOperations,g,!1)??x($,D,E.allowedDropOperations,b,!1))}$||($=x(null,D,E.allowedDropOperations,g)),r.state.setTarget($)},onDropExit(){hl(void 0),r.state.setTarget(null)},onDropTargetEnter(k){r.state.setTarget(k)},onDropActivate(k,E){E?.type==="item"&&E?.dropPosition==="on"&&typeof r.props.onDropActivate=="function"&&r.props.onDropActivate({type:"dropactivate",x:k.x,y:k.y,target:E})},onDrop(k,E){hl(n),r.state.target&&f(k,E||r.state.target)},onKeyDown(k,E){let{keyboardDelegate:D}=r.props,T=Xo(E.items);switch(k.key){case"ArrowDown":if(D.getKeyBelow){let $=x(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"down"));r.state.setTarget($)}break;case"ArrowUp":if(D.getKeyAbove){let $=x(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"up"));r.state.setTarget($)}break;case"ArrowLeft":if(D.getKeyLeftOf){let $=x(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"left"));r.state.setTarget($)}break;case"ArrowRight":if(D.getKeyRightOf){let $=x(r.state.target,T,E.allowedDropOperations,(A,B)=>g(A,B,"right"));r.state.setTarget($)}break;case"Home":if(D.getFirstKey){let $=x(null,T,E.allowedDropOperations,g);r.state.setTarget($)}break;case"End":if(D.getLastKey){let $=x(null,T,E.allowedDropOperations,b);r.state.setTarget($)}break;case"PageDown":if(D.getKeyPageBelow){let $=r.state.target;if(!$)$=x(null,T,E.allowedDropOperations,g);else{let A=D.getFirstKey?.();$.type==="item"&&(A=$.key);let B=null;A!=null&&(B=D.getKeyPageBelow(A));let P=$.type==="item"?$.dropPosition:"after";if((B==null||$.type==="item"&&$.key===D.getLastKey?.())&&(B=D.getLastKey?.()??null,P="after"),B==null)break;$={type:"item",key:B,dropPosition:P};let{draggingCollectionRef:M,draggingKeys:N}=jt,j=M?.current===n?.current;r.state.getDropOperation({target:$,types:T,allowedOperations:E.allowedDropOperations,isInternal:j,draggingKeys:N})==="cancel"&&($=x($,T,E.allowedDropOperations,g,!1)??x($,T,E.allowedDropOperations,b,!1))}r.state.setTarget($??r.state.target)}break;case"PageUp":{if(!D.getKeyPageAbove)break;let $=r.state.target;if(!$)$=x(null,T,E.allowedDropOperations,b);else if($.type==="item"){if($.key===D.getFirstKey?.())$={type:"root"};else{let M=D.getKeyPageAbove($.key),N=$.dropPosition;if(M==null&&(M=D.getFirstKey?.(),N="before"),M==null)break;$={type:"item",key:M,dropPosition:N}}let{draggingKeys:A}=jt,B=Gr(n);r.state.getDropOperation({target:$,types:T,allowedOperations:E.allowedDropOperations,isInternal:B,draggingKeys:A})==="cancel"&&($=x($,T,E.allowedDropOperations,b,!1)??x($,T,E.allowedDropOperations,g,!1))}r.state.setTarget($??r.state.target);break}}r.props.onKeyDown?.(k)}})},[r,n,f,h]);let m=on();return J3.set(e,{id:m,ref:n}),{collectionProps:$e(a,{id:m,"aria-describedby":null})}}function EM(t,e,n){let{dropProps:r}=iB(),i=BK(e);S.useEffect(()=>{if(n.current)return jK({element:n.current,target:t.target,getDropOperation(h,m){let{draggingKeys:g}=jt,b=Gr(i);return e.getDropOperation({target:t.target,types:h,allowedOperations:m,isInternal:b,draggingKeys:g})},activateButtonRef:t.activateButtonRef})},[n,t.target,e,i,t.activateButtonRef]);let s=ex(),{draggingKeys:a}=jt,u=Gr(i),c=s&&e.getDropOperation({target:t.target,types:Xo(s.dragTarget.items),allowedOperations:s.dragTarget.allowedDropOperations,isInternal:u,draggingKeys:a})!=="cancel",f=e.isDropTarget(t.target);return S.useEffect(()=>{s&&f&&n.current&&n.current.focus()},[f,s,n]),{dropProps:{...r,"aria-hidden":!s||c?void 0:"true"},isDropTarget:f}}function __(t){return t&&t.__esModule?t.default:t}function V_(t,e,n){let{target:r}=t,{collection:i}=e,s=yr(__(yd),"@react-aria/dnd"),a=ex(),{dropProps:u}=EM(t,e,n),c=on(),f=x=>x==null?"":i.getTextValue?.(x)??i.getItem(x)?.textValue??"",h="",m;if(r.type==="root")h=s.format("dropOnRoot"),m=`${c} ${AK(e)}`;else if(r.dropPosition==="on")h=s.format("dropOnItem",{itemText:f(r.key)});else{let x,k;if(r.dropPosition==="before"){let E=i.getItem(r.key)?.prevKey,D=E!=null?i.getItem(E):null;x=D?.type==="item"?D.key:null}else x=r.key;if(r.dropPosition==="after"){let E=i.getItem(r.key)?.nextKey,D=E!=null?i.getItem(E):null;k=D?.type==="item"?D.key:null}else k=r.key;x!=null&&k!=null?h=s.format("insertBetween",{beforeItemText:f(x),afterItemText:f(k)}):x!=null?h=s.format("insertAfter",{itemText:f(x)}):k!=null&&(h=s.format("insertBefore",{itemText:f(k)}))}let g=e.isDropTarget(r),b=a?u["aria-hidden"]:"true";return{dropIndicatorProps:{...u,id:c,"aria-roledescription":s.format("dropIndicator"),"aria-label":h,"aria-labelledby":m,"aria-hidden":b,tabIndex:-1},isDropTarget:g,isHidden:!g&&!!b}}function H_(t){return t&&t.__esModule?t.default:t}const sE={keyboard:{start:"dragDescriptionKeyboard",end:"endDragKeyboard"},touch:{start:"dragDescriptionTouch",end:"endDragTouch"},virtual:{start:"dragDescriptionVirtual",end:"endDragVirtual"}};function U_(t){let{hasDragButton:e,isDisabled:n}=t,r=yr(H_(yd),"@react-aria/dnd"),i=S.useRef({options:t,x:0,y:0}).current;i.options=t;let s=S.useRef(null),[a,u]=S.useState(!1),c=B=>{s.current=B,u(!!B)},{addGlobalListener:f,removeAllGlobalListeners:h}=pd(),m=S.useRef(null),g=B=>{if(B.defaultPrevented)return;if(B.stopPropagation(),m.current==="virtual"){B.preventDefault(),E(de(B)),m.current=null;return}typeof t.onDragStart=="function"&&t.onDragStart({type:"dragstart",x:B.clientX,y:B.clientY});let P=t.getItems();B.dataTransfer.clearData?.(),MK(B.dataTransfer,P);let M=Rt.all;if(typeof t.getAllowedDropOperations=="function"){let G=t.getAllowedDropOperations();M=Rt.none;for(let W of G)M|=Rt[W]||Rt.none}V0(M);let N=gA[M]||"none";B.dataTransfer.effectAllowed=N==="cancel"?"none":N,typeof t.preview?.current=="function"&&t.preview.current(P,(G,W,U)=>{if(!G)return;let ne=G.getBoundingClientRect(),F=B.currentTarget.getBoundingClientRect(),te=B.clientX-F.x,O=B.clientY-F.y;(te>ne.width||O>ne.height)&&(te=ne.width/2,O=ne.height/2);let K=te,Q=O;typeof W=="number"&&typeof U=="number"&&(K=W,Q=U),K=Math.max(0,Math.min(K,ne.width)),Q=Math.max(0,Math.min(Q,ne.height));let Z=2*Math.round(ne.height/2);G.style.height=`${Z}px`,B.dataTransfer.setDragImage(G,K,Q)}),f(window,"drop",G=>{G.preventDefault(),G.stopPropagation(),console.warn("Drags initiated from the React Aria useDrag hook may only be dropped on a target created with useDrop. This ensures that a keyboard and screen reader accessible alternative is available.")},{once:!0}),i.x=B.clientX,i.y=B.clientY;let j=de(B);requestAnimationFrame(()=>{c(j)})},b=B=>{B.stopPropagation(),!(B.clientX===i.x&&B.clientY===i.y)&&(typeof t.onDragMove=="function"&&t.onDragMove({type:"dragmove",x:B.clientX,y:B.clientY}),i.x=B.clientX,i.y=B.clientY)},x=B=>{if(B.stopPropagation(),typeof t.onDragEnd=="function"){let P={type:"dragend",x:B.clientX,y:B.clientY,dropOperation:kc[B.dataTransfer.dropEffect]};Lh&&(P.dropOperation=kc[Lh]),t.onDragEnd(P)}c(null),h(),V0(Rt.none),cp(void 0)};S.useEffect(()=>()=>{if(s.current&&(!s.current.isConnected||parseInt(S.version,10)<17)){if(typeof i.options.onDragEnd=="function"){let B={type:"dragend",x:0,y:0,dropOperation:kc[Lh||"none"]};i.options.onDragEnd(B)}c(null),V0(Rt.none),cp(void 0)}},[i]);let k=B=>{B.pointerType!=="keyboard"&&B.pointerType!=="virtual"||E(B.target)},E=B=>{if(typeof i.options.onDragStart=="function"){let P=B.getBoundingClientRect();i.options.onDragStart({type:"dragstart",x:P.x+P.width/2,y:P.y+P.height/2})}FK({element:B,items:i.options.getItems(),allowedDropOperations:typeof i.options.getAllowedDropOperations=="function"?i.options.getAllowedDropOperations():["move","copy","link"],onDragEnd(P){c(null),typeof i.options.onDragEnd=="function"&&i.options.onDragEnd(P)}},r),c(B)},D=Z3(),T=a?sE[D].end:sE[D].start,$=gd(r.format(T)),A={};return e||(A={...$,onPointerDown(B){if(m.current=T3(B.nativeEvent)?"virtual":B.pointerType,B.width<1&&B.height<1)m.current="virtual";else{let P=B.currentTarget.getBoundingClientRect(),M=B.clientX-P.x,N=B.clientY-P.y,j=P.width/2,G=P.height/2;Math.abs(M-j)<=.5&&Math.abs(N-G)<=.5?m.current="virtual":m.current=B.pointerType}},onKeyDownCapture(B){de(B)===B.currentTarget&&B.key==="Enter"&&(B.preventDefault(),B.stopPropagation())},onKeyUpCapture(B){de(B)===B.currentTarget&&B.key==="Enter"&&(B.preventDefault(),B.stopPropagation(),E(de(B)))},onClick(B){(pm(B.nativeEvent)||m.current==="virtual")&&(B.preventDefault(),B.stopPropagation(),E(de(B)))}}),n?{dragProps:{draggable:"false"},dragButtonProps:{},isDragging:!1}:{dragProps:{...A,draggable:"true",onDragStart:g,onDrag:b,onDragEnd:x},dragButtonProps:{...$,onPress:k},isDragging:a}}function q_(t){return t&&t.__esModule?t.default:t}const G_={keyboard:{selected:"dragSelectedKeyboard",notSelected:"dragDescriptionKeyboard"},touch:{selected:"dragSelectedLongPress",notSelected:"dragDescriptionLongPress"},virtual:{selected:"dragDescriptionVirtual",notSelected:"dragDescriptionVirtual"}};function W_(t,e){let n=yr(q_(yd),"@react-aria/dnd"),r=e.isDisabled||e.selectionManager.isDisabled(t.key),{dragProps:i,dragButtonProps:s}=U_({getItems(){return e.getItems(t.key)},preview:e.preview,getAllowedDropOperations:e.getAllowedDropOperations,hasDragButton:t.hasDragButton,onDragStart(b){e.startDrag(t.key,b),zK(e.draggingKeys)},onDragMove(b){e.moveDrag(b)},onDragEnd(b){let{dropOperation:x}=b,k=x==="cancel"?!1:Gr();e.endDrag({...b,keys:e.draggingKeys,isInternal:k}),CA()}}),a=e.collection.getItem(t.key),u=e.getKeysForDrag(t.key).size,c=u>1&&e.selectionManager.isSelected(t.key),f,h,m=Z3();if(!t.hasDragButton&&e.selectionManager.selectionMode!=="none"){let b=G_[m][c?"selected":"notSelected"];t.hasAction&&m==="keyboard"&&(b+="Alt"),c?h=n.format(b,{count:u}):h=n.format(b),delete i.onClick}else if(c)f=n.format("dragSelectedItems",{count:u});else{let b=e.collection.getTextValue?.(t.key)??a?.textValue??"";f=n.format("dragItem",{itemText:b})}let g=gd(h);if(h&&Object.assign(i,g),!t.hasDragButton&&t.hasAction){let{onKeyDownCapture:b,onKeyUpCapture:x}=i;m==="touch"&&delete i["aria-describedby"],i.onKeyDownCapture=k=>{k.altKey&&b?.(k)},i.onKeyUpCapture=k=>{k.altKey&&x?.(k)}}return{dragProps:r?{}:i,dragButtonProps:{...s,isDisabled:r,"aria-label":f}}}function Q_(t,e,n){let{draggingCollectionRef:r}=jt;e.draggingKeys.size>0&&r?.current!==n.current&&LK(n)}const Y_=V.forwardRef(function(e,n){let r=e.children,[i,s]=S.useState(null),a=S.useRef(null),u=S.useRef(void 0);return S.useImperativeHandle(n,()=>(c,f)=>{let h=r(c),m,g,b;h&&typeof h=="object"&&"element"in h?(m=h.element,g=h.x,b=h.y):m=h,ha.flushSync(()=>{s(m)}),f(a.current,g,b),u.current=requestAnimationFrame(()=>{s(null)})},[r]),S.useEffect(()=>()=>{u.current&&cancelAnimationFrame(u.current)},[]),i?V.createElement("div",{style:{zIndex:-100,position:"fixed",top:0,left:-1e5},ref:a},i):null});function X_(t){let{getItems:e,isDisabled:n,collection:r,selectionManager:i,onDragStart:s,onDragMove:a,onDragEnd:u,preview:c,getAllowedDropOperations:f}=t,[,h]=S.useState(!1),m=S.useRef(new Set),g=S.useRef(null),b=x=>{let k=new Set;if(i.isSelected(x))for(let E of i.selectedKeys){let D=r.getItem(E);if(D){let T=!1,$=D.parentKey;for(;$!=null;){if(i.selectedKeys.has($)){T=!0;break}let A=r.getItem($);$=A?A.parentKey:null}T||k.add(E)}}else k.add(x);return k};return{collection:r,selectionManager:i,get draggedKey(){return g.current},get draggingKeys(){return m.current},isDragging(x){return m.current.has(x)},getKeysForDrag:b,getItems(x){let k=b(x),E=[];for(let D of k){let T=r.getItem(D)?.value;T!=null&&E.push(T)}return e(b(x),E)},isDisabled:n,preview:c,getAllowedDropOperations:f,startDrag(x,k){let E=b(x);m.current=E,g.current=x,i.setFocused(!1),h(!0),typeof s=="function"&&s({...k,keys:E})},moveDrag(x){typeof a=="function"&&a({...x,keys:m.current})},endDrag(x){let{isInternal:k}=x;typeof u=="function"&&u({...x,keys:m.current,isInternal:k}),m.current=new Set,g.current=null,h(!1)}}}function J_(t){let{acceptedDragTypes:e="all",isDisabled:n,onInsert:r,onRootDrop:i,onItemDrop:s,onReorder:a,onMove:u,shouldAcceptItemDrop:c,collection:f,selectionManager:h,onDropEnter:m,getDropOperation:g,onDrop:b}=t,[x,k]=S.useState(null),E=S.useRef(null),D=$=>{if($.dropPosition==="before"){let A=f.getItem($.key);return A&&A.prevKey!=null?{type:"item",key:A.prevKey,dropPosition:"after"}:null}else if($.dropPosition==="after"){let A=f.getItem($.key);return A&&A.nextKey!=null?{type:"item",key:A.nextKey,dropPosition:"before"}:null}return null},T=S.useCallback($=>{let{target:A,types:B,allowedOperations:P,isInternal:M,draggingKeys:N}=$;if(n||!A)return"cancel";if(e==="all"||e.some(j=>B.has(j))){let j=r&&A.type==="item"&&!M&&(A.dropPosition==="before"||A.dropPosition==="after"),G=a&&A.type==="item"&&M&&(A.dropPosition==="before"||A.dropPosition==="after")&&Z_(f,A,N),W=A.type!=="item"||A.dropPosition!=="on"||!c||c(A,B),U=u&&A.type==="item"&&M&&W,ne=i&&A.type==="root"&&!M,F=s&&A.type==="item"&&A.dropPosition==="on"&&!(M&&A.key!=null&&N.has(A.key))&&W;if(b||j||G||U||ne||F)return g?g(A,B,P):P[0]}return"cancel"},[n,f,e,g,r,i,s,c,a,u,b]);return{collection:f,selectionManager:h,isDisabled:n,target:x,setTarget($){if(this.isDropTarget($))return;let A=E.current;A&&typeof t.onDropExit=="function"&&t.onDropExit({type:"dropexit",x:0,y:0,target:A}),$&&typeof m=="function"&&m({type:"dropenter",x:0,y:0,target:$}),E.current=$??null,k($??null)},isDropTarget($){let A=E.current;return!A||!$?!1:W0($,A)?!0:$?.type==="item"&&A?.type==="item"&&$.key!==A.key&&$.dropPosition!==A.dropPosition&&$.dropPosition!=="on"&&A.dropPosition!=="on"?W0(D($),A)||W0($,D(A)):!1},getDropOperation($){let{target:A,isInternal:B,draggingKeys:P}=$;if(B&&A.type==="item"&&P.size>0){if(P.has(A.key)&&A.dropPosition==="on")return"cancel";let M=A.key;for(;M!=null;){let j=f.getItem(M)?.parentKey;if(j!=null&&P.has(j))return"cancel";M=j??null}}return T($)}}}function W0(t,e){if(!t)return!e;switch(t.type){case"root":return e?.type==="root";case"item":return e?.type==="item"&&e?.key===t.key&&e?.dropPosition===t.dropPosition}}function Z_(t,e,n){let r=t.getItem(e.key);for(let i of n)if(t.getItem(i)?.parentKey!==r?.parentKey)return!1;return!0}class eV{constructor(e,n,r){this.collection=e,this.ref=n,this.layout=r?.layout||"stack",this.orientation=r?.orientation||"vertical",this.direction=r?.direction||"ltr"}getPrimaryStart(e){return this.orientation==="horizontal"?e.left:e.top}getPrimaryEnd(e){return this.orientation==="horizontal"?e.right:e.bottom}getSecondaryStart(e){return this.orientation==="horizontal"?e.top:e.left}getSecondaryEnd(e){return this.orientation==="horizontal"?e.bottom:e.right}getFlowStart(e){return this.layout==="stack"?this.getPrimaryStart(e):this.getSecondaryStart(e)}getFlowEnd(e){return this.layout==="stack"?this.getPrimaryEnd(e):this.getSecondaryEnd(e)}getFlowSize(e){return this.getFlowEnd(e)-this.getFlowStart(e)}getDropTargetFromPoint(e,n,r){if(this.collection[Symbol.iterator]().next().done||!this.ref.current)return{type:"root"};let i=this.ref.current.getBoundingClientRect(),s=this.orientation==="horizontal"?e:n,a=this.orientation==="horizontal"?n:e;s+=this.getPrimaryStart(i),a+=this.getSecondaryStart(i);let u=this.layout==="stack"?s:a,c=this.orientation==="horizontal"&&this.direction==="rtl",f=this.layout==="grid"&&this.orientation==="vertical"&&this.direction==="rtl",h=this.layout==="stack"?c:f,m=this.ref.current?.dataset.collection,g=this.ref.current.querySelectorAll(m?`[data-collection="${CSS.escape(m)}"]`:"[data-key]"),b=new Map;for(let $ of g)$ instanceof HTMLElement&&$.dataset.key!=null&&b.set($.dataset.key,$);let x=[...this.collection].filter($=>$.type==="item");if(x.length<1)return{type:"root"};let k=0,E=x.length;for(;k<E;){let $=Math.floor((k+E)/2),A=x[$],B=b.get(String(A.key));if(!B)break;let P=B.getBoundingClientRect(),M=N=>{N?k=$+1:E=$};if(s<this.getPrimaryStart(P))M(c);else if(s>this.getPrimaryEnd(P))M(!c);else if(a<this.getSecondaryStart(P))M(f);else if(a>this.getSecondaryEnd(P))M(!f);else{let N={type:"item",key:A.key,dropPosition:"on"};if(r(N))u<=this.getFlowStart(P)+5&&r({...N,dropPosition:"before"})?N.dropPosition=h?"after":"before":u>=this.getFlowEnd(P)-5&&r({...N,dropPosition:"after"})&&(N.dropPosition=h?"before":"after");else{let j=this.getFlowStart(P)+this.getFlowSize(P)/2;u<=j&&r({...N,dropPosition:"before"})?N.dropPosition=h?"after":"before":u>=j&&r({...N,dropPosition:"after"})&&(N.dropPosition=h?"before":"after")}return N}}let D=x[Math.min(k,x.length-1)];return i=b.get(String(D.key))?.getBoundingClientRect(),i&&(s<this.getPrimaryStart(i)||Math.abs(u-this.getFlowStart(i))<Math.abs(u-this.getFlowEnd(i)))?{type:"item",key:D.key,dropPosition:h?"after":"before"}:{type:"item",key:D.key,dropPosition:h?"before":"after"}}}function tV(t){return{dragAndDropHooks:S.useMemo(()=>{let{onDrop:n,onInsert:r,onItemDrop:i,onReorder:s,onMove:a,onRootDrop:u,getItems:c,renderDragPreview:f,renderDropIndicator:h,dropTargetDelegate:m}=t,g=!!c,b=!!(n||r||i||s||a||u),x={};return g&&(x.useDraggableCollectionState=function(E){return X_({...E,...t})},x.useDraggableCollection=Q_,x.useDraggableItem=W_,x.DragPreview=Y_,x.renderDragPreview=f,x.isVirtualDragging=KK),b&&(x.useDroppableCollectionState=function(E){return J_({...E,...t})},x.useDroppableItem=EM,x.useDroppableCollection=function(E,D,T){return K_({...E,...t},D,T)},x.useDropIndicator=V_,x.renderDropIndicator=h,x.dropTargetDelegate=m,x.ListDropTargetDelegate=eV),x},[t])}}function DM(t,e){const n=t&&t!=="/"?t.replace(/\/+$/,""):"";return!n||e===n||e.startsWith(`${n}/`)||e.startsWith(`${n}?`)?e:`${n}${e}`}const nV=new wO({defaultOptions:{queries:{staleTime:5e3,retry:1,refetchOnWindowFocus:!0}}});function rV({router:t}){return C.jsx($O,{client:nV,children:C.jsx($I,{navigate:e=>t.history.push(DM(t.basepath,e)),children:C.jsx(Zz,{router:t})})})}const oE=t=>typeof t=="boolean"?`${t}`:t===0?"0":t,aE=v3,ba=(t,e)=>n=>{var r;if(e?.variants==null)return aE(t,n?.class,n?.className);const{variants:i,defaultVariants:s}=e,a=Object.keys(i).map(f=>{const h=n?.[f],m=s?.[f];if(h===null)return null;const g=oE(h)||oE(m);return i[f][g]}),u=n&&Object.entries(n).reduce((f,h)=>{let[m,g]=h;return g===void 0||(f[m]=g),f},{}),c=e==null||(r=e.compoundVariants)===null||r===void 0?void 0:r.reduce((f,h)=>{let{class:m,className:g,...b}=h;return Object.entries(b).every(x=>{let[k,E]=x;return Array.isArray(E)?E.includes({...s,...u}[k]):{...s,...u}[k]===E})?[...f,m,g]:f},[]);return aE(t,a,c,n?.class,n?.className)},iV=(t,e)=>{const n=new Array(t.length+e.length);for(let r=0;r<t.length;r++)n[r]=t[r];for(let r=0;r<e.length;r++)n[t.length+r]=e[r];return n},sV=(t,e)=>({classGroupId:t,validator:e}),SM=(t=new Map,e=null,n)=>({nextPart:t,validators:e,classGroupId:n}),fp="-",lE=[],oV="arbitrary..",aV=t=>{const e=uV(t),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=t;return{getClassGroupId:a=>{if(a.startsWith("[")&&a.endsWith("]"))return lV(a);const u=a.split(fp),c=u[0]===""&&u.length>1?1:0;return wM(u,c,e)},getConflictingClassGroupIds:(a,u)=>{if(u){const c=r[a],f=n[a];return c?f?iV(f,c):c:f||lE}return n[a]||lE}}},wM=(t,e,n)=>{if(t.length-e===0)return n.classGroupId;const i=t[e],s=n.nextPart.get(i);if(s){const f=wM(t,e+1,s);if(f)return f}const a=n.validators;if(a===null)return;const u=e===0?t.join(fp):t.slice(e).join(fp),c=a.length;for(let f=0;f<c;f++){const h=a[f];if(h.validator(u))return h.classGroupId}},lV=t=>t.slice(1,-1).indexOf(":")===-1?void 0:(()=>{const e=t.slice(1,-1),n=e.indexOf(":"),r=e.slice(0,n);return r?oV+r:void 0})(),uV=t=>{const{theme:e,classGroups:n}=t;return cV(n,e)},cV=(t,e)=>{const n=SM();for(const r in t){const i=t[r];ix(i,n,r,e)}return n},ix=(t,e,n,r)=>{const i=t.length;for(let s=0;s<i;s++){const a=t[s];dV(a,e,n,r)}},dV=(t,e,n,r)=>{if(typeof t=="string"){fV(t,e,n);return}if(typeof t=="function"){hV(t,e,n,r);return}pV(t,e,n,r)},fV=(t,e,n)=>{const r=t===""?e:$M(e,t);r.classGroupId=n},hV=(t,e,n,r)=>{if(mV(t)){ix(t(r),e,n,r);return}e.validators===null&&(e.validators=[]),e.validators.push(sV(n,t))},pV=(t,e,n,r)=>{const i=Object.entries(t),s=i.length;for(let a=0;a<s;a++){const[u,c]=i[a];ix(c,$M(e,u),n,r)}},$M=(t,e)=>{let n=t;const r=e.split(fp),i=r.length;for(let s=0;s<i;s++){const a=r[s];let u=n.nextPart.get(a);u||(u=SM(),n.nextPart.set(a,u)),n=u}return n},mV=t=>"isThemeGetter"in t&&t.isThemeGetter===!0,gV=t=>{if(t<1)return{get:()=>{},set:()=>{}};let e=0,n=Object.create(null),r=Object.create(null);const i=(s,a)=>{n[s]=a,e++,e>t&&(e=0,r=n,n=Object.create(null))};return{get(s){let a=n[s];if(a!==void 0)return a;if((a=r[s])!==void 0)return i(s,a),a},set(s,a){s in n?n[s]=a:i(s,a)}}},x4="!",uE=":",bV=[],cE=(t,e,n,r,i)=>({modifiers:t,hasImportantModifier:e,baseClassName:n,maybePostfixModifierPosition:r,isExternal:i}),yV=t=>{const{prefix:e,experimentalParseClassName:n}=t;let r=i=>{const s=[];let a=0,u=0,c=0,f;const h=i.length;for(let k=0;k<h;k++){const E=i[k];if(a===0&&u===0){if(E===uE){s.push(i.slice(c,k)),c=k+1;continue}if(E==="/"){f=k;continue}}E==="["?a++:E==="]"?a--:E==="("?u++:E===")"&&u--}const m=s.length===0?i:i.slice(c);let g=m,b=!1;m.endsWith(x4)?(g=m.slice(0,-1),b=!0):m.startsWith(x4)&&(g=m.slice(1),b=!0);const x=f&&f>c?f-c:void 0;return cE(s,b,g,x)};if(e){const i=e+uE,s=r;r=a=>a.startsWith(i)?s(a.slice(i.length)):cE(bV,!1,a,void 0,!0)}if(n){const i=r;r=s=>n({className:s,parseClassName:i})}return r},xV=t=>{const e=new Map;return t.orderSensitiveModifiers.forEach((n,r)=>{e.set(n,1e6+r)}),n=>{const r=[];let i=[];for(let s=0;s<n.length;s++){const a=n[s],u=a[0]==="[",c=e.has(a);u||c?(i.length>0&&(i.sort(),r.push(...i),i=[]),r.push(a)):i.push(a)}return i.length>0&&(i.sort(),r.push(...i)),r}},vV=t=>({cache:gV(t.cacheSize),parseClassName:yV(t),sortModifiers:xV(t),postfixLookupClassGroupIds:kV(t),...aV(t)}),kV=t=>{const e=Object.create(null),n=t.postfixLookupClassGroups;if(n)for(let r=0;r<n.length;r++)e[n[r]]=!0;return e},CV=/\s+/,EV=(t,e)=>{const{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:i,sortModifiers:s,postfixLookupClassGroupIds:a}=e,u=[],c=t.trim().split(CV);let f="";for(let h=c.length-1;h>=0;h-=1){const m=c[h],{isExternal:g,modifiers:b,hasImportantModifier:x,baseClassName:k,maybePostfixModifierPosition:E}=n(m);if(g){f=m+(f.length>0?" "+f:f);continue}let D=!!E,T;if(D){const M=k.substring(0,E);T=r(M);const N=T&&a[T]?r(k):void 0;N&&N!==T&&(T=N,D=!1)}else T=r(k);if(!T){if(!D){f=m+(f.length>0?" "+f:f);continue}if(T=r(k),!T){f=m+(f.length>0?" "+f:f);continue}D=!1}const $=b.length===0?"":b.length===1?b[0]:s(b).join(":"),A=x?$+x4:$,B=A+T;if(u.indexOf(B)>-1)continue;u.push(B);const P=i(T,D);for(let M=0;M<P.length;++M){const N=P[M];u.push(A+N)}f=m+(f.length>0?" "+f:f)}return f},DV=(...t)=>{let e=0,n,r,i="";for(;e<t.length;)(n=t[e++])&&(r=TM(n))&&(i&&(i+=" "),i+=r);return i},TM=t=>{if(typeof t=="string")return t;let e,n="";for(let r=0;r<t.length;r++)t[r]&&(e=TM(t[r]))&&(n&&(n+=" "),n+=e);return n},SV=(t,...e)=>{let n,r,i,s;const a=c=>{const f=e.reduce((h,m)=>m(h),t());return n=vV(f),r=n.cache.get,i=n.cache.set,s=u,u(c)},u=c=>{const f=r(c);if(f)return f;const h=EV(c,n);return i(c,h),h};return s=a,(...c)=>s(DV(...c))},wV=[],It=t=>{const e=n=>n[t]||wV;return e.isThemeGetter=!0,e},AM=/^\[(?:(\w[\w-]*):)?(.+)\]$/i,BM=/^\((?:(\w[\w-]*):)?(.+)\)$/i,$V=/^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/,TV=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,AV=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,BV=/^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/,MV=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,RV=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,ys=t=>$V.test(t),Pe=t=>!!t&&!Number.isNaN(Number(t)),Kr=t=>!!t&&Number.isInteger(Number(t)),Q0=t=>t.endsWith("%")&&Pe(t.slice(0,-1)),yi=t=>TV.test(t),MM=()=>!0,NV=t=>AV.test(t)&&!BV.test(t),sx=()=>!1,PV=t=>MV.test(t),OV=t=>RV.test(t),LV=t=>!me(t)&&!ge(t),zV=t=>t.startsWith("@container")&&(t[10]==="/"&&t[11]!==void 0||t[11]==="s"&&t[16]!==void 0&&t.startsWith("-size/",10)||t[11]==="n"&&t[18]!==void 0&&t.startsWith("-normal/",10)),IV=t=>to(t,PM,sx),me=t=>AM.test(t),Ao=t=>to(t,OM,NV),dE=t=>to(t,qV,Pe),jV=t=>to(t,zM,MM),FV=t=>to(t,LM,sx),fE=t=>to(t,RM,sx),KV=t=>to(t,NM,OV),lh=t=>to(t,IM,PV),ge=t=>BM.test(t),Ju=t=>ya(t,OM),_V=t=>ya(t,LM),hE=t=>ya(t,RM),VV=t=>ya(t,PM),HV=t=>ya(t,NM),uh=t=>ya(t,IM,!0),UV=t=>ya(t,zM,!0),to=(t,e,n)=>{const r=AM.exec(t);return r?r[1]?e(r[1]):n(r[2]):!1},ya=(t,e,n=!1)=>{const r=BM.exec(t);return r?r[1]?e(r[1]):n:!1},RM=t=>t==="position"||t==="percentage",NM=t=>t==="image"||t==="url",PM=t=>t==="length"||t==="size"||t==="bg-size",OM=t=>t==="length",qV=t=>t==="number",LM=t=>t==="family-name",zM=t=>t==="number"||t==="weight",IM=t=>t==="shadow",GV=()=>{const t=It("color"),e=It("font"),n=It("text"),r=It("font-weight"),i=It("tracking"),s=It("leading"),a=It("breakpoint"),u=It("container"),c=It("spacing"),f=It("radius"),h=It("shadow"),m=It("inset-shadow"),g=It("text-shadow"),b=It("drop-shadow"),x=It("blur"),k=It("perspective"),E=It("aspect"),D=It("ease"),T=It("animate"),$=()=>["auto","avoid","all","avoid-page","page","left","right","column"],A=()=>["center","top","bottom","left","right","top-left","left-top","top-right","right-top","bottom-right","right-bottom","bottom-left","left-bottom"],B=()=>[...A(),ge,me],P=()=>["auto","hidden","clip","visible","scroll"],M=()=>["auto","contain","none"],N=()=>[ge,me,c],j=()=>[ys,"full","auto",...N()],G=()=>[Kr,"none","subgrid",ge,me],W=()=>["auto",{span:["full",Kr,ge,me]},Kr,ge,me],U=()=>[Kr,"auto",ge,me],ne=()=>["auto","min","max","fr",ge,me],F=()=>["start","end","center","between","around","evenly","stretch","baseline","center-safe","end-safe"],te=()=>["start","end","center","stretch","center-safe","end-safe"],O=()=>["auto",...N()],K=()=>[ys,"auto","full","dvw","dvh","lvw","lvh","svw","svh","min","max","fit",...N()],Q=()=>[ys,"screen","full","dvw","lvw","svw","min","max","fit",...N()],Z=()=>[ys,"screen","full","lh","dvh","lvh","svh","min","max","fit",...N()],L=()=>[t,ge,me],z=()=>[...A(),hE,fE,{position:[ge,me]}],H=()=>["no-repeat",{repeat:["","x","y","space","round"]}],re=()=>["auto","cover","contain",VV,IV,{size:[ge,me]}],le=()=>[Q0,Ju,Ao],ue=()=>["","none","full",f,ge,me],he=()=>["",Pe,Ju,Ao],Ce=()=>["solid","dashed","dotted","double"],Ue=()=>["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"],Se=()=>[Pe,Q0,hE,fE],wn=()=>["","none",x,ge,me],an=()=>["none",Pe,ge,me],bn=()=>["none",Pe,ge,me],xr=()=>[Pe,ge,me],_t=()=>[ys,"full",...N()];return{cacheSize:500,theme:{animate:["spin","ping","pulse","bounce"],aspect:["video"],blur:[yi],breakpoint:[yi],color:[MM],container:[yi],"drop-shadow":[yi],ease:["in","out","in-out"],font:[LV],"font-weight":["thin","extralight","light","normal","medium","semibold","bold","extrabold","black"],"inset-shadow":[yi],leading:["none","tight","snug","normal","relaxed","loose"],perspective:["dramatic","near","normal","midrange","distant","none"],radius:[yi],shadow:[yi],spacing:["px",Pe],text:[yi],"text-shadow":[yi],tracking:["tighter","tight","normal","wide","wider","widest"]},classGroups:{aspect:[{aspect:["auto","square",ys,me,ge,E]}],container:["container"],"container-type":[{"@container":["","normal","size",ge,me]}],"container-named":[zV],columns:[{columns:[Pe,me,ge,u]}],"break-after":[{"break-after":$()}],"break-before":[{"break-before":$()}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],sr:["sr-only","not-sr-only"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:B()}],overflow:[{overflow:P()}],"overflow-x":[{"overflow-x":P()}],"overflow-y":[{"overflow-y":P()}],overscroll:[{overscroll:M()}],"overscroll-x":[{"overscroll-x":M()}],"overscroll-y":[{"overscroll-y":M()}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:j()}],"inset-x":[{"inset-x":j()}],"inset-y":[{"inset-y":j()}],start:[{"inset-s":j(),start:j()}],end:[{"inset-e":j(),end:j()}],"inset-bs":[{"inset-bs":j()}],"inset-be":[{"inset-be":j()}],top:[{top:j()}],right:[{right:j()}],bottom:[{bottom:j()}],left:[{left:j()}],visibility:["visible","invisible","collapse"],z:[{z:[Kr,"auto",ge,me]}],basis:[{basis:[ys,"full","auto",u,...N()]}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["nowrap","wrap","wrap-reverse"]}],flex:[{flex:[Pe,ys,"auto","initial","none",me]}],grow:[{grow:["",Pe,ge,me]}],shrink:[{shrink:["",Pe,ge,me]}],order:[{order:[Kr,"first","last","none",ge,me]}],"grid-cols":[{"grid-cols":G()}],"col-start-end":[{col:W()}],"col-start":[{"col-start":U()}],"col-end":[{"col-end":U()}],"grid-rows":[{"grid-rows":G()}],"row-start-end":[{row:W()}],"row-start":[{"row-start":U()}],"row-end":[{"row-end":U()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":ne()}],"auto-rows":[{"auto-rows":ne()}],gap:[{gap:N()}],"gap-x":[{"gap-x":N()}],"gap-y":[{"gap-y":N()}],"justify-content":[{justify:[...F(),"normal"]}],"justify-items":[{"justify-items":[...te(),"normal"]}],"justify-self":[{"justify-self":["auto",...te()]}],"align-content":[{content:["normal",...F()]}],"align-items":[{items:[...te(),{baseline:["","last"]}]}],"align-self":[{self:["auto",...te(),{baseline:["","last"]}]}],"place-content":[{"place-content":F()}],"place-items":[{"place-items":[...te(),"baseline"]}],"place-self":[{"place-self":["auto",...te()]}],p:[{p:N()}],px:[{px:N()}],py:[{py:N()}],ps:[{ps:N()}],pe:[{pe:N()}],pbs:[{pbs:N()}],pbe:[{pbe:N()}],pt:[{pt:N()}],pr:[{pr:N()}],pb:[{pb:N()}],pl:[{pl:N()}],m:[{m:O()}],mx:[{mx:O()}],my:[{my:O()}],ms:[{ms:O()}],me:[{me:O()}],mbs:[{mbs:O()}],mbe:[{mbe:O()}],mt:[{mt:O()}],mr:[{mr:O()}],mb:[{mb:O()}],ml:[{ml:O()}],"space-x":[{"space-x":N()}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":N()}],"space-y-reverse":["space-y-reverse"],size:[{size:K()}],"inline-size":[{inline:["auto",...Q()]}],"min-inline-size":[{"min-inline":["auto",...Q()]}],"max-inline-size":[{"max-inline":["none",...Q()]}],"block-size":[{block:["auto",...Z()]}],"min-block-size":[{"min-block":["auto",...Z()]}],"max-block-size":[{"max-block":["none",...Z()]}],w:[{w:[u,"screen",...K()]}],"min-w":[{"min-w":[u,"screen","none",...K()]}],"max-w":[{"max-w":[u,"screen","none","prose",{screen:[a]},...K()]}],h:[{h:["screen","lh",...K()]}],"min-h":[{"min-h":["screen","lh","none",...K()]}],"max-h":[{"max-h":["screen","lh",...K()]}],"font-size":[{text:["base",n,Ju,Ao]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:[r,UV,jV]}],"font-stretch":[{"font-stretch":["ultra-condensed","extra-condensed","condensed","semi-condensed","normal","semi-expanded","expanded","extra-expanded","ultra-expanded",Q0,me]}],"font-family":[{font:[_V,FV,e]}],"font-features":[{"font-features":[me]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractions"],tracking:[{tracking:[i,ge,me]}],"line-clamp":[{"line-clamp":[Pe,"none",ge,dE]}],leading:[{leading:[s,...N()]}],"list-image":[{"list-image":["none",ge,me]}],"list-style-position":[{list:["inside","outside"]}],"list-style-type":[{list:["disc","decimal","none",ge,me]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"placeholder-color":[{placeholder:L()}],"text-color":[{text:L()}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:[...Ce(),"wavy"]}],"text-decoration-thickness":[{decoration:[Pe,"from-font","auto",ge,Ao]}],"text-decoration-color":[{decoration:L()}],"underline-offset":[{"underline-offset":[Pe,"auto",ge,me]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:N()}],"tab-size":[{tab:[Kr,ge,me]}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",ge,me]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],wrap:[{wrap:["break-word","anywhere","normal"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",ge,me]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:z()}],"bg-repeat":[{bg:H()}],"bg-size":[{bg:re()}],"bg-image":[{bg:["none",{linear:[{to:["t","tr","r","br","b","bl","l","tl"]},Kr,ge,me],radial:["",ge,me],conic:[Kr,ge,me]},HV,KV]}],"bg-color":[{bg:L()}],"gradient-from-pos":[{from:le()}],"gradient-via-pos":[{via:le()}],"gradient-to-pos":[{to:le()}],"gradient-from":[{from:L()}],"gradient-via":[{via:L()}],"gradient-to":[{to:L()}],rounded:[{rounded:ue()}],"rounded-s":[{"rounded-s":ue()}],"rounded-e":[{"rounded-e":ue()}],"rounded-t":[{"rounded-t":ue()}],"rounded-r":[{"rounded-r":ue()}],"rounded-b":[{"rounded-b":ue()}],"rounded-l":[{"rounded-l":ue()}],"rounded-ss":[{"rounded-ss":ue()}],"rounded-se":[{"rounded-se":ue()}],"rounded-ee":[{"rounded-ee":ue()}],"rounded-es":[{"rounded-es":ue()}],"rounded-tl":[{"rounded-tl":ue()}],"rounded-tr":[{"rounded-tr":ue()}],"rounded-br":[{"rounded-br":ue()}],"rounded-bl":[{"rounded-bl":ue()}],"border-w":[{border:he()}],"border-w-x":[{"border-x":he()}],"border-w-y":[{"border-y":he()}],"border-w-s":[{"border-s":he()}],"border-w-e":[{"border-e":he()}],"border-w-bs":[{"border-bs":he()}],"border-w-be":[{"border-be":he()}],"border-w-t":[{"border-t":he()}],"border-w-r":[{"border-r":he()}],"border-w-b":[{"border-b":he()}],"border-w-l":[{"border-l":he()}],"divide-x":[{"divide-x":he()}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":he()}],"divide-y-reverse":["divide-y-reverse"],"border-style":[{border:[...Ce(),"hidden","none"]}],"divide-style":[{divide:[...Ce(),"hidden","none"]}],"border-color":[{border:L()}],"border-color-x":[{"border-x":L()}],"border-color-y":[{"border-y":L()}],"border-color-s":[{"border-s":L()}],"border-color-e":[{"border-e":L()}],"border-color-bs":[{"border-bs":L()}],"border-color-be":[{"border-be":L()}],"border-color-t":[{"border-t":L()}],"border-color-r":[{"border-r":L()}],"border-color-b":[{"border-b":L()}],"border-color-l":[{"border-l":L()}],"divide-color":[{divide:L()}],"outline-style":[{outline:[...Ce(),"none","hidden"]}],"outline-offset":[{"outline-offset":[Pe,ge,me]}],"outline-w":[{outline:["",Pe,Ju,Ao]}],"outline-color":[{outline:L()}],shadow:[{shadow:["","none",h,uh,lh]}],"shadow-color":[{shadow:L()}],"inset-shadow":[{"inset-shadow":["none",m,uh,lh]}],"inset-shadow-color":[{"inset-shadow":L()}],"ring-w":[{ring:he()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:L()}],"ring-offset-w":[{"ring-offset":[Pe,Ao]}],"ring-offset-color":[{"ring-offset":L()}],"inset-ring-w":[{"inset-ring":he()}],"inset-ring-color":[{"inset-ring":L()}],"text-shadow":[{"text-shadow":["none",g,uh,lh]}],"text-shadow-color":[{"text-shadow":L()}],opacity:[{opacity:[Pe,ge,me]}],"mix-blend":[{"mix-blend":[...Ue(),"plus-darker","plus-lighter"]}],"bg-blend":[{"bg-blend":Ue()}],"mask-clip":[{"mask-clip":["border","padding","content","fill","stroke","view"]},"mask-no-clip"],"mask-composite":[{mask:["add","subtract","intersect","exclude"]}],"mask-image-linear-pos":[{"mask-linear":[Pe]}],"mask-image-linear-from-pos":[{"mask-linear-from":Se()}],"mask-image-linear-to-pos":[{"mask-linear-to":Se()}],"mask-image-linear-from-color":[{"mask-linear-from":L()}],"mask-image-linear-to-color":[{"mask-linear-to":L()}],"mask-image-t-from-pos":[{"mask-t-from":Se()}],"mask-image-t-to-pos":[{"mask-t-to":Se()}],"mask-image-t-from-color":[{"mask-t-from":L()}],"mask-image-t-to-color":[{"mask-t-to":L()}],"mask-image-r-from-pos":[{"mask-r-from":Se()}],"mask-image-r-to-pos":[{"mask-r-to":Se()}],"mask-image-r-from-color":[{"mask-r-from":L()}],"mask-image-r-to-color":[{"mask-r-to":L()}],"mask-image-b-from-pos":[{"mask-b-from":Se()}],"mask-image-b-to-pos":[{"mask-b-to":Se()}],"mask-image-b-from-color":[{"mask-b-from":L()}],"mask-image-b-to-color":[{"mask-b-to":L()}],"mask-image-l-from-pos":[{"mask-l-from":Se()}],"mask-image-l-to-pos":[{"mask-l-to":Se()}],"mask-image-l-from-color":[{"mask-l-from":L()}],"mask-image-l-to-color":[{"mask-l-to":L()}],"mask-image-x-from-pos":[{"mask-x-from":Se()}],"mask-image-x-to-pos":[{"mask-x-to":Se()}],"mask-image-x-from-color":[{"mask-x-from":L()}],"mask-image-x-to-color":[{"mask-x-to":L()}],"mask-image-y-from-pos":[{"mask-y-from":Se()}],"mask-image-y-to-pos":[{"mask-y-to":Se()}],"mask-image-y-from-color":[{"mask-y-from":L()}],"mask-image-y-to-color":[{"mask-y-to":L()}],"mask-image-radial":[{"mask-radial":[ge,me]}],"mask-image-radial-from-pos":[{"mask-radial-from":Se()}],"mask-image-radial-to-pos":[{"mask-radial-to":Se()}],"mask-image-radial-from-color":[{"mask-radial-from":L()}],"mask-image-radial-to-color":[{"mask-radial-to":L()}],"mask-image-radial-shape":[{"mask-radial":["circle","ellipse"]}],"mask-image-radial-size":[{"mask-radial":[{closest:["side","corner"],farthest:["side","corner"]}]}],"mask-image-radial-pos":[{"mask-radial-at":A()}],"mask-image-conic-pos":[{"mask-conic":[Pe]}],"mask-image-conic-from-pos":[{"mask-conic-from":Se()}],"mask-image-conic-to-pos":[{"mask-conic-to":Se()}],"mask-image-conic-from-color":[{"mask-conic-from":L()}],"mask-image-conic-to-color":[{"mask-conic-to":L()}],"mask-mode":[{mask:["alpha","luminance","match"]}],"mask-origin":[{"mask-origin":["border","padding","content","fill","stroke","view"]}],"mask-position":[{mask:z()}],"mask-repeat":[{mask:H()}],"mask-size":[{mask:re()}],"mask-type":[{"mask-type":["alpha","luminance"]}],"mask-image":[{mask:["none",ge,me]}],filter:[{filter:["","none",ge,me]}],blur:[{blur:wn()}],brightness:[{brightness:[Pe,ge,me]}],contrast:[{contrast:[Pe,ge,me]}],"drop-shadow":[{"drop-shadow":["","none",b,uh,lh]}],"drop-shadow-color":[{"drop-shadow":L()}],grayscale:[{grayscale:["",Pe,ge,me]}],"hue-rotate":[{"hue-rotate":[Pe,ge,me]}],invert:[{invert:["",Pe,ge,me]}],saturate:[{saturate:[Pe,ge,me]}],sepia:[{sepia:["",Pe,ge,me]}],"backdrop-filter":[{"backdrop-filter":["","none",ge,me]}],"backdrop-blur":[{"backdrop-blur":wn()}],"backdrop-brightness":[{"backdrop-brightness":[Pe,ge,me]}],"backdrop-contrast":[{"backdrop-contrast":[Pe,ge,me]}],"backdrop-grayscale":[{"backdrop-grayscale":["",Pe,ge,me]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[Pe,ge,me]}],"backdrop-invert":[{"backdrop-invert":["",Pe,ge,me]}],"backdrop-opacity":[{"backdrop-opacity":[Pe,ge,me]}],"backdrop-saturate":[{"backdrop-saturate":[Pe,ge,me]}],"backdrop-sepia":[{"backdrop-sepia":["",Pe,ge,me]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":N()}],"border-spacing-x":[{"border-spacing-x":N()}],"border-spacing-y":[{"border-spacing-y":N()}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["","all","colors","opacity","shadow","transform","none",ge,me]}],"transition-behavior":[{transition:["normal","discrete"]}],duration:[{duration:[Pe,"initial",ge,me]}],ease:[{ease:["linear","initial",D,ge,me]}],delay:[{delay:[Pe,ge,me]}],animate:[{animate:["none",T,ge,me]}],backface:[{backface:["hidden","visible"]}],perspective:[{perspective:[k,ge,me]}],"perspective-origin":[{"perspective-origin":B()}],rotate:[{rotate:an()}],"rotate-x":[{"rotate-x":an()}],"rotate-y":[{"rotate-y":an()}],"rotate-z":[{"rotate-z":an()}],scale:[{scale:bn()}],"scale-x":[{"scale-x":bn()}],"scale-y":[{"scale-y":bn()}],"scale-z":[{"scale-z":bn()}],"scale-3d":["scale-3d"],skew:[{skew:xr()}],"skew-x":[{"skew-x":xr()}],"skew-y":[{"skew-y":xr()}],transform:[{transform:[ge,me,"","none","gpu","cpu"]}],"transform-origin":[{origin:B()}],"transform-style":[{transform:["3d","flat"]}],translate:[{translate:_t()}],"translate-x":[{"translate-x":_t()}],"translate-y":[{"translate-y":_t()}],"translate-z":[{"translate-z":_t()}],"translate-none":["translate-none"],zoom:[{zoom:[Kr,ge,me]}],accent:[{accent:L()}],appearance:[{appearance:["none","auto"]}],"caret-color":[{caret:L()}],"color-scheme":[{scheme:["normal","dark","light","light-dark","only-dark","only-light"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",ge,me]}],"field-sizing":[{"field-sizing":["fixed","content"]}],"pointer-events":[{"pointer-events":["auto","none"]}],resize:[{resize:["none","","y","x"]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scrollbar-thumb-color":[{"scrollbar-thumb":L()}],"scrollbar-track-color":[{"scrollbar-track":L()}],"scrollbar-gutter":[{"scrollbar-gutter":["auto","stable","both"]}],"scrollbar-w":[{scrollbar:["auto","thin","none"]}],"scroll-m":[{"scroll-m":N()}],"scroll-mx":[{"scroll-mx":N()}],"scroll-my":[{"scroll-my":N()}],"scroll-ms":[{"scroll-ms":N()}],"scroll-me":[{"scroll-me":N()}],"scroll-mbs":[{"scroll-mbs":N()}],"scroll-mbe":[{"scroll-mbe":N()}],"scroll-mt":[{"scroll-mt":N()}],"scroll-mr":[{"scroll-mr":N()}],"scroll-mb":[{"scroll-mb":N()}],"scroll-ml":[{"scroll-ml":N()}],"scroll-p":[{"scroll-p":N()}],"scroll-px":[{"scroll-px":N()}],"scroll-py":[{"scroll-py":N()}],"scroll-ps":[{"scroll-ps":N()}],"scroll-pe":[{"scroll-pe":N()}],"scroll-pbs":[{"scroll-pbs":N()}],"scroll-pbe":[{"scroll-pbe":N()}],"scroll-pt":[{"scroll-pt":N()}],"scroll-pr":[{"scroll-pr":N()}],"scroll-pb":[{"scroll-pb":N()}],"scroll-pl":[{"scroll-pl":N()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",ge,me]}],fill:[{fill:["none",...L()]}],"stroke-w":[{stroke:[Pe,Ju,Ao,dE]}],stroke:[{stroke:["none",...L()]}],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{"container-named":["container-type"],overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","inset-bs","inset-be","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pbs","pbe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mbs","mbe","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-x","border-w-y","border-w-s","border-w-e","border-w-bs","border-w-be","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-x","border-color-y","border-color-s","border-color-e","border-color-bs","border-color-be","border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],translate:["translate-x","translate-y","translate-none"],"translate-none":["translate","translate-x","translate-y","translate-z"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mbs","scroll-mbe","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pbs","scroll-pbe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]},postfixLookupClassGroups:["container-type"],orderSensitiveModifiers:["*","**","after","backdrop","before","details-content","file","first-letter","first-line","marker","placeholder","selection"]}},WV=SV(GV);function fe(...t){return WV(v3(t))}const jM=ba("group/button inline-flex shrink-0 items-center justify-center rounded-4xl border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/30 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/80",outline:"border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:bg-transparent dark:hover:bg-input/30",secondary:"bg-secondary text-secondary-foreground hover:bg-[color-mix(in_oklch,var(--secondary),var(--foreground)_5%)] aria-expanded:bg-secondary aria-expanded:text-secondary-foreground",ghost:"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50",destructive:"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 gap-1.5 px-3 has-data-[icon=inline-end]:pr-2.5 has-data-[icon=inline-start]:pl-2.5",xs:"h-6 gap-1 px-2.5 text-xs has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 [&_svg:not([class*='size-'])]:size-3",sm:"h-8 gap-1 px-3 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",lg:"h-10 gap-1.5 px-4 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3",icon:"size-9","icon-xs":"size-6 [&_svg:not([class*='size-'])]:size-3","icon-sm":"size-8","icon-lg":"size-10"}},defaultVariants:{variant:"default",size:"default"}});function Re({className:t,variant:e="default",size:n="default",...r}){return C.jsx(g6,{"data-slot":"button","data-variant":e,"data-size":n,className:fe(jM({variant:e,size:n,className:t})),...r})}function QV({className:t,variant:e="default",size:n="default",...r}){return C.jsx(O3,{"data-slot":"button","data-variant":e,"data-size":n,className:fe(jM({variant:e,size:n,className:t})),...r})}function YV({error:t}){const e=Ys({strict:!1}),n=ji(),r=typeof e.ref=="string"?e.ref:null,i=t instanceof kl?t.message:"Couldn't load this board. Check your connection and try again.";return C.jsx("div",{className:"flex flex-1 items-center justify-center px-6",children:C.jsxs("div",{className:"w-full max-w-sm text-center",children:[C.jsx("h1",{className:"text-lg font-medium",children:r?"Nothing to show on this branch":"Couldn't load this board"}),C.jsx("p",{className:"mt-2 text-sm text-muted-foreground",children:i}),r?C.jsx(Re,{variant:"secondary",className:"mt-6",onPress:()=>{const{ref:s,...a}=e;n({to:"/",search:a})},children:"Go to the default branch"}):C.jsx(Re,{variant:"secondary",className:"mt-6",onPress:()=>location.reload(),children:"Try again"})]})})}const FM=(...t)=>t.filter((e,n,r)=>!!e&&e.trim()!==""&&r.indexOf(e)===n).join(" ").trim();const XV=t=>t.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();const JV=t=>t.replace(/^([A-Z])|[\s-_]+(\w)/g,(e,n,r)=>r?r.toUpperCase():n.toLowerCase());const pE=t=>{const e=JV(t);return e.charAt(0).toUpperCase()+e.slice(1)};var Y0={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const ZV=t=>{for(const e in t)if(e.startsWith("aria-")||e==="role"||e==="title")return!0;return!1},eH=S.createContext({}),tH=()=>S.useContext(eH),nH=S.forwardRef(({color:t,size:e,strokeWidth:n,absoluteStrokeWidth:r,className:i="",children:s,iconNode:a,...u},c)=>{const{size:f=24,strokeWidth:h=2,absoluteStrokeWidth:m=!1,color:g="currentColor",className:b=""}=tH()??{},x=r??m?Number(n??h)*24/Number(e??f):n??h;return S.createElement("svg",{ref:c,...Y0,width:e??f??Y0.width,height:e??f??Y0.height,stroke:t??g,strokeWidth:x,className:FM("lucide",b,i),...!s&&!ZV(u)&&{"aria-hidden":"true"},...u},[...a.map(([k,E])=>S.createElement(k,E)),...Array.isArray(s)?s:[s]])});const rt=(t,e)=>{const n=S.forwardRef(({className:r,...i},s)=>S.createElement(nH,{ref:s,iconNode:e,className:FM(`lucide-${XV(pE(t))}`,`lucide-${t}`,r),...i}));return n.displayName=pE(t),n};const rH=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],iH=rt("arrow-down",rH);const sH=[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]],oH=rt("arrow-up-right",sH);const aH=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],lH=rt("arrow-up",aH);const uH=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M4.929 4.929 19.07 19.071",key:"196cmz"}]],cH=rt("ban",uH);const dH=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],xa=rt("check",dH);const fH=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],KM=rt("chevron-down",fH);const hH=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],pH=rt("chevron-right",hH);const mH=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]],gH=rt("columns-3",mH);const bH=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],yH=rt("ellipsis",bH);const xH=[["path",{d:"M15 6a9 9 0 0 0-9 9V3",key:"1cii5b"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}]],sa=rt("git-branch",xH);const vH=[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]],xd=rt("git-pull-request",vH);const kH=[["circle",{cx:"9",cy:"12",r:"1",key:"1vctgf"}],["circle",{cx:"9",cy:"5",r:"1",key:"hp0tcf"}],["circle",{cx:"9",cy:"19",r:"1",key:"fkjjf6"}],["circle",{cx:"15",cy:"12",r:"1",key:"1tmaij"}],["circle",{cx:"15",cy:"5",r:"1",key:"19l28e"}],["circle",{cx:"15",cy:"19",r:"1",key:"f4zoj3"}]],CH=rt("grip-vertical",kH);const EH=[["line",{x1:"4",x2:"20",y1:"9",y2:"9",key:"4lhtct"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15",key:"vyu0kd"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21",key:"1ggp8o"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21",key:"weycgp"}]],DH=rt("hash",EH);const SH=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]],wH=rt("history",SH);const $H=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"r6nss1"}]],TH=rt("house",$H);const AH=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]],BH=rt("inbox",AH);const MH=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71",key:"1cjeqo"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71",key:"19qd67"}]],_M=rt("link",MH);const RH=[["path",{d:"M2 5h20",key:"1fs1ex"}],["path",{d:"M6 12h12",key:"8npq4p"}],["path",{d:"M9 19h6",key:"456am0"}]],NH=rt("list-filter",RH);const PH=[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]],OH=rt("list",PH);const LH=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}],["path",{d:"M12 8v6",key:"1ib9pf"}],["path",{d:"M9 11h6",key:"1fldmi"}]],zH=rt("message-square-plus",LH);const IH=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}]],jH=rt("message-square",IH);const FH=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],ql=rt("plus",FH);const KH=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],VM=rt("search",KH);const _H=[["path",{d:"M10 5H3",key:"1qgfaw"}],["path",{d:"M12 19H3",key:"yhmn1j"}],["path",{d:"M14 3v4",key:"1sua03"}],["path",{d:"M16 17v4",key:"1q0r14"}],["path",{d:"M21 12h-9",key:"1o4lsq"}],["path",{d:"M21 19h-5",key:"1rlt1p"}],["path",{d:"M21 5h-7",key:"1oszz2"}],["path",{d:"M8 10v4",key:"tgpxqk"}],["path",{d:"M8 12H3",key:"a7s4jb"}]],VH=rt("sliders-horizontal",_H);const HH=[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]],hp=rt("tag",HH);const UH=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],Yc=rt("target",UH);const qH=[["circle",{cx:"12",cy:"8",r:"5",key:"1hypcn"}],["path",{d:"M20 21a8 8 0 0 0-16 0",key:"rfgkzh"}]],$m=rt("user-round",qH);const GH=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],Vi=rt("x",GH);function WH({className:t,...e}){return C.jsx("nav",{"aria-label":"breadcrumb","data-slot":"breadcrumb",className:fe("min-w-0",t),...e})}function QH({className:t,...e}){return C.jsx(Pj,{"data-slot":"breadcrumb-list",className:fe("flex min-w-0 flex-nowrap items-center text-sm text-muted-foreground",t),...e})}function mE({className:t,children:e,separatorClassName:n,...r}){return C.jsx(Oj,{"data-slot":"breadcrumb-item",className:fe("inline-flex min-w-0 items-center",t),...r,children:_s(e,(i,{isCurrent:s})=>C.jsxs(C.Fragment,{children:[i,!s&&C.jsx("span",{"data-slot":"breadcrumb-separator",role:"presentation","aria-hidden":"true",className:fe("mx-2 shrink-0 [&>svg]:size-3.5",n),children:C.jsx(pH,{})})]}))})}function YH({className:t,...e}){return C.jsx("span",{"data-slot":"breadcrumb-page",role:"link","aria-disabled":"true","aria-current":"page",className:fe("truncate font-normal text-foreground",t),...e})}function pp({className:t,variant:e="outline",size:n="default",...r}){return C.jsx(Re,{slot:"close","data-slot":"dialog-close",variant:e,size:n,className:fe(t),...r})}function XH({className:t,children:e,...n}){return C.jsx(jB,{"data-slot":"dialog-overlay",className:fe("fixed inset-0 isolate z-50 bg-black/30 duration-100 data-entering:animate-in data-entering:fade-in-0 data-exiting:animate-out data-exiting:fade-out-0 supports-backdrop-filter:backdrop-blur-sm",t),...n,children:e})}function ox({className:t,children:e,showCloseButton:n=!0,isDismissable:r=!0,...i}){return C.jsx(XH,{isDismissable:r,...i,children:C.jsx(v_,{"data-slot":"dialog-content",className:fe("fixed top-1/2 left-1/2 z-50 grid max-h-[calc(100dvh-2rem)] w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-6 overflow-y-auto overscroll-contain rounded-4xl bg-popover p-6 text-sm text-popover-foreground shadow-xl ring-1 ring-foreground/5 duration-100 outline-none data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:fade-out-0 data-exiting:zoom-out-95 sm:max-w-md dark:ring-foreground/10",t),children:C.jsxs(wK,{"data-slot":"dialog",className:"[display:inherit] [gap:inherit] outline-none",children:[e,n&&C.jsxs(pp,{variant:"ghost",className:"absolute top-4 right-4 bg-secondary",size:"icon-sm",children:[C.jsx(Vi,{}),C.jsx("span",{className:"sr-only",children:"Close"})]})]})})})}function ax({className:t,...e}){return C.jsx(_j,{slot:"title","data-slot":"dialog-title",className:fe("font-heading text-base leading-none font-medium",t),...e})}function oa({className:t,type:e,...n}){return C.jsx(C6,{type:e,"data-slot":"input",className:_s(t,r=>fe("h-9 w-full min-w-0 rounded-3xl border border-transparent bg-input/50 px-3 py-1 text-base transition-[color,box-shadow,background-color] outline-none file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/30 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",r)),...n})}function HM({className:t,...e}){return C.jsx(B_,{"data-slot":"textarea",className:_s(t,n=>fe("flex field-sizing-content min-h-16 w-full resize-none rounded-2xl border border-transparent bg-input/50 px-3 py-3 text-base transition-[color,box-shadow,background-color] outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/30 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",n)),...e})}function UM({className:t,...e}){return C.jsx(aF,{"data-slot":"input-group",className:fe("group/input-group relative flex h-9 w-full min-w-0 items-center rounded-4xl border border-transparent bg-input/50 transition-[color,box-shadow,background-color] outline-none in-data-[slot=combobox-content]:focus-within:border-inherit in-data-[slot=combobox-content]:focus-within:ring-0 has-data-[align=block-end]:rounded-3xl has-data-[align=block-start]:rounded-3xl has-[[data-slot=input-group-control]:focus-visible]:border-ring has-[[data-slot=input-group-control]:focus-visible]:ring-3 has-[[data-slot=input-group-control]:focus-visible]:ring-ring/30 has-[[data-slot][aria-invalid=true]]:border-destructive has-[[data-slot][aria-invalid=true]]:ring-3 has-[[data-slot][aria-invalid=true]]:ring-destructive/20 has-[textarea]:rounded-2xl has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>textarea]:h-auto dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 has-[>[data-align=block-end]]:[&>input]:pt-3 has-[>[data-align=block-start]]:[&>input]:pb-3 has-[>[data-align=inline-end]]:[&>input]:pr-1.5 has-[>[data-align=inline-start]]:[&>input]:pl-1.5",t),...e})}const JH=ba("flex h-auto cursor-text items-center justify-center gap-2 py-2 text-sm font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 **:data-[slot=kbd]:rounded-3xl **:data-[slot=kbd]:bg-muted-foreground/10 **:data-[slot=kbd]:px-1.5 [&>svg:not([class*='size-'])]:size-4",{variants:{align:{"inline-start":"order-first pl-3 has-[>button]:-ml-1 has-[>kbd]:-ml-1","inline-end":"order-last pr-3 has-[>button]:-mr-1 has-[>kbd]:-mr-1","block-start":"order-first w-full justify-start px-3 pt-3 group-has-[>input]/input-group:pt-3.5 [.border-b]:pb-3.5","block-end":"order-last w-full justify-start px-3 pb-3 group-has-[>input]/input-group:pb-3.5 [.border-t]:pt-3.5"}},defaultVariants:{align:"inline-start"}});function v4({className:t,align:e="inline-start",...n}){return C.jsx("div",{role:"group","data-slot":"input-group-addon","data-align":e,className:fe(JH({align:e}),t),onClick:r=>{r.target.closest("button")||r.currentTarget.parentElement?.querySelector("input")?.focus()},...n})}function ZH({className:t,...e}){return C.jsx(oa,{"data-slot":"input-group-control",className:fe("flex-1 rounded-none border-0 bg-transparent shadow-none ring-0 focus-visible:ring-0 aria-invalid:ring-0 dark:bg-transparent",t),...e})}function Gl({className:t,dir:e,style:n,...r}){const{contains:i}=$K({sensitivity:"base"});return C.jsx("div",{"data-slot":"command",dir:e,className:fe("flex size-full flex-col overflow-hidden rounded-4xl bg-popover p-1 text-popover-foreground",t),style:n,children:C.jsx(rj,{...r,filter:r.filter||i,children:r.children})})}function vd({...t}){return C.jsx(Q3,{"data-slot":"command-popover-trigger",...t})}function kd({className:t,placement:e="bottom start",offset:n=4,crossOffset:r=0,...i}){return C.jsx(Sm,{"data-slot":"command-popover",placement:e,offset:n,crossOffset:r,className:fe("relative isolate z-50 w-(--trigger-width) min-w-64 origin-(--trigger-anchor-point) overflow-hidden rounded-3xl bg-popover text-popover-foreground shadow-lg ring-1 ring-foreground/5 outline-hidden duration-100 data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 dark:ring-foreground/10","*:data-[slot=command]:rounded-none *:data-[slot=command]:bg-transparent *:data-[slot=command]:p-0",t),...i})}function Wl({className:t,flush:e=!1,...n}){return C.jsx($_,{autoFocus:!0,"aria-label":n.placeholder||"Search","data-slot":"command-input-wrapper",className:e?"border-b border-border/60":"p-1 pb-0",children:C.jsxs(UM,{className:e?"h-10 rounded-none bg-transparent":"h-9 bg-input/50",children:[C.jsx(C6,{...n,"data-slot":"command-input",className:fe("w-full text-sm outline-hidden disabled:cursor-not-allowed disabled:opacity-50 [&::-webkit-search-cancel-button]:hidden",t)}),C.jsx(v4,{children:C.jsx(VM,{className:"size-4 shrink-0 opacity-50"})})]})})}function Ql({className:t,...e}){return C.jsx(Y3,{...e,"data-slot":"command-list",className:fe("no-scrollbar max-h-72 scroll-py-1 overflow-x-hidden overflow-y-auto outline-none",t)})}function aa({className:t,children:e,items:n,heading:r,...i}){return C.jsxs(EK,{"data-slot":"command-group",className:fe("overflow-hidden p-1.5 text-foreground **:[[cmdk-group-heading]]:px-3 **:[[cmdk-group-heading]]:py-2 **:[[cmdk-group-heading]]:text-xs **:[[cmdk-group-heading]]:font-medium **:[[cmdk-group-heading]]:text-muted-foreground",t),...i,children:[r&&C.jsx(fF,{"cmdk-group-heading":"",children:r}),C.jsx(vm,{items:n,children:e})]})}function eU({className:t,...e}){return C.jsx(mF,{"data-slot":"command-separator",className:fe("my-1.5 h-px bg-border/50",t),...e})}function Ls({className:t,children:e,textValue:n,...r}){return C.jsx(X3,{...r,"data-slot":"command-item",className:fe("group/command-item relative flex cursor-default items-center gap-2 rounded-2xl px-3 py-2 text-sm font-medium outline-hidden select-none in-data-[slot=dialog-content]:rounded-3xl data-focused:bg-muted data-focused:text-foreground data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 data-selected:bg-muted data-selected:text-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-focused:*:[svg]:text-foreground data-selected:*:[svg]:text-foreground",t),textValue:n||(typeof e=="string"?e:void 0),children:_s(e,i=>C.jsxs(C.Fragment,{children:[i,C.jsx(xa,{className:"ml-auto opacity-0 group-has-data-[slot=command-shortcut]/command-item:hidden group-data-selected/command-item:opacity-100"})]}))})}const qM=S.createContext(null);function Gt(){const t=S.useContext(qM);if(!t)throw new Error("useTasksContext must be used inside the app shell");return t}function tU(){const{project:t,board:e,boards:n}=Gt(),r=Ys({strict:!1}),i=ji(),[s,a]=S.useState(!1),[u,c]=S.useState(!1);t?.readOnly===!0&&!u&&c(!0);const f=aL(u).data;if(!u||!f||f.length===0||f.length<2&&!r.ref)return null;const h=f.find(b=>b.isDefault)?.name,m=r.ref??h??"default",g=b=>{a(!1),b!==m&&i({to:"/",search:{...e&&e!==n[0]?.id?{board:e}:{},...b===h?{}:{ref:b}}})};return C.jsxs(vd,{isOpen:s,onOpenChange:a,children:[C.jsxs(Re,{variant:"ghost",size:"sm","aria-label":"Preview a branch",className:`-ml-2 h-7 min-w-0 shrink rounded-md px-1.5 font-normal ${r.ref?"text-amber-600 dark:text-amber-500":"text-muted-foreground"}`,children:[C.jsx(sa,{"data-icon":"inline-start",className:"size-3.5"}),C.jsx("span",{className:"max-w-40 truncate",children:m})]}),C.jsx(kd,{className:"w-64",children:C.jsxs(Gl,{children:[C.jsx(Wl,{flush:!0,placeholder:"Preview a branch"}),C.jsx(Ql,{selectionMode:"single",selectedKeys:[m],onAction:b=>g(String(b)),children:C.jsx(aa,{children:f.map(b=>C.jsx(Ls,{id:b.name,textValue:b.name,children:C.jsx("span",{className:"truncate",children:b.name})},b.name))})})]})})]})}function GM(){const t=hn();return e=>{const n=new URLSearchParams,r=am();r&&n.set("board",r);const i=Ii();i&&n.set("ref",i);const s=n.size>0?`?${n.toString()}`:"",a=DM(t.basepath,`/task/${e.key}${s}`);return new URL(a,location.origin).href}}function k4(t){if(navigator.clipboard){navigator.clipboard.writeText(t).catch(()=>gE(t));return}gE(t)}function gE(t){const e=document.createElement("textarea");e.value=t,e.setAttribute("readonly",""),e.style.position="fixed",e.style.opacity="0",document.body.appendChild(e),e.select();try{document.execCommand("copy")}finally{e.remove()}}function nU(){const{project:t,boards:e,board:n,tasks:r}=Gt(),i=fw(),s=Ys({strict:!1}),a=i({to:"/task/$key"}),u=a?a.key:null,c=u!=null?r.find(g=>g.key===u):null,f=new URLSearchParams;n&&n!==e[0]?.id&&f.set("board",n),s.ref&&f.set("ref",s.ref);const h=f.size>0?`/?${f.toString()}`:"/",m=e.find(g=>g.id===n)?.prefix??t?.prefix;return C.jsxs("div",{className:"flex min-w-0 items-center gap-1",children:[C.jsx(QV,{href:h,variant:"ghost",size:"icon-sm","aria-label":"Board home",className:"text-muted-foreground",children:C.jsx(TH,{})}),C.jsx(tU,{}),C.jsx(WH,{children:C.jsxs(QH,{children:[C.jsx(mE,{children:C.jsx(iU,{})}),a&&C.jsx(mE,{children:C.jsx(YH,{children:c?.title??(m?`${m}-${u}`:`#${u}`)})})]})}),u!=null&&C.jsx(rU,{taskKey:u})]})}function rU({taskKey:t}){const e=GM(),[n,r]=S.useState(!1),i=S.useRef(null);return C.jsx(Re,{variant:"ghost",size:"icon-xs","aria-label":"Copy link to task",onPress:()=>{k4(e({key:t})),r(!0),i.current&&clearTimeout(i.current),i.current=setTimeout(()=>r(!1),1500)},className:"ml-0.5 shrink-0 text-muted-foreground [&_svg]:size-3.5",children:n?C.jsx(xa,{className:"text-green-600 dark:text-green-500"}):C.jsx(_M,{})})}function iU(){const{project:t,boards:e,board:n,switchBoard:r,failed:i}=Gt(),[s,a]=S.useState(!1);if(i&&e.length===0)return null;const u=e.find(h=>h.id===n)?.name??t?.name??"…",c=new Map;for(const h of e)c.set(h.name,(c.get(h.name)??0)+1);const f=h=>(c.get(h.name)??0)>1?`${h.name} — ${h.id}`:h.name;return C.jsxs(vd,{isOpen:s,onOpenChange:a,children:[C.jsx(Re,{variant:"ghost",size:"sm","aria-label":"Switch board",className:"-mx-1.5 h-7 min-w-0 shrink rounded-md px-1.5 font-medium text-foreground",children:C.jsx("span",{className:"truncate",children:u})}),C.jsx(kd,{className:"w-60",children:C.jsxs(Gl,{children:[C.jsx(Wl,{flush:!0,placeholder:"Switch board"}),C.jsx(Ql,{selectionMode:"single",selectedKeys:n?[n]:[],onAction:h=>{a(!1),r(String(h))},children:C.jsx(aa,{children:e.map(h=>C.jsx(Ls,{id:h.id,textValue:f(h),children:f(h)},h.id))})})]})})]})}const sU={backlog:"text-muted-foreground/60",todo:"text-muted-foreground",in_progress:"text-foreground/80",done:"text-foreground/80",canceled:"text-muted-foreground/60"};function Nr({status:t,className:e}){const n={viewBox:"0 0 14 14",className:fe("size-3.5 shrink-0",sU[t],e),"aria-hidden":!0};switch(t){case"backlog":return C.jsx("svg",{...n,children:C.jsx("circle",{cx:"7",cy:"7",r:"5.5",fill:"none",stroke:"currentColor",strokeWidth:"1.6",strokeDasharray:"2.5 2.2"})});case"todo":return C.jsx("svg",{...n,children:C.jsx("circle",{cx:"7",cy:"7",r:"5.5",fill:"none",stroke:"currentColor",strokeWidth:"1.6"})});case"in_progress":return C.jsxs("svg",{...n,children:[C.jsx("circle",{cx:"7",cy:"7",r:"5.5",fill:"none",stroke:"currentColor",strokeWidth:"1.6"}),C.jsx("path",{d:"M7 3.4 A3.6 3.6 0 0 1 7 10.6 Z",fill:"currentColor"})]});case"done":return C.jsxs("svg",{...n,children:[C.jsx("circle",{cx:"7",cy:"7",r:"6.2",fill:"currentColor"}),C.jsx("path",{d:"M4.4 7.2l1.8 1.8 3.4-3.9",fill:"none",stroke:"var(--background)",strokeWidth:"1.6",strokeLinecap:"round",strokeLinejoin:"round"})]});case"canceled":return C.jsxs("svg",{...n,children:[C.jsx("circle",{cx:"7",cy:"7",r:"6.2",fill:"currentColor"}),C.jsx("path",{d:"M4.8 4.8l4.4 4.4M9.2 4.8l-4.4 4.4",stroke:"var(--background)",strokeWidth:"1.5",strokeLinecap:"round"})]})}}function WM({className:t}){return C.jsxs("span",{title:"Blocked by another task","aria-label":"Blocked by another task",className:fe("inline-flex shrink-0 items-center gap-1 rounded-full bg-red-500/15 px-1.5 py-0.5 text-[11px] font-medium text-red-700 dark:text-red-400",t),children:[C.jsx(cH,{className:"size-3","aria-hidden":!0}),"Blocked"]})}function QM({className:t,count:e}){const n=e&&e>0?`${e} ask${e===1?"":"s"}`:"Human";return C.jsxs("span",{title:"Needs a human","aria-label":"Needs a human",className:fe("inline-flex shrink-0 items-center gap-1 rounded-full bg-amber-500/15 px-1.5 py-0.5 text-[11px] font-medium text-amber-700 dark:text-amber-400",t),children:[C.jsx($m,{className:"size-3","aria-hidden":!0}),n]})}function zh({className:t,htmlFor:e,slot:n,...r}){const i=C.jsx(Lj,{"data-slot":"label",className:fe("flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50 peer-data-disabled:opacity-50",t),...r,htmlFor:e,slot:n});return e&&n===void 0?C.jsx(L3.Provider,{value:null,children:i}):i}function va({children:t,...e}){return C.jsx(SK,{"data-slot":"popover-trigger",...e,children:t})}function ka({className:t,placement:e="bottom",offset:n=4,crossOffset:r=0,...i}){return C.jsx(Sm,{"data-slot":"popover-content",placement:e,offset:n,crossOffset:r,className:fe("z-50 flex w-72 origin-(--trigger-anchor-point) flex-col gap-4 rounded-3xl bg-popover p-4 text-sm text-popover-foreground shadow-lg ring-1 ring-foreground/5 outline-hidden duration-100 data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 dark:ring-foreground/10",t),...i})}const oU=ba("group/toggle inline-flex items-center justify-center gap-1 rounded-3xl text-sm font-medium whitespace-nowrap transition-colors outline-none hover:bg-muted hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/30 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 aria-pressed:bg-muted dark:aria-invalid:ring-destructive/40 data-selected:bg-muted [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-transparent",outline:"border border-input bg-transparent hover:bg-muted"},size:{default:"h-9 min-w-9 px-3 has-data-[icon=inline-end]:pr-2.5 has-data-[icon=inline-start]:pl-2.5",sm:"h-8 min-w-8 px-3 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",lg:"h-10 min-w-10 px-4 has-data-[icon=inline-end]:pr-3 has-data-[icon=inline-start]:pl-3"}},defaultVariants:{variant:"default",size:"default"}}),YM=S.createContext({size:"default",variant:"default",spacing:2,orientation:"horizontal"});function aU({className:t,variant:e,size:n,spacing:r=2,orientation:i="horizontal",children:s,...a}){return C.jsx(L_,{"data-slot":"toggle-group","data-variant":e,"data-size":n,"data-spacing":r,orientation:i,style:{"--gap":`calc(var(--spacing) * ${r})`},className:fe("group/toggle-group flex w-fit flex-row items-center gap-(--gap) data-[spacing=0]:data-[variant=outline]:rounded-3xl data-vertical:flex-col data-vertical:items-stretch",t),...a,children:C.jsx(YM.Provider,{value:{variant:e,size:n,spacing:r,orientation:i},children:s})})}function bE({className:t,children:e,variant:n="default",size:r="default",...i}){const s=S.useContext(YM);return C.jsx(I_,{"data-slot":"toggle-group-item","data-variant":s.variant||n,"data-size":s.size||r,"data-spacing":s.spacing,className:fe("shrink-0 group-data-[spacing=0]/toggle-group:rounded-none group-data-[spacing=0]/toggle-group:px-3 group-data-[spacing=0]/toggle-group:shadow-none focus:z-10 focus-visible:z-10 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-end]:pr-2.5 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-start]:pl-2.5 group-data-horizontal/toggle-group:data-[spacing=0]:first:rounded-l-3xl group-data-vertical/toggle-group:data-[spacing=0]:first:rounded-t-3xl group-data-horizontal/toggle-group:data-[spacing=0]:last:rounded-r-3xl group-data-vertical/toggle-group:data-[spacing=0]:last:rounded-b-3xl data-[state=on]:bg-muted group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:border-l-0 group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:border-t-0 group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-l group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-t",oU({variant:s.variant||n,size:s.size||r}),t),...i,children:e})}function lU(){const{settings:t,setSettings:e}=Gt();return C.jsxs(va,{children:[C.jsx(Re,{variant:"ghost",size:"icon-sm","aria-label":"Display options",children:C.jsx(VH,{})}),C.jsxs(ka,{placement:"bottom end",className:"w-64 gap-3 p-3",children:[C.jsxs(aU,{variant:"outline",spacing:0,selectionMode:"single",disallowEmptySelection:!0,selectedKeys:[t.view],onSelectionChange:n=>{const r=[...n][0];(r==="board"||r==="list")&&e({...t,view:r})},"aria-label":"View",className:"w-full",children:[C.jsxs(bE,{id:"list",className:"flex-1",children:[C.jsx(OH,{"data-icon":"inline-start"}),"List"]}),C.jsxs(bE,{id:"board",className:"flex-1",children:[C.jsx(gH,{"data-icon":"inline-start"}),"Board"]})]}),t.view==="board"&&C.jsxs("div",{className:"flex flex-col gap-1",children:[C.jsx(zh,{className:"px-1 pb-1 text-xs text-muted-foreground",children:"Columns"}),Pi.map(n=>{const r=t.boardColumns.includes(n);return C.jsxs(Re,{variant:"ghost",size:"sm","aria-pressed":r,onPress:()=>e({...t,boardColumns:Pi.filter(i=>i===n?!r:t.boardColumns.includes(i))}),className:"w-full justify-start gap-2 font-normal",children:[C.jsx(Nr,{status:n}),Ai[n],C.jsx(xa,{"data-icon":"inline-end",className:r?"ml-auto":"ml-auto opacity-0"})]},n)})]})]})]})}const uU=ba("flex w-fit items-stretch *:focus-visible:relative *:focus-visible:z-10 has-[>[data-slot=button-group]]:gap-2 has-[>[data-variant=outline]]:*:data-[slot=input-group]:border-border has-[>[data-variant=outline]]:*:data-[slot=select-trigger]:border-border has-[>[data-variant=outline]]:[&>[data-slot=input-group]:has(:focus-visible)]:border-ring has-[>[data-variant=outline]]:[&>[data-slot=select-trigger]:focus-visible]:border-ring has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-4xl [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1 has-[>[data-variant=outline]]:[&>input]:border-border has-[>[data-variant=outline]]:[&>input:focus-visible]:border-ring",{variants:{orientation:{horizontal:"**:data-slot:rounded-r-none [&_[data-slot]~[data-slot]]:rounded-l-none [&_[data-slot]~[data-slot]]:border-l-0 [&>[data-slot]:not(:has(~[data-slot]))]:rounded-r-4xl!",vertical:"flex-col **:data-slot:rounded-b-none [&_[data-slot]~[data-slot]]:rounded-t-none [&_[data-slot]~[data-slot]]:border-t-0 [&>[data-slot]:not(:has(~[data-slot]))]:rounded-b-4xl!"}},defaultVariants:{orientation:"horizontal"}});function cU({className:t,orientation:e,...n}){return C.jsx("div",{role:"group","data-slot":"button-group","data-orientation":e,className:fe(uU({orientation:e}),t),...n})}function yE({className:t,render:e,...n}){if(e){const r={"data-slot":"button-group-text",className:fe("flex items-center gap-2 rounded-4xl border bg-muted px-2.5 text-sm font-medium [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4",t),...n};return e(r)}return C.jsx("div",{"data-slot":"button-group-text",className:fe("flex items-center gap-2 rounded-4xl border bg-muted px-2.5 text-sm font-medium [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4",t),...n})}const X0="__none__",xE="__create__";function Qr({label:t,options:e,value:n,onChange:r,mode:i,placeholder:s,allowCreate:a=!0,renderValue:u,size:c="sm",variant:f="outline",chevron:h=!0,className:m}){const[g,b]=S.useState(!1),[x,k]=S.useState(""),E=[...new Set([...e,...n])].sort(),D=x.trim(),T=a&&D.length>0&&!E.some(P=>P.toLowerCase()===D.toLowerCase());function $(P){const M=String(P);if(M===xE){r(i==="single"?[D]:[...n,D]),k(""),i==="single"&&A();return}if(M===X0){r([]),A();return}if(i==="single"){r([M]),A();return}r(n.includes(M)?n.filter(N=>N!==M):[...n,M])}function A(){b(!1),k("")}const B=u?.(n)??C.jsx("span",{className:"truncate",children:n.length>0?n.join(", "):s});return C.jsxs(vd,{isOpen:g,onOpenChange:P=>P?b(!0):A(),children:[C.jsxs(Re,{variant:f,size:c,"aria-label":t,className:fe("justify-between gap-1.5 font-normal",m),children:[B,h&&C.jsx(KM,{className:"text-muted-foreground"})]}),C.jsx(kd,{className:"w-60",children:C.jsxs(Gl,{inputValue:x,onInputChange:k,children:[C.jsx(Wl,{flush:!0,placeholder:`Search ${t.toLowerCase()}`}),C.jsxs(Ql,{selectionMode:i,selectedKeys:i==="single"?[n[0]??X0]:n,onAction:$,disallowEmptySelection:i==="single",renderEmptyState:()=>T?null:C.jsx("p",{className:"px-3 py-6 text-center text-sm text-muted-foreground",children:"Nothing here yet"}),children:[C.jsxs(aa,{children:[i==="single"?C.jsx(Ls,{id:X0,textValue:s,children:s}):null,E.map(P=>C.jsx(Ls,{id:P,textValue:P,children:P},P))]}),T?C.jsx(eU,{}):null,T?C.jsx(aa,{children:C.jsxs(Ls,{id:xE,textValue:x,children:[C.jsx(ql,{}),C.jsx("span",{className:"truncate",children:D})]})}):null]})]})})]})}const XM={statuses:[],tags:[],goal:null,needsHuman:!1};function dU(t,e){return t.filter(n=>!(e.statuses.length>0&&!e.statuses.includes(n.status)||e.tags.length>0&&!n.tags.some(r=>e.tags.includes(r))||e.goal!==null&&n.goal!==e.goal||e.needsHuman&&!n.needsHuman))}function fU(t,e){const n=e.trim().toLowerCase();return n?t.filter(r=>r.id.toLowerCase().includes(n)||r.title.toLowerCase().includes(n)||r.description.toLowerCase().includes(n)):t}function JM(t){return t.statuses.length>0||t.tags.length>0||t.goal!==null||t.needsHuman}function Tm(t){return[...new Set(t.flatMap(e=>e.tags))].sort()}function Am(t){return[...new Set(t.map(e=>e.goal).filter(e=>!!e))].sort()}function hU(){const{tasks:t,filters:e,setFilters:n}=Gt();return C.jsxs("div",{className:"flex shrink-0 flex-wrap items-center gap-2 border-b px-4 py-2",children:[e.statuses.length>0&&C.jsx(ch,{icon:C.jsx(Nr,{status:e.statuses[0],className:"size-3.5"}),name:"Status",operator:e.statuses.length>1?"is any of":"is",onRemove:()=>n({...e,statuses:[]}),children:C.jsx(Qr,{label:"Status",mode:"multiple",allowCreate:!1,options:[...Pi],value:e.statuses,onChange:r=>n({...e,statuses:r}),placeholder:"Status",renderValue:r=>C.jsx("span",{className:"truncate",children:r.map(i=>Ai[i]).join(", ")}),size:"sm",className:"max-w-56 border-l-0 font-normal"})}),e.tags.length>0&&C.jsx(ch,{icon:C.jsx(hp,{className:"size-3.5"}),name:"Tag",operator:e.tags.length>1?"is any of":"is",onRemove:()=>n({...e,tags:[]}),children:C.jsx(Qr,{label:"Tags",mode:"multiple",allowCreate:!1,options:Tm(t),value:e.tags,onChange:r=>n({...e,tags:r}),placeholder:"Tags",size:"sm",className:"max-w-56 border-l-0 font-normal"})}),e.goal!==null&&C.jsx(ch,{icon:C.jsx(Yc,{className:"size-3.5"}),name:"Goal",operator:"is",onRemove:()=>n({...e,goal:null}),children:C.jsx(Qr,{label:"Goal",mode:"single",allowCreate:!1,options:Am(t),value:[e.goal],onChange:r=>n({...e,goal:r[0]??null}),placeholder:"Goal",size:"sm",className:"max-w-56 border-l-0 font-normal"})}),e.needsHuman&&C.jsx(ch,{icon:C.jsx($m,{className:"size-3.5"}),name:"Needs a human",onRemove:()=>n({...e,needsHuman:!1})}),C.jsx(Re,{size:"sm",variant:"ghost",onPress:()=>n(XM),children:"Clear"})]})}function ch({icon:t,name:e,operator:n,onRemove:r,children:i}){return C.jsxs(cU,{children:[C.jsxs(yE,{className:"h-8 gap-1.5 bg-transparent text-sm font-normal",children:[t,e]}),n&&C.jsx(yE,{className:"h-8 border-l-0 bg-transparent text-sm font-normal text-muted-foreground",children:n}),i,C.jsx(Re,{variant:"outline",size:"icon-sm","aria-label":`Remove ${e.toLowerCase()} filter`,onPress:r,className:"border-l-0 text-muted-foreground",children:C.jsx(Vi,{})})]})}function pU(){const{tasks:t,filters:e,setFilters:n}=Gt(),r=JM(e);return C.jsxs(va,{children:[C.jsxs(Re,{variant:"ghost",size:"icon-sm","aria-label":"Filter",className:"relative",children:[C.jsx(NH,{}),r&&C.jsx("span",{className:"absolute top-1 right-1 size-1.5 rounded-full bg-primary"})]}),C.jsxs(ka,{placement:"bottom end",className:"w-64 gap-3 p-3",children:[C.jsxs("div",{className:"grid gap-1.5",children:[C.jsx(zh,{className:"px-1 text-xs text-muted-foreground",children:"Status"}),C.jsx(Qr,{label:"Status",mode:"multiple",allowCreate:!1,options:[...Pi],value:e.statuses,onChange:i=>n({...e,statuses:i}),placeholder:"Any status",renderValue:i=>C.jsx("span",{className:"truncate",children:i.length===0?"Any status":i.map(s=>Ai[s]).join(", ")}),className:"w-full"})]}),C.jsxs("div",{className:"grid gap-1.5",children:[C.jsx(zh,{className:"px-1 text-xs text-muted-foreground",children:"Tags"}),C.jsx(Qr,{label:"Tags",mode:"multiple",allowCreate:!1,options:Tm(t),value:e.tags,onChange:i=>n({...e,tags:i}),placeholder:"Any tag",className:"w-full"})]}),C.jsxs("div",{className:"grid gap-1.5",children:[C.jsx(zh,{className:"px-1 text-xs text-muted-foreground",children:"Goal"}),C.jsx(Qr,{label:"Goal",mode:"single",allowCreate:!1,options:Am(t),value:e.goal?[e.goal]:[],onChange:i=>n({...e,goal:i[0]??null}),placeholder:"Any goal",className:"w-full"})]}),C.jsxs(Re,{size:"sm",variant:e.needsHuman?"secondary":"outline","aria-pressed":e.needsHuman,onPress:()=>n({...e,needsHuman:!e.needsHuman}),className:fe("justify-start font-normal",e.needsHuman&&"text-amber-700 dark:text-amber-400"),children:[C.jsx($m,{"data-icon":"inline-start"}),"Needs a human"]})]})]})}function en(t){this.content=t}en.prototype={constructor:en,find:function(t){for(var e=0;e<this.content.length;e+=2)if(this.content[e]===t)return e;return-1},get:function(t){var e=this.find(t);return e==-1?void 0:this.content[e+1]},update:function(t,e,n){var r=n&&n!=t?this.remove(n):this,i=r.find(t),s=r.content.slice();return i==-1?s.push(n||t,e):(s[i+1]=e,n&&(s[i]=n)),new en(s)},remove:function(t){var e=this.find(t);if(e==-1)return this;var n=this.content.slice();return n.splice(e,2),new en(n)},addToStart:function(t,e){return new en([t,e].concat(this.remove(t).content))},addToEnd:function(t,e){var n=this.remove(t).content.slice();return n.push(t,e),new en(n)},addBefore:function(t,e,n){var r=this.remove(e),i=r.content.slice(),s=r.find(t);return i.splice(s==-1?i.length:s,0,e,n),new en(i)},forEach:function(t){for(var e=0;e<this.content.length;e+=2)t(this.content[e],this.content[e+1])},prepend:function(t){return t=en.from(t),t.size?new en(t.content.concat(this.subtract(t).content)):this},append:function(t){return t=en.from(t),t.size?new en(this.subtract(t).content.concat(t.content)):this},subtract:function(t){var e=this;t=en.from(t);for(var n=0;n<t.content.length;n+=2)e=e.remove(t.content[n]);return e},toObject:function(){var t={};return this.forEach(function(e,n){t[e]=n}),t},get size(){return this.content.length>>1}};en.from=function(t){if(t instanceof en)return t;var e=[];if(t)for(var n in t)e.push(n,t[n]);return new en(e)};function ZM(t,e,n){for(let r=0;;r++){if(r==t.childCount||r==e.childCount)return t.childCount==e.childCount?null:n;let i=t.child(r),s=e.child(r);if(i==s){n+=i.nodeSize;continue}if(!i.sameMarkup(s))return n;if(i.isText&&i.text!=s.text){let a=i.text,u=s.text,c=0;for(;a[c]==u[c];c++)n++;return c&&c<a.length&&c<u.length&&n9(a.charCodeAt(c-1))&&t9(a.charCodeAt(c))&&n--,n}if(i.content.size||s.content.size){let a=ZM(i.content,s.content,n+1);if(a!=null)return a}n+=i.nodeSize}}function e9(t,e,n,r){for(let i=t.childCount,s=e.childCount;;){if(i==0||s==0)return i==s?null:{a:n,b:r};let a=t.child(--i),u=e.child(--s),c=a.nodeSize;if(a==u){n-=c,r-=c;continue}if(!a.sameMarkup(u))return{a:n,b:r};if(a.isText&&a.text!=u.text){let f=a.text,h=u.text,m=f.length,g=h.length;for(;m>0&&g>0&&f[m-1]==h[g-1];)m--,g--,n--,r--;return m&&g&&m<f.length&&n9(f.charCodeAt(m-1))&&t9(f.charCodeAt(m))&&(n++,r++),{a:n,b:r}}if(a.content.size||u.content.size){let f=e9(a.content,u.content,n-1,r-1);if(f)return f}n-=c,r-=c}}function t9(t){return t>=56320&&t<57344}function n9(t){return t>=55296&&t<56320}class ae{constructor(e,n){if(this.content=e,this.size=n||0,n==null)for(let r=0;r<e.length;r++)this.size+=e[r].nodeSize}nodesBetween(e,n,r,i=0,s){for(let a=0,u=0;u<n;a++){let c=this.content[a],f=u+c.nodeSize;if(f>e&&r(c,i+u,s||null,a)!==!1&&c.content.size){let h=u+1;c.nodesBetween(Math.max(0,e-h),Math.min(c.content.size,n-h),r,i+h)}u=f}}descendants(e){this.nodesBetween(0,this.size,e)}textBetween(e,n,r,i){let s="",a=!0;return this.nodesBetween(e,n,(u,c)=>{let f=u.isText?u.text.slice(Math.max(e,c)-c,n-c):u.isLeaf?i?typeof i=="function"?i(u):i:u.type.spec.leafText?u.type.spec.leafText(u):"":"";u.isBlock&&(u.isLeaf&&f||u.isTextblock)&&r&&(a?a=!1:s+=r),s+=f},0),s}append(e){if(!e.size)return this;if(!this.size)return e;let n=this.lastChild,r=e.firstChild,i=this.content.slice(),s=0;for(n.isText&&n.sameMarkup(r)&&(i[i.length-1]=n.withText(n.text+r.text),s=1);s<e.content.length;s++)i.push(e.content[s]);return new ae(i,this.size+e.size)}cut(e,n=this.size){if(e==0&&n==this.size)return this;let r=[],i=0;if(n>e)for(let s=0,a=0;a<n;s++){let u=this.content[s],c=a+u.nodeSize;c>e&&((a<e||c>n)&&(u.isText?u=u.cut(Math.max(0,e-a),Math.min(u.text.length,n-a)):u=u.cut(Math.max(0,e-a-1),Math.min(u.content.size,n-a-1))),r.push(u),i+=u.nodeSize),a=c}return new ae(r,i)}cutByIndex(e,n){return e==n?ae.empty:e==0&&n==this.content.length?this:new ae(this.content.slice(e,n))}replaceChild(e,n){let r=this.content[e];if(r==n)return this;let i=this.content.slice(),s=this.size+n.nodeSize-r.nodeSize;return i[e]=n,new ae(i,s)}addToStart(e){return new ae([e].concat(this.content),this.size+e.nodeSize)}addToEnd(e){return new ae(this.content.concat(e),this.size+e.nodeSize)}eq(e){if(this.content.length!=e.content.length)return!1;for(let n=0;n<this.content.length;n++)if(!this.content[n].eq(e.content[n]))return!1;return!0}get firstChild(){return this.content.length?this.content[0]:null}get lastChild(){return this.content.length?this.content[this.content.length-1]:null}get childCount(){return this.content.length}child(e){let n=this.content[e];if(!n)throw new RangeError("Index "+e+" out of range for "+this);return n}maybeChild(e){return this.content[e]||null}forEach(e){for(let n=0,r=0;n<this.content.length;n++){let i=this.content[n];e(i,r,n),r+=i.nodeSize}}findDiffStart(e,n=0){return ZM(this,e,n)}findDiffEnd(e,n=this.size,r=e.size){return e9(this,e,n,r)}findIndex(e){if(e==0)return dh(0,e);if(e==this.size)return dh(this.content.length,e);if(e>this.size||e<0)throw new RangeError(`Position ${e} outside of fragment (${this})`);for(let n=0,r=0;;n++){let i=this.child(n),s=r+i.nodeSize;if(s>=e)return s==e?dh(n+1,s):dh(n,r);r=s}}toString(){return"<"+this.toStringInner()+">"}toStringInner(){return this.content.join(", ")}toJSON(){return this.content.length?this.content.map(e=>e.toJSON()):null}static fromJSON(e,n){if(!n)return ae.empty;if(!Array.isArray(n))throw new RangeError("Invalid input for Fragment.fromJSON");return ae.fromArray(n.map(e.nodeFromJSON))}static fromArray(e){if(!e.length)return ae.empty;let n,r=0;for(let i=0;i<e.length;i++){let s=e[i];r+=s.nodeSize,i&&s.isText&&e[i-1].sameMarkup(s)?(n||(n=e.slice(0,i)),n[n.length-1]=s.withText(n[n.length-1].text+s.text)):n&&n.push(s)}return new ae(n||e,r)}static from(e){if(!e)return ae.empty;if(e instanceof ae)return e;if(Array.isArray(e))return this.fromArray(e);if(e.attrs)return new ae([e],e.nodeSize);throw new RangeError("Can not convert "+e+" to a Fragment"+(e.nodesBetween?" (looks like multiple versions of prosemirror-model were loaded)":""))}}ae.empty=new ae([],0);const J0={index:0,offset:0};function dh(t,e){return J0.index=t,J0.offset=e,J0}function mp(t,e){if(t===e)return!0;if(!(t&&typeof t=="object")||!(e&&typeof e=="object"))return!1;let n=Array.isArray(t);if(Array.isArray(e)!=n)return!1;if(n){if(t.length!=e.length)return!1;for(let r=0;r<t.length;r++)if(!mp(t[r],e[r]))return!1}else{for(let r in t)if(!(r in e)||!mp(t[r],e[r]))return!1;for(let r in e)if(!(r in t))return!1}return!0}let st=class C4{constructor(e,n){this.type=e,this.attrs=n}addToSet(e){let n,r=!1;for(let i=0;i<e.length;i++){let s=e[i];if(this.eq(s))return e;if(this.type.excludes(s.type))n||(n=e.slice(0,i));else{if(s.type.excludes(this.type))return e;!r&&s.type.rank>this.type.rank&&(n||(n=e.slice(0,i)),n.push(this),r=!0),n&&n.push(s)}}return n||(n=e.slice()),r||n.push(this),n}removeFromSet(e){for(let n=0;n<e.length;n++)if(this.eq(e[n]))return e.slice(0,n).concat(e.slice(n+1));return e}isInSet(e){for(let n=0;n<e.length;n++)if(this.eq(e[n]))return!0;return!1}eq(e){return this==e||this.type==e.type&&mp(this.attrs,e.attrs)}toJSON(){let e={type:this.type.name};for(let n in this.attrs){e.attrs=this.attrs;break}return e}static fromJSON(e,n){if(!n)throw new RangeError("Invalid input for Mark.fromJSON");let r=e.marks[n.type];if(!r)throw new RangeError(`There is no mark type ${n.type} in this schema`);let i=r.create(n.attrs);return r.checkAttrs(i.attrs),i}static sameSet(e,n){if(e==n)return!0;if(e.length!=n.length)return!1;for(let r=0;r<e.length;r++)if(!e[r].eq(n[r]))return!1;return!0}static setFrom(e){if(!e||Array.isArray(e)&&e.length==0)return C4.none;if(e instanceof C4)return[e];let n=e.slice();return n.sort((r,i)=>r.type.rank-i.type.rank),n}};st.none=[];class Xc extends Error{}class pe{constructor(e,n,r){this.content=e,this.openStart=n,this.openEnd=r}get size(){return this.content.size-this.openStart-this.openEnd}insertAt(e,n){let r=i9(this.content,e+this.openStart,n,this.openStart+1,this.openEnd+1);return r&&new pe(r,this.openStart,this.openEnd)}removeBetween(e,n){return new pe(r9(this.content,e+this.openStart,n+this.openStart),this.openStart,this.openEnd)}eq(e){return this.content.eq(e.content)&&this.openStart==e.openStart&&this.openEnd==e.openEnd}toString(){return this.content+"("+this.openStart+","+this.openEnd+")"}toJSON(){if(!this.content.size)return null;let e={content:this.content.toJSON()};return this.openStart>0&&(e.openStart=this.openStart),this.openEnd>0&&(e.openEnd=this.openEnd),e}static fromJSON(e,n){if(!n)return pe.empty;let r=n.openStart||0,i=n.openEnd||0;if(typeof r!="number"||typeof i!="number")throw new RangeError("Invalid input for Slice.fromJSON");return new pe(ae.fromJSON(e,n.content),r,i)}static maxOpen(e,n=!0){let r=0,i=0;for(let s=e.firstChild;s&&!s.isLeaf&&(n||!s.type.spec.isolating);s=s.firstChild)r++;for(let s=e.lastChild;s&&!s.isLeaf&&(n||!s.type.spec.isolating);s=s.lastChild)i++;return new pe(e,r,i)}}pe.empty=new pe(ae.empty,0,0);function r9(t,e,n){let{index:r,offset:i}=t.findIndex(e),s=t.maybeChild(r),{index:a,offset:u}=t.findIndex(n);if(i==e||s.isText){if(u!=n&&!t.child(a).isText)throw new RangeError("Removing non-flat range");return t.cut(0,e).append(t.cut(n))}if(r!=a)throw new RangeError("Removing non-flat range");return t.replaceChild(r,s.copy(r9(s.content,e-i-1,n-i-1)))}function i9(t,e,n,r,i,s){let{index:a,offset:u}=t.findIndex(e),c=t.maybeChild(a);if(u==e||c.isText)return s&&r<=0&&i<=0&&!s.canReplace(a,a,n)?null:t.cut(0,e).append(n).append(t.cut(e));let f=i9(c.content,e-u-1,n,a==0?r-1:0,a==t.childCount-1?i-1:0,c);return f&&t.replaceChild(a,c.copy(f))}function mU(t,e,n){if(n.openStart>t.depth)throw new Xc("Inserted content deeper than insertion position");if(t.depth-n.openStart!=e.depth-n.openEnd)throw new Xc("Inconsistent open depths");return s9(t,e,n,0)}function s9(t,e,n,r){let i=t.index(r),s=t.node(r);if(i==e.index(r)&&r<t.depth-n.openStart){let a=s9(t,e,n,r+1);return s.copy(s.content.replaceChild(i,a))}else if(n.content.size)if(!n.openStart&&!n.openEnd&&t.depth==r&&e.depth==r){let a=t.parent,u=a.content;return Zo(a,u.cut(0,t.parentOffset).append(n.content).append(u.cut(e.parentOffset)))}else{let{start:a,end:u}=gU(n,t);return Zo(s,a9(t,a,u,e,r))}else return Zo(s,gp(t,e,r))}function o9(t,e){if(!e.type.compatibleContent(t.type))throw new Xc("Cannot join "+e.type.name+" onto "+t.type.name)}function E4(t,e,n){let r=t.node(n);return o9(r,e.node(n)),r}function Jo(t,e){let n=e.length-1;n>=0&&t.isText&&t.sameMarkup(e[n])?e[n]=t.withText(e[n].text+t.text):e.push(t)}function Ec(t,e,n,r){let i=(e||t).node(n),s=0,a=e?e.index(n):i.childCount;t&&(s=t.index(n),t.depth>n?s++:t.textOffset&&(Jo(t.nodeAfter,r),s++));for(let u=s;u<a;u++)Jo(i.child(u),r);e&&e.depth==n&&e.textOffset&&Jo(e.nodeBefore,r)}function Zo(t,e){if(!t.type.validContent(e))throw new Xc("Invalid content for node "+t.type.name);return t.copy(e)}function a9(t,e,n,r,i){let s=t.depth>i&&E4(t,e,i+1),a=r.depth>i&&E4(n,r,i+1),u=[];return Ec(null,t,i,u),s&&a&&e.index(i)==n.index(i)?(o9(s,a),Jo(Zo(s,a9(t,e,n,r,i+1)),u)):(s&&Jo(Zo(s,gp(t,e,i+1)),u),Ec(e,n,i,u),a&&Jo(Zo(a,gp(n,r,i+1)),u)),Ec(r,null,i,u),new ae(u)}function gp(t,e,n){let r=[];if(Ec(null,t,n,r),t.depth>n){let i=E4(t,e,n+1);Jo(Zo(i,gp(t,e,n+1)),r)}return Ec(e,null,n,r),new ae(r)}function gU(t,e){let n=e.depth-t.openStart,i=e.node(n).copy(t.content);for(let s=n-1;s>=0;s--)i=e.node(s).copy(ae.from(i));return{start:i.resolveNoCache(t.openStart+n),end:i.resolveNoCache(i.content.size-t.openEnd-n)}}class Jc{constructor(e,n,r){this.pos=e,this.path=n,this.parentOffset=r,this.depth=n.length/3-1}resolveDepth(e){return e==null?this.depth:e<0?this.depth+e:e}get parent(){return this.node(this.depth)}get doc(){return this.node(0)}node(e){return this.path[this.resolveDepth(e)*3]}index(e){return this.path[this.resolveDepth(e)*3+1]}indexAfter(e){return e=this.resolveDepth(e),this.index(e)+(e==this.depth&&!this.textOffset?0:1)}start(e){return e=this.resolveDepth(e),e==0?0:this.path[e*3-1]+1}end(e){return e=this.resolveDepth(e),this.start(e)+this.node(e).content.size}before(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position before the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]}after(e){if(e=this.resolveDepth(e),!e)throw new RangeError("There is no position after the top-level node");return e==this.depth+1?this.pos:this.path[e*3-1]+this.path[e*3].nodeSize}get textOffset(){return this.pos-this.path[this.path.length-1]}get nodeAfter(){let e=this.parent,n=this.index(this.depth);if(n==e.childCount)return null;let r=this.pos-this.path[this.path.length-1],i=e.child(n);return r?e.child(n).cut(r):i}get nodeBefore(){let e=this.index(this.depth),n=this.pos-this.path[this.path.length-1];return n?this.parent.child(e).cut(0,n):e==0?null:this.parent.child(e-1)}posAtIndex(e,n){n=this.resolveDepth(n);let r=this.path[n*3],i=n==0?0:this.path[n*3-1]+1;for(let s=0;s<e;s++)i+=r.child(s).nodeSize;return i}marks(){let e=this.parent,n=this.index();if(e.content.size==0)return st.none;if(this.textOffset)return e.child(n).marks;let r=e.maybeChild(n-1),i=e.maybeChild(n);if(!r){let u=r;r=i,i=u}let s=r.marks;for(var a=0;a<s.length;a++)s[a].type.spec.inclusive===!1&&(!i||!s[a].isInSet(i.marks))&&(s=s[a--].removeFromSet(s));return s}marksAcross(e){let n=this.parent.maybeChild(this.index());if(!n||!n.isInline)return null;let r=n.marks,i=e.parent.maybeChild(e.index());for(var s=0;s<r.length;s++)r[s].type.spec.inclusive===!1&&(!i||!r[s].isInSet(i.marks))&&(r=r[s--].removeFromSet(r));return r}sharedDepth(e){for(let n=this.depth;n>0;n--)if(this.start(n)<=e&&this.end(n)>=e)return n;return 0}blockRange(e=this,n){if(e.pos<this.pos)return e.blockRange(this);for(let r=this.depth-(this.parent.inlineContent||this.pos==e.pos?1:0);r>=0;r--)if(e.pos<=this.end(r)&&(!n||n(this.node(r))))return new bp(this,e,r);return null}sameParent(e){return this.pos-this.parentOffset==e.pos-e.parentOffset}max(e){return e.pos>this.pos?e:this}min(e){return e.pos<this.pos?e:this}toString(){let e="";for(let n=1;n<=this.depth;n++)e+=(e?"/":"")+this.node(n).type.name+"_"+this.index(n-1);return e+":"+this.parentOffset}static resolve(e,n){if(!(n>=0&&n<=e.content.size))throw new RangeError("Position "+n+" out of range");let r=[],i=0,s=n;for(let a=e;;){let{index:u,offset:c}=a.content.findIndex(s),f=s-c;if(r.push(a,u,i+c),!f||(a=a.child(u),a.isText))break;s=f-1,i+=c+1}return new Jc(n,r,s)}static resolveCached(e,n){let r=vE.get(e);if(r)for(let s=0;s<r.elts.length;s++){let a=r.elts[s];if(a.pos==n)return a}else vE.set(e,r=new bU);let i=r.elts[r.i]=Jc.resolve(e,n);return r.i=(r.i+1)%yU,i}}class bU{constructor(){this.elts=[],this.i=0}}const yU=12,vE=new WeakMap;class bp{constructor(e,n,r){this.$from=e,this.$to=n,this.depth=r}get start(){return this.$from.before(this.depth+1)}get end(){return this.$to.after(this.depth+1)}get parent(){return this.$from.node(this.depth)}get startIndex(){return this.$from.index(this.depth)}get endIndex(){return this.$to.indexAfter(this.depth)}}const xU=Object.create(null);let zs=class D4{constructor(e,n,r,i=st.none){this.type=e,this.attrs=n,this.marks=i,this.content=r||ae.empty}get children(){return this.content.content}get nodeSize(){return this.isLeaf?1:2+this.content.size}get childCount(){return this.content.childCount}child(e){return this.content.child(e)}maybeChild(e){return this.content.maybeChild(e)}forEach(e){this.content.forEach(e)}nodesBetween(e,n,r,i=0){this.content.nodesBetween(e,n,r,i,this)}descendants(e){this.nodesBetween(0,this.content.size,e)}get textContent(){return this.isLeaf&&this.type.spec.leafText?this.type.spec.leafText(this):this.textBetween(0,this.content.size,"")}textBetween(e,n,r,i){return this.content.textBetween(e,n,r,i)}get firstChild(){return this.content.firstChild}get lastChild(){return this.content.lastChild}eq(e){return this==e||this.sameMarkup(e)&&this.content.eq(e.content)}sameMarkup(e){return this.hasMarkup(e.type,e.attrs,e.marks)}hasMarkup(e,n,r){return this.type==e&&mp(this.attrs,n||e.defaultAttrs||xU)&&st.sameSet(this.marks,r||st.none)}copy(e=null){return e==this.content?this:new D4(this.type,this.attrs,e,this.marks)}mark(e){return e==this.marks?this:new D4(this.type,this.attrs,this.content,e)}cut(e,n=this.content.size){return e==0&&n==this.content.size?this:this.copy(this.content.cut(e,n))}slice(e,n=this.content.size,r=!1){if(e==n)return pe.empty;let i=this.resolve(e),s=this.resolve(n),a=r?0:i.sharedDepth(n),u=i.start(a),f=i.node(a).content.cut(i.pos-u,s.pos-u);return new pe(f,i.depth-a,s.depth-a)}replace(e,n,r){return mU(this.resolve(e),this.resolve(n),r)}nodeAt(e){for(let n=this;;){let{index:r,offset:i}=n.content.findIndex(e);if(n=n.maybeChild(r),!n)return null;if(i==e||n.isText)return n;e-=i+1}}childAfter(e){let{index:n,offset:r}=this.content.findIndex(e);return{node:this.content.maybeChild(n),index:n,offset:r}}childBefore(e){if(e==0)return{node:null,index:0,offset:0};let{index:n,offset:r}=this.content.findIndex(e);if(r<e)return{node:this.content.child(n),index:n,offset:r};let i=this.content.child(n-1);return{node:i,index:n-1,offset:r-i.nodeSize}}resolve(e){return Jc.resolveCached(this,e)}resolveNoCache(e){return Jc.resolve(this,e)}rangeHasMark(e,n,r){let i=!1;return n>e&&this.nodesBetween(e,n,s=>(r.isInSet(s.marks)&&(i=!0),!i)),i}get isBlock(){return this.type.isBlock}get isTextblock(){return this.type.isTextblock}get inlineContent(){return this.type.inlineContent}get isInline(){return this.type.isInline}get isText(){return this.type.isText}get isLeaf(){return this.type.isLeaf}get isAtom(){return this.type.isAtom}toString(){if(this.type.spec.toDebugString)return this.type.spec.toDebugString(this);let e=this.type.name;return this.content.size&&(e+="("+this.content.toStringInner()+")"),l9(this.marks,e)}contentMatchAt(e){let n=this.type.contentMatch.matchFragment(this.content,0,e);if(!n)throw new Error("Called contentMatchAt on a node with invalid content");return n}canReplace(e,n,r=ae.empty,i=0,s=r.childCount){let a=this.contentMatchAt(e).matchFragment(r,i,s),u=a&&a.matchFragment(this.content,n);if(!u||!u.validEnd)return!1;for(let c=i;c<s;c++)if(!this.type.allowsMarks(r.child(c).marks))return!1;return!0}canReplaceWith(e,n,r,i){if(i&&!this.type.allowsMarks(i))return!1;let s=this.contentMatchAt(e).matchType(r),a=s&&s.matchFragment(this.content,n);return a?a.validEnd:!1}canAppend(e){return e.content.size?this.canReplace(this.childCount,this.childCount,e.content):this.type.compatibleContent(e.type)}check(){this.type.checkContent(this.content),this.type.checkAttrs(this.attrs);let e=st.none;for(let n=0;n<this.marks.length;n++){let r=this.marks[n];r.type.checkAttrs(r.attrs),e=r.addToSet(e)}if(!st.sameSet(e,this.marks))throw new RangeError(`Invalid collection of marks for node ${this.type.name}: ${this.marks.map(n=>n.type.name)}`);this.content.forEach(n=>n.check())}toJSON(){let e={type:this.type.name};for(let n in this.attrs){e.attrs=this.attrs;break}return this.content.size&&(e.content=this.content.toJSON()),this.marks.length&&(e.marks=this.marks.map(n=>n.toJSON())),e}static fromJSON(e,n){if(!n)throw new RangeError("Invalid input for Node.fromJSON");let r;if(n.marks){if(!Array.isArray(n.marks))throw new RangeError("Invalid mark data for Node.fromJSON");r=n.marks.map(e.markFromJSON)}if(n.type=="text"){if(typeof n.text!="string")throw new RangeError("Invalid text node in JSON");return e.text(n.text,r)}let i=ae.fromJSON(e,n.content),s=e.nodeType(n.type).create(n.attrs,i,r);return s.type.checkAttrs(s.attrs),s}};zs.prototype.text=void 0;class yp extends zs{constructor(e,n,r,i){if(super(e,n,null,i),!r)throw new RangeError("Empty text nodes are not allowed");this.text=r}toString(){return this.type.spec.toDebugString?this.type.spec.toDebugString(this):l9(this.marks,JSON.stringify(this.text))}get textContent(){return this.text}textBetween(e,n){return this.text.slice(e,n)}get nodeSize(){return this.text.length}mark(e){return e==this.marks?this:new yp(this.type,this.attrs,this.text,e)}withText(e){return e==this.text?this:new yp(this.type,this.attrs,e,this.marks)}cut(e=0,n=this.text.length){return e==0&&n==this.text.length?this:this.withText(this.text.slice(e,n))}eq(e){return this.sameMarkup(e)&&this.text==e.text}toJSON(){let e=super.toJSON();return e.text=this.text,e}}function l9(t,e){for(let n=t.length-1;n>=0;n--)e=t[n].type.name+"("+e+")";return e}class la{constructor(e){this.validEnd=e,this.next=[],this.wrapCache=[]}static parse(e,n){let r=new vU(e,n);if(r.next==null)return la.empty;let i=u9(r);r.next&&r.err("Unexpected trailing text");let s=$U(wU(i));return TU(s,r),s}matchType(e){for(let n=0;n<this.next.length;n++)if(this.next[n].type==e)return this.next[n].next;return null}matchFragment(e,n=0,r=e.childCount){let i=this;for(let s=n;i&&s<r;s++)i=i.matchType(e.child(s).type);return i}get inlineContent(){return this.next.length!=0&&this.next[0].type.isInline}get defaultType(){for(let e=0;e<this.next.length;e++){let{type:n}=this.next[e];if(!(n.isText||n.hasRequiredAttrs()))return n}return null}compatible(e){for(let n=0;n<this.next.length;n++)for(let r=0;r<e.next.length;r++)if(this.next[n].type==e.next[r].type)return!0;return!1}fillBefore(e,n=!1,r=0){let i=[this];function s(a,u){let c=a.matchFragment(e,r);if(c&&(!n||c.validEnd))return ae.from(u.map(f=>f.createAndFill()));for(let f=0;f<a.next.length;f++){let{type:h,next:m}=a.next[f];if(!(h.isText||h.hasRequiredAttrs())&&i.indexOf(m)==-1){i.push(m);let g=s(m,u.concat(h));if(g)return g}}return null}return s(this,[])}findWrapping(e){for(let r=0;r<this.wrapCache.length;r+=2)if(this.wrapCache[r]==e)return this.wrapCache[r+1];let n=this.computeWrapping(e);return this.wrapCache.push(e,n),n}computeWrapping(e){let n=Object.create(null),r=[{match:this,type:null,via:null}];for(;r.length;){let i=r.shift(),s=i.match;if(s.matchType(e)){let a=[];for(let u=i;u.type;u=u.via)a.push(u.type);return a.reverse()}for(let a=0;a<s.next.length;a++){let{type:u,next:c}=s.next[a];!u.isLeaf&&!u.hasRequiredAttrs()&&!(u.name in n)&&(!i.type||c.validEnd)&&(r.push({match:u.contentMatch,type:u,via:i}),n[u.name]=!0)}}return null}get edgeCount(){return this.next.length}edge(e){if(e>=this.next.length)throw new RangeError(`There's no ${e}th edge in this content match`);return this.next[e]}toString(){let e=[];function n(r){e.push(r);for(let i=0;i<r.next.length;i++)e.indexOf(r.next[i].next)==-1&&n(r.next[i].next)}return n(this),e.map((r,i)=>{let s=i+(r.validEnd?"*":" ")+" ";for(let a=0;a<r.next.length;a++)s+=(a?", ":"")+r.next[a].type.name+"->"+e.indexOf(r.next[a].next);return s}).join(`
22
+ `)}}la.empty=new la(!0);class vU{constructor(e,n){this.string=e,this.nodeTypes=n,this.inline=null,this.pos=0,this.tokens=e.split(/\s*(?=\b|\W|$)/),this.tokens[this.tokens.length-1]==""&&this.tokens.pop(),this.tokens[0]==""&&this.tokens.shift()}get next(){return this.tokens[this.pos]}eat(e){return this.next==e&&(this.pos++||!0)}err(e){throw new SyntaxError(e+" (in content expression '"+this.string+"')")}}function u9(t){let e=[];do e.push(kU(t));while(t.eat("|"));return e.length==1?e[0]:{type:"choice",exprs:e}}function kU(t){let e=[];do e.push(CU(t));while(t.next&&t.next!=")"&&t.next!="|");return e.length==1?e[0]:{type:"seq",exprs:e}}function CU(t){let e=SU(t);for(;;)if(t.eat("+"))e={type:"plus",expr:e};else if(t.eat("*"))e={type:"star",expr:e};else if(t.eat("?"))e={type:"opt",expr:e};else if(t.eat("{"))e=EU(t,e);else break;return e}function kE(t){/\D/.test(t.next)&&t.err("Expected number, got '"+t.next+"'");let e=Number(t.next);return t.pos++,e}function EU(t,e){let n=kE(t),r=n;return t.eat(",")&&(t.next!="}"?r=kE(t):r=-1),t.eat("}")||t.err("Unclosed braced range"),{type:"range",min:n,max:r,expr:e}}function DU(t,e){let n=t.nodeTypes,r=n[e];if(r)return[r];let i=[];for(let s in n){let a=n[s];a.isInGroup(e)&&i.push(a)}return i.length==0&&t.err("No node type or group '"+e+"' found"),i}function SU(t){if(t.eat("(")){let e=u9(t);return t.eat(")")||t.err("Missing closing paren"),e}else if(/\W/.test(t.next))t.err("Unexpected token '"+t.next+"'");else{let e=DU(t,t.next).map(n=>(t.inline==null?t.inline=n.isInline:t.inline!=n.isInline&&t.err("Mixing inline and block content"),{type:"name",value:n}));return t.pos++,e.length==1?e[0]:{type:"choice",exprs:e}}}function wU(t){let e=[[]];return i(s(t,0),n()),e;function n(){return e.push([])-1}function r(a,u,c){let f={term:c,to:u};return e[a].push(f),f}function i(a,u){a.forEach(c=>c.to=u)}function s(a,u){if(a.type=="choice")return a.exprs.reduce((c,f)=>c.concat(s(f,u)),[]);if(a.type=="seq")for(let c=0;;c++){let f=s(a.exprs[c],u);if(c==a.exprs.length-1)return f;i(f,u=n())}else if(a.type=="star"){let c=n();return r(u,c),i(s(a.expr,c),c),[r(c)]}else if(a.type=="plus"){let c=n();return i(s(a.expr,u),c),i(s(a.expr,c),c),[r(c)]}else{if(a.type=="opt")return[r(u)].concat(s(a.expr,u));if(a.type=="range"){let c=u;for(let f=0;f<a.min;f++){let h=n();i(s(a.expr,c),h),c=h}if(a.max==-1)i(s(a.expr,c),c);else for(let f=a.min;f<a.max;f++){let h=n();r(c,h),i(s(a.expr,c),h),c=h}return[r(c)]}else{if(a.type=="name")return[r(u,void 0,a.value)];throw new Error("Unknown expr type")}}}}function c9(t,e){return e-t}function CE(t,e){let n=[];return r(e),n.sort(c9);function r(i){let s=t[i];if(s.length==1&&!s[0].term)return r(s[0].to);n.push(i);for(let a=0;a<s.length;a++){let{term:u,to:c}=s[a];!u&&n.indexOf(c)==-1&&r(c)}}}function $U(t){let e=Object.create(null);return n(CE(t,0));function n(r){let i=[];r.forEach(a=>{t[a].forEach(({term:u,to:c})=>{if(!u)return;let f;for(let h=0;h<i.length;h++)i[h][0]==u&&(f=i[h][1]);CE(t,c).forEach(h=>{f||i.push([u,f=[]]),f.indexOf(h)==-1&&f.push(h)})})});let s=e[r.join(",")]=new la(r.indexOf(t.length-1)>-1);for(let a=0;a<i.length;a++){let u=i[a][1].sort(c9);s.next.push({type:i[a][0],next:e[u.join(",")]||n(u)})}return s}}function TU(t,e){for(let n=0,r=[t];n<r.length;n++){let i=r[n],s=!i.validEnd,a=[];for(let u=0;u<i.next.length;u++){let{type:c,next:f}=i.next[u];a.push(c.name),s&&!(c.isText||c.hasRequiredAttrs())&&(s=!1),r.indexOf(f)==-1&&r.push(f)}s&&e.err("Only non-generatable nodes ("+a.join(", ")+") in a required position (see https://prosemirror.net/docs/guide/#generatable)")}}function d9(t){let e=Object.create(null);for(let n in t){let r=t[n];if(!r.hasDefault)return null;e[n]=r.default}return e}function f9(t,e){let n=Object.create(null);for(let r in t){let i=e&&e[r];if(i===void 0){let s=t[r];if(s.hasDefault)i=s.default;else throw new RangeError("No value supplied for attribute "+r)}n[r]=i}return n}function h9(t,e,n,r){for(let i in e)if(!(i in t))throw new RangeError(`Unsupported attribute ${i} for ${n} of type ${r}`);for(let i in t)t[i].validate&&t[i].validate(e[i])}function p9(t,e){let n=Object.create(null);if(e)for(let r in e)n[r]=new BU(t,r,e[r]);return n}let EE=class m9{constructor(e,n,r){this.name=e,this.schema=n,this.spec=r,this.markSet=null,this.groups=r.group?r.group.split(" "):[],this.attrs=p9(e,r.attrs),this.defaultAttrs=d9(this.attrs),this.contentMatch=null,this.inlineContent=null,this.isBlock=!(r.inline||e=="text"),this.isText=e=="text"}get isInline(){return!this.isBlock}get isTextblock(){return this.isBlock&&this.inlineContent}get isLeaf(){return this.contentMatch==la.empty}get isAtom(){return this.isLeaf||!!this.spec.atom}isInGroup(e){return this.groups.indexOf(e)>-1}get whitespace(){return this.spec.whitespace||(this.spec.code?"pre":"normal")}hasRequiredAttrs(){for(let e in this.attrs)if(this.attrs[e].isRequired)return!0;return!1}compatibleContent(e){return this==e||this.contentMatch.compatible(e.contentMatch)}computeAttrs(e){return!e&&this.defaultAttrs?this.defaultAttrs:f9(this.attrs,e)}create(e=null,n,r){if(this.isText)throw new Error("NodeType.create can't construct text nodes");return new zs(this,this.computeAttrs(e),ae.from(n),st.setFrom(r))}createChecked(e=null,n,r){return n=ae.from(n),this.checkContent(n),new zs(this,this.computeAttrs(e),n,st.setFrom(r))}createAndFill(e=null,n,r){if(e=this.computeAttrs(e),n=ae.from(n),n.size){let a=this.contentMatch.fillBefore(n);if(!a)return null;n=a.append(n)}let i=this.contentMatch.matchFragment(n),s=i&&i.fillBefore(ae.empty,!0);return s?new zs(this,e,n.append(s),st.setFrom(r)):null}validContent(e){let n=this.contentMatch.matchFragment(e);if(!n||!n.validEnd)return!1;for(let r=0;r<e.childCount;r++)if(!this.allowsMarks(e.child(r).marks))return!1;return!0}checkContent(e){if(!this.validContent(e))throw new RangeError(`Invalid content for node ${this.name}: ${e.toString().slice(0,50)}`)}checkAttrs(e){h9(this.attrs,e,"node",this.name)}allowsMarkType(e){return this.markSet==null||this.markSet.indexOf(e)>-1}allowsMarks(e){if(this.markSet==null)return!0;for(let n=0;n<e.length;n++)if(!this.allowsMarkType(e[n].type))return!1;return!0}allowedMarks(e){if(this.markSet==null)return e;let n;for(let r=0;r<e.length;r++)this.allowsMarkType(e[r].type)?n&&n.push(e[r]):n||(n=e.slice(0,r));return n?n.length?n:st.none:e}static compile(e,n){let r=Object.create(null);e.forEach((s,a)=>r[s]=new m9(s,n,a));let i=n.spec.topNode||"doc";if(!r[i])throw new RangeError("Schema is missing its top node type ('"+i+"')");if(!r.text)throw new RangeError("Every schema needs a 'text' type");for(let s in r.text.attrs)throw new RangeError("The text node type should not have attributes");return r}};function AU(t,e,n){let r=n.split("|");return i=>{let s=i===null?"null":typeof i;if(r.indexOf(s)<0)throw new RangeError(`Expected value of type ${r} for attribute ${e} on type ${t}, got ${s}`)}}class BU{constructor(e,n,r){this.hasDefault=Object.prototype.hasOwnProperty.call(r,"default"),this.default=r.default,this.validate=typeof r.validate=="string"?AU(e,n,r.validate):r.validate}get isRequired(){return!this.hasDefault}}class Bm{constructor(e,n,r,i){this.name=e,this.rank=n,this.schema=r,this.spec=i,this.attrs=p9(e,i.attrs),this.excluded=null;let s=d9(this.attrs);this.instance=s?new st(this,s):null}create(e=null){return!e&&this.instance?this.instance:new st(this,f9(this.attrs,e))}static compile(e,n){let r=Object.create(null),i=0;return e.forEach((s,a)=>r[s]=new Bm(s,i++,n,a)),r}removeFromSet(e){for(var n=0;n<e.length;n++)e[n].type==this&&(e=e.slice(0,n).concat(e.slice(n+1)),n--);return e}isInSet(e){for(let n=0;n<e.length;n++)if(e[n].type==this)return e[n]}checkAttrs(e){h9(this.attrs,e,"mark",this.name)}excludes(e){return this.excluded.indexOf(e)>-1}}class g9{constructor(e){this.linebreakReplacement=null,this.cached=Object.create(null);let n=this.spec={};for(let i in e)n[i]=e[i];n.nodes=en.from(e.nodes),n.marks=en.from(e.marks||{}),this.nodes=EE.compile(this.spec.nodes,this),this.marks=Bm.compile(this.spec.marks,this);let r=Object.create(null);for(let i in this.nodes){if(i in this.marks)throw new RangeError(i+" can not be both a node and a mark");let s=this.nodes[i],a=s.spec.content||"",u=s.spec.marks;if(s.contentMatch=r[a]||(r[a]=la.parse(a,this.nodes)),s.inlineContent=s.contentMatch.inlineContent,s.spec.linebreakReplacement){if(this.linebreakReplacement)throw new RangeError("Multiple linebreak nodes defined");if(!s.isInline||!s.isLeaf)throw new RangeError("Linebreak replacement nodes must be inline leaf nodes");this.linebreakReplacement=s}s.markSet=u=="_"?null:u?DE(this,u.split(" ")):u==""||!s.inlineContent?[]:null}for(let i in this.marks){let s=this.marks[i],a=s.spec.excludes;s.excluded=a==null?[s]:a==""?[]:DE(this,a.split(" "))}this.nodeFromJSON=i=>zs.fromJSON(this,i),this.markFromJSON=i=>st.fromJSON(this,i),this.topNodeType=this.nodes[this.spec.topNode||"doc"],this.cached.wrappings=Object.create(null)}node(e,n=null,r,i){if(typeof e=="string")e=this.nodeType(e);else if(e instanceof EE){if(e.schema!=this)throw new RangeError("Node type from different schema used ("+e.name+")")}else throw new RangeError("Invalid node type: "+e);return e.createChecked(n,r,i)}text(e,n){let r=this.nodes.text;return new yp(r,r.defaultAttrs,e,st.setFrom(n))}mark(e,n){return typeof e=="string"&&(e=this.marks[e]),e.create(n)}nodeType(e){let n=this.nodes[e];if(!n)throw new RangeError("Unknown node type: "+e);return n}}function DE(t,e){let n=[];for(let r=0;r<e.length;r++){let i=e[r],s=t.marks[i],a=s;if(s)n.push(s);else for(let u in t.marks){let c=t.marks[u];(i=="_"||c.spec.group&&c.spec.group.split(" ").indexOf(i)>-1)&&n.push(a=c)}if(!a)throw new SyntaxError("Unknown mark type: '"+e[r]+"'")}return n}function MU(t){return t.tag!=null}function RU(t){return t.style!=null}class Mi{constructor(e,n){this.schema=e,this.rules=n,this.tags=[],this.styles=[];let r=this.matchedStyles=[];n.forEach(i=>{if(MU(i))this.tags.push(i);else if(RU(i)){let s=/[^=]*/.exec(i.style)[0];r.indexOf(s)<0&&r.push(s),this.styles.push(i)}}),this.normalizeLists=!this.tags.some(i=>{if(!/^(ul|ol)\b/.test(i.tag)||!i.node)return!1;let s=e.nodes[i.node];return s.contentMatch.matchType(s)})}parse(e,n={}){let r=new wE(this,n,!1);return r.addAll(e,st.none,n.from,n.to),r.finish()}parseSlice(e,n={}){let r=new wE(this,n,!0);return r.addAll(e,st.none,n.from,n.to),pe.maxOpen(r.finish())}matchTag(e,n,r){for(let i=r?this.tags.indexOf(r)+1:0;i<this.tags.length;i++){let s=this.tags[i];if(OU(e,s.tag)&&(s.namespace===void 0||e.namespaceURI==s.namespace)&&(!s.context||n.matchesContext(s.context))){if(s.getAttrs){let a=s.getAttrs(e);if(a===!1)continue;s.attrs=a||void 0}return s}}}matchStyle(e,n,r,i){for(let s=i?this.styles.indexOf(i)+1:0;s<this.styles.length;s++){let a=this.styles[s],u=a.style;if(!(u.indexOf(e)!=0||a.context&&!r.matchesContext(a.context)||u.length>e.length&&(u.charCodeAt(e.length)!=61||u.slice(e.length+1)!=n))){if(a.getAttrs){let c=a.getAttrs(n);if(c===!1)continue;a.attrs=c||void 0}return a}}}static schemaRules(e){let n=[];function r(i){let s=i.priority==null?50:i.priority,a=0;for(;a<n.length;a++){let u=n[a];if((u.priority==null?50:u.priority)<s)break}n.splice(a,0,i)}for(let i in e.marks){let s=e.marks[i].spec.parseDOM;s&&s.forEach(a=>{r(a=$E(a)),a.mark||a.ignore||a.clearMark||(a.mark=i)})}for(let i in e.nodes){let s=e.nodes[i].spec.parseDOM;s&&s.forEach(a=>{r(a=$E(a)),a.node||a.ignore||a.mark||(a.node=i)})}return n}static fromSchema(e){return e.cached.domParser||(e.cached.domParser=new Mi(e,Mi.schemaRules(e)))}}const b9={address:!0,article:!0,aside:!0,blockquote:!0,body:!0,canvas:!0,dd:!0,div:!0,dl:!0,fieldset:!0,figcaption:!0,figure:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,li:!0,noscript:!0,ol:!0,output:!0,p:!0,pre:!0,section:!0,table:!0,tfoot:!0,ul:!0},NU={head:!0,noscript:!0,object:!0,script:!0,style:!0,title:!0},y9={ol:!0,ul:!0},Zc=1,S4=2,Dc=4;function SE(t,e,n){return e!=null?(e?Zc:0)|(e==="full"?S4:0):t&&t.whitespace=="pre"?Zc|S4:n&~Dc}class fh{constructor(e,n,r,i,s,a){this.type=e,this.attrs=n,this.marks=r,this.solid=i,this.options=a,this.content=[],this.activeMarks=st.none,this.match=s||(a&Dc?null:e.contentMatch)}findWrapping(e){if(!this.match){if(!this.type)return[];let n=this.type.contentMatch.fillBefore(ae.from(e));if(n)this.match=this.type.contentMatch.matchFragment(n);else{let r=this.type.contentMatch,i;return(i=r.findWrapping(e.type))?(this.match=r,i):null}}return this.match.findWrapping(e.type)}finish(e){if(!(this.options&Zc)){let r=this.content[this.content.length-1],i;if(r&&r.isText&&(i=/[ \t\r\n\u000c]+$/.exec(r.text))){let s=r;r.text.length==i[0].length?this.content.pop():this.content[this.content.length-1]=s.withText(s.text.slice(0,s.text.length-i[0].length))}}let n=ae.from(this.content);return!e&&this.match&&(n=n.append(this.match.fillBefore(ae.empty,!0))),this.type?this.type.create(this.attrs,n,this.marks):n}inlineContext(e){return this.type?this.type.inlineContent:this.content.length?this.content[0].isInline:e.parentNode&&!b9.hasOwnProperty(e.parentNode.nodeName.toLowerCase())}}class wE{constructor(e,n,r){this.parser=e,this.options=n,this.isOpen=r,this.open=0,this.localPreserveWS=!1;let i=n.topNode,s,a=SE(null,n.preserveWhitespace,0)|(r?Dc:0);i?s=new fh(i.type,i.attrs,st.none,!0,n.topMatch||i.type.contentMatch,a):r?s=new fh(null,null,st.none,!0,null,a):s=new fh(e.schema.topNodeType,null,st.none,!0,null,a),this.nodes=[s],this.find=n.findPositions,this.needsBlock=!1}get top(){return this.nodes[this.open]}addDOM(e,n){e.nodeType==3?this.addTextNode(e,n):e.nodeType==1&&this.addElement(e,n)}addTextNode(e,n){let r=e.nodeValue,i=this.top,s=i.options&S4?"full":this.localPreserveWS||(i.options&Zc)>0,{schema:a}=this.parser;if(s==="full"||i.inlineContext(e)||/[^ \t\r\n\u000c]/.test(r)){if(s)if(s==="full")r=r.replace(/\r\n?/g,`
23
+ `);else if(a.linebreakReplacement&&/[\r\n]/.test(r)&&this.top.findWrapping(a.linebreakReplacement.create())){let u=r.split(/\r?\n|\r/);for(let c=0;c<u.length;c++)c&&this.insertNode(a.linebreakReplacement.create(),n,!0),u[c]&&this.insertNode(a.text(u[c]),n,!/\S/.test(u[c]));r=""}else r=r.replace(/\r?\n|\r/g," ");else if(r=r.replace(/[ \t\r\n\u000c]+/g," "),/^[ \t\r\n\u000c]/.test(r)&&this.open==this.nodes.length-1){let u=i.content[i.content.length-1],c=e.previousSibling;(!u||c&&c.nodeName=="BR"||u.isText&&/[ \t\r\n\u000c]$/.test(u.text))&&(r=r.slice(1))}r&&this.insertNode(a.text(r),n,!/\S/.test(r)),this.findInText(e)}else this.findInside(e)}addElement(e,n,r){let i=this.localPreserveWS,s=this.top;(e.tagName=="PRE"||/pre/.test(e.style&&e.style.whiteSpace))&&(this.localPreserveWS=!0);let a=e.nodeName.toLowerCase(),u;y9.hasOwnProperty(a)&&this.parser.normalizeLists&&PU(e);let c=this.options.ruleFromNode&&this.options.ruleFromNode(e)||(u=this.parser.matchTag(e,this,r));e:if(c?c.ignore:NU.hasOwnProperty(a))this.findInside(e),this.ignoreFallback(e,n);else if(!c||c.skip||c.closeParent){c&&c.closeParent?this.open=Math.max(0,this.open-1):c&&c.skip.nodeType&&(e=c.skip);let f,h=this.needsBlock;if(b9.hasOwnProperty(a))s.content.length&&s.content[0].isInline&&this.open&&(this.open--,s=this.top),f=!0,s.type||(this.needsBlock=!0);else if(!e.firstChild){this.leafFallback(e,n);break e}let m=c&&c.skip?n:this.readStyles(e,n);m&&this.addAll(e,m),f&&this.sync(s),this.needsBlock=h}else{let f=this.readStyles(e,n);f&&this.addElementByRule(e,c,f,c.consuming===!1?u:void 0)}this.localPreserveWS=i}leafFallback(e,n){e.nodeName=="BR"&&this.top.type&&this.top.type.inlineContent&&this.addTextNode(e.ownerDocument.createTextNode(`
24
+ `),n)}ignoreFallback(e,n){e.nodeName=="BR"&&(!this.top.type||!this.top.type.inlineContent)&&this.findPlace(this.parser.schema.text("-"),n,!0)}readStyles(e,n){let r=e.style;if(r&&r.length)for(let i=0;i<this.parser.matchedStyles.length;i++){let s=this.parser.matchedStyles[i],a=r.getPropertyValue(s);if(a)for(let u=void 0;;){let c=this.parser.matchStyle(s,a,this,u);if(!c)break;if(c.ignore)return null;if(c.clearMark?n=n.filter(f=>!c.clearMark(f)):n=n.concat(this.parser.schema.marks[c.mark].create(c.attrs)),c.consuming===!1)u=c;else break}}return n}addElementByRule(e,n,r,i){let s,a;if(n.node)if(a=this.parser.schema.nodes[n.node],a.isLeaf)this.insertNode(a.create(n.attrs),r,e.nodeName=="BR")||this.leafFallback(e,r);else{let c=this.enter(a,n.attrs||null,r,n.preserveWhitespace);c&&(s=!0,r=c)}else{let c=this.parser.schema.marks[n.mark];r=r.concat(c.create(n.attrs))}let u=this.top;if(a&&a.isLeaf)this.findInside(e);else if(i)this.addElement(e,r,i);else if(n.getContent)this.findInside(e),n.getContent(e,this.parser.schema).forEach(c=>this.insertNode(c,r,!1));else{let c=e;typeof n.contentElement=="string"?c=e.querySelector(n.contentElement):typeof n.contentElement=="function"?c=n.contentElement(e):n.contentElement&&(c=n.contentElement),this.findAround(e,c,!0),this.addAll(c,r),this.findAround(e,c,!1)}s&&this.sync(u)&&this.open--}addAll(e,n,r,i){let s=r||0;for(let a=r?e.childNodes[r]:e.firstChild,u=i==null?null:e.childNodes[i];a!=u;a=a.nextSibling,++s)this.findAtPoint(e,s),this.addDOM(a,n);this.findAtPoint(e,s)}findPlace(e,n,r){let i,s;for(let a=this.open,u=0;a>=0;a--){let c=this.nodes[a],f=c.findWrapping(e);if(f&&(!i||i.length>f.length+u)&&(i=f,s=c,!f.length))break;if(c.solid){if(r)break;u+=2}}if(!i)return null;this.sync(s);for(let a=0;a<i.length;a++)n=this.enterInner(i[a],null,n,!1);return n}insertNode(e,n,r){if(e.isInline&&this.needsBlock&&!this.top.type){let s=this.textblockFromContext();s&&(n=this.enterInner(s,null,n))}let i=this.findPlace(e,n,r);if(i){this.closeExtra();let s=this.top;s.match&&(s.match=s.match.matchType(e.type));let a=st.none;for(let u of i.concat(e.marks))(s.type?s.type.allowsMarkType(u.type):TE(u.type,e.type))&&(a=u.addToSet(a));return s.content.push(e.mark(a)),!0}return!1}enter(e,n,r,i){let s=this.findPlace(e.create(n),r,!1);return s&&(s=this.enterInner(e,n,r,!0,i)),s}enterInner(e,n,r,i=!1,s){this.closeExtra();let a=this.top;a.match=a.match&&a.match.matchType(e);let u=SE(e,s,a.options);a.options&Dc&&a.content.length==0&&(u|=Dc);let c=st.none;return r=r.filter(f=>(a.type?a.type.allowsMarkType(f.type):TE(f.type,e))?(c=f.addToSet(c),!1):!0),this.nodes.push(new fh(e,n,c,i,null,u)),this.open++,r}closeExtra(e=!1){let n=this.nodes.length-1;if(n>this.open){for(;n>this.open;n--)this.nodes[n-1].content.push(this.nodes[n].finish(e));this.nodes.length=this.open+1}}finish(){return this.open=0,this.closeExtra(this.isOpen),this.nodes[0].finish(!!(this.isOpen||this.options.topOpen))}sync(e){for(let n=this.open;n>=0;n--){if(this.nodes[n]==e)return this.open=n,!0;this.localPreserveWS&&(this.nodes[n].options|=Zc)}return!1}get currentPos(){this.closeExtra();let e=0;for(let n=this.open;n>=0;n--){let r=this.nodes[n].content;for(let i=r.length-1;i>=0;i--)e+=r[i].nodeSize;n&&e++}return e}findAtPoint(e,n){if(this.find)for(let r=0;r<this.find.length;r++)this.find[r].node==e&&this.find[r].offset==n&&(this.find[r].pos=this.currentPos)}findInside(e){if(this.find)for(let n=0;n<this.find.length;n++)this.find[n].pos==null&&e.nodeType==1&&e.contains(this.find[n].node)&&(this.find[n].pos=this.currentPos)}findAround(e,n,r){if(e!=n&&this.find)for(let i=0;i<this.find.length;i++)this.find[i].pos==null&&e.nodeType==1&&e.contains(this.find[i].node)&&n.compareDocumentPosition(this.find[i].node)&(r?2:4)&&(this.find[i].pos=this.currentPos)}findInText(e){if(this.find)for(let n=0;n<this.find.length;n++)this.find[n].node==e&&(this.find[n].pos=this.currentPos-(e.nodeValue.length-this.find[n].offset))}matchesContext(e){if(e.indexOf("|")>-1)return e.split(/\s*\|\s*/).some(this.matchesContext,this);let n=e.split("/"),r=this.options.context,i=!this.isOpen&&(!r||r.parent.type==this.nodes[0].type),s=-(r?r.depth+1:0)+(i?0:1),a=(u,c)=>{for(;u>=0;u--){let f=n[u];if(f==""){if(u==n.length-1||u==0)continue;for(;c>=s;c--)if(a(u-1,c))return!0;return!1}else{let h=c>0||c==0&&i?this.nodes[c].type:r&&c>=s?r.node(c-s).type:null;if(!h||h.name!=f&&!h.isInGroup(f))return!1;c--}}return!0};return a(n.length-1,this.open)}textblockFromContext(){let e=this.options.context;if(e)for(let n=e.depth;n>=0;n--){let r=e.node(n).contentMatchAt(e.indexAfter(n)).defaultType;if(r&&r.isTextblock&&r.defaultAttrs)return r}for(let n in this.parser.schema.nodes){let r=this.parser.schema.nodes[n];if(r.isTextblock&&r.defaultAttrs)return r}}}function PU(t){for(let e=t.firstChild,n=null;e;e=e.nextSibling){let r=e.nodeType==1?e.nodeName.toLowerCase():null;r&&y9.hasOwnProperty(r)&&n?(n.appendChild(e),e=n):r=="li"?n=e:r&&(n=null)}}function OU(t,e){return(t.matches||t.msMatchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector).call(t,e)}function $E(t){let e={};for(let n in t)e[n]=t[n];return e}function TE(t,e){let n=e.schema.nodes;for(let r in n){let i=n[r];if(!i.allowsMarkType(t))continue;let s=[],a=u=>{s.push(u);for(let c=0;c<u.edgeCount;c++){let{type:f,next:h}=u.edge(c);if(f==e||s.indexOf(h)<0&&a(h))return!0}};if(a(i.contentMatch))return!0}}class Ca{constructor(e,n){this.nodes=e,this.marks=n}serializeFragment(e,n={},r){r||(r=hh(n).createDocumentFragment());let i=r,s=[];return e.forEach(a=>{if(s.length||a.marks.length){let u=0,c=0;for(;u<s.length&&c<a.marks.length;){let f=a.marks[c];if(!this.marks[f.type.name]){c++;continue}if(!f.eq(s[u][0])||f.type.spec.spanning===!1)break;u++,c++}for(;u<s.length;)i=s.pop()[1];for(;c<a.marks.length;){let f=a.marks[c++],h=this.serializeMark(f,a.isInline,n);h&&(s.push([f,i]),i.appendChild(h.dom),i=h.contentDOM||h.dom)}}i.appendChild(this.serializeNodeInner(a,n))}),r}serializeNodeInner(e,n){if(e.isText)return hh(n).createTextNode(e.text);let{dom:r,contentDOM:i}=Ih(hh(n),this.nodes[e.type.name](e),null,e.attrs);if(i){if(e.isLeaf)throw new RangeError("Content hole not allowed in a leaf node spec");this.serializeFragment(e.content,n,i)}return r}serializeNode(e,n={}){let r=this.serializeNodeInner(e,n);for(let i=e.marks.length-1;i>=0;i--){let s=this.serializeMark(e.marks[i],e.isInline,n);s&&((s.contentDOM||s.dom).appendChild(r),r=s.dom)}return r}serializeMark(e,n,r={}){let i=this.marks[e.type.name];return i&&Ih(hh(r),i(e,n),null,e.attrs)}static renderSpec(e,n,r=null,i){return typeof n=="string"?{dom:e.createTextNode(n)}:Ih(e,n,r,i)}static fromSchema(e){return e.cached.domSerializer||(e.cached.domSerializer=new Ca(this.nodesFromSchema(e),this.marksFromSchema(e)))}static nodesFromSchema(e){let n=AE(e.nodes);return n.text||(n.text=r=>r.text),n}static marksFromSchema(e){return AE(e.marks)}}function AE(t){let e={};for(let n in t){let r=t[n].spec.toDOM;r&&(e[n]=r)}return e}function hh(t){return t.document||window.document}const BE=new WeakMap;function LU(t){let e=BE.get(t);return e===void 0&&BE.set(t,e=zU(t)),e}function zU(t){let e=null;function n(r){if(r&&typeof r=="object")if(Array.isArray(r))if(typeof r[0]=="string")e||(e=[]),e.push(r);else for(let i=0;i<r.length;i++)n(r[i]);else for(let i in r)n(r[i])}return n(t),e}function Ih(t,e,n,r){if(e.nodeType==1)return{dom:e};if(e.dom&&e.dom.nodeType==1)return e;let i=e[0],s;if(typeof i!="string")throw new RangeError("Invalid array passed to renderSpec");if(r&&(s=LU(r))&&s.indexOf(e)>-1)throw new RangeError("Using an array from an attribute object as a DOM spec. This may be an attempted cross site scripting attack.");let a=i.indexOf(" ");a>0&&(n=i.slice(0,a),i=i.slice(a+1));let u,c=n?t.createElementNS(n,i):t.createElement(i),f=e[1],h=1;if(f&&typeof f=="object"&&f.nodeType==null&&!Array.isArray(f)){h=2;for(let m in f)if(f[m]!=null){let g=m.indexOf(" ");g>0?c.setAttributeNS(m.slice(0,g),m.slice(g+1),f[m]):m=="style"&&c.style?c.style.cssText=f[m]:c.setAttribute(m,f[m])}}for(let m=h;m<e.length;m++){let g=e[m];if(g===0){if(m<e.length-1||m>h)throw new RangeError("Content hole must be the only child of its parent node");return{dom:c,contentDOM:c}}else if(typeof g=="string")c.appendChild(t.createTextNode(g));else{let{dom:b,contentDOM:x}=Ih(t,g,n,r);if(c.appendChild(b),x){if(u)throw new RangeError("Multiple content holes");u=x}}}return{dom:c,contentDOM:u}}const x9=65535,v9=Math.pow(2,16);function IU(t,e){return t+e*v9}function ME(t){return t&x9}function jU(t){return(t-(t&x9))/v9}const k9=1,C9=2,jh=4,E9=8;class w4{constructor(e,n,r){this.pos=e,this.delInfo=n,this.recover=r}get deleted(){return(this.delInfo&E9)>0}get deletedBefore(){return(this.delInfo&(k9|jh))>0}get deletedAfter(){return(this.delInfo&(C9|jh))>0}get deletedAcross(){return(this.delInfo&jh)>0}}class Xn{constructor(e,n=!1){if(this.ranges=e,this.inverted=n,!e.length&&Xn.empty)return Xn.empty}recover(e){let n=0,r=ME(e);if(!this.inverted)for(let i=0;i<r;i++)n+=this.ranges[i*3+2]-this.ranges[i*3+1];return this.ranges[r*3]+n+jU(e)}mapResult(e,n=1){return this._map(e,n,!1)}map(e,n=1){return this._map(e,n,!0)}_map(e,n,r){let i=0,s=this.inverted?2:1,a=this.inverted?1:2;for(let u=0;u<this.ranges.length;u+=3){let c=this.ranges[u]-(this.inverted?i:0);if(c>e)break;let f=this.ranges[u+s],h=this.ranges[u+a],m=c+f;if(e<=m){let g=f?e==c?-1:e==m?1:n:n,b=c+i+(g<0?0:h);if(r)return b;let x=e==(n<0?c:m)?null:IU(u/3,e-c),k=e==c?C9:e==m?k9:jh;return(n<0?e!=c:e!=m)&&(k|=E9),new w4(b,k,x)}i+=h-f}return r?e+i:new w4(e+i,0,null)}touches(e,n){let r=0,i=ME(n),s=this.inverted?2:1,a=this.inverted?1:2;for(let u=0;u<this.ranges.length;u+=3){let c=this.ranges[u]-(this.inverted?r:0);if(c>e)break;let f=this.ranges[u+s],h=c+f;if(e<=h&&u==i*3)return!0;r+=this.ranges[u+a]-f}return!1}forEach(e){let n=this.inverted?2:1,r=this.inverted?1:2;for(let i=0,s=0;i<this.ranges.length;i+=3){let a=this.ranges[i],u=a-(this.inverted?s:0),c=a+(this.inverted?0:s),f=this.ranges[i+n],h=this.ranges[i+r];e(u,u+f,c,c+h),s+=h-f}}invert(){return new Xn(this.ranges,!this.inverted)}toString(){return(this.inverted?"-":"")+JSON.stringify(this.ranges)}static offset(e){return e==0?Xn.empty:new Xn(e<0?[0,-e,0]:[0,0,e])}}Xn.empty=new Xn([]);class ed{constructor(e,n,r=0,i=e?e.length:0){this.mirror=n,this.from=r,this.to=i,this._maps=e||[],this.ownData=!(e||n)}get maps(){return this._maps}slice(e=0,n=this.maps.length){return new ed(this._maps,this.mirror,e,n)}appendMap(e,n){this.ownData||(this._maps=this._maps.slice(),this.mirror=this.mirror&&this.mirror.slice(),this.ownData=!0),this.to=this._maps.push(e),n!=null&&this.setMirror(this._maps.length-1,n)}appendMapping(e){for(let n=0,r=this._maps.length;n<e._maps.length;n++){let i=e.getMirror(n);this.appendMap(e._maps[n],i!=null&&i<n?r+i:void 0)}}getMirror(e){if(this.mirror){for(let n=0;n<this.mirror.length;n++)if(this.mirror[n]==e)return this.mirror[n+(n%2?-1:1)]}}setMirror(e,n){this.mirror||(this.mirror=[]),this.mirror.push(e,n)}appendMappingInverted(e){for(let n=e.maps.length-1,r=this._maps.length+e._maps.length;n>=0;n--){let i=e.getMirror(n);this.appendMap(e._maps[n].invert(),i!=null&&i>n?r-i-1:void 0)}}invert(){let e=new ed;return e.appendMappingInverted(this),e}map(e,n=1){if(this.mirror)return this._map(e,n,!0);for(let r=this.from;r<this.to;r++)e=this._maps[r].map(e,n);return e}mapResult(e,n=1){return this._map(e,n,!1)}_map(e,n,r){let i=0;for(let s=this.from;s<this.to;s++){let a=this._maps[s],u=a.mapResult(e,n);if(u.recover!=null){let c=this.getMirror(s);if(c!=null&&c>s&&c<this.to){s=c,e=this._maps[c].recover(u.recover);continue}}i|=u.delInfo,e=u.pos}return r?e:new w4(e,i,null)}}const Z0=Object.create(null);class gn{getMap(){return Xn.empty}merge(e){return null}static fromJSON(e,n){if(!n||!n.stepType)throw new RangeError("Invalid input for Step.fromJSON");let r=Z0[n.stepType];if(!r)throw new RangeError(`No step type ${n.stepType} defined`);return r.fromJSON(e,n)}static jsonID(e,n){if(e in Z0)throw new RangeError("Duplicate use of step JSON ID "+e);return Z0[e]=n,n.prototype.jsonID=e,n}}class Ot{constructor(e,n){this.doc=e,this.failed=n}static ok(e){return new Ot(e,null)}static fail(e){return new Ot(null,e)}static fromReplace(e,n,r,i){try{return Ot.ok(e.replace(n,r,i))}catch(s){if(s instanceof Xc)return Ot.fail(s.message);throw s}}}function lx(t,e,n){let r=[];for(let i=0;i<t.childCount;i++){let s=t.child(i);s.content.size&&(s=s.copy(lx(s.content,e,s))),s.isInline&&(s=e(s,n,i)),r.push(s)}return ae.fromArray(r)}class Rs extends gn{constructor(e,n,r){super(),this.from=e,this.to=n,this.mark=r}apply(e){let n=e.slice(this.from,this.to),r=e.resolve(this.from),i=r.node(r.sharedDepth(this.to)),s=new pe(lx(n.content,(a,u)=>!a.isAtom||!u.type.allowsMarkType(this.mark.type)?a:a.mark(this.mark.addToSet(a.marks)),i),n.openStart,n.openEnd);return Ot.fromReplace(e,this.from,this.to,s)}invert(){return new Br(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new Rs(n.pos,r.pos,this.mark)}merge(e){return e instanceof Rs&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new Rs(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"addMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for AddMarkStep.fromJSON");return new Rs(n.from,n.to,e.markFromJSON(n.mark))}}gn.jsonID("addMark",Rs);class Br extends gn{constructor(e,n,r){super(),this.from=e,this.to=n,this.mark=r}apply(e){let n=e.slice(this.from,this.to),r=new pe(lx(n.content,i=>i.mark(this.mark.removeFromSet(i.marks)),e),n.openStart,n.openEnd);return Ot.fromReplace(e,this.from,this.to,r)}invert(){return new Rs(this.from,this.to,this.mark)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1);return n.deleted&&r.deleted||n.pos>=r.pos?null:new Br(n.pos,r.pos,this.mark)}merge(e){return e instanceof Br&&e.mark.eq(this.mark)&&this.from<=e.to&&this.to>=e.from?new Br(Math.min(this.from,e.from),Math.max(this.to,e.to),this.mark):null}toJSON(){return{stepType:"removeMark",mark:this.mark.toJSON(),from:this.from,to:this.to}}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for RemoveMarkStep.fromJSON");return new Br(n.from,n.to,e.markFromJSON(n.mark))}}gn.jsonID("removeMark",Br);class Ns extends gn{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return Ot.fail("No node at mark step's position");let r=n.type.create(n.attrs,null,this.mark.addToSet(n.marks));return Ot.fromReplace(e,this.pos,this.pos+1,new pe(ae.from(r),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);if(n){let r=this.mark.addToSet(n.marks);if(r.length==n.marks.length){for(let i=0;i<n.marks.length;i++)if(!n.marks[i].isInSet(r))return new Ns(this.pos,n.marks[i]);return new Ns(this.pos,this.mark)}}return new ua(this.pos,this.mark)}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new Ns(n.pos,this.mark)}toJSON(){return{stepType:"addNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for AddNodeMarkStep.fromJSON");return new Ns(n.pos,e.markFromJSON(n.mark))}}gn.jsonID("addNodeMark",Ns);class ua extends gn{constructor(e,n){super(),this.pos=e,this.mark=n}apply(e){let n=e.nodeAt(this.pos);if(!n)return Ot.fail("No node at mark step's position");let r=n.type.create(n.attrs,null,this.mark.removeFromSet(n.marks));return Ot.fromReplace(e,this.pos,this.pos+1,new pe(ae.from(r),0,n.isLeaf?0:1))}invert(e){let n=e.nodeAt(this.pos);return!n||!this.mark.isInSet(n.marks)?this:new Ns(this.pos,this.mark)}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new ua(n.pos,this.mark)}toJSON(){return{stepType:"removeNodeMark",pos:this.pos,mark:this.mark.toJSON()}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for RemoveNodeMarkStep.fromJSON");return new ua(n.pos,e.markFromJSON(n.mark))}}gn.jsonID("removeNodeMark",ua);class Nt extends gn{constructor(e,n,r,i=!1){super(),this.from=e,this.to=n,this.slice=r,this.structure=i}apply(e){return this.structure&&$4(e,this.from,this.to)?Ot.fail("Structure replace would overwrite content"):Ot.fromReplace(e,this.from,this.to,this.slice)}getMap(){return new Xn([this.from,this.to-this.from,this.slice.size])}invert(e){return new Nt(this.from,this.from+this.slice.size,e.slice(this.from,this.to))}map(e){let n=e.mapResult(this.to,-1),r=this.from==this.to&&Nt.MAP_BIAS<0?n:e.mapResult(this.from,1);return r.deletedAcross&&n.deletedAcross?null:new Nt(r.pos,Math.max(r.pos,n.pos),this.slice,this.structure)}merge(e){if(!(e instanceof Nt)||e.structure||this.structure)return null;if(this.from+this.slice.size==e.from&&!this.slice.openEnd&&!e.slice.openStart){let n=this.slice.size+e.slice.size==0?pe.empty:new pe(this.slice.content.append(e.slice.content),this.slice.openStart,e.slice.openEnd);return new Nt(this.from,this.to+(e.to-e.from),n,this.structure)}else if(e.to==this.from&&!this.slice.openStart&&!e.slice.openEnd){let n=this.slice.size+e.slice.size==0?pe.empty:new pe(e.slice.content.append(this.slice.content),e.slice.openStart,this.slice.openEnd);return new Nt(e.from,this.to,n,this.structure)}else return null}toJSON(){let e={stepType:"replace",from:this.from,to:this.to};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number")throw new RangeError("Invalid input for ReplaceStep.fromJSON");return new Nt(n.from,n.to,pe.fromJSON(e,n.slice),!!n.structure)}}Nt.MAP_BIAS=1;gn.jsonID("replace",Nt);class Ut extends gn{constructor(e,n,r,i,s,a,u=!1){super(),this.from=e,this.to=n,this.gapFrom=r,this.gapTo=i,this.slice=s,this.insert=a,this.structure=u}apply(e){if(this.structure&&($4(e,this.from,this.gapFrom)||$4(e,this.gapTo,this.to)))return Ot.fail("Structure gap-replace would overwrite content");let n=e.slice(this.gapFrom,this.gapTo);if(n.openStart||n.openEnd)return Ot.fail("Gap is not a flat range");let r=this.slice.insertAt(this.insert,n.content);return r?Ot.fromReplace(e,this.from,this.to,r):Ot.fail("Content does not fit in gap")}getMap(){return new Xn([this.from,this.gapFrom-this.from,this.insert,this.gapTo,this.to-this.gapTo,this.slice.size-this.insert])}invert(e){let n=this.gapTo-this.gapFrom;return new Ut(this.from,this.from+this.slice.size+n,this.from+this.insert,this.from+this.insert+n,e.slice(this.from,this.to).removeBetween(this.gapFrom-this.from,this.gapTo-this.from),this.gapFrom-this.from,this.structure)}map(e){let n=e.mapResult(this.from,1),r=e.mapResult(this.to,-1),i=this.from==this.gapFrom?n.pos:e.map(this.gapFrom,-1),s=this.to==this.gapTo?r.pos:e.map(this.gapTo,1);return n.deletedAcross&&r.deletedAcross||i<n.pos||s>r.pos?null:new Ut(n.pos,r.pos,i,s,this.slice,this.insert,this.structure)}toJSON(){let e={stepType:"replaceAround",from:this.from,to:this.to,gapFrom:this.gapFrom,gapTo:this.gapTo,insert:this.insert};return this.slice.size&&(e.slice=this.slice.toJSON()),this.structure&&(e.structure=!0),e}static fromJSON(e,n){if(typeof n.from!="number"||typeof n.to!="number"||typeof n.gapFrom!="number"||typeof n.gapTo!="number"||typeof n.insert!="number")throw new RangeError("Invalid input for ReplaceAroundStep.fromJSON");return new Ut(n.from,n.to,n.gapFrom,n.gapTo,pe.fromJSON(e,n.slice),n.insert,!!n.structure)}}gn.jsonID("replaceAround",Ut);function $4(t,e,n){let r=t.resolve(e),i=n-e,s=r.depth;for(;i>0&&s>0&&r.indexAfter(s)==r.node(s).childCount;)s--,i--;if(i>0){let a=r.node(s).maybeChild(r.indexAfter(s));for(;i>0;){if(!a||a.isLeaf)return!0;a=a.firstChild,i--}}return!1}function FU(t,e,n,r){let i=[],s=[],a,u;t.doc.nodesBetween(e,n,(c,f,h)=>{if(!c.isInline)return;let m=c.marks;if(!r.isInSet(m)&&h.type.allowsMarkType(r.type)){let g=Math.max(f,e),b=Math.min(f+c.nodeSize,n),x=r.addToSet(m);for(let k=0;k<m.length;k++)m[k].isInSet(x)||(a&&a.to==g&&a.mark.eq(m[k])?a.to=b:i.push(a=new Br(g,b,m[k])));u&&u.to==g?u.to=b:s.push(u=new Rs(g,b,r))}}),i.forEach(c=>t.step(c)),s.forEach(c=>t.step(c))}function KU(t,e,n,r){let i=[],s=0;t.doc.nodesBetween(e,n,(a,u)=>{if(!a.isInline)return;s++;let c=null;if(r instanceof Bm){let f=a.marks,h;for(;h=r.isInSet(f);)(c||(c=[])).push(h),f=h.removeFromSet(f)}else r?r.isInSet(a.marks)&&(c=[r]):c=a.marks;if(c&&c.length){let f=Math.min(u+a.nodeSize,n);for(let h=0;h<c.length;h++){let m=c[h],g;for(let b=0;b<i.length;b++){let x=i[b];x.step==s-1&&m.eq(i[b].style)&&(g=x)}g?(g.to=f,g.step=s):i.push({style:m,from:Math.max(u,e),to:f,step:s})}}}),i.forEach(a=>t.step(new Br(a.from,a.to,a.style)))}function ux(t,e,n,r=n.contentMatch,i=!0){let s=t.doc.nodeAt(e),a=[],u=e+1;for(let c=0;c<s.childCount;c++){let f=s.child(c),h=u+f.nodeSize,m=r.matchType(f.type);if(!m)a.push(new Nt(u,h,pe.empty));else{r=m;for(let g=0;g<f.marks.length;g++)n.allowsMarkType(f.marks[g].type)||t.step(new Br(u,h,f.marks[g]));if(i&&f.isText&&n.whitespace!="pre"){let g,b=/\r?\n|\r/g,x;for(;g=b.exec(f.text);)x||(x=new pe(ae.from(n.schema.text(" ",n.allowedMarks(f.marks))),0,0)),a.push(new Nt(u+g.index,u+g.index+g[0].length,x))}}u=h}if(!r.validEnd){let c=r.fillBefore(ae.empty,!0);t.replace(u,u,new pe(c,0,0))}for(let c=a.length-1;c>=0;c--)t.step(a[c])}function _U(t,e,n){return(e==0||t.canReplace(e,t.childCount))&&(n==t.childCount||t.canReplace(0,n))}function Yl(t){let n=t.parent.content.cutByIndex(t.startIndex,t.endIndex);for(let r=t.depth,i=0,s=0;;--r){let a=t.$from.node(r),u=t.$from.index(r)+i,c=t.$to.indexAfter(r)-s;if(r<t.depth&&a.canReplace(u,c,n))return r;if(r==0||a.type.spec.isolating||!_U(a,u,c))break;u&&(i=1),c<a.childCount&&(s=1)}return null}function VU(t,e,n){let{$from:r,$to:i,depth:s}=e,a=r.before(s+1),u=i.after(s+1),c=a,f=u,h=ae.empty,m=0;for(let x=s,k=!1;x>n;x--)k||r.index(x)>0?(k=!0,h=ae.from(r.node(x).copy(h)),m++):c--;let g=ae.empty,b=0;for(let x=s,k=!1;x>n;x--)k||i.after(x+1)<i.end(x)?(k=!0,g=ae.from(i.node(x).copy(g)),b++):f++;t.step(new Ut(c,f,a,u,new pe(h.append(g),m,b),h.size-m,!0))}function cx(t,e,n=null,r=t){let i=HU(t,e),s=i&&UU(r,e);return s?i.map(RE).concat({type:e,attrs:n}).concat(s.map(RE)):null}function RE(t){return{type:t,attrs:null}}function HU(t,e){let{parent:n,startIndex:r,endIndex:i}=t,s=n.contentMatchAt(r).findWrapping(e);if(!s)return null;let a=s.length?s[0]:e;return n.canReplaceWith(r,i,a)?s:null}function UU(t,e){let{parent:n,startIndex:r,endIndex:i}=t,s=n.child(r),a=e.contentMatch.findWrapping(s.type);if(!a)return null;let c=(a.length?a[a.length-1]:e).contentMatch;for(let f=r;c&&f<i;f++)c=c.matchType(n.child(f).type);return!c||!c.validEnd?null:a}function qU(t,e,n){let r=ae.empty;for(let a=n.length-1;a>=0;a--){if(r.size){let u=n[a].type.contentMatch.matchFragment(r);if(!u||!u.validEnd)throw new RangeError("Wrapper type given to Transform.wrap does not form valid content of its parent wrapper")}r=ae.from(n[a].type.create(n[a].attrs,r))}let i=e.start,s=e.end;t.step(new Ut(i,s,i,s,new pe(r,0,0),n.length,!0))}function GU(t,e,n,r,i){if(!r.isTextblock)throw new RangeError("Type given to setBlockType should be a textblock");let s=t.steps.length;t.doc.nodesBetween(e,n,(a,u)=>{let c=typeof i=="function"?i(a):i;if(a.isTextblock&&!a.hasMarkup(r,c)&&WU(t.doc,t.mapping.slice(s).map(u),r)){let f=null;if(r.schema.linebreakReplacement){let b=r.whitespace=="pre",x=!!r.contentMatch.matchType(r.schema.linebreakReplacement);b&&!x?f=!1:!b&&x&&(f=!0)}f===!1&&S9(t,a,u,s),ux(t,t.mapping.slice(s).map(u,1),r,void 0,f===null);let h=t.mapping.slice(s),m=h.map(u,1),g=h.map(u+a.nodeSize,1);return t.step(new Ut(m,g,m+1,g-1,new pe(ae.from(r.create(c,null,a.marks)),0,0),1,!0)),f===!0&&D9(t,a,u,s),!1}})}function D9(t,e,n,r){e.forEach((i,s)=>{if(i.isText){let a,u=/\r?\n|\r/g;for(;a=u.exec(i.text);){let c=t.mapping.slice(r).map(n+1+s+a.index);t.replaceWith(c,c+1,e.type.schema.linebreakReplacement.create())}}})}function S9(t,e,n,r){e.forEach((i,s)=>{if(i.type==i.type.schema.linebreakReplacement){let a=t.mapping.slice(r).map(n+1+s);t.replaceWith(a,a+1,e.type.schema.text(`
25
+ `))}})}function WU(t,e,n){let r=t.resolve(e),i=r.index();return r.parent.canReplaceWith(i,i+1,n)}function QU(t,e,n,r,i){let s=t.doc.nodeAt(e);if(!s)throw new RangeError("No node at given position");n||(n=s.type);let a=n.create(r,null,i||s.marks);if(s.isLeaf)return t.replaceWith(e,e+s.nodeSize,a);if(!n.validContent(s.content))throw new RangeError("Invalid content for node type "+n.name);t.step(new Ut(e,e+s.nodeSize,e+1,e+s.nodeSize-1,new pe(ae.from(a),0,0),1,!0))}function Ri(t,e,n=1,r){let i=t.resolve(e),s=i.depth-n,a=r&&r[r.length-1]||i.parent;if(s<0||i.parent.type.spec.isolating||!i.parent.canReplace(i.index(),i.parent.childCount)||!a.type.validContent(i.parent.content.cutByIndex(i.index(),i.parent.childCount)))return!1;for(let f=i.depth-1,h=n-2;f>s;f--,h--){let m=i.node(f),g=i.index(f);if(m.type.spec.isolating)return!1;let b=m.content.cutByIndex(g,m.childCount),x=r&&r[h+1];x&&(b=b.replaceChild(0,x.type.create(x.attrs)));let k=r&&r[h]||m;if(!m.canReplace(g+1,m.childCount)||!k.type.validContent(b))return!1}let u=i.indexAfter(s),c=r&&r[0];return i.node(s).canReplaceWith(u,u,c?c.type:i.node(s+1).type)}function YU(t,e,n=1,r){let i=t.doc.resolve(e),s=ae.empty,a=ae.empty;for(let u=i.depth,c=i.depth-n,f=n-1;u>c;u--,f--){s=ae.from(i.node(u).copy(s));let h=r&&r[f];a=ae.from(h?h.type.create(h.attrs,a):i.node(u).copy(a))}t.step(new Nt(e,e,new pe(s.append(a),n,n),!0))}function no(t,e){let n=t.resolve(e),r=n.index();return w9(n.nodeBefore,n.nodeAfter)&&n.parent.canReplace(r,r+1)}function XU(t,e){e.content.size||t.type.compatibleContent(e.type);let n=t.contentMatchAt(t.childCount),{linebreakReplacement:r}=t.type.schema;for(let i=0;i<e.childCount;i++){let s=e.child(i),a=s.type==r?t.type.schema.nodes.text:s.type;if(n=n.matchType(a),!n||!t.type.allowsMarks(s.marks))return!1}return n.validEnd}function w9(t,e){return!!(t&&e&&!t.isLeaf&&XU(t,e))}function Mm(t,e,n=-1){let r=t.resolve(e);for(let i=r.depth;;i--){let s,a,u=r.index(i);if(i==r.depth?(s=r.nodeBefore,a=r.nodeAfter):n>0?(s=r.node(i+1),u++,a=r.node(i).maybeChild(u)):(s=r.node(i).maybeChild(u-1),a=r.node(i+1)),s&&!s.isTextblock&&w9(s,a)&&r.node(i).canReplace(u,u+1))return e;if(i==0)break;e=n<0?r.before(i):r.after(i)}}function JU(t,e,n){let r=null,{linebreakReplacement:i}=t.doc.type.schema,s=t.doc.resolve(e-n),a=s.node().type;if(i&&a.inlineContent){let h=a.whitespace=="pre",m=!!a.contentMatch.matchType(i);h&&!m?r=!1:!h&&m&&(r=!0)}let u=t.steps.length;if(r===!1){let h=t.doc.resolve(e+n);S9(t,h.node(),h.before(),u)}a.inlineContent&&ux(t,e+n-1,a,s.node().contentMatchAt(s.index()),r==null);let c=t.mapping.slice(u),f=c.map(e-n);if(t.step(new Nt(f,c.map(e+n,-1),pe.empty,!0)),r===!0){let h=t.doc.resolve(f);D9(t,h.node(),h.before(),t.steps.length)}return t}function ZU(t,e,n){let r=t.resolve(e);if(r.parent.canReplaceWith(r.index(),r.index(),n))return e;if(r.parentOffset==0)for(let i=r.depth-1;i>=0;i--){let s=r.index(i);if(r.node(i).canReplaceWith(s,s,n))return r.before(i+1);if(s>0)return null}if(r.parentOffset==r.parent.content.size)for(let i=r.depth-1;i>=0;i--){let s=r.indexAfter(i);if(r.node(i).canReplaceWith(s,s,n))return r.after(i+1);if(s<r.node(i).childCount)return null}return null}function $9(t,e,n){let r=t.resolve(e);if(!n.content.size)return e;let i=n.content;for(let s=0;s<n.openStart;s++)i=i.firstChild.content;for(let s=1;s<=(n.openStart==0&&n.size?2:1);s++)for(let a=r.depth;a>=0;a--){let u=a==r.depth?0:r.pos<=(r.start(a+1)+r.end(a+1))/2?-1:1,c=r.index(a)+(u>0?1:0),f=r.node(a),h=!1;if(s==1)h=f.canReplace(c,c,i);else{let m=f.contentMatchAt(c).findWrapping(i.firstChild.type);h=m&&f.canReplaceWith(c,c,m[0])}if(h)return u==0?r.pos:u<0?r.before(a+1):r.after(a+1)}return null}function Rm(t,e,n=e,r=pe.empty){if(e==n&&!r.size)return null;let i=t.resolve(e),s=t.resolve(n);return T9(i,s,r)?new Nt(e,n,r):new eq(i,s,r).fit()}function T9(t,e,n){return!n.openStart&&!n.openEnd&&t.start()==e.start()&&t.parent.canReplace(t.index(),e.index(),n.content)}class eq{constructor(e,n,r){this.$from=e,this.$to=n,this.unplaced=r,this.frontier=[],this.placed=ae.empty;for(let i=0;i<=e.depth;i++){let s=e.node(i);this.frontier.push({type:s.type,match:s.contentMatchAt(e.indexAfter(i))})}for(let i=e.depth;i>0;i--)this.placed=ae.from(e.node(i).copy(this.placed))}get depth(){return this.frontier.length-1}fit(){for(;this.unplaced.size;){let f=this.findFittable();f?this.placeNodes(f):this.openMore()||this.dropNode()}let e=this.mustMoveInline(),n=this.placed.size-this.depth-this.$from.depth,r=this.$from,i=this.close(e<0?this.$to:r.doc.resolve(e));if(!i)return null;let s=this.placed,a=r.depth,u=i.depth;for(;a&&u&&s.childCount==1;)s=s.firstChild.content,a--,u--;let c=new pe(s,a,u);return e>-1?new Ut(r.pos,e,this.$to.pos,this.$to.end(),c,n):c.size||r.pos!=this.$to.pos?new Nt(r.pos,i.pos,c):null}findFittable(){let e=this.unplaced.openStart;for(let n=this.unplaced.content,r=0,i=this.unplaced.openEnd;r<e;r++){let s=n.firstChild;if(n.childCount>1&&(i=0),s.type.spec.isolating&&i<=r){e=r;break}n=s.content}for(let n=1;n<=2;n++)for(let r=n==1?e:this.unplaced.openStart;r>=0;r--){let i,s=null;r?(s=ey(this.unplaced.content,r-1).firstChild,i=s.content):i=this.unplaced.content;let a=i.firstChild;for(let u=this.depth;u>=0;u--){let{type:c,match:f}=this.frontier[u],h,m=null;if(n==1&&(a?f.matchType(a.type)||(m=f.fillBefore(ae.from(a),!1)):s&&c.compatibleContent(s.type)))return{sliceDepth:r,frontierDepth:u,parent:s,inject:m};if(n==2&&a&&(h=f.findWrapping(a.type)))return{sliceDepth:r,frontierDepth:u,parent:s,wrap:h};if(s&&f.matchType(s.type))break}}}openMore(){let{content:e,openStart:n,openEnd:r}=this.unplaced,i=ey(e,n);return!i.childCount||i.firstChild.isLeaf?!1:(this.unplaced=new pe(e,n+1,Math.max(r,i.size+n>=e.size-r?n+1:0)),!0)}dropNode(){let{content:e,openStart:n,openEnd:r}=this.unplaced,i=ey(e,n);if(i.childCount<=1&&n>0){let s=e.size-n<=n+i.size;this.unplaced=new pe(cc(e,n-1,1),n-1,s?n-1:r)}else this.unplaced=new pe(cc(e,n,1),n,r)}placeNodes({sliceDepth:e,frontierDepth:n,parent:r,inject:i,wrap:s}){for(;this.depth>n;)this.closeFrontierNode();if(s)for(let k=0;k<s.length;k++)this.openFrontierNode(s[k]);let a=this.unplaced,u=r?r.content:a.content,c=a.openStart-e,f=0,h=[],{match:m,type:g}=this.frontier[n];if(i){for(let k=0;k<i.childCount;k++)h.push(i.child(k));m=m.matchFragment(i)}let b=u.size+e-(a.content.size-a.openEnd);for(;f<u.childCount;){let k=u.child(f),E=m.matchType(k.type);if(!E)break;f++,(f>1||c==0||k.content.size)&&(m=E,h.push(A9(k.mark(g.allowedMarks(k.marks)),f==1?c:0,f==u.childCount?b:-1)))}let x=f==u.childCount;x||(b=-1),this.placed=dc(this.placed,n,ae.from(h)),this.frontier[n].match=m,x&&b<0&&r&&r.type==this.frontier[this.depth].type&&this.frontier.length>1&&this.closeFrontierNode();for(let k=0,E=u;k<b;k++){let D=E.lastChild;this.frontier.push({type:D.type,match:D.contentMatchAt(D.childCount)}),E=D.content}this.unplaced=x?e==0?pe.empty:new pe(cc(a.content,e-1,1),e-1,b<0?a.openEnd:e-1):new pe(cc(a.content,e,f),a.openStart,a.openEnd)}mustMoveInline(){if(!this.$to.parent.isTextblock)return-1;let e=this.frontier[this.depth],n;if(!e.type.isTextblock||!ty(this.$to,this.$to.depth,e.type,e.match,!1)||this.$to.depth==this.depth&&(n=this.findCloseLevel(this.$to))&&n.depth==this.depth)return-1;let{depth:r}=this.$to,i=this.$to.after(r);for(;r>1&&i==this.$to.end(--r);)++i;return i}findCloseLevel(e){e:for(let n=Math.min(this.depth,e.depth);n>=0;n--){let{match:r,type:i}=this.frontier[n],s=n<e.depth&&e.end(n+1)==e.pos+(e.depth-(n+1)),a=ty(e,n,i,r,s);if(a){for(let u=n-1;u>=0;u--){let{match:c,type:f}=this.frontier[u],h=ty(e,u,f,c,!0);if(!h||h.childCount)continue e}return{depth:n,fit:a,move:s?e.doc.resolve(e.after(n+1)):e}}}}close(e){let n=this.findCloseLevel(e);if(!n)return null;for(;this.depth>n.depth;)this.closeFrontierNode();n.fit.childCount&&(this.placed=dc(this.placed,n.depth,n.fit)),e=n.move;for(let r=n.depth+1;r<=e.depth;r++){let i=e.node(r),s=i.type.contentMatch.fillBefore(i.content,!0,e.index(r));this.openFrontierNode(i.type,i.attrs,s)}return e}openFrontierNode(e,n=null,r){let i=this.frontier[this.depth];i.match=i.match.matchType(e),this.placed=dc(this.placed,this.depth,ae.from(e.create(n,r))),this.frontier.push({type:e,match:e.contentMatch})}closeFrontierNode(){let n=this.frontier.pop().match.fillBefore(ae.empty,!0);n.childCount&&(this.placed=dc(this.placed,this.frontier.length,n))}}function cc(t,e,n){return e==0?t.cutByIndex(n,t.childCount):t.replaceChild(0,t.firstChild.copy(cc(t.firstChild.content,e-1,n)))}function dc(t,e,n){return e==0?t.append(n):t.replaceChild(t.childCount-1,t.lastChild.copy(dc(t.lastChild.content,e-1,n)))}function ey(t,e){for(let n=0;n<e;n++)t=t.firstChild.content;return t}function A9(t,e,n){if(e<=0)return t;let r=t.content;return e>1&&(r=r.replaceChild(0,A9(r.firstChild,e-1,r.childCount==1?n-1:0))),e>0&&(r=t.type.contentMatch.fillBefore(r).append(r),n<=0&&(r=r.append(t.type.contentMatch.matchFragment(r).fillBefore(ae.empty,!0)))),t.copy(r)}function ty(t,e,n,r,i){let s=t.node(e),a=i?t.indexAfter(e):t.index(e);if(a==s.childCount&&!n.compatibleContent(s.type))return null;let u=r.fillBefore(s.content,!0,a);return u&&!tq(n,s.content,a)?u:null}function tq(t,e,n){for(let r=n;r<e.childCount;r++)if(!t.allowsMarks(e.child(r).marks))return!0;return!1}function nq(t){return t.spec.defining||t.spec.definingForContent}function rq(t,e,n,r){if(!r.size)return t.deleteRange(e,n);let i=t.doc.resolve(e),s=t.doc.resolve(n);if(T9(i,s,r))return t.step(new Nt(e,n,r));let a=M9(i,s);a[a.length-1]==0&&a.pop();let u=-(i.depth+1);a.unshift(u);for(let g=i.depth,b=i.pos-1;g>0;g--,b--){let x=i.node(g).type.spec;if(x.defining||x.definingAsContext||x.isolating)break;a.indexOf(g)>-1?u=g:i.before(g)==b&&a.splice(1,0,-g)}let c=a.indexOf(u),f=[],h=r.openStart;for(let g=r.content,b=0;;b++){let x=g.firstChild;if(f.push(x),b==r.openStart)break;g=x.content}for(let g=h-1;g>=0;g--){let b=f[g],x=nq(b.type);if(x&&!b.sameMarkup(i.node(Math.abs(u)-1)))h=g;else if(x||!b.type.isTextblock)break}for(let g=r.openStart;g>=0;g--){let b=(g+h+1)%(r.openStart+1),x=f[b];if(x)for(let k=0;k<a.length;k++){let E=a[(k+c)%a.length],D=!0;E<0&&(D=!1,E=-E);let T=i.node(E-1),$=i.index(E-1);if(T.canReplaceWith($,$,x.type,x.marks))return t.replace(i.before(E),D?s.after(E):n,new pe(B9(r.content,0,r.openStart,b),b,r.openEnd))}}let m=t.steps.length;for(let g=a.length-1;g>=0&&(t.replace(e,n,r),!(t.steps.length>m));g--){let b=a[g];b<0||(e=i.before(b),n=s.after(b))}}function B9(t,e,n,r,i){if(e<n){let s=t.firstChild;t=t.replaceChild(0,s.copy(B9(s.content,e+1,n,r,s)))}if(e>r){let s=i.contentMatchAt(0),a=s.fillBefore(t).append(t);t=a.append(s.matchFragment(a).fillBefore(ae.empty,!0))}return t}function iq(t,e,n,r){if(!r.isInline&&e==n&&t.doc.resolve(e).parent.content.size){let i=ZU(t.doc,e,r.type);i!=null&&(e=n=i)}t.replaceRange(e,n,new pe(ae.from(r),0,0))}function sq(t,e,n){let r=t.doc.resolve(e),i=t.doc.resolve(n);if(r.parent.isTextblock&&i.parent.isTextblock&&r.start()!=i.start()&&r.parentOffset==0&&i.parentOffset==0){let a=r.sharedDepth(n),u=!1;for(let c=r.depth;c>a;c--)r.node(c).type.spec.isolating&&(u=!0);for(let c=i.depth;c>a;c--)i.node(c).type.spec.isolating&&(u=!0);if(!u){for(let c=r.depth;c>0&&e==r.start(c);c--)e=r.before(c);for(let c=i.depth;c>0&&n==i.start(c);c--)n=i.before(c);r=t.doc.resolve(e),i=t.doc.resolve(n)}}let s=M9(r,i);for(let a=0;a<s.length;a++){let u=s[a],c=a==s.length-1;if(c&&u==0||r.node(u).type.contentMatch.validEnd)return t.delete(r.start(u),i.end(u));if(u>0&&(c||r.node(u-1).canReplace(r.index(u-1),i.indexAfter(u-1))))return t.delete(r.before(u),i.after(u))}for(let a=1;a<=r.depth&&a<=i.depth;a++)if(e-r.start(a)==r.depth-a&&n>r.end(a)&&i.end(a)-n!=i.depth-a&&r.start(a-1)==i.start(a-1)&&r.node(a-1).canReplace(r.index(a-1),i.index(a-1)))return t.delete(r.before(a),n);t.delete(e,n)}function M9(t,e){let n=[],r=Math.min(t.depth,e.depth);for(let i=r;i>=0;i--){let s=t.start(i);if(s<t.pos-(t.depth-i)||e.end(i)>e.pos+(e.depth-i)||t.node(i).type.spec.isolating||e.node(i).type.spec.isolating)break;(s==e.start(i)||i==t.depth&&i==e.depth&&t.parent.inlineContent&&e.parent.inlineContent&&i&&e.start(i-1)==s-1)&&n.push(i)}return n}class $l extends gn{constructor(e,n,r){super(),this.pos=e,this.attr=n,this.value=r}apply(e){let n=e.nodeAt(this.pos);if(!n)return Ot.fail("No node at attribute step's position");let r=Object.create(null);for(let s in n.attrs)r[s]=n.attrs[s];r[this.attr]=this.value;let i=n.type.create(r,null,n.marks);return Ot.fromReplace(e,this.pos,this.pos+1,new pe(ae.from(i),0,n.isLeaf?0:1))}getMap(){return Xn.empty}invert(e){return new $l(this.pos,this.attr,e.nodeAt(this.pos).attrs[this.attr])}map(e){let n=e.mapResult(this.pos,1);return n.deletedAfter?null:new $l(n.pos,this.attr,this.value)}toJSON(){return{stepType:"attr",pos:this.pos,attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.pos!="number"||typeof n.attr!="string")throw new RangeError("Invalid input for AttrStep.fromJSON");return new $l(n.pos,n.attr,n.value)}}gn.jsonID("attr",$l);class td extends gn{constructor(e,n){super(),this.attr=e,this.value=n}apply(e){let n=Object.create(null);for(let i in e.attrs)n[i]=e.attrs[i];n[this.attr]=this.value;let r=e.type.create(n,e.content,e.marks);return Ot.ok(r)}getMap(){return Xn.empty}invert(e){return new td(this.attr,e.attrs[this.attr])}map(e){return this}toJSON(){return{stepType:"docAttr",attr:this.attr,value:this.value}}static fromJSON(e,n){if(typeof n.attr!="string")throw new RangeError("Invalid input for DocAttrStep.fromJSON");return new td(n.attr,n.value)}}gn.jsonID("docAttr",td);let Pl=class extends Error{};Pl=function t(e){let n=Error.call(this,e);return n.__proto__=t.prototype,n};Pl.prototype=Object.create(Error.prototype);Pl.prototype.constructor=Pl;Pl.prototype.name="TransformError";class R9{constructor(e){this.doc=e,this.steps=[],this.docs=[],this.mapping=new ed}get before(){return this.docs.length?this.docs[0]:this.doc}step(e){let n=this.maybeStep(e);if(n.failed)throw new Pl(n.failed);return this}maybeStep(e){let n=e.apply(this.doc);return n.failed||this.addStep(e,n.doc),n}get docChanged(){return this.steps.length>0}changedRange(){let e=1e9,n=-1e9;for(let r=0;r<this.mapping.maps.length;r++){let i=this.mapping.maps[r];r&&(e=i.map(e,1),n=i.map(n,-1)),i.forEach((s,a,u,c)=>{e=Math.min(e,u),n=Math.max(n,c)})}return e==1e9?null:{from:e,to:n}}addStep(e,n){this.docs.push(this.doc),this.steps.push(e),this.mapping.appendMap(e.getMap()),this.doc=n}replace(e,n=e,r=pe.empty){let i=Rm(this.doc,e,n,r);return i&&this.step(i),this}replaceWith(e,n,r){return this.replace(e,n,new pe(ae.from(r),0,0))}delete(e,n){return this.replace(e,n,pe.empty)}insert(e,n){return this.replaceWith(e,e,n)}replaceRange(e,n,r){return rq(this,e,n,r),this}replaceRangeWith(e,n,r){return iq(this,e,n,r),this}deleteRange(e,n){return sq(this,e,n),this}lift(e,n){return VU(this,e,n),this}join(e,n=1){return JU(this,e,n),this}wrap(e,n){return qU(this,e,n),this}setBlockType(e,n=e,r,i=null){return GU(this,e,n,r,i),this}setNodeMarkup(e,n,r=null,i){return QU(this,e,n,r,i),this}setNodeAttribute(e,n,r){return this.step(new $l(e,n,r)),this}setDocAttribute(e,n){return this.step(new td(e,n)),this}addNodeMark(e,n){return this.step(new Ns(e,n)),this}removeNodeMark(e,n){let r=this.doc.nodeAt(e);if(!r)throw new RangeError("No node at position "+e);if(n instanceof st)n.isInSet(r.marks)&&this.step(new ua(e,n));else{let i=r.marks,s,a=[];for(;s=n.isInSet(i);)a.push(new ua(e,s)),i=s.removeFromSet(i);for(let u=a.length-1;u>=0;u--)this.step(a[u])}return this}split(e,n=1,r){return YU(this,e,n,r),this}addMark(e,n,r){return FU(this,e,n,r),this}removeMark(e,n,r){return KU(this,e,n,r),this}clearIncompatible(e,n,r){return ux(this,e,n,r),this}}const ny=Object.create(null);class Me{constructor(e,n,r){this.$anchor=e,this.$head=n,this.ranges=r||[new oq(e.min(n),e.max(n))]}get anchor(){return this.$anchor.pos}get head(){return this.$head.pos}get from(){return this.$from.pos}get to(){return this.$to.pos}get $from(){return this.ranges[0].$from}get $to(){return this.ranges[0].$to}get empty(){let e=this.ranges;for(let n=0;n<e.length;n++)if(e[n].$from.pos!=e[n].$to.pos)return!1;return!0}content(){return this.$from.doc.slice(this.from,this.to,!0)}replace(e,n=pe.empty){let r=n.content.lastChild,i=null;for(let u=0;u<n.openEnd;u++)i=r,r=r.lastChild;let s=e.steps.length,a=this.ranges;for(let u=0;u<a.length;u++){let{$from:c,$to:f}=a[u],h=e.mapping.slice(s);e.replaceRange(h.map(c.pos),h.map(f.pos),u?pe.empty:n),u==0&&OE(e,s,(r?r.isInline:i&&i.isTextblock)?-1:1)}}replaceWith(e,n){let r=e.steps.length,i=this.ranges;for(let s=0;s<i.length;s++){let{$from:a,$to:u}=i[s],c=e.mapping.slice(r),f=c.map(a.pos),h=c.map(u.pos);s?e.deleteRange(f,h):(e.replaceRangeWith(f,h,n),OE(e,r,n.isInline?-1:1))}}static findFrom(e,n,r=!1){let i=e.parent.inlineContent?new De(e):yl(e.node(0),e.parent,e.pos,e.index(),n,r);if(i)return i;for(let s=e.depth-1;s>=0;s--){let a=n<0?yl(e.node(0),e.node(s),e.before(s+1),e.index(s),n,r):yl(e.node(0),e.node(s),e.after(s+1),e.index(s)+1,n,r);if(a)return a}return null}static near(e,n=1){return this.findFrom(e,n)||this.findFrom(e,-n)||new Jn(e.node(0))}static atStart(e){return yl(e,e,0,0,1)||new Jn(e)}static atEnd(e){return yl(e,e,e.content.size,e.childCount,-1)||new Jn(e)}static fromJSON(e,n){if(!n||!n.type)throw new RangeError("Invalid input for Selection.fromJSON");let r=ny[n.type];if(!r)throw new RangeError(`No selection type ${n.type} defined`);return r.fromJSON(e,n)}static jsonID(e,n){if(e in ny)throw new RangeError("Duplicate use of selection JSON ID "+e);return ny[e]=n,n.prototype.jsonID=e,n}getBookmark(){return De.between(this.$anchor,this.$head).getBookmark()}}Me.prototype.visible=!0;class oq{constructor(e,n){this.$from=e,this.$to=n}}let NE=!1;function PE(t){!NE&&!t.parent.inlineContent&&(NE=!0,console.warn("TextSelection endpoint not pointing into a node with inline content ("+t.parent.type.name+")"))}class De extends Me{constructor(e,n=e){PE(e),PE(n),super(e,n)}get $cursor(){return this.$anchor.pos==this.$head.pos?this.$head:null}map(e,n){let r=e.resolve(n.map(this.head));if(!r.parent.inlineContent)return Me.near(r);let i=e.resolve(n.map(this.anchor));return new De(i.parent.inlineContent?i:r,r)}replace(e,n=pe.empty){if(super.replace(e,n),n==pe.empty){let r=this.$from.marksAcross(this.$to);r&&e.ensureMarks(r)}}eq(e){return e instanceof De&&e.anchor==this.anchor&&e.head==this.head}getBookmark(){return new Nm(this.anchor,this.head)}toJSON(){return{type:"text",anchor:this.anchor,head:this.head}}static fromJSON(e,n){if(typeof n.anchor!="number"||typeof n.head!="number")throw new RangeError("Invalid input for TextSelection.fromJSON");return new De(e.resolve(n.anchor),e.resolve(n.head))}static create(e,n,r=n){let i=e.resolve(n);return new this(i,r==n?i:e.resolve(r))}static between(e,n,r){let i=e.pos-n.pos;if((!r||i)&&(r=i>=0?1:-1),!n.parent.inlineContent){let s=Me.findFrom(n,r,!0)||Me.findFrom(n,-r,!0);if(s)n=s.$head;else return Me.near(n,r)}return e.parent.inlineContent||(i==0?e=n:(e=(Me.findFrom(e,-r,!0)||Me.findFrom(e,r,!0)).$anchor,e.pos<n.pos!=i<0&&(e=n))),new De(e,n)}}Me.jsonID("text",De);class Nm{constructor(e,n){this.anchor=e,this.head=n}map(e){return new Nm(e.map(this.anchor),e.map(this.head))}resolve(e){return De.between(e.resolve(this.anchor),e.resolve(this.head))}}class ke extends Me{constructor(e){let n=e.nodeAfter,r=e.node(0).resolve(e.pos+n.nodeSize);super(e,r),this.node=n}map(e,n){let{deleted:r,pos:i}=n.mapResult(this.anchor),s=e.resolve(i);return r?Me.near(s):new ke(s)}content(){return new pe(ae.from(this.node),0,0)}eq(e){return e instanceof ke&&e.anchor==this.anchor}toJSON(){return{type:"node",anchor:this.anchor}}getBookmark(){return new dx(this.anchor)}static fromJSON(e,n){if(typeof n.anchor!="number")throw new RangeError("Invalid input for NodeSelection.fromJSON");return new ke(e.resolve(n.anchor))}static create(e,n){return new ke(e.resolve(n))}static isSelectable(e){return!e.isText&&e.type.spec.selectable!==!1}}ke.prototype.visible=!1;Me.jsonID("node",ke);class dx{constructor(e){this.anchor=e}map(e){let{deleted:n,pos:r}=e.mapResult(this.anchor);return n?new Nm(r,r):new dx(r)}resolve(e){let n=e.resolve(this.anchor),r=n.nodeAfter;return r&&ke.isSelectable(r)?new ke(n):Me.near(n)}}class Jn extends Me{constructor(e){super(e.resolve(0),e.resolve(e.content.size))}replace(e,n=pe.empty){if(n==pe.empty){e.delete(0,e.doc.content.size);let r=Me.atStart(e.doc);r.eq(e.selection)||e.setSelection(r)}else super.replace(e,n)}toJSON(){return{type:"all"}}static fromJSON(e){return new Jn(e)}map(e){return new Jn(e)}eq(e){return e instanceof Jn}getBookmark(){return aq}}Me.jsonID("all",Jn);const aq={map(){return this},resolve(t){return new Jn(t)}};function yl(t,e,n,r,i,s=!1){if(e.inlineContent)return De.create(t,n);for(let a=r-(i>0?0:1);i>0?a<e.childCount:a>=0;a+=i){let u=e.child(a);if(u.isAtom){if(!s&&ke.isSelectable(u))return ke.create(t,n-(i<0?u.nodeSize:0))}else{let c=yl(t,u,n+i,i<0?u.childCount:0,i,s);if(c)return c}n+=u.nodeSize*i}return null}function OE(t,e,n){let r=t.steps.length-1;if(r<e)return;let i=t.steps[r];if(!(i instanceof Nt||i instanceof Ut))return;let s=t.mapping.maps[r],a;s.forEach((u,c,f,h)=>{a==null&&(a=h)}),t.setSelection(Me.near(t.doc.resolve(a),n))}const LE=1,ph=2,zE=4;class lq extends R9{constructor(e){super(e.doc),this.curSelectionFor=0,this.updated=0,this.meta=Object.create(null),this.time=Date.now(),this.curSelection=e.selection,this.storedMarks=e.storedMarks}get selection(){return this.curSelectionFor<this.steps.length&&(this.curSelection=this.curSelection.map(this.doc,this.mapping.slice(this.curSelectionFor)),this.curSelectionFor=this.steps.length),this.curSelection}setSelection(e){if(e.$from.doc!=this.doc)throw new RangeError("Selection passed to setSelection must point at the current document");return this.curSelection=e,this.curSelectionFor=this.steps.length,this.updated=(this.updated|LE)&~ph,this.storedMarks=null,this}get selectionSet(){return(this.updated&LE)>0}setStoredMarks(e){return this.storedMarks=e,this.updated|=ph,this}ensureMarks(e){return st.sameSet(this.storedMarks||this.selection.$from.marks(),e)||this.setStoredMarks(e),this}addStoredMark(e){return this.ensureMarks(e.addToSet(this.storedMarks||this.selection.$head.marks()))}removeStoredMark(e){return this.ensureMarks(e.removeFromSet(this.storedMarks||this.selection.$head.marks()))}get storedMarksSet(){return(this.updated&ph)>0}addStep(e,n){super.addStep(e,n),this.updated=this.updated&~ph,this.storedMarks=null}setTime(e){return this.time=e,this}replaceSelection(e){return this.selection.replace(this,e),this}replaceSelectionWith(e,n=!0){let r=this.selection;return n&&(e=e.mark(this.storedMarks||(r.empty?r.$from.marks():r.$from.marksAcross(r.$to)||st.none))),r.replaceWith(this,e),this}deleteSelection(){return this.selection.replace(this),this}insertText(e,n,r){let i=this.doc.type.schema;if(n==null)return e?this.replaceSelectionWith(i.text(e),!0):this.deleteSelection();{if(r==null&&(r=n),!e)return this.deleteRange(n,r);let s=this.storedMarks;if(!s){let a=this.doc.resolve(n);s=r==n?a.marks():a.marksAcross(this.doc.resolve(r))}return this.replaceRangeWith(n,r,i.text(e,s)),!this.selection.empty&&this.selection.to==n+e.length&&this.setSelection(Me.near(this.selection.$to)),this}}setMeta(e,n){return this.meta[typeof e=="string"?e:e.key]=n,this}getMeta(e){return this.meta[typeof e=="string"?e:e.key]}get isGeneric(){for(let e in this.meta)return!1;return!0}scrollIntoView(){return this.updated|=zE,this}get scrolledIntoView(){return(this.updated&zE)>0}}function IE(t,e){return!e||!t?t:t.bind(e)}class fc{constructor(e,n,r){this.name=e,this.init=IE(n.init,r),this.apply=IE(n.apply,r)}}const uq=[new fc("doc",{init(t){return t.doc||t.schema.topNodeType.createAndFill()},apply(t){return t.doc}}),new fc("selection",{init(t,e){return t.selection||Me.atStart(e.doc)},apply(t){return t.selection}}),new fc("storedMarks",{init(t){return t.storedMarks||null},apply(t,e,n,r){return r.selection.$cursor?t.storedMarks:null}}),new fc("scrollToSelection",{init(){return 0},apply(t,e){return t.scrolledIntoView?e+1:e}})];class ry{constructor(e,n){this.schema=e,this.plugins=[],this.pluginsByKey=Object.create(null),this.fields=uq.slice(),n&&n.forEach(r=>{if(this.pluginsByKey[r.key])throw new RangeError("Adding different instances of a keyed plugin ("+r.key+")");this.plugins.push(r),this.pluginsByKey[r.key]=r,r.spec.state&&this.fields.push(new fc(r.key,r.spec.state,r))})}}class Fo{constructor(e){this.config=e}get schema(){return this.config.schema}get plugins(){return this.config.plugins}apply(e){return this.applyTransaction(e).state}filterTransaction(e,n=-1){for(let r=0;r<this.config.plugins.length;r++)if(r!=n){let i=this.config.plugins[r];if(i.spec.filterTransaction&&!i.spec.filterTransaction.call(i,e,this))return!1}return!0}applyTransaction(e){if(!this.filterTransaction(e))return{state:this,transactions:[]};let n=[e],r=this.applyInner(e),i=null;for(;;){let s=!1;for(let a=0;a<this.config.plugins.length;a++){let u=this.config.plugins[a];if(u.spec.appendTransaction){let c=i?i[a].n:0,f=i?i[a].state:this,h=c<n.length&&u.spec.appendTransaction.call(u,c?n.slice(c):n,f,r);if(h&&r.filterTransaction(h,a)){if(h.setMeta("appendedTransaction",e),!i){i=[];for(let m=0;m<this.config.plugins.length;m++)i.push(m<a?{state:r,n:n.length}:{state:this,n:0})}n.push(h),r=r.applyInner(h),s=!0}i&&(i[a]={state:r,n:n.length})}}if(!s)return{state:r,transactions:n}}}applyInner(e){if(!e.before.eq(this.doc))throw new RangeError("Applying a mismatched transaction");let n=new Fo(this.config),r=this.config.fields;for(let i=0;i<r.length;i++){let s=r[i];n[s.name]=s.apply(e,this[s.name],this,n)}return n}get tr(){return new lq(this)}static create(e){let n=new ry(e.doc?e.doc.type.schema:e.schema,e.plugins),r=new Fo(n);for(let i=0;i<n.fields.length;i++)r[n.fields[i].name]=n.fields[i].init(e,r);return r}reconfigure(e){let n=new ry(this.schema,e.plugins),r=n.fields,i=new Fo(n);for(let s=0;s<r.length;s++){let a=r[s].name;i[a]=this.hasOwnProperty(a)?this[a]:r[s].init(e,i)}return i}toJSON(e){let n={doc:this.doc.toJSON(),selection:this.selection.toJSON()};if(this.storedMarks&&(n.storedMarks=this.storedMarks.map(r=>r.toJSON())),e&&typeof e=="object")for(let r in e){if(r=="doc"||r=="selection")throw new RangeError("The JSON fields `doc` and `selection` are reserved");let i=e[r],s=i.spec.state;s&&s.toJSON&&(n[r]=s.toJSON.call(i,this[i.key]))}return n}static fromJSON(e,n,r){if(!n)throw new RangeError("Invalid input for EditorState.fromJSON");if(!e.schema)throw new RangeError("Required config field 'schema' missing");let i=new ry(e.schema,e.plugins),s=new Fo(i);return i.fields.forEach(a=>{if(a.name=="doc")s.doc=zs.fromJSON(e.schema,n.doc);else if(a.name=="selection")s.selection=Me.fromJSON(s.doc,n.selection);else if(a.name=="storedMarks")n.storedMarks&&(s.storedMarks=n.storedMarks.map(e.schema.markFromJSON));else{if(r)for(let u in r){let c=r[u],f=c.spec.state;if(c.key==a.name&&f&&f.fromJSON&&Object.prototype.hasOwnProperty.call(n,u)){s[a.name]=f.fromJSON.call(c,e,n[u],s);return}}s[a.name]=a.init(e,s)}}),s}}function N9(t,e,n){for(let r in t){let i=t[r];i instanceof Function?i=i.bind(e):r=="handleDOMEvents"&&(i=N9(i,e,{})),n[r]=i}return n}class mt{constructor(e){this.spec=e,this.props={},e.props&&N9(e.props,this,this.props),this.key=e.key?e.key.key:P9("plugin")}getState(e){return e[this.key]}}const iy=Object.create(null);function P9(t){return t in iy?t+"$"+ ++iy[t]:(iy[t]=0,t+"$")}class Kt{constructor(e="key"){this.key=P9(e)}get(e){return e.config.pluginsByKey[this.key]}getState(e){return e[this.key]}}const O9=(t,e)=>t.selection.empty?!1:(e&&e(t.tr.deleteSelection().scrollIntoView()),!0);function L9(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("backward",t):n.parentOffset>0)?null:n}const z9=(t,e,n)=>{let r=L9(t,n);if(!r)return!1;let i=fx(r);if(!i){let a=r.blockRange(),u=a&&Yl(a);return u==null?!1:(e&&e(t.tr.lift(a,u).scrollIntoView()),!0)}let s=i.nodeBefore;if(q9(t,i,e,-1))return!0;if(r.parent.content.size==0&&(Ol(s,"end")||ke.isSelectable(s)))for(let a=r.depth;;a--){let u=Rm(t.doc,r.before(a),r.after(a),pe.empty);if(u&&u.slice.size<u.to-u.from){if(e){let c=t.tr.step(u);c.setSelection(Ol(s,"end")?Me.findFrom(c.doc.resolve(c.mapping.map(i.pos,-1)),-1):ke.create(c.doc,i.pos-s.nodeSize)),e(c.scrollIntoView())}return!0}if(a==1||r.node(a-1).childCount>1)break}return s.isAtom&&i.depth==r.depth-1?(e&&e(t.tr.delete(i.pos-s.nodeSize,i.pos).scrollIntoView()),!0):!1},cq=(t,e,n)=>{let r=L9(t,n);if(!r)return!1;let i=fx(r);return i?I9(t,i,e):!1},dq=(t,e,n)=>{let r=F9(t,n);if(!r)return!1;let i=hx(r);return i?I9(t,i,e):!1};function I9(t,e,n){let r=e.nodeBefore,i=r,s=e.pos-1;for(;!i.isTextblock;s--){if(i.type.spec.isolating)return!1;let h=i.lastChild;if(!h)return!1;i=h}let a=e.nodeAfter,u=a,c=e.pos+1;for(;!u.isTextblock;c++){if(u.type.spec.isolating)return!1;let h=u.firstChild;if(!h)return!1;u=h}let f=Rm(t.doc,s,c,pe.empty);if(!f||f.from!=s||f instanceof Nt&&f.slice.size>=c-s)return!1;if(n){let h=t.tr.step(f);h.setSelection(De.create(h.doc,s)),n(h.scrollIntoView())}return!0}function Ol(t,e,n=!1){for(let r=t;r;r=e=="start"?r.firstChild:r.lastChild){if(r.isTextblock)return!0;if(n&&r.childCount!=1)return!1}return!1}const j9=(t,e,n)=>{let{$head:r,empty:i}=t.selection,s=r;if(!i)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("backward",t):r.parentOffset>0)return!1;s=fx(r)}let a=s&&s.nodeBefore;return!a||!ke.isSelectable(a)?!1:(e&&e(t.tr.setSelection(ke.create(t.doc,s.pos-a.nodeSize)).scrollIntoView()),!0)};function fx(t){if(!t.parent.type.spec.isolating)for(let e=t.depth-1;e>=0;e--){if(t.index(e)>0)return t.doc.resolve(t.before(e+1));if(t.node(e).type.spec.isolating)break}return null}function F9(t,e){let{$cursor:n}=t.selection;return!n||(e?!e.endOfTextblock("forward",t):n.parentOffset<n.parent.content.size)?null:n}const K9=(t,e,n)=>{let r=F9(t,n);if(!r)return!1;let i=hx(r);if(!i)return!1;let s=i.nodeAfter;if(q9(t,i,e,1))return!0;if(r.parent.content.size==0&&(Ol(s,"start")||ke.isSelectable(s))){let a=Rm(t.doc,r.before(),r.after(),pe.empty);if(a&&a.slice.size<a.to-a.from){if(e){let u=t.tr.step(a);u.setSelection(Ol(s,"start")?Me.findFrom(u.doc.resolve(u.mapping.map(i.pos)),1):ke.create(u.doc,u.mapping.map(i.pos))),e(u.scrollIntoView())}return!0}}return s.isAtom&&i.depth==r.depth-1?(e&&e(t.tr.delete(i.pos,i.pos+s.nodeSize).scrollIntoView()),!0):!1},_9=(t,e,n)=>{let{$head:r,empty:i}=t.selection,s=r;if(!i)return!1;if(r.parent.isTextblock){if(n?!n.endOfTextblock("forward",t):r.parentOffset<r.parent.content.size)return!1;s=hx(r)}let a=s&&s.nodeAfter;return!a||!ke.isSelectable(a)?!1:(e&&e(t.tr.setSelection(ke.create(t.doc,s.pos)).scrollIntoView()),!0)};function hx(t){if(!t.parent.type.spec.isolating)for(let e=t.depth-1;e>=0;e--){let n=t.node(e);if(t.index(e)+1<n.childCount)return t.doc.resolve(t.after(e+1));if(n.type.spec.isolating)break}return null}const fq=(t,e)=>{let n=t.selection,r=n instanceof ke,i;if(r){if(n.node.isTextblock||!no(t.doc,n.from))return!1;i=n.from}else if(i=Mm(t.doc,n.from,-1),i==null)return!1;if(e){let s=t.tr.join(i);r&&s.setSelection(ke.create(s.doc,i-t.doc.resolve(i).nodeBefore.nodeSize)),e(s.scrollIntoView())}return!0},hq=(t,e)=>{let n=t.selection,r;if(n instanceof ke){if(n.node.isTextblock||!no(t.doc,n.to))return!1;r=n.to}else if(r=Mm(t.doc,n.to,1),r==null)return!1;return e&&e(t.tr.join(r).scrollIntoView()),!0},pq=(t,e)=>{let{$from:n,$to:r}=t.selection,i=n.blockRange(r),s=i&&Yl(i);return s==null?!1:(e&&e(t.tr.lift(i,s).scrollIntoView()),!0)},V9=(t,e)=>{let{$head:n,$anchor:r}=t.selection;return!n.parent.type.spec.code||!n.sameParent(r)?!1:(e&&e(t.tr.insertText(`
26
+ `).scrollIntoView()),!0)};function px(t){for(let e=0;e<t.edgeCount;e++){let{type:n}=t.edge(e);if(n.isTextblock&&!n.hasRequiredAttrs())return n}return null}const mq=(t,e)=>{let{$head:n,$anchor:r}=t.selection;if(!n.parent.type.spec.code||!n.sameParent(r))return!1;let i=n.node(-1),s=n.indexAfter(-1),a=px(i.contentMatchAt(s));if(!a||!i.canReplaceWith(s,s,a))return!1;if(e){let u=n.after(),c=t.tr.replaceWith(u,u,a.createAndFill());c.setSelection(Me.near(c.doc.resolve(u),1)),e(c.scrollIntoView())}return!0},H9=(t,e)=>{let n=t.selection,{$from:r,$to:i}=n;if(n instanceof Jn||r.parent.inlineContent||i.parent.inlineContent)return!1;let s=px(i.parent.contentMatchAt(i.indexAfter()));if(!s||!s.isTextblock)return!1;if(e){let a=(!r.parentOffset&&i.index()<i.parent.childCount?r:i).pos,u=t.tr.insert(a,s.createAndFill());u.setSelection(De.create(u.doc,a+1)),e(u.scrollIntoView())}return!0},U9=(t,e)=>{let{$cursor:n}=t.selection;if(!n||n.parent.content.size)return!1;if(n.depth>1&&n.after()!=n.end(-1)){let s=n.before();if(Ri(t.doc,s))return e&&e(t.tr.split(s).scrollIntoView()),!0}let r=n.blockRange(),i=r&&Yl(r);return i==null?!1:(e&&e(t.tr.lift(r,i).scrollIntoView()),!0)};function gq(t){return(e,n)=>{if(e.selection instanceof ke&&e.selection.node.isBlock){let{$from:b}=e.selection;return!b.parentOffset||!Ri(e.doc,b.pos)?!1:(n&&n(e.tr.split(b.pos).scrollIntoView()),!0)}if(!e.selection.$from.depth)return!1;let r=e.tr;!e.selection.empty&&(e.selection instanceof De||e.selection instanceof Jn)&&r.deleteSelection();let{$from:i}=r.selection,s=r.steps.length,a=[],u,c,f=!1,h=!1;for(let b=i.depth;;b--)if(i.node(b).isBlock){f=i.end(b)==i.pos+(i.depth-b),h=i.start(b)==i.pos-(i.depth-b),c=px(i.node(b-1).contentMatchAt(i.indexAfter(b-1))),a.unshift(f&&c?{type:c}:null),u=b;break}else{if(b==1)return!1;a.unshift(null)}let m=i.pos,g=Ri(r.doc,m,a.length,a);if(g||(a[0]=c?{type:c}:null,g=Ri(r.doc,m,a.length,a)),!g)return!1;if(r.split(m,a.length,a),!f&&h&&i.node(u).type!=c){let b=r.mapping.slice(s),x=b.map(i.before(u)),k=r.doc.resolve(x);c&&i.node(u-1).canReplaceWith(k.index(),k.index()+1,c)&&r.setNodeMarkup(b.map(i.before(u)),c)}return n&&n(r.scrollIntoView()),!0}}const bq=gq(),yq=(t,e)=>{let{$from:n,to:r}=t.selection,i,s=n.sharedDepth(r);return s==0?!1:(i=n.before(s),e&&e(t.tr.setSelection(ke.create(t.doc,i))),!0)};function xq(t,e,n){let r=e.nodeBefore,i=e.nodeAfter,s=e.index();return!r||!i||!r.type.compatibleContent(i.type)?!1:!r.content.size&&e.parent.canReplace(s-1,s)?(n&&n(t.tr.delete(e.pos-r.nodeSize,e.pos).scrollIntoView()),!0):!e.parent.canReplace(s,s+1)||!(i.isTextblock||no(t.doc,e.pos))?!1:(n&&n(t.tr.join(e.pos).scrollIntoView()),!0)}function q9(t,e,n,r){let i=e.nodeBefore,s=e.nodeAfter,a,u,c=i.type.spec.isolating||s.type.spec.isolating;if(!c&&xq(t,e,n))return!0;let f=!c&&e.parent.canReplace(e.index(),e.index()+1);if(f&&(a=(u=i.contentMatchAt(i.childCount)).findWrapping(s.type))&&u.matchType(a[0]||s.type).validEnd){if(n){let b=e.pos+s.nodeSize,x=ae.empty;for(let D=a.length-1;D>=0;D--)x=ae.from(a[D].create(null,x));x=ae.from(i.copy(x));let k=t.tr.step(new Ut(e.pos-1,b,e.pos,b,new pe(x,1,0),a.length,!0)),E=k.doc.resolve(b+2*a.length);E.nodeAfter&&E.nodeAfter.type==i.type&&no(k.doc,E.pos)&&k.join(E.pos),n(k.scrollIntoView())}return!0}let h=s.type.spec.isolating||r>0&&c?null:Me.findFrom(e,1),m=h&&h.$from.blockRange(h.$to),g=m&&Yl(m);if(g!=null&&g>=e.depth)return n&&n(t.tr.lift(m,g).scrollIntoView()),!0;if(f&&Ol(s,"start",!0)&&Ol(i,"end")){let b=i,x=[];for(;x.push(b),!b.isTextblock;)b=b.lastChild;let k=s,E=1;for(;!k.isTextblock;k=k.firstChild)E++;if(b.canReplace(b.childCount,b.childCount,k.content)){if(n){let D=ae.empty;for(let $=x.length-1;$>=0;$--)D=ae.from(x[$].copy(D));let T=t.tr.step(new Ut(e.pos-x.length,e.pos+s.nodeSize,e.pos+E,e.pos+s.nodeSize-E,new pe(D,x.length,0),0,!0));n(T.scrollIntoView())}return!0}}return!1}function G9(t){return function(e,n){let r=e.selection,i=t<0?r.$from:r.$to,s=i.depth;for(;i.node(s).isInline;){if(!s)return!1;s--}return i.node(s).isTextblock?(n&&n(e.tr.setSelection(De.create(e.doc,t<0?i.start(s):i.end(s)))),!0):!1}}const vq=G9(-1),kq=G9(1);function Cq(t,e=null){return function(n,r){let{$from:i,$to:s}=n.selection,a=i.blockRange(s),u=a&&cx(a,t,e);return u?(r&&r(n.tr.wrap(a,u).scrollIntoView()),!0):!1}}function jE(t,e=null){return function(n,r){let i=!1;for(let s=0;s<n.selection.ranges.length&&!i;s++){let{$from:{pos:a},$to:{pos:u}}=n.selection.ranges[s];n.doc.nodesBetween(a,u,(c,f)=>{if(i)return!1;if(!(!c.isTextblock||c.hasMarkup(t,e)))if(c.type==t)i=!0;else{let h=n.doc.resolve(f),m=h.index();i=h.parent.canReplaceWith(m,m+1,t)}})}if(!i)return!1;if(r){let s=n.tr;for(let a=0;a<n.selection.ranges.length;a++){let{$from:{pos:u},$to:{pos:c}}=n.selection.ranges[a];s.setBlockType(u,c,t,e)}r(s.scrollIntoView())}return!0}}function mx(...t){return function(e,n,r){for(let i=0;i<t.length;i++)if(t[i](e,n,r))return!0;return!1}}mx(O9,z9,j9);mx(O9,K9,_9);mx(V9,H9,U9,bq);typeof navigator<"u"?/Mac|iP(hone|[oa]d)/.test(navigator.platform):typeof os<"u"&&os.platform&&os.platform()=="darwin";function Eq(t,e=null){return function(n,r){let{$from:i,$to:s}=n.selection,a=i.blockRange(s);if(!a)return!1;let u=r?n.tr:null;return Dq(u,a,t,e)?(r&&r(u.scrollIntoView()),!0):!1}}function Dq(t,e,n,r=null){let i=!1,s=e,a=e.$from.doc;if(e.depth>=2&&e.$from.node(e.depth-1).type.compatibleContent(n)&&e.startIndex==0){if(e.$from.index(e.depth-1)==0)return!1;let c=a.resolve(e.start-2);s=new bp(c,c,e.depth),e.endIndex<e.parent.childCount&&(e=new bp(e.$from,a.resolve(e.$to.end(e.depth)),e.depth)),i=!0}let u=cx(s,n,r,e);return u?(t&&Sq(t,e,u,i,n),!0):!1}function Sq(t,e,n,r,i){let s=ae.empty;for(let h=n.length-1;h>=0;h--)s=ae.from(n[h].type.create(n[h].attrs,s));t.step(new Ut(e.start-(r?2:0),e.end,e.start,e.end,new pe(s,0,0),n.length,!0));let a=0;for(let h=0;h<n.length;h++)n[h].type==i&&(a=h+1);let u=n.length-a,c=e.start+n.length-(r?2:0),f=e.parent;for(let h=e.startIndex,m=e.endIndex,g=!0;h<m;h++,g=!1)!g&&Ri(t.doc,c,u)&&(t.split(c,u),c+=2*u),c+=f.child(h).nodeSize;return t}function wq(t){return function(e,n){let{$from:r,$to:i}=e.selection,s=r.blockRange(i,a=>a.childCount>0&&a.firstChild.type==t);return s?n?r.node(s.depth-1).type==t?$q(e,n,t,s):Tq(e,n,s):!0:!1}}function $q(t,e,n,r){let i=t.tr,s=r.end,a=r.$to.end(r.depth);s<a&&(i.step(new Ut(s-1,a,s,a,new pe(ae.from(n.create(null,r.parent.copy())),1,0),1,!0)),r=new bp(i.doc.resolve(r.$from.pos),i.doc.resolve(a),r.depth));const u=Yl(r);if(u==null)return!1;i.lift(r,u);let c=i.doc.resolve(i.mapping.map(s,-1)-1);return no(i.doc,c.pos)&&c.nodeBefore.type==c.nodeAfter.type&&i.join(c.pos),e(i.scrollIntoView()),!0}function Tq(t,e,n){let r=t.tr,i=n.parent;for(let b=n.end,x=n.endIndex-1,k=n.startIndex;x>k;x--)b-=i.child(x).nodeSize,r.delete(b-1,b+1);let s=r.doc.resolve(n.start),a=s.nodeAfter;if(r.mapping.map(n.end)!=n.start+s.nodeAfter.nodeSize)return!1;let u=n.startIndex==0,c=n.endIndex==i.childCount,f=s.node(-1),h=s.index(-1);if(!f.canReplace(h+(u?0:1),h+1,a.content.append(c?ae.empty:ae.from(i))))return!1;let m=s.pos,g=m+a.nodeSize;return r.step(new Ut(m-(u?1:0),g+(c?1:0),m+1,g-1,new pe((u?ae.empty:ae.from(i.copy(ae.empty))).append(c?ae.empty:ae.from(i.copy(ae.empty))),u?0:1,c?0:1),u?0:1)),e(r.scrollIntoView()),!0}function Aq(t){return function(e,n){let{$from:r,$to:i}=e.selection,s=r.blockRange(i,f=>f.childCount>0&&f.firstChild.type==t);if(!s)return!1;let a=s.startIndex;if(a==0)return!1;let u=s.parent,c=u.child(a-1);if(c.type!=t)return!1;if(n){let f=c.lastChild&&c.lastChild.type==u.type,h=ae.from(f?t.create():null),m=new pe(ae.from(t.create(null,ae.from(u.type.create(null,h)))),f?3:1,0),g=s.start,b=s.end;n(e.tr.step(new Ut(g-(f?3:1),b,g,b,m,1,!0)).scrollIntoView())}return!0}}const nn=function(t){for(var e=0;;e++)if(t=t.previousSibling,!t)return e},Ll=function(t){let e=t.assignedSlot||t.parentNode;return e&&e.nodeType==11?e.host:e};let T4=null;const Di=function(t,e,n){let r=T4||(T4=document.createRange());return r.setEnd(t,n??t.nodeValue.length),r.setStart(t,e||0),r},Bq=function(){T4=null},ca=function(t,e,n,r){return n&&(FE(t,e,n,r,-1)||FE(t,e,n,r,1))},Mq=/^(img|br|input|textarea|hr)$/i;function FE(t,e,n,r,i){for(var s;;){if(t==n&&e==r)return!0;if(e==(i<0?0:pr(t))){let a=t.parentNode;if(!a||a.nodeType!=1||Cd(t)||Mq.test(t.nodeName)||t.contentEditable=="false")return!1;e=nn(t)+(i<0?0:1),t=a}else if(t.nodeType==1){let a=t.childNodes[e+(i<0?-1:0)];if(a.nodeType==1&&a.contentEditable=="false")if(!((s=a.pmViewDesc)===null||s===void 0)&&s.ignoreForSelection)e+=i;else return!1;else t=a,e=i<0?pr(t):0}else return!1}}function pr(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function Rq(t,e){for(;;){if(t.nodeType==3&&e)return t;if(t.nodeType==1&&e>0){if(t.contentEditable=="false")return null;t=t.childNodes[e-1],e=pr(t)}else if(t.parentNode&&!Cd(t))e=nn(t),t=t.parentNode;else return null}}function Nq(t,e){for(;;){if(t.nodeType==3&&e<t.nodeValue.length)return t;if(t.nodeType==1&&e<t.childNodes.length){if(t.contentEditable=="false")return null;t=t.childNodes[e],e=0}else if(t.parentNode&&!Cd(t))e=nn(t)+1,t=t.parentNode;else return null}}function Pq(t,e,n){for(let r=e==0,i=e==pr(t);r||i;){if(t==n)return!0;let s=nn(t);if(t=t.parentNode,!t)return!1;r=r&&s==0,i=i&&s==pr(t)}}function Cd(t){let e;for(let n=t;n&&!(e=n.pmViewDesc);n=n.parentNode);return e&&e.node&&e.node.isBlock&&(e.dom==t||e.contentDOM==t)}const Pm=function(t){return t.focusNode&&ca(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)};function Mo(t,e){let n=document.createEvent("Event");return n.initEvent("keydown",!0,!0),n.keyCode=t,n.key=n.code=e,n}function Oq(t){let e=t.activeElement;for(;e&&e.shadowRoot;)e=e.shadowRoot.activeElement;return e}function Lq(t,e,n){if(t.caretPositionFromPoint)try{let r=t.caretPositionFromPoint(e,n);if(r)return{node:r.offsetNode,offset:Math.min(pr(r.offsetNode),r.offset)}}catch{}if(t.caretRangeFromPoint){let r=t.caretRangeFromPoint(e,n);if(r)return{node:r.startContainer,offset:Math.min(pr(r.startContainer),r.startOffset)}}}const Xr=typeof navigator<"u"?navigator:null,KE=typeof document<"u"?document:null,ro=Xr&&Xr.userAgent||"",A4=/Edge\/(\d+)/.exec(ro),W9=/MSIE \d/.exec(ro),B4=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(ro),Fn=!!(W9||B4||A4),Is=W9?document.documentMode:B4?+B4[1]:A4?+A4[1]:0,mr=!Fn&&/gecko\/(\d+)/i.test(ro);mr&&+(/Firefox\/(\d+)/.exec(ro)||[0,0])[1];const M4=!Fn&&/Chrome\/(\d+)/.exec(ro),sn=!!M4,Q9=M4?+M4[1]:0,mn=!Fn&&!!Xr&&/Apple Computer/.test(Xr.vendor),zl=mn&&(/Mobile\/\w+/.test(ro)||!!Xr&&Xr.maxTouchPoints>2),fr=zl||(Xr?/Mac/.test(Xr.platform):!1),Y9=Xr?/Win/.test(Xr.platform):!1,$i=/Android \d/.test(ro),Ed=!!KE&&"webkitFontSmoothing"in KE.documentElement.style,zq=Ed?+(/\bAppleWebKit\/(\d+)/.exec(navigator.userAgent)||[0,0])[1]:0;function Iq(t){let e=t.defaultView&&t.defaultView.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.documentElement.clientWidth,top:0,bottom:t.documentElement.clientHeight}}function xi(t,e){return typeof t=="number"?t:t[e]}function jq(t){let e=t.getBoundingClientRect(),n=e.width/t.offsetWidth||1,r=e.height/t.offsetHeight||1;return{left:e.left,right:e.left+t.clientWidth*n,top:e.top,bottom:e.top+t.clientHeight*r}}function _E(t,e,n){if(!R4(e)&&e.left==0)return;let r=t.someProp("scrollThreshold")||0,i=t.someProp("scrollMargin")||5,s=t.dom.ownerDocument;for(let a=n||t.dom;a;){if(a.nodeType!=1){a=Ll(a);continue}let u=a,c=u==s.body,f=c?Iq(s):jq(u),h=0,m=0;if(e.top<f.top+xi(r,"top")?m=-(f.top-e.top+xi(i,"top")):e.bottom>f.bottom-xi(r,"bottom")&&(m=e.bottom-e.top>f.bottom-f.top?e.top+xi(i,"top")-f.top:e.bottom-f.bottom+xi(i,"bottom")),e.left<f.left+xi(r,"left")?h=-(f.left-e.left+xi(i,"left")):e.right>f.right-xi(r,"right")&&(h=e.right-f.right+xi(i,"right")),h||m)if(c)s.defaultView.scrollBy(h,m);else{let b=u.scrollLeft,x=u.scrollTop;m&&(u.scrollTop+=m),h&&(u.scrollLeft+=h);let k=u.scrollLeft-b,E=u.scrollTop-x;e={left:e.left-k,top:e.top-E,right:e.right-k,bottom:e.bottom-E}}let g=c?"fixed":getComputedStyle(a).position;if(/^(fixed|sticky)$/.test(g))break;a=g=="absolute"?a.offsetParent:Ll(a)}}function Fq(t){let e=t.dom.getBoundingClientRect(),n=Math.max(0,e.top),r,i;for(let s=(e.left+e.right)/2,a=n+1;a<Math.min(innerHeight,e.bottom);a+=5){let u=t.root.elementFromPoint(s,a);if(!u||u==t.dom||!t.dom.contains(u))continue;let c=u.getBoundingClientRect();if(c.top>=n-20){r=u,i=c.top;break}}return{refDOM:r,refTop:i,stack:X9(t.dom)}}function X9(t){let e=[],n=t.ownerDocument;for(let r=t;r&&(e.push({dom:r,top:r.scrollTop,left:r.scrollLeft}),t!=n);r=Ll(r));return e}function Kq({refDOM:t,refTop:e,stack:n}){let r=t?t.getBoundingClientRect().top:0;J9(n,r==0?0:r-e)}function J9(t,e){for(let n=0;n<t.length;n++){let{dom:r,top:i,left:s}=t[n];r.scrollTop!=i+e&&(r.scrollTop=i+e),r.scrollLeft!=s&&(r.scrollLeft=s)}}let pl=null;function _q(t){if(t.setActive)return t.setActive();if(pl)return t.focus(pl);let e=X9(t);t.focus(pl==null?{get preventScroll(){return pl={preventScroll:!0},!0}}:void 0),pl||(pl=!1,J9(e,0))}function Z9(t,e){let n,r=2e8,i,s=0,a=e.top,u=e.top,c,f;for(let h=t.firstChild,m=0;h;h=h.nextSibling,m++){let g;if(h.nodeType==1)g=h.getClientRects();else if(h.nodeType==3)g=Di(h).getClientRects();else continue;for(let b=0;b<g.length;b++){let x=g[b];if(x.top<=a&&x.bottom>=u){a=Math.max(x.bottom,a),u=Math.min(x.top,u);let k=x.left>e.left?x.left-e.left:x.right<e.left?e.left-x.right:0;if(k<r){n=h,r=k,i=k&&n.nodeType==3?{left:x.right<e.left?x.right:x.left,top:e.top}:e,h.nodeType==1&&k&&(s=m+(e.left>=(x.left+x.right)/2?1:0));continue}}else x.top>e.top&&!c&&x.left<=e.left&&x.right>=e.left&&(c=h,f={left:Math.max(x.left,Math.min(x.right,e.left)),top:x.top});!n&&(e.left>=x.right&&e.top>=x.top||e.left>=x.left&&e.top>=x.bottom)&&(s=m+1)}}return!n&&c&&(n=c,i=f,r=0),n&&n.nodeType==3?Vq(n,i):!n||r&&n.nodeType==1?{node:t,offset:s}:Z9(n,i)}function Vq(t,e){let n=t.nodeValue.length,r=document.createRange(),i;for(let s=0;s<n;s++){r.setEnd(t,s+1),r.setStart(t,s);let a=vs(r,1);if(a.top!=a.bottom&&gx(e,a)){i={node:t,offset:s+(e.left>=(a.left+a.right)/2?1:0)};break}}return r.detach(),i||{node:t,offset:0}}function gx(t,e){return t.left>=e.left-1&&t.left<=e.right+1&&t.top>=e.top-1&&t.top<=e.bottom+1}function Hq(t,e){let n=t.parentNode;return n&&/^li$/i.test(n.nodeName)&&e.left<t.getBoundingClientRect().left?n:t}function Uq(t,e,n){let{node:r,offset:i}=Z9(e,n),s=-1;if(r.nodeType==1&&!r.firstChild){let a=r.getBoundingClientRect();s=a.left!=a.right&&n.left>(a.left+a.right)/2?1:-1}return t.docView.posFromDOM(r,i,s)}function qq(t,e,n,r){let i=-1;for(let s=e,a=!1;s!=t.dom;){let u=t.docView.nearestDesc(s,!0),c;if(!u)return null;if(u.dom.nodeType==1&&(u.node.isBlock&&u.parent||!u.contentDOM)&&((c=u.dom.getBoundingClientRect()).width||c.height)&&(u.node.isBlock&&u.parent&&!/^T(R|BODY|HEAD|FOOT)$/.test(u.dom.nodeName)&&(!a&&c.left>r.left||c.top>r.top?i=u.posBefore:(!a&&c.right<r.left||c.bottom<r.top)&&(i=u.posAfter),a=!0),!u.contentDOM&&i<0&&!u.node.isText))return(u.node.isBlock?r.top<(c.top+c.bottom)/2:r.left<(c.left+c.right)/2)?u.posBefore:u.posAfter;s=u.dom.parentNode}return i>-1?i:t.docView.posFromDOM(e,n,-1)}function e7(t,e,n){let r=t.childNodes.length;if(r&&n.top<n.bottom)for(let i=Math.max(0,Math.min(r-1,Math.floor(r*(e.top-n.top)/(n.bottom-n.top))-2)),s=i;;){let a=t.childNodes[s];if(a.nodeType==1){let u=a.getClientRects();for(let c=0;c<u.length;c++){let f=u[c];if(gx(e,f))return e7(a,e,f)}}if((s=(s+1)%r)==i)break}return t}function Gq(t,e){let n=t.dom.ownerDocument,r,i=0,s=Lq(n,e.left,e.top);s&&({node:r,offset:i}=s);let a=(t.root.elementFromPoint?t.root:n).elementFromPoint(e.left,e.top),u;if(!a||!t.dom.contains(a.nodeType!=1?a.parentNode:a)){let f=t.dom.getBoundingClientRect();if(!gx(e,f)||(a=e7(t.dom,e,f),!a))return null}if(mn)for(let f=a;r&&f;f=Ll(f))f.draggable&&(r=void 0);if(a=Hq(a,e),r){if(mr&&r.nodeType==1&&(i=Math.min(i,r.childNodes.length),i<r.childNodes.length)){let h=r.childNodes[i],m;h.nodeName=="IMG"&&(m=h.getBoundingClientRect()).right<=e.left&&m.bottom>e.top&&i++}let f;Ed&&i&&r.nodeType==1&&(f=r.childNodes[i-1]).nodeType==1&&f.contentEditable=="false"&&f.getBoundingClientRect().top>=e.top&&i--,r==t.dom&&i==r.childNodes.length-1&&r.lastChild.nodeType==1&&e.top>r.lastChild.getBoundingClientRect().bottom?u=t.state.doc.content.size:(i==0||r.nodeType!=1||r.childNodes[i-1].nodeName!="BR")&&(u=qq(t,r,i,e))}u==null&&(u=Uq(t,a,e));let c=t.docView.nearestDesc(a,!0);return{pos:u,inside:c?c.posAtStart-c.border:-1}}function R4(t){return t.top<t.bottom||t.left<t.right}function vs(t,e){let n=t.getClientRects();if(n.length){let r=n[e<0?0:n.length-1];if(R4(r))return r}return Array.prototype.find.call(n,R4)||t.getBoundingClientRect()}const Wq=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/;function t7(t,e,n){let{node:r,offset:i,atom:s}=t.docView.domFromPos(e,n<0?-1:1),a=Ed||mr;if(r.nodeType==3)if(a&&(Wq.test(r.nodeValue)||(n<0?!i:i==r.nodeValue.length))){let c=vs(Di(r,i,i),n);if(mr&&i&&/\s/.test(r.nodeValue[i-1])&&i<r.nodeValue.length){let f=vs(Di(r,i-1,i-1),-1);if(f.top==c.top){let h=vs(Di(r,i,i+1),-1);if(h.top!=c.top)return Zu(h,h.left<f.left)}}return c}else{let c=i,f=i,h=n<0?1:-1;return n<0&&!i?(f++,h=-1):n>=0&&i==r.nodeValue.length?(c--,h=1):n<0?c--:f++,Zu(vs(Di(r,c,f),h),h<0)}if(!t.state.doc.resolve(e-(s||0)).parent.inlineContent){if(s==null&&i&&(n<0||i==pr(r))){let c=r.childNodes[i-1];if(c.nodeType==1)return sy(c.getBoundingClientRect(),!1)}if(s==null&&i<pr(r)){let c=r.childNodes[i];if(c.nodeType==1)return sy(c.getBoundingClientRect(),!0)}return sy(r.getBoundingClientRect(),n>=0)}if(s==null&&i&&(n<0||i==pr(r))){let c=r.childNodes[i-1],f=c.nodeType==3?Di(c,pr(c)-(a?0:1)):c.nodeType==1&&(c.nodeName!="BR"||!c.nextSibling)?c:null;if(f)return Zu(vs(f,1),!1)}if(s==null&&i<pr(r)){let c=r.childNodes[i];for(;c.pmViewDesc&&c.pmViewDesc.ignoreForCoords;)c=c.nextSibling;let f=c?c.nodeType==3?Di(c,0,a?0:1):c.nodeType==1?c:null:null;if(f)return Zu(vs(f,-1),!0)}return Zu(vs(r.nodeType==3?Di(r):r,-n),n>=0)}function Zu(t,e){if(t.width==0)return t;let n=e?t.left:t.right;return{top:t.top,bottom:t.bottom,left:n,right:n}}function sy(t,e){if(t.height==0)return t;let n=e?t.top:t.bottom;return{top:n,bottom:n,left:t.left,right:t.right}}function n7(t,e,n){let r=t.state,i=t.root.activeElement;r!=e&&t.updateState(e),i!=t.dom&&t.focus();try{return n()}finally{r!=e&&t.updateState(r),i!=t.dom&&i&&i.focus()}}function Qq(t,e,n){let r=e.selection,i=n=="up"?r.$from:r.$to;return n7(t,e,()=>{let{node:s}=t.docView.domFromPos(i.pos,n=="up"?-1:1);for(;;){let u=t.docView.nearestDesc(s,!0);if(!u)break;if(u.node.isBlock){s=u.contentDOM||u.dom;break}s=u.dom.parentNode}let a=t7(t,i.pos,1);for(let u=s.firstChild;u;u=u.nextSibling){let c;if(u.nodeType==1)c=u.getClientRects();else if(u.nodeType==3)c=Di(u,0,u.nodeValue.length).getClientRects();else continue;for(let f=0;f<c.length;f++){let h=c[f];if(h.bottom>h.top+1&&(n=="up"?a.top-h.top>(h.bottom-a.top)*2:h.bottom-a.bottom>(a.bottom-h.top)*2))return!1}}return!0})}const Yq=/[\u0590-\u08ac]/;function Xq(t,e,n){let{$head:r}=e.selection;if(!r.parent.isTextblock)return!1;let i=r.parentOffset,s=!i,a=i==r.parent.content.size,u=t.domSelection();return u?!Yq.test(r.parent.textContent)||!u.modify?n=="left"||n=="backward"?s:a:n7(t,e,()=>{let{focusNode:c,focusOffset:f,anchorNode:h,anchorOffset:m}=t.domSelectionRange(),g=u.caretBidiLevel;u.modify("move",n,"character");let b=r.depth?t.docView.domAfterPos(r.before()):t.dom,{focusNode:x,focusOffset:k}=t.domSelectionRange(),E=x&&!b.contains(x.nodeType==1?x:x.parentNode)||c==x&&f==k;try{u.collapse(h,m),c&&(c!=h||f!=m)&&u.extend&&u.extend(c,f)}catch{}return g!=null&&(u.caretBidiLevel=g),E}):r.pos==r.start()||r.pos==r.end()}let VE=null,HE=null,UE=!1;function Jq(t,e,n){return VE==e&&HE==n?UE:(VE=e,HE=n,UE=n=="up"||n=="down"?Qq(t,e,n):Xq(t,e,n))}const gr=0,qE=1,Ko=2,Mr=3;class Dd{constructor(e,n,r,i){this.parent=e,this.children=n,this.dom=r,this.contentDOM=i,this.dirty=gr,r.pmViewDesc=this}matchesWidget(e){return!1}matchesMark(e){return!1}matchesNode(e,n,r){return!1}matchesHack(e){return!1}parseRule(e){return null}stopEvent(e){return!1}get size(){let e=0;for(let n=0;n<this.children.length;n++)e+=this.children[n].size;return e}get border(){return 0}destroy(){this.parent=void 0,this.dom.pmViewDesc==this&&(this.dom.pmViewDesc=void 0);for(let e=0;e<this.children.length;e++)this.children[e].destroy()}posBeforeChild(e){for(let n=0,r=this.posAtStart;;n++){let i=this.children[n];if(i==e)return r;r+=i.size}}get posBefore(){return this.parent.posBeforeChild(this)}get posAtStart(){return this.parent?this.parent.posBeforeChild(this)+this.border:0}get posAfter(){return this.posBefore+this.size}get posAtEnd(){return this.posAtStart+this.size-2*this.border}localPosFromDOM(e,n,r){if(this.contentDOM&&this.contentDOM.contains(e.nodeType==1?e:e.parentNode))if(r<0){let s,a;if(e==this.contentDOM)s=e.childNodes[n-1];else{for(;e.parentNode!=this.contentDOM;)e=e.parentNode;s=e.previousSibling}for(;s&&!((a=s.pmViewDesc)&&a.parent==this);)s=s.previousSibling;return s?this.posBeforeChild(a)+a.size:this.posAtStart}else{let s,a;if(e==this.contentDOM)s=e.childNodes[n];else{for(;e.parentNode!=this.contentDOM;)e=e.parentNode;s=e.nextSibling}for(;s&&!((a=s.pmViewDesc)&&a.parent==this);)s=s.nextSibling;return s?this.posBeforeChild(a):this.posAtEnd}let i;if(e==this.dom&&this.contentDOM)i=n>nn(this.contentDOM);else if(this.contentDOM&&this.contentDOM!=this.dom&&this.dom.contains(this.contentDOM))i=e.compareDocumentPosition(this.contentDOM)&2;else if(this.dom.firstChild){if(n==0)for(let s=e;;s=s.parentNode){if(s==this.dom){i=!1;break}if(s.previousSibling)break}if(i==null&&n==e.childNodes.length)for(let s=e;;s=s.parentNode){if(s==this.dom){i=!0;break}if(s.nextSibling)break}}return i??r>0?this.posAtEnd:this.posAtStart}nearestDesc(e,n=!1){for(let r=!0,i=e;i;i=i.parentNode){let s=this.getDesc(i),a;if(s&&(!n||s.node))if(r&&(a=s.nodeDOM)&&!(a.nodeType==1?a.contains(e.nodeType==1?e:e.parentNode):a==e))r=!1;else return s}}getDesc(e){let n=e.pmViewDesc;for(let r=n;r;r=r.parent)if(r==this)return n}posFromDOM(e,n,r){for(let i=e;i;i=i.parentNode){let s=this.getDesc(i);if(s)return s.localPosFromDOM(e,n,r)}return-1}descAt(e){for(let n=0,r=0;n<this.children.length;n++){let i=this.children[n],s=r+i.size;if(r==e&&s!=r){for(;!i.border&&i.children.length;)for(let a=0;a<i.children.length;a++){let u=i.children[a];if(u.size){i=u;break}}return i}if(e<s)return i.descAt(e-r-i.border);r=s}}domFromPos(e,n){if(!this.contentDOM)return{node:this.dom,offset:0,atom:e+1};let r=0,i=0;for(let s=0;r<this.children.length;r++){let a=this.children[r],u=s+a.size;if(u>e||a instanceof i7){i=e-s;break}s=u}if(i)return this.children[r].domFromPos(i-this.children[r].border,n);for(let s;r&&!(s=this.children[r-1]).size&&s instanceof r7&&s.side>=0;r--);if(n<=0){let s,a=!0;for(;s=r?this.children[r-1]:null,!(!s||s.dom.parentNode==this.contentDOM);r--,a=!1);return s&&n&&a&&!s.border&&!s.domAtom?s.domFromPos(s.size,n):{node:this.contentDOM,offset:s?nn(s.dom)+1:0}}else{let s,a=!0;for(;s=r<this.children.length?this.children[r]:null,!(!s||s.dom.parentNode==this.contentDOM);r++,a=!1);return s&&a&&!s.border&&!s.domAtom?s.domFromPos(0,n):{node:this.contentDOM,offset:s?nn(s.dom):this.contentDOM.childNodes.length}}}parseRange(e,n,r=0){if(this.children.length==0)return{node:this.contentDOM,from:e,to:n,fromOffset:0,toOffset:this.contentDOM.childNodes.length};let i=-1,s=-1;for(let a=r,u=0;;u++){let c=this.children[u],f=a+c.size;if(i==-1&&e<=f){let h=a+c.border;if(e>=h&&n<=f-c.border&&c.node&&c.contentDOM&&this.contentDOM.contains(c.contentDOM))return c.parseRange(e,n,h);e=a;for(let m=u;m>0;m--){let g=this.children[m-1];if(g.size&&g.dom.parentNode==this.contentDOM&&!g.emptyChildAt(1)){i=nn(g.dom)+1;break}e-=g.size}i==-1&&(i=0)}if(i>-1&&(f>n||u==this.children.length-1)){n=f;for(let h=u+1;h<this.children.length;h++){let m=this.children[h];if(m.size&&m.dom.parentNode==this.contentDOM&&!m.emptyChildAt(-1)){s=nn(m.dom);break}n+=m.size}s==-1&&(s=this.contentDOM.childNodes.length);break}a=f}return{node:this.contentDOM,from:e,to:n,fromOffset:i,toOffset:s}}emptyChildAt(e){if(this.border||!this.contentDOM||!this.children.length)return!1;let n=this.children[e<0?0:this.children.length-1];return n.size==0||n.emptyChildAt(e)}domAfterPos(e){let{node:n,offset:r}=this.domFromPos(e,0);if(n.nodeType!=1||r==n.childNodes.length)throw new RangeError("No node after pos "+e);return n.childNodes[r]}setSelection(e,n,r,i=!1){let s=Math.min(e,n),a=Math.max(e,n);for(let b=0,x=0;b<this.children.length;b++){let k=this.children[b],E=x+k.size;if(s>x&&a<E)return k.setSelection(e-x-k.border,n-x-k.border,r,i);x=E}let u=this.domFromPos(e,e?-1:1),c=n==e?u:this.domFromPos(n,n?-1:1),f=r.root.getSelection(),h=r.domSelectionRange(),m=!1;if((mr||mn)&&e==n){let{node:b,offset:x}=u;if(b.nodeType==3){if(m=!!(x&&b.nodeValue[x-1]==`
27
+ `),m&&x==b.nodeValue.length)for(let k=b,E;k;k=k.parentNode){if(E=k.nextSibling){E.nodeName=="BR"&&(u=c={node:E.parentNode,offset:nn(E)+1});break}let D=k.pmViewDesc;if(D&&D.node&&D.node.isBlock)break}}else{let k=b.childNodes[x-1];m=k&&(k.nodeName=="BR"||k.contentEditable=="false")}}if(mr&&h.focusNode&&h.focusNode!=c.node&&h.focusNode.nodeType==1){let b=h.focusNode.childNodes[h.focusOffset];b&&b.contentEditable=="false"&&(i=!0)}if(!(i||m&&mn)&&ca(u.node,u.offset,h.anchorNode,h.anchorOffset)&&ca(c.node,c.offset,h.focusNode,h.focusOffset))return;let g=!1;if((f.extend||e==n)&&!(m&&mr)){f.collapse(u.node,u.offset);try{e!=n&&f.extend(c.node,c.offset),g=!0}catch{}}if(!g){if(e>n){let x=u;u=c,c=x}let b=document.createRange();b.setEnd(c.node,c.offset),b.setStart(u.node,u.offset),f.removeAllRanges(),f.addRange(b)}}ignoreMutation(e){return!this.contentDOM&&e.type!="selection"}get contentLost(){return this.contentDOM&&this.contentDOM!=this.dom&&!this.dom.contains(this.contentDOM)}markDirty(e,n){for(let r=0,i=0;i<this.children.length;i++){let s=this.children[i],a=r+s.size;if(r==a?e<=a&&n>=r:e<a&&n>r){let u=r+s.border,c=a-s.border;if(e>=u&&n<=c){this.dirty=e==r||n==a?Ko:qE,e==u&&n==c&&(s.contentLost||s.dom.parentNode!=this.contentDOM)?s.dirty=Mr:s.markDirty(e-u,n-u);return}else s.dirty=s.dom==s.contentDOM&&s.dom.parentNode==this.contentDOM&&!s.children.length?Ko:Mr}r=a}this.dirty=Ko}markParentsDirty(){let e=1;for(let n=this.parent;n;n=n.parent,e++){let r=e==1?Ko:qE;n.dirty<r&&(n.dirty=r)}}get domAtom(){return!1}get ignoreForCoords(){return!1}get ignoreForSelection(){return!1}isText(e){return!1}}class r7 extends Dd{constructor(e,n,r,i){let s,a=n.type.toDOM;if(typeof a=="function"&&(a=a(r,()=>{if(!s)return i;if(s.parent)return s.parent.posBeforeChild(s)})),!n.type.spec.raw){if(a.nodeType!=1){let u=document.createElement("span");u.appendChild(a),a=u}a.contentEditable="false",a.classList.add("ProseMirror-widget")}super(e,[],a,null),this.widget=n,this.widget=n,s=this}matchesWidget(e){return this.dirty==gr&&e.type.eq(this.widget.type)}parseRule(){return{ignore:!0}}stopEvent(e){let n=this.widget.spec.stopEvent;return n?n(e):!1}ignoreMutation(e){return e.type!="selection"||this.widget.spec.ignoreSelection}destroy(){this.widget.type.destroy(this.dom),super.destroy()}get domAtom(){return!0}get ignoreForSelection(){return!!this.widget.type.spec.relaxedSide}get side(){return this.widget.type.side}}class Zq extends Dd{constructor(e,n,r,i){super(e,[],n,null),this.textDOM=r,this.text=i}get size(){return this.text.length}localPosFromDOM(e,n){return e!=this.textDOM?this.posAtStart+(n?this.size:0):this.posAtStart+n}domFromPos(e){return{node:this.textDOM,offset:e}}ignoreMutation(e){return e.type==="characterData"&&e.target.nodeValue==e.oldValue}}class js extends Dd{constructor(e,n,r,i,s){super(e,[],r,i),this.mark=n,this.spec=s}static create(e,n,r,i){let s=i.nodeViews[n.type.name],a=s&&s(n,i,r);return(!a||!a.dom)&&(a=Ca.renderSpec(document,n.type.spec.toDOM(n,r),null,n.attrs)),new js(e,n,a.dom,a.contentDOM||a.dom,a)}parseRule(){return this.dirty&Mr||this.mark.type.spec.reparseInView?null:{mark:this.mark.type.name,attrs:this.mark.attrs,contentElement:this.contentDOM}}matchesMark(e){return this.dirty!=Mr&&this.mark.eq(e)}markDirty(e,n){if(super.markDirty(e,n),this.dirty!=gr){let r=this.parent;for(;!r.node;)r=r.parent;r.dirty<this.dirty&&(r.dirty=this.dirty),this.dirty=gr}}slice(e,n,r){let i=js.create(this.parent,this.mark,!0,r),s=this.children,a=this.size;n<a&&(s=P4(s,n,a,r)),e>0&&(s=P4(s,0,e,r));for(let u=0;u<s.length;u++)s[u].parent=i;return i.children=s,i}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}}class Fs extends Dd{constructor(e,n,r,i,s,a,u){super(e,[],s,a),this.node=n,this.outerDeco=r,this.innerDeco=i,this.nodeDOM=u}static create(e,n,r,i,s,a){let u=s.nodeViews[n.type.name],c,f=u&&u(n,s,()=>{if(!c)return a;if(c.parent)return c.parent.posBeforeChild(c)},r,i),h=f&&f.dom,m=f&&f.contentDOM;if(n.isText){if(!h)h=document.createTextNode(n.text);else if(h.nodeType!=3)throw new RangeError("Text must be rendered as a DOM text node")}else h||({dom:h,contentDOM:m}=Ca.renderSpec(document,n.type.spec.toDOM(n),null,n.attrs));!m&&!n.isText&&h.nodeName!="BR"&&(h.hasAttribute("contenteditable")||(h.contentEditable="false"),n.type.spec.draggable&&(h.draggable=!0));let g=h;return h=a7(h,r,n),f?c=new eG(e,n,r,i,h,m||null,g,f):n.isText?new Om(e,n,r,i,h,g):new Fs(e,n,r,i,h,m||null,g)}parseRule(e){if(this.node.type.spec.reparseInView)return null;let n={node:this.node.type.name,attrs:this.node.attrs};if(this.node.type.whitespace=="pre"&&(n.preserveWhitespace="full"),!this.contentDOM)n.getContent=()=>this.node.content;else if(!this.contentLost)n.contentElement=this.contentDOM;else{for(let r=this.children.length-1;r>=0;r--){let i=this.children[r];if(this.dom.contains(i.dom.parentNode)){n.contentElement=i.dom.parentNode;break}}if(!n.contentElement){let r=e&&e.find(i=>i.nodeType==1&&e.indexOf(i.parentNode)<0&&this.dom.contains(i));r?n.contentElement=r:n.getContent=()=>ae.empty}}return n}matchesNode(e,n,r){return this.dirty==gr&&e.eq(this.node)&&xp(n,this.outerDeco)&&r.eq(this.innerDeco)}get size(){return this.node.nodeSize}get border(){return this.node.isLeaf?0:1}updateChildren(e,n){let r=this.node.inlineContent,i=n,s=e.composing?this.localCompositionInfo(e,n):null,a=s&&s.pos>-1?s:null,u=s&&s.pos<0,c=new nG(this,a&&a.node,e);sG(this.node,this.innerDeco,(f,h,m)=>{f.spec.marks?c.syncToMarks(f.spec.marks,r,e,h):f.type.side>=0&&!m&&c.syncToMarks(h==this.node.childCount?st.none:this.node.child(h).marks,r,e,h),c.placeWidget(f,e,i)},(f,h,m,g)=>{c.syncToMarks(f.marks,r,e,g);let b;c.findNodeMatch(f,h,m,g)||u&&e.state.selection.from>i&&e.state.selection.to<i+f.nodeSize&&(b=c.findIndexWithChild(s.node))>-1&&c.updateNodeAt(f,h,m,b,e)||c.updateNextNode(f,h,m,e,g,i)||c.addNode(f,h,m,e,i),i+=f.nodeSize}),c.syncToMarks([],r,e,0),this.node.isTextblock&&c.addTextblockHacks(),c.destroyRest(),(c.changed||this.dirty==Ko)&&(a&&this.protectLocalComposition(e,a),s7(this.contentDOM,this.children,e),zl&&oG(this.dom))}localCompositionInfo(e,n){let{from:r,to:i}=e.state.selection;if(!(e.state.selection instanceof De)||r<n||i>n+this.node.content.size)return null;let s=e.input.compositionNode;if(!s||!this.dom.contains(s.parentNode))return null;if(this.node.inlineContent){let a=s.nodeValue,u=aG(this.node.content,a,r-n,i-n);return u<0?null:{node:s,pos:u,text:a}}else return{node:s,pos:-1,text:""}}protectLocalComposition(e,{node:n,pos:r,text:i}){if(this.getDesc(n))return;let s=n;for(;s.parentNode!=this.contentDOM;s=s.parentNode){for(;s.previousSibling;)s.parentNode.removeChild(s.previousSibling);for(;s.nextSibling;)s.parentNode.removeChild(s.nextSibling);s.pmViewDesc&&(s.pmViewDesc=void 0)}let a=new Zq(this,s,n,i);e.input.compositionNodes.push(a),this.children=P4(this.children,r,r+i.length,e,a)}update(e,n,r,i){return this.dirty==Mr||!e.sameMarkup(this.node)?!1:(this.updateInner(e,n,r,i),!0)}updateInner(e,n,r,i){this.updateOuterDeco(n),this.node=e,this.innerDeco=r,this.contentDOM&&this.updateChildren(i,this.posAtStart),this.dirty=gr}updateOuterDeco(e){if(xp(e,this.outerDeco))return;let n=this.nodeDOM.nodeType!=1,r=this.dom;this.dom=o7(this.dom,this.nodeDOM,N4(this.outerDeco,this.node,n),N4(e,this.node,n)),this.dom!=r&&(r.pmViewDesc=void 0,this.dom.pmViewDesc=this),this.outerDeco=e}selectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.add("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&(this.nodeDOM.draggable=!0))}deselectNode(){this.nodeDOM.nodeType==1&&(this.nodeDOM.classList.remove("ProseMirror-selectednode"),(this.contentDOM||!this.node.type.spec.draggable)&&this.nodeDOM.removeAttribute("draggable"))}get domAtom(){return this.node.isAtom}}function GE(t,e,n,r,i){a7(r,e,t);let s=new Fs(void 0,t,e,n,r,r,r);return s.contentDOM&&s.updateChildren(i,0),s}class Om extends Fs{constructor(e,n,r,i,s,a){super(e,n,r,i,s,null,a)}parseRule(){let e=this.nodeDOM.parentNode;for(;e&&e!=this.dom&&!e.pmIsDeco;)e=e.parentNode;return{skip:e||!0}}update(e,n,r,i){return this.dirty==Mr||this.dirty!=gr&&!this.inParent()||!e.sameMarkup(this.node)?!1:(this.updateOuterDeco(n),(this.dirty!=gr||e.text!=this.node.text)&&e.text!=this.nodeDOM.nodeValue&&(this.nodeDOM.nodeValue=e.text,i.trackWrites==this.nodeDOM&&(i.trackWrites=null)),this.node=e,this.dirty=gr,!0)}inParent(){let e=this.parent.contentDOM;for(let n=this.nodeDOM;n;n=n.parentNode)if(n==e)return!0;return!1}domFromPos(e){return{node:this.nodeDOM,offset:e}}localPosFromDOM(e,n,r){return e==this.nodeDOM?this.posAtStart+Math.min(n,this.node.text.length):super.localPosFromDOM(e,n,r)}ignoreMutation(e){return e.type!="characterData"&&e.type!="selection"}slice(e,n,r){let i=this.node.cut(e,n),s=document.createTextNode(i.text);return new Om(this.parent,i,this.outerDeco,this.innerDeco,s,s)}markDirty(e,n){super.markDirty(e,n),this.dom!=this.nodeDOM&&(e==0||n==this.nodeDOM.nodeValue.length)&&(this.dirty=Mr)}get domAtom(){return!1}isText(e){return this.node.text==e}}class i7 extends Dd{parseRule(){return{ignore:!0}}matchesHack(e){return this.dirty==gr&&this.dom.nodeName==e}get domAtom(){return!0}get ignoreForCoords(){return this.dom.nodeName=="IMG"}}class eG extends Fs{constructor(e,n,r,i,s,a,u,c){super(e,n,r,i,s,a,u),this.spec=c}update(e,n,r,i){if(this.dirty==Mr)return!1;if(this.spec.update&&(this.node.type==e.type||this.spec.multiType)){let s=this.spec.update(e,n,r);return s&&this.updateInner(e,n,r,i),s}else return!this.contentDOM&&!e.isLeaf?!1:super.update(e,n,r,i)}selectNode(){this.spec.selectNode?this.spec.selectNode():super.selectNode()}deselectNode(){this.spec.deselectNode?this.spec.deselectNode():super.deselectNode()}setSelection(e,n,r,i){this.spec.setSelection?this.spec.setSelection(e,n,r.root):super.setSelection(e,n,r,i)}destroy(){this.spec.destroy&&this.spec.destroy(),super.destroy()}stopEvent(e){return this.spec.stopEvent?this.spec.stopEvent(e):!1}ignoreMutation(e){return this.spec.ignoreMutation?this.spec.ignoreMutation(e):super.ignoreMutation(e)}}function s7(t,e,n){let r=t.firstChild,i=!1;for(let s=0;s<e.length;s++){let a=e[s],u=a.dom;if(u.parentNode==t){for(;u!=r;)r=WE(r),i=!0;r=r.nextSibling}else i=!0,t.insertBefore(u,r);if(a instanceof js){let c=r?r.previousSibling:t.lastChild;s7(a.contentDOM,a.children,n),r=c?c.nextSibling:t.firstChild}}for(;r;)r=WE(r),i=!0;i&&n.trackWrites==t&&(n.trackWrites=null)}const Sc=function(t){t&&(this.nodeName=t)};Sc.prototype=Object.create(null);const _o=[new Sc];function N4(t,e,n){if(t.length==0)return _o;let r=n?_o[0]:new Sc,i=[r];for(let s=0;s<t.length;s++){let a=t[s].type.attrs;if(a){a.nodeName&&i.push(r=new Sc(a.nodeName));for(let u in a){let c=a[u];c!=null&&(n&&i.length==1&&i.push(r=new Sc(e.isInline?"span":"div")),u=="class"?r.class=(r.class?r.class+" ":"")+c:u=="style"?r.style=(r.style?r.style+";":"")+c:u!="nodeName"&&(r[u]=c))}}}return i}function o7(t,e,n,r){if(n==_o&&r==_o)return e;let i=e;for(let s=0;s<r.length;s++){let a=r[s],u=n[s];if(s){let c;u&&u.nodeName==a.nodeName&&i!=t&&(c=i.parentNode)&&c.nodeName.toLowerCase()==a.nodeName||(c=document.createElement(a.nodeName),c.pmIsDeco=!0,c.appendChild(i),u=_o[0]),i=c}tG(i,u||_o[0],a)}return i}function tG(t,e,n){for(let r in e)r!="class"&&r!="style"&&r!="nodeName"&&!(r in n)&&t.removeAttribute(r);for(let r in n)r!="class"&&r!="style"&&r!="nodeName"&&n[r]!=e[r]&&t.setAttribute(r,n[r]);if(e.class!=n.class){let r=e.class?e.class.split(" ").filter(Boolean):[],i=n.class?n.class.split(" ").filter(Boolean):[];for(let s=0;s<r.length;s++)i.indexOf(r[s])==-1&&t.classList.remove(r[s]);for(let s=0;s<i.length;s++)r.indexOf(i[s])==-1&&t.classList.add(i[s]);t.classList.length==0&&t.removeAttribute("class")}if(e.style!=n.style){if(e.style){let r=/\s*([\w\-\xa1-\uffff]+)\s*:(?:"(?:\\.|[^"])*"|'(?:\\.|[^'])*'|\(.*?\)|[^;])*/g,i;for(;i=r.exec(e.style);)t.style.removeProperty(i[1])}n.style&&(t.style.cssText+=n.style)}}function a7(t,e,n){return o7(t,t,_o,N4(e,n,t.nodeType!=1))}function xp(t,e){if(t.length!=e.length)return!1;for(let n=0;n<t.length;n++)if(!t[n].type.eq(e[n].type))return!1;return!0}function WE(t){let e=t.nextSibling;return t.parentNode.removeChild(t),e}class nG{constructor(e,n,r){this.lock=n,this.view=r,this.index=0,this.stack=[],this.changed=!1,this.top=e,this.preMatch=rG(e.node.content,e)}destroyBetween(e,n){if(e!=n){for(let r=e;r<n;r++)this.top.children[r].destroy();this.top.children.splice(e,n-e),this.changed=!0}}destroyRest(){this.destroyBetween(this.index,this.top.children.length)}syncToMarks(e,n,r,i){let s=0,a=this.stack.length>>1,u=Math.min(a,e.length);for(;s<u&&(s==a-1?this.top:this.stack[s+1<<1]).matchesMark(e[s])&&e[s].type.spec.spanning!==!1;)s++;for(;s<a;)this.destroyRest(),this.top.dirty=gr,this.index=this.stack.pop(),this.top=this.stack.pop(),a--;for(;a<e.length;){this.stack.push(this.top,this.index+1);let c=-1,f=this.top.children.length;i<this.preMatch.index&&(f=Math.min(this.index+3,f));for(let h=this.index;h<f;h++){let m=this.top.children[h];if(m.matchesMark(e[a])&&!this.isLocked(m.dom)){c=h;break}}if(c<0&&this.index<this.top.children.length){let h=this.top.children[this.index];h instanceof js&&h.dirty!=Mr&&h.mark.type==e[a].type&&h.spec.update&&!this.isLocked(h.dom)&&h.spec.update(e[a])&&(h.mark=e[a],c=this.index,this.changed=!0)}if(c>-1)c>this.index&&(this.changed=!0,this.destroyBetween(this.index,c)),this.top=this.top.children[this.index];else{let h=js.create(this.top,e[a],n,r);this.top.children.splice(this.index,0,h),this.top=h,this.changed=!0}this.index=0,a++}}findNodeMatch(e,n,r,i){let s=-1,a;if(i>=this.preMatch.index&&(a=this.preMatch.matches[i-this.preMatch.index]).parent==this.top&&a.matchesNode(e,n,r))s=this.top.children.indexOf(a,this.index);else for(let u=this.index,c=Math.min(this.top.children.length,u+5);u<c;u++){let f=this.top.children[u];if(f.matchesNode(e,n,r)&&!this.preMatch.matched.has(f)){s=u;break}}return s<0?!1:(this.destroyBetween(this.index,s),this.index++,!0)}updateNodeAt(e,n,r,i,s){let a=this.top.children[i];return a.dirty==Mr&&a.dom==a.contentDOM&&(a.dirty=Ko),a.update(e,n,r,s)?(this.destroyBetween(this.index,i),this.index++,!0):!1}findIndexWithChild(e){for(;;){let n=e.parentNode;if(!n)return-1;if(n==this.top.contentDOM){let r=e.pmViewDesc;if(r){for(let i=this.index;i<this.top.children.length;i++)if(this.top.children[i]==r)return i}return-1}e=n}}updateNextNode(e,n,r,i,s,a){for(let u=this.index;u<this.top.children.length;u++){let c=this.top.children[u];if(c instanceof Fs){let f=this.preMatch.matched.get(c);if(f!=null&&f!=s)return!1;let h=c.dom,m,g=this.isLocked(h)&&!(e.isText&&c.node&&c.node.isText&&c.nodeDOM.nodeValue==e.text&&c.dirty!=Mr&&xp(n,c.outerDeco));if(!g&&c.update(e,n,r,i))return this.destroyBetween(this.index,u),c.dom!=h&&(this.changed=!0),this.index++,!0;if(!g&&(m=this.recreateWrapper(c,e,n,r,i,a)))return this.destroyBetween(this.index,u),this.top.children[this.index]=m,m.contentDOM&&(m.dirty=Ko,m.updateChildren(i,a+1),m.dirty=gr),this.changed=!0,this.index++,!0;break}}return!1}recreateWrapper(e,n,r,i,s,a){if(e.dirty||n.isAtom||!e.children.length||!e.node.content.eq(n.content)||!xp(r,e.outerDeco)||!i.eq(e.innerDeco))return null;let u=Fs.create(this.top,n,r,i,s,a);if(u.contentDOM){u.children=e.children,e.children=[];for(let c of u.children)c.parent=u}return e.destroy(),u}addNode(e,n,r,i,s){let a=Fs.create(this.top,e,n,r,i,s);a.contentDOM&&a.updateChildren(i,s+1),this.top.children.splice(this.index++,0,a),this.changed=!0}placeWidget(e,n,r){let i=this.index<this.top.children.length?this.top.children[this.index]:null;if(i&&i.matchesWidget(e)&&(e==i.widget||!i.widget.type.toDOM.parentNode))this.index++;else{let s=new r7(this.top,e,n,r);this.top.children.splice(this.index++,0,s),this.changed=!0}}addTextblockHacks(){let e=this.top.children[this.index-1],n=this.top;for(;e instanceof js;)n=e,e=n.children[n.children.length-1];(!e||!(e instanceof Om)||/\n$/.test(e.node.text)||this.view.requiresGeckoHackNode&&/\s$/.test(e.node.text))&&((mn||sn)&&e&&e.dom.contentEditable=="false"&&this.addHackNode("IMG",n),this.addHackNode("BR",this.top))}addHackNode(e,n){if(n==this.top&&this.index<n.children.length&&n.children[this.index].matchesHack(e))this.index++;else{let r=document.createElement(e);e=="IMG"&&(r.className="ProseMirror-separator",r.alt=""),e=="BR"&&(r.className="ProseMirror-trailingBreak");let i=new i7(this.top,[],r,null);n!=this.top?n.children.push(i):n.children.splice(this.index++,0,i),this.changed=!0}}isLocked(e){return this.lock&&(e==this.lock||e.nodeType==1&&e.contains(this.lock.parentNode))}}function rG(t,e){let n=e,r=n.children.length,i=t.childCount,s=new Map,a=[];e:for(;i>0;){let u;for(;;)if(r){let f=n.children[r-1];if(f instanceof js)n=f,r=f.children.length;else{u=f,r--;break}}else{if(n==e)break e;r=n.parent.children.indexOf(n),n=n.parent}let c=u.node;if(c){if(c!=t.child(i-1))break;--i,s.set(u,i),a.push(u)}}return{index:i,matched:s,matches:a.reverse()}}function iG(t,e){return t.type.side-e.type.side}function sG(t,e,n,r){let i=e.locals(t),s=0;if(i.length==0){for(let f=0;f<t.childCount;f++){let h=t.child(f);r(h,i,e.forChild(s,h),f),s+=h.nodeSize}return}let a=0,u=[],c=null;for(let f=0;;){let h,m;for(;a<i.length&&i[a].to==s;){let E=i[a++];E.widget&&(h?(m||(m=[h])).push(E):h=E)}if(h)if(m){m.sort(iG);for(let E=0;E<m.length;E++)n(m[E],f,!!c)}else n(h,f,!!c);let g,b;if(c)b=-1,g=c,c=null;else if(f<t.childCount)b=f,g=t.child(f++);else break;for(let E=0;E<u.length;E++)u[E].to<=s&&u.splice(E--,1);for(;a<i.length&&i[a].from<=s&&i[a].to>s;)u.push(i[a++]);let x=s+g.nodeSize;if(g.isText){let E=x;a<i.length&&i[a].from<E&&(E=i[a].from);for(let D=0;D<u.length;D++)u[D].to<E&&(E=u[D].to);E<x&&(c=g.cut(E-s),g=g.cut(0,E-s),x=E,b=-1)}else for(;a<i.length&&i[a].to<x;)a++;let k=g.isInline&&!g.isLeaf?u.filter(E=>!E.inline):u.slice();r(g,k,e.forChild(s,g),b),s=x}}function oG(t){if(t.nodeName=="UL"||t.nodeName=="OL"){let e=t.style.cssText;t.style.cssText=e+"; list-style: square !important",window.getComputedStyle(t).listStyle,t.style.cssText=e}}function aG(t,e,n,r){for(let i=0,s=0;i<t.childCount&&s<=r;){let a=t.child(i++),u=s;if(s+=a.nodeSize,!a.isText)continue;let c=a.text;for(;i<t.childCount;){let f=t.child(i++);if(s+=f.nodeSize,!f.isText)break;c+=f.text}if(s>=n){if(s>=r&&c.slice(r-e.length-u,r-u)==e)return r-e.length;let f=u<r?c.lastIndexOf(e,r-u-1):-1;if(f>=0&&f+e.length+u>=n)return u+f;if(n==r&&c.length>=r+e.length-u&&c.slice(r-u,r-u+e.length)==e)return r}}return-1}function P4(t,e,n,r,i){let s=[];for(let a=0,u=0;a<t.length;a++){let c=t[a],f=u,h=u+=c.size;f>=n||h<=e?s.push(c):(f<e&&s.push(c.slice(0,e-f,r)),i&&(s.push(i),i=void 0),h>n&&s.push(c.slice(n-f,c.size,r)))}return s}function bx(t,e=null){let n=t.domSelectionRange(),r=t.state.doc;if(!n.focusNode)return null;let i=t.docView.nearestDesc(n.focusNode),s=i&&i.size==0,a=t.docView.posFromDOM(n.focusNode,n.focusOffset,1);if(a<0)return null;let u=r.resolve(a),c,f;if(Pm(n)){for(c=a;i&&!i.node;)i=i.parent;let m=i.node;if(i&&m.isAtom&&ke.isSelectable(m)&&i.parent&&!(m.isInline&&Pq(n.focusNode,n.focusOffset,i.dom))){let g=i.posBefore;f=new ke(a==g?u:r.resolve(g))}}else{if(n instanceof t.dom.ownerDocument.defaultView.Selection&&n.rangeCount>1){let m=a,g=a;for(let b=0;b<n.rangeCount;b++){let x=n.getRangeAt(b);m=Math.min(m,t.docView.posFromDOM(x.startContainer,x.startOffset,1)),g=Math.max(g,t.docView.posFromDOM(x.endContainer,x.endOffset,-1))}if(m<0)return null;[c,a]=g==t.state.selection.anchor?[g,m]:[m,g],u=r.resolve(a)}else c=t.docView.posFromDOM(n.anchorNode,n.anchorOffset,1);if(c<0)return null}let h=r.resolve(c);if(!f){let m=e=="pointer"||t.state.selection.head<u.pos&&!s?1:-1;f=yx(t,h,u,m)}return f}function l7(t){return t.editable?t.hasFocus():c7(t)&&document.activeElement&&document.activeElement.contains(t.dom)}function Ni(t,e=!1){let n=t.state.selection;if(u7(t,n),!l7(t))return;let r=t.input.mouseDown;if(!e&&sn&&r){let i=t.domSelectionRange(),s=t.domObserver.currentSelection;if(i.anchorNode&&s.anchorNode&&ca(i.anchorNode,i.anchorOffset,s.anchorNode,s.anchorOffset)&&r.delaySelUpdate()){t.domObserver.setCurSelection();return}}if(t.domObserver.disconnectSelection(),t.cursorWrapper)uG(t);else{let{anchor:i,head:s}=n,a,u;QE&&!(n instanceof De)&&(n.$from.parent.inlineContent||(a=YE(t,n.from)),!n.empty&&!n.$from.parent.inlineContent&&(u=YE(t,n.to))),t.docView.setSelection(i,s,t,e),QE&&(a&&XE(a),u&&XE(u)),n.visible?t.dom.classList.remove("ProseMirror-hideselection"):(t.dom.classList.add("ProseMirror-hideselection"),"onselectionchange"in document&&lG(t))}t.domObserver.setCurSelection(),t.domObserver.connectSelection()}const QE=mn||sn&&Q9<63;function YE(t,e){let{node:n,offset:r}=t.docView.domFromPos(e,0),i=r<n.childNodes.length?n.childNodes[r]:null,s=r?n.childNodes[r-1]:null;if(mn&&i&&i.contentEditable=="false")return oy(i);if((!i||i.contentEditable=="false")&&(!s||s.contentEditable=="false")){if(i)return oy(i);if(s)return oy(s)}}function oy(t){return t.contentEditable="true",mn&&t.draggable&&(t.draggable=!1,t.wasDraggable=!0),t}function XE(t){t.contentEditable="false",t.wasDraggable&&(t.draggable=!0,t.wasDraggable=null)}function lG(t){let e=t.dom.ownerDocument;e.removeEventListener("selectionchange",t.input.hideSelectionGuard);let n=t.domSelectionRange(),r=n.anchorNode,i=n.anchorOffset;e.addEventListener("selectionchange",t.input.hideSelectionGuard=()=>{(n.anchorNode!=r||n.anchorOffset!=i)&&(e.removeEventListener("selectionchange",t.input.hideSelectionGuard),setTimeout(()=>{(!l7(t)||t.state.selection.visible)&&t.dom.classList.remove("ProseMirror-hideselection")},20))})}function uG(t){let e=t.domSelection();if(!e)return;let n=t.cursorWrapper.dom,r=n.nodeName=="IMG";r?e.collapse(n.parentNode,nn(n)+1):e.collapse(n,0),!r&&!t.state.selection.visible&&Fn&&Is<=11&&(n.disabled=!0,n.disabled=!1)}function u7(t,e){if(e instanceof ke){let n=t.docView.descAt(e.from);n!=t.lastSelectedViewDesc&&(JE(t),n&&n.selectNode(),t.lastSelectedViewDesc=n)}else JE(t)}function JE(t){t.lastSelectedViewDesc&&(t.lastSelectedViewDesc.parent&&t.lastSelectedViewDesc.deselectNode(),t.lastSelectedViewDesc=void 0)}function yx(t,e,n,r){return t.someProp("createSelectionBetween",i=>i(t,e,n))||De.between(e,n,r)}function ZE(t){return t.editable&&!t.hasFocus()?!1:c7(t)}function c7(t){let e=t.domSelectionRange();if(!e.anchorNode)return!1;try{return t.dom.contains(e.anchorNode.nodeType==3?e.anchorNode.parentNode:e.anchorNode)&&(t.editable||t.dom.contains(e.focusNode.nodeType==3?e.focusNode.parentNode:e.focusNode))}catch{return!1}}function cG(t){let e=t.docView.domFromPos(t.state.selection.anchor,0),n=t.domSelectionRange();return ca(e.node,e.offset,n.anchorNode,n.anchorOffset)}function O4(t,e){let{$anchor:n,$head:r}=t.selection,i=e>0?n.max(r):n.min(r),s=i.parent.inlineContent?i.depth?t.doc.resolve(e>0?i.after():i.before()):null:i;return s&&Me.findFrom(s,e)}function Es(t,e){return t.dispatch(t.state.tr.setSelection(e).scrollIntoView()),!0}function eD(t,e,n){let r=t.state.selection;if(r instanceof De)if(n.indexOf("s")>-1){let{$head:i}=r,s=i.textOffset?null:e<0?i.nodeBefore:i.nodeAfter;if(!s||s.isText||!s.isLeaf)return!1;let a=t.state.doc.resolve(i.pos+s.nodeSize*(e<0?-1:1));return Es(t,new De(r.$anchor,a))}else if(r.empty){if(t.endOfTextblock(e>0?"forward":"backward")){let i=O4(t.state,e);return i&&i instanceof ke?Es(t,i):!1}else if(!(fr&&n.indexOf("m")>-1)){let i=r.$head,s=i.textOffset?null:e<0?i.nodeBefore:i.nodeAfter,a;if(!s||s.isText)return!1;let u=e<0?i.pos-s.nodeSize:i.pos;return s.isAtom||(a=t.docView.descAt(u))&&!a.contentDOM?ke.isSelectable(s)?Es(t,new ke(e<0?t.state.doc.resolve(i.pos-s.nodeSize):i)):Ed?Es(t,new De(t.state.doc.resolve(e<0?u:u+s.nodeSize))):!1:!1}}else return!1;else{if(r instanceof ke&&r.node.isInline)return Es(t,new De(e>0?r.$to:r.$from));{let i=O4(t.state,e);return i?Es(t,i):!1}}}function vp(t){return t.nodeType==3?t.nodeValue.length:t.childNodes.length}function wc(t,e){let n=t.pmViewDesc;return n&&n.size==0&&(e<0||t.nextSibling||t.nodeName!="BR")}function ml(t,e){return e<0?dG(t):fG(t)}function dG(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let i,s,a=!1;for(mr&&n.nodeType==1&&r<vp(n)&&wc(n.childNodes[r],-1)&&(a=!0);;)if(r>0){if(n.nodeType!=1)break;{let u=n.childNodes[r-1];if(wc(u,-1))i=n,s=--r;else if(u.nodeType==3)n=u,r=n.nodeValue.length;else break}}else{if(d7(n))break;{let u=n.previousSibling;for(;u&&wc(u,-1);)i=n.parentNode,s=nn(u),u=u.previousSibling;if(u)n=u,r=vp(n);else{if(n=n.parentNode,n==t.dom)break;r=0}}}a?L4(t,n,r):i&&L4(t,i,s)}function fG(t){let e=t.domSelectionRange(),n=e.focusNode,r=e.focusOffset;if(!n)return;let i=vp(n),s,a;for(;;)if(r<i){if(n.nodeType!=1)break;let u=n.childNodes[r];if(wc(u,1))s=n,a=++r;else break}else{if(d7(n))break;{let u=n.nextSibling;for(;u&&wc(u,1);)s=u.parentNode,a=nn(u)+1,u=u.nextSibling;if(u)n=u,r=0,i=vp(n);else{if(n=n.parentNode,n==t.dom)break;r=i=0}}}s&&L4(t,s,a)}function d7(t){let e=t.pmViewDesc;return e&&e.node&&e.node.isBlock}function hG(t,e){for(;t&&e==t.childNodes.length&&!Cd(t);)e=nn(t)+1,t=t.parentNode;for(;t&&e<t.childNodes.length;){let n=t.childNodes[e];if(n.nodeType==3)return n;if(n.nodeType==1&&n.contentEditable=="false")break;t=n,e=0}}function pG(t,e){for(;t&&!e&&!Cd(t);)e=nn(t),t=t.parentNode;for(;t&&e;){let n=t.childNodes[e-1];if(n.nodeType==3)return n;if(n.nodeType==1&&n.contentEditable=="false")break;t=n,e=t.childNodes.length}}function L4(t,e,n){if(e.nodeType!=3){let s,a;(a=hG(e,n))?(e=a,n=0):(s=pG(e,n))&&(e=s,n=s.nodeValue.length)}let r=t.domSelection();if(!r)return;if(Pm(r)){let s=document.createRange();s.setEnd(e,n),s.setStart(e,n),r.removeAllRanges(),r.addRange(s)}else r.extend&&r.extend(e,n);t.domObserver.setCurSelection();let{state:i}=t;setTimeout(()=>{t.state==i&&Ni(t)},50)}function tD(t,e){let n=t.state.doc.resolve(e);if(!(sn||Y9)&&n.parent.inlineContent){let i=t.coordsAtPos(e);if(e>n.start()){let s=t.coordsAtPos(e-1),a=(s.top+s.bottom)/2;if(a>i.top&&a<i.bottom&&Math.abs(s.left-i.left)>1)return s.left<i.left?"ltr":"rtl"}if(e<n.end()){let s=t.coordsAtPos(e+1),a=(s.top+s.bottom)/2;if(a>i.top&&a<i.bottom&&Math.abs(s.left-i.left)>1)return s.left>i.left?"ltr":"rtl"}}return getComputedStyle(t.dom).direction=="rtl"?"rtl":"ltr"}function nD(t,e,n){let r=t.state.selection;if(r instanceof De&&!r.empty||n.indexOf("s")>-1||fr&&n.indexOf("m")>-1)return!1;let{$from:i,$to:s}=r;if(!i.parent.inlineContent||t.endOfTextblock(e<0?"up":"down")){let a=O4(t.state,e);if(a&&a instanceof ke)return Es(t,a)}if(!i.parent.inlineContent){let a=e<0?i:s,u=r instanceof Jn?Me.near(a,e):Me.findFrom(a,e);return u?Es(t,u):!1}return!1}function rD(t,e){if(!(t.state.selection instanceof De))return!0;let{$head:n,$anchor:r,empty:i}=t.state.selection;if(!n.sameParent(r))return!0;if(!i)return!1;if(t.endOfTextblock(e>0?"forward":"backward"))return!0;let s=!n.textOffset&&(e<0?n.nodeBefore:n.nodeAfter);if(s&&!s.isText){let a=t.state.tr;return e<0?a.delete(n.pos-s.nodeSize,n.pos):a.delete(n.pos,n.pos+s.nodeSize),t.dispatch(a),!0}return!1}function iD(t,e,n){t.domObserver.stop(),e.contentEditable=n,t.domObserver.start()}function mG(t){if(!mn||t.state.selection.$head.parentOffset>0)return!1;let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(e&&e.nodeType==1&&n==0&&e.firstChild&&e.firstChild.contentEditable=="false"){let r=e.firstChild;iD(t,r,"true"),setTimeout(()=>iD(t,r,"false"),20)}return!1}function gG(t){let e="";return t.ctrlKey&&(e+="c"),t.metaKey&&(e+="m"),t.altKey&&(e+="a"),t.shiftKey&&(e+="s"),e}function bG(t,e){let n=e.keyCode,r=gG(e);if(n==8||fr&&n==72&&r=="c")return rD(t,-1)||ml(t,-1);if(n==46&&!e.shiftKey||fr&&n==68&&r=="c")return rD(t,1)||ml(t,1);if(n==13||n==27)return!0;if(n==37||fr&&n==66&&r=="c"){let i=n==37?tD(t,t.state.selection.from)=="ltr"?-1:1:-1;return eD(t,i,r)||ml(t,i)}else if(n==39||fr&&n==70&&r=="c"){let i=n==39?tD(t,t.state.selection.from)=="ltr"?1:-1:1;return eD(t,i,r)||ml(t,i)}else{if(n==38||fr&&n==80&&r=="c")return nD(t,-1,r)||ml(t,-1);if(n==40||fr&&n==78&&r=="c")return mG(t)||nD(t,1,r)||ml(t,1);if(r==(fr?"m":"c")&&(n==66||n==73||n==89||n==90))return!0}return!1}function xx(t,e){t.someProp("transformCopied",b=>{e=b(e,t)});let n=[],{content:r,openStart:i,openEnd:s}=e;for(;i>1&&s>1&&r.childCount==1&&r.firstChild.childCount==1;){i--,s--;let b=r.firstChild;n.push(b.type.name,b.attrs!=b.type.defaultAttrs?b.attrs:null),r=b.content}let a=t.someProp("clipboardSerializer")||Ca.fromSchema(t.state.schema),u=b7(),c=u.createElement("div");c.appendChild(a.serializeFragment(r,{document:u}));let f=c.firstChild,h,m=0;for(;f&&f.nodeType==1&&(h=g7[f.nodeName.toLowerCase()]);){for(let b=h.length-1;b>=0;b--){let x=u.createElement(h[b]);for(;c.firstChild;)x.appendChild(c.firstChild);c.appendChild(x),m++}f=c.firstChild}f&&f.nodeType==1&&f.setAttribute("data-pm-slice",`${i} ${s}${m?` -${m}`:""} ${JSON.stringify(n)}`);let g=t.someProp("clipboardTextSerializer",b=>b(e,t))||e.content.textBetween(0,e.content.size,`
28
+
29
+ `);return{dom:c,text:g,slice:e}}function f7(t,e,n,r,i){let s=i.parent.type.spec.code,a,u;if(!n&&!e)return null;let c=!!e&&(r||s||!n);if(c){if(t.someProp("transformPastedText",g=>{e=g(e,s||r,t)}),s)return u=new pe(ae.from(t.state.schema.text(e.replace(/\r\n?/g,`
30
+ `))),0,0),t.someProp("transformPasted",g=>{u=g(u,t,!0)}),u;let m=t.someProp("clipboardTextParser",g=>g(e,i,r,t));if(m)u=m;else{let g=i.marks(),{schema:b}=t.state,x=Ca.fromSchema(b);a=document.createElement("div"),e.split(/(?:\r\n?|\n)+/).forEach(k=>{let E=a.appendChild(document.createElement("p"));k&&E.appendChild(x.serializeNode(b.text(k,g)))})}}else t.someProp("transformPastedHTML",m=>{n=m(n,t)}),a=kG(n),Ed&&CG(a);let f=a&&a.querySelector("[data-pm-slice]"),h=f&&/^(\d+) (\d+)(?: -(\d+))? (.*)/.exec(f.getAttribute("data-pm-slice")||"");if(h&&h[3])for(let m=+h[3];m>0;m--){let g=a.firstChild;for(;g&&g.nodeType!=1;)g=g.nextSibling;if(!g)break;a=g}if(u||(u=(t.someProp("clipboardParser")||t.someProp("domParser")||Mi.fromSchema(t.state.schema)).parseSlice(a,{preserveWhitespace:!!(c||h),context:i,ruleFromNode(g){return g.nodeName=="BR"&&!g.nextSibling&&g.parentNode&&!yG.test(g.parentNode.nodeName)?{ignore:!0}:null}})),h)u=EG(sD(u,+h[1],+h[2]),h[4]);else if(u=pe.maxOpen(xG(u.content,i),!0),u.openStart||u.openEnd){let m=0,g=0;for(let b=u.content.firstChild;m<u.openStart&&!b.type.spec.isolating;m++,b=b.firstChild);for(let b=u.content.lastChild;g<u.openEnd&&!b.type.spec.isolating;g++,b=b.lastChild);u=sD(u,m,g)}return t.someProp("transformPasted",m=>{u=m(u,t,c)}),u}const yG=/^(a|abbr|acronym|b|cite|code|del|em|i|ins|kbd|label|output|q|ruby|s|samp|span|strong|sub|sup|time|u|tt|var)$/i;function xG(t,e){if(t.childCount<2)return t;for(let n=e.depth;n>=0;n--){let i=e.node(n).contentMatchAt(e.index(n)),s,a=[];if(t.forEach(u=>{if(!a)return;let c=i.findWrapping(u.type),f;if(!c)return a=null;if(f=a.length&&s.length&&p7(c,s,u,a[a.length-1],0))a[a.length-1]=f;else{a.length&&(a[a.length-1]=m7(a[a.length-1],s.length));let h=h7(u,c);a.push(h),i=i.matchType(h.type),s=c}}),a)return ae.from(a)}return t}function h7(t,e,n=0){for(let r=e.length-1;r>=n;r--)t=e[r].create(null,ae.from(t));return t}function p7(t,e,n,r,i){if(i<t.length&&i<e.length&&t[i]==e[i]){let s=p7(t,e,n,r.lastChild,i+1);if(s)return r.copy(r.content.replaceChild(r.childCount-1,s));if(r.contentMatchAt(r.childCount).matchType(i==t.length-1?n.type:t[i+1]))return r.copy(r.content.append(ae.from(h7(n,t,i+1))))}}function m7(t,e){if(e==0)return t;let n=t.content.replaceChild(t.childCount-1,m7(t.lastChild,e-1)),r=t.contentMatchAt(t.childCount).fillBefore(ae.empty,!0);return t.copy(n.append(r))}function z4(t,e,n,r,i,s){let a=e<0?t.firstChild:t.lastChild,u=a.content;return t.childCount>1&&(s=0),i<r-1&&(u=z4(u,e,n,r,i+1,s)),i>=n&&(u=e<0?a.contentMatchAt(0).fillBefore(u,s<=i).append(u):u.append(a.contentMatchAt(a.childCount).fillBefore(ae.empty,!0))),t.replaceChild(e<0?0:t.childCount-1,a.copy(u))}function sD(t,e,n){return e<t.openStart&&(t=new pe(z4(t.content,-1,e,t.openStart,0,t.openEnd),e,t.openEnd)),n<t.openEnd&&(t=new pe(z4(t.content,1,n,t.openEnd,0,0),t.openStart,n)),t}const g7={thead:["table"],tbody:["table"],tfoot:["table"],caption:["table"],colgroup:["table"],col:["table","colgroup"],tr:["table","tbody"],td:["table","tbody","tr"],th:["table","tbody","tr"]};function b7(){return document.implementation.createHTMLDocument("title")}let ay=null;function vG(t){let e=window.trustedTypes;return e?(ay||(ay=e.defaultPolicy||e.createPolicy("ProseMirrorClipboard",{createHTML:n=>n})),ay.createHTML(t)):t}function kG(t){let e=/^(\s*<meta [^>]*>)*/.exec(t);e&&(t=t.slice(e[0].length));let n=b7(),r=n.body,i=/<([a-z][^>\s]+)/i.exec(t),s;if((s=i&&g7[i[1].toLowerCase()])&&(t=s.map(a=>"<"+a+">").join("")+t+s.map(a=>"</"+a+">").reverse().join("")),r.innerHTML=vG(t),s)for(let a=0;a<s.length;a++)r=r.querySelector(s[a])||r;for(let a=0;a<n.styleSheets.length;a++){let u=n.styleSheets[a];for(let c=0;c<u.rules.length;c++){let f=u.rules[c];if(f instanceof CSSStyleRule){let h=r.querySelectorAll(f.selectorText);for(let m=0;m<h.length;m++)h[m].style.cssText+=f.style.cssText}}}return r}function CG(t){let e=t.querySelectorAll(sn?"span:not([class]):not([style])":"span.Apple-converted-space");for(let n=0;n<e.length;n++){let r=e[n];r.childNodes.length==1&&r.textContent==" "&&r.parentNode&&r.parentNode.replaceChild(t.ownerDocument.createTextNode(" "),r)}}function EG(t,e){if(!t.size)return t;let n=t.content.firstChild.type.schema,r;try{r=JSON.parse(e)}catch{return t}let{content:i,openStart:s,openEnd:a}=t;for(let u=r.length-2;u>=0;u-=2){let c=n.nodes[r[u]];if(!c||c.hasRequiredAttrs())break;i=ae.from(c.create(r[u+1],i)),s++,a++}return new pe(i,s,a)}const En={},Dn={},DG={touchstart:!0,touchmove:!0};class SG{constructor(){this.shiftKey=!1,this.mouseDown=null,this.lastKeyCode=null,this.lastKeyCodeTime=0,this.lastClick={time:0,x:0,y:0,type:"",button:0},this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastIOSEnter=0,this.lastIOSEnterFallbackTimeout=-1,this.lastFocus=0,this.lastTouch=0,this.lastChromeDelete=0,this.composing=!1,this.compositionNode=null,this.composingTimeout=-1,this.compositionNodes=[],this.compositionEndedAt=-2e8,this.compositionID=1,this.badSafariComposition=!1,this.compositionPendingChanges=0,this.domChangeCount=0,this.eventHandlers=Object.create(null),this.hideSelectionGuard=null}}function wG(t){for(let e in En){let n=En[e];t.dom.addEventListener(e,t.input.eventHandlers[e]=r=>{TG(t,r)&&!vx(t,r)&&(t.editable||!(r.type in Dn))&&n(t,r)},DG[e]?{passive:!0}:void 0)}mn&&t.dom.addEventListener("input",()=>null),I4(t)}function Ti(t,e){t.input.lastSelectionOrigin=e,t.input.lastSelectionTime=Date.now()}function $G(t){t.input.mouseDown&&t.input.mouseDown.done(),t.domObserver.stop();for(let e in t.input.eventHandlers)t.dom.removeEventListener(e,t.input.eventHandlers[e]);clearTimeout(t.input.composingTimeout),clearTimeout(t.input.lastIOSEnterFallbackTimeout)}function I4(t){t.someProp("handleDOMEvents",e=>{for(let n in e)t.input.eventHandlers[n]||t.dom.addEventListener(n,t.input.eventHandlers[n]=r=>vx(t,r))})}function vx(t,e){return t.someProp("handleDOMEvents",n=>{let r=n[e.type];return r?r(t,e)||e.defaultPrevented:!1})}function TG(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let n=e.target;n!=t.dom;n=n.parentNode)if(!n||n.nodeType==11||n.pmViewDesc&&n.pmViewDesc.stopEvent(e))return!1;return!0}function AG(t,e){!vx(t,e)&&En[e.type]&&(t.editable||!(e.type in Dn))&&En[e.type](t,e)}Dn.keydown=(t,e)=>{let n=e;if(t.input.shiftKey=n.keyCode==16||n.shiftKey,!k7(t)&&(t.input.lastKeyCode=n.keyCode,t.input.lastKeyCodeTime=Date.now(),!($i&&sn&&n.keyCode==13)))if(n.keyCode!=229&&t.domObserver.forceFlush(),zl&&n.keyCode==13&&!n.ctrlKey&&!n.altKey&&!n.metaKey){let r=Date.now();t.input.lastIOSEnter=r,t.input.lastIOSEnterFallbackTimeout=setTimeout(()=>{t.input.lastIOSEnter==r&&(t.someProp("handleKeyDown",i=>i(t,Mo(13,"Enter"))),t.input.lastIOSEnter=0)},200)}else t.someProp("handleKeyDown",r=>r(t,n))||bG(t,n)?n.preventDefault():Ti(t,"key")};Dn.keyup=(t,e)=>{e.keyCode==16&&(t.input.shiftKey=!1)};Dn.keypress=(t,e)=>{let n=e;if(k7(t)||!n.charCode||n.ctrlKey&&!n.altKey||fr&&n.metaKey)return;if(t.someProp("handleKeyPress",i=>i(t,n))){n.preventDefault();return}let r=t.state.selection;if(!(r instanceof De)||!r.$from.sameParent(r.$to)){let i=String.fromCharCode(n.charCode),s=()=>t.state.tr.insertText(i).scrollIntoView();!/[\r\n]/.test(i)&&!t.someProp("handleTextInput",a=>a(t,r.$from.pos,r.$to.pos,i,s))&&t.dispatch(s()),n.preventDefault()}};function Sd(t){return{left:t.clientX,top:t.clientY}}function BG(t,e){let n=e.x-t.clientX,r=e.y-t.clientY;return n*n+r*r<100}function kx(t,e,n,r,i){if(r==-1)return!1;let s=t.state.doc.resolve(r);for(let a=s.depth+1;a>0;a--)if(t.someProp(e,u=>a>s.depth?u(t,n,s.nodeAfter,s.before(a),i,!0):u(t,n,s.node(a),s.before(a),i,!1)))return!0;return!1}function wd(t,e,n){if(t.focused||t.focus(),t.state.selection.eq(e))return;let r=t.state.tr.setSelection(e);r.setMeta("pointer",!0),t.dispatch(r)}function MG(t,e){if(e==-1)return!1;let n=t.state.doc.resolve(e),r=n.nodeAfter;return r&&r.isAtom&&ke.isSelectable(r)?(wd(t,new ke(n)),!0):!1}function RG(t,e){if(e==-1)return!1;let n=t.state.selection,r,i;n instanceof ke&&(r=n.node);let s=t.state.doc.resolve(e);for(let a=s.depth+1;a>0;a--){let u=a>s.depth?s.nodeAfter:s.node(a);if(ke.isSelectable(u)){r&&n.$from.depth>0&&a>=n.$from.depth&&s.before(n.$from.depth+1)==n.$from.pos?i=s.before(n.$from.depth):i=s.before(a);break}}return i!=null?(wd(t,ke.create(t.state.doc,i)),!0):!1}function NG(t,e,n,r,i){return kx(t,"handleClickOn",e,n,r)||t.someProp("handleClick",s=>s(t,e,r))||(i?RG(t,n):MG(t,n))}function PG(t,e,n,r){return kx(t,"handleDoubleClickOn",e,n,r)||t.someProp("handleDoubleClick",i=>i(t,e,r))}function OG(t,e,n,r){return kx(t,"handleTripleClickOn",e,n,r)||t.someProp("handleTripleClick",i=>i(t,e,r))||LG(t,n,r)}function LG(t,e,n){if(n.button!=0)return!1;let r=y7(t,e,!0),i=t.state.doc;return r?(wd(t,r),r instanceof De&&i.eq(t.state.doc)&&(t.input.mouseDown=new IG(t,r)),!0):!1}function y7(t,e,n){let r=t.state.doc;if(e==-1)return r.inlineContent?De.create(r,0,r.content.size):null;let i=r.resolve(e);for(let s=i.depth+1;s>0;s--){let a=s>i.depth?i.nodeAfter:i.node(s),u=i.before(s);if(a.inlineContent)return De.create(r,u+1,u+1+a.content.size);if(n&&ke.isSelectable(a))return ke.create(r,u)}return null}function Cx(t){return kp(t)}const x7=fr?"metaKey":"ctrlKey";En.mousedown=(t,e)=>{let n=e;t.input.shiftKey=n.shiftKey;let r=Cx(t),i=Date.now(),s="singleClick";i-t.input.lastClick.time<500&&BG(n,t.input.lastClick)&&!n[x7]&&t.input.lastClick.button==n.button&&(t.input.lastClick.type=="singleClick"?s="doubleClick":t.input.lastClick.type=="doubleClick"&&(s="tripleClick")),t.input.lastClick={time:i,x:n.clientX,y:n.clientY,type:s,button:n.button},t.input.mouseDown&&t.input.mouseDown.done();let a=t.posAtCoords(Sd(n));a&&(s=="singleClick"?t.input.mouseDown=new zG(t,a,n,!!r):(s=="doubleClick"?PG:OG)(t,a.pos,a.inside,n)?n.preventDefault():Ti(t,"pointer"))};class v7{constructor(e){this.view=e,this.mightDrag=null,e.root.addEventListener("mouseup",this.up=this.up.bind(this)),e.root.addEventListener("mousemove",this.move=this.move.bind(this))}up(e){this.done()}move(e){e.buttons==0&&this.done()}done(){this.view.root.removeEventListener("mouseup",this.up),this.view.root.removeEventListener("mousemove",this.move),this.view.input.mouseDown==this&&(this.view.input.mouseDown=null)}delaySelUpdate(){return!1}}class zG extends v7{constructor(e,n,r,i){super(e),this.pos=n,this.event=r,this.flushed=i,this.delayedSelectionSync=!1,this.startDoc=e.state.doc,this.selectNode=!!r[x7],this.allowDefault=r.shiftKey;let s,a;if(n.inside>-1)s=e.state.doc.nodeAt(n.inside),a=n.inside;else{let h=e.state.doc.resolve(n.pos);s=h.parent,a=h.depth?h.before():0}const u=i?null:r.target,c=u?e.docView.nearestDesc(u,!0):null;this.target=c&&c.nodeDOM.nodeType==1?c.nodeDOM:null;let{selection:f}=e.state;r.button==0&&(s.type.spec.draggable&&s.type.spec.selectable!==!1||f instanceof ke&&f.from<=a&&f.to>a)&&(this.mightDrag={node:s,pos:a,addAttr:!!(this.target&&!this.target.draggable),setUneditable:!!(this.target&&mr&&!this.target.hasAttribute("contentEditable"))}),this.target&&this.mightDrag&&(this.mightDrag.addAttr||this.mightDrag.setUneditable)&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&(this.target.draggable=!0),this.mightDrag.setUneditable&&setTimeout(()=>{this.view.input.mouseDown==this&&this.target.setAttribute("contentEditable","false")},20),this.view.domObserver.start()),Ti(e,"pointer")}done(){super.done(),this.mightDrag&&this.target&&(this.view.domObserver.stop(),this.mightDrag.addAttr&&this.target.removeAttribute("draggable"),this.mightDrag.setUneditable&&this.target.removeAttribute("contentEditable"),this.view.domObserver.start()),this.delayedSelectionSync&&setTimeout(()=>{this.view.isDestroyed||Ni(this.view)})}up(e){if(this.done(),!this.view.dom.contains(e.target))return;let n=this.pos;this.view.state.doc!=this.startDoc&&(n=this.view.posAtCoords(Sd(e))),this.updateAllowDefault(e),this.allowDefault||!n?Ti(this.view,"pointer"):NG(this.view,n.pos,n.inside,e,this.selectNode)?e.preventDefault():e.button==0&&(this.flushed||mn&&this.mightDrag&&!this.mightDrag.node.isAtom||sn&&!this.view.state.selection.visible&&Math.min(Math.abs(n.pos-this.view.state.selection.from),Math.abs(n.pos-this.view.state.selection.to))<=2)?(wd(this.view,Me.near(this.view.state.doc.resolve(n.pos))),e.preventDefault()):Ti(this.view,"pointer")}move(e){this.updateAllowDefault(e),Ti(this.view,"pointer"),super.move(e)}updateAllowDefault(e){!this.allowDefault&&(Math.abs(this.event.x-e.clientX)>4||Math.abs(this.event.y-e.clientY)>4)&&(this.allowDefault=!0)}delaySelUpdate(){return this.allowDefault?(this.delayedSelectionSync=!0,!0):!1}}class IG extends v7{constructor(e,n){super(e),this.startSelection=n,this.startDoc=e.state.doc}move(e){if(e.buttons==0||this.view.isDestroyed||!this.view.state.doc.eq(this.startDoc)){this.done();return}e.preventDefault(),Ti(this.view,"pointer");let n=this.view.posAtCoords(Sd(e)),r=n&&y7(this.view,n.inside,!1);if(!r)return;let{doc:i}=this.view.state,s=this.startSelection,[a,u]=r.from<s.from?[s.to,r.from]:[s.from,r.to];wd(this.view,De.create(i,a,u))}}En.touchstart=t=>{t.input.lastTouch=Date.now(),Cx(t),Ti(t,"pointer")};En.touchmove=t=>{t.input.lastTouch=Date.now(),Ti(t,"pointer")};En.contextmenu=t=>Cx(t);function k7(t,e){return t.composing?!0:mn&&Math.abs(Date.now()-t.input.compositionEndedAt)<500?(t.input.compositionEndedAt=-2e8,!0):!1}const jG=$i?5e3:-1;Dn.compositionstart=Dn.compositionupdate=t=>{if(!t.composing){t.domObserver.flush();let{state:e}=t,n=e.selection.$to;if(e.selection instanceof De&&(e.storedMarks||!n.textOffset&&n.parentOffset&&n.nodeBefore.marks.some(r=>r.type.spec.inclusive===!1)||sn&&Y9&&FG(t)))t.markCursor=t.state.storedMarks||n.marks(),kp(t,!0),t.markCursor=null;else if(kp(t,!e.selection.empty),mr&&e.selection.empty&&n.parentOffset&&!n.textOffset&&n.nodeBefore.marks.length){let r=t.domSelectionRange();for(let i=r.focusNode,s=r.focusOffset;i&&i.nodeType==1&&s!=0;){let a=s<0?i.lastChild:i.childNodes[s-1];if(!a)break;if(a.nodeType==3){let u=t.domSelection();u&&u.collapse(a,a.nodeValue.length);break}else i=a,s=-1}}t.input.composing=!0}C7(t,jG)};function FG(t){let{focusNode:e,focusOffset:n}=t.domSelectionRange();if(!e||e.nodeType!=1||n>=e.childNodes.length)return!1;let r=e.childNodes[n];return r.nodeType==1&&r.contentEditable=="false"}Dn.compositionend=(t,e)=>{t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=Date.now(),t.input.compositionPendingChanges=t.domObserver.pendingRecords().length?t.input.compositionID:0,t.input.compositionNode=null,t.input.badSafariComposition?t.domObserver.forceFlush():t.input.compositionPendingChanges&&Promise.resolve().then(()=>t.domObserver.flush()),t.input.compositionID++,C7(t,20))};function C7(t,e){clearTimeout(t.input.composingTimeout),e>-1&&(t.input.composingTimeout=setTimeout(()=>kp(t),e))}function E7(t){for(t.composing&&(t.input.composing=!1,t.input.compositionEndedAt=Date.now());t.input.compositionNodes.length>0;)t.input.compositionNodes.pop().markParentsDirty()}function KG(t){let e=t.domSelectionRange();if(!e.focusNode)return null;let n=Rq(e.focusNode,e.focusOffset),r=Nq(e.focusNode,e.focusOffset);if(n&&r&&n!=r){let i=r.pmViewDesc,s=t.domObserver.lastChangedTextNode;if(n==s||r==s)return s;if(!i||!i.isText(r.nodeValue))return r;if(t.input.compositionNode==r){let a=n.pmViewDesc;if(!(!a||!a.isText(n.nodeValue)))return r}}return n||r}function kp(t,e=!1){if(!($i&&t.domObserver.flushingSoon>=0)){if(t.domObserver.forceFlush(),E7(t),e||t.docView&&t.docView.dirty){let n=bx(t),r=t.state.selection;return n&&!n.eq(r)?t.dispatch(t.state.tr.setSelection(n)):(t.markCursor||e)&&!r.$from.node(r.$from.sharedDepth(r.to)).inlineContent?t.dispatch(t.state.tr.deleteSelection()):t.updateState(t.state),!0}return!1}}function _G(t,e){if(!t.dom.parentNode)return;let n=t.dom.parentNode.appendChild(document.createElement("div"));n.appendChild(e),n.style.cssText="position: fixed; left: -10000px; top: 10px";let r=getSelection(),i=document.createRange();i.selectNodeContents(e),t.dom.blur(),r.removeAllRanges(),r.addRange(i),setTimeout(()=>{n.parentNode&&n.parentNode.removeChild(n),t.focus()},50)}const nd=Fn&&Is<15||zl&&zq<604;En.copy=Dn.cut=(t,e)=>{let n=e,r=t.state.selection,i=n.type=="cut";if(r.empty)return;let s=nd?null:n.clipboardData,a=r.content(),{dom:u,text:c}=xx(t,a);s?(n.preventDefault(),s.clearData(),s.setData("text/html",u.innerHTML),s.setData("text/plain",c)):_G(t,u),i&&t.dispatch(t.state.tr.deleteSelection().scrollIntoView().setMeta("uiEvent","cut"))};function VG(t){return t.openStart==0&&t.openEnd==0&&t.content.childCount==1?t.content.firstChild:null}function HG(t,e){if(!t.dom.parentNode)return;let n=t.input.shiftKey||t.state.selection.$from.parent.type.spec.code,r=t.dom.parentNode.appendChild(document.createElement(n?"textarea":"div"));n||(r.contentEditable="true"),r.style.cssText="position: fixed; left: -10000px; top: 10px",r.focus();let i=t.input.shiftKey&&t.input.lastKeyCode!=45;setTimeout(()=>{t.focus(),r.parentNode&&r.parentNode.removeChild(r),n?rd(t,r.value,null,i,e):rd(t,r.textContent,r.innerHTML,i,e)},50)}function rd(t,e,n,r,i){let s=f7(t,e,n,r,t.state.selection.$from);if(t.someProp("handlePaste",c=>c(t,i,s||pe.empty)))return!0;if(!s)return!1;let a=VG(s),u=a?t.state.tr.replaceSelectionWith(a,r):t.state.tr.replaceSelection(s);return t.dispatch(u.scrollIntoView().setMeta("paste",!0).setMeta("uiEvent","paste")),!0}function D7(t){let e=t.getData("text/plain")||t.getData("Text");if(e)return e;let n=t.getData("text/uri-list");return n?n.replace(/\r?\n/g," "):""}Dn.paste=(t,e)=>{let n=e;if(t.composing&&!$i)return;let r=nd?null:n.clipboardData,i=t.input.shiftKey&&t.input.lastKeyCode!=45;r&&rd(t,D7(r),r.getData("text/html"),i,n)?n.preventDefault():HG(t,n)};class S7{constructor(e,n,r){this.slice=e,this.move=n,this.node=r}}const UG=fr?"altKey":"ctrlKey";function w7(t,e){let n;return t.someProp("dragCopies",r=>{n=n||r(e)}),n!=null?!n:!e[UG]}En.dragstart=(t,e)=>{let n=e,r=t.input.mouseDown;if(r&&r.done(),!n.dataTransfer)return;let i=t.state.selection,s=i.empty?null:t.posAtCoords(Sd(n)),a;if(!(s&&s.pos>=i.from&&s.pos<=(i instanceof ke?i.to-1:i.to))){if(r&&r.mightDrag)a=ke.create(t.state.doc,r.mightDrag.pos);else if(n.target&&n.target.nodeType==1){let m=t.docView.nearestDesc(n.target,!0);m&&m.node.type.spec.draggable&&m!=t.docView&&(a=ke.create(t.state.doc,m.posBefore))}}let u=(a||t.state.selection).content(),{dom:c,text:f,slice:h}=xx(t,u);(!n.dataTransfer.files.length||!sn||Q9>120)&&n.dataTransfer.clearData(),n.dataTransfer.setData(nd?"Text":"text/html",c.innerHTML),n.dataTransfer.effectAllowed="copyMove",nd||n.dataTransfer.setData("text/plain",f),t.dragging=new S7(h,w7(t,n),a)};En.dragend=t=>{let e=t.dragging;window.setTimeout(()=>{t.dragging==e&&(t.dragging=null)},50)};Dn.dragover=Dn.dragenter=(t,e)=>e.preventDefault();Dn.drop=(t,e)=>{try{qG(t,e,t.dragging)}finally{t.dragging=null}};function qG(t,e,n){if(!e.dataTransfer)return;let r=t.posAtCoords(Sd(e));if(!r)return;let i=t.state.doc.resolve(r.pos),s=n&&n.slice;s?t.someProp("transformPasted",b=>{s=b(s,t,!1)}):s=f7(t,D7(e.dataTransfer),nd?null:e.dataTransfer.getData("text/html"),!1,i);let a=!!(n&&w7(t,e));if(t.someProp("handleDrop",b=>b(t,e,s||pe.empty,a))){e.preventDefault();return}if(!s)return;e.preventDefault();let u=s?$9(t.state.doc,i.pos,s):i.pos;u==null&&(u=i.pos);let c=t.state.tr;if(a){let{node:b}=n;b?b.replace(c):c.deleteSelection()}let f=c.mapping.map(u),h=s.openStart==0&&s.openEnd==0&&s.content.childCount==1,m=c.doc;if(h?c.replaceRangeWith(f,f,s.content.firstChild):c.replaceRange(f,f,s),c.doc.eq(m))return;let g=c.doc.resolve(f);if(h&&ke.isSelectable(s.content.firstChild)&&g.nodeAfter&&g.nodeAfter.sameMarkup(s.content.firstChild))c.setSelection(new ke(g));else{let b=c.mapping.map(u);c.mapping.maps[c.mapping.maps.length-1].forEach((x,k,E,D)=>b=D),c.setSelection(yx(t,g,c.doc.resolve(b)))}t.focus(),t.dispatch(c.setMeta("uiEvent","drop"))}En.focus=t=>{t.input.lastFocus=Date.now(),t.focused||(t.domObserver.stop(),t.dom.classList.add("ProseMirror-focused"),t.domObserver.start(),t.focused=!0,setTimeout(()=>{t.docView&&t.hasFocus()&&!t.domObserver.currentSelection.eq(t.domSelectionRange())&&Ni(t)},20))};En.blur=(t,e)=>{let n=e;t.focused&&(t.domObserver.stop(),t.dom.classList.remove("ProseMirror-focused"),t.domObserver.start(),n.relatedTarget&&t.dom.contains(n.relatedTarget)&&t.domObserver.currentSelection.clear(),t.focused=!1)};En.beforeinput=(t,e)=>{if($i&&e.inputType=="deleteContentBackward"){t.domObserver.flushSoon();let{domChangeCount:r}=t.input;setTimeout(()=>{if(t.input.domChangeCount!=r||(t.dom.blur(),t.focus(),t.someProp("handleKeyDown",s=>s(t,Mo(8,"Backspace")))))return;let{$cursor:i}=t.state.selection;i&&i.pos>0&&t.dispatch(t.state.tr.delete(i.pos-1,i.pos).scrollIntoView())},50)}};for(let t in Dn)En[t]=Dn[t];function id(t,e){if(t==e)return!0;for(let n in t)if(t[n]!==e[n])return!1;for(let n in e)if(!(n in t))return!1;return!0}class Cp{constructor(e,n){this.toDOM=e,this.spec=n||ea,this.side=this.spec.side||0}map(e,n,r,i){let{pos:s,deleted:a}=e.mapResult(n.from+i,this.side<0?-1:1);return a?null:new vn(s-r,s-r,this)}valid(){return!0}eq(e){return this==e||e instanceof Cp&&(this.spec.key&&this.spec.key==e.spec.key||this.toDOM==e.toDOM&&id(this.spec,e.spec))}destroy(e){this.spec.destroy&&this.spec.destroy(e)}}class Ks{constructor(e,n){this.attrs=e,this.spec=n||ea}map(e,n,r,i){let s=e.map(n.from+i,this.spec.inclusiveStart?-1:1)-r,a=e.map(n.to+i,this.spec.inclusiveEnd?1:-1)-r;return s>=a?null:new vn(s,a,this)}valid(e,n){return n.from<n.to}eq(e){return this==e||e instanceof Ks&&id(this.attrs,e.attrs)&&id(this.spec,e.spec)}static is(e){return e.type instanceof Ks}destroy(){}}class Ex{constructor(e,n){this.attrs=e,this.spec=n||ea}map(e,n,r,i){let s=e.mapResult(n.from+i,1);if(s.deleted)return null;let a=e.mapResult(n.to+i,-1);return a.deleted||a.pos<=s.pos?null:new vn(s.pos-r,a.pos-r,this)}valid(e,n){let{index:r,offset:i}=e.content.findIndex(n.from),s;return i==n.from&&!(s=e.child(r)).isText&&i+s.nodeSize==n.to}eq(e){return this==e||e instanceof Ex&&id(this.attrs,e.attrs)&&id(this.spec,e.spec)}destroy(){}}class vn{constructor(e,n,r){this.from=e,this.to=n,this.type=r}copy(e,n){return new vn(e,n,this.type)}eq(e,n=0){return this.type.eq(e.type)&&this.from+n==e.from&&this.to+n==e.to}map(e,n,r){return this.type.map(e,this,n,r)}static widget(e,n,r){return new vn(e,e,new Cp(n,r))}static inline(e,n,r,i){return new vn(e,n,new Ks(r,i))}static node(e,n,r,i){return new vn(e,n,new Ex(r,i))}get spec(){return this.type.spec}get inline(){return this.type instanceof Ks}get widget(){return this.type instanceof Cp}}const xl=[],ea={};class ut{constructor(e,n){this.local=e.length?e:xl,this.children=n.length?n:xl}static create(e,n){return n.length?Ep(n,e,0,ea):cn}find(e,n,r){let i=[];return this.findInner(e??0,n??1e9,i,0,r),i}findInner(e,n,r,i,s){for(let a=0;a<this.local.length;a++){let u=this.local[a];u.from<=n&&u.to>=e&&(!s||s(u.spec))&&r.push(u.copy(u.from+i,u.to+i))}for(let a=0;a<this.children.length;a+=3)if(this.children[a]<n&&this.children[a+1]>e){let u=this.children[a]+1;this.children[a+2].findInner(e-u,n-u,r,i+u,s)}}map(e,n,r){return this==cn||e.maps.length==0?this:this.mapInner(e,n,0,0,r||ea)}mapInner(e,n,r,i,s){let a;for(let u=0;u<this.local.length;u++){let c=this.local[u].map(e,r,i);c&&c.type.valid(n,c)?(a||(a=[])).push(c):s.onRemove&&s.onRemove(this.local[u].spec)}return this.children.length?GG(this.children,a||[],e,n,r,i,s):a?new ut(a.sort(ta),xl):cn}add(e,n){return n.length?this==cn?ut.create(e,n):this.addInner(e,n,0):this}addInner(e,n,r){let i,s=0;e.forEach((u,c)=>{let f=c+r,h;if(h=T7(n,u,f)){for(i||(i=this.children.slice());s<i.length&&i[s]<c;)s+=3;i[s]==c?i[s+2]=i[s+2].addInner(u,h,f+1):i.splice(s,0,c,c+u.nodeSize,Ep(h,u,f+1,ea)),s+=3}});let a=$7(s?A7(n):n,-r);for(let u=0;u<a.length;u++)a[u].type.valid(e,a[u])||a.splice(u--,1);return new ut(a.length?this.local.concat(a).sort(ta):this.local,i||this.children)}remove(e){return e.length==0||this==cn?this:this.removeInner(e,0)}removeInner(e,n){let r=this.children,i=this.local;for(let s=0;s<r.length;s+=3){let a,u=r[s]+n,c=r[s+1]+n;for(let h=0,m;h<e.length;h++)(m=e[h])&&m.from>u&&m.to<c&&(e[h]=null,(a||(a=[])).push(m));if(!a)continue;r==this.children&&(r=this.children.slice());let f=r[s+2].removeInner(a,u+1);f!=cn?r[s+2]=f:(r.splice(s,3),s-=3)}if(i.length){for(let s=0,a;s<e.length;s++)if(a=e[s])for(let u=0;u<i.length;u++)i[u].eq(a,n)&&(i==this.local&&(i=this.local.slice()),i.splice(u--,1))}return r==this.children&&i==this.local?this:i.length||r.length?new ut(i,r):cn}forChild(e,n){if(this==cn)return this;if(n.isLeaf)return ut.empty;let r,i;for(let u=0;u<this.children.length;u+=3)if(this.children[u]>=e){this.children[u]==e&&(r=this.children[u+2]);break}let s=e+1,a=s+n.content.size;for(let u=0;u<this.local.length;u++){let c=this.local[u];if(c.from<a&&c.to>s&&c.type instanceof Ks){let f=Math.max(s,c.from)-s,h=Math.min(a,c.to)-s;f<h&&(i||(i=[])).push(c.copy(f,h))}}if(i){let u=new ut(i.sort(ta),xl);return r?new $s([u,r]):u}return r||cn}eq(e){if(this==e)return!0;if(!(e instanceof ut)||this.local.length!=e.local.length||this.children.length!=e.children.length)return!1;for(let n=0;n<this.local.length;n++)if(!this.local[n].eq(e.local[n]))return!1;for(let n=0;n<this.children.length;n+=3)if(this.children[n]!=e.children[n]||this.children[n+1]!=e.children[n+1]||!this.children[n+2].eq(e.children[n+2]))return!1;return!0}locals(e){return Dx(this.localsInner(e))}localsInner(e){if(this==cn)return xl;if(e.inlineContent||!this.local.some(Ks.is))return this.local;let n=[];for(let r=0;r<this.local.length;r++)this.local[r].type instanceof Ks||n.push(this.local[r]);return n}forEachSet(e){e(this)}}ut.empty=new ut([],[]);ut.removeOverlap=Dx;const cn=ut.empty;class $s{constructor(e){this.members=e}map(e,n){const r=this.members.map(i=>i.map(e,n,ea));return $s.from(r)}forChild(e,n){if(n.isLeaf)return ut.empty;let r=[];for(let i=0;i<this.members.length;i++){let s=this.members[i].forChild(e,n);s!=cn&&(s instanceof $s?r=r.concat(s.members):r.push(s))}return $s.from(r)}eq(e){if(!(e instanceof $s)||e.members.length!=this.members.length)return!1;for(let n=0;n<this.members.length;n++)if(!this.members[n].eq(e.members[n]))return!1;return!0}locals(e){let n,r=!0;for(let i=0;i<this.members.length;i++){let s=this.members[i].localsInner(e);if(s.length)if(!n)n=s;else{r&&(n=n.slice(),r=!1);for(let a=0;a<s.length;a++)n.push(s[a])}}return n?Dx(r?n:n.sort(ta)):xl}static from(e){switch(e.length){case 0:return cn;case 1:return e[0];default:return new $s(e.every(n=>n instanceof ut)?e:e.reduce((n,r)=>n.concat(r instanceof ut?r:r.members),[]))}}forEachSet(e){for(let n=0;n<this.members.length;n++)this.members[n].forEachSet(e)}}function GG(t,e,n,r,i,s,a){let u=t.slice();for(let f=0,h=s;f<n.maps.length;f++){let m=0;n.maps[f].forEach((g,b,x,k)=>{let E=k-x-(b-g);for(let D=0;D<u.length;D+=3){let T=u[D+1];if(T<0||g>T+h-m)continue;let $=u[D]+h-m;b>=$?u[D+1]=g<=$?-2:-1:g>=h&&E&&(u[D]+=E,u[D+1]+=E)}m+=E}),h=n.maps[f].map(h,-1)}let c=!1;for(let f=0;f<u.length;f+=3)if(u[f+1]<0){if(u[f+1]==-2){c=!0,u[f+1]=-1;continue}let h=n.map(t[f]+s),m=h-i;if(m<0||m>=r.content.size){c=!0;continue}let g=n.map(t[f+1]+s,-1),b=g-i,{index:x,offset:k}=r.content.findIndex(m),E=r.maybeChild(x);if(E&&k==m&&k+E.nodeSize==b){let D=u[f+2].mapInner(n,E,h+1,t[f]+s+1,a);D!=cn?(u[f]=m,u[f+1]=b,u[f+2]=D):(u[f+1]=-2,c=!0)}else c=!0}if(c){let f=WG(u,t,e,n,i,s,a),h=Ep(f,r,0,a);e=h.local;for(let m=0;m<u.length;m+=3)u[m+1]<0&&(u.splice(m,3),m-=3);for(let m=0,g=0;m<h.children.length;m+=3){let b=h.children[m];for(;g<u.length&&u[g]<b;)g+=3;u.splice(g,0,h.children[m],h.children[m+1],h.children[m+2])}}return new ut(e.sort(ta),u)}function $7(t,e){if(!e||!t.length)return t;let n=[];for(let r=0;r<t.length;r++){let i=t[r];n.push(new vn(i.from+e,i.to+e,i.type))}return n}function WG(t,e,n,r,i,s,a){function u(c,f){for(let h=0;h<c.local.length;h++){let m=c.local[h].map(r,i,f);m?n.push(m):a.onRemove&&a.onRemove(c.local[h].spec)}for(let h=0;h<c.children.length;h+=3)u(c.children[h+2],c.children[h]+f+1)}for(let c=0;c<t.length;c+=3)t[c+1]==-1&&u(t[c+2],e[c]+s+1);return n}function T7(t,e,n){if(e.isLeaf)return null;let r=n+e.nodeSize,i=null;for(let s=0,a;s<t.length;s++)(a=t[s])&&a.from>n&&a.to<r&&((i||(i=[])).push(a),t[s]=null);return i}function A7(t){let e=[];for(let n=0;n<t.length;n++)t[n]!=null&&e.push(t[n]);return e}function Ep(t,e,n,r){let i=[],s=!1;e.forEach((u,c)=>{let f=T7(t,u,c+n);if(f){s=!0;let h=Ep(f,u,n+c+1,r);h!=cn&&i.push(c,c+u.nodeSize,h)}});let a=$7(s?A7(t):t,-n).sort(ta);for(let u=0;u<a.length;u++)a[u].type.valid(e,a[u])||(r.onRemove&&r.onRemove(a[u].spec),a.splice(u--,1));return a.length||i.length?new ut(a,i):cn}function ta(t,e){return t.from-e.from||t.to-e.to}function Dx(t){let e=t;for(let n=0;n<e.length-1;n++){let r=e[n];if(r.from!=r.to)for(let i=n+1;i<e.length;i++){let s=e[i];if(s.from==r.from){s.to!=r.to&&(e==t&&(e=t.slice()),e[i]=s.copy(s.from,r.to),oD(e,i+1,s.copy(r.to,s.to)));continue}else{s.from<r.to&&(e==t&&(e=t.slice()),e[n]=r.copy(r.from,s.from),oD(e,i,r.copy(s.from,r.to)));break}}}return e}function oD(t,e,n){for(;e<t.length&&ta(n,t[e])>0;)e++;t.splice(e,0,n)}function ly(t){let e=[];return t.someProp("decorations",n=>{let r=n(t.state);r&&r!=cn&&e.push(r)}),t.cursorWrapper&&e.push(ut.create(t.state.doc,[t.cursorWrapper.deco])),$s.from(e)}const QG={childList:!0,characterData:!0,characterDataOldValue:!0,attributes:!0,attributeOldValue:!0,subtree:!0},YG=Fn&&Is<=11;class XG{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}set(e){this.anchorNode=e.anchorNode,this.anchorOffset=e.anchorOffset,this.focusNode=e.focusNode,this.focusOffset=e.focusOffset}clear(){this.anchorNode=this.focusNode=null}eq(e){return e.anchorNode==this.anchorNode&&e.anchorOffset==this.anchorOffset&&e.focusNode==this.focusNode&&e.focusOffset==this.focusOffset}}class JG{constructor(e,n){this.view=e,this.handleDOMChange=n,this.queue=[],this.flushingSoon=-1,this.observer=null,this.currentSelection=new XG,this.onCharData=null,this.suppressingSelectionUpdates=!1,this.lastChangedTextNode=null,this.observer=window.MutationObserver&&new window.MutationObserver(r=>{for(let i=0;i<r.length;i++)this.queue.push(r[i]);Fn&&Is<=11&&r.some(i=>i.type=="childList"&&i.removedNodes.length||i.type=="characterData"&&i.oldValue.length>i.target.nodeValue.length)?this.flushSoon():mn&&e.composing&&r.some(i=>i.type=="childList"&&i.target.nodeName=="TR")?(e.input.badSafariComposition=!0,this.flushSoon()):this.flush()}),YG&&(this.onCharData=r=>{this.queue.push({target:r.target,type:"characterData",oldValue:r.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this)}flushSoon(){this.flushingSoon<0&&(this.flushingSoon=window.setTimeout(()=>{this.flushingSoon=-1,this.flush()},20))}forceFlush(){this.flushingSoon>-1&&(window.clearTimeout(this.flushingSoon),this.flushingSoon=-1,this.flush())}start(){this.observer&&(this.observer.takeRecords(),this.observer.observe(this.view.dom,QG)),this.onCharData&&this.view.dom.addEventListener("DOMCharacterDataModified",this.onCharData),this.connectSelection()}stop(){if(this.observer){let e=this.observer.takeRecords();if(e.length){for(let n=0;n<e.length;n++)this.queue.push(e[n]);window.setTimeout(()=>this.flush(),20)}this.observer.disconnect()}this.onCharData&&this.view.dom.removeEventListener("DOMCharacterDataModified",this.onCharData),this.disconnectSelection()}connectSelection(){this.view.dom.ownerDocument.addEventListener("selectionchange",this.onSelectionChange)}disconnectSelection(){this.view.dom.ownerDocument.removeEventListener("selectionchange",this.onSelectionChange)}suppressSelectionUpdates(){this.suppressingSelectionUpdates=!0,setTimeout(()=>this.suppressingSelectionUpdates=!1,50)}onSelectionChange(){if(ZE(this.view)){if(this.suppressingSelectionUpdates)return Ni(this.view);if(Fn&&Is<=11&&!this.view.state.selection.empty){let e=this.view.domSelectionRange();if(e.focusNode&&ca(e.focusNode,e.focusOffset,e.anchorNode,e.anchorOffset))return this.flushSoon()}this.flush()}}setCurSelection(){this.currentSelection.set(this.view.domSelectionRange())}ignoreSelectionChange(e){if(!e.focusNode)return!0;let n=new Set,r;for(let s=e.focusNode;s;s=Ll(s))n.add(s);for(let s=e.anchorNode;s;s=Ll(s))if(n.has(s)){r=s;break}let i=r&&this.view.docView.nearestDesc(r);if(i&&i.ignoreMutation({type:"selection",target:r.nodeType==3?r.parentNode:r}))return this.setCurSelection(),!0}pendingRecords(){if(this.observer)for(let e of this.observer.takeRecords())this.queue.push(e);return this.queue}flush(){let{view:e}=this;if(!e.docView||this.flushingSoon>-1)return;let n=this.pendingRecords();n.length&&(this.queue=[]);let r=e.domSelectionRange(),i=!this.suppressingSelectionUpdates&&!this.currentSelection.eq(r)&&ZE(e)&&!this.ignoreSelectionChange(r),s=-1,a=-1,u=!1,c=[];if(e.editable)for(let h=0;h<n.length;h++){let m=this.registerMutation(n[h],c);m&&(s=s<0?m.from:Math.min(m.from,s),a=a<0?m.to:Math.max(m.to,a),m.typeOver&&(u=!0))}if(c.some(h=>h.nodeName=="BR")&&(e.input.lastKeyCode==8||e.input.lastKeyCode==46||sn&&(e.composing||e.input.compositionEndedAt>Date.now()-50)&&n.some(h=>h.type=="childList"&&h.removedNodes.length))){for(let h of c)if(h.nodeName=="BR"&&h.parentNode){let m=h.nextSibling;for(;m&&m.nodeType==1;){if(m.contentEditable=="false"){h.parentNode.removeChild(h);break}m=m.firstChild}}}else if(mr&&c.length){let h=c.filter(m=>m.nodeName=="BR");if(h.length==2){let[m,g]=h;m.parentNode&&m.parentNode.parentNode==g.parentNode?g.remove():m.remove()}else{let{focusNode:m}=this.currentSelection;for(let g of h){let b=g.parentNode;b&&b.nodeName=="LI"&&(!m||tW(e,m)!=b)&&g.remove()}}}let f=null;s<0&&i&&e.input.lastFocus>Date.now()-200&&Math.max(e.input.lastTouch,e.input.lastClick.time)<Date.now()-300&&Pm(r)&&(f=bx(e))&&f.eq(Me.near(e.state.doc.resolve(0),1))?(e.input.lastFocus=0,Ni(e),this.currentSelection.set(r),e.scrollToSelection()):(s>-1||i)&&(s>-1&&(e.docView.markDirty(s,a),ZG(e)),e.input.badSafariComposition&&(e.input.badSafariComposition=!1,nW(e,c)),this.handleDOMChange(s,a,u,c),e.docView&&e.docView.dirty?e.updateState(e.state):this.currentSelection.eq(r)||Ni(e),this.currentSelection.set(r))}registerMutation(e,n){if(n.indexOf(e.target)>-1)return null;let r=this.view.docView.nearestDesc(e.target);if(e.type=="attributes"&&(r==this.view.docView||e.attributeName=="contenteditable"||e.attributeName=="style"&&!e.oldValue&&!e.target.getAttribute("style"))||!r||r.ignoreMutation(e))return null;if(e.type=="childList"){for(let h=0;h<e.addedNodes.length;h++){let m=e.addedNodes[h];n.push(m),m.nodeType==3&&(this.lastChangedTextNode=m)}if(r.contentDOM&&r.contentDOM!=r.dom&&!r.contentDOM.contains(e.target))return{from:r.posBefore,to:r.posAfter};let i=e.previousSibling,s=e.nextSibling;if(Fn&&Is<=11&&e.addedNodes.length)for(let h=0;h<e.addedNodes.length;h++){let{previousSibling:m,nextSibling:g}=e.addedNodes[h];(!m||Array.prototype.indexOf.call(e.addedNodes,m)<0)&&(i=m),(!g||Array.prototype.indexOf.call(e.addedNodes,g)<0)&&(s=g)}let a=i&&i.parentNode==e.target?nn(i)+1:0,u=r.localPosFromDOM(e.target,a,-1),c=s&&s.parentNode==e.target?nn(s):e.target.childNodes.length,f=r.localPosFromDOM(e.target,c,1);return{from:u,to:f}}else return e.type=="attributes"?{from:r.posAtStart-r.border,to:r.posAtEnd+r.border}:(this.lastChangedTextNode=e.target,{from:r.posAtStart,to:r.posAtEnd,typeOver:e.target.nodeValue==e.oldValue})}}let aD=new WeakMap,lD=!1;function ZG(t){if(!aD.has(t)&&(aD.set(t,null),["normal","nowrap","pre-line"].indexOf(getComputedStyle(t.dom).whiteSpace)!==-1)){if(t.requiresGeckoHackNode=mr,lD)return;console.warn("ProseMirror expects the CSS white-space property to be set, preferably to 'pre-wrap'. It is recommended to load style/prosemirror.css from the prosemirror-view package."),lD=!0}}function uD(t,e){let n=e.startContainer,r=e.startOffset,i=e.endContainer,s=e.endOffset,a=t.domAtPos(t.state.selection.anchor);return ca(a.node,a.offset,i,s)&&([n,r,i,s]=[i,s,n,r]),{anchorNode:n,anchorOffset:r,focusNode:i,focusOffset:s}}function eW(t,e){if(e.getComposedRanges){let i=e.getComposedRanges(t.root)[0];if(i)return uD(t,i)}let n;function r(i){i.preventDefault(),i.stopImmediatePropagation(),n=i.getTargetRanges()[0]}return t.dom.addEventListener("beforeinput",r,!0),document.execCommand("indent"),t.dom.removeEventListener("beforeinput",r,!0),n?uD(t,n):null}function tW(t,e){for(let n=e.parentNode;n&&n!=t.dom;n=n.parentNode){let r=t.docView.nearestDesc(n,!0);if(r&&r.node.isBlock)return n}return null}function nW(t,e){var n;let{focusNode:r,focusOffset:i}=t.domSelectionRange();for(let s of e)if(((n=s.parentNode)===null||n===void 0?void 0:n.nodeName)=="TR"){let a=s.nextSibling;for(;a&&a.nodeName!="TD"&&a.nodeName!="TH";)a=a.nextSibling;if(a){let u=a;for(;;){let c=u.firstChild;if(!c||c.nodeType!=1||c.contentEditable=="false"||/^(BR|IMG)$/.test(c.nodeName))break;u=c}u.insertBefore(s,u.firstChild),r==s&&t.domSelection().collapse(s,i)}else s.parentNode.removeChild(s)}}function rW(t,e,n,r){let{node:i,fromOffset:s,toOffset:a,from:u,to:c}=t.docView.parseRange(e,n),f=t.domSelectionRange(),h,m=f.anchorNode;if(m&&t.dom.contains(m.nodeType==1?m:m.parentNode)&&(h=[{node:m,offset:f.anchorOffset}],Pm(f)||h.push({node:f.focusNode,offset:f.focusOffset})),sn&&t.input.lastKeyCode===8)for(let D=a;D>s;D--){let T=i.childNodes[D-1],$=T.pmViewDesc;if(T.nodeName=="BR"&&!$){a=D;break}if(!$||$.size)break}let g=t.state.doc,b=t.someProp("domParser")||Mi.fromSchema(t.state.schema),x=g.resolve(u),k=null,E=b.parse(i,{topNode:x.parent,topMatch:x.parent.contentMatchAt(x.index()),topOpen:!0,from:s,to:a,preserveWhitespace:x.parent.type.whitespace=="pre"?"full":!0,findPositions:h,ruleFromNode:iW(r),context:x});if(h&&h[0].pos!=null){let D=h[0].pos,T=h[1]&&h[1].pos;T==null&&(T=D),k={anchor:D+u,head:T+u}}return{doc:E,sel:k,from:u,to:c}}const iW=t=>e=>{let n=e.pmViewDesc;if(n)return n.parseRule(t);if(e.nodeName=="BR"&&e.parentNode){if(mn&&/^(ul|ol)$/i.test(e.parentNode.nodeName)){let r=document.createElement("div");return r.appendChild(document.createElement("li")),{skip:r}}else if(e.parentNode.lastChild==e||mn&&/^(tr|table)$/i.test(e.parentNode.nodeName))return{ignore:!0}}else if(e.nodeName=="IMG"&&e.getAttribute("mark-placeholder"))return{ignore:!0};return null},sW=/^(a|abbr|acronym|b|bd[io]|big|br|button|cite|code|data(list)?|del|dfn|em|i|img|ins|kbd|label|map|mark|meter|output|q|ruby|s|samp|small|span|strong|su[bp]|time|u|tt|var)$/i;function oW(t,e,n,r,i){let s=t.input.compositionPendingChanges||(t.composing?t.input.compositionID:0);if(t.input.compositionPendingChanges=0,e<0){let M=t.input.lastSelectionTime>Date.now()-50?t.input.lastSelectionOrigin:null,N=bx(t,M);if(N&&!t.state.selection.eq(N)){if(sn&&$i&&t.input.lastKeyCode===13&&Date.now()-100<t.input.lastKeyCodeTime&&t.someProp("handleKeyDown",G=>G(t,Mo(13,"Enter"))))return;let j=t.state.tr.setSelection(N);M=="pointer"?j.setMeta("pointer",!0):M=="key"&&j.scrollIntoView(),s&&j.setMeta("composition",s),t.dispatch(j)}return}let a=t.state.doc.resolve(e),u=a.sharedDepth(n);e=a.before(u+1),n=t.state.doc.resolve(n).after(u+1);let c=t.state.selection,f=rW(t,e,n,i),h=t.state.doc,m=h.slice(f.from,f.to),g,b;t.input.lastKeyCode===8&&Date.now()-100<t.input.lastKeyCodeTime?(g=t.state.selection.to,b="end"):(g=t.state.selection.from,b="start"),t.input.lastKeyCode=null;let x=uW(m.content,f.doc.content,f.from,g,b);if(x&&t.input.domChangeCount++,(zl&&t.input.lastIOSEnter>Date.now()-225||$i)&&i.some(M=>M.nodeType==1&&!sW.test(M.nodeName))&&(!x||x.endA>=x.endB)&&t.someProp("handleKeyDown",M=>M(t,Mo(13,"Enter")))){t.input.lastIOSEnter=0;return}if(!x)if(r&&c instanceof De&&!c.empty&&c.$head.sameParent(c.$anchor)&&!t.composing&&!(f.sel&&f.sel.anchor!=f.sel.head))x={start:c.from,endA:c.to,endB:c.to};else{if(f.sel){let M=cD(t,t.state.doc,f.sel);if(M&&!M.eq(t.state.selection)){let N=t.state.tr.setSelection(M);s&&N.setMeta("composition",s),t.dispatch(N)}}return}t.state.selection.from<t.state.selection.to&&x.start==x.endB&&t.state.selection instanceof De&&(x.start>t.state.selection.from&&x.start<=t.state.selection.from+2&&t.state.selection.from>=f.from?x.start=t.state.selection.from:x.endA<t.state.selection.to&&x.endA>=t.state.selection.to-2&&t.state.selection.to<=f.to&&(x.endB+=t.state.selection.to-x.endA,x.endA=t.state.selection.to)),Fn&&Is<=11&&x.endB==x.start+1&&x.endA==x.start&&x.start>f.from&&f.doc.textBetween(x.start-f.from-1,x.start-f.from+1)=="  "&&(x.start--,x.endA--,x.endB--);let k=f.doc.resolveNoCache(x.start-f.from),E=f.doc.resolveNoCache(x.endB-f.from),D=h.resolve(x.start),T=k.sameParent(E)&&k.parent.inlineContent&&D.end()>=x.endA;if((zl&&t.input.lastIOSEnter>Date.now()-225&&(!T||i.some(M=>M.nodeName=="DIV"||M.nodeName=="P"))||!T&&k.pos<f.doc.content.size&&(!k.sameParent(E)||!k.parent.inlineContent)&&k.pos<E.pos&&!/\S/.test(f.doc.textBetween(k.pos,E.pos,"","")))&&t.someProp("handleKeyDown",M=>M(t,Mo(13,"Enter")))){t.input.lastIOSEnter=0;return}if(t.state.selection.anchor>x.start&&lW(h,x.start,x.endA,k,E)&&t.someProp("handleKeyDown",M=>M(t,Mo(8,"Backspace")))){$i&&sn&&t.domObserver.suppressSelectionUpdates();return}sn&&x.endB==x.start&&(t.input.lastChromeDelete=Date.now()),$i&&!T&&k.start()!=E.start()&&E.parentOffset==0&&k.depth==E.depth&&f.sel&&f.sel.anchor==f.sel.head&&f.sel.head==x.endA&&(x.endB-=2,E=f.doc.resolveNoCache(x.endB-f.from),setTimeout(()=>{t.someProp("handleKeyDown",function(M){return M(t,Mo(13,"Enter"))})},20));let $=x.start,A=x.endA,B=M=>{let N=M||t.state.tr.replace($,A,f.doc.slice(x.start-f.from,x.endB-f.from));if(f.sel){let j=cD(t,N.doc,f.sel);j&&!(sn&&t.composing&&j.empty&&(x.start!=x.endB||t.input.lastChromeDelete<Date.now()-100)&&(j.head==$||j.head==N.mapping.map(A)-1)||Fn&&j.empty&&j.head==$)&&N.setSelection(j)}return s&&N.setMeta("composition",s),N.scrollIntoView()},P;if(T)if(k.pos==E.pos){Fn&&Is<=11&&k.parentOffset==0&&(t.domObserver.suppressSelectionUpdates(),setTimeout(()=>Ni(t),20));let M=B(t.state.tr.delete($,A)),N=h.resolve(x.start).marksAcross(h.resolve(x.endA));N&&M.ensureMarks(N),t.dispatch(M)}else if(x.endA==x.endB&&(P=aW(k.parent.content.cut(k.parentOffset,E.parentOffset),D.parent.content.cut(D.parentOffset,x.endA-D.start())))){let M=B(t.state.tr);P.type=="add"?M.addMark($,A,P.mark):M.removeMark($,A,P.mark),t.dispatch(M)}else if(k.parent.child(k.index()).isText&&k.index()==E.index()-(E.textOffset?0:1)){let M=k.parent.textBetween(k.parentOffset,E.parentOffset),N=()=>B(t.state.tr.insertText(M,$,A));t.someProp("handleTextInput",j=>j(t,$,A,M,N))||t.dispatch(N())}else t.dispatch(B());else t.dispatch(B())}function cD(t,e,n){return Math.max(n.anchor,n.head)>e.content.size?null:yx(t,e.resolve(n.anchor),e.resolve(n.head))}function aW(t,e){let n=t.firstChild.marks,r=e.firstChild.marks,i=n,s=r,a,u,c;for(let h=0;h<r.length;h++)i=r[h].removeFromSet(i);for(let h=0;h<n.length;h++)s=n[h].removeFromSet(s);if(i.length==1&&s.length==0)u=i[0],a="add",c=h=>h.mark(u.addToSet(h.marks));else if(i.length==0&&s.length==1)u=s[0],a="remove",c=h=>h.mark(u.removeFromSet(h.marks));else return null;let f=[];for(let h=0;h<e.childCount;h++)f.push(c(e.child(h)));if(ae.from(f).eq(t))return{mark:u,type:a}}function lW(t,e,n,r,i){if(n-e<=i.pos-r.pos||uy(r,!0,!1)<i.pos)return!1;let s=t.resolve(e);if(!r.parent.isTextblock){let u=s.nodeAfter;return u!=null&&n==e+u.nodeSize}if(s.parentOffset<s.parent.content.size||!s.parent.isTextblock)return!1;let a=t.resolve(uy(s,!0,!0));return!a.parent.isTextblock||a.pos>n||uy(a,!0,!1)<n?!1:r.parent.content.cut(r.parentOffset).eq(a.parent.content)}function uy(t,e,n){let r=t.depth,i=e?t.end():t.pos;for(;r>0&&(e||t.indexAfter(r)==t.node(r).childCount);)r--,i++,e=!1;if(n){let s=t.node(r).maybeChild(t.indexAfter(r));for(;s&&!s.isLeaf;)s=s.firstChild,i++}return i}function uW(t,e,n,r,i){let s=t.findDiffStart(e,n),a=n+t.size,u=n+e.size;if(s==null)return null;let{a:c,b:f}=t.findDiffEnd(e,a,u);if(i=="end"){let h=Math.max(0,s-Math.min(c,f));r-=c+h-s}if(c<s&&a<u){let h=r<=s&&r>=c?s-r:0;s-=h,f=s+(f-c),c=s}else if(f<s){let h=r<=s&&r>=f?s-r:0;s-=h,c=s+(c-f),f=s}return{start:s,endA:c,endB:f}}class B7{constructor(e,n){this._root=null,this.focused=!1,this.trackWrites=null,this.mounted=!1,this.markCursor=null,this.cursorWrapper=null,this.lastSelectedViewDesc=void 0,this.input=new SG,this.prevDirectPlugins=[],this.pluginViews=[],this.requiresGeckoHackNode=!1,this.dragging=null,this._props=n,this.state=n.state,this.directPlugins=n.plugins||[],this.directPlugins.forEach(mD),this.dispatch=this.dispatch.bind(this),this.dom=e&&e.mount||document.createElement("div"),e&&(e.appendChild?e.appendChild(this.dom):typeof e=="function"?e(this.dom):e.mount&&(this.mounted=!0)),this.editable=hD(this),fD(this),this.nodeViews=pD(this),this.docView=GE(this.state.doc,dD(this),ly(this),this.dom,this),this.domObserver=new JG(this,(r,i,s,a)=>oW(this,r,i,s,a)),this.domObserver.start(),wG(this),this.updatePluginViews()}get composing(){return this.input.composing}get props(){if(this._props.state!=this.state){let e=this._props;this._props={};for(let n in e)this._props[n]=e[n];this._props.state=this.state}return this._props}update(e){e.handleDOMEvents!=this._props.handleDOMEvents&&I4(this);let n=this._props;this._props=e,e.plugins&&(e.plugins.forEach(mD),this.directPlugins=e.plugins),this.updateStateInner(e.state,n)}setProps(e){let n={};for(let r in this._props)n[r]=this._props[r];n.state=this.state;for(let r in e)n[r]=e[r];this.update(n)}updateState(e){this.updateStateInner(e,this._props)}updateStateInner(e,n){var r;let i=this.state,s=!1,a=!1;e.storedMarks&&this.composing&&(E7(this),a=!0),this.state=e;let u=i.plugins!=e.plugins||this._props.plugins!=n.plugins;if(u||this._props.plugins!=n.plugins||this._props.nodeViews!=n.nodeViews){let b=pD(this);dW(b,this.nodeViews)&&(this.nodeViews=b,s=!0)}(u||n.handleDOMEvents!=this._props.handleDOMEvents)&&I4(this),this.editable=hD(this),fD(this);let c=ly(this),f=dD(this),h=i.plugins!=e.plugins&&!i.doc.eq(e.doc)?"reset":e.scrollToSelection>i.scrollToSelection?"to selection":"preserve",m=s||!this.docView.matchesNode(e.doc,f,c);(m||!e.selection.eq(i.selection))&&(a=!0);let g=h=="preserve"&&a&&this.dom.style.overflowAnchor==null&&Fq(this);if(a){this.domObserver.stop();let b=m&&(Fn||sn)&&!this.composing&&!i.selection.empty&&!e.selection.empty&&cW(i.selection,e.selection);if(m){let k=sn?this.trackWrites=this.domSelectionRange().focusNode:null;this.composing&&(this.input.compositionNode=KG(this)),(s||!this.docView.update(e.doc,f,c,this))&&(this.docView.updateOuterDeco(f),this.docView.destroy(),this.docView=GE(e.doc,f,c,this.dom,this)),k&&(!this.trackWrites||!this.dom.contains(this.trackWrites))&&(b=!0)}let x=this.input.mouseDown;b||!(x&&this.domObserver.currentSelection.eq(this.domSelectionRange())&&cG(this)&&x.delaySelUpdate())?Ni(this,b):(u7(this,e.selection),this.domObserver.setCurSelection()),this.domObserver.start()}this.updatePluginViews(i),!((r=this.dragging)===null||r===void 0)&&r.node&&!i.doc.eq(e.doc)&&this.updateDraggedNode(this.dragging,i),h=="reset"?this.dom.scrollTop=0:h=="to selection"?this.scrollToSelection():g&&Kq(g)}scrollToSelection(){let e=this.domSelectionRange().focusNode;if(!(!e||!this.dom.contains(e.nodeType==1?e:e.parentNode))){if(!this.someProp("handleScrollToSelection",n=>n(this)))if(this.state.selection instanceof ke){let n=this.docView.domAfterPos(this.state.selection.from);n.nodeType==1&&_E(this,n.getBoundingClientRect(),e)}else _E(this,this.coordsAtPos(this.state.selection.head,1),e)}}destroyPluginViews(){let e;for(;e=this.pluginViews.pop();)e.destroy&&e.destroy()}updatePluginViews(e){if(!e||e.plugins!=this.state.plugins||this.directPlugins!=this.prevDirectPlugins){this.prevDirectPlugins=this.directPlugins,this.destroyPluginViews();for(let n=0;n<this.directPlugins.length;n++){let r=this.directPlugins[n];r.spec.view&&this.pluginViews.push(r.spec.view(this))}for(let n=0;n<this.state.plugins.length;n++){let r=this.state.plugins[n];r.spec.view&&this.pluginViews.push(r.spec.view(this))}}else for(let n=0;n<this.pluginViews.length;n++){let r=this.pluginViews[n];r.update&&r.update(this,e)}}updateDraggedNode(e,n){let r=e.node,i=-1;if(r.from<this.state.doc.content.size&&this.state.doc.nodeAt(r.from)==r.node)i=r.from;else{let s=r.from+(this.state.doc.content.size-n.doc.content.size);(s>0&&s<this.state.doc.content.size&&this.state.doc.nodeAt(s))==r.node&&(i=s)}this.dragging=new S7(e.slice,e.move,i<0?void 0:ke.create(this.state.doc,i))}someProp(e,n){let r=this._props&&this._props[e],i;if(r!=null&&(i=n?n(r):r))return i;for(let a=0;a<this.directPlugins.length;a++){let u=this.directPlugins[a].props[e];if(u!=null&&(i=n?n(u):u))return i}let s=this.state.plugins;if(s)for(let a=0;a<s.length;a++){let u=s[a].props[e];if(u!=null&&(i=n?n(u):u))return i}}hasFocus(){if(Fn){let e=this.root.activeElement;if(e==this.dom)return!0;if(!e||!this.dom.contains(e))return!1;for(;e&&this.dom!=e&&this.dom.contains(e);){if(e.contentEditable=="false")return!1;e=e.parentElement}return!0}return this.root.activeElement==this.dom}focus(){this.domObserver.stop(),this.editable&&_q(this.dom),Ni(this),this.domObserver.start()}get root(){let e=this._root;if(e==null){for(let n=this.dom.parentNode;n;n=n.parentNode)if(n.nodeType==9||n.nodeType==11&&n.host)return n.getSelection||(Object.getPrototypeOf(n).getSelection=()=>n.ownerDocument.getSelection()),this._root=n}return e||document}updateRoot(){this._root=null}posAtCoords(e){return Gq(this,e)}coordsAtPos(e,n=1){return t7(this,e,n)}domAtPos(e,n=0){return this.docView.domFromPos(e,n)}nodeDOM(e){let n=this.docView.descAt(e);return n?n.nodeDOM:null}posAtDOM(e,n,r=-1){let i=this.docView.posFromDOM(e,n,r);if(i==null)throw new RangeError("DOM position not inside the editor");return i}endOfTextblock(e,n){return Jq(this,n||this.state,e)}pasteHTML(e,n){return rd(this,"",e,!1,n||new ClipboardEvent("paste"))}pasteText(e,n){return rd(this,e,null,!0,n||new ClipboardEvent("paste"))}serializeForClipboard(e){return xx(this,e)}destroy(){this.docView&&($G(this),this.destroyPluginViews(),this.mounted?(this.docView.update(this.state.doc,[],ly(this),this),this.dom.textContent=""):this.dom.parentNode&&this.dom.parentNode.removeChild(this.dom),this.docView.destroy(),this.docView=null,Bq())}get isDestroyed(){return this.docView==null}dispatchEvent(e){return AG(this,e)}domSelectionRange(){let e=this.domSelection();return e?mn&&this.root.nodeType===11&&Oq(this.dom.ownerDocument)==this.dom&&eW(this,e)||e:{focusNode:null,focusOffset:0,anchorNode:null,anchorOffset:0}}domSelection(){return this.root.getSelection()}}B7.prototype.dispatch=function(t){let e=this._props.dispatchTransaction;e?e.call(this,t):this.updateState(this.state.apply(t))};function dD(t){let e=Object.create(null);return e.class="ProseMirror",e.contenteditable=String(t.editable),t.someProp("attributes",n=>{if(typeof n=="function"&&(n=n(t.state)),n)for(let r in n)r=="class"?e.class+=" "+n[r]:r=="style"?e.style=(e.style?e.style+";":"")+n[r]:!e[r]&&r!="contenteditable"&&r!="nodeName"&&(e[r]=String(n[r]))}),e.translate||(e.translate="no"),[vn.node(0,t.state.doc.content.size,e)]}function fD(t){if(t.markCursor){let e=document.createElement("img");e.className="ProseMirror-separator",e.setAttribute("mark-placeholder","true"),e.setAttribute("alt",""),t.cursorWrapper={dom:e,deco:vn.widget(t.state.selection.from,e,{raw:!0,marks:t.markCursor})}}else t.cursorWrapper=null}function hD(t){return!t.someProp("editable",e=>e(t.state)===!1)}function cW(t,e){let n=Math.min(t.$anchor.sharedDepth(t.head),e.$anchor.sharedDepth(e.head));return t.$anchor.start(n)!=e.$anchor.start(n)}function pD(t){let e=Object.create(null);function n(r){for(let i in r)Object.prototype.hasOwnProperty.call(e,i)||(e[i]=r[i])}return t.someProp("nodeViews",n),t.someProp("markViews",n),e}function dW(t,e){let n=0,r=0;for(let i in t){if(t[i]!=e[i])return!0;n++}for(let i in e)r++;return n!=r}function mD(t){if(t.spec.state||t.spec.filterTransaction||t.spec.appendTransaction)throw new RangeError("Plugins passed directly to the view must not have a state component")}var qs={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},Dp={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},fW=typeof navigator<"u"&&/Mac/.test(navigator.platform),hW=typeof navigator<"u"&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent);for(var rn=0;rn<10;rn++)qs[48+rn]=qs[96+rn]=String(rn);for(var rn=1;rn<=24;rn++)qs[rn+111]="F"+rn;for(var rn=65;rn<=90;rn++)qs[rn]=String.fromCharCode(rn+32),Dp[rn]=String.fromCharCode(rn);for(var cy in qs)Dp.hasOwnProperty(cy)||(Dp[cy]=qs[cy]);function pW(t){var e=fW&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||hW&&t.shiftKey&&t.key&&t.key.length==1||t.key=="Unidentified",n=!e&&t.key||(t.shiftKey?Dp:qs)[t.keyCode]||t.key||"Unidentified";return n=="Esc"&&(n="Escape"),n=="Del"&&(n="Delete"),n=="Left"&&(n="ArrowLeft"),n=="Up"&&(n="ArrowUp"),n=="Right"&&(n="ArrowRight"),n=="Down"&&(n="ArrowDown"),n}const mW=typeof navigator<"u"&&/Mac|iP(hone|[oa]d)/.test(navigator.platform),gW=typeof navigator<"u"&&/Win/.test(navigator.platform);function bW(t){let e=t.split(/-(?!$)/),n=e[e.length-1];n=="Space"&&(n=" ");let r,i,s,a;for(let u=0;u<e.length-1;u++){let c=e[u];if(/^(cmd|meta|m)$/i.test(c))a=!0;else if(/^a(lt)?$/i.test(c))r=!0;else if(/^(c|ctrl|control)$/i.test(c))i=!0;else if(/^s(hift)?$/i.test(c))s=!0;else if(/^mod$/i.test(c))mW?a=!0:i=!0;else throw new Error("Unrecognized modifier name: "+c)}return r&&(n="Alt-"+n),i&&(n="Ctrl-"+n),a&&(n="Meta-"+n),s&&(n="Shift-"+n),n}function yW(t){let e=Object.create(null);for(let n in t)e[bW(n)]=t[n];return e}function dy(t,e,n=!0){return e.altKey&&(t="Alt-"+t),e.ctrlKey&&(t="Ctrl-"+t),e.metaKey&&(t="Meta-"+t),n&&e.shiftKey&&(t="Shift-"+t),t}function xW(t){return new mt({props:{handleKeyDown:M7(t)}})}function M7(t){let e=yW(t);return function(n,r){let i=pW(r),s,a=e[dy(i,r)];if(a&&a(n.state,n.dispatch,n))return!0;if(i.length==1&&i!=" "){if(r.shiftKey){let u=e[dy(i,r,!1)];if(u&&u(n.state,n.dispatch,n))return!0}if((r.altKey||r.metaKey||r.ctrlKey)&&!(gW&&r.ctrlKey&&r.altKey)&&(s=qs[r.keyCode])&&s!=i){let u=e[dy(s,r)];if(u&&u(n.state,n.dispatch,n))return!0}}return!1}}var vW=Object.defineProperty,Sx=(t,e)=>{for(var n in e)vW(t,n,{get:e[n],enumerable:!0})};function Lm(t){const{state:e,transaction:n}=t;let{selection:r}=n,{doc:i}=n,{storedMarks:s}=n;return{...e,apply:e.apply.bind(e),applyTransaction:e.applyTransaction.bind(e),plugins:e.plugins,schema:e.schema,reconfigure:e.reconfigure.bind(e),toJSON:e.toJSON.bind(e),get storedMarks(){return s},get selection(){return r},get doc(){return i},get tr(){return r=n.selection,i=n.doc,s=n.storedMarks,n}}}var zm=class{constructor(t){this.editor=t.editor,this.rawCommands=this.editor.extensionManager.commands,this.customState=t.state}get hasCustomState(){return!!this.customState}get state(){return this.customState||this.editor.state}get commands(){const{rawCommands:t,editor:e,state:n}=this,{view:r}=e,{tr:i}=n,s=this.buildProps(i);return Object.fromEntries(Object.entries(t).map(([a,u])=>[a,(...f)=>{const h=u(...f)(s);return!i.getMeta("preventDispatch")&&!this.hasCustomState&&r.dispatch(i),h}]))}get chain(){return()=>this.createChain()}get can(){return()=>this.createCan()}createChain(t,e=!0){const{rawCommands:n,editor:r,state:i}=this,{view:s}=r,a=[],u=!!t,c=t||i.tr,f=()=>(!u&&e&&!c.getMeta("preventDispatch")&&!this.hasCustomState&&s.dispatch(c),a.every(m=>m===!0)),h={...Object.fromEntries(Object.entries(n).map(([m,g])=>[m,(...x)=>{const k=this.buildProps(c,e),E=g(...x)(k);return a.push(E),h}])),run:f};return h}createCan(t){const{rawCommands:e,state:n}=this,r=!1,i=t||n.tr,s=this.buildProps(i,r);return{...Object.fromEntries(Object.entries(e).map(([u,c])=>[u,(...f)=>c(...f)({...s,dispatch:void 0})])),chain:()=>this.createChain(i,r)}}buildProps(t,e=!0){const{rawCommands:n,editor:r,state:i}=this,{view:s}=r,a={tr:t,editor:r,view:s,state:Lm({state:i,transaction:t}),dispatch:e?()=>{}:void 0,chain:()=>this.createChain(t,e),can:()=>this.createCan(t),get commands(){return Object.fromEntries(Object.entries(n).map(([u,c])=>[u,(...f)=>c(...f)(a)]))}};return a}},Dr={};Sx(Dr,{blur:()=>kW,clearContent:()=>CW,clearNodes:()=>EW,command:()=>DW,createParagraphNear:()=>SW,cut:()=>wW,deleteCurrentNode:()=>$W,deleteNode:()=>TW,deleteRange:()=>AW,deleteSelection:()=>RW,enter:()=>NW,exitCode:()=>PW,extendMarkRange:()=>OW,first:()=>LW,focus:()=>IW,forEach:()=>jW,insertContent:()=>FW,insertContentAt:()=>_W,insertDefaultBlock:()=>VW,joinBackward:()=>qW,joinDown:()=>UW,joinForward:()=>GW,joinItemBackward:()=>WW,joinItemForward:()=>QW,joinTextblockBackward:()=>YW,joinTextblockForward:()=>XW,joinUp:()=>HW,keyboardShortcut:()=>ZW,lift:()=>eQ,liftEmptyBlock:()=>tQ,liftListItem:()=>nQ,newlineInCode:()=>rQ,resetAttributes:()=>iQ,scrollIntoView:()=>sQ,selectAll:()=>oQ,selectNodeBackward:()=>aQ,selectNodeForward:()=>lQ,selectParentNode:()=>uQ,selectTextblockEnd:()=>cQ,selectTextblockStart:()=>dQ,setContent:()=>fQ,setMark:()=>RQ,setMeta:()=>NQ,setNode:()=>PQ,setNodeSelection:()=>OQ,setTextDirection:()=>LQ,setTextSelection:()=>zQ,sinkListItem:()=>IQ,splitBlock:()=>jQ,splitListItem:()=>FQ,toggleList:()=>_Q,toggleMark:()=>VQ,toggleNode:()=>HQ,toggleWrap:()=>UQ,undoInputRule:()=>qQ,unsetAllMarks:()=>GQ,unsetMark:()=>WQ,unsetTextDirection:()=>QQ,updateAttributes:()=>YQ,wrapIn:()=>XQ,wrapInList:()=>JQ});var kW=()=>({editor:t,view:e})=>(requestAnimationFrame(()=>{var n;t.isDestroyed||(e.dom.blur(),(n=window?.getSelection())==null||n.removeAllRanges())}),!0),CW=(t=!0)=>({commands:e})=>e.setContent("",{emitUpdate:t}),EW=()=>({state:t,tr:e,dispatch:n})=>{const{selection:r}=e,{ranges:i}=r;return n&&i.forEach(({$from:s,$to:a})=>{t.doc.nodesBetween(s.pos,a.pos,(u,c)=>{if(u.type.isText)return;const{doc:f,mapping:h}=e,m=f.resolve(h.map(c)),g=f.resolve(h.map(c+u.nodeSize)),b=m.blockRange(g);if(!b)return;const x=Yl(b);if(u.type.isTextblock){const{defaultType:k}=m.parent.contentMatchAt(m.index());e.setNodeMarkup(b.start,k)}(x||x===0)&&e.lift(b,x)})}),!0},DW=t=>e=>t(e),SW=()=>({state:t,dispatch:e})=>H9(t,e),wW=(t,e)=>({editor:n,tr:r})=>{const{state:i}=n,s=i.doc.slice(t.from,t.to);r.deleteRange(t.from,t.to);const a=r.mapping.map(e);return r.insert(a,s.content),r.setSelection(new De(r.doc.resolve(Math.max(a-1,0)))),!0},$W=()=>({tr:t,dispatch:e})=>{const{selection:n}=t,r=n.$anchor.node();if(r.content.size>0)return!1;const i=t.selection.$anchor;for(let s=i.depth;s>0;s-=1)if(i.node(s).type===r.type){if(e){const u=i.before(s),c=i.after(s);t.delete(u,c).scrollIntoView()}return!0}return!1};function Lt(t,e){if(typeof t=="string"){if(!e.nodes[t])throw Error(`There is no node type named '${t}'. Maybe you forgot to add the extension?`);return e.nodes[t]}return t}var TW=t=>({tr:e,state:n,dispatch:r})=>{const i=Lt(t,n.schema),s=e.selection.$anchor;for(let a=s.depth;a>0;a-=1)if(s.node(a).type===i){if(r){const c=s.before(a),f=s.after(a);e.delete(c,f).scrollIntoView()}return!0}return!1},AW=t=>({tr:e,dispatch:n})=>{const{from:r,to:i}=t;return n&&e.delete(r,i),!0},BW=t=>t.content?/^text(\*|\+)/.test(t.content):!1,gD=(t,e,n)=>{if(!t.parent.isInline||n==="left"&&t.pos>t.start()||n==="right"&&t.pos<t.end())return t.pos;const r=e.nodes[t.parent.type.name].spec;return BW(r)?n==="left"?t.start()-1:t.end()+1:t.pos},MW=(t,e,n)=>{const r=gD(t,n,"left"),i=gD(e,n,"right");return{from:r,to:i}},RW=()=>({state:t,dispatch:e})=>{if(t.selection.empty)return!1;if(e){const n=t.tr,{ranges:r}=t.selection,i=n.steps.length;r.forEach(s=>{const a=n.mapping.slice(i),u=n.doc.resolve(a.map(s.$from.pos)),c=n.doc.resolve(a.map(s.$to.pos)),{from:f,to:h}=MW(u,c,t.schema);n.deleteRange(f,h)}),n.selection.empty||n.setSelection(De.near(n.doc.resolve(n.selection.from))),n.scrollIntoView(),e(n)}return!0},NW=()=>({commands:t})=>t.keyboardShortcut("Enter"),PW=()=>({state:t,dispatch:e})=>mq(t,e);function wx(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function Sp(t,e,n={strict:!0}){const r=Object.keys(e);return r.length?r.every(i=>n.strict?e[i]===t[i]:wx(e[i])?e[i].test(t[i]):e[i]===t[i]):!0}function R7(t,e,n={}){return t.find(r=>r.type===e&&Sp(Object.fromEntries(Object.keys(n).map(i=>[i,r.attrs[i]])),n))}function bD(t,e,n={}){return!!R7(t,e,n)}function $x(t,e,n){if(!t||!e)return;let r=t.parent.childAfter(t.parentOffset);if((!r.node||!r.node.marks.some(f=>f.type===e))&&(r=t.parent.childBefore(t.parentOffset)),!r.node||!r.node.marks.some(f=>f.type===e))return;if(!n){const f=r.node.marks.find(h=>h.type===e);f&&(n=f.attrs)}if(!R7([...r.node.marks],e,n))return;let s=r.index,a=t.start()+r.offset,u=s+1,c=a+r.node.nodeSize;for(;s>0&&bD([...t.parent.child(s-1).marks],e,n);)s-=1,a-=t.parent.child(s).nodeSize;for(;u<t.parent.childCount&&bD([...t.parent.child(u).marks],e,n);)c+=t.parent.child(u).nodeSize,u+=1;return{from:a,to:c}}function Hi(t,e){if(typeof t=="string"){if(!e.marks[t])throw Error(`There is no mark type named '${t}'. Maybe you forgot to add the extension?`);return e.marks[t]}return t}var OW=(t,e)=>({tr:n,state:r,dispatch:i})=>{const s=Hi(t,r.schema),{doc:a,selection:u}=n,{$from:c,from:f,to:h}=u;if(i){const m=$x(c,s,e);if(m&&m.from<=f&&m.to>=h){const g=De.create(a,m.from,m.to);n.setSelection(g)}}return!0},LW=t=>e=>{const n=typeof t=="function"?t(e):t;for(let r=0;r<n.length;r+=1)if(n[r](e))return!0;return!1};function N7(t){return t instanceof De}function Vo(t=0,e=0,n=0){return Math.min(Math.max(t,e),n)}function j4(t,e=null){if(!e)return null;const n=Me.atStart(t),r=Me.atEnd(t);if(e==="start"||e===!0)return n;if(e==="end")return r;const i=n.from,s=r.to;return e==="all"?De.create(t,Vo(0,i,s),Vo(t.content.size,i,s)):De.create(t,Vo(e,i,s),Vo(e,i,s))}function yD(){return["Android"].includes(navigator.platform)||/android/i.test(navigator.userAgent)}function wp(){return["iPad Simulator","iPhone Simulator","iPod Simulator","iPad","iPhone","iPod"].includes(navigator.platform)||navigator.userAgent.includes("Mac")&&"ontouchend"in document}function zW(){return typeof navigator<"u"?/^((?!chrome|android).)*safari/i.test(navigator.userAgent):!1}var IW=(t=null,e={})=>({editor:n,view:r,tr:i,dispatch:s})=>{e={scrollIntoView:!0,...e};const a=()=>{(wp()||yD())&&r.dom.focus(),zW()&&!wp()&&!yD()&&r.dom.focus({preventScroll:!0}),requestAnimationFrame(()=>{n.isDestroyed||(r.focus(),e?.scrollIntoView&&n.commands.scrollIntoView())})};try{if(r.hasFocus()&&t===null||t===!1)return!0}catch{return!1}if(s&&t===null&&!N7(n.state.selection))return a(),!0;const u=j4(i.doc,t)||n.state.selection,c=n.state.selection.eq(u);return s&&(c||i.setSelection(u),c&&i.storedMarks&&i.setStoredMarks(i.storedMarks),a()),!0},jW=(t,e)=>n=>t.every((r,i)=>e(r,{...n,index:i})),FW=(t,e)=>({tr:n,commands:r})=>r.insertContentAt({from:n.selection.from,to:n.selection.to},t,e),P7=t=>{const e=t.childNodes;for(let n=e.length-1;n>=0;n-=1){const r=e[n];r.nodeType===3&&r.nodeValue&&/^(\n\s\s|\n)$/.test(r.nodeValue)?t.removeChild(r):r.nodeType===1&&P7(r)}return t};function hc(t){if(typeof window>"u")throw new Error("[tiptap error]: there is no window object available, so this function cannot be used");const e=`<body>${t}</body>`,n=new window.DOMParser().parseFromString(e,"text/html").body;return P7(n)}function Il(t,e,n){if(t instanceof zs||t instanceof ae)return t;n={slice:!0,parseOptions:{},...n};const r=typeof t=="object"&&t!==null,i=typeof t=="string";if(r)try{if(Array.isArray(t)&&t.length>0)return ae.fromArray(t.map(u=>e.nodeFromJSON(u)));const a=e.nodeFromJSON(t);return n.errorOnInvalidContent&&a.check(),a}catch(s){if(n.errorOnInvalidContent)throw new Error("[tiptap error]: Invalid JSON content",{cause:s});return console.warn("[tiptap warn]: Invalid content.","Passed value:",t,"Error:",s),Il("",e,n)}if(i){if(n.errorOnInvalidContent){let a=!1,u="";const c=new g9({topNode:e.spec.topNode,marks:e.spec.marks,nodes:e.spec.nodes.append({__tiptap__private__unknown__catch__all__node:{content:"inline*",group:"block",parseDOM:[{tag:"*",getAttrs:f=>(a=!0,u=typeof f=="string"?f:f.outerHTML,null)}]}})});if(n.slice?Mi.fromSchema(c).parseSlice(hc(t),n.parseOptions):Mi.fromSchema(c).parse(hc(t),n.parseOptions),n.errorOnInvalidContent&&a)throw new Error("[tiptap error]: Invalid HTML content",{cause:new Error(`Invalid element found: ${u}`)})}const s=Mi.fromSchema(e);return n.slice?s.parseSlice(hc(t),n.parseOptions).content:s.parse(hc(t),n.parseOptions)}return Il("",e,n)}function O7(t,e,n){const r=t.steps.length-1;if(r<e)return;const i=t.steps[r];if(!(i instanceof Nt||i instanceof Ut))return;const s=t.mapping.maps[r];let a=0;s.forEach((u,c,f,h)=>{a===0&&(a=h)}),t.setSelection(Me.near(t.doc.resolve(a),n))}var KW=t=>!("type"in t),_W=(t,e,n)=>({tr:r,dispatch:i,editor:s})=>{var a;if(i){n={parseOptions:s.options.parseOptions,updateSelection:!0,applyInputRules:!1,applyPasteRules:!1,...n};let u;const c=E=>{s.emit("contentError",{editor:s,error:E,disableCollaboration:()=>{"collaboration"in s.storage&&typeof s.storage.collaboration=="object"&&s.storage.collaboration&&(s.storage.collaboration.isDisabled=!0)}})},f={preserveWhitespace:"full",...n.parseOptions};if(!n.errorOnInvalidContent&&!s.options.enableContentCheck&&s.options.emitContentError)try{Il(e,s.schema,{parseOptions:f,errorOnInvalidContent:!0})}catch(E){c(E)}try{u=Il(e,s.schema,{parseOptions:f,errorOnInvalidContent:(a=n.errorOnInvalidContent)!=null?a:s.options.enableContentCheck})}catch(E){return c(E),!1}let{from:h,to:m}=typeof t=="number"?{from:t,to:t}:{from:t.from,to:t.to},g=!0,b=!0;if((KW(u)?u:[u]).forEach(E=>{E.check(),g=g?E.isText&&E.marks.length===0:!1,b=b?E.isBlock:!1}),h===m&&b){const{parent:E}=r.doc.resolve(h);E.isTextblock&&!E.type.spec.code&&!E.childCount&&(h-=1,m+=1)}let k;if(g){if(Array.isArray(e))k=e.map(E=>E.text||"").join("");else if(e instanceof ae){let E="";e.forEach(D=>{D.text&&(E+=D.text)}),k=E}else typeof e=="object"&&e&&e.text?k=e.text:k=e;r.insertText(k,h,m)}else{k=u;const E=r.doc.resolve(h),D=E.node(),T=E.parentOffset===0,$=D.isText||D.isTextblock,A=D.content.size>0;T&&$&&A&&b&&(h=Math.max(0,h-1)),r.replaceWith(h,m,k)}n.updateSelection&&O7(r,r.steps.length-1,-1),n.applyInputRules&&r.setMeta("applyInputRules",{from:h,text:k}),n.applyPasteRules&&r.setMeta("applyPasteRules",{from:h,text:k})}return!0};function L7(t){for(let e=0;e<t.edgeCount;e+=1){const{type:n}=t.edge(e);if(n.isTextblock&&!n.hasRequiredAttrs())return n}return null}var VW=(t={})=>({tr:e,dispatch:n,editor:r})=>{const{pos:i,attrs:s,content:a,updateSelection:u=!0}=t;let c;typeof i=="number"?c=e.doc.resolve(i):i?c=i:c=e.selection.$from;const f=L7(c.parent.contentMatchAt(c.index()));if(!f)return!1;const h=Object.keys(f.spec.attrs||{}),m=s?Object.fromEntries(Object.entries(s).filter(([b])=>h.includes(b))):{};let g;if(a){const b=Il(a,r.schema);g=f.createAndFill(m,b)}else g=f.createAndFill(m);return g?(n&&(e.insert(c.pos,g),u&&O7(e,e.steps.length-1,-1)),!0):!1},HW=()=>({state:t,dispatch:e})=>fq(t,e),UW=()=>({state:t,dispatch:e})=>hq(t,e),qW=()=>({state:t,dispatch:e})=>z9(t,e),GW=()=>({state:t,dispatch:e})=>K9(t,e),WW=()=>({state:t,dispatch:e,tr:n})=>{try{const r=Mm(t.doc,t.selection.$from.pos,-1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},QW=()=>({state:t,dispatch:e,tr:n})=>{try{const r=Mm(t.doc,t.selection.$from.pos,1);return r==null?!1:(n.join(r,2),e&&e(n),!0)}catch{return!1}},YW=()=>({state:t,dispatch:e})=>cq(t,e),XW=()=>({state:t,dispatch:e})=>dq(t,e);function z7(){return typeof navigator<"u"?/Mac/.test(navigator.platform):!1}function JW(t){const e=t.split(/-(?!$)/);let n=e[e.length-1];n==="Space"&&(n=" ");let r,i,s,a;for(let u=0;u<e.length-1;u+=1){const c=e[u];if(/^(cmd|meta|m)$/i.test(c))a=!0;else if(/^a(lt)?$/i.test(c))r=!0;else if(/^(c|ctrl|control)$/i.test(c))i=!0;else if(/^s(hift)?$/i.test(c))s=!0;else if(/^mod$/i.test(c))wp()||z7()?a=!0:i=!0;else throw new Error(`Unrecognized modifier name: ${c}`)}return r&&(n=`Alt-${n}`),i&&(n=`Ctrl-${n}`),a&&(n=`Meta-${n}`),s&&(n=`Shift-${n}`),n}var ZW=t=>({editor:e,view:n,tr:r,dispatch:i})=>{const s=JW(t).split(/-(?!$)/),a=s.find(f=>!["Alt","Ctrl","Meta","Shift"].includes(f)),u=new KeyboardEvent("keydown",{key:a==="Space"?" ":a,altKey:s.includes("Alt"),ctrlKey:s.includes("Ctrl"),metaKey:s.includes("Meta"),shiftKey:s.includes("Shift"),bubbles:!0,cancelable:!0}),c=e.captureTransaction(()=>{n.someProp("handleKeyDown",f=>f(n,u))});return c?.steps.forEach(f=>{const h=f.map(r.mapping);h&&i&&r.maybeStep(h)}),!0};function Gs(t,e,n={}){const{from:r,to:i,empty:s}=t.selection,a=e?Lt(e,t.schema):null,u=[];t.doc.nodesBetween(r,i,(m,g)=>{if(m.isText)return;const b=Math.max(r,g),x=Math.min(i,g+m.nodeSize);u.push({node:m,from:b,to:x})});const c=i-r,f=u.filter(m=>a?a.name===m.node.type.name:!0).filter(m=>Sp(m.node.attrs,n,{strict:!1}));return s?!!f.length:f.reduce((m,g)=>m+g.to-g.from,0)>=c}var eQ=(t,e={})=>({state:n,dispatch:r})=>{const i=Lt(t,n.schema);return Gs(n,i,e)?pq(n,r):!1},tQ=()=>({state:t,dispatch:e})=>U9(t,e),nQ=t=>({state:e,dispatch:n})=>{const r=Lt(t,e.schema);return wq(r)(e,n)},rQ=()=>({state:t,dispatch:e})=>V9(t,e);function Im(t,e){return e.nodes[t]?"node":e.marks[t]?"mark":null}function xD(t,e){const n=typeof e=="string"?[e]:e;return Object.keys(t).reduce((r,i)=>(n.includes(i)||(r[i]=t[i]),r),{})}var iQ=(t,e)=>({tr:n,state:r,dispatch:i})=>{let s=null,a=null;const u=Im(typeof t=="string"?t:t.name,r.schema);if(!u)return!1;u==="node"&&(s=Lt(t,r.schema)),u==="mark"&&(a=Hi(t,r.schema));let c=!1;return n.selection.ranges.forEach(f=>{r.doc.nodesBetween(f.$from.pos,f.$to.pos,(h,m)=>{s&&s===h.type&&(c=!0,i&&n.setNodeMarkup(m,void 0,xD(h.attrs,e))),a&&h.marks.length&&h.marks.forEach(g=>{a===g.type&&(c=!0,i&&n.addMark(m,m+h.nodeSize,a.create(xD(g.attrs,e))))})})}),c},sQ=()=>({tr:t,dispatch:e})=>(e&&t.scrollIntoView(),!0),oQ=()=>({tr:t,dispatch:e})=>{if(e){const n=new Jn(t.doc);t.setSelection(n)}return!0},aQ=()=>({state:t,dispatch:e})=>j9(t,e),lQ=()=>({state:t,dispatch:e})=>_9(t,e),uQ=()=>({state:t,dispatch:e})=>yq(t,e),cQ=()=>({state:t,dispatch:e})=>kq(t,e),dQ=()=>({state:t,dispatch:e})=>vq(t,e);function F4(t,e,n={},r={}){return Il(t,e,{slice:!1,parseOptions:n,errorOnInvalidContent:r.errorOnInvalidContent})}var fQ=(t,{errorOnInvalidContent:e,emitUpdate:n=!0,parseOptions:r={}}={})=>({editor:i,tr:s,dispatch:a,commands:u})=>{const{doc:c}=s;if(r.preserveWhitespace!=="full"){const f=F4(t,i.schema,r,{errorOnInvalidContent:e??i.options.enableContentCheck});return a&&s.replaceWith(0,c.content.size,f).setMeta("preventUpdate",!n),!0}return a&&s.setMeta("preventUpdate",!n),u.insertContentAt({from:0,to:c.content.size},t,{parseOptions:r,errorOnInvalidContent:e??i.options.enableContentCheck})};function I7(t,e){const n=Hi(e,t.schema),{from:r,to:i,empty:s}=t.selection,a=[];s?(t.storedMarks&&a.push(...t.storedMarks),a.push(...t.selection.$head.marks())):t.doc.nodesBetween(r,i,c=>{a.push(...c.marks)});const u=a.find(c=>c.type.name===n.name);return u?{...u.attrs}:{}}function j7(t,e){const n=new R9(t);return e.forEach(r=>{r.steps.forEach(i=>{n.step(i)})}),n}function hQ(t,e,n){const r=[];return t.nodesBetween(e.from,e.to,(i,s)=>{n(i)&&r.push({node:i,pos:s})}),r}function pQ(t,e){for(let n=t.depth;n>0;n-=1){const r=t.node(n);if(e(r))return{pos:n>0?t.before(n):0,start:t.start(n),depth:n,node:r}}}function jm(t){return e=>pQ(e.$from,t)}function ye(t,e,n){return t.config[e]===void 0&&t.parent?ye(t.parent,e,n):typeof t.config[e]=="function"?t.config[e].bind({...n,parent:t.parent?ye(t.parent,e,n):null}):t.config[e]}function Fm(t){return t.map(e=>{const n={name:e.name,options:e.options,storage:e.storage},r=ye(e,"addExtensions",n);return r?[e,...Fm(r())]:e}).flat(10)}function Tx(t,e){const n=Ca.fromSchema(e).serializeFragment(t),i=document.implementation.createHTMLDocument().createElement("div");return i.appendChild(n),i.innerHTML}function F7(t){return typeof t=="function"}function Qe(t,e=void 0,...n){return F7(t)?e?t.bind(e)(...n):t(...n):t}function mQ(t={}){return Object.keys(t).length===0&&t.constructor===Object}function jl(t){const e=t.filter(i=>i.type==="extension"),n=t.filter(i=>i.type==="node"),r=t.filter(i=>i.type==="mark");return{baseExtensions:e,nodeExtensions:n,markExtensions:r}}function K7(t){const e=[],{nodeExtensions:n,markExtensions:r}=jl(t),i=[...n,...r],s={default:null,validate:void 0,rendered:!0,renderHTML:null,parseHTML:null,keepOnSplit:!0,isRequired:!1},a=n.filter(f=>f.name!=="text").map(f=>f.name),u=r.map(f=>f.name),c=[...a,...u];return t.forEach(f=>{const h={name:f.name,options:f.options,storage:f.storage,extensions:i},m=ye(f,"addGlobalAttributes",h);if(!m)return;m().forEach(b=>{let x;Array.isArray(b.types)?x=b.types:b.types==="*"?x=c:b.types==="nodes"?x=a:b.types==="marks"?x=u:x=[],x.forEach(k=>{Object.entries(b.attributes).forEach(([E,D])=>{e.push({type:k,name:E,attribute:{...s,...D}})})})})}),i.forEach(f=>{const h={name:f.name,options:f.options,storage:f.storage},m=ye(f,"addAttributes",h);if(!m)return;const g=m();Object.entries(g).forEach(([b,x])=>{const k={...s,...x};typeof k?.default=="function"&&(k.default=k.default()),k?.isRequired&&k?.default===void 0&&delete k.default,e.push({type:f.name,name:b,attribute:k})})}),e}function gQ(t){const e=[];let n="",r=!1,i=!1,s=0;const a=t.length;for(let u=0;u<a;u+=1){const c=t[u];if(c==="'"&&!i){r=!r,n+=c;continue}if(c==='"'&&!r){i=!i,n+=c;continue}if(!r&&!i){if(c==="("){s+=1,n+=c;continue}if(c===")"&&s>0){s-=1,n+=c;continue}if(c===";"&&s===0){e.push(n),n="";continue}}n+=c}return n&&e.push(n),e}function vD(t){const e=[],n=gQ(t||""),r=n.length;for(let i=0;i<r;i+=1){const s=n[i],a=s.indexOf(":");if(a===-1)continue;const u=s.slice(0,a).trim(),c=s.slice(a+1).trim();u&&c&&e.push([u,c])}return e}function Ft(...t){return t.filter(e=>!!e).reduce((e,n)=>{const r={...e};return Object.entries(n).forEach(([i,s])=>{if(!r[i]){r[i]=s;return}if(i==="class"){const u=s?String(s).split(" "):[],c=r[i]?r[i].split(" "):[],f=u.filter(h=>!c.includes(h));r[i]=[...c,...f].join(" ")}else if(i==="style"){const u=new Map([...vD(r[i]),...vD(s)]);r[i]=Array.from(u.entries()).map(([c,f])=>`${c}: ${f}`).join("; ")}else r[i]=s}),r},{})}function sd(t,e){return e.filter(n=>n.type===t.type.name).filter(n=>n.attribute.rendered).map(n=>n.attribute.renderHTML?n.attribute.renderHTML(t.attrs)||{}:{[n.name]:t.attrs[n.name]}).reduce((n,r)=>Ft(n,r),{})}function bQ(t){return typeof t!="string"?t:t.match(/^[+-]?(?:\d*\.)?\d+$/)?Number(t):t==="true"?!0:t==="false"?!1:t}function kD(t,e){return"style"in t?t:{...t,getAttrs:n=>{const r=t.getAttrs?t.getAttrs(n):t.attrs;if(r===!1)return!1;const i=e.reduce((s,a)=>{const u=a.attribute.parseHTML?a.attribute.parseHTML(n):bQ(n.getAttribute(a.name));return u==null?s:{...s,[a.name]:u}},{});return{...r,...i}}}}function CD(t){return Object.fromEntries(Object.entries(t).filter(([e,n])=>e==="attrs"&&mQ(n)?!1:n!=null))}function ED(t){var e,n;const r={};return!((e=t?.attribute)!=null&&e.isRequired)&&"default"in(t?.attribute||{})&&(r.default=t.attribute.default),((n=t?.attribute)==null?void 0:n.validate)!==void 0&&(r.validate=t.attribute.validate),[t.name,r]}function _7(t,e){var n;const r=K7(t),{nodeExtensions:i,markExtensions:s}=jl(t),a=(n=i.find(f=>ye(f,"topNode")))==null?void 0:n.name,u=Object.fromEntries(i.map(f=>{const h=r.filter(D=>D.type===f.name),m={name:f.name,options:f.options,storage:f.storage,editor:e},g=t.reduce((D,T)=>{const $=ye(T,"extendNodeSchema",m);return{...D,...$?$(f):{}}},{}),b=CD({...g,content:Qe(ye(f,"content",m)),marks:Qe(ye(f,"marks",m)),group:Qe(ye(f,"group",m)),inline:Qe(ye(f,"inline",m)),atom:Qe(ye(f,"atom",m)),selectable:Qe(ye(f,"selectable",m)),draggable:Qe(ye(f,"draggable",m)),code:Qe(ye(f,"code",m)),whitespace:Qe(ye(f,"whitespace",m)),linebreakReplacement:Qe(ye(f,"linebreakReplacement",m)),defining:Qe(ye(f,"defining",m)),isolating:Qe(ye(f,"isolating",m)),attrs:Object.fromEntries(h.map(ED))}),x=Qe(ye(f,"parseHTML",m));x&&(b.parseDOM=x.map(D=>kD(D,h)));const k=ye(f,"renderHTML",m);k&&(b.toDOM=D=>k({node:D,HTMLAttributes:sd(D,h)}));const E=ye(f,"renderText",m);return E&&(b.toText=E),[f.name,b]})),c=Object.fromEntries(s.map(f=>{const h=r.filter(E=>E.type===f.name),m={name:f.name,options:f.options,storage:f.storage,editor:e},g=t.reduce((E,D)=>{const T=ye(D,"extendMarkSchema",m);return{...E,...T?T(f):{}}},{}),b=CD({...g,inclusive:Qe(ye(f,"inclusive",m)),excludes:Qe(ye(f,"excludes",m)),group:Qe(ye(f,"group",m)),spanning:Qe(ye(f,"spanning",m)),code:Qe(ye(f,"code",m)),attrs:Object.fromEntries(h.map(ED))}),x=Qe(ye(f,"parseHTML",m));x&&(b.parseDOM=x.map(E=>kD(E,h)));const k=ye(f,"renderHTML",m);return k&&(b.toDOM=E=>k({mark:E,HTMLAttributes:sd(E,h)})),[f.name,b]}));return new g9({topNode:a,nodes:u,marks:c})}function yQ(t){const e=t.filter((n,r)=>t.indexOf(n)!==r);return Array.from(new Set(e))}function Tl(t){return t.sort((n,r)=>{const i=ye(n,"priority")||100,s=ye(r,"priority")||100;return i>s?-1:i<s?1:0})}function Ax(t){const e=Tl(Fm(t)),n=yQ(e.map(r=>r.name));return n.length&&console.warn(`[tiptap warn]: Duplicate extension names found: [${n.map(r=>`'${r}'`).join(", ")}]. This can lead to issues.`),e}function V7(t,e){const n=Ax(t);return _7(n,e)}function xQ(t,e){const n=V7(e),r=hc(t);return Mi.fromSchema(n).parse(r).toJSON()}function H7(t,e,n){const{from:r,to:i}=e,{blockSeparator:s=`
31
+
32
+ `,textSerializers:a={}}=n||{};let u="";return t.nodesBetween(r,i,(c,f,h,m)=>{var g;c.isBlock&&f>r&&(u+=s);const b=a?.[c.type.name];if(b)return h&&(u+=b({node:c,pos:f,parent:h,index:m,range:e})),!1;c.isText&&(u+=(g=c?.text)==null?void 0:g.slice(Math.max(r,f)-f,i-f))}),u}function vQ(t,e){const n={from:0,to:t.content.size};return H7(t,n,e)}function U7(t){return Object.fromEntries(Object.entries(t.nodes).filter(([,e])=>e.spec.toText).map(([e,n])=>[e,n.spec.toText]))}function kQ(t,e){const n=Lt(e,t.schema),{from:r,to:i}=t.selection,s=[];t.doc.nodesBetween(r,i,u=>{s.push(u)});const a=s.reverse().find(u=>u.type.name===n.name);return a?{...a.attrs}:{}}function q7(t,e){const n=Im(typeof e=="string"?e:e.name,t.schema);return n==="node"?kQ(t,e):n==="mark"?I7(t,e):{}}function CQ(t,e=JSON.stringify){const n={};return t.filter(r=>{const i=e(r);return Object.prototype.hasOwnProperty.call(n,i)?!1:n[i]=!0})}function EQ(t){const e=CQ(t);return e.length===1?e:e.filter((n,r)=>!e.filter((s,a)=>a!==r).some(s=>n.oldRange.from>=s.oldRange.from&&n.oldRange.to<=s.oldRange.to&&n.newRange.from>=s.newRange.from&&n.newRange.to<=s.newRange.to))}function Bx(t){const{mapping:e,steps:n}=t,r=[];return e.maps.forEach((i,s)=>{const a=[];if(i.ranges.length)i.forEach((u,c)=>{a.push({from:u,to:c})});else{const{from:u,to:c}=n[s];if(u===void 0||c===void 0)return;a.push({from:u,to:c})}a.forEach(({from:u,to:c})=>{const f=e.slice(s).map(u,-1),h=e.slice(s).map(c),m=e.invert().map(f,-1),g=e.invert().map(h);r.push({oldRange:{from:m,to:g},newRange:{from:f,to:h}})})}),EQ(r)}function Mx(t,e,n){const r=[];return t===e?n.resolve(t).marks().forEach(i=>{const s=n.resolve(t),a=$x(s,i.type);a&&r.push({mark:i,...a})}):n.nodesBetween(t,e,(i,s)=>{!i||i?.nodeSize===void 0||r.push(...i.marks.map(a=>({from:s,to:s+i.nodeSize,mark:a})))}),r}var DQ=(t,e,n,r=20)=>{const i=t.doc.resolve(n);let s=r,a=null;for(;s>0&&a===null;){const u=i.node(s);u?.type.name===e?a=u:s-=1}return[a,s]};function ec(t,e){return e.nodes[t]||e.marks[t]||null}function Fh(t,e,n){return Object.fromEntries(Object.entries(n).filter(([r])=>{const i=t.find(s=>s.type===e&&s.name===r);return i?i.attribute.keepOnSplit:!1}))}var SQ=(t,e=500)=>{let n="";const r=t.parentOffset;return t.parent.nodesBetween(Math.max(0,r-e),r,(i,s,a,u)=>{var c,f;const h=((f=(c=i.type.spec).toText)==null?void 0:f.call(c,{node:i,pos:s,parent:a,index:u}))||i.textContent||"%leaf%";n+=i.isAtom&&!i.isText?h:h.slice(0,Math.max(0,r-s))}),n};function K4(t,e,n={}){const{empty:r,ranges:i}=t.selection,s=e?Hi(e,t.schema):null;if(r)return!!(t.storedMarks||t.selection.$from.marks()).filter(m=>s?s.name===m.type.name:!0).find(m=>Sp(m.attrs,n,{strict:!1}));let a=0;const u=[];if(i.forEach(({$from:m,$to:g})=>{const b=m.pos,x=g.pos;t.doc.nodesBetween(b,x,(k,E)=>{if(s&&k.inlineContent&&!k.type.allowsMarkType(s))return!1;if(!k.isText&&!k.marks.length)return;const D=Math.max(b,E),T=Math.min(x,E+k.nodeSize),$=T-D;a+=$,u.push(...k.marks.map(A=>({mark:A,from:D,to:T})))})}),a===0)return!1;const c=u.filter(m=>s?s.name===m.mark.type.name:!0).filter(m=>Sp(m.mark.attrs,n,{strict:!1})).reduce((m,g)=>m+g.to-g.from,0),f=u.filter(m=>s?m.mark.type!==s&&m.mark.type.excludes(s):!0).reduce((m,g)=>m+g.to-g.from,0);return(c>0?c+f:c)>=a}function wQ(t,e,n={}){if(!e)return Gs(t,null,n)||K4(t,null,n);const r=Im(e,t.schema);return r==="node"?Gs(t,e,n):r==="mark"?K4(t,e,n):!1}var $Q=(t,e)=>{const{$from:n,$to:r,$anchor:i}=t.selection;if(e){const s=jm(u=>u.type.name===e)(t.selection);if(!s)return!1;const a=t.doc.resolve(s.pos+1);return i.pos+1===a.end()}return!(r.parentOffset<r.parent.nodeSize-2||n.pos!==r.pos)},TQ=t=>{const{$from:e,$to:n}=t.selection;return!(e.parentOffset>0||e.pos!==n.pos)};function DD(t,e){return Array.isArray(e)?e.some(n=>(typeof n=="string"?n:n.name)===t.name):e}function fy(t,e){const{nodeExtensions:n}=jl(e),r=n.find(a=>a.name===t);if(!r)return!1;const i={name:r.name,options:r.options,storage:r.storage},s=Qe(ye(r,"group",i));return typeof s!="string"?!1:s.split(" ").includes("list")}function $d(t,{checkChildren:e=!0,ignoreWhitespace:n=!1}={}){var r;if(n){if(t.type.name==="hardBreak")return!0;if(t.isText)return!/\S/.test((r=t.text)!=null?r:"")}if(t.isText)return!t.text;if(t.isAtom||t.isLeaf)return!1;if(t.content.childCount===0)return!0;if(e){let i=!0;return t.content.forEach(s=>{i!==!1&&($d(s,{ignoreWhitespace:n,checkChildren:e})||(i=!1))}),i}return!1}function G7(t){return t instanceof ke}var W7=class Q7{constructor(e){this.position=e}static fromJSON(e){return new Q7(e.position)}toJSON(){return{position:this.position}}};function AQ(t,e){const n=e.mapping.mapResult(t.position);return{position:new W7(n.pos),mapResult:n}}function BQ(t){return new W7(t)}function MQ(t,e,n){var r;const{selection:i}=e;let s=null;if(N7(i)&&(s=i.$cursor),s){const u=(r=t.storedMarks)!=null?r:s.marks();return s.parent.type.allowsMarkType(n)&&(!!n.isInSet(u)||!u.some(f=>f.type.excludes(n)))}const{ranges:a}=i;return a.some(({$from:u,$to:c})=>{let f=u.depth===0?t.doc.inlineContent&&t.doc.type.allowsMarkType(n):!1;return t.doc.nodesBetween(u.pos,c.pos,(h,m,g)=>{if(f)return!1;if(h.isInline){const b=!g||g.type.allowsMarkType(n),x=!!n.isInSet(h.marks)||!h.marks.some(k=>k.type.excludes(n));f=b&&x}return!f}),f})}var RQ=(t,e={})=>({tr:n,state:r,dispatch:i})=>{const{selection:s}=n,{empty:a,ranges:u}=s,c=Hi(t,r.schema);if(i)if(a){const f=I7(r,c);n.addStoredMark(c.create({...f,...e}))}else u.forEach(f=>{const h=f.$from.pos,m=f.$to.pos;r.doc.nodesBetween(h,m,(g,b)=>{const x=Math.max(b,h),k=Math.min(b+g.nodeSize,m);g.marks.find(D=>D.type===c)?g.marks.forEach(D=>{c===D.type&&n.addMark(x,k,c.create({...D.attrs,...e}))}):n.addMark(x,k,c.create(e))})});return MQ(r,n,c)},NQ=(t,e)=>({tr:n})=>(n.setMeta(t,e),!0),PQ=(t,e={})=>({state:n,dispatch:r,chain:i})=>{const s=Lt(t,n.schema);let a;return n.selection.$anchor.sameParent(n.selection.$head)&&(a=n.selection.$anchor.parent.attrs),s.isTextblock?i().command(({commands:u})=>jE(s,{...a,...e})(n)?!0:u.clearNodes()).command(({state:u})=>jE(s,{...a,...e})(u,r)).run():(console.warn('[tiptap warn]: Currently "setNode()" only supports text block nodes.'),!1)},OQ=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,i=Vo(t,0,r.content.size),s=ke.create(r,i);e.setSelection(s)}return!0},LQ=(t,e)=>({tr:n,state:r,dispatch:i})=>{const{selection:s}=r;let a,u;return typeof e=="number"?(a=e,u=e):e&&"from"in e&&"to"in e?(a=e.from,u=e.to):(a=s.from,u=s.to),i&&n.doc.nodesBetween(a,u,(c,f)=>{c.isText||n.setNodeMarkup(f,void 0,{...c.attrs,dir:t})}),!0},zQ=t=>({tr:e,dispatch:n})=>{if(n){const{doc:r}=e,{from:i,to:s}=typeof t=="number"?{from:t,to:t}:t,a=De.atStart(r).from,u=De.atEnd(r).to,c=Vo(i,a,u),f=Vo(s,a,u),h=De.create(r,c,f);e.setSelection(h)}return!0},IQ=t=>({state:e,dispatch:n})=>{const r=Lt(t,e.schema);return Aq(r)(e,n)};function SD(t,e){const n=t.storedMarks||t.selection.$to.parentOffset&&t.selection.$from.marks();if(n){const r=n.filter(i=>e?.includes(i.type.name));t.tr.ensureMarks(r)}}var jQ=({keepMarks:t=!0}={})=>({tr:e,state:n,dispatch:r,editor:i})=>{const{selection:s,doc:a}=e,{$from:u,$to:c}=s,f=i.extensionManager.attributes,h=Fh(f,u.node().type.name,u.node().attrs);if(s instanceof ke&&s.node.isBlock)return!u.parentOffset||!Ri(a,u.pos)?!1:(r&&(t&&SD(n,i.extensionManager.splittableMarks),e.split(u.pos).scrollIntoView()),!0);if(!u.parent.isBlock)return!1;const m=c.parentOffset===c.parent.content.size,g=u.depth===0?void 0:L7(u.node(-1).contentMatchAt(u.indexAfter(-1)));let b=m&&g?[{type:g,attrs:h}]:void 0,x=Ri(e.doc,e.mapping.map(u.pos),1,b);if(!b&&!x&&Ri(e.doc,e.mapping.map(u.pos),1,g?[{type:g}]:void 0)&&(x=!0,b=g?[{type:g,attrs:h}]:void 0),r){if(x&&(s instanceof De&&e.deleteSelection(),e.split(e.mapping.map(u.pos),1,b),g&&!m&&!u.parentOffset&&u.parent.type!==g)){const k=e.mapping.map(u.before()),E=e.doc.resolve(k);u.node(-1).canReplaceWith(E.index(),E.index()+1,g)&&e.setNodeMarkup(e.mapping.map(u.before()),g)}t&&SD(n,i.extensionManager.splittableMarks),e.scrollIntoView()}return x},FQ=(t,e={})=>({tr:n,state:r,dispatch:i,editor:s})=>{var a;const u=Lt(t,r.schema),{$from:c,$to:f}=r.selection,h=r.selection.node;if(h&&h.isBlock||c.depth<2||!c.sameParent(f))return!1;const m=c.node(-1);if(m.type!==u)return!1;const g=s.extensionManager.attributes;if(c.parent.content.size===0&&c.node(-1).childCount===c.indexAfter(-1)){if(c.depth===2||c.node(-3).type!==u||c.index(-2)!==c.node(-2).childCount-1)return!1;if(i){let D=ae.empty;const T=c.index(-1)?1:c.index(-2)?2:3;for(let N=c.depth-T;N>=c.depth-3;N-=1)D=ae.from(c.node(N).copy(D));const $=c.indexAfter(-1)<c.node(-2).childCount?1:c.indexAfter(-2)<c.node(-3).childCount?2:3,A={...Fh(g,c.node().type.name,c.node().attrs),...e},B=((a=u.contentMatch.defaultType)==null?void 0:a.createAndFill(A))||void 0;D=D.append(ae.from(u.createAndFill(null,B)||void 0));const P=c.before(c.depth-(T-1));n.replace(P,c.after(-$),new pe(D,4-T,0));let M=-1;n.doc.nodesBetween(P,n.doc.content.size,(N,j)=>{if(M>-1)return!1;N.isTextblock&&N.content.size===0&&(M=j+1)}),M>-1&&n.setSelection(De.near(n.doc.resolve(M))),n.scrollIntoView()}return!0}const b=f.pos===c.end()?m.contentMatchAt(0).defaultType:null,x={...Fh(g,m.type.name,m.attrs),...e},k={...Fh(g,c.node().type.name,c.node().attrs),...e};n.delete(c.pos,f.pos);const E=b?[{type:u,attrs:x},{type:b,attrs:k}]:[{type:u,attrs:x}];if(!Ri(n.doc,c.pos,2))return!1;if(i){const{selection:D,storedMarks:T}=r,{splittableMarks:$}=s.extensionManager,A=T||D.$to.parentOffset&&D.$from.marks();if(n.split(c.pos,2,E).scrollIntoView(),!A||!i)return!0;const B=A.filter(P=>$.includes(P.type.name));n.ensureMarks(B)}return!0};function wD(t){return!t||t==="1"?null:t}function Y7(t,e){return wD(t)===wD(e)}var hy=(t,e)=>{const n=jm(a=>a.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(Math.max(0,n.pos-1)).before(n.depth);if(r===void 0)return!0;const i=t.doc.nodeAt(r);return!(n.node.type===i?.type&&no(t.doc,n.pos))||!Y7(n.node.attrs.type,i?.attrs.type)||t.join(n.pos),!0},py=(t,e)=>{const n=jm(a=>a.type===e)(t.selection);if(!n)return!0;const r=t.doc.resolve(n.start).after(n.depth);if(r===void 0)return!0;const i=t.doc.nodeAt(r);return!(n.node.type===i?.type&&no(t.doc,r))||!Y7(n.node.attrs.type,i?.attrs.type)||t.join(r),!0};function KQ(t){const e=t.doc,n=e.firstChild;if(!n)return null;const r=e.resolve(1),i=e.resolve(n.nodeSize-1);return De.between(r,i)}var _Q=(t,e,n,r={})=>({editor:i,tr:s,state:a,dispatch:u,chain:c,commands:f,can:h})=>{const{extensions:m,splittableMarks:g}=i.extensionManager,b=Lt(t,a.schema),x=Lt(e,a.schema),{selection:k,storedMarks:E}=a,{$from:D,$to:T}=k,$=D.blockRange(T),A=E||k.$to.parentOffset&&k.$from.marks();if(!$)return!1;const B=jm(ne=>fy(ne.type.name,m))(k),P=k.from===0&&k.to===a.doc.content.size,M=a.doc.content.content,N=M.length===1?M[0]:null,j=P&&N&&fy(N.type.name,m)?{node:N,pos:0}:null,G=B??j,W=!!B&&$.depth>=1&&$.depth-B.depth<=1,U=!!j;if((W||U)&&G){if(G.node.type===b)return P&&U?c().command(({tr:ne,dispatch:F})=>{const te=KQ(ne);return te?(ne.setSelection(te),F&&F(ne),!0):!1}).liftListItem(x).run():f.liftListItem(x);if(fy(G.node.type.name,m)&&b.validContent(G.node.content))return c().command(()=>(s.setNodeMarkup(G.pos,b),!0)).command(()=>hy(s,b)).command(()=>py(s,b)).run()}return!n||!A||!u?c().command(()=>h().wrapInList(b,r)?!0:f.clearNodes()).wrapInList(b,r).command(()=>hy(s,b)).command(()=>py(s,b)).run():c().command(()=>{const ne=h().wrapInList(b,r),F=A.filter(te=>g.includes(te.type.name));return s.ensureMarks(F),ne?!0:f.clearNodes()}).wrapInList(b,r).command(()=>hy(s,b)).command(()=>py(s,b)).run()},VQ=(t,e={},n={})=>({state:r,commands:i})=>{const{extendEmptyMarkRange:s=!1}=n,a=Hi(t,r.schema);return K4(r,a,e)?i.unsetMark(a,{extendEmptyMarkRange:s}):i.setMark(a,e)},HQ=(t,e,n={})=>({state:r,commands:i})=>{const s=Lt(t,r.schema),a=Lt(e,r.schema),u=Gs(r,s,n);let c;return r.selection.$anchor.sameParent(r.selection.$head)&&(c=r.selection.$anchor.parent.attrs),u?i.setNode(a,c):i.setNode(s,{...c,...n})},UQ=(t,e={})=>({state:n,commands:r})=>{const i=Lt(t,n.schema);return Gs(n,i,e)?r.lift(i):r.wrapIn(i,e)},qQ=()=>({state:t,dispatch:e})=>{const n=t.plugins;for(let r=0;r<n.length;r+=1){const i=n[r];let s;if(i.spec.isInputRules&&(s=i.getState(t))){if(e){const a=t.tr,u=s.transform;for(let c=u.steps.length-1;c>=0;c-=1)a.step(u.steps[c].invert(u.docs[c]));if(s.text){const c=a.doc.resolve(s.from).marks();a.replaceWith(s.from,s.to,t.schema.text(s.text,c))}else a.delete(s.from,s.to)}return!0}}return!1},GQ=(t={})=>({tr:e,dispatch:n,editor:r})=>{const{ignoreClearable:i=!1}=t,{selection:s}=e,{empty:a,ranges:u}=s;if(a)return!0;const{nonClearableMarks:c}=r.extensionManager;if(n){const f=Object.values(r.schema.marks).filter(h=>i||!c.includes(h.name));u.forEach(h=>{for(const m of f)e.removeMark(h.$from.pos,h.$to.pos,m)})}return!0},WQ=(t,e={})=>({tr:n,state:r,dispatch:i})=>{var s;const{extendEmptyMarkRange:a=!1}=e,{selection:u}=n,c=Hi(t,r.schema),{$from:f,empty:h,ranges:m}=u;if(!i)return!0;if(h&&a){let{from:g,to:b}=u;const x=(s=f.marks().find(E=>E.type===c))==null?void 0:s.attrs,k=$x(f,c,x);k&&(g=k.from,b=k.to),n.removeMark(g,b,c)}else m.forEach(g=>{n.removeMark(g.$from.pos,g.$to.pos,c)});return n.removeStoredMark(c),!0},QQ=t=>({tr:e,state:n,dispatch:r})=>{const{selection:i}=n;let s,a;return typeof t=="number"?(s=t,a=t):t&&"from"in t&&"to"in t?(s=t.from,a=t.to):(s=i.from,a=i.to),r&&e.doc.nodesBetween(s,a,(u,c)=>{if(u.isText)return;const f={...u.attrs};delete f.dir,e.setNodeMarkup(c,void 0,f)}),!0},YQ=(t,e={})=>({tr:n,state:r,dispatch:i})=>{let s=null,a=null;const u=Im(typeof t=="string"?t:t.name,r.schema);if(!u)return!1;u==="node"&&(s=Lt(t,r.schema)),u==="mark"&&(a=Hi(t,r.schema));let c=!1;return n.selection.ranges.forEach(f=>{const h=f.$from.pos,m=f.$to.pos;let g,b,x,k;n.selection.empty?r.doc.nodesBetween(h,m,(E,D)=>{s&&s===E.type&&(c=!0,x=Math.max(D,h),k=Math.min(D+E.nodeSize,m),g=D,b=E)}):r.doc.nodesBetween(h,m,(E,D)=>{D<h&&s&&s===E.type&&(c=!0,x=Math.max(D,h),k=Math.min(D+E.nodeSize,m),g=D,b=E),D>=h&&D<=m&&(s&&s===E.type&&(c=!0,i&&n.setNodeMarkup(D,void 0,{...E.attrs,...e})),a&&E.marks.length&&E.marks.forEach(T=>{if(a===T.type&&(c=!0,i)){const $=Math.max(D,h),A=Math.min(D+E.nodeSize,m);n.addMark($,A,a.create({...T.attrs,...e}))}}))}),b&&(g!==void 0&&i&&n.setNodeMarkup(g,void 0,{...b.attrs,...e}),a&&b.marks.length&&b.marks.forEach(E=>{a===E.type&&i&&n.addMark(x,k,a.create({...E.attrs,...e}))}))}),c},XQ=(t,e={})=>({state:n,dispatch:r})=>{const i=Lt(t,n.schema);return Cq(i,e)(n,r)},JQ=(t,e={})=>({state:n,dispatch:r})=>{const i=Lt(t,n.schema);return Eq(i,e)(n,r)},ZQ=class{constructor(){this.callbacks={}}on(t,e){return this.callbacks[t]||(this.callbacks[t]=[]),this.callbacks[t].push(e),this}emit(t,...e){const n=this.callbacks[t];return n&&n.forEach(r=>r.apply(this,e)),this}off(t,e){const n=this.callbacks[t];return n&&(e?this.callbacks[t]=n.filter(r=>r!==e):delete this.callbacks[t]),this}once(t,e){const n=(...r)=>{this.off(t,n),e.apply(this,r)};return this.on(t,n)}removeAllListeners(){this.callbacks={}}};function Fl(t,e){if(t===e)return!0;if(!t||!e)return!1;const n=Object.keys(t),r=Object.keys(e);return n.length!==r.length?!1:n.every(i=>Object.prototype.hasOwnProperty.call(e,i)&&Object.is(t[i],e[i]))}function eY(t,e){const{selection:n}=t,{$from:r}=n;if(n instanceof ke){const s=r.index();return r.parent.canReplaceWith(s,s+1,e)}let i=r.depth;for(;i>=0;){const s=r.index(i);if(r.node(i).contentMatchAt(s).matchType(e))return!0;i-=1}return!1}function tY(t,e,n){const r=document.querySelector("style[data-tiptap-style]");if(r!==null)return r;const i=document.createElement("style");return e&&i.setAttribute("nonce",e),i.setAttribute("data-tiptap-style",""),i.innerHTML=t,document.getElementsByTagName("head")[0].appendChild(i),i}function $D(t){return t.replace(/&lt;/g,"<").replace(/&gt;/g,">").replace(/&quot;/g,'"').replace(/&amp;/g,"&")}function nY(t){return t.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")}function rY(t){return typeof t=="number"}function iY(t){return Object.prototype.toString.call(t).slice(8,-1)}function mh(t){return iY(t)!=="Object"?!1:t.constructor===Object&&Object.getPrototypeOf(t)===Object.prototype}var sY={};Sx(sY,{createAtomBlockMarkdownSpec:()=>oY,createBlockMarkdownSpec:()=>aY,createInlineMarkdownSpec:()=>cY,parseAttributes:()=>Rx,parseIndentedBlocks:()=>_4,renderNestedMarkdownContent:()=>Px,serializeAttributes:()=>Nx});function Rx(t){if(!t?.trim())return{};const e={},n=[],r=t.replace(/["']([^"']*)["']/g,f=>(n.push(f),`__QUOTED_${n.length-1}__`)),i=r.match(/(?:^|\s)\.([\w-]+)/g);if(i){const f=i.map(h=>h.trim().slice(1));e.class=f.join(" ")}const s=r.match(/(?:^|\s)#([\w-]+)/);s&&(e.id=s[1]);const a=/([a-zA-Z][\w-]*)\s*=\s*(__QUOTED_\d+__)/g;Array.from(r.matchAll(a)).forEach(([,f,h])=>{var m;const g=parseInt(((m=h.match(/__QUOTED_(\d+)__/))==null?void 0:m[1])||"0",10),b=n[g];b&&(e[f]=b.slice(1,-1))});const c=r.replace(/(?:^|\s)\.([\w-]+)/g,"").replace(/(?:^|\s)#([\w-]+)/g,"").replace(/([a-zA-Z][\w-]*)\s*=\s*__QUOTED_\d+__/g,"").trim();return c&&c.split(/\s+/).filter(Boolean).forEach(h=>{h.match(/^[a-zA-Z][\w-]*$/)&&(e[h]=!0)}),e}function Nx(t){if(!t||Object.keys(t).length===0)return"";const e=[];return t.class&&String(t.class).split(/\s+/).filter(Boolean).forEach(r=>e.push(`.${r}`)),t.id&&e.push(`#${t.id}`),Object.entries(t).forEach(([n,r])=>{n==="class"||n==="id"||(r===!0?e.push(n):r!==!1&&r!=null&&e.push(`${n}="${String(r)}"`))}),e.join(" ")}function oY(t){const{nodeName:e,name:n,parseAttributes:r=Rx,serializeAttributes:i=Nx,defaultAttributes:s={},requiredAttributes:a=[],allowedAttributes:u}=t,c=n||e,f=h=>{if(!u)return h;const m={};return u.forEach(g=>{g in h&&(m[g]=h[g])}),m};return{parseMarkdown:(h,m)=>{const g={...s,...h.attributes};return m.createNode(e,g,[])},markdownTokenizer:{name:e,level:"block",start(h){var m;const g=new RegExp(`^:::${c}(?:\\s|$)`,"m"),b=(m=h.match(g))==null?void 0:m.index;return b!==void 0?b:-1},tokenize(h,m,g){const b=new RegExp(`^:::${c}(?:\\s+\\{([^}]*)\\})?\\s*:::(?:\\n|$)`),x=h.match(b);if(!x)return;const k=x[1]||"",E=r(k);if(!a.find(T=>!(T in E)))return{type:e,raw:x[0],attributes:E}}},renderMarkdown:h=>{const m=f(h.attrs||{}),g=i(m),b=g?` {${g}}`:"";return`:::${c}${b} :::`}}}function aY(t){const{nodeName:e,name:n,getContent:r,parseAttributes:i=Rx,serializeAttributes:s=Nx,defaultAttributes:a={},content:u="block",allowedAttributes:c}=t,f=n||e,h=m=>{if(!c)return m;const g={};return c.forEach(b=>{b in m&&(g[b]=m[b])}),g};return{parseMarkdown:(m,g)=>{let b;if(r){const k=r(m);b=typeof k=="string"?[{type:"text",text:k}]:k}else u==="block"?b=g.parseChildren(m.tokens||[]):b=g.parseInline(m.tokens||[]);const x={...a,...m.attributes};return g.createNode(e,x,b)},markdownTokenizer:{name:e,level:"block",start(m){var g;const b=new RegExp(`^:::${f}`,"m"),x=(g=m.match(b))==null?void 0:g.index;return x!==void 0?x:-1},tokenize(m,g,b){var x;const k=new RegExp(`^:::${f}(?:\\s+\\{([^}]*)\\})?\\s*\\n`),E=m.match(k);if(!E)return;const[D,T=""]=E,$=i(T);let A=1;const B=D.length;let P="";const M=/^:::([\w-]*)(\s.*)?/gm,N=m.slice(B);for(M.lastIndex=0;;){const j=M.exec(N);if(j===null)break;const G=j.index,W=j[1];if(!((x=j[2])!=null&&x.endsWith(":::"))){if(W)A+=1;else if(A-=1,A===0){const U=N.slice(0,G);P=U.trim();const ne=m.slice(0,B+G+j[0].length);let F=[];if(P)if(u==="block")for(F=b.blockTokens(U),F.forEach(te=>{te.text&&(!te.tokens||te.tokens.length===0)&&(te.tokens=b.inlineTokens(te.text))});F.length>0;){const te=F[F.length-1];if(te.type==="paragraph"&&(!te.text||te.text.trim()===""))F.pop();else break}else F=b.inlineTokens(P);return{type:e,raw:ne,attributes:$,content:P,tokens:F}}}}}},renderMarkdown:(m,g)=>{const b=h(m.attrs||{}),x=s(b),k=x?` {${x}}`:"",E=g.renderChildren(m.content||[],`
33
+
34
+ `);return`:::${f}${k}
35
+
36
+ ${E}
37
+
38
+ :::`}}}function lY(t){if(!t.trim())return{};const e={},n=/(\w+)=(?:"([^"]*)"|'([^']*)')/g;let r=n.exec(t);for(;r!==null;){const[,i,s,a]=r;e[i]=s||a,r=n.exec(t)}return e}function uY(t){return Object.entries(t).filter(([,e])=>e!=null).map(([e,n])=>`${e}="${n}"`).join(" ")}function cY(t){const{nodeName:e,name:n,getContent:r,parseAttributes:i=lY,serializeAttributes:s=uY,defaultAttributes:a={},selfClosing:u=!1,allowedAttributes:c}=t,f=n||e,h=g=>{if(!c)return g;const b={};return c.forEach(x=>{const k=typeof x=="string"?x:x.name,E=typeof x=="string"?void 0:x.skipIfDefault;if(k in g){const D=g[k];if(E!==void 0&&D===E)return;b[k]=D}}),b},m=f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");return{parseMarkdown:(g,b)=>{const x={...a,...g.attributes};if(u)return b.createNode(e,x);const k=r?r(g):g.content||"";return k?b.createNode(e,x,[b.createTextNode(k)]):b.createNode(e,x,[])},markdownTokenizer:{name:e,level:"inline",start(g){const b=u?new RegExp(`\\[${m}\\s*[^\\]]*\\]`):new RegExp(`\\[${m}\\s*[^\\]]*\\][\\s\\S]*?\\[\\/${m}\\]`),x=g.match(b),k=x?.index;return k!==void 0?k:-1},tokenize(g,b,x){const k=u?new RegExp(`^\\[${m}\\s*([^\\]]*)\\]`):new RegExp(`^\\[${m}\\s*([^\\]]*)\\]([\\s\\S]*?)\\[\\/${m}\\]`),E=g.match(k);if(!E)return;let D="",T="";if(u){const[,A]=E;T=A}else{const[,A,B]=E;T=A,D=B||""}const $=i(T.trim());return{type:e,raw:E[0],content:D.trim(),attributes:$}}},renderMarkdown:g=>{let b="";r?b=r(g):g.content&&g.content.length>0&&(b=g.content.filter(D=>D.type==="text").map(D=>D.text).join(""));const x=h(g.attrs||{}),k=s(x),E=k?` ${k}`:"";return u?`[${f}${E}]`:`[${f}${E}]${b}[/${f}]`}}}function _4(t,e,n){var r,i,s,a;const u=t.split(`
39
+ `),c=[];let f="",h=0;const m=e.baseIndentSize||2;for(;h<u.length;){const g=u[h],b=g.match(e.itemPattern);if(!b){if(c.length>0)break;if(g.trim()===""){h+=1,f=`${f}${g}
40
+ `;continue}else return}const x=e.extractItemData(b),{indentLevel:k,mainContent:E}=x;f=`${f}${g}
41
+ `;const D=[E];for(h+=1;h<u.length;){const B=u[h];if(B.trim()===""){const M=u.slice(h+1).findIndex(G=>G.trim()!=="");if(M===-1)break;if((((i=(r=u[h+1+M].match(/^(\s*)/))==null?void 0:r[1])==null?void 0:i.length)||0)>k){D.push(B),f=`${f}${B}
42
+ `,h+=1;continue}else break}if((((a=(s=B.match(/^(\s*)/))==null?void 0:s[1])==null?void 0:a.length)||0)>k)D.push(B),f=`${f}${B}
43
+ `,h+=1;else break}let T;const $=D.slice(1);if($.length>0){const B=$.map(P=>P.slice(k+m)).join(`
44
+ `);B.trim()&&(e.customNestedParser?T=e.customNestedParser(B):T=n.blockTokens(B))}const A=e.createToken(x,T);c.push(A)}if(c.length!==0)return{items:c,raw:f}}function Px(t,e,n,r){if(!t||!Array.isArray(t.content))return"";const i=typeof n=="function"?n(r):n,[s,...a]=t.content,u=e.renderChildren([s]);let c=`${i}${u}`;return a&&a.length>0&&a.forEach((f,h)=>{var m,g;const b=(g=(m=e.renderChild)==null?void 0:m.call(e,f,h+1))!=null?g:e.renderChildren([f]);if(b!=null){const x=b.split(`
45
+ `).map(k=>k?e.indent(k):e.indent("")).join(`
46
+ `);c+=f.type==="paragraph"?`
47
+
48
+ ${x}`:`
49
+ ${x}`}}),c}function TD(t){return typeof t.type=="string"?t.type:t.type.name}function dY(t,e){if(t.length!==e.length)return!1;const n=Array.from({length:e.length},()=>!1);return t.every(r=>{const i=TD(r),s=e.findIndex((a,u)=>!n[u]&&i===TD(a)&&Fl(r.attrs,a.attrs));return s===-1?!1:(n[s]=!0,!0)})}function X7(t,e){const n={...t};return mh(t)&&mh(e)&&Object.keys(e).forEach(r=>{mh(e[r])&&mh(t[r])?n[r]=X7(t[r],e[r]):n[r]=e[r]}),n}function fY(t,e,n={}){const{state:r}=e,{doc:i,tr:s}=r,a=t;i.descendants((u,c)=>{const f=s.mapping.map(c),h=s.mapping.map(c)+u.nodeSize;let m=null;if(u.marks.forEach(b=>{if(b!==a)return!1;m=b}),!m)return;let g=!1;if(Object.keys(n).forEach(b=>{n[b]!==m.attrs[b]&&(g=!0)}),g){const b=t.type.create({...t.attrs,...n});s.removeMark(f,h,t.type),s.addMark(f,h,b)}}),s.docChanged&&e.view.dispatch(s)}var Td=class{constructor(t){var e;this.find=t.find,this.handler=t.handler,this.undoable=(e=t.undoable)!=null?e:!0}},hY=(t,e)=>{if(wx(e))return e.exec(t);const n=e(t);if(!n)return null;const r=[n.text];return r.index=n.index,r.input=t,r.data=n.data,n.replaceWith&&(n.text.includes(n.replaceWith)||console.warn('[tiptap warn]: "inputRuleMatch.replaceWith" must be part of "inputRuleMatch.text".'),r.push(n.replaceWith)),r};function gh(t){var e;const{editor:n,from:r,to:i,text:s,rules:a,plugin:u}=t,{view:c}=n;if(c.composing)return!1;const f=c.state.doc.resolve(r);if(f.parent.type.spec.code||(e=f.nodeBefore||f.nodeAfter)!=null&&e.marks.find(g=>g.type.spec.code))return!1;let h=!1;const m=SQ(f)+s;return a.forEach(g=>{if(h)return;const b=hY(m,g.find);if(!b)return;const x=b[0].length-s.length;if(x>0){const P=f.parentOffset-x;if(P<0||f.parent.textBetween(P,f.parentOffset)!==b[0].slice(0,x))return}const k=c.state.tr,E=Lm({state:c.state,transaction:k}),D={from:r-(b[0].length-s.length),to:i},{commands:T,chain:$,can:A}=new zm({editor:n,state:E});g.handler({state:E,range:D,match:b,commands:T,chain:$,can:A})===null||!k.steps.length||(g.undoable&&k.setMeta(u,{transform:k,from:r,to:i,text:s}),c.dispatch(k),h=!0)}),h}function pY(t){const{editor:e,rules:n}=t,r=new mt({state:{init(){return null},apply(i,s,a){const u=i.getMeta(r);if(u)return u;const c=i.getMeta("applyInputRules");return c&&setTimeout(()=>{let{text:h}=c;typeof h=="string"?h=h:h=Tx(ae.from(h),a.schema);const{from:m}=c,g=m+h.length;gh({editor:e,from:m,to:g,text:h,rules:n,plugin:r})}),i.selectionSet||i.docChanged?null:s}},props:{handleTextInput(i,s,a,u){return gh({editor:e,from:s,to:a,text:u,rules:n,plugin:r})},handleDOMEvents:{compositionend:i=>(setTimeout(()=>{const{$cursor:s}=i.state.selection;s&&gh({editor:e,from:s.pos,to:s.pos,text:"",rules:n,plugin:r})}),!1)},handleKeyDown(i,s){if(s.key!=="Enter")return!1;const{$cursor:a}=i.state.selection;return a?gh({editor:e,from:a.pos,to:a.pos,text:`
50
+ `,rules:n,plugin:r}):!1}},isInputRules:!0});return r}var Ox=class{constructor(t={}){this.type="extendable",this.parent=null,this.child=null,this.name="",this.config={name:this.name},this.config={...this.config,...t},this.name=this.config.name}get options(){return{...Qe(ye(this,"addOptions",{name:this.name}))}}get storage(){return{...Qe(ye(this,"addStorage",{name:this.name,options:this.options}))}}configure(t={}){const e=this.extend({...this.config,addOptions:()=>X7(this.options,t)});return e.name=this.name,e.parent=this.parent,this.child=null,e}extend(t={}){const e=new this.constructor({...this.config,...t});return e.parent=this,this.child=e,e.name="name"in t?t.name:e.parent.name,e}},Ea=class J7 extends Ox{constructor(){super(...arguments),this.type="mark"}static create(e={}){const n=typeof e=="function"?e():e;return new J7(n)}static handleExit({editor:e,mark:n}){const{tr:r}=e.state,i=e.state.selection.$from;if(i.pos===i.end()){const a=i.marks();if(!!!a.find(f=>f?.type.name===n.name))return!1;const c=a.find(f=>f?.type.name===n.name);return c&&r.removeStoredMark(c),r.insertText(" ",i.pos),e.view.dispatch(r),!0}return!1}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},Z7=class{constructor(t){this.find=t.find,this.handler=t.handler}},mY=(t,e,n)=>{if(wx(e))return[...t.matchAll(e)];const r=e(t,n);return r?r.map(i=>{const s=[i.text];return s.index=i.index,s.input=t,s.data=i.data,i.replaceWith&&(i.text.includes(i.replaceWith)||console.warn('[tiptap warn]: "pasteRuleMatch.replaceWith" must be part of "pasteRuleMatch.text".'),s.push(i.replaceWith)),s}):[]};function gY(t){const{editor:e,state:n,from:r,to:i,rule:s,pasteEvent:a,dropEvent:u}=t,{commands:c,chain:f,can:h}=new zm({editor:e,state:n}),m=[];return n.doc.nodesBetween(r,i,(b,x)=>{var k,E,D,T,$;if((E=(k=b.type)==null?void 0:k.spec)!=null&&E.code||!(b.isText||b.isTextblock||b.isInline))return;const A=($=(T=(D=b.content)==null?void 0:D.size)!=null?T:b.nodeSize)!=null?$:0,B=Math.max(r,x),P=Math.min(i,x+A);if(B>=P)return;const M=b.isText?b.text||"":b.textBetween(B-x,P-x,void 0,"");mY(M,s.find,a).forEach(j=>{if(j.index===void 0)return;const G=B+j.index+1,W=G+j[0].length,U={from:n.tr.mapping.map(G),to:n.tr.mapping.map(W)},ne=s.handler({state:n,range:U,match:j,commands:c,chain:f,can:h,pasteEvent:a,dropEvent:u});m.push(ne)})}),m.every(b=>b!==null)}var bh=null,bY=t=>{var e;const n=new ClipboardEvent("paste",{clipboardData:new DataTransfer});return(e=n.clipboardData)==null||e.setData("text/html",t),n};function yY(t){const{editor:e,rules:n}=t;let r=null,i=!1,s=!1,a=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,u;try{u=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{u=null}const c=({state:h,from:m,to:g,rule:b,pasteEvt:x})=>{const k=h.tr,E=Lm({state:h,transaction:k});if(!(!gY({editor:e,state:E,from:Math.max(m-1,0),to:g.b-1,rule:b,pasteEvent:x,dropEvent:u})||!k.steps.length)){try{u=typeof DragEvent<"u"?new DragEvent("drop"):null}catch{u=null}return a=typeof ClipboardEvent<"u"?new ClipboardEvent("paste"):null,k}};return n.map(h=>new mt({view(m){const g=x=>{var k;r=(k=m.dom.parentElement)!=null&&k.contains(x.target)?m.dom.parentElement:null,r&&(bh=e)},b=()=>{bh&&(bh=null)};return window.addEventListener("dragstart",g),window.addEventListener("dragend",b),{destroy(){window.removeEventListener("dragstart",g),window.removeEventListener("dragend",b)}}},props:{handleDOMEvents:{drop:(m,g)=>{if(s=r===m.dom.parentElement,u=g,!s){const b=bh;b?.isEditable&&setTimeout(()=>{const x=b.state.selection;x&&b.commands.deleteRange({from:x.from,to:x.to})},10)}return!1},paste:(m,g)=>{var b;const x=(b=g.clipboardData)==null?void 0:b.getData("text/html");return a=g,i=!!x?.includes("data-pm-slice"),!1}}},appendTransaction:(m,g,b)=>{const x=m[0],k=x.getMeta("uiEvent")==="paste"&&!i,E=x.getMeta("uiEvent")==="drop"&&!s,D=x.getMeta("applyPasteRules"),T=!!D;if(!k&&!E&&!T)return;if(T){let{text:B}=D;typeof B=="string"?B=B:B=Tx(ae.from(B),b.schema);const{from:P}=D,M=P+B.length,N=bY(B);return c({rule:h,state:b,from:P,to:{b:M},pasteEvt:N})}const $=g.doc.content.findDiffStart(b.doc.content),A=g.doc.content.findDiffEnd(b.doc.content);if(!(!rY($)||!A||$===A.b))return c({rule:h,state:b,from:$,to:A,pasteEvt:a})}}))}var Km=class{constructor(t,e){this.splittableMarks=[],this.nonClearableMarks=[],this.editor=e,this.baseExtensions=t,this.extensions=Ax(t),this.schema=_7(this.extensions,e),this.setupExtensions()}get commands(){return this.extensions.reduce((t,e)=>{const n={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:ec(e.name,this.schema)},r=ye(e,"addCommands",n);return r?{...t,...r()}:t},{})}get plugins(){const{editor:t}=this;return Tl([...this.extensions].reverse()).flatMap(r=>{const i={name:r.name,options:r.options,storage:this.editor.extensionStorage[r.name],editor:t,type:ec(r.name,this.schema)},s=[],a=ye(r,"addKeyboardShortcuts",i);let u={};if(r.type==="mark"&&ye(r,"exitable",i)&&(u.ArrowRight=()=>Ea.handleExit({editor:t,mark:r})),a){const g=Object.fromEntries(Object.entries(a()).map(([b,x])=>[b,()=>x({editor:t})]));u={...u,...g}}const c=xW(u);s.push(c);const f=ye(r,"addInputRules",i);if(DD(r,t.options.enableInputRules)&&f){const g=f();if(g&&g.length){const b=pY({editor:t,rules:g}),x=Array.isArray(b)?b:[b];s.push(...x)}}const h=ye(r,"addPasteRules",i);if(DD(r,t.options.enablePasteRules)&&h){const g=h();if(g&&g.length){const b=yY({editor:t,rules:g});s.push(...b)}}const m=ye(r,"addProseMirrorPlugins",i);if(m){const g=m();s.push(...g)}return s})}get attributes(){return K7(this.extensions)}get nodeViews(){const{editor:t}=this,{nodeExtensions:e}=jl(this.extensions);return Object.fromEntries(e.filter(n=>!!ye(n,"addNodeView")).map(n=>{const r=this.attributes.filter(c=>c.type===n.name),i={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Lt(n.name,this.schema)},s=ye(n,"addNodeView",i);if(!s)return[];const a=s();if(!a)return[];const u=(c,f,h,m,g)=>{const b=sd(c,r);return a({node:c,view:f,getPos:h,decorations:m,innerDecorations:g,editor:t,extension:n,HTMLAttributes:b})};return[n.name,u]}))}dispatchTransaction(t){const{editor:e}=this;return Tl([...this.extensions].reverse()).reduceRight((r,i)=>{const s={name:i.name,options:i.options,storage:this.editor.extensionStorage[i.name],editor:e,type:ec(i.name,this.schema)},a=ye(i,"dispatchTransaction",s);return a?u=>{a.call(s,{transaction:u,next:r})}:r},t)}transformPastedHTML(t){const{editor:e}=this;return Tl([...this.extensions]).reduce((r,i)=>{const s={name:i.name,options:i.options,storage:this.editor.extensionStorage[i.name],editor:e,type:ec(i.name,this.schema)},a=ye(i,"transformPastedHTML",s);return a?(u,c)=>{const f=r(u,c);return a.call(s,f)}:r},t||(r=>r))}get markViews(){const{editor:t}=this,{markExtensions:e}=jl(this.extensions);return Object.fromEntries(e.filter(n=>!!ye(n,"addMarkView")).map(n=>{const r=this.attributes.filter(u=>u.type===n.name),i={name:n.name,options:n.options,storage:this.editor.extensionStorage[n.name],editor:t,type:Hi(n.name,this.schema)},s=ye(n,"addMarkView",i);if(!s)return[];const a=(u,c,f)=>{const h=sd(u,r);return s()({mark:u,view:c,inline:f,editor:t,extension:n,HTMLAttributes:h,updateAttributes:m=>{fY(u,t,m)}})};return[n.name,a]}))}destroy(){this.extensions.forEach(t=>{let e=t;for(;e.parent;){const n=e.parent;n.child===e&&(n.child=null),e=n}}),this.extensions=[],this.baseExtensions=[],this.schema=null,this.editor=null}setupExtensions(){const t=this.extensions;this.editor.extensionStorage=Object.fromEntries(t.map(e=>[e.name,e.storage])),t.forEach(e=>{var n,r;const i={name:e.name,options:e.options,storage:this.editor.extensionStorage[e.name],editor:this.editor,type:ec(e.name,this.schema)};e.type==="mark"&&(((n=Qe(ye(e,"keepOnSplit",i)))==null||n)&&this.splittableMarks.push(e.name),(r=Qe(ye(e,"clearable",i)))==null||r||this.nonClearableMarks.push(e.name));const s=ye(e,"onBeforeCreate",i),a=ye(e,"onCreate",i),u=ye(e,"onUpdate",i),c=ye(e,"onSelectionUpdate",i),f=ye(e,"onTransaction",i),h=ye(e,"onFocus",i),m=ye(e,"onBlur",i),g=ye(e,"onDestroy",i);s&&this.editor.on("beforeCreate",s),a&&this.editor.on("create",a),u&&this.editor.on("update",u),c&&this.editor.on("selectionUpdate",c),f&&this.editor.on("transaction",f),h&&this.editor.on("focus",h),m&&this.editor.on("blur",m),g&&this.editor.on("destroy",g)})}};Km.resolve=Ax;Km.sort=Tl;Km.flatten=Fm;var xY={};Sx(xY,{ClipboardTextSerializer:()=>t8,Commands:()=>n8,Delete:()=>r8,Drop:()=>i8,Editable:()=>s8,FocusEvents:()=>a8,Keymap:()=>l8,Paste:()=>u8,Tabindex:()=>c8,TextDirection:()=>d8,focusEventsPluginKey:()=>o8});var gt=class e8 extends Ox{constructor(){super(...arguments),this.type="extension"}static create(e={}){const n=typeof e=="function"?e():e;return new e8(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}},t8=gt.create({name:"clipboardTextSerializer",addOptions(){return{blockSeparator:void 0}},addProseMirrorPlugins(){return[new mt({key:new Kt("clipboardTextSerializer"),props:{clipboardTextSerializer:()=>{const{editor:t}=this,{state:e,schema:n}=t,{doc:r,selection:i}=e,s=U7(n),{blockSeparator:a}=this.options,u={...a!==void 0?{blockSeparator:a}:{},textSerializers:s};return[...i.ranges].sort((f,h)=>f.$from.pos-h.$from.pos).map(({$from:f,$to:h})=>H7(r,{from:f.pos,to:h.pos},u)).join(a??`
51
+
52
+ `)}}})]}}),n8=gt.create({name:"commands",addCommands(){return{...Dr}}}),r8=gt.create({name:"delete",onUpdate({transaction:t,appendedTransactions:e}){var n,r,i;const s=()=>{var a,u,c,f;if((f=(c=(u=(a=this.editor.options.coreExtensionOptions)==null?void 0:a.delete)==null?void 0:u.filterTransaction)==null?void 0:c.call(u,t))!=null?f:t.getMeta("y-sync$"))return;const h=j7(t.before,[t,...e]);Bx(h).forEach(b=>{h.mapping.mapResult(b.oldRange.from).deletedAfter&&h.mapping.mapResult(b.oldRange.to).deletedBefore&&h.before.nodesBetween(b.oldRange.from,b.oldRange.to,(x,k)=>{const E=k+x.nodeSize-2,D=b.oldRange.from<=k&&E<=b.oldRange.to;this.editor.emit("delete",{type:"node",node:x,from:k,to:E,newFrom:h.mapping.map(k),newTo:h.mapping.map(E),deletedRange:b.oldRange,newRange:b.newRange,partial:!D,editor:this.editor,transaction:t,combinedTransform:h})})});const g=h.mapping;h.steps.forEach((b,x)=>{var k,E;if(b instanceof Br){const D=g.slice(x).map(b.from,-1),T=g.slice(x).map(b.to),$=g.invert().map(D,-1),A=g.invert().map(T),B=D>0?(k=h.doc.nodeAt(D-1))==null?void 0:k.marks.some(M=>M.eq(b.mark)):!1,P=(E=h.doc.nodeAt(T))==null?void 0:E.marks.some(M=>M.eq(b.mark));this.editor.emit("delete",{type:"mark",mark:b.mark,from:b.from,to:b.to,deletedRange:{from:$,to:A},newRange:{from:D,to:T},partial:!!(P||B),editor:this.editor,transaction:t,combinedTransform:h})}})};(i=(r=(n=this.editor.options.coreExtensionOptions)==null?void 0:n.delete)==null?void 0:r.async)==null||i?setTimeout(s,0):s()}}),i8=gt.create({name:"drop",addProseMirrorPlugins(){return[new mt({key:new Kt("tiptapDrop"),props:{handleDrop:(t,e,n,r)=>{this.editor.emit("drop",{editor:this.editor,event:e,slice:n,moved:r})}}})]}}),s8=gt.create({name:"editable",addProseMirrorPlugins(){return[new mt({key:new Kt("editable"),props:{editable:()=>this.editor.options.editable}})]}}),o8=new Kt("focusEvents"),a8=gt.create({name:"focusEvents",addProseMirrorPlugins(){const{editor:t}=this;return[new mt({key:o8,props:{handleDOMEvents:{focus:(e,n)=>{t.isFocused=!0;const r=t.state.tr.setMeta("focus",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1},blur:(e,n)=>{t.isFocused=!1;const r=t.state.tr.setMeta("blur",{event:n}).setMeta("addToHistory",!1);return e.dispatch(r),!1}}}})]}}),l8=gt.create({name:"keymap",addKeyboardShortcuts(){const t=()=>this.editor.commands.first(({commands:a})=>[()=>a.undoInputRule(),()=>a.command(({tr:u})=>{const{selection:c,doc:f}=u,{empty:h,$anchor:m}=c,{pos:g,parent:b}=m,x=m.parent.isTextblock&&g>0?u.doc.resolve(g-1):m,k=x.parent.type.spec.isolating,E=m.pos-m.parentOffset,D=k&&x.parent.childCount===1?E===m.pos:Me.atStart(f).from===g;return!h||!b.type.isTextblock||b.textContent.length||!D||D&&m.parent.type.name==="paragraph"?!1:a.clearNodes()}),()=>a.deleteSelection(),()=>a.joinBackward(),()=>a.selectNodeBackward()]),e=()=>this.editor.commands.first(({commands:a})=>[()=>a.deleteSelection(),()=>a.deleteCurrentNode(),()=>a.joinForward(),()=>a.selectNodeForward()]),r={Enter:()=>this.editor.commands.first(({commands:a})=>[()=>a.newlineInCode(),()=>a.createParagraphNear(),()=>a.liftEmptyBlock(),()=>a.splitBlock()]),"Mod-Enter":()=>this.editor.commands.exitCode(),Backspace:t,"Mod-Backspace":t,"Shift-Backspace":t,Delete:e,"Mod-Delete":e,"Mod-a":()=>this.editor.commands.selectAll()},i={...r},s={...r,"Ctrl-h":t,"Alt-Backspace":t,"Ctrl-d":e,"Ctrl-Alt-Backspace":e,"Alt-Delete":e,"Alt-d":e,"Ctrl-a":()=>this.editor.commands.selectTextblockStart(),"Ctrl-e":()=>this.editor.commands.selectTextblockEnd()};return wp()||z7()?s:i},addProseMirrorPlugins(){return[new mt({key:new Kt("clearDocument"),appendTransaction:(t,e,n)=>{if(t.some(k=>k.getMeta("composition")))return;const r=t.some(k=>k.docChanged)&&!e.doc.eq(n.doc),i=t.some(k=>k.getMeta("preventClearDocument"));if(!r||i)return;const{empty:s,from:a,to:u}=e.selection,c=Me.atStart(e.doc).from,f=Me.atEnd(e.doc).to;if(s||!(a===c&&u===f)||!$d(n.doc))return;const g=n.tr,b=Lm({state:n,transaction:g}),{commands:x}=new zm({editor:this.editor,state:b});if(x.clearNodes(),!!g.steps.length)return g}})]}}),u8=gt.create({name:"paste",addProseMirrorPlugins(){return[new mt({key:new Kt("tiptapPaste"),props:{handlePaste:(t,e,n)=>{this.editor.emit("paste",{editor:this.editor,event:e,slice:n})}}})]}}),c8=gt.create({name:"tabindex",addOptions(){return{value:void 0}},addProseMirrorPlugins(){return[new mt({key:new Kt("tabindex"),props:{attributes:()=>{var t;return!this.editor.isEditable&&this.options.value===void 0?{}:{tabindex:(t=this.options.value)!=null?t:"0"}}}})]}}),d8=gt.create({name:"textDirection",addOptions(){return{direction:void 0}},addGlobalAttributes(){if(!this.options.direction)return[];const{nodeExtensions:t}=jl(this.extensions);return[{types:t.filter(e=>e.name!=="text").map(e=>e.name),attributes:{dir:{default:this.options.direction,parseHTML:e=>{const n=e.getAttribute("dir");return n&&(n==="ltr"||n==="rtl"||n==="auto")?n:this.options.direction},renderHTML:e=>e.dir?{dir:e.dir}:{}}}}]},addProseMirrorPlugins(){return[new mt({key:new Kt("textDirection"),props:{attributes:()=>{const t=this.options.direction;return t?{dir:t}:{}}}})]}}),vY=class pc{constructor(e,n,r=!1,i=null){this.currentNode=null,this.actualDepth=null,this.isBlock=r,this.resolvedPos=e,this.editor=n,this.currentNode=i}get name(){return this.node.type.name}get node(){return this.currentNode||this.resolvedPos.node()}get element(){return this.editor.view.domAtPos(this.pos).node}get depth(){var e;return(e=this.actualDepth)!=null?e:this.resolvedPos.depth}get pos(){return this.resolvedPos.pos}get content(){return this.node.content}set content(e){let n=this.from,r=this.to;if(this.isBlock){if(this.content.size===0){console.error(`You can’t set content on a block node. Tried to set content on ${this.name} at ${this.pos}`);return}n=this.from+1,r=this.to-1}this.editor.commands.insertContentAt({from:n,to:r},e)}get attributes(){return this.node.attrs}get textContent(){return this.node.textContent}get size(){return this.node.nodeSize}get from(){return this.isBlock?this.pos:this.resolvedPos.start(this.resolvedPos.depth)}get range(){return{from:this.from,to:this.to}}get to(){return this.isBlock?this.pos+this.size:this.resolvedPos.end(this.resolvedPos.depth)+(this.node.isText?0:1)}get parent(){if(this.depth===0)return null;const e=this.resolvedPos.start(this.resolvedPos.depth-1),n=this.resolvedPos.doc.resolve(e);return new pc(n,this.editor)}get before(){let e=this.resolvedPos.doc.resolve(this.from-(this.isBlock?1:2));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.from-3)),new pc(e,this.editor)}get after(){let e=this.resolvedPos.doc.resolve(this.to+(this.isBlock?2:1));return e.depth!==this.depth&&(e=this.resolvedPos.doc.resolve(this.to+3)),new pc(e,this.editor)}get children(){const e=[];return this.node.content.forEach((n,r)=>{const i=n.isBlock&&!n.isTextblock,s=n.isAtom&&!n.isText,a=n.isInline,u=this.pos+r+(s?0:1);if(u<0||u>this.resolvedPos.doc.nodeSize-2)return;const c=this.resolvedPos.doc.resolve(u);if(!i&&!a&&c.depth<=this.depth)return;const f=new pc(c,this.editor,i,i||a?n:null);i&&(f.actualDepth=this.depth+1),e.push(f)}),e}get firstChild(){return this.children[0]||null}get lastChild(){const e=this.children;return e[e.length-1]||null}closest(e,n={}){let r=null,i=this.parent;for(;i&&!r;){if(i.node.type.name===e)if(Object.keys(n).length>0){const s=i.node.attrs,a=Object.keys(n);for(let u=0;u<a.length;u+=1){const c=a[u];if(s[c]!==n[c])break}}else r=i;i=i.parent}return r}querySelector(e,n={}){return this.querySelectorAll(e,n,!0)[0]||null}querySelectorAll(e,n={},r=!1){let i=[];if(!this.children||this.children.length===0)return i;const s=Object.keys(n);return this.children.forEach(a=>{r&&i.length>0||(a.node.type.name===e&&s.every(c=>n[c]===a.node.attrs[c])&&i.push(a),!(r&&i.length>0)&&(i=i.concat(a.querySelectorAll(e,n,r))))}),i}setAttribute(e){const{tr:n}=this.editor.state;n.setNodeMarkup(this.from,void 0,{...this.node.attrs,...e}),this.editor.view.dispatch(n)}},kY=`.ProseMirror {
53
+ position: relative;
54
+ }
55
+
56
+ .ProseMirror {
57
+ word-wrap: break-word;
58
+ white-space: pre-wrap;
59
+ white-space: break-spaces;
60
+ -webkit-font-variant-ligatures: none;
61
+ font-variant-ligatures: none;
62
+ font-feature-settings: "liga" 0; /* the above doesn't seem to work in Edge */
63
+ }
64
+
65
+ .ProseMirror [contenteditable="false"] {
66
+ white-space: normal;
67
+ }
68
+
69
+ .ProseMirror [contenteditable="false"] [contenteditable="true"] {
70
+ white-space: pre-wrap;
71
+ }
72
+
73
+ .ProseMirror pre {
74
+ white-space: pre-wrap;
75
+ }
76
+
77
+ img.ProseMirror-separator {
78
+ display: inline !important;
79
+ border: none !important;
80
+ margin: 0 !important;
81
+ width: 0 !important;
82
+ height: 0 !important;
83
+ }
84
+
85
+ .ProseMirror-gapcursor {
86
+ display: none;
87
+ pointer-events: none;
88
+ position: absolute;
89
+ margin: 0;
90
+ }
91
+
92
+ .ProseMirror-gapcursor:after {
93
+ content: "";
94
+ display: block;
95
+ position: absolute;
96
+ top: -2px;
97
+ width: 20px;
98
+ border-top: 1px solid black;
99
+ animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;
100
+ }
101
+
102
+ @keyframes ProseMirror-cursor-blink {
103
+ to {
104
+ visibility: hidden;
105
+ }
106
+ }
107
+
108
+ .ProseMirror-hideselection *::selection {
109
+ background: transparent;
110
+ }
111
+
112
+ .ProseMirror-hideselection *::-moz-selection {
113
+ background: transparent;
114
+ }
115
+
116
+ .ProseMirror-hideselection * {
117
+ caret-color: transparent;
118
+ }
119
+
120
+ .ProseMirror-focused .ProseMirror-gapcursor {
121
+ display: block;
122
+ }`,CY=class extends ZQ{constructor(t={}){super(),this.css=null,this.className="tiptap",this.editorView=null,this.isFocused=!1,this.destroyed=!1,this.isInitialized=!1,this.extensionStorage={},this.instanceId=Math.random().toString(36).slice(2,9),this.options={element:typeof document<"u"?document.createElement("div"):null,content:"",injectCSS:!0,injectNonce:void 0,extensions:[],autofocus:!1,editable:!0,textDirection:void 0,editorProps:{},parseOptions:{},coreExtensionOptions:{},enableInputRules:!0,enablePasteRules:!0,enableCoreExtensions:!0,enableContentCheck:!1,emitContentError:!1,onBeforeCreate:()=>null,onCreate:()=>null,onMount:()=>null,onUnmount:()=>null,onUpdate:()=>null,onSelectionUpdate:()=>null,onTransaction:()=>null,onFocus:()=>null,onBlur:()=>null,onDestroy:()=>null,onContentError:({error:n})=>{throw n},onPaste:()=>null,onDrop:()=>null,onDelete:()=>null,enableExtensionDispatchTransaction:!0},this.isCapturingTransaction=!1,this.capturedTransaction=null,this.utils={getUpdatedPosition:AQ,createMappablePosition:BQ},this.setOptions(t),this.createExtensionManager(),this.createCommandManager(),this.createSchema(),this.on("beforeCreate",this.options.onBeforeCreate),this.emit("beforeCreate",{editor:this}),this.on("mount",this.options.onMount),this.on("unmount",this.options.onUnmount),this.on("contentError",this.options.onContentError),this.on("create",this.options.onCreate),this.on("update",this.options.onUpdate),this.on("selectionUpdate",this.options.onSelectionUpdate),this.on("transaction",this.options.onTransaction),this.on("focus",this.options.onFocus),this.on("blur",this.options.onBlur),this.on("destroy",this.options.onDestroy),this.on("drop",({event:n,slice:r,moved:i})=>this.options.onDrop(n,r,i)),this.on("paste",({event:n,slice:r})=>this.options.onPaste(n,r)),this.on("delete",this.options.onDelete);const e=this.createDoc();if(!this.editorState){const n=j4(e,this.options.autofocus);this.editorState=Fo.create({doc:e,schema:this.schema,selection:n||void 0})}this.options.element&&this.mount(this.options.element)}mount(t){if(typeof document>"u")throw new Error("[tiptap error]: The editor cannot be mounted because there is no 'document' defined in this environment.");this.createView(t),this.emit("mount",{editor:this}),this.css&&!document.head.contains(this.css)&&document.head.appendChild(this.css),window.setTimeout(()=>{this.isDestroyed||(this.options.autofocus!==!1&&this.options.autofocus!==null&&this.commands.focus(this.options.autofocus),this.emit("create",{editor:this}),this.isInitialized=!0)},0)}unmount(){if(this.editorView){const t=this.editorView.dom;t?.editor&&delete t.editor,this.editorView.destroy()}if(this.editorView=null,this.isInitialized=!1,this.css&&!document.querySelectorAll(`.${this.className}`).length)try{typeof this.css.remove=="function"?this.css.remove():this.css.parentNode&&this.css.parentNode.removeChild(this.css)}catch(t){console.warn("Failed to remove CSS element:",t)}this.css=null,this.emit("unmount",{editor:this})}get storage(){return this.extensionStorage}get commands(){return this.commandManager.commands}chain(){return this.commandManager.chain()}can(){return this.commandManager.can()}injectCSS(){this.options.injectCSS&&typeof document<"u"&&(this.css=tY(kY,this.options.injectNonce))}setOptions(t={}){this.options={...this.options,...t},!(!this.editorView||!this.state||this.isDestroyed)&&(this.options.editorProps&&this.view.setProps(this.options.editorProps),this.view.updateState(this.state))}setEditable(t,e=!0){this.setOptions({editable:t}),e&&this.emit("update",{editor:this,transaction:this.state.tr,appendedTransactions:[]})}get isEditable(){return this.options.editable&&this.view&&this.view.editable}get view(){return this.editorView?this.editorView:new Proxy({state:this.editorState,updateState:t=>{this.editorState=t},dispatch:t=>{this.dispatchTransaction(t)},composing:!1,dragging:null,editable:!0,isDestroyed:!1},{get:(t,e)=>{if(this.editorView)return this.editorView[e];if(e==="state")return this.editorState;if(e in t)return Reflect.get(t,e);throw new Error(`[tiptap error]: The editor view is not available. Cannot access view['${e}']. The editor may not be mounted yet.`)}})}get state(){return this.editorView&&(this.editorState=this.view.state),this.editorState}registerPlugin(t,e){const n=F7(e)?e(t,[...this.state.plugins]):[...this.state.plugins,t],r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}unregisterPlugin(t){if(this.isDestroyed)return;const e=this.state.plugins;let n=e;if([].concat(t).forEach(i=>{const s=typeof i=="string"?`${i}$`:i.key;n=n.filter(a=>!a.key.startsWith(s))}),e.length===n.length)return;const r=this.state.reconfigure({plugins:n});return this.view.updateState(r),r}createExtensionManager(){var t,e,n,r;const s=[...this.options.enableCoreExtensions?[s8,t8.configure({blockSeparator:(e=(t=this.options.coreExtensionOptions)==null?void 0:t.clipboardTextSerializer)==null?void 0:e.blockSeparator}),n8,a8,l8,c8.configure({value:(r=(n=this.options.coreExtensionOptions)==null?void 0:n.tabindex)==null?void 0:r.value}),i8,u8,r8,d8.configure({direction:this.options.textDirection})].filter(a=>typeof this.options.enableCoreExtensions=="object"?this.options.enableCoreExtensions[a.name]!==!1:!0):[],...this.options.extensions].filter(a=>["extension","node","mark"].includes(a?.type));this.extensionManager=new Km(s,this)}createCommandManager(){this.commandManager=new zm({editor:this})}createSchema(){this.schema=this.extensionManager.schema}createDoc(){let t;try{t=F4(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:this.options.enableContentCheck})}catch(e){if(!(e instanceof Error)||!["[tiptap error]: Invalid JSON content","[tiptap error]: Invalid HTML content"].includes(e.message))throw e;const n=F4(this.options.content,this.schema,this.options.parseOptions,{errorOnInvalidContent:!1});return this.editorState=Fo.create({doc:n,schema:this.schema,selection:j4(n,this.options.autofocus)||void 0}),this.emit("contentError",{editor:this,error:e,disableCollaboration:()=>{"collaboration"in this.storage&&typeof this.storage.collaboration=="object"&&this.storage.collaboration&&(this.storage.collaboration.isDisabled=!0),this.options.extensions=this.options.extensions.filter(r=>r.name!=="collaboration"),this.createExtensionManager()}}),this.editorState.doc}return t}createView(t){const{editorProps:e,enableExtensionDispatchTransaction:n}=this.options,r=e.dispatchTransaction||this.dispatchTransaction.bind(this),i=n?this.extensionManager.dispatchTransaction(r):r,s=e.transformPastedHTML,a=this.extensionManager.transformPastedHTML(s);this.editorView=new B7(t,{...e,attributes:{role:"textbox",...e?.attributes},dispatchTransaction:i,transformPastedHTML:a,state:this.editorState,markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews});const u=this.state.reconfigure({plugins:this.extensionManager.plugins});this.view.updateState(u),this.prependClass(),this.injectCSS();const c=this.view.dom;c.editor=this}createNodeViews(){this.view.isDestroyed||this.view.setProps({markViews:this.extensionManager.markViews,nodeViews:this.extensionManager.nodeViews})}prependClass(){this.view.dom.className=`${this.className} ${this.view.dom.className}`}captureTransaction(t){this.isCapturingTransaction=!0,t(),this.isCapturingTransaction=!1;const e=this.capturedTransaction;return this.capturedTransaction=null,e}dispatchTransaction(t){if(this.view.isDestroyed)return;if(this.isCapturingTransaction){if(!this.capturedTransaction){this.capturedTransaction=t;return}t.steps.forEach(f=>{var h;return(h=this.capturedTransaction)==null?void 0:h.step(f)});return}const{state:e,transactions:n}=this.state.applyTransaction(t),r=!this.state.selection.eq(e.selection),i=n.includes(t),s=this.state;if(this.emit("beforeTransaction",{editor:this,transaction:t,nextState:e}),!i)return;this.view.updateState(e),this.emit("transaction",{editor:this,transaction:t,appendedTransactions:n.slice(1)}),r&&this.emit("selectionUpdate",{editor:this,transaction:t});const a=n.findLast(f=>f.getMeta("focus")||f.getMeta("blur")),u=a?.getMeta("focus"),c=a?.getMeta("blur");u&&this.emit("focus",{editor:this,event:u.event,transaction:a}),c&&this.emit("blur",{editor:this,event:c.event,transaction:a}),!(t.getMeta("preventUpdate")||!n.some(f=>f.docChanged)||s.doc.eq(e.doc))&&this.emit("update",{editor:this,transaction:t,appendedTransactions:n.slice(1)})}getAttributes(t){return q7(this.state,t)}isActive(t,e){const n=typeof t=="string"?t:null,r=typeof t=="string"?e:t;return wQ(this.state,n,r)}getJSON(){return this.state.doc.toJSON()}getHTML(){return Tx(this.state.doc.content,this.schema)}getText(t){const{blockSeparator:e=`
123
+
124
+ `,textSerializers:n={}}=t||{};return vQ(this.state.doc,{blockSeparator:e,textSerializers:{...U7(this.schema),...n}})}get isEmpty(){return $d(this.state.doc)}destroy(){this.destroyed||(this.destroyed=!0,this.emit("destroy"),this.unmount(),this.removeAllListeners(),this.extensionManager.destroy(),this.extensionManager=null,this.schema=null,this.commandManager=null,this.extensionStorage={})}get isDestroyed(){var t,e;return(e=(t=this.editorView)==null?void 0:t.isDestroyed)!=null?e:!0}$node(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelector(t,e))||null}$nodes(t,e){var n;return((n=this.$doc)==null?void 0:n.querySelectorAll(t,e))||null}$pos(t){const e=this.state.doc.resolve(t),n=t>0&&e.nodeAfter&&!e.nodeAfter.isText&&e.nodeAfter.isAtom?e.nodeAfter:null;return new vY(e,this,!1,n)}get $doc(){return this.$pos(0)}};function da(t){return new Td({find:t.find,handler:({state:e,range:n,match:r})=>{const i=Qe(t.getAttributes,void 0,r);if(i===!1||i===null)return null;const{tr:s}=e,a=r[r.length-1],u=r[0];if(a){const c=u.search(/\S/),f=n.from+u.indexOf(a),h=f+a.length;if(Mx(n.from,n.to,e.doc).filter(b=>b.mark.type.excluded.find(k=>k===t.type&&k!==b.mark.type)).filter(b=>b.to>f).length)return null;h<n.to&&s.delete(h,n.to),f>n.from&&s.delete(n.from+c,f);const g=n.from+c+a.length;s.addMark(n.from+c,g,t.type.create(i||{})),s.removeStoredMark(t.type)}},undoable:t.undoable})}function EY(t){return new Td({find:t.find,handler:({state:e,range:n,match:r})=>{const i=Qe(t.getAttributes,void 0,r)||{},{tr:s}=e,a=n.from;let u=n.to;const c=t.type.create(i);if(r[1]){const f=r[0].lastIndexOf(r[1]);let h=a+f;h>u?h=u:u=h+r[1].length;const m=r[0][r[0].length-1];s.insertText(m,a+r[0].length-1),s.replaceWith(h,u,c)}else if(r[0]){const f=t.type.isInline?a:a-1;s.insert(f,t.type.create(i)).delete(s.mapping.map(a),s.mapping.map(u))}s.scrollIntoView()},undoable:t.undoable})}function V4(t){return new Td({find:t.find,handler:({state:e,range:n,match:r})=>{const i=e.doc.resolve(n.from),s=Qe(t.getAttributes,void 0,r)||{};if(!i.node(-1).canReplaceWith(i.index(-1),i.indexAfter(-1),t.type))return null;e.tr.delete(n.from,n.to).setBlockType(n.from,n.from,t.type,s)},undoable:t.undoable})}function Kl(t){return new Td({find:t.find,handler:({state:e,range:n,match:r,chain:i})=>{const s=Qe(t.getAttributes,void 0,r)||{},a=e.tr.delete(n.from,n.to),c=a.doc.resolve(n.from).blockRange(),f=c&&cx(c,t.type,s);if(!f)return null;if(a.wrap(c,f),t.keepMarks&&t.editor){const{selection:m,storedMarks:g}=e,{splittableMarks:b}=t.editor.extensionManager,x=g||m.$to.parentOffset&&m.$from.marks();if(x){const k=x.filter(E=>b.includes(E.type.name));a.ensureMarks(k)}}if(t.keepAttributes){const m=t.type.name==="bulletList"||t.type.name==="orderedList"?"listItem":"taskList";i().updateAttributes(m,s).run()}const h=a.doc.resolve(n.from-1).nodeBefore;h&&h.type===t.type&&no(a.doc,n.from-1)&&(!t.joinPredicate||t.joinPredicate(r,h))&&a.join(n.from-1)},undoable:t.undoable})}var Zn=class f8 extends Ox{constructor(){super(...arguments),this.type="node"}static create(e={}){const n=typeof e=="function"?e():e;return new f8(n)}configure(e){return super.configure(e)}extend(e){const n=typeof e=="function"?e():e;return super.extend(n)}};function Ws(t){return new Z7({find:t.find,handler:({state:e,range:n,match:r,pasteEvent:i})=>{const s=Qe(t.getAttributes,void 0,r,i);if(s===!1||s===null)return null;const{tr:a}=e,u=r[r.length-1],c=r[0];let f=n.to;if(u){const h=c.search(/\S/),m=n.from+c.indexOf(u),g=m+u.length;if(Mx(n.from,n.to,e.doc).filter(k=>k.mark.type.excluded.find(D=>D===t.type&&D!==k.mark.type)).filter(k=>k.to>m).length)return null;g<n.to&&a.delete(g,n.to),m>n.from&&a.delete(n.from+h,m),f=n.from+h+u.length,a.addMark(n.from+h,f,t.type.create(s||{})),r.index!==void 0&&r.input!==void 0&&r.index+r[0].length>=r.input.length||a.removeStoredMark(t.type)}}})}var DY=Object.defineProperty,SY=(t,e)=>{for(var n in e)DY(t,n,{get:e[n],enumerable:!0})},wY="listItem",AD="textStyle",BD=/^\s*([-+*])\s$/,h8=Zn.create({name:"bulletList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:"ul"}]},renderHTML({HTMLAttributes:t}){return["ul",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"list",parseMarkdown:(t,e)=>t.type!=="list"||t.ordered?[]:{type:"bulletList",content:t.items?e.parseChildren(t.items):[]},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
125
+ `):"",markdownOptions:{indentsContent:!0},addCommands(){return{toggleBulletList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(wY,this.editor.getAttributes(AD)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-8":()=>this.editor.commands.toggleBulletList()}},addInputRules(){let t=Kl({find:BD,type:this.type});return(this.options.keepMarks||this.options.keepAttributes)&&(t=Kl({find:BD,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:()=>this.editor.getAttributes(AD),editor:this.editor})),[t]}}),$Y=(t,e,n)=>{const{selection:r}=t;if(!r.empty)return null;const{$from:i}=r;if(!i.parent.isTextblock||i.parentOffset!==i.parent.content.size)return null;let s=-1;for(let b=i.depth;b>0;b-=1)if(i.node(b).type.name===e){s=b;break}if(s<0)return null;const a=i.node(s),u=i.index(s);if(u+1>=a.childCount)return null;const c=a.child(u+1);if(!n.includes(c.type.name))return null;const f=t.schema.nodes[e];let h=!1;if(c.forEach(b=>{b.type===f&&b.childCount>1&&(h=!0)}),!h)return null;const m=t.doc.resolve(i.after()).nodeAfter;if(!m||!n.includes(m.type.name))return null;const g=[];return m.forEach(b=>{g.push(b)}),g.length===0?null:{listItemDepth:s,nestedList:m,nestedListPos:i.after(),insertPos:i.after(s),items:g}},TY=(t,e,n,r)=>{const i=$Y(t,n,r);if(!i)return!1;const{selection:s}=t,{nestedList:a,nestedListPos:u,insertPos:c,items:f}=i,h=t.tr;h.delete(u,u+a.nodeSize);const m=h.mapping.map(c);return h.insert(m,ae.from(f)),h.setSelection(s.map(h.doc,h.mapping)),e&&e(h),!0},AY=(t,e,n)=>TY(t.state,t.view.dispatch,e,n),p8=(t,e)=>gt.create({name:`${t}BranchingDeleteKeymap`,priority:101,addKeyboardShortcuts(){const n=()=>AY(this.editor,t,e);return{Delete:n,"Mod-Delete":n}}}),m8=[[1e3,"m"],[900,"cm"],[500,"d"],[400,"cd"],[100,"c"],[90,"xc"],[50,"l"],[40,"xl"],[10,"x"],[9,"ix"],[5,"v"],[4,"iv"],[1,"i"]],yh="abcdefghijklmnopqrstuvwxyz",BY="[a-zA-Z]{1,2}",g8=String.raw`\d+|[ivxlcdmIVXLCDM]+|${BY}`;function _m(t){let e=t,n="";for(const[r,i]of m8)for(;e>=r;)n+=i,e-=r;return n}function Lx(t){return _m(t).toUpperCase()}function b8(t){const e=t.toLowerCase();let n=0,r=0;for(;n<e.length;){let i=!1;for(const[s,a]of m8)if(e.startsWith(a,n)){r+=s,n+=a.length,i=!0;break}if(!i)return 0}return r}function MY(t){if(!/^[ivxlcdmIVXLCDM]+$/.test(t))return!1;const e=b8(t);return e<=0?!1:(t===t.toLowerCase()?_m(e):Lx(e))===t}function RY(t){const e=t.toLowerCase();if(e.length===1)return e.charCodeAt(0)-97+1;if(e.length===2){const n=e.charCodeAt(0)-97,r=e.charCodeAt(1)-97;return(n+1)*26+r+1}return 0}function $p(t){if(t<=26)return yh[t-1];const e=Math.floor((t-1)/26)-1,n=(t-1)%26;return e<0?yh[n]:yh[e]+yh[n]}function Vm(t){if(!(!t||/^\d+$/.test(t))){if(MY(t))return t===t.toLowerCase()?"i":"I";if(/^[a-z]{1,2}$/.test(t))return"a";if(/^[A-Z]{1,2}$/.test(t))return"A"}}function zx(t){if(/^\d+$/.test(t))return parseInt(t,10);const e=Vm(t);if(e==="i"||e==="I")return b8(t);if(e==="a"||e==="A"){const r=RY(t);return r>0?r:1}const n=parseInt(t,10);return Number.isNaN(n)?1:n}function NY(t,e){if(t==="numeric")return String(e);switch(t){case"a":return $p(e);case"A":return $p(e).toUpperCase();case"i":return _m(e);case"I":return Lx(e);default:return String(e)}}function PY(t){var e;if(t.length===0)return!1;const n=(e=Vm(t[0]))!=null?e:"numeric",r=zx(t[0]);if(r<1)return!1;for(let i=0;i<t.length;i++){const s=NY(n,r+i);if(t[i]!==s)return!1}return!0}function OY(t){return{type:Vm(t),start:zx(t)}}function LY(t){const{type:e,start:n}=OY(t),r={};return e&&(r.type=e),n!==1&&(r.start=n),r}function zY(t,e,n=". "){const r=e+1;if(!t||t==="1")return`${r}${n}`;switch(t){case"a":return`${$p(r)}${n}`;case"A":return`${$p(r).toUpperCase()}${n}`;case"i":return`${_m(r)}${n}`;case"I":return`${Lx(r)}${n}`;default:return`${r}${n}`}}function IY(t){var e,n;const r=(e=t.tokens)==null?void 0:e[0];return!!(t.text&&((n=t.tokens)==null?void 0:n.length)===1&&r?.type==="list"&&r.ordered&&r.raw===t.text)}function jY(t,e){return e.tokenizeInline?e.parseInline(e.tokenizeInline(t)):e.parseInline([{type:"text",raw:t,text:t}])}var y8=Zn.create({name:"listItem",addOptions(){return{HTMLAttributes:{},bulletListTypeName:"bulletList",orderedListTypeName:"orderedList"}},content:"paragraph block*",defining:!0,parseHTML(){return[{tag:"li"}]},renderHTML({HTMLAttributes:t}){return["li",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"list_item",parseMarkdown:(t,e)=>{var n;if(t.type!=="list_item")return[];const r=(n=e.parseBlockChildren)!=null?n:e.parseChildren;let i=[];if(t.tokens&&t.tokens.length>0){if(IY(t))return{type:"listItem",content:[{type:"paragraph",content:jY(t.text||"",e)}]};if(t.tokens.some(a=>a.type==="paragraph"))i=r(t.tokens);else{const a=t.tokens[0];if(a&&a.type==="text"&&a.tokens&&a.tokens.length>0){if(i=[{type:"paragraph",content:e.parseInline(a.tokens)}],t.tokens.length>1){const c=t.tokens.slice(1),f=r(c);i.push(...f)}}else i=r(t.tokens)}}return i.length===0&&(i=[{type:"paragraph",content:[]}]),{type:"listItem",content:i}},renderMarkdown:(t,e,n)=>Px(t,e,r=>{var i,s,a,u;if(r.parentType==="bulletList")return"- ";if(r.parentType==="orderedList"){const c=((s=(i=r.meta)==null?void 0:i.parentAttrs)==null?void 0:s.start)||1,f=(u=(a=r.meta)==null?void 0:a.parentAttrs)==null?void 0:u.type,h=c-1+(r.index||0);return zY(f,h,". ")}return"- "},n),addExtensions(){return[p8(this.name,[this.options.bulletListTypeName,this.options.orderedListTypeName])]},addKeyboardShortcuts(){return{Enter:()=>this.editor.commands.splitListItem(this.name),Tab:()=>this.editor.commands.sinkListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)}}}),FY={};SY(FY,{findListItemPos:()=>Hm,getNextListDepth:()=>Ix,handleBackspace:()=>H4,handleDelete:()=>U4,hasListBefore:()=>x8,hasListItemAfter:()=>KY,hasListItemBefore:()=>_Y,listItemHasSubList:()=>VY,nextListIsDeeper:()=>v8,nextListIsHigher:()=>k8});var Hm=(t,e)=>{const{$from:n}=e.selection,r=Lt(t,e.schema);let i=null,s=n.depth,a=n.pos,u=null;for(;s>0&&u===null;)i=n.node(s),i.type===r?u=s:(s-=1,a-=1);return u===null?null:{$pos:e.doc.resolve(a),depth:u}},Ix=(t,e)=>{const n=Hm(t,e);if(!n)return!1;const[,r]=DQ(e,t,n.$pos.pos+4);return r},x8=(t,e,n)=>{const{$anchor:r}=t.selection,i=Math.max(0,r.pos-2),s=t.doc.resolve(i).node();return!(!s||!n.includes(s.type.name))},H4=(t,e,n)=>{if(t.commands.undoInputRule())return!0;if(t.state.selection.from!==t.state.selection.to)return!1;if(!Gs(t.state,e)&&x8(t.state,e,n)){const{$anchor:r}=t.state.selection,i=t.state.doc.resolve(r.before()-1),s=[];i.node().descendants((c,f)=>{c.type.name===e&&s.push({node:c,pos:f})});const a=s.at(-1);if(!a)return!1;const u=t.state.doc.resolve(i.start()+a.pos+1);return t.chain().cut({from:r.start()-1,to:r.end()+1},u.end()).joinForward().run()}return!Gs(t.state,e)||!TQ(t.state)?!1:t.chain().liftListItem(e).run()},v8=(t,e)=>{const n=Ix(t,e),r=Hm(t,e);return!r||!n?!1:n>r.depth},k8=(t,e)=>{const n=Ix(t,e),r=Hm(t,e);return!r||!n?!1:n<r.depth},U4=(t,e)=>{if(!Gs(t.state,e)||!$Q(t.state,e))return!1;const{selection:n}=t.state,{$from:r,$to:i}=n;return!n.empty&&r.sameParent(i)?!1:v8(e,t.state)?t.chain().focus(t.state.selection.from+4).lift(e).joinBackward().run():k8(e,t.state)?t.chain().joinForward().joinBackward().run():t.commands.joinItemForward()},KY=(t,e)=>{var n;const{$anchor:r}=e.selection,i=e.doc.resolve(r.pos-r.parentOffset-2);return!(i.index()===i.parent.childCount-1||((n=i.nodeAfter)==null?void 0:n.type.name)!==t)},_Y=(t,e)=>{var n;const{$anchor:r}=e.selection,i=e.doc.resolve(r.pos-2);return!(i.index()===0||((n=i.nodeBefore)==null?void 0:n.type.name)!==t)},VY=(t,e,n)=>{if(!n)return!1;const r=Lt(t,e.schema);let i=!1;return n.descendants(s=>{s.type===r&&(i=!0)}),i},C8=gt.create({name:"listKeymap",addOptions(){return{listTypes:[{itemName:"listItem",wrapperNames:["bulletList","orderedList"]},{itemName:"taskItem",wrapperNames:["taskList"]}]}},addKeyboardShortcuts(){return{Delete:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&U4(t,n)&&(e=!0)}),e},"Mod-Delete":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n})=>{t.state.schema.nodes[n]!==void 0&&U4(t,n)&&(e=!0)}),e},Backspace:({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&H4(t,n,r)&&(e=!0)}),e},"Mod-Backspace":({editor:t})=>{let e=!1;return this.options.listTypes.forEach(({itemName:n,wrapperNames:r})=>{t.state.schema.nodes[n]!==void 0&&H4(t,n,r)&&(e=!0)}),e}}}}),q4=new RegExp(`^(\\s*)(${g8})([.)])\\s+(.*)$`),HY=/^\s/,mc={heading:/^#{1,6}(?:\s|$)/,bulletItem:/^[-+*]\s+/,codeFence:/^(?:```|~~~)/,thematicBreak:/^(?:(?:-[ \t]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})$/};function UY(t){return q4.test(t.trimStart())}function qY(t){const e=t.trimStart();return mc.bulletItem.test(e)||UY(e)||mc.heading.test(e)||mc.thematicBreak.test(e)&&!e.startsWith("-")||/^>\s?/.test(e)||mc.codeFence.test(e)}function GY(t){return Object.values(mc).some(e=>e.test(t))}function WY(t){const e=[],n=[];let r=!1;return t.forEach(i=>{if(r){n.push(i);return}if(i.trim()===""){r=!0,n.push(i);return}if(e.length>0&&qY(i)){r=!0,n.push(i);return}e.push(i)}),{paragraphLines:e,blockLines:n}}function QY(t){const e=[];let n=0,r=0;for(;n<t.length;){const i=t[n],s=i.match(q4);if(!s)break;const[,a,u,c,f]=s,h=a.length,m=parseInt(u,10),g=isNaN(m)?Vm(u):void 0,b=isNaN(m)?zx(u):m,x=[f];let k=n+1;const E=[i];let D=!1;for(;k<t.length;){const T=t[k];if(T.match(q4))break;if(T.trim()==="")E.push(T),x.push(""),D=!0,k+=1;else if(T.match(HY)){const A=T.length-T.trimStart().length,B=h+u.length+1;E.push(T),x.push(T.slice(Math.min(A,B))),k+=1}else{if(D||GY(T))break;E.push(T),x.push(T),k+=1}}e.push({indent:h,number:b,type:g,content:x.join(`
126
+ `).trim(),contentLines:x,raw:E.join(`
127
+ `)}),r=k,n=k}return[e,r]}var YY=new RegExp(`^(${g8})([.)])\\s+(.+)$`);function XY(t){const e=t.split(`
128
+ `).filter(s=>s.trim().length>0);if(e.length===0)return null;const n=[];for(const s of e){const a=s.trim().match(YY);if(!a)return null;n.push({marker:a[1],content:a[3]})}const r=n.map(s=>s.marker);return PY(r)?{type:"orderedList",attrs:LY(n[0].marker),content:n.map(s=>({type:"listItem",content:[{type:"paragraph",content:[{type:"text",text:s.content}]}]}))}:null}function E8(t,e,n){const r=[];let i=0;for(;i<t.length;){const s=t[i];if(s.indent===e){const{paragraphLines:a,blockLines:u}=WY(s.contentLines),c=a.join(`
129
+ `).trim(),f=[];c&&f.push({type:"paragraph",raw:c,tokens:n.inlineTokens(c)});const h=u.join(`
130
+ `).trim();if(h){const b=n.blockTokens(h);f.push(...b)}let m=i+1;const g=[];for(;m<t.length&&t[m].indent>e;)g.push(t[m]),m+=1;if(g.length>0){const b=Math.min(...g.map(k=>k.indent)),x=E8(g,b,n);f.push({type:"list",ordered:!0,start:g[0].number,typeMarker:g[0].type,items:x,raw:g.map(k=>k.raw).join(`
131
+ `)})}r.push({type:"list_item",raw:s.raw,tokens:f}),i=m}else i+=1}return r}function JY(t,e){return t.map(n=>{if(n.type!=="list_item")return e.parseChildren([n])[0];const r=[];return n.tokens&&n.tokens.length>0&&n.tokens.forEach(i=>{if(i.type==="paragraph"||i.type==="list"||i.type==="blockquote"||i.type==="code")r.push(...e.parseChildren([i]));else if(i.type==="text"&&i.tokens){const s=e.parseChildren([i]);r.push({type:"paragraph",content:s})}else{const s=e.parseChildren([i]);s.length>0&&r.push(...s)}}),{type:"listItem",content:r}})}var ZY="listItem",MD="textStyle",RD=/^(\d+)\.\s$/;function ND(t){const e=t.match(/list-style-type\s*:\s*([^;]+)/i);if(!e)return null;switch(e[1].trim().toLowerCase()){case"upper-roman":return"I";case"lower-roman":return"i";case"upper-alpha":case"upper-latin":return"A";case"lower-alpha":case"lower-latin":return"a";default:return null}}var D8=Zn.create({name:"orderedList",addOptions(){return{itemTypeName:"listItem",HTMLAttributes:{},keepMarks:!1,keepAttributes:!1}},group:"block list",content(){return`${this.options.itemTypeName}+`},addAttributes(){return{start:{default:1,parseHTML:t=>t.hasAttribute("start")?parseInt(t.getAttribute("start")||"",10):1},type:{default:null,parseHTML:t=>{const e=t.getAttribute("type");if(e)return e;const n=t.getAttribute("style");if(n){const i=ND(n);if(i)return i}const r=t.querySelector("li");if(r){const i=r.getAttribute("style");if(i){const s=ND(i);if(s)return s}}return null}}}},parseHTML(){return[{tag:"ol"}]},renderHTML({HTMLAttributes:t}){const{start:e,type:n,...r}=t,i=Ft(this.options.HTMLAttributes,r);return e!==1&&(i.start=e),n&&n!=="1"&&(i.type=n),["ol",i,0]},markdownTokenName:"list",parseMarkdown:(t,e)=>{if(t.type!=="list"||!t.ordered)return[];const n=t.start||1,r=t.typeMarker,i=t.items?JY(t.items,e):[],s={};return n!==1&&(s.start=n),r&&(s.type=r),Object.keys(s).length>0?{type:"orderedList",attrs:s,content:i}:{type:"orderedList",content:i}},renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
132
+ `):"",markdownTokenizer:{name:"orderedList",level:"block",start:()=>-1,tokenize:(t,e,n)=>{var r,i;const s=t.split(`
133
+ `),[a,u]=QY(s);if(a.length===0)return;const c=E8(a,a[0].indent,n);if(c.length===0)return;const f=((r=a[0])==null?void 0:r.number)||1,h=(i=a[0])==null?void 0:i.type;return{type:"list",ordered:!0,start:f,typeMarker:h,items:c,raw:s.slice(0,u).join(`
134
+ `)}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleOrderedList:()=>({commands:t,chain:e})=>this.options.keepAttributes?e().toggleList(this.name,this.options.itemTypeName,this.options.keepMarks).updateAttributes(ZY,this.editor.getAttributes(MD)).run():t.toggleList(this.name,this.options.itemTypeName,this.options.keepMarks)}},addKeyboardShortcuts(){return{"Mod-Shift-7":()=>this.editor.commands.toggleOrderedList()}},addProseMirrorPlugins(){return[new mt({props:{handlePaste:(t,e)=>{var n,r;const i=(n=e.clipboardData)==null?void 0:n.getData("text/html");if(i?.trim())return!1;const s=(r=e.clipboardData)==null?void 0:r.getData("text/plain");if(!s)return!1;const a=XY(s);if(!a)return!1;try{const u=t.state.schema.nodeFromJSON(a),c=t.state.tr.replaceSelectionWith(u);return t.dispatch(c),!0}catch{return!1}}}})]},addInputRules(){const t=(n,r)=>(!r.attrs.type||r.attrs.type==="1")&&r.childCount+r.attrs.start===+n[1];let e=Kl({find:RD,type:this.type,getAttributes:n=>({start:+n[1]}),joinPredicate:t});return(this.options.keepMarks||this.options.keepAttributes)&&(e=Kl({find:RD,type:this.type,keepMarks:this.options.keepMarks,keepAttributes:this.options.keepAttributes,getAttributes:n=>({start:+n[1],...this.editor.getAttributes(MD)}),joinPredicate:t,editor:this.editor})),[e]}}),eX=/^\s*(\[([( |x])?\])\s$/,S8=Zn.create({name:"taskItem",addOptions(){return{nested:!1,HTMLAttributes:{},taskListTypeName:"taskList",a11y:void 0}},content(){return this.options.nested?"paragraph block*":"paragraph+"},defining:!0,addAttributes(){return{checked:{default:!1,keepOnSplit:!1,parseHTML:t=>{const e=t.getAttribute("data-checked");return e===""||e==="true"},renderHTML:t=>({"data-checked":t.checked})}}},parseHTML(){return[{tag:`li[data-type="${this.name}"]`,priority:51}]},renderHTML({node:t,HTMLAttributes:e}){return["li",Ft(this.options.HTMLAttributes,e,{"data-type":this.name}),["label",["input",{type:"checkbox",checked:t.attrs.checked?"checked":null}],["span"]],["div",0]]},parseMarkdown:(t,e)=>{const n=[];if(t.tokens&&t.tokens.length>0?n.push(e.createNode("paragraph",{},e.parseInline(t.tokens))):t.text?n.push(e.createNode("paragraph",{},[e.createNode("text",{text:t.text})])):n.push(e.createNode("paragraph",{},[])),t.nestedTokens&&t.nestedTokens.length>0){const r=e.parseChildren(t.nestedTokens);n.push(...r)}return e.createNode("taskItem",{checked:t.checked||!1},n)},renderMarkdown:(t,e)=>{var n;const i=`- [${(n=t.attrs)!=null&&n.checked?"x":" "}] `;return Px(t,e,i)},addExtensions(){return this.options.nested?[p8(this.name,[this.options.taskListTypeName])]:[]},addKeyboardShortcuts(){const t={Enter:()=>this.editor.commands.splitListItem(this.name),"Shift-Tab":()=>this.editor.commands.liftListItem(this.name)};return this.options.nested?{...t,Tab:()=>this.editor.commands.sinkListItem(this.name)}:t},addNodeView(){return({node:t,HTMLAttributes:e,getPos:n,editor:r})=>{const i=document.createElement("li"),s=document.createElement("label"),a=document.createElement("span"),u=document.createElement("input"),c=document.createElement("div"),f=m=>{var g,b;u.ariaLabel=((b=(g=this.options.a11y)==null?void 0:g.checkboxLabel)==null?void 0:b.call(g,m,u.checked))||`Task item checkbox for ${m.textContent||"empty task item"}`};f(t),s.contentEditable="false",u.type="checkbox",u.addEventListener("mousedown",m=>m.preventDefault()),u.addEventListener("change",m=>{if(!r.isEditable&&!this.options.onReadOnlyChecked){u.checked=!u.checked;return}const{checked:g}=m.target;r.isEditable&&typeof n=="function"&&r.chain().focus(void 0,{scrollIntoView:!1}).command(({tr:b})=>{const x=n();if(typeof x!="number")return!1;const k=b.doc.nodeAt(x);return b.setNodeMarkup(x,void 0,{...k?.attrs,checked:g}),!0}).run(),!r.isEditable&&this.options.onReadOnlyChecked&&(this.options.onReadOnlyChecked(t,g)||(u.checked=!u.checked))}),Object.entries(this.options.HTMLAttributes).forEach(([m,g])=>{i.setAttribute(m,g)}),i.dataset.checked=t.attrs.checked,u.checked=t.attrs.checked,s.append(u,a),i.append(s,c),Object.entries(e).forEach(([m,g])=>{i.setAttribute(m,g)});let h=new Set(Object.keys(e));return{dom:i,contentDOM:c,update:m=>{if(m.type!==this.type)return!1;i.dataset.checked=m.attrs.checked,u.checked=m.attrs.checked,f(m);const g=r.extensionManager.attributes,b=sd(m,g),x=new Set(Object.keys(b)),k=this.options.HTMLAttributes;return h.forEach(E=>{x.has(E)||(E in k?i.setAttribute(E,k[E]):i.removeAttribute(E))}),Object.entries(b).forEach(([E,D])=>{D==null?E in k?i.setAttribute(E,k[E]):i.removeAttribute(E):i.setAttribute(E,D)}),h=x,!0}}}},addInputRules(){return[Kl({find:eX,type:this.type,getAttributes:t=>({checked:t[t.length-1]==="x"})})]}}),w8=Zn.create({name:"taskList",addOptions(){return{itemTypeName:"taskItem",HTMLAttributes:{}}},group:"block list",content(){return`${this.options.itemTypeName}+`},parseHTML(){return[{tag:`ul[data-type="${this.name}"]`,priority:51}]},renderHTML({HTMLAttributes:t}){return["ul",Ft(this.options.HTMLAttributes,t,{"data-type":this.name}),0]},parseMarkdown:(t,e)=>e.createNode("taskList",{},e.parseChildren(t.items||[])),renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
135
+ `):"",markdownTokenizer:{name:"taskList",level:"block",start(t){var e;const n=(e=t.match(/^\s*[-+*]\s+\[([ xX])\]\s+/))==null?void 0:e.index;return n!==void 0?n:-1},tokenize(t,e,n){const r=s=>{const a=_4(s,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:u=>({indentLevel:u[1].length,mainContent:u[4],checked:u[3].toLowerCase()==="x"}),createToken:(u,c)=>({type:"taskItem",raw:"",mainContent:u.mainContent,indentLevel:u.indentLevel,checked:u.checked,text:u.mainContent,tokens:n.inlineTokens(u.mainContent),nestedTokens:c}),customNestedParser:r},n);if(a){const u={type:"taskList",raw:a.raw,items:a.items},c=s.slice(a.raw.length);return c.trim()?[u,...n.blockTokens(c)]:[u]}return n.blockTokens(s)},i=_4(t,{itemPattern:/^(\s*)([-+*])\s+\[([ xX])\]\s+(.*)$/,extractItemData:s=>({indentLevel:s[1].length,mainContent:s[4],checked:s[3].toLowerCase()==="x"}),createToken:(s,a)=>({type:"taskItem",raw:"",mainContent:s.mainContent,indentLevel:s.indentLevel,checked:s.checked,text:s.mainContent,tokens:n.inlineTokens(s.mainContent),nestedTokens:a}),customNestedParser:r},n);if(i)return{type:"taskList",raw:i.raw,items:i.items}}},markdownOptions:{indentsContent:!0},addCommands(){return{toggleTaskList:()=>({commands:t})=>t.toggleList(this.name,this.options.itemTypeName)}},addKeyboardShortcuts(){return{"Mod-Shift-9":()=>this.editor.commands.toggleTaskList()}}});gt.create({name:"listKit",addExtensions(){const t=[];return this.options.bulletList!==!1&&t.push(h8.configure(this.options.bulletList)),this.options.listItem!==!1&&t.push(y8.configure(this.options.listItem)),this.options.listKeymap!==!1&&t.push(C8.configure(this.options.listKeymap)),this.options.orderedList!==!1&&t.push(D8.configure(this.options.orderedList)),this.options.taskItem!==!1&&t.push(S8.configure(this.options.taskItem)),this.options.taskList!==!1&&t.push(w8.configure(this.options.taskList)),t}});function tX(t={}){return new mt({view(e){return new nX(e,t)}})}class nX{constructor(e,n){var r;this.editorView=e,this.cursorPos=null,this.element=null,this.timeout=-1,this.lastDragEvent=null,this.width=(r=n.width)!==null&&r!==void 0?r:1,this.color=n.color===!1?void 0:n.color||"black",this.class=n.class,this.handlers=["dragover","dragend","drop","dragleave"].map(i=>{let s=a=>{this[i](a)};return e.dom.addEventListener(i,s),{name:i,handler:s}})}destroy(){this.handlers.forEach(({name:e,handler:n})=>this.editorView.dom.removeEventListener(e,n))}update(e,n){if(this.cursorPos!=null&&n.doc!=e.state.doc)if(this.lastDragEvent){let r=this.computeTarget(this.lastDragEvent);r==this.cursorPos?this.updateOverlay():this.setCursor(r)}else this.updateOverlay()}setCursor(e){e!=this.cursorPos&&(this.cursorPos=e,e==null?(this.element.parentNode.removeChild(this.element),this.element=null):this.updateOverlay())}updateOverlay(){let e=this.editorView.state.doc.resolve(this.cursorPos),n=!e.parent.inlineContent,r,i=this.editorView.dom,s=i.getBoundingClientRect(),a=s.width/i.offsetWidth,u=s.height/i.offsetHeight;if(n){let m=e.nodeBefore,g=e.nodeAfter;if(m||g){let b=this.editorView.nodeDOM(this.cursorPos-(m?m.nodeSize:0));if(b){let x=b.getBoundingClientRect(),k=m?x.bottom:x.top;m&&g&&(k=(k+this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top)/2);let E=this.width/2*u;r={left:x.left,right:x.right,top:k-E,bottom:k+E}}}}if(!r){let m=this.editorView.coordsAtPos(this.cursorPos),g=this.width/2*a;r={left:m.left-g,right:m.left+g,top:m.top,bottom:m.bottom}}let c=this.editorView.dom.offsetParent;this.element||(this.element=c.appendChild(document.createElement("div")),this.class&&(this.element.className=this.class),this.element.style.cssText="position: absolute; z-index: 50; pointer-events: none;",this.color&&(this.element.style.backgroundColor=this.color)),this.element.classList.toggle("prosemirror-dropcursor-block",n),this.element.classList.toggle("prosemirror-dropcursor-inline",!n);let f,h;if(!c||c==document.body&&getComputedStyle(c).position=="static")f=-pageXOffset,h=-pageYOffset;else{let m=c.getBoundingClientRect(),g=m.width/c.offsetWidth,b=m.height/c.offsetHeight;f=m.left-c.scrollLeft*g,h=m.top-c.scrollTop*b}this.element.style.left=(r.left-f)/a+"px",this.element.style.top=(r.top-h)/u+"px",this.element.style.width=(r.right-r.left)/a+"px",this.element.style.height=(r.bottom-r.top)/u+"px"}scheduleRemoval(e){clearTimeout(this.timeout),this.timeout=setTimeout(()=>this.setCursor(null),e)}computeTarget(e){let n=this.editorView.posAtCoords({left:e.clientX,top:e.clientY}),r=n&&n.inside>=0&&this.editorView.state.doc.nodeAt(n.inside),i=r&&r.type.spec.disableDropCursor,s=typeof i=="function"?i(this.editorView,n,e):i;if(!n||s)return null;let a=n.pos;if(this.editorView.dragging&&this.editorView.dragging.slice){let u=$9(this.editorView.state.doc,a,this.editorView.dragging.slice);u!=null&&(a=u)}return a}dragover(e){if(!this.editorView.editable)return;this.lastDragEvent=e;let n=this.computeTarget(e);n!=null&&(this.setCursor(n),this.scheduleRemoval(5e3))}dragend(){this.scheduleRemoval(20)}drop(){this.scheduleRemoval(20)}dragleave(e){this.editorView.dom.contains(e.relatedTarget)||this.setCursor(null)}}class kt extends Me{constructor(e){super(e,e)}map(e,n){let r=e.resolve(n.map(this.head));return kt.valid(r)?new kt(r):Me.near(r)}content(){return pe.empty}eq(e){return e instanceof kt&&e.head==this.head}toJSON(){return{type:"gapcursor",pos:this.head}}static fromJSON(e,n){if(typeof n.pos!="number")throw new RangeError("Invalid input for GapCursor.fromJSON");return new kt(e.resolve(n.pos))}getBookmark(){return new jx(this.anchor)}static valid(e){let n=e.parent;if(n.inlineContent||!rX(e)||!iX(e))return!1;let r=n.type.spec.allowGapCursor;if(r!=null)return r;let i=n.contentMatchAt(e.index()).defaultType;return i&&i.isTextblock}static findGapCursorFrom(e,n,r=!1){e:for(;;){if(!r&&kt.valid(e))return e;let i=e.pos,s=null;for(let a=e.depth;;a--){let u=e.node(a);if(n>0?e.indexAfter(a)<u.childCount:e.index(a)>0){s=u.child(n>0?e.indexAfter(a):e.index(a)-1);break}else if(a==0)return null;i+=n;let c=e.doc.resolve(i);if(kt.valid(c))return c}for(;;){let a=n>0?s.firstChild:s.lastChild;if(!a){if(s.isAtom&&!s.isText&&!ke.isSelectable(s)){e=e.doc.resolve(i+s.nodeSize*n),r=!1;continue e}break}s=a,i+=n;let u=e.doc.resolve(i);if(kt.valid(u))return u}return null}}}kt.prototype.visible=!1;kt.findFrom=kt.findGapCursorFrom;Me.jsonID("gapcursor",kt);class jx{constructor(e){this.pos=e}map(e){return new jx(e.map(this.pos))}resolve(e){let n=e.resolve(this.pos);return kt.valid(n)?new kt(n):Me.near(n)}}function $8(t){return t.isAtom||t.spec.isolating||t.spec.createGapCursor}function rX(t){for(let e=t.depth;e>=0;e--){let n=t.index(e),r=t.node(e);if(n==0){if(r.type.spec.isolating)return!0;continue}for(let i=r.child(n-1);;i=i.lastChild){if(i.childCount==0&&!i.inlineContent||$8(i.type))return!0;if(i.inlineContent)return!1}}return!0}function iX(t){for(let e=t.depth;e>=0;e--){let n=t.indexAfter(e),r=t.node(e);if(n==r.childCount){if(r.type.spec.isolating)return!0;continue}for(let i=r.child(n);;i=i.firstChild){if(i.childCount==0&&!i.inlineContent||$8(i.type))return!0;if(i.inlineContent)return!1}}return!0}function sX(){return new mt({props:{decorations:uX,createSelectionBetween(t,e,n){return e.pos==n.pos&&kt.valid(n)?new kt(n):null},handleClick:aX,handleKeyDown:oX,handleDOMEvents:{beforeinput:lX}}})}const oX=M7({ArrowLeft:xh("horiz",-1),ArrowRight:xh("horiz",1),ArrowUp:xh("vert",-1),ArrowDown:xh("vert",1)});function xh(t,e){const n=t=="vert"?e>0?"down":"up":e>0?"right":"left";return function(r,i,s){let a=r.selection,u=e>0?a.$to:a.$from,c=a.empty;if(a instanceof De){if(!s.endOfTextblock(n)||u.depth==0)return!1;c=!1,u=r.doc.resolve(e>0?u.after():u.before())}let f=kt.findGapCursorFrom(u,e,c);return f?(i&&i(r.tr.setSelection(new kt(f))),!0):!1}}function aX(t,e,n){if(!t||!t.editable)return!1;let r=t.state.doc.resolve(e);if(!kt.valid(r))return!1;let i=t.posAtCoords({left:n.clientX,top:n.clientY});return i&&i.inside>-1&&ke.isSelectable(t.state.doc.nodeAt(i.inside))?!1:(t.dispatch(t.state.tr.setSelection(new kt(r))),!0)}function lX(t,e){if(e.inputType!="insertCompositionText"||!(t.state.selection instanceof kt))return!1;let{$from:n}=t.state.selection,r=n.parent.contentMatchAt(n.index()).findWrapping(t.state.schema.nodes.text);if(!r)return!1;let i=ae.empty;for(let a=r.length-1;a>=0;a--)i=ae.from(r[a].createAndFill(null,i));let s=t.state.tr.replace(n.pos,n.pos,new pe(i,0,0));return s.setSelection(De.near(s.doc.resolve(n.pos+1))),t.dispatch(s),!1}function uX(t){if(!(t.selection instanceof kt))return null;let e=document.createElement("div");return e.className="ProseMirror-gapcursor",ut.create(t.doc,[vn.widget(t.selection.head,e,{key:"gapcursor"})])}var Tp=200,qt=function(){};qt.prototype.append=function(e){return e.length?(e=qt.from(e),!this.length&&e||e.length<Tp&&this.leafAppend(e)||this.length<Tp&&e.leafPrepend(this)||this.appendInner(e)):this};qt.prototype.prepend=function(e){return e.length?qt.from(e).append(this):this};qt.prototype.appendInner=function(e){return new cX(this,e)};qt.prototype.slice=function(e,n){return e===void 0&&(e=0),n===void 0&&(n=this.length),e>=n?qt.empty:this.sliceInner(Math.max(0,e),Math.min(this.length,n))};qt.prototype.get=function(e){if(!(e<0||e>=this.length))return this.getInner(e)};qt.prototype.forEach=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length),n<=r?this.forEachInner(e,n,r,0):this.forEachInvertedInner(e,n,r,0)};qt.prototype.map=function(e,n,r){n===void 0&&(n=0),r===void 0&&(r=this.length);var i=[];return this.forEach(function(s,a){return i.push(e(s,a))},n,r),i};qt.from=function(e){return e instanceof qt?e:e&&e.length?new T8(e):qt.empty};var T8=(function(t){function e(r){t.call(this),this.values=r}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={length:{configurable:!0},depth:{configurable:!0}};return e.prototype.flatten=function(){return this.values},e.prototype.sliceInner=function(i,s){return i==0&&s==this.length?this:new e(this.values.slice(i,s))},e.prototype.getInner=function(i){return this.values[i]},e.prototype.forEachInner=function(i,s,a,u){for(var c=s;c<a;c++)if(i(this.values[c],u+c)===!1)return!1},e.prototype.forEachInvertedInner=function(i,s,a,u){for(var c=s-1;c>=a;c--)if(i(this.values[c],u+c)===!1)return!1},e.prototype.leafAppend=function(i){if(this.length+i.length<=Tp)return new e(this.values.concat(i.flatten()))},e.prototype.leafPrepend=function(i){if(this.length+i.length<=Tp)return new e(i.flatten().concat(this.values))},n.length.get=function(){return this.values.length},n.depth.get=function(){return 0},Object.defineProperties(e.prototype,n),e})(qt);qt.empty=new T8([]);var cX=(function(t){function e(n,r){t.call(this),this.left=n,this.right=r,this.length=n.length+r.length,this.depth=Math.max(n.depth,r.depth)+1}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.flatten=function(){return this.left.flatten().concat(this.right.flatten())},e.prototype.getInner=function(r){return r<this.left.length?this.left.get(r):this.right.get(r-this.left.length)},e.prototype.forEachInner=function(r,i,s,a){var u=this.left.length;if(i<u&&this.left.forEachInner(r,i,Math.min(s,u),a)===!1||s>u&&this.right.forEachInner(r,Math.max(i-u,0),Math.min(this.length,s)-u,a+u)===!1)return!1},e.prototype.forEachInvertedInner=function(r,i,s,a){var u=this.left.length;if(i>u&&this.right.forEachInvertedInner(r,i-u,Math.max(s,u)-u,a+u)===!1||s<u&&this.left.forEachInvertedInner(r,Math.min(i,u),s,a)===!1)return!1},e.prototype.sliceInner=function(r,i){if(r==0&&i==this.length)return this;var s=this.left.length;return i<=s?this.left.slice(r,i):r>=s?this.right.slice(r-s,i-s):this.left.slice(r,s).append(this.right.slice(0,i-s))},e.prototype.leafAppend=function(r){var i=this.right.leafAppend(r);if(i)return new e(this.left,i)},e.prototype.leafPrepend=function(r){var i=this.left.leafPrepend(r);if(i)return new e(i,this.right)},e.prototype.appendInner=function(r){return this.left.depth>=Math.max(this.right.depth,r.depth)+1?new e(this.left,new e(this.right,r)):new e(this,r)},e})(qt);const dX=500;class Ar{constructor(e,n){this.items=e,this.eventCount=n}popEvent(e,n){if(this.eventCount==0)return null;let r=this.items.length;for(;;r--)if(this.items.get(r-1).selection){--r;break}let i,s;n&&(i=this.remapping(r,this.items.length),s=i.maps.length);let a=e.tr,u,c,f=[],h=[];return this.items.forEach((m,g)=>{if(!m.step){i||(i=this.remapping(r,g+1),s=i.maps.length),s--,h.push(m);return}if(i){h.push(new Vr(m.map));let b=m.step.map(i.slice(s)),x;b&&a.maybeStep(b).doc&&(x=a.mapping.maps[a.mapping.maps.length-1],f.push(new Vr(x,void 0,void 0,f.length+h.length))),s--,x&&i.appendMap(x,s)}else a.maybeStep(m.step);if(m.selection)return u=i?m.selection.map(i.slice(s)):m.selection,c=new Ar(this.items.slice(0,r).append(h.reverse().concat(f)),this.eventCount-1),!1},this.items.length,0),{remaining:c,transform:a,selection:u}}addTransform(e,n,r,i){let s=[],a=this.eventCount,u=this.items,c=!i&&u.length?u.get(u.length-1):null;for(let h=0;h<e.steps.length;h++){let m=e.steps[h].invert(e.docs[h]),g=new Vr(e.mapping.maps[h],m,n),b;(b=c&&c.merge(g))&&(g=b,h?s.pop():u=u.slice(0,u.length-1)),s.push(g),n&&(a++,n=void 0),i||(c=g)}let f=a-r.depth;return f>hX&&(u=fX(u,f),a-=f),new Ar(u.append(s),a)}remapping(e,n){let r=new ed;return this.items.forEach((i,s)=>{let a=i.mirrorOffset!=null&&s-i.mirrorOffset>=e?r.maps.length-i.mirrorOffset:void 0;r.appendMap(i.map,a)},e,n),r}addMaps(e){return this.eventCount==0?this:new Ar(this.items.append(e.map(n=>new Vr(n))),this.eventCount)}rebased(e,n){if(!this.eventCount)return this;let r=[],i=Math.max(0,this.items.length-n),s=e.mapping,a=e.steps.length,u=this.eventCount;this.items.forEach(g=>{g.selection&&u--},i);let c=n;this.items.forEach(g=>{let b=s.getMirror(--c);if(b==null)return;a=Math.min(a,b);let x=s.maps[b];if(g.step){let k=e.steps[b].invert(e.docs[b]),E=g.selection&&g.selection.map(s.slice(c+1,b));E&&u++,r.push(new Vr(x,k,E))}else r.push(new Vr(x))},i);let f=[];for(let g=n;g<a;g++)f.push(new Vr(s.maps[g]));let h=this.items.slice(0,i).append(f).append(r),m=new Ar(h,u);return m.emptyItemCount()>dX&&(m=m.compress(this.items.length-r.length)),m}emptyItemCount(){let e=0;return this.items.forEach(n=>{n.step||e++}),e}compress(e=this.items.length){let n=this.remapping(0,e),r=n.maps.length,i=[],s=0;return this.items.forEach((a,u)=>{if(u>=e)i.push(a),a.selection&&s++;else if(a.step){let c=a.step.map(n.slice(r)),f=c&&c.getMap();if(r--,f&&n.appendMap(f,r),c){let h=a.selection&&a.selection.map(n.slice(r));h&&s++;let m=new Vr(f.invert(),c,h),g,b=i.length-1;(g=i.length&&i[b].merge(m))?i[b]=g:i.push(m)}}else a.map&&r--},this.items.length,0),new Ar(qt.from(i.reverse()),s)}}Ar.empty=new Ar(qt.empty,0);function fX(t,e){let n;return t.forEach((r,i)=>{if(r.selection&&e--==0)return n=i,!1}),t.slice(n)}class Vr{constructor(e,n,r,i){this.map=e,this.step=n,this.selection=r,this.mirrorOffset=i}merge(e){if(this.step&&e.step&&!e.selection){let n=e.step.merge(this.step);if(n)return new Vr(n.getMap().invert(),n,this.selection)}}}class Ds{constructor(e,n,r,i,s){this.done=e,this.undone=n,this.prevRanges=r,this.prevTime=i,this.prevComposition=s}}const hX=20;function pX(t,e,n,r){let i=n.getMeta(na),s;if(i)return i.historyState;n.getMeta(bX)&&(t=new Ds(t.done,t.undone,null,0,-1));let a=n.getMeta("appendedTransaction");if(n.steps.length==0)return t;if(a&&a.getMeta(na))return a.getMeta(na).redo?new Ds(t.done.addTransform(n,void 0,r,Kh(e)),t.undone,PD(n.mapping.maps),t.prevTime,t.prevComposition):new Ds(t.done,t.undone.addTransform(n,void 0,r,Kh(e)),null,t.prevTime,t.prevComposition);if(n.getMeta("addToHistory")!==!1&&!(a&&a.getMeta("addToHistory")===!1)){let u=n.getMeta("composition"),c=t.prevTime==0||!a&&t.prevComposition!=u&&(t.prevTime<(n.time||0)-r.newGroupDelay||!mX(n,t.prevRanges)),f=a?my(t.prevRanges,n.mapping):PD(n.mapping.maps);return new Ds(t.done.addTransform(n,c?e.selection.getBookmark():void 0,r,Kh(e)),Ar.empty,f,n.time,u??t.prevComposition)}else return(s=n.getMeta("rebased"))?new Ds(t.done.rebased(n,s),t.undone.rebased(n,s),my(t.prevRanges,n.mapping),t.prevTime,t.prevComposition):new Ds(t.done.addMaps(n.mapping.maps),t.undone.addMaps(n.mapping.maps),my(t.prevRanges,n.mapping),t.prevTime,t.prevComposition)}function mX(t,e){if(!e)return!1;if(!t.docChanged)return!0;let n=!1;return t.mapping.maps[0].forEach((r,i)=>{for(let s=0;s<e.length;s+=2)r<=e[s+1]&&i>=e[s]&&(n=!0)}),n}function PD(t){let e=[];for(let n=t.length-1;n>=0&&e.length==0;n--)t[n].forEach((r,i,s,a)=>e.push(s,a));return e}function my(t,e){if(!t)return null;let n=[];for(let r=0;r<t.length;r+=2){let i=e.map(t[r],1),s=e.map(t[r+1],-1);i<=s&&n.push(i,s)}return n}function gX(t,e,n){let r=Kh(e),i=na.get(e).spec.config,s=(n?t.undone:t.done).popEvent(e,r);if(!s)return null;let a=s.selection.resolve(s.transform.doc),u=(n?t.done:t.undone).addTransform(s.transform,e.selection.getBookmark(),i,r),c=new Ds(n?u:s.remaining,n?s.remaining:u,null,0,-1);return s.transform.setSelection(a).setMeta(na,{redo:n,historyState:c})}let gy=!1,OD=null;function Kh(t){let e=t.plugins;if(OD!=e){gy=!1,OD=e;for(let n=0;n<e.length;n++)if(e[n].spec.historyPreserveItems){gy=!0;break}}return gy}const na=new Kt("history"),bX=new Kt("closeHistory");function yX(t={}){return t={depth:t.depth||100,newGroupDelay:t.newGroupDelay||500},new mt({key:na,state:{init(){return new Ds(Ar.empty,Ar.empty,null,0,-1)},apply(e,n,r){return pX(n,r,e,t)}},config:t,props:{handleDOMEvents:{beforeinput(e,n){let r=n.inputType,i=r=="historyUndo"?B8:r=="historyRedo"?M8:null;return!i||!e.editable?!1:(n.preventDefault(),i(e.state,e.dispatch))}}}})}function A8(t,e){return(n,r)=>{let i=na.getState(n);if(!i||(t?i.undone:i.done).eventCount==0)return!1;if(r){let s=gX(i,n,t);s&&r(e?s.scrollIntoView():s)}return!0}}const B8=A8(!1,!0),M8=A8(!0,!0);gt.create({name:"characterCount",addOptions(){return{limit:null,autoTrim:!0,mode:"textSize",textCounter:t=>t.length,wordCounter:t=>t.split(" ").filter(e=>e!=="").length}},addStorage(){return{characters:()=>0,words:()=>0}},onBeforeCreate(){this.storage.characters=t=>{const e=t?.node||this.editor.state.doc;if((t?.mode||this.options.mode)==="textSize"){const r=e.textBetween(0,e.content.size,void 0," ");return this.options.textCounter(r)}return e.nodeSize},this.storage.words=t=>{const e=t?.node||this.editor.state.doc,n=e.textBetween(0,e.content.size," "," ");return this.options.wordCounter(n)}},addProseMirrorPlugins(){let t=!1;return[new mt({key:new Kt("characterCount"),appendTransaction:(e,n,r)=>{if(t)return;const i=this.options.limit,s=this.options.autoTrim;if(i==null||i===0||s===!1){t=!0;return}const a=this.storage.characters({node:r.doc});if(a>i){const u=a-i,c=0,f=u;console.warn(`[CharacterCount] Initial content exceeded limit of ${i} characters. Content was automatically trimmed.`);const h=r.tr.deleteRange(c,f);return t=!0,h}t=!0},filterTransaction:(e,n)=>{const r=this.options.limit;if(!e.docChanged||r===0||r===null||r===void 0)return!0;const i=this.storage.characters({node:n.doc}),s=this.storage.characters({node:e.doc});if(s<=r||i>r&&s>r&&s<=i)return!0;if(i>r&&s>r&&s>i||!e.getMeta("paste"))return!1;const u=e.selection.$head.pos,c=s-r,f=u-c,h=u;return e.deleteRange(f,h),!(this.storage.characters({node:e.doc})>r)}})]}});var xX=gt.create({name:"dropCursor",addOptions(){return{color:"currentColor",width:1,class:void 0}},addProseMirrorPlugins(){return[tX(this.options)]}});gt.create({name:"focus",addOptions(){return{className:"has-focus",mode:"all"}},addProseMirrorPlugins(){return[new mt({key:new Kt("focus"),props:{decorations:({doc:t,selection:e})=>{const{isEditable:n,isFocused:r}=this.editor,{anchor:i}=e,s=[];if(!n||!r)return ut.create(t,[]);let a=0;this.options.mode==="deepest"&&t.descendants((c,f)=>{if(c.isText)return;if(!(i>=f&&i<=f+c.nodeSize-1))return!1;a+=1});let u=0;return t.descendants((c,f)=>{if(c.isText||!(i>=f&&i<=f+c.nodeSize-1))return!1;if(u+=1,this.options.mode==="deepest"&&a-u>0||this.options.mode==="shallowest"&&u>1)return this.options.mode==="deepest";s.push(vn.node(f,f+c.nodeSize,{class:this.options.className}))}),ut.create(t,s)}}})]}});var vX=gt.create({name:"gapCursor",addProseMirrorPlugins(){return[sX()]},extendNodeSchema(t){var e;const n={name:t.name,options:t.options,storage:t.storage};return{allowGapCursor:(e=Qe(ye(t,"allowGapCursor",n)))!=null?e:null}}}),R8="placeholder",LD=new Kt("tiptap__placeholder");function N8(t){const{editor:e,placeholder:n,dataAttribute:r,pos:i,node:s,isEmptyDoc:a,hasAnchor:u,classes:{emptyNode:c,emptyEditor:f}}=t,h=[c];return a&&h.push(f),vn.node(i,i+s.nodeSize,{class:h.join(" "),[r]:typeof n=="function"?n({editor:e,node:s,pos:i,hasAnchor:u}):n})}function P8(t,e){return typeof t=="function"?t(e):t}function O8({editor:t,options:e,dataAttribute:n,doc:r,selection:i,from:s,to:a}){const{anchor:u}=i,c=[],f=t.isEmpty;return r.nodesBetween(s,a,(h,m)=>{const g=u>=m&&u<=m+h.nodeSize,b=!h.isLeaf&&$d(h);return h.type.isTextblock&&(g||!e.showOnlyCurrent)&&b&&c.push(N8({editor:t,isEmptyDoc:f,dataAttribute:n,hasAnchor:g,placeholder:e.placeholder,classes:{emptyEditor:e.emptyEditorClass,emptyNode:P8(e.emptyNodeClass,{editor:t,node:h,pos:m,hasAnchor:g})},node:h,pos:m})),e.includeChildren}),c}function L8({editor:t,options:e,dataAttribute:n,doc:r,selection:i}){if(!(t.isEditable||!e.showOnlyWhenEditable))return null;const{anchor:a}=i,u=[],c=t.isEmpty;if(e.showOnlyCurrent&&!e.includeChildren){const h=r.resolve(a),m=h.depth>0?h.node(1):h.nodeAfter,g=h.depth>0?h.before(1):a;if(m&&m.type.isTextblock&&$d(m)){const b=a>=g&&a<=g+m.nodeSize;u.push(N8({editor:t,isEmptyDoc:c,dataAttribute:n,hasAnchor:b,placeholder:e.placeholder,classes:{emptyEditor:e.emptyEditorClass,emptyNode:P8(e.emptyNodeClass,{editor:t,node:m,pos:g,hasAnchor:b})},node:m,pos:g}))}}else u.push(...O8({editor:t,options:e,dataAttribute:n,doc:r,selection:i,from:0,to:r.content.size}));return ut.create(r,u)}function $c(t,e){var n;const r=t.resolve(e);if(r.depth===0){const a=(n=r.nodeAfter)!=null?n:r.nodeBefore;if(!a)return{from:e,to:e};const u=r.nodeAfter?e:e-a.nodeSize;return{from:u,to:u+a.nodeSize}}const i=r.before(1),s=r.node(1);return{from:i,to:i+s.nodeSize}}function Tc(t,e){return{from:Math.max(0,e.from-1),to:Math.min(t.content.size,e.to-1)}}function kX(t,e,n){const r=[];return t.forEach((i,s)=>{const a=s,u=a+i.nodeSize,c=a+1,f=u+1;c<n&&f>e&&r.push({from:a,to:u})}),r}function CX(t){if(t.length===0)return[];const e=[...t].sort((r,i)=>r.from-i.from),n=[{...e[0]}];for(let r=1;r<e.length;r+=1){const i=n[n.length-1],s=e[r];s.from<=i.to?i.to=Math.max(i.to,s.to):n.push({...s})}return n}function EX(t,e){const n=kX(t,e.from,e.to);return n.push(Tc(t,$c(t,e.from))),e.to>e.from?n.push(Tc(t,$c(t,Math.min(e.to,t.content.size+1)-1))):e.from<t.content.size+1&&n.push(Tc(t,$c(t,Math.min(e.from+1,t.content.size)))),n}function DX(t,e,n){const r=[];if(t.docChanged){const i=Bx(t);for(const s of i)r.push(...EX(n.doc,s.newRange))}return t.selectionSet&&(r.push(Tc(n.doc,$c(n.doc,t.mapping.map(e.selection.anchor)))),r.push(Tc(n.doc,$c(n.doc,n.selection.anchor)))),CX(r)}function SX(t,e,n){const r=Math.max(0,Math.min(t,n.content.size)),i=Math.max(r,Math.min(e,n.content.size));return{from:r,to:i}}function wX({decorations:t,ranges:e,editor:n,options:r,dataAttribute:i,doc:s,selection:a}){let u=t;for(const c of e){const{from:f,to:h}=SX(c.from,c.to,s),m=u.find(f,h).filter(b=>b.from>=f&&b.to<=h);m.length&&(u=u.remove(m));const g=O8({editor:n,options:r,dataAttribute:i,doc:s,selection:a,from:f,to:h});g.length&&(u=u.add(s,g))}return u}function $X({editor:t,options:e,dataAttribute:n}){return{init(r,i){const s=L8({editor:t,options:e,dataAttribute:n,doc:i.doc,selection:i.selection});return s??ut.empty},apply(r,i,s,a){if(!r.docChanged&&!r.selectionSet)return i;const u=i.map(r.mapping,r.doc),c=DX(r,s,a);return wX({decorations:u,ranges:c,editor:t,options:e,dataAttribute:n,doc:a.doc,selection:a.selection})}}}function TX(t){return t.replace(/\s+/g,"-").replace(/[^a-zA-Z0-9-]/g,"").replace(/^[0-9-]+/,"").replace(/^-+/,"").toLowerCase()}function AX({editor:t,options:e}){const n=e.dataAttribute?`data-${TX(e.dataAttribute)}`:`data-${R8}`,r=e.showOnlyCurrent&&!e.includeChildren;return new mt({key:LD,...r?{}:{state:$X({editor:t,options:e,dataAttribute:n})},props:{decorations:r?({doc:i,selection:s})=>L8({editor:t,options:e,dataAttribute:n,doc:i,selection:s}):i=>{var s;return e.showOnlyWhenEditable&&!t.isEditable?ut.empty:(s=LD.getState(i))!=null?s:ut.empty}}})}var BX=gt.create({name:"placeholder",addOptions(){return{emptyEditorClass:"is-editor-empty",emptyNodeClass:"is-empty",dataAttribute:R8,placeholder:"Write something …",showOnlyWhenEditable:!0,showOnlyCurrent:!0,includeChildren:!1}},addProseMirrorPlugins(){return[AX({editor:this.editor,options:this.options})]}});function G4(t,e){return!t.selection.empty&&!G7(t.selection)&&e.isEditable}function MX(t,e){return G4(t,e)&&!e.isFocused&&!e.view.dragging}function RX(){var t;(t=window.getSelection())==null||t.removeAllRanges()}function NX(t){t.focus()}gt.create({name:"selection",addOptions(){return{className:"selection"}},addProseMirrorPlugins(){const{editor:t,options:e}=this;return[new mt({key:new Kt("selection"),props:{decorations(n){return MX(n,t)?ut.create(n.doc,[vn.inline(n.selection.from,n.selection.to,{class:e.className})]):null},handleDOMEvents:{blur(n){return G4(n.state,t)&&RX(),!1},focus(n){return G4(n.state,t)&&requestAnimationFrame(()=>{!t.isDestroyed&&n.hasFocus()&&NX(n)}),!1}}}})]}});var PX="skipTrailingNode";function zD({types:t,node:e}){return e&&Array.isArray(t)&&t.includes(e.type)||e?.type===t}var OX=gt.create({name:"trailingNode",addOptions(){return{node:void 0,notAfter:[]}},addProseMirrorPlugins(){var t;const e=new Kt(this.name),n=this.options.node||((t=this.editor.schema.topNodeType.contentMatch.defaultType)==null?void 0:t.name)||"paragraph",r=Object.entries(this.editor.schema.nodes).map(([,i])=>i).filter(i=>(this.options.notAfter||[]).concat(n).includes(i.name));return[new mt({key:e,appendTransaction:(i,s,a)=>{const{doc:u,tr:c,schema:f}=a,h=e.getState(a),m=u.content.size,g=f.nodes[n];if(!i.some(b=>b.getMeta(PX))&&h)return c.insert(m,g.create())},state:{init:(i,s)=>{const a=s.tr.doc.lastChild;return!zD({node:a,types:r})},apply:(i,s)=>{if(!i.docChanged||i.getMeta("__uniqueIDTransaction"))return s;const a=i.doc.lastChild;return!zD({node:a,types:r})}}})]}}),LX=gt.create({name:"undoRedo",addOptions(){return{depth:100,newGroupDelay:500}},addCommands(){return{undo:()=>({state:t,dispatch:e})=>B8(t,e),redo:()=>({state:t,dispatch:e})=>M8(t,e)}},addProseMirrorPlugins(){return[yX(this.options)]},addKeyboardShortcuts(){return{"Mod-z":()=>this.editor.commands.undo(),"Shift-Mod-z":()=>this.editor.commands.redo(),"Mod-y":()=>this.editor.commands.redo(),"Mod-я":()=>this.editor.commands.undo(),"Shift-Mod-я":()=>this.editor.commands.redo()}}});function Fx(){return{async:!1,breaks:!1,extensions:null,gfm:!0,hooks:null,pedantic:!1,renderer:null,silent:!1,tokenizer:null,walkTokens:null}}var Da=Fx();function z8(t){Da=t}var Ro={exec:()=>null};function He(t,e=""){let n=typeof t=="string"?t:t.source,r={replace:(i,s)=>{let a=typeof s=="string"?s:s.source;return a=a.replace(kn.caret,"$1"),n=n.replace(i,a),r},getRegex:()=>new RegExp(n,e)};return r}var zX=(()=>{try{return!!new RegExp("(?<=1)(?<!1)")}catch{return!1}})(),kn={codeRemoveIndent:/^(?: {1,4}| {0,3}\t)/gm,outputLinkReplace:/\\([\[\]])/g,indentCodeCompensation:/^(\s+)(?:```)/,beginningSpace:/^\s+/,endingHash:/#$/,startingSpaceChar:/^ /,endingSpaceChar:/ $/,nonSpaceChar:/[^ ]/,newLineCharGlobal:/\n/g,tabCharGlobal:/\t/g,multipleSpaceGlobal:/\s+/g,blankLine:/^[ \t]*$/,doubleBlankLine:/\n[ \t]*\n[ \t]*$/,blockquoteStart:/^ {0,3}>/,blockquoteSetextReplace:/\n {0,3}((?:=+|-+) *)(?=\n|$)/g,blockquoteSetextReplace2:/^ {0,3}>[ \t]?/gm,listReplaceNesting:/^ {1,4}(?=( {4})*[^ ])/g,listIsTask:/^\[[ xX]\] +\S/,listReplaceTask:/^\[[ xX]\] +/,listTaskCheckbox:/\[[ xX]\]/,anyLine:/\n.*\n/,hrefBrackets:/^<(.*)>$/,tableDelimiter:/[:|]/,tableAlignChars:/^\||\| *$/g,tableRowBlankLine:/\n[ \t]*$/,tableAlignRight:/^ *-+: *$/,tableAlignCenter:/^ *:-+: *$/,tableAlignLeft:/^ *:-+ *$/,startATag:/^<a /i,endATag:/^<\/a>/i,startPreScriptTag:/^<(pre|code|kbd|script)(\s|>)/i,endPreScriptTag:/^<\/(pre|code|kbd|script)(\s|>)/i,startAngleBracket:/^</,endAngleBracket:/>$/,pedanticHrefTitle:/^([^'"]*[^\s])\s+(['"])(.*)\2/,unicodeAlphaNumeric:/[\p{L}\p{N}]/u,escapeTest:/[&<>"']/,escapeReplace:/[&<>"']/g,escapeTestNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,escapeReplaceNoEncode:/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/g,caret:/(^|[^\[])\^/g,percentDecode:/%25/g,findPipe:/\|/g,splitPipe:/ \|/,slashPipe:/\\\|/g,carriageReturn:/\r\n|\r/g,spaceLine:/^ +$/gm,notSpaceStart:/^\S*/,endingNewline:/\n$/,listItemRegex:t=>new RegExp(`^( {0,3}${t})((?:[ ][^\\n]*)?(?:\\n|$))`),nextBulletRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))`),hrRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)`),fencesBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}(?:\`\`\`|~~~)`),headingBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}#`),htmlBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}<(?:[a-z].*>|!--)`,"i"),blockquoteBeginRegex:t=>new RegExp(`^ {0,${Math.min(3,t-1)}}>`)},IX=/^(?:[ \t]*(?:\n|$))+/,jX=/^((?: {4}| {0,3}\t)[^\n]+(?:\n(?:[ \t]*(?:\n|$))*)?)+/,FX=/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,Ad=/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,KX=/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,Kx=/ {0,3}(?:[*+-]|\d{1,9}[.)])/,I8=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,j8=He(I8).replace(/bull/g,Kx).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),_X=He(I8).replace(/bull/g,Kx).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/table/g,/ {0,3}\|?(?:[:\- ]*\|)+[\:\- ]*\n/).getRegex(),_x=/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,VX=/^[^\n]+/,Vx=/(?!\s*\])(?:\\[\s\S]|[^\[\]\\])+/,HX=He(/^ {0,3}\[(label)\]: *(?:\n[ \t]*)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n[ \t]*)?| *\n[ \t]*)(title))? *(?:\n+|$)/).replace("label",Vx).replace("title",/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/).getRegex(),UX=He(/^(bull)([ \t][^\n]+?)?(?:\n|$)/).replace(/bull/g,Kx).getRegex(),Um="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|search|section|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",Hx=/<!--(?:-?>|[\s\S]*?(?:-->|$))/,qX=He("^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:</\\1>[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|<![A-Z][\\s\\S]*?(?:>\\n*|$)|<!\\[CDATA\\[[\\s\\S]*?(?:\\]\\]>\\n*|$)|</?(tag)(?: +|\\n|/?>)[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$)|</(?!script|pre|style|textarea)[a-z][\\w-]*\\s*>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n[ ]*)+\\n|$))","i").replace("comment",Hx).replace("tag",Um).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),F8=He(_x).replace("hr",Ad).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)])[ \\t]").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Um).getRegex(),GX=He(/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/).replace("paragraph",F8).getRegex(),Ux={blockquote:GX,code:jX,def:HX,fences:FX,heading:KX,hr:Ad,html:qX,lheading:j8,list:UX,newline:IX,paragraph:F8,table:Ro,text:VX},ID=He("^ *([^\\n ].*)\\n {0,3}((?:\\| *)?:?-+:? *(?:\\| *:?-+:? *)*(?:\\| *)?)(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)").replace("hr",Ad).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("blockquote"," {0,3}>").replace("code","(?: {4}| {0,3} )[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)])[ \\t]").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Um).getRegex(),WX={...Ux,lheading:_X,table:ID,paragraph:He(_x).replace("hr",Ad).replace("heading"," {0,3}#{1,6}(?:\\s|$)").replace("|lheading","").replace("table",ID).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)])[ \\t]").replace("html","</?(?:tag)(?: +|\\n|/?>)|<(?:script|pre|style|textarea|!--)").replace("tag",Um).getRegex()},QX={...Ux,html:He(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+?</\\1> *(?:\\n{2,}|\\s*$)|<tag(?:"[^"]*"|'[^']*'|\\s[^'"/>\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",Hx).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:Ro,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:He(_x).replace("hr",Ad).replace("heading",` *#{1,6} *[^
136
+ ]`).replace("lheading",j8).replace("|table","").replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").replace("|tag","").getRegex()},YX=/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,XX=/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,K8=/^( {2,}|\\)\n(?!\s*$)/,JX=/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\<!\[`*_]|\b_|$)|[^ ](?= {2,}\n)))/,Xl=/[\p{P}\p{S}]/u,qm=/[\s\p{P}\p{S}]/u,qx=/[^\s\p{P}\p{S}]/u,ZX=He(/^((?![*_])punctSpace)/,"u").replace(/punctSpace/g,qm).getRegex(),_8=/(?!~)[\p{P}\p{S}]/u,eJ=/(?!~)[\s\p{P}\p{S}]/u,tJ=/(?:[^\s\p{P}\p{S}]|~)/u,nJ=He(/link|precode-code|html/,"g").replace("link",/\[(?:[^\[\]`]|(?<a>`+)[^`]+\k<a>(?!`))*?\]\((?:\\[\s\S]|[^\\\(\)]|\((?:\\[\s\S]|[^\\\(\)])*\))*\)/).replace("precode-",zX?"(?<!`)()":"(^^|[^`])").replace("code",/(?<b>`+)[^`]+\k<b>(?!`)/).replace("html",/<(?! )[^<>]*?>/).getRegex(),V8=/^(?:\*+(?:((?!\*)punct)|([^\s*]))?)|^_+(?:((?!_)punct)|([^\s_]))?/,rJ=He(V8,"u").replace(/punct/g,Xl).getRegex(),iJ=He(V8,"u").replace(/punct/g,_8).getRegex(),H8="^[^_*]*?__[^_*]*?\\*[^_*]*?(?=__)|[^*]+(?=[^*])|(?!\\*)punct(\\*+)(?=[\\s]|$)|notPunctSpace(\\*+)(?!\\*)(?=punctSpace|$)|(?!\\*)punctSpace(\\*+)(?=notPunctSpace)|[\\s](\\*+)(?!\\*)(?=punct)|(?!\\*)punct(\\*+)(?!\\*)(?=punct)|notPunctSpace(\\*+)(?=notPunctSpace)",sJ=He(H8,"gu").replace(/notPunctSpace/g,qx).replace(/punctSpace/g,qm).replace(/punct/g,Xl).getRegex(),oJ=He(H8,"gu").replace(/notPunctSpace/g,tJ).replace(/punctSpace/g,eJ).replace(/punct/g,_8).getRegex(),aJ=He("^[^_*]*?\\*\\*[^_*]*?_[^_*]*?(?=\\*\\*)|[^_]+(?=[^_])|(?!_)punct(_+)(?=[\\s]|$)|notPunctSpace(_+)(?!_)(?=punctSpace|$)|(?!_)punctSpace(_+)(?=notPunctSpace)|[\\s](_+)(?!_)(?=punct)|(?!_)punct(_+)(?!_)(?=punct)","gu").replace(/notPunctSpace/g,qx).replace(/punctSpace/g,qm).replace(/punct/g,Xl).getRegex(),lJ=He(/^~~?(?:((?!~)punct)|[^\s~])/,"u").replace(/punct/g,Xl).getRegex(),uJ="^[^~]+(?=[^~])|(?!~)punct(~~?)(?=[\\s]|$)|notPunctSpace(~~?)(?!~)(?=punctSpace|$)|(?!~)punctSpace(~~?)(?=notPunctSpace)|[\\s](~~?)(?!~)(?=punct)|(?!~)punct(~~?)(?!~)(?=punct)|notPunctSpace(~~?)(?=notPunctSpace)",cJ=He(uJ,"gu").replace(/notPunctSpace/g,qx).replace(/punctSpace/g,qm).replace(/punct/g,Xl).getRegex(),dJ=He(/\\(punct)/,"gu").replace(/punct/g,Xl).getRegex(),fJ=He(/^<(scheme:[^\s\x00-\x1f<>]*|email)>/).replace("scheme",/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/).replace("email",/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/).getRegex(),hJ=He(Hx).replace("(?:-->|$)","-->").getRegex(),pJ=He("^comment|^</[a-zA-Z][\\w:-]*\\s*>|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^<![a-zA-Z]+\\s[\\s\\S]*?>|^<!\\[CDATA\\[[\\s\\S]*?\\]\\]>").replace("comment",hJ).replace("attribute",/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/).getRegex(),Ap=/(?:\[(?:\\[\s\S]|[^\[\]\\])*\]|\\[\s\S]|`+(?!`)[^`]*?`+(?!`)|``+(?=\])|[^\[\]\\`])*?/,mJ=He(/^!?\[(label)\]\(\s*(href)(?:(?:[ \t]+(?:\n[ \t]*)?|\n[ \t]*)(title))?\s*\)/).replace("label",Ap).replace("href",/<(?:\\.|[^\n<>\\])+>|[^ \t\n\x00-\x1f]*/).replace("title",/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/).getRegex(),U8=He(/^!?\[(label)\]\[(ref)\]/).replace("label",Ap).replace("ref",Vx).getRegex(),q8=He(/^!?\[(ref)\](?:\[\])?/).replace("ref",Vx).getRegex(),gJ=He("reflink|nolink(?!\\()","g").replace("reflink",U8).replace("nolink",q8).getRegex(),jD=/[hH][tT][tT][pP][sS]?|[fF][tT][pP]/,Gx={_backpedal:Ro,anyPunctuation:dJ,autolink:fJ,blockSkip:nJ,br:K8,code:XX,del:Ro,delLDelim:Ro,delRDelim:Ro,emStrongLDelim:rJ,emStrongRDelimAst:sJ,emStrongRDelimUnd:aJ,escape:YX,link:mJ,nolink:q8,punctuation:ZX,reflink:U8,reflinkSearch:gJ,tag:pJ,text:JX,url:Ro},bJ={...Gx,link:He(/^!?\[(label)\]\((.*?)\)/).replace("label",Ap).getRegex(),reflink:He(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",Ap).getRegex()},W4={...Gx,emStrongRDelimAst:oJ,emStrongLDelim:iJ,delLDelim:lJ,delRDelim:cJ,url:He(/^((?:protocol):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/).replace("protocol",jD).replace("email",/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/).getRegex(),_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])((?:\\[\s\S]|[^\\])*?(?:\\[\s\S]|[^\s~\\]))\1(?=[^~]|$)/,text:He(/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\<!\[`*~_]|\b_|protocol:\/\/|www\.|$)|[^ ](?= {2,}\n)|[^a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-](?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)))/).replace("protocol",jD).getRegex()},yJ={...W4,br:He(K8).replace("{2,}","*").getRegex(),text:He(W4.text).replace("\\b_","\\b_| {2,}\\n").replace(/\{2,\}/g,"*").getRegex()},vh={normal:Ux,gfm:WX,pedantic:QX},tc={normal:Gx,gfm:W4,breaks:yJ,pedantic:bJ},xJ={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"},FD=t=>xJ[t];function _r(t,e){if(e){if(kn.escapeTest.test(t))return t.replace(kn.escapeReplace,FD)}else if(kn.escapeTestNoEncode.test(t))return t.replace(kn.escapeReplaceNoEncode,FD);return t}function KD(t){try{t=encodeURI(t).replace(kn.percentDecode,"%")}catch{return null}return t}function _D(t,e){let n=t.replace(kn.findPipe,(s,a,u)=>{let c=!1,f=a;for(;--f>=0&&u[f]==="\\";)c=!c;return c?"|":" |"}),r=n.split(kn.splitPipe),i=0;if(r[0].trim()||r.shift(),r.length>0&&!r.at(-1)?.trim()&&r.pop(),e)if(r.length>e)r.splice(e);else for(;r.length<e;)r.push("");for(;i<r.length;i++)r[i]=r[i].trim().replace(kn.slashPipe,"|");return r}function nc(t,e,n){let r=t.length;if(r===0)return"";let i=0;for(;i<r&&t.charAt(r-i-1)===e;)i++;return t.slice(0,r-i)}function vJ(t,e){if(t.indexOf(e[1])===-1)return-1;let n=0;for(let r=0;r<t.length;r++)if(t[r]==="\\")r++;else if(t[r]===e[0])n++;else if(t[r]===e[1]&&(n--,n<0))return r;return n>0?-2:-1}function kJ(t,e=0){let n=e,r="";for(let i of t)if(i===" "){let s=4-n%4;r+=" ".repeat(s),n+=s}else r+=i,n++;return r}function VD(t,e,n,r,i){let s=e.href,a=e.title||null,u=t[1].replace(i.other.outputLinkReplace,"$1");r.state.inLink=!0;let c={type:t[0].charAt(0)==="!"?"image":"link",raw:n,href:s,title:a,text:u,tokens:r.inlineTokens(u)};return r.state.inLink=!1,c}function CJ(t,e,n){let r=t.match(n.other.indentCodeCompensation);if(r===null)return e;let i=r[1];return e.split(`
137
+ `).map(s=>{let a=s.match(n.other.beginningSpace);if(a===null)return s;let[u]=a;return u.length>=i.length?s.slice(i.length):s}).join(`
138
+ `)}var Bp=class{options;rules;lexer;constructor(t){this.options=t||Da}space(t){let e=this.rules.block.newline.exec(t);if(e&&e[0].length>0)return{type:"space",raw:e[0]}}code(t){let e=this.rules.block.code.exec(t);if(e){let n=e[0].replace(this.rules.other.codeRemoveIndent,"");return{type:"code",raw:e[0],codeBlockStyle:"indented",text:this.options.pedantic?n:nc(n,`
139
+ `)}}}fences(t){let e=this.rules.block.fences.exec(t);if(e){let n=e[0],r=CJ(n,e[3]||"",this.rules);return{type:"code",raw:n,lang:e[2]?e[2].trim().replace(this.rules.inline.anyPunctuation,"$1"):e[2],text:r}}}heading(t){let e=this.rules.block.heading.exec(t);if(e){let n=e[2].trim();if(this.rules.other.endingHash.test(n)){let r=nc(n,"#");(this.options.pedantic||!r||this.rules.other.endingSpaceChar.test(r))&&(n=r.trim())}return{type:"heading",raw:e[0],depth:e[1].length,text:n,tokens:this.lexer.inline(n)}}}hr(t){let e=this.rules.block.hr.exec(t);if(e)return{type:"hr",raw:nc(e[0],`
140
+ `)}}blockquote(t){let e=this.rules.block.blockquote.exec(t);if(e){let n=nc(e[0],`
141
+ `).split(`
142
+ `),r="",i="",s=[];for(;n.length>0;){let a=!1,u=[],c;for(c=0;c<n.length;c++)if(this.rules.other.blockquoteStart.test(n[c]))u.push(n[c]),a=!0;else if(!a)u.push(n[c]);else break;n=n.slice(c);let f=u.join(`
143
+ `),h=f.replace(this.rules.other.blockquoteSetextReplace,`
144
+ $1`).replace(this.rules.other.blockquoteSetextReplace2,"");r=r?`${r}
145
+ ${f}`:f,i=i?`${i}
146
+ ${h}`:h;let m=this.lexer.state.top;if(this.lexer.state.top=!0,this.lexer.blockTokens(h,s,!0),this.lexer.state.top=m,n.length===0)break;let g=s.at(-1);if(g?.type==="code")break;if(g?.type==="blockquote"){let b=g,x=b.raw+`
147
+ `+n.join(`
148
+ `),k=this.blockquote(x);s[s.length-1]=k,r=r.substring(0,r.length-b.raw.length)+k.raw,i=i.substring(0,i.length-b.text.length)+k.text;break}else if(g?.type==="list"){let b=g,x=b.raw+`
149
+ `+n.join(`
150
+ `),k=this.list(x);s[s.length-1]=k,r=r.substring(0,r.length-g.raw.length)+k.raw,i=i.substring(0,i.length-b.raw.length)+k.raw,n=x.substring(s.at(-1).raw.length).split(`
151
+ `);continue}}return{type:"blockquote",raw:r,tokens:s,text:i}}}list(t){let e=this.rules.block.list.exec(t);if(e){let n=e[1].trim(),r=n.length>1,i={type:"list",raw:"",ordered:r,start:r?+n.slice(0,-1):"",loose:!1,items:[]};n=r?`\\d{1,9}\\${n.slice(-1)}`:`\\${n}`,this.options.pedantic&&(n=r?n:"[*+-]");let s=this.rules.other.listItemRegex(n),a=!1;for(;t;){let c=!1,f="",h="";if(!(e=s.exec(t))||this.rules.block.hr.test(t))break;f=e[0],t=t.substring(f.length);let m=kJ(e[2].split(`
152
+ `,1)[0],e[1].length),g=t.split(`
153
+ `,1)[0],b=!m.trim(),x=0;if(this.options.pedantic?(x=2,h=m.trimStart()):b?x=e[1].length+1:(x=m.search(this.rules.other.nonSpaceChar),x=x>4?1:x,h=m.slice(x),x+=e[1].length),b&&this.rules.other.blankLine.test(g)&&(f+=g+`
154
+ `,t=t.substring(g.length+1),c=!0),!c){let k=this.rules.other.nextBulletRegex(x),E=this.rules.other.hrRegex(x),D=this.rules.other.fencesBeginRegex(x),T=this.rules.other.headingBeginRegex(x),$=this.rules.other.htmlBeginRegex(x),A=this.rules.other.blockquoteBeginRegex(x);for(;t;){let B=t.split(`
155
+ `,1)[0],P;if(g=B,this.options.pedantic?(g=g.replace(this.rules.other.listReplaceNesting," "),P=g):P=g.replace(this.rules.other.tabCharGlobal," "),D.test(g)||T.test(g)||$.test(g)||A.test(g)||k.test(g)||E.test(g))break;if(P.search(this.rules.other.nonSpaceChar)>=x||!g.trim())h+=`
156
+ `+P.slice(x);else{if(b||m.replace(this.rules.other.tabCharGlobal," ").search(this.rules.other.nonSpaceChar)>=4||D.test(m)||T.test(m)||E.test(m))break;h+=`
157
+ `+g}b=!g.trim(),f+=B+`
158
+ `,t=t.substring(B.length+1),m=P.slice(x)}}i.loose||(a?i.loose=!0:this.rules.other.doubleBlankLine.test(f)&&(a=!0)),i.items.push({type:"list_item",raw:f,task:!!this.options.gfm&&this.rules.other.listIsTask.test(h),loose:!1,text:h,tokens:[]}),i.raw+=f}let u=i.items.at(-1);if(u)u.raw=u.raw.trimEnd(),u.text=u.text.trimEnd();else return;i.raw=i.raw.trimEnd();for(let c of i.items){if(this.lexer.state.top=!1,c.tokens=this.lexer.blockTokens(c.text,[]),c.task){if(c.text=c.text.replace(this.rules.other.listReplaceTask,""),c.tokens[0]?.type==="text"||c.tokens[0]?.type==="paragraph"){c.tokens[0].raw=c.tokens[0].raw.replace(this.rules.other.listReplaceTask,""),c.tokens[0].text=c.tokens[0].text.replace(this.rules.other.listReplaceTask,"");for(let h=this.lexer.inlineQueue.length-1;h>=0;h--)if(this.rules.other.listIsTask.test(this.lexer.inlineQueue[h].src)){this.lexer.inlineQueue[h].src=this.lexer.inlineQueue[h].src.replace(this.rules.other.listReplaceTask,"");break}}let f=this.rules.other.listTaskCheckbox.exec(c.raw);if(f){let h={type:"checkbox",raw:f[0]+" ",checked:f[0]!=="[ ]"};c.checked=h.checked,i.loose?c.tokens[0]&&["paragraph","text"].includes(c.tokens[0].type)&&"tokens"in c.tokens[0]&&c.tokens[0].tokens?(c.tokens[0].raw=h.raw+c.tokens[0].raw,c.tokens[0].text=h.raw+c.tokens[0].text,c.tokens[0].tokens.unshift(h)):c.tokens.unshift({type:"paragraph",raw:h.raw,text:h.raw,tokens:[h]}):c.tokens.unshift(h)}}if(!i.loose){let f=c.tokens.filter(m=>m.type==="space"),h=f.length>0&&f.some(m=>this.rules.other.anyLine.test(m.raw));i.loose=h}}if(i.loose)for(let c of i.items){c.loose=!0;for(let f of c.tokens)f.type==="text"&&(f.type="paragraph")}return i}}html(t){let e=this.rules.block.html.exec(t);if(e)return{type:"html",block:!0,raw:e[0],pre:e[1]==="pre"||e[1]==="script"||e[1]==="style",text:e[0]}}def(t){let e=this.rules.block.def.exec(t);if(e){let n=e[1].toLowerCase().replace(this.rules.other.multipleSpaceGlobal," "),r=e[2]?e[2].replace(this.rules.other.hrefBrackets,"$1").replace(this.rules.inline.anyPunctuation,"$1"):"",i=e[3]?e[3].substring(1,e[3].length-1).replace(this.rules.inline.anyPunctuation,"$1"):e[3];return{type:"def",tag:n,raw:e[0],href:r,title:i}}}table(t){let e=this.rules.block.table.exec(t);if(!e||!this.rules.other.tableDelimiter.test(e[2]))return;let n=_D(e[1]),r=e[2].replace(this.rules.other.tableAlignChars,"").split("|"),i=e[3]?.trim()?e[3].replace(this.rules.other.tableRowBlankLine,"").split(`
159
+ `):[],s={type:"table",raw:e[0],header:[],align:[],rows:[]};if(n.length===r.length){for(let a of r)this.rules.other.tableAlignRight.test(a)?s.align.push("right"):this.rules.other.tableAlignCenter.test(a)?s.align.push("center"):this.rules.other.tableAlignLeft.test(a)?s.align.push("left"):s.align.push(null);for(let a=0;a<n.length;a++)s.header.push({text:n[a],tokens:this.lexer.inline(n[a]),header:!0,align:s.align[a]});for(let a of i)s.rows.push(_D(a,s.header.length).map((u,c)=>({text:u,tokens:this.lexer.inline(u),header:!1,align:s.align[c]})));return s}}lheading(t){let e=this.rules.block.lheading.exec(t);if(e){let n=e[1].trim();return{type:"heading",raw:e[0],depth:e[2].charAt(0)==="="?1:2,text:n,tokens:this.lexer.inline(n)}}}paragraph(t){let e=this.rules.block.paragraph.exec(t);if(e){let n=e[1].charAt(e[1].length-1)===`
160
+ `?e[1].slice(0,-1):e[1];return{type:"paragraph",raw:e[0],text:n,tokens:this.lexer.inline(n)}}}text(t){let e=this.rules.block.text.exec(t);if(e)return{type:"text",raw:e[0],text:e[0],tokens:this.lexer.inline(e[0])}}escape(t){let e=this.rules.inline.escape.exec(t);if(e)return{type:"escape",raw:e[0],text:e[1]}}tag(t){let e=this.rules.inline.tag.exec(t);if(e)return!this.lexer.state.inLink&&this.rules.other.startATag.test(e[0])?this.lexer.state.inLink=!0:this.lexer.state.inLink&&this.rules.other.endATag.test(e[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&this.rules.other.startPreScriptTag.test(e[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&this.rules.other.endPreScriptTag.test(e[0])&&(this.lexer.state.inRawBlock=!1),{type:"html",raw:e[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,block:!1,text:e[0]}}link(t){let e=this.rules.inline.link.exec(t);if(e){let n=e[2].trim();if(!this.options.pedantic&&this.rules.other.startAngleBracket.test(n)){if(!this.rules.other.endAngleBracket.test(n))return;let s=nc(n.slice(0,-1),"\\");if((n.length-s.length)%2===0)return}else{let s=vJ(e[2],"()");if(s===-2)return;if(s>-1){let a=(e[0].indexOf("!")===0?5:4)+e[1].length+s;e[2]=e[2].substring(0,s),e[0]=e[0].substring(0,a).trim(),e[3]=""}}let r=e[2],i="";if(this.options.pedantic){let s=this.rules.other.pedanticHrefTitle.exec(r);s&&(r=s[1],i=s[3])}else i=e[3]?e[3].slice(1,-1):"";return r=r.trim(),this.rules.other.startAngleBracket.test(r)&&(this.options.pedantic&&!this.rules.other.endAngleBracket.test(n)?r=r.slice(1):r=r.slice(1,-1)),VD(e,{href:r&&r.replace(this.rules.inline.anyPunctuation,"$1"),title:i&&i.replace(this.rules.inline.anyPunctuation,"$1")},e[0],this.lexer,this.rules)}}reflink(t,e){let n;if((n=this.rules.inline.reflink.exec(t))||(n=this.rules.inline.nolink.exec(t))){let r=(n[2]||n[1]).replace(this.rules.other.multipleSpaceGlobal," "),i=e[r.toLowerCase()];if(!i){let s=n[0].charAt(0);return{type:"text",raw:s,text:s}}return VD(n,i,n[0],this.lexer,this.rules)}}emStrong(t,e,n=""){let r=this.rules.inline.emStrongLDelim.exec(t);if(!(!r||!r[1]&&!r[2]&&!r[3]&&!r[4]||r[4]&&n.match(this.rules.other.unicodeAlphaNumeric))&&(!(r[1]||r[3])||!n||this.rules.inline.punctuation.exec(n))){let i=[...r[0]].length-1,s,a,u=i,c=0,f=r[0][0]==="*"?this.rules.inline.emStrongRDelimAst:this.rules.inline.emStrongRDelimUnd;for(f.lastIndex=0,e=e.slice(-1*t.length+i);(r=f.exec(e))!==null;){if(s=r[1]||r[2]||r[3]||r[4]||r[5]||r[6],!s)continue;if(a=[...s].length,r[3]||r[4]){u+=a;continue}else if((r[5]||r[6])&&i%3&&!((i+a)%3)){c+=a;continue}if(u-=a,u>0)continue;a=Math.min(a,a+u+c);let h=[...r[0]][0].length,m=t.slice(0,i+r.index+h+a);if(Math.min(i,a)%2){let b=m.slice(1,-1);return{type:"em",raw:m,text:b,tokens:this.lexer.inlineTokens(b)}}let g=m.slice(2,-2);return{type:"strong",raw:m,text:g,tokens:this.lexer.inlineTokens(g)}}}}codespan(t){let e=this.rules.inline.code.exec(t);if(e){let n=e[2].replace(this.rules.other.newLineCharGlobal," "),r=this.rules.other.nonSpaceChar.test(n),i=this.rules.other.startingSpaceChar.test(n)&&this.rules.other.endingSpaceChar.test(n);return r&&i&&(n=n.substring(1,n.length-1)),{type:"codespan",raw:e[0],text:n}}}br(t){let e=this.rules.inline.br.exec(t);if(e)return{type:"br",raw:e[0]}}del(t,e,n=""){let r=this.rules.inline.delLDelim.exec(t);if(r&&(!r[1]||!n||this.rules.inline.punctuation.exec(n))){let i=[...r[0]].length-1,s,a,u=i,c=this.rules.inline.delRDelim;for(c.lastIndex=0,e=e.slice(-1*t.length+i);(r=c.exec(e))!==null;){if(s=r[1]||r[2]||r[3]||r[4]||r[5]||r[6],!s||(a=[...s].length,a!==i))continue;if(r[3]||r[4]){u+=a;continue}if(u-=a,u>0)continue;a=Math.min(a,a+u);let f=[...r[0]][0].length,h=t.slice(0,i+r.index+f+a),m=h.slice(i,-i);return{type:"del",raw:h,text:m,tokens:this.lexer.inlineTokens(m)}}}}autolink(t){let e=this.rules.inline.autolink.exec(t);if(e){let n,r;return e[2]==="@"?(n=e[1],r="mailto:"+n):(n=e[1],r=n),{type:"link",raw:e[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}}url(t){let e;if(e=this.rules.inline.url.exec(t)){let n,r;if(e[2]==="@")n=e[0],r="mailto:"+n;else{let i;do i=e[0],e[0]=this.rules.inline._backpedal.exec(e[0])?.[0]??"";while(i!==e[0]);n=e[0],e[1]==="www."?r="http://"+e[0]:r=e[0]}return{type:"link",raw:e[0],text:n,href:r,tokens:[{type:"text",raw:n,text:n}]}}}inlineText(t){let e=this.rules.inline.text.exec(t);if(e){let n=this.lexer.state.inRawBlock;return{type:"text",raw:e[0],text:e[0],escaped:n}}}},wr=class Q4{tokens;options;state;inlineQueue;tokenizer;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||Da,this.options.tokenizer=this.options.tokenizer||new Bp,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let n={other:kn,block:vh.normal,inline:tc.normal};this.options.pedantic?(n.block=vh.pedantic,n.inline=tc.pedantic):this.options.gfm&&(n.block=vh.gfm,this.options.breaks?n.inline=tc.breaks:n.inline=tc.gfm),this.tokenizer.rules=n}static get rules(){return{block:vh,inline:tc}}static lex(e,n){return new Q4(n).lex(e)}static lexInline(e,n){return new Q4(n).inlineTokens(e)}lex(e){e=e.replace(kn.carriageReturn,`
161
+ `),this.blockTokens(e,this.tokens);for(let n=0;n<this.inlineQueue.length;n++){let r=this.inlineQueue[n];this.inlineTokens(r.src,r.tokens)}return this.inlineQueue=[],this.tokens}blockTokens(e,n=[],r=!1){for(this.tokenizer.lexer=this,this.options.pedantic&&(e=e.replace(kn.tabCharGlobal," ").replace(kn.spaceLine,""));e;){let i;if(this.options.extensions?.block?.some(a=>(i=a.call({lexer:this},e,n))?(e=e.substring(i.raw.length),n.push(i),!0):!1))continue;if(i=this.tokenizer.space(e)){e=e.substring(i.raw.length);let a=n.at(-1);i.raw.length===1&&a!==void 0?a.raw+=`
162
+ `:n.push(i);continue}if(i=this.tokenizer.code(e)){e=e.substring(i.raw.length);let a=n.at(-1);a?.type==="paragraph"||a?.type==="text"?(a.raw+=(a.raw.endsWith(`
163
+ `)?"":`
164
+ `)+i.raw,a.text+=`
165
+ `+i.text,this.inlineQueue.at(-1).src=a.text):n.push(i);continue}if(i=this.tokenizer.fences(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.heading(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.hr(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.blockquote(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.list(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.html(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.def(e)){e=e.substring(i.raw.length);let a=n.at(-1);a?.type==="paragraph"||a?.type==="text"?(a.raw+=(a.raw.endsWith(`
166
+ `)?"":`
167
+ `)+i.raw,a.text+=`
168
+ `+i.raw,this.inlineQueue.at(-1).src=a.text):this.tokens.links[i.tag]||(this.tokens.links[i.tag]={href:i.href,title:i.title},n.push(i));continue}if(i=this.tokenizer.table(e)){e=e.substring(i.raw.length),n.push(i);continue}if(i=this.tokenizer.lheading(e)){e=e.substring(i.raw.length),n.push(i);continue}let s=e;if(this.options.extensions?.startBlock){let a=1/0,u=e.slice(1),c;this.options.extensions.startBlock.forEach(f=>{c=f.call({lexer:this},u),typeof c=="number"&&c>=0&&(a=Math.min(a,c))}),a<1/0&&a>=0&&(s=e.substring(0,a+1))}if(this.state.top&&(i=this.tokenizer.paragraph(s))){let a=n.at(-1);r&&a?.type==="paragraph"?(a.raw+=(a.raw.endsWith(`
169
+ `)?"":`
170
+ `)+i.raw,a.text+=`
171
+ `+i.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=a.text):n.push(i),r=s.length!==e.length,e=e.substring(i.raw.length);continue}if(i=this.tokenizer.text(e)){e=e.substring(i.raw.length);let a=n.at(-1);a?.type==="text"?(a.raw+=(a.raw.endsWith(`
172
+ `)?"":`
173
+ `)+i.raw,a.text+=`
174
+ `+i.text,this.inlineQueue.pop(),this.inlineQueue.at(-1).src=a.text):n.push(i);continue}if(e){let a="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(a);break}else throw new Error(a)}}return this.state.top=!0,n}inline(e,n=[]){return this.inlineQueue.push({src:e,tokens:n}),n}inlineTokens(e,n=[]){this.tokenizer.lexer=this;let r=e,i=null;if(this.tokens.links){let c=Object.keys(this.tokens.links);if(c.length>0)for(;(i=this.tokenizer.rules.inline.reflinkSearch.exec(r))!==null;)c.includes(i[0].slice(i[0].lastIndexOf("[")+1,-1))&&(r=r.slice(0,i.index)+"["+"a".repeat(i[0].length-2)+"]"+r.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(i=this.tokenizer.rules.inline.anyPunctuation.exec(r))!==null;)r=r.slice(0,i.index)+"++"+r.slice(this.tokenizer.rules.inline.anyPunctuation.lastIndex);let s;for(;(i=this.tokenizer.rules.inline.blockSkip.exec(r))!==null;)s=i[2]?i[2].length:0,r=r.slice(0,i.index+s)+"["+"a".repeat(i[0].length-s-2)+"]"+r.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);r=this.options.hooks?.emStrongMask?.call({lexer:this},r)??r;let a=!1,u="";for(;e;){a||(u=""),a=!1;let c;if(this.options.extensions?.inline?.some(h=>(c=h.call({lexer:this},e,n))?(e=e.substring(c.raw.length),n.push(c),!0):!1))continue;if(c=this.tokenizer.escape(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.tag(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.link(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.reflink(e,this.tokens.links)){e=e.substring(c.raw.length);let h=n.at(-1);c.type==="text"&&h?.type==="text"?(h.raw+=c.raw,h.text+=c.text):n.push(c);continue}if(c=this.tokenizer.emStrong(e,r,u)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.codespan(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.br(e)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.del(e,r,u)){e=e.substring(c.raw.length),n.push(c);continue}if(c=this.tokenizer.autolink(e)){e=e.substring(c.raw.length),n.push(c);continue}if(!this.state.inLink&&(c=this.tokenizer.url(e))){e=e.substring(c.raw.length),n.push(c);continue}let f=e;if(this.options.extensions?.startInline){let h=1/0,m=e.slice(1),g;this.options.extensions.startInline.forEach(b=>{g=b.call({lexer:this},m),typeof g=="number"&&g>=0&&(h=Math.min(h,g))}),h<1/0&&h>=0&&(f=e.substring(0,h+1))}if(c=this.tokenizer.inlineText(f)){e=e.substring(c.raw.length),c.raw.slice(-1)!=="_"&&(u=c.raw.slice(-1)),a=!0;let h=n.at(-1);h?.type==="text"?(h.raw+=c.raw,h.text+=c.text):n.push(c);continue}if(e){let h="Infinite loop on byte: "+e.charCodeAt(0);if(this.options.silent){console.error(h);break}else throw new Error(h)}}return n}},Mp=class{options;parser;constructor(t){this.options=t||Da}space(t){return""}code({text:t,lang:e,escaped:n}){let r=(e||"").match(kn.notSpaceStart)?.[0],i=t.replace(kn.endingNewline,"")+`
175
+ `;return r?'<pre><code class="language-'+_r(r)+'">'+(n?i:_r(i,!0))+`</code></pre>
176
+ `:"<pre><code>"+(n?i:_r(i,!0))+`</code></pre>
177
+ `}blockquote({tokens:t}){return`<blockquote>
178
+ ${this.parser.parse(t)}</blockquote>
179
+ `}html({text:t}){return t}def(t){return""}heading({tokens:t,depth:e}){return`<h${e}>${this.parser.parseInline(t)}</h${e}>
180
+ `}hr(t){return`<hr>
181
+ `}list(t){let e=t.ordered,n=t.start,r="";for(let a=0;a<t.items.length;a++){let u=t.items[a];r+=this.listitem(u)}let i=e?"ol":"ul",s=e&&n!==1?' start="'+n+'"':"";return"<"+i+s+`>
182
+ `+r+"</"+i+`>
183
+ `}listitem(t){return`<li>${this.parser.parse(t.tokens)}</li>
184
+ `}checkbox({checked:t}){return"<input "+(t?'checked="" ':"")+'disabled="" type="checkbox"> '}paragraph({tokens:t}){return`<p>${this.parser.parseInline(t)}</p>
185
+ `}table(t){let e="",n="";for(let i=0;i<t.header.length;i++)n+=this.tablecell(t.header[i]);e+=this.tablerow({text:n});let r="";for(let i=0;i<t.rows.length;i++){let s=t.rows[i];n="";for(let a=0;a<s.length;a++)n+=this.tablecell(s[a]);r+=this.tablerow({text:n})}return r&&(r=`<tbody>${r}</tbody>`),`<table>
186
+ <thead>
187
+ `+e+`</thead>
188
+ `+r+`</table>
189
+ `}tablerow({text:t}){return`<tr>
190
+ ${t}</tr>
191
+ `}tablecell(t){let e=this.parser.parseInline(t.tokens),n=t.header?"th":"td";return(t.align?`<${n} align="${t.align}">`:`<${n}>`)+e+`</${n}>
192
+ `}strong({tokens:t}){return`<strong>${this.parser.parseInline(t)}</strong>`}em({tokens:t}){return`<em>${this.parser.parseInline(t)}</em>`}codespan({text:t}){return`<code>${_r(t,!0)}</code>`}br(t){return"<br>"}del({tokens:t}){return`<del>${this.parser.parseInline(t)}</del>`}link({href:t,title:e,tokens:n}){let r=this.parser.parseInline(n),i=KD(t);if(i===null)return r;t=i;let s='<a href="'+t+'"';return e&&(s+=' title="'+_r(e)+'"'),s+=">"+r+"</a>",s}image({href:t,title:e,text:n,tokens:r}){r&&(n=this.parser.parseInline(r,this.parser.textRenderer));let i=KD(t);if(i===null)return _r(n);t=i;let s=`<img src="${t}" alt="${_r(n)}"`;return e&&(s+=` title="${_r(e)}"`),s+=">",s}text(t){return"tokens"in t&&t.tokens?this.parser.parseInline(t.tokens):"escaped"in t&&t.escaped?t.text:_r(t.text)}},Wx=class{strong({text:t}){return t}em({text:t}){return t}codespan({text:t}){return t}del({text:t}){return t}html({text:t}){return t}text({text:t}){return t}link({text:t}){return""+t}image({text:t}){return""+t}br(){return""}checkbox({raw:t}){return t}},$r=class Y4{options;renderer;textRenderer;constructor(e){this.options=e||Da,this.options.renderer=this.options.renderer||new Mp,this.renderer=this.options.renderer,this.renderer.options=this.options,this.renderer.parser=this,this.textRenderer=new Wx}static parse(e,n){return new Y4(n).parse(e)}static parseInline(e,n){return new Y4(n).parseInline(e)}parse(e){this.renderer.parser=this;let n="";for(let r=0;r<e.length;r++){let i=e[r];if(this.options.extensions?.renderers?.[i.type]){let a=i,u=this.options.extensions.renderers[a.type].call({parser:this},a);if(u!==!1||!["space","hr","heading","code","table","blockquote","list","html","def","paragraph","text"].includes(a.type)){n+=u||"";continue}}let s=i;switch(s.type){case"space":{n+=this.renderer.space(s);break}case"hr":{n+=this.renderer.hr(s);break}case"heading":{n+=this.renderer.heading(s);break}case"code":{n+=this.renderer.code(s);break}case"table":{n+=this.renderer.table(s);break}case"blockquote":{n+=this.renderer.blockquote(s);break}case"list":{n+=this.renderer.list(s);break}case"checkbox":{n+=this.renderer.checkbox(s);break}case"html":{n+=this.renderer.html(s);break}case"def":{n+=this.renderer.def(s);break}case"paragraph":{n+=this.renderer.paragraph(s);break}case"text":{n+=this.renderer.text(s);break}default:{let a='Token with "'+s.type+'" type was not found.';if(this.options.silent)return console.error(a),"";throw new Error(a)}}}return n}parseInline(e,n=this.renderer){this.renderer.parser=this;let r="";for(let i=0;i<e.length;i++){let s=e[i];if(this.options.extensions?.renderers?.[s.type]){let u=this.options.extensions.renderers[s.type].call({parser:this},s);if(u!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(s.type)){r+=u||"";continue}}let a=s;switch(a.type){case"escape":{r+=n.text(a);break}case"html":{r+=n.html(a);break}case"link":{r+=n.link(a);break}case"image":{r+=n.image(a);break}case"checkbox":{r+=n.checkbox(a);break}case"strong":{r+=n.strong(a);break}case"em":{r+=n.em(a);break}case"codespan":{r+=n.codespan(a);break}case"br":{r+=n.br(a);break}case"del":{r+=n.del(a);break}case"text":{r+=n.text(a);break}default:{let u='Token with "'+a.type+'" type was not found.';if(this.options.silent)return console.error(u),"";throw new Error(u)}}}return r}},gc=class{options;block;constructor(t){this.options=t||Da}static passThroughHooks=new Set(["preprocess","postprocess","processAllTokens","emStrongMask"]);static passThroughHooksRespectAsync=new Set(["preprocess","postprocess","processAllTokens"]);preprocess(t){return t}postprocess(t){return t}processAllTokens(t){return t}emStrongMask(t){return t}provideLexer(t=this.block){return t?wr.lex:wr.lexInline}provideParser(t=this.block){return t?$r.parse:$r.parseInline}},EJ=class{defaults=Fx();options=this.setOptions;parse=this.parseMarkdown(!0);parseInline=this.parseMarkdown(!1);Parser=$r;Renderer=Mp;TextRenderer=Wx;Lexer=wr;Tokenizer=Bp;Hooks=gc;constructor(...t){this.use(...t)}walkTokens(t,e){let n=[];for(let r of t)switch(n=n.concat(e.call(this,r)),r.type){case"table":{let i=r;for(let s of i.header)n=n.concat(this.walkTokens(s.tokens,e));for(let s of i.rows)for(let a of s)n=n.concat(this.walkTokens(a.tokens,e));break}case"list":{let i=r;n=n.concat(this.walkTokens(i.items,e));break}default:{let i=r;this.defaults.extensions?.childTokens?.[i.type]?this.defaults.extensions.childTokens[i.type].forEach(s=>{let a=i[s].flat(1/0);n=n.concat(this.walkTokens(a,e))}):i.tokens&&(n=n.concat(this.walkTokens(i.tokens,e)))}}return n}use(...t){let e=this.defaults.extensions||{renderers:{},childTokens:{}};return t.forEach(n=>{let r={...n};if(r.async=this.defaults.async||r.async||!1,n.extensions&&(n.extensions.forEach(i=>{if(!i.name)throw new Error("extension name required");if("renderer"in i){let s=e.renderers[i.name];s?e.renderers[i.name]=function(...a){let u=i.renderer.apply(this,a);return u===!1&&(u=s.apply(this,a)),u}:e.renderers[i.name]=i.renderer}if("tokenizer"in i){if(!i.level||i.level!=="block"&&i.level!=="inline")throw new Error("extension level must be 'block' or 'inline'");let s=e[i.level];s?s.unshift(i.tokenizer):e[i.level]=[i.tokenizer],i.start&&(i.level==="block"?e.startBlock?e.startBlock.push(i.start):e.startBlock=[i.start]:i.level==="inline"&&(e.startInline?e.startInline.push(i.start):e.startInline=[i.start]))}"childTokens"in i&&i.childTokens&&(e.childTokens[i.name]=i.childTokens)}),r.extensions=e),n.renderer){let i=this.defaults.renderer||new Mp(this.defaults);for(let s in n.renderer){if(!(s in i))throw new Error(`renderer '${s}' does not exist`);if(["options","parser"].includes(s))continue;let a=s,u=n.renderer[a],c=i[a];i[a]=(...f)=>{let h=u.apply(i,f);return h===!1&&(h=c.apply(i,f)),h||""}}r.renderer=i}if(n.tokenizer){let i=this.defaults.tokenizer||new Bp(this.defaults);for(let s in n.tokenizer){if(!(s in i))throw new Error(`tokenizer '${s}' does not exist`);if(["options","rules","lexer"].includes(s))continue;let a=s,u=n.tokenizer[a],c=i[a];i[a]=(...f)=>{let h=u.apply(i,f);return h===!1&&(h=c.apply(i,f)),h}}r.tokenizer=i}if(n.hooks){let i=this.defaults.hooks||new gc;for(let s in n.hooks){if(!(s in i))throw new Error(`hook '${s}' does not exist`);if(["options","block"].includes(s))continue;let a=s,u=n.hooks[a],c=i[a];gc.passThroughHooks.has(s)?i[a]=f=>{if(this.defaults.async&&gc.passThroughHooksRespectAsync.has(s))return(async()=>{let m=await u.call(i,f);return c.call(i,m)})();let h=u.call(i,f);return c.call(i,h)}:i[a]=(...f)=>{if(this.defaults.async)return(async()=>{let m=await u.apply(i,f);return m===!1&&(m=await c.apply(i,f)),m})();let h=u.apply(i,f);return h===!1&&(h=c.apply(i,f)),h}}r.hooks=i}if(n.walkTokens){let i=this.defaults.walkTokens,s=n.walkTokens;r.walkTokens=function(a){let u=[];return u.push(s.call(this,a)),i&&(u=u.concat(i.call(this,a))),u}}this.defaults={...this.defaults,...r}}),this}setOptions(t){return this.defaults={...this.defaults,...t},this}lexer(t,e){return wr.lex(t,e??this.defaults)}parser(t,e){return $r.parse(t,e??this.defaults)}parseMarkdown(t){return(e,n)=>{let r={...n},i={...this.defaults,...r},s=this.onError(!!i.silent,!!i.async);if(this.defaults.async===!0&&r.async===!1)return s(new Error("marked(): The async option was set to true by an extension. Remove async: false from the parse options object to return a Promise."));if(typeof e>"u"||e===null)return s(new Error("marked(): input parameter is undefined or null"));if(typeof e!="string")return s(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(e)+", string expected"));if(i.hooks&&(i.hooks.options=i,i.hooks.block=t),i.async)return(async()=>{let a=i.hooks?await i.hooks.preprocess(e):e,u=await(i.hooks?await i.hooks.provideLexer(t):t?wr.lex:wr.lexInline)(a,i),c=i.hooks?await i.hooks.processAllTokens(u):u;i.walkTokens&&await Promise.all(this.walkTokens(c,i.walkTokens));let f=await(i.hooks?await i.hooks.provideParser(t):t?$r.parse:$r.parseInline)(c,i);return i.hooks?await i.hooks.postprocess(f):f})().catch(s);try{i.hooks&&(e=i.hooks.preprocess(e));let a=(i.hooks?i.hooks.provideLexer(t):t?wr.lex:wr.lexInline)(e,i);i.hooks&&(a=i.hooks.processAllTokens(a)),i.walkTokens&&this.walkTokens(a,i.walkTokens);let u=(i.hooks?i.hooks.provideParser(t):t?$r.parse:$r.parseInline)(a,i);return i.hooks&&(u=i.hooks.postprocess(u)),u}catch(a){return s(a)}}}onError(t,e){return n=>{if(n.message+=`
193
+ Please report this to https://github.com/markedjs/marked.`,t){let r="<p>An error occurred:</p><pre>"+_r(n.message+"",!0)+"</pre>";return e?Promise.resolve(r):r}if(e)return Promise.reject(n);throw n}}},fa=new EJ;function Je(t,e){return fa.parse(t,e)}Je.options=Je.setOptions=function(t){return fa.setOptions(t),Je.defaults=fa.defaults,z8(Je.defaults),Je};Je.getDefaults=Fx;Je.defaults=Da;Je.use=function(...t){return fa.use(...t),Je.defaults=fa.defaults,z8(Je.defaults),Je};Je.walkTokens=function(t,e){return fa.walkTokens(t,e)};Je.parseInline=fa.parseInline;Je.Parser=$r;Je.parser=$r.parse;Je.Renderer=Mp;Je.TextRenderer=Wx;Je.Lexer=wr;Je.lexer=wr.lex;Je.Tokenizer=Bp;Je.Hooks=gc;Je.parse=Je;Je.options;Je.setOptions;Je.use;Je.walkTokens;Je.parseInline;$r.parse;wr.lex;var DJ=/\n[^\S\n]*(?:\n[^\S\n]*)+$/;function SJ(t){return t.flatMap((e,n)=>{var r;if(e.type==="space"||((r=t[n+1])==null?void 0:r.type)==="space")return[e];const i=(e.raw||"").match(DJ);return i?[{...e,raw:(e.raw||"").slice(0,-i[0].length)},{type:"space",raw:i[0]}]:[e]})}function wJ(t,e){const r=e.split(`
194
+ `).flatMap(i=>[i,""]).map(i=>`${t}${i}`).join(`
195
+ `);return r.slice(0,r.length-1)}function $J(t,e){const n=[];return Array.from(t.entries()).forEach(([r,i])=>{if(!e){n.push(r);return}(e.marks||[]).find(a=>a.type===r&&Fl(a.attrs,i.attrs))||n.push(r)}),n}function TJ(t,e){const n=[];return Array.from(e.entries()).forEach(([r,i])=>{const s=t.get(r);(!s||!Fl(s.attrs,i.attrs))&&n.push({type:r,mark:i})}),n}function AJ(t,e,n,r){const i=!n,s=n&&(!n.marks||n.marks.length===0),a=n&&n.marks&&!r(e,new Map(n.marks.map(c=>[c.type,c]))),u=[];return(i||s||a)&&(n&&n.marks?Array.from(t.entries()).reverse().forEach(([c,f])=>{n.marks.find(m=>m.type===c&&Fl(m.attrs,f.attrs))||u.push(c)}):(i||s)&&u.push(...Array.from(t.keys()).reverse())),u}function BJ(t,e){let n="";return Array.from(t.keys()).reverse().forEach(r=>{const i=t.get(r),s=e(r,i);s&&(n=s+n)}),t.clear(),n}function MJ(t,e,n){let r="";return Array.from(t.entries()).forEach(([i,s])=>{const a=n(i,s);a&&(r+=a),e.set(i,s)}),r}function by(t){const n=(t.raw||t.text||"").match(/^(\s*)[-+*]\s+\[([ xX])\]\s+/);return n?{isTask:!0,checked:n[2].toLowerCase()==="x",indentLevel:n[1].length}:{isTask:!1,indentLevel:0}}function kh(t,e){return typeof t!="string"?"json":e}var RJ=new Set(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","menu","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","search","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","circle","clippath","defs","ellipse","foreignobject","g","image","line","lineargradient","mask","path","polygon","polyline","radialgradient","rect","stop","switch","symbol","textpath","tspan","use","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"]),NJ=/<\/?([a-zA-Z][\w-]*)/g;function PJ(t){const e=[];let n;for(;(n=NJ.exec(t))!==null;)e.push(n[1].toLowerCase());return e}function OJ(t){const e=t.toLowerCase();return e.includes("-")?!1:!RJ.has(e)}function LJ(t,e){return PJ(t).some(r=>OJ(r)?!e.has(r):!1)}var zJ=class{constructor(t){this.activeParseLexer=null,this.extensionRanks=new Map,this.baseExtensions=[],this.extensions=[],this.codeTypes=new Set,this.schemaParseDomTagsCache=null,this.lastParseResult=null;var e,n,r,i,s;this.markedInstance=(e=t?.marked)!=null?e:Je,this.indentStyle=(r=(n=t?.indentation)==null?void 0:n.style)!=null?r:"space",this.indentSize=(s=(i=t?.indentation)==null?void 0:i.size)!=null?s:2,this.baseExtensions=t?.extensions||[],t?.markedOptions&&typeof this.markedInstance.setOptions=="function"&&this.markedInstance.setOptions(t.markedOptions),this.registry=new Map,this.nodeTypeRegistry=new Map,t?.extensions&&(this.baseExtensions=t.extensions,Tl(Fm(t.extensions)).forEach(u=>this.registerExtension(u)))}get instance(){return this.markedInstance}get indentCharacter(){return this.indentStyle==="space"?" ":" "}get indentString(){return this.indentCharacter.repeat(this.indentSize)}hasMarked(){return!!this.markedInstance}registerExtension(t){var e,n;this.extensions.push(t);const r=Qe(ye(t,"code")),i=t.name;r&&this.codeTypes.add(i),this.extensionRanks.has(i)||this.extensionRanks.set(i,this.extensionRanks.size);const s=ye(t,"markdownTokenName")||i,a=ye(t,"parseMarkdown"),u=ye(t,"renderMarkdown"),c=ye(t,"markdownTokenizer"),f=(e=ye(t,"markdownOptions"))!=null?e:null,h=(n=f?.indentsContent)!=null?n:!1,m=f?.htmlReopen,g={tokenName:s,nodeName:i,parseMarkdown:a,renderMarkdown:u,isIndenting:h,htmlReopen:m,tokenizer:c};if(s&&a){const b=this.registry.get(s)||[];b.push(g),this.registry.set(s,b)}if(u){const b=this.nodeTypeRegistry.get(i)||[];b.push(g),this.nodeTypeRegistry.set(i,b)}c&&this.hasMarked()&&this.registerTokenizer(c)}createLexer(){return new this.markedInstance.Lexer(this.markedInstance.defaults)}createTokenizerHelpers(t){return{inlineTokens:e=>t.inlineTokens(e),blockTokens:e=>t.blockTokens(e)}}tokenizeInline(t){var e;return((e=this.activeParseLexer)!=null?e:this.createLexer()).inlineTokens(t)}registerTokenizer(t){if(!this.hasMarked())return;const{name:e,start:n,level:r="inline",tokenize:i}=t,s=this.createTokenizerHelpers.bind(this),a=this.createLexer.bind(this);let u;n?u=typeof n=="function"?n:f=>f.indexOf(n):u=f=>{const h=i(f,[],this.createTokenizerHelpers(this.createLexer()));return h&&h.raw?f.indexOf(h.raw):-1};const c={name:e,level:r,start:u,tokenizer(f,h){const m=this.lexer?s(this.lexer):s(a()),g=i(f,h,m);if(g&&g.type)return{...g,type:g.type||e,raw:g.raw||"",tokens:g.tokens||[]}},childTokens:[]};this.markedInstance.use({extensions:[c]})}getHandlersForToken(t){try{return this.registry.get(t)||[]}catch{return[]}}getHandlerForToken(t){const e=this.getHandlersForToken(t);if(e.length>0)return e[0];const n=this.getHandlersForNodeType(t);return n.length>0?n[0]:void 0}getHandlersForNodeType(t){try{return this.nodeTypeRegistry.get(t)||[]}catch{return[]}}serialize(t){if(!t)return"";const e=this.renderNodes(t,t);return this.isEmptyOutput(e)?"":e}isEmptyOutput(t){return!t||t.trim()===""?!0:t.replace(/&nbsp;/g,"").replace(/\u00A0/g,"").trim()===""}parse(t){if(!this.hasMarked())throw new Error("No marked instance available for parsing");const e=this.activeParseLexer,n=this.createLexer();this.activeParseLexer=n;try{const r=n.lex(t);return{type:"doc",content:this.parseTokens(r,!0)}}finally{this.activeParseLexer=e}}parseTokens(t,e=!1){const n=e?SJ(t):t,r=n.reduce((a,u,c)=>(u.type!=="space"&&a.push(c),a),[]);let i=-1,s=0;return n.flatMap((a,u)=>{for(var c;s<r.length&&r[s]<u;)i=r[s],s+=1;if(e&&a.type==="space"){const h=(c=r[s])!=null?c:-1;return this.createImplicitEmptyParagraphsFromSpace(a,i,h)}const f=this.parseToken(a,e);return f===null?[]:Array.isArray(f)?f:[f]})}createImplicitEmptyParagraphsFromSpace(t,e,n){const r=this.countParagraphSeparators(t.raw||"");if(r===0)return[];const s=Math.max(r-(e===-1||n===-1?0:1),0);return Array.from({length:s},()=>({type:"paragraph",content:[]}))}countParagraphSeparators(t){return(t.replace(/\r\n/g,`
196
+ `).match(/\n\n/g)||[]).length}parseToken(t,e=!1){if(!t.type)return null;if(t.type==="list")return this.parseListToken(t);const n=this.getHandlersForToken(t.type),r=this.createParseHelpers();if(n.find(s=>{if(!s.parseMarkdown)return!1;const a=s.parseMarkdown(t,r),u=this.normalizeParseResult(a);return u&&(!Array.isArray(u)||u.length>0)?(this.lastParseResult=u,!0):!1})&&this.lastParseResult){const s=this.lastParseResult;return this.lastParseResult=null,s}return this.parseFallbackToken(t,e)}parseListToken(t){if(!t.items||t.items.length===0)return this.parseTokenWithHandlers(t);const e=t.items.some(u=>by(u).isTask),n=t.items.some(u=>!by(u).isTask);if(!e||!n||this.getHandlersForToken("taskList").length===0)return this.parseTokenWithHandlers(t);const r=[];let i=[],s=null;for(let u=0;u<t.items.length;u+=1){const c=t.items[u],{isTask:f,checked:h,indentLevel:m}=by(c);let g=c;if(f){const k=(c.raw||c.text||"").split(`
197
+ `),E=k[0].match(/^\s*[-+*]\s+\[([ xX])\]\s+(.*)$/),D=E?E[2]:"";let T=[];if(k.length>1&&k.slice(1).join(`
198
+ `).trim()){const A=k.slice(1),B=A.filter(P=>P.trim());if(B.length>0){const P=Math.min(...B.map(j=>j.length-j.trimStart().length)),N=A.map(j=>j.trim()?j.slice(P):"").join(`
199
+ `).trim();N&&(T=this.markedInstance.lexer(`${N}
200
+ `))}}g={type:"taskItem",raw:"",mainContent:D,indentLevel:m,checked:h??!1,text:D,tokens:this.tokenizeInline(D),nestedTokens:T}}const b=f?"taskList":"list";s!==b?(i.length>0&&r.push({type:s,items:i}),i=[g],s=b):i.push(g)}i.length>0&&r.push({type:s,items:i});const a=[];for(let u=0;u<r.length;u+=1){const c=r[u],f={...t,type:c.type,items:c.items},h=this.parseToken(f);h&&(Array.isArray(h)?a.push(...h):a.push(h))}return a.length>0?a:null}parseTokenWithHandlers(t){if(!t.type)return null;const e=this.getHandlersForToken(t.type),n=this.createParseHelpers();if(e.find(i=>{if(!i.parseMarkdown)return!1;const s=i.parseMarkdown(t,n),a=this.normalizeParseResult(s);return a&&(!Array.isArray(a)||a.length>0)?(this.lastParseResult=a,!0):!1})&&this.lastParseResult){const i=this.lastParseResult;return this.lastParseResult=null,i}return this.parseFallbackToken(t)}createParseHelpers(){return{parseInline:t=>this.parseInlineTokens(t),tokenizeInline:t=>this.tokenizeInline(t),parseChildren:t=>this.parseTokens(t),parseBlockChildren:t=>this.parseTokens(t,!0),createTextNode:(t,e)=>({type:"text",text:t,marks:e||void 0}),createNode:(t,e,n)=>{const r={type:t,attrs:e||void 0,content:n||void 0};return(!e||Object.keys(e).length===0)&&delete r.attrs,r},applyMark:(t,e,n)=>({mark:t,content:e,attrs:n&&Object.keys(n).length>0?n:void 0})}}escapeRegex(t){return t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}parseInlineTokens(t){var e,n,r,i;const s=[];for(let a=0;a<t.length;a+=1){const u=t[a];if(u.type==="text")s.push({type:"text",text:$D(u.text||"")});else if(u.type==="escape")s.push({type:"text",text:u.text||""});else if(u.type==="html"){const c=((n=(e=u.raw)!=null?e:u.text)!=null?n:"").toString(),f=/^<\/[\s]*[\w-]+/i.test(c),h=c.match(/^<[\s]*([\w-]+)(\s|>|\/|$)/i);if(!f&&h&&!/\/>$/.test(c)){const g=h[1],b=this.escapeRegex(g),x=new RegExp(`^<\\/\\s*${b}\\b`,"i");let k=-1;const E=[c];for(let D=a+1;D<t.length;D+=1){const T=t[D],$=((i=(r=T.raw)!=null?r:T.text)!=null?i:"").toString();if(E.push($),T.type==="html"&&x.test($)){k=D;break}}if(k!==-1){const D=E.join(""),T={type:"html",raw:D,text:D,block:!1},$=this.parseHTMLToken(T);if($){const A=this.normalizeParseResult($);Array.isArray(A)?s.push(...A):A&&s.push(A)}a=k;continue}}const m=this.parseHTMLToken(u);if(m){const g=this.normalizeParseResult(m);Array.isArray(g)?s.push(...g):g&&s.push(g)}}else if(u.type){const c=this.getHandlerForToken(u.type);if(c&&c.parseMarkdown){const f=this.createParseHelpers(),h=c.parseMarkdown(u,f);if(this.isMarkResult(h)){const m=this.applyMarkToContent(h.mark,h.content,h.attrs);s.push(...m)}else{const m=this.normalizeParseResult(h);Array.isArray(m)?s.push(...m):m&&s.push(m)}}else u.tokens&&s.push(...this.parseInlineTokens(u.tokens))}}for(let a=s.length-1;a>0;a-=1){const u=s[a],c=s[a-1];if(u.type==="text"&&c.type==="text"){const f=u.marks||[],h=c.marks||[];dY(f,h)&&(c.text=(c.text||"")+(u.text||""),s.splice(a,1))}}return s}applyMarkToContent(t,e,n){return e.map(r=>{if(r.type==="text"){const i=r.marks||[],s=n?{type:t,attrs:n}:{type:t};return{...r,marks:[...i,s]}}return{...r,content:r.content?this.applyMarkToContent(t,r.content,n):void 0}})}isMarkResult(t){return t&&typeof t=="object"&&"mark"in t}normalizeParseResult(t){return t?this.isMarkResult(t)?t.content:t:null}parseFallbackToken(t,e=!1){switch(t.type){case"paragraph":return{type:"paragraph",content:t.tokens?this.parseInlineTokens(t.tokens):[]};case"heading":return{type:"heading",attrs:{level:t.depth||1},content:t.tokens?this.parseInlineTokens(t.tokens):[]};case"text":return{type:"text",text:$D(t.text||"")};case"html":return this.parseHTMLToken(t);case"escape":return{type:"text",text:t.text||""};case"space":return null;default:return t.tokens?this.parseTokens(t.tokens,e):null}}parseHTMLToken(t){const e=t.text||t.raw||"";if(!e.trim())return null;if(this.isUnrecognizedHtml(e))return this.htmlAsLiteralText(e,!!t.block);if(typeof window>"u"||typeof window.DOMParser>"u")return this.htmlAsLiteralText(e,!!t.block);try{const n=xQ(e,this.baseExtensions);return n.type==="doc"&&n.content?t.block?n.content:n.content.length===1&&n.content[0].type==="paragraph"&&n.content[0].content?n.content[0].content:n.content:n}catch(n){throw new Error(`Failed to parse HTML in markdown: ${n}`)}}isUnrecognizedHtml(t){return LJ(t,this.getSchemaParseDomTags())}getSchemaParseDomTags(){if(this.schemaParseDomTagsCache)return this.schemaParseDomTagsCache;const t=new Set;try{const e=V7(this.baseExtensions),n=r=>{const i=r?.parseDOM;Array.isArray(i)&&i.forEach(s=>{if(typeof s?.tag=="string"){const a=s.tag.match(/^[a-zA-Z][\w-]*/);a&&t.add(a[0].toLowerCase())}})};Object.values(e.nodes).forEach(r=>n(r.spec)),Object.values(e.marks).forEach(r=>n(r.spec))}catch{}return this.schemaParseDomTagsCache=t,t}htmlAsLiteralText(t,e){const n=t.replace(/\s+$/,"");return n?e?{type:"paragraph",content:[{type:"text",text:n}]}:{type:"text",text:n}:null}encodeTextForMarkdown(t,e,n){return n?.type!=null&&this.codeTypes.has(n.type)||(e.marks||[]).some(i=>this.codeTypes.has(typeof i=="string"?i:i.type))?t:this.escapeMarkdownSyntax(nY(t))}escapeMarkdownSyntax(t){return t.replace(/([\\`*_[\]~])/g,"\\$1")}renderNodeToMarkdown(t,e,n=0,r=0,i={}){var s;if(t.type==="text")return this.encodeTextForMarkdown(t.text||"",t,e);if(!t.type)return"";const a=this.getHandlerForToken(t.type);if(!a)return"";const u=Array.isArray(e?.content)&&n>0?e.content[n-1]:void 0,c={renderChildren:(m,g)=>{const b=a.isIndenting?r+1:r;return!Array.isArray(m)&&m.content?this.renderNodes(m.content,t,g||"",n,b):this.renderNodes(m,t,g||"",n,b)},renderChild:(m,g)=>{const b=a.isIndenting?r+1:r;return this.renderNodeToMarkdown(m,t,g,b)},indent:m=>this.indentString+m,wrapInBlock:wJ},f={index:n,level:r,parentType:e?.type,previousNode:u,meta:{parentAttrs:e?.attrs,...i}};return((s=a.renderMarkdown)==null?void 0:s.call(a,t,c,f))||""}renderNodes(t,e,n="",r=0,i=0){return Array.isArray(t)?this.renderNodesWithMarkBoundaries(t,e,n,i):t.type?this.renderNodeToMarkdown(t,e,r,i):""}renderNodesWithMarkBoundaries(t,e,n="",r=0){const i=[],s=new Map,a=new Set,u=new Map;return t.forEach((c,f)=>{const h=f<t.length-1?t[f+1]:null;if(c.type)if(c.type==="text"){let m=this.encodeTextForMarkdown(c.text||"",c,e);const g=new Map((c.marks||[]).map(B=>[B.type,B])),b=this.getMarksToOpenForSerialization(s,g,h),x=$J(g,h),k=x.filter(B=>s.has(B)),E=k.length>0&&b.length>0;let D="";if(x.length>0&&!E){const B=m.match(/(\s+)$/);B&&(D=B[1],m=m.slice(0,-D.length))}E||x.slice().reverse().forEach(B=>{if(!s.has(B))return;const P=g.get(B),M=this.getMarkClosing(B,P,u.get(B));M&&(m+=M),s.has(B)&&(s.delete(B),u.delete(B))});let T="";if(b.length>0){const B=m.match(/^(\s+)/);B&&(T=B[1],m=m.slice(T.length))}b.forEach(({type:B,mark:P})=>{const M=a.has(B)?"html":"markdown",N=this.getMarkOpening(B,P,M);N&&(m=N+m),u.set(B,M),a.delete(B)}),E||b.slice().reverse().forEach(({type:B,mark:P})=>{s.set(B,P)}),m=T+m;let $;if(E){const B=new Set((h?.marks||[]).map(N=>N.type));b.forEach(({type:N})=>{B.has(N)&&this.getHtmlReopenTags(N)&&a.add(N)});const P=Array.from(s.keys()),M=k.slice().sort((N,j)=>P.indexOf(j)-P.indexOf(N));$=[...b.map(N=>N.type),...M]}else $=AJ(s,g,h,this.markSetsEqual.bind(this));let A="";if($.length>0){const B=m.match(/(\s+)$/);B&&(A=B[1],m=m.slice(0,-A.length))}$.forEach(B=>{var P;const M=(P=s.get(B))!=null?P:g.get(B),N=this.getMarkClosing(B,M,u.get(B));N&&(m+=N),s.delete(B),u.delete(B)}),m+=A,m+=D,i.push(m)}else{const m=new Set((c.marks||[]).map(D=>D.type)),g=new Map,b=new Map;s.forEach((D,T)=>{var $;m.has(T)&&(g.set(T,D),b.set(T,($=u.get(T))!=null?$:"markdown"))});const x=BJ(s,(D,T)=>this.getMarkClosing(D,T,u.get(D)));u.clear();const k=this.renderNodeToMarkdown(c,e,f,r),E=c.type==="hardBreak"?"":MJ(g,s,(D,T)=>{var $;const A=($=b.get(D))!=null?$:"markdown";return u.set(D,A),this.getMarkOpening(D,T,A)});i.push(x+k+E)}}),i.join(n)}getMarkOpening(t,e,n="markdown"){var r;if(n==="html")return((r=this.getHtmlReopenTags(t))==null?void 0:r.open)||"";const i=this.getHandlersForNodeType(t),s=i.length>0?i[0]:void 0;if(!s||!s.renderMarkdown)return"";const a="__TIPTAP_MARKDOWN_PLACEHOLDER__",u={type:t,attrs:e.attrs||{},content:[{type:"text",text:a}]};try{const c=s.renderMarkdown(u,{renderChildren:()=>a,renderChild:()=>a,indent:h=>h,wrapInBlock:(h,m)=>h+m},{index:0,level:0,parentType:"text",meta:{}}),f=c.indexOf(a);return f>=0?c.substring(0,f):""}catch(c){throw new Error(`Failed to get mark opening for ${t}: ${c}`)}}getMarkClosing(t,e,n="markdown"){var r;if(n==="html")return((r=this.getHtmlReopenTags(t))==null?void 0:r.close)||"";const i=this.getHandlersForNodeType(t),s=i.length>0?i[0]:void 0;if(!s||!s.renderMarkdown)return"";const a="__TIPTAP_MARKDOWN_PLACEHOLDER__",u={type:t,attrs:e.attrs||{},content:[{type:"text",text:a}]};try{const c=s.renderMarkdown(u,{renderChildren:()=>a,renderChild:()=>a,indent:m=>m,wrapInBlock:(m,g)=>m+g},{index:0,level:0,parentType:"text",meta:{}}),f=c.indexOf(a),h=f+a.length;return f>=0?c.substring(h):""}catch(c){throw new Error(`Failed to get mark closing for ${t}: ${c}`)}}getHtmlReopenTags(t){const e=this.getHandlersForNodeType(t),n=e.length>0?e[0]:void 0;return n?.htmlReopen}markSetsEqual(t,e){return t.size!==e.size?!1:Array.from(t.entries()).every(([n,r])=>{const i=e.get(n);return i&&Fl(r.attrs,i.attrs)})}getMarksToOpenForSerialization(t,e,n){const r=TJ(t,e);if(r.length<=1)return r;const i=n?.marks||[],s=(f,h)=>i.some(m=>m.type===f&&Fl(m.attrs,h)),a=(f,h)=>{var m,g;const b=(m=this.extensionRanks.get(f.type))!=null?m:Number.MAX_SAFE_INTEGER,x=(g=this.extensionRanks.get(h.type))!=null?g:Number.MAX_SAFE_INTEGER;return b!==x?x-b:f.type.localeCompare(h.type)},u=r.filter(f=>!s(f.type,f.mark.attrs)).sort(a),c=r.filter(f=>s(f.type,f.mark.attrs)).sort(a);return[...u,...c]}},HD=zJ,IJ=gt.create({name:"markdown",addOptions(){return{indentation:{style:"space",size:2},marked:void 0,markedOptions:{}}},addCommands(){return{setContent:(t,e)=>{if(!e?.contentType||kh(t,e?.contentType)!=="markdown"||!this.editor.markdown)return Dr.setContent(t,e);const r=this.editor.markdown.parse(t);return Dr.setContent(r,e)},insertContent:(t,e)=>{if(!e?.contentType||kh(t,e?.contentType)!=="markdown"||!this.editor.markdown)return Dr.insertContent(t,e);const r=this.editor.markdown.parse(t);return Dr.insertContent(r,e)},insertContentAt:(t,e,n)=>{if(!n?.contentType||kh(e,n?.contentType)!=="markdown"||!this.editor.markdown)return Dr.insertContentAt(t,e,n);const i=this.editor.markdown.parse(e);return Dr.insertContentAt(t,i,n)}}},addStorage(){return{manager:new HD({indentation:this.options.indentation,marked:this.options.marked,markedOptions:this.options.markedOptions,extensions:[]})}},onBeforeCreate(){var t;if(this.editor.markdown){console.error("[tiptap][markdown]: There is already a `markdown` property on the editor instance. This might lead to unexpected behavior.");return}if(this.storage.manager=new HD({indentation:this.options.indentation,marked:this.options.marked,markedOptions:this.options.markedOptions,extensions:this.editor.extensionManager.baseExtensions}),this.editor.markdown=this.storage.manager,this.editor.getMarkdown=()=>this.storage.manager.serialize(this.editor.getJSON()),!this.editor.options.contentType||kh(this.editor.options.content,this.editor.options.contentType)!=="markdown")return;if(!this.editor.markdown)throw new Error('[tiptap][markdown]: The `contentType` option is set to "markdown", but the Markdown extension is not added to the editor. Please add the Markdown extension to use this feature.');if(this.editor.options.content===void 0||typeof this.editor.options.content!="string")throw new Error('[tiptap][markdown]: The `contentType` option is set to "markdown", but the initial content is not a string. Please provide the initial content as a markdown string.');const n=this.editor.markdown.parse(this.editor.options.content);(t=n.content)!=null&&t.length&&(this.editor.options.content=n)}});const{getOwnPropertyNames:jJ,getOwnPropertySymbols:FJ}=Object,{hasOwnProperty:KJ}=Object.prototype;function yy(t,e){return function(r,i,s){return t(r,i,s)&&e(r,i,s)}}function Ch(t){return function(n,r,i){if(!n||!r||typeof n!="object"||typeof r!="object")return t(n,r,i);const{cache:s}=i,a=s.get(n),u=s.get(r);if(a&&u)return a===r&&u===n;s.set(n,r),s.set(r,n);const c=t(n,r,i);return s.delete(n),s.delete(r),c}}function _J(t){return t?.[Symbol.toStringTag]}function UD(t){return jJ(t).concat(FJ(t))}const VJ=Object.hasOwn||((t,e)=>KJ.call(t,e));function Sa(t,e){return t===e||!t&&!e&&t!==t&&e!==e}const HJ="__v",UJ="__o",qJ="_owner",{getOwnPropertyDescriptor:qD,keys:GD}=Object;function GJ(t,e){return t.byteLength===e.byteLength&&Rp(new Uint8Array(t),new Uint8Array(e))}function WJ(t,e,n){let r=t.length;if(e.length!==r)return!1;for(;r-- >0;)if(!n.equals(t[r],e[r],r,r,t,e,n))return!1;return!0}function QJ(t,e){return t.byteLength===e.byteLength&&Rp(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}function YJ(t,e){return Sa(t.getTime(),e.getTime())}function XJ(t,e){return t.name===e.name&&t.message===e.message&&t.cause===e.cause&&t.stack===e.stack}function JJ(t,e){return t===e}function WD(t,e,n){const r=t.size;if(r!==e.size)return!1;if(!r)return!0;const i=new Array(r),s=t.entries();let a,u,c=0;for(;(a=s.next())&&!a.done;){const f=e.entries();let h=!1,m=0;for(;(u=f.next())&&!u.done;){if(i[m]){m++;continue}const g=a.value,b=u.value;if(n.equals(g[0],b[0],c,m,t,e,n)&&n.equals(g[1],b[1],g[0],b[0],t,e,n)){h=i[m]=!0;break}m++}if(!h)return!1;c++}return!0}const ZJ=Sa;function eZ(t,e,n){const r=GD(t);let i=r.length;if(GD(e).length!==i)return!1;for(;i-- >0;)if(!G8(t,e,n,r[i]))return!1;return!0}function rc(t,e,n){const r=UD(t);let i=r.length;if(UD(e).length!==i)return!1;let s,a,u;for(;i-- >0;)if(s=r[i],!G8(t,e,n,s)||(a=qD(t,s),u=qD(e,s),(a||u)&&(!a||!u||a.configurable!==u.configurable||a.enumerable!==u.enumerable||a.writable!==u.writable)))return!1;return!0}function tZ(t,e){return Sa(t.valueOf(),e.valueOf())}function nZ(t,e){return t.source===e.source&&t.flags===e.flags}function QD(t,e,n){const r=t.size;if(r!==e.size)return!1;if(!r)return!0;const i=new Array(r),s=t.values();let a,u;for(;(a=s.next())&&!a.done;){const c=e.values();let f=!1,h=0;for(;(u=c.next())&&!u.done;){if(!i[h]&&n.equals(a.value,u.value,a.value,u.value,t,e,n)){f=i[h]=!0;break}h++}if(!f)return!1}return!0}function Rp(t,e){let n=t.byteLength;if(e.byteLength!==n||t.byteOffset!==e.byteOffset)return!1;for(;n-- >0;)if(t[n]!==e[n])return!1;return!0}function rZ(t,e){return t.hostname===e.hostname&&t.pathname===e.pathname&&t.protocol===e.protocol&&t.port===e.port&&t.hash===e.hash&&t.username===e.username&&t.password===e.password}function G8(t,e,n,r){return(r===qJ||r===UJ||r===HJ)&&(t.$$typeof||e.$$typeof)?!0:VJ(e,r)&&n.equals(t[r],e[r],r,r,t,e,n)}const iZ="[object ArrayBuffer]",sZ="[object Arguments]",oZ="[object Boolean]",aZ="[object DataView]",lZ="[object Date]",uZ="[object Error]",cZ="[object Map]",dZ="[object Number]",fZ="[object Object]",hZ="[object RegExp]",pZ="[object Set]",mZ="[object String]",gZ={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float16Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0,"[object BigInt64Array]":!0,"[object BigUint64Array]":!0},bZ="[object URL]",yZ=Object.prototype.toString;function xZ({areArrayBuffersEqual:t,areArraysEqual:e,areDataViewsEqual:n,areDatesEqual:r,areErrorsEqual:i,areFunctionsEqual:s,areMapsEqual:a,areNumbersEqual:u,areObjectsEqual:c,arePrimitiveWrappersEqual:f,areRegExpsEqual:h,areSetsEqual:m,areTypedArraysEqual:g,areUrlsEqual:b,unknownTagComparators:x}){return function(E,D,T){if(E===D)return!0;if(E==null||D==null)return!1;const $=typeof E;if($!==typeof D)return!1;if($!=="object")return $==="number"?u(E,D,T):$==="function"?s(E,D,T):!1;const A=E.constructor;if(A!==D.constructor)return!1;if(A===Object)return c(E,D,T);if(Array.isArray(E))return e(E,D,T);if(A===Date)return r(E,D,T);if(A===RegExp)return h(E,D,T);if(A===Map)return a(E,D,T);if(A===Set)return m(E,D,T);const B=yZ.call(E);if(B===lZ)return r(E,D,T);if(B===hZ)return h(E,D,T);if(B===cZ)return a(E,D,T);if(B===pZ)return m(E,D,T);if(B===fZ)return typeof E.then!="function"&&typeof D.then!="function"&&c(E,D,T);if(B===bZ)return b(E,D,T);if(B===uZ)return i(E,D,T);if(B===sZ)return c(E,D,T);if(gZ[B])return g(E,D,T);if(B===iZ)return t(E,D,T);if(B===aZ)return n(E,D,T);if(B===oZ||B===dZ||B===mZ)return f(E,D,T);if(x){let P=x[B];if(!P){const M=_J(E);M&&(P=x[M])}if(P)return P(E,D,T)}return!1}}function vZ({circular:t,createCustomConfig:e,strict:n}){let r={areArrayBuffersEqual:GJ,areArraysEqual:n?rc:WJ,areDataViewsEqual:QJ,areDatesEqual:YJ,areErrorsEqual:XJ,areFunctionsEqual:JJ,areMapsEqual:n?yy(WD,rc):WD,areNumbersEqual:ZJ,areObjectsEqual:n?rc:eZ,arePrimitiveWrappersEqual:tZ,areRegExpsEqual:nZ,areSetsEqual:n?yy(QD,rc):QD,areTypedArraysEqual:n?yy(Rp,rc):Rp,areUrlsEqual:rZ,unknownTagComparators:void 0};if(e&&(r=Object.assign({},r,e(r))),t){const i=Ch(r.areArraysEqual),s=Ch(r.areMapsEqual),a=Ch(r.areObjectsEqual),u=Ch(r.areSetsEqual);r=Object.assign({},r,{areArraysEqual:i,areMapsEqual:s,areObjectsEqual:a,areSetsEqual:u})}return r}function kZ(t){return function(e,n,r,i,s,a,u){return t(e,n,u)}}function CZ({circular:t,comparator:e,createState:n,equals:r,strict:i}){if(n)return function(u,c){const{cache:f=t?new WeakMap:void 0,meta:h}=n();return e(u,c,{cache:f,equals:r,meta:h,strict:i})};if(t)return function(u,c){return e(u,c,{cache:new WeakMap,equals:r,meta:void 0,strict:i})};const s={cache:void 0,equals:r,meta:void 0,strict:i};return function(u,c){return e(u,c,s)}}const EZ=io();io({strict:!0});io({circular:!0});io({circular:!0,strict:!0});io({createInternalComparator:()=>Sa});io({strict:!0,createInternalComparator:()=>Sa});io({circular:!0,createInternalComparator:()=>Sa});io({circular:!0,createInternalComparator:()=>Sa,strict:!0});function io(t={}){const{circular:e=!1,createInternalComparator:n,createState:r,strict:i=!1}=t,s=vZ(t),a=xZ(s),u=n?n(a):kZ(a);return CZ({circular:e,comparator:a,createState:r,equals:u,strict:i})}var DZ=(...t)=>e=>{t.forEach(n=>{typeof n=="function"?n(e):n&&(n.current=e)})},SZ=({contentComponent:t})=>{const e=M3.useSyncExternalStore(t.subscribe,t.getSnapshot,t.getServerSnapshot);return C.jsx(C.Fragment,{children:Object.values(e)})};function wZ(){const t=new Set;let e={},n=!1;const r=()=>{n||!t.size||(n=!0,queueMicrotask(()=>{n=!1,t.forEach(i=>i())}))};return{subscribe(i){return t.add(i),()=>{t.delete(i)}},getSnapshot(){return e},getServerSnapshot(){return e},setRenderer(i,s){e={...e,[i]:aw.createPortal(s.reactElement,s.element,i)},r()},removeRenderer(i){const s={...e};delete s[i],e=s,r()}}}var $Z=class extends V.Component{constructor(t){super(t),this.editorContentRef=V.createRef()}componentDidMount(){this.init()}componentDidUpdate(){this.init()}init(){var t;const e=this.props.editor;if(e&&!e.isDestroyed&&((t=e.view.dom)!=null&&t.parentNode)){if(e.contentComponent)return;const n=this.editorContentRef.current;n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n}),e.contentComponent=wZ(),e.createNodeViews(),e.isEditorContentInitialized=!0,this.forceUpdate()}}componentWillUnmount(){var t;const e=this.props.editor;if(e){e.isEditorContentInitialized=!1,e.isDestroyed||e.view.setProps({nodeViews:{}}),e.contentComponent=null;try{if(!((t=e.view.dom)!=null&&t.parentNode))return;const n=document.createElement("div");n.append(...e.view.dom.parentNode.childNodes),e.setOptions({element:n})}catch{}}}render(){const{editor:t,innerRef:e,...n}=this.props;return C.jsxs(C.Fragment,{children:[C.jsx("div",{ref:DZ(e,this.editorContentRef),...n}),t?.contentComponent&&C.jsx(SZ,{contentComponent:t.contentComponent})]})}},TZ=S.forwardRef((t,e)=>{const n=V.useMemo(()=>Math.floor(Math.random()*4294967295).toString(),[t.editor]);return V.createElement($Z,{key:n,innerRef:e,...t})}),W8=V.memo(TZ),AZ=typeof window<"u"?S.useLayoutEffect:S.useEffect,BZ=class{constructor(t){this.transactionNumber=0,this.lastTransactionNumber=0,this.subscribers=new Set,this.editor=t,this.lastSnapshot={editor:t,transactionNumber:0},this.getSnapshot=this.getSnapshot.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.watch=this.watch.bind(this),this.subscribe=this.subscribe.bind(this)}getSnapshot(){return this.transactionNumber===this.lastTransactionNumber?this.lastSnapshot:(this.lastTransactionNumber=this.transactionNumber,this.lastSnapshot={editor:this.editor,transactionNumber:this.transactionNumber},this.lastSnapshot)}getServerSnapshot(){return{editor:null,transactionNumber:0}}subscribe(t){return this.subscribers.add(t),()=>{this.subscribers.delete(t)}}watch(t){if(this.editor=t,this.editor){let e;const n=i=>{i?.transaction!==void 0&&i.transaction===e||(e=i?.transaction,this.transactionNumber+=1,this.subscribers.forEach(s=>s()))},r=this.editor;return r.on("transaction",n),r.on("update",n),()=>{r.off("transaction",n),r.off("update",n)}}}};function MZ(t){var e;const[n]=S.useState(()=>new BZ(t.editor)),r=ow.useSyncExternalStoreWithSelector(n.subscribe,n.getSnapshot,n.getServerSnapshot,t.selector,(e=t.equalityFn)!=null?e:EZ);return AZ(()=>n.watch(t.editor),[t.editor,n]),S.useDebugValue(r),r}var RZ=!1,Q8=typeof window>"u",NZ=Q8||!!(typeof window<"u"&&window.next),PZ=class Y8{constructor(e){this.editor=null,this.subscriptions=new Set,this.isComponentMounted=!1,this.previousDeps=null,this.instanceId="",this.options=e,this.subscriptions=new Set,this.setEditor(this.getInitialEditor()),this.scheduleDestroy(),this.getEditor=this.getEditor.bind(this),this.getServerSnapshot=this.getServerSnapshot.bind(this),this.subscribe=this.subscribe.bind(this),this.refreshEditorInstance=this.refreshEditorInstance.bind(this),this.scheduleDestroy=this.scheduleDestroy.bind(this),this.onRender=this.onRender.bind(this),this.createEditor=this.createEditor.bind(this)}setEditor(e){this.editor=e,this.instanceId=Math.random().toString(36).slice(2,9),this.subscriptions.forEach(n=>n())}getInitialEditor(){const e=this.options.current.immediatelyRender;let n=e??!0;return Q8?(n&&RZ&&console.warn("SSR detected. `immediatelyRender` has been set to false to avoid hydration mismatches"),n=!1):NZ&&e===void 0&&(n=!1),n?this.createEditor():null}createEditor(){const e={...this.options.current,onBeforeCreate:(...r)=>{var i,s;return(s=(i=this.options.current).onBeforeCreate)==null?void 0:s.call(i,...r)},onBlur:(...r)=>{var i,s;return(s=(i=this.options.current).onBlur)==null?void 0:s.call(i,...r)},onCreate:(...r)=>{var i,s;return(s=(i=this.options.current).onCreate)==null?void 0:s.call(i,...r)},onDestroy:(...r)=>{var i,s;return(s=(i=this.options.current).onDestroy)==null?void 0:s.call(i,...r)},onFocus:(...r)=>{var i,s;return(s=(i=this.options.current).onFocus)==null?void 0:s.call(i,...r)},onSelectionUpdate:(...r)=>{var i,s;return(s=(i=this.options.current).onSelectionUpdate)==null?void 0:s.call(i,...r)},onTransaction:(...r)=>{var i,s;return(s=(i=this.options.current).onTransaction)==null?void 0:s.call(i,...r)},onUpdate:(...r)=>{var i,s;return(s=(i=this.options.current).onUpdate)==null?void 0:s.call(i,...r)},onContentError:(...r)=>{var i,s;return(s=(i=this.options.current).onContentError)==null?void 0:s.call(i,...r)},onDrop:(...r)=>{var i,s;return(s=(i=this.options.current).onDrop)==null?void 0:s.call(i,...r)},onPaste:(...r)=>{var i,s;return(s=(i=this.options.current).onPaste)==null?void 0:s.call(i,...r)},onDelete:(...r)=>{var i,s;return(s=(i=this.options.current).onDelete)==null?void 0:s.call(i,...r)},onMount:(...r)=>{var i,s;return(s=(i=this.options.current).onMount)==null?void 0:s.call(i,...r)},onUnmount:(...r)=>{var i,s;return(s=(i=this.options.current).onUnmount)==null?void 0:s.call(i,...r)}};return new CY(e)}getEditor(){return this.editor}getServerSnapshot(){return null}subscribe(e){return this.subscriptions.add(e),()=>{this.subscriptions.delete(e)}}static compareOptions(e,n){return Object.keys(e).every(r=>["onCreate","onBeforeCreate","onDestroy","onUpdate","onTransaction","onFocus","onBlur","onSelectionUpdate","onContentError","onDrop","onPaste"].includes(r)?!0:r==="extensions"&&e.extensions&&n.extensions?e.extensions.length!==n.extensions.length?!1:e.extensions.every((i,s)=>{var a;return i===((a=n.extensions)==null?void 0:a[s])}):e[r]===n[r])}onRender(e){return()=>(this.isComponentMounted=!0,clearTimeout(this.scheduledDestructionTimeout),this.editor&&!this.editor.isDestroyed&&e.length===0?Y8.compareOptions(this.options.current,this.editor.options)||this.editor.setOptions({...this.options.current,editable:this.editor.isEditable}):this.refreshEditorInstance(e),()=>{this.isComponentMounted=!1,this.scheduleDestroy()})}refreshEditorInstance(e){if(this.editor&&!this.editor.isDestroyed){if(this.previousDeps===null){this.previousDeps=e;return}if(this.previousDeps.length===e.length&&this.previousDeps.every((r,i)=>r===e[i]))return}this.editor&&!this.editor.isDestroyed&&this.editor.destroy(),this.setEditor(this.createEditor()),this.previousDeps=e}scheduleDestroy(){const e=this.instanceId,n=this.editor;this.scheduledDestructionTimeout=setTimeout(()=>{if(this.isComponentMounted&&this.instanceId===e){n&&n.setOptions(this.options.current);return}n&&!n.isDestroyed&&(n.destroy(),this.instanceId===e&&this.setEditor(null))},1)}};function OZ(t={},e=[]){const n=S.useRef(t);n.current=t;const[r]=S.useState(()=>new PZ(n)),i=M3.useSyncExternalStore(r.subscribe,r.getEditor,r.getServerSnapshot);return S.useDebugValue(i),S.useEffect(r.onRender(e)),MZ({editor:i,selector:({transactionNumber:s})=>t.shouldRerenderOnTransaction===!1||t.shouldRerenderOnTransaction===void 0?null:t.immediatelyRender&&s===0?0:s+1}),i}var X8=S.createContext({editor:null});X8.Consumer;var LZ=S.createContext({onDragStart:()=>{},nodeViewContentChildren:void 0,nodeViewContentRef:()=>{}}),zZ=()=>S.useContext(LZ);V.forwardRef((t,e)=>{const{onDragStart:n}=zZ(),r=t.as||"div";return C.jsx(r,{...t,ref:e,"data-node-view-wrapper":"",onDragStart:n,style:{whiteSpace:"normal",...t.style}})});V.createContext({markViewContentRef:()=>{}});var Qx=S.createContext({get editor(){throw new Error("useTiptap must be used within a <Tiptap> provider")}});Qx.displayName="TiptapContext";var IZ=()=>S.useContext(Qx);function J8({children:t,...e}){const n="editor"in e?e.editor:e.instance;if(!n)throw new Error("Tiptap: An editor instance is required. Pass a non-null `editor` prop.");const r=S.useMemo(()=>({editor:n}),[n]),i=S.useMemo(()=>({editor:n}),[n]);return C.jsx(X8.Provider,{value:i,children:C.jsx(Qx.Provider,{value:r,children:t})})}J8.displayName="Tiptap";function Z8({...t}){const{editor:e}=IZ();return C.jsx(W8,{editor:e,...t})}Z8.displayName="Tiptap.Content";Object.assign(J8,{Content:Z8});var Np=(t,e)=>{if(t==="slot")return 0;if(t instanceof Function)return t(e);const{children:n,...r}=e??{};if(t==="svg")throw new Error("SVG elements are not supported in the JSX syntax, use the array syntax instead");return[t,r,n]},jZ=(t,e)=>{var n;const{state:r,view:i}=t,{selection:s}=r;if(!s.empty)return!1;const{$from:a}=s;if(a.parentOffset!==0)return!1;const u=a.depth-1;if(u<0)return!1;const c=a.node(u),f=a.index(u);if(f===0)return!1;if(c.type===e)return t.commands.lift(e.name);const h=c.child(f-1);if(h.type!==e||!((n=h.lastChild)!=null&&n.isTextblock))return!1;const m=a.before(),b=m-1-1,{tr:x}=r;return x.delete(m,a.after()).insert(b,a.parent.content),x.setSelection(De.create(x.doc,b)),i.dispatch(x.scrollIntoView()),!0},FZ=/^\s*>\s$/,KZ=Zn.create({name:"blockquote",addOptions(){return{HTMLAttributes:{}}},content:"block+",group:"block",defining:!0,parseHTML(){return[{tag:"blockquote"}]},renderHTML({HTMLAttributes:t}){return Np("blockquote",{...Ft(this.options.HTMLAttributes,t),children:Np("slot",{})})},parseMarkdown:(t,e)=>{var n;const r=(n=e.parseBlockChildren)!=null?n:e.parseChildren;return e.createNode("blockquote",void 0,r(t.tokens||[]))},renderMarkdown:(t,e)=>{if(!t.content)return"";const n=">",r=[];return t.content.forEach((i,s)=>{var a,u;const h=((u=(a=e.renderChild)==null?void 0:a.call(e,i,s))!=null?u:e.renderChildren([i])).split(`
201
+ `).map(m=>m.trim()===""?n:`${n} ${m}`);r.push(h.join(`
202
+ `))}),r.join(`
203
+ ${n}
204
+ `)},addCommands(){return{setBlockquote:()=>({commands:t})=>t.wrapIn(this.name),toggleBlockquote:()=>({commands:t})=>t.toggleWrap(this.name),unsetBlockquote:()=>({commands:t})=>t.lift(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-b":()=>this.editor.commands.toggleBlockquote(),Backspace:()=>jZ(this.editor,this.type)}},addInputRules(){return[Kl({find:FZ,type:this.type})]}}),_Z=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))$/,VZ=/(?:^|\s)(\*\*(?!\s+\*\*)((?:[^*]+))\*\*(?!\s+\*\*))/g,HZ=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))$/,UZ=/(?:^|\s)(__(?!\s+__)((?:[^_]+))__(?!\s+__))/g,qZ=Ea.create({name:"bold",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"strong"},{tag:"b",getAttrs:t=>t.style.fontWeight!=="normal"&&null},{style:"font-weight=400",clearMark:t=>t.type.name===this.name},{style:"font-weight",getAttrs:t=>/^(bold(er)?|[5-9]\d{2,})$/.test(t)&&null}]},renderHTML({HTMLAttributes:t}){return Np("strong",{...Ft(this.options.HTMLAttributes,t),children:Np("slot",{})})},markdownTokenName:"strong",parseMarkdown:(t,e)=>e.applyMark("bold",e.parseInline(t.tokens||[])),markdownOptions:{htmlReopen:{open:"<strong>",close:"</strong>"}},renderMarkdown:(t,e)=>`**${e.renderChildren(t)}**`,addCommands(){return{setBold:()=>({commands:t})=>t.setMark(this.name),toggleBold:()=>({commands:t})=>t.toggleMark(this.name),unsetBold:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-b":()=>this.editor.commands.toggleBold(),"Mod-B":()=>this.editor.commands.toggleBold()}},addInputRules(){return[da({find:_Z,type:this.type}),da({find:HZ,type:this.type})]},addPasteRules(){return[Ws({find:VZ,type:this.type}),Ws({find:UZ,type:this.type})]}}),GZ=t=>{const e=/`([^`]+)`(?!`)$/.exec(t);return!e||e.index>0&&t[e.index-1]==="`"?null:{index:e.index,text:e[0],replaceWith:e[1]}},WZ=t=>{const e=/`([^`]+)`(?!`)/g,n=[];let r;for(;(r=e.exec(t))!==null;)r.index>0&&t[r.index-1]==="`"||n.push({index:r.index,text:r[0],replaceWith:r[1]});return n},QZ=Ea.create({name:"code",addOptions(){return{HTMLAttributes:{}}},excludes:"_",code:!0,exitable:!0,parseHTML(){return[{tag:"code"}]},renderHTML({HTMLAttributes:t}){return["code",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"codespan",parseMarkdown:(t,e)=>e.applyMark("code",[{type:"text",text:t.text||""}]),renderMarkdown:(t,e)=>t.content?`\`${e.renderChildren(t.content)}\``:"",addCommands(){return{setCode:()=>({commands:t})=>t.setMark(this.name),toggleCode:()=>({commands:t})=>t.toggleMark(this.name),unsetCode:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-e":()=>this.editor.commands.toggleCode()}},addInputRules(){return[da({find:GZ,type:this.type})]},addPasteRules(){return[Ws({find:WZ,type:this.type})]}}),xy=4,YZ=/^```([a-z]+)?[\s\n]$/,XZ=/^~~~([a-z]+)?[\s\n]$/,JZ=Zn.create({name:"codeBlock",addOptions(){return{languageClassPrefix:"language-",exitOnTripleEnter:!0,exitOnArrowDown:!0,exitOnArrowUp:!0,defaultLanguage:null,enableTabIndentation:!1,tabSize:xy,HTMLAttributes:{}}},content:"text*",marks:"",group:"block",code:!0,defining:!0,addAttributes(){return{language:{default:this.options.defaultLanguage,parseHTML:t=>{var e;const{languageClassPrefix:n}=this.options;if(!n)return null;const s=[...((e=t.firstElementChild)==null?void 0:e.classList)||[]].filter(a=>a.startsWith(n)).map(a=>a.replace(n,""))[0];return s||null},rendered:!1}}},parseHTML(){return[{tag:"pre",preserveWhitespace:"full"}]},renderHTML({node:t,HTMLAttributes:e}){return["pre",Ft(this.options.HTMLAttributes,e),["code",{class:t.attrs.language?this.options.languageClassPrefix+t.attrs.language:null},0]]},markdownTokenName:"code",parseMarkdown:(t,e)=>{var n,r;return((n=t.raw)==null?void 0:n.startsWith("```"))===!1&&((r=t.raw)==null?void 0:r.startsWith("~~~"))===!1&&t.codeBlockStyle!=="indented"?[]:e.createNode("codeBlock",{language:t.lang||null},t.text?[e.createTextNode(t.text)]:[])},renderMarkdown:(t,e)=>{var n;let r="";const i=((n=t.attrs)==null?void 0:n.language)||"";return t.content?r=[`\`\`\`${i}`,e.renderChildren(t.content),"```"].join(`
205
+ `):r=`\`\`\`${i}
206
+
207
+ \`\`\``,r},addCommands(){return{setCodeBlock:t=>({commands:e})=>e.setNode(this.name,t),toggleCodeBlock:t=>({commands:e})=>e.toggleNode(this.name,"paragraph",t)}},addKeyboardShortcuts(){return{"Mod-Alt-c":()=>this.editor.commands.toggleCodeBlock(),Backspace:()=>{const{empty:t,$anchor:e}=this.editor.state.selection,n=e.pos===1;return!t||e.parent.type.name!==this.name?!1:n||!e.parent.textContent.length?this.editor.commands.clearNodes():!1},Tab:({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:xy,{state:r}=t,{selection:i}=r,{$from:s,empty:a}=i;if(s.parent.type!==this.type)return!1;const u=" ".repeat(n);return a?t.commands.insertContent(u):t.commands.command(({tr:c})=>{const{from:f,to:h}=i,b=r.doc.textBetween(f,h,`
208
+ `,`
209
+ `).split(`
210
+ `).map(x=>u+x).join(`
211
+ `);return c.replaceWith(f,h,r.schema.text(b)),!0})},"Shift-Tab":({editor:t})=>{var e;if(!this.options.enableTabIndentation)return!1;const n=(e=this.options.tabSize)!=null?e:xy,{state:r}=t,{selection:i}=r,{$from:s,empty:a}=i;return s.parent.type!==this.type?!1:a?t.commands.command(({tr:u})=>{var c;const{pos:f}=s,h=s.start(),m=s.end(),b=r.doc.textBetween(h,m,`
212
+ `,`
213
+ `).split(`
214
+ `);let x=0,k=0;const E=f-h;for(let P=0;P<b.length;P+=1){if(k+b[P].length>=E){x=P;break}k+=b[P].length+1}const T=((c=b[x].match(/^ */))==null?void 0:c[0])||"",$=Math.min(T.length,n);if($===0)return!0;let A=h;for(let P=0;P<x;P+=1)A+=b[P].length+1;return u.delete(A,A+$),f-A<=$&&u.setSelection(De.create(u.doc,A)),!0}):t.commands.command(({tr:u})=>{const{from:c,to:f}=i,g=r.doc.textBetween(c,f,`
215
+ `,`
216
+ `).split(`
217
+ `).map(b=>{var x;const k=((x=b.match(/^ */))==null?void 0:x[0])||"",E=Math.min(k.length,n);return b.slice(E)}).join(`
218
+ `);return u.replaceWith(c,f,r.schema.text(g)),!0})},Enter:({editor:t})=>{if(!this.options.exitOnTripleEnter)return!1;const{state:e}=t,{selection:n}=e,{$from:r,empty:i}=n;if(!i||r.parent.type!==this.type)return!1;const s=r.parentOffset===r.parent.nodeSize-2,a=r.parent.textContent.endsWith(`
219
+
220
+ `);return!s||!a?!1:t.chain().command(({tr:u})=>(u.delete(r.pos-2,r.pos),!0)).exitCode().run()},ArrowUp:({editor:t})=>{if(!this.options.exitOnArrowUp)return!1;const{state:e}=t,{selection:n}=e,{$from:r,empty:i}=n;if(!i||r.parent.type!==this.type||r.parentOffset!==0)return!1;const s=r.before();return s>0?!1:t.commands.insertDefaultBlock({pos:s})},ArrowDown:({editor:t})=>{if(!this.options.exitOnArrowDown)return!1;const{state:e}=t,{selection:n,doc:r}=e,{$from:i,empty:s}=n;if(!s||i.parent.type!==this.type||!(i.parentOffset===i.parent.nodeSize-2))return!1;const u=i.after();return u===void 0?!1:r.nodeAt(u)?t.commands.command(({tr:f})=>(f.setSelection(Me.near(r.resolve(u))),!0)):t.commands.exitCode()}}},addInputRules(){return[V4({find:YZ,type:this.type,getAttributes:t=>({language:t[1]})}),V4({find:XZ,type:this.type,getAttributes:t=>({language:t[1]})})]},addProseMirrorPlugins(){return[new mt({key:new Kt("codeBlockVSCodeHandler"),props:{handlePaste:(t,e)=>{if(!e.clipboardData||this.editor.isActive(this.type.name))return!1;const n=e.clipboardData.getData("text/plain"),r=e.clipboardData.getData("vscode-editor-data"),i=r?JSON.parse(r):void 0,s=i?.mode;if(!n||!s)return!1;const{tr:a,schema:u}=t.state,c=u.text(n.replace(/\r\n?/g,`
221
+ `));return a.replaceSelectionWith(this.type.create({language:s},c)),a.selection.$from.parent.type!==this.type&&a.setSelection(De.near(a.doc.resolve(Math.max(0,a.selection.from-2)))),a.setMeta("paste",!0),t.dispatch(a),!0}}})]}}),ZZ=Zn.create({name:"doc",topNode:!0,content:"block+",renderMarkdown:(t,e)=>t.content?e.renderChildren(t.content,`
222
+
223
+ `):""}),eee=Zn.create({name:"hardBreak",markdownTokenName:"br",addOptions(){return{keepMarks:!0,HTMLAttributes:{}}},inline:!0,group:"inline",selectable:!1,linebreakReplacement:!0,parseHTML(){return[{tag:"br"}]},renderHTML({HTMLAttributes:t}){return["br",Ft(this.options.HTMLAttributes,t)]},renderText(){return`
224
+ `},renderMarkdown:()=>`
225
+ `,parseMarkdown:()=>({type:"hardBreak"}),addCommands(){return{setHardBreak:()=>({commands:t,chain:e,state:n,editor:r})=>t.first([()=>t.exitCode(),()=>t.command(()=>{const{selection:i,storedMarks:s}=n;if(i.$from.parent.type.spec.isolating)return!1;const{keepMarks:a}=this.options,{splittableMarks:u}=r.extensionManager,c=s||i.$to.parentOffset&&i.$from.marks();return e().insertContent({type:this.name}).command(({tr:f,dispatch:h})=>{if(h&&c&&a){const m=c.filter(g=>u.includes(g.type.name));f.ensureMarks(m)}return!0}).scrollIntoView().run()})])}},addKeyboardShortcuts(){return{"Mod-Enter":()=>this.editor.commands.setHardBreak(),"Shift-Enter":()=>this.editor.commands.setHardBreak()}}}),tee=Zn.create({name:"heading",addOptions(){return{levels:[1,2,3,4,5,6],HTMLAttributes:{}}},content:"inline*",group:"block",defining:!0,addAttributes(){return{level:{default:1,rendered:!1}}},parseHTML(){return this.options.levels.map(t=>({tag:`h${t}`,attrs:{level:t}}))},renderHTML({node:t,HTMLAttributes:e}){return[`h${this.options.levels.includes(t.attrs.level)?t.attrs.level:this.options.levels[0]}`,Ft(this.options.HTMLAttributes,e),0]},parseMarkdown:(t,e)=>e.createNode("heading",{level:t.depth||1},e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>{var n;const r=(n=t.attrs)!=null&&n.level?parseInt(t.attrs.level,10):1,i="#".repeat(r);return t.content?`${i} ${e.renderChildren(t.content)}`:""},addCommands(){return{setHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.setNode(this.name,t):!1,toggleHeading:t=>({commands:e})=>this.options.levels.includes(t.level)?e.toggleNode(this.name,"paragraph",t):!1}},addKeyboardShortcuts(){return this.options.levels.reduce((t,e)=>({...t,[`Mod-Alt-${e}`]:()=>this.editor.commands.toggleHeading({level:e})}),{})},addInputRules(){return this.options.levels.map(t=>V4({find:new RegExp(`^(#{${Math.min(...this.options.levels)},${t}})\\s$`),type:this.type,getAttributes:{level:t}}))}}),nee=Zn.create({name:"horizontalRule",addOptions(){return{HTMLAttributes:{},nextNodeType:"paragraph"}},group:"block",parseHTML(){return[{tag:"hr"}]},renderHTML({HTMLAttributes:t}){return["hr",Ft(this.options.HTMLAttributes,t)]},markdownTokenName:"hr",parseMarkdown:(t,e)=>e.createNode("horizontalRule"),renderMarkdown:()=>"---",addCommands(){return{setHorizontalRule:()=>({chain:t,state:e})=>{if(!eY(e,e.schema.nodes[this.name]))return!1;const{selection:n}=e,{$to:r}=n,i=t();return G7(n)?i.insertContentAt(r.pos,{type:this.name}):i.insertContent({type:this.name}),i.command(({state:s,tr:a,dispatch:u})=>{if(u){const{$to:c}=a.selection,f=c.end();if(c.nodeAfter)c.nodeAfter.isTextblock?a.setSelection(De.create(a.doc,c.pos+1)):c.nodeAfter.isBlock?a.setSelection(ke.create(a.doc,c.pos)):a.setSelection(De.create(a.doc,c.pos));else{const h=s.schema.nodes[this.options.nextNodeType]||c.parent.type.contentMatch.defaultType,m=h?.create();m&&(a.insert(f,m),a.setSelection(De.create(a.doc,f+1)))}a.scrollIntoView()}return!0}).run()}}},addInputRules(){return[EY({find:/^(?:---|—-|___\s|\*\*\*\s)$/,type:this.type})]}}),ree=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))$/,iee=/(?:^|\s)(\*(?!\s+\*)((?:[^*]+))\*(?!\s+\*))/g,see=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))$/,oee=/(?:^|\s)(_(?!\s+_)((?:[^_]+))_(?!\s+_))/g,aee=Ea.create({name:"italic",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"em"},{tag:"i",getAttrs:t=>t.style.fontStyle!=="normal"&&null},{style:"font-style=normal",clearMark:t=>t.type.name===this.name},{style:"font-style=italic"}]},renderHTML({HTMLAttributes:t}){return["em",Ft(this.options.HTMLAttributes,t),0]},addCommands(){return{setItalic:()=>({commands:t})=>t.setMark(this.name),toggleItalic:()=>({commands:t})=>t.toggleMark(this.name),unsetItalic:()=>({commands:t})=>t.unsetMark(this.name)}},markdownTokenName:"em",parseMarkdown:(t,e)=>e.applyMark("italic",e.parseInline(t.tokens||[])),markdownOptions:{htmlReopen:{open:"<em>",close:"</em>"}},renderMarkdown:(t,e)=>`*${e.renderChildren(t)}*`,addKeyboardShortcuts(){return{"Mod-i":()=>this.editor.commands.toggleItalic(),"Mod-I":()=>this.editor.commands.toggleItalic()}},addInputRules(){return[da({find:ree,type:this.type}),da({find:see,type:this.type})]},addPasteRules(){return[Ws({find:iee,type:this.type}),Ws({find:oee,type:this.type})]}});const lee="aaa1rp3bb0ott3vie4c1le2ogado5udhabi7c0ademy5centure6ountant0s9o1tor4d0s1ult4e0g1ro2tna4f0l1rica5g0akhan5ency5i0g1rbus3force5tel5kdn3l0ibaba4pay4lfinanz6state5y2sace3tom5m0azon4ericanexpress7family11x2fam3ica3sterdam8nalytics7droid5quan4z2o0l2partments8p0le4q0uarelle8r0ab1mco4chi3my2pa2t0e3s0da2ia2sociates9t0hleta5torney7u0ction5di0ble3o3spost5thor3o0s4w0s2x0a2z0ure5ba0by2idu3namex4d1k2r0celona5laycard4s5efoot5gains6seball5ketball8uhaus5yern5b0c1t1va3cg1n2d1e0ats2uty4er2rlin4st0buy5t2f1g1h0arti5i0ble3d1ke2ng0o3o1z2j1lack0friday9ockbuster8g1omberg7ue3m0s1w2n0pparibas9o0ats3ehringer8fa2m1nd2o0k0ing5sch2tik2on4t1utique6x2r0adesco6idgestone9oadway5ker3ther5ussels7s1t1uild0ers6siness6y1zz3v1w1y1z0h3ca0b1fe2l0l1vinklein9m0era3p2non3petown5ital0one8r0avan4ds2e0er0s4s2sa1e1h1ino4t0ering5holic7ba1n1re3c1d1enter4o1rn3f0a1d2g1h0anel2nel4rity4se2t2eap3intai5ristmas6ome4urch5i0priani6rcle4sco3tadel4i0c2y3k1l0aims4eaning6ick2nic1que6othing5ud3ub0med6m1n1o0ach3des3ffee4llege4ogne5m0mbank4unity6pany2re3uter5sec4ndos3struction8ulting7tact3ractors9oking4l1p2rsica5untry4pon0s4rses6pa2r0edit0card4union9icket5own3s1uise0s6u0isinella9v1w1x1y0mru3ou3z2dad1nce3ta1e1ing3sun4y2clk3ds2e0al0er2s3gree4livery5l1oitte5ta3mocrat6ntal2ist5si0gn4v2hl2iamonds6et2gital5rect0ory7scount3ver5h2y2j1k1m1np2o0cs1tor4g1mains5t1wnload7rive4tv2ubai3pont4rban5vag2r2z2earth3t2c0o2deka3u0cation8e1g1mail3erck5nergy4gineer0ing9terprises10pson4quipment8r0icsson6ni3s0q1tate5t1u0rovision8s2vents5xchange6pert3osed4ress5traspace10fage2il1rwinds6th3mily4n0s2rm0ers5shion4t3edex3edback6rrari3ero6i0delity5o2lm2nal1nce1ial7re0stone6mdale6sh0ing5t0ness6j1k1lickr3ghts4r2orist4wers5y2m1o0o0d1tball6rd1ex2sale4um3undation8x2r0ee1senius7l1ogans4ntier7tr2ujitsu5n0d2rniture7tbol5yi3ga0l0lery3o1up4me0s3p1rden4y2b0iz3d0n2e0a1nt0ing5orge5f1g0ee3h1i0ft0s3ves2ing5l0ass3e1obal2o4m0ail3bh2o1x2n1odaddy5ld0point6f2odyear5g0le4p1t1v2p1q1r0ainger5phics5tis4een3ipe3ocery4up4s1t1u0cci3ge2ide2tars5ru3w1y2hair2mburg5ngout5us3bo2dfc0bank7ealth0care8lp1sinki6re1mes5iphop4samitsu7tachi5v2k0t2m1n1ockey4ldings5iday5medepot5goods5s0ense7nda3rse3spital5t0ing5t0els3mail5use3w2r1sbc3t1u0ghes5yatt3undai7ibm2cbc2e1u2d1e0ee3fm2kano4l1m0amat4db2mo0bilien9n0c1dustries8finiti5o2g1k1stitute6urance4e4t0ernational10uit4vestments10o1piranga7q1r0ish4s0maili5t0anbul7t0au2v3jaguar4va3cb2e0ep2tzt3welry6io2ll2m0p2nj2o0bs1urg4t1y2p0morgan6rs3uegos4niper7kaufen5ddi3e0rryhotels6properties14fh2g1h1i0a1ds2m1ndle4tchen5wi3m1n1oeln3matsu5sher5p0mg2n2r0d1ed3uokgroup8w1y0oto4z2la0caixa5mborghini8er3nd0rover6xess5salle5t0ino3robe5w0yer5b1c1ds2ease3clerc5frak4gal2o2xus4gbt3i0dl2fe0insurance9style7ghting6ke2lly3mited4o2ncoln4k2ve1ing5k1lc1p2oan0s3cker3us3l1ndon4tte1o3ve3pl0financial11r1s1t0d0a3u0ndbeck6xe1ury5v1y2ma0drid4if1son4keup4n0agement7go3p1rket0ing3s4riott5shalls7ttel5ba2c0kinsey7d1e0d0ia3et2lbourne7me1orial6n0u2rck0msd7g1h1iami3crosoft7l1ni1t2t0subishi9k1l0b1s2m0a2n1o0bi0le4da2e1i1m1nash3ey2ster5rmon3tgage6scow4to0rcycles9v0ie4p1q1r1s0d2t0n1r2u0seum3ic4v1w1x1y1z2na0b1goya4me2vy3ba2c1e0c1t0bank4flix4work5ustar5w0s2xt0direct7us4f0l2g0o2hk2i0co2ke1on3nja3ssan1y5l1o0kia3rton4w0ruz3tv4p1r0a1w2tt2u1yc2z2obi1server7ffice5kinawa6layan0group9lo3m0ega4ne1g1l0ine5oo2pen3racle3nge4g0anic5igins6saka4tsuka4t2vh3pa0ge2nasonic7ris2s1tners4s1y3y2ccw3e0t2f0izer5g1h0armacy6d1ilips5one2to0graphy6s4ysio5ics1tet2ures6d1n0g1k2oneer5zza4k1l0ace2y0station9umbing5s3m1n0c2ohl2ker3litie5rn2st3r0axi3ess3ime3o0d0uctions8f1gressive8mo2perties3y5tection8u0dential9s1t1ub2w0c2y2qa1pon3uebec3st5racing4dio4e0ad1lestate6tor2y4cipes5d0umbrella9hab3ise0n3t2liance6n0t0als5pair3ort3ublican8st0aurant8view0s5xroth6ich0ardli6oh3l1o1p2o0cks3deo3gers4om3s0vp3u0gby3hr2n2w0e2yukyu6sa0arland6fe0ty4kura4le1on3msclub4ung5ndvik0coromant12ofi4p1rl2s1ve2xo3b0i1s2c0b1haeffler7midt4olarships8ol3ule3warz5ience5ot3d1e0arch3t2cure1ity6ek2lect4ner3rvices6ven3w1x0y3fr2g1h0angrila6rp3ell3ia1ksha5oes2p0ping5uji3w3i0lk2na1gles5te3j1k0i0n2y0pe4l0ing4m0art3ile4n0cf3o0ccer3ial4ftbank4ware6hu2lar2utions7ng1y2y2pa0ce3ort2t3r0l2s1t0ada2ples4r1tebank4farm7c0group6ockholm6rage3e3ream4udio2y3yle4u0cks3pplies3y2ort5rf1gery5zuki5v1watch4iss4x1y0dney4stems6z2tab1ipei4lk2obao4rget4tamotors6r2too4x0i3c0i2d0k2eam2ch0nology8l1masek5nnis4va3f1g1h0d1eater2re6iaa2ckets5enda4ps2res2ol4j0maxx4x2k0maxx5l1m0all4n1o0day3kyo3ols3p1ray3shiba5tal3urs3wn2yota3s3r0ade1ing4ining5vel0ers0insurance16ust3v2t1ube2i1nes3shu4v0s2w1z2ua1bank3s2g1k1nicom3versity8o2ol2ps2s1y1z2va0cations7na1guard7c1e0gas3ntures6risign5mögensberater2ung14sicherung10t2g1i0ajes4deo3g1king4llas4n1p1rgin4sa1ion4va1o3laanderen9n1odka3lvo3te1ing3o2yage5u2wales2mart4ter4ng0gou5tch0es6eather0channel12bcam3er2site5d0ding5ibo2r3f1hoswho6ien2ki2lliamhill9n0dows4e1ners6me2oodside6rk0s2ld3w2s1tc1f3xbox3erox4ihuan4n2xx2yz3yachts4hoo3maxun5ndex5e1odobashi7ga2kohama6u0tube6t1un3za0ppos4ra3ero3ip2m1one3uerich6w2",uee="ελ1υ2бг1ел3дети4ею2католик6ом3мкд2он1сква6онлайн5рг3рус2ф2сайт3рб3укр3қаз3հայ3ישראל5קום3ابوظبي5رامكو5لاردن4بحرين5جزائر5سعودية6عليان5مغرب5مارات5یران5بارت2زار4يتك3ھارت5تونس4سودان3رية5شبكة4عراق2ب2مان4فلسطين6قطر3كاثوليك6وم3مصر2ليسيا5وريتانيا7قع4همراه5پاکستان7ڀارت4कॉम3नेट3भारत0म्3ोत5संगठन5বাংলা5ভারত2ৰত4ਭਾਰਤ4ભારત4ଭାରତ4இந்தியா6லங்கை6சிங்கப்பூர்11భారత్5ಭಾರತ4ഭാരതം5ලංකා4คอม3ไทย3ລາວ3გე2みんな3アマゾン4クラウド4グーグル4コム2ストア3セール3ファッション6ポイント4世界2中信1国1國1文网3亚马逊3企业2佛山2信息2健康2八卦2公司1益2台湾1灣2商城1店1标2嘉里0大酒店5在线2大拿2天主教3娱乐2家電2广东2微博2慈善2我爱你3手机2招聘2政务1府2新加坡2闻2时尚2書籍2机构2淡马锡3游戏2澳門2点看2移动2组织机构4网址1店1站1络2联通2谷歌2购物2通販2集团2電訊盈科4飞利浦3食品2餐厅2香格里拉3港2닷넷1컴2삼성2한국2",X4="numeric",J4="ascii",Z4="alpha",Ac="asciinumeric",bc="alphanumeric",e3="domain",eR="emoji",cee="scheme",dee="slashscheme",vy="whitespace";function fee(t,e){return t in e||(e[t]=[]),e[t]}function Ho(t,e,n){e[X4]&&(e[Ac]=!0,e[bc]=!0),e[J4]&&(e[Ac]=!0,e[Z4]=!0),e[Ac]&&(e[bc]=!0),e[Z4]&&(e[bc]=!0),e[bc]&&(e[e3]=!0),e[eR]&&(e[e3]=!0);for(const r in e){const i=fee(r,n);i.indexOf(t)<0&&i.push(t)}}function hee(t,e){const n={};for(const r in e)e[r].indexOf(t)>=0&&(n[r]=!0);return n}function zn(t=null){this.j={},this.jr=[],this.jd=null,this.t=t}zn.groups={};zn.prototype={accepts(){return!!this.t},go(t){const e=this,n=e.j[t];if(n)return n;for(let r=0;r<e.jr.length;r++){const i=e.jr[r][0],s=e.jr[r][1];if(s&&i.test(t))return s}return e.jd},has(t,e=!1){return e?t in this.j:!!this.go(t)},ta(t,e,n,r){for(let i=0;i<t.length;i++)this.tt(t[i],e,n,r)},tr(t,e,n,r){r=r||zn.groups;let i;return e&&e.j?i=e:(i=new zn(e),n&&r&&Ho(e,n,r)),this.jr.push([t,i]),i},ts(t,e,n,r){let i=this;const s=t.length;if(!s)return i;for(let a=0;a<s-1;a++)i=i.tt(t[a]);return i.tt(t[s-1],e,n,r)},tt(t,e,n,r){r=r||zn.groups;const i=this;if(e&&e.j)return i.j[t]=e,e;const s=e;let a,u=i.go(t);if(u?(a=new zn,Object.assign(a.j,u.j),a.jr.push.apply(a.jr,u.jr),a.jd=u.jd,a.t=u.t):a=new zn,s){if(r)if(a.t&&typeof a.t=="string"){const c=Object.assign(hee(a.t,r),n);Ho(s,c,r)}else n&&Ho(s,n,r);a.t=s}return i.j[t]=a,a}};const Ne=(t,e,n,r,i)=>t.ta(e,n,r,i),vt=(t,e,n,r,i)=>t.tr(e,n,r,i),YD=(t,e,n,r,i)=>t.ts(e,n,r,i),ce=(t,e,n,r,i)=>t.tt(e,n,r,i),Ei="WORD",t3="UWORD",tR="ASCIINUMERICAL",nR="ALPHANUMERICAL",od="LOCALHOST",n3="TLD",r3="UTLD",_h="SCHEME",vl="SLASH_SCHEME",Yx="NUM",i3="WS",Xx="NL",Bc="OPENBRACE",Mc="CLOSEBRACE",Pp="OPENBRACKET",Op="CLOSEBRACKET",Lp="OPENPAREN",zp="CLOSEPAREN",Ip="OPENANGLEBRACKET",jp="CLOSEANGLEBRACKET",Fp="FULLWIDTHLEFTPAREN",Kp="FULLWIDTHRIGHTPAREN",_p="LEFTCORNERBRACKET",Vp="RIGHTCORNERBRACKET",Hp="LEFTWHITECORNERBRACKET",Up="RIGHTWHITECORNERBRACKET",qp="FULLWIDTHLESSTHAN",Gp="FULLWIDTHGREATERTHAN",Wp="AMPERSAND",Qp="APOSTROPHE",Yp="ASTERISK",Ss="AT",Xp="BACKSLASH",Jp="BACKTICK",Zp="CARET",Uo="COLON",Jx="COMMA",em="DOLLAR",Hr="DOT",tm="EQUALS",Zx="EXCLAMATION",dr="HYPHEN",Rc="PERCENT",nm="PIPE",rm="PLUS",im="POUND",Nc="QUERY",e1="QUOTE",rR="FULLWIDTHMIDDLEDOT",t1="SEMI",Ur="SLASH",Pc="TILDE",sm="UNDERSCORE",iR="EMOJI",om="SYM";var sR=Object.freeze({__proto__:null,ALPHANUMERICAL:nR,AMPERSAND:Wp,APOSTROPHE:Qp,ASCIINUMERICAL:tR,ASTERISK:Yp,AT:Ss,BACKSLASH:Xp,BACKTICK:Jp,CARET:Zp,CLOSEANGLEBRACKET:jp,CLOSEBRACE:Mc,CLOSEBRACKET:Op,CLOSEPAREN:zp,COLON:Uo,COMMA:Jx,DOLLAR:em,DOT:Hr,EMOJI:iR,EQUALS:tm,EXCLAMATION:Zx,FULLWIDTHGREATERTHAN:Gp,FULLWIDTHLEFTPAREN:Fp,FULLWIDTHLESSTHAN:qp,FULLWIDTHMIDDLEDOT:rR,FULLWIDTHRIGHTPAREN:Kp,HYPHEN:dr,LEFTCORNERBRACKET:_p,LEFTWHITECORNERBRACKET:Hp,LOCALHOST:od,NL:Xx,NUM:Yx,OPENANGLEBRACKET:Ip,OPENBRACE:Bc,OPENBRACKET:Pp,OPENPAREN:Lp,PERCENT:Rc,PIPE:nm,PLUS:rm,POUND:im,QUERY:Nc,QUOTE:e1,RIGHTCORNERBRACKET:Vp,RIGHTWHITECORNERBRACKET:Up,SCHEME:_h,SEMI:t1,SLASH:Ur,SLASH_SCHEME:vl,SYM:om,TILDE:Pc,TLD:n3,UNDERSCORE:sm,UTLD:r3,UWORD:t3,WORD:Ei,WS:i3});const vi=/[a-z]/,ic=new RegExp("\\p{L}","u"),ky=new RegExp("\\p{Emoji}","u"),ki=/\d/,Cy=/\s/,XD="\r",Ey=`
226
+ `,pee="️",mee="‍",Dy="";let Eh=null,Dh=null;function gee(t=[]){const e={};zn.groups=e;const n=new zn;Eh==null&&(Eh=JD(lee)),Dh==null&&(Dh=JD(uee)),ce(n,"'",Qp),ce(n,"{",Bc),ce(n,"}",Mc),ce(n,"[",Pp),ce(n,"]",Op),ce(n,"(",Lp),ce(n,")",zp),ce(n,"<",Ip),ce(n,">",jp),ce(n,"(",Fp),ce(n,")",Kp),ce(n,"「",_p),ce(n,"」",Vp),ce(n,"『",Hp),ce(n,"』",Up),ce(n,"<",qp),ce(n,">",Gp),ce(n,"&",Wp),ce(n,"*",Yp),ce(n,"@",Ss),ce(n,"`",Jp),ce(n,"^",Zp),ce(n,":",Uo),ce(n,",",Jx),ce(n,"$",em),ce(n,".",Hr),ce(n,"=",tm),ce(n,"!",Zx),ce(n,"-",dr),ce(n,"%",Rc),ce(n,"|",nm),ce(n,"+",rm),ce(n,"#",im),ce(n,"?",Nc),ce(n,'"',e1),ce(n,"/",Ur),ce(n,";",t1),ce(n,"~",Pc),ce(n,"_",sm),ce(n,"\\",Xp),ce(n,"・",rR);const r=vt(n,ki,Yx,{[X4]:!0});vt(r,ki,r);const i=vt(r,vi,tR,{[Ac]:!0}),s=vt(r,ic,nR,{[bc]:!0}),a=vt(n,vi,Ei,{[J4]:!0});vt(a,ki,i),vt(a,vi,a),vt(i,ki,i),vt(i,vi,i);const u=vt(n,ic,t3,{[Z4]:!0});vt(u,vi),vt(u,ki,s),vt(u,ic,u),vt(s,ki,s),vt(s,vi),vt(s,ic,s);const c=ce(n,Ey,Xx,{[vy]:!0}),f=ce(n,XD,i3,{[vy]:!0}),h=vt(n,Cy,i3,{[vy]:!0});ce(n,Dy,h),ce(f,Ey,c),ce(f,Dy,h),vt(f,Cy,h),ce(h,XD),ce(h,Ey),vt(h,Cy,h),ce(h,Dy,h);const m=vt(n,ky,iR,{[eR]:!0});ce(m,"#"),vt(m,ky,m),ce(m,pee,m);const g=ce(m,mee);ce(g,"#"),vt(g,ky,m);const b=[[vi,a],[ki,i]],x=[[vi,null],[ic,u],[ki,s]];for(let k=0;k<Eh.length;k++)xs(n,Eh[k],n3,Ei,b);for(let k=0;k<Dh.length;k++)xs(n,Dh[k],r3,t3,x);Ho(n3,{tld:!0,ascii:!0},e),Ho(r3,{utld:!0,alpha:!0},e),xs(n,"file",_h,Ei,b),xs(n,"mailto",_h,Ei,b),xs(n,"http",vl,Ei,b),xs(n,"https",vl,Ei,b),xs(n,"ftp",vl,Ei,b),xs(n,"ftps",vl,Ei,b),Ho(_h,{scheme:!0,ascii:!0},e),Ho(vl,{slashscheme:!0,ascii:!0},e),t=t.sort((k,E)=>k[0]>E[0]?1:-1);for(let k=0;k<t.length;k++){const E=t[k][0],T=t[k][1]?{[cee]:!0}:{[dee]:!0};E.indexOf("-")>=0?T[e3]=!0:vi.test(E)?ki.test(E)?T[Ac]=!0:T[J4]=!0:T[X4]=!0,YD(n,E,E,T)}return YD(n,"localhost",od,{ascii:!0}),n.jd=new zn(om),{start:n,tokens:Object.assign({groups:e},sR)}}function oR(t,e){const n=bee(e.replace(/[A-Z]/g,u=>u.toLowerCase())),r=n.length,i=[];let s=0,a=0;for(;a<r;){let u=t,c=null,f=0,h=null,m=-1,g=-1;for(;a<r&&(c=u.go(n[a]));)u=c,u.accepts()?(m=0,g=0,h=u):m>=0&&(m+=n[a].length,g++),f+=n[a].length,s+=n[a].length,a++;s-=m,a-=g,f-=m,i.push({t:h.t,v:e.slice(s-f,s),s:s-f,e:s})}return i}function bee(t){const e=[],n=t.length;let r=0;for(;r<n;){let i=t.charCodeAt(r),s,a=i<55296||i>56319||r+1===n||(s=t.charCodeAt(r+1))<56320||s>57343?t[r]:t.slice(r,r+2);e.push(a),r+=a.length}return e}function xs(t,e,n,r,i){let s;const a=e.length;for(let u=0;u<a-1;u++){const c=e[u];t.j[c]?s=t.j[c]:(s=new zn(r),s.jr=i.slice(),t.j[c]=s),t=s}return s=new zn(n),s.jr=i.slice(),t.j[e[a-1]]=s,s}function JD(t){const e=[],n=[];let r=0,i="0123456789";for(;r<t.length;){let s=0;for(;i.indexOf(t[r+s])>=0;)s++;if(s>0){e.push(n.join(""));for(let a=parseInt(t.substring(r,r+s),10);a>0;a--)n.pop();r+=s}else n.push(t[r]),r++}return e}const ad={defaultProtocol:"http",events:null,format:ZD,formatHref:ZD,nl2br:!1,tagName:"a",target:null,rel:null,validate:!0,truncate:1/0,className:null,attributes:null,ignoreTags:[],render:null};function n1(t,e=null){let n=Object.assign({},ad);t&&(n=Object.assign(n,t instanceof n1?t.o:t));const r=n.ignoreTags,i=[];for(let s=0;s<r.length;s++)i.push(r[s].toUpperCase());this.o=n,e&&(this.defaultRender=e),this.ignoreTags=i}n1.prototype={o:ad,ignoreTags:[],defaultRender(t){return t},check(t){return this.get("validate",t.toString(),t)},get(t,e,n){const r=e!=null;let i=this.o[t];return i&&(typeof i=="object"?(i=n.t in i?i[n.t]:ad[t],typeof i=="function"&&r&&(i=i(e,n))):typeof i=="function"&&r&&(i=i(e,n.t,n)),i)},getObj(t,e,n){let r=this.o[t];return typeof r=="function"&&e!=null&&(r=r(e,n.t,n)),r},render(t){const e=t.render(this);return(this.get("render",null,t)||this.defaultRender)(e,t.t,t)}};function ZD(t){return t}function aR(t,e){this.t="token",this.v=t,this.tk=e}aR.prototype={isLink:!1,toString(){return this.v},toHref(t){return this.toString()},toFormattedString(t){const e=this.toString(),n=t.get("truncate",e,this),r=t.get("format",e,this);return n&&r.length>n?r.substring(0,n)+"…":r},toFormattedHref(t){return t.get("formatHref",this.toHref(t.get("defaultProtocol")),this)},startIndex(){return this.tk[0].s},endIndex(){return this.tk[this.tk.length-1].e},toObject(t=ad.defaultProtocol){return{type:this.t,value:this.toString(),isLink:this.isLink,href:this.toHref(t),start:this.startIndex(),end:this.endIndex()}},toFormattedObject(t){return{type:this.t,value:this.toFormattedString(t),isLink:this.isLink,href:this.toFormattedHref(t),start:this.startIndex(),end:this.endIndex()}},validate(t){return t.get("validate",this.toString(),this)},render(t){const e=this,n=this.toHref(t.get("defaultProtocol")),r=t.get("formatHref",n,this),i=t.get("tagName",n,e),s=this.toFormattedString(t),a={},u=t.get("className",n,e),c=t.get("target",n,e),f=t.get("rel",n,e),h=t.getObj("attributes",n,e),m=t.getObj("events",n,e);return a.href=r,u&&(a.class=u),c&&(a.target=c),f&&(a.rel=f),h&&Object.assign(a,h),{tagName:i,attributes:a,content:s,eventListeners:m}}};function Gm(t,e){class n extends aR{constructor(i,s){super(i,s),this.t=t}}for(const r in e)n.prototype[r]=e[r];return n.t=t,n}const yee=Gm("email",{isLink:!0,toHref(){return"mailto:"+this.toString()}}),eS=Gm("text"),xee=Gm("nl"),Sh=Gm("url",{isLink:!0,toHref(t=ad.defaultProtocol){return this.hasProtocol()?this.v:`${t}://${this.v}`},hasProtocol(){const t=this.tk;return t.length>=2&&t[0].t!==od&&t[1].t===Uo}}),cr=t=>new zn(t);function vee({groups:t}){const e=t.domain.concat([Wp,Yp,Ss,Xp,Jp,Zp,em,tm,dr,Yx,Rc,nm,rm,im,Ur,om,Pc,sm]),n=[Qp,Uo,Jx,Hr,Zx,Rc,Nc,e1,t1,Ip,jp,Bc,Mc,Op,Pp,Lp,zp,Fp,Kp,_p,Vp,Hp,Up,qp,Gp],r=[Wp,Qp,Yp,Xp,Jp,Zp,em,tm,dr,Bc,Mc,Rc,nm,rm,im,Nc,Ur,om,Pc,sm],i=cr(),s=ce(i,Pc);Ne(s,r,s),Ne(s,t.domain,s);const a=cr(),u=cr(),c=cr();Ne(i,t.domain,a),Ne(i,t.scheme,u),Ne(i,t.slashscheme,c),Ne(a,r,s),Ne(a,t.domain,a);const f=ce(a,Ss);ce(s,Ss,f),ce(u,Ss,f),ce(c,Ss,f);const h=ce(s,Hr);Ne(h,r,s),Ne(h,t.domain,s);const m=cr();Ne(f,t.domain,m),Ne(m,t.domain,m);const g=ce(m,Hr);Ne(g,t.domain,m);const b=cr(yee);Ne(g,t.tld,b),Ne(g,t.utld,b),ce(f,od,b);const x=ce(m,dr);ce(x,dr,x),Ne(x,t.domain,m),Ne(b,t.domain,m),ce(b,Hr,g),ce(b,dr,x);const k=ce(a,dr),E=ce(a,Hr);ce(k,dr,k),Ne(k,t.domain,a),Ne(E,r,s),Ne(E,t.domain,a);const D=cr(Sh);Ne(E,t.tld,D),Ne(E,t.utld,D),Ne(D,t.domain,a),Ne(D,r,s),ce(D,Hr,E),ce(D,dr,k),ce(D,Ss,f);const T=ce(D,Uo),$=cr(Sh);Ne(T,t.numeric,$);const A=cr(Sh),B=cr();Ne(A,e,A),Ne(A,n,B),Ne(B,e,A),Ne(B,n,B),ce(D,Ur,A),ce($,Ur,A);const P=ce(u,Uo),M=ce(c,Uo),N=ce(M,Ur),j=ce(N,Ur);Ne(u,t.domain,a),ce(u,Hr,E),ce(u,dr,k),Ne(c,t.domain,a),ce(c,Hr,E),ce(c,dr,k),Ne(P,t.domain,A),ce(P,Ur,A),ce(P,Nc,A),Ne(j,t.domain,A),Ne(j,e,A),ce(j,Ur,A);const G=[[Bc,Mc],[Pp,Op],[Lp,zp],[Ip,jp],[Fp,Kp],[_p,Vp],[Hp,Up],[qp,Gp]];for(let W=0;W<G.length;W++){const[U,ne]=G[W],F=ce(A,U);ce(B,U,F);const te=cr(Sh);Ne(F,e,te);const O=cr();Ne(F,n,O),ce(F,ne,A),Ne(te,e,te),Ne(te,n,O),Ne(O,e,te),Ne(O,n,O),ce(te,ne,A),ce(O,ne,A)}return ce(i,od,D),ce(i,Xx,xee),{start:i,tokens:sR}}function kee(t,e,n){let r=n.length,i=0,s=[],a=[];for(;i<r;){let u=t,c=null,f=null,h=0,m=null,g=-1;for(;i<r&&!(c=u.go(n[i].t));)a.push(n[i++]);for(;i<r&&(f=c||u.go(n[i].t));)c=null,u=f,u.accepts()?(g=0,m=u):g>=0&&g++,i++,h++;if(g<0)i-=h,i<r&&(a.push(n[i]),i++);else{a.length>0&&(s.push(Sy(eS,e,a)),a=[]),i-=g,h-=g;const b=m.t,x=n.slice(i-h,i);s.push(Sy(b,e,x))}}return a.length>0&&s.push(Sy(eS,e,a)),s}function Sy(t,e,n){const r=n[0].s,i=n[n.length-1].e,s=e.slice(r,i);return new t(s,n)}const Cee=typeof console<"u"&&console&&console.warn||(()=>{}),Eee="until manual call of linkify.init(). Register all schemes and plugins before invoking linkify the first time.",ft={scanner:null,parser:null,tokenQueue:[],pluginQueue:[],customSchemes:[],initialized:!1};function Dee(){return zn.groups={},ft.scanner=null,ft.parser=null,ft.tokenQueue=[],ft.pluginQueue=[],ft.customSchemes=[],ft.initialized=!1,ft}function tS(t,e=!1){if(ft.initialized&&Cee(`linkifyjs: already initialized - will not register custom scheme "${t}" ${Eee}`),!/^[0-9a-z]+(-[0-9a-z]+)*$/.test(t))throw new Error(`linkifyjs: incorrect scheme format.
227
+ 1. Must only contain digits, lowercase ASCII letters or "-"
228
+ 2. Cannot start or end with "-"
229
+ 3. "-" cannot repeat`);ft.customSchemes.push([t,e])}function See(){ft.scanner=gee(ft.customSchemes);for(let t=0;t<ft.tokenQueue.length;t++)ft.tokenQueue[t][1]({scanner:ft.scanner});ft.parser=vee(ft.scanner.tokens);for(let t=0;t<ft.pluginQueue.length;t++)ft.pluginQueue[t][1]({scanner:ft.scanner,parser:ft.parser});return ft.initialized=!0,ft}function r1(t){return ft.initialized||See(),kee(ft.parser.start,t,oR(ft.scanner.start,t))}r1.scan=oR;function lR(t,e=null,n=null){if(e&&typeof e=="object"){if(n)throw Error(`linkifyjs: Invalid link type ${e}; must be a string`);n=e,e=null}const r=new n1(n),i=r1(t),s=[];for(let a=0;a<i.length;a++){const u=i[a];u.isLink&&(!e||u.t===e)&&r.check(u)&&s.push(u.toFormattedObject(r))}return s}var i1="[\0-   ᠎ -\u2029  ]",wee=new RegExp(i1),$ee=new RegExp(`${i1}$`),Tee=new RegExp(i1,"g");function Aee(t){return t.length===1?t[0].isLink:t.length===3&&t[1].isLink?["()","[]"].includes(t[0].value+t[2].value):!1}function Bee(t){return new mt({key:new Kt("autolink"),appendTransaction:(e,n,r)=>{const i=e.some(f=>f.docChanged)&&!n.doc.eq(r.doc),s=e.some(f=>f.getMeta("preventAutolink"));if(!i||s)return;const{tr:a}=r,u=j7(n.doc,[...e]);if(Bx(u).forEach(({newRange:f})=>{const h=hQ(r.doc,f,b=>b.isTextblock);let m,g;if(h.length>1)m=h[0],g=r.doc.textBetween(m.pos,m.pos+m.node.nodeSize,void 0," ");else if(h.length){const b=r.doc.textBetween(f.from,f.to," "," ");if(!$ee.test(b))return;m=h[0],g=r.doc.textBetween(m.pos,f.to,void 0," ")}if(m&&g){const b=g.split(wee).filter(Boolean);if(b.length<=0)return!1;const x=b[b.length-1],k=m.pos+g.lastIndexOf(x);if(!x)return!1;const E=r1(x).map(D=>D.toObject(t.defaultProtocol));if(!Aee(E))return!1;E.filter(D=>D.isLink).map(D=>({...D,from:k+D.start+1,to:k+D.end+1})).filter(D=>r.schema.marks.code?!r.doc.rangeHasMark(D.from,D.to,r.schema.marks.code):!0).filter(D=>t.validate(D.value)).filter(D=>t.shouldAutoLink(D.value)).forEach(D=>{Mx(D.from,D.to,r.doc).some(T=>T.mark.type===t.type)||a.addMark(D.from,D.to,t.type.create({href:D.href}))})}}),!!a.steps.length)return a}})}function Mee(t){return new mt({key:new Kt("handleClickLink"),props:{handleClick:(e,n,r)=>{var i,s;if(r.button!==0||!e.editable)return!1;let a=null;if(r.target instanceof HTMLAnchorElement)a=r.target;else{const c=r.target;if(!c)return!1;const f=t.editor.view.dom;a=c.closest("a"),a&&!f.contains(a)&&(a=null)}if(!a)return!1;let u=!1;if(t.enableClickSelection&&(u=t.editor.commands.extendMarkRange(t.type.name)),t.openOnClick){const c=q7(e.state,t.type.name),f=(i=a.href)!=null?i:c.href,h=(s=a.target)!=null?s:c.target;f&&(window.open(f,h),u=!0)}return u}}})}var Ree=/\[([^[\]]+)\]\(((?:[^\s()]|\([^\s()]*\))+)(?:\s+(?:(["'])(.*?)\3|“(.*?)”|‘(.*?)’))?\)$/,Nee=/\[([^[\]]+)\]\(((?:[^\s()]|\([^\s()]*\))+)(?:\s+(?:(["'])(.*?)\3|“(.*?)”|‘(.*?)’))?\)/g;function uR(t,e){let n=0;for(let r=e-1;r>=0&&t[r]==="\\";r-=1)n+=1;return n%2===1}function Pee(t,e){let n=0,r=0;for(;r<e;){if(t[r]!=="`"){r+=1;continue}if(n===0&&uR(t,r)){r+=1;continue}let i=0;for(;r<e&&t[r]==="`";)i+=1,r+=1;n===0?n=i:i===n&&(n=0)}return n>0}function cR(t,e,n){var r,i;const[,s,a]=e;return(e.index?t[e.index-1]:void 0)==="!"||uR(t,(r=e.index)!=null?r:0)||Pee(t,(i=e.index)!=null?i:0)?!1:!!s.trim()&&n(a)}function dR(t){var e,n;const[r,i,s,,a,u,c]=t,f=(e=a??u)!=null?e:c;return{index:(n=t.index)!=null?n:0,text:r,replaceWith:i,data:{href:s,title:f||null,markdown:!0}}}function Oee(t,e){return t.index<e.index+e.text.length&&e.index<t.index+t.text.length}function fR(t){var e,n,r;return{href:(e=t.data)==null?void 0:e.href,title:(r=(n=t.data)==null?void 0:n.title)!=null?r:null}}function Lee(t){const e=da({find:n=>{const r=Ree.exec(n);return!r||!cR(n,r,t.isAllowedHref)?null:dR(r)},type:t.type,getAttributes:fR});return new Td({find:e.find,handler:n=>{const r=e.handler(n);return r!==null&&n.state.tr.steps.length&&n.state.tr.setMeta("preventAutolink",!0),r}})}function zee(t){const e=Ws({find:n=>{var r,i;const s=[];for(const u of n.matchAll(Nee))cR(n,u,t.isAllowedHref)&&s.push(dR(u));const a=((i=(r=t.findPlainUrls)==null?void 0:r.call(t,n))!=null?i:[]).filter(u=>!s.some(c=>Oee(c,u)));return[...s,...a]},type:t.type,getAttributes:fR});return new Z7({find:e.find,handler:n=>{var r;const i=e.handler(n);return i!==null&&n.state.tr.steps.length&&((r=n.match.data)!=null&&r.markdown)&&n.state.tr.setMeta("preventAutolink",!0),i}})}function Iee(t){return new mt({key:new Kt("handlePasteLink"),props:{handlePaste:(e,n,r)=>{const{shouldAutoLink:i}=t,{state:s}=e,{selection:a}=s,{empty:u}=a;if(u)return!1;let c="";r.content.forEach(h=>{c+=h.textContent});const f=lR(c,{defaultProtocol:t.defaultProtocol}).find(h=>h.isLink&&h.value===c);return!c||!f||i!==void 0&&!i(f.value)?!1:t.editor.commands.setMark(t.type,{href:f.href})}}})}function Ci(t,e){const n=["http","https","ftp","ftps","mailto","tel","callto","sms","cid","xmpp"];return e&&e.forEach(r=>{const i=typeof r=="string"?r:r.scheme;i&&n.push(i)}),!t||t.replace(Tee,"").match(new RegExp(`^(?:(?:${n.map(r=>r.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&")).join("|")}):|[^a-z]|[a-z0-9+.\\-]+(?:[^a-z+.\\-:]|$))`,"i"))}var jee=Ea.create({name:"link",priority:1e3,keepOnSplit:!1,exitable:!0,onCreate(){this.options.validate&&!this.options.shouldAutoLink&&(this.options.shouldAutoLink=this.options.validate,console.warn("The `validate` option is deprecated. Rename to the `shouldAutoLink` option instead.")),this.options.protocols.forEach(t=>{if(typeof t=="string"){tS(t);return}tS(t.scheme,t.optionalSlashes)})},onDestroy(){Dee()},inclusive(){return this.options.autolink},addOptions(){return{openOnClick:!0,enableClickSelection:!1,linkOnPaste:!0,markdownLinks:!1,autolink:!0,protocols:[],defaultProtocol:"http",HTMLAttributes:{target:"_blank",rel:"noopener noreferrer nofollow",class:null},isAllowedUri:(t,e)=>!!Ci(t,e.protocols),validate:t=>!!t,shouldAutoLink:t=>{const e=/^[a-z][a-z0-9+.-]*:\/\//i.test(t),n=/^[a-z][a-z0-9+.-]*:/i.test(t);if(e||n&&!t.includes("@"))return!0;const i=(t.includes("@")?t.split("@").pop():t).split(/[/?#:]/)[0];return!(/^\d{1,3}(\.\d{1,3}){3}$/.test(i)||!/\./.test(i))}}},addAttributes(){var t,e,n;return{href:{default:null,parseHTML(r){return r.getAttribute("href")}},target:{default:(t=this.options.HTMLAttributes.target)!=null?t:null},rel:{default:(e=this.options.HTMLAttributes.rel)!=null?e:null},class:{default:(n=this.options.HTMLAttributes.class)!=null?n:null},title:{default:null}}},parseHTML(){return[{tag:"a[href]",getAttrs:t=>{const e=t.getAttribute("href");return!e||!this.options.isAllowedUri(e,{defaultValidate:n=>!!Ci(n,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:null}}]},renderHTML({HTMLAttributes:t}){return this.options.isAllowedUri(t.href,{defaultValidate:e=>!!Ci(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?["a",Ft(this.options.HTMLAttributes,t),0]:["a",Ft(this.options.HTMLAttributes,{...t,href:""}),0]},markdownTokenName:"link",parseMarkdown:(t,e)=>e.applyMark("link",e.parseInline(t.tokens||[]),{href:t.href,title:t.title||null}),renderMarkdown:(t,e)=>{var n,r,i,s;const a=(r=(n=t.attrs)==null?void 0:n.href)!=null?r:"",u=(s=(i=t.attrs)==null?void 0:i.title)!=null?s:"",c=e.renderChildren(t);return u?`[${c}](${a} "${u}")`:`[${c}](${a})`},addCommands(){return{setLink:t=>({chain:e})=>{const{href:n}=t;return this.options.isAllowedUri(n,{defaultValidate:r=>!!Ci(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?e().setMark(this.name,t).setMeta("preventAutolink",!0).run():!1},toggleLink:t=>({chain:e})=>{const{href:n}=t||{};return n&&!this.options.isAllowedUri(n,{defaultValidate:r=>!!Ci(r,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})?!1:e().toggleMark(this.name,t,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()},unsetLink:()=>({chain:t})=>t().unsetMark(this.name,{extendEmptyMarkRange:!0}).setMeta("preventAutolink",!0).run()}},addInputRules(){return this.options.markdownLinks?[Lee({type:this.type,isAllowedHref:t=>this.options.isAllowedUri(t,{defaultValidate:e=>!!Ci(e,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol})})]:[]},addPasteRules(){const t=e=>{const n=[];if(e){const{protocols:r,defaultProtocol:i}=this.options;lR(e).filter(a=>a.isLink&&this.options.isAllowedUri(a.value,{defaultValidate:u=>!!Ci(u,r),protocols:r,defaultProtocol:i})).forEach(a=>{this.options.shouldAutoLink(a.value)&&n.push({text:a.value,data:{href:a.href},index:a.start})})}return n};return this.options.markdownLinks?[zee({type:this.type,isAllowedHref:e=>this.options.isAllowedUri(e,{defaultValidate:n=>!!Ci(n,this.options.protocols),protocols:this.options.protocols,defaultProtocol:this.options.defaultProtocol}),findPlainUrls:t})]:[Ws({find:t,type:this.type,getAttributes:e=>{var n;return{href:(n=e.data)==null?void 0:n.href}}})]},addProseMirrorPlugins(){const t=[],{protocols:e,defaultProtocol:n}=this.options;return this.options.autolink&&t.push(Bee({type:this.type,defaultProtocol:this.options.defaultProtocol,validate:r=>this.options.isAllowedUri(r,{defaultValidate:i=>!!Ci(i,e),protocols:e,defaultProtocol:n}),shouldAutoLink:this.options.shouldAutoLink})),t.push(Mee({type:this.type,editor:this.editor,openOnClick:this.options.openOnClick==="whenNotEditable"?!0:this.options.openOnClick,enableClickSelection:this.options.enableClickSelection})),this.options.linkOnPaste&&t.push(Iee({editor:this.editor,defaultProtocol:this.options.defaultProtocol,type:this.type,shouldAutoLink:this.options.shouldAutoLink})),t}}),wh="&nbsp;",wy=" ",Fee=Zn.create({name:"paragraph",priority:1e3,addOptions(){return{HTMLAttributes:{}}},group:"block",content:"inline*",parseHTML(){return[{tag:"p"}]},renderHTML({HTMLAttributes:t}){return["p",Ft(this.options.HTMLAttributes,t),0]},parseMarkdown:(t,e)=>{const n=t.tokens||[];if(n.length===1&&n[0].type==="image")return e.parseChildren([n[0]]);const r=e.parseInline(n);return n.length===1&&n[0].type==="text"&&(n[0].raw===wh||n[0].text===wh||n[0].raw===wy||n[0].text===wy)&&r.length===1&&r[0].type==="text"&&(r[0].text===wh||r[0].text===wy)?e.createNode("paragraph",void 0,[]):e.createNode("paragraph",void 0,r)},renderMarkdown:(t,e,n)=>{var r,i;if(!t)return"";const s=Array.isArray(t.content)?t.content:[];if(s.length===0){const a=Array.isArray((r=n?.previousNode)==null?void 0:r.content)?n.previousNode.content:[];return((i=n?.previousNode)==null?void 0:i.type)==="paragraph"&&a.length===0?wh:""}return e.renderChildren(s)},addCommands(){return{setParagraph:()=>({commands:t})=>t.setNode(this.name)}},addKeyboardShortcuts(){return{"Mod-Alt-0":()=>this.editor.commands.setParagraph()}}}),Kee=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/,_ee=/(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g,Vee=Ea.create({name:"strike",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"s"},{tag:"del"},{tag:"strike"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("line-through")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["s",Ft(this.options.HTMLAttributes,t),0]},markdownTokenName:"del",parseMarkdown:(t,e)=>e.applyMark("strike",e.parseInline(t.tokens||[])),renderMarkdown:(t,e)=>`~~${e.renderChildren(t)}~~`,addCommands(){return{setStrike:()=>({commands:t})=>t.setMark(this.name),toggleStrike:()=>({commands:t})=>t.toggleMark(this.name),unsetStrike:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-Shift-s":()=>this.editor.commands.toggleStrike()}},addInputRules(){return[da({find:Kee,type:this.type})]},addPasteRules(){return[Ws({find:_ee,type:this.type})]}}),Hee=Zn.create({name:"text",group:"inline",parseMarkdown:t=>({type:"text",text:t.text||""}),renderMarkdown:t=>t.text||""}),Uee=Ea.create({name:"underline",addOptions(){return{HTMLAttributes:{}}},parseHTML(){return[{tag:"u"},{style:"text-decoration",consuming:!1,getAttrs:t=>t.includes("underline")?{}:!1}]},renderHTML({HTMLAttributes:t}){return["u",Ft(this.options.HTMLAttributes,t),0]},parseMarkdown(t,e){return e.applyMark(this.name||"underline",e.parseInline(t.tokens||[]))},renderMarkdown(t,e){return`++${e.renderChildren(t)}++`},markdownTokenizer:{name:"underline",level:"inline",start(t){return t.indexOf("++")},tokenize(t,e,n){const i=/^(\+\+)([\s\S]+?)(\+\+)/.exec(t);if(!i)return;const s=i[2].trim();return{type:"underline",raw:i[0],text:s,tokens:n.inlineTokens(s)}}},addCommands(){return{setUnderline:()=>({commands:t})=>t.setMark(this.name),toggleUnderline:()=>({commands:t})=>t.toggleMark(this.name),unsetUnderline:()=>({commands:t})=>t.unsetMark(this.name)}},addKeyboardShortcuts(){return{"Mod-u":()=>this.editor.commands.toggleUnderline(),"Mod-U":()=>this.editor.commands.toggleUnderline()}}}),qee=gt.create({name:"starterKit",addExtensions(){var t,e,n,r;const i=[];return this.options.bold!==!1&&i.push(qZ.configure(this.options.bold)),this.options.blockquote!==!1&&i.push(KZ.configure(this.options.blockquote)),this.options.bulletList!==!1&&i.push(h8.configure(this.options.bulletList)),this.options.code!==!1&&i.push(QZ.configure(this.options.code)),this.options.codeBlock!==!1&&i.push(JZ.configure(this.options.codeBlock)),this.options.document!==!1&&i.push(ZZ.configure(this.options.document)),this.options.dropcursor!==!1&&i.push(xX.configure(this.options.dropcursor)),this.options.gapcursor!==!1&&i.push(vX.configure(this.options.gapcursor)),this.options.hardBreak!==!1&&i.push(eee.configure(this.options.hardBreak)),this.options.heading!==!1&&i.push(tee.configure(this.options.heading)),this.options.undoRedo!==!1&&i.push(LX.configure(this.options.undoRedo)),this.options.horizontalRule!==!1&&i.push(nee.configure(this.options.horizontalRule)),this.options.italic!==!1&&i.push(aee.configure(this.options.italic)),this.options.listItem!==!1&&i.push(y8.configure(this.options.listItem)),this.options.listKeymap!==!1&&i.push(C8.configure((t=this.options)==null?void 0:t.listKeymap)),this.options.link!==!1&&i.push(jee.configure((e=this.options)==null?void 0:e.link)),this.options.orderedList!==!1&&i.push(D8.configure(this.options.orderedList)),this.options.paragraph!==!1&&i.push(Fee.configure(this.options.paragraph)),this.options.strike!==!1&&i.push(Vee.configure(this.options.strike)),this.options.text!==!1&&i.push(Hee.configure(this.options.text)),this.options.underline!==!1&&i.push(Uee.configure((n=this.options)==null?void 0:n.underline)),this.options.trailingNode!==!1&&i.push(OX.configure((r=this.options)==null?void 0:r.trailingNode)),i}}),Gee=qee;function Oc({defaultValue:t="",editable:e=!0,placeholder:n="",ariaLabel:r,autoFocus:i=!1,className:s,onBlur:a,onChange:u,onSubmit:c,ref:f}){const h=S.useRef({onBlur:a,onChange:u,onSubmit:c});h.current={onBlur:a,onChange:u,onSubmit:c};const m=S.useRef(""),[g]=S.useState(()=>[Gee.configure({underline:!1,link:{openOnClick:!1}}),w8,S8.configure({nested:!0}),IJ,BX.configure({placeholder:n}),gt.create({name:"submitKeymap",addKeyboardShortcuts(){return{"Mod-Enter":()=>h.current.onSubmit?(h.current.onSubmit(),!0):!1}}})]),b=OZ({extensions:g,content:t,contentType:"markdown",editable:e,autofocus:i,editorProps:{attributes:{class:fe("typeset min-w-0 [--typeset-size:0.875rem]",s),...r?{"aria-label":r}:{}}},onCreate({editor:x}){m.current=x.getMarkdown()},onUpdate({editor:x}){h.current.onChange?.(x.getMarkdown())},onBlur({editor:x}){const k=x.getMarkdown();k!==m.current&&(m.current=k,h.current.onBlur?.(k))}});return S.useImperativeHandle(f,()=>({getMarkdown:()=>b?.getMarkdown()??"",clear:()=>{b?.commands.clearContent(!0),m.current=b?.getMarkdown()??""},focus:()=>b?.commands.focus()}),[b]),C.jsx(W8,{editor:b,"data-slot":"rich-text-editor"})}const ld="h-7 gap-1.5 self-start rounded-full pr-2.5 pl-1.5 font-normal";function hR({status:t,onChange:e,variant:n="ghost",className:r}){const[i,s]=S.useState(!1);return C.jsxs(vd,{isOpen:i,onOpenChange:s,children:[C.jsxs(Re,{variant:n,size:"sm","aria-label":"Status",className:fe(ld,r),children:[C.jsx(Nr,{status:t,className:"size-3.5"}),Ai[t]]}),C.jsx(kd,{className:"w-56",children:C.jsxs(Gl,{children:[C.jsx(Wl,{flush:!0,placeholder:"Change status"}),C.jsx(Ql,{selectionMode:"single",selectedKeys:[t],onAction:a=>{s(!1),e(a)},children:C.jsx(aa,{children:Pi.map(a=>C.jsxs(Ls,{id:a,textValue:Ai[a],children:[C.jsx(Nr,{status:a,className:"size-3.5"}),Ai[a]]},a))})})]})})]})}function Wee({value:t,onChange:e,className:n}){const[r,i]=S.useState(""),s=()=>{const a=r.trim();a&&(e([...t,a]),i(""))};return C.jsxs(va,{children:[C.jsxs(Re,{variant:"outline",size:"sm",className:fe(n,t.length>0&&"border-amber-500/40"),children:[C.jsx($m,{className:fe("size-3.5",t.length>0?"text-amber-500":"text-muted-foreground")}),C.jsx("span",{className:t.length>0?"text-amber-600 dark:text-amber-400":"text-muted-foreground",children:t.length>0?`${t.length} ask${t.length===1?"":"s"}`:"Asks"})]}),C.jsxs(ka,{className:"w-96 gap-2 p-3",children:[C.jsx("p",{className:"px-1 text-xs font-medium text-muted-foreground",children:"What does this ticket need a person for?"}),t.length>0&&C.jsx("div",{className:"flex flex-col gap-1",children:t.map((a,u)=>C.jsxs("div",{className:"group/ask flex items-start gap-2 rounded-xl px-1 py-0.5",children:[C.jsx("span",{className:"mt-1 size-3.5 shrink-0 rounded-full border-[1.5px] border-muted-foreground/50"}),C.jsx("span",{className:"min-w-0 flex-1 text-sm leading-snug",children:a}),C.jsx(Re,{variant:"ghost",size:"icon-xs","aria-label":"Remove ask",onPress:()=>e(t.filter((c,f)=>f!==u)),className:"text-muted-foreground opacity-0 group-hover/ask:opacity-100 focus-visible:opacity-100",children:C.jsx(Vi,{className:"size-3.5"})})]},u))}),C.jsxs("form",{className:"flex items-center gap-2",onSubmit:a=>{a.preventDefault(),s()},children:[C.jsx(oa,{autoFocus:!0,"aria-label":"Add an ask",placeholder:"e.g. Mint the API token and add it to secrets",value:r,onChange:a=>i(a.target.value),className:"h-8"}),C.jsxs(Re,{type:"submit",variant:"secondary",size:"sm",isDisabled:!r.trim(),children:[C.jsx(ql,{className:"size-3.5"}),"Add"]})]})]})]})}const $h=`${ld} self-auto`;function Qee({open:t,onOpenChange:e,onCreated:n,allTasks:r}){const{project:i}=Gt(),[s,a]=S.useState(""),[u,c]=S.useState(""),f=S.useRef(null),[h,m]=S.useState("todo"),[g,b]=S.useState(null),[x,k]=S.useState([]),[E,D]=S.useState([]),[T,$]=S.useState(null),A=()=>{const B=s.trim();B&&($(null),HO({title:B,description:u.trim(),status:h,goal:g,tags:x,asks:E}).then(()=>{a(""),c(""),f.current?.clear(),m("todo"),b(null),k([]),D([]),e(!1),n()}).catch(P=>$(P.message)))};return C.jsxs(ox,{isOpen:t,onOpenChange:e,showCloseButton:!1,className:"gap-0 p-0 sm:max-w-2xl",children:[C.jsxs("div",{className:"flex items-center gap-1.5 px-4 pt-4 pb-2",children:[C.jsx("span",{className:"rounded-md bg-muted px-1.5 py-0.5 text-xs",children:i?.prefix??"…"}),C.jsx("span",{className:"text-muted-foreground",children:"›"}),C.jsx(ax,{children:"New task"}),C.jsxs(pp,{variant:"ghost",size:"icon-sm",className:"ml-auto text-muted-foreground",children:[C.jsx(Vi,{}),C.jsx("span",{className:"sr-only",children:"Close"})]})]}),C.jsx("div",{className:"px-4",children:C.jsx(oa,{"aria-label":"Title",autoFocus:!0,value:s,onChange:B=>a(B.target.value),onKeyDown:B=>{B.key==="Enter"&&A()},placeholder:"Task title",className:"h-auto border-transparent bg-transparent px-0 py-1 text-lg font-medium shadow-none focus-visible:border-transparent focus-visible:ring-0 md:text-lg"})}),C.jsx("div",{className:"px-4 pt-1",children:C.jsx(Oc,{ref:f,ariaLabel:"Description",defaultValue:u,onChange:c,onSubmit:A,placeholder:"Add description…",className:"min-h-24"})}),C.jsxs("div",{className:"flex flex-wrap items-center gap-1.5 px-4 pt-3 pb-4",children:[C.jsx(hR,{status:h,onChange:m,variant:"outline",className:$h}),C.jsx(Qr,{label:"Goal",mode:"single",allowCreate:!1,options:Am(r),value:g?[g]:[],onChange:B=>b(B[0]??null),placeholder:"Goal",chevron:!1,className:$h,renderValue:B=>C.jsxs(C.Fragment,{children:[C.jsx(Yc,{className:"size-3.5 text-muted-foreground"}),C.jsx("span",{className:fe("truncate",B.length===0&&"text-muted-foreground"),children:B[0]??"Goal"})]})}),C.jsx(Qr,{label:"Tags",mode:"multiple",options:Tm(r),value:x,onChange:k,placeholder:"Tags",chevron:!1,className:$h,renderValue:B=>C.jsxs(C.Fragment,{children:[C.jsx(hp,{className:"size-3.5 text-muted-foreground"}),C.jsx("span",{className:fe("truncate",B.length===0&&"text-muted-foreground"),children:B.length>0?B.join(", "):"Tags"})]})}),C.jsx(Wee,{value:E,onChange:D,className:$h})]}),T&&C.jsx("p",{className:"px-4 pb-3 text-sm whitespace-pre-wrap text-destructive",children:T}),C.jsx("div",{className:"flex justify-end border-t px-4 py-3",children:C.jsx(Re,{size:"sm",onPress:A,isDisabled:!s.trim(),children:"Create task"})})]})}function Yee(){const{query:t,setQuery:e}=Gt();return C.jsxs(UM,{className:"h-8 w-36 transition-[width] focus-within:w-56 sm:w-44 sm:focus-within:w-64",children:[C.jsx(v4,{children:C.jsx(VM,{})}),C.jsx(ZH,{value:t,onChange:n=>e(n.target.value),onKeyDown:n=>{n.key==="Escape"&&t!==""&&(n.stopPropagation(),e(""))},placeholder:"Search tasks…","aria-label":"Search tasks",className:"text-sm"}),t!==""&&C.jsx(v4,{align:"inline-end",children:C.jsx("button",{type:"button","aria-label":"Clear search",className:"flex cursor-pointer items-center text-muted-foreground hover:text-foreground",onClick:()=>e(""),children:C.jsx(Vi,{className:"size-3.5"})})})]})}function Xee(t){const e=new Date(t),n={month:"short",day:"numeric"};return e.getFullYear()!==new Date().getFullYear()&&(n.year="numeric"),e.toLocaleDateString("en-US",n)}function Jee(t,e=Date.now()){const n=Math.max(0,(e-Date.parse(t))/1e3);if(n<90)return"just now";const[r,i]=n<3600?[Math.floor(n/60),"minute"]:n<86400?[Math.floor(n/3600),"hour"]:[Math.floor(n/86400),"day"];return`${r} ${i}${r===1?"":"s"} ago`}function ud(t){const e=Math.max(0,(Date.now()-Date.parse(t))/1e3);return e<60?"now":e<3600?`${Math.floor(e/60)}m`:e<86400?`${Math.floor(e/3600)}h`:`${Math.floor(e/86400)}d`}const nS=2,Zee="/snapshot.json";function ete(t){const e=t;if(!e||typeof e!="object"||!Array.isArray(e.boards)||!e.data||typeof e.data!="object")throw new Error("not a task snapshot");if(e.version!==nS)throw new Error(`snapshot is version ${String(e.version)}; this board reads ${nS}`);const n=e.meta;if(!n||typeof n.builtAt!="string")throw new Error("snapshot has no build time");return{version:e.version,meta:{commit:n.commit??null,builtAt:n.builtAt},boards:e.boards,data:e.data}}async function tte(t=Zee){const e=await fetch(t);if(!e.ok)throw new Error(`no snapshot at ${t} (${e.status})`);return ete(await e.json())}function nte(t){return(e,n)=>new Promise(r=>r(rte(t,e,n?.method??"GET")))}function rte(t,e,n){if(n!=="GET")throw new kl(405,"this board is a snapshot — export again to change it","read-only");const r=new URL(e,"http://snapshot.invalid"),i=r.pathname;if(i==="/boards")return{boards:t.boards};const s=r.searchParams.get("board")??t.boards[0]?.id??".",a=t.data[s];if(!a)throw new kl(404,`no such board: ${s}`,null);if(i==="/project")return{...a.project,readOnly:!0,git:void 0};if(i==="/goals")return{goals:a.goals};if(i==="/tasks")return{tasks:a.tasks.map(c=>rS(a,c))};const u=/^\/tasks\/([^/]+)$/.exec(i);if(u){const c=decodeURIComponent(u[1]),f=a.tasks.find(h=>h.key===c);if(!f)throw new kl(404,`no such task: ${c}`,null);return{task:rS(a,f),comments:pR(a,c)}}throw new kl(404,`not in this snapshot: ${i}`,null)}function pR(t,e){return t.comments[e]??[]}function rS(t,e){return{...e,commentCount:pR(t,e.key).length}}let mR=null;function ite(t){jO(t?nte(t):null),_O(t?()=>()=>{}:null),mR=t?t.meta:null}function ste(){return mR}function ote(t,e=Date.now()){const n=t.commit?`snapshot of ${t.commit.slice(0,7)}`:"snapshot",r=Date.parse(t.builtAt);return Number.isFinite(r)?`${n}, built ${Jee(t.builtAt,e)}`:`${n}, built at an unknown time`}function ate(){const t=ste(),[,e]=S.useState(0);return S.useEffect(()=>{if(!t)return;const n=setInterval(()=>e(r=>r+1),6e4);return()=>clearInterval(n)},[t]),t?C.jsxs("div",{className:"flex shrink-0 items-center gap-1.5 border-b bg-muted/40 px-4 py-1.5 text-xs text-muted-foreground",children:[C.jsx(wH,{className:"size-3.5 shrink-0"}),C.jsx("span",{className:"truncate",children:ote(t)})]}):null}function St({className:t}){return C.jsx("div",{className:fe("skeleton rounded-sm",t)})}const iS=["w-4/5","w-3/5","w-11/12","w-2/3"],sS=[3,2,3,1,2],oS=["w-64","w-96","w-52","w-80","w-72","w-60"];function lte({index:t}){return C.jsxs("article",{className:"rounded-2xl bg-card p-3 shadow-xs ring-1 ring-foreground/5 dark:ring-foreground/10",children:[C.jsx(St,{className:"h-3 w-12"}),C.jsxs("div",{className:"mt-2.5 space-y-1.5",children:[C.jsx(St,{className:"h-3.5 w-full"}),C.jsx(St,{className:fe("h-3.5",iS[t%iS.length])})]}),C.jsxs("div",{className:"mt-3 flex items-center gap-1.5",children:[C.jsx(St,{className:"h-4 w-12 rounded-full"}),t%2===0&&C.jsx(St,{className:"h-4 w-16 rounded-full"}),C.jsx(St,{className:"ml-auto h-3 w-8"})]})]})}function ute({visibleStatuses:t}){const e=Pi.filter(n=>t.includes(n));return C.jsx("div",{"aria-hidden":!0,className:"flex flex-1 gap-3 overflow-x-auto p-4",children:e.map((n,r)=>C.jsxs("section",{className:"flex w-72 shrink-0 flex-col rounded-3xl bg-muted/50",children:[C.jsxs("header",{className:"flex items-center gap-2 px-4 pt-3 pb-2",children:[C.jsx(Nr,{status:n}),C.jsx("h2",{className:"text-sm font-medium",children:Ai[n]})]}),C.jsx("div",{className:"flex min-h-16 flex-1 flex-col gap-2 overflow-hidden px-2 pb-2",children:Array.from({length:sS[r%sS.length]}).map((i,s)=>C.jsx(lte,{index:r+s},s))})]},n))})}function cte(){return C.jsx("div",{"aria-hidden":!0,className:"flex min-h-0 flex-1 flex-col pt-2",children:C.jsx("div",{className:"flex-1 overflow-hidden px-2.5 pb-4",children:Array.from({length:12}).map((t,e)=>C.jsxs("div",{className:"flex h-5 items-center gap-2.5 px-6 py-2.5 box-content",children:[C.jsx(St,{className:"h-3 w-16 shrink-0"}),C.jsx(St,{className:"size-3.5 shrink-0 rounded-full"}),C.jsx(St,{className:fe("h-3.5 max-w-full min-w-0 shrink",oS[e%oS.length])}),C.jsxs("div",{className:"ml-auto flex shrink-0 items-center gap-1.5 pl-3",children:[e%3!==1&&C.jsx(St,{className:"h-4 w-14 rounded-full"}),e%4===0&&C.jsx(St,{className:"h-4 w-10 rounded-full"}),C.jsx(St,{className:"h-3 w-8"})]})]},e))})})}function gR(){return C.jsx("main",{"aria-hidden":!0,className:"min-w-0 flex-1 overflow-y-auto",children:C.jsxs("div",{className:"mx-auto flex w-full max-w-6xl items-start gap-20 px-8 pt-16 pb-10",children:[C.jsxs("div",{className:"flex min-w-0 max-w-3xl flex-1 flex-col gap-6",children:[C.jsx(St,{className:"my-1 h-7 w-2/3"}),C.jsxs("div",{className:"flex flex-col gap-2.5",children:[C.jsx(St,{className:"h-3.5 w-full"}),C.jsx(St,{className:"h-3.5 w-11/12"}),C.jsx(St,{className:"h-3.5 w-3/4"}),C.jsx(St,{className:"h-3.5 w-1/2"})]})]}),C.jsxs("aside",{className:"flex w-64 shrink-0 flex-col gap-1.5 pt-2 max-lg:hidden",children:[C.jsx(St,{className:"mb-1 h-3 w-16"}),C.jsx(St,{className:"h-7 w-32 rounded-md"}),C.jsx(St,{className:"h-7 w-24 rounded-md"}),C.jsx(St,{className:"h-7 w-28 rounded-md"})]})]})})}function dte({view:t,visibleStatuses:e}){return t==="board"?C.jsx(ute,{visibleStatuses:e}):C.jsx(cte,{})}const fte={view:"board",boardColumns:["backlog","todo","in_progress","done"]};function aS(t,e,n){const r=()=>{try{const u=localStorage.getItem(t);return u==null?e:n(JSON.parse(u))??e}catch{return e}},[i,s]=S.useState(()=>({key:t,value:r()}));i.key!==t&&s({key:t,value:r()});const a=u=>{s({key:t,value:u});try{localStorage.setItem(t,JSON.stringify(u))}catch{}};return[i.value,a]}function bR(t){return typeof t=="string"&&Pi.includes(t)}function hte(t){if(typeof t!="object"||t===null)return null;const{view:e,boardColumns:n}=t;return e!=="board"&&e!=="list"||!Array.isArray(n)?null:{view:e,boardColumns:n.filter(bR)}}function pte(t){if(typeof t!="object"||t===null)return null;const{statuses:e,tags:n,goal:r,needsHuman:i}=t;return!Array.isArray(e)||!Array.isArray(n)||r!==null&&typeof r!="string"||typeof i!="boolean"?null:{statuses:e.filter(bR),tags:n.filter(s=>typeof s=="string"),goal:r,needsHuman:i}}function mte({className:t,size:e="default",...n}){return C.jsxs("div",{className:fe("group/native-select relative w-fit has-[select:disabled]:opacity-50",t),"data-slot":"native-select-wrapper","data-size":e,children:[C.jsx("select",{"data-slot":"native-select","data-size":e,className:"h-9 w-full min-w-0 appearance-none rounded-3xl border border-transparent bg-input/50 py-1 pr-8 pl-3 text-sm transition-[color,box-shadow,background-color] outline-none select-none selection:bg-primary selection:text-primary-foreground placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/30 disabled:pointer-events-none disabled:cursor-not-allowed aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-[size=sm]:h-8 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40",...n}),C.jsx(KM,{className:"pointer-events-none absolute top-1/2 right-2.5 size-4 -translate-y-1/2 text-muted-foreground select-none","aria-hidden":"true","data-slot":"native-select-icon"})]})}function Wm(){const{project:t}=Gt();return t?.git??null}function s1(){const t=Wm(),{board:e,boards:n}=Gt(),r=lm(t!==null);return S.useMemo(()=>{const i=e??n[0]?.id??".",s=new Set;for(const a of r.data?.dirty??[])a.board===i&&a.ticket!==null&&s.add(a.ticket);return s},[r.data,e,n])}function yR(){const t=Wm(),{board:e,boards:n}=Gt(),r=lm(t!==null);return S.useMemo(()=>{const i=e??n[0]?.id??".";return new Map((r.data?.claims??[]).filter(s=>s.board===i).map(s=>[s.ticket,s]))},[r.data,e,n])}function s3(t,e){const n=new Set;for(const r of t.dirty){const i=e.get(r.board);r.ticket!==null&&i&&n.add(`${i}-${r.ticket}`)}return[...n]}function gte(){const t=Wm(),{boards:e}=Gt(),n=fd(),r=lm(t!==null).data??null,i=rL(t!==null).data??[],[s,a]=S.useState(!1),[u,c]=S.useState(!1),[f,h]=S.useState(null),m=r?.branch!=null&&r.branch!==r.defaultBranch,g=zy(r?.branch??null,t?.gh===!0&&m).data?.pr??null;if(!t||!r)return null;const b=()=>{n.invalidateQueries({queryKey:["git"]}),n.invalidateQueries({queryKey:["tasks"]}),n.invalidateQueries({queryKey:["task"]})},x=D=>{if(D===r.branch){a(!1);return}h(null),sL(D).then(()=>{a(!1),b()}).catch(T=>h(T.message))},k=r.dirty.length,E=new Map(e.map(D=>[D.id,D.prefix]));return C.jsxs(C.Fragment,{children:[C.jsxs(va,{isOpen:s,onOpenChange:D=>{a(D),D||h(null)},children:[C.jsxs(Re,{variant:"ghost",size:"sm","aria-label":"Git status",className:"h-7 min-w-0 shrink rounded-md px-1.5 font-normal text-muted-foreground",children:[C.jsx(sa,{"data-icon":"inline-start",className:"size-3.5"}),C.jsx("span",{className:"max-w-40 truncate",children:r.branch??"detached"}),k>0&&C.jsx("span",{className:"flex h-4 min-w-4 items-center justify-center rounded-full bg-amber-500/15 px-1 text-[10px] font-semibold text-amber-700 tabular-nums dark:text-amber-400",children:k}),(r.ahead??0)>0&&C.jsxs("span",{className:"flex items-center text-[10px] tabular-nums",children:[C.jsx(lH,{className:"size-2.5"}),r.ahead]}),(r.behind??0)>0&&C.jsxs("span",{className:"flex items-center text-[10px] tabular-nums",children:[C.jsx(iH,{className:"size-2.5"}),r.behind]})]}),C.jsxs(ka,{placement:"bottom start",className:"w-80 gap-0 p-0",children:[C.jsxs("div",{className:"flex items-center gap-2 px-3 pt-3 pb-2",children:[C.jsx(sa,{className:"size-3.5 shrink-0 text-muted-foreground"}),C.jsx("p",{className:"min-w-0 truncate text-sm font-medium",children:r.branch??"detached HEAD"}),r.upstream?C.jsxs("p",{className:"ml-auto shrink-0 text-[11px] text-muted-foreground tabular-nums",children:[(r.ahead??0)>0&&`↑${r.ahead} `,(r.behind??0)>0&&`↓${r.behind} `,(r.ahead??0)===0&&(r.behind??0)===0&&"in sync"]}):C.jsx("p",{className:"ml-auto shrink-0 text-[11px] text-muted-foreground",children:"not pushed"})]}),C.jsxs("div",{className:"border-t px-3 py-2",children:[k===0?C.jsx("p",{className:"text-xs text-muted-foreground",children:"No uncommitted board edits"}):C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsxs("p",{className:"text-xs text-muted-foreground",children:[k," board file",k===1?"":"s"," changed",s3(r,E).length>0&&` — ${s3(r,E).join(", ")}`]}),C.jsx(Re,{size:"sm",className:"self-start",onPress:()=>{a(!1),c(!0)},children:"Commit board changes…"})]}),r.otherDirty>0&&C.jsxs("p",{className:"pt-1.5 text-[11px] text-muted-foreground/70",children:[r.otherDirty," other file",r.otherDirty===1?"":"s"," dirty in the tree — board commits never touch them"]})]}),m&&C.jsx("div",{className:"border-t px-3 py-2",children:g?C.jsxs("a",{href:g.url,target:"_blank",rel:"noreferrer",className:"flex items-center gap-1.5 text-sm hover:underline",children:[C.jsx(xd,{className:"size-3.5 shrink-0 text-muted-foreground"}),C.jsxs("span",{className:"min-w-0 truncate",children:["#",g.number," ",g.title]}),C.jsx(xR,{pr:g})]}):C.jsx(bte,{cap:t,branch:r.branch,base:r.defaultBranch,onDone:b,onError:h})}),C.jsx("div",{className:"border-t",children:C.jsxs(Gl,{children:[C.jsx(Wl,{flush:!0,placeholder:"Switch branch"}),C.jsx(Ql,{selectionMode:"single",selectedKeys:r.branch?[r.branch]:[],onAction:D=>x(String(D)),className:"max-h-48",children:C.jsx(aa,{children:i.map(D=>C.jsxs(Ls,{id:D.name,textValue:D.name,children:[C.jsx("span",{className:"truncate",children:D.name}),D.isDefault&&C.jsx("span",{className:"ml-auto text-[10px] text-muted-foreground",children:"default"})]},D.name))})})]})}),f&&C.jsx("p",{className:"border-t px-3 py-2 text-xs text-red-600 dark:text-red-400",children:f})]})]}),C.jsx(yte,{open:u,onOpenChange:c,cap:t,status:r,prefixes:E,onDone:b})]})}function xR({pr:t}){const e=t.state==="open"?t.draft?"draft":"open":t.state;return C.jsx("span",{className:fe("shrink-0 rounded-full px-1.5 py-0.5 text-[10px] font-medium",t.state==="merged"&&"bg-purple-500/15 text-purple-700 dark:text-purple-400",t.state==="closed"&&"bg-red-500/15 text-red-700 dark:text-red-400",t.state==="open"&&!t.draft&&"bg-green-600/15 text-green-700 dark:text-green-500",t.state==="open"&&t.draft&&"bg-muted text-muted-foreground"),children:e})}function bte({cap:t,branch:e,base:n,onDone:r,onError:i}){const[s,a]=S.useState(!1);if(!t.gh&&!t.repo)return null;const u=()=>{a(!0),OS({branch:e,base:n}).then(c=>{window.open(c.url,"_blank","noopener"),r()}).catch(c=>i(c.message)).finally(()=>a(!1))};return C.jsxs(Re,{variant:"outline",size:"sm",isDisabled:s,onPress:u,children:[C.jsx(xd,{"data-icon":"inline-start",className:"size-3.5"}),t.gh?"Open a PR":"Open compare page"]})}function yte({open:t,onOpenChange:e,cap:n,status:r,prefixes:i,onDone:s}){const a=r.branch===r.defaultBranch,u=s3(r,i),c=`chore(board): ${u.length>0?u.join(", "):"board edits"}`,f=`board/${new Date().toISOString().slice(0,10)}`,[h,m]=S.useState(null),[g,b]=S.useState(null),[x,k]=S.useState(null),[E,D]=S.useState(!0),[T,$]=S.useState(!1),[A,B]=S.useState(!1),[P,M]=S.useState(null),[N,j]=S.useState(t);t!==N&&(j(t),t&&(m(null),b(null),k(null),D(!0),$(!1),M(null)));const G=()=>{const W=(h??c).trim();if(!W||A)return;B(!0),M(null);const U=(g??f).trim();iL({message:W,...a?{newBranch:U,base:x??r.branch??void 0}:{}}).then(async()=>{if(a&&E){const ne=await OS({branch:U,base:x??r.defaultBranch,title:W,draft:n.gh?T:void 0});window.open(ne.url,"_blank","noopener")}e(!1),s()}).catch(ne=>M(ne.message)).finally(()=>B(!1))};return C.jsxs(ox,{isOpen:t,onOpenChange:e,showCloseButton:!1,className:"gap-0 p-0 sm:max-w-lg",children:[C.jsxs("div",{className:"flex items-center gap-1.5 px-4 pt-4 pb-2",children:[C.jsx(sa,{className:"size-3.5 text-muted-foreground"}),C.jsx(ax,{children:"Commit board changes"}),C.jsxs(pp,{variant:"ghost",size:"icon-sm",className:"ml-auto text-muted-foreground",children:[C.jsx(Vi,{}),C.jsx("span",{className:"sr-only",children:"Close"})]})]}),C.jsx("div",{className:"flex max-h-40 flex-col gap-0.5 overflow-y-auto px-4 py-1",children:r.dirty.map(W=>C.jsxs("p",{className:"flex items-center gap-1.5 text-xs",children:[C.jsx("span",{className:fe("w-4 shrink-0 text-center font-mono",W.status==="deleted"?"text-red-600 dark:text-red-400":"text-green-700 dark:text-green-500"),children:W.status==="deleted"?"−":W.status==="modified"?"±":"+"}),C.jsx("span",{className:"min-w-0 truncate text-muted-foreground",children:W.path})]},W.path))}),C.jsx("div",{className:"px-4 pt-2",children:C.jsx(oa,{"aria-label":"Commit message",autoFocus:!0,value:h??c,onChange:W=>m(W.target.value),onKeyDown:W=>{W.key==="Enter"&&G()}})}),a&&C.jsxs("div",{className:"flex flex-col gap-2 px-4 pt-3",children:[C.jsxs("p",{className:"text-xs text-muted-foreground",children:[r.branch," is the default branch — these edits go to a new board branch instead."]}),C.jsxs("div",{className:"flex items-center gap-2",children:[C.jsx(oa,{"aria-label":"New branch name",value:g??f,onChange:W=>b(W.target.value),className:"h-8 flex-1 font-mono text-xs"}),C.jsx("span",{className:"text-xs text-muted-foreground",children:"from"}),C.jsx(mte,{"aria-label":"Base branch",value:x??r.branch??"",onChange:W=>k(W.target.value),className:"h-8 w-32 text-xs",children:C.jsx("option",{value:r.branch??"",children:r.branch})})]}),C.jsxs("div",{className:"flex items-center gap-4",children:[C.jsx(lS,{checked:E,onChange:D,children:n.gh?"Open a PR":"Open the compare page"}),n.gh&&E&&C.jsx(lS,{checked:T,onChange:$,children:"Draft"})]})]}),P&&C.jsx("p",{className:"px-4 pt-2 text-xs text-red-600 dark:text-red-400",children:P}),C.jsxs("div",{className:"flex items-center justify-end gap-2 border-t px-4 py-3 mt-4",children:[C.jsx(pp,{variant:"ghost",size:"sm",children:"Cancel"}),C.jsx(Re,{size:"sm",isDisabled:A,onPress:G,children:a&&E?"Commit and open PR":"Commit"})]})]})}function lS({checked:t,onChange:e,children:n}){return C.jsxs("button",{type:"button",onClick:()=>e(!t),className:"flex items-center gap-1.5 text-xs text-muted-foreground",children:[C.jsx("span",{className:fe("flex size-3.5 items-center justify-center rounded border",t&&"border-transparent bg-foreground text-background"),children:t&&C.jsx(xa,{className:"size-2.5",strokeWidth:3})}),n]})}function o1({className:t}){return C.jsx("span",{title:"Uncommitted edits","aria-label":"Uncommitted edits",className:fe("size-1.5 shrink-0 rounded-full bg-amber-500",t)})}function xte({prompt:t,onCancel:e,onRelease:n}){const[r,i]=S.useState(""),[s,a]=S.useState(!1),[u,c]=S.useState(null),[f,h]=S.useState(t!==null);t!==null!==f&&(h(t!==null),t!==null&&(i(""),a(!1),c(null)));const m=()=>{s||(a(!0),c(null),n(r.trim()).catch(g=>c(g.message)).finally(()=>a(!1)))};return C.jsxs(ox,{isOpen:t!==null,onOpenChange:g=>{g||e()},showCloseButton:!1,className:"gap-0 p-0 sm:max-w-md",children:[C.jsxs("div",{className:"flex items-center gap-1.5 px-4 pt-4 pb-2",children:[C.jsx(sa,{className:"size-3.5 text-muted-foreground"}),C.jsxs(ax,{children:["Release the claim on ",t?.taskId,"?"]})]}),C.jsxs("p",{className:"px-4 text-sm text-muted-foreground",children:[t?.taskId," is claimed — ",C.jsx("span",{className:"font-mono text-xs",children:t?.branch})," ","exists on origin. Moving it out of In Progress releases the claim: the branch is deleted on origin and locally",t&&t.commits>0?`, discarding ${t.commits} commit${t.commits===1?"":"s"} of work`:"",". Only then does the ticket move."]}),C.jsx("div",{className:"px-4 pt-3",children:C.jsx(HM,{"aria-label":"What was tried",placeholder:"Why release it? The note lands on the ticket for the next worker.",value:r,onChange:g=>i(g.target.value),className:"min-h-16 text-sm"})}),u&&C.jsx("p",{className:"px-4 pt-2 text-xs text-red-600 dark:text-red-400",children:u}),C.jsxs("div",{className:"flex items-center justify-end gap-2 border-t px-4 py-3 mt-4",children:[C.jsx(Re,{variant:"ghost",size:"sm",onPress:e,children:"Keep the claim"}),C.jsx(Re,{variant:"destructive",size:"sm",isDisabled:s,onPress:m,children:"Release and move"})]})]})}function vte(){const t=PS(),e=t.data??[],n=e.reduce((u,c)=>u+c.asks.length,0),[r,i]=S.useState(null),s=r===null?e:e.filter(u=>u.prefix===r),a=[...new Set(e.map(u=>u.prefix))];return C.jsxs(va,{children:[C.jsxs(Re,{variant:"ghost",size:"icon-sm","aria-label":"Inbox",className:"relative",children:[C.jsx(BH,{}),n>0&&C.jsx("span",{className:"absolute -top-0.5 -right-0.5 flex h-4 min-w-4 items-center justify-center rounded-full bg-amber-500 px-1 text-[10px] font-semibold text-white tabular-nums",children:n})]}),C.jsxs(ka,{placement:"bottom end",className:"w-100 gap-1 p-2",children:[C.jsxs("div",{className:"flex items-center gap-2 px-3 pt-2 pb-1.5",children:[C.jsx("p",{className:"text-sm font-medium",children:"Inbox"}),C.jsx("p",{className:"text-xs text-muted-foreground",children:n===0?"nothing needs you":`${n} open ask${n===1?"":"s"}`}),a.length>1&&C.jsx("div",{className:"ml-auto flex items-center gap-1",children:[null,...a].map(u=>C.jsx("button",{onClick:()=>i(u),className:fe("rounded-full px-2 py-0.5 text-[11px] transition-colors",r===u?"bg-foreground text-background":"text-muted-foreground hover:bg-muted"),children:u??"All"},u??"all"))})]}),s.length===0?C.jsx("p",{className:"px-3 py-6 text-center text-sm text-muted-foreground",children:t.isError?"This board's server doesn't serve an inbox.":"Inbox zero — no open asks on in-progress work."}):C.jsx("div",{className:"flex flex-col",children:s.map(u=>C.jsx(kte,{entry:u},`${u.board}:${u.task.key}`))})]})]})}function kte({entry:t}){const{boards:e}=Gt(),n=t.asks[0],r=t.asks.length===1?n.text:`${t.asks.length} asks · ${n.text}`,i=e[0]?.id===t.board?"":`?board=${encodeURIComponent(t.board)}`;return C.jsxs(O3,{href:`/task/${t.task.key}${i}`,className:"flex flex-col gap-0.5 rounded-2xl px-3 py-2 outline-none hover:bg-muted focus-visible:ring-2 focus-visible:ring-ring",children:[C.jsxs("span",{className:"flex items-baseline gap-1.5",children:[C.jsx("span",{className:"size-1.5 shrink-0 self-center rounded-full bg-amber-500"}),C.jsx("span",{className:"shrink-0 text-xs text-muted-foreground",children:t.task.id}),C.jsx("span",{className:"truncate text-sm font-medium",children:t.task.title}),t.claim&&C.jsxs("span",{title:`In progress via ${t.claim.branch}`,className:"flex shrink-0 items-center gap-1 rounded-full bg-muted px-1.5 py-0.5 text-[10px] text-muted-foreground",children:[C.jsx(sa,{className:"size-2.5","aria-hidden":!0}),"claimed"]}),C.jsx("span",{className:"ml-auto shrink-0 pl-2 text-[11px] text-muted-foreground/70 tabular-nums",children:ud(n.createdAt)})]}),C.jsx("span",{className:"truncate pl-3 text-xs text-muted-foreground",children:r})]})}function Cte(){const t=ji(),e=fd(),n=Ys({strict:!1}),i=fw()({to:"/"})!==!1,s=JO(),a=s.data,u=a??[],c=n.board??u[0]?.id??null,f=ZO(c),h=f.data??null,m=eL(c),g=m.data??[],b=s.error??f.error??m.error,[x,k]=aS("task-ui:view",fte,hte),[E,D]=aS(`task-ui:filters:${c??""}`,XM,pte),[T,$]=S.useState(!1),[A,B]=S.useState(""),[P,M]=S.useState(c);c!==P&&(M(c),B("")),S.useEffect(()=>VO(F=>{const te=am()??void 0;(F===void 0||te===void 0||F===te)&&(e.invalidateQueries({queryKey:["tasks"]}),e.invalidateQueries({queryKey:["task"]})),e.invalidateQueries({queryKey:["inbox"]}),e.invalidateQueries({queryKey:["git"]})}),[e]),S.useEffect(()=>{!a||!n.board||a.some(F=>F.id===n.board)||t({to:"/",search:n.ref?{ref:n.ref}:{},replace:!0})},[a,n.board,n.ref,t]);const N=F=>{F!==c&&t({to:"/",search:{...F===u[0]?.id?{}:{board:F},...n.ref?{ref:n.ref}:{}}})},j=h?h.readOnly??!1:null,G=!b&&(j===null||m.isPending),[W,U]=S.useState(!1);j===!1&&!W&&U(!0);const ne=j===!1||j===null&&W;return C.jsxs(qM.Provider,{value:{project:h,tasks:g,boards:u,board:c,switchBoard:N,filters:E,setFilters:D,query:A,setQuery:B,settings:x,setSettings:k,readOnly:j??!0,failed:b!=null},children:[C.jsxs("div",{className:"flex h-dvh flex-col bg-background",children:[C.jsxs("header",{className:"flex h-14 shrink-0 items-center gap-4 border-b px-4",children:[C.jsx(nU,{}),C.jsx(gte,{}),C.jsxs("div",{className:"ml-auto flex shrink-0 items-center gap-1.5",children:[i&&C.jsxs(C.Fragment,{children:[C.jsx(Yee,{}),C.jsx(pU,{}),C.jsx(lU,{})]}),C.jsx(vte,{}),ne&&C.jsxs(Re,{size:"sm",className:"ml-1.5",isDisabled:G,onPress:()=>$(!0),children:[C.jsx(ql,{"data-icon":"inline-start"}),"New task"]})]})]}),C.jsx(ate,{}),i&&JM(E)&&C.jsx(hU,{}),b?C.jsx(YV,{error:b}):G?i?C.jsx(dte,{view:x.view,visibleStatuses:x.boardColumns}):C.jsx(gR,{}):C.jsx(dw,{})]}),C.jsx(Qee,{open:T,onOpenChange:$,onCreated:()=>{e.invalidateQueries({queryKey:["tasks"]})},allTasks:g})]})}function Ete({error:t}){return C.jsx("div",{className:"flex min-h-[60dvh] flex-1 items-center justify-center bg-background px-6",children:C.jsxs("div",{className:"w-full max-w-sm text-center",children:[C.jsx("h1",{className:"text-lg font-medium",children:"Something went wrong"}),C.jsx("p",{className:"mt-2 text-sm text-muted-foreground",children:"The board hit an error it couldn’t recover from. Reloading usually clears it."}),C.jsx(Re,{variant:"secondary",className:"mt-6",onPress:()=>location.reload(),children:"Reload"}),t instanceof Error&&t.message&&C.jsx("p",{className:"mt-4 text-xs break-words text-muted-foreground/60",children:t.message})]})})}function Dte(){return C.jsx("div",{className:"flex min-h-[60dvh] flex-1 items-center justify-center bg-background px-6",children:C.jsxs("div",{className:"w-full max-w-sm text-center",children:[C.jsx("h1",{className:"text-lg font-medium",children:"Nothing here"}),C.jsx("p",{className:"mt-2 text-sm text-muted-foreground",children:"This page doesn’t exist on this board."})]})})}const uS=ba("group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-3xl border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!",{variants:{variant:{default:"bg-primary text-primary-foreground [a]:hover:bg-primary/80",secondary:"bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",destructive:"bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",outline:"border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",ghost:"hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",link:"text-primary underline-offset-4 hover:underline"}},defaultVariants:{variant:"default"}});function _l({className:t,variant:e="default",render:n,...r}){if(n){const i={"data-slot":"badge","data-variant":e,className:fe(uS({variant:e}),t),...r};return n(i)}return C.jsx("span",{"data-slot":"badge","data-variant":e,className:fe(uS({variant:e}),t),...r})}function vR({className:t,...e}){return C.jsx("div",{"data-slot":"empty",className:fe("flex w-full min-w-0 flex-1 flex-col items-center justify-center gap-4 rounded-2xl border-dashed p-12 text-center text-balance",t),...e})}function kR({className:t,...e}){return C.jsx("div",{"data-slot":"empty-header",className:fe("flex max-w-sm flex-col items-center gap-2",t),...e})}function CR({className:t,...e}){return C.jsx("div",{"data-slot":"empty-title",className:fe("font-heading text-lg font-medium tracking-tight",t),...e})}function ER({className:t,...e}){return C.jsx("div",{"data-slot":"empty-description",className:fe("text-sm/relaxed text-muted-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary",t),...e})}const Ste=lw("/goal/$slug");function wte(){const{slug:t}=Ste.useParams(),{tasks:e,board:n}=Gt(),r=tL(n),i=r.data?.find(c=>c.slug===t)??null,s=e.filter(c=>c.goal===t),a=new Map(Pi.map((c,f)=>[c,f]));s.sort((c,f)=>a.get(c.status)-a.get(f.status)||c.position-f.position);const u=s.filter(c=>c.status==="done"||c.status==="canceled").length;return!i&&s.length===0&&!r.isPending?C.jsx("main",{className:"flex flex-1 items-center justify-center",children:C.jsx(vR,{children:C.jsxs(kR,{children:[C.jsx(CR,{children:"No such goal"}),C.jsxs(ER,{children:["Nothing here is named “",t,"” — it may have been deleted, or never created."]})]})})}):C.jsx("main",{className:"min-w-0 flex-1 overflow-y-auto",children:C.jsxs("div",{className:"mx-auto flex w-full max-w-3xl flex-col gap-6 px-8 pt-16 pb-10",children:[C.jsxs("header",{className:"flex flex-col gap-2",children:[C.jsxs("div",{className:"flex items-center gap-2 text-xs text-muted-foreground",children:[C.jsx(Yc,{className:"size-3.5"}),C.jsx("span",{children:"Goal"}),C.jsx("span",{children:"·"}),C.jsx("span",{children:t}),i?.archived&&C.jsx(_l,{variant:"outline",children:"archived"})]}),C.jsx("h1",{className:"text-2xl leading-snug font-semibold break-words",children:i?.title??t}),s.length>0&&C.jsxs("div",{className:"flex items-center gap-3",children:[C.jsx("div",{className:"h-1.5 w-40 overflow-hidden rounded-full bg-muted",children:C.jsx("div",{className:"h-full rounded-full bg-primary transition-[width]",style:{width:`${u/s.length*100}%`}})}),C.jsxs("p",{className:"text-xs text-muted-foreground",children:[u," of ",s.length," done"]})]})]}),i?.description&&C.jsx(Oc,{editable:!1,defaultValue:i.description},i.slug),C.jsx("section",{className:"flex flex-col",children:s.length===0?C.jsx("p",{className:"text-sm text-muted-foreground",children:"No tasks belong to this goal yet — assign one from its task page."}):s.map(c=>C.jsx($te,{task:c},c.key))})]})})}function $te({task:t}){return C.jsxs(Ml,{to:"/task/$key",params:{key:t.key},search:e=>e,className:"flex items-center gap-2.5 rounded-lg px-3 py-2.5 hover:bg-muted/60",children:[C.jsx("span",{className:"w-16 shrink-0 text-xs text-muted-foreground",children:t.id}),C.jsx(Nr,{status:t.status}),C.jsx("span",{className:"truncate text-sm font-medium",children:t.title}),C.jsx("span",{className:"ml-auto flex shrink-0 items-center gap-1.5 pl-3",children:t.tags.map(e=>C.jsx(_l,{variant:"outline",children:e},e))})]})}function Tte({"data-slot":t="context-menu-content",placement:e="bottom start",offset:n=4,crossOffset:r=0,className:i,children:s,...a}){return C.jsx(Sm,{"data-slot":t,placement:e,offset:n,crossOffset:r,className:fe("z-50 w-(--trigger-width) min-w-48 origin-(--trigger-anchor-point) overflow-x-hidden overflow-y-auto rounded-3xl bg-popover p-1.5 text-popover-foreground shadow-lg ring-1 ring-foreground/5 duration-100 outline-none data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:overflow-hidden data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 **:data-[slot$=-item]:data-focused:bg-foreground/10 dark:ring-foreground/10",i),children:C.jsx(Y3,{className:"max-h-[inherit] overflow-x-hidden overflow-y-auto outline-hidden",...a,children:s})})}const Ate=500,Bte=10;function DR({children:t,className:e,onOpenChange:n,...r}){const[i,s]=S.useState(null),a=S.useRef(null),u=S.useRef(null),c=S.useRef(!1),f=S.useCallback(()=>{u.current&&(clearTimeout(u.current.timer),u.current=null)},[]);S.useEffect(()=>f,[f]);const h=(m,g)=>{const b=i!==null;s({x:m,y:g}),b||n?.(!0)};return C.jsxs(Q3,{"data-slot":"context-menu",...r,isOpen:!!i,onOpenChange:m=>{m||(s(null),n?.(!1))},children:[i&&ha.createPortal(C.jsx("div",{"data-slot":"context-menu-anchor",ref:a,style:{position:"fixed",top:i.y,left:i.x}}),document.body),C.jsx("div",{"data-slot":"context-menu-trigger",className:fe("contents select-none [-webkit-touch-callout:none]",e),onContextMenu:m=>{m.preventDefault(),f(),h(m.clientX,m.clientY)},onPointerDown:m=>{if(c.current=!1,m.pointerType==="mouse")return;f();const g=m.target,{clientX:b,clientY:x,pointerId:k}=m;u.current={x:b,y:x,timer:setTimeout(()=>{u.current=null,c.current=!0,g.dispatchEvent(new PointerEvent("pointercancel",{pointerId:k,bubbles:!0})),h(b,x)},Ate)}},onPointerMove:m=>{const g=u.current;g&&Math.hypot(m.clientX-g.x,m.clientY-g.y)>Bte&&f()},onPointerUp:f,onPointerCancel:f,onClickCapture:m=>{c.current&&(c.current=!1,m.preventDefault(),m.stopPropagation())},children:C.jsx(Wc.Consumer,{children:m=>C.jsx(Wc.Provider,{value:{...m,...i,triggerRef:a,style:void 0},children:t})})})]})}const Mte=ba("group/context-menu-item relative flex cursor-default items-center outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",{variants:{selectionMode:{none:"gap-2.5 rounded-2xl px-3 py-2 text-sm font-medium focus:bg-accent focus:text-accent-foreground data-inset:pl-9.5 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg:not([class*='size-'])]:size-4 focus:*:[svg]:text-accent-foreground data-[variant=destructive]:*:[svg]:text-destructive",single:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4",multiple:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4"}}});function cS({className:t,inset:e,variant:n="default",children:r,...i}){return C.jsx(X3,{"data-slot":"context-menu-item","data-inset":e,"data-variant":n,textValue:typeof r=="string"?r:i.textValue,className:_s(t,(s,{selectionMode:a})=>fe(Mte({selectionMode:a}),s)),...i,children:_s(r,(s,{isSelected:a,selectionMode:u})=>C.jsxs(C.Fragment,{children:[u!=="none"?C.jsx("span",{className:"pointer-events-none absolute right-2","data-slot":u==="single"?"context-menu-radio-item-indicator":"context-menu-checkbox-item-indicator",children:a?C.jsx(xa,{}):null}):null,s]}))})}function SR({task:t}){const e=GM();return C.jsxs(Tte,{"aria-label":`Actions for ${t.id}`,className:"w-44",children:[C.jsxs(cS,{onAction:()=>k4(e(t)),children:[C.jsx(_M,{}),"Copy link"]}),C.jsxs(cS,{onAction:()=>k4(t.id),children:[C.jsx(DH,{}),"Copy ID"]})]})}const $y=1024;function wR(t,e){return t!==void 0&&e!==void 0?(t+e)/2:t!==void 0?t+$y:e!==void 0?e-$y:$y}function Rte({tasks:t,visibleStatuses:e,onOpen:n,onMove:r,readOnly:i=!1}){const[s,a]=S.useState(null),u=S.useRef(null),c=Pi.filter(m=>e.includes(m)).map(m=>({status:m,tasks:t.filter(g=>g.status===m)}));function f(m,g){const b=Array.from(m.currentTarget.closest("[data-column]").querySelectorAll("[data-card]"));let x=b.length;for(let k=0;k<b.length;k++){const E=b[k].getBoundingClientRect();if(m.clientY<E.top+E.height/2){x=k;break}}return{status:g,index:x}}function h(m,g){m.preventDefault();const b=u.current??m.dataTransfer.getData("text/plain"),x=s?.status===g.status?s:f(m,g.status);if(a(null),u.current=null,!b)return;let k=x.index;const E=g.tasks.findIndex($=>$.key===b);E>=0&&k>E&&(k-=1);const D=g.tasks.filter($=>$.key!==b),T=wR(D[k-1]?.position,D[k]?.position);r(b,g.status,T)}return C.jsx("div",{className:"flex flex-1 gap-3 overflow-x-auto p-4",onDragEnd:()=>a(null),children:c.map(m=>C.jsxs("section",{"data-column":!0,className:fe("flex w-72 shrink-0 flex-col rounded-3xl bg-muted/50 transition-colors",s?.status===m.status&&"bg-muted"),onDragOver:i?void 0:g=>{g.preventDefault(),g.dataTransfer.dropEffect="move",a(f(g,m.status))},onDragLeave:g=>{g.currentTarget.contains(g.relatedTarget)||a(null)},onDrop:i?void 0:g=>h(g,m),children:[C.jsxs("header",{className:"flex items-center gap-2 px-4 pt-3 pb-2",children:[C.jsx(Nr,{status:m.status}),C.jsx("h2",{className:"text-sm font-medium",children:Ai[m.status]}),C.jsx("span",{className:"text-xs text-muted-foreground",children:m.tasks.length})]}),C.jsxs("div",{className:"flex min-h-16 flex-1 flex-col gap-2 overflow-y-auto px-2 pb-2",children:[m.tasks.map((g,b)=>C.jsxs("div",{children:[C.jsx(dS,{visible:s?.status===m.status&&s.index===b}),C.jsx(Nte,{task:g,onOpen:n,draggable:!i,onDragStart:x=>{u.current=g.key,x.dataTransfer.effectAllowed="move",x.dataTransfer.setData("text/plain",g.key)}})]},g.key)),C.jsx(dS,{visible:s?.status===m.status&&s.index===m.tasks.length}),m.tasks.length===0&&C.jsx("p",{className:"px-2 pt-1 text-xs text-muted-foreground/70",children:"No tasks"})]})]},m.status))})}function dS({visible:t}){return C.jsx("div",{className:fe("mx-1 h-0.5 rounded-full bg-primary/60 opacity-0 transition-opacity",t&&"opacity-100")})}function Nte({task:t,onOpen:e,draggable:n,onDragStart:r}){const{tasks:i}=Gt(),s=s1();return C.jsxs(DR,{children:[C.jsxs("article",{"data-card":!0,draggable:n,onDragStart:r,onClick:()=>e(t),className:fe("cursor-pointer rounded-2xl bg-card p-3 shadow-xs ring-1 ring-foreground/5 transition-shadow select-none hover:shadow-sm dark:ring-foreground/10",n&&"active:cursor-grabbing"),children:[C.jsxs("div",{className:"flex items-center justify-between gap-2",children:[C.jsxs("span",{className:"flex items-center gap-1.5 text-xs text-muted-foreground",children:[t.id,s.has(t.key)&&C.jsx(o1,{})]}),C.jsxs("span",{className:"flex items-center gap-1",children:[TS(t,i)&&C.jsx(WM,{}),t.needsHuman&&C.jsx(QM,{count:$S(t).length})]})]}),C.jsx("p",{className:"mt-1 text-sm leading-snug font-medium",children:t.title}),(t.tags.length>0||t.goal||t.commentCount>0||t.prs.length>0)&&C.jsxs("div",{className:"mt-2 flex flex-wrap items-center gap-1.5",children:[t.tags.map(a=>C.jsx(_l,{variant:"outline",children:a},a)),t.goal&&C.jsx(_l,{variant:"secondary",className:"max-w-32 truncate",children:t.goal}),t.prs.length>0&&C.jsxs("span",{className:"inline-flex items-center gap-1 text-xs text-muted-foreground",children:[C.jsx(xd,{className:"size-3"}),t.prs.length]}),t.commentCount>0&&C.jsxs("span",{className:"inline-flex items-center gap-1 text-xs text-muted-foreground",children:[C.jsx(jH,{className:"size-3"}),t.commentCount]}),C.jsx("span",{className:"ml-auto text-[11px] text-muted-foreground/70",children:ud(t.updatedAt)})]})]}),C.jsx(SR,{task:t})]})}function Pte({className:t,...e}){return C.jsx(c_,{"data-slot":"grid-list",className:fe("flex w-full flex-col outline-none","data-empty:items-center data-empty:justify-center data-empty:py-10 data-empty:text-sm data-empty:text-muted-foreground","data-drop-target:bg-muted/40",t),...e})}function Ote({className:t,...e}){return C.jsx(f_,{"data-slot":"grid-list-item",className:fe("relative flex items-center gap-2 border-b px-3 py-2 text-sm outline-none transition-colors","data-hovered:bg-muted/50 data-selected:bg-muted","data-focus-visible:z-10 data-focus-visible:ring-2 data-focus-visible:ring-ring data-focus-visible:ring-inset","data-disabled:pointer-events-none data-disabled:opacity-50","data-dragging:opacity-50","data-drop-target:bg-primary/5","data-href:cursor-pointer",t),...e})}function Lte({className:t,...e}){return C.jsx(D6,{"data-slot":"grid-list-drop-indicator",className:fe("relative z-10 h-0 w-full outline-none data-drop-target:outline-1 data-drop-target:outline-primary",t),...e})}function zte({tasks:t,taskHref:e,onReorder:n,readOnly:r=!1}){const{tasks:i}=Gt(),s=s1(),{dragAndDropHooks:a}=tV({getItems:u=>[...u].map(c=>({"text/plain":String(c)})),onReorder(u){const c=String([...u.keys][0]),f=t.filter(m=>m.key!==c);let h=f.findIndex(m=>m.key===u.target.key);h<0||(u.target.dropPosition==="after"&&(h+=1),n(c,wR(f[h-1]?.position,f[h]?.position)))},renderDropIndicator:u=>C.jsx(Lte,{target:u})});return C.jsx(Pte,{"aria-label":"Tasks",items:t,dragAndDropHooks:r?void 0:a,renderEmptyState:()=>r?"No tasks on this board yet.":"No tasks yet — press New task, or `task add` in a terminal.",className:"flex-1 overflow-y-auto px-2.5 pb-4",children:u=>C.jsx(Ote,{id:u.key,textValue:u.title,href:e(u),className:"group gap-2.5 rounded-lg border-0 px-6 py-2.5",children:C.jsxs(DR,{children:[!r&&C.jsx(g6,{slot:"drag","aria-label":`Reorder ${u.id}`,className:"absolute top-1/2 left-0.5 flex size-5 -translate-y-1/2 cursor-grab items-center justify-center rounded-sm text-muted-foreground/60 opacity-0 outline-none transition-opacity group-hover:opacity-100 focus-visible:opacity-100 focus-visible:ring-2 focus-visible:ring-ring",children:C.jsx(CH,{className:"size-3.5"})}),C.jsxs("span",{className:"flex w-16 shrink-0 items-center gap-1.5 text-xs text-muted-foreground",children:[u.id,s.has(u.key)&&C.jsx(o1,{})]}),C.jsx(Nr,{status:u.status}),C.jsx("span",{className:"truncate font-medium",children:u.title}),TS(u,i)&&C.jsx(WM,{}),u.needsHuman&&C.jsx(QM,{count:$S(u).length}),C.jsxs("span",{className:"ml-auto flex shrink-0 items-center gap-1.5 pl-3",children:[u.tags.map(c=>C.jsx(_l,{variant:"outline",children:c},c)),u.goal&&C.jsx(_l,{variant:"secondary",className:"max-w-32 truncate",children:u.goal}),u.prs.length>0&&C.jsxs("span",{className:"inline-flex items-center gap-1 text-xs text-muted-foreground",children:[C.jsx(xd,{className:"size-3"}),u.prs.length]}),C.jsx("span",{className:"w-12 text-right text-xs text-muted-foreground",children:Xee(u.createdAt)})]}),C.jsx(SR,{task:u})]})})})}function Ite(){const{tasks:t,board:e,filters:n,query:r,settings:i,readOnly:s}=Gt(),a=ji(),u=fd(),c=Ys({strict:!1}),f=fU(dU(t,n),r),h=D=>{a({to:"/task/$key",params:{key:D.key},search:T=>T})},m=(D,T,$)=>{u.setQueryData(["tasks",e,Ii()],A=>A?.map(B=>B.key===D?{...B,status:T,position:$}:B)),RS(D,{status:T,position:$}).then(()=>u.invalidateQueries({queryKey:["tasks",e]}))},g=yR(),[b,x]=S.useState(null),k=(D,T,$)=>{const A=t.find(P=>P.key===D),B=g.get(D);if(B&&A?.status==="in_progress"&&T!=="in_progress"){x({key:D,taskId:A.id,branch:B.branch,commits:B.commits,status:T,position:$});return}m(D,T,$)},E=D=>{const T=new URLSearchParams;return c.board&&T.set("board",c.board),c.ref&&T.set("ref",c.ref),`/task/${D.key}${T.size>0?`?${T.toString()}`:""}`};return C.jsxs("div",{className:"flex min-h-0 flex-1 flex-col",children:[C.jsx(xte,{prompt:b,onCancel:()=>x(null),onRelease:D=>oL(b.key,D||void 0).then(()=>{m(b.key,b.status,b.position),x(null),u.invalidateQueries({queryKey:["git"]})})}),i.view==="board"?C.jsx(Rte,{tasks:f,visibleStatuses:i.boardColumns,onOpen:h,onMove:k,readOnly:s}):C.jsx("div",{className:"flex min-h-0 flex-1 flex-col pt-2",children:C.jsx(zte,{tasks:f,taskHref:E,onReorder:(D,T)=>{const $=t.find(A=>A.key===D);$&&k(D,$.status,T)},readOnly:s})})]})}const Qm="flex h-7 min-w-0 items-center gap-1.5 self-start rounded-full pr-2.5 pl-1.5 text-sm outline-none hover:bg-muted focus-visible:ring-2 focus-visible:ring-ring";function jte(t){const e=am();return`/task/${t}${e?`?board=${encodeURIComponent(e)}`:""}`}function fS({label:t,addLabel:e,value:n,onChange:r,tasks:i,self:s,readOnly:a}){if(a&&n.length===0)return null;const u=n.map(c=>i.find(f=>f.key===c)).filter(c=>c!==void 0);return C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:t}),u.map(c=>C.jsxs("div",{className:"group/relation relative flex min-w-0",children:[C.jsxs(O3,{href:jte(c.key),className:fe(Qm,"flex-1"),children:[C.jsx(Nr,{status:c.status}),C.jsx("span",{className:"shrink-0 text-xs text-muted-foreground",children:c.id}),C.jsx("span",{className:"truncate",children:c.title})]}),!a&&C.jsx(Re,{variant:"ghost",size:"icon-xs","aria-label":`Remove ${c.id}`,onPress:()=>r(n.filter(f=>f!==c.key)),className:"absolute top-1/2 right-0.5 -translate-y-1/2 text-muted-foreground opacity-0 group-hover/relation:opacity-100 focus-visible:opacity-100",children:C.jsx(Vi,{className:"size-3.5"})})]},c.key)),!a&&C.jsx(Fte,{label:e,tasks:i.filter(c=>c.key!==s&&!n.includes(c.key)),onPick:c=>r([...n,c])})]})}function Fte({label:t,tasks:e,onPick:n}){const[r,i]=S.useState(!1);return C.jsxs(vd,{isOpen:r,onOpenChange:i,children:[C.jsxs(Re,{variant:"ghost",size:"sm",className:fe(Qm,"font-normal text-muted-foreground"),children:[C.jsx(ql,{className:"size-3.5"}),t]}),C.jsx(kd,{className:"w-72",children:C.jsxs(Gl,{children:[C.jsx(Wl,{flush:!0,placeholder:"Search tasks"}),C.jsx(Ql,{onAction:s=>{i(!1),n(String(s))},renderEmptyState:()=>C.jsx("p",{className:"px-3 py-6 text-center text-sm text-muted-foreground",children:"No tasks to link"}),children:C.jsx(aa,{children:e.map(s=>C.jsxs(Ls,{id:s.key,textValue:`${s.id} ${s.title}`,children:[C.jsx(Nr,{status:s.status}),C.jsx("span",{className:"shrink-0 text-xs text-muted-foreground",children:s.id}),C.jsx("span",{className:"truncate",children:s.title})]},s.key))})})]})})]})}function hS(t){const e=/github\.com\/[^/]+\/([^/]+)\/pull\/(\d+)/.exec(t);if(e)return`${e[1]}#${e[2]}`;try{return new URL(t).hostname}catch{return t}}function Kte({value:t,onChange:e,readOnly:n,derived:r}){return n&&t.length===0?null:C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Pull requests"}),t.map(i=>C.jsxs("div",{className:"group/pr relative flex min-w-0",children:[C.jsxs("a",{href:i,target:"_blank",rel:"noreferrer",title:i,className:fe(Qm,"flex-1"),children:[C.jsx(xd,{className:"size-3.5 shrink-0 text-muted-foreground"}),C.jsx("span",{className:"truncate",children:hS(i)}),r?.get(i)&&C.jsx(xR,{pr:r.get(i)})]}),!n&&C.jsx(Re,{variant:"ghost",size:"icon-xs","aria-label":`Detach ${hS(i)}`,onPress:()=>e(t.filter(s=>s!==i)),className:"absolute top-1/2 right-0.5 -translate-y-1/2 text-muted-foreground opacity-0 group-hover/pr:opacity-100 focus-visible:opacity-100",children:C.jsx(Vi,{className:"size-3.5"})})]},i)),!n&&C.jsx(_te,{onAdd:i=>e(t.includes(i)?t:[...t,i])})]})}function _te({onAdd:t}){const[e,n]=S.useState(!1),[r,i]=S.useState(""),s=()=>{const a=r.trim();/^https?:\/\//.test(a)&&(t(a),i(""),n(!1))};return C.jsxs(va,{isOpen:e,onOpenChange:n,children:[C.jsxs(Re,{variant:"ghost",size:"sm",className:fe(Qm,"font-normal text-muted-foreground"),children:[C.jsx(ql,{className:"size-3.5"}),"Attach PR"]}),C.jsx(ka,{className:"w-80 p-3",children:C.jsxs("form",{className:"flex items-center gap-2",onSubmit:a=>{a.preventDefault(),s()},children:[C.jsx(oa,{autoFocus:!0,"aria-label":"Pull request URL",placeholder:"https://github.com/…/pull/123",value:r,onChange:a=>i(a.target.value),className:"h-8"}),C.jsx(Re,{type:"submit",variant:"secondary",size:"sm",isDisabled:!/^https?:\/\//.test(r.trim()),children:"Attach"})]})})]})}function Vte({...t}){return C.jsx(Q3,{"data-slot":"dropdown-menu-trigger",...t})}function Hte({"data-slot":t="dropdown-menu-content",placement:e="bottom start",offset:n=4,crossOffset:r=0,className:i,children:s,...a}){return C.jsx(Sm,{"data-slot":t,placement:e,offset:n,crossOffset:r,className:fe("z-50 w-(--trigger-width) min-w-48 origin-(--trigger-anchor-point) overflow-x-hidden overflow-y-auto rounded-3xl bg-popover p-1.5 text-popover-foreground shadow-lg ring-1 ring-foreground/5 duration-100 outline-none data-entering:animate-in data-entering:fade-in-0 data-entering:zoom-in-95 data-exiting:animate-out data-exiting:overflow-hidden data-exiting:fade-out-0 data-exiting:zoom-out-95 data-[placement=bottom]:slide-in-from-top-2 data-[placement=left]:slide-in-from-right-2 data-[placement=right]:slide-in-from-left-2 data-[placement=top]:slide-in-from-bottom-2 **:data-[slot$=-item]:data-focused:bg-foreground/10 dark:ring-foreground/10",i),children:C.jsx(Y3,{className:"max-h-[inherit] overflow-x-hidden overflow-y-auto outline-hidden",...a,children:s})})}const Ute=ba("group/dropdown-menu-item relative flex cursor-default items-center outline-hidden select-none data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",{variants:{selectionMode:{none:"gap-2.5 rounded-2xl px-3 py-2 text-sm font-medium focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-inset:pl-9.5 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg:not([class*='size-'])]:size-4 data-[variant=destructive]:*:[svg]:text-destructive",single:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4",multiple:"gap-2.5 rounded-2xl py-2 pr-8 pl-3 text-sm font-medium focus:bg-accent focus:text-accent-foreground focus:**:text-accent-foreground data-inset:pl-9.5 [&_svg:not([class*='size-'])]:size-4"}}});function qte({className:t,inset:e,variant:n="default",children:r,...i}){return C.jsx(X3,{"data-slot":"dropdown-menu-item","data-inset":e,"data-variant":n,textValue:typeof r=="string"?r:i.textValue,className:_s(t,(s,{selectionMode:a})=>fe(Ute({selectionMode:a}),s)),...i,children:_s(r,(s,{isSelected:a,selectionMode:u})=>C.jsxs(C.Fragment,{children:[u!=="none"?C.jsx("span",{className:"pointer-events-none absolute right-2 flex items-center justify-center","data-slot":u==="single"?"dropdown-menu-radio-item-indicator":"dropdown-menu-checkbox-item-indicator",children:a?C.jsx(xa,{}):null}):null,s]}))})}function Gte({task:t,readOnly:e,claim:n,onChanged:r}){const i=n?.asks??[];if(e&&t.asks.length===0&&i.length===0)return null;const s=t.asks.filter(a=>!a.resolvedAt).length+i.filter(a=>!a.resolvedAt).length;return C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsxs("p",{className:"flex items-center gap-1.5 pb-1 text-xs font-medium text-muted-foreground",children:["Asks",s>0&&C.jsx("span",{className:"flex h-4 min-w-4 items-center justify-center rounded-full bg-amber-500/15 px-1 text-[10px] font-semibold text-amber-700 tabular-nums dark:text-amber-400",children:s})]}),t.asks.map(a=>C.jsx(pS,{task:t,ask:a,readOnly:e,onChanged:r},a.id)),i.map(a=>C.jsx(pS,{task:t,ask:a,readOnly:e,viaBranch:n.branch,onChanged:r},a.id)),!e&&C.jsx(Wte,{taskKey:t.key,onChanged:r})]})}function pS({task:t,ask:e,readOnly:n,viaBranch:r,onChanged:i}){const s=()=>{YO(t.key,e.id,!e.resolvedAt).then(i)};return C.jsxs("div",{className:"group/ask relative flex items-start gap-2 py-0.5 pr-6 pl-1",children:[C.jsx("button",{"aria-label":e.resolvedAt?`Reopen: ${e.text}`:`Resolve: ${e.text}`,disabled:n,onClick:n?void 0:s,className:fe("mt-0.5 flex size-3.5 shrink-0 items-center justify-center rounded-full border-[1.5px] transition-colors",e.resolvedAt?"border-transparent bg-amber-500 text-white":"border-muted-foreground/50",!n&&!e.resolvedAt&&"hover:border-amber-500 hover:bg-amber-500/20"),children:e.resolvedAt&&C.jsx(xa,{className:"size-2.5",strokeWidth:3})}),r&&C.jsx(sa,{className:"mt-1 size-3 shrink-0 text-muted-foreground/70","aria-label":`On ${r}`}),C.jsx("span",{className:fe("min-w-0 flex-1 text-sm leading-snug",e.resolvedAt&&"text-muted-foreground/60 line-through"),title:(e.resolvedAt?`Resolved${e.resolvedBy?` by ${e.resolvedBy}`:""}`:`Asked${e.author?` by ${e.author}`:""}`)+(r?` — on ${r}; changes commit and push there`:""),children:e.text}),!e.resolvedAt&&C.jsx("span",{className:"shrink-0 pt-0.5 text-[11px] text-muted-foreground/60 tabular-nums",children:ud(e.createdAt)}),!n&&C.jsx(Re,{variant:"ghost",size:"icon-xs","aria-label":"Delete ask",onPress:()=>{XO(t.key,e.id).then(i)},className:"absolute top-0 right-0 text-muted-foreground opacity-0 group-hover/ask:opacity-100 focus-visible:opacity-100",children:C.jsx(Vi,{className:"size-3.5"})})]})}function Wte({taskKey:t,onChanged:e}){const[n,r]=S.useState(!1),[i,s]=S.useState(""),a=()=>{const u=i.trim();u&&(QO(t,u).then(e),s(""),r(!1))};return C.jsxs(va,{isOpen:n,onOpenChange:r,children:[C.jsxs(Re,{variant:"ghost",size:"sm",className:"flex h-7 min-w-0 items-center gap-1.5 self-start rounded-full pr-2.5 pl-1.5 text-sm font-normal text-muted-foreground",children:[C.jsx(ql,{className:"size-3.5"}),"Add ask"]}),C.jsx(ka,{className:"w-80 p-3",children:C.jsxs("form",{className:"flex items-center gap-2",onSubmit:u=>{u.preventDefault(),a()},children:[C.jsx(oa,{autoFocus:!0,"aria-label":"What does a person need to do?",placeholder:"What does a person need to do?",value:i,onChange:u=>s(u.target.value),className:"h-8"}),C.jsx(Re,{type:"submit",variant:"secondary",size:"sm",isDisabled:!i.trim(),children:"Add"})]})})]})}const Qte=lw("/task/$key");function Yte(){const{key:t}=Qte.useParams(),{tasks:e,project:n,board:r,readOnly:i}=Gt(),s=ji(),a=fd(),u=e.find(L=>L.key===t)??null,c=nL(r,t),f=c.data?.comments??[],m=PS().data?.find(L=>L.task.key===t&&L.board===r),g=m?.claim&&u?{branch:m.claim.branch,asks:m.asks.filter(L=>!u.asks.some(z=>z.id===L.id))}:null,b=Wm(),x=s1(),k=yR().get(t)?.branch??g?.branch??null,E=lm(b!==null).data??null,D=E&&E.branch!==E.defaultBranch?E.branch:null,T=zy(k,b?.gh===!0).data?.pr??null,$=zy(D,b?.gh===!0&&D!==k).data?.pr??null,A=new Map([T,$].filter(L=>L!==null).map(L=>[L.url,L])),[B,P]=S.useState(""),M=S.useRef(null),[N,j]=S.useState(!0),[G,W]=S.useState(!1),[U,ne]=S.useState(null),[F,te]=S.useState(null),O=c.data?.task;if(O&&F!==t&&(te(t),P(O.title),W(!1),ne(null)),c.isError)return C.jsx(Xte,{});if(!u)return C.jsx(gR,{});const K=()=>{a.invalidateQueries({queryKey:["tasks",r]}),a.invalidateQueries({queryKey:["task",r,t]}),a.invalidateQueries({queryKey:["inbox"]})},Q=L=>{RS(u.key,L).then(()=>{ne(null),K()}).catch(z=>ne(z.message))},Z=()=>{const L=M.current?.getMarkdown().trim()??"";L&&(M.current?.clear(),j(!0),GO(u.key,L).then(K))};return C.jsx("main",{className:"min-w-0 flex-1 overflow-y-auto",children:C.jsxs("div",{className:"mx-auto flex w-full max-w-6xl items-start gap-20 px-8 pt-16 pb-10",children:[C.jsxs("div",{className:"flex min-w-0 max-w-3xl flex-1 flex-col gap-6",children:[i?C.jsx("h1",{className:"py-1 text-2xl leading-snug font-semibold break-words",children:u.title}):C.jsx(HM,{"aria-label":"Title",rows:1,value:B,onChange:L=>P(L.target.value.replace(/\s*\n\s*/g," ")),onKeyDown:L=>{L.key==="Enter"&&(L.preventDefault(),L.currentTarget.blur())},onBlur:()=>B.trim()&&B!==u.title&&Q({title:B.trim()}),className:"min-h-0 rounded-2xl border-transparent bg-transparent px-0 py-1 text-2xl leading-snug font-semibold shadow-none focus-visible:border-transparent focus-visible:ring-0 md:text-2xl"}),(!i||u.description.trim())&&C.jsx(Oc,{ariaLabel:"Description",placeholder:"Add a description…",defaultValue:u.description,editable:!i,onBlur:i?void 0:L=>Q({description:L}),className:"min-h-32"},u.key),U&&C.jsx("p",{className:"text-sm whitespace-pre-wrap text-destructive",children:U}),C.jsxs("div",{className:"mt-4 flex flex-col gap-3",children:[f.length>0&&C.jsxs("p",{className:"text-xs font-medium text-muted-foreground",children:[f.length," comment",f.length===1?"":"s"]}),f.map(L=>C.jsxs("div",{className:"group/comment relative rounded-2xl bg-muted/60 p-4",children:[C.jsxs("p",{className:"text-xs text-muted-foreground",children:[L.author||"anonymous"," · ",ud(L.createdAt)," ago"]}),C.jsx(Oc,{editable:!1,defaultValue:L.body,className:"mt-1.5"},L.id),!i&&L.author===n?.author&&C.jsxs(Vte,{children:[C.jsx(Re,{variant:"ghost",size:"icon-xs","aria-label":"Comment actions",className:"absolute top-2.5 right-2.5 text-muted-foreground opacity-0 group-hover/comment:opacity-100 focus-visible:opacity-100 aria-expanded:opacity-100",children:C.jsx(yH,{})}),C.jsx(Hte,{placement:"bottom end",children:C.jsx(qte,{variant:"destructive",onAction:()=>{WO(u.key,L.id).then(K)},children:"Delete"})})]})]},L.id)),i?null:f.length===0&&!G?C.jsxs(Re,{variant:"ghost",size:"sm",onPress:()=>W(!0),className:"h-7 gap-1.5 self-start rounded-full px-2.5 font-normal text-muted-foreground",children:[C.jsx(zH,{className:"size-3.5"}),"Add comment"]}):C.jsxs("div",{className:"flex flex-col gap-2",children:[C.jsx(Oc,{ref:M,ariaLabel:"Add a comment",placeholder:"Leave a comment… (⌘↵ to post)",autoFocus:G,onChange:L=>j(!L.trim()),onSubmit:Z,className:"min-h-16 rounded-2xl border border-transparent bg-input/50 p-4 transition-[color,box-shadow,background-color] focus:border-ring focus:ring-3 focus:ring-ring/30"}),C.jsx(Re,{variant:"secondary",className:"self-end",onPress:Z,isDisabled:N,children:"Post"})]})]})]}),C.jsxs("aside",{className:"sticky top-6 flex w-64 shrink-0 flex-col gap-6 pt-2 max-lg:hidden",children:[C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Properties"}),i?C.jsxs(Ty,{children:[C.jsx(Nr,{status:u.status}),C.jsx("span",{children:Ai[u.status]})]}):C.jsx(hR,{status:u.status,onChange:L=>Q({status:L})}),x.has(u.key)&&C.jsxs("p",{className:"flex items-center gap-1.5 pt-0.5 text-[11px] text-muted-foreground",children:[C.jsx(o1,{})," uncommitted edits — commit from the branch chip in the header"]})]}),C.jsx(Gte,{task:u,readOnly:i,claim:g,onChanged:K}),C.jsx(fS,{label:"Blocked by",addLabel:"Mark as blocked by…",value:u.blockedBy,onChange:L=>Q({blockedBy:L}),tasks:e,self:u.key,readOnly:i}),C.jsx(fS,{label:"Blocks",addLabel:"Mark as blocking…",value:u.blocks,onChange:L=>Q({blocks:L}),tasks:e,self:u.key,readOnly:i}),i&&u.goal&&C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Goal"}),C.jsx(Ml,{to:"/goal/$slug",params:{slug:u.goal},search:L=>L,children:C.jsxs(Ty,{children:[C.jsx(Yc,{className:"size-3.5 text-muted-foreground"}),C.jsx("span",{className:"truncate",children:u.goal})]})})]}),i&&u.tags.length>0&&C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Tags"}),C.jsxs(Ty,{children:[C.jsx(hp,{className:"size-3.5 text-muted-foreground"}),C.jsx("span",{className:"truncate",children:u.tags.join(", ")})]})]}),!i&&C.jsxs(C.Fragment,{children:[C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Goal"}),C.jsx(Qr,{label:"Goal",mode:"single",allowCreate:!1,options:Am(e),value:u.goal?[u.goal]:[],onChange:L=>Q({goal:L[0]??null}),placeholder:"Set goal",variant:"ghost",chevron:!1,className:ld,renderValue:L=>C.jsxs(C.Fragment,{children:[C.jsx(Yc,{className:"size-3.5 text-muted-foreground"}),C.jsx("span",{className:fe("truncate",L.length===0&&"text-muted-foreground"),children:L[0]??"Set goal"})]})}),u.goal&&C.jsxs(Ml,{to:"/goal/$slug",params:{slug:u.goal},search:L=>L,className:"inline-flex items-center gap-1 px-2 text-xs text-muted-foreground hover:text-foreground",children:["View goal",C.jsx(oH,{className:"size-3"})]})]}),C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsx("p",{className:"pb-1 text-xs font-medium text-muted-foreground",children:"Tags"}),C.jsx(Qr,{label:"Tags",mode:"multiple",options:Tm(e),value:u.tags,onChange:L=>Q({tags:L}),placeholder:"Add tags",variant:"ghost",chevron:!1,className:ld,renderValue:L=>C.jsxs(C.Fragment,{children:[C.jsx(hp,{className:"size-3.5 text-muted-foreground"}),C.jsx("span",{className:fe("truncate",L.length===0&&"text-muted-foreground"),children:L.length>0?L.join(", "):"Add tags"})]})})]})]}),C.jsx(Kte,{value:u.prs,onChange:L=>Q({prs:L}),readOnly:i,derived:A}),C.jsxs("div",{className:"flex flex-col gap-1.5",children:[C.jsxs("p",{className:"text-[11px] text-muted-foreground/70",children:["created ",ud(u.createdAt)," ago"]}),!i&&C.jsx(Re,{variant:"ghost",size:"sm",className:"-ml-2.5 h-7 self-start rounded-full px-2.5 font-normal text-destructive hover:text-destructive",onPress:()=>{UO(u.key).then(()=>{a.invalidateQueries({queryKey:["tasks",r]}),s({to:"/",search:L=>L})})},children:"Delete"})]})]})]})})}function Ty({children:t}){return C.jsx("div",{className:fe(ld,"flex h-7 items-center gap-1.5 px-2.5 text-sm"),children:t})}function Xte(){const t=ji();return C.jsxs(vR,{className:"flex-1",children:[C.jsxs(kR,{children:[C.jsx(CR,{children:"Task not found"}),C.jsx(ER,{children:"It may have been deleted, or it lives on another board."})]}),C.jsx(Re,{variant:"outline",size:"sm",onPress:()=>{t({to:"/",search:e=>e})},children:"Back to the board"})]})}function Jte(t){return{...t.board==null?{}:{board:String(t.board)},...t.ref==null?{}:{ref:String(t.ref)}}}const Ym=zz({component:Cte,validateSearch:Jte}),Zte=x3({getParentRoute:()=>Ym,path:"/",component:Ite}),ene=x3({getParentRoute:()=>Ym,path:"/task/$key",component:Yte}),tne=x3({getParentRoute:()=>Ym,path:"/goal/$slug",component:wte});function nne(t,e){return Yz({routeTree:Ym.addChildren([Zte,ene,tne]),defaultPreload:"intent",defaultErrorComponent:Ete,defaultNotFoundComponent:Dte,history:t,basepath:e})}window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",t=>{document.documentElement.classList.toggle("dark",t.matches)});const rne=eO.createRoot(document.getElementById("root")),ine=()=>rne.render(C.jsx(S.StrictMode,{children:C.jsx(rV,{router:nne()})}));(async()=>{if(!await FO())try{ite(await tte())}catch{}ine()})();