@hienlh/ppm 0.13.2 → 0.13.4

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 (103) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/assets/skills/ppm/SKILL.md +1 -1
  3. package/assets/skills/ppm/references/http-api.md +1 -1
  4. package/dist/web/assets/{ai-settings-section-QE6nBNgN.js → ai-settings-section-DeW4WN43.js} +1 -1
  5. package/dist/web/assets/{api-settings-DAk7D-NP.js → api-settings-t7Leca7J.js} +1 -1
  6. package/dist/web/assets/architecture-PBZL5I3N-Dy3PgD6O.js +1 -0
  7. package/dist/web/assets/{audio-preview--hRMnXRZ.js → audio-preview-BSAe2WQB.js} +1 -1
  8. package/dist/web/assets/chat-tab-UFEFOnpl.js +12 -0
  9. package/dist/web/assets/code-editor-BJ1tSNWA.js +8 -0
  10. package/dist/web/assets/{conflict-editor-Dlo25nmt.js → conflict-editor-CrgrMZ2F.js} +1 -1
  11. package/dist/web/assets/{csv-preview-HMSavgBb.js → csv-preview-C9qGhDlb.js} +1 -1
  12. package/dist/web/assets/{database-viewer-DcBl6OkV.js → database-viewer-e_NAkIL_.js} +2 -2
  13. package/dist/web/assets/diff-viewer-C2eOczTs.js +4 -0
  14. package/dist/web/assets/{esm-K1XIK4vc.js → esm-B3je8j5P.js} +1 -1
  15. package/dist/web/assets/{extension-webview-D7bGVSEd.js → extension-webview-B95nOfj-.js} +2 -2
  16. package/dist/web/assets/{file-store-BrbCNyLm.js → file-store-BgZggznw.js} +1 -1
  17. package/dist/web/assets/gitGraph-HDMCJU4V-Bu1SIFFq.js +1 -0
  18. package/dist/web/assets/{image-preview-CfkqnhXJ.js → image-preview-DAuPOzYl.js} +1 -1
  19. package/dist/web/assets/index-DJOjXTcq.js +27 -0
  20. package/dist/web/assets/index-DSOP0R0s.css +2 -0
  21. package/dist/web/assets/info-3K5VOQVL-DzfAxmVd.js +1 -0
  22. package/dist/web/assets/{input-Dk49gO8E.js → input-bGJExpJZ.js} +1 -1
  23. package/dist/web/assets/keybindings-store-V12kZZHO.js +1 -0
  24. package/dist/web/assets/{markdown-renderer-DyAm7zuA.js → markdown-renderer-DwINRWo4.js} +3 -3
  25. package/dist/web/assets/packet-RMMSAZCW-DpzHf4xp.js +1 -0
  26. package/dist/web/assets/{pdf-preview-CZPcuy5c.js → pdf-preview-CqoQE09t.js} +1 -1
  27. package/dist/web/assets/pie-UPGHQEXC-BpzFCKJ8.js +1 -0
  28. package/dist/web/assets/{port-forwarding-tab-3RNozlZ5.js → port-forwarding-tab-De7qxkjp.js} +1 -1
  29. package/dist/web/assets/{postgres-viewer-CXJv4TXc.js → postgres-viewer-Dd6rLb8b.js} +3 -3
  30. package/dist/web/assets/radar-KQ55EAFF-DAxWKxM4.js +1 -0
  31. package/dist/web/assets/{scroll-area-BEllam7_.js → scroll-area-D0EQpAH2.js} +1 -1
  32. package/dist/web/assets/{settings-store-BLLR7ed8.js → settings-store-CdcSAgEZ.js} +2 -2
  33. package/dist/web/assets/settings-tab-BdTEumwU.js +1 -0
  34. package/dist/web/assets/{sql-query-editor-CVAnRFbi.js → sql-query-editor-vpD0I0KG.js} +1 -1
  35. package/dist/web/assets/sqlite-viewer-Ccz2crvN.js +1 -0
  36. package/dist/web/assets/{tab-store-B3M9hjho.js → tab-store-Jvy1eZGM.js} +1 -1
  37. package/dist/web/assets/terminal-tab-D7u7wsyb.js +1 -0
  38. package/dist/web/assets/treemap-KZPCXAKY-D6dgXbAe.js +1 -0
  39. package/dist/web/assets/{use-blob-url-e9uTXjv5.js → use-blob-url-BgxxT-n_.js} +1 -1
  40. package/dist/web/assets/{use-monaco-theme-BkZDwoVd.js → use-monaco-theme-dtPsv6sh.js} +1 -1
  41. package/dist/web/assets/{vendor-mermaid-Dx86tuVP.js → vendor-mermaid-DCxaaPi4.js} +2 -2
  42. package/dist/web/assets/{video-preview-Dfz71RGb.js → video-preview-BSDzqlzk.js} +1 -1
  43. package/dist/web/index.html +17 -19
  44. package/dist/web/sw.js +1 -1
  45. package/docs/codebase-summary.md +2 -0
  46. package/docs/journals/2026-04-22-compare-files-feature-ship.md +53 -0
  47. package/docs/project-changelog.md +9 -1
  48. package/package.json +1 -1
  49. package/src/providers/claude-agent-sdk.ts +5 -2
  50. package/src/server/routes/chat.ts +10 -1
  51. package/src/server/ws/chat.ts +29 -2
  52. package/src/services/file-filter.service.ts +17 -4
  53. package/src/services/file-list-index.service.ts +7 -3
  54. package/src/types/chat.ts +1 -1
  55. package/src/types/project.ts +2 -0
  56. package/src/web/app.tsx +4 -0
  57. package/src/web/components/chat/message-list.tsx +6 -5
  58. package/src/web/components/editor/compare-picker.tsx +245 -0
  59. package/src/web/components/explorer/file-tree.tsx +42 -1
  60. package/src/web/components/layout/command-palette.tsx +66 -13
  61. package/src/web/components/layout/draggable-tab.tsx +13 -5
  62. package/src/web/components/layout/tab-bar.tsx +101 -27
  63. package/src/web/hooks/use-chat.ts +6 -0
  64. package/src/web/hooks/use-global-keybindings.ts +20 -0
  65. package/src/web/lib/open-compare-tab.ts +76 -0
  66. package/src/web/lib/score-file-search.ts +41 -21
  67. package/src/web/stores/compare-store.ts +57 -0
  68. package/src/web/stores/keybindings-store.ts +1 -0
  69. package/dist/web/assets/architecture-PBZL5I3N-DvZbltvY.js +0 -1
  70. package/dist/web/assets/chat-tab-4kL3DNxf.js +0 -12
  71. package/dist/web/assets/code-editor-Caq5_BaF.js +0 -8
  72. package/dist/web/assets/columns-2-4fQcE4PF.js +0 -1
  73. package/dist/web/assets/diff-viewer-CCzPq1o-.js +0 -4
  74. package/dist/web/assets/extension-store-3yZYn07W.js +0 -1
  75. package/dist/web/assets/gitGraph-HDMCJU4V-BxhdxFgj.js +0 -1
  76. package/dist/web/assets/index-BGFG66Gh.js +0 -27
  77. package/dist/web/assets/index-Bce0weeW.css +0 -2
  78. package/dist/web/assets/info-3K5VOQVL-BwAZ2zd8.js +0 -1
  79. package/dist/web/assets/keybindings-store-B-zET-0o.js +0 -1
  80. package/dist/web/assets/keybindings-store-DaBV6qhz.js +0 -1
  81. package/dist/web/assets/packet-RMMSAZCW-tx2n5Qry.js +0 -1
  82. package/dist/web/assets/pie-UPGHQEXC-D6S2MqVT.js +0 -1
  83. package/dist/web/assets/radar-KQ55EAFF-BviZcL-b.js +0 -1
  84. package/dist/web/assets/settings-tab-Cnav4g2u.js +0 -1
  85. package/dist/web/assets/sqlite-viewer-C8WUEFhA.js +0 -1
  86. package/dist/web/assets/terminal-tab-CaEsMxp8.js +0 -1
  87. package/dist/web/assets/treemap-KZPCXAKY-CM54VdaB.js +0 -1
  88. /package/dist/web/assets/{api-client-Dvzcc_EO.js → api-client-r4nyVy7H.js} +0 -0
  89. /package/dist/web/assets/{csv-parser--2WJNgS7.js → csv-parser-DxVplKKB.js} +0 -0
  90. /package/dist/web/assets/{database-D4DIhgi-.js → database-DCT0OjgQ.js} +0 -0
  91. /package/dist/web/assets/{dist-im4ynINo.js → dist-BqoEabX7.js} +0 -0
  92. /package/dist/web/assets/{file-exclamation-point-BwzaQ50n.js → file-exclamation-point-Baz81y5z.js} +0 -0
  93. /package/dist/web/assets/{katex-CKoArbIw.js → katex-bpagxk3Z.js} +0 -0
  94. /package/dist/web/assets/{lib-DQHnkzGy.js → lib-BqkcKGFq.js} +0 -0
  95. /package/dist/web/assets/{react-GqWghJ-L.js → react-BkWDCPD7.js} +0 -0
  96. /package/dist/web/assets/{refresh-cw-LlbZDJpO.js → refresh-cw-CSFrDtiu.js} +0 -0
  97. /package/dist/web/assets/{sql-completion-provider-C3cq9j99.js → sql-completion-provider-EzHOQLfo.js} +0 -0
  98. /package/dist/web/assets/{table-Dq575bPF.js → table-DbSviOmw.js} +0 -0
  99. /package/dist/web/assets/{text-wrap-Cn6BNQfq.js → text-wrap-DzvCTq_i.js} +0 -0
  100. /package/dist/web/assets/{trash-2-CJYoLw7Q.js → trash-2-BgDIBl6f.js} +0 -0
  101. /package/dist/web/assets/{utils-CTg5uAYR.js → utils-ChWX7pZv.js} +0 -0
  102. /package/dist/web/assets/{vendor-xterm-CU2c3f0A.js → vendor-xterm-D7SePDJp.js} +0 -0
  103. /package/dist/web/assets/{x-DlFGzN8d.js → x-BtqbfkR7.js} +0 -0
@@ -1,27 +0,0 @@
1
- const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/terminal-tab-CaEsMxp8.js","assets/rolldown-runtime-FhOqtrmT.js","assets/vendor-mermaid-Dx86tuVP.js","assets/vendor-markdown-0Mxgxy0L.js","assets/vendor-xterm-CU2c3f0A.js","assets/vendor-xterm-BrP-ENHg.css","assets/utils-CTg5uAYR.js","assets/settings-store-BLLR7ed8.js","assets/react-GqWghJ-L.js","assets/api-client-Dvzcc_EO.js","assets/chat-tab-4kL3DNxf.js","assets/vendor-ui-B-89Uj8i.js","assets/input-Dk49gO8E.js","assets/createLucideIcon-BjHrJDVb.js","assets/x-DlFGzN8d.js","assets/arrow-up-Dtrfv490.js","assets/ai-settings-section-QE6nBNgN.js","assets/dist-D7KGU7Vl.js","assets/plus-51UQ45rf.js","assets/refresh-cw-LlbZDJpO.js","assets/trash-2-CJYoLw7Q.js","assets/api-settings-DAk7D-NP.js","assets/chevron-right-BzAdxJRG.js","assets/code-CuravVys.js","assets/columns-2-4fQcE4PF.js","assets/file-store-BrbCNyLm.js","assets/tab-store-B3M9hjho.js","assets/code-editor-Caq5_BaF.js","assets/use-monaco-theme-BkZDwoVd.js","assets/scroll-area-BEllam7_.js","assets/database-D4DIhgi-.js","assets/file-exclamation-point-BwzaQ50n.js","assets/table-Dq575bPF.js","assets/text-wrap-Cn6BNQfq.js","assets/sql-completion-provider-C3cq9j99.js","assets/database-viewer-DcBl6OkV.js","assets/sql-query-editor-CVAnRFbi.js","assets/csv-parser--2WJNgS7.js","assets/sqlite-viewer-C8WUEFhA.js","assets/lib-DQHnkzGy.js","assets/postgres-viewer-CXJv4TXc.js","assets/dist-im4ynINo.js","assets/diff-viewer-CCzPq1o-.js","assets/settings-tab-Cnav4g2u.js","assets/extension-store-3yZYn07W.js","assets/keybindings-store-B-zET-0o.js","assets/port-forwarding-tab-3RNozlZ5.js","assets/extension-webview-D7bGVSEd.js","assets/conflict-editor-Dlo25nmt.js","assets/keybindings-store-DaBV6qhz.js"])))=>i.map(i=>d[i]);
2
- import{o as e,t}from"./rolldown-runtime-FhOqtrmT.js";import{b as n,x as r}from"./vendor-markdown-0Mxgxy0L.js";import{A as i,B as a,F as o,H as s,I as c,L as l,M as u,N as d,O as f,P as p,R as m,U as h,V as g,W as _,a as v,et as y,i as b,j as x,k as S,l as C,n as w,o as T,r as E,t as D,z as ee}from"./vendor-ui-B-89Uj8i.js";import{t as O}from"./createLucideIcon-BjHrJDVb.js";import{i as te,n as ne,r as re,t as ie}from"./scroll-area-BEllam7_.js";import{a as ae,c as k,d as A,f as oe,g as se,h as ce,i as le,l as j,m as M,o as ue,p as de,s as fe,t as pe,u as me}from"./ai-settings-section-QE6nBNgN.js";import{i as he,n as ge,r as _e,t as ve}from"./dist-D7KGU7Vl.js";import{n as ye,r as be,t as xe}from"./plus-51UQ45rf.js";import{t as Se}from"./chevron-right-BzAdxJRG.js";import{a as Ce,c as we,i as Te,l as N,n as Ee,o as De,r as Oe,s as ke,t as P,u as Ae}from"./input-Dk49gO8E.js";import{t as je}from"./database-D4DIhgi-.js";import{n as Me,r as Ne,t as Pe}from"./x-DlFGzN8d.js";import{t as Fe}from"./refresh-cw-LlbZDJpO.js";import{t as Ie}from"./trash-2-CJYoLw7Q.js";import{t as Le}from"./react-GqWghJ-L.js";import{a as Re,i as F,r as ze,t as I}from"./api-client-Dvzcc_EO.js";import{n as L,t as Be}from"./settings-store-BLLR7ed8.js";import{G as Ve}from"./vendor-mermaid-Dx86tuVP.js";import{n as R,t as He}from"./utils-CTg5uAYR.js";import{a as Ue,i as We,n as z,o as Ge,r as Ke,s as qe,t as B}from"./tab-store-B3M9hjho.js";import{n as Je,r as Ye,t as Xe}from"./file-store-BrbCNyLm.js";import{a as Ze,i as Qe,n as $e,o as et,r as tt,t as nt}from"./keybindings-store-B-zET-0o.js";import{t as rt}from"./extension-store-3yZYn07W.js";import{_ as it,d as at}from"./api-settings-DAk7D-NP.js";(function(){let e=document.createElement(`link`).relList;if(e&&e.supports&&e.supports(`modulepreload`))return;for(let e of document.querySelectorAll(`link[rel="modulepreload"]`))n(e);new MutationObserver(e=>{for(let t of e)if(t.type===`childList`)for(let e of t.addedNodes)e.tagName===`LINK`&&e.rel===`modulepreload`&&n(e)}).observe(document,{childList:!0,subtree:!0});function t(e){let t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin===`use-credentials`?t.credentials=`include`:e.crossOrigin===`anonymous`?t.credentials=`omit`:t.credentials=`same-origin`,t}function n(e){if(e.ep)return;e.ep=!0;let n=t(e);fetch(e.href,n)}})();var ot=t((e=>{function t(e,t){var n=e.length;e.push(t);a:for(;0<n;){var r=n-1>>>1,a=e[r];if(0<i(a,t))e[r]=t,e[n]=a,n=r;else break a}}function n(e){return e.length===0?null:e[0]}function r(e){if(e.length===0)return null;var t=e[0],n=e.pop();if(n!==t){e[0]=n;a:for(var r=0,a=e.length,o=a>>>1;r<o;){var s=2*(r+1)-1,c=e[s],l=s+1,u=e[l];if(0>i(c,n))l<a&&0>i(u,c)?(e[r]=u,e[l]=n,r=l):(e[r]=c,e[s]=n,r=s);else if(l<a&&0>i(u,n))e[r]=u,e[l]=n,r=l;else break a}}return t}function i(e,t){var n=e.sortIndex-t.sortIndex;return n===0?e.id-t.id:n}if(e.unstable_now=void 0,typeof performance==`object`&&typeof performance.now==`function`){var a=performance;e.unstable_now=function(){return a.now()}}else{var o=Date,s=o.now();e.unstable_now=function(){return o.now()-s}}var c=[],l=[],u=1,d=null,f=3,p=!1,m=!1,h=!1,g=!1,_=typeof setTimeout==`function`?setTimeout:null,v=typeof clearTimeout==`function`?clearTimeout:null,y=typeof setImmediate<`u`?setImmediate:null;function b(e){for(var i=n(l);i!==null;){if(i.callback===null)r(l);else if(i.startTime<=e)r(l),i.sortIndex=i.expirationTime,t(c,i);else break;i=n(l)}}function x(e){if(h=!1,b(e),!m)if(n(c)!==null)m=!0,S||(S=!0,ee());else{var t=n(l);t!==null&&ne(x,t.startTime-e)}}var S=!1,C=-1,w=5,T=-1;function E(){return g?!0:!(e.unstable_now()-T<w)}function D(){if(g=!1,S){var t=e.unstable_now();T=t;var i=!0;try{a:{m=!1,h&&(h=!1,v(C),C=-1),p=!0;var a=f;try{b:{for(b(t),d=n(c);d!==null&&!(d.expirationTime>t&&E());){var o=d.callback;if(typeof o==`function`){d.callback=null,f=d.priorityLevel;var s=o(d.expirationTime<=t);if(t=e.unstable_now(),typeof s==`function`){d.callback=s,b(t),i=!0;break b}d===n(c)&&r(c),b(t)}else r(c);d=n(c)}if(d!==null)i=!0;else{var u=n(l);u!==null&&ne(x,u.startTime-t),i=!1}}break a}finally{d=null,f=a,p=!1}i=void 0}}finally{i?ee():S=!1}}}var ee;if(typeof y==`function`)ee=function(){y(D)};else if(typeof MessageChannel<`u`){var O=new MessageChannel,te=O.port2;O.port1.onmessage=D,ee=function(){te.postMessage(null)}}else ee=function(){_(D,0)};function ne(t,n){C=_(function(){t(e.unstable_now())},n)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(e){e.callback=null},e.unstable_forceFrameRate=function(e){0>e||125<e?console.error(`forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported`):w=0<e?Math.floor(1e3/e):5},e.unstable_getCurrentPriorityLevel=function(){return f},e.unstable_next=function(e){switch(f){case 1:case 2:case 3:var t=3;break;default:t=f}var n=f;f=t;try{return e()}finally{f=n}},e.unstable_requestPaint=function(){g=!0},e.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=f;f=e;try{return t()}finally{f=n}},e.unstable_scheduleCallback=function(r,i,a){var o=e.unstable_now();switch(typeof a==`object`&&a?(a=a.delay,a=typeof a==`number`&&0<a?o+a:o):a=o,r){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return s=a+s,r={id:u++,callback:i,priorityLevel:r,startTime:a,expirationTime:s,sortIndex:-1},a>o?(r.sortIndex=a,t(l,r),n(c)===null&&r===n(l)&&(h?(v(C),C=-1):h=!0,ne(x,a-o))):(r.sortIndex=s,t(c,r),m||p||(m=!0,S||(S=!0,ee()))),r},e.unstable_shouldYield=E,e.unstable_wrapCallback=function(e){var t=f;return function(){var n=f;f=t;try{return e.apply(this,arguments)}finally{f=n}}}})),st=t(((e,t)=>{t.exports=ot()})),ct=t((e=>{var t=st(),n=r(),i=y();function a(e){var t=`https://react.dev/errors/`+e;if(1<arguments.length){t+=`?args[]=`+encodeURIComponent(arguments[1]);for(var n=2;n<arguments.length;n++)t+=`&args[]=`+encodeURIComponent(arguments[n])}return`Minified React error #`+e+`; visit `+t+` for the full message or use the non-minified dev environment for full errors and additional helpful warnings.`}function o(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function s(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do t=e,t.flags&4098&&(n=t.return),e=t.return;while(e)}return t.tag===3?n:null}function c(e){if(e.tag===13){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function l(e){if(e.tag===31){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function u(e){if(s(e)!==e)throw Error(a(188))}function d(e){var t=e.alternate;if(!t){if(t=s(e),t===null)throw Error(a(188));return t===e?e:null}for(var n=e,r=t;;){var i=n.return;if(i===null)break;var o=i.alternate;if(o===null){if(r=i.return,r!==null){n=r;continue}break}if(i.child===o.child){for(o=i.child;o;){if(o===n)return u(i),e;if(o===r)return u(i),t;o=o.sibling}throw Error(a(188))}if(n.return!==r.return)n=i,r=o;else{for(var c=!1,l=i.child;l;){if(l===n){c=!0,n=i,r=o;break}if(l===r){c=!0,r=i,n=o;break}l=l.sibling}if(!c){for(l=o.child;l;){if(l===n){c=!0,n=o,r=i;break}if(l===r){c=!0,r=o,n=i;break}l=l.sibling}if(!c)throw Error(a(189))}}if(n.alternate!==r)throw Error(a(190))}if(n.tag!==3)throw Error(a(188));return n.stateNode.current===n?e:t}function f(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e;for(e=e.child;e!==null;){if(t=f(e),t!==null)return t;e=e.sibling}return null}var p=Object.assign,m=Symbol.for(`react.element`),h=Symbol.for(`react.transitional.element`),g=Symbol.for(`react.portal`),_=Symbol.for(`react.fragment`),v=Symbol.for(`react.strict_mode`),b=Symbol.for(`react.profiler`),x=Symbol.for(`react.consumer`),S=Symbol.for(`react.context`),C=Symbol.for(`react.forward_ref`),w=Symbol.for(`react.suspense`),T=Symbol.for(`react.suspense_list`),E=Symbol.for(`react.memo`),D=Symbol.for(`react.lazy`),ee=Symbol.for(`react.activity`),O=Symbol.for(`react.memo_cache_sentinel`),te=Symbol.iterator;function ne(e){return typeof e!=`object`||!e?null:(e=te&&e[te]||e[`@@iterator`],typeof e==`function`?e:null)}var re=Symbol.for(`react.client.reference`);function ie(e){if(e==null)return null;if(typeof e==`function`)return e.$$typeof===re?null:e.displayName||e.name||null;if(typeof e==`string`)return e;switch(e){case _:return`Fragment`;case b:return`Profiler`;case v:return`StrictMode`;case w:return`Suspense`;case T:return`SuspenseList`;case ee:return`Activity`}if(typeof e==`object`)switch(e.$$typeof){case g:return`Portal`;case S:return e.displayName||`Context`;case x:return(e._context.displayName||`Context`)+`.Consumer`;case C:var t=e.render;return e=e.displayName,e||=(e=t.displayName||t.name||``,e===``?`ForwardRef`:`ForwardRef(`+e+`)`),e;case E:return t=e.displayName||null,t===null?ie(e.type)||`Memo`:t;case D:t=e._payload,e=e._init;try{return ie(e(t))}catch{}}return null}var ae=Array.isArray,k=n.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,A=i.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,oe={pending:!1,data:null,method:null,action:null},se=[],ce=-1;function le(e){return{current:e}}function j(e){0>ce||(e.current=se[ce],se[ce]=null,ce--)}function M(e,t){ce++,se[ce]=e.current,e.current=t}var ue=le(null),de=le(null),fe=le(null),pe=le(null);function me(e,t){switch(M(fe,t),M(de,e),M(ue,null),t.nodeType){case 9:case 11:e=(e=t.documentElement)&&(e=e.namespaceURI)?Vd(e):0;break;default:if(e=t.tagName,t=t.namespaceURI)t=Vd(t),e=Hd(t,e);else switch(e){case`svg`:e=1;break;case`math`:e=2;break;default:e=0}}j(ue),M(ue,e)}function he(){j(ue),j(de),j(fe)}function ge(e){e.memoizedState!==null&&M(pe,e);var t=ue.current,n=Hd(t,e.type);t!==n&&(M(de,e),M(ue,n))}function _e(e){de.current===e&&(j(ue),j(de)),pe.current===e&&(j(pe),Qf._currentValue=oe)}var ve,ye;function be(e){if(ve===void 0)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);ve=t&&t[1]||``,ye=-1<e.stack.indexOf(`
3
- at`)?` (<anonymous>)`:-1<e.stack.indexOf(`@`)?`@unknown:0:0`:``}return`
4
- `+ve+e+ye}var xe=!1;function Se(e,t){if(!e||xe)return``;xe=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var r={DetermineComponentFrameRoot:function(){try{if(t){var n=function(){throw Error()};if(Object.defineProperty(n.prototype,`props`,{set:function(){throw Error()}}),typeof Reflect==`object`&&Reflect.construct){try{Reflect.construct(n,[])}catch(e){var r=e}Reflect.construct(e,[],n)}else{try{n.call()}catch(e){r=e}e.call(n.prototype)}}else{try{throw Error()}catch(e){r=e}(n=e())&&typeof n.catch==`function`&&n.catch(function(){})}}catch(e){if(e&&r&&typeof e.stack==`string`)return[e.stack,r.stack]}return[null,null]}};r.DetermineComponentFrameRoot.displayName=`DetermineComponentFrameRoot`;var i=Object.getOwnPropertyDescriptor(r.DetermineComponentFrameRoot,`name`);i&&i.configurable&&Object.defineProperty(r.DetermineComponentFrameRoot,`name`,{value:`DetermineComponentFrameRoot`});var a=r.DetermineComponentFrameRoot(),o=a[0],s=a[1];if(o&&s){var c=o.split(`
5
- `),l=s.split(`
6
- `);for(i=r=0;r<c.length&&!c[r].includes(`DetermineComponentFrameRoot`);)r++;for(;i<l.length&&!l[i].includes(`DetermineComponentFrameRoot`);)i++;if(r===c.length||i===l.length)for(r=c.length-1,i=l.length-1;1<=r&&0<=i&&c[r]!==l[i];)i--;for(;1<=r&&0<=i;r--,i--)if(c[r]!==l[i]){if(r!==1||i!==1)do if(r--,i--,0>i||c[r]!==l[i]){var u=`
7
- `+c[r].replace(` at new `,` at `);return e.displayName&&u.includes(`<anonymous>`)&&(u=u.replace(`<anonymous>`,e.displayName)),u}while(1<=r&&0<=i);break}}}finally{xe=!1,Error.prepareStackTrace=n}return(n=e?e.displayName||e.name:``)?be(n):``}function Ce(e,t){switch(e.tag){case 26:case 27:case 5:return be(e.type);case 16:return be(`Lazy`);case 13:return e.child!==t&&t!==null?be(`Suspense Fallback`):be(`Suspense`);case 19:return be(`SuspenseList`);case 0:case 15:return Se(e.type,!1);case 11:return Se(e.type.render,!1);case 1:return Se(e.type,!0);case 31:return be(`Activity`);default:return``}}function we(e){try{var t=``,n=null;do t+=Ce(e,n),n=e,e=e.return;while(e);return t}catch(e){return`
8
- Error generating stack: `+e.message+`
9
- `+e.stack}}var Te=Object.prototype.hasOwnProperty,N=t.unstable_scheduleCallback,Ee=t.unstable_cancelCallback,De=t.unstable_shouldYield,Oe=t.unstable_requestPaint,ke=t.unstable_now,P=t.unstable_getCurrentPriorityLevel,Ae=t.unstable_ImmediatePriority,je=t.unstable_UserBlockingPriority,Me=t.unstable_NormalPriority,Ne=t.unstable_LowPriority,Pe=t.unstable_IdlePriority,Fe=t.log,Ie=t.unstable_setDisableYieldValue,Le=null,Re=null;function F(e){if(typeof Fe==`function`&&Ie(e),Re&&typeof Re.setStrictMode==`function`)try{Re.setStrictMode(Le,e)}catch{}}var ze=Math.clz32?Math.clz32:Be,I=Math.log,L=Math.LN2;function Be(e){return e>>>=0,e===0?32:31-(I(e)/L|0)|0}var Ve=256,R=262144,He=4194304;function Ue(e){var t=e&42;if(t!==0)return t;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function We(e,t,n){var r=e.pendingLanes;if(r===0)return 0;var i=0,a=e.suspendedLanes,o=e.pingedLanes;e=e.warmLanes;var s=r&134217727;return s===0?(s=r&~a,s===0?o===0?n||(n=r&~e,n!==0&&(i=Ue(n))):i=Ue(o):i=Ue(s)):(r=s&~a,r===0?(o&=s,o===0?n||(n=s&~e,n!==0&&(i=Ue(n))):i=Ue(o)):i=Ue(r)),i===0?0:t!==0&&t!==i&&(t&a)===0&&(a=i&-i,n=t&-t,a>=n||a===32&&n&4194048)?t:i}function z(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function Ge(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Ke(){var e=He;return He<<=1,!(He&62914560)&&(He=4194304),e}function qe(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function B(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function Je(e,t,n,r,i,a){var o=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var s=e.entanglements,c=e.expirationTimes,l=e.hiddenUpdates;for(n=o&~n;0<n;){var u=31-ze(n),d=1<<u;s[u]=0,c[u]=-1;var f=l[u];if(f!==null)for(l[u]=null,u=0;u<f.length;u++){var p=f[u];p!==null&&(p.lane&=-536870913)}n&=~d}r!==0&&Ye(e,r,0),a!==0&&i===0&&e.tag!==0&&(e.suspendedLanes|=a&~(o&~t))}function Ye(e,t,n){e.pendingLanes|=t,e.suspendedLanes&=~t;var r=31-ze(t);e.entangledLanes|=t,e.entanglements[r]=e.entanglements[r]|1073741824|n&261930}function Xe(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-ze(n),i=1<<r;i&t|e[r]&t&&(e[r]|=t),n&=~i}}function Ze(e,t){var n=t&-t;return n=n&42?1:Qe(n),(n&(e.suspendedLanes|t))===0?n:0}function Qe(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function $e(e){return e&=-e,2<e?8<e?e&134217727?32:268435456:8:2}function et(){var e=A.p;return e===0?(e=window.event,e===void 0?32:mp(e.type)):e}function tt(e,t){var n=A.p;try{return A.p=e,t()}finally{A.p=n}}var nt=Math.random().toString(36).slice(2),rt=`__reactFiber$`+nt,it=`__reactProps$`+nt,at=`__reactContainer$`+nt,ot=`__reactEvents$`+nt,ct=`__reactListeners$`+nt,lt=`__reactHandles$`+nt,ut=`__reactResources$`+nt,dt=`__reactMarker$`+nt;function ft(e){delete e[rt],delete e[it],delete e[ot],delete e[ct],delete e[lt]}function pt(e){var t=e[rt];if(t)return t;for(var n=e.parentNode;n;){if(t=n[at]||n[rt]){if(n=t.alternate,t.child!==null||n!==null&&n.child!==null)for(e=df(e);e!==null;){if(n=e[rt])return n;e=df(e)}return t}e=n,n=e.parentNode}return null}function mt(e){if(e=e[rt]||e[at]){var t=e.tag;if(t===5||t===6||t===13||t===31||t===26||t===27||t===3)return e}return null}function ht(e){var t=e.tag;if(t===5||t===26||t===27||t===6)return e.stateNode;throw Error(a(33))}function gt(e){var t=e[ut];return t||=e[ut]={hoistableStyles:new Map,hoistableScripts:new Map},t}function _t(e){e[dt]=!0}var vt=new Set,yt={};function bt(e,t){xt(e,t),xt(e+`Capture`,t)}function xt(e,t){for(yt[e]=t,e=0;e<t.length;e++)vt.add(t[e])}var St=RegExp(`^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$`),Ct={},wt={};function Tt(e){return Te.call(wt,e)?!0:Te.call(Ct,e)?!1:St.test(e)?wt[e]=!0:(Ct[e]=!0,!1)}function Et(e,t,n){if(Tt(t))if(n===null)e.removeAttribute(t);else{switch(typeof n){case`undefined`:case`function`:case`symbol`:e.removeAttribute(t);return;case`boolean`:var r=t.toLowerCase().slice(0,5);if(r!==`data-`&&r!==`aria-`){e.removeAttribute(t);return}}e.setAttribute(t,``+n)}}function Dt(e,t,n){if(n===null)e.removeAttribute(t);else{switch(typeof n){case`undefined`:case`function`:case`symbol`:case`boolean`:e.removeAttribute(t);return}e.setAttribute(t,``+n)}}function Ot(e,t,n,r){if(r===null)e.removeAttribute(n);else{switch(typeof r){case`undefined`:case`function`:case`symbol`:case`boolean`:e.removeAttribute(n);return}e.setAttributeNS(t,n,``+r)}}function kt(e){switch(typeof e){case`bigint`:case`boolean`:case`number`:case`string`:case`undefined`:return e;case`object`:return e;default:return``}}function At(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()===`input`&&(t===`checkbox`||t===`radio`)}function jt(e,t,n){var r=Object.getOwnPropertyDescriptor(e.constructor.prototype,t);if(!e.hasOwnProperty(t)&&r!==void 0&&typeof r.get==`function`&&typeof r.set==`function`){var i=r.get,a=r.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return i.call(this)},set:function(e){n=``+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(e){n=``+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function Mt(e){if(!e._valueTracker){var t=At(e)?`checked`:`value`;e._valueTracker=jt(e,t,``+e[t])}}function Nt(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r=``;return e&&(r=At(e)?e.checked?`true`:`false`:e.value),e=r,e===n?!1:(t.setValue(e),!0)}function Pt(e){if(e||=typeof document<`u`?document:void 0,e===void 0)return null;try{return e.activeElement||e.body}catch{return e.body}}var Ft=/[\n"\\]/g;function It(e){return e.replace(Ft,function(e){return`\\`+e.charCodeAt(0).toString(16)+` `})}function Lt(e,t,n,r,i,a,o,s){e.name=``,o!=null&&typeof o!=`function`&&typeof o!=`symbol`&&typeof o!=`boolean`?e.type=o:e.removeAttribute(`type`),t==null?o!==`submit`&&o!==`reset`||e.removeAttribute(`value`):o===`number`?(t===0&&e.value===``||e.value!=t)&&(e.value=``+kt(t)):e.value!==``+kt(t)&&(e.value=``+kt(t)),t==null?n==null?r!=null&&e.removeAttribute(`value`):zt(e,o,kt(n)):zt(e,o,kt(t)),i==null&&a!=null&&(e.defaultChecked=!!a),i!=null&&(e.checked=i&&typeof i!=`function`&&typeof i!=`symbol`),s!=null&&typeof s!=`function`&&typeof s!=`symbol`&&typeof s!=`boolean`?e.name=``+kt(s):e.removeAttribute(`name`)}function Rt(e,t,n,r,i,a,o,s){if(a!=null&&typeof a!=`function`&&typeof a!=`symbol`&&typeof a!=`boolean`&&(e.type=a),t!=null||n!=null){if(!(a!==`submit`&&a!==`reset`||t!=null)){Mt(e);return}n=n==null?``:``+kt(n),t=t==null?n:``+kt(t),s||t===e.value||(e.value=t),e.defaultValue=t}r??=i,r=typeof r!=`function`&&typeof r!=`symbol`&&!!r,e.checked=s?e.checked:!!r,e.defaultChecked=!!r,o!=null&&typeof o!=`function`&&typeof o!=`symbol`&&typeof o!=`boolean`&&(e.name=o),Mt(e)}function zt(e,t,n){t===`number`&&Pt(e.ownerDocument)===e||e.defaultValue===``+n||(e.defaultValue=``+n)}function Bt(e,t,n,r){if(e=e.options,t){t={};for(var i=0;i<n.length;i++)t[`$`+n[i]]=!0;for(n=0;n<e.length;n++)i=t.hasOwnProperty(`$`+e[n].value),e[n].selected!==i&&(e[n].selected=i),i&&r&&(e[n].defaultSelected=!0)}else{for(n=``+kt(n),t=null,i=0;i<e.length;i++){if(e[i].value===n){e[i].selected=!0,r&&(e[i].defaultSelected=!0);return}t!==null||e[i].disabled||(t=e[i])}t!==null&&(t.selected=!0)}}function Vt(e,t,n){if(t!=null&&(t=``+kt(t),t!==e.value&&(e.value=t),n==null)){e.defaultValue!==t&&(e.defaultValue=t);return}e.defaultValue=n==null?``:``+kt(n)}function Ht(e,t,n,r){if(t==null){if(r!=null){if(n!=null)throw Error(a(92));if(ae(r)){if(1<r.length)throw Error(a(93));r=r[0]}n=r}n??=``,t=n}n=kt(t),e.defaultValue=n,r=e.textContent,r===n&&r!==``&&r!==null&&(e.value=r),Mt(e)}function Ut(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Wt=new Set(`animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp`.split(` `));function Gt(e,t,n){var r=t.indexOf(`--`)===0;n==null||typeof n==`boolean`||n===``?r?e.setProperty(t,``):t===`float`?e.cssFloat=``:e[t]=``:r?e.setProperty(t,n):typeof n!=`number`||n===0||Wt.has(t)?t===`float`?e.cssFloat=n:e[t]=(``+n).trim():e[t]=n+`px`}function Kt(e,t,n){if(t!=null&&typeof t!=`object`)throw Error(a(62));if(e=e.style,n!=null){for(var r in n)!n.hasOwnProperty(r)||t!=null&&t.hasOwnProperty(r)||(r.indexOf(`--`)===0?e.setProperty(r,``):r===`float`?e.cssFloat=``:e[r]=``);for(var i in t)r=t[i],t.hasOwnProperty(i)&&n[i]!==r&&Gt(e,i,r)}else for(var o in t)t.hasOwnProperty(o)&&Gt(e,o,t[o])}function qt(e){if(e.indexOf(`-`)===-1)return!1;switch(e){case`annotation-xml`:case`color-profile`:case`font-face`:case`font-face-src`:case`font-face-uri`:case`font-face-format`:case`font-face-name`:case`missing-glyph`:return!1;default:return!0}}var Jt=new Map([[`acceptCharset`,`accept-charset`],[`htmlFor`,`for`],[`httpEquiv`,`http-equiv`],[`crossOrigin`,`crossorigin`],[`accentHeight`,`accent-height`],[`alignmentBaseline`,`alignment-baseline`],[`arabicForm`,`arabic-form`],[`baselineShift`,`baseline-shift`],[`capHeight`,`cap-height`],[`clipPath`,`clip-path`],[`clipRule`,`clip-rule`],[`colorInterpolation`,`color-interpolation`],[`colorInterpolationFilters`,`color-interpolation-filters`],[`colorProfile`,`color-profile`],[`colorRendering`,`color-rendering`],[`dominantBaseline`,`dominant-baseline`],[`enableBackground`,`enable-background`],[`fillOpacity`,`fill-opacity`],[`fillRule`,`fill-rule`],[`floodColor`,`flood-color`],[`floodOpacity`,`flood-opacity`],[`fontFamily`,`font-family`],[`fontSize`,`font-size`],[`fontSizeAdjust`,`font-size-adjust`],[`fontStretch`,`font-stretch`],[`fontStyle`,`font-style`],[`fontVariant`,`font-variant`],[`fontWeight`,`font-weight`],[`glyphName`,`glyph-name`],[`glyphOrientationHorizontal`,`glyph-orientation-horizontal`],[`glyphOrientationVertical`,`glyph-orientation-vertical`],[`horizAdvX`,`horiz-adv-x`],[`horizOriginX`,`horiz-origin-x`],[`imageRendering`,`image-rendering`],[`letterSpacing`,`letter-spacing`],[`lightingColor`,`lighting-color`],[`markerEnd`,`marker-end`],[`markerMid`,`marker-mid`],[`markerStart`,`marker-start`],[`overlinePosition`,`overline-position`],[`overlineThickness`,`overline-thickness`],[`paintOrder`,`paint-order`],[`panose-1`,`panose-1`],[`pointerEvents`,`pointer-events`],[`renderingIntent`,`rendering-intent`],[`shapeRendering`,`shape-rendering`],[`stopColor`,`stop-color`],[`stopOpacity`,`stop-opacity`],[`strikethroughPosition`,`strikethrough-position`],[`strikethroughThickness`,`strikethrough-thickness`],[`strokeDasharray`,`stroke-dasharray`],[`strokeDashoffset`,`stroke-dashoffset`],[`strokeLinecap`,`stroke-linecap`],[`strokeLinejoin`,`stroke-linejoin`],[`strokeMiterlimit`,`stroke-miterlimit`],[`strokeOpacity`,`stroke-opacity`],[`strokeWidth`,`stroke-width`],[`textAnchor`,`text-anchor`],[`textDecoration`,`text-decoration`],[`textRendering`,`text-rendering`],[`transformOrigin`,`transform-origin`],[`underlinePosition`,`underline-position`],[`underlineThickness`,`underline-thickness`],[`unicodeBidi`,`unicode-bidi`],[`unicodeRange`,`unicode-range`],[`unitsPerEm`,`units-per-em`],[`vAlphabetic`,`v-alphabetic`],[`vHanging`,`v-hanging`],[`vIdeographic`,`v-ideographic`],[`vMathematical`,`v-mathematical`],[`vectorEffect`,`vector-effect`],[`vertAdvY`,`vert-adv-y`],[`vertOriginX`,`vert-origin-x`],[`vertOriginY`,`vert-origin-y`],[`wordSpacing`,`word-spacing`],[`writingMode`,`writing-mode`],[`xmlnsXlink`,`xmlns:xlink`],[`xHeight`,`x-height`]]),Yt=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function Xt(e){return Yt.test(``+e)?`javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')`:e}function Zt(){}var Qt=null;function $t(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var en=null,tn=null;function nn(e){var t=mt(e);if(t&&(e=t.stateNode)){var n=e[it]||null;a:switch(e=t.stateNode,t.type){case`input`:if(Lt(e,n.value,n.defaultValue,n.defaultValue,n.checked,n.defaultChecked,n.type,n.name),t=n.name,n.type===`radio`&&t!=null){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(`input[name="`+It(``+t)+`"][type="radio"]`),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var i=r[it]||null;if(!i)throw Error(a(90));Lt(r,i.value,i.defaultValue,i.defaultValue,i.checked,i.defaultChecked,i.type,i.name)}}for(t=0;t<n.length;t++)r=n[t],r.form===e.form&&Nt(r)}break a;case`textarea`:Vt(e,n.value,n.defaultValue);break a;case`select`:t=n.value,t!=null&&Bt(e,!!n.multiple,t,!1)}}}var rn=!1;function an(e,t,n){if(rn)return e(t,n);rn=!0;try{return e(t)}finally{if(rn=!1,(en!==null||tn!==null)&&(vu(),en&&(t=en,e=tn,tn=en=null,nn(t),e)))for(t=0;t<e.length;t++)nn(e[t])}}function on(e,t){var n=e.stateNode;if(n===null)return null;var r=n[it]||null;if(r===null)return null;n=r[t];a:switch(t){case`onClick`:case`onClickCapture`:case`onDoubleClick`:case`onDoubleClickCapture`:case`onMouseDown`:case`onMouseDownCapture`:case`onMouseMove`:case`onMouseMoveCapture`:case`onMouseUp`:case`onMouseUpCapture`:case`onMouseEnter`:(r=!r.disabled)||(e=e.type,r=!(e===`button`||e===`input`||e===`select`||e===`textarea`)),e=!r;break a;default:e=!1}if(e)return null;if(n&&typeof n!=`function`)throw Error(a(231,t,typeof n));return n}var sn=!(typeof window>`u`||window.document===void 0||window.document.createElement===void 0),cn=!1;if(sn)try{var V={};Object.defineProperty(V,`passive`,{get:function(){cn=!0}}),window.addEventListener(`test`,V,V),window.removeEventListener(`test`,V,V)}catch{cn=!1}var ln=null,un=null,dn=null;function fn(){if(dn)return dn;var e,t=un,n=t.length,r,i=`value`in ln?ln.value:ln.textContent,a=i.length;for(e=0;e<n&&t[e]===i[e];e++);var o=n-e;for(r=1;r<=o&&t[n-r]===i[a-r];r++);return dn=i.slice(e,1<r?1-r:void 0)}function pn(e){var t=e.keyCode;return`charCode`in e?(e=e.charCode,e===0&&t===13&&(e=13)):e=t,e===10&&(e=13),32<=e||e===13?e:0}function mn(){return!0}function hn(){return!1}function gn(e){function t(t,n,r,i,a){for(var o in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=i,this.target=a,this.currentTarget=null,e)e.hasOwnProperty(o)&&(t=e[o],this[o]=t?t(i):i[o]);return this.isDefaultPrevented=(i.defaultPrevented==null?!1===i.returnValue:i.defaultPrevented)?mn:hn,this.isPropagationStopped=hn,this}return p(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():typeof e.returnValue!=`unknown`&&(e.returnValue=!1),this.isDefaultPrevented=mn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():typeof e.cancelBubble!=`unknown`&&(e.cancelBubble=!0),this.isPropagationStopped=mn)},persist:function(){},isPersistent:mn}),t}var _n={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},vn=gn(_n),yn=p({},_n,{view:0,detail:0}),bn=gn(yn),xn,Sn,Cn,wn=p({},yn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Fn,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return`movementX`in e?e.movementX:(e!==Cn&&(Cn&&e.type===`mousemove`?(xn=e.screenX-Cn.screenX,Sn=e.screenY-Cn.screenY):Sn=xn=0,Cn=e),xn)},movementY:function(e){return`movementY`in e?e.movementY:Sn}}),Tn=gn(wn),En=gn(p({},wn,{dataTransfer:0})),Dn=gn(p({},yn,{relatedTarget:0})),On=gn(p({},_n,{animationName:0,elapsedTime:0,pseudoElement:0})),kn=gn(p({},_n,{clipboardData:function(e){return`clipboardData`in e?e.clipboardData:window.clipboardData}})),An=gn(p({},_n,{data:0})),jn={Esc:`Escape`,Spacebar:` `,Left:`ArrowLeft`,Up:`ArrowUp`,Right:`ArrowRight`,Down:`ArrowDown`,Del:`Delete`,Win:`OS`,Menu:`ContextMenu`,Apps:`ContextMenu`,Scroll:`ScrollLock`,MozPrintableKey:`Unidentified`},Mn={8:`Backspace`,9:`Tab`,12:`Clear`,13:`Enter`,16:`Shift`,17:`Control`,18:`Alt`,19:`Pause`,20:`CapsLock`,27:`Escape`,32:` `,33:`PageUp`,34:`PageDown`,35:`End`,36:`Home`,37:`ArrowLeft`,38:`ArrowUp`,39:`ArrowRight`,40:`ArrowDown`,45:`Insert`,46:`Delete`,112:`F1`,113:`F2`,114:`F3`,115:`F4`,116:`F5`,117:`F6`,118:`F7`,119:`F8`,120:`F9`,121:`F10`,122:`F11`,123:`F12`,144:`NumLock`,145:`ScrollLock`,224:`Meta`},Nn={Alt:`altKey`,Control:`ctrlKey`,Meta:`metaKey`,Shift:`shiftKey`};function Pn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=Nn[e])?!!t[e]:!1}function Fn(){return Pn}var In=gn(p({},yn,{key:function(e){if(e.key){var t=jn[e.key]||e.key;if(t!==`Unidentified`)return t}return e.type===`keypress`?(e=pn(e),e===13?`Enter`:String.fromCharCode(e)):e.type===`keydown`||e.type===`keyup`?Mn[e.keyCode]||`Unidentified`:``},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Fn,charCode:function(e){return e.type===`keypress`?pn(e):0},keyCode:function(e){return e.type===`keydown`||e.type===`keyup`?e.keyCode:0},which:function(e){return e.type===`keypress`?pn(e):e.type===`keydown`||e.type===`keyup`?e.keyCode:0}})),Ln=gn(p({},wn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Rn=gn(p({},yn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Fn})),zn=gn(p({},_n,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=gn(p({},wn,{deltaX:function(e){return`deltaX`in e?e.deltaX:`wheelDeltaX`in e?-e.wheelDeltaX:0},deltaY:function(e){return`deltaY`in e?e.deltaY:`wheelDeltaY`in e?-e.wheelDeltaY:`wheelDelta`in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0})),Vn=gn(p({},_n,{newState:0,oldState:0})),Hn=[9,13,27,32],Un=sn&&`CompositionEvent`in window,Wn=null;sn&&`documentMode`in document&&(Wn=document.documentMode);var Gn=sn&&`TextEvent`in window&&!Wn,Kn=sn&&(!Un||Wn&&8<Wn&&11>=Wn),qn=` `,Jn=!1;function Yn(e,t){switch(e){case`keyup`:return Hn.indexOf(t.keyCode)!==-1;case`keydown`:return t.keyCode!==229;case`keypress`:case`mousedown`:case`focusout`:return!0;default:return!1}}function H(e){return e=e.detail,typeof e==`object`&&`data`in e?e.data:null}var U=!1;function Xn(e,t){switch(e){case`compositionend`:return H(t);case`keypress`:return t.which===32?(Jn=!0,qn):null;case`textInput`:return e=t.data,e===qn&&Jn?null:e;default:return null}}function Zn(e,t){if(U)return e===`compositionend`||!Un&&Yn(e,t)?(e=fn(),dn=un=ln=null,U=!1,e):null;switch(e){case`paste`:return null;case`keypress`:if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case`compositionend`:return Kn&&t.locale!==`ko`?null:t.data;default:return null}}var Qn={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function $n(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t===`input`?!!Qn[e.type]:t===`textarea`}function er(e,t,n,r){en?tn?tn.push(r):tn=[r]:en=r,t=Td(t,`onChange`),0<t.length&&(n=new vn(`onChange`,`change`,null,n,r),e.push({event:n,listeners:t}))}var tr=null,nr=null;function rr(e){vd(e,0)}function ir(e){if(Nt(ht(e)))return e}function ar(e,t){if(e===`change`)return t}var or=!1;if(sn){var sr;if(sn){var cr=`oninput`in document;if(!cr){var lr=document.createElement(`div`);lr.setAttribute(`oninput`,`return;`),cr=typeof lr.oninput==`function`}sr=cr}else sr=!1;or=sr&&(!document.documentMode||9<document.documentMode)}function ur(){tr&&(tr.detachEvent(`onpropertychange`,dr),nr=tr=null)}function dr(e){if(e.propertyName===`value`&&ir(nr)){var t=[];er(t,nr,e,$t(e)),an(rr,t)}}function fr(e,t,n){e===`focusin`?(ur(),tr=t,nr=n,tr.attachEvent(`onpropertychange`,dr)):e===`focusout`&&ur()}function pr(e){if(e===`selectionchange`||e===`keyup`||e===`keydown`)return ir(nr)}function mr(e,t){if(e===`click`)return ir(t)}function hr(e,t){if(e===`input`||e===`change`)return ir(t)}function gr(e,t){return e===t&&(e!==0||1/e==1/t)||e!==e&&t!==t}var _r=typeof Object.is==`function`?Object.is:gr;function vr(e,t){if(_r(e,t))return!0;if(typeof e!=`object`||!e||typeof t!=`object`||!t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var i=n[r];if(!Te.call(t,i)||!_r(e[i],t[i]))return!1}return!0}function yr(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function br(e,t){var n=yr(e);e=0;for(var r;n;){if(n.nodeType===3){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}a:{for(;n;){if(n.nextSibling){n=n.nextSibling;break a}n=n.parentNode}n=void 0}n=yr(n)}}function xr(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?xr(e,t.parentNode):`contains`in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function Sr(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=Pt(e.document);t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==`string`}catch{n=!1}if(n)e=t.contentWindow;else break;t=Pt(e.document)}return t}function Cr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===`input`&&(e.type===`text`||e.type===`search`||e.type===`tel`||e.type===`url`||e.type===`password`)||t===`textarea`||e.contentEditable===`true`)}var wr=sn&&`documentMode`in document&&11>=document.documentMode,Tr=null,Er=null,Dr=null,Or=!1;function kr(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Or||Tr==null||Tr!==Pt(r)||(r=Tr,`selectionStart`in r&&Cr(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Dr&&vr(Dr,r)||(Dr=r,r=Td(Er,`onSelect`),0<r.length&&(t=new vn(`onSelect`,`select`,null,t,n),e.push({event:t,listeners:r}),t.target=Tr)))}function Ar(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[`Webkit`+e]=`webkit`+t,n[`Moz`+e]=`moz`+t,n}var jr={animationend:Ar(`Animation`,`AnimationEnd`),animationiteration:Ar(`Animation`,`AnimationIteration`),animationstart:Ar(`Animation`,`AnimationStart`),transitionrun:Ar(`Transition`,`TransitionRun`),transitionstart:Ar(`Transition`,`TransitionStart`),transitioncancel:Ar(`Transition`,`TransitionCancel`),transitionend:Ar(`Transition`,`TransitionEnd`)},Mr={},Nr={};sn&&(Nr=document.createElement(`div`).style,`AnimationEvent`in window||(delete jr.animationend.animation,delete jr.animationiteration.animation,delete jr.animationstart.animation),`TransitionEvent`in window||delete jr.transitionend.transition);function Pr(e){if(Mr[e])return Mr[e];if(!jr[e])return e;var t=jr[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in Nr)return Mr[e]=t[n];return e}var Fr=Pr(`animationend`),Ir=Pr(`animationiteration`),Lr=Pr(`animationstart`),Rr=Pr(`transitionrun`),zr=Pr(`transitionstart`),Br=Pr(`transitioncancel`),Vr=Pr(`transitionend`),Hr=new Map,Ur=`abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel`.split(` `);Ur.push(`scrollEnd`);function Wr(e,t){Hr.set(e,t),bt(t,[e])}var Gr=typeof reportError==`function`?reportError:function(e){if(typeof window==`object`&&typeof window.ErrorEvent==`function`){var t=new window.ErrorEvent(`error`,{bubbles:!0,cancelable:!0,message:typeof e==`object`&&e&&typeof e.message==`string`?String(e.message):String(e),error:e});if(!window.dispatchEvent(t))return}else if(typeof process==`object`&&typeof process.emit==`function`){process.emit(`uncaughtException`,e);return}console.error(e)},Kr=[],qr=0,Jr=0;function Yr(){for(var e=qr,t=Jr=qr=0;t<e;){var n=Kr[t];Kr[t++]=null;var r=Kr[t];Kr[t++]=null;var i=Kr[t];Kr[t++]=null;var a=Kr[t];if(Kr[t++]=null,r!==null&&i!==null){var o=r.pending;o===null?i.next=i:(i.next=o.next,o.next=i),r.pending=i}a!==0&&$r(n,i,a)}}function Xr(e,t,n,r){Kr[qr++]=e,Kr[qr++]=t,Kr[qr++]=n,Kr[qr++]=r,Jr|=r,e.lanes|=r,e=e.alternate,e!==null&&(e.lanes|=r)}function Zr(e,t,n,r){return Xr(e,t,n,r),ei(e)}function Qr(e,t){return Xr(e,null,null,t),ei(e)}function $r(e,t,n){e.lanes|=n;var r=e.alternate;r!==null&&(r.lanes|=n);for(var i=!1,a=e.return;a!==null;)a.childLanes|=n,r=a.alternate,r!==null&&(r.childLanes|=n),a.tag===22&&(e=a.stateNode,e===null||e._visibility&1||(i=!0)),e=a,a=a.return;return e.tag===3?(a=e.stateNode,i&&t!==null&&(i=31-ze(n),e=a.hiddenUpdates,r=e[i],r===null?e[i]=[t]:r.push(t),t.lane=n|536870912),a):null}function ei(e){if(50<lu)throw lu=0,uu=null,Error(a(185));for(var t=e.return;t!==null;)e=t,t=e.return;return e.tag===3?e.stateNode:null}var ti={};function ni(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function ri(e,t,n,r){return new ni(e,t,n,r)}function ii(e){return e=e.prototype,!(!e||!e.isReactComponent)}function ai(e,t){var n=e.alternate;return n===null?(n=ri(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&65011712,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n.refCleanup=e.refCleanup,n}function oi(e,t){e.flags&=65011714;var n=e.alternate;return n===null?(e.childLanes=0,e.lanes=t,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=n.childLanes,e.lanes=n.lanes,e.child=n.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=n.memoizedProps,e.memoizedState=n.memoizedState,e.updateQueue=n.updateQueue,e.type=n.type,t=n.dependencies,e.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext}),e}function si(e,t,n,r,i,o){var s=0;if(r=e,typeof e==`function`)ii(e)&&(s=1);else if(typeof e==`string`)s=Uf(e,n,ue.current)?26:e===`html`||e===`head`||e===`body`?27:5;else a:switch(e){case ee:return e=ri(31,n,t,i),e.elementType=ee,e.lanes=o,e;case _:return ci(n.children,i,o,t);case v:s=8,i|=24;break;case b:return e=ri(12,n,t,i|2),e.elementType=b,e.lanes=o,e;case w:return e=ri(13,n,t,i),e.elementType=w,e.lanes=o,e;case T:return e=ri(19,n,t,i),e.elementType=T,e.lanes=o,e;default:if(typeof e==`object`&&e)switch(e.$$typeof){case S:s=10;break a;case x:s=9;break a;case C:s=11;break a;case E:s=14;break a;case D:s=16,r=null;break a}s=29,n=Error(a(130,e===null?`null`:typeof e,``)),r=null}return t=ri(s,n,t,i),t.elementType=e,t.type=r,t.lanes=o,t}function ci(e,t,n,r){return e=ri(7,e,r,t),e.lanes=n,e}function li(e,t,n){return e=ri(6,e,null,t),e.lanes=n,e}function ui(e){var t=ri(18,null,null,0);return t.stateNode=e,t}function di(e,t,n){return t=ri(4,e.children===null?[]:e.children,e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}var fi=new WeakMap;function pi(e,t){if(typeof e==`object`&&e){var n=fi.get(e);return n===void 0?(t={value:e,source:t,stack:we(t)},fi.set(e,t),t):n}return{value:e,source:t,stack:we(t)}}var mi=[],hi=0,gi=null,_i=0,vi=[],yi=0,bi=null,xi=1,Si=``;function Ci(e,t){mi[hi++]=_i,mi[hi++]=gi,gi=e,_i=t}function wi(e,t,n){vi[yi++]=xi,vi[yi++]=Si,vi[yi++]=bi,bi=e;var r=xi;e=Si;var i=32-ze(r)-1;r&=~(1<<i),n+=1;var a=32-ze(t)+i;if(30<a){var o=i-i%5;a=(r&(1<<o)-1).toString(32),r>>=o,i-=o,xi=1<<32-ze(t)+i|n<<i|r,Si=a+e}else xi=1<<a|n<<i|r,Si=e}function Ti(e){e.return!==null&&(Ci(e,1),wi(e,1,0))}function Ei(e){for(;e===gi;)gi=mi[--hi],mi[hi]=null,_i=mi[--hi],mi[hi]=null;for(;e===bi;)bi=vi[--yi],vi[yi]=null,Si=vi[--yi],vi[yi]=null,xi=vi[--yi],vi[yi]=null}function Di(e,t){vi[yi++]=xi,vi[yi++]=Si,vi[yi++]=bi,xi=t.id,Si=t.overflow,bi=e}var Oi=null,ki=null,W=!1,Ai=null,ji=!1,Mi=Error(a(519));function Ni(e){throw zi(pi(Error(a(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?`text`:`HTML`,``)),e)),Mi}function Pi(e){var t=e.stateNode,n=e.type,r=e.memoizedProps;switch(t[rt]=e,t[it]=r,n){case`dialog`:$(`cancel`,t),$(`close`,t);break;case`iframe`:case`object`:case`embed`:$(`load`,t);break;case`video`:case`audio`:for(n=0;n<gd.length;n++)$(gd[n],t);break;case`source`:$(`error`,t);break;case`img`:case`image`:case`link`:$(`error`,t),$(`load`,t);break;case`details`:$(`toggle`,t);break;case`input`:$(`invalid`,t),Rt(t,r.value,r.defaultValue,r.checked,r.defaultChecked,r.type,r.name,!0);break;case`select`:$(`invalid`,t);break;case`textarea`:$(`invalid`,t),Ht(t,r.value,r.defaultValue,r.children)}n=r.children,typeof n!=`string`&&typeof n!=`number`&&typeof n!=`bigint`||t.textContent===``+n||!0===r.suppressHydrationWarning||jd(t.textContent,n)?(r.popover!=null&&($(`beforetoggle`,t),$(`toggle`,t)),r.onScroll!=null&&$(`scroll`,t),r.onScrollEnd!=null&&$(`scrollend`,t),r.onClick!=null&&(t.onclick=Zt),t=!0):t=!1,t||Ni(e,!0)}function Fi(e){for(Oi=e.return;Oi;)switch(Oi.tag){case 5:case 31:case 13:ji=!1;return;case 27:case 3:ji=!0;return;default:Oi=Oi.return}}function Ii(e){if(e!==Oi)return!1;if(!W)return Fi(e),W=!0,!1;var t=e.tag,n;if((n=t!==3&&t!==27)&&((n=t===5)&&(n=e.type,n=!(n!==`form`&&n!==`button`)||Ud(e.type,e.memoizedProps)),n=!n),n&&ki&&Ni(e),Fi(e),t===13){if(e=e.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(a(317));ki=uf(e)}else if(t===31){if(e=e.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(a(317));ki=uf(e)}else t===27?(t=ki,Zd(e.type)?(e=lf,lf=null,ki=e):ki=t):ki=Oi?cf(e.stateNode.nextSibling):null;return!0}function Li(){ki=Oi=null,W=!1}function Ri(){var e=Ai;return e!==null&&(Yl===null?Yl=e:Yl.push.apply(Yl,e),Ai=null),e}function zi(e){Ai===null?Ai=[e]:Ai.push(e)}var Bi=le(null),Vi=null,Hi=null;function Ui(e,t,n){M(Bi,t._currentValue),t._currentValue=n}function Wi(e){e._currentValue=Bi.current,j(Bi)}function Gi(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)===t?r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t):(e.childLanes|=t,r!==null&&(r.childLanes|=t)),e===n)break;e=e.return}}function Ki(e,t,n,r){var i=e.child;for(i!==null&&(i.return=e);i!==null;){var o=i.dependencies;if(o!==null){var s=i.child;o=o.firstContext;a:for(;o!==null;){var c=o;o=i;for(var l=0;l<t.length;l++)if(c.context===t[l]){o.lanes|=n,c=o.alternate,c!==null&&(c.lanes|=n),Gi(o.return,n,e),r||(s=null);break a}o=c.next}}else if(i.tag===18){if(s=i.return,s===null)throw Error(a(341));s.lanes|=n,o=s.alternate,o!==null&&(o.lanes|=n),Gi(s,n,e),s=null}else s=i.child;if(s!==null)s.return=i;else for(s=i;s!==null;){if(s===e){s=null;break}if(i=s.sibling,i!==null){i.return=s.return,s=i;break}s=s.return}i=s}}function qi(e,t,n,r){e=null;for(var i=t,o=!1;i!==null;){if(!o){if(i.flags&524288)o=!0;else if(i.flags&262144)break}if(i.tag===10){var s=i.alternate;if(s===null)throw Error(a(387));if(s=s.memoizedProps,s!==null){var c=i.type;_r(i.pendingProps.value,s.value)||(e===null?e=[c]:e.push(c))}}else if(i===pe.current){if(s=i.alternate,s===null)throw Error(a(387));s.memoizedState.memoizedState!==i.memoizedState.memoizedState&&(e===null?e=[Qf]:e.push(Qf))}i=i.return}e!==null&&Ki(t,e,n,r),t.flags|=262144}function Ji(e){for(e=e.firstContext;e!==null;){if(!_r(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Yi(e){Vi=e,Hi=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function Xi(e){return Qi(Vi,e)}function Zi(e,t){return Vi===null&&Yi(e),Qi(e,t)}function Qi(e,t){var n=t._currentValue;if(t={context:t,memoizedValue:n,next:null},Hi===null){if(e===null)throw Error(a(308));Hi=t,e.dependencies={lanes:0,firstContext:t},e.flags|=524288}else Hi=Hi.next=t;return n}var $i=typeof AbortController<`u`?AbortController:function(){var e=[],t=this.signal={aborted:!1,addEventListener:function(t,n){e.push(n)}};this.abort=function(){t.aborted=!0,e.forEach(function(e){return e()})}},ea=t.unstable_scheduleCallback,ta=t.unstable_NormalPriority,G={$$typeof:S,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function na(){return{controller:new $i,data:new Map,refCount:0}}function ra(e){e.refCount--,e.refCount===0&&ea(ta,function(){e.controller.abort()})}var ia=null,aa=0,oa=0,sa=null;function ca(e,t){if(ia===null){var n=ia=[];aa=0,oa=ud(),sa={status:`pending`,value:void 0,then:function(e){n.push(e)}}}return aa++,t.then(la,la),t}function la(){if(--aa===0&&ia!==null){sa!==null&&(sa.status=`fulfilled`);var e=ia;ia=null,oa=0,sa=null;for(var t=0;t<e.length;t++)(0,e[t])()}}function ua(e,t){var n=[],r={status:`pending`,value:null,reason:null,then:function(e){n.push(e)}};return e.then(function(){r.status=`fulfilled`,r.value=t;for(var e=0;e<n.length;e++)(0,n[e])(t)},function(e){for(r.status=`rejected`,r.reason=e,e=0;e<n.length;e++)(0,n[e])(void 0)}),r}var da=k.S;k.S=function(e,t){Ql=ke(),typeof t==`object`&&t&&typeof t.then==`function`&&ca(e,t),da!==null&&da(e,t)};var fa=le(null);function pa(){var e=fa.current;return e===null?Y.pooledCache:e}function ma(e,t){t===null?M(fa,fa.current):M(fa,t.pool)}function ha(){var e=pa();return e===null?null:{parent:G._currentValue,pool:e}}var ga=Error(a(460)),_a=Error(a(474)),va=Error(a(542)),ya={then:function(){}};function ba(e){return e=e.status,e===`fulfilled`||e===`rejected`}function xa(e,t,n){switch(n=e[n],n===void 0?e.push(t):n!==t&&(t.then(Zt,Zt),t=n),t.status){case`fulfilled`:return t.value;case`rejected`:throw e=t.reason,Ta(e),e;default:if(typeof t.status==`string`)t.then(Zt,Zt);else{if(e=Y,e!==null&&100<e.shellSuspendCounter)throw Error(a(482));e=t,e.status=`pending`,e.then(function(e){if(t.status===`pending`){var n=t;n.status=`fulfilled`,n.value=e}},function(e){if(t.status===`pending`){var n=t;n.status=`rejected`,n.reason=e}})}switch(t.status){case`fulfilled`:return t.value;case`rejected`:throw e=t.reason,Ta(e),e}throw Ca=t,ga}}function Sa(e){try{var t=e._init;return t(e._payload)}catch(e){throw typeof e==`object`&&e&&typeof e.then==`function`?(Ca=e,ga):e}}var Ca=null;function wa(){if(Ca===null)throw Error(a(459));var e=Ca;return Ca=null,e}function Ta(e){if(e===ga||e===va)throw Error(a(483))}var Ea=null,Da=0;function Oa(e){var t=Da;return Da+=1,Ea===null&&(Ea=[]),xa(Ea,e,t)}function ka(e,t){t=t.props.ref,e.ref=t===void 0?null:t}function Aa(e,t){throw t.$$typeof===m?Error(a(525)):(e=Object.prototype.toString.call(t),Error(a(31,e===`[object Object]`?`object with keys {`+Object.keys(t).join(`, `)+`}`:e)))}function ja(e){function t(t,n){if(e){var r=t.deletions;r===null?(t.deletions=[n],t.flags|=16):r.push(n)}}function n(n,r){if(!e)return null;for(;r!==null;)t(n,r),r=r.sibling;return null}function r(e){for(var t=new Map;e!==null;)e.key===null?t.set(e.index,e):t.set(e.key,e),e=e.sibling;return t}function i(e,t){return e=ai(e,t),e.index=0,e.sibling=null,e}function o(t,n,r){return t.index=r,e?(r=t.alternate,r===null?(t.flags|=67108866,n):(r=r.index,r<n?(t.flags|=67108866,n):r)):(t.flags|=1048576,n)}function s(t){return e&&t.alternate===null&&(t.flags|=67108866),t}function c(e,t,n,r){return t===null||t.tag!==6?(t=li(n,e.mode,r),t.return=e,t):(t=i(t,n),t.return=e,t)}function l(e,t,n,r){var a=n.type;return a===_?d(e,t,n.props.children,r,n.key):t!==null&&(t.elementType===a||typeof a==`object`&&a&&a.$$typeof===D&&Sa(a)===t.type)?(t=i(t,n.props),ka(t,n),t.return=e,t):(t=si(n.type,n.key,n.props,null,e.mode,r),ka(t,n),t.return=e,t)}function u(e,t,n,r){return t===null||t.tag!==4||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?(t=di(n,e.mode,r),t.return=e,t):(t=i(t,n.children||[]),t.return=e,t)}function d(e,t,n,r,a){return t===null||t.tag!==7?(t=ci(n,e.mode,r,a),t.return=e,t):(t=i(t,n),t.return=e,t)}function f(e,t,n){if(typeof t==`string`&&t!==``||typeof t==`number`||typeof t==`bigint`)return t=li(``+t,e.mode,n),t.return=e,t;if(typeof t==`object`&&t){switch(t.$$typeof){case h:return n=si(t.type,t.key,t.props,null,e.mode,n),ka(n,t),n.return=e,n;case g:return t=di(t,e.mode,n),t.return=e,t;case D:return t=Sa(t),f(e,t,n)}if(ae(t)||ne(t))return t=ci(t,e.mode,n,null),t.return=e,t;if(typeof t.then==`function`)return f(e,Oa(t),n);if(t.$$typeof===S)return f(e,Zi(e,t),n);Aa(e,t)}return null}function p(e,t,n,r){var i=t===null?null:t.key;if(typeof n==`string`&&n!==``||typeof n==`number`||typeof n==`bigint`)return i===null?c(e,t,``+n,r):null;if(typeof n==`object`&&n){switch(n.$$typeof){case h:return n.key===i?l(e,t,n,r):null;case g:return n.key===i?u(e,t,n,r):null;case D:return n=Sa(n),p(e,t,n,r)}if(ae(n)||ne(n))return i===null?d(e,t,n,r,null):null;if(typeof n.then==`function`)return p(e,t,Oa(n),r);if(n.$$typeof===S)return p(e,t,Zi(e,n),r);Aa(e,n)}return null}function m(e,t,n,r,i){if(typeof r==`string`&&r!==``||typeof r==`number`||typeof r==`bigint`)return e=e.get(n)||null,c(t,e,``+r,i);if(typeof r==`object`&&r){switch(r.$$typeof){case h:return e=e.get(r.key===null?n:r.key)||null,l(t,e,r,i);case g:return e=e.get(r.key===null?n:r.key)||null,u(t,e,r,i);case D:return r=Sa(r),m(e,t,n,r,i)}if(ae(r)||ne(r))return e=e.get(n)||null,d(t,e,r,i,null);if(typeof r.then==`function`)return m(e,t,n,Oa(r),i);if(r.$$typeof===S)return m(e,t,n,Zi(t,r),i);Aa(t,r)}return null}function v(i,a,s,c){for(var l=null,u=null,d=a,h=a=0,g=null;d!==null&&h<s.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var _=p(i,d,s[h],c);if(_===null){d===null&&(d=g);break}e&&d&&_.alternate===null&&t(i,d),a=o(_,a,h),u===null?l=_:u.sibling=_,u=_,d=g}if(h===s.length)return n(i,d),W&&Ci(i,h),l;if(d===null){for(;h<s.length;h++)d=f(i,s[h],c),d!==null&&(a=o(d,a,h),u===null?l=d:u.sibling=d,u=d);return W&&Ci(i,h),l}for(d=r(d);h<s.length;h++)g=m(d,i,h,s[h],c),g!==null&&(e&&g.alternate!==null&&d.delete(g.key===null?h:g.key),a=o(g,a,h),u===null?l=g:u.sibling=g,u=g);return e&&d.forEach(function(e){return t(i,e)}),W&&Ci(i,h),l}function y(i,s,c,l){if(c==null)throw Error(a(151));for(var u=null,d=null,h=s,g=s=0,_=null,v=c.next();h!==null&&!v.done;g++,v=c.next()){h.index>g?(_=h,h=null):_=h.sibling;var y=p(i,h,v.value,l);if(y===null){h===null&&(h=_);break}e&&h&&y.alternate===null&&t(i,h),s=o(y,s,g),d===null?u=y:d.sibling=y,d=y,h=_}if(v.done)return n(i,h),W&&Ci(i,g),u;if(h===null){for(;!v.done;g++,v=c.next())v=f(i,v.value,l),v!==null&&(s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return W&&Ci(i,g),u}for(h=r(h);!v.done;g++,v=c.next())v=m(h,i,g,v.value,l),v!==null&&(e&&v.alternate!==null&&h.delete(v.key===null?g:v.key),s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return e&&h.forEach(function(e){return t(i,e)}),W&&Ci(i,g),u}function b(e,r,o,c){if(typeof o==`object`&&o&&o.type===_&&o.key===null&&(o=o.props.children),typeof o==`object`&&o){switch(o.$$typeof){case h:a:{for(var l=o.key;r!==null;){if(r.key===l){if(l=o.type,l===_){if(r.tag===7){n(e,r.sibling),c=i(r,o.props.children),c.return=e,e=c;break a}}else if(r.elementType===l||typeof l==`object`&&l&&l.$$typeof===D&&Sa(l)===r.type){n(e,r.sibling),c=i(r,o.props),ka(c,o),c.return=e,e=c;break a}n(e,r);break}else t(e,r);r=r.sibling}o.type===_?(c=ci(o.props.children,e.mode,c,o.key),c.return=e,e=c):(c=si(o.type,o.key,o.props,null,e.mode,c),ka(c,o),c.return=e,e=c)}return s(e);case g:a:{for(l=o.key;r!==null;){if(r.key===l)if(r.tag===4&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),c=i(r,o.children||[]),c.return=e,e=c;break a}else{n(e,r);break}else t(e,r);r=r.sibling}c=di(o,e.mode,c),c.return=e,e=c}return s(e);case D:return o=Sa(o),b(e,r,o,c)}if(ae(o))return v(e,r,o,c);if(ne(o)){if(l=ne(o),typeof l!=`function`)throw Error(a(150));return o=l.call(o),y(e,r,o,c)}if(typeof o.then==`function`)return b(e,r,Oa(o),c);if(o.$$typeof===S)return b(e,r,Zi(e,o),c);Aa(e,o)}return typeof o==`string`&&o!==``||typeof o==`number`||typeof o==`bigint`?(o=``+o,r!==null&&r.tag===6?(n(e,r.sibling),c=i(r,o),c.return=e,e=c):(n(e,r),c=li(o,e.mode,c),c.return=e,e=c),s(e)):n(e,r)}return function(e,t,n,r){try{Da=0;var i=b(e,t,n,r);return Ea=null,i}catch(t){if(t===ga||t===va)throw t;var a=ri(29,t,null,e.mode);return a.lanes=r,a.return=e,a}}}var Ma=ja(!0),Na=ja(!1),Pa=!1;function Fa(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ia(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function La(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Ra(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,J&2){var i=r.pending;return i===null?t.next=t:(t.next=i.next,i.next=t),r.pending=t,t=ei(e),$r(e,null,n),t}return Xr(e,r,t,n),ei(e)}function za(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,n&4194048)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Xe(e,n)}}function Ba(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var i=null,a=null;if(n=n.firstBaseUpdate,n!==null){do{var o={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};a===null?i=a=o:a=a.next=o,n=n.next}while(n!==null);a===null?i=a=t:a=a.next=t}else i=a=t;n={baseState:r.baseState,firstBaseUpdate:i,lastBaseUpdate:a,shared:r.shared,callbacks:r.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var Va=!1;function Ha(){if(Va){var e=sa;if(e!==null)throw e}}function Ua(e,t,n,r){Va=!1;var i=e.updateQueue;Pa=!1;var a=i.firstBaseUpdate,o=i.lastBaseUpdate,s=i.shared.pending;if(s!==null){i.shared.pending=null;var c=s,l=c.next;c.next=null,o===null?a=l:o.next=l,o=c;var u=e.alternate;u!==null&&(u=u.updateQueue,s=u.lastBaseUpdate,s!==o&&(s===null?u.firstBaseUpdate=l:s.next=l,u.lastBaseUpdate=c))}if(a!==null){var d=i.baseState;o=0,u=l=c=null,s=a;do{var f=s.lane&-536870913,m=f!==s.lane;if(m?(Z&f)===f:(r&f)===f){f!==0&&f===oa&&(Va=!0),u!==null&&(u=u.next={lane:0,tag:s.tag,payload:s.payload,callback:null,next:null});a:{var h=e,g=s;f=t;var _=n;switch(g.tag){case 1:if(h=g.payload,typeof h==`function`){d=h.call(_,d,f);break a}d=h;break a;case 3:h.flags=h.flags&-65537|128;case 0:if(h=g.payload,f=typeof h==`function`?h.call(_,d,f):h,f==null)break a;d=p({},d,f);break a;case 2:Pa=!0}}f=s.callback,f!==null&&(e.flags|=64,m&&(e.flags|=8192),m=i.callbacks,m===null?i.callbacks=[f]:m.push(f))}else m={lane:f,tag:s.tag,payload:s.payload,callback:s.callback,next:null},u===null?(l=u=m,c=d):u=u.next=m,o|=f;if(s=s.next,s===null){if(s=i.shared.pending,s===null)break;m=s,s=m.next,m.next=null,i.lastBaseUpdate=m,i.shared.pending=null}}while(1);u===null&&(c=d),i.baseState=c,i.firstBaseUpdate=l,i.lastBaseUpdate=u,a===null&&(i.shared.lanes=0),Ul|=o,e.lanes=o,e.memoizedState=d}}function Wa(e,t){if(typeof e!=`function`)throw Error(a(191,e));e.call(t)}function Ga(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;e<n.length;e++)Wa(n[e],t)}var Ka=le(null),qa=le(0);function Ja(e,t){e=Vl,M(qa,e),M(Ka,t),Vl=e|t.baseLanes}function Ya(){M(qa,Vl),M(Ka,Ka.current)}function Xa(){Vl=qa.current,j(Ka),j(qa)}var Za=le(null),Qa=null;function $a(e){var t=e.alternate;M(io,io.current&1),M(Za,e),Qa===null&&(t===null||Ka.current!==null||t.memoizedState!==null)&&(Qa=e)}function eo(e){M(io,io.current),M(Za,e),Qa===null&&(Qa=e)}function to(e){e.tag===22?(M(io,io.current),M(Za,e),Qa===null&&(Qa=e)):no(e)}function no(){M(io,io.current),M(Za,Za.current)}function ro(e){j(Za),Qa===e&&(Qa=null),j(io)}var io=le(0);function ao(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||af(n)||of(n)))return t}else if(t.tag===19&&(t.memoizedProps.revealOrder===`forwards`||t.memoizedProps.revealOrder===`backwards`||t.memoizedProps.revealOrder===`unstable_legacy-backwards`||t.memoizedProps.revealOrder===`together`)){if(t.flags&128)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var oo=0,K=null,so=null,co=null,lo=!1,uo=!1,fo=!1,po=0,mo=0,ho=null,go=0;function q(){throw Error(a(321))}function _o(e,t){if(t===null)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!_r(e[n],t[n]))return!1;return!0}function vo(e,t,n,r,i,a){return oo=a,K=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,k.H=e===null||e.memoizedState===null?Fs:Is,fo=!1,a=n(r,i),fo=!1,uo&&(a=bo(t,n,r,i)),yo(e),a}function yo(e){k.H=Ps;var t=so!==null&&so.next!==null;if(oo=0,co=so=K=null,lo=!1,mo=0,ho=null,t)throw Error(a(300));e===null||$s||(e=e.dependencies,e!==null&&Ji(e)&&($s=!0))}function bo(e,t,n,r){K=e;var i=0;do{if(uo&&(ho=null),mo=0,uo=!1,25<=i)throw Error(a(301));if(i+=1,co=so=null,e.updateQueue!=null){var o=e.updateQueue;o.lastEffect=null,o.events=null,o.stores=null,o.memoCache!=null&&(o.memoCache.index=0)}k.H=Ls,o=t(n,r)}while(uo);return o}function xo(){var e=k.H,t=e.useState()[0];return t=typeof t.then==`function`?Oo(t):t,e=e.useState()[0],(so===null?null:so.memoizedState)!==e&&(K.flags|=1024),t}function So(){var e=po!==0;return po=0,e}function Co(e,t,n){t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~n}function wo(e){if(lo){for(e=e.memoizedState;e!==null;){var t=e.queue;t!==null&&(t.pending=null),e=e.next}lo=!1}oo=0,co=so=K=null,uo=!1,mo=po=0,ho=null}function To(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return co===null?K.memoizedState=co=e:co=co.next=e,co}function Eo(){if(so===null){var e=K.alternate;e=e===null?null:e.memoizedState}else e=so.next;var t=co===null?K.memoizedState:co.next;if(t!==null)co=t,so=e;else{if(e===null)throw K.alternate===null?Error(a(467)):Error(a(310));so=e,e={memoizedState:so.memoizedState,baseState:so.baseState,baseQueue:so.baseQueue,queue:so.queue,next:null},co===null?K.memoizedState=co=e:co=co.next=e}return co}function Do(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Oo(e){var t=mo;return mo+=1,ho===null&&(ho=[]),e=xa(ho,e,t),t=K,(co===null?t.memoizedState:co.next)===null&&(t=t.alternate,k.H=t===null||t.memoizedState===null?Fs:Is),e}function ko(e){if(typeof e==`object`&&e){if(typeof e.then==`function`)return Oo(e);if(e.$$typeof===S)return Xi(e)}throw Error(a(438,String(e)))}function Ao(e){var t=null,n=K.updateQueue;if(n!==null&&(t=n.memoCache),t==null){var r=K.alternate;r!==null&&(r=r.updateQueue,r!==null&&(r=r.memoCache,r!=null&&(t={data:r.data.map(function(e){return e.slice()}),index:0})))}if(t??={data:[],index:0},n===null&&(n=Do(),K.updateQueue=n),n.memoCache=t,n=t.data[t.index],n===void 0)for(n=t.data[t.index]=Array(e),r=0;r<e;r++)n[r]=O;return t.index++,n}function jo(e,t){return typeof t==`function`?t(e):t}function Mo(e){return No(Eo(),so,e)}function No(e,t,n){var r=e.queue;if(r===null)throw Error(a(311));r.lastRenderedReducer=n;var i=e.baseQueue,o=r.pending;if(o!==null){if(i!==null){var s=i.next;i.next=o.next,o.next=s}t.baseQueue=i=o,r.pending=null}if(o=e.baseState,i===null)e.memoizedState=o;else{t=i.next;var c=s=null,l=null,u=t,d=!1;do{var f=u.lane&-536870913;if(f===u.lane?(oo&f)===f:(Z&f)===f){var p=u.revertLane;if(p===0)l!==null&&(l=l.next={lane:0,revertLane:0,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null}),f===oa&&(d=!0);else if((oo&p)===p){u=u.next,p===oa&&(d=!0);continue}else f={lane:0,revertLane:u.revertLane,gesture:null,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},l===null?(c=l=f,s=o):l=l.next=f,K.lanes|=p,Ul|=p;f=u.action,fo&&n(o,f),o=u.hasEagerState?u.eagerState:n(o,f)}else p={lane:f,revertLane:u.revertLane,gesture:u.gesture,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null},l===null?(c=l=p,s=o):l=l.next=p,K.lanes|=f,Ul|=f;u=u.next}while(u!==null&&u!==t);if(l===null?s=o:l.next=c,!_r(o,e.memoizedState)&&($s=!0,d&&(n=sa,n!==null)))throw n;e.memoizedState=o,e.baseState=s,e.baseQueue=l,r.lastRenderedState=o}return i===null&&(r.lanes=0),[e.memoizedState,r.dispatch]}function Po(e){var t=Eo(),n=t.queue;if(n===null)throw Error(a(311));n.lastRenderedReducer=e;var r=n.dispatch,i=n.pending,o=t.memoizedState;if(i!==null){n.pending=null;var s=i=i.next;do o=e(o,s.action),s=s.next;while(s!==i);_r(o,t.memoizedState)||($s=!0),t.memoizedState=o,t.baseQueue===null&&(t.baseState=o),n.lastRenderedState=o}return[o,r]}function Fo(e,t,n){var r=K,i=Eo(),o=W;if(o){if(n===void 0)throw Error(a(407));n=n()}else n=t();var s=!_r((so||i).memoizedState,n);if(s&&(i.memoizedState=n,$s=!0),i=i.queue,os(Ro.bind(null,r,i,e),[e]),i.getSnapshot!==t||s||co!==null&&co.memoizedState.tag&1){if(r.flags|=2048,ts(9,{destroy:void 0},Lo.bind(null,r,i,n,t),null),Y===null)throw Error(a(349));o||oo&127||Io(r,t,n)}return n}function Io(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},t=K.updateQueue,t===null?(t=Do(),K.updateQueue=t,t.stores=[e]):(n=t.stores,n===null?t.stores=[e]:n.push(e))}function Lo(e,t,n,r){t.value=n,t.getSnapshot=r,zo(t)&&Bo(e)}function Ro(e,t,n){return n(function(){zo(t)&&Bo(e)})}function zo(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!_r(e,n)}catch{return!0}}function Bo(e){var t=Qr(e,2);t!==null&&pu(t,e,2)}function Vo(e){var t=To();if(typeof e==`function`){var n=e;if(e=n(),fo){F(!0);try{n()}finally{F(!1)}}}return t.memoizedState=t.baseState=e,t.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:jo,lastRenderedState:e},t}function Ho(e,t,n,r){return e.baseState=n,No(e,so,typeof r==`function`?r:jo)}function Uo(e,t,n,r,i){if(js(e))throw Error(a(485));if(e=t.action,e!==null){var o={payload:i,action:e,next:null,isTransition:!0,status:`pending`,value:null,reason:null,listeners:[],then:function(e){o.listeners.push(e)}};k.T===null?o.isTransition=!1:n(!0),r(o),n=t.pending,n===null?(o.next=t.pending=o,Wo(t,o)):(o.next=n.next,t.pending=n.next=o)}}function Wo(e,t){var n=t.action,r=t.payload,i=e.state;if(t.isTransition){var a=k.T,o={};k.T=o;try{var s=n(i,r),c=k.S;c!==null&&c(o,s),Go(e,t,s)}catch(n){qo(e,t,n)}finally{a!==null&&o.types!==null&&(a.types=o.types),k.T=a}}else try{a=n(i,r),Go(e,t,a)}catch(n){qo(e,t,n)}}function Go(e,t,n){typeof n==`object`&&n&&typeof n.then==`function`?n.then(function(n){Ko(e,t,n)},function(n){return qo(e,t,n)}):Ko(e,t,n)}function Ko(e,t,n){t.status=`fulfilled`,t.value=n,Jo(t),e.state=n,t=e.pending,t!==null&&(n=t.next,n===t?e.pending=null:(n=n.next,t.next=n,Wo(e,n)))}function qo(e,t,n){var r=e.pending;if(e.pending=null,r!==null){r=r.next;do t.status=`rejected`,t.reason=n,Jo(t),t=t.next;while(t!==r)}e.action=null}function Jo(e){e=e.listeners;for(var t=0;t<e.length;t++)(0,e[t])()}function Yo(e,t){return t}function Xo(e,t){if(W){var n=Y.formState;if(n!==null){a:{var r=K;if(W){if(ki){b:{for(var i=ki,a=ji;i.nodeType!==8;){if(!a){i=null;break b}if(i=cf(i.nextSibling),i===null){i=null;break b}}a=i.data,i=a===`F!`||a===`F`?i:null}if(i){ki=cf(i.nextSibling),r=i.data===`F!`;break a}}Ni(r)}r=!1}r&&(t=n[0])}}return n=To(),n.memoizedState=n.baseState=t,r={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Yo,lastRenderedState:t},n.queue=r,n=Os.bind(null,K,r),r.dispatch=n,r=Vo(!1),a=As.bind(null,K,!1,r.queue),r=To(),i={state:t,dispatch:null,action:e,pending:null},r.queue=i,n=Uo.bind(null,K,i,a,n),i.dispatch=n,r.memoizedState=e,[t,n,!1]}function Zo(e){return Qo(Eo(),so,e)}function Qo(e,t,n){if(t=No(e,t,Yo)[0],e=Mo(jo)[0],typeof t==`object`&&t&&typeof t.then==`function`)try{var r=Oo(t)}catch(e){throw e===ga?va:e}else r=t;t=Eo();var i=t.queue,a=i.dispatch;return n!==t.memoizedState&&(K.flags|=2048,ts(9,{destroy:void 0},$o.bind(null,i,n),null)),[r,a,e]}function $o(e,t){e.action=t}function es(e){var t=Eo(),n=so;if(n!==null)return Qo(t,n,e);Eo(),t=t.memoizedState,n=Eo();var r=n.queue.dispatch;return n.memoizedState=e,[t,r,!1]}function ts(e,t,n,r){return e={tag:e,create:n,deps:r,inst:t,next:null},t=K.updateQueue,t===null&&(t=Do(),K.updateQueue=t),n=t.lastEffect,n===null?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function ns(){return Eo().memoizedState}function rs(e,t,n,r){var i=To();K.flags|=e,i.memoizedState=ts(1|t,{destroy:void 0},n,r===void 0?null:r)}function is(e,t,n,r){var i=Eo();r=r===void 0?null:r;var a=i.memoizedState.inst;so!==null&&r!==null&&_o(r,so.memoizedState.deps)?i.memoizedState=ts(t,a,n,r):(K.flags|=e,i.memoizedState=ts(1|t,a,n,r))}function as(e,t){rs(8390656,8,e,t)}function os(e,t){is(2048,8,e,t)}function ss(e){K.flags|=4;var t=K.updateQueue;if(t===null)t=Do(),K.updateQueue=t,t.events=[e];else{var n=t.events;n===null?t.events=[e]:n.push(e)}}function cs(e){var t=Eo().memoizedState;return ss({ref:t,nextImpl:e}),function(){if(J&2)throw Error(a(440));return t.impl.apply(void 0,arguments)}}function ls(e,t){return is(4,2,e,t)}function us(e,t){return is(4,4,e,t)}function ds(e,t){if(typeof t==`function`){e=e();var n=t(e);return function(){typeof n==`function`?n():t(null)}}if(t!=null)return e=e(),t.current=e,function(){t.current=null}}function fs(e,t,n){n=n==null?null:n.concat([e]),is(4,4,ds.bind(null,t,e),n)}function ps(){}function ms(e,t){var n=Eo();t=t===void 0?null:t;var r=n.memoizedState;return t!==null&&_o(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function hs(e,t){var n=Eo();t=t===void 0?null:t;var r=n.memoizedState;if(t!==null&&_o(t,r[1]))return r[0];if(r=e(),fo){F(!0);try{e()}finally{F(!1)}}return n.memoizedState=[r,t],r}function gs(e,t,n){return n===void 0||oo&1073741824&&!(Z&261930)?e.memoizedState=t:(e.memoizedState=n,e=fu(),K.lanes|=e,Ul|=e,n)}function _s(e,t,n,r){return _r(n,t)?n:Ka.current===null?!(oo&42)||oo&1073741824&&!(Z&261930)?($s=!0,e.memoizedState=n):(e=fu(),K.lanes|=e,Ul|=e,t):(e=gs(e,n,r),_r(e,t)||($s=!0),e)}function vs(e,t,n,r,i){var a=A.p;A.p=a!==0&&8>a?a:8;var o=k.T,s={};k.T=s,As(e,!1,t,n);try{var c=i(),l=k.S;l!==null&&l(s,c),typeof c==`object`&&c&&typeof c.then==`function`?ks(e,t,ua(c,r),du(e)):ks(e,t,r,du(e))}catch(n){ks(e,t,{then:function(){},status:`rejected`,reason:n},du())}finally{A.p=a,o!==null&&s.types!==null&&(o.types=s.types),k.T=o}}function ys(){}function bs(e,t,n,r){if(e.tag!==5)throw Error(a(476));var i=xs(e).queue;vs(e,i,t,oe,n===null?ys:function(){return Ss(e),n(r)})}function xs(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:oe,baseState:oe,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:jo,lastRenderedState:oe},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:jo,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function Ss(e){var t=xs(e);t.next===null&&(t=e.alternate.memoizedState),ks(e,t.next.queue,{},du())}function Cs(){return Xi(Qf)}function ws(){return Eo().memoizedState}function Ts(){return Eo().memoizedState}function Es(e){for(var t=e.return;t!==null;){switch(t.tag){case 24:case 3:var n=du();e=La(n);var r=Ra(t,e,n);r!==null&&(pu(r,t,n),za(r,t,n)),t={cache:na()},e.payload=t;return}t=t.return}}function Ds(e,t,n){var r=du();n={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},js(e)?Ms(t,n):(n=Zr(e,t,n,r),n!==null&&(pu(n,e,r),Ns(n,t,r)))}function Os(e,t,n){ks(e,t,n,du())}function ks(e,t,n,r){var i={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(js(e))Ms(t,i);else{var a=e.alternate;if(e.lanes===0&&(a===null||a.lanes===0)&&(a=t.lastRenderedReducer,a!==null))try{var o=t.lastRenderedState,s=a(o,n);if(i.hasEagerState=!0,i.eagerState=s,_r(s,o))return Xr(e,t,i,0),Y===null&&Yr(),!1}catch{}if(n=Zr(e,t,i,r),n!==null)return pu(n,e,r),Ns(n,t,r),!0}return!1}function As(e,t,n,r){if(r={lane:2,revertLane:ud(),gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null},js(e)){if(t)throw Error(a(479))}else t=Zr(e,n,r,2),t!==null&&pu(t,e,2)}function js(e){var t=e.alternate;return e===K||t!==null&&t===K}function Ms(e,t){uo=lo=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Ns(e,t,n){if(n&4194048){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Xe(e,n)}}var Ps={readContext:Xi,use:ko,useCallback:q,useContext:q,useEffect:q,useImperativeHandle:q,useLayoutEffect:q,useInsertionEffect:q,useMemo:q,useReducer:q,useRef:q,useState:q,useDebugValue:q,useDeferredValue:q,useTransition:q,useSyncExternalStore:q,useId:q,useHostTransitionStatus:q,useFormState:q,useActionState:q,useOptimistic:q,useMemoCache:q,useCacheRefresh:q};Ps.useEffectEvent=q;var Fs={readContext:Xi,use:ko,useCallback:function(e,t){return To().memoizedState=[e,t===void 0?null:t],e},useContext:Xi,useEffect:as,useImperativeHandle:function(e,t,n){n=n==null?null:n.concat([e]),rs(4194308,4,ds.bind(null,t,e),n)},useLayoutEffect:function(e,t){return rs(4194308,4,e,t)},useInsertionEffect:function(e,t){rs(4,2,e,t)},useMemo:function(e,t){var n=To();t=t===void 0?null:t;var r=e();if(fo){F(!0);try{e()}finally{F(!1)}}return n.memoizedState=[r,t],r},useReducer:function(e,t,n){var r=To();if(n!==void 0){var i=n(t);if(fo){F(!0);try{n(t)}finally{F(!1)}}}else i=t;return r.memoizedState=r.baseState=i,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:i},r.queue=e,e=e.dispatch=Ds.bind(null,K,e),[r.memoizedState,e]},useRef:function(e){var t=To();return e={current:e},t.memoizedState=e},useState:function(e){e=Vo(e);var t=e.queue,n=Os.bind(null,K,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:ps,useDeferredValue:function(e,t){return gs(To(),e,t)},useTransition:function(){var e=Vo(!1);return e=vs.bind(null,K,e.queue,!0,!1),To().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var r=K,i=To();if(W){if(n===void 0)throw Error(a(407));n=n()}else{if(n=t(),Y===null)throw Error(a(349));Z&127||Io(r,t,n)}i.memoizedState=n;var o={value:n,getSnapshot:t};return i.queue=o,as(Ro.bind(null,r,o,e),[e]),r.flags|=2048,ts(9,{destroy:void 0},Lo.bind(null,r,o,n,t),null),n},useId:function(){var e=To(),t=Y.identifierPrefix;if(W){var n=Si,r=xi;n=(r&~(1<<32-ze(r)-1)).toString(32)+n,t=`_`+t+`R_`+n,n=po++,0<n&&(t+=`H`+n.toString(32)),t+=`_`}else n=go++,t=`_`+t+`r_`+n.toString(32)+`_`;return e.memoizedState=t},useHostTransitionStatus:Cs,useFormState:Xo,useActionState:Xo,useOptimistic:function(e){var t=To();t.memoizedState=t.baseState=e;var n={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return t.queue=n,t=As.bind(null,K,!0,n),n.dispatch=t,[e,t]},useMemoCache:Ao,useCacheRefresh:function(){return To().memoizedState=Es.bind(null,K)},useEffectEvent:function(e){var t=To(),n={impl:e};return t.memoizedState=n,function(){if(J&2)throw Error(a(440));return n.impl.apply(void 0,arguments)}}},Is={readContext:Xi,use:ko,useCallback:ms,useContext:Xi,useEffect:os,useImperativeHandle:fs,useInsertionEffect:ls,useLayoutEffect:us,useMemo:hs,useReducer:Mo,useRef:ns,useState:function(){return Mo(jo)},useDebugValue:ps,useDeferredValue:function(e,t){return _s(Eo(),so.memoizedState,e,t)},useTransition:function(){var e=Mo(jo)[0],t=Eo().memoizedState;return[typeof e==`boolean`?e:Oo(e),t]},useSyncExternalStore:Fo,useId:ws,useHostTransitionStatus:Cs,useFormState:Zo,useActionState:Zo,useOptimistic:function(e,t){return Ho(Eo(),so,e,t)},useMemoCache:Ao,useCacheRefresh:Ts};Is.useEffectEvent=cs;var Ls={readContext:Xi,use:ko,useCallback:ms,useContext:Xi,useEffect:os,useImperativeHandle:fs,useInsertionEffect:ls,useLayoutEffect:us,useMemo:hs,useReducer:Po,useRef:ns,useState:function(){return Po(jo)},useDebugValue:ps,useDeferredValue:function(e,t){var n=Eo();return so===null?gs(n,e,t):_s(n,so.memoizedState,e,t)},useTransition:function(){var e=Po(jo)[0],t=Eo().memoizedState;return[typeof e==`boolean`?e:Oo(e),t]},useSyncExternalStore:Fo,useId:ws,useHostTransitionStatus:Cs,useFormState:es,useActionState:es,useOptimistic:function(e,t){var n=Eo();return so===null?(n.baseState=e,[e,n.queue.dispatch]):Ho(n,so,e,t)},useMemoCache:Ao,useCacheRefresh:Ts};Ls.useEffectEvent=cs;function Rs(e,t,n,r){t=e.memoizedState,n=n(r,t),n=n==null?t:p({},t,n),e.memoizedState=n,e.lanes===0&&(e.updateQueue.baseState=n)}var zs={enqueueSetState:function(e,t,n){e=e._reactInternals;var r=du(),i=La(r);i.payload=t,n!=null&&(i.callback=n),t=Ra(e,i,r),t!==null&&(pu(t,e,r),za(t,e,r))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=du(),i=La(r);i.tag=1,i.payload=t,n!=null&&(i.callback=n),t=Ra(e,i,r),t!==null&&(pu(t,e,r),za(t,e,r))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=du(),r=La(n);r.tag=2,t!=null&&(r.callback=t),t=Ra(e,r,n),t!==null&&(pu(t,e,n),za(t,e,n))}};function Bs(e,t,n,r,i,a,o){return e=e.stateNode,typeof e.shouldComponentUpdate==`function`?e.shouldComponentUpdate(r,a,o):t.prototype&&t.prototype.isPureReactComponent?!vr(n,r)||!vr(i,a):!0}function Vs(e,t,n,r){e=t.state,typeof t.componentWillReceiveProps==`function`&&t.componentWillReceiveProps(n,r),typeof t.UNSAFE_componentWillReceiveProps==`function`&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&zs.enqueueReplaceState(t,t.state,null)}function Hs(e,t){var n=t;if(`ref`in t)for(var r in n={},t)r!==`ref`&&(n[r]=t[r]);if(e=e.defaultProps)for(var i in n===t&&(n=p({},n)),e)n[i]===void 0&&(n[i]=e[i]);return n}function Us(e){Gr(e)}function Ws(e){console.error(e)}function Gs(e){Gr(e)}function Ks(e,t){try{var n=e.onUncaughtError;n(t.value,{componentStack:t.stack})}catch(e){setTimeout(function(){throw e})}}function qs(e,t,n){try{var r=e.onCaughtError;r(n.value,{componentStack:n.stack,errorBoundary:t.tag===1?t.stateNode:null})}catch(e){setTimeout(function(){throw e})}}function Js(e,t,n){return n=La(n),n.tag=3,n.payload={element:null},n.callback=function(){Ks(e,t)},n}function Ys(e){return e=La(e),e.tag=3,e}function Xs(e,t,n,r){var i=n.type.getDerivedStateFromError;if(typeof i==`function`){var a=r.value;e.payload=function(){return i(a)},e.callback=function(){qs(t,n,r)}}var o=n.stateNode;o!==null&&typeof o.componentDidCatch==`function`&&(e.callback=function(){qs(t,n,r),typeof i!=`function`&&(tu===null?tu=new Set([this]):tu.add(this));var e=r.stack;this.componentDidCatch(r.value,{componentStack:e===null?``:e})})}function Zs(e,t,n,r,i){if(n.flags|=32768,typeof r==`object`&&r&&typeof r.then==`function`){if(t=n.alternate,t!==null&&qi(t,n,i,!0),n=Za.current,n!==null){switch(n.tag){case 31:case 13:return Qa===null?Tu():n.alternate===null&&Hl===0&&(Hl=3),n.flags&=-257,n.flags|=65536,n.lanes=i,r===ya?n.flags|=16384:(t=n.updateQueue,t===null?n.updateQueue=new Set([r]):t.add(r),Wu(e,r,i)),!1;case 22:return n.flags|=65536,r===ya?n.flags|=16384:(t=n.updateQueue,t===null?(t={transitions:null,markerInstances:null,retryQueue:new Set([r])},n.updateQueue=t):(n=t.retryQueue,n===null?t.retryQueue=new Set([r]):n.add(r)),Wu(e,r,i)),!1}throw Error(a(435,n.tag))}return Wu(e,r,i),Tu(),!1}if(W)return t=Za.current,t===null?(r!==Mi&&(t=Error(a(423),{cause:r}),zi(pi(t,n))),e=e.current.alternate,e.flags|=65536,i&=-i,e.lanes|=i,r=pi(r,n),i=Js(e.stateNode,r,i),Ba(e,i),Hl!==4&&(Hl=2)):(!(t.flags&65536)&&(t.flags|=256),t.flags|=65536,t.lanes=i,r!==Mi&&(e=Error(a(422),{cause:r}),zi(pi(e,n)))),!1;var o=Error(a(520),{cause:r});if(o=pi(o,n),Jl===null?Jl=[o]:Jl.push(o),Hl!==4&&(Hl=2),t===null)return!0;r=pi(r,n),n=t;do{switch(n.tag){case 3:return n.flags|=65536,e=i&-i,n.lanes|=e,e=Js(n.stateNode,r,e),Ba(n,e),!1;case 1:if(t=n.type,o=n.stateNode,!(n.flags&128)&&(typeof t.getDerivedStateFromError==`function`||o!==null&&typeof o.componentDidCatch==`function`&&(tu===null||!tu.has(o))))return n.flags|=65536,i&=-i,n.lanes|=i,i=Ys(i),Xs(i,e,n,r),Ba(n,i),!1}n=n.return}while(n!==null);return!1}var Qs=Error(a(461)),$s=!1;function ec(e,t,n,r){t.child=e===null?Na(t,null,n,r):Ma(t,e.child,n,r)}function tc(e,t,n,r,i){n=n.render;var a=t.ref;if(`ref`in r){var o={};for(var s in r)s!==`ref`&&(o[s]=r[s])}else o=r;return Yi(t),r=vo(e,t,n,o,a,i),s=So(),e!==null&&!$s?(Co(e,t,i),Tc(e,t,i)):(W&&s&&Ti(t),t.flags|=1,ec(e,t,r,i),t.child)}function nc(e,t,n,r,i){if(e===null){var a=n.type;return typeof a==`function`&&!ii(a)&&a.defaultProps===void 0&&n.compare===null?(t.tag=15,t.type=a,rc(e,t,a,r,i)):(e=si(n.type,null,r,t,t.mode,i),e.ref=t.ref,e.return=t,t.child=e)}if(a=e.child,!Ec(e,i)){var o=a.memoizedProps;if(n=n.compare,n=n===null?vr:n,n(o,r)&&e.ref===t.ref)return Tc(e,t,i)}return t.flags|=1,e=ai(a,r),e.ref=t.ref,e.return=t,t.child=e}function rc(e,t,n,r,i){if(e!==null){var a=e.memoizedProps;if(vr(a,r)&&e.ref===t.ref)if($s=!1,t.pendingProps=r=a,Ec(e,i))e.flags&131072&&($s=!0);else return t.lanes=e.lanes,Tc(e,t,i)}return dc(e,t,n,r,i)}function ic(e,t,n,r){var i=r.children,a=e===null?null:e.memoizedState;if(e===null&&t.stateNode===null&&(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),r.mode===`hidden`){if(t.flags&128){if(a=a===null?n:a.baseLanes|n,e!==null){for(r=t.child=e.child,i=0;r!==null;)i=i|r.lanes|r.childLanes,r=r.sibling;r=i&~a}else r=0,t.child=null;return oc(e,t,a,n,r)}if(n&536870912)t.memoizedState={baseLanes:0,cachePool:null},e!==null&&ma(t,a===null?null:a.cachePool),a===null?Ya():Ja(t,a),to(t);else return r=t.lanes=536870912,oc(e,t,a===null?n:a.baseLanes|n,n,r)}else a===null?(e!==null&&ma(t,null),Ya(),no(t)):(ma(t,a.cachePool),Ja(t,a),no(t),t.memoizedState=null);return ec(e,t,i,n),t.child}function ac(e,t){return e!==null&&e.tag===22||t.stateNode!==null||(t.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),t.sibling}function oc(e,t,n,r,i){var a=pa();return a=a===null?null:{parent:G._currentValue,pool:a},t.memoizedState={baseLanes:n,cachePool:a},e!==null&&ma(t,null),Ya(),to(t),e!==null&&qi(e,t,r,!0),t.childLanes=i,null}function sc(e,t){return t=bc({mode:t.mode,children:t.children},e.mode),t.ref=e.ref,e.child=t,t.return=e,t}function cc(e,t,n){return Ma(t,e.child,null,n),e=sc(t,t.pendingProps),e.flags|=2,ro(t),t.memoizedState=null,e}function lc(e,t,n){var r=t.pendingProps,i=(t.flags&128)!=0;if(t.flags&=-129,e===null){if(W){if(r.mode===`hidden`)return e=sc(t,r),t.lanes=536870912,ac(null,e);if(eo(t),(e=ki)?(e=rf(e,ji),e=e!==null&&e.data===`&`?e:null,e!==null&&(t.memoizedState={dehydrated:e,treeContext:bi===null?null:{id:xi,overflow:Si},retryLane:536870912,hydrationErrors:null},n=ui(e),n.return=t,t.child=n,Oi=t,ki=null)):e=null,e===null)throw Ni(t);return t.lanes=536870912,null}return sc(t,r)}var o=e.memoizedState;if(o!==null){var s=o.dehydrated;if(eo(t),i)if(t.flags&256)t.flags&=-257,t=cc(e,t,n);else if(t.memoizedState!==null)t.child=e.child,t.flags|=128,t=null;else throw Error(a(558));else if($s||qi(e,t,n,!1),i=(n&e.childLanes)!==0,$s||i){if(r=Y,r!==null&&(s=Ze(r,n),s!==0&&s!==o.retryLane))throw o.retryLane=s,Qr(e,s),pu(r,e,s),Qs;Tu(),t=cc(e,t,n)}else e=o.treeContext,ki=cf(s.nextSibling),Oi=t,W=!0,Ai=null,ji=!1,e!==null&&Di(t,e),t=sc(t,r),t.flags|=4096;return t}return e=ai(e.child,{mode:r.mode,children:r.children}),e.ref=t.ref,t.child=e,e.return=t,e}function uc(e,t){var n=t.ref;if(n===null)e!==null&&e.ref!==null&&(t.flags|=4194816);else{if(typeof n!=`function`&&typeof n!=`object`)throw Error(a(284));(e===null||e.ref!==n)&&(t.flags|=4194816)}}function dc(e,t,n,r,i){return Yi(t),n=vo(e,t,n,r,void 0,i),r=So(),e!==null&&!$s?(Co(e,t,i),Tc(e,t,i)):(W&&r&&Ti(t),t.flags|=1,ec(e,t,n,i),t.child)}function fc(e,t,n,r,i,a){return Yi(t),t.updateQueue=null,n=bo(t,r,n,i),yo(e),r=So(),e!==null&&!$s?(Co(e,t,a),Tc(e,t,a)):(W&&r&&Ti(t),t.flags|=1,ec(e,t,n,a),t.child)}function pc(e,t,n,r,i){if(Yi(t),t.stateNode===null){var a=ti,o=n.contextType;typeof o==`object`&&o&&(a=Xi(o)),a=new n(r,a),t.memoizedState=a.state!==null&&a.state!==void 0?a.state:null,a.updater=zs,t.stateNode=a,a._reactInternals=t,a=t.stateNode,a.props=r,a.state=t.memoizedState,a.refs={},Fa(t),o=n.contextType,a.context=typeof o==`object`&&o?Xi(o):ti,a.state=t.memoizedState,o=n.getDerivedStateFromProps,typeof o==`function`&&(Rs(t,n,o,r),a.state=t.memoizedState),typeof n.getDerivedStateFromProps==`function`||typeof a.getSnapshotBeforeUpdate==`function`||typeof a.UNSAFE_componentWillMount!=`function`&&typeof a.componentWillMount!=`function`||(o=a.state,typeof a.componentWillMount==`function`&&a.componentWillMount(),typeof a.UNSAFE_componentWillMount==`function`&&a.UNSAFE_componentWillMount(),o!==a.state&&zs.enqueueReplaceState(a,a.state,null),Ua(t,r,a,i),Ha(),a.state=t.memoizedState),typeof a.componentDidMount==`function`&&(t.flags|=4194308),r=!0}else if(e===null){a=t.stateNode;var s=t.memoizedProps,c=Hs(n,s);a.props=c;var l=a.context,u=n.contextType;o=ti,typeof u==`object`&&u&&(o=Xi(u));var d=n.getDerivedStateFromProps;u=typeof d==`function`||typeof a.getSnapshotBeforeUpdate==`function`,s=t.pendingProps!==s,u||typeof a.UNSAFE_componentWillReceiveProps!=`function`&&typeof a.componentWillReceiveProps!=`function`||(s||l!==o)&&Vs(t,a,r,o),Pa=!1;var f=t.memoizedState;a.state=f,Ua(t,r,a,i),Ha(),l=t.memoizedState,s||f!==l||Pa?(typeof d==`function`&&(Rs(t,n,d,r),l=t.memoizedState),(c=Pa||Bs(t,n,c,r,f,l,o))?(u||typeof a.UNSAFE_componentWillMount!=`function`&&typeof a.componentWillMount!=`function`||(typeof a.componentWillMount==`function`&&a.componentWillMount(),typeof a.UNSAFE_componentWillMount==`function`&&a.UNSAFE_componentWillMount()),typeof a.componentDidMount==`function`&&(t.flags|=4194308)):(typeof a.componentDidMount==`function`&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),a.props=r,a.state=l,a.context=o,r=c):(typeof a.componentDidMount==`function`&&(t.flags|=4194308),r=!1)}else{a=t.stateNode,Ia(e,t),o=t.memoizedProps,u=Hs(n,o),a.props=u,d=t.pendingProps,f=a.context,l=n.contextType,c=ti,typeof l==`object`&&l&&(c=Xi(l)),s=n.getDerivedStateFromProps,(l=typeof s==`function`||typeof a.getSnapshotBeforeUpdate==`function`)||typeof a.UNSAFE_componentWillReceiveProps!=`function`&&typeof a.componentWillReceiveProps!=`function`||(o!==d||f!==c)&&Vs(t,a,r,c),Pa=!1,f=t.memoizedState,a.state=f,Ua(t,r,a,i),Ha();var p=t.memoizedState;o!==d||f!==p||Pa||e!==null&&e.dependencies!==null&&Ji(e.dependencies)?(typeof s==`function`&&(Rs(t,n,s,r),p=t.memoizedState),(u=Pa||Bs(t,n,u,r,f,p,c)||e!==null&&e.dependencies!==null&&Ji(e.dependencies))?(l||typeof a.UNSAFE_componentWillUpdate!=`function`&&typeof a.componentWillUpdate!=`function`||(typeof a.componentWillUpdate==`function`&&a.componentWillUpdate(r,p,c),typeof a.UNSAFE_componentWillUpdate==`function`&&a.UNSAFE_componentWillUpdate(r,p,c)),typeof a.componentDidUpdate==`function`&&(t.flags|=4),typeof a.getSnapshotBeforeUpdate==`function`&&(t.flags|=1024)):(typeof a.componentDidUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),typeof a.getSnapshotBeforeUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=p),a.props=r,a.state=p,a.context=c,r=u):(typeof a.componentDidUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),typeof a.getSnapshotBeforeUpdate!=`function`||o===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),r=!1)}return a=r,uc(e,t),r=(t.flags&128)!=0,a||r?(a=t.stateNode,n=r&&typeof n.getDerivedStateFromError!=`function`?null:a.render(),t.flags|=1,e!==null&&r?(t.child=Ma(t,e.child,null,i),t.child=Ma(t,null,n,i)):ec(e,t,n,i),t.memoizedState=a.state,e=t.child):e=Tc(e,t,i),e}function mc(e,t,n,r){return Li(),t.flags|=256,ec(e,t,n,r),t.child}var hc={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function gc(e){return{baseLanes:e,cachePool:ha()}}function _c(e,t,n){return e=e===null?0:e.childLanes&~n,t&&(e|=Kl),e}function vc(e,t,n){var r=t.pendingProps,i=!1,o=(t.flags&128)!=0,s;if((s=o)||(s=e!==null&&e.memoizedState===null?!1:(io.current&2)!=0),s&&(i=!0,t.flags&=-129),s=(t.flags&32)!=0,t.flags&=-33,e===null){if(W){if(i?$a(t):no(t),(e=ki)?(e=rf(e,ji),e=e!==null&&e.data!==`&`?e:null,e!==null&&(t.memoizedState={dehydrated:e,treeContext:bi===null?null:{id:xi,overflow:Si},retryLane:536870912,hydrationErrors:null},n=ui(e),n.return=t,t.child=n,Oi=t,ki=null)):e=null,e===null)throw Ni(t);return of(e)?t.lanes=32:t.lanes=536870912,null}var c=r.children;return r=r.fallback,i?(no(t),i=t.mode,c=bc({mode:`hidden`,children:c},i),r=ci(r,i,n,null),c.return=t,r.return=t,c.sibling=r,t.child=c,r=t.child,r.memoizedState=gc(n),r.childLanes=_c(e,s,n),t.memoizedState=hc,ac(null,r)):($a(t),yc(t,c))}var l=e.memoizedState;if(l!==null&&(c=l.dehydrated,c!==null)){if(o)t.flags&256?($a(t),t.flags&=-257,t=xc(e,t,n)):t.memoizedState===null?(no(t),c=r.fallback,i=t.mode,r=bc({mode:`visible`,children:r.children},i),c=ci(c,i,n,null),c.flags|=2,r.return=t,c.return=t,r.sibling=c,t.child=r,Ma(t,e.child,null,n),r=t.child,r.memoizedState=gc(n),r.childLanes=_c(e,s,n),t.memoizedState=hc,t=ac(null,r)):(no(t),t.child=e.child,t.flags|=128,t=null);else if($a(t),of(c)){if(s=c.nextSibling&&c.nextSibling.dataset,s)var u=s.dgst;s=u,r=Error(a(419)),r.stack=``,r.digest=s,zi({value:r,source:null,stack:null}),t=xc(e,t,n)}else if($s||qi(e,t,n,!1),s=(n&e.childLanes)!==0,$s||s){if(s=Y,s!==null&&(r=Ze(s,n),r!==0&&r!==l.retryLane))throw l.retryLane=r,Qr(e,r),pu(s,e,r),Qs;af(c)||Tu(),t=xc(e,t,n)}else af(c)?(t.flags|=192,t.child=e.child,t=null):(e=l.treeContext,ki=cf(c.nextSibling),Oi=t,W=!0,Ai=null,ji=!1,e!==null&&Di(t,e),t=yc(t,r.children),t.flags|=4096);return t}return i?(no(t),c=r.fallback,i=t.mode,l=e.child,u=l.sibling,r=ai(l,{mode:`hidden`,children:r.children}),r.subtreeFlags=l.subtreeFlags&65011712,u===null?(c=ci(c,i,n,null),c.flags|=2):c=ai(u,c),c.return=t,r.return=t,r.sibling=c,t.child=r,ac(null,r),r=t.child,c=e.child.memoizedState,c===null?c=gc(n):(i=c.cachePool,i===null?i=ha():(l=G._currentValue,i=i.parent===l?i:{parent:l,pool:l}),c={baseLanes:c.baseLanes|n,cachePool:i}),r.memoizedState=c,r.childLanes=_c(e,s,n),t.memoizedState=hc,ac(e.child,r)):($a(t),n=e.child,e=n.sibling,n=ai(n,{mode:`visible`,children:r.children}),n.return=t,n.sibling=null,e!==null&&(s=t.deletions,s===null?(t.deletions=[e],t.flags|=16):s.push(e)),t.child=n,t.memoizedState=null,n)}function yc(e,t){return t=bc({mode:`visible`,children:t},e.mode),t.return=e,e.child=t}function bc(e,t){return e=ri(22,e,null,t),e.lanes=0,e}function xc(e,t,n){return Ma(t,e.child,null,n),e=yc(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function Sc(e,t,n){e.lanes|=t;var r=e.alternate;r!==null&&(r.lanes|=t),Gi(e.return,t,n)}function Cc(e,t,n,r,i,a){var o=e.memoizedState;o===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:i,treeForkCount:a}:(o.isBackwards=t,o.rendering=null,o.renderingStartTime=0,o.last=r,o.tail=n,o.tailMode=i,o.treeForkCount=a)}function wc(e,t,n){var r=t.pendingProps,i=r.revealOrder,a=r.tail;r=r.children;var o=io.current,s=(o&2)!=0;if(s?(o=o&1|2,t.flags|=128):o&=1,M(io,o),ec(e,t,r,n),r=W?_i:0,!s&&e!==null&&e.flags&128)a:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&Sc(e,n,t);else if(e.tag===19)Sc(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break a;for(;e.sibling===null;){if(e.return===null||e.return===t)break a;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(i){case`forwards`:for(n=t.child,i=null;n!==null;)e=n.alternate,e!==null&&ao(e)===null&&(i=n),n=n.sibling;n=i,n===null?(i=t.child,t.child=null):(i=n.sibling,n.sibling=null),Cc(t,!1,i,n,a,r);break;case`backwards`:case`unstable_legacy-backwards`:for(n=null,i=t.child,t.child=null;i!==null;){if(e=i.alternate,e!==null&&ao(e)===null){t.child=i;break}e=i.sibling,i.sibling=n,n=i,i=e}Cc(t,!0,n,null,a,r);break;case`together`:Cc(t,!1,null,null,void 0,r);break;default:t.memoizedState=null}return t.child}function Tc(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),Ul|=t.lanes,(n&t.childLanes)===0)if(e!==null){if(qi(e,t,n,!1),(n&t.childLanes)===0)return null}else return null;if(e!==null&&t.child!==e.child)throw Error(a(153));if(t.child!==null){for(e=t.child,n=ai(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=ai(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function Ec(e,t){return(e.lanes&t)===0?(e=e.dependencies,!!(e!==null&&Ji(e))):!0}function Dc(e,t,n){switch(t.tag){case 3:me(t,t.stateNode.containerInfo),Ui(t,G,e.memoizedState.cache),Li();break;case 27:case 5:ge(t);break;case 4:me(t,t.stateNode.containerInfo);break;case 10:Ui(t,t.type,t.memoizedProps.value);break;case 31:if(t.memoizedState!==null)return t.flags|=128,eo(t),null;break;case 13:var r=t.memoizedState;if(r!==null)return r.dehydrated===null?(n&t.child.childLanes)===0?($a(t),e=Tc(e,t,n),e===null?null:e.sibling):vc(e,t,n):($a(t),t.flags|=128,null);$a(t);break;case 19:var i=(e.flags&128)!=0;if(r=(n&t.childLanes)!==0,r||=(qi(e,t,n,!1),(n&t.childLanes)!==0),i){if(r)return wc(e,t,n);t.flags|=128}if(i=t.memoizedState,i!==null&&(i.rendering=null,i.tail=null,i.lastEffect=null),M(io,io.current),r)break;return null;case 22:return t.lanes=0,ic(e,t,n,t.pendingProps);case 24:Ui(t,G,e.memoizedState.cache)}return Tc(e,t,n)}function Oc(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps)$s=!0;else{if(!Ec(e,n)&&!(t.flags&128))return $s=!1,Dc(e,t,n);$s=!!(e.flags&131072)}else $s=!1,W&&t.flags&1048576&&wi(t,_i,t.index);switch(t.lanes=0,t.tag){case 16:a:{var r=t.pendingProps;if(e=Sa(t.elementType),t.type=e,typeof e==`function`)ii(e)?(r=Hs(e,r),t.tag=1,t=pc(null,t,e,r,n)):(t.tag=0,t=dc(null,t,e,r,n));else{if(e!=null){var i=e.$$typeof;if(i===C){t.tag=11,t=tc(null,t,e,r,n);break a}else if(i===E){t.tag=14,t=nc(null,t,e,r,n);break a}}throw t=ie(e)||e,Error(a(306,t,``))}}return t;case 0:return dc(e,t,t.type,t.pendingProps,n);case 1:return r=t.type,i=Hs(r,t.pendingProps),pc(e,t,r,i,n);case 3:a:{if(me(t,t.stateNode.containerInfo),e===null)throw Error(a(387));r=t.pendingProps;var o=t.memoizedState;i=o.element,Ia(e,t),Ua(t,r,null,n);var s=t.memoizedState;if(r=s.cache,Ui(t,G,r),r!==o.cache&&Ki(t,[G],n,!0),Ha(),r=s.element,o.isDehydrated)if(o={element:r,isDehydrated:!1,cache:s.cache},t.updateQueue.baseState=o,t.memoizedState=o,t.flags&256){t=mc(e,t,r,n);break a}else if(r!==i){i=pi(Error(a(424)),t),zi(i),t=mc(e,t,r,n);break a}else{switch(e=t.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName===`HTML`?e.ownerDocument.body:e}for(ki=cf(e.firstChild),Oi=t,W=!0,Ai=null,ji=!0,n=Na(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling}else{if(Li(),r===i){t=Tc(e,t,n);break a}ec(e,t,r,n)}t=t.child}return t;case 26:return uc(e,t),e===null?(n=kf(t.type,null,t.pendingProps,null))?t.memoizedState=n:W||(n=t.type,e=t.pendingProps,r=Bd(fe.current).createElement(n),r[rt]=t,r[it]=e,Pd(r,n,e),_t(r),t.stateNode=r):t.memoizedState=kf(t.type,e.memoizedProps,t.pendingProps,e.memoizedState),null;case 27:return ge(t),e===null&&W&&(r=t.stateNode=ff(t.type,t.pendingProps,fe.current),Oi=t,ji=!0,i=ki,Zd(t.type)?(lf=i,ki=cf(r.firstChild)):ki=i),ec(e,t,t.pendingProps.children,n),uc(e,t),e===null&&(t.flags|=4194304),t.child;case 5:return e===null&&W&&((i=r=ki)&&(r=tf(r,t.type,t.pendingProps,ji),r===null?i=!1:(t.stateNode=r,Oi=t,ki=cf(r.firstChild),ji=!1,i=!0)),i||Ni(t)),ge(t),i=t.type,o=t.pendingProps,s=e===null?null:e.memoizedProps,r=o.children,Ud(i,o)?r=null:s!==null&&Ud(i,s)&&(t.flags|=32),t.memoizedState!==null&&(i=vo(e,t,xo,null,null,n),Qf._currentValue=i),uc(e,t),ec(e,t,r,n),t.child;case 6:return e===null&&W&&((e=n=ki)&&(n=nf(n,t.pendingProps,ji),n===null?e=!1:(t.stateNode=n,Oi=t,ki=null,e=!0)),e||Ni(t)),null;case 13:return vc(e,t,n);case 4:return me(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=Ma(t,null,r,n):ec(e,t,r,n),t.child;case 11:return tc(e,t,t.type,t.pendingProps,n);case 7:return ec(e,t,t.pendingProps,n),t.child;case 8:return ec(e,t,t.pendingProps.children,n),t.child;case 12:return ec(e,t,t.pendingProps.children,n),t.child;case 10:return r=t.pendingProps,Ui(t,t.type,r.value),ec(e,t,r.children,n),t.child;case 9:return i=t.type._context,r=t.pendingProps.children,Yi(t),i=Xi(i),r=r(i),t.flags|=1,ec(e,t,r,n),t.child;case 14:return nc(e,t,t.type,t.pendingProps,n);case 15:return rc(e,t,t.type,t.pendingProps,n);case 19:return wc(e,t,n);case 31:return lc(e,t,n);case 22:return ic(e,t,n,t.pendingProps);case 24:return Yi(t),r=Xi(G),e===null?(i=pa(),i===null&&(i=Y,o=na(),i.pooledCache=o,o.refCount++,o!==null&&(i.pooledCacheLanes|=n),i=o),t.memoizedState={parent:r,cache:i},Fa(t),Ui(t,G,i)):((e.lanes&n)!==0&&(Ia(e,t),Ua(t,null,null,n),Ha()),i=e.memoizedState,o=t.memoizedState,i.parent===r?(r=o.cache,Ui(t,G,r),r!==i.cache&&Ki(t,[G],n,!0)):(i={parent:r,cache:r},t.memoizedState=i,t.lanes===0&&(t.memoizedState=t.updateQueue.baseState=i),Ui(t,G,r))),ec(e,t,t.pendingProps.children,n),t.child;case 29:throw t.pendingProps}throw Error(a(156,t.tag))}function kc(e){e.flags|=4}function Ac(e,t,n,r,i){if((t=(e.mode&32)!=0)&&(t=!1),t){if(e.flags|=16777216,(i&335544128)===i)if(e.stateNode.complete)e.flags|=8192;else if(Su())e.flags|=8192;else throw Ca=ya,_a}else e.flags&=-16777217}function jc(e,t){if(t.type!==`stylesheet`||t.state.loading&4)e.flags&=-16777217;else if(e.flags|=16777216,!Wf(t))if(Su())e.flags|=8192;else throw Ca=ya,_a}function Mc(e,t){t!==null&&(e.flags|=4),e.flags&16384&&(t=e.tag===22?536870912:Ke(),e.lanes|=t,ql|=t)}function Nc(e,t){if(!W)switch(e.tailMode){case`hidden`:t=e.tail;for(var n=null;t!==null;)t.alternate!==null&&(n=t),t=t.sibling;n===null?e.tail=null:n.sibling=null;break;case`collapsed`:n=e.tail;for(var r=null;n!==null;)n.alternate!==null&&(r=n),n=n.sibling;r===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:r.sibling=null}}function Pc(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,r=0;if(t)for(var i=e.child;i!==null;)n|=i.lanes|i.childLanes,r|=i.subtreeFlags&65011712,r|=i.flags&65011712,i.return=e,i=i.sibling;else for(i=e.child;i!==null;)n|=i.lanes|i.childLanes,r|=i.subtreeFlags,r|=i.flags,i.return=e,i=i.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function Fc(e,t,n){var r=t.pendingProps;switch(Ei(t),t.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Pc(t),null;case 1:return Pc(t),null;case 3:return n=t.stateNode,r=null,e!==null&&(r=e.memoizedState.cache),t.memoizedState.cache!==r&&(t.flags|=2048),Wi(G),he(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),(e===null||e.child===null)&&(Ii(t)?kc(t):e===null||e.memoizedState.isDehydrated&&!(t.flags&256)||(t.flags|=1024,Ri())),Pc(t),null;case 26:var i=t.type,o=t.memoizedState;return e===null?(kc(t),o===null?(Pc(t),Ac(t,i,null,r,n)):(Pc(t),jc(t,o))):o?o===e.memoizedState?(Pc(t),t.flags&=-16777217):(kc(t),Pc(t),jc(t,o)):(e=e.memoizedProps,e!==r&&kc(t),Pc(t),Ac(t,i,e,r,n)),null;case 27:if(_e(t),n=fe.current,i=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==r&&kc(t);else{if(!r){if(t.stateNode===null)throw Error(a(166));return Pc(t),null}e=ue.current,Ii(t)?Pi(t,e):(e=ff(i,r,n),t.stateNode=e,kc(t))}return Pc(t),null;case 5:if(_e(t),i=t.type,e!==null&&t.stateNode!=null)e.memoizedProps!==r&&kc(t);else{if(!r){if(t.stateNode===null)throw Error(a(166));return Pc(t),null}if(o=ue.current,Ii(t))Pi(t,o);else{var s=Bd(fe.current);switch(o){case 1:o=s.createElementNS(`http://www.w3.org/2000/svg`,i);break;case 2:o=s.createElementNS(`http://www.w3.org/1998/Math/MathML`,i);break;default:switch(i){case`svg`:o=s.createElementNS(`http://www.w3.org/2000/svg`,i);break;case`math`:o=s.createElementNS(`http://www.w3.org/1998/Math/MathML`,i);break;case`script`:o=s.createElement(`div`),o.innerHTML=`<script><\/script>`,o=o.removeChild(o.firstChild);break;case`select`:o=typeof r.is==`string`?s.createElement(`select`,{is:r.is}):s.createElement(`select`),r.multiple?o.multiple=!0:r.size&&(o.size=r.size);break;default:o=typeof r.is==`string`?s.createElement(i,{is:r.is}):s.createElement(i)}}o[rt]=t,o[it]=r;a:for(s=t.child;s!==null;){if(s.tag===5||s.tag===6)o.appendChild(s.stateNode);else if(s.tag!==4&&s.tag!==27&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break a;for(;s.sibling===null;){if(s.return===null||s.return===t)break a;s=s.return}s.sibling.return=s.return,s=s.sibling}t.stateNode=o;a:switch(Pd(o,i,r),i){case`button`:case`input`:case`select`:case`textarea`:r=!!r.autoFocus;break a;case`img`:r=!0;break a;default:r=!1}r&&kc(t)}}return Pc(t),Ac(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==r&&kc(t);else{if(typeof r!=`string`&&t.stateNode===null)throw Error(a(166));if(e=fe.current,Ii(t)){if(e=t.stateNode,n=t.memoizedProps,r=null,i=Oi,i!==null)switch(i.tag){case 27:case 5:r=i.memoizedProps}e[rt]=t,e=!!(e.nodeValue===n||r!==null&&!0===r.suppressHydrationWarning||jd(e.nodeValue,n)),e||Ni(t,!0)}else e=Bd(e).createTextNode(r),e[rt]=t,t.stateNode=e}return Pc(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(r=Ii(t),n!==null){if(e===null){if(!r)throw Error(a(318));if(e=t.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(a(557));e[rt]=t}else Li(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Pc(t),e=!1}else n=Ri(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?(ro(t),t):(ro(t),null);if(t.flags&128)throw Error(a(558))}return Pc(t),null;case 13:if(r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(i=Ii(t),r!==null&&r.dehydrated!==null){if(e===null){if(!i)throw Error(a(318));if(i=t.memoizedState,i=i===null?null:i.dehydrated,!i)throw Error(a(317));i[rt]=t}else Li(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Pc(t),i=!1}else i=Ri(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=i),i=!0;if(!i)return t.flags&256?(ro(t),t):(ro(t),null)}return ro(t),t.flags&128?(t.lanes=n,t):(n=r!==null,e=e!==null&&e.memoizedState!==null,n&&(r=t.child,i=null,r.alternate!==null&&r.alternate.memoizedState!==null&&r.alternate.memoizedState.cachePool!==null&&(i=r.alternate.memoizedState.cachePool.pool),o=null,r.memoizedState!==null&&r.memoizedState.cachePool!==null&&(o=r.memoizedState.cachePool.pool),o!==i&&(r.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),Mc(t,t.updateQueue),Pc(t),null);case 4:return he(),e===null&&xd(t.stateNode.containerInfo),Pc(t),null;case 10:return Wi(t.type),Pc(t),null;case 19:if(j(io),r=t.memoizedState,r===null)return Pc(t),null;if(i=(t.flags&128)!=0,o=r.rendering,o===null)if(i)Nc(r,!1);else{if(Hl!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(o=ao(e),o!==null){for(t.flags|=128,Nc(r,!1),e=o.updateQueue,t.updateQueue=e,Mc(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)oi(n,e),n=n.sibling;return M(io,io.current&1|2),W&&Ci(t,r.treeForkCount),t.child}e=e.sibling}r.tail!==null&&ke()>$l&&(t.flags|=128,i=!0,Nc(r,!1),t.lanes=4194304)}else{if(!i)if(e=ao(o),e!==null){if(t.flags|=128,i=!0,e=e.updateQueue,t.updateQueue=e,Mc(t,e),Nc(r,!0),r.tail===null&&r.tailMode===`hidden`&&!o.alternate&&!W)return Pc(t),null}else 2*ke()-r.renderingStartTime>$l&&n!==536870912&&(t.flags|=128,i=!0,Nc(r,!1),t.lanes=4194304);r.isBackwards?(o.sibling=t.child,t.child=o):(e=r.last,e===null?t.child=o:e.sibling=o,r.last=o)}return r.tail===null?(Pc(t),null):(e=r.tail,r.rendering=e,r.tail=e.sibling,r.renderingStartTime=ke(),e.sibling=null,n=io.current,M(io,i?n&1|2:n&1),W&&Ci(t,r.treeForkCount),e);case 22:case 23:return ro(t),Xa(),r=t.memoizedState!==null,e===null?r&&(t.flags|=8192):e.memoizedState!==null!==r&&(t.flags|=8192),r?n&536870912&&!(t.flags&128)&&(Pc(t),t.subtreeFlags&6&&(t.flags|=8192)):Pc(t),n=t.updateQueue,n!==null&&Mc(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),r=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(r=t.memoizedState.cachePool.pool),r!==n&&(t.flags|=2048),e!==null&&j(fa),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),Wi(G),Pc(t),null;case 25:return null;case 30:return null}throw Error(a(156,t.tag))}function Ic(e,t){switch(Ei(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return Wi(G),he(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return _e(t),null;case 31:if(t.memoizedState!==null){if(ro(t),t.alternate===null)throw Error(a(340));Li()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 13:if(ro(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(a(340));Li()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return j(io),null;case 4:return he(),null;case 10:return Wi(t.type),null;case 22:case 23:return ro(t),Xa(),e!==null&&j(fa),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 24:return Wi(G),null;case 25:return null;default:return null}}function Lc(e,t){switch(Ei(t),t.tag){case 3:Wi(G),he();break;case 26:case 27:case 5:_e(t);break;case 4:he();break;case 31:t.memoizedState!==null&&ro(t);break;case 13:ro(t);break;case 19:j(io);break;case 10:Wi(t.type);break;case 22:case 23:ro(t),Xa(),e!==null&&j(fa);break;case 24:Wi(G)}}function Rc(e,t){try{var n=t.updateQueue,r=n===null?null:n.lastEffect;if(r!==null){var i=r.next;n=i;do{if((n.tag&e)===e){r=void 0;var a=n.create,o=n.inst;r=a(),o.destroy=r}n=n.next}while(n!==i)}}catch(e){Uu(t,t.return,e)}}function zc(e,t,n){try{var r=t.updateQueue,i=r===null?null:r.lastEffect;if(i!==null){var a=i.next;r=a;do{if((r.tag&e)===e){var o=r.inst,s=o.destroy;if(s!==void 0){o.destroy=void 0,i=t;var c=n,l=s;try{l()}catch(e){Uu(i,c,e)}}}r=r.next}while(r!==a)}}catch(e){Uu(t,t.return,e)}}function Bc(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;try{Ga(t,n)}catch(t){Uu(e,e.return,t)}}}function Vc(e,t,n){n.props=Hs(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(n){Uu(e,t,n)}}function Hc(e,t){try{var n=e.ref;if(n!==null){switch(e.tag){case 26:case 27:case 5:var r=e.stateNode;break;case 30:r=e.stateNode;break;default:r=e.stateNode}typeof n==`function`?e.refCleanup=n(r):n.current=r}}catch(n){Uu(e,t,n)}}function Uc(e,t){var n=e.ref,r=e.refCleanup;if(n!==null)if(typeof r==`function`)try{r()}catch(n){Uu(e,t,n)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n==`function`)try{n(null)}catch(n){Uu(e,t,n)}else n.current=null}function Wc(e){var t=e.type,n=e.memoizedProps,r=e.stateNode;try{a:switch(t){case`button`:case`input`:case`select`:case`textarea`:n.autoFocus&&r.focus();break a;case`img`:n.src?r.src=n.src:n.srcSet&&(r.srcset=n.srcSet)}}catch(t){Uu(e,e.return,t)}}function Gc(e,t,n){try{var r=e.stateNode;Fd(r,e.type,n,t),r[it]=t}catch(t){Uu(e,e.return,t)}}function Kc(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Zd(e.type)||e.tag===4}function qc(e){a:for(;;){for(;e.sibling===null;){if(e.return===null||Kc(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Zd(e.type)||e.flags&2||e.child===null||e.tag===4)continue a;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Jc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?(n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n).insertBefore(e,t):(t=n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n,t.appendChild(e),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=Zt));else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for(Jc(e,t,n),e=e.sibling;e!==null;)Jc(e,t,n),e=e.sibling}function Yc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(Yc(e,t,n),e=e.sibling;e!==null;)Yc(e,t,n),e=e.sibling}function Xc(e){var t=e.stateNode,n=e.memoizedProps;try{for(var r=e.type,i=t.attributes;i.length;)t.removeAttributeNode(i[0]);Pd(t,r,n),t[rt]=e,t[it]=n}catch(t){Uu(e,e.return,t)}}var Zc=!1,Qc=!1,$c=!1,el=typeof WeakSet==`function`?WeakSet:Set,tl=null;function nl(e,t){if(e=e.containerInfo,Rd=sp,e=Sr(e),Cr(e)){if(`selectionStart`in e)var n={start:e.selectionStart,end:e.selectionEnd};else a:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var i=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break a}var s=0,c=-1,l=-1,u=0,d=0,f=e,p=null;b:for(;;){for(var m;f!==n||i!==0&&f.nodeType!==3||(c=s+i),f!==o||r!==0&&f.nodeType!==3||(l=s+r),f.nodeType===3&&(s+=f.nodeValue.length),(m=f.firstChild)!==null;)p=f,f=m;for(;;){if(f===e)break b;if(p===n&&++u===i&&(c=s),p===o&&++d===r&&(l=s),(m=f.nextSibling)!==null)break;f=p,p=f.parentNode}f=m}n=c===-1||l===-1?null:{start:c,end:l}}else n=null}n||={start:0,end:0}}else n=null;for(zd={focusedElem:e,selectionRange:n},sp=!1,tl=t;tl!==null;)if(t=tl,e=t.child,t.subtreeFlags&1028&&e!==null)e.return=t,tl=e;else for(;tl!==null;){switch(t=tl,o=t.alternate,e=t.flags,t.tag){case 0:if(e&4&&(e=t.updateQueue,e=e===null?null:e.events,e!==null))for(n=0;n<e.length;n++)i=e[n],i.ref.impl=i.nextImpl;break;case 11:case 15:break;case 1:if(e&1024&&o!==null){e=void 0,n=t,i=o.memoizedProps,o=o.memoizedState,r=n.stateNode;try{var h=Hs(n.type,i);e=r.getSnapshotBeforeUpdate(h,o),r.__reactInternalSnapshotBeforeUpdate=e}catch(e){Uu(n,n.return,e)}}break;case 3:if(e&1024){if(e=t.stateNode.containerInfo,n=e.nodeType,n===9)ef(e);else if(n===1)switch(e.nodeName){case`HEAD`:case`HTML`:case`BODY`:ef(e);break;default:e.textContent=``}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if(e&1024)throw Error(a(163))}if(e=t.sibling,e!==null){e.return=t.return,tl=e;break}tl=t.return}}function rl(e,t,n){var r=n.flags;switch(n.tag){case 0:case 11:case 15:vl(e,n),r&4&&Rc(5,n);break;case 1:if(vl(e,n),r&4)if(e=n.stateNode,t===null)try{e.componentDidMount()}catch(e){Uu(n,n.return,e)}else{var i=Hs(n.type,t.memoizedProps);t=t.memoizedState;try{e.componentDidUpdate(i,t,e.__reactInternalSnapshotBeforeUpdate)}catch(e){Uu(n,n.return,e)}}r&64&&Bc(n),r&512&&Hc(n,n.return);break;case 3:if(vl(e,n),r&64&&(e=n.updateQueue,e!==null)){if(t=null,n.child!==null)switch(n.child.tag){case 27:case 5:t=n.child.stateNode;break;case 1:t=n.child.stateNode}try{Ga(e,t)}catch(e){Uu(n,n.return,e)}}break;case 27:t===null&&r&4&&Xc(n);case 26:case 5:vl(e,n),t===null&&r&4&&Wc(n),r&512&&Hc(n,n.return);break;case 12:vl(e,n);break;case 31:vl(e,n),r&4&&ll(e,n);break;case 13:vl(e,n),r&4&&ul(e,n),r&64&&(e=n.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(n=qu.bind(null,n),sf(e,n))));break;case 22:if(r=n.memoizedState!==null||Zc,!r){t=t!==null&&t.memoizedState!==null||Qc,i=Zc;var a=Qc;Zc=r,(Qc=t)&&!a?bl(e,n,(n.subtreeFlags&8772)!=0):vl(e,n),Zc=i,Qc=a}break;case 30:break;default:vl(e,n)}}function il(e){var t=e.alternate;t!==null&&(e.alternate=null,il(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&ft(t)),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}var al=null,ol=!1;function sl(e,t,n){for(n=n.child;n!==null;)cl(e,t,n),n=n.sibling}function cl(e,t,n){if(Re&&typeof Re.onCommitFiberUnmount==`function`)try{Re.onCommitFiberUnmount(Le,n)}catch{}switch(n.tag){case 26:Qc||Uc(n,t),sl(e,t,n),n.memoizedState?n.memoizedState.count--:n.stateNode&&(n=n.stateNode,n.parentNode.removeChild(n));break;case 27:Qc||Uc(n,t);var r=al,i=ol;Zd(n.type)&&(al=n.stateNode,ol=!1),sl(e,t,n),pf(n.stateNode),al=r,ol=i;break;case 5:Qc||Uc(n,t);case 6:if(r=al,i=ol,al=null,sl(e,t,n),al=r,ol=i,al!==null)if(ol)try{(al.nodeType===9?al.body:al.nodeName===`HTML`?al.ownerDocument.body:al).removeChild(n.stateNode)}catch(e){Uu(n,t,e)}else try{al.removeChild(n.stateNode)}catch(e){Uu(n,t,e)}break;case 18:al!==null&&(ol?(e=al,Qd(e.nodeType===9?e.body:e.nodeName===`HTML`?e.ownerDocument.body:e,n.stateNode),Np(e)):Qd(al,n.stateNode));break;case 4:r=al,i=ol,al=n.stateNode.containerInfo,ol=!0,sl(e,t,n),al=r,ol=i;break;case 0:case 11:case 14:case 15:zc(2,n,t),Qc||zc(4,n,t),sl(e,t,n);break;case 1:Qc||(Uc(n,t),r=n.stateNode,typeof r.componentWillUnmount==`function`&&Vc(n,t,r)),sl(e,t,n);break;case 21:sl(e,t,n);break;case 22:Qc=(r=Qc)||n.memoizedState!==null,sl(e,t,n),Qc=r;break;default:sl(e,t,n)}}function ll(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{Np(e)}catch(e){Uu(t,t.return,e)}}}function ul(e,t){if(t.memoizedState===null&&(e=t.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{Np(e)}catch(e){Uu(t,t.return,e)}}function dl(e){switch(e.tag){case 31:case 13:case 19:var t=e.stateNode;return t===null&&(t=e.stateNode=new el),t;case 22:return e=e.stateNode,t=e._retryCache,t===null&&(t=e._retryCache=new el),t;default:throw Error(a(435,e.tag))}}function fl(e,t){var n=dl(e);t.forEach(function(t){if(!n.has(t)){n.add(t);var r=Ju.bind(null,e,t);t.then(r,r)}})}function pl(e,t){var n=t.deletions;if(n!==null)for(var r=0;r<n.length;r++){var i=n[r],o=e,s=t,c=s;a:for(;c!==null;){switch(c.tag){case 27:if(Zd(c.type)){al=c.stateNode,ol=!1;break a}break;case 5:al=c.stateNode,ol=!1;break a;case 3:case 4:al=c.stateNode.containerInfo,ol=!0;break a}c=c.return}if(al===null)throw Error(a(160));cl(o,s,i),al=null,ol=!1,o=i.alternate,o!==null&&(o.return=null),i.return=null}if(t.subtreeFlags&13886)for(t=t.child;t!==null;)hl(t,e),t=t.sibling}var ml=null;function hl(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:pl(t,e),gl(e),r&4&&(zc(3,e,e.return),Rc(3,e),zc(5,e,e.return));break;case 1:pl(t,e),gl(e),r&512&&(Qc||n===null||Uc(n,n.return)),r&64&&Zc&&(e=e.updateQueue,e!==null&&(r=e.callbacks,r!==null&&(n=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=n===null?r:n.concat(r))));break;case 26:var i=ml;if(pl(t,e),gl(e),r&512&&(Qc||n===null||Uc(n,n.return)),r&4){var o=n===null?null:n.memoizedState;if(r=e.memoizedState,n===null)if(r===null)if(e.stateNode===null){a:{r=e.type,n=e.memoizedProps,i=i.ownerDocument||i;b:switch(r){case`title`:o=i.getElementsByTagName(`title`)[0],(!o||o[dt]||o[rt]||o.namespaceURI===`http://www.w3.org/2000/svg`||o.hasAttribute(`itemprop`))&&(o=i.createElement(r),i.head.insertBefore(o,i.querySelector(`head > title`))),Pd(o,r,n),o[rt]=e,_t(o),r=o;break a;case`link`:var s=Vf(`link`,`href`,i).get(r+(n.href||``));if(s){for(var c=0;c<s.length;c++)if(o=s[c],o.getAttribute(`href`)===(n.href==null||n.href===``?null:n.href)&&o.getAttribute(`rel`)===(n.rel==null?null:n.rel)&&o.getAttribute(`title`)===(n.title==null?null:n.title)&&o.getAttribute(`crossorigin`)===(n.crossOrigin==null?null:n.crossOrigin)){s.splice(c,1);break b}}o=i.createElement(r),Pd(o,r,n),i.head.appendChild(o);break;case`meta`:if(s=Vf(`meta`,`content`,i).get(r+(n.content||``))){for(c=0;c<s.length;c++)if(o=s[c],o.getAttribute(`content`)===(n.content==null?null:``+n.content)&&o.getAttribute(`name`)===(n.name==null?null:n.name)&&o.getAttribute(`property`)===(n.property==null?null:n.property)&&o.getAttribute(`http-equiv`)===(n.httpEquiv==null?null:n.httpEquiv)&&o.getAttribute(`charset`)===(n.charSet==null?null:n.charSet)){s.splice(c,1);break b}}o=i.createElement(r),Pd(o,r,n),i.head.appendChild(o);break;default:throw Error(a(468,r))}o[rt]=e,_t(o),r=o}e.stateNode=r}else Hf(i,e.type,e.stateNode);else e.stateNode=If(i,r,e.memoizedProps);else o===r?r===null&&e.stateNode!==null&&Gc(e,e.memoizedProps,n.memoizedProps):(o===null?n.stateNode!==null&&(n=n.stateNode,n.parentNode.removeChild(n)):o.count--,r===null?Hf(i,e.type,e.stateNode):If(i,r,e.memoizedProps))}break;case 27:pl(t,e),gl(e),r&512&&(Qc||n===null||Uc(n,n.return)),n!==null&&r&4&&Gc(e,e.memoizedProps,n.memoizedProps);break;case 5:if(pl(t,e),gl(e),r&512&&(Qc||n===null||Uc(n,n.return)),e.flags&32){i=e.stateNode;try{Ut(i,``)}catch(t){Uu(e,e.return,t)}}r&4&&e.stateNode!=null&&(i=e.memoizedProps,Gc(e,i,n===null?i:n.memoizedProps)),r&1024&&($c=!0);break;case 6:if(pl(t,e),gl(e),r&4){if(e.stateNode===null)throw Error(a(162));r=e.memoizedProps,n=e.stateNode;try{n.nodeValue=r}catch(t){Uu(e,e.return,t)}}break;case 3:if(Bf=null,i=ml,ml=gf(t.containerInfo),pl(t,e),ml=i,gl(e),r&4&&n!==null&&n.memoizedState.isDehydrated)try{Np(t.containerInfo)}catch(t){Uu(e,e.return,t)}$c&&($c=!1,_l(e));break;case 4:r=ml,ml=gf(e.stateNode.containerInfo),pl(t,e),gl(e),ml=r;break;case 12:pl(t,e),gl(e);break;case 31:pl(t,e),gl(e),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,fl(e,r)));break;case 13:pl(t,e),gl(e),e.child.flags&8192&&e.memoizedState!==null!=(n!==null&&n.memoizedState!==null)&&(Zl=ke()),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,fl(e,r)));break;case 22:i=e.memoizedState!==null;var l=n!==null&&n.memoizedState!==null,u=Zc,d=Qc;if(Zc=u||i,Qc=d||l,pl(t,e),Qc=d,Zc=u,gl(e),r&8192)a:for(t=e.stateNode,t._visibility=i?t._visibility&-2:t._visibility|1,i&&(n===null||l||Zc||Qc||yl(e)),n=null,t=e;;){if(t.tag===5||t.tag===26){if(n===null){l=n=t;try{if(o=l.stateNode,i)s=o.style,typeof s.setProperty==`function`?s.setProperty(`display`,`none`,`important`):s.display=`none`;else{c=l.stateNode;var f=l.memoizedProps.style,p=f!=null&&f.hasOwnProperty(`display`)?f.display:null;c.style.display=p==null||typeof p==`boolean`?``:(``+p).trim()}}catch(e){Uu(l,l.return,e)}}}else if(t.tag===6){if(n===null){l=t;try{l.stateNode.nodeValue=i?``:l.memoizedProps}catch(e){Uu(l,l.return,e)}}}else if(t.tag===18){if(n===null){l=t;try{var m=l.stateNode;i?$d(m,!0):$d(l.stateNode,!1)}catch(e){Uu(l,l.return,e)}}}else if((t.tag!==22&&t.tag!==23||t.memoizedState===null||t===e)&&t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break a;for(;t.sibling===null;){if(t.return===null||t.return===e)break a;n===t&&(n=null),t=t.return}n===t&&(n=null),t.sibling.return=t.return,t=t.sibling}r&4&&(r=e.updateQueue,r!==null&&(n=r.retryQueue,n!==null&&(r.retryQueue=null,fl(e,n))));break;case 19:pl(t,e),gl(e),r&4&&(r=e.updateQueue,r!==null&&(e.updateQueue=null,fl(e,r)));break;case 30:break;case 21:break;default:pl(t,e),gl(e)}}function gl(e){var t=e.flags;if(t&2){try{for(var n,r=e.return;r!==null;){if(Kc(r)){n=r;break}r=r.return}if(n==null)throw Error(a(160));switch(n.tag){case 27:var i=n.stateNode;Yc(e,qc(e),i);break;case 5:var o=n.stateNode;n.flags&32&&(Ut(o,``),n.flags&=-33),Yc(e,qc(e),o);break;case 3:case 4:var s=n.stateNode.containerInfo;Jc(e,qc(e),s);break;default:throw Error(a(161))}}catch(t){Uu(e,e.return,t)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function _l(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var t=e;_l(t),t.tag===5&&t.flags&1024&&t.stateNode.reset(),e=e.sibling}}function vl(e,t){if(t.subtreeFlags&8772)for(t=t.child;t!==null;)rl(e,t.alternate,t),t=t.sibling}function yl(e){for(e=e.child;e!==null;){var t=e;switch(t.tag){case 0:case 11:case 14:case 15:zc(4,t,t.return),yl(t);break;case 1:Uc(t,t.return);var n=t.stateNode;typeof n.componentWillUnmount==`function`&&Vc(t,t.return,n),yl(t);break;case 27:pf(t.stateNode);case 26:case 5:Uc(t,t.return),yl(t);break;case 22:t.memoizedState===null&&yl(t);break;case 30:yl(t);break;default:yl(t)}e=e.sibling}}function bl(e,t,n){for(n&&=(t.subtreeFlags&8772)!=0,t=t.child;t!==null;){var r=t.alternate,i=e,a=t,o=a.flags;switch(a.tag){case 0:case 11:case 15:bl(i,a,n),Rc(4,a);break;case 1:if(bl(i,a,n),r=a,i=r.stateNode,typeof i.componentDidMount==`function`)try{i.componentDidMount()}catch(e){Uu(r,r.return,e)}if(r=a,i=r.updateQueue,i!==null){var s=r.stateNode;try{var c=i.shared.hiddenCallbacks;if(c!==null)for(i.shared.hiddenCallbacks=null,i=0;i<c.length;i++)Wa(c[i],s)}catch(e){Uu(r,r.return,e)}}n&&o&64&&Bc(a),Hc(a,a.return);break;case 27:Xc(a);case 26:case 5:bl(i,a,n),n&&r===null&&o&4&&Wc(a),Hc(a,a.return);break;case 12:bl(i,a,n);break;case 31:bl(i,a,n),n&&o&4&&ll(i,a);break;case 13:bl(i,a,n),n&&o&4&&ul(i,a);break;case 22:a.memoizedState===null&&bl(i,a,n),Hc(a,a.return);break;case 30:break;default:bl(i,a,n)}t=t.sibling}}function xl(e,t){var n=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),e=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(e=t.memoizedState.cachePool.pool),e!==n&&(e!=null&&e.refCount++,n!=null&&ra(n))}function Sl(e,t){e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(t.refCount++,e!=null&&ra(e))}function Cl(e,t,n,r){if(t.subtreeFlags&10256)for(t=t.child;t!==null;)wl(e,t,n,r),t=t.sibling}function wl(e,t,n,r){var i=t.flags;switch(t.tag){case 0:case 11:case 15:Cl(e,t,n,r),i&2048&&Rc(9,t);break;case 1:Cl(e,t,n,r);break;case 3:Cl(e,t,n,r),i&2048&&(e=null,t.alternate!==null&&(e=t.alternate.memoizedState.cache),t=t.memoizedState.cache,t!==e&&(t.refCount++,e!=null&&ra(e)));break;case 12:if(i&2048){Cl(e,t,n,r),e=t.stateNode;try{var a=t.memoizedProps,o=a.id,s=a.onPostCommit;typeof s==`function`&&s(o,t.alternate===null?`mount`:`update`,e.passiveEffectDuration,-0)}catch(e){Uu(t,t.return,e)}}else Cl(e,t,n,r);break;case 31:Cl(e,t,n,r);break;case 13:Cl(e,t,n,r);break;case 23:break;case 22:a=t.stateNode,o=t.alternate,t.memoizedState===null?a._visibility&2?Cl(e,t,n,r):(a._visibility|=2,Tl(e,t,n,r,(t.subtreeFlags&10256)!=0||!1)):a._visibility&2?Cl(e,t,n,r):El(e,t),i&2048&&xl(o,t);break;case 24:Cl(e,t,n,r),i&2048&&Sl(t.alternate,t);break;default:Cl(e,t,n,r)}}function Tl(e,t,n,r,i){for(i&&=(t.subtreeFlags&10256)!=0||!1,t=t.child;t!==null;){var a=e,o=t,s=n,c=r,l=o.flags;switch(o.tag){case 0:case 11:case 15:Tl(a,o,s,c,i),Rc(8,o);break;case 23:break;case 22:var u=o.stateNode;o.memoizedState===null?(u._visibility|=2,Tl(a,o,s,c,i)):u._visibility&2?Tl(a,o,s,c,i):El(a,o),i&&l&2048&&xl(o.alternate,o);break;case 24:Tl(a,o,s,c,i),i&&l&2048&&Sl(o.alternate,o);break;default:Tl(a,o,s,c,i)}t=t.sibling}}function El(e,t){if(t.subtreeFlags&10256)for(t=t.child;t!==null;){var n=e,r=t,i=r.flags;switch(r.tag){case 22:El(n,r),i&2048&&xl(r.alternate,r);break;case 24:El(n,r),i&2048&&Sl(r.alternate,r);break;default:El(n,r)}t=t.sibling}}var Dl=8192;function Ol(e,t,n){if(e.subtreeFlags&Dl)for(e=e.child;e!==null;)kl(e,t,n),e=e.sibling}function kl(e,t,n){switch(e.tag){case 26:Ol(e,t,n),e.flags&Dl&&e.memoizedState!==null&&Gf(n,ml,e.memoizedState,e.memoizedProps);break;case 5:Ol(e,t,n);break;case 3:case 4:var r=ml;ml=gf(e.stateNode.containerInfo),Ol(e,t,n),ml=r;break;case 22:e.memoizedState===null&&(r=e.alternate,r!==null&&r.memoizedState!==null?(r=Dl,Dl=16777216,Ol(e,t,n),Dl=r):Ol(e,t,n));break;default:Ol(e,t,n)}}function Al(e){var t=e.alternate;if(t!==null&&(e=t.child,e!==null)){t.child=null;do t=e.sibling,e.sibling=null,e=t;while(e!==null)}}function jl(e){var t=e.deletions;if(e.flags&16){if(t!==null)for(var n=0;n<t.length;n++){var r=t[n];tl=r,Pl(r,e)}Al(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)Ml(e),e=e.sibling}function Ml(e){switch(e.tag){case 0:case 11:case 15:jl(e),e.flags&2048&&zc(9,e,e.return);break;case 3:jl(e);break;case 12:jl(e);break;case 22:var t=e.stateNode;e.memoizedState!==null&&t._visibility&2&&(e.return===null||e.return.tag!==13)?(t._visibility&=-3,Nl(e)):jl(e);break;default:jl(e)}}function Nl(e){var t=e.deletions;if(e.flags&16){if(t!==null)for(var n=0;n<t.length;n++){var r=t[n];tl=r,Pl(r,e)}Al(e)}for(e=e.child;e!==null;){switch(t=e,t.tag){case 0:case 11:case 15:zc(8,t,t.return),Nl(t);break;case 22:n=t.stateNode,n._visibility&2&&(n._visibility&=-3,Nl(t));break;default:Nl(t)}e=e.sibling}}function Pl(e,t){for(;tl!==null;){var n=tl;switch(n.tag){case 0:case 11:case 15:zc(8,n,t);break;case 23:case 22:if(n.memoizedState!==null&&n.memoizedState.cachePool!==null){var r=n.memoizedState.cachePool.pool;r!=null&&r.refCount++}break;case 24:ra(n.memoizedState.cache)}if(r=n.child,r!==null)r.return=n,tl=r;else a:for(n=e;tl!==null;){r=tl;var i=r.sibling,a=r.return;if(il(r),r===n){tl=null;break a}if(i!==null){i.return=a,tl=i;break a}tl=a}}}var Fl={getCacheForType:function(e){var t=Xi(G),n=t.data.get(e);return n===void 0&&(n=e(),t.data.set(e,n)),n},cacheSignal:function(){return Xi(G).controller.signal}},Il=typeof WeakMap==`function`?WeakMap:Map,J=0,Y=null,X=null,Z=0,Q=0,Ll=null,Rl=!1,zl=!1,Bl=!1,Vl=0,Hl=0,Ul=0,Wl=0,Gl=0,Kl=0,ql=0,Jl=null,Yl=null,Xl=!1,Zl=0,Ql=0,$l=1/0,eu=null,tu=null,nu=0,ru=null,iu=null,au=0,ou=0,su=null,cu=null,lu=0,uu=null;function du(){return J&2&&Z!==0?Z&-Z:k.T===null?et():ud()}function fu(){if(Kl===0)if(!(Z&536870912)||W){var e=R;R<<=1,!(R&3932160)&&(R=262144),Kl=e}else Kl=536870912;return e=Za.current,e!==null&&(e.flags|=32),Kl}function pu(e,t,n){(e===Y&&(Q===2||Q===9)||e.cancelPendingCommit!==null)&&(bu(e,0),_u(e,Z,Kl,!1)),B(e,n),(!(J&2)||e!==Y)&&(e===Y&&(!(J&2)&&(Wl|=n),Hl===4&&_u(e,Z,Kl,!1)),nd(e))}function mu(e,t,n){if(J&6)throw Error(a(327));var r=!n&&(t&127)==0&&(t&e.expiredLanes)===0||z(e,t),i=r?Ou(e,t):Eu(e,t,!0),o=r;do{if(i===0){zl&&!r&&_u(e,t,0,!1);break}else{if(n=e.current.alternate,o&&!gu(n)){i=Eu(e,t,!1),o=!1;continue}if(i===2){if(o=t,e.errorRecoveryDisabledLanes&o)var s=0;else s=e.pendingLanes&-536870913,s=s===0?s&536870912?536870912:0:s;if(s!==0){t=s;a:{var c=e;i=Jl;var l=c.current.memoizedState.isDehydrated;if(l&&(bu(c,s).flags|=256),s=Eu(c,s,!1),s!==2){if(Bl&&!l){c.errorRecoveryDisabledLanes|=o,Wl|=o,i=4;break a}o=Yl,Yl=i,o!==null&&(Yl===null?Yl=o:Yl.push.apply(Yl,o))}i=s}if(o=!1,i!==2)continue}}if(i===1){bu(e,0),_u(e,t,0,!0);break}a:{switch(r=e,o=i,o){case 0:case 1:throw Error(a(345));case 4:if((t&4194048)!==t)break;case 6:_u(r,t,Kl,!Rl);break a;case 2:Yl=null;break;case 3:case 5:break;default:throw Error(a(329))}if((t&62914560)===t&&(i=Zl+300-ke(),10<i)){if(_u(r,t,Kl,!Rl),We(r,0,!0)!==0)break a;au=t,r.timeoutHandle=Kd(hu.bind(null,r,n,Yl,eu,Xl,t,Kl,Wl,ql,Rl,o,`Throttled`,-0,0),i);break a}hu(r,n,Yl,eu,Xl,t,Kl,Wl,ql,Rl,o,null,-0,0)}}break}while(1);nd(e)}function hu(e,t,n,r,i,a,o,s,c,l,u,d,f,p){if(e.timeoutHandle=-1,d=t.subtreeFlags,d&8192||(d&16785408)==16785408){d={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:Zt},kl(t,a,d);var m=(a&62914560)===a?Zl-ke():(a&4194048)===a?Ql-ke():0;if(m=qf(d,m),m!==null){au=a,e.cancelPendingCommit=m(Fu.bind(null,e,t,a,n,r,i,o,s,c,u,d,null,f,p)),_u(e,a,o,!l);return}}Fu(e,t,a,n,r,i,o,s,c)}function gu(e){for(var t=e;;){var n=t.tag;if((n===0||n===11||n===15)&&t.flags&16384&&(n=t.updateQueue,n!==null&&(n=n.stores,n!==null)))for(var r=0;r<n.length;r++){var i=n[r],a=i.getSnapshot;i=i.value;try{if(!_r(a(),i))return!1}catch{return!1}}if(n=t.child,t.subtreeFlags&16384&&n!==null)n.return=t,t=n;else{if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}function _u(e,t,n,r){t&=~Gl,t&=~Wl,e.suspendedLanes|=t,e.pingedLanes&=~t,r&&(e.warmLanes|=t),r=e.expirationTimes;for(var i=t;0<i;){var a=31-ze(i),o=1<<a;r[a]=-1,i&=~o}n!==0&&Ye(e,n,t)}function vu(){return J&6?!0:(rd(0,!1),!1)}function yu(){if(X!==null){if(Q===0)var e=X.return;else e=X,Hi=Vi=null,wo(e),Ea=null,Da=0,e=X;for(;e!==null;)Lc(e.alternate,e),e=e.return;X=null}}function bu(e,t){var n=e.timeoutHandle;n!==-1&&(e.timeoutHandle=-1,qd(n)),n=e.cancelPendingCommit,n!==null&&(e.cancelPendingCommit=null,n()),au=0,yu(),Y=e,X=n=ai(e.current,null),Z=t,Q=0,Ll=null,Rl=!1,zl=z(e,t),Bl=!1,ql=Kl=Gl=Wl=Ul=Hl=0,Yl=Jl=null,Xl=!1,t&8&&(t|=t&32);var r=e.entangledLanes;if(r!==0)for(e=e.entanglements,r&=t;0<r;){var i=31-ze(r),a=1<<i;t|=e[i],r&=~a}return Vl=t,Yr(),n}function xu(e,t){K=null,k.H=Ps,t===ga||t===va?(t=wa(),Q=3):t===_a?(t=wa(),Q=4):Q=t===Qs?8:typeof t==`object`&&t&&typeof t.then==`function`?6:1,Ll=t,X===null&&(Hl=1,Ks(e,pi(t,e.current)))}function Su(){var e=Za.current;return e===null?!0:(Z&4194048)===Z?Qa===null:(Z&62914560)===Z||Z&536870912?e===Qa:!1}function Cu(){var e=k.H;return k.H=Ps,e===null?Ps:e}function wu(){var e=k.A;return k.A=Fl,e}function Tu(){Hl=4,Rl||(Z&4194048)!==Z&&Za.current!==null||(zl=!0),!(Ul&134217727)&&!(Wl&134217727)||Y===null||_u(Y,Z,Kl,!1)}function Eu(e,t,n){var r=J;J|=2;var i=Cu(),a=wu();(Y!==e||Z!==t)&&(eu=null,bu(e,t)),t=!1;var o=Hl;a:do try{if(Q!==0&&X!==null){var s=X,c=Ll;switch(Q){case 8:yu(),o=6;break a;case 3:case 2:case 9:case 6:Za.current===null&&(t=!0);var l=Q;if(Q=0,Ll=null,Mu(e,s,c,l),n&&zl){o=0;break a}break;default:l=Q,Q=0,Ll=null,Mu(e,s,c,l)}}Du(),o=Hl;break}catch(t){xu(e,t)}while(1);return t&&e.shellSuspendCounter++,Hi=Vi=null,J=r,k.H=i,k.A=a,X===null&&(Y=null,Z=0,Yr()),o}function Du(){for(;X!==null;)Au(X)}function Ou(e,t){var n=J;J|=2;var r=Cu(),i=wu();Y!==e||Z!==t?(eu=null,$l=ke()+500,bu(e,t)):zl=z(e,t);a:do try{if(Q!==0&&X!==null){t=X;var o=Ll;b:switch(Q){case 1:Q=0,Ll=null,Mu(e,t,o,1);break;case 2:case 9:if(ba(o)){Q=0,Ll=null,ju(t);break}t=function(){Q!==2&&Q!==9||Y!==e||(Q=7),nd(e)},o.then(t,t);break a;case 3:Q=7;break a;case 4:Q=5;break a;case 7:ba(o)?(Q=0,Ll=null,ju(t)):(Q=0,Ll=null,Mu(e,t,o,7));break;case 5:var s=null;switch(X.tag){case 26:s=X.memoizedState;case 5:case 27:var c=X;if(s?Wf(s):c.stateNode.complete){Q=0,Ll=null;var l=c.sibling;if(l!==null)X=l;else{var u=c.return;u===null?X=null:(X=u,Nu(u))}break b}}Q=0,Ll=null,Mu(e,t,o,5);break;case 6:Q=0,Ll=null,Mu(e,t,o,6);break;case 8:yu(),Hl=6;break a;default:throw Error(a(462))}}ku();break}catch(t){xu(e,t)}while(1);return Hi=Vi=null,k.H=r,k.A=i,J=n,X===null?(Y=null,Z=0,Yr(),Hl):0}function ku(){for(;X!==null&&!De();)Au(X)}function Au(e){var t=Oc(e.alternate,e,Vl);e.memoizedProps=e.pendingProps,t===null?Nu(e):X=t}function ju(e){var t=e,n=t.alternate;switch(t.tag){case 15:case 0:t=fc(n,t,t.pendingProps,t.type,void 0,Z);break;case 11:t=fc(n,t,t.pendingProps,t.type.render,t.ref,Z);break;case 5:wo(t);default:Lc(n,t),t=X=oi(t,Vl),t=Oc(n,t,Vl)}e.memoizedProps=e.pendingProps,t===null?Nu(e):X=t}function Mu(e,t,n,r){Hi=Vi=null,wo(t),Ea=null,Da=0;var i=t.return;try{if(Zs(e,i,t,n,Z)){Hl=1,Ks(e,pi(n,e.current)),X=null;return}}catch(t){if(i!==null)throw X=i,t;Hl=1,Ks(e,pi(n,e.current)),X=null;return}t.flags&32768?(W||r===1?e=!0:zl||Z&536870912?e=!1:(Rl=e=!0,(r===2||r===9||r===3||r===6)&&(r=Za.current,r!==null&&r.tag===13&&(r.flags|=16384))),Pu(t,e)):Nu(t)}function Nu(e){var t=e;do{if(t.flags&32768){Pu(t,Rl);return}e=t.return;var n=Fc(t.alternate,t,Vl);if(n!==null){X=n;return}if(t=t.sibling,t!==null){X=t;return}X=t=e}while(t!==null);Hl===0&&(Hl=5)}function Pu(e,t){do{var n=Ic(e.alternate,e);if(n!==null){n.flags&=32767,X=n;return}if(n=e.return,n!==null&&(n.flags|=32768,n.subtreeFlags=0,n.deletions=null),!t&&(e=e.sibling,e!==null)){X=e;return}X=e=n}while(e!==null);Hl=6,X=null}function Fu(e,t,n,r,i,o,s,c,l){e.cancelPendingCommit=null;do Bu();while(nu!==0);if(J&6)throw Error(a(327));if(t!==null){if(t===e.current)throw Error(a(177));if(o=t.lanes|t.childLanes,o|=Jr,Je(e,n,o,s,c,l),e===Y&&(X=Y=null,Z=0),iu=t,ru=e,au=n,ou=o,su=i,cu=r,t.subtreeFlags&10256||t.flags&10256?(e.callbackNode=null,e.callbackPriority=0,Yu(Me,function(){return Vu(),null})):(e.callbackNode=null,e.callbackPriority=0),r=(t.flags&13878)!=0,t.subtreeFlags&13878||r){r=k.T,k.T=null,i=A.p,A.p=2,s=J,J|=4;try{nl(e,t,n)}finally{J=s,A.p=i,k.T=r}}nu=1,Iu(),Lu(),Ru()}}function Iu(){if(nu===1){nu=0;var e=ru,t=iu,n=(t.flags&13878)!=0;if(t.subtreeFlags&13878||n){n=k.T,k.T=null;var r=A.p;A.p=2;var i=J;J|=4;try{hl(t,e);var a=zd,o=Sr(e.containerInfo),s=a.focusedElem,c=a.selectionRange;if(o!==s&&s&&s.ownerDocument&&xr(s.ownerDocument.documentElement,s)){if(c!==null&&Cr(s)){var l=c.start,u=c.end;if(u===void 0&&(u=l),`selectionStart`in s)s.selectionStart=l,s.selectionEnd=Math.min(u,s.value.length);else{var d=s.ownerDocument||document,f=d&&d.defaultView||window;if(f.getSelection){var p=f.getSelection(),m=s.textContent.length,h=Math.min(c.start,m),g=c.end===void 0?h:Math.min(c.end,m);!p.extend&&h>g&&(o=g,g=h,h=o);var _=br(s,h),v=br(s,g);if(_&&v&&(p.rangeCount!==1||p.anchorNode!==_.node||p.anchorOffset!==_.offset||p.focusNode!==v.node||p.focusOffset!==v.offset)){var y=d.createRange();y.setStart(_.node,_.offset),p.removeAllRanges(),h>g?(p.addRange(y),p.extend(v.node,v.offset)):(y.setEnd(v.node,v.offset),p.addRange(y))}}}}for(d=[],p=s;p=p.parentNode;)p.nodeType===1&&d.push({element:p,left:p.scrollLeft,top:p.scrollTop});for(typeof s.focus==`function`&&s.focus(),s=0;s<d.length;s++){var b=d[s];b.element.scrollLeft=b.left,b.element.scrollTop=b.top}}sp=!!Rd,zd=Rd=null}finally{J=i,A.p=r,k.T=n}}e.current=t,nu=2}}function Lu(){if(nu===2){nu=0;var e=ru,t=iu,n=(t.flags&8772)!=0;if(t.subtreeFlags&8772||n){n=k.T,k.T=null;var r=A.p;A.p=2;var i=J;J|=4;try{rl(e,t.alternate,t)}finally{J=i,A.p=r,k.T=n}}nu=3}}function Ru(){if(nu===4||nu===3){nu=0,Oe();var e=ru,t=iu,n=au,r=cu;t.subtreeFlags&10256||t.flags&10256?nu=5:(nu=0,iu=ru=null,zu(e,e.pendingLanes));var i=e.pendingLanes;if(i===0&&(tu=null),$e(n),t=t.stateNode,Re&&typeof Re.onCommitFiberRoot==`function`)try{Re.onCommitFiberRoot(Le,t,void 0,(t.current.flags&128)==128)}catch{}if(r!==null){t=k.T,i=A.p,A.p=2,k.T=null;try{for(var a=e.onRecoverableError,o=0;o<r.length;o++){var s=r[o];a(s.value,{componentStack:s.stack})}}finally{k.T=t,A.p=i}}au&3&&Bu(),nd(e),i=e.pendingLanes,n&261930&&i&42?e===uu?lu++:(lu=0,uu=e):lu=0,rd(0,!1)}}function zu(e,t){(e.pooledCacheLanes&=t)===0&&(t=e.pooledCache,t!=null&&(e.pooledCache=null,ra(t)))}function Bu(){return Iu(),Lu(),Ru(),Vu()}function Vu(){if(nu!==5)return!1;var e=ru,t=ou;ou=0;var n=$e(au),r=k.T,i=A.p;try{A.p=32>n?32:n,k.T=null,n=su,su=null;var o=ru,s=au;if(nu=0,iu=ru=null,au=0,J&6)throw Error(a(331));var c=J;if(J|=4,Ml(o.current),wl(o,o.current,s,n),J=c,rd(0,!1),Re&&typeof Re.onPostCommitFiberRoot==`function`)try{Re.onPostCommitFiberRoot(Le,o)}catch{}return!0}finally{A.p=i,k.T=r,zu(e,t)}}function Hu(e,t,n){t=pi(n,t),t=Js(e.stateNode,t,2),e=Ra(e,t,2),e!==null&&(B(e,2),nd(e))}function Uu(e,t,n){if(e.tag===3)Hu(e,e,n);else for(;t!==null;){if(t.tag===3){Hu(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError==`function`||typeof r.componentDidCatch==`function`&&(tu===null||!tu.has(r))){e=pi(n,e),n=Ys(2),r=Ra(t,n,2),r!==null&&(Xs(n,r,t,e),B(r,2),nd(r));break}}t=t.return}}function Wu(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new Il;var i=new Set;r.set(t,i)}else i=r.get(t),i===void 0&&(i=new Set,r.set(t,i));i.has(n)||(Bl=!0,i.add(n),e=Gu.bind(null,e,t,n),t.then(e,e))}function Gu(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,Y===e&&(Z&n)===n&&(Hl===4||Hl===3&&(Z&62914560)===Z&&300>ke()-Zl?!(J&2)&&bu(e,0):Gl|=n,ql===Z&&(ql=0)),nd(e)}function Ku(e,t){t===0&&(t=Ke()),e=Qr(e,t),e!==null&&(B(e,t),nd(e))}function qu(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),Ku(e,n)}function Ju(e,t){var n=0;switch(e.tag){case 31:case 13:var r=e.stateNode,i=e.memoizedState;i!==null&&(n=i.retryLane);break;case 19:r=e.stateNode;break;case 22:r=e.stateNode._retryCache;break;default:throw Error(a(314))}r!==null&&r.delete(t),Ku(e,n)}function Yu(e,t){return N(e,t)}var Xu=null,Zu=null,Qu=!1,$u=!1,ed=!1,td=0;function nd(e){e!==Zu&&e.next===null&&(Zu===null?Xu=Zu=e:Zu=Zu.next=e),$u=!0,Qu||(Qu=!0,ld())}function rd(e,t){if(!ed&&$u){ed=!0;do for(var n=!1,r=Xu;r!==null;){if(!t)if(e!==0){var i=r.pendingLanes;if(i===0)var a=0;else{var o=r.suspendedLanes,s=r.pingedLanes;a=(1<<31-ze(42|e)+1)-1,a&=i&~(o&~s),a=a&201326741?a&201326741|1:a?a|2:0}a!==0&&(n=!0,cd(r,a))}else a=Z,a=We(r,r===Y?a:0,r.cancelPendingCommit!==null||r.timeoutHandle!==-1),!(a&3)||z(r,a)||(n=!0,cd(r,a));r=r.next}while(n);ed=!1}}function id(){ad()}function ad(){$u=Qu=!1;var e=0;td!==0&&Gd()&&(e=td);for(var t=ke(),n=null,r=Xu;r!==null;){var i=r.next,a=od(r,t);a===0?(r.next=null,n===null?Xu=i:n.next=i,i===null&&(Zu=n)):(n=r,(e!==0||a&3)&&($u=!0)),r=i}nu!==0&&nu!==5||rd(e,!1),td!==0&&(td=0)}function od(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,i=e.expirationTimes,a=e.pendingLanes&-62914561;0<a;){var o=31-ze(a),s=1<<o,c=i[o];c===-1?((s&n)===0||(s&r)!==0)&&(i[o]=Ge(s,t)):c<=t&&(e.expiredLanes|=s),a&=~s}if(t=Y,n=Z,n=We(e,e===t?n:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),r=e.callbackNode,n===0||e===t&&(Q===2||Q===9)||e.cancelPendingCommit!==null)return r!==null&&r!==null&&Ee(r),e.callbackNode=null,e.callbackPriority=0;if(!(n&3)||z(e,n)){if(t=n&-n,t===e.callbackPriority)return t;switch(r!==null&&Ee(r),$e(n)){case 2:case 8:n=je;break;case 32:n=Me;break;case 268435456:n=Pe;break;default:n=Me}return r=sd.bind(null,e),n=N(n,r),e.callbackPriority=t,e.callbackNode=n,t}return r!==null&&r!==null&&Ee(r),e.callbackPriority=2,e.callbackNode=null,2}function sd(e,t){if(nu!==0&&nu!==5)return e.callbackNode=null,e.callbackPriority=0,null;var n=e.callbackNode;if(Bu()&&e.callbackNode!==n)return null;var r=Z;return r=We(e,e===Y?r:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),r===0?null:(mu(e,r,t),od(e,ke()),e.callbackNode!=null&&e.callbackNode===n?sd.bind(null,e):null)}function cd(e,t){if(Bu())return null;mu(e,t,!0)}function ld(){Yd(function(){J&6?N(Ae,id):ad()})}function ud(){if(td===0){var e=oa;e===0&&(e=Ve,Ve<<=1,!(Ve&261888)&&(Ve=256)),td=e}return td}function dd(e){return e==null||typeof e==`symbol`||typeof e==`boolean`?null:typeof e==`function`?e:Xt(``+e)}function fd(e,t){var n=t.ownerDocument.createElement(`input`);return n.name=t.name,n.value=t.value,e.id&&n.setAttribute(`form`,e.id),t.parentNode.insertBefore(n,t),e=new FormData(e),n.parentNode.removeChild(n),e}function pd(e,t,n,r,i){if(t===`submit`&&n&&n.stateNode===i){var a=dd((i[it]||null).action),o=r.submitter;o&&(t=(t=o[it]||null)?dd(t.formAction):o.getAttribute(`formAction`),t!==null&&(a=t,o=null));var s=new vn(`action`,`action`,null,r,i);e.push({event:s,listeners:[{instance:null,listener:function(){if(r.defaultPrevented){if(td!==0){var e=o?fd(i,o):new FormData(i);bs(n,{pending:!0,data:e,method:i.method,action:a},null,e)}}else typeof a==`function`&&(s.preventDefault(),e=o?fd(i,o):new FormData(i),bs(n,{pending:!0,data:e,method:i.method,action:a},a,e))},currentTarget:i}]})}}for(var md=0;md<Ur.length;md++){var hd=Ur[md];Wr(hd.toLowerCase(),`on`+(hd[0].toUpperCase()+hd.slice(1)))}Wr(Fr,`onAnimationEnd`),Wr(Ir,`onAnimationIteration`),Wr(Lr,`onAnimationStart`),Wr(`dblclick`,`onDoubleClick`),Wr(`focusin`,`onFocus`),Wr(`focusout`,`onBlur`),Wr(Rr,`onTransitionRun`),Wr(zr,`onTransitionStart`),Wr(Br,`onTransitionCancel`),Wr(Vr,`onTransitionEnd`),xt(`onMouseEnter`,[`mouseout`,`mouseover`]),xt(`onMouseLeave`,[`mouseout`,`mouseover`]),xt(`onPointerEnter`,[`pointerout`,`pointerover`]),xt(`onPointerLeave`,[`pointerout`,`pointerover`]),bt(`onChange`,`change click focusin focusout input keydown keyup selectionchange`.split(` `)),bt(`onSelect`,`focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange`.split(` `)),bt(`onBeforeInput`,[`compositionend`,`keypress`,`textInput`,`paste`]),bt(`onCompositionEnd`,`compositionend focusout keydown keypress keyup mousedown`.split(` `)),bt(`onCompositionStart`,`compositionstart focusout keydown keypress keyup mousedown`.split(` `)),bt(`onCompositionUpdate`,`compositionupdate focusout keydown keypress keyup mousedown`.split(` `));var gd=`abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting`.split(` `),_d=new Set(`beforetoggle cancel close invalid load scroll scrollend toggle`.split(` `).concat(gd));function vd(e,t){t=(t&4)!=0;for(var n=0;n<e.length;n++){var r=e[n],i=r.event;r=r.listeners;a:{var a=void 0;if(t)for(var o=r.length-1;0<=o;o--){var s=r[o],c=s.instance,l=s.currentTarget;if(s=s.listener,c!==a&&i.isPropagationStopped())break a;a=s,i.currentTarget=l;try{a(i)}catch(e){Gr(e)}i.currentTarget=null,a=c}else for(o=0;o<r.length;o++){if(s=r[o],c=s.instance,l=s.currentTarget,s=s.listener,c!==a&&i.isPropagationStopped())break a;a=s,i.currentTarget=l;try{a(i)}catch(e){Gr(e)}i.currentTarget=null,a=c}}}}function $(e,t){var n=t[ot];n===void 0&&(n=t[ot]=new Set);var r=e+`__bubble`;n.has(r)||(Sd(t,e,2,!1),n.add(r))}function yd(e,t,n){var r=0;t&&(r|=4),Sd(n,e,r,t)}var bd=`_reactListening`+Math.random().toString(36).slice(2);function xd(e){if(!e[bd]){e[bd]=!0,vt.forEach(function(t){t!==`selectionchange`&&(_d.has(t)||yd(t,!1,e),yd(t,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[bd]||(t[bd]=!0,yd(`selectionchange`,!1,t))}}function Sd(e,t,n,r){switch(mp(t)){case 2:var i=cp;break;case 8:i=lp;break;default:i=up}n=i.bind(null,t,n,e),i=void 0,!cn||t!==`touchstart`&&t!==`touchmove`&&t!==`wheel`||(i=!0),r?i===void 0?e.addEventListener(t,n,!0):e.addEventListener(t,n,{capture:!0,passive:i}):i===void 0?e.addEventListener(t,n,!1):e.addEventListener(t,n,{passive:i})}function Cd(e,t,n,r,i){var a=r;if(!(t&1)&&!(t&2)&&r!==null)a:for(;;){if(r===null)return;var o=r.tag;if(o===3||o===4){var c=r.stateNode.containerInfo;if(c===i)break;if(o===4)for(o=r.return;o!==null;){var l=o.tag;if((l===3||l===4)&&o.stateNode.containerInfo===i)return;o=o.return}for(;c!==null;){if(o=pt(c),o===null)return;if(l=o.tag,l===5||l===6||l===26||l===27){r=a=o;continue a}c=c.parentNode}}r=r.return}an(function(){var r=a,i=$t(n),o=[];a:{var c=Hr.get(e);if(c!==void 0){var l=vn,u=e;switch(e){case`keypress`:if(pn(n)===0)break a;case`keydown`:case`keyup`:l=In;break;case`focusin`:u=`focus`,l=Dn;break;case`focusout`:u=`blur`,l=Dn;break;case`beforeblur`:case`afterblur`:l=Dn;break;case`click`:if(n.button===2)break a;case`auxclick`:case`dblclick`:case`mousedown`:case`mousemove`:case`mouseup`:case`mouseout`:case`mouseover`:case`contextmenu`:l=Tn;break;case`drag`:case`dragend`:case`dragenter`:case`dragexit`:case`dragleave`:case`dragover`:case`dragstart`:case`drop`:l=En;break;case`touchcancel`:case`touchend`:case`touchmove`:case`touchstart`:l=Rn;break;case Fr:case Ir:case Lr:l=On;break;case Vr:l=zn;break;case`scroll`:case`scrollend`:l=bn;break;case`wheel`:l=Bn;break;case`copy`:case`cut`:case`paste`:l=kn;break;case`gotpointercapture`:case`lostpointercapture`:case`pointercancel`:case`pointerdown`:case`pointermove`:case`pointerout`:case`pointerover`:case`pointerup`:l=Ln;break;case`toggle`:case`beforetoggle`:l=Vn}var d=(t&4)!=0,f=!d&&(e===`scroll`||e===`scrollend`),p=d?c===null?null:c+`Capture`:c;d=[];for(var m=r,h;m!==null;){var g=m;if(h=g.stateNode,g=g.tag,g!==5&&g!==26&&g!==27||h===null||p===null||(g=on(m,p),g!=null&&d.push(wd(m,g,h))),f)break;m=m.return}0<d.length&&(c=new l(c,u,null,n,i),o.push({event:c,listeners:d}))}}if(!(t&7)){a:{if(c=e===`mouseover`||e===`pointerover`,l=e===`mouseout`||e===`pointerout`,c&&n!==Qt&&(u=n.relatedTarget||n.fromElement)&&(pt(u)||u[at]))break a;if((l||c)&&(c=i.window===i?i:(c=i.ownerDocument)?c.defaultView||c.parentWindow:window,l?(u=n.relatedTarget||n.toElement,l=r,u=u?pt(u):null,u!==null&&(f=s(u),d=u.tag,u!==f||d!==5&&d!==27&&d!==6)&&(u=null)):(l=null,u=r),l!==u)){if(d=Tn,g=`onMouseLeave`,p=`onMouseEnter`,m=`mouse`,(e===`pointerout`||e===`pointerover`)&&(d=Ln,g=`onPointerLeave`,p=`onPointerEnter`,m=`pointer`),f=l==null?c:ht(l),h=u==null?c:ht(u),c=new d(g,m+`leave`,l,n,i),c.target=f,c.relatedTarget=h,g=null,pt(i)===r&&(d=new d(p,m+`enter`,u,n,i),d.target=h,d.relatedTarget=f,g=d),f=g,l&&u)b:{for(d=Ed,p=l,m=u,h=0,g=p;g;g=d(g))h++;g=0;for(var _=m;_;_=d(_))g++;for(;0<h-g;)p=d(p),h--;for(;0<g-h;)m=d(m),g--;for(;h--;){if(p===m||m!==null&&p===m.alternate){d=p;break b}p=d(p),m=d(m)}d=null}else d=null;l!==null&&Dd(o,c,l,d,!1),u!==null&&f!==null&&Dd(o,f,u,d,!0)}}a:{if(c=r?ht(r):window,l=c.nodeName&&c.nodeName.toLowerCase(),l===`select`||l===`input`&&c.type===`file`)var v=ar;else if($n(c))if(or)v=hr;else{v=pr;var y=fr}else l=c.nodeName,!l||l.toLowerCase()!==`input`||c.type!==`checkbox`&&c.type!==`radio`?r&&qt(r.elementType)&&(v=ar):v=mr;if(v&&=v(e,r)){er(o,v,n,i);break a}y&&y(e,c,r),e===`focusout`&&r&&c.type===`number`&&r.memoizedProps.value!=null&&zt(c,`number`,c.value)}switch(y=r?ht(r):window,e){case`focusin`:($n(y)||y.contentEditable===`true`)&&(Tr=y,Er=r,Dr=null);break;case`focusout`:Dr=Er=Tr=null;break;case`mousedown`:Or=!0;break;case`contextmenu`:case`mouseup`:case`dragend`:Or=!1,kr(o,n,i);break;case`selectionchange`:if(wr)break;case`keydown`:case`keyup`:kr(o,n,i)}var b;if(Un)b:{switch(e){case`compositionstart`:var x=`onCompositionStart`;break b;case`compositionend`:x=`onCompositionEnd`;break b;case`compositionupdate`:x=`onCompositionUpdate`;break b}x=void 0}else U?Yn(e,n)&&(x=`onCompositionEnd`):e===`keydown`&&n.keyCode===229&&(x=`onCompositionStart`);x&&(Kn&&n.locale!==`ko`&&(U||x!==`onCompositionStart`?x===`onCompositionEnd`&&U&&(b=fn()):(ln=i,un=`value`in ln?ln.value:ln.textContent,U=!0)),y=Td(r,x),0<y.length&&(x=new An(x,e,null,n,i),o.push({event:x,listeners:y}),b?x.data=b:(b=H(n),b!==null&&(x.data=b)))),(b=Gn?Xn(e,n):Zn(e,n))&&(x=Td(r,`onBeforeInput`),0<x.length&&(y=new An(`onBeforeInput`,`beforeinput`,null,n,i),o.push({event:y,listeners:x}),y.data=b)),pd(o,e,r,n,i)}vd(o,t)})}function wd(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Td(e,t){for(var n=t+`Capture`,r=[];e!==null;){var i=e,a=i.stateNode;if(i=i.tag,i!==5&&i!==26&&i!==27||a===null||(i=on(e,n),i!=null&&r.unshift(wd(e,i,a)),i=on(e,t),i!=null&&r.push(wd(e,i,a))),e.tag===3)return r;e=e.return}return[]}function Ed(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function Dd(e,t,n,r,i){for(var a=t._reactName,o=[];n!==null&&n!==r;){var s=n,c=s.alternate,l=s.stateNode;if(s=s.tag,c!==null&&c===r)break;s!==5&&s!==26&&s!==27||l===null||(c=l,i?(l=on(n,a),l!=null&&o.unshift(wd(n,l,c))):i||(l=on(n,a),l!=null&&o.push(wd(n,l,c)))),n=n.return}o.length!==0&&e.push({event:t,listeners:o})}var Od=/\r\n?/g,kd=/\u0000|\uFFFD/g;function Ad(e){return(typeof e==`string`?e:``+e).replace(Od,`
10
- `).replace(kd,``)}function jd(e,t){return t=Ad(t),Ad(e)===t}function Md(e,t,n,r,i,o){switch(n){case`children`:typeof r==`string`?t===`body`||t===`textarea`&&r===``||Ut(e,r):(typeof r==`number`||typeof r==`bigint`)&&t!==`body`&&Ut(e,``+r);break;case`className`:Dt(e,`class`,r);break;case`tabIndex`:Dt(e,`tabindex`,r);break;case`dir`:case`role`:case`viewBox`:case`width`:case`height`:Dt(e,n,r);break;case`style`:Kt(e,r,o);break;case`data`:if(t!==`object`){Dt(e,`data`,r);break}case`src`:case`href`:if(r===``&&(t!==`a`||n!==`href`)){e.removeAttribute(n);break}if(r==null||typeof r==`function`||typeof r==`symbol`||typeof r==`boolean`){e.removeAttribute(n);break}r=Xt(``+r),e.setAttribute(n,r);break;case`action`:case`formAction`:if(typeof r==`function`){e.setAttribute(n,`javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')`);break}else typeof o==`function`&&(n===`formAction`?(t!==`input`&&Md(e,t,`name`,i.name,i,null),Md(e,t,`formEncType`,i.formEncType,i,null),Md(e,t,`formMethod`,i.formMethod,i,null),Md(e,t,`formTarget`,i.formTarget,i,null)):(Md(e,t,`encType`,i.encType,i,null),Md(e,t,`method`,i.method,i,null),Md(e,t,`target`,i.target,i,null)));if(r==null||typeof r==`symbol`||typeof r==`boolean`){e.removeAttribute(n);break}r=Xt(``+r),e.setAttribute(n,r);break;case`onClick`:r!=null&&(e.onclick=Zt);break;case`onScroll`:r!=null&&$(`scroll`,e);break;case`onScrollEnd`:r!=null&&$(`scrollend`,e);break;case`dangerouslySetInnerHTML`:if(r!=null){if(typeof r!=`object`||!(`__html`in r))throw Error(a(61));if(n=r.__html,n!=null){if(i.children!=null)throw Error(a(60));e.innerHTML=n}}break;case`multiple`:e.multiple=r&&typeof r!=`function`&&typeof r!=`symbol`;break;case`muted`:e.muted=r&&typeof r!=`function`&&typeof r!=`symbol`;break;case`suppressContentEditableWarning`:case`suppressHydrationWarning`:case`defaultValue`:case`defaultChecked`:case`innerHTML`:case`ref`:break;case`autoFocus`:break;case`xlinkHref`:if(r==null||typeof r==`function`||typeof r==`boolean`||typeof r==`symbol`){e.removeAttribute(`xlink:href`);break}n=Xt(``+r),e.setAttributeNS(`http://www.w3.org/1999/xlink`,`xlink:href`,n);break;case`contentEditable`:case`spellCheck`:case`draggable`:case`value`:case`autoReverse`:case`externalResourcesRequired`:case`focusable`:case`preserveAlpha`:r!=null&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,``+r):e.removeAttribute(n);break;case`inert`:case`allowFullScreen`:case`async`:case`autoPlay`:case`controls`:case`default`:case`defer`:case`disabled`:case`disablePictureInPicture`:case`disableRemotePlayback`:case`formNoValidate`:case`hidden`:case`loop`:case`noModule`:case`noValidate`:case`open`:case`playsInline`:case`readOnly`:case`required`:case`reversed`:case`scoped`:case`seamless`:case`itemScope`:r&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,``):e.removeAttribute(n);break;case`capture`:case`download`:!0===r?e.setAttribute(n,``):!1!==r&&r!=null&&typeof r!=`function`&&typeof r!=`symbol`?e.setAttribute(n,r):e.removeAttribute(n);break;case`cols`:case`rows`:case`size`:case`span`:r!=null&&typeof r!=`function`&&typeof r!=`symbol`&&!isNaN(r)&&1<=r?e.setAttribute(n,r):e.removeAttribute(n);break;case`rowSpan`:case`start`:r==null||typeof r==`function`||typeof r==`symbol`||isNaN(r)?e.removeAttribute(n):e.setAttribute(n,r);break;case`popover`:$(`beforetoggle`,e),$(`toggle`,e),Et(e,`popover`,r);break;case`xlinkActuate`:Ot(e,`http://www.w3.org/1999/xlink`,`xlink:actuate`,r);break;case`xlinkArcrole`:Ot(e,`http://www.w3.org/1999/xlink`,`xlink:arcrole`,r);break;case`xlinkRole`:Ot(e,`http://www.w3.org/1999/xlink`,`xlink:role`,r);break;case`xlinkShow`:Ot(e,`http://www.w3.org/1999/xlink`,`xlink:show`,r);break;case`xlinkTitle`:Ot(e,`http://www.w3.org/1999/xlink`,`xlink:title`,r);break;case`xlinkType`:Ot(e,`http://www.w3.org/1999/xlink`,`xlink:type`,r);break;case`xmlBase`:Ot(e,`http://www.w3.org/XML/1998/namespace`,`xml:base`,r);break;case`xmlLang`:Ot(e,`http://www.w3.org/XML/1998/namespace`,`xml:lang`,r);break;case`xmlSpace`:Ot(e,`http://www.w3.org/XML/1998/namespace`,`xml:space`,r);break;case`is`:Et(e,`is`,r);break;case`innerText`:case`textContent`:break;default:(!(2<n.length)||n[0]!==`o`&&n[0]!==`O`||n[1]!==`n`&&n[1]!==`N`)&&(n=Jt.get(n)||n,Et(e,n,r))}}function Nd(e,t,n,r,i,o){switch(n){case`style`:Kt(e,r,o);break;case`dangerouslySetInnerHTML`:if(r!=null){if(typeof r!=`object`||!(`__html`in r))throw Error(a(61));if(n=r.__html,n!=null){if(i.children!=null)throw Error(a(60));e.innerHTML=n}}break;case`children`:typeof r==`string`?Ut(e,r):(typeof r==`number`||typeof r==`bigint`)&&Ut(e,``+r);break;case`onScroll`:r!=null&&$(`scroll`,e);break;case`onScrollEnd`:r!=null&&$(`scrollend`,e);break;case`onClick`:r!=null&&(e.onclick=Zt);break;case`suppressContentEditableWarning`:case`suppressHydrationWarning`:case`innerHTML`:case`ref`:break;case`innerText`:case`textContent`:break;default:if(!yt.hasOwnProperty(n))a:{if(n[0]===`o`&&n[1]===`n`&&(i=n.endsWith(`Capture`),t=n.slice(2,i?n.length-7:void 0),o=e[it]||null,o=o==null?null:o[n],typeof o==`function`&&e.removeEventListener(t,o,i),typeof r==`function`)){typeof o!=`function`&&o!==null&&(n in e?e[n]=null:e.hasAttribute(n)&&e.removeAttribute(n)),e.addEventListener(t,r,i);break a}n in e?e[n]=r:!0===r?e.setAttribute(n,``):Et(e,n,r)}}}function Pd(e,t,n){switch(t){case`div`:case`span`:case`svg`:case`path`:case`a`:case`g`:case`p`:case`li`:break;case`img`:$(`error`,e),$(`load`,e);var r=!1,i=!1,o;for(o in n)if(n.hasOwnProperty(o)){var s=n[o];if(s!=null)switch(o){case`src`:r=!0;break;case`srcSet`:i=!0;break;case`children`:case`dangerouslySetInnerHTML`:throw Error(a(137,t));default:Md(e,t,o,s,n,null)}}i&&Md(e,t,`srcSet`,n.srcSet,n,null),r&&Md(e,t,`src`,n.src,n,null);return;case`input`:$(`invalid`,e);var c=o=s=i=null,l=null,u=null;for(r in n)if(n.hasOwnProperty(r)){var d=n[r];if(d!=null)switch(r){case`name`:i=d;break;case`type`:s=d;break;case`checked`:l=d;break;case`defaultChecked`:u=d;break;case`value`:o=d;break;case`defaultValue`:c=d;break;case`children`:case`dangerouslySetInnerHTML`:if(d!=null)throw Error(a(137,t));break;default:Md(e,t,r,d,n,null)}}Rt(e,o,c,l,u,s,i,!1);return;case`select`:for(i in $(`invalid`,e),r=s=o=null,n)if(n.hasOwnProperty(i)&&(c=n[i],c!=null))switch(i){case`value`:o=c;break;case`defaultValue`:s=c;break;case`multiple`:r=c;default:Md(e,t,i,c,n,null)}t=o,n=s,e.multiple=!!r,t==null?n!=null&&Bt(e,!!r,n,!0):Bt(e,!!r,t,!1);return;case`textarea`:for(s in $(`invalid`,e),o=i=r=null,n)if(n.hasOwnProperty(s)&&(c=n[s],c!=null))switch(s){case`value`:r=c;break;case`defaultValue`:i=c;break;case`children`:o=c;break;case`dangerouslySetInnerHTML`:if(c!=null)throw Error(a(91));break;default:Md(e,t,s,c,n,null)}Ht(e,r,i,o);return;case`option`:for(l in n)if(n.hasOwnProperty(l)&&(r=n[l],r!=null))switch(l){case`selected`:e.selected=r&&typeof r!=`function`&&typeof r!=`symbol`;break;default:Md(e,t,l,r,n,null)}return;case`dialog`:$(`beforetoggle`,e),$(`toggle`,e),$(`cancel`,e),$(`close`,e);break;case`iframe`:case`object`:$(`load`,e);break;case`video`:case`audio`:for(r=0;r<gd.length;r++)$(gd[r],e);break;case`image`:$(`error`,e),$(`load`,e);break;case`details`:$(`toggle`,e);break;case`embed`:case`source`:case`link`:$(`error`,e),$(`load`,e);case`area`:case`base`:case`br`:case`col`:case`hr`:case`keygen`:case`meta`:case`param`:case`track`:case`wbr`:case`menuitem`:for(u in n)if(n.hasOwnProperty(u)&&(r=n[u],r!=null))switch(u){case`children`:case`dangerouslySetInnerHTML`:throw Error(a(137,t));default:Md(e,t,u,r,n,null)}return;default:if(qt(t)){for(d in n)n.hasOwnProperty(d)&&(r=n[d],r!==void 0&&Nd(e,t,d,r,n,void 0));return}}for(c in n)n.hasOwnProperty(c)&&(r=n[c],r!=null&&Md(e,t,c,r,n,null))}function Fd(e,t,n,r){switch(t){case`div`:case`span`:case`svg`:case`path`:case`a`:case`g`:case`p`:case`li`:break;case`input`:var i=null,o=null,s=null,c=null,l=null,u=null,d=null;for(m in n){var f=n[m];if(n.hasOwnProperty(m)&&f!=null)switch(m){case`checked`:break;case`value`:break;case`defaultValue`:l=f;default:r.hasOwnProperty(m)||Md(e,t,m,null,r,f)}}for(var p in r){var m=r[p];if(f=n[p],r.hasOwnProperty(p)&&(m!=null||f!=null))switch(p){case`type`:o=m;break;case`name`:i=m;break;case`checked`:u=m;break;case`defaultChecked`:d=m;break;case`value`:s=m;break;case`defaultValue`:c=m;break;case`children`:case`dangerouslySetInnerHTML`:if(m!=null)throw Error(a(137,t));break;default:m!==f&&Md(e,t,p,m,r,f)}}Lt(e,s,c,l,u,d,o,i);return;case`select`:for(o in m=s=c=p=null,n)if(l=n[o],n.hasOwnProperty(o)&&l!=null)switch(o){case`value`:break;case`multiple`:m=l;default:r.hasOwnProperty(o)||Md(e,t,o,null,r,l)}for(i in r)if(o=r[i],l=n[i],r.hasOwnProperty(i)&&(o!=null||l!=null))switch(i){case`value`:p=o;break;case`defaultValue`:c=o;break;case`multiple`:s=o;default:o!==l&&Md(e,t,i,o,r,l)}t=c,n=s,r=m,p==null?!!r!=!!n&&(t==null?Bt(e,!!n,n?[]:``,!1):Bt(e,!!n,t,!0)):Bt(e,!!n,p,!1);return;case`textarea`:for(c in m=p=null,n)if(i=n[c],n.hasOwnProperty(c)&&i!=null&&!r.hasOwnProperty(c))switch(c){case`value`:break;case`children`:break;default:Md(e,t,c,null,r,i)}for(s in r)if(i=r[s],o=n[s],r.hasOwnProperty(s)&&(i!=null||o!=null))switch(s){case`value`:p=i;break;case`defaultValue`:m=i;break;case`children`:break;case`dangerouslySetInnerHTML`:if(i!=null)throw Error(a(91));break;default:i!==o&&Md(e,t,s,i,r,o)}Vt(e,p,m);return;case`option`:for(var h in n)if(p=n[h],n.hasOwnProperty(h)&&p!=null&&!r.hasOwnProperty(h))switch(h){case`selected`:e.selected=!1;break;default:Md(e,t,h,null,r,p)}for(l in r)if(p=r[l],m=n[l],r.hasOwnProperty(l)&&p!==m&&(p!=null||m!=null))switch(l){case`selected`:e.selected=p&&typeof p!=`function`&&typeof p!=`symbol`;break;default:Md(e,t,l,p,r,m)}return;case`img`:case`link`:case`area`:case`base`:case`br`:case`col`:case`embed`:case`hr`:case`keygen`:case`meta`:case`param`:case`source`:case`track`:case`wbr`:case`menuitem`:for(var g in n)p=n[g],n.hasOwnProperty(g)&&p!=null&&!r.hasOwnProperty(g)&&Md(e,t,g,null,r,p);for(u in r)if(p=r[u],m=n[u],r.hasOwnProperty(u)&&p!==m&&(p!=null||m!=null))switch(u){case`children`:case`dangerouslySetInnerHTML`:if(p!=null)throw Error(a(137,t));break;default:Md(e,t,u,p,r,m)}return;default:if(qt(t)){for(var _ in n)p=n[_],n.hasOwnProperty(_)&&p!==void 0&&!r.hasOwnProperty(_)&&Nd(e,t,_,void 0,r,p);for(d in r)p=r[d],m=n[d],!r.hasOwnProperty(d)||p===m||p===void 0&&m===void 0||Nd(e,t,d,p,r,m);return}}for(var v in n)p=n[v],n.hasOwnProperty(v)&&p!=null&&!r.hasOwnProperty(v)&&Md(e,t,v,null,r,p);for(f in r)p=r[f],m=n[f],!r.hasOwnProperty(f)||p===m||p==null&&m==null||Md(e,t,f,p,r,m)}function Id(e){switch(e){case`css`:case`script`:case`font`:case`img`:case`image`:case`input`:case`link`:return!0;default:return!1}}function Ld(){if(typeof performance.getEntriesByType==`function`){for(var e=0,t=0,n=performance.getEntriesByType(`resource`),r=0;r<n.length;r++){var i=n[r],a=i.transferSize,o=i.initiatorType,s=i.duration;if(a&&s&&Id(o)){for(o=0,s=i.responseEnd,r+=1;r<n.length;r++){var c=n[r],l=c.startTime;if(l>s)break;var u=c.transferSize,d=c.initiatorType;u&&Id(d)&&(c=c.responseEnd,o+=u*(c<s?1:(s-l)/(c-l)))}if(--r,t+=8*(a+o)/(i.duration/1e3),e++,10<e)break}}if(0<e)return t/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e==`number`)?e:5}var Rd=null,zd=null;function Bd(e){return e.nodeType===9?e:e.ownerDocument}function Vd(e){switch(e){case`http://www.w3.org/2000/svg`:return 1;case`http://www.w3.org/1998/Math/MathML`:return 2;default:return 0}}function Hd(e,t){if(e===0)switch(t){case`svg`:return 1;case`math`:return 2;default:return 0}return e===1&&t===`foreignObject`?0:e}function Ud(e,t){return e===`textarea`||e===`noscript`||typeof t.children==`string`||typeof t.children==`number`||typeof t.children==`bigint`||typeof t.dangerouslySetInnerHTML==`object`&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}var Wd=null;function Gd(){var e=window.event;return e&&e.type===`popstate`?e===Wd?!1:(Wd=e,!0):(Wd=null,!1)}var Kd=typeof setTimeout==`function`?setTimeout:void 0,qd=typeof clearTimeout==`function`?clearTimeout:void 0,Jd=typeof Promise==`function`?Promise:void 0,Yd=typeof queueMicrotask==`function`?queueMicrotask:Jd===void 0?Kd:function(e){return Jd.resolve(null).then(e).catch(Xd)};function Xd(e){setTimeout(function(){throw e})}function Zd(e){return e===`head`}function Qd(e,t){var n=t,r=0;do{var i=n.nextSibling;if(e.removeChild(n),i&&i.nodeType===8)if(n=i.data,n===`/$`||n===`/&`){if(r===0){e.removeChild(i),Np(t);return}r--}else if(n===`$`||n===`$?`||n===`$~`||n===`$!`||n===`&`)r++;else if(n===`html`)pf(e.ownerDocument.documentElement);else if(n===`head`){n=e.ownerDocument.head,pf(n);for(var a=n.firstChild;a;){var o=a.nextSibling,s=a.nodeName;a[dt]||s===`SCRIPT`||s===`STYLE`||s===`LINK`&&a.rel.toLowerCase()===`stylesheet`||n.removeChild(a),a=o}}else n===`body`&&pf(e.ownerDocument.body);n=i}while(n);Np(t)}function $d(e,t){var n=e;e=0;do{var r=n.nextSibling;if(n.nodeType===1?t?(n._stashedDisplay=n.style.display,n.style.display=`none`):(n.style.display=n._stashedDisplay||``,n.getAttribute(`style`)===``&&n.removeAttribute(`style`)):n.nodeType===3&&(t?(n._stashedText=n.nodeValue,n.nodeValue=``):n.nodeValue=n._stashedText||``),r&&r.nodeType===8)if(n=r.data,n===`/$`){if(e===0)break;e--}else n!==`$`&&n!==`$?`&&n!==`$~`&&n!==`$!`||e++;n=r}while(n)}function ef(e){var t=e.firstChild;for(t&&t.nodeType===10&&(t=t.nextSibling);t;){var n=t;switch(t=t.nextSibling,n.nodeName){case`HTML`:case`HEAD`:case`BODY`:ef(n),ft(n);continue;case`SCRIPT`:case`STYLE`:continue;case`LINK`:if(n.rel.toLowerCase()===`stylesheet`)continue}e.removeChild(n)}}function tf(e,t,n,r){for(;e.nodeType===1;){var i=n;if(e.nodeName.toLowerCase()!==t.toLowerCase()){if(!r&&(e.nodeName!==`INPUT`||e.type!==`hidden`))break}else if(!r)if(t===`input`&&e.type===`hidden`){var a=i.name==null?null:``+i.name;if(i.type===`hidden`&&e.getAttribute(`name`)===a)return e}else return e;else if(!e[dt])switch(t){case`meta`:if(!e.hasAttribute(`itemprop`))break;return e;case`link`:if(a=e.getAttribute(`rel`),a===`stylesheet`&&e.hasAttribute(`data-precedence`)||a!==i.rel||e.getAttribute(`href`)!==(i.href==null||i.href===``?null:i.href)||e.getAttribute(`crossorigin`)!==(i.crossOrigin==null?null:i.crossOrigin)||e.getAttribute(`title`)!==(i.title==null?null:i.title))break;return e;case`style`:if(e.hasAttribute(`data-precedence`))break;return e;case`script`:if(a=e.getAttribute(`src`),(a!==(i.src==null?null:i.src)||e.getAttribute(`type`)!==(i.type==null?null:i.type)||e.getAttribute(`crossorigin`)!==(i.crossOrigin==null?null:i.crossOrigin))&&a&&e.hasAttribute(`async`)&&!e.hasAttribute(`itemprop`))break;return e;default:return e}if(e=cf(e.nextSibling),e===null)break}return null}function nf(e,t,n){if(t===``)return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!==`INPUT`||e.type!==`hidden`)&&!n||(e=cf(e.nextSibling),e===null))return null;return e}function rf(e,t){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!==`INPUT`||e.type!==`hidden`)&&!t||(e=cf(e.nextSibling),e===null))return null;return e}function af(e){return e.data===`$?`||e.data===`$~`}function of(e){return e.data===`$!`||e.data===`$?`&&e.ownerDocument.readyState!==`loading`}function sf(e,t){var n=e.ownerDocument;if(e.data===`$~`)e._reactRetry=t;else if(e.data!==`$?`||n.readyState!==`loading`)t();else{var r=function(){t(),n.removeEventListener(`DOMContentLoaded`,r)};n.addEventListener(`DOMContentLoaded`,r),e._reactRetry=r}}function cf(e){for(;e!=null;e=e.nextSibling){var t=e.nodeType;if(t===1||t===3)break;if(t===8){if(t=e.data,t===`$`||t===`$!`||t===`$?`||t===`$~`||t===`&`||t===`F!`||t===`F`)break;if(t===`/$`||t===`/&`)return null}}return e}var lf=null;function uf(e){e=e.nextSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===`/$`||n===`/&`){if(t===0)return cf(e.nextSibling);t--}else n!==`$`&&n!==`$!`&&n!==`$?`&&n!==`$~`&&n!==`&`||t++}e=e.nextSibling}return null}function df(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===`$`||n===`$!`||n===`$?`||n===`$~`||n===`&`){if(t===0)return e;t--}else n!==`/$`&&n!==`/&`||t++}e=e.previousSibling}return null}function ff(e,t,n){switch(t=Bd(n),e){case`html`:if(e=t.documentElement,!e)throw Error(a(452));return e;case`head`:if(e=t.head,!e)throw Error(a(453));return e;case`body`:if(e=t.body,!e)throw Error(a(454));return e;default:throw Error(a(451))}}function pf(e){for(var t=e.attributes;t.length;)e.removeAttributeNode(t[0]);ft(e)}var mf=new Map,hf=new Set;function gf(e){return typeof e.getRootNode==`function`?e.getRootNode():e.nodeType===9?e:e.ownerDocument}var _f=A.d;A.d={f:vf,r:yf,D:Sf,C:Cf,L:wf,m:Tf,X:Df,S:Ef,M:Of};function vf(){var e=_f.f(),t=vu();return e||t}function yf(e){var t=mt(e);t!==null&&t.tag===5&&t.type===`form`?Ss(t):_f.r(e)}var bf=typeof document>`u`?null:document;function xf(e,t,n){var r=bf;if(r&&typeof t==`string`&&t){var i=It(t);i=`link[rel="`+e+`"][href="`+i+`"]`,typeof n==`string`&&(i+=`[crossorigin="`+n+`"]`),hf.has(i)||(hf.add(i),e={rel:e,crossOrigin:n,href:t},r.querySelector(i)===null&&(t=r.createElement(`link`),Pd(t,`link`,e),_t(t),r.head.appendChild(t)))}}function Sf(e){_f.D(e),xf(`dns-prefetch`,e,null)}function Cf(e,t){_f.C(e,t),xf(`preconnect`,e,t)}function wf(e,t,n){_f.L(e,t,n);var r=bf;if(r&&e&&t){var i=`link[rel="preload"][as="`+It(t)+`"]`;t===`image`&&n&&n.imageSrcSet?(i+=`[imagesrcset="`+It(n.imageSrcSet)+`"]`,typeof n.imageSizes==`string`&&(i+=`[imagesizes="`+It(n.imageSizes)+`"]`)):i+=`[href="`+It(e)+`"]`;var a=i;switch(t){case`style`:a=Af(e);break;case`script`:a=Pf(e)}mf.has(a)||(e=p({rel:`preload`,href:t===`image`&&n&&n.imageSrcSet?void 0:e,as:t},n),mf.set(a,e),r.querySelector(i)!==null||t===`style`&&r.querySelector(jf(a))||t===`script`&&r.querySelector(Ff(a))||(t=r.createElement(`link`),Pd(t,`link`,e),_t(t),r.head.appendChild(t)))}}function Tf(e,t){_f.m(e,t);var n=bf;if(n&&e){var r=t&&typeof t.as==`string`?t.as:`script`,i=`link[rel="modulepreload"][as="`+It(r)+`"][href="`+It(e)+`"]`,a=i;switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:a=Pf(e)}if(!mf.has(a)&&(e=p({rel:`modulepreload`,href:e},t),mf.set(a,e),n.querySelector(i)===null)){switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:if(n.querySelector(Ff(a)))return}r=n.createElement(`link`),Pd(r,`link`,e),_t(r),n.head.appendChild(r)}}}function Ef(e,t,n){_f.S(e,t,n);var r=bf;if(r&&e){var i=gt(r).hoistableStyles,a=Af(e);t||=`default`;var o=i.get(a);if(!o){var s={loading:0,preload:null};if(o=r.querySelector(jf(a)))s.loading=5;else{e=p({rel:`stylesheet`,href:e,"data-precedence":t},n),(n=mf.get(a))&&Rf(e,n);var c=o=r.createElement(`link`);_t(c),Pd(c,`link`,e),c._p=new Promise(function(e,t){c.onload=e,c.onerror=t}),c.addEventListener(`load`,function(){s.loading|=1}),c.addEventListener(`error`,function(){s.loading|=2}),s.loading|=4,Lf(o,t,r)}o={type:`stylesheet`,instance:o,count:1,state:s},i.set(a,o)}}}function Df(e,t){_f.X(e,t);var n=bf;if(n&&e){var r=gt(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=p({src:e,async:!0},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),_t(a),Pd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function Of(e,t){_f.M(e,t);var n=bf;if(n&&e){var r=gt(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=p({src:e,async:!0,type:`module`},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),_t(a),Pd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function kf(e,t,n,r){var i=(i=fe.current)?gf(i):null;if(!i)throw Error(a(446));switch(e){case`meta`:case`title`:return null;case`style`:return typeof n.precedence==`string`&&typeof n.href==`string`?(t=Af(n.href),n=gt(i).hoistableStyles,r=n.get(t),r||(r={type:`style`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};case`link`:if(n.rel===`stylesheet`&&typeof n.href==`string`&&typeof n.precedence==`string`){e=Af(n.href);var o=gt(i).hoistableStyles,s=o.get(e);if(s||(i=i.ownerDocument||i,s={type:`stylesheet`,instance:null,count:0,state:{loading:0,preload:null}},o.set(e,s),(o=i.querySelector(jf(e)))&&!o._p&&(s.instance=o,s.state.loading=5),mf.has(e)||(n={rel:`preload`,as:`style`,href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},mf.set(e,n),o||Nf(i,e,n,s.state))),t&&r===null)throw Error(a(528,``));return s}if(t&&r!==null)throw Error(a(529,``));return null;case`script`:return t=n.async,n=n.src,typeof n==`string`&&t&&typeof t!=`function`&&typeof t!=`symbol`?(t=Pf(n),n=gt(i).hoistableScripts,r=n.get(t),r||(r={type:`script`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};default:throw Error(a(444,e))}}function Af(e){return`href="`+It(e)+`"`}function jf(e){return`link[rel="stylesheet"][`+e+`]`}function Mf(e){return p({},e,{"data-precedence":e.precedence,precedence:null})}function Nf(e,t,n,r){e.querySelector(`link[rel="preload"][as="style"][`+t+`]`)?r.loading=1:(t=e.createElement(`link`),r.preload=t,t.addEventListener(`load`,function(){return r.loading|=1}),t.addEventListener(`error`,function(){return r.loading|=2}),Pd(t,`link`,n),_t(t),e.head.appendChild(t))}function Pf(e){return`[src="`+It(e)+`"]`}function Ff(e){return`script[async]`+e}function If(e,t,n){if(t.count++,t.instance===null)switch(t.type){case`style`:var r=e.querySelector(`style[data-href~="`+It(n.href)+`"]`);if(r)return t.instance=r,_t(r),r;var i=p({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return r=(e.ownerDocument||e).createElement(`style`),_t(r),Pd(r,`style`,i),Lf(r,n.precedence,e),t.instance=r;case`stylesheet`:i=Af(n.href);var o=e.querySelector(jf(i));if(o)return t.state.loading|=4,t.instance=o,_t(o),o;r=Mf(n),(i=mf.get(i))&&Rf(r,i),o=(e.ownerDocument||e).createElement(`link`),_t(o);var s=o;return s._p=new Promise(function(e,t){s.onload=e,s.onerror=t}),Pd(o,`link`,r),t.state.loading|=4,Lf(o,n.precedence,e),t.instance=o;case`script`:return o=Pf(n.src),(i=e.querySelector(Ff(o)))?(t.instance=i,_t(i),i):(r=n,(i=mf.get(o))&&(r=p({},n),zf(r,i)),e=e.ownerDocument||e,i=e.createElement(`script`),_t(i),Pd(i,`link`,r),e.head.appendChild(i),t.instance=i);case`void`:return null;default:throw Error(a(443,t.type))}else t.type===`stylesheet`&&!(t.state.loading&4)&&(r=t.instance,t.state.loading|=4,Lf(r,n.precedence,e));return t.instance}function Lf(e,t,n){for(var r=n.querySelectorAll(`link[rel="stylesheet"][data-precedence],style[data-precedence]`),i=r.length?r[r.length-1]:null,a=i,o=0;o<r.length;o++){var s=r[o];if(s.dataset.precedence===t)a=s;else if(a!==i)break}a?a.parentNode.insertBefore(e,a.nextSibling):(t=n.nodeType===9?n.head:n,t.insertBefore(e,t.firstChild))}function Rf(e,t){e.crossOrigin??=t.crossOrigin,e.referrerPolicy??=t.referrerPolicy,e.title??=t.title}function zf(e,t){e.crossOrigin??=t.crossOrigin,e.referrerPolicy??=t.referrerPolicy,e.integrity??=t.integrity}var Bf=null;function Vf(e,t,n){if(Bf===null){var r=new Map,i=Bf=new Map;i.set(n,r)}else i=Bf,r=i.get(n),r||(r=new Map,i.set(n,r));if(r.has(e))return r;for(r.set(e,null),n=n.getElementsByTagName(e),i=0;i<n.length;i++){var a=n[i];if(!(a[dt]||a[rt]||e===`link`&&a.getAttribute(`rel`)===`stylesheet`)&&a.namespaceURI!==`http://www.w3.org/2000/svg`){var o=a.getAttribute(t)||``;o=e+o;var s=r.get(o);s?s.push(a):r.set(o,[a])}}return r}function Hf(e,t,n){e=e.ownerDocument||e,e.head.insertBefore(n,t===`title`?e.querySelector(`head > title`):null)}function Uf(e,t,n){if(n===1||t.itemProp!=null)return!1;switch(e){case`meta`:case`title`:return!0;case`style`:if(typeof t.precedence!=`string`||typeof t.href!=`string`||t.href===``)break;return!0;case`link`:if(typeof t.rel!=`string`||typeof t.href!=`string`||t.href===``||t.onLoad||t.onError)break;switch(t.rel){case`stylesheet`:return e=t.disabled,typeof t.precedence==`string`&&e==null;default:return!0}case`script`:if(t.async&&typeof t.async!=`function`&&typeof t.async!=`symbol`&&!t.onLoad&&!t.onError&&t.src&&typeof t.src==`string`)return!0}return!1}function Wf(e){return!(e.type===`stylesheet`&&!(e.state.loading&3))}function Gf(e,t,n,r){if(n.type===`stylesheet`&&(typeof r.media!=`string`||!1!==matchMedia(r.media).matches)&&!(n.state.loading&4)){if(n.instance===null){var i=Af(r.href),a=t.querySelector(jf(i));if(a){t=a._p,typeof t==`object`&&t&&typeof t.then==`function`&&(e.count++,e=Jf.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=a,_t(a);return}a=t.ownerDocument||t,r=Mf(r),(i=mf.get(i))&&Rf(r,i),a=a.createElement(`link`),_t(a);var o=a;o._p=new Promise(function(e,t){o.onload=e,o.onerror=t}),Pd(a,`link`,r),n.instance=a}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&!(n.state.loading&3)&&(e.count++,n=Jf.bind(e),t.addEventListener(`load`,n),t.addEventListener(`error`,n))}}var Kf=0;function qf(e,t){return e.stylesheets&&e.count===0&&Xf(e,e.stylesheets),0<e.count||0<e.imgCount?function(n){var r=setTimeout(function(){if(e.stylesheets&&Xf(e,e.stylesheets),e.unsuspend){var t=e.unsuspend;e.unsuspend=null,t()}},6e4+t);0<e.imgBytes&&Kf===0&&(Kf=62500*Ld());var i=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Xf(e,e.stylesheets),e.unsuspend)){var t=e.unsuspend;e.unsuspend=null,t()}},(e.imgBytes>Kf?50:800)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(r),clearTimeout(i)}}:null}function Jf(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Xf(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var Yf=null;function Xf(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Yf=new Map,t.forEach(Zf,e),Yf=null,Jf.call(e))}function Zf(e,t){if(!(t.state.loading&4)){var n=Yf.get(e);if(n)var r=n.get(null);else{n=new Map,Yf.set(e,n);for(var i=e.querySelectorAll(`link[data-precedence],style[data-precedence]`),a=0;a<i.length;a++){var o=i[a];(o.nodeName===`LINK`||o.getAttribute(`media`)!==`not all`)&&(n.set(o.dataset.precedence,o),r=o)}r&&n.set(null,r)}i=t.instance,o=i.getAttribute(`data-precedence`),a=n.get(o)||r,a===r&&n.set(null,i),n.set(o,i),this.count++,r=Jf.bind(this),i.addEventListener(`load`,r),i.addEventListener(`error`,r),a?a.parentNode.insertBefore(i,a.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(i,e.firstChild)),t.state.loading|=4}}var Qf={$$typeof:S,Provider:null,Consumer:null,_currentValue:oe,_currentValue2:oe,_threadCount:0};function $f(e,t,n,r,i,a,o,s,c){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=qe(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=qe(0),this.hiddenUpdates=qe(null),this.identifierPrefix=r,this.onUncaughtError=i,this.onCaughtError=a,this.onRecoverableError=o,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=c,this.incompleteTransitions=new Map}function ep(e,t,n,r,i,a,o,s,c,l,u,d){return e=new $f(e,t,n,o,c,l,u,d,s),t=1,!0===a&&(t|=24),a=ri(3,null,null,t),e.current=a,a.stateNode=e,t=na(),t.refCount++,e.pooledCache=t,t.refCount++,a.memoizedState={element:r,isDehydrated:n,cache:t},Fa(a),e}function tp(e){return e?(e=ti,e):ti}function np(e,t,n,r,i,a){i=tp(i),r.context===null?r.context=i:r.pendingContext=i,r=La(t),r.payload={element:n},a=a===void 0?null:a,a!==null&&(r.callback=a),n=Ra(e,r,t),n!==null&&(pu(n,e,t),za(n,e,t))}function rp(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var n=e.retryLane;e.retryLane=n!==0&&n<t?n:t}}function ip(e,t){rp(e,t),(e=e.alternate)&&rp(e,t)}function ap(e){if(e.tag===13||e.tag===31){var t=Qr(e,67108864);t!==null&&pu(t,e,67108864),ip(e,67108864)}}function op(e){if(e.tag===13||e.tag===31){var t=du();t=Qe(t);var n=Qr(e,t);n!==null&&pu(n,e,t),ip(e,t)}}var sp=!0;function cp(e,t,n,r){var i=k.T;k.T=null;var a=A.p;try{A.p=2,up(e,t,n,r)}finally{A.p=a,k.T=i}}function lp(e,t,n,r){var i=k.T;k.T=null;var a=A.p;try{A.p=8,up(e,t,n,r)}finally{A.p=a,k.T=i}}function up(e,t,n,r){if(sp){var i=dp(r);if(i===null)Cd(e,t,r,fp,n),Cp(e,r);else if(Tp(i,e,t,n,r))r.stopPropagation();else if(Cp(e,r),t&4&&-1<Sp.indexOf(e)){for(;i!==null;){var a=mt(i);if(a!==null)switch(a.tag){case 3:if(a=a.stateNode,a.current.memoizedState.isDehydrated){var o=Ue(a.pendingLanes);if(o!==0){var s=a;for(s.pendingLanes|=2,s.entangledLanes|=2;o;){var c=1<<31-ze(o);s.entanglements[1]|=c,o&=~c}nd(a),!(J&6)&&($l=ke()+500,rd(0,!1))}}break;case 31:case 13:s=Qr(a,2),s!==null&&pu(s,a,2),vu(),ip(a,2)}if(a=dp(r),a===null&&Cd(e,t,r,fp,n),a===i)break;i=a}i!==null&&r.stopPropagation()}else Cd(e,t,r,null,n)}}function dp(e){return e=$t(e),pp(e)}var fp=null;function pp(e){if(fp=null,e=pt(e),e!==null){var t=s(e);if(t===null)e=null;else{var n=t.tag;if(n===13){if(e=c(t),e!==null)return e;e=null}else if(n===31){if(e=l(t),e!==null)return e;e=null}else if(n===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null)}}return fp=e,null}function mp(e){switch(e){case`beforetoggle`:case`cancel`:case`click`:case`close`:case`contextmenu`:case`copy`:case`cut`:case`auxclick`:case`dblclick`:case`dragend`:case`dragstart`:case`drop`:case`focusin`:case`focusout`:case`input`:case`invalid`:case`keydown`:case`keypress`:case`keyup`:case`mousedown`:case`mouseup`:case`paste`:case`pause`:case`play`:case`pointercancel`:case`pointerdown`:case`pointerup`:case`ratechange`:case`reset`:case`resize`:case`seeked`:case`submit`:case`toggle`:case`touchcancel`:case`touchend`:case`touchstart`:case`volumechange`:case`change`:case`selectionchange`:case`textInput`:case`compositionstart`:case`compositionend`:case`compositionupdate`:case`beforeblur`:case`afterblur`:case`beforeinput`:case`blur`:case`fullscreenchange`:case`focus`:case`hashchange`:case`popstate`:case`select`:case`selectstart`:return 2;case`drag`:case`dragenter`:case`dragexit`:case`dragleave`:case`dragover`:case`mousemove`:case`mouseout`:case`mouseover`:case`pointermove`:case`pointerout`:case`pointerover`:case`scroll`:case`touchmove`:case`wheel`:case`mouseenter`:case`mouseleave`:case`pointerenter`:case`pointerleave`:return 8;case`message`:switch(P()){case Ae:return 2;case je:return 8;case Me:case Ne:return 32;case Pe:return 268435456;default:return 32}default:return 32}}var hp=!1,gp=null,_p=null,vp=null,yp=new Map,bp=new Map,xp=[],Sp=`mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset`.split(` `);function Cp(e,t){switch(e){case`focusin`:case`focusout`:gp=null;break;case`dragenter`:case`dragleave`:_p=null;break;case`mouseover`:case`mouseout`:vp=null;break;case`pointerover`:case`pointerout`:yp.delete(t.pointerId);break;case`gotpointercapture`:case`lostpointercapture`:bp.delete(t.pointerId)}}function wp(e,t,n,r,i,a){return e===null||e.nativeEvent!==a?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:a,targetContainers:[i]},t!==null&&(t=mt(t),t!==null&&ap(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,i!==null&&t.indexOf(i)===-1&&t.push(i),e)}function Tp(e,t,n,r,i){switch(t){case`focusin`:return gp=wp(gp,e,t,n,r,i),!0;case`dragenter`:return _p=wp(_p,e,t,n,r,i),!0;case`mouseover`:return vp=wp(vp,e,t,n,r,i),!0;case`pointerover`:var a=i.pointerId;return yp.set(a,wp(yp.get(a)||null,e,t,n,r,i)),!0;case`gotpointercapture`:return a=i.pointerId,bp.set(a,wp(bp.get(a)||null,e,t,n,r,i)),!0}return!1}function Ep(e){var t=pt(e.target);if(t!==null){var n=s(t);if(n!==null){if(t=n.tag,t===13){if(t=c(n),t!==null){e.blockedOn=t,tt(e.priority,function(){op(n)});return}}else if(t===31){if(t=l(n),t!==null){e.blockedOn=t,tt(e.priority,function(){op(n)});return}}else if(t===3&&n.stateNode.current.memoizedState.isDehydrated){e.blockedOn=n.tag===3?n.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Dp(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var n=dp(e.nativeEvent);if(n===null){n=e.nativeEvent;var r=new n.constructor(n.type,n);Qt=r,n.target.dispatchEvent(r),Qt=null}else return t=mt(n),t!==null&&ap(t),e.blockedOn=n,!1;t.shift()}return!0}function Op(e,t,n){Dp(e)&&n.delete(t)}function kp(){hp=!1,gp!==null&&Dp(gp)&&(gp=null),_p!==null&&Dp(_p)&&(_p=null),vp!==null&&Dp(vp)&&(vp=null),yp.forEach(Op),bp.forEach(Op)}function Ap(e,n){e.blockedOn===n&&(e.blockedOn=null,hp||(hp=!0,t.unstable_scheduleCallback(t.unstable_NormalPriority,kp)))}var jp=null;function Mp(e){jp!==e&&(jp=e,t.unstable_scheduleCallback(t.unstable_NormalPriority,function(){jp===e&&(jp=null);for(var t=0;t<e.length;t+=3){var n=e[t],r=e[t+1],i=e[t+2];if(typeof r!=`function`){if(pp(r||n)===null)continue;break}var a=mt(n);a!==null&&(e.splice(t,3),t-=3,bs(a,{pending:!0,data:i,method:n.method,action:r},r,i))}}))}function Np(e){function t(t){return Ap(t,e)}gp!==null&&Ap(gp,e),_p!==null&&Ap(_p,e),vp!==null&&Ap(vp,e),yp.forEach(t),bp.forEach(t);for(var n=0;n<xp.length;n++){var r=xp[n];r.blockedOn===e&&(r.blockedOn=null)}for(;0<xp.length&&(n=xp[0],n.blockedOn===null);)Ep(n),n.blockedOn===null&&xp.shift();if(n=(e.ownerDocument||e).$$reactFormReplay,n!=null)for(r=0;r<n.length;r+=3){var i=n[r],a=n[r+1],o=i[it]||null;if(typeof a==`function`)o||Mp(n);else if(o){var s=null;if(a&&a.hasAttribute(`formAction`)){if(i=a,o=a[it]||null)s=o.formAction;else if(pp(i)!==null)continue}else s=o.action;typeof s==`function`?n[r+1]=s:(n.splice(r,3),r-=3),Mp(n)}}}function Pp(){function e(e){e.canIntercept&&e.info===`react-transition`&&e.intercept({handler:function(){return new Promise(function(e){return i=e})},focusReset:`manual`,scroll:`manual`})}function t(){i!==null&&(i(),i=null),r||setTimeout(n,20)}function n(){if(!r&&!navigation.transition){var e=navigation.currentEntry;e&&e.url!=null&&navigation.navigate(e.url,{state:e.getState(),info:`react-transition`,history:`replace`})}}if(typeof navigation==`object`){var r=!1,i=null;return navigation.addEventListener(`navigate`,e),navigation.addEventListener(`navigatesuccess`,t),navigation.addEventListener(`navigateerror`,t),setTimeout(n,100),function(){r=!0,navigation.removeEventListener(`navigate`,e),navigation.removeEventListener(`navigatesuccess`,t),navigation.removeEventListener(`navigateerror`,t),i!==null&&(i(),i=null)}}}function Fp(e){this._internalRoot=e}Ip.prototype.render=Fp.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error(a(409));var n=t.current;np(n,du(),e,t,null,null)},Ip.prototype.unmount=Fp.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;np(e.current,2,null,e,null,null),vu(),t[at]=null}};function Ip(e){this._internalRoot=e}Ip.prototype.unstable_scheduleHydration=function(e){if(e){var t=et();e={blockedOn:null,target:e,priority:t};for(var n=0;n<xp.length&&t!==0&&t<xp[n].priority;n++);xp.splice(n,0,e),n===0&&Ep(e)}};var Lp=n.version;if(Lp!==`19.2.4`)throw Error(a(527,Lp,`19.2.4`));A.findDOMNode=function(e){var t=e._reactInternals;if(t===void 0)throw typeof e.render==`function`?Error(a(188)):(e=Object.keys(e).join(`,`),Error(a(268,e)));return e=d(t),e=e===null?null:f(e),e=e===null?null:e.stateNode,e};var Rp={bundleType:0,version:`19.2.4`,rendererPackageName:`react-dom`,currentDispatcherRef:k,reconcilerVersion:`19.2.4`};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<`u`){var zp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!zp.isDisabled&&zp.supportsFiber)try{Le=zp.inject(Rp),Re=zp}catch{}}e.createRoot=function(e,t){if(!o(e))throw Error(a(299));var n=!1,r=``,i=Us,s=Ws,c=Gs;return t!=null&&(!0===t.unstable_strictMode&&(n=!0),t.identifierPrefix!==void 0&&(r=t.identifierPrefix),t.onUncaughtError!==void 0&&(i=t.onUncaughtError),t.onCaughtError!==void 0&&(s=t.onCaughtError),t.onRecoverableError!==void 0&&(c=t.onRecoverableError)),t=ep(e,1,!1,null,null,n,r,null,i,s,c,Pp),e[at]=t.current,xd(e),new Fp(t)}})),lt=t(((e,t)=>{function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>`u`||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=`function`))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}n(),t.exports=ct()})),ut=O(`arrow-down-to-line`,[[`path`,{d:`M12 17V3`,key:`1cwfxf`}],[`path`,{d:`m6 11 6 6 6-6`,key:`12ii2o`}],[`path`,{d:`M19 21H5`,key:`150jfl`}]]),dt=O(`arrow-right`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}],[`path`,{d:`m12 5 7 7-7 7`,key:`xquz4c`}]]),ft=O(`arrow-up-from-line`,[[`path`,{d:`m18 9-6-6-6 6`,key:`kcunyi`}],[`path`,{d:`M12 3v14`,key:`7cf3v8`}],[`path`,{d:`M5 21h14`,key:`11awu3`}]]),pt=O(`bell-ring`,[[`path`,{d:`M10.268 21a2 2 0 0 0 3.464 0`,key:`vwvbt9`}],[`path`,{d:`M22 8c0-2.3-.8-4.3-2-6`,key:`5bb3ad`}],[`path`,{d:`M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326`,key:`11g9vi`}],[`path`,{d:`M4 2C2.8 3.7 2 5.7 2 8`,key:`tap9e0`}]]),mt=O(`bell`,[[`path`,{d:`M10.268 21a2 2 0 0 0 3.464 0`,key:`vwvbt9`}],[`path`,{d:`M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326`,key:`11g9vi`}]]),ht=O(`brain`,[[`path`,{d:`M12 18V5`,key:`adv99a`}],[`path`,{d:`M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4`,key:`1e3is1`}],[`path`,{d:`M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5`,key:`1gqd8o`}],[`path`,{d:`M17.997 5.125a4 4 0 0 1 2.526 5.77`,key:`iwvgf7`}],[`path`,{d:`M18 18a4 4 0 0 0 2-7.464`,key:`efp6ie`}],[`path`,{d:`M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517`,key:`1gq6am`}],[`path`,{d:`M6 18a4 4 0 0 1-2-7.464`,key:`k1g0md`}],[`path`,{d:`M6.003 5.125a4 4 0 0 0-2.526 5.77`,key:`q97ue3`}]]),gt=O(`case-sensitive`,[[`path`,{d:`m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16`,key:`d5nyq2`}],[`path`,{d:`M22 9v7`,key:`pvm9v3`}],[`path`,{d:`M3.304 13h6.392`,key:`1q3zxz`}],[`circle`,{cx:`18.5`,cy:`12.5`,r:`3.5`,key:`z97x68`}]]),_t=O(`chevron-left`,[[`path`,{d:`m15 18-6-6 6-6`,key:`1wnfg3`}]]),vt=O(`circle-alert`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`line`,{x1:`12`,x2:`12`,y1:`8`,y2:`12`,key:`1pkeuh`}],[`line`,{x1:`12`,x2:`12.01`,y1:`16`,y2:`16`,key:`4dfq90`}]]),yt=O(`circle-check-big`,[[`path`,{d:`M21.801 10A10 10 0 1 1 17 3.335`,key:`yps3ct`}],[`path`,{d:`m9 11 3 3L22 4`,key:`1pflzl`}]]),bt=O(`circle-arrow-up`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m16 12-4-4-4 4`,key:`177agl`}],[`path`,{d:`M12 16V8`,key:`1sbj14`}]]),xt=O(`circle-check`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`m9 12 2 2 4-4`,key:`dzmm74`}]]),St=O(`clipboard-paste`,[[`path`,{d:`M11 14h10`,key:`1w8e9d`}],[`path`,{d:`M16 4h2a2 2 0 0 1 2 2v1.344`,key:`1e62lh`}],[`path`,{d:`m17 18 4-4-4-4`,key:`z2g111`}],[`path`,{d:`M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113`,key:`bjbb7m`}],[`rect`,{x:`8`,y:`2`,width:`8`,height:`4`,rx:`1`,key:`ublpy`}]]),Ct=O(`clipboard`,[[`rect`,{width:`8`,height:`4`,x:`8`,y:`2`,rx:`1`,ry:`1`,key:`tgr4d6`}],[`path`,{d:`M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2`,key:`116196`}]]),wt=O(`cloud`,[[`path`,{d:`M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z`,key:`p7xjir`}]]),Tt=O(`copy`,[[`rect`,{width:`14`,height:`14`,x:`8`,y:`8`,rx:`2`,ry:`2`,key:`17jyea`}],[`path`,{d:`M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2`,key:`zix9uf`}]]),Et=O(`ellipsis-vertical`,[[`circle`,{cx:`12`,cy:`12`,r:`1`,key:`41hilf`}],[`circle`,{cx:`12`,cy:`5`,r:`1`,key:`gxeob9`}],[`circle`,{cx:`12`,cy:`19`,r:`1`,key:`lyex9k`}]]),Dt=O(`ellipsis`,[[`circle`,{cx:`12`,cy:`12`,r:`1`,key:`41hilf`}],[`circle`,{cx:`19`,cy:`12`,r:`1`,key:`1wjl8i`}],[`circle`,{cx:`5`,cy:`12`,r:`1`,key:`1pcz8c`}]]),Ot=O(`external-link`,[[`path`,{d:`M15 3h6v6`,key:`1q9fwt`}],[`path`,{d:`M10 14 21 3`,key:`gplh6r`}],[`path`,{d:`M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6`,key:`a6xqqp`}]]),kt=O(`file-archive`,[[`path`,{d:`M13.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v11.5`,key:`4pqfef`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M8 12v-1`,key:`1ej8lb`}],[`path`,{d:`M8 18v-2`,key:`qcmpov`}],[`path`,{d:`M8 7V6`,key:`1nbb54`}],[`circle`,{cx:`8`,cy:`20`,r:`2`,key:`ckkr5m`}]]),At=O(`file-braces`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1`,key:`1oajmo`}],[`path`,{d:`M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1`,key:`mpwhp6`}]]),jt=O(`file-code`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M10 12.5 8 15l2 2.5`,key:`1tg20x`}],[`path`,{d:`m14 12.5 2 2.5-2 2.5`,key:`yinavb`}]]),Mt=O(`file-diff`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M9 10h6`,key:`9gxzsh`}],[`path`,{d:`M12 13V7`,key:`h0r20n`}],[`path`,{d:`M9 17h6`,key:`r8uit2`}]]),Nt=O(`file-headphone`,[[`path`,{d:`M4 6.835V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-.343`,key:`1vfytu`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M2 19a2 2 0 0 1 4 0v1a2 2 0 0 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 0 1-4 0v-1a2 2 0 0 1 4 0`,key:`1etmh7`}]]),Pt=O(`file-image`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`circle`,{cx:`10`,cy:`12`,r:`2`,key:`737tya`}],[`path`,{d:`m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22`,key:`wt3hpn`}]]),Ft=O(`file-play`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z`,key:`1tzo1f`}]]),It=O(`file-plus`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M9 15h6`,key:`cctwl0`}],[`path`,{d:`M12 18v-6`,key:`17g6i2`}]]),Lt=O(`file-spreadsheet`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M8 13h2`,key:`yr2amv`}],[`path`,{d:`M14 13h2`,key:`un5t4a`}],[`path`,{d:`M8 17h2`,key:`2yhykz`}],[`path`,{d:`M14 17h2`,key:`10kma7`}]]),Rt=O(`file-text`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M10 9H8`,key:`b1mrlr`}],[`path`,{d:`M16 13H8`,key:`t4e002`}],[`path`,{d:`M16 17H8`,key:`z1uh3a`}]]),zt=O(`file-type`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}],[`path`,{d:`M11 18h2`,key:`12mj7e`}],[`path`,{d:`M12 12v6`,key:`3ahymv`}],[`path`,{d:`M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5`,key:`qbrxap`}]]),Bt=O(`file`,[[`path`,{d:`M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z`,key:`1oefj6`}],[`path`,{d:`M14 2v5a1 1 0 0 0 1 1h5`,key:`wfsgrz`}]]),Vt=O(`flask-conical`,[[`path`,{d:`M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2`,key:`18mbvz`}],[`path`,{d:`M6.453 15h11.094`,key:`3shlmq`}],[`path`,{d:`M8.5 2h7`,key:`csnxdl`}]]),Ht=O(`folder-open`,[[`path`,{d:`m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2`,key:`usdka0`}]]),Ut=O(`folder-plus`,[[`path`,{d:`M12 10v6`,key:`1bos4e`}],[`path`,{d:`M9 13h6`,key:`1uhe8q`}],[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}]]),Wt=O(`folder-search`,[[`path`,{d:`M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1`,key:`1bw5m7`}],[`path`,{d:`m21 21-1.9-1.9`,key:`1g2n9r`}],[`circle`,{cx:`17`,cy:`17`,r:`3`,key:`18b49y`}]]),Gt=O(`folder-symlink`,[[`path`,{d:`M2 9.35V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7`,key:`y8kt7d`}],[`path`,{d:`m8 16 3-3-3-3`,key:`rlqrt1`}]]),Kt=O(`folder-tree`,[[`path`,{d:`M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z`,key:`hod4my`}],[`path`,{d:`M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z`,key:`w4yl2u`}],[`path`,{d:`M3 5a2 2 0 0 0 2 2h3`,key:`f2jnh7`}],[`path`,{d:`M3 3v13a2 2 0 0 0 2 2h3`,key:`k8epm1`}]]),qt=O(`folder`,[[`path`,{d:`M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z`,key:`1kt360`}]]),Jt=O(`git-branch`,[[`path`,{d:`M15 6a9 9 0 0 0-9 9V3`,key:`1cii5b`}],[`circle`,{cx:`18`,cy:`6`,r:`3`,key:`1h7g24`}],[`circle`,{cx:`6`,cy:`18`,r:`3`,key:`fqmcym`}]]),Yt=O(`git-commit-horizontal`,[[`circle`,{cx:`12`,cy:`12`,r:`3`,key:`1v7zrd`}],[`line`,{x1:`3`,x2:`9`,y1:`12`,y2:`12`,key:`1dyftd`}],[`line`,{x1:`15`,x2:`21`,y1:`12`,y2:`12`,key:`oup4p8`}]]),Xt=O(`grip-horizontal`,[[`circle`,{cx:`12`,cy:`9`,r:`1`,key:`124mty`}],[`circle`,{cx:`19`,cy:`9`,r:`1`,key:`1ruzo2`}],[`circle`,{cx:`5`,cy:`9`,r:`1`,key:`1a8b28`}],[`circle`,{cx:`12`,cy:`15`,r:`1`,key:`1e56xg`}],[`circle`,{cx:`19`,cy:`15`,r:`1`,key:`1a92ep`}],[`circle`,{cx:`5`,cy:`15`,r:`1`,key:`5r1jwy`}]]),Zt=O(`grip-vertical`,[[`circle`,{cx:`9`,cy:`12`,r:`1`,key:`1vctgf`}],[`circle`,{cx:`9`,cy:`5`,r:`1`,key:`hp0tcf`}],[`circle`,{cx:`9`,cy:`19`,r:`1`,key:`fkjjf6`}],[`circle`,{cx:`15`,cy:`12`,r:`1`,key:`1tmaij`}],[`circle`,{cx:`15`,cy:`5`,r:`1`,key:`19l28e`}],[`circle`,{cx:`15`,cy:`19`,r:`1`,key:`f4zoj3`}]]),Qt=O(`house`,[[`path`,{d:`M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8`,key:`5wwlr5`}],[`path`,{d:`M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z`,key:`r6nss1`}]]),$t=O(`info`,[[`circle`,{cx:`12`,cy:`12`,r:`10`,key:`1mglay`}],[`path`,{d:`M12 16v-4`,key:`1dtifu`}],[`path`,{d:`M12 8h.01`,key:`e9boi3`}]]),en=O(`key-round`,[[`path`,{d:`M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z`,key:`1s6t7t`}],[`circle`,{cx:`16.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`w0ekpg`}]]),tn=O(`key`,[[`path`,{d:`m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4`,key:`g0fldk`}],[`path`,{d:`m21 2-9.6 9.6`,key:`1j0ho8`}],[`circle`,{cx:`7.5`,cy:`15.5`,r:`5.5`,key:`yqb3hr`}]]),nn=O(`keyboard`,[[`path`,{d:`M10 8h.01`,key:`1r9ogq`}],[`path`,{d:`M12 12h.01`,key:`1mp3jc`}],[`path`,{d:`M14 8h.01`,key:`1primd`}],[`path`,{d:`M16 12h.01`,key:`1l6xoz`}],[`path`,{d:`M18 8h.01`,key:`emo2bl`}],[`path`,{d:`M6 8h.01`,key:`x9i8wu`}],[`path`,{d:`M7 16h10`,key:`wp8him`}],[`path`,{d:`M8 12h.01`,key:`czm47f`}],[`rect`,{width:`20`,height:`16`,x:`2`,y:`4`,rx:`2`,key:`18n3k1`}]]),rn=O(`layers`,[[`path`,{d:`M12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83z`,key:`zw3jo`}],[`path`,{d:`M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12`,key:`1wduqc`}],[`path`,{d:`M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17`,key:`kqbvx6`}]]),an=O(`link-2`,[[`path`,{d:`M9 17H7A5 5 0 0 1 7 7h2`,key:`8i5ue5`}],[`path`,{d:`M15 7h2a5 5 0 1 1 0 10h-2`,key:`1b9ql8`}],[`line`,{x1:`8`,x2:`16`,y1:`12`,y2:`12`,key:`1jonct`}]]),on=O(`link`,[[`path`,{d:`M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71`,key:`1cjeqo`}],[`path`,{d:`M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71`,key:`19qd67`}]]),sn=O(`list-filter`,[[`path`,{d:`M2 5h20`,key:`1fs1ex`}],[`path`,{d:`M6 12h12`,key:`8npq4p`}],[`path`,{d:`M9 19h6`,key:`456am0`}]]),cn=O(`list`,[[`path`,{d:`M3 5h.01`,key:`18ugdj`}],[`path`,{d:`M3 12h.01`,key:`nlz23k`}],[`path`,{d:`M3 19h.01`,key:`noohij`}],[`path`,{d:`M8 5h13`,key:`1pao27`}],[`path`,{d:`M8 12h13`,key:`1za7za`}],[`path`,{d:`M8 19h13`,key:`m83p4d`}]]),V=O(`loader-circle`,[[`path`,{d:`M21 12a9 9 0 1 1-6.219-8.56`,key:`13zald`}]]),ln=O(`log-out`,[[`path`,{d:`m16 17 5-5-5-5`,key:`1bji2h`}],[`path`,{d:`M21 12H9`,key:`dn1m92`}],[`path`,{d:`M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4`,key:`1uf3rs`}]]),un=O(`menu`,[[`path`,{d:`M4 5h16`,key:`1tepv9`}],[`path`,{d:`M4 12h16`,key:`1lakjw`}],[`path`,{d:`M4 19h16`,key:`1djgab`}]]),dn=O(`message-square`,[[`path`,{d:`M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z`,key:`18887p`}]]),fn=O(`mic`,[[`path`,{d:`M12 19v3`,key:`npa21l`}],[`path`,{d:`M19 10v2a7 7 0 0 1-14 0v-2`,key:`1vc78b`}],[`rect`,{x:`9`,y:`2`,width:`6`,height:`13`,rx:`3`,key:`s6n7sd`}]]),pn=O(`minus`,[[`path`,{d:`M5 12h14`,key:`1ays0h`}]]),mn=O(`moon`,[[`path`,{d:`M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401`,key:`kfwtm`}]]),hn=O(`move-vertical`,[[`path`,{d:`M12 2v20`,key:`t6zp3m`}],[`path`,{d:`m8 18 4 4 4-4`,key:`bh5tu3`}],[`path`,{d:`m8 6 4-4 4 4`,key:`ybng9g`}]]),gn=O(`octagon-x`,[[`path`,{d:`m15 9-6 6`,key:`1uzhvr`}],[`path`,{d:`M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586z`,key:`2d38gg`}],[`path`,{d:`m9 9 6 6`,key:`z0biqf`}]]),_n=O(`palette`,[[`path`,{d:`M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z`,key:`e79jfc`}],[`circle`,{cx:`13.5`,cy:`6.5`,r:`.5`,fill:`currentColor`,key:`1okk4w`}],[`circle`,{cx:`17.5`,cy:`10.5`,r:`.5`,fill:`currentColor`,key:`f64h9f`}],[`circle`,{cx:`6.5`,cy:`12.5`,r:`.5`,fill:`currentColor`,key:`qy21gx`}],[`circle`,{cx:`8.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`fotxhn`}]]),vn=O(`panel-left-close`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M9 3v18`,key:`fh3hqa`}],[`path`,{d:`m16 15-3-3 3-3`,key:`14y99z`}]]),yn=O(`panel-left-open`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}],[`path`,{d:`M9 3v18`,key:`fh3hqa`}],[`path`,{d:`m14 9 3 3-3 3`,key:`8010ee`}]]),bn=O(`pin-off`,[[`path`,{d:`M12 17v5`,key:`bb1du9`}],[`path`,{d:`M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89`,key:`znwnzq`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}],[`path`,{d:`M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11`,key:`c9qhm2`}]]),xn=O(`pin`,[[`path`,{d:`M12 17v5`,key:`bb1du9`}],[`path`,{d:`M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z`,key:`1nkz8b`}]]),Sn=O(`play`,[[`path`,{d:`M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z`,key:`10ikf1`}]]),Cn=O(`plug`,[[`path`,{d:`M12 22v-5`,key:`1ega77`}],[`path`,{d:`M15 8V2`,key:`18g5xt`}],[`path`,{d:`M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z`,key:`1xoxul`}],[`path`,{d:`M9 8V2`,key:`14iosj`}]]),wn=O(`power-off`,[[`path`,{d:`M18.36 6.64A9 9 0 0 1 20.77 15`,key:`dxknvb`}],[`path`,{d:`M6.16 6.16a9 9 0 1 0 12.68 12.68`,key:`1x7qb5`}],[`path`,{d:`M12 2v4`,key:`3427ic`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}]]),Tn=O(`power`,[[`path`,{d:`M12 2v10`,key:`mnfbl`}],[`path`,{d:`M18.4 6.6a9 9 0 1 1-12.77.04`,key:`obofu9`}]]),En=O(`puzzle`,[[`path`,{d:`M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z`,key:`w46dr5`}]]),Dn=O(`regex`,[[`path`,{d:`M17 3v10`,key:`15fgeh`}],[`path`,{d:`m12.67 5.5 8.66 5`,key:`1gpheq`}],[`path`,{d:`m12.67 10.5 8.66-5`,key:`1dkfa6`}],[`path`,{d:`M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z`,key:`swwfx4`}]]),On=O(`replace-all`,[[`path`,{d:`M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1`,key:`zg1ipl`}],[`path`,{d:`M14 4a1 1 0 0 1 1-1`,key:`dhj8ez`}],[`path`,{d:`M15 10a1 1 0 0 1-1-1`,key:`1mnyi5`}],[`path`,{d:`M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1`,key:`txt6k4`}],[`path`,{d:`M21 4a1 1 0 0 0-1-1`,key:`sfs9ap`}],[`path`,{d:`M21 9a1 1 0 0 1-1 1`,key:`mp6qeo`}],[`path`,{d:`m3 7 3 3 3-3`,key:`x25e72`}],[`path`,{d:`M6 10V5a2 2 0 0 1 2-2h2`,key:`15xut4`}],[`rect`,{x:`3`,y:`14`,width:`7`,height:`7`,rx:`1`,key:`1bkyp8`}]]),kn=O(`search`,[[`path`,{d:`m21 21-4.34-4.34`,key:`14j7rj`}],[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}]]),An=O(`send`,[[`path`,{d:`M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z`,key:`1ffxy3`}],[`path`,{d:`m21.854 2.147-10.94 10.939`,key:`12cjpa`}]]),jn=O(`server-off`,[[`path`,{d:`M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5`,key:`bt2siv`}],[`path`,{d:`M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z`,key:`1hjrv1`}],[`path`,{d:`M22 17v-1a2 2 0 0 0-2-2h-1`,key:`1iynyr`}],[`path`,{d:`M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z`,key:`161ggg`}],[`path`,{d:`M6 18h.01`,key:`uhywen`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}]]),Mn=O(`server`,[[`rect`,{width:`20`,height:`8`,x:`2`,y:`2`,rx:`2`,ry:`2`,key:`ngkwjq`}],[`rect`,{width:`20`,height:`8`,x:`2`,y:`14`,rx:`2`,ry:`2`,key:`iecqi9`}],[`line`,{x1:`6`,x2:`6.01`,y1:`6`,y2:`6`,key:`16zg32`}],[`line`,{x1:`6`,x2:`6.01`,y1:`18`,y2:`18`,key:`nzw8ys`}]]),Nn=O(`settings-2`,[[`path`,{d:`M14 17H5`,key:`gfn3mx`}],[`path`,{d:`M19 7h-9`,key:`6i9tg`}],[`circle`,{cx:`17`,cy:`17`,r:`3`,key:`18b49y`}],[`circle`,{cx:`7`,cy:`7`,r:`3`,key:`dfmy0x`}]]),Pn=O(`settings`,[[`path`,{d:`M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915`,key:`1i5ecw`}],[`circle`,{cx:`12`,cy:`12`,r:`3`,key:`1v7zrd`}]]),Fn=O(`share-2`,[[`circle`,{cx:`18`,cy:`5`,r:`3`,key:`gq8acd`}],[`circle`,{cx:`6`,cy:`12`,r:`3`,key:`w7nqdw`}],[`circle`,{cx:`18`,cy:`19`,r:`3`,key:`1xt0gg`}],[`line`,{x1:`8.59`,x2:`15.42`,y1:`13.51`,y2:`17.49`,key:`47mynk`}],[`line`,{x1:`15.41`,x2:`8.59`,y1:`6.51`,y2:`10.49`,key:`1n3mei`}]]),In=O(`square-split-vertical`,[[`path`,{d:`M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3`,key:`1pi83i`}],[`path`,{d:`M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3`,key:`ido5k7`}],[`line`,{x1:`4`,x2:`20`,y1:`12`,y2:`12`,key:`1e0a9i`}]]),Ln=O(`square`,[[`rect`,{width:`18`,height:`18`,x:`3`,y:`3`,rx:`2`,key:`afitv7`}]]),Rn=O(`sun`,[[`circle`,{cx:`12`,cy:`12`,r:`4`,key:`4exip2`}],[`path`,{d:`M12 2v2`,key:`tus03m`}],[`path`,{d:`M12 20v2`,key:`1lh1kg`}],[`path`,{d:`m4.93 4.93 1.41 1.41`,key:`149t6j`}],[`path`,{d:`m17.66 17.66 1.41 1.41`,key:`ptbguv`}],[`path`,{d:`M2 12h2`,key:`1t8f8n`}],[`path`,{d:`M20 12h2`,key:`1q8mjw`}],[`path`,{d:`m6.34 17.66-1.41 1.41`,key:`1m8zz5`}],[`path`,{d:`m19.07 4.93-1.41 1.41`,key:`1shlcs`}]]),zn=O(`tag`,[[`path`,{d:`M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z`,key:`vktsd0`}],[`circle`,{cx:`7.5`,cy:`7.5`,r:`.5`,fill:`currentColor`,key:`kqv944`}]]),Bn=O(`terminal`,[[`path`,{d:`M12 19h8`,key:`baeox8`}],[`path`,{d:`m4 17 6-6-6-6`,key:`1yngyt`}]]),Vn=O(`triangle-alert`,[[`path`,{d:`m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3`,key:`wmoenq`}],[`path`,{d:`M12 9v4`,key:`juzpu7`}],[`path`,{d:`M12 17h.01`,key:`p32p05`}]]),Hn=O(`undo-2`,[[`path`,{d:`M9 14 4 9l5-5`,key:`102s5s`}],[`path`,{d:`M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11`,key:`f3b9sd`}]]),Un=O(`unlink`,[[`path`,{d:`m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71`,key:`yqzxt4`}],[`path`,{d:`m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71`,key:`4qinb0`}],[`line`,{x1:`8`,x2:`8`,y1:`2`,y2:`5`,key:`1041cp`}],[`line`,{x1:`2`,x2:`5`,y1:`8`,y2:`8`,key:`14m1p5`}],[`line`,{x1:`16`,x2:`16`,y1:`19`,y2:`22`,key:`rzdirn`}],[`line`,{x1:`19`,x2:`22`,y1:`16`,y2:`16`,key:`ox905f`}]]),Wn=O(`upload`,[[`path`,{d:`M12 3v12`,key:`1x0j5s`}],[`path`,{d:`m17 8-5-5-5 5`,key:`7q97r8`}],[`path`,{d:`M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4`,key:`ih7n3h`}]]),Gn=O(`whole-word`,[[`circle`,{cx:`7`,cy:`12`,r:`3`,key:`12clwm`}],[`path`,{d:`M10 9v6`,key:`17i7lo`}],[`circle`,{cx:`17`,cy:`12`,r:`3`,key:`gl7c2s`}],[`path`,{d:`M14 7v8`,key:`dl84cr`}],[`path`,{d:`M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1`,key:`lt2kga`}]]),Kn=O(`wifi-off`,[[`path`,{d:`M12 20h.01`,key:`zekei9`}],[`path`,{d:`M8.5 16.429a5 5 0 0 1 7 0`,key:`1bycff`}],[`path`,{d:`M5 12.859a10 10 0 0 1 5.17-2.69`,key:`1dl1wf`}],[`path`,{d:`M19 12.859a10 10 0 0 0-2.007-1.523`,key:`4k23kn`}],[`path`,{d:`M2 8.82a15 15 0 0 1 4.177-2.643`,key:`1grhjp`}],[`path`,{d:`M22 8.82a15 15 0 0 0-11.288-3.764`,key:`z3jwby`}],[`path`,{d:`m2 2 20 20`,key:`1ooewy`}]]),qn=O(`zoom-in`,[[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}],[`line`,{x1:`21`,x2:`16.65`,y1:`21`,y2:`16.65`,key:`13gj7c`}],[`line`,{x1:`11`,x2:`11`,y1:`8`,y2:`14`,key:`1vmskp`}],[`line`,{x1:`8`,x2:`14`,y1:`11`,y2:`11`,key:`durymu`}]]),Jn=O(`zoom-out`,[[`circle`,{cx:`11`,cy:`11`,r:`8`,key:`4ej97u`}],[`line`,{x1:`21`,x2:`16.65`,y1:`21`,y2:`16.65`,key:`13gj7c`}],[`line`,{x1:`8`,x2:`14`,y1:`11`,y2:`11`,key:`durymu`}]]),Yn=lt(),H=e(r(),1),U=n(),Xn=({...e})=>{let t=L(e=>e.theme);return(0,U.jsx)(ve,{theme:t===`system`?window.matchMedia(`(prefers-color-scheme: dark)`).matches?`dark`:`light`:t,className:`toaster group`,icons:{success:(0,U.jsx)(xt,{className:`size-4`}),info:(0,U.jsx)($t,{className:`size-4`}),warning:(0,U.jsx)(Vn,{className:`size-4`}),error:(0,U.jsx)(gn,{className:`size-4`}),loading:(0,U.jsx)(V,{className:`size-4 animate-spin`})},style:{"--normal-bg":`var(--color-popover)`,"--normal-text":`var(--color-popover-foreground)`,"--normal-border":`var(--color-border)`,"--border-radius":`var(--radius)`},...e})};function Zn({delayDuration:e=0,...t}){return(0,U.jsx)(b,{"data-slot":`tooltip-provider`,delayDuration:e,...t})}function Qn({...e}){return(0,U.jsx)(v,{"data-slot":`tooltip`,...e})}function $n({...e}){return(0,U.jsx)(T,{"data-slot":`tooltip-trigger`,...e})}function er({className:e,sideOffset:t=0,children:n,...r}){return(0,U.jsx)(E,{children:(0,U.jsxs)(w,{"data-slot":`tooltip-content`,sideOffset:t,className:R(`z-50 w-fit origin-(--radix-tooltip-content-transform-origin) animate-in rounded-md bg-foreground px-3 py-1.5 text-xs text-balance text-background fade-in-0 zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95`,e),...r,children:[n,(0,U.jsx)(D,{className:`z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground`})]})})}function tr(e,t){let n=getComputedStyle(e);return t*parseFloat(n.fontSize)}function nr(e,t){let n=getComputedStyle(e.ownerDocument.body);return t*parseFloat(n.fontSize)}function rr(e){return e/100*window.innerHeight}function ir(e){return e/100*window.innerWidth}function ar(e){switch(typeof e){case`number`:return[e,`px`];case`string`:{let t=parseFloat(e);return e.endsWith(`%`)?[t,`%`]:e.endsWith(`px`)?[t,`px`]:e.endsWith(`rem`)?[t,`rem`]:e.endsWith(`em`)?[t,`em`]:e.endsWith(`vh`)?[t,`vh`]:e.endsWith(`vw`)?[t,`vw`]:[t,`%`]}}}function or({groupSize:e,panelElement:t,styleProp:n}){let r,[i,a]=ar(n);switch(a){case`%`:r=i/100*e;break;case`px`:r=i;break;case`rem`:r=nr(t,i);break;case`em`:r=tr(t,i);break;case`vh`:r=rr(i);break;case`vw`:r=ir(i);break}return r}function sr(e){return parseFloat(e.toFixed(3))}function cr({group:e}){let{orientation:t,panels:n}=e;return n.reduce((e,n)=>(e+=t===`horizontal`?n.element.offsetWidth:n.element.offsetHeight,e),0)}function lr(e){let{panels:t}=e,n=cr({group:e});return n===0?t.map(e=>({groupResizeBehavior:e.panelConstraints.groupResizeBehavior,collapsedSize:0,collapsible:e.panelConstraints.collapsible===!0,defaultSize:void 0,disabled:e.panelConstraints.disabled,minSize:0,maxSize:100,panelId:e.id})):t.map(e=>{let{element:t,panelConstraints:r}=e,i=0;r.collapsedSize!==void 0&&(i=sr(or({groupSize:n,panelElement:t,styleProp:r.collapsedSize})/n*100));let a;r.defaultSize!==void 0&&(a=sr(or({groupSize:n,panelElement:t,styleProp:r.defaultSize})/n*100));let o=0;r.minSize!==void 0&&(o=sr(or({groupSize:n,panelElement:t,styleProp:r.minSize})/n*100));let s=100;return r.maxSize!==void 0&&(s=sr(or({groupSize:n,panelElement:t,styleProp:r.maxSize})/n*100)),{groupResizeBehavior:r.groupResizeBehavior,collapsedSize:i,collapsible:r.collapsible===!0,defaultSize:a,disabled:r.disabled,minSize:o,maxSize:s,panelId:e.id}})}function ur(e,t=`Assertion error`){if(!e)throw Error(t)}function dr(e,t){return Array.from(t).sort(e===`horizontal`?fr:pr)}function fr(e,t){let n=e.element.offsetLeft-t.element.offsetLeft;return n===0?e.element.offsetWidth-t.element.offsetWidth:n}function pr(e,t){let n=e.element.offsetTop-t.element.offsetTop;return n===0?e.element.offsetHeight-t.element.offsetHeight:n}function mr(e){return typeof e==`object`&&!!e&&`nodeType`in e&&e.nodeType===Node.ELEMENT_NODE}function hr(e,t){return{x:e.x>=t.left&&e.x<=t.right?0:Math.min(Math.abs(e.x-t.left),Math.abs(e.x-t.right)),y:e.y>=t.top&&e.y<=t.bottom?0:Math.min(Math.abs(e.y-t.top),Math.abs(e.y-t.bottom))}}function gr({orientation:e,rects:t,targetRect:n}){let r={x:n.x+n.width/2,y:n.y+n.height/2},i,a=Number.MAX_VALUE;for(let n of t){let{x:t,y:o}=hr(r,n),s=e===`horizontal`?t:o;s<a&&(a=s,i=n)}return ur(i,`No rect found`),i}var _r;function vr(){return _r===void 0&&(_r=typeof matchMedia==`function`?!!matchMedia(`(pointer:coarse)`).matches:!1),_r}function yr(e){let{element:t,orientation:n,panels:r,separators:i}=e,a=dr(n,Array.from(t.children).filter(mr).map(e=>({element:e}))).map(({element:e})=>e),o=[],s=!1,c=!1,l=-1,u=-1,d=0,f,p=[];{let e=-1;for(let t of a)t.hasAttribute(`data-panel`)&&(e++,t.ariaDisabled===null&&(d++,l===-1&&(l=e),u=e))}if(d>1){let t=-1;for(let d of a)if(d.hasAttribute(`data-panel`)){t++;let i=r.find(e=>e.element===d);if(i){if(f){let r=f.element.getBoundingClientRect(),a=d.getBoundingClientRect(),m;if(c){let e=n===`horizontal`?new DOMRect(r.right,r.top,0,r.height):new DOMRect(r.left,r.bottom,r.width,0),t=n===`horizontal`?new DOMRect(a.left,a.top,0,a.height):new DOMRect(a.left,a.top,a.width,0);switch(p.length){case 0:m=[e,t];break;case 1:{let i=p[0];m=[i,gr({orientation:n,rects:[r,a],targetRect:i.element.getBoundingClientRect()})===r?t:e];break}default:m=p;break}}else m=p.length?p:[n===`horizontal`?new DOMRect(r.right,a.top,a.left-r.right,a.height):new DOMRect(a.left,r.bottom,a.width,a.top-r.bottom)];for(let n of m){let r=`width`in n?n:n.element.getBoundingClientRect(),a=vr()?e.resizeTargetMinimumSize.coarse:e.resizeTargetMinimumSize.fine;if(r.width<a){let e=a-r.width;r=new DOMRect(r.x-e/2,r.y,r.width+e,r.height)}if(r.height<a){let e=a-r.height;r=new DOMRect(r.x,r.y-e/2,r.width,r.height+e)}!s&&!(t<=l||t>u)&&o.push({group:e,groupSize:cr({group:e}),panels:[f,i],separator:`width`in n?void 0:n,rect:r}),s=!1}}c=!1,f=i,p=[]}}else if(d.hasAttribute(`data-separator`)){d.ariaDisabled!==null&&(s=!0);let e=i.find(e=>e.element===d);e?p.push(e):(f=void 0,p=[])}else c=!0}return o}var br=class{#e={};addListener(e,t){let n=this.#e[e];return n===void 0?this.#e[e]=[t]:n.includes(t)||n.push(t),()=>{this.removeListener(e,t)}}emit(e,t){let n=this.#e[e];if(n!==void 0)if(n.length===1)n[0].call(null,t);else{let e=!1,r=null,i=Array.from(n);for(let n=0;n<i.length;n++){let a=i[n];try{a.call(null,t)}catch(t){r===null&&(e=!0,r=t)}}if(e)throw r}}removeAllListeners(){this.#e={}}removeListener(e,t){let n=this.#e[e];if(n!==void 0){let e=n.indexOf(t);e>=0&&n.splice(e,1)}}},xr=new Map,Sr=new br;function Cr(e){xr=new Map(xr),xr.delete(e)}function wr(e,t){for(let[t]of xr)if(t.id===e)return t}function Tr(e,t){for(let[t,n]of xr)if(t.id===e)return n;if(t)throw Error(`Could not find data for Group with id ${e}`)}function Er(){return xr}function Dr(e,t){return Sr.addListener(`groupChange`,n=>{n.group.id===e&&t(n)})}function Or(e,t){let n=xr.get(e);xr=new Map(xr),xr.set(e,t),Sr.emit(`groupChange`,{group:e,prev:n,next:t})}function kr(e,t,n){let r,i={x:1/0,y:1/0};for(let a of t){let t=hr(n,a.rect);switch(e){case`horizontal`:t.x<=i.x&&(r=a,i=t);break;case`vertical`:t.y<=i.y&&(r=a,i=t);break}}return r?{distance:i,hitRegion:r}:void 0}function Ar(e){return typeof e==`object`&&!!e&&`nodeType`in e&&e.nodeType===Node.DOCUMENT_FRAGMENT_NODE}function jr(e,t){if(e===t)throw Error(`Cannot compare node with itself`);let n={a:Lr(e),b:Lr(t)},r;for(;n.a.at(-1)===n.b.at(-1);)r=n.a.pop(),n.b.pop();ur(r,`Stacking order can only be calculated for elements with a common ancestor`);let i={a:Ir(Fr(n.a)),b:Ir(Fr(n.b))};if(i.a===i.b){let e=r.childNodes,t={a:n.a.at(-1),b:n.b.at(-1)},i=e.length;for(;i--;){let n=e[i];if(n===t.a)return 1;if(n===t.b)return-1}}return Math.sign(i.a-i.b)}var Mr=/\b(?:position|zIndex|opacity|transform|webkitTransform|mixBlendMode|filter|webkitFilter|isolation)\b/;function Nr(e){let t=getComputedStyle(Rr(e)??e).display;return t===`flex`||t===`inline-flex`}function Pr(e){let t=getComputedStyle(e);return!!(t.position===`fixed`||t.zIndex!==`auto`&&(t.position!==`static`||Nr(e))||+t.opacity<1||`transform`in t&&t.transform!==`none`||`webkitTransform`in t&&t.webkitTransform!==`none`||`mixBlendMode`in t&&t.mixBlendMode!==`normal`||`filter`in t&&t.filter!==`none`||`webkitFilter`in t&&t.webkitFilter!==`none`||`isolation`in t&&t.isolation===`isolate`||Mr.test(t.willChange)||t.webkitOverflowScrolling===`touch`)}function Fr(e){let t=e.length;for(;t--;){let n=e[t];if(ur(n,`Missing node`),Pr(n))return n}return null}function Ir(e){return e&&Number(getComputedStyle(e).zIndex)||0}function Lr(e){let t=[];for(;e;)t.push(e),e=Rr(e);return t}function Rr(e){let{parentNode:t}=e;return Ar(t)?t.host:t}function zr(e,t){return e.x<t.x+t.width&&e.x+e.width>t.x&&e.y<t.y+t.height&&e.y+e.height>t.y}function Br({groupElement:e,hitRegion:t,pointerEventTarget:n}){if(!mr(n)||n.contains(e)||e.contains(n))return!0;if(jr(n,e)>0){let r=n;for(;r;){if(r.contains(e))return!0;if(zr(r.getBoundingClientRect(),t))return!1;r=r.parentElement}}return!0}function Vr(e,t){let n=[];return t.forEach((t,r)=>{if(r.disabled)return;let i=yr(r),a=kr(r.orientation,i,{x:e.clientX,y:e.clientY});a&&a.distance.x<=0&&a.distance.y<=0&&Br({groupElement:r.element,hitRegion:a.hitRegion.rect,pointerEventTarget:e.target})&&n.push(a.hitRegion)}),n}function Hr(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!=t[n])return!1;return!0}function Ur(e,t,n=0){return Math.abs(sr(e)-sr(t))<=n}function Wr(e,t){return Ur(e,t)?0:e>t?1:-1}function Gr({overrideDisabledPanels:e,panelConstraints:t,prevSize:n,size:r}){let{collapsedSize:i=0,collapsible:a,disabled:o,maxSize:s=100,minSize:c=0}=t;if(o&&!e)return n;if(Wr(r,c)<0)if(a){let e=(i+c)/2;r=Wr(r,e)<0?i:c}else r=c;return r=Math.min(s,r),r=sr(r),r}function Kr({delta:e,initialLayout:t,panelConstraints:n,pivotIndices:r,prevLayout:i,trigger:a}){if(Ur(e,0))return t;let o=a===`imperative-api`,s=Object.values(t),c=Object.values(i),l=[...s],[u,d]=r;ur(u!=null,`Invalid first pivot index`),ur(d!=null,`Invalid second pivot index`);let f=0;switch(a){case`keyboard`:{let t=e<0?d:u,r=n[t];ur(r,`Panel constraints not found for index ${t}`);let{collapsedSize:i=0,collapsible:a,minSize:o=0}=r;if(a){let n=s[t];if(ur(n!=null,`Previous layout not found for panel index ${t}`),Ur(n,i)){let t=o-n;Wr(t,Math.abs(e))>0&&(e=e<0?0-t:t)}}}{let t=e<0?u:d,r=n[t];ur(r,`No panel constraints found for index ${t}`);let{collapsedSize:i=0,collapsible:a,minSize:o=0}=r;if(a){let n=s[t];if(ur(n!=null,`Previous layout not found for panel index ${t}`),Ur(n,o)){let t=n-i;Wr(t,Math.abs(e))>0&&(e=e<0?0-t:t)}}}break;default:{let t=e<0?d:u,r=n[t];ur(r,`Panel constraints not found for index ${t}`);let i=s[t],{collapsible:a,collapsedSize:o,minSize:c}=r;if(a&&Wr(i,c)<0)if(e>0){let t=c-o,n=t/2;Wr(i+e,c)<0&&(e=Wr(e,n)<=0?0:t)}else{let t=c-o,n=100-t/2;Wr(i-e,c)<0&&(e=Wr(100+e,n)>0?0:-t)}break}}{let t=e<0?1:-1,r=e<0?d:u,i=0;for(;;){let e=s[r];ur(e!=null,`Previous layout not found for panel index ${r}`);let a=Gr({overrideDisabledPanels:o,panelConstraints:n[r],prevSize:e,size:100})-e;if(i+=a,r+=t,r<0||r>=n.length)break}let a=Math.min(Math.abs(e),Math.abs(i));e=e<0?0-a:a}{let t=e<0?u:d;for(;t>=0&&t<n.length;){let r=Math.abs(e)-Math.abs(f),i=s[t];ur(i!=null,`Previous layout not found for panel index ${t}`);let a=i-r,c=Gr({overrideDisabledPanels:o,panelConstraints:n[t],prevSize:i,size:a});if(!Ur(i,c)&&(f+=i-c,l[t]=c,f.toFixed(3).localeCompare(Math.abs(e).toFixed(3),void 0,{numeric:!0})>=0))break;e<0?t--:t++}}if(Hr(c,l))return i;{let t=e<0?d:u,r=s[t];ur(r!=null,`Previous layout not found for panel index ${t}`);let i=r+f,a=Gr({overrideDisabledPanels:o,panelConstraints:n[t],prevSize:r,size:i});if(l[t]=a,!Ur(a,i)){let t=i-a,r=e<0?d:u;for(;r>=0&&r<n.length;){let i=l[r];ur(i!=null,`Previous layout not found for panel index ${r}`);let a=i+t,s=Gr({overrideDisabledPanels:o,panelConstraints:n[r],prevSize:i,size:a});if(Ur(i,s)||(t-=s-i,l[r]=s),Ur(t,0))break;e>0?r--:r++}}}if(!Ur(Object.values(l).reduce((e,t)=>t+e,0),100,.1))return i;let p=Object.keys(i);return l.reduce((e,t,n)=>(e[p[n]]=t,e),{})}function qr(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(let n in e)if(t[n]===void 0||Wr(e[n],t[n])!==0)return!1;return!0}function Jr({layout:e,panelConstraints:t}){let n=Object.values(e),r=[...n],i=r.reduce((e,t)=>e+t,0);if(r.length!==t.length)throw Error(`Invalid ${t.length} panel layout: ${r.map(e=>`${e}%`).join(`, `)}`);if(!Ur(i,100)&&r.length>0)for(let e=0;e<t.length;e++){let t=r[e];ur(t!=null,`No layout data found for index ${e}`),r[e]=100/i*t}let a=0;for(let e=0;e<t.length;e++){let i=n[e];ur(i!=null,`No layout data found for index ${e}`);let o=r[e];ur(o!=null,`No layout data found for index ${e}`);let s=Gr({overrideDisabledPanels:!0,panelConstraints:t[e],prevSize:i,size:o});o!=s&&(a+=o-s,r[e]=s)}if(!Ur(a,0))for(let e=0;e<t.length;e++){let n=r[e];ur(n!=null,`No layout data found for index ${e}`);let i=n+a,o=Gr({overrideDisabledPanels:!0,panelConstraints:t[e],prevSize:n,size:i});if(n!==o&&(a-=o-n,r[e]=o,Ur(a,0)))break}let o=Object.keys(e);return r.reduce((e,t,n)=>(e[o[n]]=t,e),{})}function Yr({groupId:e,panelId:t}){let n=()=>{let t=Er();for(let[n,{defaultLayoutDeferred:r,derivedPanelConstraints:i,layout:a,groupSize:o,separatorToPanels:s}]of t)if(n.id===e)return{defaultLayoutDeferred:r,derivedPanelConstraints:i,group:n,groupSize:o,layout:a,separatorToPanels:s};throw Error(`Group ${e} not found`)},r=()=>{let e=n().derivedPanelConstraints.find(e=>e.panelId===t);if(e!==void 0)return e;throw Error(`Panel constraints not found for Panel ${t}`)},i=()=>{let e=n().group.panels.find(e=>e.id===t);if(e!==void 0)return e;throw Error(`Layout not found for Panel ${t}`)},a=()=>{let e=n().layout[t];if(e!==void 0)return e;throw Error(`Layout not found for Panel ${t}`)},o=e=>{let r=a();if(e===r)return;let{defaultLayoutDeferred:i,derivedPanelConstraints:o,group:s,groupSize:c,layout:l,separatorToPanels:u}=n(),d=s.panels.findIndex(e=>e.id===t),f=d===s.panels.length-1,p=Jr({layout:Kr({delta:f?r-e:e-r,initialLayout:l,panelConstraints:o,pivotIndices:f?[d-1,d]:[d,d+1],prevLayout:l,trigger:`imperative-api`}),panelConstraints:o});qr(l,p)||Or(s,{defaultLayoutDeferred:i,derivedPanelConstraints:o,groupSize:c,layout:p,separatorToPanels:u})};return{collapse:()=>{let{collapsible:e,collapsedSize:t}=r(),{mutableValues:n}=i(),s=a();e&&s!==t&&(n.expandToSize=s,o(t))},expand:()=>{let{collapsible:e,collapsedSize:t,minSize:n}=r(),{mutableValues:s}=i(),c=a();if(e&&c===t){let e=s.expandToSize??n;e===0&&(e=1),o(e)}},getSize:()=>{let{group:e}=n(),t=a(),{element:r}=i();return{asPercentage:t,inPixels:e.orientation===`horizontal`?r.offsetWidth:r.offsetHeight}},isCollapsed:()=>{let{collapsible:e,collapsedSize:t}=r(),n=a();return e&&Ur(t,n)},resize:e=>{let{group:t}=n(),{element:r}=i(),a=cr({group:t});o(sr(or({groupSize:a,panelElement:r,styleProp:e})/a*100))}}}function Xr(e){e.defaultPrevented||Vr(e,Er()).forEach(t=>{if(t.separator){let n=t.panels.find(e=>e.panelConstraints.defaultSize!==void 0);if(n){let r=n.panelConstraints.defaultSize,i=Yr({groupId:t.group.id,panelId:n.id});i&&r!==void 0&&(i.resize(r),e.preventDefault())}}})}function Zr(e){let t=Er();for(let[n]of t)if(n.separators.some(t=>t.element===e))return n;throw Error(`Could not find parent Group for separator element`)}function Qr({groupId:e}){let t=()=>{let t=Er();for(let[n,r]of t)if(n.id===e)return{group:n,...r};throw Error(`Could not find Group with id "${e}"`)};return{getLayout(){let{defaultLayoutDeferred:e,layout:n}=t();return e?{}:n},setLayout(e){let{defaultLayoutDeferred:n,derivedPanelConstraints:r,group:i,groupSize:a,layout:o,separatorToPanels:s}=t(),c=Jr({layout:e,panelConstraints:r});return n?o:(qr(o,c)||Or(i,{defaultLayoutDeferred:n,derivedPanelConstraints:r,groupSize:a,layout:c,separatorToPanels:s}),c)}}}function $r(e,t){let n=Zr(e),r=Tr(n.id,!0),i=n.separators.find(t=>t.element===e);ur(i,`Matching separator not found`);let a=r.separatorToPanels.get(i);ur(a,`Matching panels not found`);let o=a.map(e=>n.panels.indexOf(e)),s=Qr({groupId:n.id}).getLayout(),c=Jr({layout:Kr({delta:t,initialLayout:s,panelConstraints:r.derivedPanelConstraints,pivotIndices:o,prevLayout:s,trigger:`keyboard`}),panelConstraints:r.derivedPanelConstraints});qr(s,c)||Or(n,{defaultLayoutDeferred:r.defaultLayoutDeferred,derivedPanelConstraints:r.derivedPanelConstraints,groupSize:r.groupSize,layout:c,separatorToPanels:r.separatorToPanels})}function ei(e){if(e.defaultPrevented)return;let t=e.currentTarget,n=Zr(t);if(!n.disabled)switch(e.key){case`ArrowDown`:e.preventDefault(),n.orientation===`vertical`&&$r(t,5);break;case`ArrowLeft`:e.preventDefault(),n.orientation===`horizontal`&&$r(t,-5);break;case`ArrowRight`:e.preventDefault(),n.orientation===`horizontal`&&$r(t,5);break;case`ArrowUp`:e.preventDefault(),n.orientation===`vertical`&&$r(t,-5);break;case`End`:e.preventDefault(),$r(t,100);break;case`Enter`:{e.preventDefault();let n=Zr(t),{derivedPanelConstraints:r,layout:i,separatorToPanels:a}=Tr(n.id,!0),o=n.separators.find(e=>e.element===t);ur(o,`Matching separator not found`);let s=a.get(o);ur(s,`Matching panels not found`);let c=s[0],l=r.find(e=>e.panelId===c.id);if(ur(l,`Panel metadata not found`),l.collapsible){let e=i[c.id];$r(t,(l.collapsedSize===e?n.mutableState.expandedPanelSizes[c.id]??l.minSize:l.collapsedSize)-e)}break}case`F6`:{e.preventDefault();let n=Zr(t).separators.map(e=>e.element),r=Array.from(n).findIndex(t=>t===e.currentTarget);ur(r!==null,`Index not found`),n[e.shiftKey?r>0?r-1:n.length-1:r+1<n.length?r+1:0].focus({preventScroll:!0});break}case`Home`:e.preventDefault(),$r(t,-100);break}}var ti={cursorFlags:0,state:`inactive`},ni=new br;function ri(){return ti}function ii(e){return ni.addListener(`change`,e)}function ai(e){let t=ti,n={...ti};n.cursorFlags=e,ti=n,ni.emit(`change`,{prev:t,next:n})}function oi(e){let t=ti;ti=e,ni.emit(`change`,{prev:t,next:e})}function si(e){if(e.defaultPrevented||e.pointerType===`mouse`&&e.button>0)return;let t=Er(),n=Vr(e,t),r=new Map,i=!1;n.forEach(e=>{e.separator&&(i||(i=!0,e.separator.element.focus({preventScroll:!0})));let n=t.get(e.group);n&&r.set(e.group,n.layout)}),oi({cursorFlags:0,hitRegions:n,initialLayoutMap:r,pointerDownAtPoint:{x:e.clientX,y:e.clientY},state:`active`}),n.length&&e.preventDefault()}var ci=e=>e,li=()=>{},ui=1,di=2,fi=4,pi=8,mi=3,hi=12,gi;function _i(){return gi===void 0&&(gi=!1,typeof window<`u`&&(window.navigator.userAgent.includes(`Chrome`)||window.navigator.userAgent.includes(`Firefox`))&&(gi=!0)),gi}function vi({cursorFlags:e,groups:t,state:n}){let r=0,i=0;switch(n){case`active`:case`hover`:t.forEach(e=>{if(!e.mutableState.disableCursor)switch(e.orientation){case`horizontal`:r++;break;case`vertical`:i++;break}})}if(!(r===0&&i===0)){switch(n){case`active`:if(e&&_i()){let t=(e&ui)!==0,n=(e&di)!==0,r=(e&fi)!==0,i=(e&pi)!==0;if(t)return r?`se-resize`:i?`ne-resize`:`e-resize`;if(n)return r?`sw-resize`:i?`nw-resize`:`w-resize`;if(r)return`s-resize`;if(i)return`n-resize`}break}return _i()?r>0&&i>0?`move`:r>0?`ew-resize`:`ns-resize`:r>0&&i>0?`grab`:r>0?`col-resize`:`row-resize`}}var yi=new WeakMap;function bi(e){if(e.defaultView===null||e.defaultView===void 0)return;let{prevStyle:t,styleSheet:n}=yi.get(e)??{};n===void 0&&(n=new e.defaultView.CSSStyleSheet,e.adoptedStyleSheets&&e.adoptedStyleSheets.push(n));let r=ri();switch(r.state){case`active`:case`hover`:{let e=vi({cursorFlags:r.cursorFlags,groups:r.hitRegions.map(e=>e.group),state:r.state}),i=`*, *:hover {cursor: ${e} !important; }`;if(t===i)return;t=i,e?n.cssRules.length===0?n.insertRule(i):n.replaceSync(i):n.cssRules.length===1&&n.deleteRule(0);break}case`inactive`:t=void 0,n.cssRules.length===1&&n.deleteRule(0);break}yi.set(e,{prevStyle:t,styleSheet:n})}function xi({document:e,event:t,hitRegions:n,initialLayoutMap:r,mountedGroups:i,pointerDownAtPoint:a,prevCursorFlags:o}){let s=0;n.forEach(e=>{let{group:n,groupSize:o}=e,{orientation:c,panels:l}=n,{disableCursor:u}=n.mutableState,d=0;d=a?c===`horizontal`?(t.clientX-a.x)/o*100:(t.clientY-a.y)/o*100:c===`horizontal`?t.clientX<0?-100:100:t.clientY<0?-100:100;let f=r.get(n),p=i.get(n);if(!f||!p)return;let{defaultLayoutDeferred:m,derivedPanelConstraints:h,groupSize:g,layout:_,separatorToPanels:v}=p;if(h&&_&&v){let t=Kr({delta:d,initialLayout:f,panelConstraints:h,pivotIndices:e.panels.map(e=>l.indexOf(e)),prevLayout:_,trigger:`mouse-or-touch`});if(qr(t,_)){if(d!==0&&!u)switch(c){case`horizontal`:s|=d<0?ui:di;break;case`vertical`:s|=d<0?fi:pi;break}}else Or(e.group,{defaultLayoutDeferred:m,derivedPanelConstraints:h,groupSize:g,layout:t,separatorToPanels:v})}});let c=0;t.movementX===0?c|=o&mi:c|=s&mi,t.movementY===0?c|=o&hi:c|=s&hi,ai(c),bi(e)}function Si(e){let t=Er(),n=ri();switch(n.state){case`active`:xi({document:e.currentTarget,event:e,hitRegions:n.hitRegions,initialLayoutMap:n.initialLayoutMap,mountedGroups:t,prevCursorFlags:n.cursorFlags})}}function Ci(e){if(e.defaultPrevented)return;let t=ri(),n=Er();switch(t.state){case`active`:if(e.buttons===0){oi({cursorFlags:0,state:`inactive`}),t.hitRegions.forEach(e=>{let t=Tr(e.group.id,!0);Or(e.group,t)});return}xi({document:e.currentTarget,event:e,hitRegions:t.hitRegions,initialLayoutMap:t.initialLayoutMap,mountedGroups:n,pointerDownAtPoint:t.pointerDownAtPoint,prevCursorFlags:t.cursorFlags});break;default:{let r=Vr(e,n);r.length===0?t.state!==`inactive`&&oi({cursorFlags:0,state:`inactive`}):oi({cursorFlags:0,hitRegions:r,state:`hover`}),bi(e.currentTarget);break}}}function wi(e){if(e.relatedTarget instanceof HTMLIFrameElement)switch(ri().state){case`hover`:oi({cursorFlags:0,state:`inactive`})}}function Ti(e){if(e.defaultPrevented||e.pointerType===`mouse`&&e.button>0)return;let t=ri();switch(t.state){case`active`:oi({cursorFlags:0,state:`inactive`}),t.hitRegions.length>0&&(bi(e.currentTarget),t.hitRegions.forEach(e=>{let t=Tr(e.group.id,!0);Or(e.group,t)}),e.preventDefault())}}function Ei(e){let t=0,n=0,r={};for(let i of e)if(i.defaultSize!==void 0){t++;let e=sr(i.defaultSize);n+=e,r[i.panelId]=e}else r[i.panelId]=void 0;let i=e.length-t;if(i!==0){let t=sr((100-n)/i);for(let n of e)n.defaultSize===void 0&&(r[n.panelId]=t)}return r}function Di(e,t,n){if(!n[0])return;let r=e.panels.find(e=>e.element===t);if(!r||!r.onResize)return;let i=cr({group:e}),a=e.orientation===`horizontal`?r.element.offsetWidth:r.element.offsetHeight,o=r.mutableValues.prevSize,s={asPercentage:sr(a/i*100),inPixels:a};r.mutableValues.prevSize=s,r.onResize(s,r.id,o)}function Oi(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(let n in e)if(e[n]!==t[n])return!1;return!0}function ki({group:e,nextGroupSize:t,prevGroupSize:n,prevLayout:r}){if(n<=0||t<=0||n===t)return r;let i=0,a=0,o=!1,s=new Map,c=[];for(let l of e.panels){let e=r[l.id]??0;switch(l.panelConstraints.groupResizeBehavior){case`preserve-pixel-size`:{o=!0;let r=sr(e/100*n/t*100);s.set(l.id,r),i+=r;break}default:c.push(l.id),a+=e;break}}if(!o||c.length===0)return r;let l=100-i,u={...r};if(s.forEach((e,t)=>{u[t]=e}),a>0)for(let e of c)u[e]=sr((r[e]??0)/a*l);else{let e=sr(l/c.length);for(let t of c)u[t]=e}return u}function W(e,t){let n=e.map(e=>e.id),r=Object.keys(t);if(n.length!==r.length)return!1;for(let e of n)if(!r.includes(e))return!1;return!0}var Ai=new Map;function ji(e){let t=!0;ur(e.element.ownerDocument.defaultView,`Cannot register an unmounted Group`);let n=e.element.ownerDocument.defaultView.ResizeObserver,r=new Set,i=new Set,a=new n(n=>{for(let r of n){let{borderBoxSize:n,target:i}=r;if(i===e.element){if(t){let t=cr({group:e});if(t===0)return;let n=Tr(e.id);if(!n)return;let r=lr(e),i=n.defaultLayoutDeferred?Ei(r):n.layout,a=Jr({layout:ki({group:e,nextGroupSize:t,prevGroupSize:n.groupSize,prevLayout:i}),panelConstraints:r});if(!n.defaultLayoutDeferred&&qr(n.layout,a)&&Oi(n.derivedPanelConstraints,r)&&n.groupSize===t)return;Or(e,{defaultLayoutDeferred:!1,derivedPanelConstraints:r,groupSize:t,layout:a,separatorToPanels:n.separatorToPanels})}}else Di(e,i,n)}});a.observe(e.element),e.panels.forEach(e=>{ur(!r.has(e.id),`Panel ids must be unique; id "${e.id}" was used more than once`),r.add(e.id),e.onResize&&a.observe(e.element)});let o=cr({group:e}),s=lr(e),c=e.panels.map(({id:e})=>e).join(`,`),l=e.mutableState.defaultLayout;l&&(W(e.panels,l)||(l=void 0));let u=Jr({layout:e.mutableState.layouts[c]??l??Ei(s),panelConstraints:s}),d=e.element.ownerDocument;Ai.set(d,(Ai.get(d)??0)+1);let f=new Map;return yr(e).forEach(e=>{e.separator&&f.set(e.separator,e.panels)}),Or(e,{defaultLayoutDeferred:o===0,derivedPanelConstraints:s,groupSize:o,layout:u,separatorToPanels:f}),e.separators.forEach(e=>{ur(!i.has(e.id),`Separator ids must be unique; id "${e.id}" was used more than once`),i.add(e.id),e.element.addEventListener(`keydown`,ei)}),Ai.get(d)===1&&(d.addEventListener(`dblclick`,Xr,!0),d.addEventListener(`pointerdown`,si,!0),d.addEventListener(`pointerleave`,Si),d.addEventListener(`pointermove`,Ci),d.addEventListener(`pointerout`,wi),d.addEventListener(`pointerup`,Ti,!0)),function(){t=!1,Ai.set(d,Math.max(0,(Ai.get(d)??0)-1)),Cr(e),e.separators.forEach(e=>{e.element.removeEventListener(`keydown`,ei)}),Ai.get(d)||(d.removeEventListener(`dblclick`,Xr,!0),d.removeEventListener(`pointerdown`,si,!0),d.removeEventListener(`pointerleave`,Si),d.removeEventListener(`pointermove`,Ci),d.removeEventListener(`pointerout`,wi),d.removeEventListener(`pointerup`,Ti,!0)),a.disconnect()}}function Mi(){let[e,t]=(0,H.useState)({});return[e,(0,H.useCallback)(()=>t({}),[])]}function Ni(e){let t=(0,H.useId)();return`${e??t}`}var Pi=typeof window<`u`?H.useLayoutEffect:H.useEffect;function Fi(e){let t=(0,H.useRef)(e);return Pi(()=>{t.current=e},[e]),(0,H.useCallback)((...e)=>t.current?.(...e),[t])}function Ii(...e){return Fi(t=>{e.forEach(e=>{if(e)switch(typeof e){case`function`:e(t);break;case`object`:e.current=t;break}})})}function Li(e){let t=(0,H.useRef)({...e});return Pi(()=>{for(let n in e)t.current[n]=e[n]},[e]),t.current}var Ri=(0,H.createContext)(null);function zi(e,t){let n=(0,H.useRef)({getLayout:()=>({}),setLayout:ci});(0,H.useImperativeHandle)(t,()=>n.current,[]),Pi(()=>{Object.assign(n.current,Qr({groupId:e}))})}function Bi({children:e,className:t,defaultLayout:n,disableCursor:r,disabled:i,elementRef:a,groupRef:o,id:s,onLayoutChange:c,onLayoutChanged:l,orientation:u=`horizontal`,resizeTargetMinimumSize:d={coarse:20,fine:10},style:f,...p}){let m=(0,H.useRef)({onLayoutChange:{},onLayoutChanged:{}}),h=Fi(e=>{qr(m.current.onLayoutChange,e)||(m.current.onLayoutChange=e,c?.(e))}),g=Fi(e=>{qr(m.current.onLayoutChanged,e)||(m.current.onLayoutChanged=e,l?.(e))}),_=Ni(s),v=(0,H.useRef)(null),[y,b]=Mi(),x=(0,H.useRef)({lastExpandedPanelSizes:{},layouts:{},panels:[],resizeTargetMinimumSize:d,separators:[]}),S=Ii(v,a);zi(_,o);let C=Fi((e,t)=>{let r=ri(),i=wr(e),a=Tr(e);if(a){let e=!1;switch(r.state){case`active`:e=r.hitRegions.some(e=>e.group===i);break}return{flexGrow:a.layout[t]??1,pointerEvents:e?`none`:void 0}}return{flexGrow:n?.[t]??1}}),w=Li({defaultLayout:n,disableCursor:r}),T=(0,H.useMemo)(()=>({get disableCursor(){return!!w.disableCursor},getPanelStyles:C,id:_,orientation:u,registerPanel:e=>{let t=x.current;return t.panels=dr(u,[...t.panels,e]),b(),()=>{t.panels=t.panels.filter(t=>t!==e),b()}},registerSeparator:e=>{let t=x.current;return t.separators=dr(u,[...t.separators,e]),b(),()=>{t.separators=t.separators.filter(t=>t!==e),b()}},togglePanelDisabled:(e,t)=>{let n=x.current.panels.find(t=>t.id===e);n&&(n.panelConstraints.disabled=t);let r=wr(_),i=Tr(_);r&&i&&Or(r,{...i,derivedPanelConstraints:lr(r)})},toggleSeparatorDisabled:(e,t)=>{let n=x.current.separators.find(t=>t.id===e);n&&(n.disabled=t)}}),[C,_,b,u,w]),E=(0,H.useRef)(null);return Pi(()=>{let e=v.current;if(e===null)return;let t=x.current,n;if(w.defaultLayout!==void 0&&Object.keys(w.defaultLayout).length===t.panels.length){n={};for(let e of t.panels){let t=w.defaultLayout[e.id];t!==void 0&&(n[e.id]=t)}}let r={disabled:!!i,element:e,id:_,mutableState:{defaultLayout:n,disableCursor:!!w.disableCursor,expandedPanelSizes:x.current.lastExpandedPanelSizes,layouts:x.current.layouts},orientation:u,panels:t.panels,resizeTargetMinimumSize:t.resizeTargetMinimumSize,separators:t.separators};E.current=r;let a=ji(r),{defaultLayoutDeferred:o,derivedPanelConstraints:s,layout:c}=Tr(r.id,!0);!o&&s.length>0&&(h(c),g(c));let l=Dr(_,e=>{let{defaultLayoutDeferred:t,derivedPanelConstraints:n,layout:i}=e.next;if(t||n.length===0)return;let a=r.panels.map(({id:e})=>e).join(`,`);r.mutableState.layouts[a]=i,n.forEach(t=>{if(t.collapsible){let{layout:n}=e.prev??{};if(n){let e=Ur(t.collapsedSize,i[t.panelId]),a=Ur(t.collapsedSize,n[t.panelId]);e&&!a&&(r.mutableState.expandedPanelSizes[t.panelId]=n[t.panelId])}}});let o=ri().state!==`active`;h(i),o&&g(i)});return()=>{E.current=null,a(),l()}},[i,_,g,h,u,y,w]),(0,H.useEffect)(()=>{let e=E.current;e&&(e.mutableState.defaultLayout=n,e.mutableState.disableCursor=!!r)}),(0,U.jsx)(Ri.Provider,{value:T,children:(0,U.jsx)(`div`,{...p,className:t,"data-group":!0,"data-testid":_,id:_,ref:S,style:{height:`100%`,width:`100%`,overflow:`hidden`,...f,display:`flex`,flexDirection:u===`horizontal`?`row`:`column`,flexWrap:`nowrap`,touchAction:u===`horizontal`?`pan-y`:`pan-x`},children:e})})}Bi.displayName=`Group`;function Vi(){let e=(0,H.useContext)(Ri);return ur(e,`Group Context not found; did you render a Panel or Separator outside of a Group?`),e}function Hi(e,t){let{id:n}=Vi(),r=(0,H.useRef)({collapse:li,expand:li,getSize:()=>({asPercentage:0,inPixels:0}),isCollapsed:()=>!1,resize:li});(0,H.useImperativeHandle)(t,()=>r.current,[]),Pi(()=>{Object.assign(r.current,Yr({groupId:n,panelId:e}))})}function Ui({children:e,className:t,collapsedSize:n=`0%`,collapsible:r=!1,defaultSize:i,disabled:a,elementRef:o,groupResizeBehavior:s=`preserve-relative-size`,id:c,maxSize:l=`100%`,minSize:u=`0%`,onResize:d,panelRef:f,style:p,...m}){let h=!!c,g=Ni(c),_=Li({disabled:a}),v=(0,H.useRef)(null),y=Ii(v,o),{getPanelStyles:b,id:x,orientation:S,registerPanel:C,togglePanelDisabled:w}=Vi(),T=d!==null,E=Fi((e,t,n)=>{d?.(e,c,n)});Pi(()=>{let e=v.current;if(e!==null)return C({element:e,id:g,idIsStable:h,mutableValues:{expandToSize:void 0,prevSize:void 0},onResize:T?E:void 0,panelConstraints:{groupResizeBehavior:s,collapsedSize:n,collapsible:r,defaultSize:i,disabled:_.disabled,maxSize:l,minSize:u}})},[s,n,r,i,T,g,h,l,u,E,C,_]),(0,H.useEffect)(()=>{w(g,!!a)},[a,g,w]),Hi(g,f);let D=(0,H.useSyncExternalStore)(e=>Dr(x,e),()=>JSON.stringify(b(x,g)),()=>JSON.stringify(b(x,g)));return(0,U.jsx)(`div`,{...m,"aria-disabled":a||void 0,"data-panel":!0,"data-testid":g,id:g,ref:y,style:{...Wi,display:`flex`,flexBasis:0,flexShrink:1,overflow:`visible`,...JSON.parse(D)},children:(0,U.jsx)(`div`,{className:t,style:{maxHeight:`100%`,maxWidth:`100%`,flexGrow:1,overflow:`auto`,...p,touchAction:S===`horizontal`?`pan-y`:`pan-x`},children:e})})}Ui.displayName=`Panel`;var Wi={minHeight:0,maxHeight:`100%`,height:`auto`,minWidth:0,maxWidth:`100%`,width:`auto`,border:`none`,borderWidth:0,padding:0,margin:0};function Gi({layout:e,panelConstraints:t,panelId:n,panelIndex:r}){let i,a,o=e[n],s=t.find(e=>e.panelId===n);if(s){let c=s.maxSize,l=s.collapsible?s.collapsedSize:s.minSize,u=[r,r+1];a=Jr({layout:Kr({delta:l-o,initialLayout:e,panelConstraints:t,pivotIndices:u,prevLayout:e}),panelConstraints:t})[n],i=Jr({layout:Kr({delta:c-o,initialLayout:e,panelConstraints:t,pivotIndices:u,prevLayout:e}),panelConstraints:t})[n]}return{valueControls:n,valueMax:i,valueMin:a,valueNow:o}}function Ki({children:e,className:t,disabled:n,elementRef:r,id:i,style:a,...o}){let s=Ni(i),c=Li({disabled:n}),[l,u]=(0,H.useState)({}),[d,f]=(0,H.useState)(`inactive`),p=(0,H.useRef)(null),m=Ii(p,r),{disableCursor:h,id:g,orientation:_,registerSeparator:v,toggleSeparatorDisabled:y}=Vi(),b=_===`horizontal`?`vertical`:`horizontal`;Pi(()=>{let e=p.current;if(e!==null){let t={disabled:c.disabled,element:e,id:s},n=v(t),r=ii(e=>{f(e.next.state!==`inactive`&&e.next.hitRegions.some(e=>e.separator===t)?e.next.state:`inactive`)}),i=Dr(g,e=>{let{derivedPanelConstraints:n,layout:r,separatorToPanels:i}=e.next,a=i.get(t);if(a){let e=a[0],t=a.indexOf(e);u(Gi({layout:r,panelConstraints:n,panelId:e.id,panelIndex:t}))}});return()=>{r(),i(),n()}}},[g,s,v,c]),(0,H.useEffect)(()=>{y(s,!!n)},[n,s,y]);let x;return n&&!h&&(x=`not-allowed`),(0,U.jsx)(`div`,{...o,"aria-controls":l.valueControls,"aria-disabled":n||void 0,"aria-orientation":b,"aria-valuemax":l.valueMax,"aria-valuemin":l.valueMin,"aria-valuenow":l.valueNow,children:e,className:t,"data-separator":n?`disabled`:d,"data-testid":s,id:s,ref:m,role:`separator`,style:{flexBasis:`auto`,cursor:x,...a,flexGrow:0,flexShrink:0,touchAction:`none`},tabIndex:n?void 0:0})}Ki.displayName=`Separator`;function qi(e){let[t,n]=(0,H.useState)(()=>typeof window<`u`?window.matchMedia(e).matches:!1);return(0,H.useEffect)(()=>{let t=window.matchMedia(e),r=e=>n(e.matches);return t.addEventListener(`change`,r),n(t.matches),()=>t.removeEventListener(`change`,r)},[e]),t}function Ji(e){let[t,n]=(0,H.useState)([]),[r,i]=(0,H.useState)({}),a=(0,H.useCallback)(async()=>{if(e)try{let t=await I.get(`${F(e)}/tags`);n(t.tags),i(t.counts)}catch{}},[e]);return(0,H.useEffect)(()=>{a()},[a]),{projectTags:t,tagCounts:r,loadTags:a}}function Yi({projectTags:e,tagCounts:t,totalCount:n,selectedTagId:r,onSelect:i}){return e.length===0?null:(0,U.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-1.5 overflow-x-auto scrollbar-none`,children:[(0,U.jsxs)(`button`,{onClick:()=>i(null),className:`shrink-0 rounded-md border px-2 py-1 text-[10px] transition-colors ${r===null?`bg-primary/20 border-primary text-primary`:`border-border bg-surface text-text-secondary hover:bg-surface-elevated`}`,children:[`All (`,n,`)`]}),e.map(e=>(0,U.jsxs)(`button`,{onClick:()=>i(r===e.id?null:e.id),className:`shrink-0 flex items-center gap-1 rounded-md border px-2 py-1 text-[10px] transition-colors ${r===e.id?`border-current`:`border-border bg-surface hover:bg-surface-elevated`}`,style:r===e.id?{backgroundColor:e.color+`20`,color:e.color,borderColor:e.color}:void 0,children:[(0,U.jsx)(`span`,{className:`size-2 rounded-full shrink-0`,style:{backgroundColor:e.color}}),e.name,` (`,t[e.id]??0,`)`]},e.id))]})}function Xi({...e}){return(0,U.jsx)(ee,{"data-slot":`context-menu`,...e})}function Zi({...e}){return(0,U.jsx)(_,{"data-slot":`context-menu-trigger`,...e})}function Qi({...e}){return(0,U.jsx)(g,{"data-slot":`context-menu-sub`,...e})}function $i({className:e,inset:t,children:n,...r}){return(0,U.jsxs)(h,{"data-slot":`context-menu-sub-trigger`,"data-inset":t,className:R(`flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[inset]:pl-8 data-[state=open]:bg-accent data-[state=open]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground`,e),...r,children:[n,(0,U.jsx)(Se,{className:`ml-auto`})]})}function ea({className:e,...t}){return(0,U.jsx)(s,{"data-slot":`context-menu-sub-content`,className:R(`z-50 min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95`,e),...t})}function ta({className:e,...t}){return(0,U.jsx)(m,{children:(0,U.jsx)(c,{"data-slot":`context-menu-content`,className:R(`z-50 max-h-(--radix-context-menu-content-available-height) min-w-[8rem] origin-(--radix-context-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95`,e),...t})})}function G({className:e,inset:t,variant:n=`default`,...r}){return(0,U.jsx)(l,{"data-slot":`context-menu-item`,"data-inset":t,"data-variant":n,className:R(`relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground data-[variant=destructive]:*:[svg]:text-destructive!`,e),...r})}function na({className:e,...t}){return(0,U.jsx)(a,{"data-slot":`context-menu-separator`,className:R(`-mx-1 my-1 h-px bg-border`,e),...t})}function ra({session:e,projectName:t,projectTags:n,children:r,onTogglePin:i,onStartEditing:a,onDeleteSession:o,onTagChanged:s}){let c=(0,H.useCallback)(async r=>{try{if(r){await I.patch(`${F(t)}/chat/sessions/${e.id}/tag`,{tagId:r});let i=n.find(e=>e.id===r);i&&s(e.id,{id:i.id,name:i.name,color:i.color})}else await I.del(`${F(t)}/chat/sessions/${e.id}/tag`),s(e.id,null)}catch{}},[e.id,t,n,s]);return(0,U.jsxs)(Xi,{children:[(0,U.jsx)(Zi,{asChild:!0,children:r}),(0,U.jsxs)(ta,{children:[(0,U.jsxs)(G,{onClick:t=>i(t,e),children:[e.pinned?(0,U.jsx)(bn,{className:`size-3.5 mr-2`}):(0,U.jsx)(xn,{className:`size-3.5 mr-2`}),e.pinned?`Unpin`:`Pin`]}),a&&(0,U.jsxs)(G,{onClick:t=>a(e,t),children:[(0,U.jsx)(oe,{className:`size-3.5 mr-2`}),`Rename`]}),n.length>0&&(0,U.jsxs)(Qi,{children:[(0,U.jsxs)($i,{children:[(0,U.jsx)(zn,{className:`size-3.5 mr-2`}),`Set Tag`]}),(0,U.jsxs)(ea,{children:[n.map(t=>(0,U.jsxs)(G,{onClick:()=>c(t.id),children:[(0,U.jsx)(`span`,{className:`size-2.5 rounded-full mr-2 shrink-0`,style:{backgroundColor:t.color}}),t.name,e.tag?.id===t.id&&(0,U.jsx)(he,{className:`size-3 ml-auto`})]},t.id)),e.tag&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(na,{}),(0,U.jsx)(G,{onClick:()=>c(null),children:`Remove tag`})]})]})]}),o&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(na,{}),(0,U.jsxs)(G,{className:`text-red-500 focus:text-red-500`,onClick:t=>o(t,e),children:[(0,U.jsx)(Ie,{className:`size-3.5 mr-2`}),`Delete`]})]})]})]})}var ia=`application/ppm-tab`,aa=!1,oa=new Set;function sa(e){aa!==e&&(aa=e,oa.forEach(e=>e()))}function ca(){return(0,H.useSyncExternalStore)(e=>(oa.add(e),()=>oa.delete(e)),()=>aa)}function la(){sa(!1)}function ua(e){let[t,n]=(0,H.useState)(null),r=(0,H.useRef)(null);return{dropIndex:t,handleDragStart:(0,H.useCallback)((t,n)=>{let r={tabId:n,panelId:e};t.dataTransfer.setData(ia,JSON.stringify(r)),t.dataTransfer.effectAllowed=`move`,requestAnimationFrame(()=>sa(!0))},[e]),handleDragOver:(0,H.useCallback)((e,t,i)=>{if(!e.dataTransfer.types.includes(`application/ppm-tab`)||(e.preventDefault(),e.dataTransfer.dropEffect=`move`,r.current===t))return;r.current=t;let a=e.currentTarget.getBoundingClientRect(),o=a.left+a.width/2;n(e.clientX<o?i:i+1)},[]),handleDragOverBar:(0,H.useCallback)(e=>{e.dataTransfer.types.includes(`application/ppm-tab`)&&(e.preventDefault(),e.dataTransfer.dropEffect=`move`)},[]),handleDrop:(0,H.useCallback)(i=>{i.preventDefault(),sa(!1);let a=i.dataTransfer.getData(ia);if(a){try{let n=JSON.parse(a),r=z.getState();n.panelId===e?t!==null&&r.reorderTab(n.tabId,e,t):r.moveTab(n.tabId,n.panelId,e,t??void 0)}catch{}n(null),r.current=null}},[e,t]),handleDragEnd:(0,H.useCallback)(()=>{sa(!1),n(null),r.current=null},[])}}var da=null,fa=null,pa=0,ma=new Set;function ha(){ma.forEach(e=>e())}function ga(){return(0,H.useSyncExternalStore)(e=>(ma.add(e),()=>ma.delete(e)),()=>fa)}function _a(){return Date.now()-pa<300}var va=null;function ya(e,t,n){let r=document.createElement(`div`);r.id=`touch-drag-ghost`,Object.assign(r.style,{position:`fixed`,zIndex:`9999`,pointerEvents:`none`,padding:`6px 14px`,borderRadius:`8px`,background:`rgba(30,30,30,0.92)`,color:`#fff`,fontSize:`12px`,whiteSpace:`nowrap`,opacity:`0.95`,boxShadow:`0 4px 16px rgba(0,0,0,0.35)`,transform:`translate(-50%, -130%)`,left:`${t}px`,top:`${n}px`}),r.textContent=e,document.body.appendChild(r),va=r}function ba(e,t){va&&(va.style.left=`${e}px`,va.style.top=`${t}px`)}function xa(){va?.remove(),va=null}function Sa(e,t){va&&(va.style.display=`none`);let n=document.elementFromPoint(e,t);va&&(va.style.display=``);let r=n?.closest(`[data-panel-drop-zone]`);if(!r)return null;let i=r.dataset.panelDropZone,a=r.getBoundingClientRect(),o=(e-a.left)/a.width,s=(t-a.top)/a.height,c=.25,{grid:l}=z.getState(),u=window.innerWidth<768,d=Ue(l,i),f=d?!u&&(l[d.row]?.length??0)<Ge(!1):!1,p=!u&&l.length<3,m=`center`;return o<c&&f?m=`left`:o>1-c&&f?m=`right`:s<c&&p?m=`top`:s>1-c&&p&&(m=`bottom`),{panelId:i,zone:m}}function Ca(e){if(!da)return;e.preventDefault();let t=e.touches[0];if(!t)return;ba(t.clientX,t.clientY);let n=Sa(t.clientX,t.clientY);(n?.panelId!==fa?.panelId||n?.zone!==fa?.zone)&&(fa=n,ha())}function wa(){da=null,fa=null,ha(),xa(),la(),document.removeEventListener(`touchmove`,Ca),document.removeEventListener(`touchend`,Ta),document.removeEventListener(`touchcancel`,Ea)}function Ta(){let e=da,t=fa;if(wa(),pa=Date.now(),!e||!t)return;let n=z.getState();if(t.zone===`center`)e.panelId!==t.panelId&&n.moveTab(e.tabId,e.panelId,t.panelId);else{let r=t.zone===`top`?`up`:t.zone===`bottom`?`down`:t.zone;n.splitPanel(r,e.tabId,e.panelId,t.panelId)}}function Ea(){wa(),pa=Date.now()}function Da(e,t,n,r){da=e,sa(!0),ya(t,n,r),document.addEventListener(`touchmove`,Ca,{passive:!1}),document.addEventListener(`touchend`,Ta),document.addEventListener(`touchcancel`,Ea)}var Oa=200,ka=10;function Aa(e){let t=(0,H.useRef)(null),n=(0,H.useRef)(null),r=(0,H.useRef)(!1);return{handleTouchStart:(0,H.useCallback)((i,a,o)=>{let s=i.touches[0];s&&(n.current={x:s.clientX,y:s.clientY},r.current=!1,t.current=setTimeout(()=>{r.current=!0,Da({tabId:a,panelId:e},o,n.current.x,n.current.y)},Oa))},[e]),handleTouchMove:(0,H.useCallback)(e=>{if(r.current||!n.current||!t.current)return;let i=e.touches[0];i&&(Math.abs(i.clientX-n.current.x)>ka||Math.abs(i.clientY-n.current.y)>ka)&&(clearTimeout(t.current),t.current=null)},[]),handleTouchEnd:(0,H.useCallback)(()=>{t.current&&=(clearTimeout(t.current),null)},[])}}function ja(e){window.dispatchEvent(new CustomEvent(`open-command-palette`,{detail:e}))}function Ma(){let[e,t]=(0,H.useState)(!1),[n,r]=(0,H.useState)(``);return(0,H.useEffect)(()=>{let e=0,n=!1,{matchesEvent:i}=et.getState(),a=new Map,o=!1;function s(){o=!0}function c(){o=!1}function l(i){if(i.type===`keydown`&&i.key===`Shift`){n=!0;return}if(i.type===`keydown`&&i.shiftKey&&(n=!1),i.type===`keydown`&&i.key!==`Shift`&&(e=0),i.type===`keyup`&&i.key===`Shift`&&n&&!i.ctrlKey&&!i.metaKey&&!i.altKey&&!o&&!i.isComposing){let n=Date.now();if(n-e<400){e=0,r(``),t(!0);return}e=n;return}if(i.type!==`keydown`||o||i.isComposing)return;let{matchesEvent:s}=et.getState();if(s(i,`save-prevent`)){i.preventDefault();return}if(s(i,`command-palette`)){i.preventDefault(),r(``),t(!0);return}if(s(i,`toggle-sidebar`)){i.preventDefault(),L.getState().toggleSidebar();return}if(s(i,`next-tab`)||s(i,`prev-tab`)){i.preventDefault();let{tabs:e,activeTabId:t,setActiveTab:n}=B.getState();if(e.length<2)return;let r=e.findIndex(e=>e.id===t);n(e[s(i,`next-tab`)?(r+1)%e.length:(r-1+e.length)%e.length].id);return}if(s(i,`new-file`)){i.preventDefault(),B.getState().openNewFile();return}for(let e of[{action:`open-chat`,type:`chat`,title:`AI Chat`},{action:`open-terminal`,type:`terminal`,title:`Terminal`}])if(s(i,e.action)){i.preventDefault();let t=Ye.getState().activeProject;B.getState().openTab({type:e.type,title:e.title,projectId:t?.name??null,metadata:t?{projectName:t.name}:void 0,closable:!0});return}if(s(i,`open-settings`)){i.preventDefault();let e=L.getState();e.sidebarCollapsed&&e.toggleSidebar(),e.setSidebarActiveTab(`settings`);return}if(s(i,`open-git-status`)){i.preventDefault();let e=L.getState();e.sidebarCollapsed&&e.toggleSidebar(),e.setSidebarActiveTab(`git`);return}if(s(i,`voice-input`)){i.preventDefault(),window.dispatchEvent(new CustomEvent(`toggle-voice-input`));return}if(s(i,`open-search`)){i.preventDefault();let e=L.getState();e.sidebarCollapsed&&e.toggleSidebar(),e.setSidebarActiveTab(`search`);return}for(let e=1;e<=9;e++)if(s(i,`switch-project-${e}`)){i.preventDefault();let t=Ye.getState().projects[e-1];t&&(Ye.getState().setActiveProject(t),B.getState().switchProject(t.name));return}let c=rt.getState().contributions?.keybindings;if(c){let e=typeof navigator<`u`&&/Mac|iPhone|iPad/.test(navigator.userAgent),{getBinding:t}=et.getState();for(let n of c){let r=t(`ext:${n.command}`)||(e&&n.mac?n.mac:n.key);if(!r)continue;let o=a.get(r);if(o||(o=Ze(r),a.set(r,o)),tt(i,o)){i.preventDefault();let e=Ye.getState().activeProject,t=[];e?.path&&t.push(e.path),window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:n.command,args:t}}));return}}}}function u(e){let n=e.detail;r(typeof n==`string`?n:``),t(!0)}return window.addEventListener(`keydown`,l),window.addEventListener(`keyup`,l),window.addEventListener(`compositionstart`,s),window.addEventListener(`compositionend`,c),window.addEventListener(`open-command-palette`,u),()=>{window.removeEventListener(`keydown`,l),window.removeEventListener(`keyup`,l),window.removeEventListener(`compositionstart`,s),window.removeEventListener(`compositionend`,c),window.removeEventListener(`open-command-palette`,u)}},[]),{paletteOpen:e,paletteInitialQuery:n,closePalette:(0,H.useCallback)(()=>{t(!1),r(``)},[])}}var Na={approval_request:`bg-red-500`,question:`bg-amber-500`,done:`bg-blue-500`},Pa={done:0,question:1,approval_request:2};function Fa(e){return e&&Na[e]||`bg-red-500`}var Ia=Le()(e=>({notifications:new Map,addNotification:(t,n,r)=>{e(e=>{let i=new Map(e.notifications),a=i.get(t);return i.set(t,{count:(a?.count??0)+1,type:n,projectName:r}),{notifications:i}})},clearForSession:t=>{e(e=>{if(!e.notifications.has(t))return e;let n=new Map(e.notifications);return n.delete(t),{notifications:n}})},clearAll:()=>e({notifications:new Map})}));function La(e){let t=0;for(let[,n]of e.notifications)t+=n.count;return t}function Ra(e){return t=>{let n=null,r=-1;for(let[,i]of t.notifications){if(i.projectName!==e)continue;let t=Pa[i.type]??0;t>r&&(r=t,n=i.type)}return n}}var za=Le(e=>({sessions:new Set,setStreaming:(t,n)=>e(e=>{let r=new Set(e.sessions);return n?r.add(t):r.delete(t),{sessions:r}})})),Ba=e=>e.sessions.size>0;function Va(e){let[t,n]=(0,H.useState)(!1),[r,i]=(0,H.useState)(!1),a=(0,H.useCallback)(()=>{let t=e.current;t&&(n(t.scrollLeft>1),i(t.scrollLeft+t.clientWidth<t.scrollWidth-1))},[e]);return(0,H.useEffect)(()=>{let t=e.current;if(!t)return;a(),t.addEventListener(`scroll`,a,{passive:!0});let n=new ResizeObserver(a);n.observe(t);let r=new MutationObserver(a);return r.observe(t,{childList:!0,subtree:!0}),()=>{t.removeEventListener(`scroll`,a),n.disconnect(),r.disconnect()}},[e,a]),{canScrollLeft:t,canScrollRight:r,scrollLeft:(0,H.useCallback)(()=>{e.current?.scrollBy({left:-150,behavior:`smooth`})},[e]),scrollRight:(0,H.useCallback)(()=>{e.current?.scrollBy({left:150,behavior:`smooth`})},[e])}}var Ha={done:0,question:1,approval_request:2};function Ua(e,t,n,r){if(!e)return{left:null,right:null};let i=e.scrollLeft,a=i+e.clientWidth,o=null,s=-1,c=null,l=-1,u=e.getBoundingClientRect();for(let d of n){if(d.type!==`chat`)continue;let n=d.metadata?.sessionId,f=n?r.get(n):void 0;if(!f||f.count===0)continue;let p=t.get(d.id);if(!p)continue;let m=p.getBoundingClientRect(),h=m.left-u.left+e.scrollLeft,g=h+m.width,_=Ha[f.type]??0;g<=i&&_>s&&(s=_,o=f.type),h>=a&&_>l&&(l=_,c=f.type)}return{left:o,right:c}}function Wa(e){let t=/^#([0-9a-fA-F]{6})$/.exec(e.trim());if(!t)return null;let n=parseInt(t[1],16);return{r:n>>16&255,g:n>>8&255,b:n&255}}function Ga(e,t,n){let[r,i,a]=[e,t,n].map(e=>{let t=e/255;return t<=.04045?t/12.92:((t+.055)/1.055)**2.4});return .2126*r+.7152*i+.0722*a}function Ka(e){let t=Wa(e);return t?Ga(t.r,t.g,t.b)<.4:!1}function qa({tab:e,isActive:t,icon:n,showDropBefore:r,notificationType:i,isStreaming:a,onSelect:o,onClose:s,onDragStart:c,onDragOver:l,onDragEnd:u,onTouchStart:d,onTouchMove:f,onTouchEnd:p,tabRef:m,onRename:h,onContextAction:g,tagColor:_,extraMenuContent:v}){let[y,b]=(0,H.useState)(!1),[x,S]=(0,H.useState)(e.title),C=(0,H.useRef)(null);(0,H.useEffect)(()=>{y&&(S(e.title),setTimeout(()=>C.current?.select(),0))},[y]);let w=()=>{b(!1);let t=x.trim();t&&t!==e.title&&h&&h(t)},T=e.metadata?.connectionColor,E=T?{backgroundColor:t?T:`${T}33`,color:t&&Ka(T)?`#fff`:void 0}:void 0,D=e.type===`editor`,ee=(0,U.jsxs)(`button`,{ref:m,"data-tab-item":!0,draggable:!y,onClick:o,onAuxClick:t=>{t.button===1&&e.closable&&(t.preventDefault(),s())},onDragStart:c,onDragOver:l,onDragEnd:u,onTouchStart:d,onTouchMove:f,onTouchEnd:p,style:E,className:R(`group flex items-center gap-1 px-3 h-10 whitespace-nowrap text-xs transition-colors`,`border-b-2 -mb-px cursor-grab active:cursor-grabbing`,!E&&(t?`border-primary text-primary`:`border-transparent text-text-secondary hover:text-foreground`),E&&`border-transparent`),children:[(0,U.jsxs)(`span`,{className:R(`relative`,!_&&`text-text-secondary`),style:_?{color:_}:void 0,children:[(0,U.jsx)(n,{className:`size-4`}),a?(0,U.jsxs)(`span`,{"aria-hidden":!0,className:`absolute inset-0 flex items-center justify-center gap-[1.5px]`,children:[(0,U.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`}),(0,U.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`,style:{animationDelay:`0.15s`}}),(0,U.jsx)(`span`,{className:`tab-typing-dot size-[2px] rounded-full bg-current`,style:{animationDelay:`0.3s`}})]}):i&&!t?(0,U.jsx)(`span`,{className:R(`absolute -top-1 -right-1 size-2 rounded-full`,Fa(i))}):null]}),y?(0,U.jsx)(`input`,{ref:C,value:x,onChange:e=>S(e.target.value),onBlur:w,onKeyDown:e=>{e.key===`Enter`&&w(),e.key===`Escape`&&b(!1),e.stopPropagation()},onClick:e=>e.stopPropagation(),className:`max-w-[120px] bg-surface-elevated text-xs px-1 py-0.5 rounded border border-border outline-none focus:border-primary`,autoFocus:!0}):(0,U.jsx)(`span`,{className:`max-w-[120px] truncate`,onDoubleClick:e=>{h&&(e.stopPropagation(),b(!0))},children:e.title}),e.closable&&!y&&(0,U.jsx)(`span`,{role:`button`,tabIndex:0,onClick:e=>{e.stopPropagation(),s()},onKeyDown:e=>{e.key===`Enter`&&(e.stopPropagation(),s())},className:`ml-1 can-hover:opacity-0 can-hover:group-hover:opacity-100 rounded-sm hover:bg-surface-elevated p-0.5 transition-opacity`,children:(0,U.jsx)(Pe,{className:`size-3`})})]});return(0,U.jsxs)(`div`,{className:`relative flex items-center`,children:[r&&(0,U.jsx)(`div`,{className:`absolute left-0 top-1 bottom-1 w-0.5 bg-primary rounded-full z-10`}),g?(0,U.jsxs)(Xi,{children:[(0,U.jsx)(Zi,{asChild:!0,children:ee}),(0,U.jsxs)(ta,{children:[D&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(G,{onClick:()=>g(`copy-path`),children:`Copy Path`}),(0,U.jsxs)(G,{onClick:()=>g(`download`),children:[(0,U.jsx)(Ne,{className:`size-3.5 mr-2`}),`Download`]}),(0,U.jsx)(na,{}),(0,U.jsx)(G,{onClick:()=>g(`rename`),children:`Rename`}),(0,U.jsx)(G,{variant:`destructive`,onClick:()=>g(`delete`),children:`Delete`}),(0,U.jsx)(na,{})]}),v,e.closable&&(0,U.jsx)(G,{onClick:()=>g(`close`),children:`Close`}),(0,U.jsx)(G,{onClick:()=>g(`close-others`),children:`Close Others`}),(0,U.jsx)(G,{onClick:()=>g(`close-right`),children:`Close to the Right`})]})]}):ee]})}async function Ja(e,t){let{token:n}=await I.post(`${F(e)}/files/download/token`);Xa(`${F(e)}/files/raw?path=${encodeURIComponent(t)}&download=true&dl_token=${encodeURIComponent(n)}`,t.split(`/`).pop()??`download`)}async function Ya(e,t){let{token:n}=await I.post(`${F(e)}/files/download/token`),r=t.split(`/`).pop()??`folder`;Xa(`${F(e)}/files/download/zip?path=${encodeURIComponent(t)}&dl_token=${encodeURIComponent(n)}`,`${r}.zip`)}function Xa(e,t){let n=document.createElement(`a`);n.href=e,n.download=t,n.style.display=`none`,document.body.appendChild(n),n.click(),document.body.removeChild(n)}function Za({action:e,node:t,projectName:n,onClose:r,onRefresh:i}){let[a,o]=(0,H.useState)(``),[s,c]=(0,H.useState)(!1),[l,u]=(0,H.useState)(null),d=(0,H.useRef)(null);(0,H.useEffect)(()=>{o(e===`rename`?t.name:``)},[e,t.name]),(0,H.useEffect)(()=>{let e=setTimeout(()=>d.current?.focus(),100);return()=>clearTimeout(e)},[]);async function f(e){if(a.trim()){c(!0),u(null);try{let o=t.type===`directory`?t.path:t.path.split(`/`).slice(0,-1).join(`/`),s=o?`${o}/${a.trim()}`:a.trim();await I.post(`${F(n)}/files/create`,{path:s,type:e}),i(),r()}catch(e){u(e instanceof Error?e.message:`Failed to create`)}finally{c(!1)}}}async function p(){if(!a.trim()||a.trim()===t.name){r();return}c(!0),u(null);try{let e=t.path.split(`/`).slice(0,-1).join(`/`),o=e?`${e}/${a.trim()}`:a.trim();await I.post(`${F(n)}/files/rename`,{oldPath:t.path,newPath:o}),i(),r()}catch(e){u(e instanceof Error?e.message:`Failed to rename`)}finally{c(!1)}}async function m(){c(!0),u(null);try{await I.del(`${F(n)}/files/delete`,{path:t.path}),i(),r()}catch(e){u(e instanceof Error?e.message:`Failed to delete`)}finally{c(!1)}}function h(t){t.key===`Enter`&&(e===`new-file`?f(`file`):e===`new-folder`?f(`directory`):e===`rename`&&p()),t.key===`Escape`&&r()}if(e===`delete`)return(0,U.jsx)(Ee,{open:!0,onOpenChange:e=>!e&&r(),children:(0,U.jsxs)(Oe,{children:[(0,U.jsxs)(De,{children:[(0,U.jsxs)(ke,{children:[`Delete `,t.type===`directory`?`Folder`:`File`]}),(0,U.jsxs)(Te,{children:[`Are you sure you want to delete`,` `,(0,U.jsx)(`span`,{className:`font-mono font-semibold`,children:t.name}),`?`,t.type===`directory`&&` This will delete all contents.`]})]}),l&&(0,U.jsx)(`p`,{className:`text-sm text-error`,children:l}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(N,{variant:`outline`,onClick:r,disabled:s,children:`Cancel`}),(0,U.jsx)(N,{variant:`destructive`,onClick:m,disabled:s,children:s?`Deleting...`:`Delete`})]})]})});let g=e===`new-file`?`New File`:e===`new-folder`?`New Folder`:`Rename`,_=e===`rename`?t.name:e===`new-file`?`filename.ts`:`folder-name`;return(0,U.jsx)(Ee,{open:!0,onOpenChange:e=>!e&&r(),children:(0,U.jsxs)(Oe,{children:[(0,U.jsxs)(De,{children:[(0,U.jsx)(ke,{children:g}),(0,U.jsx)(Te,{children:e===`rename`?`Rename "${t.name}" to:`:`Create in ${t.type===`directory`?t.path||`/`:t.path.split(`/`).slice(0,-1).join(`/`)||`/`}`})]}),(0,U.jsx)(P,{ref:d,value:a,onChange:e=>o(e.target.value),onKeyDown:h,placeholder:_,disabled:s}),l&&(0,U.jsx)(`p`,{className:`text-sm text-error`,children:l}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(N,{variant:`outline`,onClick:r,disabled:s,children:`Cancel`}),(0,U.jsx)(N,{onClick:()=>{e===`new-file`?f(`file`):e===`new-folder`?f(`directory`):p()},disabled:s||!a.trim(),children:s?`Saving...`:e===`rename`?`Rename`:`Create`})]})]})})}var Qa={terminal:Bn,chat:dn,editor:jt,database:je,sqlite:je,postgres:je,"git-diff":Mt,settings:Pn,ports:_e,extension:En,"extension-webview":En,"conflict-editor":Mt},$a=(0,H.memo)(function({panelId:e}){let t=Ye(e=>e.activeProject),n=(0,H.useRef)(new Map),r=(0,H.useRef)(null),i=(0,H.useRef)(0),a=z(t=>e?t.panels[e]:t.panels[t.focusedPanelId]),o=a?.tabs??[],s=a?.activeTabId??null,c=a?.id??z.getState().focusedPanelId,{dropIndex:l,handleDragStart:u,handleDragOver:d,handleDragOverBar:f,handleDrop:p,handleDragEnd:m}=ua(c),{handleTouchStart:h,handleTouchMove:g,handleTouchEnd:_}=Aa(c),{projectTags:v,loadTags:y}=Ji(t?.name),[b,x]=(0,H.useState)({}),S=o.filter(e=>e.type===`chat`&&e.metadata?.sessionId).map(e=>e.metadata.sessionId);(0,H.useEffect)(()=>{!t?.name||S.length===0||I.get(`${F(t.name)}/chat/sessions?limit=50`).then(e=>{let t={};for(let n of e.sessions)n.tag&&(t[n.id]=n.tag);x(t)}).catch(()=>{})},[t?.name,S.join(`,`)]);let C=(0,H.useCallback)(async(e,n)=>{if(t?.name)try{if(n!==null){await I.patch(`${F(t.name)}/chat/sessions/${e}/tag`,{tagId:n});let r=v.find(e=>e.id===n);r&&x(t=>({...t,[e]:{id:r.id,name:r.name,color:r.color}}))}else await I.del(`${F(t.name)}/chat/sessions/${e}/tag`),x(t=>{let n={...t};return delete n[e],n});y()}catch{}},[t?.name,v,y]),w=Ia(e=>e.notifications),T=za(e=>e.sessions),{canScrollLeft:E,canScrollRight:D,scrollLeft:ee,scrollRight:O}=Va(r),te=Ua(r.current,n.current,o,w);(0,H.useEffect)(()=>{if(o.length>i.current&&s){let e=n.current.get(s);e&&e.scrollIntoView({behavior:`smooth`,block:`nearest`,inline:`nearest`})}i.current=o.length},[o.length,s]);let ne=(0,H.useCallback)((e,t)=>{B.getState().updateTab(e.id,{title:t});let n=e.metadata?.projectName,r=e.metadata?.sessionId;n&&r&&I.patch(`${F(n)}/chat/sessions/${r}`,{title:t}).catch(()=>{})},[]),[re,ie]=(0,H.useState)(null),ae=(0,H.useCallback)((e,t)=>{let n=z.getState(),r=n.panels[c]?.tabs??[];switch(t){case`close`:n.closeTab(e.id,c);break;case`close-others`:for(let t of r)t.id!==e.id&&t.closable&&n.closeTab(t.id,c);break;case`close-right`:{let t=r.findIndex(t=>t.id===e.id);for(let e=t+1;e<r.length;e++)r[e].closable&&n.closeTab(r[e].id,c);break}case`copy-path`:{let t=e.metadata?.filePath;t&&navigator.clipboard.writeText(t).catch(()=>{});break}case`download`:{let t=e.metadata?.filePath,n=e.metadata?.projectName;t&&n&&Ja(n,t);break}case`rename`:case`delete`:{let n=e.metadata?.filePath;n&&ie({action:t,tabId:e.id,node:{name:e.title,path:n,type:`file`}});break}}},[c]);function k(e){e.target.closest(`[data-tab-item]`)||ja()}function A(e){e.target.closest(`[data-tab-item]`)||(e.preventDefault(),ja())}return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`hidden md:flex items-center h-10 border-b border-border bg-background relative`,onDragOver:f,onDrop:p,onDoubleClick:k,onContextMenu:A,children:[E&&(0,U.jsx)(`button`,{onClick:ee,className:`absolute left-0 z-10 flex items-center justify-center size-8 bg-gradient-to-r from-background via-background to-transparent`,children:(0,U.jsxs)(`span`,{className:`relative`,children:[(0,U.jsx)(_t,{className:`size-4 text-text-secondary`}),te.left&&(0,U.jsx)(`span`,{className:R(`absolute -top-1 -right-0.5 size-2 rounded-full`,Fa(te.left))})]})}),(0,U.jsx)(`div`,{ref:r,className:`flex-1 overflow-x-auto overflow-y-hidden min-w-0 scrollbar-none`,children:(0,U.jsxs)(`div`,{className:`flex items-center h-10`,children:[o.map((e,t)=>{let r=e.type===`chat`?e.metadata?.sessionId:void 0,i=r?w.get(r):void 0,a=i&&i.count>0?i.type:null,o=r?T.has(r):!1;return(0,U.jsx)(qa,{tab:e,isActive:e.id===s,icon:Qa[e.type]||En,showDropBefore:l===t,notificationType:a,isStreaming:o,onSelect:()=>{_a()||(z.getState().setActiveTab(e.id,c),r&&Ia.getState().clearForSession(r))},onClose:()=>z.getState().closeTab(e.id,c),onDragStart:t=>u(t,e.id),onDragOver:n=>d(n,e.id,t),onDragEnd:m,onTouchStart:t=>h(t,e.id,e.title),onTouchMove:g,onTouchEnd:_,tabRef:t=>{t?n.current.set(e.id,t):n.current.delete(e.id)},onRename:e.type===`chat`?t=>ne(e,t):void 0,onContextAction:t=>ae(e,t),tagColor:r?b[r]?.color:void 0,extraMenuContent:r&&v.length>0?(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(Qi,{children:[(0,U.jsxs)($i,{children:[(0,U.jsx)(zn,{className:`size-3.5 mr-2`}),`Set Tag`]}),(0,U.jsxs)(ea,{children:[v.map(e=>(0,U.jsxs)(G,{onClick:()=>C(r,e.id),children:[(0,U.jsx)(`span`,{className:`size-2.5 rounded-full mr-2 shrink-0`,style:{backgroundColor:e.color}}),e.name,b[r]?.id===e.id&&(0,U.jsx)(he,{className:`size-3 ml-auto`})]},e.id)),b[r]&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(na,{}),(0,U.jsx)(G,{onClick:()=>C(r,null),children:`Remove tag`})]})]})]}),(0,U.jsx)(na,{})]}):void 0},e.id)}),l!==null&&l>=o.length&&(0,U.jsx)(`div`,{className:`w-0.5 h-6 bg-primary rounded-full`}),(0,U.jsx)(`button`,{onClick:()=>ja(),title:`Open command palette (Shift+Shift)`,className:`flex items-center justify-center size-10 shrink-0 sticky right-0 border-b-2 border-transparent text-text-secondary hover:text-foreground transition-colors bg-background`,children:(0,U.jsx)(xe,{className:`size-4`})})]})}),D&&(0,U.jsx)(`button`,{onClick:O,className:`absolute right-10 z-10 flex items-center justify-center size-8 bg-gradient-to-l from-background via-background to-transparent`,children:(0,U.jsxs)(`span`,{className:`relative`,children:[(0,U.jsx)(Se,{className:`size-4 text-text-secondary`}),te.right&&(0,U.jsx)(`span`,{className:R(`absolute -top-1 -left-0.5 size-2 rounded-full`,Fa(te.right))})]})})]}),re&&(0,U.jsx)(Za,{action:re.action,node:re.node,projectName:t?.name??``,onClose:()=>ie(null),onRefresh:()=>{t&&Xe.getState().fetchTree(t.name),re.action===`delete`&&z.getState().closeTab(re.tabId,c)}})]})});function eo({panelId:e}){let[t,n]=(0,H.useState)(null),r=ca(),i=ga(),a=(i?.panelId===e?i.zone:null)??t,o=z(e=>e.grid),s=z(e=>e.isMobile()),c=Ue(o,e),l=!s&&o.length<3,u=c?!s&&(o[c.row]?.length??0)<Ge(!1):!1,d=(0,H.useCallback)(e=>{let t=e.currentTarget.getBoundingClientRect(),n=(e.clientX-t.left)/t.width,r=(e.clientY-t.top)/t.height,i=.25;return n<i&&u?`left`:n>1-i&&u?`right`:r<i&&l?`top`:r>1-i&&l?`bottom`:`center`},[u,l]),f=(0,H.useCallback)(e=>{e.dataTransfer.types.includes(`application/ppm-tab`)&&(e.preventDefault(),e.stopPropagation(),n(d(e)))},[d]),p=(0,H.useCallback)(e=>{e.currentTarget.contains(e.relatedTarget)||n(null)},[]),m=(0,H.useCallback)(t=>{t.preventDefault(),t.stopPropagation();let r=d(t);if(n(null),la(),!r)return;let i=t.dataTransfer.getData(ia);if(i)try{let t=JSON.parse(i),n=z.getState();if(r===`center`)t.panelId!==e&&n.moveTab(t.tabId,t.panelId,e);else{let i=r===`top`?`up`:r===`bottom`?`down`:r;n.splitPanel(i,t.tabId,t.panelId,e)}}catch{}},[d,e]);return r?(0,U.jsxs)(`div`,{className:`absolute inset-0 z-20`,onDragOver:f,onDragLeave:p,onDrop:m,children:[a===`left`&&(0,U.jsx)(`div`,{className:`absolute inset-y-0 left-0 w-1/3 bg-primary/10 border-2 border-primary/30 rounded-l-md`}),a===`right`&&(0,U.jsx)(`div`,{className:`absolute inset-y-0 right-0 w-1/3 bg-primary/10 border-2 border-primary/30 rounded-r-md`}),a===`top`&&(0,U.jsx)(`div`,{className:`absolute inset-x-0 top-0 h-1/3 bg-primary/10 border-2 border-primary/30 rounded-t-md`}),a===`bottom`&&(0,U.jsx)(`div`,{className:`absolute inset-x-0 bottom-0 h-1/3 bg-primary/10 border-2 border-primary/30 rounded-b-md`}),a===`center`&&(0,U.jsx)(`div`,{className:`absolute inset-0 bg-primary/5 border-2 border-dashed border-primary/30 rounded-md`})]}):null}var to=[{type:`terminal`,label:`Terminal`,icon:Bn},{type:`chat`,label:`AI Chat`,icon:dn},{type:`editor`,label:`New File`,icon:It}],no={terminal:(0,H.lazy)(()=>Ve(()=>import(`./terminal-tab-CaEsMxp8.js`).then(e=>({default:e.TerminalTab})),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9]))),chat:(0,H.lazy)(()=>Ve(()=>import(`./chat-tab-4kL3DNxf.js`).then(e=>({default:e.ChatTab})),__vite__mapDeps([10,1,2,11,3,12,6,13,14,7,8,9,15,16,17,18,19,20,21,22,23,24,25,26]))),editor:(0,H.lazy)(()=>Ve(()=>import(`./code-editor-Caq5_BaF.js`).then(e=>({default:e.CodeEditor})),__vite__mapDeps([27,1,2,11,3,28,7,8,9,12,6,13,14,29,22,23,30,31,32,33,34,25,26]))),database:(0,H.lazy)(()=>Ve(()=>import(`./database-viewer-DcBl6OkV.js`).then(e=>({default:e.DatabaseViewer})),__vite__mapDeps([35,1,2,28,3,7,8,9,13,18,22,30,14,19,20,36,34,37,26,6]))),sqlite:(0,H.lazy)(()=>Ve(()=>import(`./sqlite-viewer-C8WUEFhA.js`).then(e=>({default:e.SqliteViewer})),__vite__mapDeps([38,1,2,28,3,7,8,9,39,22,13,30,19,32,20,36,34]))),postgres:(0,H.lazy)(()=>Ve(()=>import(`./postgres-viewer-CXJv4TXc.js`).then(e=>({default:e.PostgresViewer})),__vite__mapDeps([40,1,2,41,39,3,22,13,30,19,32,9]))),"git-diff":(0,H.lazy)(()=>Ve(()=>import(`./diff-viewer-CCzPq1o-.js`).then(e=>({default:e.DiffViewer})),__vite__mapDeps([42,1,2,28,3,7,8,9,13,24,33]))),settings:(0,H.lazy)(()=>Ve(()=>import(`./settings-tab-Cnav4g2u.js`).then(e=>({default:e.SettingsTab})),__vite__mapDeps([43,2,1,11,3,12,6,13,14,7,8,9,29,16,17,18,19,20,21,44,25,45]))),ports:(0,H.lazy)(()=>Ve(()=>import(`./port-forwarding-tab-3RNozlZ5.js`).then(e=>({default:e.PortForwardingTab})),__vite__mapDeps([46,1,11,3,13,17,9]))),extension:(0,H.lazy)(()=>Ve(()=>import(`./extension-webview-D7bGVSEd.js`).then(e=>({default:e.ExtensionWebview})),__vite__mapDeps([47,1,3,9,44,8]))),"extension-webview":(0,H.lazy)(()=>Ve(()=>import(`./extension-webview-D7bGVSEd.js`).then(e=>({default:e.ExtensionWebview})),__vite__mapDeps([47,1,3,9,44,8]))),"conflict-editor":(0,H.lazy)(()=>Ve(()=>import(`./conflict-editor-Dlo25nmt.js`).then(e=>({default:e.ConflictEditor})),__vite__mapDeps([48,1,2,28,3,7,8,9])))};function ro({panelId:e,projectName:t}){let n=z(t=>t.panels[e]),r=z(t=>t.focusedPanelId===e),i=z(e=>(e.currentProject===t?e.grid:e.projectGrids[t]??[[]]).flat().length);return n?(0,U.jsxs)(`div`,{className:R(`flex flex-col h-full overflow-hidden`,i>1&&`border border-transparent`,i>1&&r&&`border-primary/30`),onMouseDown:()=>{z.getState().focusedPanelId!==e&&z.getState().setFocusedPanel(e)},children:[(0,U.jsx)($a,{panelId:e}),(0,U.jsxs)(`div`,{className:`flex-1 overflow-hidden relative`,"data-panel-drop-zone":e,children:[n.tabs.length===0?(0,U.jsx)(K,{panelId:e}):n.tabs.map(e=>{let t=no[e.type],r=e.id===n.activeTabId;return t?(0,U.jsx)(`div`,{className:r?`h-full w-full`:`hidden`,children:(0,U.jsx)(H.Suspense,{fallback:(0,U.jsx)(`div`,{className:`flex items-center justify-center h-full`,children:(0,U.jsx)(V,{className:`size-6 animate-spin text-primary`})}),children:(0,U.jsx)(t,{metadata:e.metadata,tabId:e.id})})},e.id):(0,U.jsxs)(`div`,{className:r?`h-full w-full flex items-center justify-center text-muted-foreground`:`hidden`,children:[`Unknown tab type: `,e.type]},e.id)}),(0,U.jsx)(eo,{panelId:e})]})]}):null}function io(e){try{let t=new Date(e),n=new Date().getTime()-t.getTime(),r=Math.floor(n/6e4);if(r<1)return`Just now`;if(r<60)return`${r}m ago`;let i=Math.floor(r/60);if(i<24)return`${i}h ago`;let a=Math.floor(i/24);return a<7?`${a}d ago`:t.toLocaleDateString(void 0,{month:`short`,day:`numeric`})}catch{return``}}var ao=5,oo=20;function K({panelId:e}){let t=Ye(e=>e.activeProject),[n,r]=(0,H.useState)([]),[i,a]=(0,H.useState)(!1),[o,s]=(0,H.useState)(!1),[c,l]=(0,H.useState)(null),{projectTags:u,tagCounts:d,loadTags:f}=Ji(t?.name),p=(0,H.useCallback)(async()=>{if(t?.name){a(!0);try{r((await I.get(`${F(t.name)}/chat/sessions?limit=${oo}`)).sessions.slice(0,oo))}catch{}finally{a(!1)}}},[t?.name]);(0,H.useEffect)(()=>{p()},[p]);let m=(0,H.useCallback)(async(e,n)=>{if(e.stopPropagation(),!t?.name)return;let i=`${F(t.name)}/chat/sessions/${n.id}/pin`;try{n.pinned?await I.del(i):await I.put(i),r(e=>e.map(e=>e.id===n.id?{...e,pinned:!e.pinned}:e).sort((e,t)=>e.pinned&&!t.pinned?-1:!e.pinned&&t.pinned?1:new Date(t.createdAt).getTime()-new Date(e.createdAt).getTime()))}catch{}},[t?.name]);function h(n){if(n===`editor`){B.getState().openNewFile();return}let r=n!==`settings`&&t?{projectName:t.name}:void 0;z.getState().openTab({type:n,title:to.find(e=>e.type===n)?.label??n,metadata:r,projectId:t?.name??null,closable:!0},e)}function g(n){z.getState().openTab({type:`chat`,title:n.title||`Chat`,projectId:t?.name??null,metadata:{projectName:t?.name,sessionId:n.id,providerId:n.providerId},closable:!0},e)}let _=(0,H.useCallback)((e,t)=>{r(n=>n.map(n=>n.id===e?{...n,tag:t}:n)),f()},[f]),v=c===null?n:n.filter(e=>e.tag?.id===c),y=v.filter(e=>e.pinned),b=v.filter(e=>!e.pinned),x=o?b:b.slice(0,ao),S=b.length>ao;function C(e){return(0,U.jsx)(ra,{session:e,projectName:t.name,projectTags:u,onTogglePin:m,onTagChanged:_,children:(0,U.jsxs)(`button`,{onClick:()=>g(e),className:`group flex items-center gap-2.5 w-full px-3 py-2.5 text-left hover:bg-surface-elevated active:bg-surface-elevated transition-colors border-b border-border/50 last:border-0`,children:[(0,U.jsx)(dn,{className:`size-3.5 shrink-0 text-text-subtle`}),e.tag&&(0,U.jsx)(`span`,{className:`size-2 rounded-full shrink-0`,style:{backgroundColor:e.tag.color},title:e.tag.name}),(0,U.jsx)(`span`,{className:`flex-1 min-w-0 text-xs font-medium truncate text-text-primary`,children:e.title||`Untitled`}),e.updatedAt&&(0,U.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0`,children:io(e.updatedAt)}),(0,U.jsx)(`span`,{role:`button`,tabIndex:0,onClick:t=>m(t,e),className:`p-1 rounded transition-colors shrink-0 ${e.pinned?`text-primary hover:text-primary/70`:`text-text-subtle can-hover:opacity-0 can-hover:group-hover:opacity-100 hover:text-text-primary`}`,"aria-label":e.pinned?`Unpin session`:`Pin session`,children:e.pinned?(0,U.jsx)(bn,{className:`size-3`}):(0,U.jsx)(xn,{className:`size-3`})})]})},e.id)}return(0,U.jsx)(`div`,{className:`flex flex-col h-full overflow-y-auto text-text-secondary`,children:(0,U.jsxs)(`div`,{className:`flex flex-col items-center justify-center gap-6 px-4 flex-1`,children:[(0,U.jsx)(`p`,{className:`text-sm`,children:`Open a tab to get started`}),(0,U.jsx)(`div`,{className:`grid grid-cols-3 gap-2 w-full max-w-sm`,children:to.map(e=>{let t=e.icon;return(0,U.jsxs)(`button`,{onClick:()=>h(e.type),className:`flex flex-col items-center justify-center gap-1.5 px-2 py-3 rounded-md border border-border bg-surface hover:bg-surface-elevated active:bg-surface-elevated text-xs text-foreground transition-colors`,children:[(0,U.jsx)(t,{className:`size-5`}),e.label]},e.type)})}),t&&!i&&n.length>0&&(0,U.jsx)(`div`,{className:`w-full max-w-sm`,children:(0,U.jsx)(Yi,{projectTags:u,tagCounts:d,totalCount:n.length,selectedTagId:c,onSelect:l})}),t&&!i&&y.length>0&&(0,U.jsxs)(`div`,{className:`flex flex-col gap-2 w-full max-w-sm`,children:[(0,U.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Pinned`}),(0,U.jsx)(`div`,{className:`w-full rounded-md border border-border bg-surface overflow-hidden`,children:y.map(C)})]}),t&&!i&&x.length>0&&(0,U.jsxs)(`div`,{className:`flex flex-col gap-2 w-full max-w-sm`,children:[(0,U.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Recent chats`}),(0,U.jsx)(`div`,{className:`w-full rounded-md border border-border bg-surface overflow-hidden`,children:x.map(C)}),S&&(0,U.jsxs)(`button`,{onClick:()=>s(!o),className:`flex items-center justify-center gap-1 text-[11px] text-text-subtle hover:text-text-primary transition-colors py-1`,children:[o?(0,U.jsx)(ye,{className:`size-3`}):(0,U.jsx)(be,{className:`size-3`}),o?`Show less`:`Show more (${b.length-ao})`]})]})]})})}var so=(0,H.memo)(function({projectName:e}){let t=qi(`(min-width: 768px)`),n=z(t=>t.currentProject===e?t.grid:t.projectGrids[e]??[[]]),r=z(e=>e.focusedPanelId),i=n.flat().length;if((0,H.useEffect)(()=>{if(i===0){let e=Ke();z.setState(t=>({panels:{...t.panels,[e.id]:e},grid:[[e.id]],focusedPanelId:e.id}))}},[i]),i===0)return null;if(!t){let t=n.flat(),i=t.includes(r)?r:t[0];return i?(0,U.jsx)(ro,{panelId:i,projectName:e}):null}return i===1&&n[0]?.[0]?(0,U.jsx)(ro,{panelId:n[0][0],projectName:e}):(0,U.jsx)(Bi,{orientation:`vertical`,style:{height:`100%`},children:n.map((t,r)=>(0,U.jsx)(co,{row:t,rowIdx:r,totalRows:n.length,projectName:e},`row-${r}`))})});function co({row:e,rowIdx:t,totalRows:n,projectName:r}){return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(Ui,{minSize:`15%`,defaultSize:`${Math.round(100/n)}%`,children:e.length===1?(0,U.jsx)(ro,{panelId:e[0],projectName:r}):(0,U.jsx)(Bi,{orientation:`horizontal`,children:e.map((t,n)=>(0,U.jsx)(lo,{panelId:t,colIdx:n,totalCols:e.length,projectName:r},t))})}),t<n-1&&(0,U.jsx)(uo,{orientation:`horizontal`})]})}function lo({panelId:e,colIdx:t,totalCols:n,projectName:r}){return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(Ui,{minSize:`15%`,defaultSize:`${Math.round(100/n)}%`,children:(0,U.jsx)(ro,{panelId:e,projectName:r})}),t<n-1&&(0,U.jsx)(uo,{orientation:`vertical`})]})}function uo({orientation:e}){let t=e===`vertical`;return(0,U.jsx)(Ki,{className:`
11
- group/handle relative flex items-center justify-center
12
- ${t?`w-1 cursor-col-resize`:`h-1 cursor-row-resize`}
13
- bg-border/30 hover:bg-primary/30 active:bg-primary/50
14
- transition-colors duration-150
15
- `,children:(0,U.jsx)(`div`,{className:`absolute can-hover:opacity-0 can-hover:group-hover/handle:opacity-70 transition-opacity text-foreground/50`,children:t?(0,U.jsx)(Zt,{className:`size-3`}):(0,U.jsx)(Xt,{className:`size-3`})})})}var fo=e=>Symbol.iterator in e,po=e=>`entries`in e,mo=(e,t)=>{let n=e instanceof Map?e:new Map(e.entries()),r=t instanceof Map?t:new Map(t.entries());if(n.size!==r.size)return!1;for(let[e,t]of n)if(!r.has(e)||!Object.is(t,r.get(e)))return!1;return!0},ho=(e,t)=>{let n=e[Symbol.iterator](),r=t[Symbol.iterator](),i=n.next(),a=r.next();for(;!i.done&&!a.done;){if(!Object.is(i.value,a.value))return!1;i=n.next(),a=r.next()}return!!i.done&&!!a.done};function go(e,t){return Object.is(e,t)?!0:typeof e!=`object`||!e||typeof t!=`object`||!t||Object.getPrototypeOf(e)!==Object.getPrototypeOf(t)?!1:fo(e)&&fo(t)?po(e)&&po(t)?mo(e,t):ho(e,t):mo({entries:()=>Object.entries(e)},{entries:()=>Object.entries(t)})}function q(e){let t=H.useRef(void 0);return n=>{let r=e(n);return go(t.current,r)?t.current:t.current=r}}function _o(e){return e.dataTransfer.types.includes(`Files`)&&!e.dataTransfer.types.includes(`application/x-ppm-path`)}var vo={name:``,path:``,type:`directory`},yo={ts:{icon:jt,color:`text-blue-400`},tsx:{icon:jt,color:`text-blue-400`},js:{icon:jt,color:`text-yellow-400`},jsx:{icon:jt,color:`text-yellow-400`},py:{icon:jt,color:`text-green-400`},rs:{icon:jt,color:`text-orange-400`},go:{icon:jt,color:`text-cyan-400`},c:{icon:jt,color:`text-blue-300`},cpp:{icon:jt,color:`text-blue-300`},java:{icon:jt,color:`text-red-400`},rb:{icon:jt,color:`text-red-400`},php:{icon:jt,color:`text-purple-400`},swift:{icon:jt,color:`text-orange-400`},kt:{icon:jt,color:`text-purple-400`},dart:{icon:jt,color:`text-cyan-400`},sh:{icon:jt,color:`text-green-300`},html:{icon:jt,color:`text-orange-400`},css:{icon:jt,color:`text-blue-400`},scss:{icon:jt,color:`text-pink-400`},json:{icon:At,color:`text-yellow-400`},yaml:{icon:zt,color:`text-orange-300`},yml:{icon:zt,color:`text-orange-300`},toml:{icon:zt,color:`text-orange-300`},ini:{icon:zt,color:`text-orange-300`},env:{icon:zt,color:`text-yellow-300`},csv:{icon:Lt,color:`text-green-400`},xls:{icon:Lt,color:`text-green-400`},xlsx:{icon:Lt,color:`text-green-400`},md:{icon:Rt,color:`text-text-secondary`},txt:{icon:Rt,color:`text-text-secondary`},log:{icon:Rt,color:`text-text-subtle`},pdf:{icon:Rt,color:`text-red-400`},png:{icon:Pt,color:`text-green-400`},jpg:{icon:Pt,color:`text-green-400`},jpeg:{icon:Pt,color:`text-green-400`},gif:{icon:Pt,color:`text-green-400`},svg:{icon:Pt,color:`text-yellow-400`},webp:{icon:Pt,color:`text-green-400`},ico:{icon:Pt,color:`text-green-400`},bmp:{icon:Pt,color:`text-green-400`},mp4:{icon:Ft,color:`text-purple-400`},webm:{icon:Ft,color:`text-purple-400`},mov:{icon:Ft,color:`text-purple-400`},avi:{icon:Ft,color:`text-purple-400`},mkv:{icon:Ft,color:`text-purple-400`},mp3:{icon:Nt,color:`text-pink-400`},wav:{icon:Nt,color:`text-pink-400`},ogg:{icon:Nt,color:`text-pink-400`},flac:{icon:Nt,color:`text-pink-400`},db:{icon:je,color:`text-amber-400`},sqlite:{icon:je,color:`text-amber-400`},sqlite3:{icon:je,color:`text-amber-400`},sql:{icon:je,color:`text-amber-400`},zip:{icon:kt,color:`text-amber-300`},tar:{icon:kt,color:`text-amber-300`},gz:{icon:kt,color:`text-amber-300`},rar:{icon:kt,color:`text-amber-300`},"7z":{icon:kt,color:`text-amber-300`}},bo={icon:Bt};function xo(e){return yo[e.split(`.`).pop()?.toLowerCase()??``]??bo}var So=(0,H.memo)(function e({node:t,depth:n,projectName:r,onAction:i,onFileDrop:a,onFileOpen:o}){let{expandedPaths:s,loadedPaths:c,inflight:l,toggleExpand:u,selectedFiles:d,toggleFileSelect:f}=Xe(q(e=>({expandedPaths:e.expandedPaths,loadedPaths:e.loadedPaths,inflight:e.inflight,toggleExpand:e.toggleExpand,selectedFiles:e.selectedFiles,toggleFileSelect:e.toggleFileSelect}))),p=B(e=>e.openTab),m=s.has(t.path),h=t.type===`directory`,g=d.includes(t.path),_=t.ignored===!0,v=h&&m&&!c.has(t.path)&&l.has(t.path),[y,b]=(0,H.useState)(!1),x=(0,H.useRef)(0);function S(e){if(h){u(r,t.path);return}if(e.metaKey||e.ctrlKey){f(t.path);return}let n=t.name.split(`.`).pop()?.toLowerCase()??``;p({type:n===`db`||n===`sqlite`||n===`sqlite3`?`sqlite`:`editor`,title:t.name,metadata:{filePath:t.path,projectName:r},projectId:r,closable:!0}),o?.()}function C(e){let n=h?`${t.path}/`:t.path;e.dataTransfer.setData(`application/x-ppm-path`,n),e.dataTransfer.setData(`text/plain`,t.name),e.dataTransfer.effectAllowed=`copy`}function w(e){!h||!_o(e)||(e.preventDefault(),e.stopPropagation(),x.current++,x.current===1&&b(!0))}function T(e){h&&(e.stopPropagation(),x.current--,x.current===0&&b(!1))}function E(e){!h||!_o(e)||(e.preventDefault(),e.stopPropagation(),e.dataTransfer.dropEffect=`copy`)}function D(e){!h||!_o(e)||(e.preventDefault(),e.stopPropagation(),x.current=0,b(!1),e.dataTransfer.files.length>0&&a(t.path,e.dataTransfer.files))}let{icon:ee,color:O}=h?{icon:m?Ht:qt,color:`text-primary`}:xo(t.name),te=t.children?[...t.children].sort((e,t)=>e.type===t.type?e.name.localeCompare(t.name):e.type===`directory`?-1:1):[];return(0,U.jsxs)(`div`,{onDragEnter:h?w:void 0,onDragLeave:h?T:void 0,onDragOver:h?E:void 0,onDrop:h?D:void 0,children:[(0,U.jsxs)(Xi,{children:[(0,U.jsx)(Zi,{asChild:!0,children:(0,U.jsxs)(`button`,{draggable:!0,onDragStart:C,onClick:S,className:R(`flex items-center w-full gap-1.5 px-2 py-1 rounded-sm text-sm`,`min-h-[32px] hover:bg-surface-elevated transition-colors text-left`,`select-none`,_&&`opacity-40`,g&&`bg-primary/15 ring-1 ring-primary/40`,y&&`ring-1 ring-dashed ring-primary bg-primary/10`),style:{paddingLeft:`${n*16+8}px`},children:[h?v?(0,U.jsx)(V,{className:`size-3.5 shrink-0 text-text-subtle animate-spin`}):m?(0,U.jsx)(be,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,U.jsx)(Se,{className:`size-3.5 shrink-0 text-text-subtle`}):(0,U.jsx)(`span`,{className:`w-3.5 shrink-0`}),(0,U.jsx)(ee,{className:R(`size-4 shrink-0`,O??`text-text-secondary`)}),(0,U.jsx)(`span`,{className:`truncate`,children:t.name})]})}),(0,U.jsxs)(ta,{children:[h&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(G,{onClick:()=>i(`new-file`,t),children:`New File`}),(0,U.jsx)(G,{onClick:()=>i(`new-folder`,t),children:`New Folder`}),(0,U.jsx)(na,{})]}),(0,U.jsx)(G,{onClick:()=>i(`rename`,t),children:`Rename`}),(0,U.jsx)(G,{variant:`destructive`,onClick:()=>i(`delete`,t),children:`Delete`}),(0,U.jsx)(na,{}),(0,U.jsx)(G,{onClick:()=>i(`copy-path`,t),children:`Copy Path`}),(0,U.jsx)(na,{}),(0,U.jsxs)(G,{onClick:()=>i(`download`,t),children:[(0,U.jsx)(Ne,{className:`size-3.5 mr-2`}),`Download`,h?` as Zip`:``]}),!h&&d.length===2&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(na,{}),(0,U.jsx)(G,{onClick:()=>i(`compare-selected`,t),children:`Compare Selected`})]})]})]}),h&&m&&te.map(t=>(0,U.jsx)(e,{node:t,depth:n+1,projectName:r,onAction:i,onFileDrop:a,onFileOpen:o},t.path))]})});function Co({onFileOpen:e}={}){let{tree:t,loading:n,error:r,loadRoot:i,loadIndex:a,loadChildren:o,invalidateIndex:s,invalidateFolder:c,reset:l,selectedFiles:u,clearSelection:d,setExpanded:f,fetchTree:p}=Xe(q(e=>({tree:e.tree,loading:e.loading,error:e.error,loadRoot:e.loadRoot,loadIndex:e.loadIndex,loadChildren:e.loadChildren,invalidateIndex:e.invalidateIndex,invalidateFolder:e.invalidateFolder,reset:e.reset,selectedFiles:e.selectedFiles,clearSelection:e.clearSelection,setExpanded:e.setExpanded,fetchTree:e.fetchTree}))),m=Ye(e=>e.activeProject),h=B(e=>e.openTab),[g,_]=(0,H.useState)(null),v=(0,H.useCallback)(()=>{m&&(l(),i(m.name),a(m.name))},[m,l,i,a]);(0,H.useEffect)(()=>{if(!m)return;l();let e=m.name;i(e).then(()=>{Xe.getState().setExpanded(``,!0)}),a(e)},[m?.name]),(0,H.useEffect)(()=>{if(!m)return;let e=m.name,t,n=n=>{let r=n.detail;r.projectName===e&&(clearTimeout(t),t=setTimeout(()=>{let t=Xe.getState(),n=r.path??``,i=n.includes(`/`)?n.slice(0,n.lastIndexOf(`/`)):``;t.invalidateIndex(),t.loadIndex(e),t.invalidateFolder(e,i)},300))};return window.addEventListener(`file:changed`,n),()=>{clearTimeout(t),window.removeEventListener(`file:changed`,n)}},[m]);let y=(0,H.useCallback)(async(e,t)=>{if(!m)return;let n=new FormData;n.append(`targetDir`,e);for(let e of t)n.append(`files`,e);let r={},i=ze();i&&(r.Authorization=`Bearer ${i}`);try{let t=await fetch(`${F(m.name)}/files/upload`,{method:`POST`,headers:r,body:n});if(!t.ok){let e=await t.json();console.error(`Upload failed:`,e.error)}let i=Xe.getState(),a=e;i.loadedPaths.has(a)&&(new Set(i.loadedPaths).delete(a),await i.invalidateFolder(m.name,a)),e&&f(e,!0)}catch(e){console.error(`Upload error:`,e)}},[m,f]),[b,x]=(0,H.useState)(!1),S=(0,H.useRef)(0);function C(e){_o(e)&&(e.preventDefault(),S.current++,S.current===1&&x(!0))}function w(){S.current--,S.current===0&&x(!1)}function T(e){_o(e)&&(e.preventDefault(),e.dataTransfer.dropEffect=`copy`)}function E(e){_o(e)&&(e.preventDefault(),S.current=0,x(!1),e.dataTransfer.files.length>0&&y(``,e.dataTransfer.files))}function D(e,t){if(e===`copy-path`){navigator.clipboard.writeText(t.path).catch(()=>{});return}if(e===`download`){t.type===`directory`?Ya(m.name,t.path):Ja(m.name,t.path);return}if(e===`compare-selected`&&u.length===2){let e=u[0],t=u[1];h({type:`git-diff`,title:`Compare ${He(e)} vs ${He(t)}`,closable:!0,metadata:{projectName:m.name,file1:e,file2:t},projectId:m.name}),d();return}_({action:e,node:t})}if(!m)return(0,U.jsx)(`div`,{className:`p-3 text-xs text-text-subtle`,children:`Select a project to browse files.`});if(n&&t.length===0)return(0,U.jsxs)(`div`,{className:`flex items-center gap-2 p-3 text-xs text-text-secondary`,children:[(0,U.jsx)(V,{className:`size-3 animate-spin`}),`Loading files...`]});if(r)return(0,U.jsxs)(`div`,{className:`p-3 text-xs text-error`,children:[r,(0,U.jsx)(`button`,{onClick:v,className:`block mt-1 text-primary underline`,children:`Retry`})]});let ee=[...t].sort((e,t)=>e.type===t.type?e.name.localeCompare(t.name):e.type===`directory`?-1:1),O=`p-1 rounded-sm text-text-secondary hover:text-foreground hover:bg-surface-elevated transition-colors`;return(0,U.jsxs)(`div`,{className:R(`flex flex-col h-full`,b&&`bg-primary/5`),onDragEnter:C,onDragLeave:w,onDragOver:T,onDrop:E,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-0.5 px-2 h-8 border-b border-border shrink-0`,children:[(0,U.jsx)(`button`,{onClick:()=>D(`new-file`,vo),title:`New File`,className:O,children:(0,U.jsx)(It,{className:`size-3.5`})}),(0,U.jsx)(`button`,{onClick:()=>D(`new-folder`,vo),title:`New Folder`,className:O,children:(0,U.jsx)(Ut,{className:`size-3.5`})}),(0,U.jsx)(`div`,{className:`flex-1`}),(0,U.jsx)(`button`,{onClick:v,title:`Refresh`,className:O,children:(0,U.jsx)(Fe,{className:`size-3.5`})})]}),(0,U.jsxs)(Xi,{children:[(0,U.jsx)(Zi,{asChild:!0,children:(0,U.jsx)(ie,{className:`flex-1`,children:(0,U.jsxs)(`div`,{className:`py-1`,children:[ee.map(t=>(0,U.jsx)(So,{node:t,depth:0,projectName:m.name,onAction:D,onFileDrop:y,onFileOpen:e},t.path)),ee.length===0&&(0,U.jsx)(`p`,{className:`p-3 text-xs text-text-subtle`,children:`Empty project.`})]})})}),(0,U.jsxs)(ta,{children:[(0,U.jsxs)(G,{onClick:()=>D(`new-file`,vo),children:[(0,U.jsx)(It,{className:`size-3.5 mr-2`}),`New File`]}),(0,U.jsxs)(G,{onClick:()=>D(`new-folder`,vo),children:[(0,U.jsx)(Ut,{className:`size-3.5 mr-2`}),`New Folder`]}),(0,U.jsx)(na,{}),(0,U.jsxs)(G,{onClick:v,children:[(0,U.jsx)(Fe,{className:`size-3.5 mr-2`}),`Refresh`]})]})]}),g&&(0,U.jsx)(Za,{action:g.action,node:g.node,projectName:m.name,onClose:()=>_(null),onRefresh:v})]})}var wo=Le()(e=>({counts:new Map,setCount:(t,n)=>{e(e=>{if(e.counts.get(t)===n)return e;let r=new Map(e.counts);return r.set(t,n),{counts:r}})}}));function To(e,t){let n=wo(e=>e.setCount),r=(0,H.useCallback)(async()=>{if(e)try{let t=await I.get(`${F(e)}/git/status`);n(e,t.staged.length+t.unstaged.length+t.untracked.length)}catch{}},[e,n]);(0,H.useEffect)(()=>{if(t)return;r();let e=setInterval(r,1e4);return()=>clearInterval(e)},[r,t])}function Eo({open:e,onOpenChange:t,projectName:n,onCreated:r}){let[i,a]=(0,H.useState)(``),[o,s]=(0,H.useState)(`new`),[c,l]=(0,H.useState)(``),[u,d]=(0,H.useState)(``),[f,p]=(0,H.useState)([]),[m,h]=(0,H.useState)(!1),[g,_]=(0,H.useState)(null);(0,H.useEffect)(()=>{!e||!n||I.get(`${F(n)}/git/branches`).then(e=>{let t=e.filter(e=>!e.remote).map(e=>e.name);p(t),t.length>0&&!u&&d(t[0])}).catch(()=>p([]))},[e,n]);function v(){a(``),s(`new`),l(``),_(null)}function y(){v(),t(!1)}async function b(){if(!i.trim()){_(`Worktree path is required`);return}let e=o===`existing`?u:void 0,t=o===`new`&&c.trim()?c.trim():void 0;h(!0),_(null);try{await I.post(`${F(n)}/git/worktree/add`,{path:i.trim(),branch:e,newBranch:t}),r(),y()}catch(e){_(e instanceof Error?e.message:`Failed to create worktree`)}finally{h(!1)}}let x=(0,U.jsxs)(`div`,{className:`space-y-4`,children:[g&&(0,U.jsx)(`p`,{className:`text-xs text-destructive bg-destructive/10 px-3 py-2 rounded-md`,children:g}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(me,{htmlFor:`wt-path`,children:`Worktree Path`}),(0,U.jsx)(P,{id:`wt-path`,placeholder:`../my-feature`,value:i,onChange:e=>a(e.target.value),autoFocus:!0,className:`w-full`}),(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Relative or absolute path for the new worktree directory`})]}),(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsx)(me,{children:`Branch`}),(0,U.jsxs)(`div`,{className:`flex gap-3`,children:[(0,U.jsxs)(`label`,{className:`flex items-center gap-2 cursor-pointer`,children:[(0,U.jsx)(`input`,{type:`radio`,checked:o===`new`,onChange:()=>s(`new`),className:`accent-primary`}),(0,U.jsx)(`span`,{className:`text-sm`,children:`Create new branch`})]}),(0,U.jsxs)(`label`,{className:`flex items-center gap-2 cursor-pointer`,children:[(0,U.jsx)(`input`,{type:`radio`,checked:o===`existing`,onChange:()=>s(`existing`),className:`accent-primary`}),(0,U.jsx)(`span`,{className:`text-sm`,children:`Use existing branch`})]})]}),o===`new`?(0,U.jsx)(P,{placeholder:`feature/my-branch`,value:c,onChange:e=>l(e.target.value),className:`w-full`}):(0,U.jsxs)(`select`,{value:u,onChange:e=>d(e.target.value),className:`w-full h-9 px-3 rounded-md border border-input bg-transparent text-sm focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring`,children:[f.length===0&&(0,U.jsx)(`option`,{value:``,children:`No branches available`}),f.map(e=>(0,U.jsx)(`option`,{value:e,children:e},e))]})]})]}),S=(0,U.jsxs)(`div`,{className:`flex gap-2 justify-end pt-2`,children:[(0,U.jsx)(N,{variant:`outline`,size:`sm`,onClick:y,disabled:m,children:`Cancel`}),(0,U.jsxs)(N,{size:`sm`,onClick:b,disabled:m||!i.trim(),children:[m?(0,U.jsx)(V,{className:`size-3 animate-spin mr-1`}):null,`Create Worktree`]})]});return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(Ee,{open:e,onOpenChange:e=>{e||y()},children:(0,U.jsxs)(Oe,{className:`hidden md:grid sm:max-w-md`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:`Add Worktree`})}),x,(0,U.jsx)(Ce,{children:S})]})}),e&&(0,U.jsxs)(`div`,{className:`md:hidden`,children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-50 bg-black/50`,onClick:y}),(0,U.jsxs)(`div`,{className:R(`fixed bottom-0 left-0 right-0 z-50 bg-background rounded-t-2xl border-t border-border shadow-2xl`,`animate-in slide-in-from-bottom-2 duration-200`),children:[(0,U.jsx)(`div`,{className:`flex justify-center pt-3 pb-1`,children:(0,U.jsx)(`div`,{className:`w-10 h-1 rounded-full bg-border`})}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-b border-border`,children:[(0,U.jsx)(`span`,{className:`text-sm font-semibold`,children:`Add Worktree`}),(0,U.jsx)(`button`,{onClick:y,className:`flex items-center justify-center size-7 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,U.jsx)(Pe,{className:`size-4`})})]}),(0,U.jsxs)(`div`,{className:`px-4 py-4 space-y-4 max-h-[70vh] overflow-y-auto`,children:[x,S]})]})]})]})}function Do({projectName:e,projectPath:t}){let[n,r]=(0,H.useState)(!1),[i,a]=(0,H.useState)([]),[o,s]=(0,H.useState)(!1),[c,l]=(0,H.useState)(null),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(null),[m,h]=(0,H.useState)(!1),g=(0,H.useCallback)(async()=>{if(e){s(!0),l(null);try{a(await I.get(`${F(e)}/git/worktrees`))}catch(e){l(e instanceof Error?e.message:`Failed to load worktrees`)}finally{s(!1)}}},[e]);(0,H.useEffect)(()=>{n&&g()},[n,g]);async function _(t=!1){if(f){h(!0);try{await I.post(`${F(e)}/git/worktree/remove`,{path:f.path,force:t}),p(null),await g()}catch(e){l(e instanceof Error?e.message:`Failed to remove worktree`),p(null)}finally{h(!1)}}}async function v(){try{await I.post(`${F(e)}/git/worktree/prune`,{}),await g()}catch(e){l(e instanceof Error?e.message:`Prune failed`)}}return(0,U.jsxs)(`div`,{className:`border-t border-border`,children:[(0,U.jsxs)(`button`,{type:`button`,className:`flex items-center justify-between w-full px-3 py-2 hover:bg-muted/50 transition-colors`,onClick:()=>r(e=>!e),children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[n?(0,U.jsx)(be,{className:`size-3.5 text-muted-foreground`}):(0,U.jsx)(Se,{className:`size-3.5 text-muted-foreground`}),(0,U.jsx)(`span`,{className:`text-xs font-medium text-muted-foreground uppercase`,children:`Worktrees`}),i.length>0&&(0,U.jsx)(`span`,{className:`text-[10px] bg-muted text-muted-foreground rounded px-1`,children:i.length})]}),(0,U.jsx)(`div`,{className:`flex items-center gap-0.5`,children:n&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`span`,{role:`button`,tabIndex:0,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground transition-colors`,onClick:e=>{e.stopPropagation(),v()},onKeyDown:e=>{e.key===`Enter`&&(e.stopPropagation(),v())},title:`Prune stale worktrees`,"aria-label":`Prune stale worktrees`,children:(0,U.jsx)(Fe,{className:R(`size-3`,o&&`animate-spin`)})}),(0,U.jsx)(`span`,{role:`button`,tabIndex:0,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground transition-colors`,onClick:e=>{e.stopPropagation(),d(!0)},onKeyDown:e=>{e.key===`Enter`&&(e.stopPropagation(),d(!0))},title:`Add worktree`,"aria-label":`Add worktree`,children:(0,U.jsx)(xe,{className:`size-3`})})]})})]}),n&&(0,U.jsxs)(`div`,{className:`pb-1`,children:[c&&(0,U.jsx)(`p`,{className:`text-xs text-destructive px-3 py-1`,children:c}),o&&i.length===0&&(0,U.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-2 text-muted-foreground`,children:[(0,U.jsx)(V,{className:`size-3.5 animate-spin`}),(0,U.jsx)(`span`,{className:`text-xs`,children:`Loading worktrees...`})]}),!o&&i.length===0&&!c&&(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground px-3 py-1`,children:`No worktrees found.`}),i.map(e=>(0,U.jsx)(Oo,{worktree:e,isActive:!!t&&e.path===t,onRemove:()=>p(e)},e.path)),(0,U.jsxs)(`button`,{type:`button`,className:`flex items-center gap-2 w-full px-3 py-2 text-xs text-muted-foreground hover:text-foreground hover:bg-muted/50 transition-colors`,onClick:()=>d(!0),children:[(0,U.jsx)(xe,{className:`size-3.5`}),`Add worktree`]})]}),(0,U.jsx)(Eo,{open:u,onOpenChange:d,projectName:e,onCreated:g}),(0,U.jsx)(Ee,{open:!!f,onOpenChange:e=>!e&&p(null),children:(0,U.jsxs)(Oe,{showCloseButton:!1,children:[(0,U.jsxs)(De,{children:[(0,U.jsx)(ke,{children:`Remove Worktree`}),(0,U.jsxs)(Te,{children:[`Remove worktree at`,` `,(0,U.jsx)(`code`,{className:`px-1 py-0.5 rounded bg-muted text-xs font-mono`,children:f?.path}),f?.branch&&(0,U.jsxs)(U.Fragment,{children:[` (branch: `,(0,U.jsx)(`strong`,{children:f.branch}),`)`]}),`? The directory will be deleted.`]})]}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(N,{variant:`outline`,size:`sm`,onClick:()=>p(null),disabled:m,children:`Cancel`}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,onClick:()=>_(!0),disabled:m,children:m?(0,U.jsx)(V,{className:`size-3 animate-spin`}):`Force Remove`}),(0,U.jsx)(N,{variant:`destructive`,size:`sm`,onClick:()=>_(!1),disabled:m,children:m?(0,U.jsx)(V,{className:`size-3 animate-spin`}):`Remove`})]})]})})]})}function Oo({worktree:e,isActive:t,onRemove:n}){let r=e.branch||e.head.slice(0,7)||`detached`,i=e.path.replace(/^\/home\/[^/]+/,`~`);return(0,U.jsxs)(`div`,{className:R(`group flex items-center gap-2 px-3 py-1.5 hover:bg-muted/50 transition-colors`,t&&`bg-accent/10`),children:[(0,U.jsx)(Jt,{className:`size-3.5 text-muted-foreground shrink-0`}),(0,U.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1 min-w-0`,children:[(0,U.jsx)(`span`,{className:`text-xs font-mono truncate`,title:e.branch,children:r}),t&&(0,U.jsx)(he,{className:`size-3 text-green-500 shrink-0`}),e.isMain&&(0,U.jsx)(`span`,{className:`text-[10px] bg-muted text-muted-foreground rounded px-1 shrink-0`,children:`main`}),e.locked&&(0,U.jsx)(`span`,{title:e.lockReason??`locked`,children:(0,U.jsx)(de,{className:`size-3 text-yellow-500 shrink-0`})}),e.prunable&&(0,U.jsx)(`span`,{title:`stale/prunable`,children:(0,U.jsx)(vt,{className:`size-3 text-destructive shrink-0`})})]}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground truncate`,title:e.path,children:i})]}),!e.isMain&&(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-destructive opacity-0 group-hover:opacity-100 can-hover:opacity-0 can-hover:group-hover:opacity-100 transition-all active:scale-95 shrink-0`,onClick:n,title:`Remove worktree`,"aria-label":`Remove worktree`,children:(0,U.jsx)(Ie,{className:`size-3`})})]})}function ko({...e}){return(0,U.jsx)(x,{"data-slot":`dropdown-menu`,...e})}function Ao({...e}){return(0,U.jsx)(o,{"data-slot":`dropdown-menu-trigger`,...e})}function jo({className:e,sideOffset:t=4,...n}){return(0,U.jsx)(i,{children:(0,U.jsx)(f,{"data-slot":`dropdown-menu-content`,sideOffset:t,className:R(`z-50 max-h-(--radix-dropdown-menu-content-available-height) min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-x-hidden overflow-y-auto rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95`,e),...n})})}function Mo({className:e,inset:t,variant:n=`default`,...r}){return(0,U.jsx)(S,{"data-slot":`dropdown-menu-item`,"data-inset":t,"data-variant":n,className:R(`relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive dark:data-[variant=destructive]:focus:bg-destructive/20 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground data-[variant=destructive]:*:[svg]:text-destructive!`,e),...r})}function No({...e}){return(0,U.jsx)(u,{"data-slot":`dropdown-menu-sub`,...e})}function Po({className:e,inset:t,children:n,...r}){return(0,U.jsxs)(p,{"data-slot":`dropdown-menu-sub-trigger`,"data-inset":t,className:R(`flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground data-[inset]:pl-8 data-[state=open]:bg-accent data-[state=open]:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground`,e),...r,children:[n,(0,U.jsx)(Se,{className:`ml-auto size-4`})]})}function Fo({className:e,...t}){return(0,U.jsx)(d,{"data-slot":`dropdown-menu-sub-content`,className:R(`z-50 min-w-[8rem] origin-(--radix-dropdown-menu-content-transform-origin) overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95`,e),...t})}var Io={M:`text-yellow-500`,A:`text-green-500`,D:`text-red-500`,R:`text-blue-500`,C:`text-purple-500`,"?":`text-gray-400`};function Lo(e){let t=[];for(let n of e){let e=n.path.split(`/`),r=t;for(let t=0;t<e.length;t++){let i=e[t],a=e.slice(0,t+1).join(`/`),o=t===e.length-1,s=r.find(e=>e.name===i);s||(s={name:i,fullPath:a,file:o?n:void 0,children:[]},r.push(s)),o&&(s.file=n),r=s.children}}return t}function Ro(e){let t=[];e.file&&t.push(e.file);for(let n of e.children)t.push(...Ro(n));return t}function zo({metadata:e,tabId:t,onNavigate:n}){let r=e?.projectName,[i,a]=(0,H.useState)(null),[o,s]=(0,H.useState)(!0),[c,l]=(0,H.useState)(null),[u,d]=(0,H.useState)(``),[f,p]=(0,H.useState)(!1),[m,h]=(0,H.useState)(null),{openTab:g}=B(q(e=>({openTab:e.openTab}))),_=L(e=>e.gitStatusViewMode),v=L(e=>e.setGitStatusViewMode),y=Ye(e=>e.projects.find(e=>e.name===r)?.path),b=wo(e=>e.setCount),x=(0,H.useCallback)(async()=>{if(r)try{s(!0);let e=await I.get(`${F(r)}/git/status`);a(e),b(r,e.staged.length+e.unstaged.length+e.untracked.length),l(null)}catch(e){l(e instanceof Error?e.message:`Failed to fetch status`)}finally{s(!1)}},[r,b]);(0,H.useEffect)(()=>{x();let e=setInterval(x,5e3);return()=>clearInterval(e)},[x]);let S=async e=>{if(r){p(!0);try{await I.post(`${F(r)}/git/stage`,{files:e}),await x()}catch(e){l(e instanceof Error?e.message:`Stage failed`)}finally{p(!1)}}},C=async e=>{if(r){p(!0);try{await I.post(`${F(r)}/git/unstage`,{files:e}),await x()}catch(e){l(e instanceof Error?e.message:`Unstage failed`)}finally{p(!1)}}},w=async e=>{if(r){p(!0);try{await I.post(`${F(r)}/git/discard`,{files:e}),await x()}catch(e){l(e instanceof Error?e.message:`Discard failed`)}finally{p(!1)}}},T=async()=>{m&&(await w(m.files),h(null))},E=async()=>{if(!(!r||!u.trim()||!i?.staged.length)){p(!0);try{await I.post(`${F(r)}/git/commit`,{message:u.trim()}),d(``),await x()}catch(e){l(e instanceof Error?e.message:`Commit failed`)}finally{p(!1)}}},D=async()=>{if(r){p(!0);try{await I.post(`${F(r)}/git/push`,{}),await x()}catch(e){l(e instanceof Error?e.message:`Push failed`)}finally{p(!1)}}},ee=async()=>{if(r){p(!0);try{await I.post(`${F(r)}/git/pull`,{}),await x()}catch(e){l(e instanceof Error?e.message:`Pull failed`)}finally{p(!1)}}},O=e=>{g({type:`git-diff`,title:He(e.path),closable:!0,metadata:{projectName:r,filePath:e.path},projectId:r??null}),n?.()},te=e=>{g({type:`editor`,title:He(e.path),closable:!0,metadata:{projectName:r,filePath:e.path},projectId:r??null}),n?.()},ne=(0,H.useMemo)(()=>[...i?.unstaged??[],...i?.untracked.map(e=>({path:e,status:`?`}))??[]],[i]);return r?o&&!i?(0,U.jsxs)(`div`,{className:`flex items-center justify-center h-full gap-2 text-muted-foreground`,children:[(0,U.jsx)(V,{className:`size-5 animate-spin`}),(0,U.jsx)(`span`,{className:`text-sm`,children:`Loading git status...`})]}):c&&!i?(0,U.jsxs)(`div`,{className:`flex flex-col items-center justify-center h-full gap-2 text-destructive text-sm`,children:[(0,U.jsx)(`p`,{children:c}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,onClick:x,children:`Retry`})]}):(0,U.jsxs)(`div`,{className:`flex flex-col h-full overflow-hidden`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b shrink-0`,children:[(0,U.jsx)(`span`,{className:`text-sm font-medium`,children:i?.current?`On: ${i.current}`:`Git Status`}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,U.jsx)(N,{variant:_===`flat`?`secondary`:`ghost`,size:`icon-xs`,onClick:()=>v(`flat`),title:`Flat view`,children:(0,U.jsx)(cn,{className:`size-3.5`})}),(0,U.jsx)(N,{variant:_===`tree`?`secondary`:`ghost`,size:`icon-xs`,onClick:()=>v(`tree`),title:`Tree view`,children:(0,U.jsx)(Kt,{className:`size-3.5`})}),(0,U.jsx)(N,{variant:`ghost`,size:`icon-xs`,onClick:x,disabled:f,children:(0,U.jsx)(Fe,{className:o?`animate-spin`:``})})]})]}),c&&(0,U.jsx)(`div`,{className:`px-3 py-1.5 text-xs text-destructive bg-destructive/10 shrink-0`,children:c}),r&&(0,U.jsx)(Do,{projectName:r,projectPath:y}),(0,U.jsx)(ie,{className:`flex-1 overflow-hidden`,children:(0,U.jsxs)(`div`,{className:`p-1.5 space-y-2 overflow-hidden`,children:[(0,U.jsx)(Vo,{title:`Staged Changes`,count:i?.staged.length??0,files:i?.staged??[],viewMode:_,actionIcon:(0,U.jsx)(pn,{className:`size-3`}),actionAllIcon:(0,U.jsx)(pn,{className:`size-3`}),actionTitle:`Unstage`,onAction:e=>C([e.path]),onActionAll:i?.staged.length?()=>C(i.staged.map(e=>e.path)):void 0,actionAllLabel:`Unstage All`,onFolderAction:e=>C(e.map(e=>e.path)),onClickFile:O,onOpenFile:te,disabled:f}),(0,U.jsx)(Vo,{title:`Changes`,count:ne.length,files:ne,viewMode:_,actionIcon:(0,U.jsx)(xe,{className:`size-3`}),actionAllIcon:(0,U.jsx)(xe,{className:`size-3`}),actionTitle:`Stage`,onAction:e=>S([e.path]),onActionAll:ne.length?()=>S(ne.map(e=>e.path)):void 0,actionAllLabel:`Stage All`,onFolderAction:e=>S(e.map(e=>e.path)),onClickFile:O,onOpenFile:te,disabled:f,showRevert:!0,onRevert:e=>h({label:e.path,files:[e.path]}),onFolderRevert:(e,t)=>h({label:`${t}/ (${e.length} files)`,files:e.map(e=>e.path)})})]})}),(0,U.jsxs)(`div`,{className:`border-t p-2 space-y-2 shrink-0`,children:[(0,U.jsx)(`textarea`,{className:`w-full h-16 px-3 py-2 text-base md:text-sm text-foreground bg-surface border border-border rounded-lg resize-none focus:outline-none focus:border-ring placeholder:text-muted-foreground`,placeholder:`Commit message...`,value:u,onChange:e=>d(e.target.value),onKeyDown:e=>{e.key===`Enter`&&(e.metaKey||e.ctrlKey)&&E()}}),(0,U.jsx)(N,{size:`sm`,className:`w-full`,disabled:f||!u.trim()||!i?.staged.length,onClick:E,children:f?(0,U.jsx)(V,{className:`size-3 animate-spin`}):`Commit (${i?.staged.length??0})`}),(0,U.jsxs)(`div`,{className:`flex gap-2`,children:[(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`flex-1`,disabled:f,onClick:D,children:[(0,U.jsx)(ft,{className:`size-3`}),`Push`]}),(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`flex-1`,disabled:f,onClick:ee,children:[(0,U.jsx)(ut,{className:`size-3`}),`Pull`]})]})]}),(0,U.jsx)(Ee,{open:!!m,onOpenChange:e=>!e&&h(null),children:(0,U.jsxs)(Oe,{showCloseButton:!1,children:[(0,U.jsxs)(De,{children:[(0,U.jsx)(ke,{children:`Discard Changes`}),(0,U.jsxs)(Te,{children:[`Are you sure you want to discard all changes to`,` `,(0,U.jsx)(`code`,{className:`px-1 py-0.5 rounded bg-muted text-sm font-mono`,children:m?.label}),`? This action cannot be undone.`]})]}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(N,{variant:`outline`,onClick:()=>h(null),children:`Cancel`}),(0,U.jsx)(N,{variant:`destructive`,onClick:T,disabled:f,children:f?(0,U.jsx)(V,{className:`size-3 animate-spin`}):`Discard`})]})]})})]}):(0,U.jsx)(`div`,{className:`flex items-center justify-center h-full text-muted-foreground text-sm`,children:`No project selected.`})}function Bo({showRevert:e,onRevert:t,onAction:n,onOpenFile:r,actionIcon:i,actionTitle:a,disabled:o}){return(0,U.jsxs)(`div`,{className:`hidden md:flex absolute right-0 top-0 bottom-0 items-center gap-0.5 pl-6 pr-1 bg-gradient-to-l from-background from-70% to-transparent can-hover:opacity-0 can-hover:group-hover:opacity-100 transition-opacity`,children:[r&&(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-primary active:scale-95 transition-colors`,onClick:e=>{e.stopPropagation(),r()},disabled:o,title:`Open file`,children:(0,U.jsx)(Rt,{className:`size-3`})}),e&&t&&(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-destructive active:scale-95 transition-colors`,onClick:e=>{e.stopPropagation(),t()},disabled:o,title:`Discard changes`,children:(0,U.jsx)(Hn,{className:`size-3`})}),(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-accent-foreground active:scale-95 transition-colors`,onClick:e=>{e.stopPropagation(),n()},disabled:o,title:a,children:i})]})}function Vo({title:e,count:t,files:n,viewMode:r,actionIcon:i,actionAllIcon:a,actionTitle:o,onAction:s,onActionAll:c,actionAllLabel:l,onFolderAction:u,onClickFile:d,onOpenFile:f,disabled:p,showRevert:m,onRevert:h,onFolderRevert:g}){return(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between mb-0.5`,children:[(0,U.jsxs)(`span`,{className:`text-xs font-medium text-muted-foreground uppercase`,children:[e,` (`,t,`)`]}),c&&t>0&&(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-accent-foreground active:scale-95 transition-colors`,onClick:c,disabled:p,title:l,children:a})]}),n.length===0?(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground px-1`,children:`No changes`}):r===`flat`?(0,U.jsx)(`div`,{className:`w-full overflow-hidden`,children:n.map(e=>(0,U.jsx)(Uo,{file:e,actionIcon:i,actionTitle:o,onAction:s,onClickFile:d,onOpenFile:f,disabled:p,showRevert:m,onRevert:h},e.path))}):(0,U.jsx)(Wo,{files:n,actionIcon:i,actionTitle:o,onAction:s,onFolderAction:u,onClickFile:d,onOpenFile:f,disabled:p,showRevert:m,onRevert:h,onFolderRevert:g})]})}function Ho(e,t,n=400){let r=(0,H.useRef)(null),i=(0,H.useRef)(!1),a=(0,H.useRef)(!1),o=(0,H.useCallback)(()=>{r.current&&=(clearTimeout(r.current),null)},[]);return{onTouchStart:(0,H.useCallback)(t=>{i.current=!1,a.current=!1,r.current=setTimeout(()=>{a.current=!0,e()},n)},[e,n]),onTouchMove:(0,H.useCallback)(()=>{i.current=!0,o()},[o]),onTouchEnd:(0,H.useCallback)(e=>{o(),!i.current&&!a.current&&(e.preventDefault(),t())},[o,t])}}function Uo({file:e,actionIcon:t,actionTitle:n,onAction:r,onClickFile:i,onOpenFile:a,disabled:o,showRevert:s,onRevert:c,displayName:l}){let[u,d]=(0,H.useState)(!1),f=Ho((0,H.useCallback)(()=>d(!0),[]),(0,H.useCallback)(()=>i(e),[i,e])),p=(0,U.jsxs)(`div`,{className:`group relative flex items-center gap-1 hover:bg-muted/50 rounded pl-1 py-px w-full min-w-0`,children:[(0,U.jsx)(`span`,{className:`text-xs font-mono w-4 text-center shrink-0 ${Io[e.status]??``}`,children:e.status}),(0,U.jsx)(`button`,{type:`button`,className:`hidden md:block flex-1 text-left text-xs font-mono truncate hover:underline min-w-0`,onClick:()=>i(e),title:e.path,children:l??e.path}),(0,U.jsx)(`span`,{className:`md:hidden flex-1 text-left text-xs font-mono truncate min-w-0 select-none`,children:l??e.path}),(0,U.jsx)(Bo,{showRevert:s,onRevert:c?()=>c(e):void 0,onOpenFile:a?()=>a(e):void 0,onAction:()=>r(e),actionIcon:t,actionTitle:n,disabled:o})]});return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`hidden md:block`,children:p}),(0,U.jsx)(`div`,{className:`md:hidden select-none`,...f,children:(0,U.jsxs)(ko,{open:u,onOpenChange:d,children:[(0,U.jsx)(Ao,{asChild:!0,children:p}),(0,U.jsxs)(jo,{align:`start`,className:`min-w-40`,children:[(0,U.jsx)(Mo,{onClick:()=>i(e),children:`View Diff`}),a&&(0,U.jsx)(Mo,{onClick:()=>a(e),children:`Open File`}),(0,U.jsx)(Mo,{onClick:()=>r(e),disabled:o,children:n}),s&&c&&(0,U.jsx)(Mo,{className:`text-destructive focus:text-destructive`,onClick:()=>c(e),disabled:o,children:`Discard Changes`})]})]})})]})}function Wo({files:e,actionIcon:t,actionTitle:n,onAction:r,onFolderAction:i,onClickFile:a,onOpenFile:o,disabled:s,showRevert:c,onRevert:l,onFolderRevert:u}){let d=(0,H.useMemo)(()=>Lo(e),[e]);return(0,U.jsx)(`div`,{children:d.map((e,f)=>(0,U.jsx)(Go,{node:e,depth:0,isLast:f===d.length-1,actionIcon:t,actionTitle:n,onAction:r,onFolderAction:i,onClickFile:a,onOpenFile:o,disabled:s,showRevert:c,onRevert:l,onFolderRevert:u},e.fullPath))})}function Go({node:e,depth:t,isLast:n,actionIcon:r,actionTitle:i,onAction:a,onFolderAction:o,onClickFile:s,onOpenFile:c,disabled:l,showRevert:u,onRevert:d,onFolderRevert:f}){let[p,m]=(0,H.useState)(!0),h=e.children.length>0&&!e.file,g=t*12-6,_=`absolute border-dashed border-border`;if(e.file)return(0,U.jsxs)(`div`,{className:`relative`,style:{paddingLeft:t*12},children:[t>0&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`${_} border-l`,style:{left:g,top:0,bottom:n?`50%`:0}}),(0,U.jsx)(`div`,{className:`${_} border-t`,style:{left:g,top:`50%`,width:6}})]}),(0,U.jsx)(Uo,{file:e.file,displayName:e.name,actionIcon:r,actionTitle:i,onAction:a,onClickFile:s,onOpenFile:c,disabled:l,showRevert:u,onRevert:d})]});if(h){let h=Ro(e);return(0,U.jsxs)(`div`,{className:`relative`,children:[t>0&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`${_} border-l`,style:{left:g,top:0,...n?{height:13}:{bottom:0}}}),(0,U.jsx)(`div`,{className:`${_} border-t`,style:{left:g,top:13,width:8}})]}),(()=>{let n=(0,U.jsxs)(`div`,{className:`group relative flex items-center hover:bg-muted/50 rounded py-0.5`,style:{paddingLeft:t*12+2},children:[(0,U.jsxs)(`button`,{type:`button`,className:`flex items-center gap-1 flex-1 min-w-0 text-xs font-mono text-muted-foreground`,onClick:()=>m(!p),children:[p?(0,U.jsx)(be,{className:`size-3.5 shrink-0`}):(0,U.jsx)(Se,{className:`size-3.5 shrink-0`}),(0,U.jsx)(`span`,{className:`truncate font-semibold`,children:e.name}),(0,U.jsxs)(`span`,{className:`text-[10px] opacity-60 shrink-0`,children:[`(`,h.length,`)`]})]}),(0,U.jsx)(Bo,{showRevert:u,onRevert:f?()=>f(h,e.fullPath):void 0,onAction:()=>o?.(h),actionIcon:r,actionTitle:`${i} ${e.name}/`,disabled:l})]});return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`hidden md:block`,children:n}),(0,U.jsx)(`div`,{className:`md:hidden`,children:(0,U.jsxs)(ko,{children:[(0,U.jsx)(Ao,{asChild:!0,children:n}),(0,U.jsxs)(jo,{align:`start`,className:`min-w-40`,children:[(0,U.jsxs)(Mo,{onClick:()=>o?.(h),disabled:l,children:[i,` `,e.name,`/`]}),f&&(0,U.jsx)(Mo,{className:`text-destructive focus:text-destructive`,onClick:()=>f(h,e.fullPath),disabled:l,children:`Discard Changes`})]})]})})]})})(),p&&(0,U.jsx)(`div`,{children:e.children.map((n,p)=>(0,U.jsx)(Go,{node:n,depth:t+1,isLast:p===e.children.length-1,actionIcon:r,actionTitle:i,onAction:a,onFolderAction:o,onClickFile:s,onOpenFile:c,disabled:l,showRevert:u,onRevert:d,onFolderRevert:f},n.fullPath))})]})}return null}function Ko({className:e,orientation:t=`horizontal`,decorative:n=!0,...r}){return(0,U.jsx)(C,{"data-slot":`separator`,decorative:n,orientation:t,className:R(`shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px`,e),...r})}var qo=[{key:`general`,label:`General`},{key:`tabs`,label:`Tabs`},{key:`projects`,label:`Projects`}],Jo=[`Ctrl+T`,`Ctrl+W`,`Ctrl+N`,`Ctrl+Tab`,`Ctrl+L`,`Ctrl+H`,`Ctrl+J`,`F5`,`Ctrl+R`,`Ctrl+Shift+I`,`Ctrl+Shift+J`];function Yo({actionId:e,combo:t,locked:n}){let[r,i]=(0,H.useState)(!1),a=et(e=>e.setBinding),o=(0,H.useRef)(null),s=(0,H.useCallback)(t=>{if(t.preventDefault(),t.stopPropagation(),t.key===`Escape`){i(!1);return}let n=$e(t);n&&(a(e,n),i(!1))},[e,a]);return(0,H.useEffect)(()=>{if(r)return document.addEventListener(`keydown`,s,!0),()=>document.removeEventListener(`keydown`,s,!0)},[r,s]),(0,H.useEffect)(()=>{if(!r)return;let e=e=>{o.current&&!o.current.contains(e.target)&&i(!1)};return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[r]),n?(0,U.jsxs)(`span`,{className:`inline-flex items-center gap-1 rounded border border-border bg-muted px-2 py-0.5 text-[11px] font-mono text-muted-foreground`,children:[(0,U.jsx)(de,{className:`size-2.5`}),Qe(t)]}):r?(0,U.jsx)(`button`,{ref:o,className:`inline-flex items-center rounded border-2 border-primary bg-primary/10 px-2 py-0.5 text-[11px] font-mono text-primary animate-pulse`,children:`Press keys...`}):(0,U.jsx)(`button`,{ref:o,onClick:()=>i(!0),className:`inline-flex items-center rounded border border-border bg-surface px-2 py-0.5 text-[11px] font-mono text-foreground hover:border-primary hover:bg-primary/5 transition-colors cursor-pointer`,title:`Click to change shortcut`,children:Qe(t)})}function Xo(){let{getBinding:e,resetBinding:t,resetAll:n,overrides:r}=et(),i=rt(e=>e.contributions),a=i?.keybindings??[],o=i?.commands??[];return(0,U.jsxs)(`div`,{className:`space-y-3`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-text-secondary`,children:`Keyboard Shortcuts`}),Object.keys(r).length>0&&(0,U.jsxs)(N,{variant:`ghost`,size:`sm`,className:`h-6 text-[10px] text-muted-foreground`,onClick:n,children:[(0,U.jsx)(A,{className:`size-3 mr-1`}),`Reset all`]})]}),(0,U.jsxs)(`div`,{className:`flex items-start gap-2 rounded-md border border-amber-500/30 bg-amber-500/5 px-2.5 py-2`,children:[(0,U.jsx)(Vn,{className:`size-3.5 text-amber-500 shrink-0 mt-0.5`}),(0,U.jsxs)(`p`,{className:`text-[10px] text-muted-foreground leading-relaxed`,children:[`Some shortcuts (`,Jo.slice(0,4).join(`, `),`...) are reserved by the browser and cannot be overridden.`]})]}),qo.map(n=>{let i=nt.filter(e=>e.category===n.key);return i.length===0?null:(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:n.label}),(0,U.jsx)(`div`,{className:`space-y-0.5`,children:i.map(n=>{let i=e(n.id),a=n.id in r;return(0,U.jsxs)(`div`,{className:`flex items-center justify-between py-1 px-1 rounded hover:bg-surface-elevated/50 transition-colors`,children:[(0,U.jsxs)(`div`,{className:`flex flex-col min-w-0`,children:[(0,U.jsx)(`span`,{className:`text-xs text-foreground`,children:n.label}),n.note&&(0,U.jsx)(`span`,{className:`text-[10px] text-muted-foreground`,children:n.note})]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1 shrink-0 ml-2`,children:[(0,U.jsx)(Yo,{actionId:n.id,combo:i,locked:n.locked}),a&&!n.locked&&(0,U.jsx)(`button`,{onClick:()=>t(n.id),className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground hover:bg-surface-elevated transition-colors`,title:`Reset to default`,children:(0,U.jsx)(A,{className:`size-3`})})]})]},n.id)})})]},n.key)}),a.length>0&&(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Extensions`}),(0,U.jsx)(`div`,{className:`space-y-0.5`,children:a.map(n=>{let i=o.find(e=>e.command===n.command)?.title??n.command,a=`ext:${n.command}`,s=e(a)||n.key,c=a in r;return(0,U.jsxs)(`div`,{className:`flex items-center justify-between py-1 px-1 rounded hover:bg-surface-elevated/50 transition-colors`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,U.jsx)(En,{className:`size-3 text-muted-foreground shrink-0`}),(0,U.jsx)(`span`,{className:`text-xs text-foreground`,children:i})]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1 shrink-0 ml-2`,children:[(0,U.jsx)(Yo,{actionId:a,combo:s}),c&&(0,U.jsx)(`button`,{onClick:()=>t(a),className:`flex items-center justify-center size-5 rounded text-muted-foreground hover:text-foreground hover:bg-surface-elevated transition-colors`,title:`Reset to default`,children:(0,U.jsx)(A,{className:`size-3`})})]})]},a)})})]})]})}var Zo=`Hello! Reply briefly.`,Qo=`claude-sonnet-4-6`;function $o(e){let[t,n]=(0,H.useState)(!1);return(0,U.jsxs)(Ee,{open:t,onOpenChange:n,children:[(0,U.jsx)(we,{asChild:!0,children:(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`h-7 text-[11px] gap-1.5 cursor-pointer`,children:[(0,U.jsx)(Vt,{className:`size-3`}),`Test`]})}),(0,U.jsxs)(Oe,{className:`sm:max-w-md max-h-[85vh] overflow-y-auto`,children:[(0,U.jsxs)(De,{children:[(0,U.jsx)(ke,{className:`text-sm`,children:`Test Proxy`}),(0,U.jsx)(Te,{className:`text-[11px]`,children:`Send a test request and inspect the raw response.`})]}),t&&(0,U.jsx)(es,{...e})]})]})}function es({authKey:e,baseUrl:t}){let[n,r]=(0,H.useState)(`anthropic`),[i,a]=(0,H.useState)(Zo),[o,s]=(0,H.useState)(Qo),[c,l]=(0,H.useState)(!0),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(null),[m,h]=(0,H.useState)(null),[g,_]=(0,H.useState)(null),v=(0,H.useRef)(null),y=(0,H.useRef)(null);(0,H.useEffect)(()=>{v.current?.select()},[]),(0,H.useEffect)(()=>{y.current&&(y.current.scrollTop=y.current.scrollHeight)},[f]);let b=e=>{r(e),p(null),h(null),_(null)},x=async()=>{d(!0),p(null),h(null),_(null);let r=Date.now(),a=n===`openai`,s=a?`${t}/proxy/v1/chat/completions`:`${t}/proxy/v1/messages`,l=JSON.stringify({model:o,max_tokens:256,stream:c,messages:[{role:`user`,content:i}]}),u={"Content-Type":`application/json`};a?u.Authorization=`Bearer ${e}`:(u[`x-api-key`]=e,u[`anthropic-version`]=`2023-06-01`);try{let e=await fetch(s,{method:`POST`,headers:u,body:l});if(!e.ok){let t=await e.text();h(`HTTP ${e.status}: ${t}`),d(!1),_(Date.now()-r);return}if(c){let t=e.body?.getReader();if(!t){h(`No response body`),d(!1);return}let n=new TextDecoder,i=``;for(;;){let{done:e,value:r}=await t.read();if(e)break;i+=n.decode(r,{stream:!0}),p(i)}_(Date.now()-r)}else{let t=await e.text();try{p(JSON.stringify(JSON.parse(t),null,2))}catch{p(t)}_(Date.now()-r)}}catch(e){h(e.message)}finally{d(!1),_(e=>e??Date.now()-r)}};return(0,U.jsxs)(`div`,{className:`space-y-3 min-w-0`,children:[(0,U.jsxs)(`div`,{className:`space-y-1.5 min-w-0`,children:[(0,U.jsx)(me,{className:`text-[11px]`,children:`Auth Style`}),(0,U.jsx)(`div`,{className:`flex gap-1`,children:[`anthropic`,`openai`].map(e=>(0,U.jsx)(`button`,{onClick:()=>b(e),className:`flex-1 h-8 rounded-md text-[11px] font-medium border transition-colors cursor-pointer ${n===e?`bg-primary text-primary-foreground border-primary`:`bg-muted text-muted-foreground border-transparent hover:bg-muted/80`}`,children:e===`anthropic`?`Anthropic`:`OpenAI`},e))}),(0,U.jsx)(`p`,{className:`text-[9px] text-muted-foreground`,children:n===`anthropic`?`x-api-key header`:`Authorization: Bearer header`})]}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(me,{className:`text-[11px]`,children:`Model`}),(0,U.jsxs)(`select`,{value:o,onChange:e=>s(e.target.value),className:`h-8 w-full rounded-md border bg-background px-2 text-[11px]`,children:[(0,U.jsx)(`option`,{value:`claude-sonnet-4-6`,children:`claude-sonnet-4-6`}),(0,U.jsx)(`option`,{value:`claude-opus-4-7`,children:`claude-opus-4-7`}),(0,U.jsx)(`option`,{value:`claude-haiku-4-5-20251001`,children:`claude-haiku-4-5`}),(0,U.jsx)(`option`,{value:`claude-opus-4-6`,children:`claude-opus-4-6`})]})]}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(me,{className:`text-[11px]`,children:`Streaming`}),(0,U.jsx)(`div`,{className:`flex gap-1`,children:[!0,!1].map(e=>(0,U.jsx)(`button`,{onClick:()=>l(e),className:`h-7 px-3 rounded-md text-[11px] font-medium border transition-colors cursor-pointer ${c===e?`bg-primary text-primary-foreground border-primary`:`bg-muted text-muted-foreground border-transparent hover:bg-muted/80`}`,children:e?`Stream`:`JSON`},String(e)))})]}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(me,{className:`text-[11px]`,children:`Message`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,U.jsx)(P,{ref:v,value:i,onChange:e=>a(e.target.value),placeholder:`Type a test message...`,className:`h-9 text-[11px] flex-1 min-w-0`,onKeyDown:e=>{e.key===`Enter`&&!u&&x()}}),(0,U.jsxs)(N,{size:`sm`,className:`h-9 px-3 cursor-pointer shrink-0`,onClick:x,disabled:u||!i.trim(),children:[u?(0,U.jsx)(V,{className:`size-3.5 animate-spin`}):(0,U.jsx)(Sn,{className:`size-3.5`}),(0,U.jsx)(`span`,{className:`ml-1 text-[11px]`,children:u?`...`:`Send`})]})]})]}),(f||m)&&(0,U.jsxs)(`div`,{className:`space-y-1 min-w-0`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(me,{className:`text-[10px] text-muted-foreground`,children:`Raw Response`}),g!=null&&(0,U.jsxs)(`span`,{className:`text-[9px] font-mono text-muted-foreground`,children:[(g/1e3).toFixed(1),`s`]})]}),m?(0,U.jsx)(`pre`,{className:`text-[9px] font-mono bg-red-500/10 text-red-500 p-2 rounded overflow-auto max-h-52 whitespace-pre-wrap break-all`,children:m}):(0,U.jsx)(`pre`,{ref:y,className:`text-[9px] font-mono bg-muted p-2 rounded overflow-auto max-h-52 whitespace-pre-wrap break-all`,children:f})]})]})}function ts(){let[e,t]=(0,H.useState)(null),[n,r]=(0,H.useState)(!0),[i,a]=(0,H.useState)(!1),[o,s]=(0,H.useState)(null),[c,l]=(0,H.useState)(null);(0,H.useEffect)(()=>{r(!0),at().then(t).catch(e=>s(e.message)).finally(()=>r(!1))},[]);let u=async e=>{a(!0),s(null);try{t(await it(e))}catch(e){s(e.message)}finally{a(!1)}},d=(e,t)=>{navigator.clipboard.writeText(e),l(t),setTimeout(()=>l(null),2e3)};if(n||!e)return(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-text-secondary`,children:`API Proxy`}),(0,U.jsx)(`p`,{className:`text-[11px] text-text-subtle`,children:o?`Error: ${o}`:`Loading...`})]});let f=!!e.authKey,p=!!e.tunnelUrl,m=e.localEndpoint,h=m.replace(/\/proxy\/v1\/messages$/,``);return(0,U.jsxs)(`div`,{className:`space-y-4`,children:[(0,U.jsx)(`div`,{className:`space-y-1.5`,children:(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Expose your Claude accounts as an Anthropic-compatible API endpoint. External tools (OpenCode, Cursor, etc.) can use your accounts via this proxy.`})}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsxs)(`div`,{className:`space-y-0.5`,children:[(0,U.jsx)(me,{className:`text-xs`,children:`Enable Proxy`}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Accept API requests on /proxy/v1/messages`})]}),(0,U.jsx)(j,{checked:e.enabled,onCheckedChange:e=>u({enabled:e}),disabled:i})]}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(me,{className:`text-[11px]`,children:`Auth Key`}),f?(0,U.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,U.jsx)(P,{readOnly:!0,value:e.authKey,className:`h-7 text-[11px] font-mono flex-1`}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-7 px-2 cursor-pointer shrink-0`,onClick:()=>d(e.authKey,`key`),children:c===`key`?`Copied!`:(0,U.jsx)(Tt,{className:`size-3`})}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-7 px-2 cursor-pointer shrink-0`,onClick:()=>u({generateKey:!0}),disabled:i,children:(0,U.jsx)(Fe,{className:`size-3`})})]}):(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-7 text-xs cursor-pointer`,onClick:()=>u({generateKey:!0}),disabled:i,children:`Generate Auth Key`}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Use as Bearer token or x-api-key when calling the proxy.`})]}),e.enabled&&f&&(0,U.jsxs)(`div`,{className:`space-y-2 rounded-md border p-3 bg-muted/30`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(`h4`,{className:`text-[11px] font-medium`,children:`Connection Info`}),(0,U.jsx)($o,{authKey:e.authKey,baseUrl:window.location.origin})]}),(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(me,{className:`text-[10px] text-muted-foreground`,children:`Anthropic Endpoint`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,U.jsx)(`code`,{className:`text-[10px] font-mono bg-muted px-1.5 py-0.5 rounded flex-1 truncate`,children:p?e.proxyEndpoint:m}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`h-6 px-1.5 cursor-pointer shrink-0`,onClick:()=>d(p?e.proxyEndpoint:m,`anthropic`),children:c===`anthropic`?`Copied!`:(0,U.jsx)(Tt,{className:`size-3`})})]})]}),(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(me,{className:`text-[10px] text-muted-foreground`,children:`OpenAI-Compatible Endpoint`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,U.jsx)(`code`,{className:`text-[10px] font-mono bg-muted px-1.5 py-0.5 rounded flex-1 truncate`,children:p?e.openAiEndpoint:e.localOpenAiEndpoint}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`h-6 px-1.5 cursor-pointer shrink-0`,onClick:()=>d(p?e.openAiEndpoint:e.localOpenAiEndpoint,`openai`),children:c===`openai`?`Copied!`:(0,U.jsx)(Tt,{className:`size-3`})})]})]}),!p&&(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Start a Cloudflare tunnel (Share) to get a public URL.`}),(0,U.jsxs)(`div`,{className:`space-y-1 pt-1`,children:[(0,U.jsx)(me,{className:`text-[10px] text-muted-foreground`,children:`Anthropic Format`}),(0,U.jsxs)(`div`,{className:`relative`,children:[(0,U.jsx)(`pre`,{className:`text-[9px] font-mono bg-muted p-2 rounded overflow-x-auto whitespace-pre`,children:`ANTHROPIC_BASE_URL=${p?e.tunnelUrl+`/proxy`:h+`/proxy`}
16
- ANTHROPIC_API_KEY=${e.authKey}`}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`absolute top-1 right-1 h-5 px-1 cursor-pointer`,onClick:()=>d(`ANTHROPIC_BASE_URL=${p?e.tunnelUrl+`/proxy`:h+`/proxy`}\nANTHROPIC_API_KEY=${e.authKey}`,`anthropic-env`),children:c===`anthropic-env`?`Copied!`:(0,U.jsx)(Tt,{className:`size-2.5`})})]})]}),(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(me,{className:`text-[10px] text-muted-foreground`,children:`OpenAI Format`}),(0,U.jsxs)(`div`,{className:`relative`,children:[(0,U.jsx)(`pre`,{className:`text-[9px] font-mono bg-muted p-2 rounded overflow-x-auto whitespace-pre`,children:`OPENAI_BASE_URL=${p?e.tunnelUrl+`/proxy/v1`:h+`/proxy/v1`}
17
- OPENAI_API_KEY=${e.authKey}`}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`absolute top-1 right-1 h-5 px-1 cursor-pointer`,onClick:()=>d(`OPENAI_BASE_URL=${p?e.tunnelUrl+`/proxy/v1`:h+`/proxy/v1`}\nOPENAI_API_KEY=${e.authKey}`,`openai-env`),children:c===`openai-env`?`Copied!`:(0,U.jsx)(Tt,{className:`size-2.5`})})]})]}),(0,U.jsx)(`div`,{className:`flex items-center gap-3 pt-1`,children:(0,U.jsxs)(`span`,{className:`text-[10px] text-muted-foreground`,children:[`Requests served: `,(0,U.jsx)(`span`,{className:`font-mono`,children:e.requestCount})]})})]}),i&&(0,U.jsx)(`p`,{className:`text-[11px] text-text-subtle`,children:`Saving...`}),o&&(0,U.jsx)(`p`,{className:`text-[11px] text-red-500`,children:o})]})}function ns(){return I.get(`/api/settings/mcp`)}function rs(e,t){return I.post(`/api/settings/mcp`,{name:e,config:t})}function is(e,t){return I.put(`/api/settings/mcp/${encodeURIComponent(e)}`,t)}function as(e){return I.del(`/api/settings/mcp/${encodeURIComponent(e)}`)}function os(){return I.post(`/api/settings/mcp/import`,{})}function ss(e){return!e||!/^[a-zA-Z0-9][a-zA-Z0-9_-]*$/.test(e)?`Name must start with a letter/digit, then alphanumeric, hyphens, or underscores`:e.length>50?`Name max 50 chars`:null}function cs(e){let t=[];if(!e||typeof e!=`object`)return[`Config must be an object`];let n=e,r=n.type??`stdio`;return r===`stdio`?(!n.command||typeof n.command!=`string`)&&t.push(`command is required for stdio`):r===`http`||r===`sse`?((!n.url||typeof n.url!=`string`)&&t.push(`url is required for `+r),n.url&&typeof n.url==`string`&&!/^https?:\/\/.+/.test(n.url)&&t.push(`url must be HTTP(S)`)):t.push(`type must be stdio, http, or sse`),t}var ls=[`stdio`,`http`,`sse`];function us({open:e,onClose:t,editServer:n}){let r=!!n,[i,a]=(0,H.useState)(``),[o,s]=(0,H.useState)(`stdio`),[c,l]=(0,H.useState)(``),[u,d]=(0,H.useState)(``),[f,p]=(0,H.useState)(``),[m,h]=(0,H.useState)([]),[g,_]=(0,H.useState)(!1),[v,y]=(0,H.useState)(null);(0,H.useEffect)(()=>{if(e)if(y(null),_(!1),n){a(n.name),s(n.transport||`stdio`);let e=n.config;`command`in e?(l(e.command||``),d((e.args??[]).join(` `)),h(ds(e.env))):`url`in e&&(p(e.url||``),h(ds(e.headers)))}else a(``),s(`stdio`),l(``),d(``),p(``),h([])},[e,n]);let b=()=>{let e=fs(m);return o===`stdio`?{type:`stdio`,command:c,...u.trim()&&{args:u.trim().split(/\s+/)},...Object.keys(e).length>0&&{env:e}}:{type:o,url:f,...Object.keys(e).length>0&&{headers:e}}},x=async()=>{if(y(null),!r){let e=ss(i);if(e){y(e);return}}let e=b(),n=cs(e);if(n.length){y(n.join(`; `));return}_(!0);try{r?await is(i,e):await rs(i,e),t(!0)}catch(e){y(e.message||`Save failed`)}finally{_(!1)}},S=()=>h([...m,{key:``,value:``}]),C=e=>h(m.filter((t,n)=>n!==e)),w=(e,t,n)=>{h(m.map((r,i)=>i===e?{key:t===`key`?n:r.key,value:t===`value`?n:r.value}:r))},T=o===`stdio`,E=T?`Environment Variables`:`Headers`;return(0,U.jsx)(Ee,{open:e,onOpenChange:e=>{e||t()},children:(0,U.jsxs)(Oe,{className:`max-h-[85vh] overflow-y-auto sm:max-w-md`,children:[(0,U.jsxs)(De,{children:[(0,U.jsx)(ke,{className:`text-sm`,children:r?`Edit MCP Server`:`Add MCP Server`}),(0,U.jsx)(Te,{className:`text-[11px]`,children:`Configure a Model Context Protocol server connection.`})]}),(0,U.jsxs)(`div`,{className:`space-y-3`,children:[(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Name`}),(0,U.jsx)(P,{value:i,onChange:e=>a(e.target.value),placeholder:`my-mcp-server`,className:`h-8 text-xs`,disabled:r})]}),(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Transport`}),(0,U.jsx)(`div`,{className:`flex gap-1`,children:ls.map(e=>(0,U.jsx)(N,{variant:o===e?`default`:`outline`,size:`sm`,className:`flex-1 h-7 text-xs cursor-pointer`,onClick:()=>{s(e),h([]),l(``),d(``),p(``)},children:e},e))})]}),T?(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Command *`}),(0,U.jsx)(P,{value:c,onChange:e=>l(e.target.value),placeholder:`npx`,className:`h-8 text-xs`})]}),(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`Arguments (space-separated)`}),(0,U.jsx)(P,{value:u,onChange:e=>d(e.target.value),placeholder:`@playwright/mcp@latest`,className:`h-8 text-xs`})]})]}):(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:`URL *`}),(0,U.jsx)(P,{value:f,onChange:e=>p(e.target.value),placeholder:`https://mcp.example.com`,className:`h-8 text-xs`})]}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(`label`,{className:`text-[11px] font-medium text-muted-foreground`,children:E}),m.map((e,t)=>(0,U.jsxs)(`div`,{className:`flex gap-1 items-center`,children:[(0,U.jsx)(P,{value:e.key,onChange:e=>w(t,`key`,e.target.value),placeholder:`KEY`,className:`h-7 text-xs flex-1`}),(0,U.jsx)(P,{value:e.value,onChange:e=>w(t,`value`,e.target.value),placeholder:`value`,className:`h-7 text-xs flex-1`}),(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 cursor-pointer`,onClick:()=>C(t),children:(0,U.jsx)(Pe,{className:`size-3`})})]},t)),(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`h-7 text-xs gap-1 cursor-pointer`,onClick:S,children:[(0,U.jsx)(xe,{className:`size-3`}),` Add `,T?`Variable`:`Header`]})]}),v&&(0,U.jsx)(`p`,{className:`text-[11px] text-destructive`,children:v})]}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-8 text-xs cursor-pointer`,onClick:()=>t(),children:`Cancel`}),(0,U.jsx)(N,{size:`sm`,className:`h-8 text-xs cursor-pointer`,onClick:x,disabled:g,children:g?`Saving...`:`Save`})]})]})})}function ds(e){return e?Object.entries(e).map(([e,t])=>({key:e,value:t})):[]}function fs(e){let t={};for(let{key:n,value:r}of e)n.trim()&&(t[n.trim()]=r);return t}function ps(){let[e,t]=(0,H.useState)([]),[n,r]=(0,H.useState)(!0),[i,a]=(0,H.useState)(!1),[o,s]=(0,H.useState)(null),[c,l]=(0,H.useState)(null),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(null),m=(0,H.useCallback)(async()=>{try{t(await ns())}catch(e){console.error(`Failed to load MCP servers:`,e)}finally{r(!1)}},[]);(0,H.useEffect)(()=>{m()},[m]);let h=async e=>{try{await as(e),l(null),m()}catch(e){console.error(`Failed to delete:`,e)}},g=async()=>{d(!0),p(null);try{let e=await os();p(`Imported ${e.imported}, skipped ${e.skipped}`),m()}catch(e){p(e.message||`Import failed`)}finally{d(!1)}},_=e=>{a(!1),s(null),e&&m()},v=()=>{s(null),a(!0)},y=e=>{s(e),a(!0)};return n?(0,U.jsx)(`div`,{className:`space-y-3`,children:[1,2,3].map(e=>(0,U.jsx)(`div`,{className:`h-16 rounded-lg bg-muted animate-pulse`},e))}):(0,U.jsxs)(`div`,{className:`space-y-3`,children:[e.length===0?(0,U.jsxs)(`div`,{className:`text-center py-8 space-y-2`,children:[(0,U.jsx)(Mn,{className:`size-8 mx-auto text-muted-foreground`}),(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`No MCP servers configured. Add one or import from Claude Code.`})]}):(0,U.jsx)(`div`,{className:`space-y-2`,children:e.map(e=>(0,U.jsxs)(`div`,{className:`rounded-lg border bg-card p-3 space-y-1.5`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,U.jsx)(`span`,{className:`text-xs font-medium truncate flex-1`,children:e.name}),(0,U.jsx)(`span`,{className:`text-[10px] px-1.5 py-0.5 rounded bg-muted text-muted-foreground shrink-0`,children:e.transport})]}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground truncate`,children:ms(e)}),(0,U.jsx)(`div`,{className:`flex justify-end gap-1.5`,children:c===e.name?(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`span`,{className:`text-[11px] text-destructive self-center mr-1`,children:`Delete?`}),(0,U.jsx)(N,{variant:`destructive`,size:`sm`,className:`h-8 min-w-[44px] text-xs cursor-pointer`,onClick:()=>h(e.name),children:`Yes`}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-8 min-w-[44px] text-xs cursor-pointer`,onClick:()=>l(null),children:`No`})]}):(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(N,{variant:`ghost`,size:`sm`,className:`h-7 text-xs gap-1 cursor-pointer`,onClick:()=>y(e),children:[(0,U.jsx)(oe,{className:`size-3`}),` Edit`]}),(0,U.jsxs)(N,{variant:`ghost`,size:`sm`,className:`h-7 text-xs gap-1 text-destructive hover:text-destructive cursor-pointer`,onClick:()=>l(e.name),children:[(0,U.jsx)(Ie,{className:`size-3`}),` Delete`]})]})})]},e.name))}),(0,U.jsxs)(`div`,{className:`space-y-2 pt-1`,children:[(0,U.jsxs)(N,{className:`w-full h-10 text-xs gap-1.5 cursor-pointer`,onClick:v,children:[(0,U.jsx)(xe,{className:`size-3.5`}),` Add MCP Server`]}),(0,U.jsxs)(N,{variant:`outline`,className:`w-full h-10 text-xs gap-1.5 cursor-pointer`,onClick:g,disabled:u,children:[(0,U.jsx)(Ne,{className:`size-3.5`}),` `,u?`Importing...`:`Import from Claude Code`]}),f&&(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground text-center`,children:f})]}),(0,U.jsx)(us,{open:i,onClose:_,editServer:o})]})}function ms(e){let t=e.config;if(e.transport===`stdio`||!(`url`in t)){let e=t;return[e.command,...e.args??[]].join(` `)}return t.url??``}function hs(){let[e,t]=(0,H.useState)([]),[n,r]=(0,H.useState)(!0),[i,a]=(0,H.useState)(``),[o,s]=(0,H.useState)(!1),[c,l]=(0,H.useState)(``),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(null),[m,h]=(0,H.useState)(null),g=(0,H.useCallback)(async()=>{try{t(await I.get(`/api/extensions`))}catch(e){console.error(`Failed to load extensions:`,e)}finally{r(!1)}},[]);(0,H.useEffect)(()=>{g()},[g]);let _=async()=>{let e=i.trim();if(e){s(!0);try{await I.post(`/api/extensions/install`,{name:e}),ge.success(`Installed ${e}`),a(``),g()}catch(e){ge.error(e.message||`Install failed`)}finally{s(!1)}}},v=async e=>{p(e.id);try{await I.patch(`/api/extensions/${e.id}`,{enabled:!e.enabled}),g()}catch(e){ge.error(e.message||`Toggle failed`)}finally{p(null)}},y=async e=>{h(e);try{await I.del(`/api/extensions/${e}`),ge.success(`Removed ${e}`),g()}catch(e){ge.error(e.message||`Remove failed`)}finally{h(null)}};return n?(0,U.jsx)(`div`,{className:`flex items-center justify-center py-8`,children:(0,U.jsx)(V,{className:`size-4 animate-spin text-muted-foreground`})}):(0,U.jsxs)(`div`,{className:`space-y-4`,children:[(0,U.jsxs)(`section`,{className:`space-y-2`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Install Extension`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,U.jsx)(P,{value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&_()},placeholder:`npm package name (e.g. @ppm/ext-database)`,className:`h-8 text-xs flex-1`}),(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`h-8 text-xs px-3 gap-1 cursor-pointer`,disabled:!i.trim()||o,onClick:_,children:[o?(0,U.jsx)(V,{className:`size-3 animate-spin`}):(0,U.jsx)(xe,{className:`size-3`}),`Install`]})]}),(0,U.jsx)(`button`,{onClick:()=>d(!u),className:`text-[11px] text-muted-foreground hover:text-foreground transition-colors cursor-pointer`,children:u?`Hide`:`Dev link local extension...`}),u&&(0,U.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,U.jsx)(P,{value:c,onChange:e=>l(e.target.value),placeholder:`Local path (e.g. ./packages/ext-database)`,className:`h-8 text-xs flex-1`}),(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`h-8 text-xs px-3 gap-1 cursor-pointer`,disabled:!c.trim(),onClick:async()=>{try{await I.post(`/api/extensions/dev-link`,{path:c.trim()}),ge.success(`Dev-linked successfully`),l(``),g()}catch(e){ge.error(e.message||`Dev link failed`)}},children:[(0,U.jsx)(Gt,{className:`size-3`}),`Link`]})]})]}),(0,U.jsxs)(`section`,{className:`space-y-2`,children:[(0,U.jsxs)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:[`Installed (`,e.length,`)`]}),e.length===0?(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground py-4 text-center`,children:`No extensions installed`}):(0,U.jsx)(`div`,{className:`space-y-1`,children:e.map(e=>(0,U.jsxs)(`div`,{className:`flex items-center gap-2 px-2.5 py-2 rounded-lg bg-muted/50 hover:bg-muted transition-colors`,children:[(0,U.jsx)(`div`,{className:`size-8 rounded-md bg-background flex items-center justify-center shrink-0`,children:(0,U.jsx)(En,{className:`size-4 text-muted-foreground`})}),(0,U.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,U.jsx)(`p`,{className:`text-xs font-medium truncate`,children:e.displayName||e.id}),(0,U.jsxs)(`p`,{className:`text-[11px] text-muted-foreground truncate`,children:[e.id,` v`,e.version,e.activated&&(0,U.jsx)(`span`,{className:`ml-1 text-green-500`,children:`active`})]})]}),(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 cursor-pointer`,title:e.enabled?`Disable`:`Enable`,disabled:f===e.id,onClick:()=>v(e),children:f===e.id?(0,U.jsx)(V,{className:`size-3.5 animate-spin`}):e.enabled?(0,U.jsx)(Tn,{className:`size-3.5 text-green-500`}):(0,U.jsx)(wn,{className:`size-3.5 text-muted-foreground`})}),(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 cursor-pointer text-destructive hover:text-destructive`,title:`Remove`,disabled:m===e.id,onClick:()=>y(e.id),children:m===e.id?(0,U.jsx)(V,{className:`size-3.5 animate-spin`}):(0,U.jsx)(Ie,{className:`size-3.5`})})]},e.id))})]})]})}function gs(){let[e,t]=(0,H.useState)(null),[n,r]=(0,H.useState)(!1),[i,a]=(0,H.useState)(null),[o,s]=(0,H.useState)(``),[c,l]=(0,H.useState)(!1),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(!1),[m,h]=(0,H.useState)(``),[g,_]=(0,H.useState)(!0),[v,y]=(0,H.useState)(!1),[b,x]=(0,H.useState)(2e3),[S,C]=(0,H.useState)([]),[w,T]=(0,H.useState)(``),[E,D]=(0,H.useState)(!1),[ee,O]=(0,H.useState)(!1),[te,ne]=(0,H.useState)([]),[re,ie]=(0,H.useState)(`_global`),[ae,k]=(0,H.useState)([]),A=(0,H.useRef)(void 0),oe=(0,H.useCallback)(async()=>{try{C(await I.get(`/api/settings/clawbot/paired`))}catch{}},[]),se=(0,H.useCallback)(async(e=re)=>{try{ne(await I.get(`/api/settings/clawbot/memories?project=${encodeURIComponent(e)}`))}catch{}},[re]),ce=(0,H.useCallback)(async()=>{try{k(await I.get(`/api/settings/clawbot/tasks?limit=20`))}catch{}},[]),le=async e=>{try{await I.del(`/api/settings/clawbot/memories/${e}`),ne(t=>t.filter(t=>t.id!==e))}catch{}};(0,H.useEffect)(()=>(I.get(`/api/settings/clawbot`).then(e=>{t(e),p(e.enabled),h(e.system_prompt),_(e.show_tool_calls),y(e.show_thinking),x(e.debounce_ms)}).catch(()=>{}),I.get(`/api/settings/telegram`).then(e=>{l(!!e.bot_token)}).catch(()=>{}),oe(),se(`_global`),ce(),A.current=setInterval(ce,1e4),()=>{A.current&&clearInterval(A.current)}),[oe,se,ce]);let M=async()=>{if(o.trim()){d(!0),a(null);try{await I.put(`/api/settings/telegram`,{bot_token:o}),l(!0),s(``),a({type:`ok`,msg:`Bot token saved`})}catch(e){a({type:`err`,msg:e.message})}finally{d(!1)}}},ue=async()=>{r(!0),a(null);try{let e={enabled:f,system_prompt:m,show_tool_calls:g,show_thinking:v,debounce_ms:b};t(await I.put(`/api/settings/clawbot`,e)),a({type:`ok`,msg:f?`Saved — bot started`:`Saved — bot stopped`})}catch(e){a({type:`err`,msg:e.message})}finally{r(!1)}},de=async()=>{if(w.trim()){D(!0);try{await I.post(`/api/settings/clawbot/paired/approve`,{code:w.trim().toUpperCase()}),T(``),await oe(),a({type:`ok`,msg:`Device approved`})}catch(e){a({type:`err`,msg:e.message})}finally{D(!1)}}},fe=async e=>{try{await I.del(`/api/settings/clawbot/paired/${e}`),await oe(),a({type:`ok`,msg:`Device revoked`})}catch(e){a({type:`err`,msg:e.message})}},pe=async()=>{O(!0),a(null);try{await I.post(`/api/settings/telegram/test`,{}),a({type:`ok`,msg:`Test notification sent to all paired devices!`})}catch(e){a({type:`err`,msg:e.message})}finally{O(!1)}};if(!e)return(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Loading...`});let me=S.filter(e=>e.status===`approved`).length,he={pending:`⏳`,running:`🔄`,completed:`✅`,failed:`❌`,timeout:`⏱`},ge={running:`text-blue-500`,completed:`text-green-500`,failed:`text-destructive`,timeout:`text-yellow-500`};return(0,U.jsxs)(`div`,{className:`space-y-4`,children:[(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(`label`,{className:`text-[11px] text-muted-foreground`,children:`Telegram Bot Token`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,U.jsx)(P,{type:`password`,placeholder:c?`•••••• (saved)`:`123456:ABC-DEF...`,value:o,onChange:e=>s(e.target.value),className:`h-7 text-xs flex-1`}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-7 text-xs shrink-0 cursor-pointer`,disabled:u||!o.trim(),onClick:M,children:u?`...`:`Save`})]}),(0,U.jsxs)(`p`,{className:`text-[10px] text-muted-foreground`,children:[`Create a bot via `,(0,U.jsx)(`b`,{children:`@BotFather`}),` on Telegram. Used for both chat and notifications.`]})]}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`p`,{className:`text-xs font-medium`,children:`Enable PPMBot`}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`AI coordinator on Telegram — delegates tasks to your projects`})]}),(0,U.jsx)(j,{checked:f,onCheckedChange:p})]}),(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsx)(`p`,{className:`text-xs font-medium`,children:`Paired Devices`}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Send any message to the bot on Telegram to get a pairing code. Enter it below to approve. Notifications are sent to all approved devices.`}),(0,U.jsxs)(`div`,{className:`flex gap-2`,children:[(0,U.jsx)(P,{placeholder:`Enter pairing code (e.g. A3K7WR)`,value:w,onChange:e=>T(e.target.value.toUpperCase()),className:`h-8 text-xs font-mono tracking-wider uppercase`,maxLength:6}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-8 text-xs shrink-0 cursor-pointer`,disabled:E||w.length<6,onClick:de,children:E?`...`:`Approve`})]}),S.length===0?(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground italic`,children:`No paired devices yet.`}):(0,U.jsx)(`div`,{className:`space-y-1`,children:S.map(e=>(0,U.jsxs)(`div`,{className:`flex items-center justify-between rounded-md border p-2`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2 min-w-0`,children:[e.status===`approved`?(0,U.jsx)(yt,{className:`size-3.5 text-green-500 shrink-0`}):(0,U.jsx)(Ae,{className:`size-3.5 text-yellow-500 shrink-0`}),(0,U.jsxs)(`div`,{className:`min-w-0`,children:[(0,U.jsx)(`p`,{className:`text-xs truncate`,children:e.display_name||`Chat ${e.telegram_chat_id}`}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:e.status===`pending`&&e.pairing_code?`Code: ${e.pairing_code}`:e.status})]})]}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`h-7 w-7 p-0 text-destructive hover:text-destructive cursor-pointer`,onClick:()=>fe(e.telegram_chat_id),children:(0,U.jsx)(Ie,{className:`size-3.5`})})]},e.id))}),c&&me>0&&(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`h-7 text-xs gap-1 w-full cursor-pointer`,disabled:ee,onClick:pe,children:[(0,U.jsx)(An,{className:`size-3`}),ee?`Sending...`:`Test Notification`]})]}),(0,U.jsx)(Ko,{}),(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(`p`,{className:`text-xs font-medium`,children:`Delegated Tasks`}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`h-6 w-6 p-0 cursor-pointer`,onClick:ce,children:(0,U.jsx)(Fe,{className:`size-3`})})]}),ae.length===0?(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground italic`,children:`No delegated tasks yet. The coordinator will create tasks when you ask it to work on a project.`}):(0,U.jsx)(`div`,{className:`space-y-1 max-h-[200px] overflow-y-auto`,children:ae.map(e=>{let t=e.completed_at?`${Math.round((e.completed_at-e.created_at)/60)}m`:`${Math.round((Date.now()/1e3-e.created_at)/60)}m`;return(0,U.jsxs)(`div`,{className:`flex items-center gap-2 rounded-md border p-2 text-[11px]`,children:[(0,U.jsx)(`span`,{className:ge[e.status]??``,children:he[e.status]??`?`}),(0,U.jsx)(`span`,{className:`font-medium shrink-0`,children:e.project_name}),(0,U.jsx)(`span`,{className:`truncate text-muted-foreground flex-1`,children:e.prompt.slice(0,60)}),(0,U.jsx)(`span`,{className:`text-[10px] text-muted-foreground shrink-0`,children:t})]},e.id)})})]}),(0,U.jsx)(Ko,{}),(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,U.jsx)(ht,{className:`size-3.5 text-muted-foreground`}),(0,U.jsx)(`p`,{className:`text-xs font-medium`,children:`Memory & Identity`})]}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`h-6 w-6 p-0 cursor-pointer`,onClick:()=>se(re),children:(0,U.jsx)(Fe,{className:`size-3`})})]}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Facts the bot remembers across sessions. Use /remember on Telegram to add, or delete here.`}),te.length===0?(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground italic`,children:`No memories stored yet. Send /start on Telegram and introduce yourself.`}):(0,U.jsx)(`div`,{className:`space-y-1 max-h-[200px] overflow-y-auto`,children:te.map(e=>(0,U.jsxs)(`div`,{className:`flex items-start justify-between rounded-md border p-2 gap-1`,children:[(0,U.jsxs)(`div`,{className:`min-w-0 flex-1`,children:[(0,U.jsx)(`p`,{className:`text-[11px] break-words`,children:e.content}),(0,U.jsxs)(`p`,{className:`text-[10px] text-muted-foreground`,children:[e.category,` · `,e.project]})]}),(0,U.jsx)(N,{variant:`ghost`,size:`sm`,className:`h-6 w-6 p-0 text-destructive hover:text-destructive cursor-pointer shrink-0`,onClick:()=>le(e.id),children:(0,U.jsx)(Ie,{className:`size-3`})})]},e.id))})]}),(0,U.jsx)(Ko,{}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(`label`,{className:`text-[11px] text-muted-foreground`,children:`Custom Instructions`}),(0,U.jsx)(`textarea`,{placeholder:`Additional instructions for the coordinator (optional)...`,value:m,onChange:e=>h(e.target.value),className:`flex w-full rounded-md border border-input bg-background px-3 py-2 text-xs min-h-[60px] resize-y ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2`,rows:3}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Extra instructions added to the coordinator identity. Leave empty to use defaults from coordinator.md.`})]}),(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(`p`,{className:`text-xs`,children:`Show tool calls`}),(0,U.jsx)(j,{checked:g,onCheckedChange:_})]}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(`p`,{className:`text-xs`,children:`Show thinking`}),(0,U.jsx)(j,{checked:v,onCheckedChange:y})]})]}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(`label`,{className:`text-[11px] text-muted-foreground`,children:`Debounce (ms)`}),(0,U.jsx)(P,{type:`number`,min:0,max:3e4,step:500,value:b,onChange:e=>x(Number(e.target.value)),className:`h-7 text-xs w-24`}),(0,U.jsx)(`p`,{className:`text-[10px] text-muted-foreground`,children:`Merge rapid messages within this window. 0 = no debounce.`})]}),(0,U.jsx)(N,{variant:`default`,size:`sm`,className:`h-8 text-xs w-full cursor-pointer`,disabled:n,onClick:ue,children:n?`Saving...`:`Save`}),i&&(0,U.jsx)(`p`,{className:`text-[11px] ${i.type===`ok`?`text-green-600 dark:text-green-400`:`text-destructive`}`,children:i.msg})]})}function _s(){let[e,t]=(0,H.useState)(!1),[n,r]=(0,H.useState)(``),[i,a]=(0,H.useState)(``),[o,s]=(0,H.useState)(!1),[c,l]=(0,H.useState)(!1),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(null),m=i.length>0&&n!==i,h=n.trim().length>=4&&n===i&&!c,g=(0,H.useCallback)(async()=>{if(h){l(!0),p(null);try{let{token:e}=await I.put(`/api/settings/auth/password`,{password:n.trim(),confirm:i.trim()});Re(e),d(!0),r(``),a(``),setTimeout(()=>{d(!1),t(!1)},1500)}catch(e){p(e instanceof Error?e.message:`Failed to change password`)}finally{l(!1)}}},[h,n,i]);return e?(0,U.jsxs)(`section`,{className:`space-y-2`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Change Password`}),(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsxs)(`div`,{className:`relative`,children:[(0,U.jsx)(P,{type:o?`text`:`password`,placeholder:`New password`,value:n,onChange:e=>r(e.target.value),className:`h-8 text-xs pr-8`,autoFocus:!0}),(0,U.jsx)(`button`,{type:`button`,className:`absolute right-2 top-1/2 -translate-y-1/2 text-muted-foreground cursor-pointer`,onClick:()=>s(!o),tabIndex:-1,children:o?(0,U.jsx)(re,{className:`size-3.5`}):(0,U.jsx)(Me,{className:`size-3.5`})})]}),(0,U.jsx)(P,{type:o?`text`:`password`,placeholder:`Confirm password`,value:i,onChange:e=>a(e.target.value),onKeyDown:e=>{e.key===`Enter`&&g()},className:`h-8 text-xs`}),m&&(0,U.jsx)(`p`,{className:`text-[11px] text-destructive`,children:`Passwords do not match`}),f&&(0,U.jsx)(`p`,{className:`text-[11px] text-destructive`,children:f}),(0,U.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-8 text-xs flex-1 cursor-pointer`,onClick:()=>{t(!1),r(``),a(``),p(null)},children:`Cancel`}),(0,U.jsx)(N,{variant:u?`default`:`outline`,size:`sm`,className:`h-8 text-xs flex-1 cursor-pointer`,disabled:!h,onClick:g,children:c?`...`:u?(0,U.jsx)(he,{className:`size-3.5`}):`Save`})]}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Min 4 characters. You'll stay logged in on this device.`})]})]}):(0,U.jsxs)(`section`,{className:`space-y-2`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Security`}),(0,U.jsxs)(N,{variant:`outline`,size:`sm`,className:`h-8 text-xs gap-1.5 cursor-pointer`,onClick:()=>t(!0),children:[(0,U.jsx)(en,{className:`size-3.5`}),`Change Password`]})]})}function vs(){return I.get(`/api/settings/files`)}function ys(e){return I.patch(`/api/settings/files`,e)}function bs(e){return I.get(`/api/projects/${encodeURIComponent(e)}/settings`)}function xs(e,t){return I.patch(`/api/projects/${encodeURIComponent(e)}/settings`,t)}function Ss({value:e,onChange:t,placeholder:n=`e.g. **/*.log`,disabled:r=!1}){let i=(0,H.useRef)([]);function a(n,r){let i=[...e];i[n]=r,t(i)}function o(n){t(e.filter((e,t)=>t!==n)),setTimeout(()=>{let e=Math.max(n-1,0);i.current[e]?.focus()},0)}function s(){t([...e,``]),setTimeout(()=>{i.current[e.length]?.focus()},0)}function c(t,n){n.key===`Enter`?(n.preventDefault(),e[t]?.trim()&&s()):n.key===`Backspace`&&e[t]===``&&(n.preventDefault(),o(t))}return(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[e.length===0&&(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground py-1`,children:`No patterns. Click "Add pattern" to start.`}),e.map((e,t)=>(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,U.jsx)(P,{ref:e=>{i.current[t]=e},value:e,onChange:e=>a(t,e.target.value),onKeyDown:e=>c(t,e),placeholder:n,disabled:r,className:`h-8 text-xs flex-1 font-mono`,"aria-label":`Pattern ${t+1}`}),(0,U.jsx)(`button`,{type:`button`,onClick:()=>o(t),disabled:r,"aria-label":`Remove pattern ${t+1}`,className:`shrink-0 flex items-center justify-center p-2.5 rounded-md text-muted-foreground hover:text-destructive hover:bg-destructive/10 transition-colors disabled:opacity-40 disabled:pointer-events-none`,children:(0,U.jsx)(Pe,{className:`size-3.5`})})]},t)),(0,U.jsxs)(N,{type:`button`,variant:`outline`,size:`sm`,onClick:s,disabled:r,className:`h-8 text-xs gap-1.5 w-full cursor-pointer`,children:[(0,U.jsx)(xe,{className:`size-3.5`}),`Add pattern`]})]})}var Cs={filesExclude:[],searchExclude:[],useIgnoreFiles:!0};function ws(){let e=Ye(e=>e.activeProject),[t,n]=(0,H.useState)(`global`),[r,i]=(0,H.useState)([]),[a,o]=(0,H.useState)([]),[s,c]=(0,H.useState)(!0),[l,u]=(0,H.useState)(!1),[d,f]=(0,H.useState)(!1),[p,m]=(0,H.useState)(null),[h,g]=(0,H.useState)(!1),_=(0,H.useRef)(null);(0,H.useEffect)(()=>{_.current?.abort();let n=new AbortController;return _.current=n,g(!0),m(null),(async()=>{try{if(t===`global`){let e=await vs();if(n.signal.aborted)return;i(e.filesExclude),o(e.searchExclude),c(e.useIgnoreFiles)}else{if(!e)return;let t=await bs(e.name);if(n.signal.aborted)return;let r=t.files??{};i(r.filesExclude??Cs.filesExclude),o(r.searchExclude??Cs.searchExclude),c(r.useIgnoreFiles??Cs.useIgnoreFiles)}}catch(e){if(n.signal.aborted)return;m(e.message)}finally{n.signal.aborted||g(!1)}})(),()=>n.abort()},[t,e?.name]);let v=async()=>{u(!0),f(!1),m(null);try{let n={filesExclude:r.filter(e=>e.trim()!==``),searchExclude:a.filter(e=>e.trim()!==``),useIgnoreFiles:s};if(t===`global`)await ys(n);else{if(!e)throw Error(`No active project`);await xs(e.name,{files:n})}let i=Xe.getState();i.invalidateIndex(),e&&i.loadIndex(e.name),f(!0),setTimeout(()=>f(!1),2e3)}catch(e){m(e.message)}finally{u(!1)}},y=!!e;return(0,U.jsxs)(`div`,{className:`space-y-4`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`File Filters`}),(0,U.jsxs)(`div`,{className:`flex gap-1`,children:[(0,U.jsx)(`button`,{type:`button`,onClick:()=>n(`global`),className:`flex-1 py-1.5 rounded-md text-xs font-medium transition-colors cursor-pointer ${t===`global`?`bg-primary text-primary-foreground`:`bg-muted text-muted-foreground hover:bg-accent`}`,children:`Global`}),(0,U.jsx)(`button`,{type:`button`,onClick:()=>y&&n(`project`),disabled:!y,title:y?void 0:`Open a project to edit per-project overrides`,className:`flex-1 py-1.5 rounded-md text-xs font-medium transition-colors cursor-pointer disabled:opacity-40 disabled:cursor-not-allowed ${t===`project`?`bg-primary text-primary-foreground`:`bg-muted text-muted-foreground hover:bg-accent`}`,children:e?e.name:`Per-project`})]}),t===`project`&&e&&(0,U.jsxs)(`p`,{className:`text-[11px] text-muted-foreground -mt-2`,children:[`Overrides for `,(0,U.jsx)(`span`,{className:`font-medium`,children:e.name}),`. Leave empty to use global settings.`]}),h?(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Loading...`}):(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(me,{className:`text-xs`,children:`Files to Exclude`}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Glob patterns hidden from the file tree and palette.`}),(0,U.jsx)(Ss,{value:r,onChange:i,placeholder:`e.g. **/*.log or node_modules/**`,disabled:l})]}),(0,U.jsx)(Ko,{}),(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(me,{className:`text-xs`,children:`Search to Exclude`}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Glob patterns excluded from file index / palette search.`}),(0,U.jsx)(Ss,{value:a,onChange:o,placeholder:`e.g. dist/** or **/*.min.js`,disabled:l})]}),(0,U.jsx)(Ko,{}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between gap-2`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(me,{className:`text-xs`,children:`Use .gitignore rules`}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Respect .gitignore when filtering the file tree and index.`})]}),(0,U.jsx)(j,{checked:s,onCheckedChange:c,disabled:l})]}),p&&(0,U.jsx)(`p`,{className:`text-[11px] text-destructive`,children:p}),(0,U.jsx)(N,{onClick:v,disabled:l||h,size:`sm`,className:`h-8 text-xs w-full cursor-pointer`,children:l?`Saving...`:d?`Saved`:`Save`})]})]})}function Ts(e){let t=(e+`=`.repeat((4-e.length%4)%4)).replace(/-/g,`+`).replace(/_/g,`/`),n=atob(t);return Uint8Array.from(n,e=>e.charCodeAt(0))}function Es(){let[e,t]=(0,H.useState)(`default`),[n,r]=(0,H.useState)(!1),[i,a]=(0,H.useState)(!1),[o,s]=(0,H.useState)(null);return(0,H.useEffect)(()=>{`Notification`in window&&t(Notification.permission),r(localStorage.getItem(`ppm-push-subscribed`)===`true`)},[]),{permission:e,isSubscribed:n,loading:i,error:o,subscribe:(0,H.useCallback)(async()=>{a(!0),s(null);try{let e=await Notification.requestPermission();if(t(e),e!==`granted`){s(`Permission denied`);return}if(!navigator.serviceWorker?.controller&&!navigator.serviceWorker?.ready){s(`Service worker not available (dev mode?)`);return}let n=await Promise.race([navigator.serviceWorker.ready,new Promise((e,t)=>setTimeout(()=>t(Error(`Service worker timeout`)),5e3))]);if(!n)throw Error(`Service worker not ready`);let i={},a=ze();a&&(i.Authorization=`Bearer ${a}`);let o=await(await fetch(`/api/push/vapid-key`,{headers:i})).json();if(!o.ok)throw Error(o.error||`Failed to get VAPID key`);let c=await n.pushManager.subscribe({userVisibleOnly:!0,applicationServerKey:Ts(o.data.publicKey).buffer});await fetch(`/api/push/subscribe`,{method:`POST`,headers:{...i,"Content-Type":`application/json`},body:JSON.stringify(c.toJSON())}),r(!0),localStorage.setItem(`ppm-push-subscribed`,`true`)}catch(e){s(e instanceof Error?e.message:`Subscribe failed`),console.error(`[push] Subscribe failed:`,e)}finally{a(!1)}},[]),unsubscribe:(0,H.useCallback)(async()=>{a(!0);try{let e=await(await navigator.serviceWorker.ready).pushManager.getSubscription();if(e){let t={"Content-Type":`application/json`},n=ze();n&&(t.Authorization=`Bearer ${n}`),await fetch(`/api/push/subscribe`,{method:`DELETE`,headers:t,body:JSON.stringify({endpoint:e.endpoint})}),await e.unsubscribe()}r(!1),localStorage.removeItem(`ppm-push-subscribed`)}catch(e){console.error(`[push] Unsubscribe failed:`,e)}finally{a(!1)}},[])}}var Ds=[{value:`light`,label:`Light`,icon:Rn},{value:`dark`,label:`Dark`,icon:mn},{value:`system`,label:`System`,icon:ne}],Os=`PushManager`in window&&`serviceWorker`in navigator,ks=/iPhone|iPad/.test(navigator.userAgent)&&!window.matchMedia(`(display-mode: standalone)`).matches,As=[{value:`ai`,label:`AI Provider`,subtitle:`Model, execution mode, limits`,icon:ce},{value:`notifications`,label:`Notifications`,subtitle:`Push & Telegram alerts`,icon:pt},{value:`clawbot`,label:`PPMBot`,subtitle:`Telegram AI bot`,icon:ce},{value:`proxy`,label:`API Proxy`,subtitle:`Expose accounts as Anthropic API`,icon:_e},{value:`shortcuts`,label:`Keyboard Shortcuts`,subtitle:`Customize key bindings`,icon:nn},{value:`mcp`,label:`MCP Servers`,subtitle:`Model Context Protocol tools`,icon:Cn},{value:`extensions`,label:`Extensions`,subtitle:`Install and manage extensions`,icon:En},{value:`files`,label:`File Filters`,subtitle:`Exclude patterns, ignore files`,icon:Wt}];function js(){let{theme:e,setTheme:t,deviceName:n,setDeviceName:r,version:i,jiraEnabled:a,setJiraEnabled:o}=L(q(e=>({theme:e.theme,setTheme:e.setTheme,deviceName:e.deviceName,setDeviceName:e.setDeviceName,version:e.version,jiraEnabled:e.jiraEnabled,setJiraEnabled:e.setJiraEnabled}))),{permission:s,isSubscribed:c,loading:l,error:u,subscribe:d,unsubscribe:f}=Es(),[p,m]=(0,H.useState)(null),[h,g]=(0,H.useState)(n??``),[_,v]=(0,H.useState)(!1),[y,b]=(0,H.useState)(!1),x=(0,H.useRef)(void 0),S=h.trim()!==(n??``),C=(0,H.useCallback)(async()=>{if(S){v(!0);try{await r(h),b(!0),clearTimeout(x.current),x.current=setTimeout(()=>b(!1),2e3)}finally{v(!1)}}},[h,S,r]);if(p){let e=As.find(e=>e.value===p),t=e.icon;return(0,U.jsxs)(`div`,{className:`h-full w-full flex flex-col`,children:[(0,U.jsxs)(`div`,{className:`shrink-0 px-2 pt-3 pb-1 flex items-center gap-1`,children:[(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:`size-8 cursor-pointer shrink-0`,onClick:()=>m(null),children:(0,U.jsx)(te,{className:`size-4`})}),(0,U.jsx)(t,{className:`size-4 text-muted-foreground shrink-0`}),(0,U.jsx)(`h2`,{className:`text-sm font-semibold truncate`,children:e.label})]}),(0,U.jsx)(Ko,{}),(0,U.jsx)(ie,{className:`flex-1 min-h-0`,children:(0,U.jsxs)(`div`,{className:`p-3`,children:[p===`ai`&&(0,U.jsx)(pe,{compact:!0}),p===`notifications`&&(0,U.jsx)(Ms,{isSubscribed:c,loading:l,permission:s,pushError:u,subscribe:d,unsubscribe:f}),p===`clawbot`&&(0,U.jsx)(gs,{}),p===`proxy`&&(0,U.jsx)(ts,{}),p===`shortcuts`&&(0,U.jsx)(Xo,{}),p===`mcp`&&(0,U.jsx)(ps,{}),p===`extensions`&&(0,U.jsx)(hs,{}),p===`files`&&(0,U.jsx)(ws,{})]})})]})}return(0,U.jsxs)(`div`,{className:`h-full w-full flex flex-col`,children:[(0,U.jsx)(`div`,{className:`shrink-0 px-3 pt-3 pb-1`,children:(0,U.jsx)(`h2`,{className:`text-sm font-semibold`,children:`Settings`})}),(0,U.jsx)(ie,{className:`flex-1 min-h-0`,children:(0,U.jsxs)(`div`,{className:`p-3 space-y-4`,children:[(0,U.jsxs)(`section`,{className:`space-y-2`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Device Name`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5`,children:[(0,U.jsx)(P,{value:h,onChange:e=>g(e.target.value),onKeyDown:e=>{e.key===`Enter`&&C()},placeholder:`My Device`,className:`h-8 text-xs flex-1`,maxLength:100}),(0,U.jsx)(N,{variant:y?`default`:`outline`,size:`sm`,className:`h-8 text-xs px-3 cursor-pointer`,disabled:!S||_,onClick:C,children:_?`...`:y?(0,U.jsx)(he,{className:`size-3.5`}):`Save`})]}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Shown in page title and synced to PPM Cloud.`})]}),(0,U.jsx)(_s,{}),(0,U.jsxs)(`section`,{className:`space-y-2`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Theme`}),(0,U.jsx)(`div`,{className:`flex gap-1.5`,children:Ds.map(n=>{let r=n.icon;return(0,U.jsxs)(N,{variant:e===n.value?`default`:`outline`,size:`sm`,onClick:()=>t(n.value),className:R(`flex-1 gap-1.5 text-xs h-8 cursor-pointer`,e===n.value&&`ring-2 ring-primary`),children:[(0,U.jsx)(r,{className:`size-3.5`}),n.label]},n.value)})})]}),(0,U.jsx)(`section`,{className:`space-y-1`,children:(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,U.jsx)(M,{className:`size-4 text-muted-foreground`}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`p`,{className:`text-xs font-medium`,children:`Jira Watcher`}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Auto-debug Jira tickets`})]})]}),(0,U.jsx)(j,{checked:a,onCheckedChange:o})]})}),(0,U.jsx)(Ko,{}),(0,U.jsx)(`nav`,{className:`space-y-1`,"aria-label":`Settings categories`,children:As.map(e=>{let t=e.icon;return(0,U.jsxs)(`button`,{onClick:()=>m(e.value),className:`w-full flex items-center gap-3 px-2.5 py-2.5 rounded-lg hover:bg-accent/50 active:bg-accent transition-colors cursor-pointer text-left group`,children:[(0,U.jsx)(`div`,{className:`size-8 rounded-md bg-muted flex items-center justify-center shrink-0 group-hover:bg-accent`,children:(0,U.jsx)(t,{className:`size-4 text-muted-foreground`})}),(0,U.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,U.jsx)(`p`,{className:`text-xs font-medium text-foreground truncate`,children:e.label}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground truncate`,children:e.subtitle})]}),(0,U.jsx)(Se,{className:`size-4 text-muted-foreground shrink-0`})]},e.value)})}),(0,U.jsx)(Ko,{}),(0,U.jsxs)(`section`,{className:`space-y-1 pb-2`,children:[(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`PPM — Personal Project Manager`}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`A mobile-first web IDE for managing your projects.`}),i&&(0,U.jsxs)(`p`,{className:`text-[11px] text-muted-foreground tabular-nums`,children:[`Version `,i]})]})]})})]})}function Ms({isSubscribed:e,loading:t,permission:n,pushError:r,subscribe:i,unsubscribe:a}){return(0,U.jsxs)(`div`,{className:`space-y-4`,children:[(0,U.jsxs)(`section`,{className:`space-y-2`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Push Notifications`}),Os?(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[e?(0,U.jsx)(mt,{className:`size-3.5`}):(0,U.jsx)(se,{className:`size-3.5`}),(0,U.jsx)(`span`,{className:`text-xs`,children:`Push notifications`})]}),(0,U.jsx)(N,{variant:e?`default`:`outline`,size:`sm`,className:`h-7 text-xs cursor-pointer`,disabled:t||n===`denied`,onClick:()=>e?a():i(),children:t?`...`:e?`On`:`Off`})]}),e&&(0,U.jsx)(N,{variant:`outline`,size:`sm`,className:`h-7 text-xs w-full cursor-pointer`,onClick:()=>{new Notification(`PPM Test`,{body:`Push notifications are working!`})},children:`Test notification`}),r&&(0,U.jsx)(`p`,{className:`text-[11px] text-destructive`,children:r}),n===`denied`&&(0,U.jsx)(`p`,{className:`text-[11px] text-destructive`,children:`Notifications blocked. Enable in browser settings.`}),ks&&(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`On iOS, install PPM to Home Screen for push notifications.`})]}):(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Push notifications not supported in this browser.`})]}),(0,U.jsx)(Ko,{}),(0,U.jsxs)(`section`,{className:`space-y-1`,children:[(0,U.jsx)(`h3`,{className:`text-xs font-medium text-muted-foreground`,children:`Telegram`}),(0,U.jsx)(`p`,{className:`text-[11px] text-muted-foreground`,children:`Telegram notifications are sent to all approved devices in PPMBot settings. Configure your bot token and pair devices there.`})]})]})}function Ns({connections:e,cachedTables:t,refreshErrors:n,onOpenTable:r,onRefreshTables:i,onEdit:a,onDelete:o,onFetchColumns:s,columnCache:c}){let[l,u]=(0,H.useState)(new Set),[d,f]=(0,H.useState)(new Set([`__ungrouped__`])),[p,m]=(0,H.useState)(new Set),[h,g]=(0,H.useState)(new Set),[_,v]=(0,H.useState)(new Map),[y,b]=(0,H.useState)(new Set),x=e=>{u(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},S=e=>{f(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},C=async(e,t,n)=>{let r=`${e}:${n}.${t}`;if(p.has(r)){m(e=>{let t=new Set(e);return t.delete(r),t});return}if(m(e=>new Set(e).add(r)),s&&!c?.has(r)){b(e=>new Set(e).add(r));try{await s(e,t,n)}catch{}b(e=>{let t=new Set(e);return t.delete(r),t})}},w=async e=>{g(t=>new Set(t).add(e));try{await i(e)}finally{g(t=>{let n=new Set(t);return n.delete(e),n})}},T={};for(let t of e){let e=t.group_name??`__ungrouped__`;(T[e]??=[]).push(t)}let E=Object.keys(T).sort((e,t)=>e===`__ungrouped__`?1:t===`__ungrouped__`?-1:e.localeCompare(t)),D=(0,H.useMemo)(()=>{let n=new Map;for(let r of e){let e=t.get(r.id)??[],i=new Map;for(let t of e){let e=t.schemaName;(i.get(e)??i.set(e,[]).get(e)).push(t)}n.set(r.id,i)}return n},[e,t]);return e.length===0?(0,U.jsxs)(`p`,{className:`px-4 py-6 text-xs text-text-subtle text-center`,children:[`No connections yet.`,(0,U.jsx)(`br`,{}),`Click + to add one.`]}):(0,U.jsx)(`div`,{className:`py-1`,children:E.map(e=>{let i=d.has(e),s=e===`__ungrouped__`?`Ungrouped`:e,u=T[e],f=E.length>1||e!==`__ungrouped__`;return(0,U.jsxs)(`div`,{children:[f&&(0,U.jsxs)(`button`,{onClick:()=>S(e),className:`w-full flex items-center gap-1 px-2 py-1 text-[10px] font-semibold text-text-subtle uppercase tracking-wider hover:text-text-secondary transition-colors`,children:[i?(0,U.jsx)(be,{className:`size-3`}):(0,U.jsx)(Se,{className:`size-3`}),s]}),i&&(0,U.jsx)(`div`,{className:f?`ml-[11px] border-l border-dashed border-border`:``,children:u.map(e=>{let i=l.has(e.id),s=t.get(e.id)??[],u=h.has(e.id),d=D.get(e.id)??new Map,m=d.size<=1,g=_.get(e.id)??``;return(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`div`,{className:R(`group flex items-center gap-1 py-1 hover:bg-surface-elevated transition-colors`,f?`pl-3 pr-2`:`px-2`),children:[(0,U.jsx)(`button`,{onClick:()=>{x(e.id),!l.has(e.id)&&s.length===0&&w(e.id)},className:`shrink-0 text-text-subtle hover:text-foreground transition-colors`,children:i?(0,U.jsx)(be,{className:`size-3`}):(0,U.jsx)(Se,{className:`size-3`})}),(0,U.jsx)(`span`,{className:`shrink-0 size-2 rounded-full border border-border`,style:{backgroundColor:e.color??`transparent`}}),(0,U.jsx)(`button`,{className:`flex-1 text-left text-xs truncate hover:text-primary transition-colors`,onClick:()=>{x(e.id),!l.has(e.id)&&s.length===0&&w(e.id)},children:e.name}),(0,U.jsx)(`span`,{className:`shrink-0 text-[9px] text-text-subtle uppercase px-1 rounded bg-surface-elevated`,children:e.type===`postgres`?`PG`:`DB`}),e.readonly===1&&(0,U.jsx)(`span`,{title:`Readonly`,children:(0,U.jsx)(de,{className:`shrink-0 size-2.5 text-text-subtle`})}),(0,U.jsxs)(`div`,{className:`flex can-hover:hidden can-hover:group-hover:flex items-center gap-0.5 shrink-0`,children:[(0,U.jsx)(`button`,{onClick:()=>w(e.id),disabled:u,className:`p-0.5 text-text-subtle hover:text-foreground transition-colors`,title:`Refresh tables`,children:(0,U.jsx)(Fe,{className:R(`size-3`,u&&`animate-spin`)})}),(0,U.jsx)(`button`,{onClick:()=>a(e),className:`p-0.5 text-text-subtle hover:text-foreground transition-colors`,title:`Edit`,children:(0,U.jsx)(oe,{className:`size-3`})}),(0,U.jsx)(`button`,{onClick:()=>o(e.id),className:`p-0.5 text-text-subtle hover:text-red-500 transition-colors`,title:`Delete`,children:(0,U.jsx)(Ie,{className:`size-3`})})]})]}),i&&(0,U.jsxs)(`div`,{className:`ml-[11px] border-l border-dashed border-border pl-1`,children:[u&&s.length===0&&(0,U.jsx)(`p`,{className:`text-[10px] text-text-subtle px-2 py-1`,children:`Loading…`}),!u&&s.length===0&&(n?.get(e.id)?(0,U.jsx)(`p`,{className:`text-[10px] text-red-500 px-2 py-1 break-all`,children:n.get(e.id)}):(0,U.jsx)(`p`,{className:`text-[10px] text-text-subtle px-2 py-1`,children:`No tables cached`})),s.length>0&&(0,U.jsxs)(U.Fragment,{children:[s.length>5&&(0,U.jsxs)(`div`,{className:`flex items-center gap-1 px-2 py-0.5`,children:[(0,U.jsx)(kn,{className:`size-2.5 text-text-subtle shrink-0`}),(0,U.jsx)(`input`,{type:`text`,value:g,onChange:t=>v(n=>new Map(n).set(e.id,t.target.value)),placeholder:`Filter tables…`,className:`w-full text-[10px] bg-transparent border-none outline-none text-foreground placeholder:text-text-subtle`})]}),(0,U.jsx)(Ps,{connId:e.id,connType:e.type,schemas:d,isSingleSchema:m,filter:g,expandedTables:p,loadingColumns:y,columnCache:c,onToggleTable:C,onOpenTable:(t,n)=>r(e,t,n)})]})]})]},e.id)})})]},e)})})}function Ps({connId:e,connType:t,schemas:n,isSingleSchema:r,filter:i,expandedTables:a,loadingColumns:o,columnCache:s,onToggleTable:c,onOpenTable:l}){let u=i.toLowerCase();return(0,U.jsxs)(`div`,{className:`overflow-y-auto`,style:{maxHeight:300},children:[Array.from(n.entries()).map(([t,n])=>{let i=u?n.filter(e=>e.tableName.toLowerCase().includes(u)):n;return i.length===0?null:(0,U.jsxs)(`div`,{children:[!r&&(0,U.jsx)(`p`,{className:`px-2 py-0.5 text-[9px] font-semibold text-text-subtle uppercase tracking-wider`,children:t}),i.map(t=>{let n=`${e}:${t.schemaName}.${t.tableName}`,r=a.has(n),i=o.has(n),u=s?.get(n);return(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1 pl-2 pr-2 py-0.5 hover:bg-surface-elevated transition-colors group/table`,children:[(0,U.jsx)(`button`,{onClick:()=>c(e,t.tableName,t.schemaName),className:`shrink-0 text-text-subtle hover:text-foreground transition-colors`,children:r?(0,U.jsx)(be,{className:`size-2.5`}):(0,U.jsx)(Se,{className:`size-2.5`})}),(0,U.jsx)(je,{className:`size-2.5 shrink-0 text-text-subtle`}),(0,U.jsx)(`button`,{onClick:()=>l(t.tableName,t.schemaName),className:`flex-1 text-left text-[11px] text-text-secondary hover:text-foreground transition-colors truncate`,children:t.tableName}),(0,U.jsx)(`span`,{className:`text-[9px] text-text-subtle`,children:t.rowCount})]}),r&&(0,U.jsxs)(`div`,{className:`ml-[18px] border-l border-dotted border-border pl-2`,children:[i&&(0,U.jsx)(`p`,{className:`text-[9px] text-text-subtle px-1 py-0.5`,children:`Loading…`}),u&&u.map(e=>(0,U.jsxs)(`div`,{className:`flex items-center gap-1 px-1 py-px text-[10px] text-text-subtle`,title:e.fk?`FK → ${e.fk.table}.${e.fk.column}`:void 0,children:[e.pk&&(0,U.jsx)(tn,{className:`size-2.5 text-amber-500 shrink-0`}),e.fk&&(0,U.jsx)(an,{className:`size-2.5 text-blue-400 shrink-0`}),!e.pk&&!e.fk&&(0,U.jsx)(`span`,{className:`size-2.5 shrink-0`}),(0,U.jsxs)(`span`,{className:`truncate`,children:[e.name,e.nullable?`?`:``]}),(0,U.jsx)(`span`,{className:`ml-auto text-[9px] text-text-subtle/60 shrink-0`,children:e.type})]},e.name)),!i&&!u&&(0,U.jsx)(`p`,{className:`text-[9px] text-text-subtle px-1 py-0.5`,children:`No columns`})]})]},n)})]},t)}),i&&Array.from(n.values()).every(e=>!e.some(e=>e.tableName.toLowerCase().includes(u)))&&(0,U.jsx)(`p`,{className:`text-[10px] text-text-subtle px-2 py-1`,children:`No match`})]})}var Fs=`ppm-recent-paths`,Is=5,Ls=[{name:`Home`,path:`~`,icon:Qt},{name:`Desktop`,path:`~/Desktop`,icon:ne},{name:`Documents`,path:`~/Documents`,icon:Rt},{name:`Downloads`,path:`~/Downloads`,icon:Ne}];function Rs(){try{return JSON.parse(localStorage.getItem(Fs)??`[]`)}catch{return[]}}function zs(e){let t=[e,...Rs().filter(t=>t!==e)].slice(0,Is);localStorage.setItem(Fs,JSON.stringify(t))}function Bs(e){return e==null?``:e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`}function Vs(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<1)return`now`;if(n<60)return`${n}m ago`;let r=Math.floor(n/60);return r<24?`${r}h ago`:`${Math.floor(r/24)}d ago`}function Hs(e){if(e.type===`directory`)return(0,U.jsx)(qt,{className:`size-4 text-blue-500`});let t=e.name.split(`.`).pop()?.toLowerCase();return t&&[`db`,`sqlite`,`sqlite3`].includes(t)?(0,U.jsx)(je,{className:`size-4 text-amber-500`}):(0,U.jsx)(Bt,{className:`size-4 text-text-subtle`})}function Us(e,t){if(!t?.length)return!0;let n=`.`+e.split(`.`).pop()?.toLowerCase();return t.includes(n)}function Ws({open:e,mode:t,accept:n,root:r,title:i,onSelect:a,onCancel:o}){let[s,c]=(0,H.useState)([]),[l,u]=(0,H.useState)(``),[d,f]=(0,H.useState)(null),[p,m]=(0,H.useState)([]),[h,g]=(0,H.useState)(null),[_,v]=(0,H.useState)(!1),[y,b]=(0,H.useState)(null),[x,S]=(0,H.useState)(``),[C,w]=(0,H.useState)(``),[T,E]=(0,H.useState)(!1),[D,ee]=(0,H.useState)([]),[O,ne]=(0,H.useState)(null),[ae,k]=(0,H.useState)(!1),[A,oe]=(0,H.useState)(null),se=(0,H.useRef)(null),ce=(0,H.useRef)(null),le=typeof window<`u`&&window.innerWidth<768,j=t===`folder`?`Select Folder`:t===`file`?`Select File`:`Select File or Folder`,M=(0,H.useCallback)(async(e,t)=>{v(!0),b(null),g(null),S(``);try{let n=new URLSearchParams;e&&n.set(`path`,e),t&&n.set(`showHidden`,`true`);let r=await I.get(`/api/fs/browse?${n}`);c(r.entries),u(r.current),f(r.parent),m(r.breadcrumbs),w(r.current)}catch(e){b(e.message||`Failed to browse directory`)}finally{v(!1)}},[]);(0,H.useEffect)(()=>{e&&(M(r??`~`,T),ee(Rs()))},[e,r,M,T]);let ue=e=>M(e,T),de=()=>{let e=!T;E(e),M(l||(r??`~`),e)},fe=e=>{e.key===`Enter`&&C.trim()&&M(C.trim())},pe=e=>{e.type===`directory`?t===`file`?ue(e.path):g(e.path):t!==`folder`&&g(e.path)},me=e=>{e.type===`directory`&&ue(e.path)},he=()=>{h&&(zs(l),a(h))},ge=async()=>{if(!O?.trim()||!l)return;let e=`${l}/${O.trim()}`;k(!0),oe(null);try{await I.post(`/api/fs/mkdir`,{path:e}),ne(null),oe(null),await M(l,T),g(e)}catch(e){oe(e.message||`Failed to create folder`)}finally{k(!1)}},_e=async()=>{if(!h)return;let e=s.find(e=>e.path===h);if(!(!e||e.type!==`directory`)&&window.confirm(`Delete folder "${e.name}"? This cannot be undone.`))try{await I.del(`/api/fs/rmdir`,{path:h}),g(null),await M(l,T)}catch(e){b(e.message||`Failed to delete folder`)}},ve=h?s.some(e=>e.path===h&&e.type===`directory`):!1,ye=s.filter(e=>!(x&&!e.name.toLowerCase().includes(x.toLowerCase())||e.type===`file`&&n?.length&&!Us(e.name,n))),be=e=>e.type===`directory`?t!==`file`:t!==`folder`,xe=(0,U.jsxs)(`div`,{className:`flex flex-col flex-1 min-h-0`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5 px-3 py-2 border-b border-border`,children:[d&&(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0`,onClick:()=>ue(d),children:(0,U.jsx)(te,{className:`size-4`})}),(0,U.jsx)(P,{value:C,onChange:e=>w(e.target.value),onKeyDown:fe,placeholder:`Type path and press Enter`,className:`h-7 text-xs font-mono flex-1`})]}),(0,U.jsx)(`div`,{className:`flex items-center gap-0.5 px-3 py-1.5 border-b border-border overflow-x-auto text-xs`,children:p.map((e,t)=>(0,U.jsxs)(`span`,{className:`flex items-center shrink-0`,children:[t>0&&(0,U.jsx)(Se,{className:`size-3 text-text-subtle mx-0.5`}),(0,U.jsx)(`button`,{type:`button`,onClick:()=>ue(e.path),className:`hover:text-primary hover:underline text-text-secondary`,children:e.name})]},e.path))}),(0,U.jsxs)(`div`,{className:`flex flex-1 min-h-0 overflow-hidden`,children:[!le&&(0,U.jsxs)(`div`,{className:`w-36 border-r border-border py-2 px-1 shrink-0 overflow-y-auto`,children:[Ls.map(e=>(0,U.jsxs)(`button`,{type:`button`,onClick:()=>ue(e.path),className:R(`flex items-center gap-2 w-full px-2 py-1 text-xs rounded-md hover:bg-surface-hover text-left`,l.endsWith(e.name)&&`bg-primary/10 text-primary`),children:[(0,U.jsx)(e.icon,{className:`size-3.5`}),e.name]},e.path)),D.length>0&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`text-[10px] text-text-subtle px-2 mt-3 mb-1 font-medium`,children:`Recent`}),D.map(e=>(0,U.jsxs)(`button`,{type:`button`,onClick:()=>ue(e),className:`flex items-center gap-2 w-full px-2 py-1 text-xs rounded-md hover:bg-surface-hover text-left truncate`,children:[(0,U.jsx)(Ae,{className:`size-3 shrink-0`}),(0,U.jsx)(`span`,{className:`truncate`,children:e.split(`/`).pop()})]},e))]})]}),(0,U.jsx)(ie,{className:`flex-1 min-h-0`,children:_?(0,U.jsx)(`div`,{className:`flex items-center justify-center py-12`,children:(0,U.jsx)(V,{className:`size-5 animate-spin text-text-subtle`})}):y?(0,U.jsx)(`div`,{className:`text-center py-8 text-xs text-red-500`,children:y}):ye.length===0?(0,U.jsx)(`div`,{className:`text-center py-8 text-xs text-text-subtle`,children:x?`No matching entries`:`Empty directory`}):(0,U.jsxs)(`div`,{ref:ce,className:`py-1`,children:[O!=null&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-1.5 bg-primary/5 border-b border-border`,children:[(0,U.jsx)(Ut,{className:`size-4 text-primary shrink-0`}),(0,U.jsx)(P,{ref:se,value:O,onChange:e=>ne(e.target.value),onKeyDown:e=>{e.key===`Enter`&&ge(),e.key===`Escape`&&ne(null)},placeholder:`Folder name`,className:`h-6 text-xs flex-1`,disabled:ae,autoFocus:!0}),ae&&(0,U.jsx)(V,{className:`size-3.5 animate-spin text-primary shrink-0`})]}),A&&(0,U.jsx)(`div`,{className:`px-3 py-1 text-[11px] text-destructive bg-destructive/5 border-b border-border`,children:A})]}),ye.map(e=>{let t=be(e);return(0,U.jsxs)(`button`,{type:`button`,onClick:()=>pe(e),onDoubleClick:()=>me(e),className:R(`flex items-center gap-2 w-full px-3 py-1.5 text-left text-xs transition-colors`,h===e.path?`bg-primary/10 text-primary`:t?`hover:bg-surface-hover text-text-primary`:`opacity-40 cursor-default`),disabled:!t&&e.type===`file`,children:[Hs(e),(0,U.jsx)(`span`,{className:R(`flex-1 truncate`,e.type===`directory`&&`font-medium`),children:e.name}),(0,U.jsx)(`span`,{className:`text-text-subtle text-[10px] shrink-0 w-14 text-right`,children:Bs(e.size)}),(0,U.jsx)(`span`,{className:`text-text-subtle text-[10px] shrink-0 w-14 text-right`,children:Vs(e.modified)})]},e.path)})]})})]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-2 border-t border-border shrink-0`,children:[(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0`,onClick:()=>{ne(``),oe(null),setTimeout(()=>se.current?.focus(),50)},title:`New Folder`,children:(0,U.jsx)(Ut,{className:`size-3.5`})}),(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:`size-7 shrink-0 text-destructive/70 hover:text-destructive disabled:opacity-30`,onClick:_e,disabled:!ve,title:`Delete selected folder`,children:(0,U.jsx)(Ie,{className:`size-3.5`})}),(0,U.jsx)(N,{variant:`ghost`,size:`icon`,className:R(`size-7 shrink-0`,T&&`text-primary`),onClick:de,title:T?`Hide hidden files`:`Show hidden files`,children:T?(0,U.jsx)(Me,{className:`size-3.5`}):(0,U.jsx)(re,{className:`size-3.5`})}),n?.length?(0,U.jsx)(`span`,{className:`text-[10px] text-text-subtle bg-surface-hover px-1.5 py-0.5 rounded`,children:n.join(`, `)}):null,(0,U.jsx)(`div`,{className:`flex-1 max-w-48`,children:(0,U.jsxs)(`div`,{className:`relative`,children:[(0,U.jsx)(kn,{className:`absolute left-2 top-1/2 -translate-y-1/2 size-3 text-text-subtle`}),(0,U.jsx)(P,{value:x,onChange:e=>S(e.target.value),placeholder:`Filter...`,className:`h-6 text-[11px] pl-6`})]})}),(0,U.jsx)(`div`,{className:`flex-1`}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,onClick:o,className:`h-7 text-xs`,children:`Cancel`}),(0,U.jsx)(N,{size:`sm`,onClick:he,disabled:!h,className:`h-7 text-xs`,children:`Select`})]})]});return(0,U.jsx)(Ee,{open:e,onOpenChange:e=>{e||o()},children:(0,U.jsxs)(Oe,{className:R(`p-0 gap-0 overflow-hidden flex flex-col`,le?`max-w-[95vw] h-[85vh]`:`max-w-2xl h-[70vh]`),children:[(0,U.jsx)(De,{className:`px-3 py-2 border-b border-border`,children:(0,U.jsx)(ke,{className:`text-sm`,children:i??j})}),xe]})})}function Gs({mode:e,accept:t,root:n,title:r,onSelect:i,className:a}){let[o,s]=(0,H.useState)(!1);return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(N,{type:`button`,variant:`ghost`,size:`icon`,className:R(`size-8 shrink-0`,a),onClick:()=>s(!0),title:r??`Browse...`,children:(0,U.jsx)(Ht,{className:`size-4`})}),(0,U.jsx)(Ws,{open:o,mode:e,accept:t,root:n,title:r,onSelect:e=>{i(e),s(!1)},onCancel:()=>s(!1)})]})}var Ks=[`#ef4444`,`#f97316`,`#eab308`,`#22c55e`,`#06b6d4`,`#3b82f6`,`#8b5cf6`,`#ec4899`,`#6b7280`,`#000000`];function qs({value:e,onChange:t}){return(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsxs)(`div`,{className:`flex flex-wrap gap-1.5`,children:[(0,U.jsx)(`button`,{type:`button`,onClick:()=>t(null),className:R(`size-6 rounded-full border-2 transition-all`,e?`border-border hover:scale-105`:`border-primary scale-110`,`bg-transparent relative`),title:`No color`,children:(0,U.jsx)(`span`,{className:`absolute inset-0 flex items-center justify-center text-[8px] text-text-subtle`,children:`×`})}),Ks.map(n=>(0,U.jsx)(`button`,{type:`button`,onClick:()=>t(n),className:R(`size-6 rounded-full border-2 transition-all hover:scale-105`,e===n?`border-primary scale-110`:`border-transparent`),style:{backgroundColor:n},title:n},n))]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,U.jsx)(`div`,{className:`size-6 rounded-full border border-border shrink-0`,style:{backgroundColor:e??`transparent`}}),(0,U.jsx)(`input`,{type:`text`,value:e??``,onChange:e=>{let n=e.target.value.trim();if(n===``){t(null);return}/^#[0-9a-fA-F]{6}$/.test(n),t(n)},placeholder:`#3b82f6`,className:`flex-1 h-7 text-xs px-2 rounded-md border border-border bg-background focus:outline-none focus:border-primary font-mono`})]})]})}function Js({open:e,onClose:t,connection:n,onSave:r,onUpdate:i,onTest:a,onTestRaw:o}){let s=!!n,[c,l]=(0,H.useState)({name:``,type:`postgres`,path:``,connectionString:``,groupName:``,color:null,readonly:!0}),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(null),[m,h]=(0,H.useState)(!1),[g,_]=(0,H.useState)(null);(0,H.useEffect)(()=>{if(!e){p(null),_(null);return}l(n?{name:n.name,type:n.type,path:``,connectionString:``,groupName:n.group_name??``,color:n.color,readonly:n.readonly===1}:{name:``,type:`postgres`,path:``,connectionString:``,groupName:``,color:null,readonly:!0})},[e,n]);let v=(e,t)=>{l(n=>({...n,[e]:t})),p(null)};return(0,U.jsx)(Ee,{open:e,onOpenChange:e=>{e||t()},children:(0,U.jsxs)(Oe,{className:`max-w-md`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:s?`Edit Connection`:`Add Connection`})}),(0,U.jsxs)(`div`,{className:`space-y-3 py-1`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Name *`}),(0,U.jsx)(`input`,{value:c.name,onChange:e=>v(`name`,e.target.value),placeholder:`my-database`,className:`w-full h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary`})]}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Type`}),(0,U.jsxs)(`select`,{value:c.type,onChange:e=>v(`type`,e.target.value),className:`w-full h-8 text-sm px-2 rounded-md border border-border bg-background focus:outline-none focus:border-primary`,children:[(0,U.jsx)(`option`,{value:`postgres`,children:`PostgreSQL`}),(0,U.jsx)(`option`,{value:`sqlite`,children:`SQLite`})]})]}),c.type===`postgres`?(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Connection String *`}),(0,U.jsx)(`input`,{type:`password`,value:c.connectionString,onChange:e=>v(`connectionString`,e.target.value),placeholder:`postgresql://user:pass@host:5432/db`,className:`w-full h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary font-mono`})]}):(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`File Path *`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,U.jsx)(`input`,{value:c.path,onChange:e=>v(`path`,e.target.value),placeholder:`/path/to/database.db`,className:`flex-1 h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary font-mono`}),(0,U.jsx)(Gs,{mode:`file`,accept:[`.db`,`.sqlite`,`.sqlite3`],title:`Browse for SQLite database`,onSelect:e=>v(`path`,e)})]})]}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Group`}),(0,U.jsx)(`input`,{value:c.groupName,onChange:e=>v(`groupName`,e.target.value),placeholder:`Production`,className:`w-full h-8 text-sm px-2.5 rounded-md border border-border bg-background focus:outline-none focus:border-primary`})]}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs font-medium text-text-secondary mb-1 block`,children:`Tab Color`}),(0,U.jsx)(qs,{value:c.color,onChange:e=>v(`color`,e)})]}),s&&(0,U.jsxs)(`div`,{className:`flex items-center justify-between py-1`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`p`,{className:`text-xs font-medium`,children:`Readonly`}),(0,U.jsx)(`p`,{className:`text-[10px] text-text-subtle`,children:`Block non-SELECT queries (AI protection)`})]}),(0,U.jsx)(`button`,{type:`button`,onClick:()=>v(`readonly`,!c.readonly),className:`relative w-9 h-5 rounded-full transition-colors ${c.readonly?`bg-primary`:`bg-border`}`,children:(0,U.jsx)(`span`,{className:`absolute top-0.5 left-0.5 size-4 rounded-full bg-white transition-transform ${c.readonly?`translate-x-4`:``}`})})]}),f&&(0,U.jsx)(`p`,{className:`text-xs ${f.ok?`text-green-500`:`text-red-500`}`,children:f.ok?`✓ Connection successful`:`✗ ${f.error}`}),g&&(0,U.jsx)(`p`,{className:`text-xs text-red-500`,children:g})]}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(N,{variant:`outline`,size:`sm`,onClick:async()=>{d(!0),p(null);try{let e;if(s)e=await a(n.id);else if(o){let t=c.type===`postgres`?{type:`postgres`,connectionString:c.connectionString}:{type:`sqlite`,path:c.path};e=await o(c.type,t)}else e={ok:!1,error:`Save connection first`};p(e)}finally{d(!1)}},disabled:u,className:`mr-auto`,children:u?`Testing…`:`Test Connection`}),(0,U.jsx)(N,{variant:`outline`,size:`sm`,onClick:t,children:`Cancel`}),(0,U.jsx)(N,{size:`sm`,onClick:async()=>{if(_(null),!c.name.trim()){_(`Name is required`);return}h(!0);try{if(s&&i){let e=(c.type===`postgres`?c.connectionString.trim():c.path.trim())?c.type===`postgres`?{type:`postgres`,connectionString:c.connectionString}:{type:`sqlite`,path:c.path}:void 0;await i(n.id,{name:c.name.trim(),...e!==void 0&&{connectionConfig:e},groupName:c.groupName.trim()||null,color:c.color,readonly:c.readonly?1:0})}else if(r){let e=c.type===`postgres`?{type:`postgres`,connectionString:c.connectionString}:{type:`sqlite`,path:c.path};await r({type:c.type,name:c.name.trim(),connectionConfig:e,groupName:c.groupName.trim()||void 0,color:c.color??void 0})}t()}catch(e){_(e.message)}finally{h(!1)}},disabled:m,children:m?`Saving…`:s?`Save`:`Add`})]})]})})}function Ys({onExport:e,onImport:t}){let[n,r]=(0,H.useState)(!1),i=(0,H.useRef)(null),a=()=>r(!1),o=async()=>{a();try{let t=await e(),n=new Blob([JSON.stringify(t,null,2)],{type:`application/json`}),r=URL.createObjectURL(n),i=document.createElement(`a`);i.href=r,i.download=`ppm-connections-${new Date().toISOString().slice(0,10)}.json`,i.click(),URL.revokeObjectURL(r)}catch(e){alert(`Export failed: ${e.message}`)}},s=async()=>{a();try{let t=await e();await navigator.clipboard.writeText(JSON.stringify(t,null,2)),alert(`Copied ${t.connections.length} connection(s) to clipboard`)}catch(e){alert(`Export failed: ${e.message}`)}},c=async e=>{try{let n=JSON.parse(e),r=n.connections??n;if(!Array.isArray(r)){alert(`Invalid format: expected connections array`);return}let i=await t({connections:r}),a=`Imported ${i.imported} connection(s)`;i.skipped>0&&(a+=`, ${i.skipped} skipped`),i.errors?.length>0&&(a+=`\n\nErrors:\n${i.errors.join(`
18
- `)}`),alert(a)}catch(e){alert(`Import failed: ${e.message}`)}};return(0,U.jsxs)(`div`,{className:`relative`,children:[(0,U.jsx)(`button`,{onClick:()=>r(e=>!e),className:`flex items-center justify-center size-5 rounded hover:bg-surface-elevated transition-colors text-text-subtle hover:text-foreground`,title:`Import / Export`,children:(0,U.jsx)(Et,{className:`size-3.5`})}),n&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-40`,onClick:a}),(0,U.jsxs)(`div`,{className:`absolute right-0 top-full mt-1 z-50 w-44 bg-background border border-border rounded-md shadow-lg py-1 text-xs`,children:[(0,U.jsxs)(`button`,{onClick:o,className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,U.jsx)(Ne,{className:`size-3`}),` Export to file`]}),(0,U.jsxs)(`button`,{onClick:s,className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,U.jsx)(Ct,{className:`size-3`}),` Export to clipboard`]}),(0,U.jsx)(`div`,{className:`border-t border-border my-1`}),(0,U.jsxs)(`button`,{onClick:()=>{a(),i.current?.click()},className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,U.jsx)(Wn,{className:`size-3`}),` Import from file`]}),(0,U.jsxs)(`button`,{onClick:async()=>{a();try{let e=await navigator.clipboard.readText();if(!e.trim()){alert(`Clipboard is empty`);return}await c(e)}catch(e){alert(`Clipboard read failed: ${e.message}`)}},className:`w-full flex items-center gap-2 px-3 py-1.5 hover:bg-surface-elevated transition-colors text-left`,children:[(0,U.jsx)(St,{className:`size-3`}),` Import from clipboard`]})]})]}),(0,U.jsx)(`input`,{ref:i,type:`file`,accept:`.json`,className:`hidden`,onChange:e=>{let t=e.target.files?.[0];if(!t)return;let n=new FileReader;n.onload=()=>c(n.result),n.readAsText(t),e.target.value=``}})]})}function Xs(){let[e,t]=(0,H.useState)([]),[n,r]=(0,H.useState)(!0),[i,a]=(0,H.useState)(new Map),[o,s]=(0,H.useState)(new Map),c=(0,H.useCallback)(async()=>{try{t(await I.get(`/api/db/connections`))}catch{}finally{r(!1)}},[]);(0,H.useEffect)(()=>{c()},[c]);let l=(0,H.useCallback)(async e=>{let n=await I.post(`/api/db/connections`,e);return t(e=>[...e,n]),n},[]),u=(0,H.useCallback)(async(e,n)=>{let r=await I.put(`/api/db/connections/${e}`,n);t(t=>t.map(t=>t.id===e?r:t))},[]),d=(0,H.useCallback)(async e=>{await I.del(`/api/db/connections/${e}`),t(t=>t.filter(t=>t.id!==e)),a(t=>{let n=new Map(t);return n.delete(e),n})},[]),f=(0,H.useCallback)(async e=>I.post(`/api/db/connections/${e}/test`),[]),p=(0,H.useCallback)(async(e,t)=>I.post(`/api/db/test`,{type:e,connectionConfig:t}),[]),m=(0,H.useCallback)(async e=>{s(t=>{let n=new Map(t);return n.delete(e),n});try{let t=(await I.get(`/api/db/connections/${e}/tables`)).map(t=>({connectionId:e,tableName:t.name,schemaName:t.schema,rowCount:t.rowCount,cachedAt:new Date().toISOString()}));a(n=>new Map(n).set(e,t))}catch(t){let n=t.message||`Connection failed`;throw s(t=>new Map(t).set(e,n)),t}},[]),[h,g]=(0,H.useState)(new Map);return{connections:e,loading:n,cachedTables:i,refreshErrors:o,columnCache:h,createConnection:l,updateConnection:u,deleteConnection:d,testConnection:f,testRawConnection:p,refreshTables:m,fetchColumns:(0,H.useCallback)(async(e,t,n)=>{let r=`${e}:${n??`main`}.${t}`,i=h.get(r);if(i)return i;let a=await I.get(`/api/db/connections/${e}/schema?table=${encodeURIComponent(t)}${n?`&schema=${encodeURIComponent(n)}`:``}`);return g(e=>new Map(e).set(r,a)),a},[h]),exportConnections:(0,H.useCallback)(async()=>I.get(`/api/db/connections/export`),[]),importConnections:(0,H.useCallback)(async e=>{let t=await I.post(`/api/db/connections/import`,e);await c();let n=t.connections??[];return n.length>0&&Promise.all(n.map(e=>m(e.id).catch(()=>{}))),t},[c,m])}}function Zs(){let{connections:e,loading:t,cachedTables:n,refreshErrors:r,columnCache:i,createConnection:a,updateConnection:o,deleteConnection:s,testConnection:c,testRawConnection:l,refreshTables:u,fetchColumns:d,exportConnections:f,importConnections:p}=Xs(),m=B(e=>e.openTab),[h,g]=(0,H.useState)(!1),[_,v]=(0,H.useState)(null);return(0,U.jsxs)(`div`,{className:`flex flex-col h-full`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b border-border shrink-0`,children:[(0,U.jsx)(`span`,{className:`text-[10px] font-semibold text-text-subtle uppercase tracking-wider`,children:`Database`}),(0,U.jsxs)(`div`,{className:`flex items-center gap-0.5`,children:[(0,U.jsx)(Ys,{onExport:f,onImport:p}),(0,U.jsx)(`button`,{onClick:()=>g(!0),className:`flex items-center justify-center size-5 rounded hover:bg-surface-elevated transition-colors text-text-subtle hover:text-foreground`,title:`Add connection`,children:(0,U.jsx)(xe,{className:`size-3.5`})})]})]}),(0,U.jsx)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:t?(0,U.jsx)(`p`,{className:`px-4 py-6 text-xs text-text-subtle text-center`,children:`Loading…`}):(0,U.jsx)(Ns,{connections:e,cachedTables:n,refreshErrors:r,onOpenTable:(e,t,n)=>{m({type:`database`,title:`${e.name} · ${t}`,projectId:null,closable:!0,metadata:{connectionId:e.id,connectionName:e.name,dbType:e.type,tableName:t,schemaName:n,connectionColor:e.color}})},onRefreshTables:u,onEdit:v,onDelete:async e=>{confirm(`Delete this connection?`)&&await s(e)},onFetchColumns:d,columnCache:i})}),(0,U.jsx)(Js,{open:h,onClose:()=>g(!1),onSave:async e=>{let t=await a(e);t&&u(t.id).catch(()=>{})},onTest:()=>Promise.resolve({ok:!1,error:`Save connection first`}),onTestRaw:l}),_&&(0,U.jsx)(Js,{open:!!_,onClose:()=>v(null),connection:_,onUpdate:async(e,t)=>{await o(e,t)},onTest:e=>c(e)})]})}function Qs(e,t,n,r){if(!e)return null;try{let i=r?e:e.replace(/[.*+?^${}()|[\]\\]/g,`\\$&`);return n&&(i=`\\b${i}\\b`),RegExp(`(${i})`,t?`g`:`gi`)}catch{return null}}function $s({text:e,re:t}){if(!t)return(0,U.jsx)(`span`,{children:e});try{t.lastIndex=0;let n=e.split(t);return t.lastIndex=0,(0,U.jsx)(`span`,{children:n.map((e,n)=>(t.lastIndex=0,t.test(e)?(0,U.jsx)(`mark`,{className:`bg-yellow-300/40 text-foreground rounded-sm`,children:e},n):e))})}catch{return(0,U.jsx)(`span`,{children:e})}}function ec({active:e,onClick:t,title:n,children:r}){return(0,U.jsx)(`button`,{onClick:t,title:n,className:R(`flex items-center justify-center w-6 h-6 rounded border shrink-0`,e?`border-primary text-primary bg-primary/10`:`border-border text-text-subtle hover:text-foreground hover:border-border/80`),children:r})}function tc(){let{activeProject:e}=Ye(q(e=>({activeProject:e.activeProject}))),t=B(e=>e.openTab),[n,r]=(0,H.useState)(``),[i,a]=(0,H.useState)(!1),[o,s]=(0,H.useState)(!1),[c,l]=(0,H.useState)(!1),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(``),[m,h]=(0,H.useState)(``),[g,_]=(0,H.useState)(!1),[v,y]=(0,H.useState)(null),[b,x]=(0,H.useState)([]),[S,C]=(0,H.useState)(0),[w,T]=(0,H.useState)(!1),[E,D]=(0,H.useState)(new Set),ee=(0,H.useRef)(null),O=(0,H.useRef)(null),te=(0,H.useCallback)(async(t,n,r,i,a)=>{if(d(!1),!e||!i&&t.length<2||i&&t.length<1){x([]),C(0);return}if(i)try{new RegExp(t)}catch{d(!0),x([]);return}T(!0);try{let o=new URLSearchParams({q:t,caseSensitive:String(n),wholeWord:String(r),regex:String(i)});a&&o.set(`include`,a);let s=await I.get(`${F(e.name)}/files/search?${o}`);x(s.results),C(s.total)}catch{x([])}finally{T(!1)}},[e]);(0,H.useEffect)(()=>(O.current&&clearTimeout(O.current),O.current=setTimeout(()=>te(n,i,o,c,f),300),()=>{O.current&&clearTimeout(O.current)}),[n,i,o,c,f,te]),(0,H.useEffect)(()=>{ee.current?.focus()},[]);let ne=Qs(n,i,o,c);function re(n,r){e&&t({type:`editor`,title:n.split(`/`).pop()??n,metadata:{filePath:n,projectName:e.name,lineNumber:r},projectId:e.name,closable:!0})}function ie(e){D(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})}async function ae(){if(!e||!n||b.length===0||g)return;_(!0),y(null);let t=0;try{for(let r of b){let a=await I.get(`${F(e.name)}/files/read?path=${encodeURIComponent(r.file)}`),s=Qs(n,i,o,c);if(!s)continue;s.lastIndex=0;let l=a.content.match(s)??[];if(!l.length)continue;t+=l.length,s.lastIndex=0;let u=a.content.replace(s,m);await I.put(`${F(e.name)}/files/write`,{path:r.file,content:u})}y(t),te(n,i,o,c,f)}catch{}finally{_(!1)}}return(0,U.jsxs)(`div`,{className:`flex flex-col h-full`,children:[(0,U.jsxs)(`div`,{className:`p-2 border-b border-border space-y-1.5`,children:[(0,U.jsx)(`div`,{className:`relative flex items-center gap-1`,children:(0,U.jsxs)(`div`,{className:`relative flex-1`,children:[(0,U.jsx)(kn,{className:`absolute left-2 top-1/2 -translate-y-1/2 size-3.5 text-text-subtle pointer-events-none`}),(0,U.jsx)(`input`,{ref:ee,value:n,onChange:e=>{r(e.target.value),y(null)},placeholder:e?`Search files…`:`Select a project first`,disabled:!e,className:R(`w-full pl-7 pr-6 py-1 text-xs bg-input border rounded focus:outline-none focus:ring-1 focus:ring-primary/50 disabled:opacity-50`,u?`border-destructive`:`border-border`)}),n&&(0,U.jsx)(`button`,{onClick:()=>{r(``),x([]),C(0),d(!1),y(null)},className:`absolute right-1.5 top-1/2 -translate-y-1/2 text-text-subtle hover:text-foreground`,children:(0,U.jsx)(Pe,{className:`size-3`})})]})}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,U.jsx)(ec,{active:i,onClick:()=>a(e=>!e),title:`Match Case (Alt+C)`,children:(0,U.jsx)(gt,{className:`size-3.5`})}),(0,U.jsx)(ec,{active:o,onClick:()=>{s(e=>!e),c&&l(!1)},title:`Match Whole Word (Alt+W)`,children:(0,U.jsx)(Gn,{className:`size-3.5`})}),(0,U.jsx)(ec,{active:c,onClick:()=>{l(e=>!e),o&&s(!1)},title:`Use Regular Expression (Alt+R)`,children:(0,U.jsx)(Dn,{className:`size-3.5`})}),u&&(0,U.jsx)(`span`,{className:`text-[10px] text-destructive ml-1`,children:`Invalid regex`})]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,U.jsxs)(`div`,{className:`relative flex-1`,children:[(0,U.jsx)(`input`,{value:m,onChange:e=>h(e.target.value),placeholder:`Replace…`,disabled:!e,className:`w-full pl-2 pr-6 py-1 text-xs bg-input border border-border rounded focus:outline-none focus:ring-1 focus:ring-primary/50 disabled:opacity-50`}),m&&(0,U.jsx)(`button`,{onClick:()=>h(``),className:`absolute right-1.5 top-1/2 -translate-y-1/2 text-text-subtle hover:text-foreground`,children:(0,U.jsx)(Pe,{className:`size-3`})})]}),(0,U.jsx)(`button`,{onClick:ae,disabled:!n||b.length===0||g,title:`Replace All`,className:`flex items-center justify-center w-6 h-6 rounded border border-border text-text-subtle hover:text-foreground hover:border-border/80 disabled:opacity-40 shrink-0`,children:g?(0,U.jsx)(V,{className:`size-3.5 animate-spin`}):(0,U.jsx)(On,{className:`size-3.5`})})]}),(0,U.jsxs)(`div`,{className:`relative`,children:[(0,U.jsx)(`input`,{value:f,onChange:e=>p(e.target.value),placeholder:`Files to include (e.g. *.ts, src/**)`,disabled:!e,className:`w-full pl-2 pr-6 py-1 text-xs bg-input border border-border rounded focus:outline-none focus:ring-1 focus:ring-primary/50 disabled:opacity-50`}),f&&(0,U.jsx)(`button`,{onClick:()=>p(``),className:`absolute right-1.5 top-1/2 -translate-y-1/2 text-text-subtle hover:text-foreground`,children:(0,U.jsx)(Pe,{className:`size-3`})})]}),(0,U.jsxs)(`div`,{className:`text-[10px] text-text-subtle h-3`,children:[(w||g)&&(0,U.jsxs)(`span`,{className:`flex items-center gap-1`,children:[(0,U.jsx)(V,{className:`size-2.5 animate-spin`}),g?`Replacing…`:`Searching…`]}),!w&&!g&&v!==null&&(0,U.jsxs)(`span`,{className:`text-green-500`,children:[v,` replacement`,v===1?``:`s`,` made`]}),!w&&!g&&v===null&&!u&&n.length>=2&&b.length===0&&(0,U.jsx)(`span`,{children:`No results`}),!w&&!g&&v===null&&S>0&&(0,U.jsxs)(`span`,{children:[S,` result`,S===1?``:`s`,` in `,b.length,` file`,b.length===1?``:`s`]})]})]}),(0,U.jsx)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:b.map(e=>{let t=E.has(e.file),n=e.file.split(`/`).pop()??e.file,r=e.file.includes(`/`)?e.file.slice(0,e.file.lastIndexOf(`/`)):``;return(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`button`,{onClick:()=>ie(e.file),className:`w-full flex items-center gap-1 px-2 py-1 hover:bg-muted/50 text-left`,children:[t?(0,U.jsx)(Se,{className:`size-3 shrink-0 text-text-subtle`}):(0,U.jsx)(be,{className:`size-3 shrink-0 text-text-subtle`}),(0,U.jsx)(Rt,{className:`size-3 shrink-0 text-text-subtle`}),(0,U.jsx)(`span`,{className:`text-xs font-medium text-foreground truncate`,children:n}),(0,U.jsx)(`span`,{className:`text-[10px] text-text-subtle truncate flex-1 min-w-0 ml-1`,children:r}),(0,U.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0 ml-1 bg-muted px-1 rounded`,children:e.matches.length})]}),!t&&e.matches.map(t=>(0,U.jsxs)(`button`,{onClick:()=>re(e.file,t.lineNum),className:`w-full flex items-start gap-2 pl-7 pr-2 py-0.5 hover:bg-primary/10 text-left`,children:[(0,U.jsx)(`span`,{className:`text-[10px] text-text-subtle shrink-0 w-7 text-right pt-px`,children:t.lineNum}),(0,U.jsx)(`span`,{className:`text-xs text-text-secondary truncate font-mono leading-4`,children:(0,U.jsx)($s,{text:t.content.trimStart(),re:ne})})]},`${e.file}-${t.lineNum}`))]},e.file)})})]})}function nc(e,t){window.dispatchEvent(new CustomEvent(`ext:tree:expand`,{detail:{viewId:e,itemId:t}}))}function rc(e,t){window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:e,args:t}}))}var ic={refresh:Fe,edit:oe,trash:Ie,plus:xe,search:kn};function ac({viewId:e,className:t}){let n=rt(t=>t.treeViews[e])??[],r=rt(e=>e.contributions),i=(0,H.useMemo)(()=>{if(!r)return{name:e,headerActions:[]};let t=e,n=r.views;if(n)for(let r of Object.values(n)){let n=r.find(t=>t.id===e);if(n){t=n.name;break}}let i=[],a=r.menus?.[`view/title`];if(a)for(let t of a){if(t.when){let n=t.when.match(/view\s*==\s*(\S+)/);if(n&&n[1]!==e)continue}let n=r.commands?.find(e=>e.command===t.command);n&&i.push({command:n.command,title:n.title,icon:n.icon})}return{name:t,headerActions:i}},[r,e]);return(0,U.jsxs)(`div`,{className:R(`flex flex-col h-full`,t),children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-3 py-2 border-b border-border shrink-0`,children:[(0,U.jsx)(`span`,{className:`text-[10px] font-semibold text-text-subtle uppercase tracking-wider`,children:i.name}),(0,U.jsx)(`div`,{className:`flex items-center gap-0.5`,children:i.headerActions.map(e=>{let t=ic[e.icon??oc(e.command)]??Fe;return(0,U.jsx)(`button`,{onClick:()=>rc(e.command),className:`flex items-center justify-center size-5 rounded hover:bg-surface-elevated transition-colors text-text-subtle hover:text-foreground`,title:e.title,children:(0,U.jsx)(t,{className:`size-3.5`})},e.command)})})]}),(0,U.jsx)(`div`,{className:`flex-1 overflow-y-auto min-h-0 py-1`,role:`tree`,"aria-label":e,children:n.length===0?(0,U.jsx)(`p`,{className:`px-4 py-6 text-xs text-text-subtle text-center`,children:`No items`}):n.map(t=>(0,U.jsx)(sc,{item:t,depth:0,viewId:e},t.id))})]})}function oc(e){return e.includes(`refresh`)?`refresh`:e.includes(`add`)||e.includes(`create`)||e.includes(`new`)?`plus`:e.includes(`delete`)||e.includes(`remove`)?`trash`:e.includes(`edit`)||e.includes(`update`)?`edit`:e.includes(`search`)||e.includes(`find`)?`search`:`refresh`}function sc({item:e,depth:t,viewId:n}){let[r,i]=(0,H.useState)(!1),a=e.collapsibleState!==`none`,o=(0,H.useRef)(!1);e.children&&e.children.length>0&&!o.current&&(o.current=!0,r||i(!0));let s=(0,H.useCallback)(()=>{if(!a)return;let t=!r;i(t),t&&(!e.children||e.children.length===0)&&nc(n,e.id)},[a,r,e.id,e.children,n]),c=(0,H.useCallback)(()=>{s(),e.command&&rc(e.command,e.commandArgs)},[s,e.command,e.commandArgs]),l=8+t*16;return(0,U.jsxs)(`div`,{role:`treeitem`,"aria-expanded":a?r:void 0,children:[(0,U.jsxs)(`div`,{className:R(`group/node flex items-center gap-1 py-1 hover:bg-surface-elevated transition-colors`),style:{paddingLeft:l,paddingRight:8},children:[(0,U.jsx)(`button`,{onClick:s,className:`shrink-0 text-text-subtle hover:text-foreground transition-colors`,children:a?r?(0,U.jsx)(be,{className:`size-3`}):(0,U.jsx)(Se,{className:`size-3`}):(0,U.jsx)(`span`,{className:`size-3`})}),e.color&&(0,U.jsx)(`span`,{className:`shrink-0 size-2 rounded-full border border-border`,style:{backgroundColor:e.color}}),(0,U.jsx)(`button`,{className:`flex-1 text-left text-xs truncate hover:text-primary transition-colors`,onClick:c,children:e.label}),e.description&&(0,U.jsx)(`span`,{className:`shrink-0 ml-1 text-text-subtle text-[10px]`,children:e.description}),e.badge&&(0,U.jsx)(`span`,{className:`shrink-0 text-[9px] text-text-subtle uppercase px-1 rounded bg-surface-elevated`,children:e.badge}),e.actions&&e.actions.length>0&&(0,U.jsx)(`div`,{className:`flex can-hover:hidden can-hover:group-hover/node:flex items-center gap-0.5 shrink-0`,children:e.actions.map(e=>(0,U.jsx)(cc,{action:e},e.command))})]}),a&&r&&e.children&&(0,U.jsx)(`div`,{role:`group`,children:e.children.map(e=>(0,U.jsx)(sc,{item:e,depth:t+1,viewId:n},e.id))})]})}function cc({action:e}){let[t,n]=(0,H.useState)(!1),r=ic[e.icon]??Fe,i=e.icon===`trash`;return(0,U.jsx)(`button`,{onClick:(0,H.useCallback)(t=>{t.stopPropagation(),e.icon===`refresh`&&(n(!0),setTimeout(()=>n(!1),1e3)),rc(e.command,e.commandArgs)},[e]),className:R(`p-0.5 text-text-subtle transition-colors`,i?`hover:text-red-500`:`hover:text-foreground`),title:e.tooltip,children:(0,U.jsx)(r,{className:R(`size-3`,t&&`animate-spin`)})})}var lc=Le((e,t)=>({projectsWithIds:[],configs:[],selectedProjectId:null,watchers:[],results:[],unreadCount:0,setSelectedProjectId:t=>e({selectedProjectId:t}),loadProjectsWithIds:async()=>{let t=await I.get(`/api/jira/config/projects`);e({projectsWithIds:Array.isArray(t)?t:[]})},loadConfigs:async()=>{e({configs:await I.get(`/api/jira/config`)})},saveConfig:async(e,n)=>{await I.put(`/api/jira/config/${e}`,n),await t().loadConfigs()},deleteConfig:async t=>{await I.del(`/api/jira/config/${t}`),e(e=>({configs:e.configs.filter(e=>e.projectId!==t),watchers:[]}))},testConnection:async e=>(await I.post(`/api/jira/config/${e}/test`)).connected,loadWatchers:async t=>{e({watchers:await I.get(`/api/jira/watchers?configId=${t}`)})},createWatcher:async e=>{await I.post(`/api/jira/watchers`,e),e.configId&&await t().loadWatchers(e.configId)},updateWatcher:async(e,n)=>{await I.put(`/api/jira/watchers/${e}`,n);let r=t().watchers.find(t=>t.id===e);r&&await t().loadWatchers(r.jiraConfigId)},deleteWatcher:async e=>{let n=t().watchers.find(t=>t.id===e);await I.del(`/api/jira/watchers/${e}`),n&&await t().loadWatchers(n.jiraConfigId)},toggleWatcher:async(t,n)=>{e(e=>({watchers:e.watchers.map(e=>e.id===t?{...e,enabled:n}:e)}));try{await I.put(`/api/jira/watchers/${t}`,{enabled:n})}catch{e(e=>({watchers:e.watchers.map(e=>e.id===t?{...e,enabled:!n}:e)}))}},pullWatcher:async e=>{let n=await I.post(`/api/jira/watchers/${e}/pull`);return await t().loadResults(),n},testJql:async(e,t)=>await I.post(`/api/jira/watchers/test-jql`,{configId:e,jql:t}),loadResults:async(t,n,r=50,i=0)=>{let a=new URLSearchParams;t!==void 0&&a.set(`watcherId`,String(t)),n&&a.set(`status`,n),a.set(`limit`,String(r)),a.set(`offset`,String(i));let o=await I.get(`/api/jira/results?${a}`);e(i>0?e=>({results:[...e.results,...o]}):{results:o})},softDeleteResult:async t=>{e(e=>({results:e.results.filter(e=>e.id!==t)}));try{await I.del(`/api/jira/results/${t}`)}catch{}},startDebug:async(n,r)=>{let i=t().results.find(e=>e.id===n)?.status;e(e=>({results:e.results.map(e=>e.id===n?{...e,status:`queued`}:e)}));try{await I.post(`/api/jira/results/${n}/debug`,r?{prompt:r}:{})}catch{e(e=>({results:e.results.map(e=>e.id===n?{...e,status:i??`pending`}:e)}))}},resumeDebug:async n=>{let r=t().results.find(e=>e.id===n)?.status;e(e=>({results:e.results.map(e=>e.id===n?{...e,status:`queued`}:e)}));try{await I.post(`/api/jira/results/${n}/resume`)}catch{e(e=>({results:e.results.map(e=>e.id===n?{...e,status:r??`failed`}:e)}))}},cancelDebug:async e=>{try{await I.post(`/api/jira/results/${e}/cancel`),await t().loadResults()}catch{}},markRead:async t=>{e(e=>({results:e.results.map(e=>e.id===t?{...e,readAt:new Date().toISOString()}:e),unreadCount:Math.max(0,e.unreadCount-1)}));try{await I.patch(`/api/jira/results/${t}/read`)}catch{}},loadUnreadCount:async()=>{try{e({unreadCount:(await I.get(`/api/jira/results/unread-count`)).count})}catch{}}})),uc={pending:`bg-yellow-500`,queued:`bg-orange-500`,running:`bg-blue-500 animate-pulse`,done:`bg-green-500`,failed:`bg-red-500`};function dc(e){let t=Date.now()-new Date(e).getTime(),n=Math.floor(t/6e4);if(n<1)return`now`;if(n<60)return`${n}m`;let r=Math.floor(n/60);return r<24?`${r}h`:`${Math.floor(r/24)}d`}function fc({result:e,onDebug:t,onResume:n,onCancel:r,onOpenSession:i,onDelete:a,onClick:o}){let s=e,c=s.status===`done`&&!s.readAt,l=!!s.sessionId,u=s.status===`failed`&&l,d=s.status===`pending`||s.status===`failed`&&!l,f=s.status===`queued`||s.status===`running`,p=s.status;return(0,U.jsxs)(`div`,{className:R(`group rounded bg-card shadow-sm hover:shadow-md hover:bg-accent/50 hover:-translate-y-px cursor-pointer transition-all duration-150`,`px-2.5 py-2 space-y-1`,c&&`ring-1 ring-primary/30`),onClick:()=>o(s),children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,U.jsx)(`span`,{className:`text-xs font-mono font-semibold text-foreground shrink-0`,children:s.issueKey}),c&&(0,U.jsx)(`span`,{className:`size-1.5 rounded-full bg-primary shrink-0`}),(0,U.jsx)(`span`,{className:`text-xs text-muted-foreground truncate flex-1 min-w-0`,children:s.issueSummary||`No summary`}),(0,U.jsx)(`span`,{className:`text-[10px] text-muted-foreground/60 tabular-nums shrink-0`,children:dc(s.createdAt)})]}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between min-w-0`,children:[(0,U.jsxs)(`span`,{className:`inline-flex items-center gap-1.5 text-[11px] text-muted-foreground`,children:[(0,U.jsx)(`span`,{className:R(`size-1.5 rounded-full shrink-0`,uc[p])}),p]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-0.5 shrink-0`,onClick:e=>e.stopPropagation(),children:[u&&(0,U.jsxs)(`button`,{type:`button`,className:`flex items-center gap-1 h-6 px-1.5 rounded text-[10px] font-medium text-primary hover:bg-primary/10 active:scale-95 transition-colors`,onClick:()=>n(s),title:`Resume debug session`,children:[(0,U.jsx)(A,{className:`size-3`}),(0,U.jsx)(`span`,{children:`Resume`})]}),d&&(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-6 rounded text-muted-foreground hover:text-primary active:scale-95 transition-colors`,onClick:()=>t(s),title:`Debug`,children:(0,U.jsx)(Sn,{className:`size-3`})}),f&&(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-6 rounded text-muted-foreground hover:text-destructive active:scale-95 transition-colors`,onClick:()=>r(s),title:`Stop debug`,children:(0,U.jsx)(Ln,{className:`size-3`})}),s.status===`running`&&(0,U.jsx)(V,{className:`size-3 animate-spin text-primary`}),l&&(0,U.jsxs)(`button`,{type:`button`,className:`flex items-center gap-1 h-6 px-1.5 rounded text-[10px] font-medium text-primary hover:bg-primary/10 active:scale-95 transition-colors`,onClick:()=>i(s),title:`Open session`,children:[(0,U.jsx)(Ot,{className:`size-3`}),(0,U.jsx)(`span`,{children:`Open`})]}),(0,U.jsxs)(ko,{children:[(0,U.jsx)(Ao,{asChild:!0,children:(0,U.jsx)(`button`,{type:`button`,className:`flex items-center justify-center size-6 rounded text-muted-foreground hover:text-foreground active:scale-95 transition-colors`,children:(0,U.jsx)(Dt,{className:`size-3`})})}),(0,U.jsx)(jo,{align:`end`,children:(0,U.jsxs)(Mo,{className:`text-destructive`,onClick:()=>a(s.id),children:[(0,U.jsx)(Ie,{className:`size-3.5 mr-2`}),` Delete`]})})]})]})]})]})}function pc(e){let t=[];return e.project.length&&t.push(`project IN (${e.project.join(`, `)})`),e.issueType.length&&t.push(`issuetype IN (${e.issueType.map(e=>`"${e}"`).join(`, `)})`),e.priority.length&&t.push(`priority IN (${e.priority.map(e=>`"${e}"`).join(`, `)})`),e.status.length&&t.push(`status IN (${e.status.map(e=>`"${e}"`).join(`, `)})`),e.assignee.length&&t.push(`assignee IN (${e.assignee.map(e=>`"${e}"`).join(`, `)})`),(t.join(` AND `)||`ORDER BY updated DESC`)+(t.length?` ORDER BY updated DESC`:``)}var mc={project:[],issueType:[],priority:[],status:[],assignee:[]};function hc({value:e,onChange:t,configId:n}){let[r,i]=(0,H.useState)(e?`raw`:`builder`),[a,o]=(0,H.useState)(mc),[s,c]=(0,H.useState)(e),[l,u]=(0,H.useState)([]),[d,f]=(0,H.useState)([]),[p,m]=(0,H.useState)([]),[h,g]=(0,H.useState)([]),[_,v]=(0,H.useState)([]),[y,b]=(0,H.useState)(!1);(0,H.useEffect)(()=>{n&&(b(!0),Promise.all([I.get(`/api/jira/metadata/${n}/projects`).catch(()=>[]),I.get(`/api/jira/metadata/${n}/issuetype`).catch(()=>[]),I.get(`/api/jira/metadata/${n}/priority`).catch(()=>[]),I.get(`/api/jira/metadata/${n}/status`).catch(()=>[]),I.get(`/api/jira/metadata/${n}/assignees`).catch(()=>[])]).then(([e,t,n,r,i])=>{u(e),f(t),m(n),g(r),v(i.map(e=>({id:e.accountId,name:e.displayName})))}).finally(()=>b(!1)))},[n]),(0,H.useEffect)(()=>{r===`builder`&&t(pc(a))},[a,r]);let x=(0,H.useCallback)(e=>{c(e),t(e)},[t]),S=(e,t)=>{!t||a[e].includes(t)||o(n=>({...n,[e]:[...n[e],t]}))},C=(e,t)=>{o(n=>({...n,[e]:n[e].filter(e=>e!==t)}))};return(0,U.jsxs)(`div`,{className:`space-y-2 min-w-0`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2`,children:[(0,U.jsx)(N,{type:`button`,size:`sm`,variant:r===`builder`?`default`:`outline`,onClick:()=>i(`builder`),className:`min-h-[44px] text-xs`,children:`Builder`}),(0,U.jsx)(N,{type:`button`,size:`sm`,variant:r===`raw`?`default`:`outline`,onClick:()=>i(`raw`),className:`min-h-[44px] text-xs`,children:`Raw JQL`}),y&&(0,U.jsx)(V,{className:`size-3.5 animate-spin text-muted-foreground`})]}),r===`raw`?(0,U.jsx)(`textarea`,{value:s,onChange:e=>x(e.target.value),className:`w-full h-20 rounded-md border border-input bg-background px-3 py-2 text-sm font-mono resize-none focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring`,placeholder:`e.g. project = MYPROJ AND status = "In Progress"`}):(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsx)(gc,{label:`Project`,field:`project`,filters:a,onAdd:S,onRemove:C,options:l.map(e=>({value:e.key??e.name,label:`${e.key??e.name} — ${e.name}`})),placeholder:`Select project...`}),(0,U.jsx)(gc,{label:`Issue Type`,field:`issueType`,filters:a,onAdd:S,onRemove:C,options:d.map(e=>({value:e.name,label:e.name})),placeholder:`Select issue type...`}),(0,U.jsx)(gc,{label:`Priority`,field:`priority`,filters:a,onAdd:S,onRemove:C,options:p.map(e=>({value:e.name,label:e.name})),placeholder:`Select priority...`}),(0,U.jsx)(gc,{label:`Status`,field:`status`,filters:a,onAdd:S,onRemove:C,options:h.map(e=>({value:e.name,label:e.name})),placeholder:`Select status...`}),(0,U.jsx)(gc,{label:`Assignee`,field:`assignee`,filters:a,onAdd:S,onRemove:C,options:_.map(e=>({value:e.id??e.name,label:e.name})),placeholder:`Select assignee...`})]}),(0,U.jsx)(`div`,{className:`text-xs text-muted-foreground bg-muted/50 rounded px-2 py-1 font-mono break-all`,children:r===`builder`?pc(a):s||`(empty)`})]})}function gc({label:e,field:t,filters:n,onAdd:r,onRemove:i,options:a,placeholder:o}){let s=a.filter(e=>!n[t].includes(e.value));return(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:e}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1 flex-wrap`,children:[n[t].map(e=>(0,U.jsxs)(`span`,{className:`inline-flex items-center gap-0.5 px-2 py-0.5 rounded-full bg-primary/10 text-xs`,children:[a.find(t=>t.value===e)?.label??e,(0,U.jsx)(`button`,{type:`button`,onClick:()=>i(t,e),className:`hover:text-destructive`,children:(0,U.jsx)(Pe,{className:`size-3`})})]},e)),s.length>0?(0,U.jsxs)(le,{onValueChange:e=>r(t,e),children:[(0,U.jsx)(fe,{className:`h-7 w-auto min-w-[120px] text-xs`,children:(0,U.jsx)(k,{placeholder:o})}),(0,U.jsx)(ae,{children:s.map(e=>(0,U.jsx)(ue,{value:e.value,children:e.label},e.value))})]}):a.length>0?(0,U.jsx)(`span`,{className:`text-xs text-muted-foreground italic`,children:`All selected`}):(0,U.jsx)(`span`,{className:`text-xs text-muted-foreground italic`,children:`Loading...`})]})]})}var _c=[{label:`30s`,value:3e4},{label:`1m`,value:6e4},{label:`2m`,value:12e4},{label:`5m`,value:3e5},{label:`10m`,value:6e5},{label:`30m`,value:18e5},{label:`1h`,value:36e5}];function vc({configId:e,existing:t,onDone:n}){let{createWatcher:r,updateWatcher:i,testJql:a}=lc(),[o,s]=(0,H.useState)(t?.name??``),[c,l]=(0,H.useState)(t?.jql??``),[u,d]=(0,H.useState)(t?.intervalMs??12e4),[f,p]=(0,H.useState)(t?.mode??`debug`),[m,h]=(0,H.useState)(t?.promptTemplate??``),[g,_]=(0,H.useState)(!1),[v,y]=(0,H.useState)(!1),[b,x]=(0,H.useState)(null),[S,C]=(0,H.useState)(0),[w,T]=(0,H.useState)(null),E=!!t;return(0,U.jsxs)(`form`,{onSubmit:async a=>{if(a.preventDefault(),!(!o||!c)){_(!0);try{E?await i(t.id,{name:o,jql:c,intervalMs:u,mode:f,promptTemplate:m||null}):await r({configId:e,name:o,jql:c,intervalMs:u,mode:f,promptTemplate:m||void 0}),n()}catch{}_(!1)}},className:`space-y-3 min-w-0`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Name`}),(0,U.jsx)(P,{value:o,onChange:e=>s(e.target.value),placeholder:`Bug watcher`,className:`h-9`})]}),(0,U.jsx)(hc,{value:c,onChange:l,configId:e}),(0,U.jsxs)(N,{type:`button`,size:`sm`,variant:`outline`,className:`w-full min-h-[44px]`,disabled:!c||v,onClick:async()=>{if(c){y(!0),T(null),x(null);try{let t=await a(e,c);x(t.issues),C(t.total)}catch(e){T(e.message??`Test failed`)}y(!1)}},children:[v?(0,U.jsx)(V,{className:`size-4 animate-spin mr-1.5`}):(0,U.jsx)(kn,{className:`size-4 mr-1.5`}),`Test Filter`]}),w&&(0,U.jsx)(`p`,{className:`text-xs text-destructive bg-destructive/10 rounded-md px-3 py-2`,children:w}),b&&(0,U.jsxs)(`div`,{className:`border rounded-md max-h-48 overflow-hidden`,children:[(0,U.jsxs)(`div`,{className:`px-3 py-1.5 border-b bg-muted/50 text-xs text-muted-foreground font-medium`,children:[S,` ticket`,S===1?``:`s`,` found`,S>b.length&&` (showing ${b.length})`]}),(0,U.jsx)(`div`,{className:`overflow-y-auto max-h-[calc(12rem-30px)]`,children:b.length===0?(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground text-center py-4`,children:`No tickets match this filter.`}):b.map(e=>(0,U.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-1.5 border-b last:border-b-0 text-xs min-w-0`,children:[(0,U.jsx)(`span`,{className:`font-mono font-medium shrink-0`,children:e.key}),(0,U.jsx)(`span`,{className:`truncate text-muted-foreground flex-1 min-w-0`,children:e.fields.summary}),(0,U.jsx)(`span`,{className:`shrink-0 text-[10px] text-muted-foreground px-1.5 py-0.5 bg-muted rounded whitespace-nowrap`,children:e.fields.status.name})]},e.key))})]}),(0,U.jsxs)(`div`,{className:`flex gap-2`,children:[(0,U.jsxs)(`div`,{className:`flex-1`,children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Interval`}),(0,U.jsxs)(le,{value:String(u),onValueChange:e=>d(Number(e)),children:[(0,U.jsx)(fe,{className:`h-9`,children:(0,U.jsx)(k,{})}),(0,U.jsx)(ae,{children:_c.map(e=>(0,U.jsx)(ue,{value:String(e.value),children:e.label},e.value))})]})]}),(0,U.jsxs)(`div`,{className:`flex-1`,children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Mode`}),(0,U.jsxs)(le,{value:f,onValueChange:e=>p(e),children:[(0,U.jsx)(fe,{className:`h-9`,children:(0,U.jsx)(k,{})}),(0,U.jsxs)(ae,{children:[(0,U.jsx)(ue,{value:`debug`,children:`Debug + Notify`}),(0,U.jsx)(ue,{value:`notify`,children:`Notify only`})]})]})]})]}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Prompt template (optional)`}),(0,U.jsx)(`textarea`,{value:m,onChange:e=>h(e.target.value),className:`w-full h-16 rounded-md border border-input bg-background px-3 py-2 text-xs font-mono resize-none focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring`,placeholder:`Debug Jira issue {issue_key}: {summary}`})]}),(0,U.jsx)(N,{type:`submit`,size:`sm`,disabled:g||!o||!c,className:`min-h-[44px] w-full`,children:g?(0,U.jsx)(V,{className:`size-4 animate-spin`}):E?`Save Changes`:`Create Watcher`})]})}function yc({configId:e}){let{watchers:t,deleteWatcher:n,toggleWatcher:r,pullWatcher:i}=lc(),[a,o]=(0,H.useState)(!1),[s,c]=(0,H.useState)(null),[l,u]=(0,H.useState)(null),d=async e=>{u(e);try{let t=await i(e);ge.success(`Pulled ${t.newIssues} new issue${t.newIssues===1?``:`s`}`)}catch(e){ge.error(e.message??`Pull failed`)}u(null)};return(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsx)(`h4`,{className:`text-sm font-medium`,children:`Watchers`}),(0,U.jsxs)(Ee,{open:a,onOpenChange:o,children:[(0,U.jsx)(we,{asChild:!0,children:(0,U.jsxs)(N,{size:`sm`,variant:`outline`,className:`min-h-[44px]`,children:[(0,U.jsx)(xe,{className:`size-4 mr-1`}),` Add`]})}),(0,U.jsxs)(Oe,{className:`max-w-md overflow-hidden`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:`New Watcher`})}),(0,U.jsx)(vc,{configId:e,onDone:()=>o(!1)})]})]})]}),t.length===0&&(0,U.jsx)(`p`,{className:`text-sm text-muted-foreground py-4 text-center`,children:`No watchers yet.`}),t.map(e=>(0,U.jsxs)(`div`,{className:`flex items-center gap-2 p-2 rounded-md border text-sm`,children:[(0,U.jsx)(j,{checked:e.enabled,onCheckedChange:t=>r(e.id,t),className:`shrink-0`}),(0,U.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,U.jsx)(`div`,{className:`font-medium truncate`,children:e.name}),(0,U.jsx)(`div`,{className:`text-xs text-muted-foreground truncate font-mono`,children:e.jql})]}),(0,U.jsxs)(`span`,{className:`text-xs text-muted-foreground shrink-0`,children:[e.mode===`notify`?`notify`:`debug`,` · `,bc(e.intervalMs)]}),(0,U.jsx)(N,{size:`icon`,variant:`ghost`,className:`size-8`,onClick:()=>c(e),children:(0,U.jsx)(oe,{className:`size-3.5`})}),(0,U.jsx)(N,{size:`icon`,variant:`ghost`,className:`size-8`,onClick:()=>d(e.id),disabled:l===e.id,children:l===e.id?(0,U.jsx)(V,{className:`size-3.5 animate-spin`}):(0,U.jsx)(Sn,{className:`size-3.5`})}),(0,U.jsx)(N,{size:`icon`,variant:`ghost`,className:`size-8 text-destructive`,onClick:()=>n(e.id),children:(0,U.jsx)(Ie,{className:`size-3.5`})})]},e.id)),(0,U.jsx)(Ee,{open:!!s,onOpenChange:e=>{e||c(null)},children:(0,U.jsxs)(Oe,{className:`max-w-md overflow-hidden`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:`Edit Watcher`})}),s&&(0,U.jsx)(vc,{configId:e,existing:s,onDone:()=>c(null)})]})})]})}function bc(e){return e>=36e5?`${e/36e5}h`:e>=6e4?`${e/6e4}m`:`${e/1e3}s`}function xc({projectId:e,existing:t}){let{saveConfig:n,deleteConfig:r,testConnection:i}=lc(),[a,o]=(0,H.useState)(t?.baseUrl??``),[s,c]=(0,H.useState)(t?.email??``),[l,u]=(0,H.useState)(``);(0,H.useEffect)(()=>{t&&(o(t.baseUrl),c(t.email))},[t?.baseUrl,t?.email]);let[d,f]=(0,H.useState)(!1),[p,m]=(0,H.useState)(!1),[h,g]=(0,H.useState)(null),[_,v]=(0,H.useState)(null);return(0,U.jsxs)(`form`,{onSubmit:async r=>{if(r.preventDefault(),!(!a||!s||!l&&!t?.hasToken)){f(!0);try{await n(e,{baseUrl:a,email:s,...l?{token:l}:{}}),u(``)}catch{}f(!1)}},className:`space-y-3`,children:[(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Base URL`}),(0,U.jsx)(P,{value:a,onChange:e=>o(e.target.value),placeholder:`https://mysite.atlassian.net`,className:`h-9`})]}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Email`}),(0,U.jsx)(P,{value:s,onChange:e=>c(e.target.value),placeholder:`you@company.com`,className:`h-9`})]}),(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`label`,{className:`text-xs text-muted-foreground`,children:[`API Token `,t?.hasToken&&(0,U.jsx)(`span`,{className:`text-green-500`,children:`(saved)`})]}),(0,U.jsx)(P,{type:`password`,value:l,onChange:e=>u(e.target.value),placeholder:t?.hasToken?`Enter new token to replace`:`Your Jira API token`,className:`h-9`})]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-2 flex-wrap`,children:[(0,U.jsx)(N,{type:`submit`,size:`sm`,disabled:d,className:`min-w-[44px] min-h-[44px]`,children:d?(0,U.jsx)(V,{className:`size-4 animate-spin`}):`Save`}),t&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(N,{type:`button`,size:`sm`,variant:`outline`,onClick:async()=>{m(!0),g(null),v(null);try{g(await i(e)?`ok`:`fail`)}catch(e){g(`fail`),v(e?.message??`Connection failed`)}m(!1)},disabled:p,className:`min-h-[44px]`,children:p?(0,U.jsx)(V,{className:`size-4 animate-spin`}):`Test Connection`}),(0,U.jsx)(N,{type:`button`,size:`sm`,variant:`destructive`,onClick:()=>r(e),className:`min-h-[44px]`,children:(0,U.jsx)(Ie,{className:`size-4`})})]}),h===`ok`&&(0,U.jsx)(yt,{className:`size-4 text-green-500`}),h===`fail`&&(0,U.jsx)(vt,{className:`size-4 text-red-500`})]}),_&&(0,U.jsx)(`p`,{className:`text-xs text-red-500 break-all`,children:_})]})}function Sc({result:e,onClose:t}){let{watchers:n,startDebug:r}=lc(),[i,a]=(0,H.useState)(``);return(0,H.useEffect)(()=>{e&&a((n.find(t=>t.id===e.watcherId)?.promptTemplate??`Debug Jira issue {issue_key}: {summary}`).replace(/\{issue_key\}/g,e.issueKey).replace(/\{summary\}/g,e.issueSummary??``))},[e,n]),(0,U.jsx)(Ee,{open:!!e,onOpenChange:e=>{e||t()},children:(0,U.jsxs)(Oe,{className:`max-w-md`,children:[(0,U.jsx)(De,{children:(0,U.jsxs)(ke,{children:[`Start Debug: `,e?.issueKey]})}),(0,U.jsx)(`p`,{className:`text-sm text-muted-foreground`,children:e?.issueSummary}),(0,U.jsxs)(`div`,{children:[(0,U.jsx)(`label`,{className:`text-xs text-muted-foreground`,children:`Debug Prompt`}),(0,U.jsx)(`textarea`,{value:i,onChange:e=>a(e.target.value),className:`w-full h-24 rounded-md border border-input bg-background px-3 py-2 text-xs font-mono resize-none mt-1`,placeholder:`Debug Jira issue {issue_key}: {summary}`})]}),(0,U.jsx)(N,{size:`sm`,className:`w-full min-h-[44px]`,onClick:async()=>{if(e){try{await r(e.id,i)}catch{}t()}},children:`Start Debug Session`})]})})}function Cc(){let e=Ye(e=>e.activeProject),t=B(e=>e.openTab),{configs:n,watchers:r,results:i,loadConfigs:a,loadWatchers:o,loadResults:s,loadProjectsWithIds:c,projectsWithIds:l,softDeleteResult:u,resumeDebug:d,cancelDebug:f,markRead:p,unreadCount:m,loadUnreadCount:h}=lc(),[g,_]=(0,H.useState)(`tickets`),[v,y]=(0,H.useState)(!1),[b,x]=(0,H.useState)(null),S=l.find(t=>t.name===e?.name),C=n.find(e=>e.projectId===S?.id);(0,H.useEffect)(()=>{a(),c()},[]),(0,H.useEffect)(()=>{C&&o(C.id)},[C?.id]);let w=(0,H.useCallback)(async()=>{y(!0);try{await s()}catch{}y(!1)},[s]);(0,H.useEffect)(()=>{w(),h()},[C?.id]),(0,H.useEffect)(()=>{let n=n=>{let r=n.detail;r&&(w(),r.status===`done`?(h(),ge.success(`Debug complete: ${r.issueKey}`,{action:r.sessionId?{label:`View`,onClick:()=>t({type:`chat`,title:`[Jira] ${r.issueKey}`,projectId:e?.name??null,metadata:{projectName:e?.name,sessionId:r.sessionId},closable:!0})}:void 0})):r.status===`failed`&&ge.error(`Debug failed: ${r.issueKey}`))};return window.addEventListener(`jira:status_change`,n),()=>window.removeEventListener(`jira:status_change`,n)},[w,h]);let T=(0,H.useCallback)(n=>{n.sessionId&&(n.status===`done`&&!n.readAt&&p(n.id),t({type:`chat`,title:`[Jira] ${n.issueKey}`,projectId:e?.name??null,metadata:{projectName:e?.name,sessionId:n.sessionId},closable:!0}))},[t,p,e]),E=e=>{e.sessionId&&T(e)};return e?g===`tickets`?(0,U.jsxs)(`div`,{className:`h-full flex flex-col`,children:[(0,U.jsxs)(`div`,{className:`shrink-0 px-3 py-2 flex items-center gap-1.5 border-b border-border/50`,children:[(0,U.jsx)(`h2`,{className:`text-sm font-semibold flex-1 truncate`,children:`Jira`}),m>0&&(0,U.jsx)(`span`,{className:`inline-flex items-center justify-center min-w-[18px] h-[18px] px-1 rounded-full bg-primary text-primary-foreground text-[10px] font-bold`,children:m}),(0,U.jsx)(N,{size:`icon`,variant:`ghost`,className:`size-7`,onClick:w,disabled:v,title:`Refresh`,children:v?(0,U.jsx)(V,{className:`size-3.5 animate-spin`}):(0,U.jsx)(Fe,{className:`size-3.5`})}),(0,U.jsx)(N,{size:`icon`,variant:`ghost`,className:`size-7`,onClick:()=>_(`watchers`),title:`Watchers`,children:(0,U.jsx)(sn,{className:`size-3.5`})}),(0,U.jsx)(N,{size:`icon`,variant:`ghost`,className:`size-7`,onClick:()=>_(`credentials`),title:`Credentials`,children:(0,U.jsx)(Nn,{className:`size-3.5`})})]}),(0,U.jsx)(ie,{className:`flex-1 min-h-0`,children:(0,U.jsx)(`div`,{className:`p-1.5 space-y-1.5`,children:C?i.length===0&&r.length===0?(0,U.jsx)(wc,{message:`No watchers yet`,action:`Add Watcher`,onAction:()=>_(`watchers`)}):i.length===0?(0,U.jsx)(wc,{message:`No tickets yet. Watchers will pick up new issues.`}):i.map(e=>(0,U.jsx)(fc,{result:e,onDebug:x,onResume:e=>d(e.id),onCancel:e=>f(e.id),onOpenSession:T,onDelete:u,onClick:E},e.id)):(0,U.jsx)(wc,{message:`No Jira credentials configured`,action:`Set up Jira`,onAction:()=>_(`credentials`)})})}),(0,U.jsx)(Sc,{result:b,onClose:()=>x(null)})]}):(0,U.jsxs)(`div`,{className:`h-full flex flex-col`,children:[(0,U.jsxs)(`div`,{className:`shrink-0 px-2 py-2 flex items-center gap-1.5 border-b border-border/50`,children:[(0,U.jsx)(N,{size:`icon`,variant:`ghost`,className:`size-7`,onClick:()=>_(`tickets`),children:(0,U.jsx)(te,{className:`size-4`})}),(0,U.jsx)(`h2`,{className:`text-sm font-semibold truncate`,children:g===`watchers`?`Watchers`:`Jira Credentials`})]}),(0,U.jsx)(ie,{className:`flex-1 min-h-0`,children:(0,U.jsx)(`div`,{className:`p-3`,children:g===`watchers`?C?(0,U.jsx)(yc,{configId:C.id}):(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground text-center py-4`,children:`Configure Jira credentials first.`}):S?(0,U.jsx)(xc,{projectId:S.id,existing:C?{baseUrl:C.baseUrl,email:C.email,hasToken:C.hasToken}:null}):(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground text-center py-4`,children:`Project not found in database.`})})})]}):(0,U.jsx)(`div`,{className:`flex items-center justify-center h-32 p-4`,children:(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground text-center`,children:`Select a project to use Jira`})})}function wc({message:e,action:t,onAction:n}){return(0,U.jsxs)(`div`,{className:`flex flex-col items-center justify-center py-12 gap-3`,children:[(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground text-center`,children:e}),t&&n&&(0,U.jsxs)(N,{size:`sm`,variant:`outline`,className:`min-h-[44px]`,onClick:n,children:[(0,U.jsx)(xe,{className:`size-4 mr-1.5`}),` `,t]})]})}var Tc=[{id:`explorer`,label:`Explorer`,icon:Ht},{id:`search`,label:`Search`,icon:kn},{id:`git`,label:`Git`,icon:Jt},{id:`database`,label:`Database`,icon:je},{id:`settings`,label:`Settings`,icon:Pn}];function Ec({onResize:e}){let t=(0,H.useRef)(!1);return(0,U.jsx)(`div`,{className:`absolute right-0 top-0 bottom-0 w-1 cursor-col-resize hover:bg-primary/30 active:bg-primary/50 transition-colors z-10`,onPointerDown:(0,H.useCallback)(e=>{e.preventDefault(),t.current=!0,e.currentTarget.setPointerCapture(e.pointerId),document.body.style.cursor=`col-resize`,document.body.style.userSelect=`none`},[]),onPointerMove:(0,H.useCallback)(n=>{t.current&&e(n.clientX-48)},[e]),onPointerUp:(0,H.useCallback)(e=>{t.current=!1,e.currentTarget.releasePointerCapture(e.pointerId),document.body.style.cursor=``,document.body.style.userSelect=``},[])})}var Dc=(0,H.memo)(function(){let{activeProject:e}=Ye(q(e=>({activeProject:e.activeProject}))),t=L(e=>e.sidebarCollapsed),n=L(e=>e.sidebarWidth),r=L(e=>e.toggleSidebar),i=L(e=>e.setSidebarWidth),a=L(e=>e.sidebarActiveTab),o=L(e=>e.setSidebarActiveTab),s=L(e=>e.jiraEnabled),c=rt(e=>e.contributions),l=wo(t=>e?.name?t.counts.get(e.name)??0:0),u=lc(e=>e.unreadCount);To(e?.name,a===`git`);let d=(0,H.useMemo)(()=>{let e=[...Tc];if(s){let t=e.findIndex(e=>e.id===`settings`);e.splice(t,0,{id:`jira`,label:`Jira`,icon:M})}if(c?.views){let t=c.views.sidebar??c.views.explorer??[];for(let n of t)e.push({id:`ext:${n.id}`,label:n.name,icon:En})}return e},[c,s]);return t?(0,U.jsx)(`aside`,{className:`hidden md:flex flex-col w-10 min-w-10 bg-background border-r border-border`,children:(0,U.jsx)(`button`,{onClick:r,title:`Expand sidebar (⌘B)`,className:`flex items-center justify-center h-[41px] border-b border-border text-text-secondary hover:text-foreground transition-colors`,children:(0,U.jsx)(yn,{className:`size-4`})})}):(0,U.jsxs)(`aside`,{className:`hidden md:flex flex-col bg-background border-r border-border overflow-hidden relative`,style:{width:n,minWidth:200,maxWidth:600},children:[(0,U.jsxs)(`div`,{className:`flex items-center h-[41px] border-b border-border shrink-0`,children:[d.map(e=>{let t=e.icon;return(0,U.jsxs)(`button`,{onClick:()=>o(e.id),className:R(`flex-1 flex items-center justify-center gap-1.5 h-full text-xs transition-colors border-b-2 -mb-px relative`,a===e.id?`border-primary text-primary font-medium`:`border-transparent text-text-secondary hover:text-foreground`),children:[(0,U.jsx)(t,{className:`size-3.5`,title:e.label}),e.id===`git`&&l>0&&(0,U.jsx)(`span`,{className:`absolute top-1 right-1 min-w-[16px] h-4 px-1 flex items-center justify-center rounded-full bg-primary text-primary-foreground text-[10px] font-medium leading-none`,children:l>99?`99+`:l}),e.id===`jira`&&u>0&&(0,U.jsx)(`span`,{className:`absolute top-1 right-1 min-w-[16px] h-4 px-1 flex items-center justify-center rounded-full bg-primary text-primary-foreground text-[10px] font-medium leading-none`,children:u>99?`99+`:u})]},e.id)}),(0,U.jsx)(`button`,{onClick:r,title:`Collapse sidebar (⌘B)`,className:`flex items-center justify-center w-8 h-full text-text-subtle hover:text-text-secondary transition-colors shrink-0`,children:(0,U.jsx)(vn,{className:`size-3.5`})})]}),(0,U.jsxs)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:[a===`explorer`&&(e?(0,U.jsx)(Co,{}):(0,U.jsx)(`div`,{className:`flex items-center justify-center h-24 p-4`,children:(0,U.jsx)(`p`,{className:`text-xs text-text-subtle text-center`,children:`Select a project to browse files`})})),a===`git`&&(0,U.jsx)(zo,{metadata:{projectName:e?.name}}),a===`search`&&(0,U.jsx)(tc,{}),a===`database`&&(0,U.jsx)(Zs,{}),a===`jira`&&(0,U.jsx)(Cc,{}),a===`settings`&&(0,U.jsx)(js,{}),typeof a==`string`&&a.startsWith(`ext:`)&&(0,U.jsx)(ac,{viewId:a.slice(4),className:`h-full`})]}),(0,U.jsx)(Ec,{onResize:i})]})}),Oc=e(y(),1),kc=Object.defineProperty,Ac=Object.getOwnPropertySymbols,jc=Object.prototype.hasOwnProperty,Mc=Object.prototype.propertyIsEnumerable,Nc=(e,t,n)=>t in e?kc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Pc=(e,t)=>{for(var n in t||={})jc.call(t,n)&&Nc(e,n,t[n]);if(Ac)for(var n of Ac(t))Mc.call(t,n)&&Nc(e,n,t[n]);return e},Fc=(e,t)=>{var n={};for(var r in e)jc.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&Ac)for(var r of Ac(e))t.indexOf(r)<0&&Mc.call(e,r)&&(n[r]=e[r]);return n},Ic;(e=>{let t=class t{constructor(e,n,r,a){if(this.version=e,this.errorCorrectionLevel=n,this.modules=[],this.isFunction=[],e<t.MIN_VERSION||e>t.MAX_VERSION)throw RangeError(`Version value out of range`);if(a<-1||a>7)throw RangeError(`Mask value out of range`);this.size=e*4+17;let o=[];for(let e=0;e<this.size;e++)o.push(!1);for(let e=0;e<this.size;e++)this.modules.push(o.slice()),this.isFunction.push(o.slice());this.drawFunctionPatterns();let s=this.addEccAndInterleave(r);if(this.drawCodewords(s),a==-1){let e=1e9;for(let t=0;t<8;t++){this.applyMask(t),this.drawFormatBits(t);let n=this.getPenaltyScore();n<e&&(a=t,e=n),this.applyMask(t)}}i(0<=a&&a<=7),this.mask=a,this.applyMask(a),this.drawFormatBits(a),this.isFunction=[]}static encodeText(n,r){let i=e.QrSegment.makeSegments(n);return t.encodeSegments(i,r)}static encodeBinary(n,r){let i=e.QrSegment.makeBytes(n);return t.encodeSegments([i],r)}static encodeSegments(e,r,a=1,s=40,c=-1,l=!0){if(!(t.MIN_VERSION<=a&&a<=s&&s<=t.MAX_VERSION)||c<-1||c>7)throw RangeError(`Invalid value`);let u,d;for(u=a;;u++){let n=t.getNumDataCodewords(u,r)*8,i=o.getTotalBits(e,u);if(i<=n){d=i;break}if(u>=s)throw RangeError(`Data too long`)}for(let e of[t.Ecc.MEDIUM,t.Ecc.QUARTILE,t.Ecc.HIGH])l&&d<=t.getNumDataCodewords(u,e)*8&&(r=e);let f=[];for(let t of e){n(t.mode.modeBits,4,f),n(t.numChars,t.mode.numCharCountBits(u),f);for(let e of t.getData())f.push(e)}i(f.length==d);let p=t.getNumDataCodewords(u,r)*8;i(f.length<=p),n(0,Math.min(4,p-f.length),f),n(0,(8-f.length%8)%8,f),i(f.length%8==0);for(let e=236;f.length<p;e^=253)n(e,8,f);let m=[];for(;m.length*8<f.length;)m.push(0);return f.forEach((e,t)=>m[t>>>3]|=e<<7-(t&7)),new t(u,r,m,c)}getModule(e,t){return 0<=e&&e<this.size&&0<=t&&t<this.size&&this.modules[t][e]}getModules(){return this.modules}drawFunctionPatterns(){for(let e=0;e<this.size;e++)this.setFunctionModule(6,e,e%2==0),this.setFunctionModule(e,6,e%2==0);this.drawFinderPattern(3,3),this.drawFinderPattern(this.size-4,3),this.drawFinderPattern(3,this.size-4);let e=this.getAlignmentPatternPositions(),t=e.length;for(let n=0;n<t;n++)for(let r=0;r<t;r++)n==0&&r==0||n==0&&r==t-1||n==t-1&&r==0||this.drawAlignmentPattern(e[n],e[r]);this.drawFormatBits(0),this.drawVersion()}drawFormatBits(e){let t=this.errorCorrectionLevel.formatBits<<3|e,n=t;for(let e=0;e<10;e++)n=n<<1^(n>>>9)*1335;let a=(t<<10|n)^21522;i(a>>>15==0);for(let e=0;e<=5;e++)this.setFunctionModule(8,e,r(a,e));this.setFunctionModule(8,7,r(a,6)),this.setFunctionModule(8,8,r(a,7)),this.setFunctionModule(7,8,r(a,8));for(let e=9;e<15;e++)this.setFunctionModule(14-e,8,r(a,e));for(let e=0;e<8;e++)this.setFunctionModule(this.size-1-e,8,r(a,e));for(let e=8;e<15;e++)this.setFunctionModule(8,this.size-15+e,r(a,e));this.setFunctionModule(8,this.size-8,!0)}drawVersion(){if(this.version<7)return;let e=this.version;for(let t=0;t<12;t++)e=e<<1^(e>>>11)*7973;let t=this.version<<12|e;i(t>>>18==0);for(let e=0;e<18;e++){let n=r(t,e),i=this.size-11+e%3,a=Math.floor(e/3);this.setFunctionModule(i,a,n),this.setFunctionModule(a,i,n)}}drawFinderPattern(e,t){for(let n=-4;n<=4;n++)for(let r=-4;r<=4;r++){let i=Math.max(Math.abs(r),Math.abs(n)),a=e+r,o=t+n;0<=a&&a<this.size&&0<=o&&o<this.size&&this.setFunctionModule(a,o,i!=2&&i!=4)}}drawAlignmentPattern(e,t){for(let n=-2;n<=2;n++)for(let r=-2;r<=2;r++)this.setFunctionModule(e+r,t+n,Math.max(Math.abs(r),Math.abs(n))!=1)}setFunctionModule(e,t,n){this.modules[t][e]=n,this.isFunction[t][e]=!0}addEccAndInterleave(e){let n=this.version,r=this.errorCorrectionLevel;if(e.length!=t.getNumDataCodewords(n,r))throw RangeError(`Invalid argument`);let a=t.NUM_ERROR_CORRECTION_BLOCKS[r.ordinal][n],o=t.ECC_CODEWORDS_PER_BLOCK[r.ordinal][n],s=Math.floor(t.getNumRawDataModules(n)/8),c=a-s%a,l=Math.floor(s/a),u=[],d=t.reedSolomonComputeDivisor(o);for(let n=0,r=0;n<a;n++){let i=e.slice(r,r+l-o+(n<c?0:1));r+=i.length;let a=t.reedSolomonComputeRemainder(i,d);n<c&&i.push(0),u.push(i.concat(a))}let f=[];for(let e=0;e<u[0].length;e++)u.forEach((t,n)=>{(e!=l-o||n>=c)&&f.push(t[e])});return i(f.length==s),f}drawCodewords(e){if(e.length!=Math.floor(t.getNumRawDataModules(this.version)/8))throw RangeError(`Invalid argument`);let n=0;for(let t=this.size-1;t>=1;t-=2){t==6&&(t=5);for(let i=0;i<this.size;i++)for(let a=0;a<2;a++){let o=t-a,s=t+1&2?i:this.size-1-i;!this.isFunction[s][o]&&n<e.length*8&&(this.modules[s][o]=r(e[n>>>3],7-(n&7)),n++)}}i(n==e.length*8)}applyMask(e){if(e<0||e>7)throw RangeError(`Mask value out of range`);for(let t=0;t<this.size;t++)for(let n=0;n<this.size;n++){let r;switch(e){case 0:r=(n+t)%2==0;break;case 1:r=t%2==0;break;case 2:r=n%3==0;break;case 3:r=(n+t)%3==0;break;case 4:r=(Math.floor(n/3)+Math.floor(t/2))%2==0;break;case 5:r=n*t%2+n*t%3==0;break;case 6:r=(n*t%2+n*t%3)%2==0;break;case 7:r=((n+t)%2+n*t%3)%2==0;break;default:throw Error(`Unreachable`)}!this.isFunction[t][n]&&r&&(this.modules[t][n]=!this.modules[t][n])}}getPenaltyScore(){let e=0;for(let n=0;n<this.size;n++){let r=!1,i=0,a=[0,0,0,0,0,0,0];for(let o=0;o<this.size;o++)this.modules[n][o]==r?(i++,i==5?e+=t.PENALTY_N1:i>5&&e++):(this.finderPenaltyAddHistory(i,a),r||(e+=this.finderPenaltyCountPatterns(a)*t.PENALTY_N3),r=this.modules[n][o],i=1);e+=this.finderPenaltyTerminateAndCount(r,i,a)*t.PENALTY_N3}for(let n=0;n<this.size;n++){let r=!1,i=0,a=[0,0,0,0,0,0,0];for(let o=0;o<this.size;o++)this.modules[o][n]==r?(i++,i==5?e+=t.PENALTY_N1:i>5&&e++):(this.finderPenaltyAddHistory(i,a),r||(e+=this.finderPenaltyCountPatterns(a)*t.PENALTY_N3),r=this.modules[o][n],i=1);e+=this.finderPenaltyTerminateAndCount(r,i,a)*t.PENALTY_N3}for(let n=0;n<this.size-1;n++)for(let r=0;r<this.size-1;r++){let i=this.modules[n][r];i==this.modules[n][r+1]&&i==this.modules[n+1][r]&&i==this.modules[n+1][r+1]&&(e+=t.PENALTY_N2)}let n=0;for(let e of this.modules)n=e.reduce((e,t)=>e+(t?1:0),n);let r=this.size*this.size,a=Math.ceil(Math.abs(n*20-r*10)/r)-1;return i(0<=a&&a<=9),e+=a*t.PENALTY_N4,i(0<=e&&e<=2568888),e}getAlignmentPatternPositions(){if(this.version==1)return[];{let e=Math.floor(this.version/7)+2,t=this.version==32?26:Math.ceil((this.version*4+4)/(e*2-2))*2,n=[6];for(let r=this.size-7;n.length<e;r-=t)n.splice(1,0,r);return n}}static getNumRawDataModules(e){if(e<t.MIN_VERSION||e>t.MAX_VERSION)throw RangeError(`Version number out of range`);let n=(16*e+128)*e+64;if(e>=2){let t=Math.floor(e/7)+2;n-=(25*t-10)*t-55,e>=7&&(n-=36)}return i(208<=n&&n<=29648),n}static getNumDataCodewords(e,n){return Math.floor(t.getNumRawDataModules(e)/8)-t.ECC_CODEWORDS_PER_BLOCK[n.ordinal][e]*t.NUM_ERROR_CORRECTION_BLOCKS[n.ordinal][e]}static reedSolomonComputeDivisor(e){if(e<1||e>255)throw RangeError(`Degree out of range`);let n=[];for(let t=0;t<e-1;t++)n.push(0);n.push(1);let r=1;for(let i=0;i<e;i++){for(let e=0;e<n.length;e++)n[e]=t.reedSolomonMultiply(n[e],r),e+1<n.length&&(n[e]^=n[e+1]);r=t.reedSolomonMultiply(r,2)}return n}static reedSolomonComputeRemainder(e,n){let r=n.map(e=>0);for(let i of e){let e=i^r.shift();r.push(0),n.forEach((n,i)=>r[i]^=t.reedSolomonMultiply(n,e))}return r}static reedSolomonMultiply(e,t){if(e>>>8||t>>>8)throw RangeError(`Byte out of range`);let n=0;for(let r=7;r>=0;r--)n=n<<1^(n>>>7)*285,n^=(t>>>r&1)*e;return i(n>>>8==0),n}finderPenaltyCountPatterns(e){let t=e[1];i(t<=this.size*3);let n=t>0&&e[2]==t&&e[3]==t*3&&e[4]==t&&e[5]==t;return(n&&e[0]>=t*4&&e[6]>=t?1:0)+(n&&e[6]>=t*4&&e[0]>=t?1:0)}finderPenaltyTerminateAndCount(e,t,n){return e&&(this.finderPenaltyAddHistory(t,n),t=0),t+=this.size,this.finderPenaltyAddHistory(t,n),this.finderPenaltyCountPatterns(n)}finderPenaltyAddHistory(e,t){t[0]==0&&(e+=this.size),t.pop(),t.unshift(e)}};t.MIN_VERSION=1,t.MAX_VERSION=40,t.PENALTY_N1=3,t.PENALTY_N2=3,t.PENALTY_N3=40,t.PENALTY_N4=10,t.ECC_CODEWORDS_PER_BLOCK=[[-1,7,10,15,20,26,18,20,24,30,18,20,24,26,30,22,24,28,30,28,28,28,28,30,30,26,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,10,16,26,18,24,16,18,22,22,26,30,22,22,24,24,28,28,26,26,26,26,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28],[-1,13,22,18,26,18,24,18,22,20,24,28,26,24,20,30,24,28,28,26,30,28,30,30,30,30,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,17,28,22,16,22,28,26,26,24,28,24,28,22,24,24,30,28,28,26,28,30,24,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30]],t.NUM_ERROR_CORRECTION_BLOCKS=[[-1,1,1,1,1,1,2,2,2,2,4,4,4,4,4,6,6,6,6,7,8,8,9,9,10,12,12,12,13,14,15,16,17,18,19,19,20,21,22,24,25],[-1,1,1,1,2,2,4,4,4,5,5,5,8,9,9,10,10,11,13,14,16,17,17,18,20,21,23,25,26,28,29,31,33,35,37,38,40,43,45,47,49],[-1,1,1,2,2,4,4,6,6,8,8,8,10,12,16,12,17,16,18,21,20,23,23,25,27,29,34,34,35,38,40,43,45,48,51,53,56,59,62,65,68],[-1,1,1,2,4,4,4,5,6,8,8,11,11,16,16,18,16,19,21,25,25,25,34,30,32,35,37,40,42,45,48,51,54,57,60,63,66,70,74,77,81]],e.QrCode=t;function n(e,t,n){if(t<0||t>31||e>>>t)throw RangeError(`Value out of range`);for(let r=t-1;r>=0;r--)n.push(e>>>r&1)}function r(e,t){return(e>>>t&1)!=0}function i(e){if(!e)throw Error(`Assertion error`)}let a=class e{constructor(e,t,n){if(this.mode=e,this.numChars=t,this.bitData=n,t<0)throw RangeError(`Invalid argument`);this.bitData=n.slice()}static makeBytes(t){let r=[];for(let e of t)n(e,8,r);return new e(e.Mode.BYTE,t.length,r)}static makeNumeric(t){if(!e.isNumeric(t))throw RangeError(`String contains non-numeric characters`);let r=[];for(let e=0;e<t.length;){let i=Math.min(t.length-e,3);n(parseInt(t.substring(e,e+i),10),i*3+1,r),e+=i}return new e(e.Mode.NUMERIC,t.length,r)}static makeAlphanumeric(t){if(!e.isAlphanumeric(t))throw RangeError(`String contains unencodable characters in alphanumeric mode`);let r=[],i;for(i=0;i+2<=t.length;i+=2){let a=e.ALPHANUMERIC_CHARSET.indexOf(t.charAt(i))*45;a+=e.ALPHANUMERIC_CHARSET.indexOf(t.charAt(i+1)),n(a,11,r)}return i<t.length&&n(e.ALPHANUMERIC_CHARSET.indexOf(t.charAt(i)),6,r),new e(e.Mode.ALPHANUMERIC,t.length,r)}static makeSegments(t){return t==``?[]:e.isNumeric(t)?[e.makeNumeric(t)]:e.isAlphanumeric(t)?[e.makeAlphanumeric(t)]:[e.makeBytes(e.toUtf8ByteArray(t))]}static makeEci(t){let r=[];if(t<0)throw RangeError(`ECI assignment value out of range`);if(t<128)n(t,8,r);else if(t<16384)n(2,2,r),n(t,14,r);else if(t<1e6)n(6,3,r),n(t,21,r);else throw RangeError(`ECI assignment value out of range`);return new e(e.Mode.ECI,0,r)}static isNumeric(t){return e.NUMERIC_REGEX.test(t)}static isAlphanumeric(t){return e.ALPHANUMERIC_REGEX.test(t)}getData(){return this.bitData.slice()}static getTotalBits(e,t){let n=0;for(let r of e){let e=r.mode.numCharCountBits(t);if(r.numChars>=1<<e)return 1/0;n+=4+e+r.bitData.length}return n}static toUtf8ByteArray(e){e=encodeURI(e);let t=[];for(let n=0;n<e.length;n++)e.charAt(n)==`%`?(t.push(parseInt(e.substring(n+1,n+3),16)),n+=2):t.push(e.charCodeAt(n));return t}};a.NUMERIC_REGEX=/^[0-9]*$/,a.ALPHANUMERIC_REGEX=/^[A-Z0-9 $%*+.\/:-]*$/,a.ALPHANUMERIC_CHARSET=`0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:`;let o=a;e.QrSegment=a})(Ic||={}),(e=>{(e=>{let t=class{constructor(e,t){this.ordinal=e,this.formatBits=t}};t.LOW=new t(0,1),t.MEDIUM=new t(1,0),t.QUARTILE=new t(2,3),t.HIGH=new t(3,2),e.Ecc=t})(e.QrCode||={})})(Ic||={}),(e=>{(e=>{let t=class{constructor(e,t){this.modeBits=e,this.numBitsCharCount=t}numCharCountBits(e){return this.numBitsCharCount[Math.floor((e+7)/17)]}};t.NUMERIC=new t(1,[10,12,14]),t.ALPHANUMERIC=new t(2,[9,11,13]),t.BYTE=new t(4,[8,16,16]),t.KANJI=new t(8,[8,10,12]),t.ECI=new t(7,[0,0,0]),e.Mode=t})(e.QrSegment||={})})(Ic||={});var Lc=Ic,Rc={L:Lc.QrCode.Ecc.LOW,M:Lc.QrCode.Ecc.MEDIUM,Q:Lc.QrCode.Ecc.QUARTILE,H:Lc.QrCode.Ecc.HIGH},zc=128,Bc=`L`,Vc=`#FFFFFF`,Hc=`#000000`,Uc=!1,Wc=1,Gc=4,Kc=0,qc=.1;function Jc(e,t=0){let n=[];return e.forEach(function(e,r){let i=null;e.forEach(function(a,o){if(!a&&i!==null){n.push(`M${i+t} ${r+t}h${o-i}v1H${i+t}z`),i=null;return}if(o===e.length-1){if(!a)return;i===null?n.push(`M${o+t},${r+t} h1v1H${o+t}z`):n.push(`M${i+t},${r+t} h${o+1-i}v1H${i+t}z`);return}a&&i===null&&(i=o)})}),n.join(``)}function Yc(e,t){return e.slice().map((e,n)=>n<t.y||n>=t.y+t.h?e:e.map((e,n)=>n<t.x||n>=t.x+t.w?e:!1))}function Xc(e,t,n,r){if(r==null)return null;let i=e.length+n*2,a=Math.floor(t*qc),o=i/t,s=(r.width||a)*o,c=(r.height||a)*o,l=r.x==null?e.length/2-s/2:r.x*o,u=r.y==null?e.length/2-c/2:r.y*o,d=r.opacity==null?1:r.opacity,f=null;if(r.excavate){let e=Math.floor(l),t=Math.floor(u);f={x:e,y:t,w:Math.ceil(s+l-e),h:Math.ceil(c+u-t)}}let p=r.crossOrigin;return{x:l,y:u,h:c,w:s,excavation:f,opacity:d,crossOrigin:p}}function Zc(e,t){return t==null?e?Gc:Kc:Math.max(Math.floor(t),0)}function Qc({value:e,level:t,minVersion:n,includeMargin:r,marginSize:i,imageSettings:a,size:o,boostLevel:s}){let c=H.useMemo(()=>{let r=(Array.isArray(e)?e:[e]).reduce((e,t)=>(e.push(...Lc.QrSegment.makeSegments(t)),e),[]);return Lc.QrCode.encodeSegments(r,Rc[t],n,void 0,void 0,s)},[e,t,n,s]),{cells:l,margin:u,numCells:d,calculatedImageSettings:f}=H.useMemo(()=>{let e=c.getModules(),t=Zc(r,i);return{cells:e,margin:t,numCells:e.length+t*2,calculatedImageSettings:Xc(e,o,t,a)}},[c,o,a,r,i]);return{qrcode:c,margin:u,cells:l,numCells:d,calculatedImageSettings:f}}var $c=function(){try{new Path2D().addPath(new Path2D)}catch{return!1}return!0}(),el=H.forwardRef(function(e,t){let n=e,{value:r,size:i=zc,level:a=Bc,bgColor:o=Vc,fgColor:s=Hc,includeMargin:c=Uc,minVersion:l=Wc,boostLevel:u,marginSize:d,imageSettings:f}=n,p=Fc(n,[`value`,`size`,`level`,`bgColor`,`fgColor`,`includeMargin`,`minVersion`,`boostLevel`,`marginSize`,`imageSettings`]),{style:m}=p,h=Fc(p,[`style`]),g=f?.src,_=H.useRef(null),v=H.useRef(null),y=H.useCallback(e=>{_.current=e,typeof t==`function`?t(e):t&&(t.current=e)},[t]),[b,x]=H.useState(!1),{margin:S,cells:C,numCells:w,calculatedImageSettings:T}=Qc({value:r,level:a,minVersion:l,boostLevel:u,includeMargin:c,marginSize:d,imageSettings:f,size:i});H.useEffect(()=>{if(_.current!=null){let e=_.current,t=e.getContext(`2d`);if(!t)return;let n=C,r=v.current,a=T!=null&&r!==null&&r.complete&&r.naturalHeight!==0&&r.naturalWidth!==0;a&&T.excavation!=null&&(n=Yc(C,T.excavation));let c=window.devicePixelRatio||1;e.height=e.width=i*c;let l=i/w*c;t.scale(l,l),t.fillStyle=o,t.fillRect(0,0,w,w),t.fillStyle=s,$c?t.fill(new Path2D(Jc(n,S))):C.forEach(function(e,n){e.forEach(function(e,r){e&&t.fillRect(r+S,n+S,1,1)})}),T&&(t.globalAlpha=T.opacity),a&&t.drawImage(r,T.x+S,T.y+S,T.w,T.h)}}),H.useEffect(()=>{x(!1)},[g]);let E=Pc({height:i,width:i},m),D=null;return g!=null&&(D=H.createElement(`img`,{src:g,key:g,style:{display:`none`},onLoad:()=>{x(!0)},ref:v,crossOrigin:T?.crossOrigin})),H.createElement(H.Fragment,null,H.createElement(`canvas`,Pc({style:E,height:i,width:i,ref:y,role:`img`},h)),D)});el.displayName=`QRCodeCanvas`;var tl=H.forwardRef(function(e,t){let n=e,{value:r,size:i=zc,level:a=Bc,bgColor:o=Vc,fgColor:s=Hc,includeMargin:c=Uc,minVersion:l=Wc,boostLevel:u,title:d,marginSize:f,imageSettings:p}=n,m=Fc(n,[`value`,`size`,`level`,`bgColor`,`fgColor`,`includeMargin`,`minVersion`,`boostLevel`,`title`,`marginSize`,`imageSettings`]),{margin:h,cells:g,numCells:_,calculatedImageSettings:v}=Qc({value:r,level:a,minVersion:l,boostLevel:u,includeMargin:c,marginSize:f,imageSettings:p,size:i}),y=g,b=null;p!=null&&v!=null&&(v.excavation!=null&&(y=Yc(g,v.excavation)),b=H.createElement(`image`,{href:p.src,height:v.h,width:v.w,x:v.x+h,y:v.y+h,preserveAspectRatio:`none`,opacity:v.opacity,crossOrigin:v.crossOrigin}));let x=Jc(y,h);return H.createElement(`svg`,Pc({height:i,width:i,viewBox:`0 0 ${_} ${_}`,ref:t,role:`img`},m),!!d&&H.createElement(`title`,null,d),H.createElement(`path`,{fill:o,d:`M0,0 h${_}v${_}H0z`,shapeRendering:`crispEdges`}),H.createElement(`path`,{fill:s,d:x,shapeRendering:`crispEdges`}),b)});tl.displayName=`QRCodeSVG`;function nl({onClose:e}){let[t,n]=(0,H.useState)(null),[r,i]=(0,H.useState)(null),[a,o]=(0,H.useState)(!0),[s,c]=(0,H.useState)(!1),[l,u]=(0,H.useState)(!1),[d,f]=(0,H.useState)(!1),[p,m]=(0,H.useState)(null),[h,g]=(0,H.useState)(null),[_,v]=(0,H.useState)(null),[y,b]=(0,H.useState)(!1);(0,H.useEffect)(()=>{(async()=>{try{let[e,t]=await Promise.all([I.get(`/api/cloud/status`),I.get(`/api/tunnel`)]);n(e),i(t)}catch{}o(!1)})()},[]);let x=(0,H.useCallback)(e=>{navigator.clipboard.writeText(e),g(e),setTimeout(()=>g(null),2e3)},[]),S=(0,H.useCallback)(async()=>{c(!0),m(null);try{i({active:!0,url:(await I.post(`/api/tunnel/start`,{})).url,localUrl:r?.localUrl??null}),n(await I.get(`/api/cloud/status`))}catch(e){m(e instanceof Error?e.message:`Failed to start tunnel`)}finally{c(!1)}},[r]),C=(0,H.useCallback)(async()=>{m(null);try{let{cloud_url:e}=await I.get(`/api/cloud/login-url`),t=await fetch(`${e}/auth/device-code`,{method:`POST`,headers:{"Content-Type":`application/json`}});if(!t.ok)throw Error(`Failed to get device code`);let r=await t.json();v({userCode:r.user_code,verifyUrl:r.verification_uri}),b(!0);let i=(r.interval||5)*1e3,a=Date.now()+r.expires_in*1e3,o=setInterval(async()=>{if(Date.now()>a){clearInterval(o),b(!1),v(null),m(`Login expired. Try again.`);return}try{let t=await fetch(`${e}/auth/device-code/poll`,{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({device_code:r.device_code})});if(!t.ok)return;let i=await t.json();i.status===`approved`&&i.access_token&&i.email&&(clearInterval(o),b(!1),v(null),await I.post(`/api/cloud/login`,{access_token:i.access_token,email:i.email,cloud_url:e}),n(await I.get(`/api/cloud/status`)))}catch{}},i)}catch(e){m(e instanceof Error?e.message:`Failed to start login`),b(!1),v(null)}},[]),w=(0,H.useCallback)(async()=>{u(!0),m(null);try{r?.active||i({active:!0,url:(await I.post(`/api/tunnel/start`,{})).url,localUrl:r?.localUrl??null}),await I.post(`/api/cloud/link`,{}),n(await I.get(`/api/cloud/status`))}catch(e){m(e instanceof Error?e.message:`Failed to link device`)}finally{u(!1)}},[r]),T=(0,H.useCallback)(async()=>{if(confirm(`Unlink this device from PPM Cloud? It will no longer appear on your cloud dashboard.`)){f(!0);try{await I.post(`/api/cloud/unlink`,{}),n(await I.get(`/api/cloud/status`))}catch{}f(!1)}},[]),E=(0,H.useCallback)(async()=>{let e=t?.linked?`Sign out from PPM Cloud? This will also unlink your device.`:`Sign out from PPM Cloud?`;if(confirm(e)){if(t?.linked)try{await I.post(`/api/cloud/unlink`,{})}catch{}await I.post(`/api/cloud/logout`,{}),n(e=>e?{...e,logged_in:!1,email:null,linked:!1,device_name:null,device_id:null}:null)}},[t?.linked]),D=r?.url||t?.tunnel_url;return(0,U.jsxs)(`div`,{className:`w-72 bg-background border border-border rounded-lg shadow-lg p-3 space-y-3`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5`,children:[(0,U.jsx)(wt,{className:`size-4 text-primary`}),(0,U.jsx)(`span`,{className:`text-sm font-medium text-foreground`,children:`PPM Cloud`})]}),(0,U.jsx)(`button`,{onClick:e,className:`text-text-subtle hover:text-foreground`,children:(0,U.jsx)(Pe,{className:`size-3.5`})})]}),a&&(0,U.jsxs)(`div`,{className:`flex items-center gap-2 text-muted-foreground text-xs py-2`,children:[(0,U.jsx)(V,{className:`size-4 animate-spin`}),(0,U.jsx)(`span`,{children:`Loading...`})]}),!a&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`space-y-1.5`,children:t?.logged_in?(0,U.jsxs)(`div`,{className:`flex items-center justify-between`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,U.jsx)(`div`,{className:`size-2 rounded-full bg-green-500 shrink-0`}),(0,U.jsx)(`span`,{className:`text-xs text-foreground truncate`,children:t.email})]}),(0,U.jsx)(`button`,{onClick:E,className:`text-text-subtle hover:text-foreground p-1 rounded hover:bg-muted transition-colors shrink-0`,title:`Sign out`,children:(0,U.jsx)(ln,{className:`size-3`})})]}):_?(0,U.jsxs)(`div`,{className:`space-y-2 text-center`,children:[(0,U.jsx)(`p`,{className:`text-xs text-muted-foreground`,children:`Open the link below and enter the code:`}),(0,U.jsx)(`div`,{className:`font-mono text-2xl font-bold tracking-[0.3em] text-primary`,children:_.userCode}),(0,U.jsx)(`a`,{href:_.verifyUrl,target:`_blank`,rel:`noopener noreferrer`,className:`text-xs text-primary hover:underline`,children:_.verifyUrl}),y&&(0,U.jsxs)(`div`,{className:`flex items-center justify-center gap-1.5 text-xs text-muted-foreground`,children:[(0,U.jsx)(V,{className:`size-3 animate-spin`}),(0,U.jsx)(`span`,{children:`Waiting for verification...`})]})]}):(0,U.jsxs)(`button`,{onClick:C,className:`w-full flex items-center justify-center gap-1.5 px-3 py-2 text-xs font-medium rounded-md border border-border hover:bg-muted transition-colors`,children:[(0,U.jsx)(wt,{className:`size-3.5`}),`Sign in to PPM Cloud`]})}),t?.logged_in&&(0,U.jsx)(`div`,{className:`space-y-1.5`,children:t.linked?(0,U.jsxs)(`div`,{className:`flex items-center justify-between text-xs`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5 min-w-0`,children:[(0,U.jsx)(on,{className:`size-3 text-primary shrink-0`}),(0,U.jsx)(`span`,{className:`text-foreground truncate`,children:t.device_name})]}),(0,U.jsx)(`button`,{onClick:T,disabled:d,className:`text-text-subtle hover:text-destructive p-1 rounded hover:bg-muted transition-colors shrink-0`,title:`Unlink device`,children:d?(0,U.jsx)(V,{className:`size-3 animate-spin`}):(0,U.jsx)(Un,{className:`size-3`})})]}):(0,U.jsx)(`button`,{onClick:w,disabled:l,className:`w-full flex items-center justify-center gap-1.5 px-3 py-1.5 text-xs font-medium rounded-md bg-primary text-primary-foreground hover:bg-primary/90 transition-colors disabled:opacity-50`,children:l?(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(V,{className:`size-3.5 animate-spin`}),` Linking...`]}):(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(on,{className:`size-3.5`}),` Link this machine`]})})}),(0,U.jsx)(`div`,{className:`border-t border-border`}),r?.localUrl&&(0,U.jsxs)(`div`,{className:`space-y-1`,children:[(0,U.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Local Network`}),(0,U.jsx)(rl,{url:r.localUrl,copied:h,onCopy:x})]}),!D&&!s&&(0,U.jsxs)(`button`,{onClick:S,className:`w-full flex items-center justify-center gap-1.5 px-3 py-1.5 text-xs font-medium rounded-md bg-primary text-primary-foreground hover:bg-primary/90 transition-colors`,children:[(0,U.jsx)(Fn,{className:`size-3.5`}),`Start Sharing`]}),s&&(0,U.jsxs)(`div`,{className:`flex flex-col items-center gap-2 py-2`,children:[(0,U.jsx)(V,{className:`size-5 animate-spin text-primary`}),(0,U.jsx)(`span`,{className:`text-xs text-muted-foreground`,children:`Starting tunnel...`})]}),D&&(0,U.jsxs)(`div`,{className:`space-y-1.5`,children:[(0,U.jsx)(`span`,{className:`text-[10px] font-medium text-muted-foreground uppercase tracking-wide`,children:`Public URL`}),(0,U.jsx)(`div`,{className:`flex justify-center`,children:(0,U.jsx)(`div`,{className:`p-3 rounded-lg`,style:{backgroundColor:`#ffffff`,colorScheme:`light`},children:(0,U.jsx)(tl,{value:D,size:180,bgColor:`#ffffff`,fgColor:`#000000`,level:`L`,style:{display:`block`}})})}),(0,U.jsx)(rl,{url:D,copied:h,onCopy:x})]}),t?.logged_in&&t.linked&&(0,U.jsxs)(`a`,{href:t.cloud_url+`/dashboard`,target:`_blank`,rel:`noopener noreferrer`,className:`flex items-center justify-center gap-1.5 w-full px-3 py-1.5 text-xs text-muted-foreground hover:text-foreground rounded-md border border-border hover:bg-muted transition-colors`,children:[(0,U.jsx)(Ot,{className:`size-3`}),`Open Cloud Dashboard`]}),p&&(0,U.jsx)(`p`,{className:`text-xs text-destructive`,children:p})]})]})}function rl({url:e,copied:t,onCopy:n}){return(0,U.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,U.jsx)(`input`,{readOnly:!0,value:e,className:`flex-1 text-xs font-mono text-foreground bg-muted px-2 py-1.5 rounded border border-border truncate`,onClick:e=>e.target.select()}),(0,U.jsx)(`button`,{onClick:()=>n(e),className:`flex items-center justify-center size-7 rounded border border-border text-muted-foreground bg-muted hover:bg-accent hover:text-foreground transition-colors shrink-0`,title:`Copy URL`,children:t===e?(0,U.jsx)(he,{className:`size-3.5 text-primary`}):(0,U.jsx)(Tt,{className:`size-3.5`})})]})}var il=`hienlh/ppm`;async function al(e,t){let n=`(could not fetch)`;try{let e=ze(),t=await(await fetch(`/api/logs/recent`,e?{headers:{Authorization:`Bearer ${e}`}}:{})).json();t.ok&&(n=t.data.logs||`(empty)`)}catch{}let r=``;if(t?.sessionId&&t?.projectName)try{let e=await I.get(`${F(t.projectName)}/chat/sessions/${t.sessionId}/logs?tail=100`);e.logs&&(r=e.logs)}catch{}return[`## Environment`,`- PPM: v${e??`unknown`}`,`- Browser: ${navigator.userAgent}`,``,`## Description`,`<!-- Describe the bug -->`,``,`## Steps to Reproduce`,`1. `,``,`## Expected Behavior`,``,...r?[`## Chat Session Logs (${t?.sessionId?.slice(0,8)})`,"```",r,"```",``]:[],`## Server Logs (last 30 lines)`,"```",n,"```"].join(`
19
- `)}function ol(e){let t=`https://github.com/${il}/issues/new?title=bug%3A%20&body=${encodeURIComponent(e)}`;window.open(t,`_blank`)}async function sl(e){try{return await navigator.clipboard.writeText(e),!0}catch{return!1}}function cl(e,t){al(e,t).then(e=>{window.dispatchEvent(new CustomEvent(`open-bug-report`,{detail:e}))})}var ll=[`linear-gradient(135deg, #667eea, #764ba2)`,`linear-gradient(135deg, #f5576c, #f093fb)`,`linear-gradient(135deg, #4facfe, #00c6ff)`,`linear-gradient(135deg, #43e97b, #38f9d7)`,`linear-gradient(135deg, #fa709a, #fee140)`,`linear-gradient(135deg, #a18cd1, #6a3de8)`,`linear-gradient(135deg, #fd7043, #ff8a65)`,`linear-gradient(135deg, #26c6da, #0097a7)`,`linear-gradient(135deg, #ab47bc, #7b1fa2)`,`linear-gradient(135deg, #ef5350, #b71c1c)`,`linear-gradient(135deg, #1976d2, #42a5f5)`,`linear-gradient(135deg, #2e7d32, #66bb6a)`];function ul(e,t){return e??ll[t%ll.length]}function dl(e,t){let n=e.split(/[-_.\s]+/).filter(Boolean),r=(n[0]?.[0]??e[0]??`?`).toUpperCase(),i=n.length>1?r+(n[1][0]??``).toUpperCase():r,a=t.filter(t=>t!==e);if(!a.map(e=>(e.split(/[-_.\s]+/).filter(Boolean)[0]?.[0]??e[0]??``).toUpperCase()).includes(r))return r;if(!a.map(e=>{let t=e.split(/[-_.\s]+/).filter(Boolean),n=(t[0]?.[0]??e[0]??``).toUpperCase(),r=t.length>1?(t[1][0]??``).toUpperCase():n;return t.length>1?n+r:n}).includes(i))return i;let o=t.indexOf(e);return String(o>=0?o+1:`?`)}function fl({onSuccess:e,onCancel:t,footerClassName:n}){let{addProject:r}=Ye(q(e=>({addProject:e.addProject}))),[i,a]=(0,H.useState)(``),[o,s]=(0,H.useState)(``),[c,l]=(0,H.useState)([]),[u,d]=(0,H.useState)(!1),[f,p]=(0,H.useState)(!1),[m,h]=(0,H.useState)(!1),[g,_]=(0,H.useState)(``),v=(0,H.useRef)(null),y=(0,H.useRef)(null);(0,H.useEffect)(()=>{if(v.current&&clearTimeout(v.current),!i.trim()){l([]),d(!1);return}v.current=setTimeout(async()=>{p(!0);try{l(await I.get(`/api/projects/suggest-dirs?q=${encodeURIComponent(i)}`)??[]),d(!0)}catch{l([])}finally{p(!1)}},250)},[i]),(0,H.useEffect)(()=>{function e(e){y.current&&!y.current.contains(e.target)&&d(!1)}return document.addEventListener(`mousedown`,e),()=>document.removeEventListener(`mousedown`,e)},[]);function b(e){a(e.path),o||s(e.name),d(!1)}async function x(t){if(t?.preventDefault(),!i.trim()){_(`Path is required`);return}_(``),h(!0);try{await r(i.trim(),o.trim()||void 0),e()}catch(e){_(e instanceof Error?e.message:`Failed to add project`)}finally{h(!1)}}return(0,U.jsxs)(`form`,{onSubmit:x,className:`flex flex-col gap-3`,children:[(0,U.jsxs)(`div`,{ref:y,className:`relative`,children:[(0,U.jsx)(`label`,{className:`block text-xs font-medium text-foreground mb-1`,children:`Project path`}),(0,U.jsxs)(`div`,{className:`flex gap-1.5 items-center`,children:[(0,U.jsxs)(`div`,{className:`relative flex items-center flex-1`,children:[(0,U.jsx)(Ht,{className:`absolute left-2.5 size-3.5 text-text-subtle pointer-events-none`}),(0,U.jsx)(`input`,{type:`text`,value:i,onChange:e=>{a(e.target.value),_(``)},onFocus:()=>c.length>0&&d(!0),placeholder:`/path/to/project`,className:`w-full pl-8 pr-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`,autoFocus:!0,autoComplete:`off`}),f&&(0,U.jsx)(V,{className:`absolute right-2.5 size-3.5 text-text-subtle animate-spin`})]}),(0,U.jsx)(Gs,{mode:`folder`,onSelect:e=>{a(e),o||s(e.split(`/`).pop()??``),_(``)}})]}),u&&c.length>0&&(0,U.jsx)(`div`,{className:`absolute top-full left-0 right-0 mt-1 z-10 bg-popover border border-border rounded-md shadow-md max-h-48 overflow-y-auto`,children:c.map(e=>(0,U.jsxs)(`button`,{type:`button`,onMouseDown:()=>b(e),className:`w-full flex flex-col items-start px-3 py-2 text-left hover:bg-accent/50 transition-colors`,children:[(0,U.jsx)(`span`,{className:`text-sm font-medium truncate w-full`,children:e.name}),(0,U.jsx)(`span`,{className:`text-xs text-text-subtle truncate w-full`,children:e.path})]},e.path))})]}),(0,U.jsxs)(`div`,{children:[(0,U.jsxs)(`label`,{className:`block text-xs font-medium text-foreground mb-1`,children:[`Display name `,(0,U.jsx)(`span`,{className:`text-muted-foreground`,children:`(optional)`})]}),(0,U.jsx)(`input`,{type:`text`,value:o,onChange:e=>s(e.target.value),placeholder:`my-project`,className:`w-full px-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`})]}),g&&(0,U.jsx)(`p`,{className:`text-xs text-destructive`,children:g}),(0,U.jsxs)(`div`,{className:R(`flex justify-end gap-2 pt-1`,n),children:[(0,U.jsx)(`button`,{type:`button`,onClick:t,className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,U.jsx)(`button`,{type:`submit`,disabled:m||!i.trim(),className:`px-3 py-1.5 text-sm bg-primary text-white rounded-md hover:bg-primary/90 transition-colors disabled:opacity-50`,children:m?`Adding…`:`Add Project`})]})]})}var pl=(0,H.memo)(function({name:e,color:t,active:n,allNames:r}){let i=dl(e,r),a=Ia((0,H.useMemo)(()=>Ra(e),[e]));return(0,U.jsxs)(`div`,{className:`relative`,children:[(0,U.jsx)(`div`,{className:R(`size-10 rounded-full flex items-center justify-center text-xs font-bold text-white select-none shrink-0`,n&&`ring-2 ring-primary ring-offset-2 ring-offset-background`),style:{background:t},children:i}),a&&(0,U.jsx)(`div`,{className:R(`absolute -top-0.5 -right-0.5 size-2.5 rounded-full border-2 border-background`,Fa(a))})]})});function ml({current:e,onChange:t}){return(0,U.jsx)(`div`,{className:`flex flex-wrap gap-2`,children:ll.map(n=>(0,U.jsx)(`button`,{type:`button`,onClick:()=>t(n),className:R(`size-8 rounded-full border-2 transition-all`,e===n?`border-primary scale-110`:`border-transparent hover:scale-105`),style:{background:n}},n))})}var hl=(0,H.memo)(function(){let{projects:e,activeProject:t,setActiveProject:n,setProjectColor:r,reorderProjects:i,renameProject:a,deleteProject:o,customOrder:s}=Ye(q(e=>({projects:e.projects,activeProject:e.activeProject,setActiveProject:e.setActiveProject,setProjectColor:e.setProjectColor,reorderProjects:e.reorderProjects,renameProject:e.renameProject,deleteProject:e.deleteProject,customOrder:e.customOrder})));B(e=>e.openTab);let c=L(e=>e.version),l=(0,H.useCallback)(()=>cl(c),[c]),[u,d]=(0,H.useState)(null),[f,p]=(0,H.useState)(null),m=Je(e,s),h=m.map(e=>e.name),[g,_]=(0,H.useState)(!1),[v,y]=(0,H.useState)(``),[b,x]=(0,H.useState)(``),[S,C]=(0,H.useState)(!1),[w,T]=(0,H.useState)(``),[E,D]=(0,H.useState)(!1),[ee,O]=(0,H.useState)(!1),[te,ne]=(0,H.useState)(``),[re,ie]=(0,H.useState)(``),[ae,k]=(0,H.useState)(!1),[A,se]=(0,H.useState)(!1),ce=(0,H.useRef)(null),le=(0,H.useRef)(null),j=(0,H.useRef)(!1),ue=(0,H.useRef)(!1),de=(0,H.useRef)(typeof window<`u`&&window.matchMedia(`(hover: hover) and (pointer: fine)`).matches);(0,H.useEffect)(()=>()=>{ce.current&&clearTimeout(ce.current),le.current&&clearTimeout(le.current)},[]);let fe=(0,H.useCallback)(()=>{de.current&&(j.current=!0,le.current&&=(clearTimeout(le.current),null),ce.current=setTimeout(()=>se(!0),150))},[]),pe=(0,H.useCallback)(()=>{de.current&&(j.current=!1,ce.current&&=(clearTimeout(ce.current),null),!ue.current&&(le.current=setTimeout(()=>se(!1),300)))},[]),me=(0,H.useCallback)(e=>{ue.current=e,!e&&!j.current&&(le.current=setTimeout(()=>se(!1),300))},[]),he=(0,H.useCallback)(e=>{y(e),x(e),_(!0)},[]),ge=(0,H.useCallback)(e=>{T(e),C(!0)},[]),_e=(0,H.useCallback)((e,t)=>{ne(e),ie(t),O(!0)},[]);async function ve(){if(!b.trim()||b===v){_(!1);return}try{await a(v,b.trim())}catch{}_(!1)}async function ye(){try{await o(w)}catch{}C(!1)}async function be(){k(!0);try{await r(te,re),O(!1)}catch(e){console.error(`Failed to save color:`,e)}finally{k(!1)}}function Se(){D(!0)}let[we,Te]=(0,H.useState)(!1),N=(0,H.useRef)(null),[P,Ae]=(0,H.useState)(null);(0,H.useEffect)(()=>{if(!we||!N.current){Ae(null);return}let e=N.current.getBoundingClientRect();Ae({left:e.right+6,bottom:window.innerHeight-e.bottom})},[we]);function je(){let{sidebarCollapsed:e,toggleSidebar:t,setSidebarActiveTab:n}=L.getState();e&&t(),n(`settings`)}return(0,U.jsx)(`div`,{className:`hidden md:block relative w-[52px] min-w-[52px]`,onMouseEnter:fe,onMouseLeave:pe,children:(0,U.jsxs)(`aside`,{className:R(`absolute inset-y-0 left-0 flex flex-col bg-background border-r border-border overflow-hidden transition-[width] duration-200 ease-out`,A?`w-[240px] shadow-lg z-30`:`w-[52px]`),children:[(0,U.jsxs)(`div`,{className:`shrink-0 flex flex-col items-center justify-center h-[41px] border-b border-border gap-0.5`,children:[(0,U.jsx)(`span`,{className:`text-[11px] font-bold text-primary leading-none`,children:`PPM`}),c&&(0,U.jsxs)(`span`,{className:`text-[8px] text-text-subtle leading-none`,children:[`v`,c]})]}),(0,U.jsxs)(`div`,{className:R(`flex-1 overflow-y-auto py-2 flex flex-col gap-2 min-h-0`,A?`items-stretch px-1.5`:`items-center`),children:[m.map((e,r)=>{let a=ul(e.color,r),o=t?.name===e.name;return(0,U.jsxs)(Xi,{onOpenChange:me,children:[(0,U.jsx)(Zi,{asChild:!0,children:(0,U.jsxs)(`button`,{draggable:!0,onDragStart:()=>d(r),onDragOver:e=>{e.preventDefault(),p(r)},onDragLeave:()=>p(null),onDragEnd:()=>{d(null),p(null)},onDrop:()=>{if(u!=null&&u!==r){let e=m.map(e=>e.name),[t]=e.splice(u,1);e.splice(r,0,t),i(e)}d(null),p(null)},onClick:()=>n(e),className:R(`p-1 rounded-lg transition-all`,!A&&`hover:bg-surface-elevated`,u===r&&`opacity-40 scale-90`,f===r&&u!==r&&`ring-2 ring-accent`,A&&`w-full flex items-center gap-2 px-2 hover:bg-muted/50`),children:[(0,U.jsx)(pl,{name:e.name,color:a,active:o,allNames:h}),A&&(0,U.jsxs)(`div`,{className:`min-w-0 text-left`,children:[(0,U.jsx)(`p`,{className:`text-sm font-medium truncate`,children:e.name}),(0,U.jsx)(`p`,{className:`text-[11px] text-text-subtle truncate [direction:rtl] text-left`,children:e.path})]})]})}),(0,U.jsxs)(ta,{children:[(0,U.jsxs)(G,{onClick:()=>he(e.name),children:[(0,U.jsx)(oe,{className:`size-3.5 mr-2`}),` Rename`]}),(0,U.jsxs)(G,{onClick:()=>_e(e.name,a),children:[(0,U.jsx)(_n,{className:`size-3.5 mr-2`}),` Change Color`]}),(0,U.jsxs)(G,{onClick:()=>navigator.clipboard.writeText(e.path),children:[(0,U.jsx)(Tt,{className:`size-3.5 mr-2`}),` Copy Path`]}),(0,U.jsx)(na,{}),(0,U.jsxs)(G,{className:`text-destructive focus:text-destructive`,onClick:()=>ge(e.name),children:[(0,U.jsx)(Ie,{className:`size-3.5 mr-2`}),` Delete`]})]})]},e.name)}),(0,U.jsxs)(`button`,{onClick:Se,className:R(`border-2 border-dashed border-border flex items-center justify-center text-text-subtle hover:border-primary hover:text-primary transition-colors`,A?`w-full h-10 gap-2 rounded-lg px-2`:`size-10 rounded-full`),children:[(0,U.jsx)(xe,{className:`size-4 shrink-0`}),A&&(0,U.jsx)(`span`,{className:`text-sm whitespace-nowrap`,children:`Add Project`})]})]}),(0,U.jsxs)(`div`,{className:R(`shrink-0 flex flex-col gap-1 py-2 border-t border-border`,A?`items-stretch px-1.5`:`items-center`),children:[(0,U.jsxs)(`button`,{ref:N,onClick:()=>Te(!we),className:R(`flex items-center rounded-md transition-colors`,A?`w-full h-8 gap-2 px-2 justify-start`:`justify-center size-8`,we?`text-primary bg-primary/10`:`text-text-subtle hover:text-foreground hover:bg-surface-elevated`),children:[(0,U.jsx)(wt,{className:`size-4 shrink-0`}),A&&(0,U.jsx)(`span`,{className:`text-xs whitespace-nowrap`,children:`Cloud & Share`})]}),we&&P&&(0,Oc.createPortal)((0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-40`,onClick:()=>Te(!1)}),(0,U.jsx)(`div`,{className:`fixed z-50`,style:{left:P.left,bottom:P.bottom},children:(0,U.jsx)(nl,{onClose:()=>Te(!1)})})]}),document.body),(0,U.jsxs)(`button`,{onClick:l,className:R(`flex items-center rounded-md text-text-subtle hover:text-foreground hover:bg-surface-elevated transition-colors`,A?`w-full h-8 gap-2 px-2 justify-start`:`justify-center size-8`),children:[(0,U.jsx)(M,{className:`size-4 shrink-0`}),A&&(0,U.jsx)(`span`,{className:`text-xs whitespace-nowrap`,children:`Report Bug`})]}),(0,U.jsxs)(`button`,{onClick:je,className:R(`flex items-center rounded-md text-text-subtle hover:text-foreground hover:bg-surface-elevated transition-colors`,A?`w-full h-8 gap-2 px-2 justify-start`:`justify-center size-8`),children:[(0,U.jsx)(Pn,{className:`size-4 shrink-0`}),A&&(0,U.jsx)(`span`,{className:`text-xs whitespace-nowrap`,children:`Settings`})]})]}),(0,U.jsx)(Ee,{open:E,onOpenChange:D,children:(0,U.jsxs)(Oe,{className:`sm:max-w-sm`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:`Add Project`})}),(0,U.jsx)(fl,{onSuccess:()=>D(!1),onCancel:()=>D(!1)})]})}),(0,U.jsx)(Ee,{open:g,onOpenChange:_,children:(0,U.jsxs)(Oe,{className:`sm:max-w-sm`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:`Rename Project`})}),(0,U.jsx)(`input`,{type:`text`,value:b,onChange:e=>x(e.target.value),onKeyDown:e=>{e.key===`Enter`&&ve()},className:`w-full px-3 py-2 rounded-md border border-border bg-background text-sm focus:outline-none focus:ring-1 focus:ring-primary`,autoFocus:!0}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(`button`,{onClick:()=>_(!1),className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,U.jsx)(`button`,{onClick:ve,className:`px-3 py-1.5 text-sm bg-primary text-white rounded-md hover:bg-primary/90 transition-colors`,children:`Rename`})]})]})}),(0,U.jsx)(Ee,{open:S,onOpenChange:C,children:(0,U.jsxs)(Oe,{className:`sm:max-w-sm`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:`Delete Project`})}),(0,U.jsxs)(`p`,{className:`text-sm text-text-secondary`,children:[`Remove `,(0,U.jsx)(`strong`,{className:`text-foreground`,children:w}),` from PPM? The files on disk won't be deleted.`]}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(`button`,{onClick:()=>C(!1),className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,U.jsx)(`button`,{onClick:ye,className:`px-3 py-1.5 text-sm bg-destructive text-white rounded-md hover:bg-destructive/90 transition-colors`,children:`Delete`})]})]})}),(0,U.jsx)(Ee,{open:ee,onOpenChange:O,children:(0,U.jsxs)(Oe,{className:`sm:max-w-sm`,children:[(0,U.jsx)(De,{children:(0,U.jsx)(ke,{children:`Change Color`})}),(0,U.jsx)(ml,{current:re,onChange:ie}),(0,U.jsxs)(Ce,{children:[(0,U.jsx)(`button`,{onClick:()=>O(!1),className:`px-3 py-1.5 text-sm text-text-secondary hover:text-foreground transition-colors`,children:`Cancel`}),(0,U.jsx)(`button`,{onClick:be,disabled:ae,className:`px-3 py-1.5 text-sm bg-primary text-white rounded-md hover:bg-primary/90 transition-colors disabled:opacity-50`,children:ae?`Saving…`:`Save`})]})]})})]})})}),gl=[{type:`terminal`,label:`Terminal`},{type:`chat`,label:`AI Chat`},{type:`settings`,label:`Settings`}],_l=Object.fromEntries(gl.map(e=>[e.type,e.label])),vl={terminal:Bn,chat:dn,editor:jt,database:je,sqlite:je,postgres:je,"git-diff":Mt,settings:Pn,ports:_e,extension:En,"extension-webview":En,"conflict-editor":Mt};function yl({onMenuPress:e,onProjectsPress:t}){let n=z(e=>e.focusedPanelId),r=z(e=>e.panels),i=z(e=>e.grid),{tabs:a,tabPanelMap:o}=(0,H.useMemo)(()=>{let e=i.flat(),t=[],n={};for(let i of e){let e=r[i];if(e)for(let r of e.tabs)t.push(r),n[r.id]=i}return{tabs:t,tabPanelMap:n}},[r,i]),s=r[n]?.activeTabId??null,c=(0,H.useRef)(new Map),l=(0,H.useRef)(null),u=(0,H.useRef)(a.length),d=Ia(e=>e.notifications),{canScrollLeft:f,canScrollRight:p,scrollRight:m}=Va(l),h=Ua(l.current,c.current,a,d),[g,_]=(0,H.useState)(null),[v,y]=(0,H.useState)(!1),b=(0,H.useRef)(null);(0,H.useEffect)(()=>{a.length>u.current&&s&&c.current.get(s)?.scrollIntoView({behavior:`smooth`,block:`nearest`,inline:`nearest`}),u.current=a.length},[a.length,s]);let x=(0,H.useCallback)(e=>{b.current=setTimeout(()=>_(e),400)},[]),S=(0,H.useCallback)(()=>{b.current&&=(clearTimeout(b.current),null)},[]),C=g?a.find(e=>e.id===g):null,w=g?o[g]??n:n,T=r[w]?.tabs??[],E=g?T.findIndex(e=>e.id===g):-1,D=Ue(i,w)?i.length<3:!1,ee=i.flat().filter(e=>e!==w);function O(e){let t=o[e]??n,r=(z.getState().panels[t]?.tabs??[]).findIndex(t=>t.id===e);r>0&&z.getState().reorderTab(e,t,r-1)}function ne(e){let t=o[e]??n,r=z.getState().panels[t]?.tabs??[],i=r.findIndex(t=>t.id===e);i<r.length-1&&z.getState().reorderTab(e,t,i+1)}function re(e){let t=o[e]??n;z.getState().splitPanel(`down`,e,t)}function ie(e,t){let r=o[e]??n;z.getState().moveTab(e,r,t)}let[ae,k]=(0,H.useState)(null);function A(e,t){let n=e.metadata?.filePath,r=e.metadata?.projectName;switch(t){case`copy-path`:n&&navigator.clipboard.writeText(n).catch(()=>{});break;case`download`:n&&r&&Ja(r,n);break;case`rename`:case`delete`:n&&k({action:t,tabId:e.id,node:{name:e.title,path:n,type:`file`}});break}_(null)}let{activeProject:se}=Ye.getState();function ce(e){let t=z.getState(),n=t.grid[0]?.[0]??t.focusedPanelId,r=e===`git-diff`||e===`terminal`||e===`chat`?{projectName:se?.name}:void 0;t.openTab({type:e,title:_l[e]??e,metadata:r,projectId:se?.name??null,closable:!0},n),y(!1)}let{activeProject:le,projects:j,customOrder:M}=Ye(q(e=>({activeProject:e.activeProject,projects:e.projects,customOrder:e.customOrder}))),ue=Je(j,M??null),de=ue.map(e=>e.name),fe=ue.findIndex(e=>e.name===le?.name),pe=le?ul(le.color,fe>=0?fe:0):`#4f86c6`,me=le?dl(le.name,de):null;return(0,U.jsxs)(`nav`,{className:`fixed bottom-0 left-0 right-0 md:hidden bg-background border-t border-border z-40 select-none`,children:[(0,U.jsxs)(`div`,{className:`flex items-center h-12`,children:[(0,U.jsxs)(`div`,{className:R(`flex items-center shrink-0 bg-background relative z-10 transition-all duration-200`,f?`rounded-r-2xl shadow-[6px_0_12px_-4px_rgba(0,0,0,0.12)]`:`border-r border-border`),children:[(0,U.jsx)(`button`,{onClick:e,className:`flex items-center justify-center size-12 shrink-0 text-text-secondary`,children:(0,U.jsx)(un,{className:`size-5`})}),(0,U.jsx)(`div`,{className:`w-px self-stretch bg-border shrink-0`}),(0,U.jsx)(`button`,{onClick:t,className:`flex items-center justify-center size-12 shrink-0 text-text-secondary`,title:`Switch project`,children:me?(0,U.jsx)(`div`,{className:`size-7 rounded-full flex items-center justify-center text-[10px] font-bold text-white`,style:{background:pe},children:me}):(0,U.jsx)(rn,{className:`size-5`})}),(0,U.jsx)(`div`,{className:`w-px self-stretch bg-border shrink-0`}),(0,U.jsxs)(`button`,{onClick:()=>ja(),className:R(`flex items-center justify-center shrink-0 text-text-secondary gap-1.5 h-12`,a.length===0?`px-4`:`w-12`),children:[(0,U.jsx)(xe,{className:`size-4`}),a.length===0&&(0,U.jsx)(`span`,{className:`text-xs`,children:`New Tab`})]})]}),(0,U.jsxs)(`div`,{className:`flex-1 min-w-0 relative flex items-center h-12 -ml-4`,children:[(0,U.jsx)(`div`,{ref:l,className:`flex-1 min-w-0 flex items-center h-12 overflow-x-auto scrollbar-none pl-4`,children:a.map(e=>{let t=vl[e.type]||En,n=e.id===s,r=e.type===`chat`?e.metadata?.sessionId:void 0,i=r?d.get(r):void 0,a=i&&i.count>0?i.type:null;return(0,U.jsxs)(`button`,{ref:t=>{t?c.current.set(e.id,t):c.current.delete(e.id)},onClick:()=>{z.getState().setActiveTab(e.id),r&&Ia.getState().clearForSession(r)},onTouchStart:()=>x(e.id),onTouchEnd:S,onTouchMove:S,onContextMenu:e=>e.preventDefault(),className:R(`flex items-center gap-1 px-3 h-12 whitespace-nowrap text-xs shrink-0 border-t-2 transition-colors`,n?`border-primary bg-surface text-primary`:`border-transparent text-text-secondary`),children:[(0,U.jsxs)(`span`,{className:`relative`,children:[(0,U.jsx)(t,{className:`size-4`}),a&&!n&&(0,U.jsx)(`span`,{className:R(`absolute -top-1 -right-1 size-2 rounded-full`,Fa(a))})]}),(0,U.jsx)(`span`,{className:`max-w-[80px] truncate`,children:e.title}),e.closable&&(0,U.jsx)(`span`,{role:`button`,tabIndex:0,onClick:t=>{t.stopPropagation(),z.getState().closeTab(e.id)},className:`ml-0.5 p-0.5 rounded hover:bg-surface-elevated`,children:(0,U.jsx)(Pe,{className:`size-3`})})]},e.id)})}),p&&(0,U.jsx)(`button`,{onClick:m,className:`absolute right-0 z-10 flex items-center justify-center size-8 bg-gradient-to-l from-background via-background to-transparent`,children:(0,U.jsxs)(`span`,{className:`relative`,children:[(0,U.jsx)(Se,{className:`size-3.5 text-text-secondary`}),h.right&&(0,U.jsx)(`span`,{className:R(`absolute -top-1 -left-0.5 size-1.5 rounded-full`,Fa(h.right))})]})})]})]}),v&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-50`,onClick:()=>y(!1)}),(0,U.jsxs)(`div`,{className:`fixed bottom-14 left-2 right-2 z-50 bg-surface border border-border rounded-lg shadow-lg overflow-hidden animate-in slide-in-from-bottom-2 duration-150`,children:[(0,U.jsx)(`div`,{className:`px-3 py-2 text-xs text-text-secondary border-b border-border`,children:`New Tab`}),gl.map(e=>{let t=vl[e.type];return(0,U.jsxs)(`button`,{onClick:()=>ce(e.type),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(t,{className:`size-4`}),` `,e.label]},e.type)})]})]}),C&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-50`,onClick:()=>_(null)}),(0,U.jsxs)(`div`,{className:`fixed bottom-14 left-2 right-2 z-50 bg-surface border border-border rounded-lg shadow-lg overflow-hidden animate-in slide-in-from-bottom-2 duration-150`,children:[(0,U.jsx)(`div`,{className:`px-3 py-2 text-xs text-text-secondary border-b border-border truncate`,children:C.title}),C.type===`editor`&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`button`,{onClick:()=>A(C,`copy-path`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(Tt,{className:`size-4`}),` Copy Path`]}),(0,U.jsxs)(`button`,{onClick:()=>A(C,`download`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(Ne,{className:`size-4`}),` Download`]}),(0,U.jsxs)(`button`,{onClick:()=>A(C,`rename`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(oe,{className:`size-4`}),` Rename`]}),(0,U.jsxs)(`button`,{onClick:()=>A(C,`delete`),className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-error active:bg-surface-elevated`,children:[(0,U.jsx)(Ie,{className:`size-4`}),` Delete`]}),(0,U.jsx)(`div`,{className:`h-px bg-border mx-2`})]}),C.closable&&(0,U.jsxs)(`button`,{onClick:()=>{z.getState().closeTab(g),_(null)},className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(Pe,{className:`size-4`}),` Close`]}),E>0&&(0,U.jsxs)(`button`,{onClick:()=>{O(g),_(null)},className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(te,{className:`size-4`}),` Move Left`]}),E<T.length-1&&(0,U.jsxs)(`button`,{onClick:()=>{ne(g),_(null)},className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(dt,{className:`size-4`}),` Move Right`]}),D&&T.length>1&&(0,U.jsxs)(`button`,{onClick:()=>{re(g),_(null)},className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(In,{className:`size-4`}),` Split to Bottom`]}),ee.map((e,t)=>(0,U.jsxs)(`button`,{onClick:()=>{ie(g,e),_(null)},className:`flex items-center gap-2 w-full px-3 py-2.5 text-sm text-foreground active:bg-surface-elevated`,children:[(0,U.jsx)(hn,{className:`size-4`}),` Move to Panel `,t+1===1?`Top`:`Bottom`]},e))]})]}),ae&&(0,U.jsx)(Za,{action:ae.action,node:ae.node,projectName:se?.name??``,onClose:()=>k(null),onRefresh:()=>{se&&Xe.getState().fetchTree(se.name),ae.action===`delete`&&z.getState().closeTab(ae.tabId)}})]})}var bl=[{id:`explorer`,label:`Explorer`,icon:Ht},{id:`git`,label:`Git`,icon:Jt},{id:`database`,label:`Database`,icon:je},{id:`settings`,label:`Settings`,icon:Pn}];function xl({isOpen:e,onClose:t,initialTab:n}){let{activeProject:r}=Ye(q(e=>({activeProject:e.activeProject}))),i=L(e=>e.version),a=L(e=>e.jiraEnabled),[o,s]=(0,H.useState)(n??`explorer`),c=(0,H.useMemo)(()=>{if(!a)return bl;let e=[...bl],t=e.findIndex(e=>e.id===`settings`);return e.splice(t,0,{id:`jira`,label:`Jira`,icon:M}),e},[a]);(0,H.useEffect)(()=>{n&&s(n)},[n]);let l=(0,H.useCallback)(()=>cl(i),[i]);return(0,U.jsxs)(`div`,{className:R(`fixed inset-0 z-50 md:hidden transition-opacity duration-200`,e?`opacity-100`:`opacity-0 pointer-events-none`),children:[(0,U.jsx)(`div`,{className:`absolute inset-0 bg-black/50`,onClick:t,"aria-label":`Close drawer`}),(0,U.jsxs)(`div`,{className:R(`fixed left-0 top-0 bottom-0 w-[90vw] bg-background border-r border-border`,`z-50 flex flex-col transition-transform duration-300 ease-out`,e?`translate-x-0`:`-translate-x-full`),children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-3 border-b border-border shrink-0`,children:[(0,U.jsx)(`span`,{className:`text-sm font-bold text-primary tracking-tight`,children:r?.name??`PPM`}),(0,U.jsx)(`button`,{onClick:t,className:`flex items-center justify-center size-8 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,U.jsx)(Pe,{className:`size-4`})})]}),(0,U.jsxs)(`div`,{className:`flex-1 overflow-y-auto min-h-0`,children:[o===`explorer`&&(r?(0,U.jsx)(Co,{onFileOpen:t}):(0,U.jsx)(`p`,{className:`px-4 py-6 text-xs text-text-secondary text-center`,children:`Select a project from the bottom nav bar`})),o===`git`&&(0,U.jsx)(zo,{metadata:{projectName:r?.name},onNavigate:t}),o===`database`&&(0,U.jsx)(Zs,{}),o===`jira`&&(0,U.jsx)(Cc,{}),o===`settings`&&(0,U.jsx)(js,{})]}),(0,U.jsxs)(`div`,{className:`shrink-0 border-t border-border`,children:[(0,U.jsx)(`div`,{className:`flex items-center`,children:c.map(e=>{let t=e.icon;return(0,U.jsxs)(`button`,{onClick:()=>s(e.id),className:R(`flex-1 flex flex-col items-center gap-0.5 py-2.5 text-[10px] transition-colors`,o===e.id?`text-primary`:`text-text-secondary`),children:[(0,U.jsx)(t,{className:`size-4`}),(0,U.jsx)(`span`,{children:e.label})]},e.id)})}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-t border-border`,children:[i&&(0,U.jsxs)(`span`,{className:`text-[10px] text-text-subtle`,children:[`v`,i]}),(0,U.jsxs)(`button`,{onClick:l,className:`flex items-center gap-1 text-[10px] text-text-subtle hover:text-text-secondary transition-colors`,children:[(0,U.jsx)(M,{className:`size-3`}),(0,U.jsx)(`span`,{children:`Report Bug`})]})]})]})]})]})}function Sl({name:e,color:t,allNames:n}){let r=dl(e,n);return(0,U.jsx)(`div`,{className:`size-10 rounded-full flex items-center justify-center text-xs font-bold text-white shrink-0`,style:{background:t},children:r})}function Cl({isOpen:e,onClose:t}){let{projects:n,activeProject:r,setActiveProject:i,setProjectColor:a,reorderProjects:o,renameProject:s,deleteProject:c,customOrder:l}=Ye(q(e=>({projects:e.projects,activeProject:e.activeProject,setActiveProject:e.setActiveProject,setProjectColor:e.setProjectColor,reorderProjects:e.reorderProjects,renameProject:e.renameProject,deleteProject:e.deleteProject,customOrder:e.customOrder})));B(e=>e.openTab);let u=L(e=>e.version),d=Je(n,l),f=d.map(e=>e.name),[p,m]=(0,H.useState)(`list`),[h,g]=(0,H.useState)(null),[_,v]=(0,H.useState)(``),[y,b]=(0,H.useState)(!1),x=(0,H.useRef)(null),[S,C]=(0,H.useState)(null),[w,T]=(0,H.useState)(``),E=(0,H.useCallback)(e=>{x.current=setTimeout(()=>g(e),400)},[]),D=(0,H.useCallback)(()=>{x.current&&=(clearTimeout(x.current),null)},[]);function ee(){m(`list`),t()}function O(e){let t=n.find(t=>t.name===e);t&&(i(t),ee())}function ne(){m(`add`)}function re(){if(ee(),window.innerWidth<768){window.dispatchEvent(new Event(`open-mobile-settings`));return}let{sidebarCollapsed:e,toggleSidebar:t,setSidebarActiveTab:n}=L.getState();e&&t(),n(`settings`)}async function ie(){if(!S||!w.trim()||w===S){C(null);return}try{await s(S,w.trim())}catch{}C(null)}async function ae(e){g(null);try{await c(e)}catch{}}async function k(e,t){try{await a(e,t),b(!1),g(null)}catch(e){console.error(`Failed to save color:`,e)}}h&&d.find(e=>e.name===h);let A=h?d.findIndex(e=>e.name===h):-1,se=h?[{label:`Rename`,icon:oe,onClick:()=>{T(h),C(h),g(null)}},{label:`Change Color`,icon:_n,onClick:()=>{let e=d.findIndex(e=>e.name===h),t=d[e];v(ul(t?.color,e)),b(!0)}},...A>0?[{label:`Move Up`,icon:ye,onClick:()=>{let e=d.map(e=>e.name),[t]=e.splice(A,1);e.splice(A-1,0,t),o(e),g(null)}}]:[],...A<d.length-1?[{label:`Move Down`,icon:be,onClick:()=>{let e=d.map(e=>e.name),[t]=e.splice(A,1);e.splice(A+1,0,t),o(e),g(null)}}]:[],{label:`Delete`,icon:Ie,destructive:!0,onClick:()=>ae(h)}]:[];return(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:R(`fixed inset-0 z-50 md:hidden transition-opacity duration-200`,e?`opacity-100`:`opacity-0 pointer-events-none`),onClick:ee,style:{backgroundColor:`rgba(0,0,0,0.5)`}}),(0,U.jsxs)(`div`,{className:R(`fixed bottom-0 left-0 right-0 z-50 md:hidden bg-background rounded-t-2xl border-t border-border shadow-2xl`,`transition-transform duration-300 ease-out`,e?`translate-y-0`:`translate-y-full`),children:[(0,U.jsx)(`div`,{className:`flex justify-center pt-3 pb-1`,children:(0,U.jsx)(`div`,{className:`w-10 h-1 rounded-full bg-border`})}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-b border-border`,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2`,children:[p===`add`&&(0,U.jsx)(`button`,{onClick:()=>m(`list`),className:`flex items-center justify-center size-7 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,U.jsx)(te,{className:`size-4`})}),(0,U.jsx)(`span`,{className:`text-sm font-semibold`,children:p===`add`?`Add Project`:`Projects`})]}),(0,U.jsx)(`button`,{onClick:ee,className:`flex items-center justify-center size-7 rounded-md hover:bg-surface-elevated transition-colors`,children:(0,U.jsx)(Pe,{className:`size-4`})})]}),p===`add`&&(0,U.jsx)(`div`,{className:`px-4 py-4`,children:(0,U.jsx)(fl,{onSuccess:()=>{m(`list`),t()},onCancel:()=>m(`list`),footerClassName:`pt-2`})}),(0,U.jsx)(`div`,{className:p===`add`?`hidden`:`max-h-[60vh] overflow-y-auto`,children:d.map((e,t)=>{let n=ul(e.color,t),i=r?.name===e.name,a=S===e.name;return(0,U.jsxs)(`div`,{className:R(`flex items-center gap-3 px-4 py-3 transition-colors active:bg-surface-elevated`,i&&`bg-accent/10`),onClick:()=>!a&&O(e.name),onTouchStart:()=>E(e.name),onTouchEnd:D,onTouchMove:D,children:[(0,U.jsx)(Sl,{name:e.name,color:n,allNames:f}),(0,U.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[a?(0,U.jsx)(`input`,{type:`text`,value:w,onChange:e=>T(e.target.value),onKeyDown:e=>{e.key===`Enter`&&ie(),e.key===`Escape`&&C(null)},onBlur:ie,onClick:e=>e.stopPropagation(),className:`w-full bg-transparent border-b border-primary text-sm outline-none`,autoFocus:!0}):(0,U.jsx)(`p`,{className:`text-sm font-medium truncate`,children:e.name}),(0,U.jsx)(`p`,{className:`text-xs text-text-subtle truncate`,children:e.path})]}),i&&(0,U.jsx)(he,{className:`size-4 text-primary shrink-0`})]},e.name)})}),(0,U.jsx)(`div`,{className:`border-t border-border`,children:(0,U.jsxs)(`button`,{onClick:ne,className:`w-full flex items-center gap-3 px-4 py-3 text-text-secondary hover:bg-surface-elevated transition-colors`,children:[(0,U.jsx)(xe,{className:`size-4 shrink-0`}),(0,U.jsx)(`span`,{className:`text-sm`,children:`Add Project`})]})}),(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-3 border-t border-border`,children:[(0,U.jsxs)(`button`,{onClick:re,className:`flex items-center gap-2 text-text-secondary hover:text-foreground transition-colors`,children:[(0,U.jsx)(Pn,{className:`size-4`}),(0,U.jsx)(`span`,{className:`text-sm`,children:`Settings`})]}),u&&(0,U.jsxs)(`span`,{className:`text-xs text-text-subtle`,children:[`v`,u]})]})]}),h&&!y&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-[60] md:hidden`,onClick:()=>g(null)}),(0,U.jsxs)(`div`,{className:`fixed bottom-0 left-0 right-0 z-[61] md:hidden bg-surface border-t border-border rounded-t-2xl shadow-2xl animate-in slide-in-from-bottom-2 duration-150`,children:[(0,U.jsx)(`div`,{className:`px-4 py-2 border-b border-border`,children:(0,U.jsx)(`p`,{className:`text-xs font-medium text-text-secondary`,children:h})}),se.map(e=>{let t=e.icon;return(0,U.jsxs)(`button`,{onClick:e.onClick,className:R(`w-full flex items-center gap-3 px-4 py-3 text-sm transition-colors active:bg-surface-elevated`,e.destructive?`text-destructive`:`text-foreground`),children:[(0,U.jsx)(t,{className:`size-4 shrink-0`}),e.label]},e.label)})]})]}),y&&h&&(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-[60] md:hidden`,onClick:()=>{b(!1),g(null)}}),(0,U.jsxs)(`div`,{className:`fixed bottom-0 left-0 right-0 z-[61] md:hidden bg-surface border-t border-border rounded-t-2xl shadow-2xl p-4 space-y-4`,children:[(0,U.jsx)(`p`,{className:`text-sm font-medium`,children:`Change Color`}),(0,U.jsx)(`div`,{className:`flex flex-wrap gap-3`,children:ll.map(e=>(0,U.jsx)(`button`,{type:`button`,onClick:()=>v(e),className:R(`size-9 rounded-full border-2 transition-all`,_===e?`border-primary scale-110`:`border-transparent`),style:{background:e}},e))}),(0,U.jsxs)(`div`,{className:`flex gap-2 pt-2`,children:[(0,U.jsx)(`button`,{onClick:()=>{b(!1),g(null)},className:`flex-1 py-2 text-sm text-text-secondary border border-border rounded-md`,children:`Cancel`}),(0,U.jsx)(`button`,{onClick:()=>k(h,_),className:`flex-1 py-2 text-sm bg-primary text-white rounded-md`,children:`Save`})]})]})]})]})}function wl({onSuccess:e}){let[t,n]=(0,H.useState)(``),r=L(e=>e.deviceName),[i,a]=(0,H.useState)(null),[o,s]=(0,H.useState)(!1);async function c(n){if(n.preventDefault(),t.trim()){s(!0),a(null);try{Re(t.trim());let n=await(await fetch(`/api/auth/check`,{headers:{Authorization:`Bearer ${t.trim()}`}})).json();if(!n.ok)throw Error(n.error??`Invalid token`);e()}catch(e){a(e instanceof Error?e.message:`Authentication failed`),localStorage.removeItem(`ppm-auth-token`)}finally{s(!1)}}}return(0,U.jsx)(`div`,{className:`min-h-dvh flex items-center justify-center bg-background p-4`,children:(0,U.jsxs)(`div`,{className:`w-full max-w-sm bg-surface rounded-lg border border-border p-6 space-y-6`,children:[(0,U.jsxs)(`div`,{className:`text-center space-y-2`,children:[(0,U.jsx)(`div`,{className:`flex items-center justify-center size-12 mx-auto rounded-full bg-surface-elevated`,children:(0,U.jsx)(de,{className:`size-6 text-primary`})}),(0,U.jsx)(`h1`,{className:`text-xl font-semibold text-foreground`,children:`PPM`}),r&&(0,U.jsx)(`p`,{className:`text-xs text-text-subtle bg-surface-elevated inline-block px-2 py-0.5 rounded-full`,children:r}),(0,U.jsx)(`p`,{className:`text-sm text-text-secondary`,children:`Enter your access password to unlock`})]}),(0,U.jsxs)(`form`,{onSubmit:c,className:`space-y-4`,children:[(0,U.jsx)(`div`,{children:(0,U.jsx)(P,{type:`password`,placeholder:`Auth token`,value:t,onChange:e=>n(e.target.value),className:`h-11 bg-background border-border`,autoFocus:!0})}),i&&(0,U.jsxs)(`div`,{className:`flex items-center gap-2 text-error text-sm`,children:[(0,U.jsx)(vt,{className:`size-4 shrink-0`}),(0,U.jsx)(`span`,{children:i})]}),(0,U.jsx)(N,{type:`submit`,disabled:o||!t.trim(),className:`w-full h-11`,children:o?`Checking...`:`Unlock`})]})]})})}var Tl=[`terminal`,`chat`,`editor`,`database`,`sqlite`,`postgres`,`git-diff`,`settings`,`ports`,`extension`];function El(){let e=window.location.pathname,t=new URLSearchParams(window.location.search).get(`openChat`),n=e.match(/^\/project\/([^/]+)(?:\/([^/]+)(\/.*)?)?/);if(!n)return{projectName:null,tabType:null,tabIdentifier:null,openChat:t};let r=decodeURIComponent(n[1]),i=n[2]??null,a=n[3]?n[3].slice(1):null;return i===`tab`?{projectName:r,tabType:null,tabIdentifier:null,openChat:t}:{projectName:r,tabType:Tl.includes(i)?i:null,tabIdentifier:a,openChat:t}}function Dl(e,t){if(!e||e===`__global__`)return`/`;let n=`/project/${encodeURIComponent(e)}`;if(!t)return n;let r=t.indexOf(`@`),i=r===-1?t:t.slice(0,r),a=i.indexOf(`:`);if(a===-1)n+=`/${i}`;else{let e=i.slice(0,a),t=i.slice(a+1);n+=`/${e}/${t.replace(/[?#]/g,encodeURIComponent)}`}return n}function Ol(e,t){return t?`${e}:${t}`:e}function kl(e,t,n){switch(e){case`editor`:return t?{filePath:t,projectName:n}:null;case`chat`:{if(!t)return null;let e=t.indexOf(`/`),r=e===-1?t:t.slice(e+1),i=e===-1?void 0:t.slice(0,e),a=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i.test(r)?r:void 0;return{...a&&{sessionId:a},...i&&{providerId:i},projectName:n}}case`terminal`:return{terminalIndex:parseInt(t??`1`,10),projectName:n};case`git-diff`:return t?{filePath:t,projectName:n}:null;case`settings`:return{};case`database`:{let[e,n]=(t??``).split(`:`);return e?{connectionId:e,tableName:n??``}:null}case`sqlite`:return t?{filePath:t,projectName:n}:null;case`postgres`:{let[e,n]=(t??``).split(`:`);return e?{connectionId:e,tableName:n??``}:null}case`ports`:return null;case`extension`:return t?{viewType:t,projectName:n}:null;default:return null}}function Al(e,t){switch(e){case`editor`:return t?.split(`/`).pop()??`File`;case`chat`:return`Chat`;case`terminal`:return`Terminal ${t??`1`}`;case`git-diff`:return t?.split(`/`).pop()??`Diff`;case`settings`:return`Settings`;case`database`:return t??`Database`;case`sqlite`:return t?.split(`/`).pop()??`SQLite`;case`postgres`:return t??`PostgreSQL`;case`ports`:return`Ports`;case`extension`:return t?t.split(`-`).map(e=>(e[0]?.toUpperCase()??``)+e.slice(1)).join(` `):`Extension`;default:return e}}function jl(e,t,n){let{tabs:r,setActiveTab:i,openTab:a}=B.getState(),o=Ol(e,t),s=r.find(e=>e.id===o);if(s){i(s.id);return}let c=kl(e,t,n);c&&a({type:e,title:Al(e,t),projectId:n,closable:!0,metadata:c})}function Ml(){let e=B(e=>e.activeTabId),t=B(e=>e.currentProject),n=(0,H.useRef)(!1);(0,H.useEffect)(()=>{if(n.current){n.current=!1;return}let r=Dl(t,e);window.location.pathname!==r&&window.history.pushState(null,``,r)},[e,t]),(0,H.useEffect)(()=>{function e(){let{tabType:e,tabIdentifier:t}=El();if(!e)return;n.current=!0;let{tabs:r,setActiveTab:i}=B.getState(),a=Ol(e,t),o=r.find(e=>e.id===a);if(o)i(o.id);else{let n=B.getState().currentProject;n&&jl(e,t,n)}}return window.addEventListener(`popstate`,e),()=>window.removeEventListener(`popstate`,e)},[])}var Nl=`#3b82f6`,Pl=`#f59e0b`,Fl=`#ef4444`;function Il(e){return`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
20
- <rect width="32" height="32" rx="6" fill="${Nl}"/>
21
- <text x="16" y="22" text-anchor="middle" font-family="system-ui,sans-serif" font-weight="700" font-size="11" fill="white">PPM</text>
22
- ${e?`<circle cx="26" cy="6" r="5" fill="${Fl}"/>`:``}
23
- </svg>`}function J(e,t){return`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
24
- <rect width="32" height="32" rx="6" fill="${Pl}"/>
25
- ${[10,16,22].map((t,n)=>`<circle cx="${t}" cy="${n===e?13:17}" r="3" fill="white"/>`).join(``)}
26
- ${t?`<circle cx="26" cy="6" r="5" fill="${Fl}"/>`:``}
27
- </svg>`}var Y=e=>`data:image/svg+xml,${encodeURIComponent(e)}`,X=[Y(Il(!1)),Y(Il(!0))],Z=[0,1,2,-1].map(e=>[Y(J(e,!1)),Y(J(e,!0))]),Q=Z.length;function Ll(e,t=null){let n=document.getElementById(`ppm-favicon`);if(!n)return;let r=e?1:0;t===null?n.href=X[r]:n.href=Z[(t%Q+Q)%Q][r]}function Rl(e,t,n){let r=[t,n||null,`PPM`].filter(Boolean).join(` - `);return e>0?`(${e}) ${r}`:r}function zl(){let e=Ye(e=>e.activeProject),t=L(e=>e.deviceName),n=za(Ba),r=(0,H.useRef)(null);(0,H.useEffect)(()=>{let i=()=>La(Ia.getState())>0,a=()=>{let n=La(Ia.getState());document.title=Rl(n,e?.name,t??void 0)};if(a(),n){let e=0;Ll(i(),e),r.current=setInterval(()=>{e=(e+1)%Q,Ll(i(),e)},300)}else Ll(i());let o=Ia.subscribe(()=>{a(),n||Ll(i())});return()=>{o(),r.current&&=(clearInterval(r.current),null)}},[e?.name,t,n])}var Bl=15e3,Vl=Le((e,t)=>({isDown:!1,downSince:null,showOverlay:!1,markDown:()=>{let{downSince:n}=t(),r=Date.now(),i=n??r;e({isDown:!0,downSince:i,showOverlay:r-i>=Bl})},markUp:()=>{e({isDown:!1,downSince:null,showOverlay:!1})}})),Hl=1e4,Ul=2e3;function Wl(){(0,H.useEffect)(()=>{let e=!1,t,{markDown:n,markUp:r}=Vl.getState();async function i(){try{let t=await fetch(`/api/health`,{cache:`no-store`});if(t.ok&&e){if(r(),`caches`in window){let e=await caches.keys();await Promise.all(e.map(e=>caches.delete(e)))}window.location.reload();return}t.ok&&r(),e=!1}catch{e=!0,n()}t=setTimeout(i,e?Ul:Hl)}return t=setTimeout(i,Hl),()=>clearTimeout(t)},[])}function Gl(e){let t=Math.max(e.lastIndexOf(`/`),e.lastIndexOf(`\\`));return t>=0?e.slice(t+1):e}function Kl(e,t){let n=0,r=0,i=-1;for(let a=0;a<e.length;a++){if(n=t.indexOf(e[a],n),n===-1)return-1;i>=0&&(r+=n-i-1),i=n,n++}return r}function ql(e,t,n){let r=e.toLowerCase();t.toLowerCase();let i=n.toLowerCase(),a=Gl(i),o=n.split(`/`).length;if(a===r)return{tier:0,offset:0,nameLen:t.length,depth:o};if(a.startsWith(r))return{tier:1,offset:0,nameLen:t.length,depth:o};let s=a.indexOf(r);if(s>=0)return{tier:2,offset:s,nameLen:t.length,depth:o};let c=i.indexOf(r);if(c>=0)return{tier:3,offset:c,nameLen:t.length,depth:o};let l=Kl(r,a);if(l>=0)return{tier:4,offset:l,nameLen:t.length,depth:o};let u=Kl(r,i);return u>=0?{tier:5,offset:u,nameLen:t.length,depth:o}:null}function Jl(e,t){return e.tier-t.tier||e.offset-t.offset||e.nameLen-t.nameLen||e.depth-t.depth}var Yl=typeof navigator<`u`&&/Mac|iPhone|iPad/.test(navigator.userAgent),Xl={"git-branch":Jt,database:je,refresh:Fe,plus:xe,terminal:Bn,settings:Pn,search:kn,"file-code":jt,globe:_e};function Zl(e){return e?e.replace(/Mod\+/g,Yl?`⌘`:`Ctrl+`).replace(/Alt\+/g,Yl?`⌥`:`Alt+`).replace(/Shift\+/g,Yl?`⇧`:`Shift+`).replace(/Meta\+/g,`⌘`).replace(/Ctrl\+/g,Yl?`⌃`:`Ctrl+`):``}function Ql(e){let t=[];for(let n of e)n.type===`file`&&t.push({name:n.name,path:n.path}),n.children&&t.push(...Ql(n.children));return t}function $l(e){return e?e.startsWith(`/`)||e.startsWith(`~/`)||e.startsWith(`~\\`)||/^[A-Za-z]:[/\\]/.test(e):!1}function eu(e){let t=e.replace(/\\/g,`/`);if(t.endsWith(`/`))return e;let n=Math.max(t.lastIndexOf(`/`),e.lastIndexOf(`\\`));return n>0?e.slice(0,n+1):e}var tu=new Map;function nu({open:e,onClose:t,initialQuery:n=``}){let[r,i]=(0,H.useState)(``),[a,o]=(0,H.useState)(0),[s,c]=(0,H.useState)([]),[l,u]=(0,H.useState)(!1),[d,f]=(0,H.useState)([]),p=(0,H.useRef)(null),m=(0,H.useRef)(null),h=B(e=>e.openTab),g=Ye(e=>e.activeProject),_=Xe(e=>e.fileIndex),v=Xe(e=>e.indexStatus),y=Xe(e=>e.loadIndex),b=Xe(e=>e.tree),x=L(e=>e.setSidebarActiveTab),S=L(e=>e.sidebarCollapsed),C=L(e=>e.toggleSidebar),w=et(e=>e.getBinding),T=rt(e=>e.contributions),E=(0,H.useCallback)(async e=>{if(tu.has(e)){c(tu.get(e));return}u(!0);try{let t=await I.get(`/api/fs/list?dir=${encodeURIComponent(e)}`);tu.set(e,t),c(t)}catch{c([])}finally{u(!1)}},[]);(0,H.useEffect)(()=>{if(!$l(r)){c([]);return}E(eu(r))},[r,E]),(0,H.useEffect)(()=>{if($l(r)||r.trim().length<2){f([]);return}let e=setTimeout(async()=>{try{f(await I.get(`/api/db/search?q=${encodeURIComponent(r.trim())}`)??[])}catch{f([])}},300);return()=>clearTimeout(e)},[r]);let D=(0,H.useMemo)(()=>{let e=g?.name??null,n=g?{projectName:g.name}:void 0,r=(r,i)=>()=>{h({type:r,title:i,projectId:e,metadata:n,closable:!0}),t()},i=[{id:`chat`,label:`New AI Chat`,icon:dn,action:r(`chat`,`AI Chat`),keywords:`ai assistant claude`,group:`action`,shortcut:Zl(w(`open-chat`))},{id:`new-file`,label:`New File`,icon:It,action:()=>{B.getState().openNewFile(),t()},keywords:`create untitled blank empty`,group:`action`,shortcut:Zl(w(`new-file`))},{id:`terminal`,label:`New Terminal`,icon:Bn,action:r(`terminal`,`Terminal`),keywords:`bash shell console`,group:`action`,shortcut:Zl(w(`open-terminal`))},{id:`ports`,label:`Port Forwarding`,icon:_e,action:r(`ports`,`Ports`),keywords:`web preview localhost port forward tunnel url`,group:`action`},{id:`postgres`,label:`PostgreSQL`,icon:je,action:r(`postgres`,`PostgreSQL`),keywords:`database pg sql query`,group:`action`},{id:`voice-input`,label:`Voice Input`,icon:fn,action:()=>{window.dispatchEvent(new CustomEvent(`toggle-voice-input`)),t()},keywords:`speech microphone dictate voice`,group:`action`,shortcut:Zl(w(`voice-input`))},{id:`git-status`,label:`Git Status`,icon:Yt,action:()=>{x(`git`),t()},keywords:`changes diff staged`,group:`action`,shortcut:Zl(w(`open-git-status`))},{id:`settings`,label:`Settings`,icon:Pn,action:()=>{S&&C(),x(`settings`),t()},keywords:`config preferences theme`,group:`action`,shortcut:Zl(w(`open-settings`))}],a=T?.keybindings??[],o=(T?.commands??[]).map(e=>{let n=a.find(t=>t.command===e.command),r=(n?w(`ext:${n.command}`):``)||(n?Yl&&n.mac?n.mac:n.key:``);return{id:`ext:${e.command}`,label:e.title,hint:e.category,icon:e.icon&&Xl[e.icon]||En,group:`action`,keywords:`extension ${e.command} ${e.category??``}`,shortcut:r?Zl(r):void 0,action:()=>{let n=[];g?.path&&n.push(g.path),window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:e.command,args:n}})),t()}}});return[...i,...o]},[g,h,t,x,S,C,w,T]),ee=(0,H.useMemo)(()=>{let e=g?.name??null,n=g?{projectName:g.name}:void 0;return(v===`ready`?_.filter(e=>e.type===`file`):Ql(b)).map(r=>({id:`file:${r.path}`,label:r.name,hint:r.path,icon:jt,group:`file`,keywords:r.path,action:()=>{h({type:`editor`,title:r.name,projectId:e,metadata:{...n,filePath:r.path},closable:!0}),t()}}))},[v,_,b,g,h,t]),O=(0,H.useMemo)(()=>{let e=g?.name??null,n=g?{projectName:g.name}:void 0;return s.map(r=>{let i=He(r);return{id:`fs:${r}`,label:i,hint:r,icon:Ht,group:`fs`,keywords:r,action:()=>{h({type:`editor`,title:i,projectId:e,metadata:{...n,filePath:r},closable:!0}),t()}}})},[s,g,h,t]),te=(0,H.useMemo)(()=>d.map(e=>({id:`db:${e.connectionId}:${e.schemaName}.${e.tableName}`,label:e.tableName,hint:`${e.connectionName} (${e.connectionType===`postgres`?`PG`:`SQLite`})`,icon:je,group:`db`,connectionColor:e.connectionColor,action:()=>{h({type:`database`,title:`${e.connectionName} · ${e.tableName}`,projectId:null,closable:!0,metadata:{connectionId:e.connectionId,connectionName:e.connectionName,dbType:e.connectionType,tableName:e.tableName,schemaName:e.schemaName,connectionColor:e.connectionColor}}),t()}})),[d,h,t]),ne=(0,H.useMemo)(()=>[...D,...ee],[D,ee]),re=(0,H.useMemo)(()=>{if($l(r)){let e=r.lastIndexOf(`/`),t=e>=0?r.slice(e+1).toLowerCase():``;return t?O.filter(e=>{let n=e.label.toLowerCase(),r=(e.keywords??``).toLowerCase();return n.includes(t)||r.includes(t)}).slice(0,50):O.slice(0,50)}if(!r.trim())return D;let e=[];for(let t of ne){let n=ql(r,t.label,t.keywords??t.label);n&&e.push({cmd:t,score:n})}e.sort((e,t)=>Jl(e.score,t.score));let t=e.map(e=>e.cmd);return r.trim().length>=2?[...te,...t]:t},[ne,D,O,te,r]);(0,H.useEffect)(()=>{e&&(i(n||``),o(0),c([]),f([]),requestAnimationFrame(()=>p.current?.focus()))},[e]),(0,H.useEffect)(()=>{o(e=>Math.min(e,Math.max(re.length-1,0)))},[re.length]),(0,H.useEffect)(()=>{let e=m.current;e&&e.children[a]?.scrollIntoView({block:`nearest`})},[a]);let ie=(0,H.useCallback)(()=>{r.trim()&&(h({type:`chat`,title:`AI Chat`,projectId:g?.name??null,metadata:{projectName:g?.name,pendingMessage:r.trim()},closable:!0}),t())},[r,g,h,t]);function ae(e){let n=re.length;switch(e.key){case`ArrowDown`:e.preventDefault(),n>0&&o(e=>(e+1)%n);break;case`ArrowUp`:e.preventDefault(),n>0&&o(e=>(e-1+n)%n);break;case`Enter`:e.preventDefault(),n>0?re[a]?.action():r.trim()&&ie();break;case`Escape`:e.preventDefault(),t();break}}if(!e)return null;let k=$l(r);return(0,U.jsxs)(`div`,{className:`fixed inset-0 z-50 flex items-end md:items-start justify-center md:pt-[20vh]`,onClick:t,children:[(0,U.jsx)(`div`,{className:`fixed inset-0 bg-black/50`}),(0,U.jsxs)(`div`,{className:`relative z-10 w-full max-w-md rounded-t-xl md:rounded-xl border border-border bg-background shadow-2xl overflow-hidden max-h-[80vh] md:max-h-none`,onClick:e=>e.stopPropagation(),onKeyDown:ae,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2 border-b border-border px-3 py-2.5`,children:[(0,U.jsx)(kn,{className:`size-4 text-text-subtle shrink-0`}),(0,U.jsx)(`input`,{ref:p,type:`text`,value:r,onChange:e=>i(e.target.value),placeholder:`Search actions & files... (type / or ~/ for filesystem)`,className:`flex-1 bg-transparent text-sm text-text-primary outline-none placeholder:text-text-subtle`}),l&&(0,U.jsx)(V,{className:`size-3.5 animate-spin text-text-subtle shrink-0`}),(0,U.jsx)(`kbd`,{className:`hidden sm:inline-flex items-center rounded border border-border bg-surface px-1.5 py-0.5 text-[10px] text-text-subtle font-mono`,children:`ESC`})]}),k&&!l&&s.length===0&&r.length<4&&(0,U.jsx)(`div`,{className:`px-3 py-2 text-xs text-text-subtle border-b border-border/50`,children:`Type a directory path to browse files (e.g. ~/Projects/)`}),!k&&v===`loading`&&(0,U.jsxs)(`div`,{className:`flex items-center gap-1.5 px-3 py-1.5 border-b border-border/50`,children:[(0,U.jsx)(V,{className:`size-3 animate-spin text-text-subtle shrink-0`}),(0,U.jsx)(`span`,{className:`text-[11px] text-text-subtle italic`,children:`Indexing project…`})]}),!k&&v===`error`&&(0,U.jsxs)(`div`,{className:`flex items-center gap-2 px-3 py-1.5 border-b border-border/50`,children:[(0,U.jsx)(`span`,{className:`text-[11px] text-text-subtle`,children:`Failed to build file index —`}),(0,U.jsx)(`button`,{onClick:()=>g&&y(g.name),className:`text-[11px] text-accent hover:underline`,children:`retry`})]}),(0,U.jsx)(`div`,{ref:m,className:`max-h-72 overflow-y-auto py-1`,children:re.length===0?l?(0,U.jsx)(`p`,{className:`px-3 py-4 text-sm text-text-subtle text-center`,children:`Searching...`}):r.trim()?(0,U.jsxs)(`button`,{onClick:ie,className:`flex items-center gap-3 w-full px-3 py-3 text-sm text-left text-text-secondary hover:bg-accent/15 hover:text-text-primary transition-colors`,children:[(0,U.jsx)(dn,{className:`size-4 shrink-0 text-accent`}),(0,U.jsxs)(`span`,{children:[`Ask AI: `,(0,U.jsx)(`span`,{className:`text-text-primary font-medium`,children:r.trim().slice(0,60)})]})]}):(0,U.jsx)(`p`,{className:`px-3 py-4 text-sm text-text-subtle text-center`,children:`No results`}):re.map((e,t)=>{let n=e.icon;return(0,U.jsxs)(`button`,{onClick:e.action,className:`flex items-center gap-3 w-full px-3 py-2 text-sm text-left transition-colors ${t===a?`bg-accent/15 text-text-primary`:`text-text-secondary hover:bg-surface-elevated`}`,children:[(0,U.jsx)(n,{className:`size-4 shrink-0`}),(0,U.jsx)(`span`,{className:`truncate`,children:e.label}),e.hint&&(0,U.jsxs)(`span`,{className:`ml-auto flex items-center gap-1.5 text-xs text-text-subtle truncate max-w-[200px]`,children:[e.connectionColor&&(0,U.jsx)(`span`,{className:`shrink-0 size-2 rounded-full`,style:{backgroundColor:e.connectionColor}}),e.hint]}),e.shortcut&&(0,U.jsx)(`kbd`,{className:`ml-auto shrink-0 rounded border border-border bg-surface px-1.5 py-0.5 text-[10px] text-text-subtle font-mono`,children:e.shortcut})]},e.id)})}),(0,U.jsxs)(`div`,{className:`flex items-center justify-center gap-1.5 border-t border-border px-3 py-1.5`,children:[(0,U.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:`Press`}),(0,U.jsx)(`kbd`,{className:`inline-flex items-center rounded border border-border bg-surface px-1 py-0.5 text-[10px] text-text-subtle font-mono`,children:`Shift`}),(0,U.jsx)(`kbd`,{className:`inline-flex items-center rounded border border-border bg-surface px-1 py-0.5 text-[10px] text-text-subtle font-mono`,children:`Shift`}),(0,U.jsx)(`span`,{className:`text-[10px] text-text-subtle`,children:`to open this palette`})]})]})]})}function ru(){let[e,t]=(0,H.useState)(null),[n,r]=(0,H.useState)(!1);(0,H.useEffect)(()=>{function e(e){let n=e.detail;n&&(t(n),r(!1))}return window.addEventListener(`open-bug-report`,e),()=>window.removeEventListener(`open-bug-report`,e)},[]);let i=(0,H.useCallback)(()=>t(null),[]);return e?(0,U.jsxs)(U.Fragment,{children:[(0,U.jsx)(`div`,{className:`fixed inset-0 z-50 bg-black/50`,onClick:i}),(0,U.jsxs)(`div`,{className:`fixed inset-4 md:inset-auto md:top-[15%] md:left-1/2 md:-translate-x-1/2 md:w-full md:max-w-lg md:max-h-[70vh] z-50 flex flex-col bg-background border border-border rounded-lg shadow-2xl overflow-hidden`,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 border-b border-border`,children:[(0,U.jsx)(`span`,{className:`text-sm font-medium`,children:`Bug Report`}),(0,U.jsx)(`button`,{onClick:i,className:`p-1 rounded hover:bg-surface-elevated`,children:(0,U.jsx)(Pe,{className:`size-4`})})]}),(0,U.jsx)(`pre`,{className:`flex-1 overflow-auto px-4 py-2 text-xs font-mono whitespace-pre-wrap break-all`,children:e}),(0,U.jsxs)(`div`,{className:`flex gap-2 p-3 border-t border-border`,children:[(0,U.jsxs)(`button`,{onClick:async()=>{await sl(e)&&r(!0)},className:`flex items-center gap-1.5 px-3 py-1.5 rounded-md bg-surface-elevated text-xs text-foreground hover:bg-surface transition-colors`,children:[n?(0,U.jsx)(he,{className:`size-3`}):(0,U.jsx)(Tt,{className:`size-3`}),n?`Copied`:`Copy`]}),(0,U.jsxs)(`button`,{onClick:()=>{ol(e),i()},className:`flex items-center gap-1.5 px-3 py-1.5 rounded-md bg-primary text-primary-foreground text-xs hover:bg-primary/90 transition-colors`,children:[(0,U.jsx)(Ot,{className:`size-3`}),`Open GitHub Issue`]})]})]})]}):null}var iu=6e4,au=`ppm-upgrade-dismissed-`;async function ou(){if(`caches`in window){let e=await caches.keys();await Promise.all(e.map(e=>caches.delete(e)))}window.location.reload()}function su({onVisibilityChange:e}){let[t,n]=(0,H.useState)(null),[r,i]=(0,H.useState)(!1),[a,o]=(0,H.useState)(!1),[s,c]=(0,H.useState)(!1);(0,H.useEffect)(()=>{let e;async function t(){try{let e=await I.get(`/api/upgrade`);if(e.availableVersion){n(e.availableVersion);let t=au+e.availableVersion;sessionStorage.getItem(t)?c(!0):c(!1)}else n(null)}catch{}}return t(),e=setInterval(t,iu),()=>clearInterval(e)},[]);let l=(0,H.useCallback)(async()=>{i(!0);try{let e=await I.post(`/api/upgrade/apply`);e.restart?(i(!1),o(!0)):(ge.info(e.message||`Upgrade installed. Restart PPM manually.`),i(!1),t&&sessionStorage.setItem(au+t,`1`),c(!0))}catch(e){e instanceof TypeError||e.message?.includes(`fetch`)||e.message?.includes(`network`)?(i(!1),o(!0)):(ge.error(`Upgrade failed: ${e.message}`),i(!1))}},[t]),u=(0,H.useCallback)(()=>{t&&sessionStorage.setItem(au+t,`1`),c(!0)},[t]),d=!!t&&!s||a;return(0,H.useEffect)(()=>{e?.(d)},[d,e]),d?(0,U.jsx)(`div`,{className:`w-full text-white px-3 py-1 flex items-center justify-between gap-2 z-50 text-sm shrink-0 ${a?`bg-green-600 dark:bg-green-700`:`bg-blue-600 dark:bg-blue-700`}`,children:a?(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2 flex-1 min-w-0`,children:[(0,U.jsx)(xt,{className:`size-4 shrink-0`}),(0,U.jsxs)(`span`,{className:`truncate`,children:[`Upgrade to v`,t,` installed! Reload to apply.`]})]}),(0,U.jsxs)(`button`,{onClick:ou,className:`bg-white text-green-600 font-medium rounded-full px-3 py-0.5 text-xs min-h-[28px] min-w-[28px] flex items-center gap-1.5 justify-center hover:bg-green-50 active:bg-green-100 transition-colors shrink-0`,children:[(0,U.jsx)(Fe,{className:`size-3`}),`Reload`]})]}):r?(0,U.jsxs)(`div`,{className:`flex items-center gap-2 flex-1 min-w-0`,children:[(0,U.jsx)(V,{className:`size-4 animate-spin shrink-0`}),(0,U.jsxs)(`span`,{className:`truncate`,children:[`Upgrading to v`,t,`...`]})]}):(0,U.jsxs)(U.Fragment,{children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2 flex-1 min-w-0`,children:[(0,U.jsx)(bt,{className:`size-4 shrink-0`}),(0,U.jsxs)(`span`,{className:`truncate`,children:[`PPM v`,t,` available`]})]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1 shrink-0`,children:[(0,U.jsx)(`button`,{onClick:l,className:`bg-white text-blue-600 font-medium rounded-full px-3 py-0.5 text-xs min-h-[28px] min-w-[28px] flex items-center justify-center hover:bg-blue-50 active:bg-blue-100 transition-colors`,children:`Upgrade`}),(0,U.jsx)(`button`,{onClick:u,className:`min-h-[28px] min-w-[28px] flex items-center justify-center rounded-full hover:bg-blue-500 active:bg-blue-800 transition-colors`,"aria-label":`Dismiss upgrade notification`,children:(0,U.jsx)(Pe,{className:`size-4`})})]})]})}):null}var cu=Le(e=>({src:null,alt:``,open:(t,n=``)=>e({src:t,alt:n}),close:()=>e({src:null,alt:``})}));function lu(){let{src:e,alt:t,close:n}=cu(),r=(0,H.useCallback)(e=>{e.key===`Escape`&&n()},[n]);return(0,H.useEffect)(()=>{if(e)return document.addEventListener(`keydown`,r),()=>document.removeEventListener(`keydown`,r)},[e,r]),e?(0,U.jsxs)(`div`,{className:`fixed inset-0 z-[100] flex items-center justify-center bg-black/80 backdrop-blur-sm animate-in fade-in duration-150`,onClick:n,children:[(0,U.jsx)(`button`,{onClick:n,className:`absolute top-4 right-4 z-10 flex items-center justify-center size-8 rounded-full bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Close`,children:(0,U.jsx)(Pe,{className:`size-5`})}),(0,U.jsx)(`img`,{src:e,alt:t,className:`max-w-[90vw] max-h-[90vh] object-contain rounded-lg shadow-2xl`,onClick:e=>e.stopPropagation()})]}):null}var uu=Le(e=>({svg:null,open:t=>e({svg:t}),close:()=>e({svg:null})})),du=.25,fu=4,pu=.25;function mu(){let{svg:e,close:t}=uu(),n=(0,H.useRef)(null),[r,i]=(0,H.useState)(1),[a,o]=(0,H.useState)({x:0,y:0}),s=(0,H.useRef)(!1),c=(0,H.useRef)({x:0,y:0});(0,H.useEffect)(()=>{e&&(i(1),o({x:0,y:0}))},[e]);let l=(0,H.useCallback)(e=>{e.key===`Escape`&&t(),(e.key===`=`||e.key===`+`)&&i(e=>Math.min(fu,e+pu)),e.key===`-`&&i(e=>Math.max(du,e-pu)),e.key===`0`&&(i(1),o({x:0,y:0}))},[t]);(0,H.useEffect)(()=>{if(e)return document.addEventListener(`keydown`,l),()=>document.removeEventListener(`keydown`,l)},[e,l]);let u=(0,H.useCallback)(e=>{e.preventDefault();let t=e.deltaY>0?-pu:pu;i(e=>Math.min(fu,Math.max(du,e+t)))},[]),d=(0,H.useCallback)(e=>{e.button===0&&(s.current=!0,c.current={x:e.clientX,y:e.clientY},e.target.setPointerCapture(e.pointerId))},[]),f=(0,H.useCallback)(e=>{if(!s.current)return;let t=e.clientX-c.current.x,n=e.clientY-c.current.y;c.current={x:e.clientX,y:e.clientY},o(e=>({x:e.x+t,y:e.y+n}))},[]),p=(0,H.useCallback)(()=>{s.current=!1},[]);return e?(0,U.jsxs)(`div`,{className:`fixed inset-0 z-[100] flex flex-col bg-black/85 backdrop-blur-sm animate-in fade-in duration-150`,onClick:t,children:[(0,U.jsxs)(`div`,{className:`flex items-center justify-between px-4 py-2 bg-black/40`,onClick:e=>e.stopPropagation(),children:[(0,U.jsxs)(`span`,{className:`text-sm text-white/70`,children:[Math.round(r*100),`% — Scroll to zoom, drag to pan, 0 to reset`]}),(0,U.jsxs)(`div`,{className:`flex items-center gap-1`,children:[(0,U.jsx)(`button`,{onClick:()=>i(e=>Math.max(du,e-pu)),className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Zoom out`,children:(0,U.jsx)(Jn,{className:`size-4`})}),(0,U.jsx)(`button`,{onClick:()=>i(e=>Math.min(fu,e+pu)),className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Zoom in`,children:(0,U.jsx)(qn,{className:`size-4`})}),(0,U.jsx)(`button`,{onClick:()=>{i(1),o({x:0,y:0})},className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors`,"aria-label":`Reset zoom`,children:(0,U.jsx)(A,{className:`size-4`})}),(0,U.jsx)(`button`,{onClick:t,className:`flex items-center justify-center size-8 rounded bg-white/10 hover:bg-white/20 text-white transition-colors ml-2`,"aria-label":`Close`,children:(0,U.jsx)(Pe,{className:`size-5`})})]})]}),(0,U.jsx)(`div`,{ref:n,className:`flex-1 overflow-hidden cursor-grab active:cursor-grabbing`,onClick:e=>e.stopPropagation(),onWheel:u,onPointerDown:d,onPointerMove:f,onPointerUp:p,children:(0,U.jsx)(`div`,{className:`w-full h-full flex items-center justify-center`,style:{transform:`translate(${a.x}px, ${a.y}px) scale(${r})`,transformOrigin:`center center`},children:(0,U.jsx)(`div`,{className:`mermaid-overlay-content bg-white rounded-lg p-6 shadow-2xl [&_svg]:max-w-full [&_svg]:h-auto`,dangerouslySetInnerHTML:{__html:e}})})})]}):null}var hu=`https://ppm.hienle.tech`;function gu(){return window.location.hostname.endsWith(`.trycloudflare.com`)}function _u(){let e=Vl(e=>e.showOverlay),[t,n]=(0,H.useState)(!1);if(!e)return null;let r=gu();async function i(){n(!0);try{if((await fetch(`/api/health`,{cache:`no-store`})).ok){if(Vl.getState().markUp(),`caches`in window){let e=await caches.keys();await Promise.all(e.map(e=>caches.delete(e)))}window.location.reload();return}}catch{}n(!1)}return(0,U.jsx)(`div`,{className:`fixed inset-0 z-[200] bg-background/95 backdrop-blur-sm flex items-center justify-center p-4`,children:(0,U.jsxs)(`div`,{className:`max-w-sm w-full text-center space-y-6`,children:[(0,U.jsx)(`div`,{className:`flex justify-center`,children:(0,U.jsx)(`div`,{className:`rounded-full bg-destructive/10 p-4`,children:(0,U.jsx)(r?Kn:jn,{className:`h-10 w-10 text-destructive`})})}),(0,U.jsxs)(`div`,{className:`space-y-2`,children:[(0,U.jsx)(`h2`,{className:`text-xl font-semibold text-foreground`,children:r?`Connection Lost`:`Server Unreachable`}),(0,U.jsx)(`p`,{className:`text-sm text-muted-foreground leading-relaxed`,children:r?`The tunnel appears to have closed. The server may have restarted with a new URL.`:`Cannot connect to the PPM server. It may have stopped or is restarting.`})]}),(0,U.jsxs)(`div`,{className:`flex flex-col gap-3`,children:[r&&(0,U.jsx)(`a`,{href:hu,target:`_blank`,rel:`noopener noreferrer`,className:`inline-flex items-center justify-center rounded-md bg-primary px-4 py-2.5 text-sm font-medium text-primary-foreground hover:bg-primary/90 transition-colors`,children:`Open PPM Cloud`}),(0,U.jsxs)(`button`,{onClick:i,disabled:t,className:`inline-flex items-center justify-center gap-2 rounded-md border border-border px-4 py-2.5 text-sm font-medium text-foreground hover:bg-accent transition-colors disabled:opacity-50`,children:[(0,U.jsx)(Fe,{className:`h-4 w-4 ${t?`animate-spin`:``}`}),t?`Retrying…`:`Retry Connection`]})]}),!r&&(0,U.jsxs)(`p`,{className:`text-xs text-muted-foreground`,children:[`If the server was stopped, run `,(0,U.jsx)(`code`,{className:`bg-muted px-1 py-0.5 rounded text-[11px]`,children:`ppm start`}),` to restart it.`]})]})})}var vu=(0,H.memo)(function(){let e=rt(e=>e.statusBarItems),t=e.filter(e=>e.alignment===`left`).sort((e,t)=>t.priority-e.priority),n=e.filter(e=>e.alignment===`right`).sort((e,t)=>t.priority-e.priority);return(0,U.jsxs)(`div`,{className:`hidden md:flex items-center justify-between h-[22px] px-2 bg-surface border-t border-border text-[11px] text-text-subtle select-none shrink-0`,children:[(0,U.jsx)(`div`,{className:`flex items-center gap-2 min-w-0`,children:t.map(e=>(0,U.jsx)(yu,{item:e},e.id))}),(0,U.jsx)(`div`,{className:`flex items-center gap-2 min-w-0`,children:n.map(e=>(0,U.jsx)(yu,{item:e},e.id))})]})}),yu=(0,H.memo)(function({item:e}){let t=(0,U.jsx)(`button`,{className:`truncate px-1 rounded-sm transition-colors ${e.command?`hover:bg-accent/15 hover:text-text-primary cursor-pointer`:`cursor-default`}`,onClick:()=>{e.command&&window.dispatchEvent(new CustomEvent(`ext:command:execute`,{detail:{command:e.command}}))},children:e.text});return e.tooltip?(0,U.jsxs)(Qn,{children:[(0,U.jsx)($n,{asChild:!0,children:t}),(0,U.jsx)(er,{side:`top`,className:`text-xs`,children:e.tooltip})]}):t});function bu(){let e=rt(e=>e.quickPick),t=rt(e=>e.resolveQuickPick);return e?(0,U.jsx)(xu,{items:e.items,options:e.options,onSelect:e=>t(e),onCancel:()=>t(void 0)}):null}function xu({items:e,options:t,onSelect:n,onCancel:r}){let[i,a]=(0,H.useState)(``),[o,s]=(0,H.useState)(0),[c,l]=(0,H.useState)(()=>{let t=new Set;return e.forEach((e,n)=>{e.picked&&t.add(n)}),t}),u=(0,H.useRef)(null),d=(0,H.useRef)(null),f=t.canPickMany??!1;(0,H.useEffect)(()=>{requestAnimationFrame(()=>u.current?.focus())},[]);let p=(0,H.useMemo)(()=>{if(!i.trim())return e.map((e,t)=>({item:e,originalIdx:t}));let t=i.toLowerCase();return e.map((e,t)=>({item:e,originalIdx:t})).filter(({item:e})=>e.label.toLowerCase().includes(t)||e.description?.toLowerCase().includes(t)||e.detail?.toLowerCase().includes(t))},[e,i]);(0,H.useEffect)(()=>{s(e=>Math.min(e,Math.max(p.length-1,0)))},[p.length]),(0,H.useEffect)(()=>{(d.current?.children[o])?.scrollIntoView({block:`nearest`})},[o]);let m=(0,H.useCallback)(()=>{f?n(e.filter((e,t)=>c.has(t))):p[o]&&n([p[o].item])},[f,c,e,p,o,n]);function h(e){switch(e.key){case`ArrowDown`:e.preventDefault(),p.length>0&&s(e=>(e+1)%p.length);break;case`ArrowUp`:e.preventDefault(),p.length>0&&s(e=>(e-1+p.length)%p.length);break;case` `:if(f&&p[o]){e.preventDefault();let t=p[o].originalIdx;l(e=>{let n=new Set(e);return n.has(t)?n.delete(t):n.add(t),n})}break;case`Enter`:e.preventDefault(),m();break;case`Escape`:e.preventDefault(),r();break}}return(0,U.jsxs)(`div`,{className:`fixed inset-0 z-50 flex items-end md:items-start justify-center md:pt-[20vh]`,onClick:r,children:[(0,U.jsx)(`div`,{className:`fixed inset-0 bg-black/50`}),(0,U.jsxs)(`div`,{className:`relative z-10 w-full max-w-md rounded-t-xl md:rounded-xl border border-border bg-background shadow-2xl overflow-hidden max-h-[80vh] md:max-h-none`,onClick:e=>e.stopPropagation(),onKeyDown:h,children:[(0,U.jsxs)(`div`,{className:`flex items-center gap-2 border-b border-border px-3 py-2.5`,children:[(0,U.jsx)(kn,{className:`size-4 text-text-subtle shrink-0`}),(0,U.jsx)(`input`,{ref:u,type:`text`,value:i,onChange:e=>a(e.target.value),placeholder:t.placeholder??`Select an item...`,className:`flex-1 bg-transparent text-sm text-text-primary outline-none placeholder:text-text-subtle`}),(0,U.jsx)(`kbd`,{className:`hidden sm:inline-flex items-center rounded border border-border bg-surface px-1.5 py-0.5 text-[10px] text-text-subtle font-mono`,children:`ESC`})]}),(0,U.jsx)(`div`,{ref:d,className:`max-h-72 overflow-y-auto py-1`,children:p.length===0?(0,U.jsx)(`p`,{className:`px-3 py-4 text-sm text-text-subtle text-center`,children:`No matching items`}):p.map(({item:e,originalIdx:t},r)=>(0,U.jsxs)(`button`,{onClick:()=>{f?l(e=>{let n=new Set(e);return n.has(t)?n.delete(t):n.add(t),n}):n([e])},className:R(`flex items-center gap-3 w-full px-3 py-2 text-sm text-left transition-colors`,r===o?`bg-accent/15 text-text-primary`:`text-text-secondary hover:bg-surface-elevated`),children:[f&&(0,U.jsx)(`span`,{className:R(`size-4 shrink-0 rounded border flex items-center justify-center`,c.has(t)?`bg-primary border-primary text-primary-foreground`:`border-border`),children:c.has(t)&&(0,U.jsx)(he,{className:`size-3`})}),(0,U.jsxs)(`div`,{className:`flex-1 min-w-0`,children:[(0,U.jsx)(`div`,{className:`truncate`,children:e.label}),e.description&&(0,U.jsx)(`span`,{className:`text-xs text-text-subtle ml-2`,children:e.description}),e.detail&&(0,U.jsx)(`div`,{className:`text-xs text-text-subtle truncate mt-0.5`,children:e.detail})]})]},t))}),f&&(0,U.jsxs)(`div`,{className:`flex items-center justify-between border-t border-border px-3 py-1.5`,children:[(0,U.jsxs)(`span`,{className:`text-[10px] text-text-subtle`,children:[c.size,` selected`]}),(0,U.jsx)(`button`,{onClick:m,className:`text-xs text-primary hover:text-primary/80 font-medium`,children:`Confirm`})]})]})]})}function Su(){let e=rt(e=>e.inputBox),t=rt(e=>e.resolveInputBox);return e?(0,U.jsx)(Cu,{options:e.options,onConfirm:e=>t(e),onCancel:()=>t(void 0)}):null}function Cu({options:e,onConfirm:t,onCancel:n}){let[r,i]=(0,H.useState)(e.value??``),a=(0,H.useRef)(null);(0,H.useEffect)(()=>{requestAnimationFrame(()=>{a.current?.focus(),a.current?.select()})},[]);function o(e){e.key===`Enter`?(e.preventDefault(),t(r)):e.key===`Escape`&&(e.preventDefault(),n())}return(0,U.jsxs)(`div`,{className:`fixed inset-0 z-50 flex items-end md:items-start justify-center md:pt-[20vh]`,onClick:n,children:[(0,U.jsx)(`div`,{className:`fixed inset-0 bg-black/50`}),(0,U.jsxs)(`div`,{className:`relative z-10 w-full max-w-md rounded-t-xl md:rounded-xl border border-border bg-background shadow-2xl overflow-hidden`,onClick:e=>e.stopPropagation(),children:[e.prompt&&(0,U.jsx)(`div`,{className:`px-3 pt-3 pb-1 text-sm text-text-primary`,children:e.prompt}),(0,U.jsx)(`div`,{className:`flex items-center gap-2 px-3 py-2.5`,children:(0,U.jsx)(`input`,{ref:a,type:e.password?`password`:`text`,value:r,onChange:e=>i(e.target.value),onKeyDown:o,placeholder:e.placeholder??``,className:`flex-1 bg-surface border border-border rounded px-2 py-1.5 text-sm text-text-primary outline-none focus:border-primary placeholder:text-text-subtle`})}),(0,U.jsxs)(`div`,{className:`flex items-center justify-end gap-2 border-t border-border px-3 py-2`,children:[(0,U.jsx)(`button`,{onClick:n,className:`px-3 py-1.5 text-xs text-text-secondary hover:text-text-primary transition-colors rounded`,children:`Cancel`}),(0,U.jsx)(`button`,{onClick:()=>t(r),className:`px-3 py-1.5 text-xs bg-primary text-primary-foreground rounded hover:bg-primary/90 transition-colors font-medium`,children:`OK`})]})]})]})}var wu=3e4,Tu=1e3,Eu=class{ws=null;url;handlers=[];reconnectAttempts=0;reconnectTimer=null;intentionalClose=!1;pendingMessages=[];visibilityHandler=null;constructor(e){this.url=e,this.visibilityHandler=()=>{document.visibilityState===`visible`&&!this.intentionalClose&&this.ws?.readyState!==WebSocket.OPEN&&(this.reconnectTimer&&clearTimeout(this.reconnectTimer),this.reconnectTimer=null,this.reconnectAttempts=0,this.connect())},document.addEventListener(`visibilitychange`,this.visibilityHandler)}connect(){this.intentionalClose=!1,this.cleanup();let e=window.location.protocol===`https:`?`wss:`:`ws:`,t;t=this.url.startsWith(`ws`)?this.url:`${e}//${window.location.host}${this.url}`,this.ws=new WebSocket(t),this.ws.onopen=()=>{this.reconnectAttempts=0;try{this.ws?.send(JSON.stringify({type:`ready`}))}catch{}if(this.pendingMessages.length>0){console.log(`[ws] flushing ${this.pendingMessages.length} queued message(s)`);for(let e of this.pendingMessages)try{this.ws?.send(e)}catch{}this.pendingMessages=[]}},this.ws.onmessage=e=>{for(let t of this.handlers)t(e)},this.ws.onclose=()=>{this.intentionalClose||this.scheduleReconnect()},this.ws.onerror=()=>{this.ws?.close()}}disconnect(){this.intentionalClose=!0,this.pendingMessages=[],this.cleanup(),this.reconnectTimer&&=(clearTimeout(this.reconnectTimer),null),this.visibilityHandler&&=(document.removeEventListener(`visibilitychange`,this.visibilityHandler),null)}send(e){this.ws?.readyState===WebSocket.OPEN?this.ws.send(e):this.intentionalClose?console.warn(`[ws] message dropped — WS intentionally closed`):(console.warn(`[ws] WS not open (readyState=${this.ws?.readyState??`no-ws`}) — queuing message`),this.pendingMessages.push(e))}onMessage(e){return this.handlers.push(e),()=>{this.handlers=this.handlers.filter(t=>t!==e)}}get isConnected(){return this.ws?.readyState===WebSocket.OPEN}cleanup(){this.ws&&=(this.ws.onopen=null,this.ws.onclose=null,this.ws.onmessage=null,this.ws.onerror=null,(this.ws.readyState===WebSocket.OPEN||this.ws.readyState===WebSocket.CONNECTING)&&this.ws.close(),null)}scheduleReconnect(){let e=Math.min(Tu*2**this.reconnectAttempts,wu);this.reconnectAttempts++,this.reconnectTimer=setTimeout(()=>this.connect(),e)}},Du=new Set;function Ou(e=!0){let t=(0,H.useRef)(null),n=(0,H.useCallback)(e=>{t.current?.send(JSON.stringify(e))},[]);return(0,H.useEffect)(()=>{if(!e)return;let r=ze(),i=new Eu(r?`/ws/extensions?token=${encodeURIComponent(r)}`:`/ws/extensions`);t.current=i,i.onMessage(e=>{let t;try{t=JSON.parse(e.data)}catch{return}let r=rt.getState();switch(t.type){case`contributions:update`:if(r.setContributions(t.contributions),t.activationErrors){let e=r.activationErrors;r.setActivationErrors(t.activationErrors);for(let[n,r]of Object.entries(t.activationErrors))e[n]||ge.error(`Extension "${n}" failed to activate: ${r}`)}break;case`statusbar:update`:r.addStatusBarItem(t.item);break;case`statusbar:remove`:r.removeStatusBarItem(t.itemId);break;case`tree:update`:t.parentId?r.updateTreeChildren(t.viewId,t.parentId,t.items):r.updateTree(t.viewId,t.items);break;case`tree:refresh`:r.removeTree(t.viewId);break;case`notification`:{let e=t.level===`error`?ge.error:t.level===`warn`?ge.warning:ge.info;if(t.actions&&t.actions.length>0){let r={action:{label:t.actions[0],onClick:()=>n({type:`notification:action`,id:t.id,action:t.actions[0]??null})},onDismiss:()=>n({type:`notification:action`,id:t.id,action:null})};t.actions.length>1&&(r.cancel={label:t.actions[1],onClick:()=>n({type:`notification:action`,id:t.id,action:t.actions[1]??null})}),e(t.message,r)}else e(t.message);break}case`quickpick:show`:r.showQuickPick(t.items,t.options).then(e=>{n({type:`quickpick:resolve`,requestId:t.requestId,selected:e??null})});break;case`inputbox:show`:r.showInputBox(t.options).then(e=>{n({type:`inputbox:resolve`,requestId:t.requestId,value:e??null})});break;case`webview:create`:{let e=t.viewType.replace(/\.view$/,``);r.addWebviewPanel({id:t.panelId,extensionId:t.extensionId,viewType:t.viewType,title:t.title,html:``});let n=`extension:${e}`,i=z.getState(),a=new Set(i.grid.flat()),o=null;for(let e of a){let t=i.panels[e];if(!t)continue;let r=t.tabs.find(e=>e.id===n||e.id.startsWith(`${n}@`));if(r){o=r.id;break}}if(o){let n=i.grid.flat().reduce((e,t)=>e||i.panels[t]?.tabs.find(e=>e.id===o)?.metadata,void 0);B.getState().updateTab(o,{title:t.title,metadata:{...n,viewType:e,panelId:t.panelId,extensionId:t.extensionId}}),B.getState().setActiveTab(o)}else if(!Du.has(e)){let n=B.getState().currentProject;B.getState().openTab({type:`extension`,title:t.title,projectId:null,closable:!0,metadata:{viewType:e,panelId:t.panelId,extensionId:t.extensionId,...n&&{projectName:n}}})}break}case`webview:html`:r.updateWebviewPanel(t.panelId,{html:t.html});break;case`webview:dispose`:r.removeWebviewPanel(t.panelId);break;case`webview:postMessage`:window.dispatchEvent(new CustomEvent(`ext:webview:message`,{detail:{panelId:t.panelId,message:t.message}}));break;case`tab:open`:B.getState().openTab({type:t.tabType,title:t.title,projectId:t.projectId??null,closable:t.closable??!0,metadata:t.metadata});break;case`project:switch`:B.getState().switchProject(t.projectName);break}});let a=e=>{let{panelId:t,message:n}=e.detail;i.send(JSON.stringify({type:`webview:message`,panelId:t,message:n}))};window.addEventListener(`ext:webview:send`,a);let o=e=>{let{viewId:t,itemId:n}=e.detail;i.send(JSON.stringify({type:`tree:expand`,viewId:t,itemId:n}))};window.addEventListener(`ext:tree:expand`,o);let s=e=>{let{command:t,args:n}=e.detail,r=t.replace(/\.view$/,``);Du.delete(r),i.send(JSON.stringify({type:`command:execute`,command:t,args:n}))};window.addEventListener(`ext:command:execute`,s);let c=e=>{let{panelId:t,viewType:n}=e.detail;if(i.send(JSON.stringify({type:`webview:close`,panelId:t})),n){let e=n.replace(/\.view$/,``);Du.add(e),setTimeout(()=>Du.delete(e),5e3)}};return window.addEventListener(`ext:webview:close`,c),i.connect(),()=>{window.removeEventListener(`ext:webview:send`,a),window.removeEventListener(`ext:tree:expand`,o),window.removeEventListener(`ext:command:execute`,s),window.removeEventListener(`ext:webview:close`,c),i.disconnect(),t.current=null}},[n,e]),{send:n}}function ku(){let[e,t]=(0,H.useState)(`checking`),[n,r]=(0,H.useState)(!1),[i,a]=(0,H.useState)(!1),[o,s]=(0,H.useState)(),[c,l]=(0,H.useState)(!1);(0,H.useEffect)(()=>{let e=()=>{s(`settings`),a(!0)};return window.addEventListener(`open-mobile-settings`,e),()=>window.removeEventListener(`open-mobile-settings`,e)},[]);let[u,d]=(0,H.useState)(()=>new Set([`__global__`])),f=L(e=>e.theme),p=L(e=>e.deviceName),m=Ye(e=>e.fetchProjects),h=L(e=>e.fetchServerInfo),g=Ye(e=>e.activeProject),_=(0,H.useRef)(El());(0,H.useEffect)(()=>{if(Be(f),f===`system`){let e=window.matchMedia(`(prefers-color-scheme: dark)`),t=()=>Be(`system`);return e.addEventListener(`change`,t),()=>e.removeEventListener(`change`,t)}},[f]),(0,H.useEffect)(()=>{h()},[h]),(0,H.useEffect)(()=>{async function e(){let e=ze();try{let n={};e&&(n.Authorization=`Bearer ${e}`),(await(await fetch(`/api/auth/check`,{headers:n})).json()).ok?t(`authenticated`):t(`unauthenticated`)}catch{t(`unauthenticated`)}}e()},[]),Ml();let{paletteOpen:v,paletteInitialQuery:y,closePalette:b}=Ma();zl(),Wl(),Ou(e===`authenticated`),(0,H.useEffect)(()=>{if(e!==`authenticated`)return;let t=e=>{e.preventDefault()};return window.addEventListener(`beforeunload`,t),()=>window.removeEventListener(`beforeunload`,t)},[e]),(0,H.useEffect)(()=>{e===`authenticated`&&Ve(async()=>{let{useKeybindingsStore:e}=await import(`./keybindings-store-DaBV6qhz.js`);return{useKeybindingsStore:e}},__vite__mapDeps([49,3,1,9,45,8])).then(({useKeybindingsStore:e})=>{e.getState().loadFromServer()})},[e]),(0,H.useEffect)(()=>{e===`authenticated`&&m().then(async()=>{let e=_.current,{projects:t,customOrder:n}=Ye.getState();if(t.length===0)return;let r=e.projectName?t.find(t=>t.name===e.projectName):void 0;if(r||=Je(t,n)[0],!r)return;let i=await We(r.name);if(i){let e=localStorage.getItem(`ppm-panels-${r.name}`),t=qe(e?JSON.parse(e):null,i);t&&t===i&&localStorage.setItem(`ppm-panels-${r.name}`,JSON.stringify(i))}if(Ye.getState().setActiveProject(r),B.getState().switchProject(r.name),e.tabType&&jl(e.tabType,e.tabIdentifier,r.name),e.openChat){jl(`chat`,e.openChat,r.name);let t=new URL(window.location.href);t.searchParams.delete(`openChat`),window.history.replaceState(null,``,t.pathname)}})},[e,m]),(0,H.useEffect)(()=>{let e=g?.name??`__global__`;B.getState().switchProject(e)},[g?.name]),(0,H.useEffect)(()=>{let e=g?.name??`__global__`;d(t=>t.has(e)?t:new Set([...t,e]))},[g?.name]),(0,H.useEffect)(()=>{e===`authenticated`&&!g&&B.getState().switchProject(`__global__`)},[e,g]);let x=(0,H.useCallback)(()=>{t(`authenticated`)},[]);if(e===`checking`)return(0,U.jsx)(`div`,{className:`min-h-dvh flex items-center justify-center bg-background`,children:(0,U.jsx)(`div`,{className:`animate-pulse text-text-secondary text-sm`,children:`Loading...`})});if(e===`unauthenticated`)return(0,U.jsx)(wl,{onSuccess:x});let S=g?.name??`__global__`;return(0,U.jsx)(Zn,{children:(0,U.jsxs)(`div`,{className:`h-dvh flex flex-col bg-background text-foreground overflow-hidden relative`,children:[(0,U.jsx)(su,{onVisibilityChange:r}),p&&(0,U.jsx)(`div`,{className:R(`md:hidden fixed left-0 z-50 px-2 py-0.5 bg-primary/80 text-primary-foreground text-[10px] font-medium rounded-br transition-[top]`,n?`top-7`:`top-0`),children:p}),(0,U.jsxs)(`div`,{className:`flex flex-1 overflow-hidden`,children:[(0,U.jsx)(hl,{}),(0,U.jsx)(Dc,{}),(0,U.jsxs)(`div`,{className:`flex-1 flex flex-col overflow-hidden`,children:[[...u].map(e=>(0,U.jsx)(`div`,{className:R(`flex-1 overflow-hidden pb-12 md:pb-0`,S!==e&&`hidden`),children:(0,U.jsx)(so,{projectName:e})},e)),(0,U.jsx)(vu,{})]})]}),(0,U.jsx)(yl,{onMenuPress:()=>a(!0),onProjectsPress:()=>l(!0)}),(0,U.jsx)(xl,{isOpen:i,onClose:()=>{a(!1),s(void 0)},initialTab:o}),(0,U.jsx)(Cl,{isOpen:c,onClose:()=>l(!1)}),(0,U.jsx)(nu,{open:v,onClose:b,initialQuery:y}),(0,U.jsx)(ru,{}),(0,U.jsx)(lu,{}),(0,U.jsx)(mu,{}),(0,U.jsx)(bu,{}),(0,U.jsx)(Su,{}),(0,U.jsx)(_u,{}),(0,U.jsx)(Xn,{position:`bottom-left`,closeButton:!0,toastOptions:{className:`bg-surface border-border text-foreground`}})]})})}(0,Yn.createRoot)(document.getElementById(`root`)).render((0,U.jsx)(H.StrictMode,{children:(0,U.jsx)(ku,{})}));export{Sn as A,zt as B,Wn as C,Pn as D,Ln as E,dn as F,Tt as G,jt as H,V as I,vt as J,St as K,Xt as L,bn as M,yn as N,Nn as O,fn as P,qt as R,Ji as S,zn as T,At as U,Rt as V,Ot as W,_t as Y,za as _,Xs as a,ra as b,ko as c,No as d,Fo as f,Ja as g,q as h,cl as i,xn as j,kn as k,jo as l,Ao as m,uu as n,Ws as o,Po as p,xt as q,cu as r,js as s,Eu as t,Mo as u,Ia as v,Bn as w,Yi as x,ja as y,Bt as z};