@agent-spaces/server 0.2.9 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/dist/adapters/claude-code-runtime/index.js +48 -6
  2. package/dist/adapters/claude-code-runtime/message-format.js +3 -3
  3. package/dist/adapters/git.js +140 -2
  4. package/dist/agents/agent-designer.js +334 -0
  5. package/dist/agents/agent-message-parts.js +8 -0
  6. package/dist/agents/commit-agent.js +9 -2
  7. package/dist/agents/issue-task-controller.js +14 -4
  8. package/dist/app.js +53 -1
  9. package/dist/package.json +1 -1
  10. package/dist/routes/agent-sse.js +4 -1
  11. package/dist/routes/agent.js +15 -0
  12. package/dist/routes/channel.js +1 -1
  13. package/dist/routes/file.js +97 -1
  14. package/dist/routes/git.js +122 -1
  15. package/dist/routes/iframe-bookmarks.js +33 -0
  16. package/dist/routes/speech-recognition.js +80 -0
  17. package/dist/services/agent.js +48 -5
  18. package/dist/services/builtin-tools.js +67 -1
  19. package/dist/services/channel.js +2 -0
  20. package/dist/services/command-process-manager.js +14 -1
  21. package/dist/services/file.js +86 -6
  22. package/dist/services/gitignore.js +65 -0
  23. package/dist/services/issue-retry.js +2 -1
  24. package/dist/services/issue.js +2 -2
  25. package/dist/services/notification-hub/bot-agent.js +9 -1
  26. package/dist/services/persistent-agent-context.js +155 -0
  27. package/dist/services/pty.js +47 -2
  28. package/dist/services/search.js +11 -3
  29. package/dist/services/speech-recognition/base.js +3 -0
  30. package/dist/services/speech-recognition/index.js +16 -0
  31. package/dist/services/speech-recognition/tencent.js +112 -0
  32. package/dist/storage/iframe-bookmarks-store.js +46 -0
  33. package/dist/storage/speech-recognition-store.js +58 -0
  34. package/dist/web/404.html +1 -1
  35. package/dist/web/__next.__PAGE__.txt +4 -4
  36. package/dist/web/__next._full.txt +31 -26
  37. package/dist/web/__next._head.txt +4 -4
  38. package/dist/web/__next._index.txt +17 -13
  39. package/dist/web/__next._tree.txt +2 -2
  40. package/dist/web/_next/static/chunks/0-mtp2au0a0nh.js +189 -0
  41. package/dist/web/_next/static/chunks/00amm3dvu3po9.js +31 -0
  42. package/dist/web/_next/static/chunks/02unyp1obddyn.js +3 -0
  43. package/dist/web/_next/static/chunks/{0-vgd3j-zh3m8.js → 05iy4.c-1cfhd.js} +1 -1
  44. package/dist/web/_next/static/chunks/0d.v1csiyl.1~.js +2 -0
  45. package/dist/web/_next/static/chunks/0egot8y~i-ge3.js +1 -0
  46. package/dist/web/_next/static/chunks/0e~0o6v_awcod.js +1 -0
  47. package/dist/web/_next/static/chunks/0fpf.rso9mhc0.js +1 -0
  48. package/dist/web/_next/static/chunks/0glol5jdarfma.js +2 -0
  49. package/dist/web/_next/static/chunks/0m1ud--um8kjh.js +1 -0
  50. package/dist/web/_next/static/chunks/0o6w-uw2p.phy.js +5 -0
  51. package/dist/web/_next/static/chunks/0os7q6w~-tmg7.css +1 -0
  52. package/dist/web/_next/static/chunks/0plreh4_gkxf9.js +1 -0
  53. package/dist/web/_next/static/chunks/0u7_qd9hzqwac.js +1 -0
  54. package/dist/web/_next/static/chunks/0vesz93a98px4.js +1 -0
  55. package/dist/web/_next/static/chunks/0w3o.7vi.dlm6.js +1 -0
  56. package/dist/web/_next/static/chunks/0xtmr0y4vo-~p.js +1 -0
  57. package/dist/web/_next/static/chunks/0~3uikgc074il.js +1 -0
  58. package/dist/web/_next/static/chunks/{0y5ipuqgqfrob.js → 0~xn0gfqxa20r.js} +3 -3
  59. package/dist/web/_next/static/chunks/11ozf700niy2z.js +1 -0
  60. package/dist/web/_next/static/chunks/{0jmsjlawtg6oa.js → 145gbwitjxamg.js} +1 -1
  61. package/dist/web/_next/static/chunks/{turbopack-0lxiiw.jhevml.js → turbopack-0kcwat8.leugk.js} +1 -1
  62. package/dist/web/_not-found/__next._full.txt +34 -30
  63. package/dist/web/_not-found/__next._head.txt +4 -4
  64. package/dist/web/_not-found/__next._index.txt +17 -13
  65. package/dist/web/_not-found/__next._not-found.__PAGE__.txt +2 -2
  66. package/dist/web/_not-found/__next._not-found.txt +3 -3
  67. package/dist/web/_not-found/__next._tree.txt +2 -2
  68. package/dist/web/_not-found.html +1 -1
  69. package/dist/web/_not-found.txt +34 -30
  70. package/dist/web/index.html +1 -1
  71. package/dist/web/index.txt +31 -26
  72. package/dist/web/login/__next._full.txt +35 -29
  73. package/dist/web/login/__next._head.txt +4 -4
  74. package/dist/web/login/__next._index.txt +17 -13
  75. package/dist/web/login/__next._tree.txt +2 -2
  76. package/dist/web/login/__next.login.__PAGE__.txt +4 -4
  77. package/dist/web/login/__next.login.txt +3 -3
  78. package/dist/web/login.html +1 -1
  79. package/dist/web/login.txt +35 -29
  80. package/dist/web/settings/__next._full.txt +36 -34
  81. package/dist/web/settings/__next._head.txt +4 -4
  82. package/dist/web/settings/__next._index.txt +17 -13
  83. package/dist/web/settings/__next._tree.txt +2 -2
  84. package/dist/web/settings/__next.settings.__PAGE__.txt +4 -4
  85. package/dist/web/settings/__next.settings.txt +5 -5
  86. package/dist/web/settings/agents/__next._full.txt +38 -35
  87. package/dist/web/settings/agents/__next._head.txt +4 -4
  88. package/dist/web/settings/agents/__next._index.txt +17 -13
  89. package/dist/web/settings/agents/__next._tree.txt +2 -2
  90. package/dist/web/settings/agents/__next.settings.agents.__PAGE__.txt +4 -4
  91. package/dist/web/settings/agents/__next.settings.agents.txt +3 -3
  92. package/dist/web/settings/agents/__next.settings.txt +5 -5
  93. package/dist/web/settings/agents.html +1 -1
  94. package/dist/web/settings/agents.txt +38 -35
  95. package/dist/web/settings/mcps/__next._full.txt +38 -35
  96. package/dist/web/settings/mcps/__next._head.txt +4 -4
  97. package/dist/web/settings/mcps/__next._index.txt +17 -13
  98. package/dist/web/settings/mcps/__next._tree.txt +2 -2
  99. package/dist/web/settings/mcps/__next.settings.mcps.__PAGE__.txt +4 -4
  100. package/dist/web/settings/mcps/__next.settings.mcps.txt +3 -3
  101. package/dist/web/settings/mcps/__next.settings.txt +5 -5
  102. package/dist/web/settings/mcps.html +1 -1
  103. package/dist/web/settings/mcps.txt +38 -35
  104. package/dist/web/settings/models/__next._full.txt +38 -35
  105. package/dist/web/settings/models/__next._head.txt +4 -4
  106. package/dist/web/settings/models/__next._index.txt +17 -13
  107. package/dist/web/settings/models/__next._tree.txt +2 -2
  108. package/dist/web/settings/models/__next.settings.models.__PAGE__.txt +4 -4
  109. package/dist/web/settings/models/__next.settings.models.txt +3 -3
  110. package/dist/web/settings/models/__next.settings.txt +5 -5
  111. package/dist/web/settings/models.html +1 -1
  112. package/dist/web/settings/models.txt +38 -35
  113. package/dist/web/settings/providers/__next._full.txt +38 -35
  114. package/dist/web/settings/providers/__next._head.txt +4 -4
  115. package/dist/web/settings/providers/__next._index.txt +17 -13
  116. package/dist/web/settings/providers/__next._tree.txt +2 -2
  117. package/dist/web/settings/providers/__next.settings.providers.__PAGE__.txt +4 -4
  118. package/dist/web/settings/providers/__next.settings.providers.txt +3 -3
  119. package/dist/web/settings/providers/__next.settings.txt +5 -5
  120. package/dist/web/settings/providers.html +1 -1
  121. package/dist/web/settings/providers.txt +38 -35
  122. package/dist/web/settings/skills/__next._full.txt +38 -35
  123. package/dist/web/settings/skills/__next._head.txt +4 -4
  124. package/dist/web/settings/skills/__next._index.txt +17 -13
  125. package/dist/web/settings/skills/__next._tree.txt +2 -2
  126. package/dist/web/settings/skills/__next.settings.skills.__PAGE__.txt +4 -4
  127. package/dist/web/settings/skills/__next.settings.skills.txt +3 -3
  128. package/dist/web/settings/skills/__next.settings.txt +5 -5
  129. package/dist/web/settings/skills.html +1 -1
  130. package/dist/web/settings/skills.txt +38 -35
  131. package/dist/web/settings.html +1 -1
  132. package/dist/web/settings.txt +36 -34
  133. package/dist/web/workflows/__next._full.txt +36 -31
  134. package/dist/web/workflows/__next._head.txt +4 -4
  135. package/dist/web/workflows/__next._index.txt +17 -13
  136. package/dist/web/workflows/__next._tree.txt +2 -2
  137. package/dist/web/workflows/__next.workflows.__PAGE__.txt +4 -4
  138. package/dist/web/workflows/__next.workflows.txt +3 -3
  139. package/dist/web/workflows.html +1 -1
  140. package/dist/web/workflows.txt +36 -31
  141. package/dist/web/workspace/_/__next._full.txt +39 -34
  142. package/dist/web/workspace/_/__next._head.txt +4 -4
  143. package/dist/web/workspace/_/__next._index.txt +17 -13
  144. package/dist/web/workspace/_/__next._tree.txt +2 -2
  145. package/dist/web/workspace/_/__next.workspace.$d$id.__PAGE__.txt +3 -3
  146. package/dist/web/workspace/_/__next.workspace.$d$id.txt +3 -3
  147. package/dist/web/workspace/_/__next.workspace.txt +3 -3
  148. package/dist/web/workspace/_.html +1 -1
  149. package/dist/web/workspace/_.txt +39 -34
  150. package/dist/web/workspaces/__next._full.txt +35 -30
  151. package/dist/web/workspaces/__next._head.txt +4 -4
  152. package/dist/web/workspaces/__next._index.txt +17 -13
  153. package/dist/web/workspaces/__next._tree.txt +2 -2
  154. package/dist/web/workspaces/__next.workspaces.__PAGE__.txt +4 -4
  155. package/dist/web/workspaces/__next.workspaces.txt +3 -3
  156. package/dist/web/workspaces.html +1 -1
  157. package/dist/web/workspaces.txt +35 -30
  158. package/dist/ws/agent-prompt.js +48 -18
  159. package/dist/ws/agent-runner.js +4 -1
  160. package/dist/ws/message-parts.js +8 -0
  161. package/dist/ws/terminal-handler.js +1 -1
  162. package/package.json +1 -1
  163. package/public/avatars/1778953228323-5je54x-user.jpg +0 -0
  164. package/public/avatars/1778954057880-g01q6y-user.jpg +0 -0
  165. package/dist/web/_next/static/chunks/0.~n0s82y4zh_.css +0 -1
  166. package/dist/web/_next/static/chunks/002-dxhags4dj.js +0 -2
  167. package/dist/web/_next/static/chunks/02duknlg3rgjp.js +0 -1
  168. package/dist/web/_next/static/chunks/02wkg1tjv~_t2.js +0 -1
  169. package/dist/web/_next/static/chunks/03jy~o.gx._e-.js +0 -3
  170. package/dist/web/_next/static/chunks/04zxh2e-4~-xs.js +0 -1
  171. package/dist/web/_next/static/chunks/07bs5ds68tg38.js +0 -2
  172. package/dist/web/_next/static/chunks/082lp-xqv7r.-.js +0 -183
  173. package/dist/web/_next/static/chunks/0b2tump5duj9j.js +0 -1
  174. package/dist/web/_next/static/chunks/0csqa76ud3h4d.js +0 -1
  175. package/dist/web/_next/static/chunks/0n0j7tw_y1qk2.js +0 -1
  176. package/dist/web/_next/static/chunks/0pep4mkvt3.rh.js +0 -31
  177. package/dist/web/_next/static/chunks/0tkii3.lkbu3u.js +0 -1
  178. package/dist/web/_next/static/chunks/0wz8~mvztv-vq.js +0 -1
  179. package/dist/web/_next/static/chunks/0zl19l5tuoppw.js +0 -1
  180. package/dist/web/_next/static/chunks/0zxtxecpqyoeh.js +0 -1
  181. package/dist/web/_next/static/chunks/12sucjx_z8ftc.js +0 -1
  182. package/dist/web/_next/static/chunks/15_n_khh8cuax.js +0 -5
  183. /package/dist/web/_next/static/{hGfVPALj5nbwettayL9DY → 4dBAEZ275uRqcyeaRmXSx}/_buildManifest.js +0 -0
  184. /package/dist/web/_next/static/{hGfVPALj5nbwettayL9DY → 4dBAEZ275uRqcyeaRmXSx}/_clientMiddlewareManifest.js +0 -0
  185. /package/dist/web/_next/static/{hGfVPALj5nbwettayL9DY → 4dBAEZ275uRqcyeaRmXSx}/_ssgManifest.js +0 -0
@@ -1 +1 @@
1
- (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,499198,e=>{"use strict";var t=e.i(92615),n=e.i(232449),r=e.i(410421),i=e.i(404196);let o=.1*.1;function l(e,t,n,r,i,o){return r>=t!=o>=t&&e<=(i-n)*(t-r)/(o-r)+n}function s(e,t,n,r,i,o,s,a,u,c){let f=!1;return l(e,t,n,r,i,o)&&(f=!f),l(e,t,i,o,s,a)&&(f=!f),l(e,t,s,a,u,c)&&(f=!f),l(e,t,u,c,n,r)&&(f=!f),f}function a(e,t,n,r,i,o){let l=Math.min(n,i),s=Math.max(n,i),a=Math.min(r,o),u=Math.max(r,o);return e>=l&&e<=s&&t>=a&&t<=u}e.s(["safePolygon",0,function(e={}){let{blockPointerEvents:l=!1}=e,u=new n.Timeout,c=({x:e,y:n,placement:l,elements:c,onClose:f,nodeId:d,tree:g})=>{let m=l?.split("-")[0],p=!1,h=null,v=null,y="u">typeof performance?performance.now():0;return function(l){u.clear();let E=c.domReference,x=c.floating;if(!E||!x||null==m||null==e||null==n)return;let{clientX:b,clientY:w}=l,S=(0,r.getTarget)(l),R="mouseleave"===l.type,T=(0,r.contains)(x,S),C=(0,r.contains)(E,S);if(T&&(p=!0,!R))return;if(C&&(p=!1,!R)){p=!0;return}if(R&&(0,t.isElement)(l.relatedTarget)&&(0,r.contains)(x,l.relatedTarget))return;function A(){return!!(g&&(0,i.getNodeChildren)(g.nodesRef.current,d).length>0)}function O(){A()||(u.clear(),f())}if(A())return;let P=E.getBoundingClientRect(),L=x.getBoundingClientRect(),M=e>L.right-L.width/2,D=n>L.bottom-L.height/2,k=L.width>P.width,N=L.height>P.height,I=(k?P:L).left,F=(k?P:L).right,H=(N?P:L).top,W=(N?P:L).bottom;if("top"===m&&n>=P.bottom-1||"bottom"===m&&n<=P.top+1||"left"===m&&e>=P.right-1||"right"===m&&e<=P.left+1)return void O();let V=!1;switch(m){case"top":V=a(b,w,I,P.top+1,F,L.bottom-1);break;case"bottom":V=a(b,w,I,L.top+1,F,P.bottom-1);break;case"left":V=a(b,w,L.right-1,W,P.left+1,H);break;case"right":V=a(b,w,P.right-1,W,L.left+1,H)}if(V)return;if(p&&(!(b>=P.x)||!(b<=P.x+P.width)||!(w>=P.y)||!(w<=P.y+P.height))||!R&&function(e,t){let n=performance.now(),r=n-y;if(null===h||null===v||0===r)return h=e,v=t,y=n,!1;let i=e-h,l=t-v;return h=e,v=t,y=n,i*i+l*l<r*r*o}(b,w))return void O();let $=!1;switch(m){case"top":{let t=k?.25:2,r=n+.5+1,i=M||k?L.bottom-.5:L.top,o=M?k?L.bottom-.5:L.top:L.bottom-.5;$=s(b,w,k||M?e+t:e-t,r,k?e-t:M?e+t:e-t,r,L.left,i,L.right,o);break}case"bottom":{let t=k?.25:2,r=n-.5,i=M||k?L.top+.5:L.bottom,o=M?k?L.top+.5:L.bottom:L.top+.5;$=s(b,w,k||M?e+t:e-t,r,k?e-t:M?e+t:e-t,r,L.left,i,L.right,o);break}case"left":{let t=N?.25:2,r=e+.5+1,i=D||N?L.right-.5:L.left,o=D?N?L.right-.5:L.left:L.right-.5;$=s(b,w,i,L.top,o,L.bottom,r,N||D?n+t:n-t,r,N?n-t:D?n+t:n-t);break}case"right":{let t=N?.25:2,r=e-.5,i=D||N?L.left+.5:L.right,o=D?N?L.left+.5:L.right:L.left+.5;$=s(b,w,r,N||D?n+t:n-t,r,N?n-t:D?n+t:n-t,i,L.top,o,L.bottom)}}$?p||u.start(40,O):O()}};return c.__options={...e,blockPointerEvents:l},c}])},49863,e=>{"use strict";var t=e.i(150129);e.s(["getDelay",0,function(e,n,r){let i=null==r||(0,t.isMouseLikePointerType)(r)?"function"==typeof e?e():e:0;return"number"==typeof i?i:i?.[n]},"getRestMs",0,function(e){return"function"==typeof e?e():e},"isClickLikeOpenEvent",0,function(e,t){return t||"click"===e||"mousedown"===e}])},604921,e=>{"use strict";var t=e.i(764556),n=e.i(92615),r=e.i(422561),i=e.i(516366),o=e.i(454889),l=e.i(232449),s=e.i(526850),a=e.i(410421),u=e.i(922970),c=e.i(602453),f=e.i(742665),d=e.i(134055);let g=o.isMac&&o.isSafari;e.s(["useFocus",0,function(e,o={}){let m="rootStore"in e?e.rootStore:e,{events:p,dataRef:h}=m.context,{enabled:v=!0,delay:y}=o,E=t.useRef(!1),x=t.useRef(null),b=(0,l.useTimeout)(),w=t.useRef(!0);t.useEffect(()=>{let e=m.select("domReferenceElement");if(!v)return;let t=(0,n.getWindow)(e);return(0,i.mergeCleanups)((0,r.addEventListener)(t,"blur",function(){let e=m.select("domReferenceElement");!m.select("open")&&(0,n.isHTMLElement)(e)&&e===(0,a.activeElement)((0,s.ownerDocument)(e))&&(E.current=!0)}),g&&(0,r.addEventListener)(t,"keydown",function(){w.current=!0},!0),g&&(0,r.addEventListener)(t,"pointerdown",function(){w.current=!1},!0))},[m,v]),t.useEffect(()=>{if(v)return p.on("openchange",e),()=>{p.off("openchange",e)};function e(e){if(e.reason===f.REASONS.triggerPress||e.reason===f.REASONS.escapeKey){let e=m.select("domReferenceElement");(0,n.isElement)(e)&&(x.current=e,E.current=!0)}}},[p,v,m]);let S=t.useMemo(()=>({onMouseLeave(){E.current=!1,x.current=null},onFocus(e){let t=e.currentTarget;if(E.current){if(x.current===t)return;E.current=!1,x.current=null}let r=(0,a.getTarget)(e.nativeEvent);if((0,n.isElement)(r)){if(g&&!e.relatedTarget){if(!w.current&&!(0,u.isTypeableElement)(r))return}else if(!(0,u.matchesFocusVisible)(r))return}let i=(0,u.isTargetInsideEnabledTrigger)(e.relatedTarget,m.context.triggerElements),{nativeEvent:o,currentTarget:l}=e,s="function"==typeof y?y():y;m.select("open")&&i||0===s||void 0===s?m.setOpen(!0,(0,c.createChangeEventDetails)(f.REASONS.triggerFocus,o,l)):b.start(s,()=>{E.current||m.setOpen(!0,(0,c.createChangeEventDetails)(f.REASONS.triggerFocus,o,l))})},onBlur(e){E.current=!1,x.current=null;let t=e.relatedTarget,r=e.nativeEvent,i=(0,n.isElement)(t)&&t.hasAttribute((0,d.createAttribute)("focus-guard"))&&"outside"===t.getAttribute("data-type");b.start(0,()=>{let e=m.select("domReferenceElement"),n=(0,a.activeElement)((0,s.ownerDocument)(e));if(!t&&n===e||(0,a.contains)(h.current.floatingContext?.refs.floating.current,n)||(0,a.contains)(e,n)||i)return;let o=t??n;(0,u.isTargetInsideEnabledTrigger)(o,m.context.triggerElements)||m.setOpen(!1,(0,c.createChangeEventDetails)(f.REASONS.triggerFocus,r))})}}),[h,m,b,y]);return t.useMemo(()=>v?{reference:S,trigger:S}:{},[v,S])}])},84076,e=>{"use strict";var t=e.i(130522),n=e.i(549154),r=e.i(232449);e.i(922970);class i{constructor(){this.pointerType=void 0,this.interactedInside=!1,this.handler=void 0,this.blockMouseMove=!0,this.performedPointerEventsMutation=!1,this.pointerEventsScopeElement=null,this.pointerEventsReferenceElement=null,this.pointerEventsFloatingElement=null,this.restTimeoutPending=!1,this.openChangeTimeout=new r.Timeout,this.restTimeout=new r.Timeout,this.handleCloseOptions=void 0}static create(){return new i}dispose=()=>{this.openChangeTimeout.clear(),this.restTimeout.clear()};disposeEffect=()=>this.dispose}let o=new WeakMap;function l(e){if(!e.performedPointerEventsMutation)return;let t=e.pointerEventsScopeElement;t&&o.get(t)===e&&(e.pointerEventsScopeElement?.style.removeProperty("pointer-events"),e.pointerEventsReferenceElement?.style.removeProperty("pointer-events"),e.pointerEventsFloatingElement?.style.removeProperty("pointer-events"),o.delete(t)),e.performedPointerEventsMutation=!1,e.pointerEventsScopeElement=null,e.pointerEventsReferenceElement=null,e.pointerEventsFloatingElement=null}e.s(["applySafePolygonPointerEventsMutation",0,function(e,t){let{scopeElement:n,referenceElement:r,floatingElement:i}=t,s=o.get(n);s&&s!==e&&l(s),l(e),e.performedPointerEventsMutation=!0,e.pointerEventsScopeElement=n,e.pointerEventsReferenceElement=r,e.pointerEventsFloatingElement=i,o.set(n,e),n.style.pointerEvents="none",r.style.pointerEvents="auto",i.style.pointerEvents="auto"},"clearSafePolygonPointerEventsMutation",0,l,"useHoverInteractionSharedState",0,function(e){let r=(0,n.useRefWithInit)(i.create).current,o=e.context.dataRef.current;return o.hoverInteractionState||(o.hoverInteractionState=r),(0,t.useOnMount)(o.hoverInteractionState.disposeEffect),o.hoverInteractionState}])},480283,e=>{"use strict";var t=e.i(764556),n=e.i(106206),r=e.i(92615),i=e.i(422561),o=e.i(516366),l=e.i(106045),s=e.i(29905),a=e.i(526850),u=e.i(410421),c=e.i(922970),f=e.i(150129),d=e.i(602453),g=e.i(742665),m=e.i(389124),p=e.i(84076),h=e.i(49863);let v={current:null};e.s(["useHoverReferenceInteraction",0,function(e,y={}){let E="rootStore"in e?e.rootStore:e,{dataRef:x,events:b}=E.context,{enabled:w=!0,delay:S=0,handleClose:R=null,mouseOnly:T=!1,restMs:C=0,move:A=!0,triggerElementRef:O=v,externalTree:P,isActiveTrigger:L=!0,getHandleCloseContext:M,isClosing:D}=y,k=(0,m.useFloatingTree)(P),N=(0,p.useHoverInteractionSharedState)(E),I=t.useRef(!1),F=(0,l.useValueAsRef)(R),H=(0,l.useValueAsRef)(S),W=(0,l.useValueAsRef)(C),V=(0,l.useValueAsRef)(w),$=(0,l.useValueAsRef)(D);L&&(N.handleCloseOptions=F.current?.__options);let B=(0,s.useStableCallback)(()=>(0,h.isClickLikeOpenEvent)(x.current.openEvent?.type,N.interactedInside)),z=(0,s.useStableCallback)(e=>(0,c.isTargetInsideEnabledTrigger)(e,E.context.triggerElements)),_=(0,s.useStableCallback)((e,t,n)=>{let i=E.context.triggerElements;return i.hasElement(t)?!e||!(0,u.contains)(e,t):!!(0,r.isElement)(n)&&i.hasMatchingElement(e=>(0,u.contains)(e,n))&&(!e||!(0,u.contains)(e,n))}),j=(0,s.useStableCallback)((e,t=!0)=>{let n=(0,h.getDelay)(H.current,"close",N.pointerType);n?N.openChangeTimeout.start(n,()=>{E.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e)),k?.events.emit("floating.closed",e)}):t&&(N.openChangeTimeout.clear(),E.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e)),k?.events.emit("floating.closed",e))}),Y=(0,s.useStableCallback)(()=>{N.handler&&((0,a.ownerDocument)(E.select("domReferenceElement")).removeEventListener("mousemove",N.handler),N.handler=void 0)}),q=(0,s.useStableCallback)(()=>{(0,p.clearSafePolygonPointerEventsMutation)(N)});return t.useEffect(()=>Y,[Y]),t.useEffect(()=>{if(w)return b.on("openchange",e),()=>{b.off("openchange",e)};function e(e){e.open?I.current=!1:(I.current=e.reason===g.REASONS.triggerHover,Y(),N.openChangeTimeout.clear(),N.restTimeout.clear(),N.blockMouseMove=!0,N.restTimeoutPending=!1)}},[w,b,N,Y]),t.useEffect(()=>{if(!w)return;let e=O.current??(L?E.select("domReferenceElement"):null);if((0,r.isElement)(e))return A?(0,o.mergeCleanups)((0,i.addEventListener)(e,"mousemove",t,{once:!0}),(0,i.addEventListener)(e,"mouseenter",t),(0,i.addEventListener)(e,"mouseleave",n)):(0,o.mergeCleanups)((0,i.addEventListener)(e,"mouseenter",t),(0,i.addEventListener)(e,"mouseleave",n));function t(e){if(N.openChangeTimeout.clear(),N.blockMouseMove=!1,T&&!(0,f.isMouseLikePointerType)(N.pointerType))return;let t=(0,h.getRestMs)(W.current),n=(0,h.getDelay)(H.current,"open",N.pointerType),i=(0,u.getTarget)(e),o=e.currentTarget??null,l=E.select("domReferenceElement"),s=o;if((0,r.isElement)(i)&&!E.context.triggerElements.hasElement(i)){for(let e of E.context.triggerElements.elements())if((0,u.contains)(e,i)){s=e;break}}(0,r.isElement)(o)&&(0,r.isElement)(l)&&!E.context.triggerElements.hasElement(o)&&(0,u.contains)(o,l)&&(s=l);let a=null!=s&&_(l,s,i),c=E.select("open"),m=$.current?.()??"ending"===E.select("transitionStatus"),p=!c&&m&&I.current,v=!a&&(0,r.isElement)(s)&&(0,r.isElement)(l)&&(0,u.contains)(l,s)&&p,y=t>0&&!n,x=!c||a;a&&(c||p)||v?E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e,s)):!y&&(n?N.openChangeTimeout.start(n,()=>{x&&E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e,s))}):x&&E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e,s)))}function n(e){if(B())return void q();Y();let t=E.select("domReferenceElement"),n=(0,a.ownerDocument)(t);N.restTimeout.clear(),N.restTimeoutPending=!1;let r=x.current.floatingContext??M?.();if(!z(e.relatedTarget)){if(F.current&&r){E.select("open")||N.openChangeTimeout.clear();let t=O.current;N.handler=F.current({...r,tree:k,x:e.clientX,y:e.clientY,onClose(){q(),Y(),V.current&&!B()&&t===E.select("domReferenceElement")&&j(e,!0)}}),n.addEventListener("mousemove",N.handler),N.handler(e);return}"touch"===N.pointerType&&(0,u.contains)(E.select("floatingElement"),e.relatedTarget)||j(e)}}},[Y,q,x,H,j,E,w,F,N,L,_,B,z,T,A,W,O,k,V,M,$]),t.useMemo(()=>{if(w)return{onPointerDown:e,onPointerEnter:e,onMouseMove(e){let{nativeEvent:t}=e,r=e.currentTarget,i=E.select("domReferenceElement"),o=E.select("open"),l=_(i,r,e.target);if(T&&!(0,f.isMouseLikePointerType)(N.pointerType))return;if(o&&l&&N.handleCloseOptions?.blockPointerEvents){let e=E.select("floatingElement");if(e){let t=N.handleCloseOptions?.getScope?.()??r.ownerDocument.body;(0,p.applySafePolygonPointerEventsMutation)(N,{scopeElement:t,referenceElement:r,floatingElement:e})}}let s=(0,h.getRestMs)(W.current);function a(){if(N.restTimeoutPending=!1,B())return;let e=E.select("open");N.blockMouseMove||e&&!l||E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,t,r))}(!o||l)&&0!==s&&(!l&&N.restTimeoutPending&&e.movementX**2+e.movementY**2<2||(N.restTimeout.clear(),"touch"===N.pointerType?n.flushSync(()=>{a()}):l&&o?a():(N.restTimeoutPending=!0,N.restTimeout.start(s,a))))}};function e(e){N.pointerType=e.pointerType}},[w,N,B,_,T,E,W])}])},576557,909852,e=>{"use strict";var t=e.i(764556),n=e.i(641645),r=e.i(526850),i=e.i(285182),o=e.i(277642),l=e.i(106045),s=e.i(29905);function a(e,t,r){let i,{reference:o,floating:l}=e,s=(0,n.getSideAxis)(t),a=(0,n.getAlignmentAxis)(t),u=(0,n.getAxisLength)(a),c=(0,n.getSide)(t),f="y"===s,d=o.x+o.width/2-l.width/2,g=o.y+o.height/2-l.height/2,m=o[u]/2-l[u]/2;switch(c){case"top":i={x:d,y:o.y-l.height};break;case"bottom":i={x:d,y:o.y+o.height};break;case"right":i={x:o.x+o.width,y:g};break;case"left":i={x:o.x-l.width,y:g};break;default:i={x:o.x,y:o.y}}switch((0,n.getAlignment)(t)){case"start":i[a]-=m*(r&&f?-1:1);break;case"end":i[a]+=m*(r&&f?-1:1)}return i}async function u(e,t){var r;void 0===t&&(t={});let{x:i,y:o,platform:l,rects:s,elements:a,strategy:u}=e,{boundary:c="clippingAncestors",rootBoundary:f="viewport",elementContext:d="floating",altBoundary:g=!1,padding:m=0}=(0,n.evaluate)(t,e),p=(0,n.getPaddingObject)(m),h=a[g?"floating"===d?"reference":"floating":d],v=(0,n.rectToClientRect)(await l.getClippingRect({element:null==(r=await (null==l.isElement?void 0:l.isElement(h)))||r?h:h.contextElement||await (null==l.getDocumentElement?void 0:l.getDocumentElement(a.floating)),boundary:c,rootBoundary:f,strategy:u})),y="floating"===d?{x:i,y:o,width:s.floating.width,height:s.floating.height}:s.reference,E=await (null==l.getOffsetParent?void 0:l.getOffsetParent(a.floating)),x=await (null==l.isElement?void 0:l.isElement(E))&&await (null==l.getScale?void 0:l.getScale(E))||{x:1,y:1},b=(0,n.rectToClientRect)(l.convertOffsetParentRelativeRectToViewportRelativeRect?await l.convertOffsetParentRelativeRectToViewportRelativeRect({elements:a,rect:y,offsetParent:E,strategy:u}):y);return{top:(v.top-b.top+p.top)/x.y,bottom:(b.bottom-v.bottom+p.bottom)/x.y,left:(v.left-b.left+p.left)/x.x,right:(b.right-v.right+p.right)/x.x}}let c=async(e,t,n)=>{let{placement:r="bottom",strategy:i="absolute",middleware:o=[],platform:l}=n,s=l.detectOverflow?l:{...l,detectOverflow:u},c=await (null==l.isRTL?void 0:l.isRTL(t)),f=await l.getElementRects({reference:e,floating:t,strategy:i}),{x:d,y:g}=a(f,r,c),m=r,p=0,h={};for(let n=0;n<o.length;n++){let u=o[n];if(!u)continue;let{name:v,fn:y}=u,{x:E,y:x,data:b,reset:w}=await y({x:d,y:g,initialPlacement:r,placement:m,strategy:i,middlewareData:h,rects:f,platform:s,elements:{reference:e,floating:t}});d=null!=E?E:d,g=null!=x?x:g,h[v]={...h[v],...b},w&&p<50&&(p++,"object"==typeof w&&(w.placement&&(m=w.placement),w.rects&&(f=!0===w.rects?await l.getElementRects({reference:e,floating:t,strategy:i}):w.rects),{x:d,y:g}=a(f,m,c)),n=-1)}return{x:d,y:g,placement:m,strategy:i,middlewareData:h}};function f(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function d(e){return n.sides.some(t=>e[t]>=0)}let g=new Set(["left","top"]);async function m(e,t){let{placement:r,platform:i,elements:o}=e,l=await (null==i.isRTL?void 0:i.isRTL(o.floating)),s=(0,n.getSide)(r),a=(0,n.getAlignment)(r),u="y"===(0,n.getSideAxis)(r),c=g.has(s)?-1:1,f=l&&u?-1:1,d=(0,n.evaluate)(t,e),{mainAxis:m,crossAxis:p,alignmentAxis:h}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return a&&"number"==typeof h&&(p="end"===a?-1*h:h),u?{x:p*f,y:m*c}:{x:m*c,y:p*f}}var p=e.i(92615);function h(e){let t=(0,p.getComputedStyle)(e),r=parseFloat(t.width)||0,i=parseFloat(t.height)||0,o=(0,p.isHTMLElement)(e),l=o?e.offsetWidth:r,s=o?e.offsetHeight:i,a=(0,n.round)(r)!==l||(0,n.round)(i)!==s;return a&&(r=l,i=s),{width:r,height:i,$:a}}function v(e){return(0,p.isElement)(e)?e:e.contextElement}function y(e){let t=v(e);if(!(0,p.isHTMLElement)(t))return(0,n.createCoords)(1);let r=t.getBoundingClientRect(),{width:i,height:o,$:l}=h(t),s=(l?(0,n.round)(r.width):r.width)/i,a=(l?(0,n.round)(r.height):r.height)/o;return s&&Number.isFinite(s)||(s=1),a&&Number.isFinite(a)||(a=1),{x:s,y:a}}let E=(0,n.createCoords)(0);function x(e){let t=(0,p.getWindow)(e);return(0,p.isWebKit)()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:E}function b(e,t,r,i){var o;void 0===t&&(t=!1),void 0===r&&(r=!1);let l=e.getBoundingClientRect(),s=v(e),a=(0,n.createCoords)(1);t&&(i?(0,p.isElement)(i)&&(a=y(i)):a=y(e));let u=(void 0===(o=r)&&(o=!1),i&&(!o||i===(0,p.getWindow)(s))&&o)?x(s):(0,n.createCoords)(0),c=(l.left+u.x)/a.x,f=(l.top+u.y)/a.y,d=l.width/a.x,g=l.height/a.y;if(s){let e=(0,p.getWindow)(s),t=i&&(0,p.isElement)(i)?(0,p.getWindow)(i):i,n=e,r=(0,p.getFrameElement)(n);for(;r&&i&&t!==n;){let e=y(r),t=r.getBoundingClientRect(),i=(0,p.getComputedStyle)(r),o=t.left+(r.clientLeft+parseFloat(i.paddingLeft))*e.x,l=t.top+(r.clientTop+parseFloat(i.paddingTop))*e.y;c*=e.x,f*=e.y,d*=e.x,g*=e.y,c+=o,f+=l,n=(0,p.getWindow)(r),r=(0,p.getFrameElement)(n)}}return(0,n.rectToClientRect)({width:d,height:g,x:c,y:f})}function w(e,t){let n=(0,p.getNodeScroll)(e).scrollLeft;return t?t.left+n:b((0,p.getDocumentElement)(e)).left+n}function S(e,t){let n=e.getBoundingClientRect();return{x:n.left+t.scrollLeft-w(e,n),y:n.top+t.scrollTop}}function R(e,t,r){var i;let o;if("viewport"===t)o=function(e,t){let n=(0,p.getWindow)(e),r=(0,p.getDocumentElement)(e),i=n.visualViewport,o=r.clientWidth,l=r.clientHeight,s=0,a=0;if(i){o=i.width,l=i.height;let e=(0,p.isWebKit)();(!e||e&&"fixed"===t)&&(s=i.offsetLeft,a=i.offsetTop)}let u=w(r);if(u<=0){let e=r.ownerDocument,t=e.body,n=getComputedStyle(t),i="CSS1Compat"===e.compatMode&&parseFloat(n.marginLeft)+parseFloat(n.marginRight)||0,l=Math.abs(r.clientWidth-t.clientWidth-i);l<=25&&(o-=l)}else u<=25&&(o+=u);return{width:o,height:l,x:s,y:a}}(e,r);else if("document"===t){let t,r,l,s,a,u,c;i=(0,p.getDocumentElement)(e),t=(0,p.getDocumentElement)(i),r=(0,p.getNodeScroll)(i),l=i.ownerDocument.body,s=(0,n.max)(t.scrollWidth,t.clientWidth,l.scrollWidth,l.clientWidth),a=(0,n.max)(t.scrollHeight,t.clientHeight,l.scrollHeight,l.clientHeight),u=-r.scrollLeft+w(i),c=-r.scrollTop,"rtl"===(0,p.getComputedStyle)(l).direction&&(u+=(0,n.max)(t.clientWidth,l.clientWidth)-s),o={width:s,height:a,x:u,y:c}}else if((0,p.isElement)(t)){let e,i,l,s,a,u;i=(e=b(t,!0,"fixed"===r)).top+t.clientTop,l=e.left+t.clientLeft,s=(0,p.isHTMLElement)(t)?y(t):(0,n.createCoords)(1),a=t.clientWidth*s.x,u=t.clientHeight*s.y,o={width:a,height:u,x:l*s.x,y:i*s.y}}else{let n=x(e);o={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return(0,n.rectToClientRect)(o)}function T(e){return"static"===(0,p.getComputedStyle)(e).position}function C(e,t){if(!(0,p.isHTMLElement)(e)||"fixed"===(0,p.getComputedStyle)(e).position)return null;if(t)return t(e);let n=e.offsetParent;return(0,p.getDocumentElement)(e)===n&&(n=n.ownerDocument.body),n}function A(e,t){let n=(0,p.getWindow)(e);if((0,p.isTopLayer)(e))return n;if(!(0,p.isHTMLElement)(e)){let t=(0,p.getParentNode)(e);for(;t&&!(0,p.isLastTraversableNode)(t);){if((0,p.isElement)(t)&&!T(t))return t;t=(0,p.getParentNode)(t)}return n}let r=C(e,t);for(;r&&(0,p.isTableElement)(r)&&T(r);)r=C(r,t);return r&&(0,p.isLastTraversableNode)(r)&&T(r)&&!(0,p.isContainingBlock)(r)?n:r||(0,p.getContainingBlock)(e)||n}let O=async function(e){let t=this.getOffsetParent||A,r=this.getDimensions,i=await r(e.floating);return{reference:function(e,t,r){let i=(0,p.isHTMLElement)(t),o=(0,p.getDocumentElement)(t),l="fixed"===r,s=b(e,!0,l,t),a={scrollLeft:0,scrollTop:0},u=(0,n.createCoords)(0);if(i||!i&&!l)if(("body"!==(0,p.getNodeName)(t)||(0,p.isOverflowElement)(o))&&(a=(0,p.getNodeScroll)(t)),i){let e=b(t,!0,l,t);u.x=e.x+t.clientLeft,u.y=e.y+t.clientTop}else o&&(u.x=w(o));l&&!i&&o&&(u.x=w(o));let c=!o||i||l?(0,n.createCoords)(0):S(o,a);return{x:s.left+a.scrollLeft-u.x-c.x,y:s.top+a.scrollTop-u.y-c.y,width:s.width,height:s.height}}(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:i.width,height:i.height}}},P={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:r,offsetParent:i,strategy:o}=e,l="fixed"===o,s=(0,p.getDocumentElement)(i),a=!!t&&(0,p.isTopLayer)(t.floating);if(i===s||a&&l)return r;let u={scrollLeft:0,scrollTop:0},c=(0,n.createCoords)(1),f=(0,n.createCoords)(0),d=(0,p.isHTMLElement)(i);if((d||!d&&!l)&&(("body"!==(0,p.getNodeName)(i)||(0,p.isOverflowElement)(s))&&(u=(0,p.getNodeScroll)(i)),d)){let e=b(i);c=y(i),f.x=e.x+i.clientLeft,f.y=e.y+i.clientTop}let g=!s||d||l?(0,n.createCoords)(0):S(s,u);return{width:r.width*c.x,height:r.height*c.y,x:r.x*c.x-u.scrollLeft*c.x+f.x+g.x,y:r.y*c.y-u.scrollTop*c.y+f.y+g.y}},getDocumentElement:p.getDocumentElement,getClippingRect:function(e){let{element:t,boundary:r,rootBoundary:i,strategy:o}=e,l=[..."clippingAncestors"===r?(0,p.isTopLayer)(t)?[]:function(e,t){let n=t.get(e);if(n)return n;let r=(0,p.getOverflowAncestors)(e,[],!1).filter(e=>(0,p.isElement)(e)&&"body"!==(0,p.getNodeName)(e)),i=null,o="fixed"===(0,p.getComputedStyle)(e).position,l=o?(0,p.getParentNode)(e):e;for(;(0,p.isElement)(l)&&!(0,p.isLastTraversableNode)(l);){let t=(0,p.getComputedStyle)(l),n=(0,p.isContainingBlock)(l);n||"fixed"!==t.position||(i=null),(o?n||i:!(!n&&"static"===t.position&&i&&("absolute"===i.position||"fixed"===i.position)||(0,p.isOverflowElement)(l)&&!n&&function e(t,n){let r=(0,p.getParentNode)(t);return!(r===n||!(0,p.isElement)(r)||(0,p.isLastTraversableNode)(r))&&("fixed"===(0,p.getComputedStyle)(r).position||e(r,n))}(e,l)))?i=t:r=r.filter(e=>e!==l),l=(0,p.getParentNode)(l)}return t.set(e,r),r}(t,this._c):[].concat(r),i],s=R(t,l[0],o),a=s.top,u=s.right,c=s.bottom,f=s.left;for(let e=1;e<l.length;e++){let r=R(t,l[e],o);a=(0,n.max)(r.top,a),u=(0,n.min)(r.right,u),c=(0,n.min)(r.bottom,c),f=(0,n.max)(r.left,f)}return{width:u-f,height:c-a,x:f,y:a}},getOffsetParent:A,getElementRects:O,getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){let{width:t,height:n}=h(e);return{width:t,height:n}},getScale:y,isElement:p.isElement,isRTL:function(e){return"rtl"===(0,p.getComputedStyle)(e).direction}};function L(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function M(e,t,r,i){let o;void 0===i&&(i={});let{ancestorScroll:l=!0,ancestorResize:s=!0,elementResize:a="function"==typeof ResizeObserver,layoutShift:u="function"==typeof IntersectionObserver,animationFrame:c=!1}=i,f=v(e),d=l||s?[...f?(0,p.getOverflowAncestors)(f):[],...t?(0,p.getOverflowAncestors)(t):[]]:[];d.forEach(e=>{l&&e.addEventListener("scroll",r,{passive:!0}),s&&e.addEventListener("resize",r)});let g=f&&u?function(e,t){let r,i=null,o=(0,p.getDocumentElement)(e);function l(){var e;clearTimeout(r),null==(e=i)||e.disconnect(),i=null}return!function s(a,u){void 0===a&&(a=!1),void 0===u&&(u=1),l();let c=e.getBoundingClientRect(),{left:f,top:d,width:g,height:m}=c;if(a||t(),!g||!m)return;let p={rootMargin:-(0,n.floor)(d)+"px "+-(0,n.floor)(o.clientWidth-(f+g))+"px "+-(0,n.floor)(o.clientHeight-(d+m))+"px "+-(0,n.floor)(f)+"px",threshold:(0,n.max)(0,(0,n.min)(1,u))||1},h=!0;function v(t){let n=t[0].intersectionRatio;if(n!==u){if(!h)return s();n?s(!1,n):r=setTimeout(()=>{s(!1,1e-7)},1e3)}1!==n||L(c,e.getBoundingClientRect())||s(),h=!1}try{i=new IntersectionObserver(v,{...p,root:o.ownerDocument})}catch(e){i=new IntersectionObserver(v,p)}i.observe(e)}(!0),l}(f,r):null,m=-1,h=null;a&&(h=new ResizeObserver(e=>{let[n]=e;n&&n.target===f&&h&&t&&(h.unobserve(t),cancelAnimationFrame(m),m=requestAnimationFrame(()=>{var e;null==(e=h)||e.observe(t)})),r()}),f&&!c&&h.observe(f),t&&h.observe(t));let y=c?b(e):null;return c&&function t(){let n=b(e);y&&!L(y,n)&&r(),y=n,o=requestAnimationFrame(t)}(),r(),()=>{var e;d.forEach(e=>{l&&e.removeEventListener("scroll",r),s&&e.removeEventListener("resize",r)}),null==g||g(),null==(e=h)||e.disconnect(),h=null,c&&cancelAnimationFrame(o)}}var D=e.i(106206),k="u">typeof document?t.useLayoutEffect:function(){};function N(e,t){let n,r,i;if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if((n=e.length)!==t.length)return!1;for(r=n;0!=r--;)if(!N(e[r],t[r]))return!1;return!0}if((n=(i=Object.keys(e)).length)!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!({}).hasOwnProperty.call(t,i[r]))return!1;for(r=n;0!=r--;){let n=i[r];if(("_owner"!==n||!e.$$typeof)&&!N(e[n],t[n]))return!1}return!0}return e!=e&&t!=t}function I(e){return"u"<typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function F(e,t){let n=I(e);return Math.round(t*n)/n}function H(e){let n=t.useRef(e);return k(()=>{n.current=e}),n}var W=e.i(389124);e.i(8890);var V=e.i(394822),$=e.i(549154),B=e.i(807323),z=e.i(561213),_=e.i(189131);let j={name:"hide",async fn(e){var t;let r,{width:i,height:o,x:l,y:s}=e.rects.reference,a=await (t=void 0,{name:(r={name:"hide",options:t={},async fn(e){let{rects:r,platform:i}=e,{strategy:o="referenceHidden",...l}=(0,n.evaluate)(t,e);switch(o){case"referenceHidden":{let t=f(await i.detectOverflow(e,{...l,elementContext:"reference"}),r.reference);return{data:{referenceHiddenOffsets:t,referenceHidden:d(t)}}}case"escaped":{let t=f(await i.detectOverflow(e,{...l,altBoundary:!0}),r.floating);return{data:{escapedOffsets:t,escaped:d(t)}}}default:return{}}}}).name,fn:r.fn,options:[void 0,void 0]}).fn(e);return{data:{referenceHidden:a.data?.referenceHidden||0===i&&0===o&&0===l&&0===s}}}},Y={sideX:"left",sideY:"top"};function q(e,t,n){let r="inline-start"===e||"inline-end"===e;return({top:"top",right:r?n?"inline-start":"inline-end":"right",bottom:"bottom",left:r?n?"inline-end":"inline-start":"left"})[t]}function K(e,t,r){let{rects:i,placement:o}=e;return{side:q(t,(0,n.getSide)(o),r),align:(0,n.getAlignment)(o)||"center",anchor:{width:i.reference.width,height:i.reference.height},positioner:{width:i.floating.width,height:i.floating.height}}}function X(e){return null!=e&&"current"in e}e.s(["DEFAULT_SIDES",0,Y,"adaptiveOrigin",0,{name:"adaptiveOrigin",async fn(e){let{x:t,y:o,rects:{floating:l},elements:{floating:s},platform:a,strategy:u,placement:c}=e,f=(0,i.ownerWindow)(s),d=f.getComputedStyle(s);if("0s"===d.transitionDuration||""===d.transitionDuration)return{x:t,y:o,data:Y};let g=await a.getOffsetParent?.(s),m={width:0,height:0};if("fixed"===u&&f?.visualViewport)m={width:f.visualViewport.width,height:f.visualViewport.height};else if(g===f){let e=(0,r.ownerDocument)(s);m={width:e.documentElement.clientWidth,height:e.documentElement.clientHeight}}else await a.isElement?.(g)&&(m=await a.getDimensions(g));let p=(0,n.getSide)(c),h=t,v=o;return"left"===p&&(h=m.width-(t+l.width)),"top"===p&&(v=m.height-(o+l.height)),{x:h,y:v,data:{sideX:"left"===p?"right":Y.sideX,sideY:"top"===p?"bottom":Y.sideY}}}}],909852),e.s(["useAnchorPositioning",0,function(e){var a,u,f,d,h,v,y,E,x,b,w,S;let R,T,C,A,{anchor:O,positionMethod:L="absolute",side:U="bottom",sideOffset:G=0,align:J="center",alignOffset:Q=0,collisionBoundary:Z,collisionPadding:ee=5,sticky:et=!1,arrowPadding:en=5,disableAnchorTracking:er=!1,keepMounted:ei=!1,floatingRootContext:eo,mounted:el,collisionAvoidance:es,shiftCrossAxis:ea=!1,nodeId:eu,adaptiveOrigin:ec,lazyFlip:ef=!1,externalTree:ed}=e,[eg,em]=t.useState(null);el||null===eg||em(null);let ep=es.side||"flip",eh=es.align||"flip",ev=es.fallbackAxisSide||"end",ey="function"==typeof O?O:void 0,eE=(0,s.useStableCallback)(ey),ex=ey?eE:O,eb=(0,l.useValueAsRef)(O),ew=(0,l.useValueAsRef)(el),eS="rtl"===(0,_.useDirection)(),eR=eg||({top:"top",right:"right",bottom:"bottom",left:"left","inline-end":eS?"left":"right","inline-start":eS?"right":"left"})[U],eT="center"===J?eR:`${eR}-${J}`,eC=ee,eA=+("bottom"===U),eO=+("top"===U),eP=+("right"===U),eL=+("left"===U);"number"==typeof eC?eC={top:eC+eA,right:eC+eL,bottom:eC+eO,left:eC+eP}:eC&&(eC={top:(eC.top||0)+eA,right:(eC.right||0)+eL,bottom:(eC.bottom||0)+eO,left:(eC.left||0)+eP});let eM={boundary:"clipping-ancestors"===Z?"clippingAncestors":Z,padding:eC},eD=t.useRef(null),ek=(0,l.useValueAsRef)(G),eN=(0,l.useValueAsRef)(Q),eI=[(a=e=>{let t=K(e,U,eS),n="function"==typeof ek.current?ek.current(t):ek.current,r="function"==typeof eN.current?eN.current(t):eN.current;return{mainAxis:n,crossAxis:r,alignmentAxis:r}},u=["function"!=typeof G?G:0,"function"!=typeof Q?Q:0,eS,U],void 0===(f=a)&&(f=0),{name:(R={name:"offset",options:f,async fn(e){var t,n;let{x:r,y:i,placement:o,middlewareData:l}=e,s=await m(e,f);return o===(null==(t=l.offset)?void 0:t.placement)&&null!=(n=l.arrow)&&n.alignmentOffset?{}:{x:r+s.x,y:i+s.y,data:{...s,placement:o}}}}).name,fn:R.fn,options:[a,u]})],eF="none"===eh&&"shift"!==ep,eH=!eF&&(et||ea||"shift"===ep),eW="none"===ep?null:{name:(T={name:"flip",options:h=d={...eM,padding:{top:eC.top+1,right:eC.right+1,bottom:eC.bottom+1,left:eC.left+1},mainAxis:!ea&&"flip"===ep,crossAxis:"flip"===eh&&"alignment",fallbackAxisSideDirection:ev},async fn(e){var t,r,i,o,l;let{placement:s,middlewareData:a,rects:u,initialPlacement:c,platform:f,elements:d}=e,{mainAxis:g=!0,crossAxis:m=!0,fallbackPlacements:p,fallbackStrategy:v="bestFit",fallbackAxisSideDirection:y="none",flipAlignment:E=!0,...x}=(0,n.evaluate)(h,e);if(null!=(t=a.arrow)&&t.alignmentOffset)return{};let b=(0,n.getSide)(s),w=(0,n.getSideAxis)(c),S=(0,n.getSide)(c)===c,R=await (null==f.isRTL?void 0:f.isRTL(d.floating)),T=p||(S||!E?[(0,n.getOppositePlacement)(c)]:(0,n.getExpandedPlacements)(c)),C="none"!==y;!p&&C&&T.push(...(0,n.getOppositeAxisPlacements)(c,E,y,R));let A=[c,...T],O=await f.detectOverflow(e,x),P=[],L=(null==(r=a.flip)?void 0:r.overflows)||[];if(g&&P.push(O[b]),m){let e=(0,n.getAlignmentSides)(s,u,R);P.push(O[e[0]],O[e[1]])}if(L=[...L,{placement:s,overflows:P}],!P.every(e=>e<=0)){let e=((null==(i=a.flip)?void 0:i.index)||0)+1,t=A[e];if(t&&("alignment"!==m||w===(0,n.getSideAxis)(t)||L.every(e=>(0,n.getSideAxis)(e.placement)!==w||e.overflows[0]>0)))return{data:{index:e,overflows:L},reset:{placement:t}};let r=null==(o=L.filter(e=>e.overflows[0]<=0).sort((e,t)=>e.overflows[1]-t.overflows[1])[0])?void 0:o.placement;if(!r)switch(v){case"bestFit":{let e=null==(l=L.filter(e=>{if(C){let t=(0,n.getSideAxis)(e.placement);return t===w||"y"===t}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,t)=>e+t,0)]).sort((e,t)=>e[1]-t[1])[0])?void 0:l[0];e&&(r=e);break}case"initialPlacement":r=c}if(s!==r)return{reset:{placement:r}}}return{}}}).name,fn:T.fn,options:[d,void 0]},eV=eF?null:(v=e=>{var t,i;let o=(0,r.ownerDocument)(e.elements.floating).documentElement;return{...eM,rootBoundary:ea?{x:0,y:0,width:o.clientWidth,height:o.clientHeight}:void 0,mainAxis:"none"!==eh,crossAxis:eH,limiter:et||ea?void 0:{fn:(void 0===(i=t=e=>{if(!eD.current)return{};let{width:t,height:r}=eD.current.getBoundingClientRect(),i=(0,n.getSideAxis)((0,n.getSide)(e.placement)),o="y"===i?eC.left+eC.right:eC.top+eC.bottom;return{offset:("y"===i?t:r)/2+o/2}})&&(i={}),{options:i,fn(e){let{x:t,y:r,placement:o,rects:l,middlewareData:s}=e,{offset:a=0,mainAxis:u=!0,crossAxis:c=!0}=(0,n.evaluate)(i,e),f={x:t,y:r},d=(0,n.getSideAxis)(o),m=(0,n.getOppositeAxis)(d),p=f[m],h=f[d],v=(0,n.evaluate)(a,e),y="number"==typeof v?{mainAxis:v,crossAxis:0}:{mainAxis:0,crossAxis:0,...v};if(u){let e="y"===m?"height":"width",t=l.reference[m]-l.floating[e]+y.mainAxis,n=l.reference[m]+l.reference[e]-y.mainAxis;p<t?p=t:p>n&&(p=n)}if(c){var E,x;let e="y"===m?"width":"height",t=g.has((0,n.getSide)(o)),r=l.reference[d]-l.floating[e]+(t&&(null==(E=s.offset)?void 0:E[d])||0)+(t?0:y.crossAxis),i=l.reference[d]+l.reference[e]+(t?0:(null==(x=s.offset)?void 0:x[d])||0)-(t?y.crossAxis:0);h<r?h=r:h>i&&(h=i)}return{[m]:p,[d]:h}}}).fn,options:[t,void 0]}}},y=[eM,et,ea,eC,eh],void 0===(E=v)&&(E={}),{name:(C={name:"shift",options:E,async fn(e){let{x:t,y:r,placement:i,platform:o}=e,{mainAxis:l=!0,crossAxis:s=!1,limiter:a={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...u}=(0,n.evaluate)(E,e),c={x:t,y:r},f=await o.detectOverflow(e,u),d=(0,n.getSideAxis)((0,n.getSide)(i)),g=(0,n.getOppositeAxis)(d),m=c[g],p=c[d];if(l){let e="y"===g?"top":"left",t="y"===g?"bottom":"right",r=m+f[e],i=m-f[t];m=(0,n.clamp)(r,m,i)}if(s){let e="y"===d?"top":"left",t="y"===d?"bottom":"right",r=p+f[e],i=p-f[t];p=(0,n.clamp)(r,p,i)}let h=a.fn({...e,[g]:m,[d]:p});return{...h,data:{x:h.x-t,y:h.y-r,enabled:{[g]:l,[d]:s}}}}}).name,fn:C.fn,options:[v,y]});"shift"===ep||"shift"===eh||"center"===J?eI.push(eV,eW):eI.push(eW,eV),eI.push({name:(A={name:"size",options:b=x={...eM,apply({elements:{floating:e},availableWidth:t,availableHeight:n,rects:r}){if(!ew.current)return;let o=e.style;o.setProperty("--available-width",`${t}px`),o.setProperty("--available-height",`${n}px`);let l=(0,i.ownerWindow)(e).devicePixelRatio||1,{x:s,y:a,width:u,height:c}=r.reference,f=(Math.round((s+u)*l)-Math.round(s*l))/l,d=(Math.round((a+c)*l)-Math.round(a*l))/l;o.setProperty("--anchor-width",`${f}px`),o.setProperty("--anchor-height",`${d}px`)}},async fn(e){var t,r;let i,o,{placement:l,rects:s,platform:a,elements:u}=e,{apply:c=()=>{},...f}=(0,n.evaluate)(b,e),d=await a.detectOverflow(e,f),g=(0,n.getSide)(l),m=(0,n.getAlignment)(l),p="y"===(0,n.getSideAxis)(l),{width:h,height:v}=s.floating;"top"===g||"bottom"===g?(i=g,o=m===(await (null==a.isRTL?void 0:a.isRTL(u.floating))?"start":"end")?"left":"right"):(o=g,i="end"===m?"top":"bottom");let y=v-d.top-d.bottom,E=h-d.left-d.right,x=(0,n.min)(v-d[i],y),w=(0,n.min)(h-d[o],E),S=!e.middlewareData.shift,R=x,T=w;if(null!=(t=e.middlewareData.shift)&&t.enabled.x&&(T=E),null!=(r=e.middlewareData.shift)&&r.enabled.y&&(R=y),S&&!m){let e=(0,n.max)(d.left,0),t=(0,n.max)(d.right,0),r=(0,n.max)(d.top,0),i=(0,n.max)(d.bottom,0);p?T=h-2*(0!==e||0!==t?e+t:(0,n.max)(d.left,d.right)):R=v-2*(0!==r||0!==i?r+i:(0,n.max)(d.top,d.bottom))}await c({...e,availableWidth:T,availableHeight:R});let C=await a.getDimensions(u.floating);return h!==C.width||v!==C.height?{reset:{rects:!0}}:{}}}).name,fn:A.fn,options:[x,void 0]},(w=()=>({element:eD.current||(0,r.ownerDocument)(eD.current).createElement("div"),padding:en,offsetParent:"floating"}),S=[en],{name:"arrow",options:w,async fn(e){let{x:t,y:r,placement:i,rects:o,platform:l,elements:s,middlewareData:a}=e,{element:u,padding:c=0,offsetParent:f="real"}=(0,n.evaluate)(w,e)||{};if(null==u)return{};let d=(0,n.getPaddingObject)(c),g={x:t,y:r},m=(0,n.getAlignmentAxis)(i),p=(0,n.getAxisLength)(m),h=await l.getDimensions(u),v="y"===m,y=v?"clientHeight":"clientWidth",E=o.reference[p]+o.reference[m]-g[m]-o.floating[p],x=g[m]-o.reference[m],b="real"===f?await l.getOffsetParent?.(u):s.floating,S=s.floating[y]||o.floating[p];S&&await l.isElement?.(b)||(S=s.floating[y]||o.floating[p]);let R=S/2-h[p]/2-1,T=Math.min(d[v?"top":"left"],R),C=Math.min(d[v?"bottom":"right"],R),A=S-h[p]-C,O=S/2-h[p]/2+(E/2-x/2),P=(0,n.clamp)(T,O,A),L=!a.arrow&&null!=(0,n.getAlignment)(i)&&O!==P&&o.reference[p]/2-(O<T?T:C)-h[p]/2<0,M=L?O<T?O-T:O-A:0;return{[m]:g[m]+M,data:{[m]:P,centerOffset:O-P-M,...L&&{alignmentOffset:M}},reset:L}},options:[w,S]}),{name:"transformOrigin",fn(e){let{elements:t,middlewareData:r,placement:i,rects:o,y:l}=e,s=(0,n.getSide)(i),a=(0,n.getSideAxis)(s),u=eD.current,c=r.arrow?.x||0,f=r.arrow?.y||0,d=u?.clientWidth||0,g=u?.clientHeight||0,m=c+d/2,p=f+g/2,h=Math.abs(r.shift?.y||0),v=o.reference.height/2,y="function"==typeof G?G(K(e,U,eS)):G,E=h>y,x={top:`${m}px calc(100% + ${y}px)`,bottom:`${m}px ${-y}px`,left:`calc(100% + ${y}px) ${p}px`,right:`${-y}px ${p}px`}[s],b=`${m}px ${o.reference.y+v-l}px`;return t.floating.style.setProperty("--transform-origin",eH&&"y"===a&&E?b:x),{}}},j,ec),(0,o.useIsoLayoutEffect)(()=>{!el&&eo&&eo.update({referenceElement:null,floatingElement:null,domReferenceElement:null,positionReference:null})},[el,eo]);let e$=t.useMemo(()=>({elementResize:!er&&"u">typeof ResizeObserver,layoutShift:!er&&"u">typeof IntersectionObserver}),[er]),{refs:eB,elements:ez,x:e_,y:ej,middlewareData:eY,update:eq,placement:eK,context:eX,isPositioned:eU,floatingStyles:eG}=function(e={}){let{nodeId:n,externalTree:r}=e,i=function(e){let{open:t=!1,onOpenChange:n,elements:r={}}=e,i=(0,V.useId)(),l=null!=(0,W.useFloatingParentNodeId)(),s=(0,$.useRefWithInit)(()=>new B.FloatingRootStore({open:t,transitionStatus:void 0,onOpenChange:n,referenceElement:r.reference??null,floatingElement:r.floating??null,triggerElements:new z.PopupTriggerMap,floatingId:i,syncOnly:!1,nested:l})).current;return(0,o.useIsoLayoutEffect)(()=>{let e={open:t,floatingId:i};void 0!==r.reference&&(e.referenceElement=r.reference,e.domReferenceElement=(0,p.isElement)(r.reference)?r.reference:null),void 0!==r.floating&&(e.floatingElement=r.floating),s.update(e)},[t,i,r.reference,r.floating,s]),s.context.onOpenChange=n,s.context.nested=l,s}(e),l=e.rootContext||i,s={reference:l.useState("referenceElement"),floating:l.useState("floatingElement"),domReference:l.useState("domReferenceElement")},[a,u]=t.useState(null),f=t.useRef(null),d=(0,W.useFloatingTree)(r);(0,o.useIsoLayoutEffect)(()=>{s.domReference&&(f.current=s.domReference)},[s.domReference]);let g=function(e){void 0===e&&(e={});let{placement:n="bottom",strategy:r="absolute",middleware:i=[],platform:o,elements:{reference:l,floating:s}={},transform:a=!0,whileElementsMounted:u,open:f}=e,[d,g]=t.useState({x:0,y:0,strategy:r,placement:n,middlewareData:{},isPositioned:!1}),[m,p]=t.useState(i);N(m,i)||p(i);let[h,v]=t.useState(null),[y,E]=t.useState(null),x=t.useCallback(e=>{e!==R.current&&(R.current=e,v(e))},[]),b=t.useCallback(e=>{e!==T.current&&(T.current=e,E(e))},[]),w=l||h,S=s||y,R=t.useRef(null),T=t.useRef(null),C=t.useRef(d),A=null!=u,O=H(u),L=H(o),M=H(f),W=t.useCallback(()=>{var e,t;let i,o,l;if(!R.current||!T.current)return;let s={placement:n,strategy:r,middleware:m};L.current&&(s.platform=L.current),(e=R.current,t=T.current,i=new Map,l={...(o={platform:P,...s}).platform,_c:i},c(e,t,{...o,platform:l})).then(e=>{let t={...e,isPositioned:!1!==M.current};V.current&&!N(C.current,t)&&(C.current=t,D.flushSync(()=>{g(t)}))})},[m,n,r,L,M]);k(()=>{!1===f&&C.current.isPositioned&&(C.current.isPositioned=!1,g(e=>({...e,isPositioned:!1})))},[f]);let V=t.useRef(!1);k(()=>(V.current=!0,()=>{V.current=!1}),[]),k(()=>{if(w&&(R.current=w),S&&(T.current=S),w&&S){if(O.current)return O.current(w,S,W);W()}},[w,S,W,O,A]);let $=t.useMemo(()=>({reference:R,floating:T,setReference:x,setFloating:b}),[x,b]),B=t.useMemo(()=>({reference:w,floating:S}),[w,S]),z=t.useMemo(()=>{let e={position:r,left:0,top:0};if(!B.floating)return e;let t=F(B.floating,d.x),n=F(B.floating,d.y);return a?{...e,transform:"translate("+t+"px, "+n+"px)",...I(B.floating)>=1.5&&{willChange:"transform"}}:{position:r,left:t,top:n}},[r,a,B.floating,d.x,d.y]);return t.useMemo(()=>({...d,update:W,refs:$,elements:B,floatingStyles:z}),[d,W,$,B,z])}({...e,elements:{...s,...a&&{reference:a}}}),m=t.useCallback(e=>{let t=(0,p.isElement)(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),getClientRects:()=>e.getClientRects(),contextElement:e}:e;u(t),g.refs.setReference(t)},[g.refs]),[h,v]=t.useState(void 0),[y,E]=t.useState(null);l.useSyncedValue("referenceElement",h??null);let x=(0,p.isElement)(h)?h:null;l.useSyncedValue("domReferenceElement",void 0===h?s.domReference:x),l.useSyncedValue("floatingElement",y);let b=t.useCallback(e=>{((0,p.isElement)(e)||null===e)&&(f.current=e,v(e)),((0,p.isElement)(g.refs.reference.current)||null===g.refs.reference.current||null!==e&&!(0,p.isElement)(e))&&g.refs.setReference(e)},[g.refs,v]),w=t.useCallback(e=>{E(e),g.refs.setFloating(e)},[g.refs]),S=t.useMemo(()=>({...g.refs,setReference:b,setFloating:w,setPositionReference:m,domReference:f}),[g.refs,b,w,m]),R=t.useMemo(()=>({...g.elements,domReference:s.domReference}),[g.elements,s.domReference]),T=l.useState("open"),C=l.useState("floatingId"),A=t.useMemo(()=>({...g,dataRef:l.context.dataRef,open:T,onOpenChange:l.setOpen,events:l.context.events,floatingId:C,refs:S,elements:R,nodeId:n,rootStore:l}),[g,S,R,n,l,T,C]);return(0,o.useIsoLayoutEffect)(()=>{l.context.dataRef.current.floatingContext=A;let e=d?.nodesRef.current.find(e=>e.id===n);e&&(e.context=A)}),t.useMemo(()=>({...g,context:A,refs:S,elements:R,rootStore:l}),[g,S,R,A,l])}({rootContext:eo,open:ei?el:void 0,placement:eT,middleware:eI,strategy:L,whileElementsMounted:ei?void 0:(...e)=>M(...e,e$),nodeId:eu,externalTree:ed}),{sideX:eJ,sideY:eQ}=eY.adaptiveOrigin||Y,eZ=eU?L:"fixed",e0=t.useMemo(()=>{let e=ec?{position:eZ,[eJ]:e_,[eQ]:ej}:{position:eZ,...eG};return eU||(e.opacity=0),e},[ec,eZ,eJ,e_,eQ,ej,eG,eU]),e1=t.useRef(null);(0,o.useIsoLayoutEffect)(()=>{if(!el)return;let e=eb.current,t="function"==typeof e?e():e,n=(X(t)?t.current:t)||null;n!==e1.current&&(eB.setPositionReference(n),e1.current=n)},[el,eB,ex,eb]),t.useEffect(()=>{if(!el)return;let e=eb.current;"function"!=typeof e&&X(e)&&e.current!==e1.current&&(eB.setPositionReference(e.current),e1.current=e.current)},[el,eB,ex,eb]),t.useEffect(()=>{if(ei&&el&&ez.domReference&&ez.floating)return M(ez.domReference,ez.floating,eq,e$)},[ei,el,ez,eq,e$]);let e2=(0,n.getSide)(eK),e5=q(U,e2,eS),e6=(0,n.getAlignment)(eK)||"center",e4=!!eY.hide?.referenceHidden;(0,o.useIsoLayoutEffect)(()=>{ef&&el&&eU&&em(e2)},[ef,el,eU,e2]);let e9=t.useMemo(()=>({position:"absolute",top:eY.arrow?.y,left:eY.arrow?.x}),[eY.arrow]),e7=eY.arrow?.centerOffset!==0;return t.useMemo(()=>({positionerStyles:e0,arrowStyles:e9,arrowRef:eD,arrowUncentered:e7,side:e5,align:e6,physicalSide:e2,anchorHidden:e4,refs:eB,context:eX,isPositioned:eU,update:eq}),[e0,e9,eD,e7,e5,e6,e2,e4,eB,eX,eU,eq])}],576557)},328657,e=>{"use strict";var t=e.i(863728),n=e.i(576487);e.s(["getDisabledMountTransitionStyles",0,function(e){return"starting"===e?n.DISABLED_TRANSITIONS_STYLE:t.EMPTY_OBJECT}])},263635,e=>{"use strict";var t=e.i(817955),n=e.i(969490),r=e.i(328657);e.s(["usePositioner",0,function(e,i,{styles:o,transitionStatus:l,props:s,refs:a,hidden:u,inert:c=!1}){let f={...o};return c&&(f.pointerEvents="none"),(0,n.useRenderElement)("div",e,{state:i,ref:a,props:[{role:"presentation",hidden:u,style:f},(0,r.getDisabledMountTransitionStyles)(l),s],stateAttributesMapping:t.popupStateMapping})}])},795914,e=>{"use strict";var t=e.i(764556),n=e.i(92615),r=e.i(422561),i=e.i(516366),o=e.i(29905),l=e.i(277642),s=e.i(232449),a=e.i(526850),u=e.i(410421),c=e.i(922970),f=e.i(404196),d=e.i(602453),g=e.i(742665),m=e.i(389124),p=e.i(84076),h=e.i(49863);e.s(["useHoverFloatingInteraction",0,function(e,v={}){let y="rootStore"in e?e.rootStore:e,E=y.useState("open"),x=y.useState("floatingElement"),b=y.useState("domReferenceElement"),{dataRef:w}=y.context,{enabled:S=!0,closeDelay:R=0,nodeId:T}=v,C=(0,p.useHoverInteractionSharedState)(y),A=(0,m.useFloatingTree)(),O=(0,m.useFloatingParentNodeId)(),P=(0,o.useStableCallback)(()=>(0,h.isClickLikeOpenEvent)(w.current.openEvent?.type,C.interactedInside)),L=(0,o.useStableCallback)(()=>{let e=w.current.openEvent?.type;return e?.includes("mouse")&&"mousedown"!==e}),M=(0,o.useStableCallback)(e=>(0,c.isTargetInsideEnabledTrigger)(e,y.context.triggerElements)),D=t.useCallback(e=>{let t=(0,h.getDelay)(R,"close",C.pointerType),n=()=>{y.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e)),A?.events.emit("floating.closed",e)};t?C.openChangeTimeout.start(t,n):(C.openChangeTimeout.clear(),n())},[R,y,C,A]),k=(0,o.useStableCallback)(()=>{(0,p.clearSafePolygonPointerEventsMutation)(C)}),N=(0,o.useStableCallback)(e=>{let t=(0,u.getTarget)(e);if(!(0,c.isInteractiveElement)(t)){C.interactedInside=!1;return}C.interactedInside=t?.closest("[aria-haspopup]")!=null});(0,l.useIsoLayoutEffect)(()=>{E||(C.pointerType=void 0,C.restTimeoutPending=!1,C.interactedInside=!1,k())},[E,C,k]),t.useEffect(()=>k,[k]),(0,l.useIsoLayoutEffect)(()=>{if(S&&E&&C.handleCloseOptions?.blockPointerEvents&&L()&&(0,n.isElement)(b)&&x){let e=(0,a.ownerDocument)(x),t=A?.nodesRef.current.find(e=>e.id===O)?.context?.elements.floating;t&&(t.style.pointerEvents="");let n=C.handleCloseOptions?.getScope?.()??C.pointerEventsScopeElement??t??b.closest("[data-rootownerid]")??e.body;return(0,p.applySafePolygonPointerEventsMutation)(C,{scopeElement:n,referenceElement:b,floatingElement:x}),()=>{k()}}},[S,E,b,x,C,L,A,O,k]);let I=(0,s.useTimeout)();t.useEffect(()=>{if(S)return(0,i.mergeCleanups)(x&&(0,r.addEventListener)(x,"mouseenter",function(){C.openChangeTimeout.clear(),I.clear(),A?.events.off("floating.closed",e),k()}),x&&(0,r.addEventListener)(x,"mouseleave",function(t){if(A&&O&&(0,f.getNodeChildren)(A.nodesRef.current,O).length>0)return void A.events.on("floating.closed",e);if(M(t.relatedTarget))return;let r=w.current.floatingContext?.nodeId??T,i=t.relatedTarget;if(!(A&&r&&(0,n.isElement)(i)&&(0,f.getNodeChildren)(A.nodesRef.current,r,!1).some(e=>(0,u.contains)(e.context?.elements.floating,i)))){if(C.handler)return void C.handler(t);k(),P()||D(t)}}),x&&(0,r.addEventListener)(x,"pointerdown",N,!0),()=>{A?.events.off("floating.closed",e)});function e(t){A&&O&&!((0,f.getNodeChildren)(A.nodesRef.current,O).length>0)&&I.start(0,()=>{A.events.off("floating.closed",e),y.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,t)),A.events.emit("floating.closed",t)})}},[S,x,y,w,T,P,M,D,k,N,C,A,O,I])}])},113851,e=>{"use strict";var t=e.i(764556);e.s(["usePreviousValue",0,function(e){let[n,r]=t.useState({current:e,previous:null});return e!==n.current&&r({current:e,previous:n.current}),n.previous}])},730774,e=>{"use strict";var t=e.i(641645),n=e.i(92615);e.s(["getCssDimensions",0,function(e){let r=(0,n.getComputedStyle)(e),i=parseFloat(r.width)||0,o=parseFloat(r.height)||0,l=(0,n.isHTMLElement)(e),s=l?e.offsetWidth:i,a=l?e.offsetHeight:o;return((0,t.round)(i)!==s||(0,t.round)(o)!==a)&&(i=s,o=a),{width:i,height:o}}])},3310,e=>{"use strict";var t=e.i(764556),n=e.i(106206),r=e.i(677822),i=e.i(859092),o=e.i(113851),l=e.i(277642),s=e.i(29905),a=e.i(526850),u=e.i(427708),c=e.i(863728),f=e.i(730774);let d=()=>!0;function g(e,t,n){let r=e.style.getPropertyValue(t);return e.style.setProperty(t,n),()=>{e.style.setProperty(t,r)}}function m(e,t){let n=[];for(let[r,i]of Object.entries(t))n.push(g(e,r,i));return n.length?()=>{n.forEach(e=>e())}:c.NOOP}function p(e,t){let n="auto"===t?"auto":`${t.width}px`,r="auto"===t?"auto":`${t.height}px`;e.style.setProperty("--popup-width",n),e.style.setProperty("--popup-height",r)}function h(e,t){let n="max-content"===t?"max-content":`${t.width}px`,r="max-content"===t?"max-content":`${t.height}px`;e.style.setProperty("--positioner-width",n),e.style.setProperty("--positioner-height",r)}var v=e.i(189131),y=e.i(344180);e.s(["usePopupViewport",0,function(e){let E,{store:x,side:b,cssVars:w,children:S}=e,R=(0,v.useDirection)(),T=x.useState("activeTriggerElement"),C=x.useState("activeTriggerId"),A=x.useState("open"),O=x.useState("payload"),P=x.useState("mounted"),L=x.useState("popupElement"),M=x.useState("positionerElement"),D=(0,o.usePreviousValue)(A?T:null),k=function(e,n){let[r,i]=t.useState(0),o=t.useRef(e),s=t.useRef(n),a=t.useRef(!1);return(0,l.useIsoLayoutEffect)(()=>{let t=o.current,r=n!==s.current;e!==t?(i(e=>e+1),a.current=!r):a.current&&r&&(i(e=>e+1),a.current=!1),o.current=e,s.current=n},[e,n]),`${e??"current"}-${r}`}(C,O),N=t.useRef(null),[I,F]=t.useState(null),[H,W]=t.useState(null),V=t.useRef(null),$=t.useRef(null),B=(0,u.useAnimationsFinished)(V,!0,!1),z=(0,i.useAnimationFrame)(),[_,j]=t.useState(null),[Y,q]=t.useState(!1);(0,l.useIsoLayoutEffect)(()=>(x.set("hasViewport",!0),()=>{x.set("hasViewport",!1)}),[x]);let K=(0,s.useStableCallback)(()=>{V.current?.style.setProperty("animation","none"),V.current?.style.setProperty("transition","none"),$.current?.style.setProperty("display","none")}),X=(0,s.useStableCallback)(e=>{V.current?.style.removeProperty("animation"),V.current?.style.removeProperty("transition"),$.current?.style.removeProperty("display"),e&&j(e)}),U=t.useRef(null);(0,l.useIsoLayoutEffect)(()=>{var e,t;let r,i,o,l;T&&D&&T!==D&&U.current!==T&&N.current&&(F(N.current),q(!0),W((e=D,t=T,r=e.getBoundingClientRect(),i=t.getBoundingClientRect(),o={x:r.left+r.width/2,y:r.top+r.height/2},{horizontal:(l={x:i.left+i.width/2,y:i.top+i.height/2}).x-o.x,vertical:l.y-o.y})),z.request(()=>{n.flushSync(()=>{q(!1)}),B(()=>{F(null),j(null),N.current=null})}),U.current=T)},[T,D,I,B,z]),(0,l.useIsoLayoutEffect)(()=>{let e=V.current;if(!e)return;let t=(0,a.ownerDocument)(e).createElement("div");for(let n of Array.from(e.childNodes))t.appendChild(n.cloneNode(!0));N.current=t});let G=null!=I;return E=G?(0,y.jsxs)(t.Fragment,{children:[(0,y.jsx)("div",{"data-previous":!0,inert:(0,r.inertValue)(!0),ref:$,style:{..._?{[w.popupWidth]:`${_.width}px`,[w.popupHeight]:`${_.height}px`}:null,position:"absolute"},"data-ending-style":Y?void 0:""},"previous"),(0,y.jsx)("div",{"data-current":!0,ref:V,"data-starting-style":Y?"":void 0,children:S},k)]}):(0,y.jsx)("div",{"data-current":!0,ref:V,children:S},k),(0,l.useIsoLayoutEffect)(()=>{let e=$.current;e&&I&&e.replaceChildren(...Array.from(I.childNodes))},[I]),!function(e){let{popupElement:n,positionerElement:r,content:o,mounted:a,enabled:v=d,onMeasureLayout:y,onMeasureLayoutComplete:E,side:x,direction:b}=e,w=(0,u.useAnimationsFinished)(n,!0,!1),S=(0,i.useAnimationFrame)(),R=t.useRef(null),T=t.useRef(null),C=t.useRef(!0),A=t.useRef(c.NOOP),O=(0,s.useStableCallback)(y),P=(0,s.useStableCallback)(E),L=t.useMemo(()=>{let e="top"===x,t="left"===x;return"rtl"===b?(e=e||"inline-end"===x,t=t||"inline-end"===x):(e=e||"inline-start"===x,t=t||"inline-start"===x),e?{position:"absolute",["top"===x?"bottom":"top"]:"0",[t?"right":"left"]:"0"}:c.EMPTY_OBJECT},[x,b]);(0,l.useIsoLayoutEffect)(()=>{if(!a||!v()||"function"!=typeof ResizeObserver){A.current=c.NOOP,C.current=!0,R.current=null,T.current=null;return}if(!n||!r)return;A.current=m(n,L);let e=new ResizeObserver(e=>{let t=e[0];t&&(T.current={width:Math.ceil(t.borderBoxSize[0].inlineSize),height:Math.ceil(t.borderBoxSize[0].blockSize)})});e.observe(n),p(n,"auto");let t=g(n,"position","static"),i=g(n,"transform","none"),o=g(n,"scale","1"),l=m(r,{"--available-width":"max-content","--available-height":"max-content"});function s(){t(),i(),l(),o()}if(O?.(),C.current||null===R.current){h(r,"max-content");let t=(0,f.getCssDimensions)(n);return R.current=t,h(r,t),s(),P?.(null,t),C.current=!1,()=>{e.disconnect(),A.current(),A.current=c.NOOP}}p(n,"auto"),h(r,"max-content");let u=R.current??T.current,d=(0,f.getCssDimensions)(n);if(R.current=d,!u)return h(r,d),s(),P?.(null,d),()=>{e.disconnect(),S.cancel(),A.current(),A.current=c.NOOP};p(n,u),s(),P?.(u,d),h(r,d);let y=new AbortController;return S.request(()=>{p(n,d),w(()=>{n.style.setProperty("--popup-width","auto"),n.style.setProperty("--popup-height","auto")},y.signal)}),()=>{e.disconnect(),y.abort(),S.cancel(),A.current(),A.current=c.NOOP}},[o,n,r,w,S,v,a,O,P,L])}({popupElement:L,positionerElement:M,mounted:P,content:O,onMeasureLayout:K,onMeasureLayoutComplete:X,side:b,direction:R}),{children:E,state:{activationDirection:function(e){if(e){var t,n;return`${(t=e.horizontal)>5?"right":t<-5?"left":""} ${(n=e.vertical)>5?"down":n<-5?"up":""}`}}(H),transitioning:G}}}],3310)},971109,e=>{"use strict";var t=e.i(267805),n=e.i(764556);let r=n.createContext(void 0);e.s(["useToolbarRootContext",0,function(e){let i=n.useContext(r);if(void 0===i&&!e)throw Error((0,t.default)(69));return i}])},900587,e=>{"use strict";var t=e.i(764556),n=e.i(526850),r=e.i(993351),i=e.i(277642);e.s(["useAnchoredPopupScrollLock",0,function(e,o,l,s){let[a,u]=t.useState(!1);(0,i.useIsoLayoutEffect)(()=>{if(!e||!o||null==l)return void u(!1);let t=(0,n.ownerDocument)(l).documentElement.clientWidth,r=l.offsetWidth;u(t>0&&r>0&&r>=t-20)},[e,o,l]),(0,r.useScrollLock)(e&&(!o||a),s)}])},660079,e=>{"use strict";var t=e.i(764556),n=e.i(106206),r=e.i(29905),i=e.i(410421),o=e.i(878984),l=e.i(602453),s=e.i(742665);e.s(["useTriggerFocusGuards",0,function(e,a){let u=t.useRef(null),c=(0,r.useStableCallback)(t=>{n.flushSync(()=>{e.setOpen(!1,(0,l.createChangeEventDetails)(s.REASONS.focusOut,t.nativeEvent,t.currentTarget))});let r=(0,o.getTabbableBeforeElement)(u.current);r?.focus()});return{preFocusGuardRef:u,handlePreFocusGuardFocus:c,handleFocusTargetFocus:(0,r.useStableCallback)(t=>{let r=e.select("positionerElement");if(r&&(0,o.isOutsideEvent)(t,r))e.context.beforeContentFocusGuardRef.current?.focus();else{n.flushSync(()=>{e.setOpen(!1,(0,l.createChangeEventDetails)(s.REASONS.focusOut,t.nativeEvent,t.currentTarget))});let u=(0,o.getTabbableAfterElement)(e.context.triggerFocusTargetRef.current||a.current);for(;null!==u&&(0,i.contains)(r,u);){let e=u;if((u=(0,o.getNextTabbable)(u))===e)break}u?.focus()}})}}])},932031,558680,e=>{"use strict";var t=e.i(942917);e.s(["ChevronRightIcon",()=>t.default],932031);let n=(0,e.i(433721).default)("chevron-down",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);e.s(["default",0,n],558680)}]);
1
+ (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,499198,e=>{"use strict";var t=e.i(92615),n=e.i(232449),r=e.i(410421),i=e.i(404196);let o=.1*.1;function l(e,t,n,r,i,o){return r>=t!=o>=t&&e<=(i-n)*(t-r)/(o-r)+n}function s(e,t,n,r,i,o,s,a,u,c){let f=!1;return l(e,t,n,r,i,o)&&(f=!f),l(e,t,i,o,s,a)&&(f=!f),l(e,t,s,a,u,c)&&(f=!f),l(e,t,u,c,n,r)&&(f=!f),f}function a(e,t,n,r,i,o){let l=Math.min(n,i),s=Math.max(n,i),a=Math.min(r,o),u=Math.max(r,o);return e>=l&&e<=s&&t>=a&&t<=u}e.s(["safePolygon",0,function(e={}){let{blockPointerEvents:l=!1}=e,u=new n.Timeout,c=({x:e,y:n,placement:l,elements:c,onClose:f,nodeId:d,tree:g})=>{let m=l?.split("-")[0],p=!1,h=null,v=null,y="u">typeof performance?performance.now():0;return function(l){u.clear();let E=c.domReference,x=c.floating;if(!E||!x||null==m||null==e||null==n)return;let{clientX:b,clientY:w}=l,S=(0,r.getTarget)(l),R="mouseleave"===l.type,T=(0,r.contains)(x,S),C=(0,r.contains)(E,S);if(T&&(p=!0,!R))return;if(C&&(p=!1,!R)){p=!0;return}if(R&&(0,t.isElement)(l.relatedTarget)&&(0,r.contains)(x,l.relatedTarget))return;function A(){return!!(g&&(0,i.getNodeChildren)(g.nodesRef.current,d).length>0)}function O(){A()||(u.clear(),f())}if(A())return;let P=E.getBoundingClientRect(),L=x.getBoundingClientRect(),M=e>L.right-L.width/2,k=n>L.bottom-L.height/2,D=L.width>P.width,N=L.height>P.height,I=(D?P:L).left,F=(D?P:L).right,H=(N?P:L).top,W=(N?P:L).bottom;if("top"===m&&n>=P.bottom-1||"bottom"===m&&n<=P.top+1||"left"===m&&e>=P.right-1||"right"===m&&e<=P.left+1)return void O();let V=!1;switch(m){case"top":V=a(b,w,I,P.top+1,F,L.bottom-1);break;case"bottom":V=a(b,w,I,L.top+1,F,P.bottom-1);break;case"left":V=a(b,w,L.right-1,W,P.left+1,H);break;case"right":V=a(b,w,P.right-1,W,L.left+1,H)}if(V)return;if(p&&(!(b>=P.x)||!(b<=P.x+P.width)||!(w>=P.y)||!(w<=P.y+P.height))||!R&&function(e,t){let n=performance.now(),r=n-y;if(null===h||null===v||0===r)return h=e,v=t,y=n,!1;let i=e-h,l=t-v;return h=e,v=t,y=n,i*i+l*l<r*r*o}(b,w))return void O();let $=!1;switch(m){case"top":{let t=D?.25:2,r=n+.5+1,i=M||D?L.bottom-.5:L.top,o=M?D?L.bottom-.5:L.top:L.bottom-.5;$=s(b,w,D||M?e+t:e-t,r,D?e-t:M?e+t:e-t,r,L.left,i,L.right,o);break}case"bottom":{let t=D?.25:2,r=n-.5,i=M||D?L.top+.5:L.bottom,o=M?D?L.top+.5:L.bottom:L.top+.5;$=s(b,w,D||M?e+t:e-t,r,D?e-t:M?e+t:e-t,r,L.left,i,L.right,o);break}case"left":{let t=N?.25:2,r=e+.5+1,i=k||N?L.right-.5:L.left,o=k?N?L.right-.5:L.left:L.right-.5;$=s(b,w,i,L.top,o,L.bottom,r,N||k?n+t:n-t,r,N?n-t:k?n+t:n-t);break}case"right":{let t=N?.25:2,r=e-.5,i=k||N?L.left+.5:L.right,o=k?N?L.left+.5:L.right:L.left+.5;$=s(b,w,r,N||k?n+t:n-t,r,N?n-t:k?n+t:n-t,i,L.top,o,L.bottom)}}$?p||u.start(40,O):O()}};return c.__options={...e,blockPointerEvents:l},c}])},49863,e=>{"use strict";var t=e.i(150129);e.s(["getDelay",0,function(e,n,r){let i=null==r||(0,t.isMouseLikePointerType)(r)?"function"==typeof e?e():e:0;return"number"==typeof i?i:i?.[n]},"getRestMs",0,function(e){return"function"==typeof e?e():e},"isClickLikeOpenEvent",0,function(e,t){return t||"click"===e||"mousedown"===e}])},604921,e=>{"use strict";var t=e.i(764556),n=e.i(92615),r=e.i(422561),i=e.i(516366),o=e.i(454889),l=e.i(232449),s=e.i(526850),a=e.i(410421),u=e.i(922970),c=e.i(602453),f=e.i(742665),d=e.i(134055);let g=o.isMac&&o.isSafari;e.s(["useFocus",0,function(e,o={}){let m="rootStore"in e?e.rootStore:e,{events:p,dataRef:h}=m.context,{enabled:v=!0,delay:y}=o,E=t.useRef(!1),x=t.useRef(null),b=(0,l.useTimeout)(),w=t.useRef(!0);t.useEffect(()=>{let e=m.select("domReferenceElement");if(!v)return;let t=(0,n.getWindow)(e);return(0,i.mergeCleanups)((0,r.addEventListener)(t,"blur",function(){let e=m.select("domReferenceElement");!m.select("open")&&(0,n.isHTMLElement)(e)&&e===(0,a.activeElement)((0,s.ownerDocument)(e))&&(E.current=!0)}),g&&(0,r.addEventListener)(t,"keydown",function(){w.current=!0},!0),g&&(0,r.addEventListener)(t,"pointerdown",function(){w.current=!1},!0))},[m,v]),t.useEffect(()=>{if(v)return p.on("openchange",e),()=>{p.off("openchange",e)};function e(e){if(e.reason===f.REASONS.triggerPress||e.reason===f.REASONS.escapeKey){let e=m.select("domReferenceElement");(0,n.isElement)(e)&&(x.current=e,E.current=!0)}}},[p,v,m]);let S=t.useMemo(()=>({onMouseLeave(){E.current=!1,x.current=null},onFocus(e){let t=e.currentTarget;if(E.current){if(x.current===t)return;E.current=!1,x.current=null}let r=(0,a.getTarget)(e.nativeEvent);if((0,n.isElement)(r)){if(g&&!e.relatedTarget){if(!w.current&&!(0,u.isTypeableElement)(r))return}else if(!(0,u.matchesFocusVisible)(r))return}let i=(0,u.isTargetInsideEnabledTrigger)(e.relatedTarget,m.context.triggerElements),{nativeEvent:o,currentTarget:l}=e,s="function"==typeof y?y():y;m.select("open")&&i||0===s||void 0===s?m.setOpen(!0,(0,c.createChangeEventDetails)(f.REASONS.triggerFocus,o,l)):b.start(s,()=>{E.current||m.setOpen(!0,(0,c.createChangeEventDetails)(f.REASONS.triggerFocus,o,l))})},onBlur(e){E.current=!1,x.current=null;let t=e.relatedTarget,r=e.nativeEvent,i=(0,n.isElement)(t)&&t.hasAttribute((0,d.createAttribute)("focus-guard"))&&"outside"===t.getAttribute("data-type");b.start(0,()=>{let e=m.select("domReferenceElement"),n=(0,a.activeElement)((0,s.ownerDocument)(e));if(!t&&n===e||(0,a.contains)(h.current.floatingContext?.refs.floating.current,n)||(0,a.contains)(e,n)||i)return;let o=t??n;(0,u.isTargetInsideEnabledTrigger)(o,m.context.triggerElements)||m.setOpen(!1,(0,c.createChangeEventDetails)(f.REASONS.triggerFocus,r))})}}),[h,m,b,y]);return t.useMemo(()=>v?{reference:S,trigger:S}:{},[v,S])}])},84076,e=>{"use strict";var t=e.i(130522),n=e.i(549154),r=e.i(232449);e.i(922970);class i{constructor(){this.pointerType=void 0,this.interactedInside=!1,this.handler=void 0,this.blockMouseMove=!0,this.performedPointerEventsMutation=!1,this.pointerEventsScopeElement=null,this.pointerEventsReferenceElement=null,this.pointerEventsFloatingElement=null,this.restTimeoutPending=!1,this.openChangeTimeout=new r.Timeout,this.restTimeout=new r.Timeout,this.handleCloseOptions=void 0}static create(){return new i}dispose=()=>{this.openChangeTimeout.clear(),this.restTimeout.clear()};disposeEffect=()=>this.dispose}let o=new WeakMap;function l(e){if(!e.performedPointerEventsMutation)return;let t=e.pointerEventsScopeElement;t&&o.get(t)===e&&(e.pointerEventsScopeElement?.style.removeProperty("pointer-events"),e.pointerEventsReferenceElement?.style.removeProperty("pointer-events"),e.pointerEventsFloatingElement?.style.removeProperty("pointer-events"),o.delete(t)),e.performedPointerEventsMutation=!1,e.pointerEventsScopeElement=null,e.pointerEventsReferenceElement=null,e.pointerEventsFloatingElement=null}e.s(["applySafePolygonPointerEventsMutation",0,function(e,t){let{scopeElement:n,referenceElement:r,floatingElement:i}=t,s=o.get(n);s&&s!==e&&l(s),l(e),e.performedPointerEventsMutation=!0,e.pointerEventsScopeElement=n,e.pointerEventsReferenceElement=r,e.pointerEventsFloatingElement=i,o.set(n,e),n.style.pointerEvents="none",r.style.pointerEvents="auto",i.style.pointerEvents="auto"},"clearSafePolygonPointerEventsMutation",0,l,"useHoverInteractionSharedState",0,function(e){let r=(0,n.useRefWithInit)(i.create).current,o=e.context.dataRef.current;return o.hoverInteractionState||(o.hoverInteractionState=r),(0,t.useOnMount)(o.hoverInteractionState.disposeEffect),o.hoverInteractionState}])},480283,e=>{"use strict";var t=e.i(764556),n=e.i(106206),r=e.i(92615),i=e.i(422561),o=e.i(516366),l=e.i(106045),s=e.i(29905),a=e.i(526850),u=e.i(410421),c=e.i(922970),f=e.i(150129),d=e.i(602453),g=e.i(742665),m=e.i(389124),p=e.i(84076),h=e.i(49863);let v={current:null};e.s(["useHoverReferenceInteraction",0,function(e,y={}){let E="rootStore"in e?e.rootStore:e,{dataRef:x,events:b}=E.context,{enabled:w=!0,delay:S=0,handleClose:R=null,mouseOnly:T=!1,restMs:C=0,move:A=!0,triggerElementRef:O=v,externalTree:P,isActiveTrigger:L=!0,getHandleCloseContext:M,isClosing:k}=y,D=(0,m.useFloatingTree)(P),N=(0,p.useHoverInteractionSharedState)(E),I=t.useRef(!1),F=(0,l.useValueAsRef)(R),H=(0,l.useValueAsRef)(S),W=(0,l.useValueAsRef)(C),V=(0,l.useValueAsRef)(w),$=(0,l.useValueAsRef)(k);L&&(N.handleCloseOptions=F.current?.__options);let B=(0,s.useStableCallback)(()=>(0,h.isClickLikeOpenEvent)(x.current.openEvent?.type,N.interactedInside)),z=(0,s.useStableCallback)(e=>(0,c.isTargetInsideEnabledTrigger)(e,E.context.triggerElements)),_=(0,s.useStableCallback)((e,t,n)=>{let i=E.context.triggerElements;return i.hasElement(t)?!e||!(0,u.contains)(e,t):!!(0,r.isElement)(n)&&i.hasMatchingElement(e=>(0,u.contains)(e,n))&&(!e||!(0,u.contains)(e,n))}),j=(0,s.useStableCallback)((e,t=!0)=>{let n=(0,h.getDelay)(H.current,"close",N.pointerType);n?N.openChangeTimeout.start(n,()=>{E.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e)),D?.events.emit("floating.closed",e)}):t&&(N.openChangeTimeout.clear(),E.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e)),D?.events.emit("floating.closed",e))}),Y=(0,s.useStableCallback)(()=>{N.handler&&((0,a.ownerDocument)(E.select("domReferenceElement")).removeEventListener("mousemove",N.handler),N.handler=void 0)}),q=(0,s.useStableCallback)(()=>{(0,p.clearSafePolygonPointerEventsMutation)(N)});return t.useEffect(()=>Y,[Y]),t.useEffect(()=>{if(w)return b.on("openchange",e),()=>{b.off("openchange",e)};function e(e){e.open?I.current=!1:(I.current=e.reason===g.REASONS.triggerHover,Y(),N.openChangeTimeout.clear(),N.restTimeout.clear(),N.blockMouseMove=!0,N.restTimeoutPending=!1)}},[w,b,N,Y]),t.useEffect(()=>{if(!w)return;let e=O.current??(L?E.select("domReferenceElement"):null);if((0,r.isElement)(e))return A?(0,o.mergeCleanups)((0,i.addEventListener)(e,"mousemove",t,{once:!0}),(0,i.addEventListener)(e,"mouseenter",t),(0,i.addEventListener)(e,"mouseleave",n)):(0,o.mergeCleanups)((0,i.addEventListener)(e,"mouseenter",t),(0,i.addEventListener)(e,"mouseleave",n));function t(e){if(N.openChangeTimeout.clear(),N.blockMouseMove=!1,T&&!(0,f.isMouseLikePointerType)(N.pointerType))return;let t=(0,h.getRestMs)(W.current),n=(0,h.getDelay)(H.current,"open",N.pointerType),i=(0,u.getTarget)(e),o=e.currentTarget??null,l=E.select("domReferenceElement"),s=o;if((0,r.isElement)(i)&&!E.context.triggerElements.hasElement(i)){for(let e of E.context.triggerElements.elements())if((0,u.contains)(e,i)){s=e;break}}(0,r.isElement)(o)&&(0,r.isElement)(l)&&!E.context.triggerElements.hasElement(o)&&(0,u.contains)(o,l)&&(s=l);let a=null!=s&&_(l,s,i),c=E.select("open"),m=$.current?.()??"ending"===E.select("transitionStatus"),p=!c&&m&&I.current,v=!a&&(0,r.isElement)(s)&&(0,r.isElement)(l)&&(0,u.contains)(l,s)&&p,y=t>0&&!n,x=!c||a;a&&(c||p)||v?E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e,s)):!y&&(n?N.openChangeTimeout.start(n,()=>{x&&E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e,s))}):x&&E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e,s)))}function n(e){if(B())return void q();Y();let t=E.select("domReferenceElement"),n=(0,a.ownerDocument)(t);N.restTimeout.clear(),N.restTimeoutPending=!1;let r=x.current.floatingContext??M?.();if(!z(e.relatedTarget)){if(F.current&&r){E.select("open")||N.openChangeTimeout.clear();let t=O.current;N.handler=F.current({...r,tree:D,x:e.clientX,y:e.clientY,onClose(){q(),Y(),V.current&&!B()&&t===E.select("domReferenceElement")&&j(e,!0)}}),n.addEventListener("mousemove",N.handler),N.handler(e);return}"touch"===N.pointerType&&(0,u.contains)(E.select("floatingElement"),e.relatedTarget)||j(e)}}},[Y,q,x,H,j,E,w,F,N,L,_,B,z,T,A,W,O,D,V,M,$]),t.useMemo(()=>{if(w)return{onPointerDown:e,onPointerEnter:e,onMouseMove(e){let{nativeEvent:t}=e,r=e.currentTarget,i=E.select("domReferenceElement"),o=E.select("open"),l=_(i,r,e.target);if(T&&!(0,f.isMouseLikePointerType)(N.pointerType))return;if(o&&l&&N.handleCloseOptions?.blockPointerEvents){let e=E.select("floatingElement");if(e){let t=N.handleCloseOptions?.getScope?.()??r.ownerDocument.body;(0,p.applySafePolygonPointerEventsMutation)(N,{scopeElement:t,referenceElement:r,floatingElement:e})}}let s=(0,h.getRestMs)(W.current);function a(){if(N.restTimeoutPending=!1,B())return;let e=E.select("open");N.blockMouseMove||e&&!l||E.setOpen(!0,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,t,r))}(!o||l)&&0!==s&&(!l&&N.restTimeoutPending&&e.movementX**2+e.movementY**2<2||(N.restTimeout.clear(),"touch"===N.pointerType?n.flushSync(()=>{a()}):l&&o?a():(N.restTimeoutPending=!0,N.restTimeout.start(s,a))))}};function e(e){N.pointerType=e.pointerType}},[w,N,B,_,T,E,W])}])},576557,909852,e=>{"use strict";var t=e.i(764556),n=e.i(641645),r=e.i(526850),i=e.i(285182),o=e.i(277642),l=e.i(106045),s=e.i(29905);function a(e,t,r){let i,{reference:o,floating:l}=e,s=(0,n.getSideAxis)(t),a=(0,n.getAlignmentAxis)(t),u=(0,n.getAxisLength)(a),c=(0,n.getSide)(t),f="y"===s,d=o.x+o.width/2-l.width/2,g=o.y+o.height/2-l.height/2,m=o[u]/2-l[u]/2;switch(c){case"top":i={x:d,y:o.y-l.height};break;case"bottom":i={x:d,y:o.y+o.height};break;case"right":i={x:o.x+o.width,y:g};break;case"left":i={x:o.x-l.width,y:g};break;default:i={x:o.x,y:o.y}}switch((0,n.getAlignment)(t)){case"start":i[a]-=m*(r&&f?-1:1);break;case"end":i[a]+=m*(r&&f?-1:1)}return i}async function u(e,t){var r;void 0===t&&(t={});let{x:i,y:o,platform:l,rects:s,elements:a,strategy:u}=e,{boundary:c="clippingAncestors",rootBoundary:f="viewport",elementContext:d="floating",altBoundary:g=!1,padding:m=0}=(0,n.evaluate)(t,e),p=(0,n.getPaddingObject)(m),h=a[g?"floating"===d?"reference":"floating":d],v=(0,n.rectToClientRect)(await l.getClippingRect({element:null==(r=await (null==l.isElement?void 0:l.isElement(h)))||r?h:h.contextElement||await (null==l.getDocumentElement?void 0:l.getDocumentElement(a.floating)),boundary:c,rootBoundary:f,strategy:u})),y="floating"===d?{x:i,y:o,width:s.floating.width,height:s.floating.height}:s.reference,E=await (null==l.getOffsetParent?void 0:l.getOffsetParent(a.floating)),x=await (null==l.isElement?void 0:l.isElement(E))&&await (null==l.getScale?void 0:l.getScale(E))||{x:1,y:1},b=(0,n.rectToClientRect)(l.convertOffsetParentRelativeRectToViewportRelativeRect?await l.convertOffsetParentRelativeRectToViewportRelativeRect({elements:a,rect:y,offsetParent:E,strategy:u}):y);return{top:(v.top-b.top+p.top)/x.y,bottom:(b.bottom-v.bottom+p.bottom)/x.y,left:(v.left-b.left+p.left)/x.x,right:(b.right-v.right+p.right)/x.x}}let c=async(e,t,n)=>{let{placement:r="bottom",strategy:i="absolute",middleware:o=[],platform:l}=n,s=l.detectOverflow?l:{...l,detectOverflow:u},c=await (null==l.isRTL?void 0:l.isRTL(t)),f=await l.getElementRects({reference:e,floating:t,strategy:i}),{x:d,y:g}=a(f,r,c),m=r,p=0,h={};for(let n=0;n<o.length;n++){let u=o[n];if(!u)continue;let{name:v,fn:y}=u,{x:E,y:x,data:b,reset:w}=await y({x:d,y:g,initialPlacement:r,placement:m,strategy:i,middlewareData:h,rects:f,platform:s,elements:{reference:e,floating:t}});d=null!=E?E:d,g=null!=x?x:g,h[v]={...h[v],...b},w&&p<50&&(p++,"object"==typeof w&&(w.placement&&(m=w.placement),w.rects&&(f=!0===w.rects?await l.getElementRects({reference:e,floating:t,strategy:i}):w.rects),{x:d,y:g}=a(f,m,c)),n=-1)}return{x:d,y:g,placement:m,strategy:i,middlewareData:h}};function f(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function d(e){return n.sides.some(t=>e[t]>=0)}let g=new Set(["left","top"]);async function m(e,t){let{placement:r,platform:i,elements:o}=e,l=await (null==i.isRTL?void 0:i.isRTL(o.floating)),s=(0,n.getSide)(r),a=(0,n.getAlignment)(r),u="y"===(0,n.getSideAxis)(r),c=g.has(s)?-1:1,f=l&&u?-1:1,d=(0,n.evaluate)(t,e),{mainAxis:m,crossAxis:p,alignmentAxis:h}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return a&&"number"==typeof h&&(p="end"===a?-1*h:h),u?{x:p*f,y:m*c}:{x:m*c,y:p*f}}var p=e.i(92615);function h(e){let t=(0,p.getComputedStyle)(e),r=parseFloat(t.width)||0,i=parseFloat(t.height)||0,o=(0,p.isHTMLElement)(e),l=o?e.offsetWidth:r,s=o?e.offsetHeight:i,a=(0,n.round)(r)!==l||(0,n.round)(i)!==s;return a&&(r=l,i=s),{width:r,height:i,$:a}}function v(e){return(0,p.isElement)(e)?e:e.contextElement}function y(e){let t=v(e);if(!(0,p.isHTMLElement)(t))return(0,n.createCoords)(1);let r=t.getBoundingClientRect(),{width:i,height:o,$:l}=h(t),s=(l?(0,n.round)(r.width):r.width)/i,a=(l?(0,n.round)(r.height):r.height)/o;return s&&Number.isFinite(s)||(s=1),a&&Number.isFinite(a)||(a=1),{x:s,y:a}}let E=(0,n.createCoords)(0);function x(e){let t=(0,p.getWindow)(e);return(0,p.isWebKit)()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:E}function b(e,t,r,i){var o;void 0===t&&(t=!1),void 0===r&&(r=!1);let l=e.getBoundingClientRect(),s=v(e),a=(0,n.createCoords)(1);t&&(i?(0,p.isElement)(i)&&(a=y(i)):a=y(e));let u=(void 0===(o=r)&&(o=!1),i&&(!o||i===(0,p.getWindow)(s))&&o)?x(s):(0,n.createCoords)(0),c=(l.left+u.x)/a.x,f=(l.top+u.y)/a.y,d=l.width/a.x,g=l.height/a.y;if(s){let e=(0,p.getWindow)(s),t=i&&(0,p.isElement)(i)?(0,p.getWindow)(i):i,n=e,r=(0,p.getFrameElement)(n);for(;r&&i&&t!==n;){let e=y(r),t=r.getBoundingClientRect(),i=(0,p.getComputedStyle)(r),o=t.left+(r.clientLeft+parseFloat(i.paddingLeft))*e.x,l=t.top+(r.clientTop+parseFloat(i.paddingTop))*e.y;c*=e.x,f*=e.y,d*=e.x,g*=e.y,c+=o,f+=l,n=(0,p.getWindow)(r),r=(0,p.getFrameElement)(n)}}return(0,n.rectToClientRect)({width:d,height:g,x:c,y:f})}function w(e,t){let n=(0,p.getNodeScroll)(e).scrollLeft;return t?t.left+n:b((0,p.getDocumentElement)(e)).left+n}function S(e,t){let n=e.getBoundingClientRect();return{x:n.left+t.scrollLeft-w(e,n),y:n.top+t.scrollTop}}function R(e,t,r){var i;let o;if("viewport"===t)o=function(e,t){let n=(0,p.getWindow)(e),r=(0,p.getDocumentElement)(e),i=n.visualViewport,o=r.clientWidth,l=r.clientHeight,s=0,a=0;if(i){o=i.width,l=i.height;let e=(0,p.isWebKit)();(!e||e&&"fixed"===t)&&(s=i.offsetLeft,a=i.offsetTop)}let u=w(r);if(u<=0){let e=r.ownerDocument,t=e.body,n=getComputedStyle(t),i="CSS1Compat"===e.compatMode&&parseFloat(n.marginLeft)+parseFloat(n.marginRight)||0,l=Math.abs(r.clientWidth-t.clientWidth-i);l<=25&&(o-=l)}else u<=25&&(o+=u);return{width:o,height:l,x:s,y:a}}(e,r);else if("document"===t){let t,r,l,s,a,u,c;i=(0,p.getDocumentElement)(e),t=(0,p.getDocumentElement)(i),r=(0,p.getNodeScroll)(i),l=i.ownerDocument.body,s=(0,n.max)(t.scrollWidth,t.clientWidth,l.scrollWidth,l.clientWidth),a=(0,n.max)(t.scrollHeight,t.clientHeight,l.scrollHeight,l.clientHeight),u=-r.scrollLeft+w(i),c=-r.scrollTop,"rtl"===(0,p.getComputedStyle)(l).direction&&(u+=(0,n.max)(t.clientWidth,l.clientWidth)-s),o={width:s,height:a,x:u,y:c}}else if((0,p.isElement)(t)){let e,i,l,s,a,u;i=(e=b(t,!0,"fixed"===r)).top+t.clientTop,l=e.left+t.clientLeft,s=(0,p.isHTMLElement)(t)?y(t):(0,n.createCoords)(1),a=t.clientWidth*s.x,u=t.clientHeight*s.y,o={width:a,height:u,x:l*s.x,y:i*s.y}}else{let n=x(e);o={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return(0,n.rectToClientRect)(o)}function T(e){return"static"===(0,p.getComputedStyle)(e).position}function C(e,t){if(!(0,p.isHTMLElement)(e)||"fixed"===(0,p.getComputedStyle)(e).position)return null;if(t)return t(e);let n=e.offsetParent;return(0,p.getDocumentElement)(e)===n&&(n=n.ownerDocument.body),n}function A(e,t){let n=(0,p.getWindow)(e);if((0,p.isTopLayer)(e))return n;if(!(0,p.isHTMLElement)(e)){let t=(0,p.getParentNode)(e);for(;t&&!(0,p.isLastTraversableNode)(t);){if((0,p.isElement)(t)&&!T(t))return t;t=(0,p.getParentNode)(t)}return n}let r=C(e,t);for(;r&&(0,p.isTableElement)(r)&&T(r);)r=C(r,t);return r&&(0,p.isLastTraversableNode)(r)&&T(r)&&!(0,p.isContainingBlock)(r)?n:r||(0,p.getContainingBlock)(e)||n}let O=async function(e){let t=this.getOffsetParent||A,r=this.getDimensions,i=await r(e.floating);return{reference:function(e,t,r){let i=(0,p.isHTMLElement)(t),o=(0,p.getDocumentElement)(t),l="fixed"===r,s=b(e,!0,l,t),a={scrollLeft:0,scrollTop:0},u=(0,n.createCoords)(0);if(i||!i&&!l)if(("body"!==(0,p.getNodeName)(t)||(0,p.isOverflowElement)(o))&&(a=(0,p.getNodeScroll)(t)),i){let e=b(t,!0,l,t);u.x=e.x+t.clientLeft,u.y=e.y+t.clientTop}else o&&(u.x=w(o));l&&!i&&o&&(u.x=w(o));let c=!o||i||l?(0,n.createCoords)(0):S(o,a);return{x:s.left+a.scrollLeft-u.x-c.x,y:s.top+a.scrollTop-u.y-c.y,width:s.width,height:s.height}}(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:i.width,height:i.height}}},P={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:r,offsetParent:i,strategy:o}=e,l="fixed"===o,s=(0,p.getDocumentElement)(i),a=!!t&&(0,p.isTopLayer)(t.floating);if(i===s||a&&l)return r;let u={scrollLeft:0,scrollTop:0},c=(0,n.createCoords)(1),f=(0,n.createCoords)(0),d=(0,p.isHTMLElement)(i);if((d||!d&&!l)&&(("body"!==(0,p.getNodeName)(i)||(0,p.isOverflowElement)(s))&&(u=(0,p.getNodeScroll)(i)),d)){let e=b(i);c=y(i),f.x=e.x+i.clientLeft,f.y=e.y+i.clientTop}let g=!s||d||l?(0,n.createCoords)(0):S(s,u);return{width:r.width*c.x,height:r.height*c.y,x:r.x*c.x-u.scrollLeft*c.x+f.x+g.x,y:r.y*c.y-u.scrollTop*c.y+f.y+g.y}},getDocumentElement:p.getDocumentElement,getClippingRect:function(e){let{element:t,boundary:r,rootBoundary:i,strategy:o}=e,l=[..."clippingAncestors"===r?(0,p.isTopLayer)(t)?[]:function(e,t){let n=t.get(e);if(n)return n;let r=(0,p.getOverflowAncestors)(e,[],!1).filter(e=>(0,p.isElement)(e)&&"body"!==(0,p.getNodeName)(e)),i=null,o="fixed"===(0,p.getComputedStyle)(e).position,l=o?(0,p.getParentNode)(e):e;for(;(0,p.isElement)(l)&&!(0,p.isLastTraversableNode)(l);){let t=(0,p.getComputedStyle)(l),n=(0,p.isContainingBlock)(l);n||"fixed"!==t.position||(i=null),(o?n||i:!(!n&&"static"===t.position&&i&&("absolute"===i.position||"fixed"===i.position)||(0,p.isOverflowElement)(l)&&!n&&function e(t,n){let r=(0,p.getParentNode)(t);return!(r===n||!(0,p.isElement)(r)||(0,p.isLastTraversableNode)(r))&&("fixed"===(0,p.getComputedStyle)(r).position||e(r,n))}(e,l)))?i=t:r=r.filter(e=>e!==l),l=(0,p.getParentNode)(l)}return t.set(e,r),r}(t,this._c):[].concat(r),i],s=R(t,l[0],o),a=s.top,u=s.right,c=s.bottom,f=s.left;for(let e=1;e<l.length;e++){let r=R(t,l[e],o);a=(0,n.max)(r.top,a),u=(0,n.min)(r.right,u),c=(0,n.min)(r.bottom,c),f=(0,n.max)(r.left,f)}return{width:u-f,height:c-a,x:f,y:a}},getOffsetParent:A,getElementRects:O,getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){let{width:t,height:n}=h(e);return{width:t,height:n}},getScale:y,isElement:p.isElement,isRTL:function(e){return"rtl"===(0,p.getComputedStyle)(e).direction}};function L(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function M(e,t,r,i){let o;void 0===i&&(i={});let{ancestorScroll:l=!0,ancestorResize:s=!0,elementResize:a="function"==typeof ResizeObserver,layoutShift:u="function"==typeof IntersectionObserver,animationFrame:c=!1}=i,f=v(e),d=l||s?[...f?(0,p.getOverflowAncestors)(f):[],...t?(0,p.getOverflowAncestors)(t):[]]:[];d.forEach(e=>{l&&e.addEventListener("scroll",r,{passive:!0}),s&&e.addEventListener("resize",r)});let g=f&&u?function(e,t){let r,i=null,o=(0,p.getDocumentElement)(e);function l(){var e;clearTimeout(r),null==(e=i)||e.disconnect(),i=null}return!function s(a,u){void 0===a&&(a=!1),void 0===u&&(u=1),l();let c=e.getBoundingClientRect(),{left:f,top:d,width:g,height:m}=c;if(a||t(),!g||!m)return;let p={rootMargin:-(0,n.floor)(d)+"px "+-(0,n.floor)(o.clientWidth-(f+g))+"px "+-(0,n.floor)(o.clientHeight-(d+m))+"px "+-(0,n.floor)(f)+"px",threshold:(0,n.max)(0,(0,n.min)(1,u))||1},h=!0;function v(t){let n=t[0].intersectionRatio;if(n!==u){if(!h)return s();n?s(!1,n):r=setTimeout(()=>{s(!1,1e-7)},1e3)}1!==n||L(c,e.getBoundingClientRect())||s(),h=!1}try{i=new IntersectionObserver(v,{...p,root:o.ownerDocument})}catch(e){i=new IntersectionObserver(v,p)}i.observe(e)}(!0),l}(f,r):null,m=-1,h=null;a&&(h=new ResizeObserver(e=>{let[n]=e;n&&n.target===f&&h&&t&&(h.unobserve(t),cancelAnimationFrame(m),m=requestAnimationFrame(()=>{var e;null==(e=h)||e.observe(t)})),r()}),f&&!c&&h.observe(f),t&&h.observe(t));let y=c?b(e):null;return c&&function t(){let n=b(e);y&&!L(y,n)&&r(),y=n,o=requestAnimationFrame(t)}(),r(),()=>{var e;d.forEach(e=>{l&&e.removeEventListener("scroll",r),s&&e.removeEventListener("resize",r)}),null==g||g(),null==(e=h)||e.disconnect(),h=null,c&&cancelAnimationFrame(o)}}var k=e.i(106206),D="u">typeof document?t.useLayoutEffect:function(){};function N(e,t){let n,r,i;if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if((n=e.length)!==t.length)return!1;for(r=n;0!=r--;)if(!N(e[r],t[r]))return!1;return!0}if((n=(i=Object.keys(e)).length)!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!({}).hasOwnProperty.call(t,i[r]))return!1;for(r=n;0!=r--;){let n=i[r];if(("_owner"!==n||!e.$$typeof)&&!N(e[n],t[n]))return!1}return!0}return e!=e&&t!=t}function I(e){return"u"<typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function F(e,t){let n=I(e);return Math.round(t*n)/n}function H(e){let n=t.useRef(e);return D(()=>{n.current=e}),n}var W=e.i(389124);e.i(8890);var V=e.i(394822),$=e.i(549154),B=e.i(807323),z=e.i(561213),_=e.i(189131);let j={name:"hide",async fn(e){var t;let r,{width:i,height:o,x:l,y:s}=e.rects.reference,a=await (t=void 0,{name:(r={name:"hide",options:t={},async fn(e){let{rects:r,platform:i}=e,{strategy:o="referenceHidden",...l}=(0,n.evaluate)(t,e);switch(o){case"referenceHidden":{let t=f(await i.detectOverflow(e,{...l,elementContext:"reference"}),r.reference);return{data:{referenceHiddenOffsets:t,referenceHidden:d(t)}}}case"escaped":{let t=f(await i.detectOverflow(e,{...l,altBoundary:!0}),r.floating);return{data:{escapedOffsets:t,escaped:d(t)}}}default:return{}}}}).name,fn:r.fn,options:[void 0,void 0]}).fn(e);return{data:{referenceHidden:a.data?.referenceHidden||0===i&&0===o&&0===l&&0===s}}}},Y={sideX:"left",sideY:"top"};function q(e,t,n){let r="inline-start"===e||"inline-end"===e;return({top:"top",right:r?n?"inline-start":"inline-end":"right",bottom:"bottom",left:r?n?"inline-end":"inline-start":"left"})[t]}function K(e,t,r){let{rects:i,placement:o}=e;return{side:q(t,(0,n.getSide)(o),r),align:(0,n.getAlignment)(o)||"center",anchor:{width:i.reference.width,height:i.reference.height},positioner:{width:i.floating.width,height:i.floating.height}}}function X(e){return null!=e&&"current"in e}e.s(["DEFAULT_SIDES",0,Y,"adaptiveOrigin",0,{name:"adaptiveOrigin",async fn(e){let{x:t,y:o,rects:{floating:l},elements:{floating:s},platform:a,strategy:u,placement:c}=e,f=(0,i.ownerWindow)(s),d=f.getComputedStyle(s);if("0s"===d.transitionDuration||""===d.transitionDuration)return{x:t,y:o,data:Y};let g=await a.getOffsetParent?.(s),m={width:0,height:0};if("fixed"===u&&f?.visualViewport)m={width:f.visualViewport.width,height:f.visualViewport.height};else if(g===f){let e=(0,r.ownerDocument)(s);m={width:e.documentElement.clientWidth,height:e.documentElement.clientHeight}}else await a.isElement?.(g)&&(m=await a.getDimensions(g));let p=(0,n.getSide)(c),h=t,v=o;return"left"===p&&(h=m.width-(t+l.width)),"top"===p&&(v=m.height-(o+l.height)),{x:h,y:v,data:{sideX:"left"===p?"right":Y.sideX,sideY:"top"===p?"bottom":Y.sideY}}}}],909852),e.s(["useAnchorPositioning",0,function(e){var a,u,f,d,h,v,y,E,x,b,w,S;let R,T,C,A,{anchor:O,positionMethod:L="absolute",side:U="bottom",sideOffset:G=0,align:J="center",alignOffset:Q=0,collisionBoundary:Z,collisionPadding:ee=5,sticky:et=!1,arrowPadding:en=5,disableAnchorTracking:er=!1,keepMounted:ei=!1,floatingRootContext:eo,mounted:el,collisionAvoidance:es,shiftCrossAxis:ea=!1,nodeId:eu,adaptiveOrigin:ec,lazyFlip:ef=!1,externalTree:ed}=e,[eg,em]=t.useState(null);el||null===eg||em(null);let ep=es.side||"flip",eh=es.align||"flip",ev=es.fallbackAxisSide||"end",ey="function"==typeof O?O:void 0,eE=(0,s.useStableCallback)(ey),ex=ey?eE:O,eb=(0,l.useValueAsRef)(O),ew=(0,l.useValueAsRef)(el),eS="rtl"===(0,_.useDirection)(),eR=eg||({top:"top",right:"right",bottom:"bottom",left:"left","inline-end":eS?"left":"right","inline-start":eS?"right":"left"})[U],eT="center"===J?eR:`${eR}-${J}`,eC=ee,eA=+("bottom"===U),eO=+("top"===U),eP=+("right"===U),eL=+("left"===U);"number"==typeof eC?eC={top:eC+eA,right:eC+eL,bottom:eC+eO,left:eC+eP}:eC&&(eC={top:(eC.top||0)+eA,right:(eC.right||0)+eL,bottom:(eC.bottom||0)+eO,left:(eC.left||0)+eP});let eM={boundary:"clipping-ancestors"===Z?"clippingAncestors":Z,padding:eC},ek=t.useRef(null),eD=(0,l.useValueAsRef)(G),eN=(0,l.useValueAsRef)(Q),eI=[(a=e=>{let t=K(e,U,eS),n="function"==typeof eD.current?eD.current(t):eD.current,r="function"==typeof eN.current?eN.current(t):eN.current;return{mainAxis:n,crossAxis:r,alignmentAxis:r}},u=["function"!=typeof G?G:0,"function"!=typeof Q?Q:0,eS,U],void 0===(f=a)&&(f=0),{name:(R={name:"offset",options:f,async fn(e){var t,n;let{x:r,y:i,placement:o,middlewareData:l}=e,s=await m(e,f);return o===(null==(t=l.offset)?void 0:t.placement)&&null!=(n=l.arrow)&&n.alignmentOffset?{}:{x:r+s.x,y:i+s.y,data:{...s,placement:o}}}}).name,fn:R.fn,options:[a,u]})],eF="none"===eh&&"shift"!==ep,eH=!eF&&(et||ea||"shift"===ep),eW="none"===ep?null:{name:(T={name:"flip",options:h=d={...eM,padding:{top:eC.top+1,right:eC.right+1,bottom:eC.bottom+1,left:eC.left+1},mainAxis:!ea&&"flip"===ep,crossAxis:"flip"===eh&&"alignment",fallbackAxisSideDirection:ev},async fn(e){var t,r,i,o,l;let{placement:s,middlewareData:a,rects:u,initialPlacement:c,platform:f,elements:d}=e,{mainAxis:g=!0,crossAxis:m=!0,fallbackPlacements:p,fallbackStrategy:v="bestFit",fallbackAxisSideDirection:y="none",flipAlignment:E=!0,...x}=(0,n.evaluate)(h,e);if(null!=(t=a.arrow)&&t.alignmentOffset)return{};let b=(0,n.getSide)(s),w=(0,n.getSideAxis)(c),S=(0,n.getSide)(c)===c,R=await (null==f.isRTL?void 0:f.isRTL(d.floating)),T=p||(S||!E?[(0,n.getOppositePlacement)(c)]:(0,n.getExpandedPlacements)(c)),C="none"!==y;!p&&C&&T.push(...(0,n.getOppositeAxisPlacements)(c,E,y,R));let A=[c,...T],O=await f.detectOverflow(e,x),P=[],L=(null==(r=a.flip)?void 0:r.overflows)||[];if(g&&P.push(O[b]),m){let e=(0,n.getAlignmentSides)(s,u,R);P.push(O[e[0]],O[e[1]])}if(L=[...L,{placement:s,overflows:P}],!P.every(e=>e<=0)){let e=((null==(i=a.flip)?void 0:i.index)||0)+1,t=A[e];if(t&&("alignment"!==m||w===(0,n.getSideAxis)(t)||L.every(e=>(0,n.getSideAxis)(e.placement)!==w||e.overflows[0]>0)))return{data:{index:e,overflows:L},reset:{placement:t}};let r=null==(o=L.filter(e=>e.overflows[0]<=0).sort((e,t)=>e.overflows[1]-t.overflows[1])[0])?void 0:o.placement;if(!r)switch(v){case"bestFit":{let e=null==(l=L.filter(e=>{if(C){let t=(0,n.getSideAxis)(e.placement);return t===w||"y"===t}return!0}).map(e=>[e.placement,e.overflows.filter(e=>e>0).reduce((e,t)=>e+t,0)]).sort((e,t)=>e[1]-t[1])[0])?void 0:l[0];e&&(r=e);break}case"initialPlacement":r=c}if(s!==r)return{reset:{placement:r}}}return{}}}).name,fn:T.fn,options:[d,void 0]},eV=eF?null:(v=e=>{var t,i;let o=(0,r.ownerDocument)(e.elements.floating).documentElement;return{...eM,rootBoundary:ea?{x:0,y:0,width:o.clientWidth,height:o.clientHeight}:void 0,mainAxis:"none"!==eh,crossAxis:eH,limiter:et||ea?void 0:{fn:(void 0===(i=t=e=>{if(!ek.current)return{};let{width:t,height:r}=ek.current.getBoundingClientRect(),i=(0,n.getSideAxis)((0,n.getSide)(e.placement)),o="y"===i?eC.left+eC.right:eC.top+eC.bottom;return{offset:("y"===i?t:r)/2+o/2}})&&(i={}),{options:i,fn(e){let{x:t,y:r,placement:o,rects:l,middlewareData:s}=e,{offset:a=0,mainAxis:u=!0,crossAxis:c=!0}=(0,n.evaluate)(i,e),f={x:t,y:r},d=(0,n.getSideAxis)(o),m=(0,n.getOppositeAxis)(d),p=f[m],h=f[d],v=(0,n.evaluate)(a,e),y="number"==typeof v?{mainAxis:v,crossAxis:0}:{mainAxis:0,crossAxis:0,...v};if(u){let e="y"===m?"height":"width",t=l.reference[m]-l.floating[e]+y.mainAxis,n=l.reference[m]+l.reference[e]-y.mainAxis;p<t?p=t:p>n&&(p=n)}if(c){var E,x;let e="y"===m?"width":"height",t=g.has((0,n.getSide)(o)),r=l.reference[d]-l.floating[e]+(t&&(null==(E=s.offset)?void 0:E[d])||0)+(t?0:y.crossAxis),i=l.reference[d]+l.reference[e]+(t?0:(null==(x=s.offset)?void 0:x[d])||0)-(t?y.crossAxis:0);h<r?h=r:h>i&&(h=i)}return{[m]:p,[d]:h}}}).fn,options:[t,void 0]}}},y=[eM,et,ea,eC,eh],void 0===(E=v)&&(E={}),{name:(C={name:"shift",options:E,async fn(e){let{x:t,y:r,placement:i,platform:o}=e,{mainAxis:l=!0,crossAxis:s=!1,limiter:a={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...u}=(0,n.evaluate)(E,e),c={x:t,y:r},f=await o.detectOverflow(e,u),d=(0,n.getSideAxis)((0,n.getSide)(i)),g=(0,n.getOppositeAxis)(d),m=c[g],p=c[d];if(l){let e="y"===g?"top":"left",t="y"===g?"bottom":"right",r=m+f[e],i=m-f[t];m=(0,n.clamp)(r,m,i)}if(s){let e="y"===d?"top":"left",t="y"===d?"bottom":"right",r=p+f[e],i=p-f[t];p=(0,n.clamp)(r,p,i)}let h=a.fn({...e,[g]:m,[d]:p});return{...h,data:{x:h.x-t,y:h.y-r,enabled:{[g]:l,[d]:s}}}}}).name,fn:C.fn,options:[v,y]});"shift"===ep||"shift"===eh||"center"===J?eI.push(eV,eW):eI.push(eW,eV),eI.push({name:(A={name:"size",options:b=x={...eM,apply({elements:{floating:e},availableWidth:t,availableHeight:n,rects:r}){if(!ew.current)return;let o=e.style;o.setProperty("--available-width",`${t}px`),o.setProperty("--available-height",`${n}px`);let l=(0,i.ownerWindow)(e).devicePixelRatio||1,{x:s,y:a,width:u,height:c}=r.reference,f=(Math.round((s+u)*l)-Math.round(s*l))/l,d=(Math.round((a+c)*l)-Math.round(a*l))/l;o.setProperty("--anchor-width",`${f}px`),o.setProperty("--anchor-height",`${d}px`)}},async fn(e){var t,r;let i,o,{placement:l,rects:s,platform:a,elements:u}=e,{apply:c=()=>{},...f}=(0,n.evaluate)(b,e),d=await a.detectOverflow(e,f),g=(0,n.getSide)(l),m=(0,n.getAlignment)(l),p="y"===(0,n.getSideAxis)(l),{width:h,height:v}=s.floating;"top"===g||"bottom"===g?(i=g,o=m===(await (null==a.isRTL?void 0:a.isRTL(u.floating))?"start":"end")?"left":"right"):(o=g,i="end"===m?"top":"bottom");let y=v-d.top-d.bottom,E=h-d.left-d.right,x=(0,n.min)(v-d[i],y),w=(0,n.min)(h-d[o],E),S=!e.middlewareData.shift,R=x,T=w;if(null!=(t=e.middlewareData.shift)&&t.enabled.x&&(T=E),null!=(r=e.middlewareData.shift)&&r.enabled.y&&(R=y),S&&!m){let e=(0,n.max)(d.left,0),t=(0,n.max)(d.right,0),r=(0,n.max)(d.top,0),i=(0,n.max)(d.bottom,0);p?T=h-2*(0!==e||0!==t?e+t:(0,n.max)(d.left,d.right)):R=v-2*(0!==r||0!==i?r+i:(0,n.max)(d.top,d.bottom))}await c({...e,availableWidth:T,availableHeight:R});let C=await a.getDimensions(u.floating);return h!==C.width||v!==C.height?{reset:{rects:!0}}:{}}}).name,fn:A.fn,options:[x,void 0]},(w=()=>({element:ek.current||(0,r.ownerDocument)(ek.current).createElement("div"),padding:en,offsetParent:"floating"}),S=[en],{name:"arrow",options:w,async fn(e){let{x:t,y:r,placement:i,rects:o,platform:l,elements:s,middlewareData:a}=e,{element:u,padding:c=0,offsetParent:f="real"}=(0,n.evaluate)(w,e)||{};if(null==u)return{};let d=(0,n.getPaddingObject)(c),g={x:t,y:r},m=(0,n.getAlignmentAxis)(i),p=(0,n.getAxisLength)(m),h=await l.getDimensions(u),v="y"===m,y=v?"clientHeight":"clientWidth",E=o.reference[p]+o.reference[m]-g[m]-o.floating[p],x=g[m]-o.reference[m],b="real"===f?await l.getOffsetParent?.(u):s.floating,S=s.floating[y]||o.floating[p];S&&await l.isElement?.(b)||(S=s.floating[y]||o.floating[p]);let R=S/2-h[p]/2-1,T=Math.min(d[v?"top":"left"],R),C=Math.min(d[v?"bottom":"right"],R),A=S-h[p]-C,O=S/2-h[p]/2+(E/2-x/2),P=(0,n.clamp)(T,O,A),L=!a.arrow&&null!=(0,n.getAlignment)(i)&&O!==P&&o.reference[p]/2-(O<T?T:C)-h[p]/2<0,M=L?O<T?O-T:O-A:0;return{[m]:g[m]+M,data:{[m]:P,centerOffset:O-P-M,...L&&{alignmentOffset:M}},reset:L}},options:[w,S]}),{name:"transformOrigin",fn(e){let{elements:t,middlewareData:r,placement:i,rects:o,y:l}=e,s=(0,n.getSide)(i),a=(0,n.getSideAxis)(s),u=ek.current,c=r.arrow?.x||0,f=r.arrow?.y||0,d=u?.clientWidth||0,g=u?.clientHeight||0,m=c+d/2,p=f+g/2,h=Math.abs(r.shift?.y||0),v=o.reference.height/2,y="function"==typeof G?G(K(e,U,eS)):G,E=h>y,x={top:`${m}px calc(100% + ${y}px)`,bottom:`${m}px ${-y}px`,left:`calc(100% + ${y}px) ${p}px`,right:`${-y}px ${p}px`}[s],b=`${m}px ${o.reference.y+v-l}px`;return t.floating.style.setProperty("--transform-origin",eH&&"y"===a&&E?b:x),{}}},j,ec),(0,o.useIsoLayoutEffect)(()=>{!el&&eo&&eo.update({referenceElement:null,floatingElement:null,domReferenceElement:null,positionReference:null})},[el,eo]);let e$=t.useMemo(()=>({elementResize:!er&&"u">typeof ResizeObserver,layoutShift:!er&&"u">typeof IntersectionObserver}),[er]),{refs:eB,elements:ez,x:e_,y:ej,middlewareData:eY,update:eq,placement:eK,context:eX,isPositioned:eU,floatingStyles:eG}=function(e={}){let{nodeId:n,externalTree:r}=e,i=function(e){let{open:t=!1,onOpenChange:n,elements:r={}}=e,i=(0,V.useId)(),l=null!=(0,W.useFloatingParentNodeId)(),s=(0,$.useRefWithInit)(()=>new B.FloatingRootStore({open:t,transitionStatus:void 0,onOpenChange:n,referenceElement:r.reference??null,floatingElement:r.floating??null,triggerElements:new z.PopupTriggerMap,floatingId:i,syncOnly:!1,nested:l})).current;return(0,o.useIsoLayoutEffect)(()=>{let e={open:t,floatingId:i};void 0!==r.reference&&(e.referenceElement=r.reference,e.domReferenceElement=(0,p.isElement)(r.reference)?r.reference:null),void 0!==r.floating&&(e.floatingElement=r.floating),s.update(e)},[t,i,r.reference,r.floating,s]),s.context.onOpenChange=n,s.context.nested=l,s}(e),l=e.rootContext||i,s={reference:l.useState("referenceElement"),floating:l.useState("floatingElement"),domReference:l.useState("domReferenceElement")},[a,u]=t.useState(null),f=t.useRef(null),d=(0,W.useFloatingTree)(r);(0,o.useIsoLayoutEffect)(()=>{s.domReference&&(f.current=s.domReference)},[s.domReference]);let g=function(e){void 0===e&&(e={});let{placement:n="bottom",strategy:r="absolute",middleware:i=[],platform:o,elements:{reference:l,floating:s}={},transform:a=!0,whileElementsMounted:u,open:f}=e,[d,g]=t.useState({x:0,y:0,strategy:r,placement:n,middlewareData:{},isPositioned:!1}),[m,p]=t.useState(i);N(m,i)||p(i);let[h,v]=t.useState(null),[y,E]=t.useState(null),x=t.useCallback(e=>{e!==R.current&&(R.current=e,v(e))},[]),b=t.useCallback(e=>{e!==T.current&&(T.current=e,E(e))},[]),w=l||h,S=s||y,R=t.useRef(null),T=t.useRef(null),C=t.useRef(d),A=null!=u,O=H(u),L=H(o),M=H(f),W=t.useCallback(()=>{var e,t;let i,o,l;if(!R.current||!T.current)return;let s={placement:n,strategy:r,middleware:m};L.current&&(s.platform=L.current),(e=R.current,t=T.current,i=new Map,l={...(o={platform:P,...s}).platform,_c:i},c(e,t,{...o,platform:l})).then(e=>{let t={...e,isPositioned:!1!==M.current};V.current&&!N(C.current,t)&&(C.current=t,k.flushSync(()=>{g(t)}))})},[m,n,r,L,M]);D(()=>{!1===f&&C.current.isPositioned&&(C.current.isPositioned=!1,g(e=>({...e,isPositioned:!1})))},[f]);let V=t.useRef(!1);D(()=>(V.current=!0,()=>{V.current=!1}),[]),D(()=>{if(w&&(R.current=w),S&&(T.current=S),w&&S){if(O.current)return O.current(w,S,W);W()}},[w,S,W,O,A]);let $=t.useMemo(()=>({reference:R,floating:T,setReference:x,setFloating:b}),[x,b]),B=t.useMemo(()=>({reference:w,floating:S}),[w,S]),z=t.useMemo(()=>{let e={position:r,left:0,top:0};if(!B.floating)return e;let t=F(B.floating,d.x),n=F(B.floating,d.y);return a?{...e,transform:"translate("+t+"px, "+n+"px)",...I(B.floating)>=1.5&&{willChange:"transform"}}:{position:r,left:t,top:n}},[r,a,B.floating,d.x,d.y]);return t.useMemo(()=>({...d,update:W,refs:$,elements:B,floatingStyles:z}),[d,W,$,B,z])}({...e,elements:{...s,...a&&{reference:a}}}),m=t.useCallback(e=>{let t=(0,p.isElement)(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),getClientRects:()=>e.getClientRects(),contextElement:e}:e;u(t),g.refs.setReference(t)},[g.refs]),[h,v]=t.useState(void 0),[y,E]=t.useState(null);l.useSyncedValue("referenceElement",h??null);let x=(0,p.isElement)(h)?h:null;l.useSyncedValue("domReferenceElement",void 0===h?s.domReference:x),l.useSyncedValue("floatingElement",y);let b=t.useCallback(e=>{((0,p.isElement)(e)||null===e)&&(f.current=e,v(e)),((0,p.isElement)(g.refs.reference.current)||null===g.refs.reference.current||null!==e&&!(0,p.isElement)(e))&&g.refs.setReference(e)},[g.refs,v]),w=t.useCallback(e=>{E(e),g.refs.setFloating(e)},[g.refs]),S=t.useMemo(()=>({...g.refs,setReference:b,setFloating:w,setPositionReference:m,domReference:f}),[g.refs,b,w,m]),R=t.useMemo(()=>({...g.elements,domReference:s.domReference}),[g.elements,s.domReference]),T=l.useState("open"),C=l.useState("floatingId"),A=t.useMemo(()=>({...g,dataRef:l.context.dataRef,open:T,onOpenChange:l.setOpen,events:l.context.events,floatingId:C,refs:S,elements:R,nodeId:n,rootStore:l}),[g,S,R,n,l,T,C]);return(0,o.useIsoLayoutEffect)(()=>{l.context.dataRef.current.floatingContext=A;let e=d?.nodesRef.current.find(e=>e.id===n);e&&(e.context=A)}),t.useMemo(()=>({...g,context:A,refs:S,elements:R,rootStore:l}),[g,S,R,A,l])}({rootContext:eo,open:ei?el:void 0,placement:eT,middleware:eI,strategy:L,whileElementsMounted:ei?void 0:(...e)=>M(...e,e$),nodeId:eu,externalTree:ed}),{sideX:eJ,sideY:eQ}=eY.adaptiveOrigin||Y,eZ=eU?L:"fixed",e0=t.useMemo(()=>{let e=ec?{position:eZ,[eJ]:e_,[eQ]:ej}:{position:eZ,...eG};return eU||(e.opacity=0),e},[ec,eZ,eJ,e_,eQ,ej,eG,eU]),e1=t.useRef(null);(0,o.useIsoLayoutEffect)(()=>{if(!el)return;let e=eb.current,t="function"==typeof e?e():e,n=(X(t)?t.current:t)||null;n!==e1.current&&(eB.setPositionReference(n),e1.current=n)},[el,eB,ex,eb]),t.useEffect(()=>{if(!el)return;let e=eb.current;"function"!=typeof e&&X(e)&&e.current!==e1.current&&(eB.setPositionReference(e.current),e1.current=e.current)},[el,eB,ex,eb]),t.useEffect(()=>{if(ei&&el&&ez.domReference&&ez.floating)return M(ez.domReference,ez.floating,eq,e$)},[ei,el,ez,eq,e$]);let e2=(0,n.getSide)(eK),e5=q(U,e2,eS),e6=(0,n.getAlignment)(eK)||"center",e4=!!eY.hide?.referenceHidden;(0,o.useIsoLayoutEffect)(()=>{ef&&el&&eU&&em(e2)},[ef,el,eU,e2]);let e9=t.useMemo(()=>({position:"absolute",top:eY.arrow?.y,left:eY.arrow?.x}),[eY.arrow]),e7=eY.arrow?.centerOffset!==0;return t.useMemo(()=>({positionerStyles:e0,arrowStyles:e9,arrowRef:ek,arrowUncentered:e7,side:e5,align:e6,physicalSide:e2,anchorHidden:e4,refs:eB,context:eX,isPositioned:eU,update:eq}),[e0,e9,ek,e7,e5,e6,e2,e4,eB,eX,eU,eq])}],576557)},328657,e=>{"use strict";var t=e.i(863728),n=e.i(576487);e.s(["getDisabledMountTransitionStyles",0,function(e){return"starting"===e?n.DISABLED_TRANSITIONS_STYLE:t.EMPTY_OBJECT}])},263635,e=>{"use strict";var t=e.i(817955),n=e.i(969490),r=e.i(328657);e.s(["usePositioner",0,function(e,i,{styles:o,transitionStatus:l,props:s,refs:a,hidden:u,inert:c=!1}){let f={...o};return c&&(f.pointerEvents="none"),(0,n.useRenderElement)("div",e,{state:i,ref:a,props:[{role:"presentation",hidden:u,style:f},(0,r.getDisabledMountTransitionStyles)(l),s],stateAttributesMapping:t.popupStateMapping})}])},795914,e=>{"use strict";var t=e.i(764556),n=e.i(92615),r=e.i(422561),i=e.i(516366),o=e.i(29905),l=e.i(277642),s=e.i(232449),a=e.i(526850),u=e.i(410421),c=e.i(922970),f=e.i(404196),d=e.i(602453),g=e.i(742665),m=e.i(389124),p=e.i(84076),h=e.i(49863);e.s(["useHoverFloatingInteraction",0,function(e,v={}){let y="rootStore"in e?e.rootStore:e,E=y.useState("open"),x=y.useState("floatingElement"),b=y.useState("domReferenceElement"),{dataRef:w}=y.context,{enabled:S=!0,closeDelay:R=0,nodeId:T}=v,C=(0,p.useHoverInteractionSharedState)(y),A=(0,m.useFloatingTree)(),O=(0,m.useFloatingParentNodeId)(),P=(0,o.useStableCallback)(()=>(0,h.isClickLikeOpenEvent)(w.current.openEvent?.type,C.interactedInside)),L=(0,o.useStableCallback)(()=>{let e=w.current.openEvent?.type;return e?.includes("mouse")&&"mousedown"!==e}),M=(0,o.useStableCallback)(e=>(0,c.isTargetInsideEnabledTrigger)(e,y.context.triggerElements)),k=t.useCallback(e=>{let t=(0,h.getDelay)(R,"close",C.pointerType),n=()=>{y.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,e)),A?.events.emit("floating.closed",e)};t?C.openChangeTimeout.start(t,n):(C.openChangeTimeout.clear(),n())},[R,y,C,A]),D=(0,o.useStableCallback)(()=>{(0,p.clearSafePolygonPointerEventsMutation)(C)}),N=(0,o.useStableCallback)(e=>{let t=(0,u.getTarget)(e);if(!(0,c.isInteractiveElement)(t)){C.interactedInside=!1;return}C.interactedInside=t?.closest("[aria-haspopup]")!=null});(0,l.useIsoLayoutEffect)(()=>{E||(C.pointerType=void 0,C.restTimeoutPending=!1,C.interactedInside=!1,D())},[E,C,D]),t.useEffect(()=>D,[D]),(0,l.useIsoLayoutEffect)(()=>{if(S&&E&&C.handleCloseOptions?.blockPointerEvents&&L()&&(0,n.isElement)(b)&&x){let e=(0,a.ownerDocument)(x),t=A?.nodesRef.current.find(e=>e.id===O)?.context?.elements.floating;t&&(t.style.pointerEvents="");let n=C.handleCloseOptions?.getScope?.()??C.pointerEventsScopeElement??t??b.closest("[data-rootownerid]")??e.body;return(0,p.applySafePolygonPointerEventsMutation)(C,{scopeElement:n,referenceElement:b,floatingElement:x}),()=>{D()}}},[S,E,b,x,C,L,A,O,D]);let I=(0,s.useTimeout)();t.useEffect(()=>{if(S)return(0,i.mergeCleanups)(x&&(0,r.addEventListener)(x,"mouseenter",function(){C.openChangeTimeout.clear(),I.clear(),A?.events.off("floating.closed",e),D()}),x&&(0,r.addEventListener)(x,"mouseleave",function(t){if(A&&O&&(0,f.getNodeChildren)(A.nodesRef.current,O).length>0)return void A.events.on("floating.closed",e);if(M(t.relatedTarget))return;let r=w.current.floatingContext?.nodeId??T,i=t.relatedTarget;if(!(A&&r&&(0,n.isElement)(i)&&(0,f.getNodeChildren)(A.nodesRef.current,r,!1).some(e=>(0,u.contains)(e.context?.elements.floating,i)))){if(C.handler)return void C.handler(t);D(),P()||k(t)}}),x&&(0,r.addEventListener)(x,"pointerdown",N,!0),()=>{A?.events.off("floating.closed",e)});function e(t){A&&O&&!((0,f.getNodeChildren)(A.nodesRef.current,O).length>0)&&I.start(0,()=>{A.events.off("floating.closed",e),y.setOpen(!1,(0,d.createChangeEventDetails)(g.REASONS.triggerHover,t)),A.events.emit("floating.closed",t)})}},[S,x,y,w,T,P,M,k,D,N,C,A,O,I])}])},3310,730774,e=>{"use strict";var t=e.i(764556),n=e.i(106206),r=e.i(677822),i=e.i(859092),o=e.i(277642),l=e.i(29905),s=e.i(526850),a=e.i(427708),u=e.i(863728),c=e.i(641645),f=e.i(92615);function d(e){let t=(0,f.getComputedStyle)(e),n=parseFloat(t.width)||0,r=parseFloat(t.height)||0,i=(0,f.isHTMLElement)(e),o=i?e.offsetWidth:n,l=i?e.offsetHeight:r;return((0,c.round)(n)!==o||(0,c.round)(r)!==l)&&(n=o,r=l),{width:n,height:r}}e.s(["getCssDimensions",0,d],730774);let g=()=>!0;function m(e,t,n){let r=e.style.getPropertyValue(t);return e.style.setProperty(t,n),()=>{e.style.setProperty(t,r)}}function p(e,t){let n=[];for(let[r,i]of Object.entries(t))n.push(m(e,r,i));return n.length?()=>{n.forEach(e=>e())}:u.NOOP}function h(e,t){let n="auto"===t?"auto":`${t.width}px`,r="auto"===t?"auto":`${t.height}px`;e.style.setProperty("--popup-width",n),e.style.setProperty("--popup-height",r)}function v(e,t){let n="max-content"===t?"max-content":`${t.width}px`,r="max-content"===t?"max-content":`${t.height}px`;e.style.setProperty("--positioner-width",n),e.style.setProperty("--positioner-height",r)}var y=e.i(189131),E=e.i(344180);e.s(["usePopupViewport",0,function(e){let c,{store:f,side:x,cssVars:b,children:w}=e,S=(0,y.useDirection)(),R=f.useState("activeTriggerElement"),T=f.useState("activeTriggerId"),C=f.useState("open"),A=f.useState("payload"),O=f.useState("mounted"),P=f.useState("popupElement"),L=f.useState("positionerElement"),M=function(e){let[n,r]=t.useState({current:e,previous:null});return e!==n.current&&r({current:e,previous:n.current}),n.previous}(C?R:null),k=function(e,n){let[r,i]=t.useState(0),l=t.useRef(e),s=t.useRef(n),a=t.useRef(!1);return(0,o.useIsoLayoutEffect)(()=>{let t=l.current,r=n!==s.current;e!==t?(i(e=>e+1),a.current=!r):a.current&&r&&(i(e=>e+1),a.current=!1),l.current=e,s.current=n},[e,n]),`${e??"current"}-${r}`}(T,A),D=t.useRef(null),[N,I]=t.useState(null),[F,H]=t.useState(null),W=t.useRef(null),V=t.useRef(null),$=(0,a.useAnimationsFinished)(W,!0,!1),B=(0,i.useAnimationFrame)(),[z,_]=t.useState(null),[j,Y]=t.useState(!1);(0,o.useIsoLayoutEffect)(()=>(f.set("hasViewport",!0),()=>{f.set("hasViewport",!1)}),[f]);let q=(0,l.useStableCallback)(()=>{W.current?.style.setProperty("animation","none"),W.current?.style.setProperty("transition","none"),V.current?.style.setProperty("display","none")}),K=(0,l.useStableCallback)(e=>{W.current?.style.removeProperty("animation"),W.current?.style.removeProperty("transition"),V.current?.style.removeProperty("display"),e&&_(e)}),X=t.useRef(null);(0,o.useIsoLayoutEffect)(()=>{var e,t;let r,i,o,l;R&&M&&R!==M&&X.current!==R&&D.current&&(I(D.current),Y(!0),H((e=M,t=R,r=e.getBoundingClientRect(),i=t.getBoundingClientRect(),o={x:r.left+r.width/2,y:r.top+r.height/2},{horizontal:(l={x:i.left+i.width/2,y:i.top+i.height/2}).x-o.x,vertical:l.y-o.y})),B.request(()=>{n.flushSync(()=>{Y(!1)}),$(()=>{I(null),_(null),D.current=null})}),X.current=R)},[R,M,N,$,B]),(0,o.useIsoLayoutEffect)(()=>{let e=W.current;if(!e)return;let t=(0,s.ownerDocument)(e).createElement("div");for(let n of Array.from(e.childNodes))t.appendChild(n.cloneNode(!0));D.current=t});let U=null!=N;return c=U?(0,E.jsxs)(t.Fragment,{children:[(0,E.jsx)("div",{"data-previous":!0,inert:(0,r.inertValue)(!0),ref:V,style:{...z?{[b.popupWidth]:`${z.width}px`,[b.popupHeight]:`${z.height}px`}:null,position:"absolute"},"data-ending-style":j?void 0:""},"previous"),(0,E.jsx)("div",{"data-current":!0,ref:W,"data-starting-style":j?"":void 0,children:w},k)]}):(0,E.jsx)("div",{"data-current":!0,ref:W,children:w},k),(0,o.useIsoLayoutEffect)(()=>{let e=V.current;e&&N&&e.replaceChildren(...Array.from(N.childNodes))},[N]),!function(e){let{popupElement:n,positionerElement:r,content:s,mounted:c,enabled:f=g,onMeasureLayout:y,onMeasureLayoutComplete:E,side:x,direction:b}=e,w=(0,a.useAnimationsFinished)(n,!0,!1),S=(0,i.useAnimationFrame)(),R=t.useRef(null),T=t.useRef(null),C=t.useRef(!0),A=t.useRef(u.NOOP),O=(0,l.useStableCallback)(y),P=(0,l.useStableCallback)(E),L=t.useMemo(()=>{let e="top"===x,t="left"===x;return"rtl"===b?(e=e||"inline-end"===x,t=t||"inline-end"===x):(e=e||"inline-start"===x,t=t||"inline-start"===x),e?{position:"absolute",["top"===x?"bottom":"top"]:"0",[t?"right":"left"]:"0"}:u.EMPTY_OBJECT},[x,b]);(0,o.useIsoLayoutEffect)(()=>{if(!c||!f()||"function"!=typeof ResizeObserver){A.current=u.NOOP,C.current=!0,R.current=null,T.current=null;return}if(!n||!r)return;A.current=p(n,L);let e=new ResizeObserver(e=>{let t=e[0];t&&(T.current={width:Math.ceil(t.borderBoxSize[0].inlineSize),height:Math.ceil(t.borderBoxSize[0].blockSize)})});e.observe(n),h(n,"auto");let t=m(n,"position","static"),i=m(n,"transform","none"),o=m(n,"scale","1"),l=p(r,{"--available-width":"max-content","--available-height":"max-content"});function s(){t(),i(),l(),o()}if(O?.(),C.current||null===R.current){v(r,"max-content");let t=d(n);return R.current=t,v(r,t),s(),P?.(null,t),C.current=!1,()=>{e.disconnect(),A.current(),A.current=u.NOOP}}h(n,"auto"),v(r,"max-content");let a=R.current??T.current,g=d(n);if(R.current=g,!a)return v(r,g),s(),P?.(null,g),()=>{e.disconnect(),S.cancel(),A.current(),A.current=u.NOOP};h(n,a),s(),P?.(a,g),v(r,g);let y=new AbortController;return S.request(()=>{h(n,g),w(()=>{n.style.setProperty("--popup-width","auto"),n.style.setProperty("--popup-height","auto")},y.signal)}),()=>{e.disconnect(),y.abort(),S.cancel(),A.current(),A.current=u.NOOP}},[s,n,r,w,S,f,c,O,P,L])}({popupElement:P,positionerElement:L,mounted:O,content:A,onMeasureLayout:q,onMeasureLayoutComplete:K,side:x,direction:S}),{children:c,state:{activationDirection:function(e){if(e){var t,n;return`${(t=e.horizontal)>5?"right":t<-5?"left":""} ${(n=e.vertical)>5?"down":n<-5?"up":""}`}}(F),transitioning:U}}}],3310)},971109,e=>{"use strict";var t=e.i(267805),n=e.i(764556);let r=n.createContext(void 0);e.s(["useToolbarRootContext",0,function(e){let i=n.useContext(r);if(void 0===i&&!e)throw Error((0,t.default)(69));return i}])},900587,e=>{"use strict";var t=e.i(764556),n=e.i(526850),r=e.i(993351),i=e.i(277642);e.s(["useAnchoredPopupScrollLock",0,function(e,o,l,s){let[a,u]=t.useState(!1);(0,i.useIsoLayoutEffect)(()=>{if(!e||!o||null==l)return void u(!1);let t=(0,n.ownerDocument)(l).documentElement.clientWidth,r=l.offsetWidth;u(t>0&&r>0&&r>=t-20)},[e,o,l]),(0,r.useScrollLock)(e&&(!o||a),s)}])},660079,e=>{"use strict";var t=e.i(764556),n=e.i(106206),r=e.i(29905),i=e.i(410421),o=e.i(878984),l=e.i(602453),s=e.i(742665);e.s(["useTriggerFocusGuards",0,function(e,a){let u=t.useRef(null),c=(0,r.useStableCallback)(t=>{n.flushSync(()=>{e.setOpen(!1,(0,l.createChangeEventDetails)(s.REASONS.focusOut,t.nativeEvent,t.currentTarget))});let r=(0,o.getTabbableBeforeElement)(u.current);r?.focus()});return{preFocusGuardRef:u,handlePreFocusGuardFocus:c,handleFocusTargetFocus:(0,r.useStableCallback)(t=>{let r=e.select("positionerElement");if(r&&(0,o.isOutsideEvent)(t,r))e.context.beforeContentFocusGuardRef.current?.focus();else{n.flushSync(()=>{e.setOpen(!1,(0,l.createChangeEventDetails)(s.REASONS.focusOut,t.nativeEvent,t.currentTarget))});let u=(0,o.getTabbableAfterElement)(e.context.triggerFocusTargetRef.current||a.current);for(;null!==u&&(0,i.contains)(r,u);){let e=u;if((u=(0,o.getNextTabbable)(u))===e)break}u?.focus()}})}}])},932031,e=>{"use strict";var t=e.i(942917);e.s(["ChevronRightIcon",()=>t.default])},558680,e=>{"use strict";let t=(0,e.i(433721).default)("chevron-down",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);e.s(["default",0,t])}]);
@@ -1 +1 @@
1
- (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,{otherChunks:["static/chunks/0pep4mkvt3.rh.js","static/chunks/031c~uxc3ie87.js","static/chunks/0h256h-tu4e0r.js","static/chunks/0202ia13sijwb.js","static/chunks/0gyede80jpy3n.js"],runtimeModuleIds:[933412]}]),(()=>{let e;if(!Array.isArray(globalThis.TURBOPACK))return;let t="/_next/",r=function(){if(null!=self.TURBOPACK_ASSET_SUFFIX)return self.TURBOPACK_ASSET_SUFFIX;let e=document?.currentScript?.getAttribute?.("src")??"",t=e.indexOf("?");return t>=0?e.slice(t):""}(),n=["NEXT_DEPLOYMENT_ID","NEXT_CLIENT_ASSET_SUFFIX"];var o,i=((o=i||{})[o.Runtime=0]="Runtime",o[o.Parent=1]="Parent",o[o.Update=2]="Update",o);let l=new WeakMap;function s(e,t){this.m=e,this.e=t}let u=s.prototype,a=Object.prototype.hasOwnProperty,c="u">typeof Symbol&&Symbol.toStringTag;function f(e,t,r){a.call(e,t)||Object.defineProperty(e,t,r)}function p(e,t){let r=e[t];return r||(r=h(t),e[t]=r),r}function h(e){return{exports:{},error:void 0,id:e,namespaceObject:void 0}}function d(e,t){f(e,"__esModule",{value:!0}),c&&f(e,c,{value:"Module"});let r=0;for(;r<t.length;){let n=t[r++],o=t[r++];if("number"==typeof o)if(0===o)f(e,n,{value:t[r++],enumerable:!0,writable:!1});else throw Error(`unexpected tag: ${o}`);else"function"==typeof t[r]?f(e,n,{get:o,set:t[r++],enumerable:!0}):f(e,n,{get:o,enumerable:!0})}Object.seal(e)}function m(e,t){(null!=t?p(this.c,t):this.m).exports=e}u.s=function(e,t){let r,n;null!=t?n=(r=p(this.c,t)).exports:(r=this.m,n=this.e),r.namespaceObject=n,d(n,e)},u.j=function(e,t){var r,n;let o,i,s;null!=t?i=(o=p(this.c,t)).exports:(o=this.m,i=this.e);let u=(r=o,n=i,(s=l.get(r))||(l.set(r,s=[]),r.exports=r.namespaceObject=new Proxy(n,{get(e,t){if(a.call(e,t)||"default"===t||"__esModule"===t)return Reflect.get(e,t);for(let e of s){let r=Reflect.get(e,t);if(void 0!==r)return r}},ownKeys(e){let t=Reflect.ownKeys(e);for(let e of s)for(let r of Reflect.ownKeys(e))"default"===r||t.includes(r)||t.push(r);return t}})),s);"object"==typeof e&&null!==e&&u.push(e)},u.v=m,u.n=function(e,t){let r;(r=null!=t?p(this.c,t):this.m).exports=r.namespaceObject=e};let b=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,y=[null,b({}),b([]),b(b)];function g(e,t,r){let n=[],o=-1;for(let t=e;("object"==typeof t||"function"==typeof t)&&!y.includes(t);t=b(t))for(let r of Object.getOwnPropertyNames(t))n.push(r,function(e,t){return()=>e[t]}(e,r)),-1===o&&"default"===r&&(o=n.length-1);return r&&o>=0||(o>=0?n.splice(o,1,0,e):n.push("default",0,e)),d(t,n),t}function O(e){let t=B(e,this.m);if(t.namespaceObject)return t.namespaceObject;let r=t.exports;return t.namespaceObject=g(r,"function"==typeof r?function(...e){return r.apply(this,e)}:Object.create(null),r&&r.__esModule)}function w(e){let t=e.indexOf("#");-1!==t&&(e=e.substring(0,t));let r=e.indexOf("?");return -1!==r&&(e=e.substring(0,r)),e}function j(){let e,t;return{promise:new Promise((r,n)=>{t=n,e=r}),resolve:e,reject:t}}u.i=O,u.A=function(e){return this.r(e)(O.bind(this))},u.t="function"==typeof require?require:function(){throw Error("Unexpected use of runtime require")},u.r=function(e){return B(e,this.m).exports},u.f=function(e){function t(t){if(t=w(t),a.call(e,t))return e[t].module();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r}return t.keys=()=>Object.keys(e),t.resolve=t=>{if(t=w(t),a.call(e,t))return e[t].id();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r},t.import=async e=>await t(e),t};let k=Symbol("turbopack queues"),U=Symbol("turbopack exports"),v=Symbol("turbopack error");function C(e){e&&1!==e.status&&(e.status=1,e.forEach(e=>e.queueCount--),e.forEach(e=>e.queueCount--?e.queueCount++:e()))}u.a=function(e,t){let r=this.m,n=t?Object.assign([],{status:-1}):void 0,o=new Set,{resolve:i,reject:l,promise:s}=j(),u=Object.assign(s,{[U]:r.exports,[k]:e=>{n&&e(n),o.forEach(e),u.catch(()=>{})}}),a={get:()=>u,set(e){e!==u&&(u[U]=e)}};Object.defineProperty(r,"exports",a),Object.defineProperty(r,"namespaceObject",a),e(function(e){let t=e.map(e=>{if(null!==e&&"object"==typeof e){if(k in e)return e;if(null!=e&&"object"==typeof e&&"then"in e&&"function"==typeof e.then){let t=Object.assign([],{status:0}),r={[U]:{},[k]:e=>e(t)};return e.then(e=>{r[U]=e,C(t)},e=>{r[v]=e,C(t)}),r}}return{[U]:e,[k]:()=>{}}}),r=()=>t.map(e=>{if(e[v])throw e[v];return e[U]}),{promise:i,resolve:l}=j(),s=Object.assign(()=>l(r),{queueCount:0});function u(e){e!==n&&!o.has(e)&&(o.add(e),e&&0===e.status&&(s.queueCount++,e.push(s)))}return t.map(e=>e[k](u)),s.queueCount?i:r()},function(e){e?l(u[v]=e):i(u[U]),C(n)}),n&&-1===n.status&&(n.status=0)};let P=function(e){let t=new URL(e,"x:/"),r={};for(let e in t)r[e]=t[e];for(let t in r.href=e,r.pathname=e.replace(/[?#].*/,""),r.origin=r.protocol="",r.toString=r.toJSON=(...t)=>e,r)Object.defineProperty(this,t,{enumerable:!0,configurable:!0,value:r[t]})};function R(e,t){throw Error(`Invariant: ${t(e)}`)}P.prototype=URL.prototype,u.U=P,u.z=function(e){throw Error("dynamic usage of require is not supported")},u.g=globalThis;let S=s.prototype,$=new Map;u.M=$;let E=new Map,_=new Map;async function T(e,t,r){let n;if("string"==typeof r)return M(e,t,N(r));let o=r.included||[],i=o.map(e=>!!$.has(e)||E.get(e));if(i.length>0&&i.every(e=>e))return void await Promise.all(i);let l=r.moduleChunks||[],s=l.map(e=>_.get(e)).filter(e=>e);if(s.length>0){if(s.length===l.length)return void await Promise.all(s);let r=new Set;for(let e of l)_.has(e)||r.add(e);for(let n of r){let r=M(e,t,N(n));_.set(n,r),s.push(r)}n=Promise.all(s)}else{for(let o of(n=M(e,t,N(r.path)),l))_.has(o)||_.set(o,n)}for(let e of o)E.has(e)||E.set(e,n);await n}S.l=function(e){return T(i.Parent,this.m.id,e)};let A=Promise.resolve(void 0),x=new WeakMap;function M(t,r,n){let o=e.loadChunkCached(t,n),l=x.get(o);if(void 0===l){let e=x.set.bind(x,o,A);l=o.then(e).catch(e=>{let o;switch(t){case i.Runtime:o=`as a runtime dependency of chunk ${r}`;break;case i.Parent:o=`from module ${r}`;break;case i.Update:o="from an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}let l=Error(`Failed to load chunk ${n} ${o}${e?`: ${e}`:""}`,e?{cause:e}:void 0);throw l.name="ChunkLoadError",l}),x.set(o,l)}return l}function N(e){return`${t}${e.split("/").map(e=>encodeURIComponent(e)).join("/")}${r}`}S.L=function(e){return M(i.Parent,this.m.id,e)},S.R=function(e){let t=this.r(e);return t?.default??t},S.P=function(e){return`/ROOT/${e??""}`},S.q=function(e,t){m.call(this,`${e}${r}`,t)},S.b=function(e,t,o,i){let l="SharedWorker"===e.name,s=[o.map(e=>N(e)).reverse(),r];for(let e of n)s.push(globalThis[e]);let u=new URL(N(t),location.origin),a=JSON.stringify(s);return l?u.searchParams.set("params",a):u.hash="#params="+encodeURIComponent(a),new e(u,i?{...i,type:void 0}:void 0)};let K=/\.js(?:\?[^#]*)?(?:#.*)?$/,q=/\.css(?:\?[^#]*)?(?:#.*)?$/;function L(e){return q.test(e)}u.w=function(t,r,n){return e.loadWebAssembly(i.Parent,this.m.id,t,r,n)},u.u=function(t,r){return e.loadWebAssemblyModule(i.Parent,this.m.id,t,r)};let I={};u.c=I;let B=(e,t)=>{let r=I[e];if(r){if(r.error)throw r.error;return r}return W(e,i.Parent,t.id)};function W(e,t,r){let n=$.get(e);if("function"!=typeof n)throw Error(function(e,t,r){let n;switch(t){case 0:n=`as a runtime entry of chunk ${r}`;break;case 1:n=`because it was required from module ${r}`;break;case 2:n="because of an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}return`Module ${e} was instantiated ${n}, but the module factory is not available.`}(e,t,r));let o=h(e),i=o.exports;I[e]=o;let l=new s(o,i);try{n(l,o,i)}catch(e){throw o.error=e,e}return o.namespaceObject&&o.exports!==o.namespaceObject&&g(o.exports,o.namespaceObject),o}function F(t){let r,n=function(e){if("string"==typeof e)return e;if(e)return{src:e.getAttribute("src")};if("u">typeof TURBOPACK_NEXT_CHUNK_URLS)return{src:TURBOPACK_NEXT_CHUNK_URLS.pop()};throw Error("chunk path empty but not in a worker")}(t[0]);return 2===t.length?r=t[1]:(r=void 0,!function(e,t){let r=1;for(;r<e.length;){let n,o=r+1;for(;o<e.length&&"function"!=typeof e[o];)o++;if(o===e.length)throw Error("malformed chunk format, expected a factory function");let i=e[o];for(let i=r;i<o;i++){let r=e[i],o=t.get(r);if(o){n=o;break}}let l=n??i,s=!1;for(let n=r;n<o;n++){let r=e[n];t.has(r)||(s||(l===i&&Object.defineProperty(i,"name",{value:"module evaluation"}),s=!0),t.set(r,l))}r=o+1}}(t,$)),e.registerChunk(n,r)}let X=new Map;function D(e){let t=X.get(e);if(!t){let r,n;t={resolved:!1,loadingStarted:!1,promise:new Promise((e,t)=>{r=e,n=t}),resolve:()=>{t.resolved=!0,r()},reject:n},X.set(e,t)}return t}e={async registerChunk(e,r){let n=function(e){if("string"==typeof e)return e;let r=decodeURIComponent(e.src.replace(/[?#].*$/,""));return r.startsWith(t)?r.slice(t.length):r}(e);if(D("string"==typeof e?N(e):e.src).resolve(),null!=r){for(let e of r.otherChunks)D(N("string"==typeof e?e:e.path));if(await Promise.all(r.otherChunks.map(e=>T(i.Runtime,n,e))),r.runtimeModuleIds.length>0)for(let e of r.runtimeModuleIds)!function(e,t){let r=I[t];if(r){if(r.error)throw r.error;return}W(t,i.Runtime,e)}(n,e)}},loadChunkCached:(e,t)=>(function(e,t){let r=D(t);if(r.loadingStarted)return r.promise;if(e===i.Runtime)return r.loadingStarted=!0,L(t)&&r.resolve(),r.promise;if("function"==typeof importScripts)if(L(t));else if(K.test(t))self.TURBOPACK_NEXT_CHUNK_URLS.push(t),importScripts(t);else throw Error(`can't infer type of chunk from URL ${t} in worker`);else{let e=decodeURI(t);if(L(t))if(document.querySelectorAll(`link[rel=stylesheet][href="${t}"],link[rel=stylesheet][href^="${t}?"],link[rel=stylesheet][href="${e}"],link[rel=stylesheet][href^="${e}?"]`).length>0)r.resolve();else{let e=document.createElement("link");e.rel="stylesheet",e.href=t,e.onerror=()=>{r.reject()},e.onload=()=>{r.resolve()},document.head.appendChild(e)}else if(K.test(t)){let n=document.querySelectorAll(`script[src="${t}"],script[src^="${t}?"],script[src="${e}"],script[src^="${e}?"]`);if(n.length>0)for(let e of Array.from(n))e.addEventListener("error",()=>{r.reject()});else{let e=document.createElement("script");e.src=t,e.onerror=()=>{r.reject()},document.head.appendChild(e)}}else throw Error(`can't infer type of chunk from URL ${t}`)}return r.loadingStarted=!0,r.promise})(e,t),async loadWebAssembly(e,t,r,n,o){let i=fetch(N(r)),{instance:l}=await WebAssembly.instantiateStreaming(i,o);return l.exports},async loadWebAssemblyModule(e,t,r,n){let o=fetch(N(r));return await WebAssembly.compileStreaming(o)}};let H=globalThis.TURBOPACK;globalThis.TURBOPACK={push:F},H.forEach(F)})();
1
+ (globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,{otherChunks:["static/chunks/00amm3dvu3po9.js","static/chunks/031c~uxc3ie87.js","static/chunks/0h256h-tu4e0r.js","static/chunks/0202ia13sijwb.js","static/chunks/0gyede80jpy3n.js"],runtimeModuleIds:[933412]}]),(()=>{let e;if(!Array.isArray(globalThis.TURBOPACK))return;let t="/_next/",r=function(){if(null!=self.TURBOPACK_ASSET_SUFFIX)return self.TURBOPACK_ASSET_SUFFIX;let e=document?.currentScript?.getAttribute?.("src")??"",t=e.indexOf("?");return t>=0?e.slice(t):""}(),n=["NEXT_DEPLOYMENT_ID","NEXT_CLIENT_ASSET_SUFFIX"];var o,i=((o=i||{})[o.Runtime=0]="Runtime",o[o.Parent=1]="Parent",o[o.Update=2]="Update",o);let l=new WeakMap;function s(e,t){this.m=e,this.e=t}let u=s.prototype,a=Object.prototype.hasOwnProperty,c="u">typeof Symbol&&Symbol.toStringTag;function f(e,t,r){a.call(e,t)||Object.defineProperty(e,t,r)}function p(e,t){let r=e[t];return r||(r=h(t),e[t]=r),r}function h(e){return{exports:{},error:void 0,id:e,namespaceObject:void 0}}function d(e,t){f(e,"__esModule",{value:!0}),c&&f(e,c,{value:"Module"});let r=0;for(;r<t.length;){let n=t[r++],o=t[r++];if("number"==typeof o)if(0===o)f(e,n,{value:t[r++],enumerable:!0,writable:!1});else throw Error(`unexpected tag: ${o}`);else"function"==typeof t[r]?f(e,n,{get:o,set:t[r++],enumerable:!0}):f(e,n,{get:o,enumerable:!0})}Object.seal(e)}function m(e,t){(null!=t?p(this.c,t):this.m).exports=e}u.s=function(e,t){let r,n;null!=t?n=(r=p(this.c,t)).exports:(r=this.m,n=this.e),r.namespaceObject=n,d(n,e)},u.j=function(e,t){var r,n;let o,i,s;null!=t?i=(o=p(this.c,t)).exports:(o=this.m,i=this.e);let u=(r=o,n=i,(s=l.get(r))||(l.set(r,s=[]),r.exports=r.namespaceObject=new Proxy(n,{get(e,t){if(a.call(e,t)||"default"===t||"__esModule"===t)return Reflect.get(e,t);for(let e of s){let r=Reflect.get(e,t);if(void 0!==r)return r}},ownKeys(e){let t=Reflect.ownKeys(e);for(let e of s)for(let r of Reflect.ownKeys(e))"default"===r||t.includes(r)||t.push(r);return t}})),s);"object"==typeof e&&null!==e&&u.push(e)},u.v=m,u.n=function(e,t){let r;(r=null!=t?p(this.c,t):this.m).exports=r.namespaceObject=e};let b=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,y=[null,b({}),b([]),b(b)];function g(e,t,r){let n=[],o=-1;for(let t=e;("object"==typeof t||"function"==typeof t)&&!y.includes(t);t=b(t))for(let r of Object.getOwnPropertyNames(t))n.push(r,function(e,t){return()=>e[t]}(e,r)),-1===o&&"default"===r&&(o=n.length-1);return r&&o>=0||(o>=0?n.splice(o,1,0,e):n.push("default",0,e)),d(t,n),t}function O(e){let t=B(e,this.m);if(t.namespaceObject)return t.namespaceObject;let r=t.exports;return t.namespaceObject=g(r,"function"==typeof r?function(...e){return r.apply(this,e)}:Object.create(null),r&&r.__esModule)}function w(e){let t=e.indexOf("#");-1!==t&&(e=e.substring(0,t));let r=e.indexOf("?");return -1!==r&&(e=e.substring(0,r)),e}function j(){let e,t;return{promise:new Promise((r,n)=>{t=n,e=r}),resolve:e,reject:t}}u.i=O,u.A=function(e){return this.r(e)(O.bind(this))},u.t="function"==typeof require?require:function(){throw Error("Unexpected use of runtime require")},u.r=function(e){return B(e,this.m).exports},u.f=function(e){function t(t){if(t=w(t),a.call(e,t))return e[t].module();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r}return t.keys=()=>Object.keys(e),t.resolve=t=>{if(t=w(t),a.call(e,t))return e[t].id();let r=Error(`Cannot find module '${t}'`);throw r.code="MODULE_NOT_FOUND",r},t.import=async e=>await t(e),t};let k=Symbol("turbopack queues"),U=Symbol("turbopack exports"),v=Symbol("turbopack error");function C(e){e&&1!==e.status&&(e.status=1,e.forEach(e=>e.queueCount--),e.forEach(e=>e.queueCount--?e.queueCount++:e()))}u.a=function(e,t){let r=this.m,n=t?Object.assign([],{status:-1}):void 0,o=new Set,{resolve:i,reject:l,promise:s}=j(),u=Object.assign(s,{[U]:r.exports,[k]:e=>{n&&e(n),o.forEach(e),u.catch(()=>{})}}),a={get:()=>u,set(e){e!==u&&(u[U]=e)}};Object.defineProperty(r,"exports",a),Object.defineProperty(r,"namespaceObject",a),e(function(e){let t=e.map(e=>{if(null!==e&&"object"==typeof e){if(k in e)return e;if(null!=e&&"object"==typeof e&&"then"in e&&"function"==typeof e.then){let t=Object.assign([],{status:0}),r={[U]:{},[k]:e=>e(t)};return e.then(e=>{r[U]=e,C(t)},e=>{r[v]=e,C(t)}),r}}return{[U]:e,[k]:()=>{}}}),r=()=>t.map(e=>{if(e[v])throw e[v];return e[U]}),{promise:i,resolve:l}=j(),s=Object.assign(()=>l(r),{queueCount:0});function u(e){e!==n&&!o.has(e)&&(o.add(e),e&&0===e.status&&(s.queueCount++,e.push(s)))}return t.map(e=>e[k](u)),s.queueCount?i:r()},function(e){e?l(u[v]=e):i(u[U]),C(n)}),n&&-1===n.status&&(n.status=0)};let P=function(e){let t=new URL(e,"x:/"),r={};for(let e in t)r[e]=t[e];for(let t in r.href=e,r.pathname=e.replace(/[?#].*/,""),r.origin=r.protocol="",r.toString=r.toJSON=(...t)=>e,r)Object.defineProperty(this,t,{enumerable:!0,configurable:!0,value:r[t]})};function R(e,t){throw Error(`Invariant: ${t(e)}`)}P.prototype=URL.prototype,u.U=P,u.z=function(e){throw Error("dynamic usage of require is not supported")},u.g=globalThis;let S=s.prototype,$=new Map;u.M=$;let E=new Map,_=new Map;async function T(e,t,r){let n;if("string"==typeof r)return M(e,t,N(r));let o=r.included||[],i=o.map(e=>!!$.has(e)||E.get(e));if(i.length>0&&i.every(e=>e))return void await Promise.all(i);let l=r.moduleChunks||[],s=l.map(e=>_.get(e)).filter(e=>e);if(s.length>0){if(s.length===l.length)return void await Promise.all(s);let r=new Set;for(let e of l)_.has(e)||r.add(e);for(let n of r){let r=M(e,t,N(n));_.set(n,r),s.push(r)}n=Promise.all(s)}else{for(let o of(n=M(e,t,N(r.path)),l))_.has(o)||_.set(o,n)}for(let e of o)E.has(e)||E.set(e,n);await n}S.l=function(e){return T(i.Parent,this.m.id,e)};let A=Promise.resolve(void 0),x=new WeakMap;function M(t,r,n){let o=e.loadChunkCached(t,n),l=x.get(o);if(void 0===l){let e=x.set.bind(x,o,A);l=o.then(e).catch(e=>{let o;switch(t){case i.Runtime:o=`as a runtime dependency of chunk ${r}`;break;case i.Parent:o=`from module ${r}`;break;case i.Update:o="from an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}let l=Error(`Failed to load chunk ${n} ${o}${e?`: ${e}`:""}`,e?{cause:e}:void 0);throw l.name="ChunkLoadError",l}),x.set(o,l)}return l}function N(e){return`${t}${e.split("/").map(e=>encodeURIComponent(e)).join("/")}${r}`}S.L=function(e){return M(i.Parent,this.m.id,e)},S.R=function(e){let t=this.r(e);return t?.default??t},S.P=function(e){return`/ROOT/${e??""}`},S.q=function(e,t){m.call(this,`${e}${r}`,t)},S.b=function(e,t,o,i){let l="SharedWorker"===e.name,s=[o.map(e=>N(e)).reverse(),r];for(let e of n)s.push(globalThis[e]);let u=new URL(N(t),location.origin),a=JSON.stringify(s);return l?u.searchParams.set("params",a):u.hash="#params="+encodeURIComponent(a),new e(u,i?{...i,type:void 0}:void 0)};let K=/\.js(?:\?[^#]*)?(?:#.*)?$/,q=/\.css(?:\?[^#]*)?(?:#.*)?$/;function L(e){return q.test(e)}u.w=function(t,r,n){return e.loadWebAssembly(i.Parent,this.m.id,t,r,n)},u.u=function(t,r){return e.loadWebAssemblyModule(i.Parent,this.m.id,t,r)};let I={};u.c=I;let B=(e,t)=>{let r=I[e];if(r){if(r.error)throw r.error;return r}return W(e,i.Parent,t.id)};function W(e,t,r){let n=$.get(e);if("function"!=typeof n)throw Error(function(e,t,r){let n;switch(t){case 0:n=`as a runtime entry of chunk ${r}`;break;case 1:n=`because it was required from module ${r}`;break;case 2:n="because of an HMR update";break;default:R(t,e=>`Unknown source type: ${e}`)}return`Module ${e} was instantiated ${n}, but the module factory is not available.`}(e,t,r));let o=h(e),i=o.exports;I[e]=o;let l=new s(o,i);try{n(l,o,i)}catch(e){throw o.error=e,e}return o.namespaceObject&&o.exports!==o.namespaceObject&&g(o.exports,o.namespaceObject),o}function F(t){let r,n=function(e){if("string"==typeof e)return e;if(e)return{src:e.getAttribute("src")};if("u">typeof TURBOPACK_NEXT_CHUNK_URLS)return{src:TURBOPACK_NEXT_CHUNK_URLS.pop()};throw Error("chunk path empty but not in a worker")}(t[0]);return 2===t.length?r=t[1]:(r=void 0,!function(e,t){let r=1;for(;r<e.length;){let n,o=r+1;for(;o<e.length&&"function"!=typeof e[o];)o++;if(o===e.length)throw Error("malformed chunk format, expected a factory function");let i=e[o];for(let i=r;i<o;i++){let r=e[i],o=t.get(r);if(o){n=o;break}}let l=n??i,s=!1;for(let n=r;n<o;n++){let r=e[n];t.has(r)||(s||(l===i&&Object.defineProperty(i,"name",{value:"module evaluation"}),s=!0),t.set(r,l))}r=o+1}}(t,$)),e.registerChunk(n,r)}let X=new Map;function D(e){let t=X.get(e);if(!t){let r,n;t={resolved:!1,loadingStarted:!1,promise:new Promise((e,t)=>{r=e,n=t}),resolve:()=>{t.resolved=!0,r()},reject:n},X.set(e,t)}return t}e={async registerChunk(e,r){let n=function(e){if("string"==typeof e)return e;let r=decodeURIComponent(e.src.replace(/[?#].*$/,""));return r.startsWith(t)?r.slice(t.length):r}(e);if(D("string"==typeof e?N(e):e.src).resolve(),null!=r){for(let e of r.otherChunks)D(N("string"==typeof e?e:e.path));if(await Promise.all(r.otherChunks.map(e=>T(i.Runtime,n,e))),r.runtimeModuleIds.length>0)for(let e of r.runtimeModuleIds)!function(e,t){let r=I[t];if(r){if(r.error)throw r.error;return}W(t,i.Runtime,e)}(n,e)}},loadChunkCached:(e,t)=>(function(e,t){let r=D(t);if(r.loadingStarted)return r.promise;if(e===i.Runtime)return r.loadingStarted=!0,L(t)&&r.resolve(),r.promise;if("function"==typeof importScripts)if(L(t));else if(K.test(t))self.TURBOPACK_NEXT_CHUNK_URLS.push(t),importScripts(t);else throw Error(`can't infer type of chunk from URL ${t} in worker`);else{let e=decodeURI(t);if(L(t))if(document.querySelectorAll(`link[rel=stylesheet][href="${t}"],link[rel=stylesheet][href^="${t}?"],link[rel=stylesheet][href="${e}"],link[rel=stylesheet][href^="${e}?"]`).length>0)r.resolve();else{let e=document.createElement("link");e.rel="stylesheet",e.href=t,e.onerror=()=>{r.reject()},e.onload=()=>{r.resolve()},document.head.appendChild(e)}else if(K.test(t)){let n=document.querySelectorAll(`script[src="${t}"],script[src^="${t}?"],script[src="${e}"],script[src^="${e}?"]`);if(n.length>0)for(let e of Array.from(n))e.addEventListener("error",()=>{r.reject()});else{let e=document.createElement("script");e.src=t,e.onerror=()=>{r.reject()},document.head.appendChild(e)}}else throw Error(`can't infer type of chunk from URL ${t}`)}return r.loadingStarted=!0,r.promise})(e,t),async loadWebAssembly(e,t,r,n,o){let i=fetch(N(r)),{instance:l}=await WebAssembly.instantiateStreaming(i,o);return l.exports},async loadWebAssemblyModule(e,t,r,n){let o=fetch(N(r));return await WebAssembly.compileStreaming(o)}};let H=globalThis.TURBOPACK;globalThis.TURBOPACK={push:F},H.forEach(F)})();
@@ -1,32 +1,36 @@
1
1
  1:"$Sreact.fragment"
2
- 2:I[701341,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"ZoomWrapper"]
3
- 3:I[950396,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"ThemeProvider"]
4
- 4:I[556106,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"LocaleProvider"]
5
- 5:I[694819,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"ViewportInsets"]
6
- 6:I[177053,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"AuthGuard"]
7
- 7:I[994876,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"AppShell"]
8
- 8:I[242864,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"default"]
9
- 9:I[46907,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"default"]
10
- a:I[698679,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"CommandPalette"]
11
- b:I[360112,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"Toaster"]
12
- c:I[984642,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"ConsolePanel"]
13
- 12:I[785502,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"default",1]
2
+ 2:I[701341,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"ZoomWrapper"]
3
+ 3:I[950396,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"ThemeProvider"]
4
+ 4:I[556106,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"LocaleProvider"]
5
+ 5:I[694819,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"ViewportInsets"]
6
+ 6:I[925020,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"TauriFullscreen"]
7
+ 7:I[177053,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"AuthGuard"]
8
+ 8:I[994876,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"AppShell"]
9
+ 9:I[242864,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"default"]
10
+ a:I[46907,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"default"]
11
+ b:I[698679,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"CommandPalette"]
12
+ c:I[360112,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"Toaster"]
13
+ d:I[984642,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"ConsolePanel"]
14
+ e:I[856471,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"IframeLinkInterceptor"]
15
+ f:I[856471,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"IframeFloatingBall"]
16
+ 10:I[856471,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"IframeOverlay"]
17
+ 16:I[785502,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"default",1]
14
18
  :HL["/_next/static/chunks/0-oog4zg4_m~m.css","style"]
15
- :HL["/_next/static/chunks/0.~n0s82y4zh_.css","style"]
16
- 0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0-oog4zg4_m~m.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0.~n0s82y4zh_.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0csqa76ud3h4d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/07bs5ds68tg38.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/02duknlg3rgjp.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0b2tump5duj9j.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0kyv5yika-41a.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/02wkg1tjv~_t2.js","async":true,"nonce":"$undefined"}],["$","script","script-6",{"src":"/_next/static/chunks/002-dxhags4dj.js","async":true,"nonce":"$undefined"}],["$","script","script-7",{"src":"/_next/static/chunks/0n0j7tw_y1qk2.js","async":true,"nonce":"$undefined"}],["$","script","script-8",{"src":"/_next/static/chunks/0jmsjlawtg6oa.js","async":true,"nonce":"$undefined"}],["$","script","script-9",{"src":"/_next/static/chunks/0zxtxecpqyoeh.js","async":true,"nonce":"$undefined"}],["$","script","script-10",{"src":"/_next/static/chunks/0wz8~mvztv-vq.js","async":true,"nonce":"$undefined"}],["$","script","script-11",{"src":"/_next/static/chunks/15_n_khh8cuax.js","async":true,"nonce":"$undefined"}],["$","script","script-12",{"src":"/_next/static/chunks/1250wo~-5dgyx.js","async":true,"nonce":"$undefined"}],["$","script","script-13",{"src":"/_next/static/chunks/03jy~o.gx._e-.js","async":true,"nonce":"$undefined"}],["$","script","script-14",{"src":"/_next/static/chunks/0tkii3.lkbu3u.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"","className":"dm_sans_81a33cc5-module___RQdfW__variable outfit_8334a424-module__TwcMYa__variable poppins_37c4598a-module__JRG3Wq__variable h-dvh overflow-hidden antialiased","suppressHydrationWarning":true,"children":["$","body",null,{"className":"h-full overflow-hidden font-sans","children":["$","$L2",null,{"children":["$","$L3",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{"children":[["$","$L7",null,{"children":["$","$L8",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L9",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$La",null,{}],["$","$Lb",null,{"richColors":true,"position":"bottom-right"}]]}],["$","$Lc",null,{}]]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L8",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L9",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],"$Ld","$Le"]}]}]],null,"$Lf"]}],{},null,false,null]},null,false,"$@10"]},null,false,null],"$L11",false]],"m":"$undefined","G":["$12",["$L13","$L14"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"hGfVPALj5nbwettayL9DY"}
17
- 15:I[990774,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"OutletBoundary"]
18
- 16:"$Sreact.suspense"
19
- 19:I[990774,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"ViewportBoundary"]
20
- 1b:I[990774,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"MetadataBoundary"]
21
- d:["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}]
22
- e:["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]
23
- f:["$","$L15",null,{"children":["$","$16",null,{"name":"Next.MetadataOutlet","children":"$@17"}]}]
24
- 18:[]
25
- 10:"$W18"
26
- 11:["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L19",null,{"children":"$L1a"}],["$","div",null,{"hidden":true,"children":["$","$L1b",null,{"children":["$","$16",null,{"name":"Next.Metadata","children":"$L1c"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
27
- 13:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0-oog4zg4_m~m.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]
28
- 14:["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0.~n0s82y4zh_.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]
29
- 1a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"}]]
30
- 1d:I[946513,["/_next/static/chunks/0csqa76ud3h4d.js","/_next/static/chunks/07bs5ds68tg38.js","/_next/static/chunks/02duknlg3rgjp.js","/_next/static/chunks/0b2tump5duj9j.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/02wkg1tjv~_t2.js","/_next/static/chunks/002-dxhags4dj.js","/_next/static/chunks/0n0j7tw_y1qk2.js","/_next/static/chunks/0jmsjlawtg6oa.js","/_next/static/chunks/0zxtxecpqyoeh.js","/_next/static/chunks/0wz8~mvztv-vq.js","/_next/static/chunks/15_n_khh8cuax.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/03jy~o.gx._e-.js","/_next/static/chunks/0tkii3.lkbu3u.js"],"IconMark"]
31
- 17:null
32
- 1c:[["$","title","0",{"children":"Agent Spaces"}],["$","meta","1",{"name":"description","content":"Multi-agent collaborative coding workspace"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0~ekuj.zhggpa.ico","sizes":"32x32","type":"image/x-icon"}],["$","link","3",{"rel":"icon","href":"/favicon.ico"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-touch-icon.png"}],["$","$L1d","5",{}]]
19
+ :HL["/_next/static/chunks/0os7q6w~-tmg7.css","style"]
20
+ 0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0-oog4zg4_m~m.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0os7q6w~-tmg7.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0fpf.rso9mhc0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0kyv5yika-41a.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/0e~0o6v_awcod.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0egot8y~i-ge3.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0d.v1csiyl.1~.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/0~3uikgc074il.js","async":true,"nonce":"$undefined"}],["$","script","script-6",{"src":"/_next/static/chunks/0xtmr0y4vo-~p.js","async":true,"nonce":"$undefined"}],["$","script","script-7",{"src":"/_next/static/chunks/145gbwitjxamg.js","async":true,"nonce":"$undefined"}],["$","script","script-8",{"src":"/_next/static/chunks/0o6w-uw2p.phy.js","async":true,"nonce":"$undefined"}],["$","script","script-9",{"src":"/_next/static/chunks/11ozf700niy2z.js","async":true,"nonce":"$undefined"}],["$","script","script-10",{"src":"/_next/static/chunks/0w3o.7vi.dlm6.js","async":true,"nonce":"$undefined"}],["$","script","script-11",{"src":"/_next/static/chunks/02unyp1obddyn.js","async":true,"nonce":"$undefined"}],["$","script","script-12",{"src":"/_next/static/chunks/0m1ud--um8kjh.js","async":true,"nonce":"$undefined"}],["$","script","script-13",{"src":"/_next/static/chunks/1250wo~-5dgyx.js","async":true,"nonce":"$undefined"}],["$","script","script-14",{"src":"/_next/static/chunks/0glol5jdarfma.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"","className":"dm_sans_81a33cc5-module___RQdfW__variable outfit_8334a424-module__TwcMYa__variable poppins_37c4598a-module__JRG3Wq__variable h-[var(--app-content-height)] overflow-hidden antialiased","suppressHydrationWarning":true,"children":["$","body",null,{"className":"h-[var(--app-content-height)] overflow-hidden font-sans","children":["$","$L2",null,{"children":["$","$L3",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L4",null,{"children":[["$","$L5",null,{}],["$","$L6",null,{}],["$","$L7",null,{"children":[["$","$L8",null,{"children":["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$Lb",null,{}],["$","$Lc",null,{"richColors":true,"position":"bottom-right"}]]}],["$","$Ld",null,{}],["$","$Le",null,{}],["$","$Lf",null,{}],["$","$L10",null,{}]]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L9",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$La",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:2:props:children:0:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],"$L11","$L12"]}]}]],null,"$L13"]}],{},null,false,null]},null,false,"$@14"]},null,false,null],"$L15",false]],"m":"$undefined","G":["$16",["$L17","$L18"]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"4dBAEZ275uRqcyeaRmXSx"}
21
+ 19:I[990774,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"OutletBoundary"]
22
+ 1a:"$Sreact.suspense"
23
+ 1d:I[990774,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"ViewportBoundary"]
24
+ 1f:I[990774,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"MetadataBoundary"]
25
+ 11:["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:2:props:children:0:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}]
26
+ 12:["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:2:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:2:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]
27
+ 13:["$","$L19",null,{"children":["$","$1a",null,{"name":"Next.MetadataOutlet","children":"$@1b"}]}]
28
+ 1c:[]
29
+ 14:"$W1c"
30
+ 15:["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L1d",null,{"children":"$L1e"}],["$","div",null,{"hidden":true,"children":["$","$L1f",null,{"children":["$","$1a",null,{"name":"Next.Metadata","children":"$L20"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}]
31
+ 17:["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0-oog4zg4_m~m.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]
32
+ 18:["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0os7q6w~-tmg7.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]
33
+ 1e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"}]]
34
+ 21:I[946513,["/_next/static/chunks/0fpf.rso9mhc0.js","/_next/static/chunks/0kyv5yika-41a.js","/_next/static/chunks/0e~0o6v_awcod.js","/_next/static/chunks/0egot8y~i-ge3.js","/_next/static/chunks/0d.v1csiyl.1~.js","/_next/static/chunks/0~3uikgc074il.js","/_next/static/chunks/0xtmr0y4vo-~p.js","/_next/static/chunks/145gbwitjxamg.js","/_next/static/chunks/0o6w-uw2p.phy.js","/_next/static/chunks/11ozf700niy2z.js","/_next/static/chunks/0w3o.7vi.dlm6.js","/_next/static/chunks/02unyp1obddyn.js","/_next/static/chunks/0m1ud--um8kjh.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0glol5jdarfma.js"],"IconMark"]
35
+ 1b:null
36
+ 20:[["$","title","0",{"children":"Agent Spaces"}],["$","meta","1",{"name":"description","content":"Multi-agent collaborative coding workspace"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0~ekuj.zhggpa.ico","sizes":"32x32","type":"image/x-icon"}],["$","link","3",{"rel":"icon","href":"/favicon.ico"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-touch-icon.png"}],["$","$L21","5",{}]]