farming-code 2.2.8 → 2.2.12

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 (107) hide show
  1. package/README.md +42 -28
  2. package/README.zh_cn.md +42 -28
  3. package/THIRD_PARTY_NOTICES.md +11 -2
  4. package/backend/acp-checkpoint-store.js +198 -0
  5. package/backend/acp-runtime.js +306 -83
  6. package/backend/acp-session-state.js +202 -6
  7. package/backend/acp-transcript.js +112 -0
  8. package/backend/agent-activity.js +6 -157
  9. package/backend/agent-manager.js +1592 -741
  10. package/backend/agent-provider-session.js +17 -242
  11. package/backend/agent-runtime-binding.js +219 -0
  12. package/backend/agent-session-history.js +66 -1
  13. package/backend/auth.js +79 -6
  14. package/backend/codex-models.js +81 -84
  15. package/backend/codex-session-archive.js +54 -0
  16. package/backend/codex-terminal-profile.js +500 -0
  17. package/backend/codex-transcript-sanitizer.js +12 -0
  18. package/backend/codex-transcript.js +230 -8
  19. package/backend/config-manager.js +35 -0
  20. package/backend/control-api.js +192 -17
  21. package/backend/executable-discovery.js +2 -0
  22. package/backend/farming-net-pass.js +285 -0
  23. package/backend/farming-net-registry.js +112 -0
  24. package/backend/farming-net-server.js +298 -0
  25. package/backend/farming-session-store.js +5 -13
  26. package/backend/git-worktree-info.js +181 -0
  27. package/backend/local-session-engine.js +411 -186
  28. package/backend/main-page-session.js +5 -2
  29. package/backend/native-pty-controller-generation.js +106 -0
  30. package/backend/native-pty-host-client.js +275 -7
  31. package/backend/native-pty-host-identity.js +86 -0
  32. package/backend/native-pty-host.js +813 -114
  33. package/backend/native-session-engine.js +100 -28
  34. package/backend/packaged-node-pty.js +22 -2
  35. package/backend/provider-adapters.js +253 -0
  36. package/backend/provider-session-service.js +241 -0
  37. package/backend/runtime-observation.js +81 -0
  38. package/backend/server.js +354 -84
  39. package/backend/session-engine-bridge.js +21 -2
  40. package/backend/session-engine-router.js +1 -1
  41. package/backend/session-engine.js +1 -1
  42. package/backend/session-stream-protocol.js +185 -0
  43. package/backend/storage-layout.js +55 -0
  44. package/backend/terminal-attach-checkpoint.js +74 -0
  45. package/backend/terminal-exit-quiescence.js +39 -0
  46. package/backend/terminal-reducer-flow-control.js +97 -0
  47. package/backend/terminal-screen-state.js +11 -2
  48. package/backend/terminal-screen-worker-pool.js +59 -6
  49. package/backend/terminal-screen-worker-thread.js +97 -57
  50. package/backend/terminal-screen-worker.js +133 -51
  51. package/backend/terminal-state-serialization.js +127 -0
  52. package/backend/terminal-status.js +23 -4
  53. package/backend/usage-monitor.js +176 -17
  54. package/backend/workspace-directory.js +232 -0
  55. package/backend/workspace-file-router.js +182 -76
  56. package/backend/workspace-file-service.js +319 -4
  57. package/backend/workspace-root-registry.js +164 -0
  58. package/dist/assets/App-DWsa7DXG.js +206 -0
  59. package/dist/assets/{FileEditorMarkdownPreview-elKWc8Im.js → FileEditorMarkdownPreview-UlVd0O4D.js} +92 -92
  60. package/dist/assets/FileEditorPane-Dxx4rKOg.js +2 -0
  61. package/dist/assets/IconGlyphs-AU22gPDY.js +1 -0
  62. package/dist/assets/ProjectFilesSection-DE7Nb9Jk.js +12 -0
  63. package/dist/assets/ReviewPage-CeDKDyZh.js +3 -0
  64. package/dist/assets/code-dark-DPiuyeSp.css +1 -0
  65. package/dist/assets/file-icons-Bw2qd5iT.js +1 -0
  66. package/dist/assets/{index-BrbljRqn.js → index-CUFPJoa5.js} +3 -3
  67. package/dist/assets/main-Bqtb5kuz.css +1 -0
  68. package/dist/assets/{monaco.contribution-CyLosfZI.js → monaco.contribution-BXz-lfFB.js} +2 -2
  69. package/dist/assets/{tsMode-DGZTlTj8.js → tsMode-B0oUTcXQ.js} +1 -1
  70. package/dist/assets/workspace-editor-model-BQol4qbA.js +1 -0
  71. package/dist/assets/workspace-editor-monaco-BICJESG0.js +4 -0
  72. package/dist/assets/workspace-editor-monaco-DRJ7IaXk.js +1 -0
  73. package/dist/assets/workspace-view-state-DvYG_9PH.js +7 -0
  74. package/dist/assets/workspace-working-copy-D8-s_Sgh.js +1 -0
  75. package/dist/farming-2/site.webmanifest +2 -0
  76. package/dist/index.html +1 -1
  77. package/frontend/farming-net/app.css +625 -0
  78. package/frontend/farming-net/app.js +268 -0
  79. package/frontend/farming-net/index.html +86 -0
  80. package/frontend/reading-anchor.js +198 -0
  81. package/frontend/session-bridge.js +12 -3
  82. package/frontend/session-modal-bridge.js +5 -12
  83. package/frontend/skins/crt/app.js +1978 -793
  84. package/frontend/skins/crt/index.html +313 -23
  85. package/frontend/skins/crt/styles/billing.css +294 -223
  86. package/frontend/skins/crt/styles/monochrome-green.css +7 -2
  87. package/frontend/terminal-replay.js +372 -0
  88. package/package.json +10 -3
  89. package/shared/browser-protocol.d.ts +5 -0
  90. package/shared/browser-protocol.js +130 -0
  91. package/dist/assets/App-8dYAM6ql.js +0 -124
  92. package/dist/assets/FileEditorPane-RWiFD2cq.js +0 -5
  93. package/dist/assets/IconGlyphs-DfL0EBnj.js +0 -1
  94. package/dist/assets/ProjectFilesSection-Q4PDsWmM.js +0 -12
  95. package/dist/assets/ReviewPage-BaXu1ZdX.js +0 -3
  96. package/dist/assets/code-dark-CDkOQAtK.css +0 -1
  97. package/dist/assets/file-icons-EFUGSSwf.js +0 -1
  98. package/dist/assets/main-D073SnW4.css +0 -1
  99. package/dist/assets/qoder-C9LmmOSf.svg +0 -1
  100. package/dist/assets/qoder-Cf9gl0Y5.svg +0 -1
  101. package/dist/assets/qoder-gHCinseV.svg +0 -1
  102. package/dist/assets/workspace-view-state-CTyDzk2D.js +0 -1
  103. package/dist/assets/zsh-CLpveKlF.svg +0 -1
  104. package/dist/assets/zsh-FxSpMPbz.svg +0 -1
  105. /package/dist/assets/{api-D1lyBYIQ.js → api-D8nyOEbz.js} +0 -0
  106. /package/dist/assets/{core-ZlAPicox.js → core-D0LFJkDt.js} +0 -0
  107. /package/dist/assets/{useWorkspaceMenuKeyboard-CneKAZUJ.js → useWorkspaceMenuKeyboard-Brws6Ar9.js} +0 -0
@@ -0,0 +1,206 @@
1
+ const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/FileEditorPane-Dxx4rKOg.js","assets/chunk-DECur_0Z.js","assets/FileEditorMarkdownPreview-UlVd0O4D.js","assets/preload-helper-mJowh_hw.js","assets/core-D0LFJkDt.js","assets/file-icons-Bw2qd5iT.js","assets/jsx-runtime-BthL93pI.js","assets/workspace-editor-model-BQol4qbA.js","assets/workspace-working-copy-D8-s_Sgh.js","assets/FileEditorMarkdownPreview-DRDNQ8mX.css","assets/workspace-editor-monaco-BICJESG0.js","assets/editor.api2-B9h6iFPK.js","assets/editor-CtbFZlk0.css","assets/workers-BSQRIkqa.js","assets/monaco.contribution-BXz-lfFB.js","assets/IconGlyphs-AU22gPDY.js","assets/useWorkspaceMenuKeyboard-Brws6Ar9.js","assets/workspace-editor-monaco-DRJ7IaXk.js","assets/ProjectFilesSection-DE7Nb9Jk.js","assets/react-dom-gtU6X-Hj.js","assets/workspace-view-state-DvYG_9PH.js"])))=>i.map(i=>d[i]);
2
+ import{r as e,t}from"./chunk-DECur_0Z.js";import{i as n,n as r,r as i,t as a}from"./jsx-runtime-BthL93pI.js";import{t as o}from"./react-dom-gtU6X-Hj.js";import{t as s}from"./preload-helper-mJowh_hw.js";import{$ as c,A as l,C as u,I as d,L as f,O as p,Q as m,R as h,S as g,T as _,_ as v,a as y,b,c as x,d as S,et as C,f as w,g as T,h as E,i as D,k as O,l as k,m as A,n as j,nt as M,o as N,p as P,s as F,tt as ee,u as I,v as te,w as L,x as R}from"./workspace-view-state-DvYG_9PH.js";import{C as ne,D as z,E as B,O as re,S as ie,b as ae,h as V,k as oe,n as se,p as ce,u as le,w as ue,y as de}from"./file-icons-Bw2qd5iT.js";import{C as fe,D as pe,E as me,O as he,S as H,T as ge,_ as _e,a as ve,b as ye,c as be,d as xe,f as Se,i as Ce,l as we,m as Te,n as Ee,o as De,p as Oe,r as U,s as ke,t as Ae,u as W,v as je,w as Me,x as Ne,y as Pe}from"./IconGlyphs-AU22gPDY.js";import{a as Fe,c as Ie,d as Le,f as Re,i as ze,l as Be,n as Ve,o as He,r as Ue,s as We}from"./FileEditorMarkdownPreview-UlVd0O4D.js";import{o as Ge}from"./api-D8nyOEbz.js";var G=e(n()),Ke=null;function qe(e){Ke=e}function Je(e){return Ke?.(e)===!0}var Ye={connected:!1,everConnected:!1,lastMessageAt:Date.now()},Xe=null,Ze=new Set,Qe=new Set;function $e(e,t){return e.add(t),()=>e.delete(t)}function et(e){e.forEach(e=>e())}function tt(){Ye={connected:!1,everConnected:!1,lastMessageAt:Date.now()},et(Ze)}function nt(e){let t={...Ye,...e};t.connected===Ye.connected&&t.everConnected===Ye.everConnected&&t.lastMessageAt===Ye.lastMessageAt||(Ye=t,et(Ze))}function rt(){return Ye}function it(e){return $e(Ze,e)}function at(){return(0,G.useSyncExternalStore)(it,rt,rt)}function ot(e){Xe!==e&&(Xe=e,et(Qe))}function st(){return Xe}function ct(e){return $e(Qe,e)}function lt(){return Xe!==null}function ut(){return(0,G.useSyncExternalStore)(ct,st,st)}function dt(){return(0,G.useSyncExternalStore)(ct,lt,lt)}var ft=new Map,pt=new Map,mt=new Set([`terminalInputReceived`,`terminalBusy`,`shellCwd`,`shellLastExitCode`,`shellLastEvent`,`shellCommand`,`shellLastCommand`,`shellCommandStartedAt`,`shellLastCommandStartedAt`,`shellLastCommandFinishedAt`,`shellLastCommandDurationMs`,`terminalStatus`,`runtimeObservation`,`codexTerminalProfile`]),ht=new Set([`terminalStatus`,`runtimeObservation`,`codexTerminalProfile`]);function gt(e){return{lastActivity:e.lastActivity,activityLevel:e.activityLevel,attentionScore:e.attentionScore,isZombie:e.isZombie,usageRate:e.usageRate,previewText:e.previewText,previewCols:e.previewCols,previewRows:e.previewRows,previewSnapshot:e.previewSnapshot,terminalStatus:e.terminalStatus,runtimeObservation:e.runtimeObservation,codexTerminalProfile:e.codexTerminalProfile,terminalInputReceived:e.terminalInputReceived,terminalBusy:e.terminalBusy,shellCommand:e.shellCommand,shellLastCommand:e.shellLastCommand,shellCommandStartedAt:e.shellCommandStartedAt,shellLastCommandStartedAt:e.shellLastCommandStartedAt,shellLastCommandFinishedAt:e.shellLastCommandFinishedAt,shellLastCommandDurationMs:e.shellLastCommandDurationMs}}function _t(e,t){let n=pt.get(e);n?.all.forEach(e=>e()),t&&n?.runtime.forEach(e=>e())}function vt(e,t){let n=JSON.stringify(t),r=ft.get(e);(r?.signature??(r?JSON.stringify(r.value):``))!==n&&(ft.set(e,{value:t,signature:n}),_t(e,!0))}function yt(e,t){let n=ft.get(e);if(!n)return;let r=Object.entries(t).filter(([e,t])=>{let r=e,i=n.value[r];return Object.is(i,t)?!1:ht.has(r)&&i&&t?JSON.stringify(i)!==JSON.stringify(t):!0}).map(([e])=>e);r.length!==0&&(ft.set(e,{value:{...n.value,...t},signature:null}),_t(e,r.some(e=>mt.has(e))))}function bt(e){let{agentId:t,...n}=e;yt(t,n)}function xt(e){yt(e.agentId,{previewText:e.previewText,previewCols:e.cols,previewRows:e.rows,previewSnapshot:e.previewSnapshot??null,...e.terminalStatus?{terminalStatus:e.terminalStatus}:{},...e.runtimeObservation?{runtimeObservation:e.runtimeObservation}:{},...e.codexTerminalProfile?{codexTerminalProfile:e.codexTerminalProfile}:{}})}function St(e){let t=new Set;e.forEach(e=>{t.add(e.id),vt(e.id,gt(e))});for(let e of ft.keys())t.has(e)||(ft.delete(e),_t(e,!0))}function Ct(){let e=[...ft.keys()];ft.clear(),e.forEach(e=>_t(e,!0))}function wt(e,t,n){let r=pt.get(e)??{all:new Set,runtime:new Set};return r[t].add(n),pt.set(e,r),()=>{r[t].delete(n),r.all.size===0&&r.runtime.size===0&&pt.delete(e)}}function Tt(e){return ft.get(e)?.value??null}function Et(e,t){let n=e?.id??``,r=(0,G.useCallback)(e=>n?wt(n,t,e):()=>{},[n,t]),i=(0,G.useCallback)(()=>n?Tt(n):null,[n]),a=(0,G.useSyncExternalStore)(r,i,i);return(0,G.useMemo)(()=>a&&e?{...e,...a}:e??null,[e,a])}function Dt(e){return Et(e,`all`)}function Ot(e){return Et(e,`runtime`)}typeof window<`u`&&window.__FARMING_E2E__&&(window.__farmingAgentActivityTest={update(e,t){yt(e,t)}});var kt=t(((e,t)=>{var n=2,r=2,i=new Set([`protocol-hello`,`start-agent`,`input`,`composer-input`,`app-server-request-response`,`acp-permission-response`,`interrupt-agent`,`focus-agent`,`resize-agent`,`clear-terminal`,`watch-workspace-files`,`unwatch-workspace-files`,`kill-agent`,`restart-main-agent`]),a=new Set([`protocol-hello`,`protocol-error`,`command-ack`,`state`,`error`,`agent-started`,`session-output`,`session-preview`,`system-stats`,`agent-activity`,`agent-update`,`agent-read`,`workspace-file-watch`,`workspace-file-event`]);function o(e){return!!(e&&typeof e==`object`&&!Array.isArray(e))}function s(e,t,n=!1){return n&&e[t]===void 0?!0:typeof e[t]==`string`}function c(e,t){return typeof e[t]==`number`&&Number.isFinite(e[t])}var l={terminalInputReceived:e=>typeof e==`boolean`,terminalBusy:e=>e===null||typeof e==`boolean`,shellCwd:e=>typeof e==`string`,shellLastExitCode:e=>e===null||Number.isFinite(e),shellLastEvent:e=>typeof e==`string`,shellCommand:e=>typeof e==`string`,shellLastCommand:e=>typeof e==`string`,shellCommandStartedAt:e=>e===null||Number.isFinite(e),shellLastCommandStartedAt:e=>e===null||Number.isFinite(e),shellLastCommandFinishedAt:e=>e===null||Number.isFinite(e),shellLastCommandDurationMs:e=>e===null||Number.isFinite(e),terminalStatus:e=>e===null||o(e),runtimeObservation:o};function u(e){if(!o(e))return null;let t=Object.entries(e);return t.length===0||t.some(([e,t])=>!l[e]||!l[e](t))?null:Object.fromEntries(t)}function d(e){if(!o(e)||typeof e.type!=`string`)return{ok:!1,error:`message must be an object with a type`};if(!i.has(e.type))return{ok:!1,error:`unsupported client message: ${e.type}`};let t=!0;switch(e.type){case`protocol-hello`:t=Number.isInteger(e.protocolVersion);break;case`start-agent`:t=s(e,`command`);break;case`input`:t=s(e,`agentId`,!0)&&(typeof e.input==`string`||Array.isArray(e.inputParts));break;case`composer-input`:t=s(e,`message`)&&s(e,`agentId`,!0);break;case`app-server-request-response`:case`acp-permission-response`:t=s(e,`agentId`)&&s(e,`requestId`);break;case`focus-agent`:t=e.agentId===null||s(e,`agentId`);break;case`resize-agent`:t=s(e,`agentId`)&&c(e,`cols`)&&c(e,`rows`);break;case`unwatch-workspace-files`:t=s(e,`agentId`,!0);break;case`restart-main-agent`:t=s(e,`command`);break;default:t=s(e,`agentId`);break}return t?{ok:!0,value:e}:{ok:!1,error:`invalid ${e.type} message`}}function f(e){if(!o(e)||typeof e.type!=`string`)return{ok:!1,error:`message must be an object with a type`};if(!a.has(e.type))return{ok:!1,error:`unsupported server message: ${e.type}`};let t=!0;switch(e.type){case`protocol-hello`:t=Number.isInteger(e.protocolVersion)&&Number.isInteger(e.minProtocolVersion);break;case`protocol-error`:case`error`:t=s(e,`message`);break;case`command-ack`:t=s(e,`requestId`)&&s(e,`command`);break;case`state`:t=o(e.state)&&Array.isArray(e.state.agents);break;case`agent-started`:t=s(e,`agentId`);break;case`session-output`:t=o(e.stream)&&s(e.stream,`agentId`);break;case`session-preview`:t=o(e.preview)&&s(e.preview,`agentId`);break;case`system-stats`:t=o(e.stats);break;case`agent-activity`:t=o(e.activity)&&s(e.activity,`agentId`);break;case`agent-update`:t=o(e.update)&&s(e.update,`agentId`)&&!!u(e.update.patch);break;case`agent-read`:t=o(e.read)&&s(e.read,`agentId`);break;case`workspace-file-watch`:t=s(e,`agentId`)&&typeof e.watching==`boolean`;break;case`workspace-file-event`:t=o(e.event)&&s(e.event,`agentId`);break;default:break}return t?{ok:!0,value:e}:{ok:!1,error:`invalid ${e.type} message`}}function p(e){return Number.isInteger(e)&&e>=r&&e<=n}t.exports={MIN_PROTOCOL_VERSION:r,PROTOCOL_VERSION:n,protocolCompatible:p,sanitizeAgentUpdatePatch:u,validateClientMessage:d,validateServerMessage:f}}))(),At=1e3;function jt(e,t){return t?!1:/(^|[/\\])\.farming[/\\]?$/.test(e||``)}function Mt(e,t){return e.length===t.length&&e.every((e,n)=>e===t[n])}function Nt(e,t){return JSON.stringify(e)===JSON.stringify(t)}function Pt(){let e=(0,G.useRef)(null),t=(0,G.useRef)(new Map),[n,r]=(0,G.useState)({agents:[],taskHistory:[],mainPageSessionKeys:[],mainAgentId:null,connected:!1,error:null,errorId:0,lastStartedAgentId:null}),a=(0,G.useRef)(new Map),o=(0,G.useRef)(new Map),s=(0,G.useCallback)(t=>{let n=e.current;return n&&n.readyState===WebSocket.OPEN?(n.send(JSON.stringify(t)),!0):(r(e=>({...e,error:`Farming backend is not connected`,errorId:e.errorId+1})),!1)},[]),c=(0,G.useCallback)((e,t,n,r)=>{let i={type:`start-agent`,command:e,workspace:t,asMain:n};return r?.task!==void 0&&(i.task=r.task),r?.workflowTemplate!==void 0&&(i.workflowTemplate=r.workflowTemplate),r?.customTitle!==void 0&&(i.customTitle=r.customTitle),r?.projectWorkspace!==void 0&&(i.projectWorkspace=r.projectWorkspace),r?.codexApprovalMode!==void 0&&(i.codexApprovalMode=r.codexApprovalMode),r?.codexRuntimeMode!==void 0&&(i.codexRuntimeMode=r.codexRuntimeMode),r?.agentRuntimeMode!==void 0&&(i.agentRuntimeMode=r.agentRuntimeMode),r?.dangerouslySkipPermissions!==void 0&&(i.dangerouslySkipPermissions=r.dangerouslySkipPermissions),r?.providerHomeId!==void 0&&(i.providerHomeId=r.providerHomeId),s(i)},[s]),l=(0,G.useCallback)((e,t,n=[])=>s({type:`composer-input`,message:e,agentId:t,...n.length>0?{attachments:n}:{}}),[s]),u=(0,G.useCallback)((e,t,n,r)=>s({type:`app-server-request-response`,agentId:e,requestId:t,result:n,...r?.reject===!0?{reject:!0}:{},...r?.reason?{reason:r.reason}:{}}),[s]),d=(0,G.useCallback)(e=>s({type:`focus-agent`,agentId:e}),[s]),f=(0,G.useCallback)(e=>s({type:`kill-agent`,agentId:e}),[s]),p=(0,G.useCallback)(e=>s({type:`interrupt-agent`,agentId:e}),[s]),m=(0,G.useCallback)(e=>s({type:`restart-main-agent`,command:e}),[s]),h=(0,G.useCallback)((e,t)=>(a.current.set(e,t),()=>{a.current.delete(e)}),[]),g=(0,G.useCallback)((e,t)=>{let n=o.current.get(e);return n||(n=new Set,o.current.set(e,n),s({type:`watch-workspace-files`,agentId:e})),n.add(t),()=>{let n=o.current.get(e);n&&(n.delete(t),n.size===0&&(o.current.delete(e),s({type:`unwatch-workspace-files`,agentId:e})))}},[s]);return(0,G.useEffect)(()=>(qe(e=>s(e)),()=>qe(null)),[s]),(0,G.useEffect)(()=>{tt(),Ct();let n,s=!1,c=null,l=0;function u(e=Date.now()){e-l<At||(l=e,nt({lastMessageAt:e}))}function d(){if(s)return;let f=i(),p=new URLSearchParams(location.search).get(`token`),m=document.cookie.match(/(?:^|;\s*)farming_token=([^;]+)/),h=p||m?.[1]||``;h&&(f+=`?token=${h}`);let g=new WebSocket(f);c=g,e.current=g,g.onopen=()=>{s||e.current!==g||(l=Date.now(),r(e=>({...e,connected:!0,error:null})),nt({connected:!0,everConnected:!0,lastMessageAt:l}),g.send(JSON.stringify({type:`protocol-hello`,protocolVersion:kt.PROTOCOL_VERSION})),window.dispatchEvent(new Event(`farming:backend-connected`)),o.current.forEach((e,t)=>{e.size>0&&g.send(JSON.stringify({type:`watch-workspace-files`,agentId:t}))}))},g.onmessage=n=>{if(!(s||e.current!==g)){u();try{let e=JSON.parse(n.data),i=(0,kt.validateServerMessage)(e);if(!i.ok)throw Error(i.error);let s=e;switch(s.type){case`protocol-hello`:(0,kt.protocolCompatible)(s.protocolVersion)||g.close(4002,`Unsupported Farming protocol version ${s.protocolVersion}`);break;case`protocol-error`:r(e=>({...e,error:s.message,errorId:e.errorId+1}));break;case`command-ack`:break;case`state`:s.state.systemStats!==void 0&&ot(s.state.systemStats??null),St(s.state.agents),r(e=>{let n=new Map(e.agents.map(e=>[e.id,e])),r=e.agents.length!==s.state.agents.length,i=new Map,a=s.state.agents.map((a,o)=>{let c=n.get(a.id),l=JSON.stringify(a);i.set(a.id,l);let u=a.isMain||a.id===s.state.mainAgentId||jt(a.cwd,a.parentAgentId);if(c&&c.id===e.agents[o]?.id&&c.isMain===u&&t.current.get(a.id)===l)return c;let d={...a,isMain:u};return r=!0,c?.previewSnapshot?{...d,previewSnapshot:c.previewSnapshot}:d});t.current=i;let o=r?a:e.agents,c=s.state.taskHistory??e.taskHistory,l=Array.isArray(s.state.mainPageSessionKeys)?s.state.mainPageSessionKeys:e.mainPageSessionKeys,u=c!==e.taskHistory&&!Nt(c,e.taskHistory),d=l!==e.mainPageSessionKeys&&!Mt(l,e.mainPageSessionKeys);return o===e.agents&&!u&&!d&&s.state.mainAgentId===e.mainAgentId?e:{...e,agents:o,taskHistory:u?c:e.taskHistory,mainPageSessionKeys:d?l:e.mainPageSessionKeys,mainAgentId:s.state.mainAgentId}});break;case`error`:r(e=>({...e,error:s.message,errorId:e.errorId+1}));break;case`agent-started`:r(e=>({...e,lastStartedAgentId:s.agentId}));break;case`agent-update`:yt(s.update.agentId,s.update.patch);break;case`session-preview`:xt(s.preview);break;case`session-output`:{let e=a.current.get(s.stream.agentId);e&&s.stream.replace===!0&&e(s.stream.data,!0,s.stream.outputSeq,s.stream.runtimeEpoch,s.stream.stateRevision,s.stream.cols,s.stream.rows),e&&Array.isArray(s.stream.chunks)?s.stream.chunks.forEach(t=>{e(t.data,!1,t.outputSeq,t.runtimeEpoch,t.stateRevision,t.cols,t.rows,t.kind)}):e&&s.stream.replace!==!0&&e(s.stream.data,s.stream.replace,s.stream.outputSeq,s.stream.runtimeEpoch,s.stream.stateRevision,s.stream.cols,s.stream.rows,s.stream.kind);break}case`agent-activity`:bt(s.activity);break;case`agent-read`:r(e=>({...e,agents:e.agents.map(e=>e.id===s.read.agentId?{...e,...s.read,id:e.id}:e)}));break;case`workspace-file-watch`:break;case`workspace-file-event`:o.current.get(s.event.agentId)?.forEach(e=>e(s.event));break;case`system-stats`:ot(s.stats??null);break}}catch(e){let t=e instanceof Error?e.message:`Invalid Farming backend message`;r(e=>({...e,error:t,errorId:e.errorId+1}))}}},g.onclose=t=>{s||e.current!==g||(e.current=null,r(e=>({...e,connected:!1,error:t.code===4001?`Farming token expired or is invalid`:e.error,errorId:t.code===4001?e.errorId+1:e.errorId})),nt({connected:!1}),window.dispatchEvent(new CustomEvent(`farming:backend-disconnected`,{detail:{code:t.code,reason:t.reason}})),n=setTimeout(d,1e3))},g.onerror=()=>{g.close()}}return d(),()=>{s=!0,clearTimeout(n),e.current===c&&(e.current=null),nt({connected:!1}),c?.close()}},[]),{...n,startAgent:c,sendComposerInput:l,respondToAppServerRequest:u,focusAgent:d,killAgent:f,interruptAgent:p,restartMainAgent:m,onSessionOutput:h,watchWorkspaceFiles:g}}function Ft(){return typeof document>`u`?!0:document.visibilityState!==`hidden`}function It(){let[e,t]=(0,G.useState)(Ft);return(0,G.useEffect)(()=>{let e=()=>t(Ft());return document.addEventListener(`visibilitychange`,e),window.addEventListener(`pagehide`,e),window.addEventListener(`pageshow`,e),()=>{document.removeEventListener(`visibilitychange`,e),window.removeEventListener(`pagehide`,e),window.removeEventListener(`pageshow`,e)}},[]),e}function Lt(e,t){let n=(0,G.useMemo)(()=>e.find(e=>e.id===t)??null,[e,t]),r=(0,G.useMemo)(()=>e.filter(e=>e.id!==t&&!e.isMain&&!e.archived&&e.status!==`dead`&&e.status!==`stopped`),[e,t]);return{mainAgent:n,otherAgents:r,activeCount:(0,G.useMemo)(()=>e.filter(e=>e.status===`running`).length,[e]),keyMap:(0,G.useMemo)(()=>{let e=new Map;return r.forEach((t,n)=>{n<9&&e.set(String(n+1),t.id)}),e},[r])}}function Rt(e){return e instanceof HTMLElement?!!e.closest(`.terminal-session-host, .code-terminal-container`):!1}function zt(e){return e instanceof HTMLElement?e.tagName===`INPUT`||e.tagName===`TEXTAREA`||e.isContentEditable||!!e.closest(`.code-file-editor, .monaco-editor`):!1}function Bt(e){return e instanceof HTMLElement?!!e.closest(`[role="dialog"]`):!1}function Vt(e){return e instanceof HTMLElement?!!e.closest(`[role="menu"]`):!1}function Ht(e){return Bt(e)||Vt(e)}function Ut(){return!!document.querySelector(`[role="dialog"], [role="menu"], .code-context-menu, .code-file-context-menu`)}function Wt(e,t=!0){(0,G.useEffect)(()=>{if(!t)return;function n(t){let n=t.target,r=zt(n),i=Rt(n),a=Ht(n)||Ut();for(let n of e){if(a&&!n.allowInOverlay||r&&!n.allowInInput||i&&!n.allowInTerminal)continue;let e=t.key.toLowerCase()===n.key.toLowerCase(),o=n.meta?t.metaKey&&!t.ctrlKey:n.ctrl?t.ctrlKey||t.metaKey:!(t.ctrlKey||t.metaKey),s=n.shift?t.shiftKey:!t.shiftKey,c=!t.altKey;if(e&&o&&s&&c){t.preventDefault(),n.handler(t);return}}}return window.addEventListener(`keydown`,n,!0),()=>window.removeEventListener(`keydown`,n,!0)},[e,t])}var Gt=[`codex`,`claude`,`opencode`,`qoder`,`bash`,`zsh`],Kt=new Set(Gt);function qt(e){let t=Gt.indexOf(e);return t===-1?Gt.length:t}function Jt(e){let t=new Set;return e.filter(e=>e&&Kt.has(e.name)&&e.supported!==!1&&e.interactive!==!1).filter(e=>t.has(e.name)?!1:(t.add(e.name),!0)).sort((e,t)=>{let n=qt(e.name),r=qt(t.name);return n===r?e.name.localeCompare(t.name):n-r})}function Yt(e){let t=typeof e==`string`?e.trim():``;return!t||t===`/`||t===`~`?t:t.replace(/[\\/]+$/,``)}function Xt(e){let t=Yt(e);return t===`~/.farming`||/(^|[/\\])\.farming$/.test(t)}function Zt(e){let t=Yt(e);return t===`/tmp`||t.startsWith(`/tmp/`)||t===`/private/tmp`||t.startsWith(`/private/tmp/`)||t===`/var/tmp`||t.startsWith(`/var/tmp/`)||t===`/private/var/tmp`||t.startsWith(`/private/var/tmp/`)||t===`/var/folders`||t.startsWith(`/var/folders/`)||t===`/private/var/folders`||t.startsWith(`/private/var/folders/`)}function Qt(e){let t=Yt(e);return!!t&&!Zt(t)&&!Xt(t)}function $t(e,t=[]){let n=[e,...t].map(Yt).filter(e=>Qt(e)),r=[],i=new Set;return n.forEach(e=>{i.has(e)||(i.add(e),r.push(e))}),r.slice(0,5)}function en(e=[],t=[]){let n=[],r=new Set;return[...e,...t].map(Yt).filter(e=>Qt(e)).forEach(e=>{r.has(e)||(r.add(e),n.push(e))}),n.slice(0,5)}function tn(e){let t=Yt(e);return t?Xt(t)?`~/.farming`:t:``}function nn(e){let t=Yt(e?.lastMainWorkspace);if(t)return tn(t);let n=Yt(e?.workspace);return n?tn(n):`~/.farming`}function rn(e,t,n=`~/.farming`){return Yt(e)||(t?Yt(n)||`~/.farming`:null)}function an(e){let t=Yt(e);if(!t||Xt(t))return`~/.farming`;if(t.startsWith(`/Users/`)){let e=t.split(`/`);if(e.length>3)return`~/${e.slice(3).join(`/`)}`}return t}var K=a();async function on(e,t){let n=Yt(e)||`~`,i=new URLSearchParams({path:n,limit:`500`}),a=await fetch(r(`/api/workspaces/browse?${i.toString()}`),{cache:`no-store`,signal:t}),o=await a.json().catch(()=>null);if(!a.ok||o?.status!==`ready`||!o.workspace)throw Error(`workspace directory browse failed`);return{workspace:o.workspace,parent:o.parent||null,directories:Array.isArray(o.directories)?o.directories:[],truncated:o.truncated===!0}}function sn({copy:e,parentPath:t,depth:n,selectedPath:r,directoryStates:i,expandedPaths:a,onToggle:o}){let s=i[t];return s?(0,K.jsx)(K.Fragment,{children:s.directories.map(s=>{let c=a.has(s.path),l=i[s.path],u={"--workspace-directory-depth":`${n*16}px`},d={"--workspace-directory-depth":`${(n+1)*16}px`};return(0,K.jsxs)(`div`,{className:`workspace-directory-browser-node`,role:`none`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`workspace-directory-browser-row ${r===s.path?`selected`:``}`,"data-testid":`workspace-directory-browser-row`,"data-directory-path":s.path,role:`treeitem`,"aria-expanded":c,"aria-selected":r===s.path,"aria-level":n+1,title:s.path,style:u,onClick:()=>o(s,t),children:[c?(0,K.jsx)(be,{}):(0,K.jsx)(W,{}),(0,K.jsx)(Pe,{}),(0,K.jsx)(`span`,{children:s.name})]}),c&&(0,K.jsx)(`div`,{className:`workspace-directory-browser-group`,role:`group`,children:l?.loading?(0,K.jsx)(`div`,{className:`workspace-directory-browser-inline-status`,style:d,children:e.loading}):l?.error?(0,K.jsx)(`div`,{className:`workspace-directory-browser-inline-status error`,role:`alert`,style:d,children:e.workspaceDirectoryBrowserFailed}):l?(0,K.jsxs)(K.Fragment,{children:[l.directories.length===0?(0,K.jsx)(`div`,{className:`workspace-directory-browser-inline-status`,style:d,children:e.workspaceDirectoryBrowserEmpty}):(0,K.jsx)(sn,{copy:e,parentPath:s.path,depth:n+1,selectedPath:r,directoryStates:i,expandedPaths:a,onToggle:o}),l.truncated&&(0,K.jsx)(`div`,{className:`workspace-directory-browser-inline-status truncated`,style:d,children:e.workspaceDirectoryBrowserTruncated})]}):null})]},s.path)})}):null}function cn({copy:e,initialPath:t,onCancel:n,onSelect:r}){let[i,a]=(0,G.useState)(Yt(t)||`~`),[o,s]=(0,G.useState)(``),[c,l]=(0,G.useState)(``),[u,d]=(0,G.useState)(null),[f,p]=(0,G.useState)({}),[m,h]=(0,G.useState)(()=>new Set),[g,_]=(0,G.useState)(!1),[v,y]=(0,G.useState)(!1),b=(0,G.useRef)(0),x=(0,G.useRef)(null),S=(0,G.useRef)(new Map),C=(0,G.useRef)(null),w=(0,G.useCallback)(async e=>{let t=Yt(e)||`~`,n=b.current+=1;x.current?.abort();let r=new AbortController;x.current=r,S.current.forEach(e=>e.abort()),S.current.clear(),_(!0),y(!1);try{let e=await on(t,r.signal);if(n!==b.current)return;s(e.workspace),l(e.workspace),d(e.parent),p({[e.workspace]:{parent:e.parent,directories:e.directories,loading:!1,error:!1,truncated:e.truncated}}),h(new Set),a(e.workspace)}catch{n===b.current&&!r.signal.aborted&&y(!0)}finally{n===b.current&&_(!1)}},[]),T=(0,G.useCallback)((e,t)=>{if(l(e.path),d(t),a(e.path),y(!1),m.has(e.path)){h(t=>{let n=new Set(t);return n.delete(e.path),n});return}h(t=>new Set(t).add(e.path));let n=f[e.path];if(n&&!n.error)return;S.current.get(e.path)?.abort();let r=new AbortController;S.current.set(e.path,r),p(r=>({...r,[e.path]:{parent:t,directories:n?.directories??[],loading:!0,error:!1,truncated:!1}})),on(e.path,r.signal).then(t=>{r.signal.aborted||p(n=>({...n,[e.path]:{parent:t.parent,directories:t.directories,loading:!1,error:!1,truncated:t.truncated}}))}).catch(()=>{r.signal.aborted||p(n=>({...n,[e.path]:{parent:t,directories:[],loading:!1,error:!0,truncated:!1}}))}).finally(()=>{S.current.get(e.path)===r&&S.current.delete(e.path)})},[f,m]);(0,G.useEffect)(()=>{w(t);let e=requestAnimationFrame(()=>{C.current?.focus(),C.current?.select()});return()=>{cancelAnimationFrame(e),b.current+=1,x.current?.abort(),S.current.forEach(e=>e.abort()),S.current.clear()}},[w,t]);let E=e=>{e.preventDefault(),w(i)},D=Yt(i)===c,O=f[o];return(0,K.jsxs)(`div`,{className:`workspace-directory-browser`,"data-testid":`workspace-directory-browser`,children:[(0,K.jsxs)(`div`,{className:`workspace-directory-browser-heading`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`h4`,{children:e.chooseWorkspaceDirectory}),(0,K.jsx)(`p`,{children:e.workspaceDirectoryBrowserHostHint})]}),(0,K.jsx)(`button`,{type:`button`,className:`workspace-directory-browser-close`,"aria-label":e.back,onClick:n,children:(0,K.jsx)(Ee,{})})]}),(0,K.jsxs)(`form`,{className:`workspace-directory-browser-location`,onSubmit:E,children:[(0,K.jsx)(`button`,{type:`button`,className:`workspace-directory-browser-parent`,"data-testid":`workspace-directory-browser-parent`,"aria-label":e.workspaceDirectoryBrowserParent,title:e.workspaceDirectoryBrowserParent,disabled:!u||g,onClick:()=>{if(!u)return;if(c===o){w(u);return}let e=u,t=f[e];l(e),d(t?.parent??null),a(e),y(!1)},children:(0,K.jsx)(Ce,{})}),(0,K.jsx)(`input`,{ref:C,"data-testid":`workspace-directory-browser-path`,value:i,"aria-label":e.workspace,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,onChange:e=>{a(e.target.value),y(!1)}}),(0,K.jsx)(`button`,{type:`submit`,className:`workspace-directory-browser-go`,"aria-label":e.workspaceDirectoryBrowserGo,title:e.workspaceDirectoryBrowserGo,disabled:g,children:(0,K.jsx)(U,{})})]}),(0,K.jsx)(`div`,{className:`workspace-directory-browser-list`,"data-testid":`workspace-directory-browser-list`,"aria-busy":g,role:`tree`,"aria-label":e.chooseWorkspaceDirectory,children:g?(0,K.jsx)(`div`,{className:`workspace-directory-browser-status`,children:e.loading}):v?(0,K.jsx)(`div`,{className:`workspace-directory-browser-status error`,role:`alert`,children:e.workspaceDirectoryBrowserFailed}):!O||O.directories.length===0?(0,K.jsx)(`div`,{className:`workspace-directory-browser-status`,children:e.workspaceDirectoryBrowserEmpty}):(0,K.jsx)(sn,{copy:e,parentPath:o,depth:0,selectedPath:c,directoryStates:f,expandedPaths:m,onToggle:T})}),O?.truncated&&(0,K.jsx)(`p`,{className:`workspace-directory-browser-truncated`,role:`status`,children:e.workspaceDirectoryBrowserTruncated}),(0,K.jsxs)(`div`,{className:`workspace-directory-browser-actions`,children:[(0,K.jsx)(`span`,{title:c,children:an(c)}),(0,K.jsx)(`button`,{type:`button`,className:`secondary`,"data-testid":`workspace-directory-browser-cancel`,onClick:n,children:e.back}),(0,K.jsx)(`button`,{type:`button`,"data-testid":`workspace-directory-browser-select`,disabled:!c||!D||g||v,onClick:()=>r(c),children:e.workspaceDirectoryBrowserSelect})]})]})}var ln=[{id:``,label:`(none)`,prefix:``},{id:`ralph`,label:`Ralph loop`,prefix:`[Workflow: ralph loop]
3
+ `},{id:`developer`,label:`Developer loop`,prefix:`[Workflow: developer loop]
4
+ `},{id:`reviewer`,label:`Reviewer loop`,prefix:`[Workflow: reviewer loop]
5
+ `}];function un(e,t){let n=ln.find(e=>e.id===t)?.prefix??``,r=e.trim();return{task:n?r?`${n}${r}`:n.trimEnd():r,workflowTemplate:t||``}}async function dn(e,t=!1){let n=await fetch(r(`/api/workspaces/prepare`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({workspace:e,create:t})}),i=await n.json().catch(()=>null);if(i?.status&&typeof i.workspace==`string`)return i;throw Error(i?.message||`Failed to prepare workspace (${n.status})`)}function fn(){return oe()}function pn(e){return e===`opencode`?`opencode`:e===`qoder`?`qoder`:e===`bash`?`bash`:e===`zsh`?`zsh`:e===`claude`?`claude`:`codex`}function mn(e){return e===`codex`||e===`claude`||e===`qoder`}function hn(e){let t=Date.parse(e.updatedAt||``);return Number.isFinite(t)?t:0}function gn(e){return mn(e.provider)&&e.archived!==!0&&Array.isArray(e.capabilities)&&e.capabilities.includes(`resume`)&&(Xt(e.cwd)||Xt(e.workspace))}function _n(e,t){let n=e.providerName||c(e.provider),r=M(hn(e));return[e.title||t.sessionFallbackTitle(n),n,r].filter(Boolean).join(` · `)}function vn({open:e,mustStartMain:t,initialWorkspace:n,initialCommand:i,initialCustomTitle:a,showWorkflowTaskFields:o=!0,copy:s,onStart:l,onClose:u}){let[d,f]=(0,G.useState)(`agent-list`),[p,h]=(0,G.useState)([]),[g,_]=(0,G.useState)(!1),[v,y]=(0,G.useState)(!1),[b,x]=(0,G.useState)(null),[S,C]=(0,G.useState)(``),[w,T]=(0,G.useState)(``),[E,D]=(0,G.useState)(``),[O,k]=(0,G.useState)([]),[A,j]=(0,G.useState)({}),[M,N]=(0,G.useState)(`default`),[P,F]=(0,G.useState)(`cli`),[ee,I]=(0,G.useState)(!1),[te,L]=(0,G.useState)([]),[R,ne]=(0,G.useState)([]),[z,B]=(0,G.useState)(-1),[re,ie]=(0,G.useState)(null),[ae,V]=(0,G.useState)(!0),[oe,se]=(0,G.useState)(`~/.farming`),[ce,le]=(0,G.useState)(`codex`),[ue,de]=(0,G.useState)(!1),[fe,pe]=(0,G.useState)(-1),[me,he]=(0,G.useState)(!1),[H,ge]=(0,G.useState)(null),[ve,ye]=(0,G.useState)(!1),xe=(0,G.useRef)(null),we=(0,G.useRef)(null),Te=(0,G.useRef)(null),Ee=(0,G.useRef)(null),De=(0,G.useRef)(null),Oe=(0,G.useRef)(null),U=(0,G.useRef)(!1),W=(0,G.useRef)(!1),je=(0,G.useRef)(null),Me=(0,G.useMemo)(()=>t?[]:en(O,te),[O,te,t]),Fe=(0,G.useMemo)(()=>re&&p.some(e=>e.name===re.provider)?re:null,[p,re]),Ie=ae&&Fe?Fe.provider:ce;(0,G.useLayoutEffect)(()=>{if(!e)return;let a=!1;return f(`agent-list`),x(null),C(t?``:Yt(n||``)),T(``),D(``),U.current=!1,W.current=!1,he(!1),ge(null),ye(!1),je.current!==null&&(window.clearTimeout(je.current),je.current=null),L([]),ne([]),B(-1),ie(null),V(!0),le(`codex`),j({}),N(`default`),F(`cli`),I(!1),pe(-1),_(!1),y(!1),de(!1),fetch(r(`/api/executables`),{cache:`no-store`}).then(e=>{if(!e.ok)throw Error(`Failed to load executables: ${e.status}`);return e.json()}).then(e=>{if(a)return;let n=Jt(Array.isArray(e)?e:e.agents??[]).map(e=>({...e,description:e.description??``,category:e.category??`coding`})),r=!t&&i?n.find(e=>e.name===i):null;h(n),y(!1);let o=t?null:r;o&&(x(o),f(`workspace`),fn()||setTimeout(()=>we.current?.focus(),50))}).catch(()=>{a||(h([]),y(!0))}).finally(()=>{a||_(!0)}),fetch(r(`/api/settings`)).then(e=>e.json()).then(e=>{let n=e.settings??{},r=nn(n),i=$t(null,n.workspaceHistory??[]);se(r),le(pn(n.defaultLaunchAgent)),k(i),j(n.agentHomes??{}),F(n.codexRuntimeMode===`app-server`?`app-server`:`cli`),t&&!U.current&&C(r),de(!0)}).catch(()=>{k([]),se(`~/.farming`),t&&!U.current&&C(`~/.farming`),de(!0)}),()=>{a=!0}},[e,t,n,i]),(0,G.useEffect)(()=>{if(!e||!t)return;let n=!0;return ie(null),V(!0),fetch(r(`/api/agent-sessions?limit=100&fresh=1`),{cache:`no-store`}).then(e=>e.json()).then(e=>{n&&ie((e.sessions??[]).filter(gn).sort((e,t)=>hn(t)-hn(e))[0]??null)}).catch(()=>{n&&ie(null)}),()=>{n=!1}},[e,t]),(0,G.useEffect)(()=>()=>{je.current!==null&&(window.clearTimeout(je.current),je.current=null)},[]),(0,G.useLayoutEffect)(()=>{!H||H.kind===`creating`||Oe.current?.focus()},[H]),(0,G.useLayoutEffect)(()=>{if(!e||d!==`agent-list`||!g||v||t&&!ue)return;let n=xe.current;if(!n)return;let r=document.activeElement;if(r instanceof HTMLElement&&n.contains(r)&&(r.matches(`.agent-item`)||r.matches(`input, textarea, select`)))return;let i=()=>{let e=Array.from(n.querySelectorAll(`.agent-item:not(:disabled)`));(e.find(e=>e.dataset.testid===`agent-option-${Ie}`)??e[0])?.focus()};i();let a=requestAnimationFrame(i),o=window.setTimeout(i,0);return()=>{cancelAnimationFrame(a),window.clearTimeout(o)}},[v,g,Ie,t,e,ue,d]);let Le=(0,G.useCallback)(()=>W.current?!1:(W.current=!0,he(!0),je.current=window.setTimeout(()=>{W.current=!1,he(!1),je.current=null},1200),!0),[]);(0,G.useEffect)(()=>{if(!e||t||!b)return;let n=!0;L([]);let i=new URLSearchParams({limit:`12`,agent:b.name});return fetch(r(`/api/workspaces/discovered?${i.toString()}`)).then(e=>e.json()).then(e=>{n&&L((e.workspaces??[]).map(e=>Yt(e.path)).filter(e=>Qt(e)))}).catch(()=>{n&&L([])}),()=>{n=!1}},[e,t,b]),(0,G.useEffect)(()=>{if(!e||d!==`workspace`){ne([]),B(-1);return}let t=S.trim();if(!t||!t.includes(`/`)&&!t.startsWith(`~`)){ne([]),B(-1);return}let n=new AbortController,i=window.setTimeout(()=>{let e=new URLSearchParams({path:t,limit:`50`});fetch(r(`/api/workspaces/complete?${e.toString()}`),{signal:n.signal}).then(e=>e.json()).then(e=>{let t=(e.suggestions??[]).filter(e=>typeof e.path==`string`&&e.path);ne(t),B(e=>t.length===0?-1:Math.min(e,t.length-1))}).catch(e=>{e?.name!==`AbortError`&&(ne([]),B(-1))})},120);return()=>{window.clearTimeout(i),n.abort()}},[e,d,S]),(0,G.useEffect)(()=>{if(z<0)return;let e=De.current;e&&e.querySelector(`[aria-selected="true"]`)?.scrollIntoView({block:`nearest`})},[z,R.length]);let Re=(0,G.useCallback)(e=>{if(!(!t||!ae||!Fe)&&e.name===Fe.provider)return{resumeSession:{provider:Fe.provider,id:Fe.id,providerHomeId:Fe.providerHomeId},providerHomeId:Fe.providerHomeId}},[t,Fe,ae]),ze=(0,G.useCallback)(e=>{if(t){if(!ue||!Le())return;let t=rn(S,!0,oe);t&&l(e.command||e.name,t,{...Re(e)||{},providerHomeId:M});return}x(e),N((Array.isArray(A[e.name])?A[e.name]:[])[0]?.id||`default`),I(!1),U.current=!1,C(Yt(n||``)),L([]),pe(-1),f(`workspace`),fn()||setTimeout(()=>we.current?.focus(),50)},[n,Le,oe,t,l,Re,ue,S]),Be=(0,G.useCallback)(async e=>{let t=$t(e,O),n=await fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({workspaceHistory:t})}).catch(()=>{});n?.ok&&k($t(null,((await n.json().catch(()=>null))?.settings??{}).workspaceHistory??[]))},[O]),Ve=(0,G.useCallback)(async e=>{if(!b)return;!t&&Qt(e)&&await Be(e);let n=Re(b);if(n){l(b.command||b.name,e,{...n,providerHomeId:M});return}if(t){l(b.command||b.name,e,{providerHomeId:M});return}let r=o?un(w,E):{task:``,workflowTemplate:``};l(b.command||b.name,e,{task:r.task,workflowTemplate:r.workflowTemplate,...a?{customTitle:a}:{},providerHomeId:M,...[`codex`,`claude`,`opencode`,`qoder`].includes(b.name)?{codexRuntimeMode:P===`app-server`?`app-server`:`cli`,agentRuntimeMode:P===`acp`?`acp`:`terminal`}:{}})},[b,t,Be,Re,l,M,o,w,E,a,P]),He=(0,G.useCallback)(async()=>{if(!b||!Le())return;let e=rn(Yt(we.current?.value??S),t,oe);if(e){if(t){await Ve(e);return}try{let t=await dn(e);if(t.status===`ready`){await Ve(t.workspace);return}ge({kind:t.status===`missing`?`confirm`:`error`,workspace:t.workspace||e,code:t.code})}catch{ge({kind:`error`,workspace:e})}}},[b,S,t,oe,Le,Ve]),Ue=(0,G.useCallback)(async()=>{if(!H||H.kind===`creating`)return;let e=H.workspace;ge({kind:`creating`,workspace:e});try{let t=await dn(e,!0);if(t.status===`created`||t.status===`ready`){await Ve(t.workspace);return}ge({kind:`error`,workspace:t.workspace||e,code:t.code})}catch{ge({kind:`error`,workspace:e})}},[Ve,H]),We=(0,G.useCallback)(e=>{let t=Yt(e);pe(Me.findIndex(e=>e===t))},[Me]),Ge=(0,G.useCallback)(e=>{if(!Me.length)return;let t=(e%Me.length+Me.length)%Me.length,n=Me[t]??``;U.current=!0,C(n),pe(t),requestAnimationFrame(()=>{if(we.current){if(fn()){we.current.blur();return}we.current.focus(),we.current.setSelectionRange(n.length,n.length)}})},[Me]),Ke=(0,G.useMemo)(()=>{if(!b)return[];let e=Array.isArray(A[b.name])?A[b.name]:[];return e.length>0?e:b.name===`codex`?[{id:`default`,path:`~/.codex`}]:b.name===`claude`?[{id:`default`,path:`~/.claude`}]:b.name===`opencode`?[{id:`default`,path:`~/.opencode`}]:b.name===`qoder`?[{id:`default`,path:`~/.qoder`}]:[{id:`default`,path:`~/.${b.name}`}]},[A,b]),qe=(0,G.useMemo)(()=>Ke.find(e=>e.id===M)??Ke[0],[Ke,M]);(0,G.useEffect)(()=>{let e=Ke||[];if(e.length===0){N(`default`);return}e.some(e=>e.id===M)||N(e[0]?.id||`default`)},[Ke,M]),(0,G.useEffect)(()=>{if(!ee)return;let e=e=>{Te.current?.contains(e.target)||I(!1)};return window.addEventListener(`mousedown`,e),()=>{window.removeEventListener(`mousedown`,e)}},[ee]);let Je=(0,G.useCallback)(e=>{N(e),I(!1),requestAnimationFrame(()=>Ee.current?.focus())},[]),Ye=(0,G.useCallback)(e=>{let t=R[e];return t?(U.current=!0,C(t.path),pe(-1),B(-1),requestAnimationFrame(()=>{if(we.current){if(fn()){we.current.blur();return}we.current.focus(),we.current.setSelectionRange(t.path.length,t.path.length)}}),!0):!1},[R]),Xe=(0,G.useCallback)(e=>R.length===0?!1:(B(((z===-1?e>0?0:R.length-1:z+e)%R.length+R.length)%R.length),pe(-1),!0),[z,R]),Ze=(0,G.useCallback)(e=>Me.length?(Ge(fe===-1?e>0?0:Me.length-1:fe+e),!0):!1,[Me,fe,Ge]),Qe=(0,G.useCallback)(e=>{let t=xe.current;if(!t)return;let n=Array.from(t.querySelectorAll(`.agent-item:not(:disabled)`)).filter(e=>e.offsetParent!==null);if(n.length===0)return;let r=n.indexOf(document.activeElement),i=n.length-1,a=r;if(e.key===`ArrowDown`)a=r===-1?0:(r+1)%n.length;else if(e.key===`ArrowUp`)a=r===-1?i:(r-1+n.length)%n.length;else if(e.key===`Home`)a=0;else if(e.key===`End`)a=i;else return;e.preventDefault(),n[a]?.focus()},[]),$e=(0,G.useCallback)(e=>{if(d===`agent-list`&&(Qe(e),e.defaultPrevented)||e.key!==`Tab`)return;let t=xe.current;if(!t)return;let n=Array.from(t.querySelectorAll(`button:not(:disabled), input:not(:disabled), select:not(:disabled), textarea:not(:disabled), [href], [tabindex]:not([tabindex="-1"])`)).filter(e=>e.offsetParent!==null);if(n.length===0){e.preventDefault();return}let r=n[0],i=n[n.length-1],a=document.activeElement;if(e.shiftKey){(a===r||!t.contains(a))&&(e.preventDefault(),i?.focus());return}(a===i||!t.contains(a))&&(e.preventDefault(),r?.focus())},[Qe,d]);if(Wt([...p.slice(0,10).map((e,t)=>({key:String(t<9?t+1:0),allowInOverlay:!0,handler:()=>ze(e)})),{key:`Escape`,allowInOverlay:!0,handler:()=>!t&&u()}],e&&d===`agent-list`),Wt([{key:`Escape`,allowInOverlay:!0,handler:()=>{if(ve){ye(!1),requestAnimationFrame(()=>we.current?.focus());return}if(H){if(H.kind===`creating`)return;ge(null),requestAnimationFrame(()=>we.current?.focus());return}if(ee){I(!1),requestAnimationFrame(()=>Ee.current?.focus());return}f(`agent-list`)}}],e&&d===`workspace`),!e)return null;let et=p.filter(e=>e.category===`coding`),tt=p.filter(e=>e.category!==`coding`);return(0,K.jsx)(`div`,{className:`dialog-overlay`,"data-testid":`dialog-overlay`,children:(0,K.jsxs)(`div`,{className:`input-dialog fx-crt-panel`,"data-testid":`input-dialog`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`input-dialog-title`,ref:xe,onKeyDown:$e,children:[(0,K.jsxs)(`div`,{className:`dialog-header fx-crt-panel-compact`,children:[(0,K.jsx)(`div`,{className:`dialog-header-copy`,children:(0,K.jsx)(`h3`,{id:`input-dialog-title`,className:`dialog-header-title`,children:t?s.startMainAgent:s.startNewAgent})}),!t&&(0,K.jsx)(`button`,{type:`button`,className:`close-btn`,"data-testid":`input-dialog-close`,"aria-label":s.close,onClick:u,children:(0,K.jsx)(Se,{})})]}),ve&&(0,K.jsx)(cn,{copy:s,initialPath:S||Me[0]||`~`,onCancel:()=>{ye(!1),requestAnimationFrame(()=>we.current?.focus())},onSelect:e=>{U.current=!0,C(e),pe(-1),B(-1),ye(!1),requestAnimationFrame(()=>{we.current?.focus(),we.current?.setSelectionRange(e.length,e.length)})}}),!ve&&d===`agent-list`&&(0,K.jsxs)(`div`,{className:`agent-list`,children:[!g&&(0,K.jsxs)(`div`,{className:`agent-list-status fx-crt-panel`,"data-testid":`agent-list-status`,children:[(0,K.jsx)(`span`,{className:`agent-list-spinner`,"aria-hidden":`true`}),(0,K.jsx)(`span`,{children:s.loadingAgents})]}),g&&v&&(0,K.jsx)(`div`,{className:`agent-list-status fx-crt-panel`,"data-testid":`agent-list-status`,children:s.agentListUnavailable}),g&&!v&&et.length===0&&tt.length===0&&(0,K.jsx)(`div`,{className:`agent-list-status fx-crt-panel`,"data-testid":`agent-list-status`,children:s.noSupportedAgentsFound}),t&&Fe&&(0,K.jsxs)(`label`,{className:`main-agent-resume-option fx-crt-panel`,"data-testid":`main-agent-resume-option`,children:[(0,K.jsx)(`input`,{type:`checkbox`,"data-testid":`main-agent-resume-toggle`,checked:ae,onChange:e=>V(e.target.checked)}),(0,K.jsxs)(`span`,{className:`main-agent-resume-copy`,children:[(0,K.jsx)(`span`,{className:`main-agent-resume-title`,children:s.resumePreviousMainAgent}),(0,K.jsx)(`span`,{className:`main-agent-resume-detail`,children:_n(Fe,s)})]})]}),et.length>0&&(0,K.jsxs)(`div`,{className:`agent-group`,children:[(0,K.jsx)(`div`,{className:`group-label`,children:s.codingAgents}),et.map((e,n)=>(0,K.jsxs)(`button`,{className:`agent-item fx-crt-panel`,"data-testid":`agent-option-${e.name}`,disabled:t&&(me||!ue),onClick:()=>ze(e),children:[(0,K.jsx)(m,{name:e.name}),(0,K.jsx)(`span`,{className:`key-hint-badge`,children:n<9?n+1:0}),(0,K.jsxs)(`span`,{className:`agent-item-copy`,children:[(0,K.jsx)(`span`,{className:`agent-item-name`,children:c(e.name)}),(0,K.jsx)(`span`,{className:`agent-item-desc`,children:e.description})]})]},e.name))]}),tt.length>0&&(0,K.jsxs)(`div`,{className:`agent-group`,children:[(0,K.jsx)(`div`,{className:`group-label`,children:s.otherAgents}),tt.map((e,n)=>{let r=et.length+n;return(0,K.jsxs)(`button`,{className:`agent-item fx-crt-panel`,"data-testid":`agent-option-${e.name}`,disabled:t&&(me||!ue),onClick:()=>ze(e),children:[(0,K.jsx)(m,{name:e.name}),(0,K.jsx)(`span`,{className:`key-hint-badge`,children:r<9?r+1:0}),(0,K.jsxs)(`span`,{className:`agent-item-copy`,children:[(0,K.jsx)(`span`,{className:`agent-item-name`,children:c(e.name)}),(0,K.jsx)(`span`,{className:`agent-item-desc`,children:e.description})]})]},e.name)})]})]}),!ve&&d===`workspace`&&b&&(0,K.jsxs)(`div`,{className:`workspace-input`,"data-testid":`workspace-step`,children:[(Ke?.length??0)>1&&(0,K.jsxs)(`div`,{className:`workspace-home-field`,ref:Te,children:[(0,K.jsxs)(`p`,{className:`workspace-field-copy`,children:[c(b.name),` Home`]}),(0,K.jsxs)(`button`,{ref:Ee,type:`button`,className:`workspace-home-trigger`,"data-testid":`agent-home-select`,"aria-label":`${c(b.name)} home`,"aria-expanded":ee,"aria-controls":`agent-home-options`,onClick:()=>I(e=>!e),onKeyDown:e=>{if(e.key===`Escape`&&ee){e.preventDefault(),e.stopPropagation(),I(!1);return}e.key!==`ArrowDown`&&e.key!==`ArrowUp`||(e.preventDefault(),I(!0),requestAnimationFrame(()=>{let t=e.key===`ArrowDown`?`[data-home-option]:first-child`:`[data-home-option]:last-child`;Te.current?.querySelector(t)?.focus()}))},children:[(0,K.jsxs)(`span`,{className:`workspace-home-trigger-copy`,children:[(0,K.jsx)(`strong`,{children:qe?.id||`default`}),(0,K.jsx)(`span`,{children:an(qe?.path||``)})]}),(0,K.jsx)(be,{})]}),ee&&(0,K.jsx)(`div`,{className:`workspace-home-menu`,id:`agent-home-options`,"data-testid":`agent-home-menu`,role:`listbox`,"aria-label":`${c(b.name)} home`,onKeyDown:e=>{e.key===`Escape`&&(e.preventDefault(),e.stopPropagation(),I(!1),requestAnimationFrame(()=>Ee.current?.focus()))},children:Ke.map(e=>{let t=e.id===M;return(0,K.jsxs)(`button`,{type:`button`,className:`workspace-home-option ${t?`selected`:``}`,"data-testid":`agent-home-option`,"data-home-option":!0,role:`option`,"aria-selected":t,onClick:()=>Je(e.id),children:[(0,K.jsx)(ke,{className:`workspace-home-option-check`}),(0,K.jsxs)(`span`,{className:`workspace-home-option-copy`,children:[(0,K.jsx)(`strong`,{children:e.id}),(0,K.jsx)(`span`,{children:an(e.path)})]})]},e.id)})})]}),[`codex`,`claude`,`opencode`,`qoder`].includes(b.name)&&(0,K.jsxs)(`div`,{className:`workspace-runtime-field`,"data-testid":`codex-runtime-mode`,children:[(0,K.jsxs)(`p`,{className:`workspace-field-copy`,children:[c(b.name),` runtime`]}),(0,K.jsxs)(`div`,{className:`workspace-runtime-options`,role:`group`,"aria-label":`${c(b.name)} runtime`,children:[(0,K.jsx)(`button`,{type:`button`,className:P===`cli`?`active`:``,"aria-pressed":P===`cli`,onClick:()=>F(`cli`),children:`Terminal`}),(0,K.jsxs)(`button`,{type:`button`,className:P===`acp`?`active`:``,"aria-pressed":P===`acp`,onClick:()=>F(`acp`),children:[`Chat `,(0,K.jsx)(`span`,{children:`ACP`})]}),b.name===`codex`&&(0,K.jsxs)(`button`,{type:`button`,className:P===`app-server`?`active`:``,"aria-pressed":P===`app-server`,onClick:()=>F(`app-server`),children:[`App Server `,(0,K.jsx)(`span`,{children:`unstable`})]})]})]}),(0,K.jsx)(`p`,{className:`workspace-field-copy`,children:s.workspace}),(0,K.jsxs)(`div`,{className:`workspace-path-field`,children:[(0,K.jsx)(`input`,{ref:we,"data-testid":`workspace-input`,type:`text`,value:S,onFocus:()=>We(S),onChange:e=>{let t=e.target.value;U.current=!0,ge(null),C(t),We(t)},onKeyDown:e=>{if(e.key===`ArrowDown`){if(R.length>0&&Xe(1)){e.preventDefault();return}Ze(1)&&e.preventDefault();return}if(e.key===`ArrowUp`){if(R.length>0&&Xe(-1)){e.preventDefault();return}Ze(-1)&&e.preventDefault();return}if(e.key===`Tab`&&R.length>0){Ye(z===-1?0:z)&&e.preventDefault();return}if(e.key===`Enter`){if(e.preventDefault(),z!==-1&&Ye(z))return;He()}e.key===`Escape`&&(e.preventDefault(),f(`agent-list`))},placeholder:s.workspacePathPlaceholder,name:`workspace-path`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`go`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,disabled:H!==null}),(0,K.jsx)(`button`,{type:`button`,className:`workspace-directory-picker`,"data-testid":`workspace-directory-picker`,"aria-label":s.chooseWorkspaceDirectory,title:s.chooseWorkspaceDirectory,disabled:H!==null,onClick:()=>ye(!0),children:(0,K.jsx)(Pe,{})})]}),H?(0,K.jsxs)(`div`,{className:`workspace-directory-prompt ${H.kind===`error`?`error`:``}`,"data-testid":`workspace-directory-prompt`,role:`alertdialog`,"aria-labelledby":`workspace-directory-prompt-title`,"aria-describedby":`workspace-directory-prompt-description`,children:[(0,K.jsx)(`div`,{className:`workspace-directory-prompt-icon`,"aria-hidden":`true`,children:H.kind===`error`?(0,K.jsx)(_e,{}):(0,K.jsx)(Ne,{})}),(0,K.jsxs)(`div`,{className:`workspace-directory-prompt-copy`,children:[(0,K.jsx)(`h4`,{id:`workspace-directory-prompt-title`,children:H.kind===`error`?s.workspaceCreateFailedTitle:s.workspaceMissingTitle}),(0,K.jsx)(`p`,{id:`workspace-directory-prompt-description`,children:H.kind===`error`?H.code===`workspace-create-forbidden`?s.workspaceCreateForbiddenDescription:s.workspaceCreateFailedDescription:s.workspaceMissingDescription}),(0,K.jsx)(`code`,{children:an(H.workspace)})]}),(0,K.jsx)(`div`,{className:`workspace-directory-prompt-actions`,children:H.kind===`error`?(0,K.jsx)(`button`,{ref:Oe,type:`button`,"data-testid":`workspace-directory-back`,onClick:()=>{ge(null),requestAnimationFrame(()=>we.current?.focus())},children:s.returnToWorkspace}):(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`button`,{ref:Oe,type:`button`,"data-testid":`workspace-directory-create`,disabled:H.kind===`creating`,onClick:()=>void Ue(),children:H.kind===`creating`?s.workspaceCreating:s.workspaceCreateAndStart}),(0,K.jsx)(`button`,{type:`button`,className:`secondary`,"data-testid":`workspace-directory-cancel`,disabled:H.kind===`creating`,onClick:()=>{ge(null),requestAnimationFrame(()=>we.current?.focus())},children:s.back})]})})]}):R.length>0&&(0,K.jsx)(`div`,{ref:De,className:`workspace-path-suggestions fx-crt-panel`,"data-testid":`workspace-path-suggestions`,role:`listbox`,children:R.map((e,t)=>(0,K.jsxs)(`button`,{type:`button`,className:`workspace-path-suggestion ${t===z?`active`:``}`,"data-testid":`workspace-path-suggestion`,role:`option`,"aria-selected":t===z,onMouseDown:e=>{e.preventDefault(),Ye(t)},children:[(0,K.jsx)(`span`,{className:`workspace-path-suggestion-name`,children:e.name}),(0,K.jsx)(`span`,{className:`workspace-path-suggestion-path`,children:an(e.path)})]},e.path))}),!t&&o&&(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`p`,{className:`workspace-field-copy`,children:`Workflow:`}),(0,K.jsx)(`select`,{className:`workflow-select fx-crt-panel`,"data-testid":`workflow-template-select`,value:E,onChange:e=>D(e.target.value),"aria-label":`Workflow template`,children:ln.map(e=>(0,K.jsx)(`option`,{value:e.id,children:e.label},e.id||`none`))}),(0,K.jsx)(`p`,{className:`workspace-field-copy`,children:`Task (optional):`}),(0,K.jsx)(`textarea`,{className:`task-input fx-crt-panel`,"data-testid":`task-input`,value:w,onChange:e=>T(e.target.value),placeholder:`Describe what this agent should focus on`,rows:4,name:`agent-task`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`done`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`})]}),!H&&Me.length>0&&(0,K.jsxs)(`div`,{className:`workspace-history fx-crt-panel`,"data-testid":`workspace-history`,children:[(0,K.jsxs)(`div`,{className:`workspace-history-header`,children:[(0,K.jsx)(`span`,{children:s.recentWorkspacesLower}),(0,K.jsxs)(`span`,{className:`hint`,"aria-hidden":`true`,children:[(0,K.jsx)(Ce,{}),(0,K.jsx)(Ae,{})]})]}),(0,K.jsx)(`div`,{className:`workspace-history-list`,children:Me.map((e,t)=>(0,K.jsxs)(`button`,{type:`button`,className:`workspace-history-item ${t===fe?`active`:``}`,"data-testid":`workspace-history-item`,onMouseDown:e=>{e.preventDefault(),Ge(t)},children:[(0,K.jsx)(`span`,{className:`workspace-history-index`,children:t+1}),(0,K.jsx)(`span`,{className:`workspace-history-path`,children:an(e)}),t===0&&e===O[0]&&(0,K.jsx)(`span`,{className:`workspace-history-badge`,children:s.latest})]},e))})]}),!H&&(0,K.jsxs)(`div`,{className:`workspace-actions`,children:[(0,K.jsx)(`button`,{type:`button`,"data-testid":`workspace-start`,"aria-label":s.start,disabled:me,onClick:()=>void He(),children:s.start}),(0,K.jsx)(`button`,{type:`button`,"data-testid":`workspace-back`,"aria-label":s.back,onClick:()=>f(`agent-list`),children:s.back})]})]})]})})}var yn=3e3,bn=6e3;function xn(e,t,n,r){let i=Math.max(0,r-n);return!e&&t?`lost`:!e&&i>=yn?`connecting`:e&&i>=bn?`stale`:null}function Sn({copy:e}){let t=at(),n=It(),[r,i]=(0,G.useState)(()=>Date.now());(0,G.useEffect)(()=>{if(!n)return;let e=window.setInterval(()=>i(Date.now()),1e3);return()=>window.clearInterval(e)},[n]);let a=xn(t.connected,t.everConnected,t.lastMessageAt,r);if(!a)return null;let o=a===`lost`?e.backendConnectionLost:a===`stale`?e.backendHeartbeatLost:e.backendConnecting;return(0,K.jsxs)(`div`,{className:`connection-status ${a}`,"data-testid":`connection-status`,role:`status`,"aria-live":`polite`,children:[(0,K.jsx)(`span`,{className:`connection-status-dot`,"aria-hidden":`true`}),(0,K.jsx)(`span`,{children:o})]})}function Cn(e){return e?.runtimeBinding.kind===`acp`}function wn(e){return e?.runtimeBinding.kind===`json`}function Tn(e){return e?.runtimeBinding.kind===`app-server`}function En(e){return!!(e&&e.runtimeBinding.kind!==`terminal`)}function Dn(e,t){return e===`terminal`?{kind:`terminal`}:e===`json`?{kind:`json`,state:`starting`,error:``,transcriptUpdatedAt:``}:e===`acp`?{kind:`acp`,state:`starting`,error:``,stopReason:``,pendingPermission:null,pendingPermissions:[],pendingElicitation:null,pendingElicitations:[],activeElicitations:[],sessionUpdatedAt:``,sessionRevision:0}:t}var On={app:0,codeWorkspace:0};function kn(){typeof window>`u`||!window.__FARMING_E2E__||window.__farmingPerformanceTest||(window.__farmingPerformanceTest={reset(){On.app=0,On.codeWorkspace=0},snapshot(){return{...On}}})}function An(e){typeof window>`u`||!window.__FARMING_E2E__||(kn(),On[e]+=1)}var jn=`__farming_project__:`,Mn=new Map;function Nn(e){let t=e.trim();return t===`/`?t:t.replace(/[\/]+$/,``)}function Pn(e){let t=new TextEncoder().encode(e),n=14695981039346656037n;for(let e of t)n^=BigInt(e),n=BigInt.asUintN(64,n*1099511628211n);return`wroot_${n.toString(16).padStart(16,`0`)}`}function Fn(e){let t=Nn(e),n=Pn(t);return Mn.set(n,t),n}function In(e){let t=String(e||``),n=Mn.get(t);if(n)return n;if(!t.startsWith(jn))return``;try{return Nn(decodeURIComponent(t.slice(20)))}catch{return``}}function Ln(e){if(!Array.isArray(e))return[];let t=new Set;return e.map(e=>String(e||``).trim().replace(/[\/]+$/,``)).filter(e=>!e||e===`/`||t.has(e)?!1:(t.add(e),!0))}function Rn(){return{entries:[],index:-1}}function zn(e,t=Date.now()){return{kind:`agent`,agentId:e,reason:`agent`,ts:t}}function Bn(e,t=Date.now()){return{kind:`file`,agentId:e.agentId,filePath:e.filePath,view:e.view??`editor`,lineNumber:Math.max(1,e.lineNumber??1),column:Math.max(1,e.column??1),endColumn:e.endColumn,...e.sourceAgentId?{sourceAgentId:e.sourceAgentId}:{},reason:e.reason??`file`,ts:t}}function Vn(e,t){return e.kind===t.kind?e.kind===`agent`&&t.kind===`agent`?e.agentId===t.agentId:e.kind===`file`&&t.kind===`file`?e.agentId===t.agentId&&e.filePath===t.filePath&&e.view===t.view:!1:!1}function Hn(e,t){if(!e||!Vn(e,t))return!1;if(e.kind===`agent`&&t.kind===`agent`)return!0;if(e.kind!==`file`||t.kind!==`file`)return!1;let n=Math.abs(e.lineNumber-t.lineNumber);return e.lineNumber===t.lineNumber&&e.column===t.column&&e.endColumn===t.endColumn||t.reason===`cursor`&&(n<30||t.ts-e.ts<1e3)||n<=15}function Un(e,t,n=50){let r=e.entries[e.index],i=Hn(r,t),a=e.entries,o=e.index;return i&&o>=0?(a=a.slice(),a[o]=t):(a=a.slice(0,o+1),a.push(t),a.length>n&&(a=a.slice(a.length-n)),o=a.length-1),{entries:a,index:o}}function Wn(e,t=typeof navigator<`u`?navigator.platform:``){return!(e.key===`-`||e.key===`_`||e.code===`Minus`)||!e.ctrlKey||e.metaKey||e.altKey?null:e.shiftKey?1:-1}t(((e,t)=>{(function(e){let n=/^farming-runtime-v1:(\d{20}):/;function r(e){let t=n.exec(String(e||``));if(!t)return null;let r=Number(t[1]);return Number.isSafeInteger(r)&&r>0?r:null}function i(e,t){if(e===t)return 0;let n=r(e),i=r(t);return n===null||i===null||n===i?null:n<i?-1:1}function a(t){let n=String(t||``);return typeof e.TextEncoder==`function`?new e.TextEncoder().encode(n).byteLength:encodeURIComponent(n).replace(/%[0-9A-F]{2}/gi,`x`).length}function o(e={}){return{runtimeEpoch:``,outputSeq:null,stateRevision:null,replayTargetEpoch:``,replayTargetRevision:null,recovering:!1,queuedTransitions:[],queuedBytes:0,retiredRuntimeEpochs:new Set,failureCount:0,invariantFailureSignature:``,invariantFailureCount:0,halted:!1,haltMessage:``,maxQueuedTransitions:e.maxQueuedTransitions||512,maxQueuedBytes:e.maxQueuedBytes||1048576,retryBaseMs:e.retryBaseMs||250,retryMaxMs:e.retryMaxMs||5e3,maxIdenticalInvariantFailures:e.maxIdenticalInvariantFailures||3}}function s(e){return!!(e&&e.runtimeEpoch)&&Number.isFinite(e.outputSeq)&&Number.isFinite(e.stateRevision)&&(e.kind!==`resize`||Number.isFinite(e.cols)&&Number.isFinite(e.rows))}function c(e){return!!(e&&e.runtimeEpoch)&&Number.isFinite(e.outputSeq)&&Number.isFinite(e.stateRevision)&&Number.isFinite(e.cols)&&Number.isFinite(e.rows)&&e.cols>0&&e.rows>0}function l(e,t){if(!(!t||!t.runtimeEpoch||!Number.isFinite(t.stateRevision))){if(!e.replayTargetEpoch){e.replayTargetEpoch=t.runtimeEpoch,e.replayTargetRevision=t.stateRevision;return}if(t.runtimeEpoch===e.replayTargetEpoch){e.replayTargetRevision=Math.max(e.replayTargetRevision||0,t.stateRevision);return}i(t.runtimeEpoch,e.replayTargetEpoch)===1&&(e.replayTargetEpoch=t.runtimeEpoch,e.replayTargetRevision=t.stateRevision)}}function u(e,t){e.recovering=!0,l(e,t)}function d(e){return!e.replayTargetEpoch||!Number.isFinite(e.replayTargetRevision)?!1:!e.runtimeEpoch||!Number.isFinite(e.stateRevision)?!0:e.runtimeEpoch===e.replayTargetEpoch?e.stateRevision<e.replayTargetRevision:i(e.runtimeEpoch,e.replayTargetEpoch)!==1}function f(e,t){if(!s(t))return u(e,t),{action:`recover`,reason:`invalid-transition`};if(e.retiredRuntimeEpochs.has(t.runtimeEpoch))return{action:`drop`,reason:`retired-epoch`};if(e.runtimeEpoch&&t.runtimeEpoch!==e.runtimeEpoch)return i(t.runtimeEpoch,e.runtimeEpoch)===-1?{action:`drop`,reason:`older-epoch`}:(u(e,t),{action:`recover`,reason:`epoch-change`});if(!e.runtimeEpoch||!Number.isFinite(e.outputSeq)||!Number.isFinite(e.stateRevision))return u(e,t),{action:`recover`,reason:`missing-cursor`};if(t.stateRevision<=e.stateRevision)return{action:`drop`,reason:`duplicate`};let n=+(t.kind===`output`);return t.stateRevision!==e.stateRevision+1||t.outputSeq!==e.outputSeq+n?(u(e,t),{action:`recover`,reason:`sequence-gap`}):{action:`apply`}}function p(e,t){if(!s(t))return u(e,t),{queued:!1,overflow:!1};l(e,t);let n=a(t.data);return e.queuedTransitions.length>=e.maxQueuedTransitions||e.queuedBytes+n>e.maxQueuedBytes?(e.queuedTransitions=[],e.queuedBytes=0,e.recovering=!0,{queued:!1,overflow:!0}):(e.queuedTransitions.push(t),e.queuedBytes+=n,{queued:!0,overflow:!1})}function m(e){let t=e.queuedTransitions.shift()||null;return t&&(e.queuedBytes=Math.max(0,e.queuedBytes-a(t.data))),t}function h(e){e.queuedTransitions=[],e.queuedBytes=0}function g(e,t){return{action:`reject`,signature:e,message:t}}function _(e,t){if(t.runtimeEpoch!==e.replayTargetEpoch||!Number.isFinite(e.replayTargetRevision))return!1;let n=t.outputSeq,r=t.stateRevision;for(let i of e.queuedTransitions){if(!s(i)||i.runtimeEpoch!==t.runtimeEpoch)return!1;if(i.stateRevision<=r)continue;let a=+(i.kind===`output`);if(i.stateRevision!==r+1||i.outputSeq!==n+a)return!1;if(n=i.outputSeq,r=i.stateRevision,r>=e.replayTargetRevision)return!0}return!1}function v(e,t){if(!c(t))return g(`invalid-checkpoint`,`Terminal replay returned an invalid screen state`);if(e.runtimeEpoch&&t.runtimeEpoch!==e.runtimeEpoch){if(i(t.runtimeEpoch,e.runtimeEpoch)===-1||e.retiredRuntimeEpochs.has(t.runtimeEpoch))return g(`older-epoch:${t.runtimeEpoch}:${e.runtimeEpoch}`,`Terminal replay returned an older runtime epoch`)}else if(t.runtimeEpoch===e.runtimeEpoch&&Number.isFinite(e.stateRevision)&&t.stateRevision<e.stateRevision)return g(`older-revision:${t.runtimeEpoch}:${t.stateRevision}:${e.stateRevision}`,`Terminal replay returned an older screen state`);if(e.replayTargetEpoch&&Number.isFinite(e.replayTargetRevision)){if(t.runtimeEpoch===e.replayTargetEpoch){if(t.stateRevision<e.replayTargetRevision&&!_(e,t))return g(`behind-target:${t.runtimeEpoch}:${t.stateRevision}:${e.replayTargetRevision}`,`Terminal replay did not reach the latest observed screen state`)}else if(i(t.runtimeEpoch,e.replayTargetEpoch)!==1)return g(`wrong-target-epoch:${t.runtimeEpoch}:${e.replayTargetEpoch}`,`Terminal replay returned a different runtime epoch`)}return{action:t.runtimeEpoch===e.runtimeEpoch&&t.outputSeq===e.outputSeq&&t.stateRevision===e.stateRevision?`current`:`install`}}function y(e,t){e.queuedTransitions=e.queuedTransitions.filter(n=>!s(n)||e.retiredRuntimeEpochs.has(n.runtimeEpoch)?!1:n.runtimeEpoch===t.runtimeEpoch?n.stateRevision>t.stateRevision:i(n.runtimeEpoch,t.runtimeEpoch)!==-1),e.queuedBytes=e.queuedTransitions.reduce((e,t)=>e+a(t.data),0)}function b(e){e.failureCount=0,e.invariantFailureSignature=``,e.invariantFailureCount=0,e.halted=!1,e.haltMessage=``}function x(e,t){if(e.runtimeEpoch&&e.runtimeEpoch!==t.runtimeEpoch)for(e.retiredRuntimeEpochs.add(e.runtimeEpoch);e.retiredRuntimeEpochs.size>4;)e.retiredRuntimeEpochs.delete(e.retiredRuntimeEpochs.values().next().value);return e.runtimeEpoch=t.runtimeEpoch,e.outputSeq=t.outputSeq,e.stateRevision=t.stateRevision,y(e,t),b(e),e.recovering=d(e),e.recovering&&_(e,t)&&(e.recovering=!1),e.recovering||(e.replayTargetEpoch=``,e.replayTargetRevision=null),!e.recovering}function S(e,t){e.runtimeEpoch=t.runtimeEpoch,e.outputSeq=t.outputSeq,e.stateRevision=t.stateRevision,d(e)||(e.replayTargetEpoch=``,e.replayTargetRevision=null,e.recovering=!1)}function C(e){let t=Math.max(0,e.failureCount-1);return Math.min(e.retryMaxMs,e.retryBaseMs*2**t)}function w(e){return e.failureCount+=1,e.recovering=!0,{halted:!1,delay:C(e),message:``}}function T(e,t,n){return e.failureCount+=1,e.recovering=!0,e.invariantFailureSignature===t?e.invariantFailureCount+=1:(e.invariantFailureSignature=t,e.invariantFailureCount=1),e.invariantFailureCount>=e.maxIdenticalInvariantFailures&&(e.halted=!0,e.haltMessage=n||`Terminal replay could not prove a current screen state`),{halted:e.halted,delay:e.halted?0:C(e),message:e.haltMessage}}function E(e,t={}){h(e),e.replayTargetEpoch=``,e.replayTargetRevision=null,e.recovering=!1,b(e),t.keepCursor===!1&&(e.runtimeEpoch=``,e.outputSeq=null,e.stateRevision=null,e.retiredRuntimeEpochs.clear())}let D={createState:o,compareRuntimeEpochs:i,beginRecovery:u,isReplayTargetPending:d,classifyTransition:f,queueTransition:p,takeQueuedTransition:m,clearQueuedTransitions:h,evaluateCheckpoint:v,commitCheckpoint:x,commitTransition:S,recordTransportFailure:w,recordInvariantFailure:T,resetRecovery:E};e.FarmingTerminalReplay=D,typeof t==`object`&&t.exports&&(t.exports=D)})(typeof globalThis==`object`?globalThis:window)}))();var Gn={background:`#ffffff`,foreground:`#24292f`,cursor:`#24292f`,cursorAccent:`#ffffff`,selectionBackground:`rgba(31, 35, 40, 0.18)`,black:`#24292f`,red:`#cf222e`,green:`#1a7f37`,yellow:`#9a6700`,blue:`#0969da`,magenta:`#8250df`,cyan:`#1b7c83`,white:`#57606a`,brightBlack:`#6e7781`,brightRed:`#a40e26`,brightGreen:`#2da44e`,brightYellow:`#bf8700`,brightBlue:`#218bff`,brightMagenta:`#a475f9`,brightCyan:`#3192aa`,brightWhite:`#24292f`},Kn=[`"JetBrains Mono"`,`"SF Mono"`,`Menlo`,`Monaco`,`"Cascadia Mono"`,`"Segoe UI Mono"`,`"Sarasa Mono SC"`,`"PingFang SC"`,`"Hiragino Sans GB"`,`"Noto Sans Mono CJK SC"`,`"Microsoft YaHei UI"`,`monospace`].join(`, `),qn=null,Jn=null;async function Yn(){return qn||Jn||(Jn=(async()=>{try{let e=r(`/vendor/ghostty-web`),t=`${e}/ghostty-web.js`,n=`${e}/ghostty-vt.wasm`,i=await s(()=>import(t),[]);return await i.init(n),qn={Terminal:i.Terminal,FitAddon:i.FitAddon},qn}catch(e){return console.error(`Failed to initialize Ghostty terminal:`,e),null}})(),Jn)}async function Xn(e){let t=await Yn();if(!t)return null;let n=e?.fontSize??12;return{terminal:new t.Terminal({theme:Gn,fontSize:n,fontFamily:Kn,cursorBlink:!1,smoothScrollDuration:120,scrollback:5e3}),fitAddon:new t.FitAddon}}var Zn=Object.defineProperty,Qn=Object.getOwnPropertyDescriptor,$n=(e,t)=>{for(var n in t)Zn(e,n,{get:t[n],enumerable:!0})},er=(e,t,n,r)=>{for(var i=r>1?void 0:r?Qn(t,n):t,a=e.length-1,o;a>=0;a--)(o=e[a])&&(i=(r?o(t,n,i):o(i))||i);return r&&i&&Zn(t,n,i),i},q=(e,t)=>(n,r)=>t(n,r,e),tr=`Terminal input`,nr={get:()=>tr,set:e=>tr=e},rr=`Too much output to announce, navigate to rows manually to read`,ir={get:()=>rr,set:e=>rr=e};function ar(e){return e.replace(/\r?\n/g,`\r`)}function or(e,t){return t?`\x1B[200~`+e+`\x1B[201~`:e}function sr(e,t){e.clipboardData&&e.clipboardData.setData(`text/plain`,t.selectionText),e.preventDefault()}function cr(e,t,n,r){e.stopPropagation(),e.clipboardData&&lr(e.clipboardData.getData(`text/plain`),t,n,r)}function lr(e,t,n,r){e=ar(e),e=or(e,n.decPrivateModes.bracketedPasteMode&&r.rawOptions.ignoreBracketedPasteMode!==!0),n.triggerDataEvent(e,!0),t.value=``}function ur(e,t,n){let r=n.getBoundingClientRect(),i=e.clientX-r.left-10,a=e.clientY-r.top-10;t.style.width=`20px`,t.style.height=`20px`,t.style.left=`${i}px`,t.style.top=`${a}px`,t.style.zIndex=`1000`,t.focus()}function dr(e,t,n,r,i){ur(e,t,n),i&&r.rightClickSelect(e),t.value=r.selectionText,t.select()}function fr(e){return e>65535?(e-=65536,String.fromCharCode((e>>10)+55296)+String.fromCharCode(e%1024+56320)):String.fromCharCode(e)}function pr(e,t=0,n=e.length){let r=``;for(let i=t;i<n;++i){let t=e[i];t>65535?(t-=65536,r+=String.fromCharCode((t>>10)+55296)+String.fromCharCode(t%1024+56320)):r+=String.fromCharCode(t)}return r}var mr=class{constructor(){this._interim=0}clear(){this._interim=0}decode(e,t){let n=e.length;if(!n)return 0;let r=0,i=0;if(this._interim){let n=e.charCodeAt(i++);56320<=n&&n<=57343?t[r++]=(this._interim-55296)*1024+n-56320+65536:(t[r++]=this._interim,t[r++]=n),this._interim=0}for(let a=i;a<n;++a){let i=e.charCodeAt(a);if(55296<=i&&i<=56319){if(++a>=n)return this._interim=i,r;let o=e.charCodeAt(a);56320<=o&&o<=57343?t[r++]=(i-55296)*1024+o-56320+65536:(t[r++]=i,t[r++]=o);continue}i!==65279&&(t[r++]=i)}return r}},hr=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(e,t){let n=e.length;if(!n)return 0;let r=0,i,a,o,s,c=0,l=0;if(this.interim[0]){let i=!1,a=this.interim[0];a&=(a&224)==192?31:(a&240)==224?15:7;let o=0,s;for(;(s=this.interim[++o]&63)&&o<4;)a<<=6,a|=s;let c=(this.interim[0]&224)==192?2:(this.interim[0]&240)==224?3:4,u=c-o;for(;l<u;){if(l>=n)return 0;if(s=e[l++],(s&192)!=128){l--,i=!0;break}else this.interim[o++]=s,a<<=6,a|=s&63}i||(c===2?a<128?l--:t[r++]=a:c===3?a<2048||a>=55296&&a<=57343||a===65279||(t[r++]=a):a<65536||a>1114111||(t[r++]=a)),this.interim.fill(0)}let u=n-4,d=l;for(;d<n;){for(;d<u&&!((i=e[d])&128)&&!((a=e[d+1])&128)&&!((o=e[d+2])&128)&&!((s=e[d+3])&128);)t[r++]=i,t[r++]=a,t[r++]=o,t[r++]=s,d+=4;if(i=e[d++],i<128)t[r++]=i;else if((i&224)==192){if(d>=n)return this.interim[0]=i,r;if(a=e[d++],(a&192)!=128){d--;continue}if(c=(i&31)<<6|a&63,c<128){d--;continue}t[r++]=c}else if((i&240)==224){if(d>=n)return this.interim[0]=i,r;if(a=e[d++],(a&192)!=128){d--;continue}if(d>=n)return this.interim[0]=i,this.interim[1]=a,r;if(o=e[d++],(o&192)!=128){d--;continue}if(c=(i&15)<<12|(a&63)<<6|o&63,c<2048||c>=55296&&c<=57343||c===65279)continue;t[r++]=c}else if((i&248)==240){if(d>=n)return this.interim[0]=i,r;if(a=e[d++],(a&192)!=128){d--;continue}if(d>=n)return this.interim[0]=i,this.interim[1]=a,r;if(o=e[d++],(o&192)!=128){d--;continue}if(d>=n)return this.interim[0]=i,this.interim[1]=a,this.interim[2]=o,r;if(s=e[d++],(s&192)!=128){d--;continue}if(c=(i&7)<<18|(a&63)<<12|(o&63)<<6|s&63,c<65536||c>1114111)continue;t[r++]=c}}return r}},gr=``,_r=` `,vr=class e{constructor(){this.fg=0,this.bg=0,this.extended=new yr}static toColorRGB(e){return[e>>>16&255,e>>>8&255,e&255]}static fromColorRGB(e){return(e[0]&255)<<16|(e[1]&255)<<8|e[2]&255}clone(){let t=new e;return t.fg=this.fg,t.bg=this.bg,t.extended=this.extended.clone(),t}isInverse(){return this.fg&67108864}isBold(){return this.fg&134217728}isUnderline(){return this.hasExtendedAttrs()&&this.extended.underlineStyle!==0?1:this.fg&268435456}isBlink(){return this.fg&536870912}isInvisible(){return this.fg&1073741824}isItalic(){return this.bg&67108864}isDim(){return this.bg&134217728}isStrikethrough(){return this.fg&2147483648}isProtected(){return this.bg&536870912}isOverline(){return this.bg&1073741824}getFgColorMode(){return this.fg&50331648}getBgColorMode(){return this.bg&50331648}isFgRGB(){return(this.fg&50331648)==50331648}isBgRGB(){return(this.bg&50331648)==50331648}isFgPalette(){return(this.fg&50331648)==16777216||(this.fg&50331648)==33554432}isBgPalette(){return(this.bg&50331648)==16777216||(this.bg&50331648)==33554432}isFgDefault(){return(this.fg&50331648)==0}isBgDefault(){return(this.bg&50331648)==0}isAttributeDefault(){return this.fg===0&&this.bg===0}getFgColor(){switch(this.fg&50331648){case 16777216:case 33554432:return this.fg&255;case 50331648:return this.fg&16777215;default:return-1}}getBgColor(){switch(this.bg&50331648){case 16777216:case 33554432:return this.bg&255;case 50331648:return this.bg&16777215;default:return-1}}hasExtendedAttrs(){return this.bg&268435456}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(this.bg&268435456&&~this.extended.underlineColor)switch(this.extended.underlineColor&50331648){case 16777216:case 33554432:return this.extended.underlineColor&255;case 50331648:return this.extended.underlineColor&16777215;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return this.bg&268435456&&~this.extended.underlineColor?this.extended.underlineColor&50331648:this.getFgColorMode()}isUnderlineColorRGB(){return this.bg&268435456&&~this.extended.underlineColor?(this.extended.underlineColor&50331648)==50331648:this.isFgRGB()}isUnderlineColorPalette(){return this.bg&268435456&&~this.extended.underlineColor?(this.extended.underlineColor&50331648)==16777216||(this.extended.underlineColor&50331648)==33554432:this.isFgPalette()}isUnderlineColorDefault(){return this.bg&268435456&&~this.extended.underlineColor?(this.extended.underlineColor&50331648)==0:this.isFgDefault()}getUnderlineStyle(){return this.fg&268435456?this.bg&268435456?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}},yr=class e{constructor(e=0,t=0){this._ext=0,this._urlId=0,this._ext=e,this._urlId=t}get ext(){return this._urlId?this._ext&-469762049|this.underlineStyle<<26:this._ext}set ext(e){this._ext=e}get underlineStyle(){return this._urlId?5:(this._ext&469762048)>>26}set underlineStyle(e){this._ext&=-469762049,this._ext|=e<<26&469762048}get underlineColor(){return this._ext&67108863}set underlineColor(e){this._ext&=-67108864,this._ext|=e&67108863}get urlId(){return this._urlId}set urlId(e){this._urlId=e}get underlineVariantOffset(){let e=(this._ext&3758096384)>>29;return e<0?e^4294967288:e}set underlineVariantOffset(e){this._ext&=536870911,this._ext|=e<<29&3758096384}clone(){return new e(this._ext,this._urlId)}isEmpty(){return this.underlineStyle===0&&this._urlId===0}},br=class e extends vr{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new yr,this.combinedData=``}static fromCharData(t){let n=new e;return n.setFromCharData(t),n}isCombined(){return this.content&2097152}getWidth(){return this.content>>22}getChars(){return this.content&2097152?this.combinedData:this.content&2097151?fr(this.content&2097151):``}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):this.content&2097151}setFromCharData(e){this.fg=e[0],this.bg=0;let t=!1;if(e[1].length>2)t=!0;else if(e[1].length===2){let n=e[1].charCodeAt(0);if(55296<=n&&n<=56319){let r=e[1].charCodeAt(1);56320<=r&&r<=57343?this.content=(n-55296)*1024+r-56320+65536|e[2]<<22:t=!0}else t=!0}else this.content=e[1].charCodeAt(0)|e[2]<<22;t&&(this.combinedData=e[1],this.content=2097152|e[2]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}},xr=`di$target`,Sr=`di$dependencies`,Cr=new Map;function wr(e){return e[Sr]||[]}function Tr(e){if(Cr.has(e))return Cr.get(e);let t=function(e,n,r){if(arguments.length!==3)throw Error(`@IServiceName-decorator can only be used to decorate a parameter`);Er(t,e,r)};return t._id=e,Cr.set(e,t),t}function Er(e,t,n){t[xr]===t?t[Sr].push({id:e,index:n}):(t[Sr]=[{id:e,index:n}],t[xr]=t)}var Dr=Tr(`BufferService`),Or=Tr(`CoreMouseService`),kr=Tr(`CoreService`),Ar=Tr(`CharsetService`),jr=Tr(`InstantiationService`),Mr=Tr(`LogService`),Nr=Tr(`OptionsService`),Pr=Tr(`OscLinkService`),Fr=Tr(`UnicodeService`),Ir=Tr(`DecorationService`),Lr=class{constructor(e,t,n){this._bufferService=e,this._optionsService=t,this._oscLinkService=n}provideLinks(e,t){let n=this._bufferService.buffer.lines.get(e-1);if(!n){t(void 0);return}let r=[],i=this._optionsService.rawOptions.linkHandler,a=new br,o=n.getTrimmedLength(),s=-1,c=-1,l=!1;for(let t=0;t<o;t++)if(!(c===-1&&!n.hasContent(t))){if(n.loadCell(t,a),a.hasExtendedAttrs()&&a.extended.urlId)if(c===-1){c=t,s=a.extended.urlId;continue}else l=a.extended.urlId!==s;else c!==-1&&(l=!0);if(l||c!==-1&&t===o-1){let n=this._oscLinkService.getLinkData(s)?.uri;if(n){let a={start:{x:c+1,y:e},end:{x:t+ +(!l&&t===o-1),y:e}},s=!1;if(!i?.allowNonHttpProtocols)try{let e=new URL(n);[`http:`,`https:`].includes(e.protocol)||(s=!0)}catch{s=!0}s||r.push({text:n,range:a,activate:(e,t)=>i?i.activate(e,t,a):Rr(e,t),hover:(e,t)=>i?.hover?.(e,t,a),leave:(e,t)=>i?.leave?.(e,t,a)})}l=!1,a.hasExtendedAttrs()&&a.extended.urlId?(c=t,s=a.extended.urlId):(c=-1,s=-1)}}t(r)}};Lr=er([q(0,Dr),q(1,Nr),q(2,Pr)],Lr);function Rr(e,t){if(confirm(`Do you want to navigate to ${t}?
6
+
7
+ WARNING: This link could potentially be dangerous`)){let e=window.open();if(e){try{e.opener=null}catch{}e.location.href=t}else console.warn(`Opening link blocked as opener could not be cleared`)}}var zr=Tr(`CharSizeService`),Br=Tr(`CoreBrowserService`),Vr=Tr(`MouseService`),J=Tr(`RenderService`),Hr=Tr(`SelectionService`),Ur=Tr(`CharacterJoinerService`),Y=Tr(`ThemeService`),Wr=Tr(`LinkProviderService`),Gr=new class{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(e){setTimeout(()=>{throw e.stack?Zr.isErrorNoTelemetry(e)?new Zr(e.message+`
8
+
9
+ `+e.stack):Error(e.message+`
10
+
11
+ `+e.stack):e},0)}}addListener(e){return this.listeners.push(e),()=>{this._removeListener(e)}}emit(e){this.listeners.forEach(t=>{t(e)})}_removeListener(e){this.listeners.splice(this.listeners.indexOf(e),1)}setUnexpectedErrorHandler(e){this.unexpectedErrorHandler=e}getUnexpectedErrorHandler(){return this.unexpectedErrorHandler}onUnexpectedError(e){this.unexpectedErrorHandler(e),this.emit(e)}onUnexpectedExternalError(e){this.unexpectedErrorHandler(e)}};function Kr(e){Jr(e)||Gr.onUnexpectedError(e)}var qr=`Canceled`;function Jr(e){return e instanceof Yr?!0:e instanceof Error&&e.name===qr&&e.message===qr}var Yr=class extends Error{constructor(){super(qr),this.name=this.message}};function Xr(e){return Error(e?`Illegal argument: ${e}`:`Illegal argument`)}var Zr=class e extends Error{constructor(e){super(e),this.name=`CodeExpectedError`}static fromError(t){if(t instanceof e)return t;let n=new e;return n.message=t.message,n.stack=t.stack,n}static isErrorNoTelemetry(e){return e.name===`CodeExpectedError`}},Qr=class e extends Error{constructor(t){super(t||`An unexpected bug occurred.`),Object.setPrototypeOf(this,e.prototype)}};function $r(e,t,n=0,r=e.length){let i=n,a=r;for(;i<a;){let n=Math.floor((i+a)/2);t(e[n])?i=n+1:a=n}return i-1}var ei=class e{constructor(e){this._array=e,this._findLastMonotonousLastIdx=0}findLastMonotonous(t){if(e.assertInvariants){if(this._prevFindLastPredicate){for(let e of this._array)if(this._prevFindLastPredicate(e)&&!t(e))throw Error(`MonotonousArray: current predicate must be weaker than (or equal to) the previous predicate.`)}this._prevFindLastPredicate=t}let n=$r(this._array,t,this._findLastMonotonousLastIdx);return this._findLastMonotonousLastIdx=n+1,n===-1?void 0:this._array[n]}};ei.assertInvariants=!1;function ti(e,t=0){return e[e.length-(1+t)]}var ni;(e=>{function t(e){return e<0}e.isLessThan=t;function n(e){return e<=0}e.isLessThanOrEqual=n;function r(e){return e>0}e.isGreaterThan=r;function i(e){return e===0}e.isNeitherLessOrGreaterThan=i,e.greaterThan=1,e.lessThan=-1,e.neitherLessOrGreaterThan=0})(ni||={});function ri(e,t){return(n,r)=>t(e(n),e(r))}var ii=(e,t)=>e-t,ai=class e{constructor(e){this.iterate=e}forEach(e){this.iterate(t=>(e(t),!0))}toArray(){let e=[];return this.iterate(t=>(e.push(t),!0)),e}filter(t){return new e(e=>this.iterate(n=>t(n)?e(n):!0))}map(t){return new e(e=>this.iterate(n=>e(t(n))))}some(e){let t=!1;return this.iterate(n=>(t=e(n),!t)),t}findFirst(e){let t;return this.iterate(n=>e(n)?(t=n,!1):!0),t}findLast(e){let t;return this.iterate(n=>(e(n)&&(t=n),!0)),t}findLastMaxBy(e){let t,n=!0;return this.iterate(r=>((n||ni.isGreaterThan(e(r,t)))&&(n=!1,t=r),!0)),t}};ai.empty=new ai(e=>{});function oi(e,t){let n=Object.create(null);for(let r of e){let e=t(r),i=n[e];i||=n[e]=[],i.push(r)}return n}var si=class{constructor(){this.map=new Map}add(e,t){let n=this.map.get(e);n||(n=new Set,this.map.set(e,n)),n.add(t)}delete(e,t){let n=this.map.get(e);n&&(n.delete(t),n.size===0&&this.map.delete(e))}forEach(e,t){let n=this.map.get(e);n&&n.forEach(t)}get(e){return this.map.get(e)||new Set}};function ci(e,t){let n=this,r=!1,i;return function(){if(r)return i;if(r=!0,t)try{i=e.apply(n,arguments)}finally{t()}else i=e.apply(n,arguments);return i}}var li;(e=>{function t(e){return e&&typeof e==`object`&&typeof e[Symbol.iterator]==`function`}e.is=t;let n=Object.freeze([]);function r(){return n}e.empty=r;function*i(e){yield e}e.single=i;function a(e){return t(e)?e:i(e)}e.wrap=a;function o(e){return e||n}e.from=o;function*s(e){for(let t=e.length-1;t>=0;t--)yield e[t]}e.reverse=s;function c(e){return!e||e[Symbol.iterator]().next().done===!0}e.isEmpty=c;function l(e){return e[Symbol.iterator]().next().value}e.first=l;function u(e,t){let n=0;for(let r of e)if(t(r,n++))return!0;return!1}e.some=u;function d(e,t){for(let n of e)if(t(n))return n}e.find=d;function*f(e,t){for(let n of e)t(n)&&(yield n)}e.filter=f;function*p(e,t){let n=0;for(let r of e)yield t(r,n++)}e.map=p;function*m(e,t){let n=0;for(let r of e)yield*t(r,n++)}e.flatMap=m;function*h(...e){for(let t of e)yield*t}e.concat=h;function g(e,t,n){let r=n;for(let n of e)r=t(r,n);return r}e.reduce=g;function*_(e,t,n=e.length){for(t<0&&(t+=e.length),n<0?n+=e.length:n>e.length&&(n=e.length);t<n;t++)yield e[t]}e.slice=_;function v(t,n=1/0){let r=[];if(n===0)return[r,t];let i=t[Symbol.iterator]();for(let t=0;t<n;t++){let t=i.next();if(t.done)return[r,e.empty()];r.push(t.value)}return[r,{[Symbol.iterator](){return i}}]}e.consume=v;async function y(e){let t=[];for await(let n of e)t.push(n);return Promise.resolve(t)}e.asyncToArray=y})(li||={});var ui=!1,di=null,fi=class e{constructor(){this.livingDisposables=new Map}getDisposableData(t){let n=this.livingDisposables.get(t);return n||(n={parent:null,source:null,isSingleton:!1,value:t,idx:e.idx++},this.livingDisposables.set(t,n)),n}trackDisposable(e){let t=this.getDisposableData(e);t.source||=Error().stack}setParent(e,t){let n=this.getDisposableData(e);n.parent=t}markAsDisposed(e){this.livingDisposables.delete(e)}markAsSingleton(e){this.getDisposableData(e).isSingleton=!0}getRootParent(e,t){let n=t.get(e);if(n)return n;let r=e.parent?this.getRootParent(this.getDisposableData(e.parent),t):e;return t.set(e,r),r}getTrackedDisposables(){let e=new Map;return[...this.livingDisposables.entries()].filter(([,t])=>t.source!==null&&!this.getRootParent(t,e).isSingleton).flatMap(([e])=>e)}computeLeakingDisposables(e=10,t){let n;if(t)n=t;else{let e=new Map,t=[...this.livingDisposables.values()].filter(t=>t.source!==null&&!this.getRootParent(t,e).isSingleton);if(t.length===0)return;let r=new Set(t.map(e=>e.value));if(n=t.filter(e=>!(e.parent&&r.has(e.parent))),n.length===0)throw Error(`There are cyclic diposable chains!`)}if(!n)return;function r(e){function t(e,t){for(;e.length>0&&t.some(t=>typeof t==`string`?t===e[0]:e[0].match(t));)e.shift()}let n=e.source.split(`
12
+ `).map(e=>e.trim().replace(`at `,``)).filter(e=>e!==``);return t(n,[`Error`,/^trackDisposable \(.*\)$/,/^DisposableTracker.trackDisposable \(.*\)$/]),n.reverse()}let i=new si;for(let e of n){let t=r(e);for(let n=0;n<=t.length;n++)i.add(t.slice(0,n).join(`
13
+ `),e)}n.sort(ri(e=>e.idx,ii));let a=``,o=0;for(let t of n.slice(0,e)){o++;let e=r(t),s=[];for(let t=0;t<e.length;t++){let a=e[t];a=`(shared with ${i.get(e.slice(0,t+1).join(`
14
+ `)).size}/${n.length} leaks) at ${a}`;let o=oi([...i.get(e.slice(0,t).join(`
15
+ `))].map(e=>r(e)[t]),e=>e);delete o[e[t]];for(let[e,t]of Object.entries(o))s.unshift(` - stacktraces of ${t.length} other leaks continue with ${e}`);s.unshift(a)}a+=`
16
+
17
+
18
+ ==================== Leaking disposable ${o}/${n.length}: ${t.value.constructor.name} ====================
19
+ ${s.join(`
20
+ `)}
21
+ ============================================================
22
+
23
+ `}return n.length>e&&(a+=`
24
+
25
+
26
+ ... and ${n.length-e} more leaking disposables
27
+
28
+ `),{leaks:n,details:a}}};fi.idx=0;function pi(e){di=e}if(ui){let e=`__is_disposable_tracked__`;pi(new class{trackDisposable(t){let n=Error(`Potentially leaked disposable`).stack;setTimeout(()=>{t[e]||console.log(n)},3e3)}setParent(t,n){if(t&&t!==Ci.None)try{t[e]=!0}catch{}}markAsDisposed(t){if(t&&t!==Ci.None)try{t[e]=!0}catch{}}markAsSingleton(e){}})}function mi(e){return di?.trackDisposable(e),e}function hi(e){di?.markAsDisposed(e)}function gi(e,t){di?.setParent(e,t)}function _i(e,t){if(di)for(let n of e)di.setParent(n,t)}function vi(e){return di?.markAsSingleton(e),e}function yi(e){if(li.is(e)){let t=[];for(let n of e)if(n)try{n.dispose()}catch(e){t.push(e)}if(t.length===1)throw t[0];if(t.length>1)throw AggregateError(t,`Encountered errors while disposing of store`);return Array.isArray(e)?[]:e}else if(e)return e.dispose(),e}function X(...e){let t=bi(()=>yi(e));return _i(e,t),t}function bi(e){let t=mi({dispose:ci(()=>{hi(t),e()})});return t}var xi=class e{constructor(){this._toDispose=new Set,this._isDisposed=!1,mi(this)}dispose(){this._isDisposed||(hi(this),this._isDisposed=!0,this.clear())}get isDisposed(){return this._isDisposed}clear(){if(this._toDispose.size!==0)try{yi(this._toDispose)}finally{this._toDispose.clear()}}add(t){if(!t)return t;if(t===this)throw Error(`Cannot register a disposable on itself!`);return gi(t,this),this._isDisposed?e.DISABLE_DISPOSED_WARNING||console.warn(Error(`Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!`).stack):this._toDispose.add(t),t}delete(e){if(e){if(e===this)throw Error(`Cannot dispose a disposable on itself!`);this._toDispose.delete(e),e.dispose()}}deleteAndLeak(e){e&&this._toDispose.has(e)&&(this._toDispose.delete(e),gi(e,null))}};xi.DISABLE_DISPOSED_WARNING=!1;var Si=xi,Ci=class{constructor(){this._store=new Si,mi(this),gi(this._store,this)}dispose(){hi(this),this._store.dispose()}_register(e){if(e===this)throw Error(`Cannot register a disposable on itself!`);return this._store.add(e)}};Ci.None=Object.freeze({dispose(){}});var wi=class{constructor(){this._isDisposed=!1,mi(this)}get value(){return this._isDisposed?void 0:this._value}set value(e){this._isDisposed||e===this._value||(this._value?.dispose(),e&&gi(e,this),this._value=e)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,hi(this),this._value?.dispose(),this._value=void 0}clearAndLeak(){let e=this._value;return this._value=void 0,e&&gi(e,null),e}},Ti=typeof window==`object`?window:globalThis,Ei=class e{constructor(t){this.element=t,this.next=e.Undefined,this.prev=e.Undefined}};Ei.Undefined=new Ei(void 0);var Di=Ei,Oi=class{constructor(){this._first=Di.Undefined,this._last=Di.Undefined,this._size=0}get size(){return this._size}isEmpty(){return this._first===Di.Undefined}clear(){let e=this._first;for(;e!==Di.Undefined;){let t=e.next;e.prev=Di.Undefined,e.next=Di.Undefined,e=t}this._first=Di.Undefined,this._last=Di.Undefined,this._size=0}unshift(e){return this._insert(e,!1)}push(e){return this._insert(e,!0)}_insert(e,t){let n=new Di(e);if(this._first===Di.Undefined)this._first=n,this._last=n;else if(t){let e=this._last;this._last=n,n.prev=e,e.next=n}else{let e=this._first;this._first=n,n.next=e,e.prev=n}this._size+=1;let r=!1;return()=>{r||(r=!0,this._remove(n))}}shift(){if(this._first!==Di.Undefined){let e=this._first.element;return this._remove(this._first),e}}pop(){if(this._last!==Di.Undefined){let e=this._last.element;return this._remove(this._last),e}}_remove(e){if(e.prev!==Di.Undefined&&e.next!==Di.Undefined){let t=e.prev;t.next=e.next,e.next.prev=t}else e.prev===Di.Undefined&&e.next===Di.Undefined?(this._first=Di.Undefined,this._last=Di.Undefined):e.next===Di.Undefined?(this._last=this._last.prev,this._last.next=Di.Undefined):e.prev===Di.Undefined&&(this._first=this._first.next,this._first.prev=Di.Undefined);--this._size}*[Symbol.iterator](){let e=this._first;for(;e!==Di.Undefined;)yield e.element,e=e.next}},ki=globalThis.performance&&typeof globalThis.performance.now==`function`,Ai=class e{static create(t){return new e(t)}constructor(e){this._now=ki&&e===!1?Date.now:globalThis.performance.now.bind(globalThis.performance),this._startTime=this._now(),this._stopTime=-1}stop(){this._stopTime=this._now()}reset(){this._startTime=this._now(),this._stopTime=-1}elapsed(){return this._stopTime===-1?this._now()-this._startTime:this._stopTime-this._startTime}},ji=!1,Mi=!1,Ni=!1,Pi;(e=>{e.None=()=>Ci.None;function t(e){if(Ni){let{onDidAddListener:t}=e,n=Bi.create(),r=0;e.onDidAddListener=()=>{++r===2&&(console.warn(`snapshotted emitter LIKELY used public and SHOULD HAVE BEEN created with DisposableStore. snapshotted here`),n.print()),t?.()}}}function n(e,t){return f(e,()=>{},0,void 0,!0,void 0,t)}e.defer=n;function r(e){return(t,n=null,r)=>{let i=!1,a;return a=e(e=>{if(!i)return a?a.dispose():i=!0,t.call(n,e)},null,r),i&&a.dispose(),a}}e.once=r;function i(e,t,n){return u((n,r=null,i)=>e(e=>n.call(r,t(e)),null,i),n)}e.map=i;function a(e,t,n){return u((n,r=null,i)=>e(e=>{t(e),n.call(r,e)},null,i),n)}e.forEach=a;function o(e,t,n){return u((n,r=null,i)=>e(e=>t(e)&&n.call(r,e),null,i),n)}e.filter=o;function s(e){return e}e.signal=s;function c(...e){return(t,n=null,r)=>d(X(...e.map(e=>e(e=>t.call(n,e)))),r)}e.any=c;function l(e,t,n,r){let a=n;return i(e,e=>(a=t(a,e),a),r)}e.reduce=l;function u(e,n){let r,i={onWillAddFirstListener(){r=e(a.fire,a)},onDidRemoveLastListener(){r?.dispose()}};n||t(i);let a=new Z(i);return n?.add(a),a.event}function d(e,t){return t instanceof Array?t.push(e):t&&t.add(e),e}function f(e,n,r=100,i=!1,a=!1,o,s){let c,l,u,d=0,f,p={leakWarningThreshold:o,onWillAddFirstListener(){c=e(e=>{d++,l=n(l,e),i&&!u&&(m.fire(l),l=void 0),f=()=>{let e=l;l=void 0,u=void 0,(!i||d>1)&&m.fire(e),d=0},typeof r==`number`?(clearTimeout(u),u=setTimeout(f,r)):u===void 0&&(u=0,queueMicrotask(f))})},onWillRemoveListener(){a&&d>0&&f?.()},onDidRemoveLastListener(){f=void 0,c.dispose()}};s||t(p);let m=new Z(p);return s?.add(m),m.event}e.debounce=f;function p(t,n=0,r){return e.debounce(t,(e,t)=>e?(e.push(t),e):[t],n,void 0,!0,void 0,r)}e.accumulate=p;function m(e,t=(e,t)=>e===t,n){let r=!0,i;return o(e,e=>{let n=r||!t(e,i);return r=!1,i=e,n},n)}e.latch=m;function h(t,n,r){return[e.filter(t,n,r),e.filter(t,e=>!n(e),r)]}e.split=h;function g(e,t=!1,n=[],r){let i=n.slice(),a=e(e=>{i?i.push(e):s.fire(e)});r&&r.add(a);let o=()=>{i?.forEach(e=>s.fire(e)),i=null},s=new Z({onWillAddFirstListener(){a||(a=e(e=>s.fire(e)),r&&r.add(a))},onDidAddFirstListener(){i&&(t?setTimeout(o):o())},onDidRemoveLastListener(){a&&a.dispose(),a=null}});return r&&r.add(s),s.event}e.buffer=g;function _(e,t){return(n,r,i)=>{let a=t(new y);return e(function(e){let t=a.evaluate(e);t!==v&&n.call(r,t)},void 0,i)}}e.chain=_;let v=Symbol(`HaltChainable`);class y{constructor(){this.steps=[]}map(e){return this.steps.push(e),this}forEach(e){return this.steps.push(t=>(e(t),t)),this}filter(e){return this.steps.push(t=>e(t)?t:v),this}reduce(e,t){let n=t;return this.steps.push(t=>(n=e(n,t),n)),this}latch(e=(e,t)=>e===t){let t=!0,n;return this.steps.push(r=>{let i=t||!e(r,n);return t=!1,n=r,i?r:v}),this}evaluate(e){for(let t of this.steps)if(e=t(e),e===v)break;return e}}function b(e,t,n=e=>e){let r=(...e)=>i.fire(n(...e)),i=new Z({onWillAddFirstListener:()=>e.on(t,r),onDidRemoveLastListener:()=>e.removeListener(t,r)});return i.event}e.fromNodeEventEmitter=b;function x(e,t,n=e=>e){let r=(...e)=>i.fire(n(...e)),i=new Z({onWillAddFirstListener:()=>e.addEventListener(t,r),onDidRemoveLastListener:()=>e.removeEventListener(t,r)});return i.event}e.fromDOMEventEmitter=x;function S(e){return new Promise(t=>r(e)(t))}e.toPromise=S;function C(e){let t=new Z;return e.then(e=>{t.fire(e)},()=>{t.fire(void 0)}).finally(()=>{t.dispose()}),t.event}e.fromPromise=C;function w(e,t){return e(e=>t.fire(e))}e.forward=w;function T(e,t,n){return t(n),e(e=>t(e))}e.runAndSubscribe=T;class E{constructor(e,n){this._observable=e,this._counter=0,this._hasChanged=!1;let r={onWillAddFirstListener:()=>{e.addObserver(this)},onDidRemoveLastListener:()=>{e.removeObserver(this)}};n||t(r),this.emitter=new Z(r),n&&n.add(this.emitter)}beginUpdate(e){this._counter++}handlePossibleChange(e){}handleChange(e,t){this._hasChanged=!0}endUpdate(e){this._counter--,this._counter===0&&(this._observable.reportChanges(),this._hasChanged&&(this._hasChanged=!1,this.emitter.fire(this._observable.get())))}}function D(e,t){return new E(e,t).emitter.event}e.fromObservable=D;function O(e){return(t,n,r)=>{let i=0,a=!1,o={beginUpdate(){i++},endUpdate(){i--,i===0&&(e.reportChanges(),a&&(a=!1,t.call(n)))},handlePossibleChange(){},handleChange(){a=!0}};e.addObserver(o),e.reportChanges();let s={dispose(){e.removeObserver(o)}};return r instanceof Si?r.add(s):Array.isArray(r)&&r.push(s),s}}e.fromObservableLight=O})(Pi||={});var Fi=class e{constructor(t){this.listenerCount=0,this.invocationCount=0,this.elapsedOverall=0,this.durations=[],this.name=`${t}_${e._idPool++}`,e.all.add(this)}start(e){this._stopWatch=new Ai,this.listenerCount=e}stop(){if(this._stopWatch){let e=this._stopWatch.elapsed();this.durations.push(e),this.elapsedOverall+=e,this.invocationCount+=1,this._stopWatch=void 0}}};Fi.all=new Set,Fi._idPool=0;var Ii=Fi,Li=-1,Ri=class e{constructor(t,n,r=(e._idPool++).toString(16).padStart(3,`0`)){this._errorHandler=t,this.threshold=n,this.name=r,this._warnCountdown=0}dispose(){this._stacks?.clear()}check(e,t){let n=this.threshold;if(n<=0||t<n)return;this._stacks||=new Map;let r=this._stacks.get(e.value)||0;if(this._stacks.set(e.value,r+1),--this._warnCountdown,this._warnCountdown<=0){this._warnCountdown=n*.5;let[e,r]=this.getMostFrequentStack(),i=`[${this.name}] potential listener LEAK detected, having ${t} listeners already. MOST frequent listener (${r}):`;console.warn(i),console.warn(e);let a=new Vi(i,e);this._errorHandler(a)}return()=>{let t=this._stacks.get(e.value)||0;this._stacks.set(e.value,t-1)}}getMostFrequentStack(){if(!this._stacks)return;let e,t=0;for(let[n,r]of this._stacks)(!e||t<r)&&(e=[n,r],t=r);return e}};Ri._idPool=1;var zi=Ri,Bi=class e{constructor(e){this.value=e}static create(){return new e(Error().stack??``)}print(){console.warn(this.value.split(`
29
+ `).slice(2).join(`
30
+ `))}},Vi=class extends Error{constructor(e,t){super(e),this.name=`ListenerLeakError`,this.stack=t}},Hi=class extends Error{constructor(e,t){super(e),this.name=`ListenerRefusalError`,this.stack=t}},Ui=0,Wi=class{constructor(e){this.value=e,this.id=Ui++}},Gi=2,Ki=(e,t)=>{if(e instanceof Wi)t(e);else for(let n=0;n<e.length;n++){let r=e[n];r&&t(r)}},qi;if(ji){let e=[];setInterval(()=>{e.length!==0&&(console.warn(`[LEAKING LISTENERS] GC'ed these listeners that were NOT yet disposed:`),console.warn(e.join(`
31
+ `)),e.length=0)},3e3),qi=new FinalizationRegistry(t=>{typeof t==`string`&&e.push(t)})}var Z=class{constructor(e){this._size=0,this._options=e,this._leakageMon=Li>0||this._options?.leakWarningThreshold?new zi(e?.onListenerError??Kr,this._options?.leakWarningThreshold??Li):void 0,this._perfMon=this._options?._profName?new Ii(this._options._profName):void 0,this._deliveryQueue=this._options?.deliveryQueue}dispose(){if(!this._disposed){if(this._disposed=!0,this._deliveryQueue?.current===this&&this._deliveryQueue.reset(),this._listeners){if(Mi){let e=this._listeners;queueMicrotask(()=>{Ki(e,e=>e.stack?.print())})}this._listeners=void 0,this._size=0}this._options?.onDidRemoveLastListener?.(),this._leakageMon?.dispose()}}get event(){return this._event??=(e,t,n)=>{if(this._leakageMon&&this._size>this._leakageMon.threshold**2){let e=`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;console.warn(e);let t=this._leakageMon.getMostFrequentStack()??[`UNKNOWN stack`,-1],n=new Hi(`${e}. HINT: Stack shows most frequent listener (${t[1]}-times)`,t[0]);return(this._options?.onListenerError||Kr)(n),Ci.None}if(this._disposed)return Ci.None;t&&(e=e.bind(t));let r=new Wi(e),i;this._leakageMon&&this._size>=Math.ceil(this._leakageMon.threshold*.2)&&(r.stack=Bi.create(),i=this._leakageMon.check(r.stack,this._size+1)),Mi&&(r.stack=Bi.create()),this._listeners?this._listeners instanceof Wi?(this._deliveryQueue??=new Ji,this._listeners=[this._listeners,r]):this._listeners.push(r):(this._options?.onWillAddFirstListener?.(this),this._listeners=r,this._options?.onDidAddFirstListener?.(this)),this._size++;let a=bi(()=>{qi?.unregister(a),i?.(),this._removeListener(r)});if(n instanceof Si?n.add(a):Array.isArray(n)&&n.push(a),qi){let e=Error().stack.split(`
32
+ `).slice(2,3).join(`
33
+ `).trim(),t=/(file:|vscode-file:\/\/vscode-app)?(\/[^:]*:\d+:\d+)/.exec(e);qi.register(a,t?.[2]??e,a)}return a},this._event}_removeListener(e){if(this._options?.onWillRemoveListener?.(this),!this._listeners)return;if(this._size===1){this._listeners=void 0,this._options?.onDidRemoveLastListener?.(this),this._size=0;return}let t=this._listeners,n=t.indexOf(e);if(n===-1)throw console.log(`disposed?`,this._disposed),console.log(`size?`,this._size),console.log(`arr?`,JSON.stringify(this._listeners)),Error(`Attempted to dispose unknown listener`);this._size--,t[n]=void 0;let r=this._deliveryQueue.current===this;if(this._size*Gi<=t.length){let e=0;for(let n=0;n<t.length;n++)t[n]?t[e++]=t[n]:r&&(this._deliveryQueue.end--,e<this._deliveryQueue.i&&this._deliveryQueue.i--);t.length=e}}_deliver(e,t){if(!e)return;let n=this._options?.onListenerError||Kr;if(!n){e.value(t);return}try{e.value(t)}catch(e){n(e)}}_deliverQueue(e){let t=e.current._listeners;for(;e.i<e.end;)this._deliver(t[e.i++],e.value);e.reset()}fire(e){if(this._deliveryQueue?.current&&(this._deliverQueue(this._deliveryQueue),this._perfMon?.stop()),this._perfMon?.start(this._size),this._listeners)if(this._listeners instanceof Wi)this._deliver(this._listeners,e);else{let t=this._deliveryQueue;t.enqueue(this,e,this._listeners.length),this._deliverQueue(t)}this._perfMon?.stop()}hasListeners(){return this._size>0}},Ji=class{constructor(){this.i=-1,this.end=0}enqueue(e,t,n){this.i=0,this.end=n,this.current=e,this.value=t}reset(){this.i=this.end,this.current=void 0,this.value=void 0}},Yi=class{constructor(){this.mapWindowIdToZoomLevel=new Map,this._onDidChangeZoomLevel=new Z,this.onDidChangeZoomLevel=this._onDidChangeZoomLevel.event,this.mapWindowIdToZoomFactor=new Map,this._onDidChangeFullscreen=new Z,this.onDidChangeFullscreen=this._onDidChangeFullscreen.event,this.mapWindowIdToFullScreen=new Map}getZoomLevel(e){return this.mapWindowIdToZoomLevel.get(this.getWindowId(e))??0}setZoomLevel(e,t){if(this.getZoomLevel(t)===e)return;let n=this.getWindowId(t);this.mapWindowIdToZoomLevel.set(n,e),this._onDidChangeZoomLevel.fire(n)}getZoomFactor(e){return this.mapWindowIdToZoomFactor.get(this.getWindowId(e))??1}setZoomFactor(e,t){this.mapWindowIdToZoomFactor.set(this.getWindowId(t),e)}setFullscreen(e,t){if(this.isFullscreen(t)===e)return;let n=this.getWindowId(t);this.mapWindowIdToFullScreen.set(n,e),this._onDidChangeFullscreen.fire(n)}isFullscreen(e){return!!this.mapWindowIdToFullScreen.get(this.getWindowId(e))}getWindowId(e){return e.vscodeWindowId}};Yi.INSTANCE=new Yi;var Xi=Yi;function Zi(e,t,n){typeof t==`string`&&(t=e.matchMedia(t)),t.addEventListener(`change`,n)}Xi.INSTANCE.onDidChangeZoomLevel;function Qi(e){return Xi.INSTANCE.getZoomFactor(e)}Xi.INSTANCE.onDidChangeFullscreen;var $i=typeof navigator==`object`?navigator.userAgent:``,ea=$i.indexOf(`Firefox`)>=0,ta=$i.indexOf(`AppleWebKit`)>=0,na=$i.indexOf(`Chrome`)>=0,ra=!na&&$i.indexOf(`Safari`)>=0;$i.indexOf(`Electron/`),$i.indexOf(`Android`);var ia=!1;if(typeof Ti.matchMedia==`function`){let e=Ti.matchMedia(`(display-mode: standalone) or (display-mode: window-controls-overlay)`),t=Ti.matchMedia(`(display-mode: fullscreen)`);ia=e.matches,Zi(Ti,e,({matches:e})=>{ia&&t.matches||(ia=e)})}function aa(){return ia}var oa=`en`,sa=!1,ca=!1,la=!1,ua=!1,da=!1,fa=oa,pa,ma=globalThis,ha;typeof ma.vscode<`u`&&typeof ma.vscode.process<`u`?ha=ma.vscode.process:typeof process<`u`&&typeof process?.versions?.node==`string`&&(ha=process);var ga=typeof ha?.versions?.electron==`string`&&ha?.type===`renderer`;if(typeof ha==`object`){sa=ha.platform===`win32`,ca=ha.platform===`darwin`,la=ha.platform===`linux`,la&&ha.env.SNAP&&ha.env.SNAP_REVISION,ha.env.CI||ha.env.BUILD_ARTIFACTSTAGINGDIRECTORY,fa=oa;let e=ha.env.VSCODE_NLS_CONFIG;if(e)try{let t=JSON.parse(e);t.userLocale,t.osLocale,fa=t.resolvedLanguage||oa,t.languagePack?.translationsConfigFile}catch{}ua=!0}else typeof navigator==`object`&&!ga?(pa=navigator.userAgent,sa=pa.indexOf(`Windows`)>=0,ca=pa.indexOf(`Macintosh`)>=0,(pa.indexOf(`Macintosh`)>=0||pa.indexOf(`iPad`)>=0||pa.indexOf(`iPhone`)>=0)&&navigator.maxTouchPoints&&navigator.maxTouchPoints,la=pa.indexOf(`Linux`)>=0,pa?.indexOf(`Mobi`),da=!0,fa=globalThis._VSCODE_NLS_LANGUAGE||oa,navigator.language.toLowerCase()):console.error(`Unable to resolve platform.`);var _a=sa,va=ca,ya=la,ba=ua;da&&typeof ma.importScripts==`function`&&ma.origin;var xa=pa,Sa=fa,Ca;(e=>{function t(){return Sa}e.value=t;function n(){return Sa.length===2?Sa===`en`:Sa.length>=3?Sa[0]===`e`&&Sa[1]===`n`&&Sa[2]===`-`:!1}e.isDefaultVariant=n;function r(){return Sa===`en`}e.isDefault=r})(Ca||={});var wa=typeof ma.postMessage==`function`&&!ma.importScripts;(()=>{if(wa){let e=[];ma.addEventListener(`message`,t=>{if(t.data&&t.data.vscodeScheduleAsyncWork)for(let n=0,r=e.length;n<r;n++){let r=e[n];if(r.id===t.data.vscodeScheduleAsyncWork){e.splice(n,1),r.callback();return}}});let t=0;return n=>{let r=++t;e.push({id:r,callback:n}),ma.postMessage({vscodeScheduleAsyncWork:r},`*`)}}return e=>setTimeout(e)})();var Ta=!!(xa&&xa.indexOf(`Chrome`)>=0);xa&&xa.indexOf(`Firefox`),!Ta&&xa&&xa.indexOf(`Safari`),xa&&xa.indexOf(`Edg/`),xa&&xa.indexOf(`Android`);var Ea=typeof navigator==`object`?navigator:{};ba||document.queryCommandSupported&&document.queryCommandSupported(`copy`)||Ea&&Ea.clipboard&&Ea.clipboard.writeText,ba||Ea&&Ea.clipboard&&Ea.clipboard.readText,ba||aa()||Ea.keyboard,`ontouchstart`in Ti||Ea.maxTouchPoints,Ti.PointerEvent&&(`ontouchstart`in Ti||navigator.maxTouchPoints);var Da=class{constructor(){this._keyCodeToStr=[],this._strToKeyCode=Object.create(null)}define(e,t){this._keyCodeToStr[e]=t,this._strToKeyCode[t.toLowerCase()]=e}keyCodeToStr(e){return this._keyCodeToStr[e]}strToKeyCode(e){return this._strToKeyCode[e.toLowerCase()]||0}},Oa=new Da,ka=new Da,Aa=new Da,ja=Array(230),Ma;(e=>{function t(e){return Oa.keyCodeToStr(e)}e.toString=t;function n(e){return Oa.strToKeyCode(e)}e.fromString=n;function r(e){return ka.keyCodeToStr(e)}e.toUserSettingsUS=r;function i(e){return Aa.keyCodeToStr(e)}e.toUserSettingsGeneral=i;function a(e){return ka.strToKeyCode(e)||Aa.strToKeyCode(e)}e.fromUserSettings=a;function o(e){if(e>=98&&e<=113)return null;switch(e){case 16:return`Up`;case 18:return`Down`;case 15:return`Left`;case 17:return`Right`}return Oa.keyCodeToStr(e)}e.toElectronAccelerator=o})(Ma||={});var Na=class e{constructor(e,t,n,r,i){this.ctrlKey=e,this.shiftKey=t,this.altKey=n,this.metaKey=r,this.keyCode=i}equals(t){return t instanceof e&&this.ctrlKey===t.ctrlKey&&this.shiftKey===t.shiftKey&&this.altKey===t.altKey&&this.metaKey===t.metaKey&&this.keyCode===t.keyCode}getHashCode(){return`K${this.ctrlKey?`1`:`0`}${this.shiftKey?`1`:`0`}${this.altKey?`1`:`0`}${this.metaKey?`1`:`0`}${this.keyCode}`}isModifierKey(){return this.keyCode===0||this.keyCode===5||this.keyCode===57||this.keyCode===6||this.keyCode===4}toKeybinding(){return new Pa([this])}isDuplicateModifierCase(){return this.ctrlKey&&this.keyCode===5||this.shiftKey&&this.keyCode===4||this.altKey&&this.keyCode===6||this.metaKey&&this.keyCode===57}},Pa=class{constructor(e){if(e.length===0)throw Xr(`chords`);this.chords=e}getHashCode(){let e=``;for(let t=0,n=this.chords.length;t<n;t++)t!==0&&(e+=`;`),e+=this.chords[t].getHashCode();return e}equals(e){if(e===null||this.chords.length!==e.chords.length)return!1;for(let t=0;t<this.chords.length;t++)if(!this.chords[t].equals(e.chords[t]))return!1;return!0}};function Fa(e){if(e.charCode){let t=String.fromCharCode(e.charCode).toUpperCase();return Ma.fromString(t)}let t=e.keyCode;if(t===3)return 7;if(ea)switch(t){case 59:return 85;case 60:if(ya)return 97;break;case 61:return 86;case 107:return 109;case 109:return 111;case 173:return 88;case 224:if(va)return 57;break}else if(ta&&(va&&t===93||!va&&t===92))return 57;return ja[t]||0}var Ia=va?256:2048,La=512,Ra=1024,za=va?2048:256,Ba=class{constructor(e){this._standardKeyboardEventBrand=!0;let t=e;this.browserEvent=t,this.target=t.target,this.ctrlKey=t.ctrlKey,this.shiftKey=t.shiftKey,this.altKey=t.altKey,this.metaKey=t.metaKey,this.altGraphKey=t.getModifierState?.(`AltGraph`),this.keyCode=Fa(t),this.code=t.code,this.ctrlKey=this.ctrlKey||this.keyCode===5,this.altKey=this.altKey||this.keyCode===6,this.shiftKey=this.shiftKey||this.keyCode===4,this.metaKey=this.metaKey||this.keyCode===57,this._asKeybinding=this._computeKeybinding(),this._asKeyCodeChord=this._computeKeyCodeChord()}preventDefault(){this.browserEvent&&this.browserEvent.preventDefault&&this.browserEvent.preventDefault()}stopPropagation(){this.browserEvent&&this.browserEvent.stopPropagation&&this.browserEvent.stopPropagation()}toKeyCodeChord(){return this._asKeyCodeChord}equals(e){return this._asKeybinding===e}_computeKeybinding(){let e=0;this.keyCode!==5&&this.keyCode!==4&&this.keyCode!==6&&this.keyCode!==57&&(e=this.keyCode);let t=0;return this.ctrlKey&&(t|=Ia),this.altKey&&(t|=La),this.shiftKey&&(t|=Ra),this.metaKey&&(t|=za),t|=e,t}_computeKeyCodeChord(){let e=0;return this.keyCode!==5&&this.keyCode!==4&&this.keyCode!==6&&this.keyCode!==57&&(e=this.keyCode),new Na(this.ctrlKey,this.shiftKey,this.altKey,this.metaKey,e)}},Va=new WeakMap;function Ha(e){if(!e.parent||e.parent===e)return null;try{let t=e.location,n=e.parent.location;if(t.origin!==`null`&&n.origin!==`null`&&t.origin!==n.origin)return null}catch{return null}return e.parent}var Ua=class{static getSameOriginWindowChain(e){let t=Va.get(e);if(!t){t=[],Va.set(e,t);let n=e,r;do r=Ha(n),r?t.push({window:new WeakRef(n),iframeElement:n.frameElement||null}):t.push({window:new WeakRef(n),iframeElement:null}),n=r;while(n)}return t.slice(0)}static getPositionOfChildWindowRelativeToAncestorWindow(e,t){if(!t||e===t)return{top:0,left:0};let n=0,r=0,i=this.getSameOriginWindowChain(e);for(let e of i){let i=e.window.deref();if(n+=i?.scrollY??0,r+=i?.scrollX??0,i===t||!e.iframeElement)break;let a=e.iframeElement.getBoundingClientRect();n+=a.top,r+=a.left}return{top:n,left:r}}},Wa=class{constructor(e,t){this.timestamp=Date.now(),this.browserEvent=t,this.leftButton=t.button===0,this.middleButton=t.button===1,this.rightButton=t.button===2,this.buttons=t.buttons,this.target=t.target,this.detail=t.detail||1,t.type===`dblclick`&&(this.detail=2),this.ctrlKey=t.ctrlKey,this.shiftKey=t.shiftKey,this.altKey=t.altKey,this.metaKey=t.metaKey,typeof t.pageX==`number`?(this.posx=t.pageX,this.posy=t.pageY):(this.posx=t.clientX+this.target.ownerDocument.body.scrollLeft+this.target.ownerDocument.documentElement.scrollLeft,this.posy=t.clientY+this.target.ownerDocument.body.scrollTop+this.target.ownerDocument.documentElement.scrollTop);let n=Ua.getPositionOfChildWindowRelativeToAncestorWindow(e,t.view);this.posx-=n.left,this.posy-=n.top}preventDefault(){this.browserEvent.preventDefault()}stopPropagation(){this.browserEvent.stopPropagation()}},Ga=class{constructor(e,t=0,n=0){this.browserEvent=e||null,this.target=e?e.target||e.targetNode||e.srcElement:null,this.deltaY=n,this.deltaX=t;let r=!1;if(na){let e=navigator.userAgent.match(/Chrome\/(\d+)/);r=(e?parseInt(e[1]):123)<=122}if(e){let t=e,n=e,i=e.view?.devicePixelRatio||1;if(typeof t.wheelDeltaY<`u`)r?this.deltaY=t.wheelDeltaY/(120*i):this.deltaY=t.wheelDeltaY/120;else if(typeof n.VERTICAL_AXIS<`u`&&n.axis===n.VERTICAL_AXIS)this.deltaY=-n.detail/3;else if(e.type===`wheel`){let t=e;t.deltaMode===t.DOM_DELTA_LINE?ea&&!va?this.deltaY=-e.deltaY/3:this.deltaY=-e.deltaY:this.deltaY=-e.deltaY/40}if(typeof t.wheelDeltaX<`u`)ra&&_a?this.deltaX=-(t.wheelDeltaX/120):r?this.deltaX=t.wheelDeltaX/(120*i):this.deltaX=t.wheelDeltaX/120;else if(typeof n.HORIZONTAL_AXIS<`u`&&n.axis===n.HORIZONTAL_AXIS)this.deltaX=-e.detail/3;else if(e.type===`wheel`){let t=e;t.deltaMode===t.DOM_DELTA_LINE?ea&&!va?this.deltaX=-e.deltaX/3:this.deltaX=-e.deltaX:this.deltaX=-e.deltaX/40}this.deltaY===0&&this.deltaX===0&&e.wheelDelta&&(r?this.deltaY=e.wheelDelta/(120*i):this.deltaY=e.wheelDelta/120)}}preventDefault(){this.browserEvent?.preventDefault()}stopPropagation(){this.browserEvent?.stopPropagation()}},Ka=Object.freeze(function(e,t){let n=setTimeout(e.bind(t),0);return{dispose(){clearTimeout(n)}}}),qa;(e=>{function t(t){return t===e.None||t===e.Cancelled||t instanceof Ja?!0:!t||typeof t!=`object`?!1:typeof t.isCancellationRequested==`boolean`&&typeof t.onCancellationRequested==`function`}e.isCancellationToken=t,e.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:Pi.None}),e.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:Ka})})(qa||={});var Ja=class{constructor(){this._isCancelled=!1,this._emitter=null}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?Ka:(this._emitter||=new Z,this._emitter.event)}dispose(){this._emitter&&=(this._emitter.dispose(),null)}},Ya=class{constructor(e,t){this._isDisposed=!1,this._token=-1,typeof e==`function`&&typeof t==`number`&&this.setIfNotSet(e,t)}dispose(){this.cancel(),this._isDisposed=!0}cancel(){this._token!==-1&&(clearTimeout(this._token),this._token=-1)}cancelAndSet(e,t){if(this._isDisposed)throw new Qr(`Calling 'cancelAndSet' on a disposed TimeoutTimer`);this.cancel(),this._token=setTimeout(()=>{this._token=-1,e()},t)}setIfNotSet(e,t){if(this._isDisposed)throw new Qr(`Calling 'setIfNotSet' on a disposed TimeoutTimer`);this._token===-1&&(this._token=setTimeout(()=>{this._token=-1,e()},t))}},Xa=class{constructor(){this.disposable=void 0,this.isDisposed=!1}cancel(){this.disposable?.dispose(),this.disposable=void 0}cancelAndSet(e,t,n=globalThis){if(this.isDisposed)throw new Qr(`Calling 'cancelAndSet' on a disposed IntervalTimer`);this.cancel();let r=n.setInterval(()=>{e()},t);this.disposable=bi(()=>{n.clearInterval(r),this.disposable=void 0})}dispose(){this.cancel(),this.isDisposed=!0}};(function(){typeof globalThis.requestIdleCallback!=`function`||globalThis.cancelIdleCallback})();var Za;(e=>{async function t(e){let t,n=await Promise.all(e.map(e=>e.then(e=>e,e=>{t||=e})));if(typeof t<`u`)throw t;return n}e.settled=t;function n(e){return new Promise(async(t,n)=>{try{await e(t,n)}catch(e){n(e)}})}e.withAsyncBody=n})(Za||={});var Qa=class e{static fromArray(t){return new e(e=>{e.emitMany(t)})}static fromPromise(t){return new e(async e=>{e.emitMany(await t)})}static fromPromises(t){return new e(async e=>{await Promise.all(t.map(async t=>e.emitOne(await t)))})}static merge(t){return new e(async e=>{await Promise.all(t.map(async t=>{for await(let n of t)e.emitOne(n)}))})}constructor(e,t){this._state=0,this._results=[],this._error=null,this._onReturn=t,this._onStateChanged=new Z,queueMicrotask(async()=>{let t={emitOne:e=>this.emitOne(e),emitMany:e=>this.emitMany(e),reject:e=>this.reject(e)};try{await Promise.resolve(e(t)),this.resolve()}catch(e){this.reject(e)}finally{t.emitOne=void 0,t.emitMany=void 0,t.reject=void 0}})}[Symbol.asyncIterator](){let e=0;return{next:async()=>{do{if(this._state===2)throw this._error;if(e<this._results.length)return{done:!1,value:this._results[e++]};if(this._state===1)return{done:!0,value:void 0};await Pi.toPromise(this._onStateChanged.event)}while(!0)},return:async()=>(this._onReturn?.(),{done:!0,value:void 0})}}static map(t,n){return new e(async e=>{for await(let r of t)e.emitOne(n(r))})}map(t){return e.map(this,t)}static filter(t,n){return new e(async e=>{for await(let r of t)n(r)&&e.emitOne(r)})}filter(t){return e.filter(this,t)}static coalesce(t){return e.filter(t,e=>!!e)}coalesce(){return e.coalesce(this)}static async toPromise(e){let t=[];for await(let n of e)t.push(n);return t}toPromise(){return e.toPromise(this)}emitOne(e){this._state===0&&(this._results.push(e),this._onStateChanged.fire())}emitMany(e){this._state===0&&(this._results=this._results.concat(e),this._onStateChanged.fire())}resolve(){this._state===0&&(this._state=1,this._onStateChanged.fire())}reject(e){this._state===0&&(this._state=2,this._error=e,this._onStateChanged.fire())}};Qa.EMPTY=Qa.fromArray([]);function $a(e){return 55296<=e&&e<=56319}function eo(e){return 56320<=e&&e<=57343}function to(e,t){return(e-55296<<10)+(t-56320)+65536}function no(e){return ro(e,0)}function ro(e,t){switch(typeof e){case`object`:return e===null?io(349,t):Array.isArray(e)?so(e,t):co(e,t);case`string`:return oo(e,t);case`boolean`:return ao(e,t);case`number`:return io(e,t);case`undefined`:return io(937,t);default:return io(617,t)}}function io(e,t){return(t<<5)-t+e|0}function ao(e,t){return io(e?433:863,t)}function oo(e,t){t=io(149417,t);for(let n=0,r=e.length;n<r;n++)t=io(e.charCodeAt(n),t);return t}function so(e,t){return t=io(104579,t),e.reduce((e,t)=>ro(t,e),t)}function co(e,t){return t=io(181387,t),Object.keys(e).sort().reduce((t,n)=>(t=oo(n,t),ro(e[n],t)),t)}function lo(e,t,n=32){let r=n-t,i=~((1<<r)-1);return(e<<t|(i&e)>>>r)>>>0}function uo(e,t=0,n=e.byteLength,r=0){for(let i=0;i<n;i++)e[t+i]=r}function fo(e,t,n=`0`){for(;e.length<t;)e=n+e;return e}function po(e,t=32){return e instanceof ArrayBuffer?Array.from(new Uint8Array(e)).map(e=>e.toString(16).padStart(2,`0`)).join(``):fo((e>>>0).toString(16),t/4)}var mo=class e{constructor(){this._h0=1732584193,this._h1=4023233417,this._h2=2562383102,this._h3=271733878,this._h4=3285377520,this._buff=new Uint8Array(67),this._buffDV=new DataView(this._buff.buffer),this._buffLen=0,this._totalLen=0,this._leftoverHighSurrogate=0,this._finished=!1}update(e){let t=e.length;if(t===0)return;let n=this._buff,r=this._buffLen,i=this._leftoverHighSurrogate,a,o;for(i===0?(a=e.charCodeAt(0),o=0):(a=i,o=-1,i=0);;){let s=a;if($a(a))if(o+1<t){let t=e.charCodeAt(o+1);eo(t)?(o++,s=to(a,t)):s=65533}else{i=a;break}else eo(a)&&(s=65533);if(r=this._push(n,r,s),o++,o<t)a=e.charCodeAt(o);else break}this._buffLen=r,this._leftoverHighSurrogate=i}_push(e,t,n){return n<128?e[t++]=n:n<2048?(e[t++]=192|(n&1984)>>>6,e[t++]=128|(n&63)>>>0):n<65536?(e[t++]=224|(n&61440)>>>12,e[t++]=128|(n&4032)>>>6,e[t++]=128|(n&63)>>>0):(e[t++]=240|(n&1835008)>>>18,e[t++]=128|(n&258048)>>>12,e[t++]=128|(n&4032)>>>6,e[t++]=128|(n&63)>>>0),t>=64&&(this._step(),t-=64,this._totalLen+=64,e[0]=e[64],e[1]=e[65],e[2]=e[66]),t}digest(){return this._finished||(this._finished=!0,this._leftoverHighSurrogate&&(this._leftoverHighSurrogate=0,this._buffLen=this._push(this._buff,this._buffLen,65533)),this._totalLen+=this._buffLen,this._wrapUp()),po(this._h0)+po(this._h1)+po(this._h2)+po(this._h3)+po(this._h4)}_wrapUp(){this._buff[this._buffLen++]=128,uo(this._buff,this._buffLen),this._buffLen>56&&(this._step(),uo(this._buff));let e=8*this._totalLen;this._buffDV.setUint32(56,Math.floor(e/4294967296),!1),this._buffDV.setUint32(60,e%4294967296,!1),this._step()}_step(){let t=e._bigBlock32,n=this._buffDV;for(let e=0;e<64;e+=4)t.setUint32(e,n.getUint32(e,!1),!1);for(let e=64;e<320;e+=4)t.setUint32(e,lo(t.getUint32(e-12,!1)^t.getUint32(e-32,!1)^t.getUint32(e-56,!1)^t.getUint32(e-64,!1),1),!1);let r=this._h0,i=this._h1,a=this._h2,o=this._h3,s=this._h4,c,l,u;for(let e=0;e<80;e++)e<20?(c=i&a|~i&o,l=1518500249):e<40?(c=i^a^o,l=1859775393):e<60?(c=i&a|i&o|a&o,l=2400959708):(c=i^a^o,l=3395469782),u=lo(r,5)+c+s+l+t.getUint32(e*4,!1)&4294967295,s=o,o=a,a=lo(i,30),i=r,r=u;this._h0=this._h0+r&4294967295,this._h1=this._h1+i&4294967295,this._h2=this._h2+a&4294967295,this._h3=this._h3+o&4294967295,this._h4=this._h4+s&4294967295}};mo._bigBlock32=new DataView(new ArrayBuffer(320));var{registerWindow:ho,getWindow:go,getDocument:_o,getWindows:vo,getWindowsCount:yo,getWindowId:bo,getWindowById:xo,hasWindow:So,onDidRegisterWindow:Co,onWillUnregisterWindow:wo,onDidUnregisterWindow:To}=function(){let e=new Map,t={window:Ti,disposables:new Si};e.set(Ti.vscodeWindowId,t);let n=new Z,r=new Z,i=new Z;function a(n,r){return(typeof n==`number`?e.get(n):void 0)??(r?t:void 0)}return{onDidRegisterWindow:n.event,onWillUnregisterWindow:i.event,onDidUnregisterWindow:r.event,registerWindow(t){if(e.has(t.vscodeWindowId))return Ci.None;let a=new Si,o={window:t,disposables:a.add(new Si)};return e.set(t.vscodeWindowId,o),a.add(bi(()=>{e.delete(t.vscodeWindowId),r.fire(t)})),a.add(Do(t,Io.BEFORE_UNLOAD,()=>{i.fire(t)})),n.fire(o),a},getWindows(){return e.values()},getWindowsCount(){return e.size},getWindowId(e){return e.vscodeWindowId},hasWindow(t){return e.has(t)},getWindowById:a,getWindow(e){let t=e;if(t?.ownerDocument?.defaultView)return t.ownerDocument.defaultView.window;let n=e;return n?.view?n.view.window:Ti},getDocument(e){return go(e).document}}}(),Eo=class{constructor(e,t,n,r){this._node=e,this._type=t,this._handler=n,this._options=r||!1,this._node.addEventListener(this._type,this._handler,this._options)}dispose(){this._handler&&=(this._node.removeEventListener(this._type,this._handler,this._options),this._node=null,null)}};function Do(e,t,n,r){return new Eo(e,t,n,r)}function Oo(e,t){return function(n){return t(new Wa(e,n))}}function ko(e){return function(t){return e(new Ba(t))}}var Ao=function(e,t,n,r){let i=n;return t===`click`||t===`mousedown`||t===`contextmenu`?i=Oo(go(e),n):(t===`keydown`||t===`keypress`||t===`keyup`)&&(i=ko(n)),Do(e,t,i,r)},jo,Mo=class extends Xa{constructor(e){super(),this.defaultTarget=e&&go(e)}cancelAndSet(e,t,n){return super.cancelAndSet(e,t,n??this.defaultTarget)}},No=class{constructor(e,t=0){this._runner=e,this.priority=t,this._canceled=!1}dispose(){this._canceled=!0}execute(){if(!this._canceled)try{this._runner()}catch(e){Kr(e)}}static sort(e,t){return t.priority-e.priority}};(function(){let e=new Map,t=new Map,n=new Map,r=new Map,i=i=>{n.set(i,!1);let a=e.get(i)??[];for(t.set(i,a),e.set(i,[]),r.set(i,!0);a.length>0;)a.sort(No.sort),a.shift().execute();r.set(i,!1)};jo=(t,r,a=0)=>{let o=bo(t),s=new No(r,a),c=e.get(o);return c||(c=[],e.set(o,c)),c.push(s),n.get(o)||(n.set(o,!0),t.requestAnimationFrame(()=>i(o))),s}})();var Po=class e{constructor(e,t){this.width=e,this.height=t}with(t=this.width,n=this.height){return t!==this.width||n!==this.height?new e(t,n):this}static is(e){return typeof e==`object`&&typeof e.height==`number`&&typeof e.width==`number`}static lift(t){return t instanceof e?t:new e(t.width,t.height)}static equals(e,t){return e===t?!0:!e||!t?!1:e.width===t.width&&e.height===t.height}};Po.None=new Po(0,0);function Fo(e){let t=e.getBoundingClientRect(),n=go(e);return{left:t.left+n.scrollX,top:t.top+n.scrollY,width:t.width,height:t.height}}new class{constructor(){this.mutationObservers=new Map}observe(e,t,n){let r=this.mutationObservers.get(e);r||(r=new Map,this.mutationObservers.set(e,r));let i=no(n),a=r.get(i);if(a)a.users+=1;else{let o=new Z,s=new MutationObserver(e=>o.fire(e));s.observe(e,n);let c=a={users:1,observer:s,onDidMutate:o.event};t.add(bi(()=>{--c.users,c.users===0&&(o.dispose(),s.disconnect(),r?.delete(i),r?.size===0&&this.mutationObservers.delete(e))})),r.set(i,a)}return a.onDidMutate}};var Io={CLICK:`click`,AUXCLICK:`auxclick`,DBLCLICK:`dblclick`,MOUSE_UP:`mouseup`,MOUSE_DOWN:`mousedown`,MOUSE_OVER:`mouseover`,MOUSE_MOVE:`mousemove`,MOUSE_OUT:`mouseout`,MOUSE_ENTER:`mouseenter`,MOUSE_LEAVE:`mouseleave`,MOUSE_WHEEL:`wheel`,POINTER_UP:`pointerup`,POINTER_DOWN:`pointerdown`,POINTER_MOVE:`pointermove`,POINTER_LEAVE:`pointerleave`,CONTEXT_MENU:`contextmenu`,WHEEL:`wheel`,KEY_DOWN:`keydown`,KEY_PRESS:`keypress`,KEY_UP:`keyup`,LOAD:`load`,BEFORE_UNLOAD:`beforeunload`,UNLOAD:`unload`,PAGE_SHOW:`pageshow`,PAGE_HIDE:`pagehide`,PASTE:`paste`,ABORT:`abort`,ERROR:`error`,RESIZE:`resize`,SCROLL:`scroll`,FULLSCREEN_CHANGE:`fullscreenchange`,WK_FULLSCREEN_CHANGE:`webkitfullscreenchange`,SELECT:`select`,CHANGE:`change`,SUBMIT:`submit`,RESET:`reset`,FOCUS:`focus`,FOCUS_IN:`focusin`,FOCUS_OUT:`focusout`,BLUR:`blur`,INPUT:`input`,STORAGE:`storage`,DRAG_START:`dragstart`,DRAG:`drag`,DRAG_ENTER:`dragenter`,DRAG_LEAVE:`dragleave`,DRAG_OVER:`dragover`,DROP:`drop`,DRAG_END:`dragend`,ANIMATION_START:ta?`webkitAnimationStart`:`animationstart`,ANIMATION_END:ta?`webkitAnimationEnd`:`animationend`,ANIMATION_ITERATION:ta?`webkitAnimationIteration`:`animationiteration`},Lo=/([\w\-]+)?(#([\w\-]+))?((\.([\w\-]+))*)/;function Ro(e,t,n,...r){let i=Lo.exec(t);if(!i)throw Error(`Bad use of emmet`);let a=i[1]||`div`,o;return o=e===`http://www.w3.org/1999/xhtml`?document.createElement(a):document.createElementNS(e,a),i[3]&&(o.id=i[3]),i[4]&&(o.className=i[4].replace(/\./g,` `).trim()),n&&Object.entries(n).forEach(([e,t])=>{typeof t>`u`||(/^on\w+$/.test(e)?o[e]=t:e===`selected`?t&&o.setAttribute(e,`true`):o.setAttribute(e,t))}),o.append(...r),o}function zo(e,t,...n){return Ro(`http://www.w3.org/1999/xhtml`,e,t,...n)}zo.SVG=function(e,t,...n){return Ro(`http://www.w3.org/2000/svg`,e,t,...n)};var Bo=class{constructor(e){this.domNode=e,this._maxWidth=``,this._width=``,this._height=``,this._top=``,this._left=``,this._bottom=``,this._right=``,this._paddingTop=``,this._paddingLeft=``,this._paddingBottom=``,this._paddingRight=``,this._fontFamily=``,this._fontWeight=``,this._fontSize=``,this._fontStyle=``,this._fontFeatureSettings=``,this._fontVariationSettings=``,this._textDecoration=``,this._lineHeight=``,this._letterSpacing=``,this._className=``,this._display=``,this._position=``,this._visibility=``,this._color=``,this._backgroundColor=``,this._layerHint=!1,this._contain=`none`,this._boxShadow=``}setMaxWidth(e){let t=Vo(e);this._maxWidth!==t&&(this._maxWidth=t,this.domNode.style.maxWidth=this._maxWidth)}setWidth(e){let t=Vo(e);this._width!==t&&(this._width=t,this.domNode.style.width=this._width)}setHeight(e){let t=Vo(e);this._height!==t&&(this._height=t,this.domNode.style.height=this._height)}setTop(e){let t=Vo(e);this._top!==t&&(this._top=t,this.domNode.style.top=this._top)}setLeft(e){let t=Vo(e);this._left!==t&&(this._left=t,this.domNode.style.left=this._left)}setBottom(e){let t=Vo(e);this._bottom!==t&&(this._bottom=t,this.domNode.style.bottom=this._bottom)}setRight(e){let t=Vo(e);this._right!==t&&(this._right=t,this.domNode.style.right=this._right)}setPaddingTop(e){let t=Vo(e);this._paddingTop!==t&&(this._paddingTop=t,this.domNode.style.paddingTop=this._paddingTop)}setPaddingLeft(e){let t=Vo(e);this._paddingLeft!==t&&(this._paddingLeft=t,this.domNode.style.paddingLeft=this._paddingLeft)}setPaddingBottom(e){let t=Vo(e);this._paddingBottom!==t&&(this._paddingBottom=t,this.domNode.style.paddingBottom=this._paddingBottom)}setPaddingRight(e){let t=Vo(e);this._paddingRight!==t&&(this._paddingRight=t,this.domNode.style.paddingRight=this._paddingRight)}setFontFamily(e){this._fontFamily!==e&&(this._fontFamily=e,this.domNode.style.fontFamily=this._fontFamily)}setFontWeight(e){this._fontWeight!==e&&(this._fontWeight=e,this.domNode.style.fontWeight=this._fontWeight)}setFontSize(e){let t=Vo(e);this._fontSize!==t&&(this._fontSize=t,this.domNode.style.fontSize=this._fontSize)}setFontStyle(e){this._fontStyle!==e&&(this._fontStyle=e,this.domNode.style.fontStyle=this._fontStyle)}setFontFeatureSettings(e){this._fontFeatureSettings!==e&&(this._fontFeatureSettings=e,this.domNode.style.fontFeatureSettings=this._fontFeatureSettings)}setFontVariationSettings(e){this._fontVariationSettings!==e&&(this._fontVariationSettings=e,this.domNode.style.fontVariationSettings=this._fontVariationSettings)}setTextDecoration(e){this._textDecoration!==e&&(this._textDecoration=e,this.domNode.style.textDecoration=this._textDecoration)}setLineHeight(e){let t=Vo(e);this._lineHeight!==t&&(this._lineHeight=t,this.domNode.style.lineHeight=this._lineHeight)}setLetterSpacing(e){let t=Vo(e);this._letterSpacing!==t&&(this._letterSpacing=t,this.domNode.style.letterSpacing=this._letterSpacing)}setClassName(e){this._className!==e&&(this._className=e,this.domNode.className=this._className)}toggleClassName(e,t){this.domNode.classList.toggle(e,t),this._className=this.domNode.className}setDisplay(e){this._display!==e&&(this._display=e,this.domNode.style.display=this._display)}setPosition(e){this._position!==e&&(this._position=e,this.domNode.style.position=this._position)}setVisibility(e){this._visibility!==e&&(this._visibility=e,this.domNode.style.visibility=this._visibility)}setColor(e){this._color!==e&&(this._color=e,this.domNode.style.color=this._color)}setBackgroundColor(e){this._backgroundColor!==e&&(this._backgroundColor=e,this.domNode.style.backgroundColor=this._backgroundColor)}setLayerHinting(e){this._layerHint!==e&&(this._layerHint=e,this.domNode.style.transform=this._layerHint?`translate3d(0px, 0px, 0px)`:``)}setBoxShadow(e){this._boxShadow!==e&&(this._boxShadow=e,this.domNode.style.boxShadow=e)}setContain(e){this._contain!==e&&(this._contain=e,this.domNode.style.contain=this._contain)}setAttribute(e,t){this.domNode.setAttribute(e,t)}removeAttribute(e){this.domNode.removeAttribute(e)}appendChild(e){this.domNode.appendChild(e.domNode)}removeChild(e){this.domNode.removeChild(e.domNode)}};function Vo(e){return typeof e==`number`?`${e}px`:e}function Ho(e){return new Bo(e)}var Uo=class{constructor(){this._hooks=new Si,this._pointerMoveCallback=null,this._onStopCallback=null}dispose(){this.stopMonitoring(!1),this._hooks.dispose()}stopMonitoring(e,t){if(!this.isMonitoring())return;this._hooks.clear(),this._pointerMoveCallback=null;let n=this._onStopCallback;this._onStopCallback=null,e&&n&&n(t)}isMonitoring(){return!!this._pointerMoveCallback}startMonitoring(e,t,n,r,i){this.isMonitoring()&&this.stopMonitoring(!1),this._pointerMoveCallback=r,this._onStopCallback=i;let a=e;try{e.setPointerCapture(t),this._hooks.add(bi(()=>{try{e.releasePointerCapture(t)}catch{}}))}catch{a=go(e)}this._hooks.add(Do(a,Io.POINTER_MOVE,e=>{if(e.buttons!==n){this.stopMonitoring(!0);return}e.preventDefault(),this._pointerMoveCallback(e)})),this._hooks.add(Do(a,Io.POINTER_UP,e=>this.stopMonitoring(!0)))}};function Wo(e,t,n){let r=null,i=null;if(typeof n.value==`function`?(r=`value`,i=n.value,i.length!==0&&console.warn(`Memoize should only be used in functions with zero parameters`)):typeof n.get==`function`&&(r=`get`,i=n.get),!i)throw Error(`not supported`);let a=`$memoize$${t}`;n[r]=function(...e){return this.hasOwnProperty(a)||Object.defineProperty(this,a,{configurable:!1,enumerable:!1,writable:!1,value:i.apply(this,e)}),this[a]}}var Go;(e=>(e.Tap=`-xterm-gesturetap`,e.Change=`-xterm-gesturechange`,e.Start=`-xterm-gesturestart`,e.End=`-xterm-gesturesend`,e.Contextmenu=`-xterm-gesturecontextmenu`))(Go||={});var Ko=class e extends Ci{constructor(){super(),this.dispatched=!1,this.targets=new Oi,this.ignoreTargets=new Oi,this.activeTouches={},this.handle=null,this._lastSetTapCountTime=0,this._register(Pi.runAndSubscribe(Co,({window:e,disposables:t})=>{t.add(Do(e.document,`touchstart`,e=>this.onTouchStart(e),{passive:!1})),t.add(Do(e.document,`touchend`,t=>this.onTouchEnd(e,t))),t.add(Do(e.document,`touchmove`,e=>this.onTouchMove(e),{passive:!1}))},{window:Ti,disposables:this._store}))}static addTarget(t){return e.isTouchDevice()?(e.INSTANCE||=vi(new e),bi(e.INSTANCE.targets.push(t))):Ci.None}static ignoreTarget(t){return e.isTouchDevice()?(e.INSTANCE||=vi(new e),bi(e.INSTANCE.ignoreTargets.push(t))):Ci.None}static isTouchDevice(){return`ontouchstart`in Ti||navigator.maxTouchPoints>0}dispose(){this.handle&&=(this.handle.dispose(),null),super.dispose()}onTouchStart(e){let t=Date.now();this.handle&&=(this.handle.dispose(),null);for(let n=0,r=e.targetTouches.length;n<r;n++){let r=e.targetTouches.item(n);this.activeTouches[r.identifier]={id:r.identifier,initialTarget:r.target,initialTimeStamp:t,initialPageX:r.pageX,initialPageY:r.pageY,rollingTimestamps:[t],rollingPageX:[r.pageX],rollingPageY:[r.pageY]};let i=this.newGestureEvent(Go.Start,r.target);i.pageX=r.pageX,i.pageY=r.pageY,this.dispatchEvent(i)}this.dispatched&&=(e.preventDefault(),e.stopPropagation(),!1)}onTouchEnd(t,n){let r=Date.now(),i=Object.keys(this.activeTouches).length;for(let a=0,o=n.changedTouches.length;a<o;a++){let o=n.changedTouches.item(a);if(!this.activeTouches.hasOwnProperty(String(o.identifier))){console.warn(`move of an UNKNOWN touch`,o);continue}let s=this.activeTouches[o.identifier],c=Date.now()-s.initialTimeStamp;if(c<e.HOLD_DELAY&&Math.abs(s.initialPageX-ti(s.rollingPageX))<30&&Math.abs(s.initialPageY-ti(s.rollingPageY))<30){let e=this.newGestureEvent(Go.Tap,s.initialTarget);e.pageX=ti(s.rollingPageX),e.pageY=ti(s.rollingPageY),this.dispatchEvent(e)}else if(c>=e.HOLD_DELAY&&Math.abs(s.initialPageX-ti(s.rollingPageX))<30&&Math.abs(s.initialPageY-ti(s.rollingPageY))<30){let e=this.newGestureEvent(Go.Contextmenu,s.initialTarget);e.pageX=ti(s.rollingPageX),e.pageY=ti(s.rollingPageY),this.dispatchEvent(e)}else if(i===1){let e=ti(s.rollingPageX),n=ti(s.rollingPageY),i=ti(s.rollingTimestamps)-s.rollingTimestamps[0],a=e-s.rollingPageX[0],o=n-s.rollingPageY[0],c=[...this.targets].filter(e=>s.initialTarget instanceof Node&&e.contains(s.initialTarget));this.inertia(t,c,r,Math.abs(a)/i,a>0?1:-1,e,Math.abs(o)/i,o>0?1:-1,n)}this.dispatchEvent(this.newGestureEvent(Go.End,s.initialTarget)),delete this.activeTouches[o.identifier]}this.dispatched&&=(n.preventDefault(),n.stopPropagation(),!1)}newGestureEvent(e,t){let n=document.createEvent(`CustomEvent`);return n.initEvent(e,!1,!0),n.initialTarget=t,n.tapCount=0,n}dispatchEvent(t){if(t.type===Go.Tap){let n=new Date().getTime(),r=0;r=n-this._lastSetTapCountTime>e.CLEAR_TAP_COUNT_TIME?1:2,this._lastSetTapCountTime=n,t.tapCount=r}else (t.type===Go.Change||t.type===Go.Contextmenu)&&(this._lastSetTapCountTime=0);if(t.initialTarget instanceof Node){for(let e of this.ignoreTargets)if(e.contains(t.initialTarget))return;let e=[];for(let n of this.targets)if(n.contains(t.initialTarget)){let r=0,i=t.initialTarget;for(;i&&i!==n;)r++,i=i.parentElement;e.push([r,n])}e.sort((e,t)=>e[0]-t[0]);for(let[n,r]of e)r.dispatchEvent(t),this.dispatched=!0}}inertia(t,n,r,i,a,o,s,c,l){this.handle=jo(t,()=>{let u=Date.now(),d=u-r,f=0,p=0,m=!0;i+=e.SCROLL_FRICTION*d,s+=e.SCROLL_FRICTION*d,i>0&&(m=!1,f=a*i*d),s>0&&(m=!1,p=c*s*d);let h=this.newGestureEvent(Go.Change);h.translationX=f,h.translationY=p,n.forEach(e=>e.dispatchEvent(h)),m||this.inertia(t,n,u,i,a,o+f,s,c,l+p)})}onTouchMove(e){let t=Date.now();for(let n=0,r=e.changedTouches.length;n<r;n++){let r=e.changedTouches.item(n);if(!this.activeTouches.hasOwnProperty(String(r.identifier))){console.warn(`end of an UNKNOWN touch`,r);continue}let i=this.activeTouches[r.identifier],a=this.newGestureEvent(Go.Change,i.initialTarget);a.translationX=r.pageX-ti(i.rollingPageX),a.translationY=r.pageY-ti(i.rollingPageY),a.pageX=r.pageX,a.pageY=r.pageY,this.dispatchEvent(a),i.rollingPageX.length>3&&(i.rollingPageX.shift(),i.rollingPageY.shift(),i.rollingTimestamps.shift()),i.rollingPageX.push(r.pageX),i.rollingPageY.push(r.pageY),i.rollingTimestamps.push(t)}this.dispatched&&=(e.preventDefault(),e.stopPropagation(),!1)}};Ko.SCROLL_FRICTION=-.005,Ko.HOLD_DELAY=700,Ko.CLEAR_TAP_COUNT_TIME=400,er([Wo],Ko,`isTouchDevice`,1);var qo=Ko,Jo=class extends Ci{onclick(e,t){this._register(Do(e,Io.CLICK,n=>t(new Wa(go(e),n))))}onmousedown(e,t){this._register(Do(e,Io.MOUSE_DOWN,n=>t(new Wa(go(e),n))))}onmouseover(e,t){this._register(Do(e,Io.MOUSE_OVER,n=>t(new Wa(go(e),n))))}onmouseleave(e,t){this._register(Do(e,Io.MOUSE_LEAVE,n=>t(new Wa(go(e),n))))}onkeydown(e,t){this._register(Do(e,Io.KEY_DOWN,e=>t(new Ba(e))))}onkeyup(e,t){this._register(Do(e,Io.KEY_UP,e=>t(new Ba(e))))}oninput(e,t){this._register(Do(e,Io.INPUT,t))}onblur(e,t){this._register(Do(e,Io.BLUR,t))}onfocus(e,t){this._register(Do(e,Io.FOCUS,t))}onchange(e,t){this._register(Do(e,Io.CHANGE,t))}ignoreGesture(e){return qo.ignoreTarget(e)}},Yo=11,Xo=class extends Jo{constructor(e){super(),this._onActivate=e.onActivate,this.bgDomNode=document.createElement(`div`),this.bgDomNode.className=`arrow-background`,this.bgDomNode.style.position=`absolute`,this.bgDomNode.style.width=e.bgWidth+`px`,this.bgDomNode.style.height=e.bgHeight+`px`,typeof e.top<`u`&&(this.bgDomNode.style.top=`0px`),typeof e.left<`u`&&(this.bgDomNode.style.left=`0px`),typeof e.bottom<`u`&&(this.bgDomNode.style.bottom=`0px`),typeof e.right<`u`&&(this.bgDomNode.style.right=`0px`),this.domNode=document.createElement(`div`),this.domNode.className=e.className,this.domNode.style.position=`absolute`,this.domNode.style.width=Yo+`px`,this.domNode.style.height=Yo+`px`,typeof e.top<`u`&&(this.domNode.style.top=e.top+`px`),typeof e.left<`u`&&(this.domNode.style.left=e.left+`px`),typeof e.bottom<`u`&&(this.domNode.style.bottom=e.bottom+`px`),typeof e.right<`u`&&(this.domNode.style.right=e.right+`px`),this._pointerMoveMonitor=this._register(new Uo),this._register(Ao(this.bgDomNode,Io.POINTER_DOWN,e=>this._arrowPointerDown(e))),this._register(Ao(this.domNode,Io.POINTER_DOWN,e=>this._arrowPointerDown(e))),this._pointerdownRepeatTimer=this._register(new Mo),this._pointerdownScheduleRepeatTimer=this._register(new Ya)}_arrowPointerDown(e){!e.target||!(e.target instanceof Element)||(this._onActivate(),this._pointerdownRepeatTimer.cancel(),this._pointerdownScheduleRepeatTimer.cancelAndSet(()=>{this._pointerdownRepeatTimer.cancelAndSet(()=>this._onActivate(),1e3/24,go(e))},200),this._pointerMoveMonitor.startMonitoring(e.target,e.pointerId,e.buttons,e=>{},()=>{this._pointerdownRepeatTimer.cancel(),this._pointerdownScheduleRepeatTimer.cancel()}),e.preventDefault())}},Zo=class e{constructor(e,t,n,r,i,a,o){this._forceIntegerValues=e,this._scrollStateBrand=void 0,this._forceIntegerValues&&(t|=0,n|=0,r|=0,i|=0,a|=0,o|=0),this.rawScrollLeft=r,this.rawScrollTop=o,t<0&&(t=0),r+t>n&&(r=n-t),r<0&&(r=0),i<0&&(i=0),o+i>a&&(o=a-i),o<0&&(o=0),this.width=t,this.scrollWidth=n,this.scrollLeft=r,this.height=i,this.scrollHeight=a,this.scrollTop=o}equals(e){return this.rawScrollLeft===e.rawScrollLeft&&this.rawScrollTop===e.rawScrollTop&&this.width===e.width&&this.scrollWidth===e.scrollWidth&&this.scrollLeft===e.scrollLeft&&this.height===e.height&&this.scrollHeight===e.scrollHeight&&this.scrollTop===e.scrollTop}withScrollDimensions(t,n){return new e(this._forceIntegerValues,typeof t.width<`u`?t.width:this.width,typeof t.scrollWidth<`u`?t.scrollWidth:this.scrollWidth,n?this.rawScrollLeft:this.scrollLeft,typeof t.height<`u`?t.height:this.height,typeof t.scrollHeight<`u`?t.scrollHeight:this.scrollHeight,n?this.rawScrollTop:this.scrollTop)}withScrollPosition(t){return new e(this._forceIntegerValues,this.width,this.scrollWidth,typeof t.scrollLeft<`u`?t.scrollLeft:this.rawScrollLeft,this.height,this.scrollHeight,typeof t.scrollTop<`u`?t.scrollTop:this.rawScrollTop)}createScrollEvent(e,t){let n=this.width!==e.width,r=this.scrollWidth!==e.scrollWidth,i=this.scrollLeft!==e.scrollLeft,a=this.height!==e.height,o=this.scrollHeight!==e.scrollHeight,s=this.scrollTop!==e.scrollTop;return{inSmoothScrolling:t,oldWidth:e.width,oldScrollWidth:e.scrollWidth,oldScrollLeft:e.scrollLeft,width:this.width,scrollWidth:this.scrollWidth,scrollLeft:this.scrollLeft,oldHeight:e.height,oldScrollHeight:e.scrollHeight,oldScrollTop:e.scrollTop,height:this.height,scrollHeight:this.scrollHeight,scrollTop:this.scrollTop,widthChanged:n,scrollWidthChanged:r,scrollLeftChanged:i,heightChanged:a,scrollHeightChanged:o,scrollTopChanged:s}}},Qo=class extends Ci{constructor(e){super(),this._scrollableBrand=void 0,this._onScroll=this._register(new Z),this.onScroll=this._onScroll.event,this._smoothScrollDuration=e.smoothScrollDuration,this._scheduleAtNextAnimationFrame=e.scheduleAtNextAnimationFrame,this._state=new Zo(e.forceIntegerValues,0,0,0,0,0,0),this._smoothScrolling=null}dispose(){this._smoothScrolling&&=(this._smoothScrolling.dispose(),null),super.dispose()}setSmoothScrollDuration(e){this._smoothScrollDuration=e}validateScrollPosition(e){return this._state.withScrollPosition(e)}getScrollDimensions(){return this._state}setScrollDimensions(e,t){let n=this._state.withScrollDimensions(e,t);this._setState(n,!!this._smoothScrolling),this._smoothScrolling?.acceptScrollDimensions(this._state)}getFutureScrollPosition(){return this._smoothScrolling?this._smoothScrolling.to:this._state}getCurrentScrollPosition(){return this._state}setScrollPositionNow(e){let t=this._state.withScrollPosition(e);this._smoothScrolling&&=(this._smoothScrolling.dispose(),null),this._setState(t,!1)}setScrollPositionSmooth(e,t){if(this._smoothScrollDuration===0)return this.setScrollPositionNow(e);if(this._smoothScrolling){e={scrollLeft:typeof e.scrollLeft>`u`?this._smoothScrolling.to.scrollLeft:e.scrollLeft,scrollTop:typeof e.scrollTop>`u`?this._smoothScrolling.to.scrollTop:e.scrollTop};let n=this._state.withScrollPosition(e);if(this._smoothScrolling.to.scrollLeft===n.scrollLeft&&this._smoothScrolling.to.scrollTop===n.scrollTop)return;let r;r=t?new ns(this._smoothScrolling.from,n,this._smoothScrolling.startTime,this._smoothScrolling.duration):this._smoothScrolling.combine(this._state,n,this._smoothScrollDuration),this._smoothScrolling.dispose(),this._smoothScrolling=r}else{let t=this._state.withScrollPosition(e);this._smoothScrolling=ns.start(this._state,t,this._smoothScrollDuration)}this._smoothScrolling.animationFrameDisposable=this._scheduleAtNextAnimationFrame(()=>{this._smoothScrolling&&(this._smoothScrolling.animationFrameDisposable=null,this._performSmoothScrolling())})}hasPendingScrollAnimation(){return!!this._smoothScrolling}_performSmoothScrolling(){if(!this._smoothScrolling)return;let e=this._smoothScrolling.tick(),t=this._state.withScrollPosition(e);if(this._setState(t,!0),this._smoothScrolling){if(e.isDone){this._smoothScrolling.dispose(),this._smoothScrolling=null;return}this._smoothScrolling.animationFrameDisposable=this._scheduleAtNextAnimationFrame(()=>{this._smoothScrolling&&(this._smoothScrolling.animationFrameDisposable=null,this._performSmoothScrolling())})}}_setState(e,t){let n=this._state;n.equals(e)||(this._state=e,this._onScroll.fire(this._state.createScrollEvent(n,t)))}},$o=class{constructor(e,t,n){this.scrollLeft=e,this.scrollTop=t,this.isDone=n}};function es(e,t){let n=t-e;return function(t){return e+n*is(t)}}function ts(e,t,n){return function(r){return r<n?e(r/n):t((r-n)/(1-n))}}var ns=class e{constructor(e,t,n,r){this.from=e,this.to=t,this.duration=r,this.startTime=n,this.animationFrameDisposable=null,this._initAnimations()}_initAnimations(){this.scrollLeft=this._initAnimation(this.from.scrollLeft,this.to.scrollLeft,this.to.width),this.scrollTop=this._initAnimation(this.from.scrollTop,this.to.scrollTop,this.to.height)}_initAnimation(e,t,n){if(Math.abs(e-t)>2.5*n){let r,i;return e<t?(r=e+.75*n,i=t-.75*n):(r=e-.75*n,i=t+.75*n),ts(es(e,r),es(i,t),.33)}return es(e,t)}dispose(){this.animationFrameDisposable!==null&&(this.animationFrameDisposable.dispose(),this.animationFrameDisposable=null)}acceptScrollDimensions(e){this.to=e.withScrollPosition(this.to),this._initAnimations()}tick(){return this._tick(Date.now())}_tick(e){let t=(e-this.startTime)/this.duration;return t<1?new $o(this.scrollLeft(t),this.scrollTop(t),!1):new $o(this.to.scrollLeft,this.to.scrollTop,!0)}combine(t,n,r){return e.start(t,n,r)}static start(t,n,r){return r+=10,new e(t,n,Date.now()-10,r)}};function rs(e){return e**3}function is(e){return 1-rs(1-e)}var as=class extends Ci{constructor(e,t,n){super(),this._visibility=e,this._visibleClassName=t,this._invisibleClassName=n,this._domNode=null,this._isVisible=!1,this._isNeeded=!1,this._rawShouldBeVisible=!1,this._shouldBeVisible=!1,this._revealTimer=this._register(new Ya)}setVisibility(e){this._visibility!==e&&(this._visibility=e,this._updateShouldBeVisible())}setShouldBeVisible(e){this._rawShouldBeVisible=e,this._updateShouldBeVisible()}_applyVisibilitySetting(){return this._visibility===2?!1:this._visibility===3?!0:this._rawShouldBeVisible}_updateShouldBeVisible(){let e=this._applyVisibilitySetting();this._shouldBeVisible!==e&&(this._shouldBeVisible=e,this.ensureVisibility())}setIsNeeded(e){this._isNeeded!==e&&(this._isNeeded=e,this.ensureVisibility())}setDomNode(e){this._domNode=e,this._domNode.setClassName(this._invisibleClassName),this.setShouldBeVisible(!1)}ensureVisibility(){if(!this._isNeeded){this._hide(!1);return}this._shouldBeVisible?this._reveal():this._hide(!0)}_reveal(){this._isVisible||(this._isVisible=!0,this._revealTimer.setIfNotSet(()=>{this._domNode?.setClassName(this._visibleClassName)},0))}_hide(e){this._revealTimer.cancel(),this._isVisible&&(this._isVisible=!1,this._domNode?.setClassName(this._invisibleClassName+(e?` fade`:``)))}},os=140,ss=class extends Jo{constructor(e){super(),this._lazyRender=e.lazyRender,this._host=e.host,this._scrollable=e.scrollable,this._scrollByPage=e.scrollByPage,this._scrollbarState=e.scrollbarState,this._visibilityController=this._register(new as(e.visibility,`visible scrollbar `+e.extraScrollbarClassName,`invisible scrollbar `+e.extraScrollbarClassName)),this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._pointerMoveMonitor=this._register(new Uo),this._shouldRender=!0,this.domNode=Ho(document.createElement(`div`)),this.domNode.setAttribute(`role`,`presentation`),this.domNode.setAttribute(`aria-hidden`,`true`),this._visibilityController.setDomNode(this.domNode),this.domNode.setPosition(`absolute`),this._register(Do(this.domNode.domNode,Io.POINTER_DOWN,e=>this._domNodePointerDown(e)))}_createArrow(e){let t=this._register(new Xo(e));this.domNode.domNode.appendChild(t.bgDomNode),this.domNode.domNode.appendChild(t.domNode)}_createSlider(e,t,n,r){this.slider=Ho(document.createElement(`div`)),this.slider.setClassName(`slider`),this.slider.setPosition(`absolute`),this.slider.setTop(e),this.slider.setLeft(t),typeof n==`number`&&this.slider.setWidth(n),typeof r==`number`&&this.slider.setHeight(r),this.slider.setLayerHinting(!0),this.slider.setContain(`strict`),this.domNode.domNode.appendChild(this.slider.domNode),this._register(Do(this.slider.domNode,Io.POINTER_DOWN,e=>{e.button===0&&(e.preventDefault(),this._sliderPointerDown(e))})),this.onclick(this.slider.domNode,e=>{e.leftButton&&e.stopPropagation()})}_onElementSize(e){return this._scrollbarState.setVisibleSize(e)&&(this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._shouldRender=!0,this._lazyRender||this.render()),this._shouldRender}_onElementScrollSize(e){return this._scrollbarState.setScrollSize(e)&&(this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._shouldRender=!0,this._lazyRender||this.render()),this._shouldRender}_onElementScrollPosition(e){return this._scrollbarState.setScrollPosition(e)&&(this._visibilityController.setIsNeeded(this._scrollbarState.isNeeded()),this._shouldRender=!0,this._lazyRender||this.render()),this._shouldRender}beginReveal(){this._visibilityController.setShouldBeVisible(!0)}beginHide(){this._visibilityController.setShouldBeVisible(!1)}render(){this._shouldRender&&(this._shouldRender=!1,this._renderDomNode(this._scrollbarState.getRectangleLargeSize(),this._scrollbarState.getRectangleSmallSize()),this._updateSlider(this._scrollbarState.getSliderSize(),this._scrollbarState.getArrowSize()+this._scrollbarState.getSliderPosition()))}_domNodePointerDown(e){e.target===this.domNode.domNode&&this._onPointerDown(e)}delegatePointerDown(e){let t=this.domNode.domNode.getClientRects()[0].top,n=t+this._scrollbarState.getSliderPosition(),r=t+this._scrollbarState.getSliderPosition()+this._scrollbarState.getSliderSize(),i=this._sliderPointerPosition(e);n<=i&&i<=r?e.button===0&&(e.preventDefault(),this._sliderPointerDown(e)):this._onPointerDown(e)}_onPointerDown(e){let t,n;if(e.target===this.domNode.domNode&&typeof e.offsetX==`number`&&typeof e.offsetY==`number`)t=e.offsetX,n=e.offsetY;else{let r=Fo(this.domNode.domNode);t=e.pageX-r.left,n=e.pageY-r.top}let r=this._pointerDownRelativePosition(t,n);this._setDesiredScrollPositionNow(this._scrollByPage?this._scrollbarState.getDesiredScrollPositionFromOffsetPaged(r):this._scrollbarState.getDesiredScrollPositionFromOffset(r)),e.button===0&&(e.preventDefault(),this._sliderPointerDown(e))}_sliderPointerDown(e){if(!e.target||!(e.target instanceof Element))return;let t=this._sliderPointerPosition(e),n=this._sliderOrthogonalPointerPosition(e),r=this._scrollbarState.clone();this.slider.toggleClassName(`active`,!0),this._pointerMoveMonitor.startMonitoring(e.target,e.pointerId,e.buttons,e=>{let i=this._sliderOrthogonalPointerPosition(e),a=Math.abs(i-n);if(_a&&a>os){this._setDesiredScrollPositionNow(r.getScrollPosition());return}let o=this._sliderPointerPosition(e)-t;this._setDesiredScrollPositionNow(r.getDesiredScrollPositionFromDelta(o))},()=>{this.slider.toggleClassName(`active`,!1),this._host.onDragEnd()}),this._host.onDragStart()}_setDesiredScrollPositionNow(e){let t={};this.writeScrollPosition(t,e),this._scrollable.setScrollPositionNow(t)}updateScrollbarSize(e){this._updateScrollbarSize(e),this._scrollbarState.setScrollbarSize(e),this._shouldRender=!0,this._lazyRender||this.render()}isNeeded(){return this._scrollbarState.isNeeded()}},cs=class e{constructor(e,t,n,r,i,a){this._scrollbarSize=Math.round(t),this._oppositeScrollbarSize=Math.round(n),this._arrowSize=Math.round(e),this._visibleSize=r,this._scrollSize=i,this._scrollPosition=a,this._computedAvailableSize=0,this._computedIsNeeded=!1,this._computedSliderSize=0,this._computedSliderRatio=0,this._computedSliderPosition=0,this._refreshComputedValues()}clone(){return new e(this._arrowSize,this._scrollbarSize,this._oppositeScrollbarSize,this._visibleSize,this._scrollSize,this._scrollPosition)}setVisibleSize(e){let t=Math.round(e);return this._visibleSize===t?!1:(this._visibleSize=t,this._refreshComputedValues(),!0)}setScrollSize(e){let t=Math.round(e);return this._scrollSize===t?!1:(this._scrollSize=t,this._refreshComputedValues(),!0)}setScrollPosition(e){let t=Math.round(e);return this._scrollPosition===t?!1:(this._scrollPosition=t,this._refreshComputedValues(),!0)}setScrollbarSize(e){this._scrollbarSize=Math.round(e)}setOppositeScrollbarSize(e){this._oppositeScrollbarSize=Math.round(e)}static _computeValues(e,t,n,r,i){let a=Math.max(0,n-e),o=Math.max(0,a-2*t),s=r>0&&r>n;if(!s)return{computedAvailableSize:Math.round(a),computedIsNeeded:s,computedSliderSize:Math.round(o),computedSliderRatio:0,computedSliderPosition:0};let c=Math.round(Math.max(20,Math.floor(n*o/r))),l=(o-c)/(r-n),u=i*l;return{computedAvailableSize:Math.round(a),computedIsNeeded:s,computedSliderSize:Math.round(c),computedSliderRatio:l,computedSliderPosition:Math.round(u)}}_refreshComputedValues(){let t=e._computeValues(this._oppositeScrollbarSize,this._arrowSize,this._visibleSize,this._scrollSize,this._scrollPosition);this._computedAvailableSize=t.computedAvailableSize,this._computedIsNeeded=t.computedIsNeeded,this._computedSliderSize=t.computedSliderSize,this._computedSliderRatio=t.computedSliderRatio,this._computedSliderPosition=t.computedSliderPosition}getArrowSize(){return this._arrowSize}getScrollPosition(){return this._scrollPosition}getRectangleLargeSize(){return this._computedAvailableSize}getRectangleSmallSize(){return this._scrollbarSize}isNeeded(){return this._computedIsNeeded}getSliderSize(){return this._computedSliderSize}getSliderPosition(){return this._computedSliderPosition}getDesiredScrollPositionFromOffset(e){if(!this._computedIsNeeded)return 0;let t=e-this._arrowSize-this._computedSliderSize/2;return Math.round(t/this._computedSliderRatio)}getDesiredScrollPositionFromOffsetPaged(e){if(!this._computedIsNeeded)return 0;let t=e-this._arrowSize,n=this._scrollPosition;return t<this._computedSliderPosition?n-=this._visibleSize:n+=this._visibleSize,n}getDesiredScrollPositionFromDelta(e){if(!this._computedIsNeeded)return 0;let t=this._computedSliderPosition+e;return Math.round(t/this._computedSliderRatio)}},ls=class extends ss{constructor(e,t,n){let r=e.getScrollDimensions(),i=e.getCurrentScrollPosition();if(super({lazyRender:t.lazyRender,host:n,scrollbarState:new cs(t.horizontalHasArrows?t.arrowSize:0,t.horizontal===2?0:t.horizontalScrollbarSize,t.vertical===2?0:t.verticalScrollbarSize,r.width,r.scrollWidth,i.scrollLeft),visibility:t.horizontal,extraScrollbarClassName:`horizontal`,scrollable:e,scrollByPage:t.scrollByPage}),t.horizontalHasArrows)throw Error(`horizontalHasArrows is not supported in xterm.js`);this._createSlider(Math.floor((t.horizontalScrollbarSize-t.horizontalSliderSize)/2),0,void 0,t.horizontalSliderSize)}_updateSlider(e,t){this.slider.setWidth(e),this.slider.setLeft(t)}_renderDomNode(e,t){this.domNode.setWidth(e),this.domNode.setHeight(t),this.domNode.setLeft(0),this.domNode.setBottom(0)}onDidScroll(e){return this._shouldRender=this._onElementScrollSize(e.scrollWidth)||this._shouldRender,this._shouldRender=this._onElementScrollPosition(e.scrollLeft)||this._shouldRender,this._shouldRender=this._onElementSize(e.width)||this._shouldRender,this._shouldRender}_pointerDownRelativePosition(e,t){return e}_sliderPointerPosition(e){return e.pageX}_sliderOrthogonalPointerPosition(e){return e.pageY}_updateScrollbarSize(e){this.slider.setHeight(e)}writeScrollPosition(e,t){e.scrollLeft=t}updateOptions(e){this.updateScrollbarSize(e.horizontal===2?0:e.horizontalScrollbarSize),this._scrollbarState.setOppositeScrollbarSize(e.vertical===2?0:e.verticalScrollbarSize),this._visibilityController.setVisibility(e.horizontal),this._scrollByPage=e.scrollByPage}},us=class extends ss{constructor(e,t,n){let r=e.getScrollDimensions(),i=e.getCurrentScrollPosition();if(super({lazyRender:t.lazyRender,host:n,scrollbarState:new cs(t.verticalHasArrows?t.arrowSize:0,t.vertical===2?0:t.verticalScrollbarSize,0,r.height,r.scrollHeight,i.scrollTop),visibility:t.vertical,extraScrollbarClassName:`vertical`,scrollable:e,scrollByPage:t.scrollByPage}),t.verticalHasArrows)throw Error(`horizontalHasArrows is not supported in xterm.js`);this._createSlider(0,Math.floor((t.verticalScrollbarSize-t.verticalSliderSize)/2),t.verticalSliderSize,void 0)}_updateSlider(e,t){this.slider.setHeight(e),this.slider.setTop(t)}_renderDomNode(e,t){this.domNode.setWidth(t),this.domNode.setHeight(e),this.domNode.setRight(0),this.domNode.setTop(0)}onDidScroll(e){return this._shouldRender=this._onElementScrollSize(e.scrollHeight)||this._shouldRender,this._shouldRender=this._onElementScrollPosition(e.scrollTop)||this._shouldRender,this._shouldRender=this._onElementSize(e.height)||this._shouldRender,this._shouldRender}_pointerDownRelativePosition(e,t){return t}_sliderPointerPosition(e){return e.pageY}_sliderOrthogonalPointerPosition(e){return e.pageX}_updateScrollbarSize(e){this.slider.setWidth(e)}writeScrollPosition(e,t){e.scrollTop=t}updateOptions(e){this.updateScrollbarSize(e.vertical===2?0:e.verticalScrollbarSize),this._scrollbarState.setOppositeScrollbarSize(0),this._visibilityController.setVisibility(e.vertical),this._scrollByPage=e.scrollByPage}},ds=500,fs=50,ps=!0,ms=class{constructor(e,t,n){this.timestamp=e,this.deltaX=t,this.deltaY=n,this.score=0}},hs=class{constructor(){this._capacity=5,this._memory=[],this._front=-1,this._rear=-1}isPhysicalMouseWheel(){if(this._front===-1&&this._rear===-1)return!1;let e=1,t=0,n=1,r=this._rear;do{let i=r===this._front?e:2**-n;if(e-=i,t+=this._memory[r].score*i,r===this._front)break;r=(this._capacity+r-1)%this._capacity,n++}while(!0);return t<=.5}acceptStandardWheelEvent(e){if(na){let t=Qi(go(e.browserEvent));this.accept(Date.now(),e.deltaX*t,e.deltaY*t)}else this.accept(Date.now(),e.deltaX,e.deltaY)}accept(e,t,n){let r=null,i=new ms(e,t,n);this._front===-1&&this._rear===-1?(this._memory[0]=i,this._front=0,this._rear=0):(r=this._memory[this._rear],this._rear=(this._rear+1)%this._capacity,this._rear===this._front&&(this._front=(this._front+1)%this._capacity),this._memory[this._rear]=i),i.score=this._computeScore(i,r)}_computeScore(e,t){if(Math.abs(e.deltaX)>0&&Math.abs(e.deltaY)>0)return 1;let n=.5;if((!this._isAlmostInt(e.deltaX)||!this._isAlmostInt(e.deltaY))&&(n+=.25),t){let r=Math.abs(e.deltaX),i=Math.abs(e.deltaY),a=Math.abs(t.deltaX),o=Math.abs(t.deltaY),s=Math.max(Math.min(r,a),1),c=Math.max(Math.min(i,o),1),l=Math.max(r,a),u=Math.max(i,o);l%s===0&&u%c===0&&(n-=.5)}return Math.min(Math.max(n,0),1)}_isAlmostInt(e){return Math.abs(Math.round(e)-e)<.01}};hs.INSTANCE=new hs;var gs=hs,_s=class extends Jo{constructor(e,t,n){super(),this._onScroll=this._register(new Z),this.onScroll=this._onScroll.event,this._onWillScroll=this._register(new Z),this.onWillScroll=this._onWillScroll.event,this._options=ys(t),this._scrollable=n,this._register(this._scrollable.onScroll(e=>{this._onWillScroll.fire(e),this._onDidScroll(e),this._onScroll.fire(e)}));let r={onMouseWheel:e=>this._onMouseWheel(e),onDragStart:()=>this._onDragStart(),onDragEnd:()=>this._onDragEnd()};this._verticalScrollbar=this._register(new us(this._scrollable,this._options,r)),this._horizontalScrollbar=this._register(new ls(this._scrollable,this._options,r)),this._domNode=document.createElement(`div`),this._domNode.className=`xterm-scrollable-element `+this._options.className,this._domNode.setAttribute(`role`,`presentation`),this._domNode.style.position=`relative`,this._domNode.appendChild(e),this._domNode.appendChild(this._horizontalScrollbar.domNode.domNode),this._domNode.appendChild(this._verticalScrollbar.domNode.domNode),this._options.useShadows?(this._leftShadowDomNode=Ho(document.createElement(`div`)),this._leftShadowDomNode.setClassName(`shadow`),this._domNode.appendChild(this._leftShadowDomNode.domNode),this._topShadowDomNode=Ho(document.createElement(`div`)),this._topShadowDomNode.setClassName(`shadow`),this._domNode.appendChild(this._topShadowDomNode.domNode),this._topLeftShadowDomNode=Ho(document.createElement(`div`)),this._topLeftShadowDomNode.setClassName(`shadow`),this._domNode.appendChild(this._topLeftShadowDomNode.domNode)):(this._leftShadowDomNode=null,this._topShadowDomNode=null,this._topLeftShadowDomNode=null),this._listenOnDomNode=this._options.listenOnDomNode||this._domNode,this._mouseWheelToDispose=[],this._setListeningToMouseWheel(this._options.handleMouseWheel),this.onmouseover(this._listenOnDomNode,e=>this._onMouseOver(e)),this.onmouseleave(this._listenOnDomNode,e=>this._onMouseLeave(e)),this._hideTimeout=this._register(new Ya),this._isDragging=!1,this._mouseIsOver=!1,this._shouldRender=!0,this._revealOnScroll=!0}get options(){return this._options}dispose(){this._mouseWheelToDispose=yi(this._mouseWheelToDispose),super.dispose()}getDomNode(){return this._domNode}getOverviewRulerLayoutInfo(){return{parent:this._domNode,insertBefore:this._verticalScrollbar.domNode.domNode}}delegateVerticalScrollbarPointerDown(e){this._verticalScrollbar.delegatePointerDown(e)}getScrollDimensions(){return this._scrollable.getScrollDimensions()}setScrollDimensions(e){this._scrollable.setScrollDimensions(e,!1)}updateClassName(e){this._options.className=e,va&&(this._options.className+=` mac`),this._domNode.className=`xterm-scrollable-element `+this._options.className}updateOptions(e){typeof e.handleMouseWheel<`u`&&(this._options.handleMouseWheel=e.handleMouseWheel,this._setListeningToMouseWheel(this._options.handleMouseWheel)),typeof e.mouseWheelScrollSensitivity<`u`&&(this._options.mouseWheelScrollSensitivity=e.mouseWheelScrollSensitivity),typeof e.fastScrollSensitivity<`u`&&(this._options.fastScrollSensitivity=e.fastScrollSensitivity),typeof e.scrollPredominantAxis<`u`&&(this._options.scrollPredominantAxis=e.scrollPredominantAxis),typeof e.horizontal<`u`&&(this._options.horizontal=e.horizontal),typeof e.vertical<`u`&&(this._options.vertical=e.vertical),typeof e.horizontalScrollbarSize<`u`&&(this._options.horizontalScrollbarSize=e.horizontalScrollbarSize),typeof e.verticalScrollbarSize<`u`&&(this._options.verticalScrollbarSize=e.verticalScrollbarSize),typeof e.scrollByPage<`u`&&(this._options.scrollByPage=e.scrollByPage),this._horizontalScrollbar.updateOptions(this._options),this._verticalScrollbar.updateOptions(this._options),this._options.lazyRender||this._render()}setRevealOnScroll(e){this._revealOnScroll=e}delegateScrollFromMouseWheelEvent(e){this._onMouseWheel(new Ga(e))}_setListeningToMouseWheel(e){this._mouseWheelToDispose.length>0!==e&&(this._mouseWheelToDispose=yi(this._mouseWheelToDispose),e)&&this._mouseWheelToDispose.push(Do(this._listenOnDomNode,Io.MOUSE_WHEEL,e=>{this._onMouseWheel(new Ga(e))},{passive:!1}))}_onMouseWheel(e){if(e.browserEvent?.defaultPrevented)return;let t=gs.INSTANCE;ps&&t.acceptStandardWheelEvent(e);let n=!1;if(e.deltaY||e.deltaX){let r=e.deltaY*this._options.mouseWheelScrollSensitivity,i=e.deltaX*this._options.mouseWheelScrollSensitivity;this._options.scrollPredominantAxis&&(this._options.scrollYToX&&i+r===0?i=r=0:Math.abs(r)>=Math.abs(i)?i=0:r=0),this._options.flipAxes&&([r,i]=[i,r]);let a=!va&&e.browserEvent&&e.browserEvent.shiftKey;(this._options.scrollYToX||a)&&!i&&(i=r,r=0),e.browserEvent&&e.browserEvent.altKey&&(i*=this._options.fastScrollSensitivity,r*=this._options.fastScrollSensitivity);let o=this._scrollable.getFutureScrollPosition(),s={};if(r){let e=fs*r,t=o.scrollTop-(e<0?Math.floor(e):Math.ceil(e));this._verticalScrollbar.writeScrollPosition(s,t)}if(i){let e=fs*i,t=o.scrollLeft-(e<0?Math.floor(e):Math.ceil(e));this._horizontalScrollbar.writeScrollPosition(s,t)}s=this._scrollable.validateScrollPosition(s),(o.scrollLeft!==s.scrollLeft||o.scrollTop!==s.scrollTop)&&(ps&&this._options.mouseWheelSmoothScroll&&t.isPhysicalMouseWheel()?this._scrollable.setScrollPositionSmooth(s):this._scrollable.setScrollPositionNow(s),n=!0)}let r=n;!r&&this._options.alwaysConsumeMouseWheel&&(r=!0),!r&&this._options.consumeMouseWheelIfScrollbarIsNeeded&&(this._verticalScrollbar.isNeeded()||this._horizontalScrollbar.isNeeded())&&(r=!0),r&&(e.preventDefault(),e.stopPropagation())}_onDidScroll(e){this._shouldRender=this._horizontalScrollbar.onDidScroll(e)||this._shouldRender,this._shouldRender=this._verticalScrollbar.onDidScroll(e)||this._shouldRender,this._options.useShadows&&(this._shouldRender=!0),this._revealOnScroll&&this._reveal(),this._options.lazyRender||this._render()}renderNow(){if(!this._options.lazyRender)throw Error("Please use `lazyRender` together with `renderNow`!");this._render()}_render(){if(this._shouldRender&&(this._shouldRender=!1,this._horizontalScrollbar.render(),this._verticalScrollbar.render(),this._options.useShadows)){let e=this._scrollable.getCurrentScrollPosition(),t=e.scrollTop>0,n=e.scrollLeft>0,r=n?` left`:``,i=t?` top`:``,a=n||t?` top-left-corner`:``;this._leftShadowDomNode.setClassName(`shadow${r}`),this._topShadowDomNode.setClassName(`shadow${i}`),this._topLeftShadowDomNode.setClassName(`shadow${a}${i}${r}`)}}_onDragStart(){this._isDragging=!0,this._reveal()}_onDragEnd(){this._isDragging=!1,this._hide()}_onMouseLeave(e){this._mouseIsOver=!1,this._hide()}_onMouseOver(e){this._mouseIsOver=!0,this._reveal()}_reveal(){this._verticalScrollbar.beginReveal(),this._horizontalScrollbar.beginReveal(),this._scheduleHide()}_hide(){!this._mouseIsOver&&!this._isDragging&&(this._verticalScrollbar.beginHide(),this._horizontalScrollbar.beginHide())}_scheduleHide(){!this._mouseIsOver&&!this._isDragging&&this._hideTimeout.cancelAndSet(()=>this._hide(),ds)}},vs=class extends _s{constructor(e,t,n){super(e,t,n)}setScrollPosition(e){e.reuseAnimation?this._scrollable.setScrollPositionSmooth(e,e.reuseAnimation):this._scrollable.setScrollPositionNow(e)}getScrollPosition(){return this._scrollable.getCurrentScrollPosition()}};function ys(e){let t={lazyRender:typeof e.lazyRender<`u`?e.lazyRender:!1,className:typeof e.className<`u`?e.className:``,useShadows:typeof e.useShadows<`u`?e.useShadows:!0,handleMouseWheel:typeof e.handleMouseWheel<`u`?e.handleMouseWheel:!0,flipAxes:typeof e.flipAxes<`u`?e.flipAxes:!1,consumeMouseWheelIfScrollbarIsNeeded:typeof e.consumeMouseWheelIfScrollbarIsNeeded<`u`?e.consumeMouseWheelIfScrollbarIsNeeded:!1,alwaysConsumeMouseWheel:typeof e.alwaysConsumeMouseWheel<`u`?e.alwaysConsumeMouseWheel:!1,scrollYToX:typeof e.scrollYToX<`u`?e.scrollYToX:!1,mouseWheelScrollSensitivity:typeof e.mouseWheelScrollSensitivity<`u`?e.mouseWheelScrollSensitivity:1,fastScrollSensitivity:typeof e.fastScrollSensitivity<`u`?e.fastScrollSensitivity:5,scrollPredominantAxis:typeof e.scrollPredominantAxis<`u`?e.scrollPredominantAxis:!0,mouseWheelSmoothScroll:typeof e.mouseWheelSmoothScroll<`u`?e.mouseWheelSmoothScroll:!0,arrowSize:typeof e.arrowSize<`u`?e.arrowSize:11,listenOnDomNode:typeof e.listenOnDomNode<`u`?e.listenOnDomNode:null,horizontal:typeof e.horizontal<`u`?e.horizontal:1,horizontalScrollbarSize:typeof e.horizontalScrollbarSize<`u`?e.horizontalScrollbarSize:10,horizontalSliderSize:typeof e.horizontalSliderSize<`u`?e.horizontalSliderSize:0,horizontalHasArrows:typeof e.horizontalHasArrows<`u`?e.horizontalHasArrows:!1,vertical:typeof e.vertical<`u`?e.vertical:1,verticalScrollbarSize:typeof e.verticalScrollbarSize<`u`?e.verticalScrollbarSize:10,verticalHasArrows:typeof e.verticalHasArrows<`u`?e.verticalHasArrows:!1,verticalSliderSize:typeof e.verticalSliderSize<`u`?e.verticalSliderSize:0,scrollByPage:typeof e.scrollByPage<`u`?e.scrollByPage:!1};return t.horizontalSliderSize=typeof e.horizontalSliderSize<`u`?e.horizontalSliderSize:t.horizontalScrollbarSize,t.verticalSliderSize=typeof e.verticalSliderSize<`u`?e.verticalSliderSize:t.verticalScrollbarSize,va&&(t.className+=` mac`),t}var bs=class extends Ci{constructor(e,t,n,r,i,a,o,s){super(),this._bufferService=n,this._optionsService=o,this._renderService=s,this._onRequestScrollLines=this._register(new Z),this.onRequestScrollLines=this._onRequestScrollLines.event,this._isSyncing=!1,this._isHandlingScroll=!1,this._suppressOnScrollHandler=!1;let c=this._register(new Qo({forceIntegerValues:!1,smoothScrollDuration:this._optionsService.rawOptions.smoothScrollDuration,scheduleAtNextAnimationFrame:e=>jo(r.window,e)}));this._register(this._optionsService.onSpecificOptionChange(`smoothScrollDuration`,()=>{c.setSmoothScrollDuration(this._optionsService.rawOptions.smoothScrollDuration)})),this._scrollableElement=this._register(new vs(t,{vertical:1,horizontal:2,useShadows:!1,mouseWheelSmoothScroll:!0,...this._getChangeOptions()},c)),this._register(this._optionsService.onMultipleOptionChange([`scrollSensitivity`,`fastScrollSensitivity`,`overviewRuler`],()=>this._scrollableElement.updateOptions(this._getChangeOptions()))),this._register(i.onProtocolChange(e=>{this._scrollableElement.updateOptions({handleMouseWheel:!(e&16)})})),this._scrollableElement.setScrollDimensions({height:0,scrollHeight:0}),this._register(Pi.runAndSubscribe(a.onChangeColors,()=>{this._scrollableElement.getDomNode().style.backgroundColor=a.colors.background.css})),e.appendChild(this._scrollableElement.getDomNode()),this._register(bi(()=>this._scrollableElement.getDomNode().remove())),this._styleElement=r.mainDocument.createElement(`style`),t.appendChild(this._styleElement),this._register(bi(()=>this._styleElement.remove())),this._register(Pi.runAndSubscribe(a.onChangeColors,()=>{this._styleElement.textContent=[`.xterm .xterm-scrollable-element > .scrollbar > .slider {`,` background: ${a.colors.scrollbarSliderBackground.css};`,`}`,`.xterm .xterm-scrollable-element > .scrollbar > .slider:hover {`,` background: ${a.colors.scrollbarSliderHoverBackground.css};`,`}`,`.xterm .xterm-scrollable-element > .scrollbar > .slider.active {`,` background: ${a.colors.scrollbarSliderActiveBackground.css};`,`}`].join(`
34
+ `)})),this._register(this._bufferService.onResize(()=>this.queueSync())),this._register(this._bufferService.buffers.onBufferActivate(()=>{this._latestYDisp=void 0,this.queueSync()})),this._register(this._bufferService.onScroll(()=>this._sync())),this._register(this._scrollableElement.onScroll(e=>this._handleScroll(e)))}scrollLines(e){let t=this._scrollableElement.getScrollPosition();this._scrollableElement.setScrollPosition({reuseAnimation:!0,scrollTop:t.scrollTop+e*this._renderService.dimensions.css.cell.height})}scrollToLine(e,t){t&&(this._latestYDisp=e),this._scrollableElement.setScrollPosition({reuseAnimation:!t,scrollTop:e*this._renderService.dimensions.css.cell.height})}_getChangeOptions(){return{mouseWheelScrollSensitivity:this._optionsService.rawOptions.scrollSensitivity,fastScrollSensitivity:this._optionsService.rawOptions.fastScrollSensitivity,verticalScrollbarSize:this._optionsService.rawOptions.overviewRuler?.width||14}}queueSync(e){e!==void 0&&(this._latestYDisp=e),this._queuedAnimationFrame===void 0&&(this._queuedAnimationFrame=this._renderService.addRefreshCallback(()=>{this._queuedAnimationFrame=void 0,this._sync(this._latestYDisp)}))}_sync(e=this._bufferService.buffer.ydisp){!this._renderService||this._isSyncing||(this._isSyncing=!0,this._suppressOnScrollHandler=!0,this._scrollableElement.setScrollDimensions({height:this._renderService.dimensions.css.canvas.height,scrollHeight:this._renderService.dimensions.css.cell.height*this._bufferService.buffer.lines.length}),this._suppressOnScrollHandler=!1,e!==this._latestYDisp&&this._scrollableElement.setScrollPosition({scrollTop:e*this._renderService.dimensions.css.cell.height}),this._isSyncing=!1)}_handleScroll(e){if(!this._renderService||this._isHandlingScroll||this._suppressOnScrollHandler)return;this._isHandlingScroll=!0;let t=Math.round(e.scrollTop/this._renderService.dimensions.css.cell.height),n=t-this._bufferService.buffer.ydisp;n!==0&&(this._latestYDisp=t,this._onRequestScrollLines.fire(n)),this._isHandlingScroll=!1}};bs=er([q(2,Dr),q(3,Br),q(4,Or),q(5,Y),q(6,Nr),q(7,J)],bs);var xs=class extends Ci{constructor(e,t,n,r,i){super(),this._screenElement=e,this._bufferService=t,this._coreBrowserService=n,this._decorationService=r,this._renderService=i,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement(`div`),this._container.classList.add(`xterm-decoration-container`),this._screenElement.appendChild(this._container),this._register(this._renderService.onRenderedViewportChange(()=>this._doRefreshDecorations())),this._register(this._renderService.onDimensionsChange(()=>{this._dimensionsChanged=!0,this._queueRefresh()})),this._register(this._coreBrowserService.onDprChange(()=>this._queueRefresh())),this._register(this._bufferService.buffers.onBufferActivate(()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt})),this._register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh())),this._register(this._decorationService.onDecorationRemoved(e=>this._removeDecoration(e))),this._register(bi(()=>{this._container.remove(),this._decorationElements.clear()}))}_queueRefresh(){this._animationFrame===void 0&&(this._animationFrame=this._renderService.addRefreshCallback(()=>{this._doRefreshDecorations(),this._animationFrame=void 0}))}_doRefreshDecorations(){for(let e of this._decorationService.decorations)this._renderDecoration(e);this._dimensionsChanged=!1}_renderDecoration(e){this._refreshStyle(e),this._dimensionsChanged&&this._refreshXPosition(e)}_createElement(e){let t=this._coreBrowserService.mainDocument.createElement(`div`);t.classList.add(`xterm-decoration`),t.classList.toggle(`xterm-decoration-top-layer`,e?.options?.layer===`top`),t.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,t.style.height=`${(e.options.height||1)*this._renderService.dimensions.css.cell.height}px`,t.style.top=`${(e.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height}px`,t.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;let n=e.options.x??0;return n&&n>this._bufferService.cols&&(t.style.display=`none`),this._refreshXPosition(e,t),t}_refreshStyle(e){let t=e.marker.line-this._bufferService.buffers.active.ydisp;if(t<0||t>=this._bufferService.rows)e.element&&(e.element.style.display=`none`,e.onRenderEmitter.fire(e.element));else{let n=this._decorationElements.get(e);n||(n=this._createElement(e),e.element=n,this._decorationElements.set(e,n),this._container.appendChild(n),e.onDispose(()=>{this._decorationElements.delete(e),n.remove()})),n.style.display=this._altBufferIsActive?`none`:`block`,this._altBufferIsActive||(n.style.width=`${Math.round((e.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,n.style.height=`${(e.options.height||1)*this._renderService.dimensions.css.cell.height}px`,n.style.top=`${t*this._renderService.dimensions.css.cell.height}px`,n.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`),e.onRenderEmitter.fire(n)}}_refreshXPosition(e,t=e.element){if(!t)return;let n=e.options.x??0;(e.options.anchor||`left`)===`right`?t.style.right=n?`${n*this._renderService.dimensions.css.cell.width}px`:``:t.style.left=n?`${n*this._renderService.dimensions.css.cell.width}px`:``}_removeDecoration(e){this._decorationElements.get(e)?.remove(),this._decorationElements.delete(e),e.dispose()}};xs=er([q(1,Dr),q(2,Br),q(3,Ir),q(4,J)],xs);var Ss=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(e){if(e.options.overviewRulerOptions){for(let t of this._zones)if(t.color===e.options.overviewRulerOptions.color&&t.position===e.options.overviewRulerOptions.position){if(this._lineIntersectsZone(t,e.marker.line))return;if(this._lineAdjacentToZone(t,e.marker.line,e.options.overviewRulerOptions.position)){this._addLineToZone(t,e.marker.line);return}}if(this._zonePoolIndex<this._zonePool.length){this._zonePool[this._zonePoolIndex].color=e.options.overviewRulerOptions.color,this._zonePool[this._zonePoolIndex].position=e.options.overviewRulerOptions.position,this._zonePool[this._zonePoolIndex].startBufferLine=e.marker.line,this._zonePool[this._zonePoolIndex].endBufferLine=e.marker.line,this._zones.push(this._zonePool[this._zonePoolIndex++]);return}this._zones.push({color:e.options.overviewRulerOptions.color,position:e.options.overviewRulerOptions.position,startBufferLine:e.marker.line,endBufferLine:e.marker.line}),this._zonePool.push(this._zones[this._zones.length-1]),this._zonePoolIndex++}}setPadding(e){this._linePadding=e}_lineIntersectsZone(e,t){return t>=e.startBufferLine&&t<=e.endBufferLine}_lineAdjacentToZone(e,t,n){return t>=e.startBufferLine-this._linePadding[n||`full`]&&t<=e.endBufferLine+this._linePadding[n||`full`]}_addLineToZone(e,t){e.startBufferLine=Math.min(e.startBufferLine,t),e.endBufferLine=Math.max(e.endBufferLine,t)}},Cs={full:0,left:0,center:0,right:0},ws={full:0,left:0,center:0,right:0},Ts={full:0,left:0,center:0,right:0},Es=class extends Ci{constructor(e,t,n,r,i,a,o,s){super(),this._viewportElement=e,this._screenElement=t,this._bufferService=n,this._decorationService=r,this._renderService=i,this._optionsService=a,this._themeService=o,this._coreBrowserService=s,this._colorZoneStore=new Ss,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=this._coreBrowserService.mainDocument.createElement(`canvas`),this._canvas.classList.add(`xterm-decoration-overview-ruler`),this._refreshCanvasDimensions(),this._viewportElement.parentElement?.insertBefore(this._canvas,this._viewportElement),this._register(bi(()=>this._canvas?.remove()));let c=this._canvas.getContext(`2d`);if(c)this._ctx=c;else throw Error(`Ctx cannot be null`);this._register(this._decorationService.onDecorationRegistered(()=>this._queueRefresh(void 0,!0))),this._register(this._decorationService.onDecorationRemoved(()=>this._queueRefresh(void 0,!0))),this._register(this._renderService.onRenderedViewportChange(()=>this._queueRefresh())),this._register(this._bufferService.buffers.onBufferActivate(()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?`none`:`block`})),this._register(this._bufferService.onScroll(()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())})),this._register(this._renderService.onRender(()=>{(!this._containerHeight||this._containerHeight!==this._screenElement.clientHeight)&&(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)})),this._register(this._coreBrowserService.onDprChange(()=>this._queueRefresh(!0))),this._register(this._optionsService.onSpecificOptionChange(`overviewRuler`,()=>this._queueRefresh(!0))),this._register(this._themeService.onChangeColors(()=>this._queueRefresh())),this._queueRefresh(!0)}get _width(){return this._optionsService.options.overviewRuler?.width||0}_refreshDrawConstants(){let e=Math.floor((this._canvas.width-1)/3),t=Math.ceil((this._canvas.width-1)/3);ws.full=this._canvas.width,ws.left=e,ws.center=t,ws.right=e,this._refreshDrawHeightConstants(),Ts.full=1,Ts.left=1,Ts.center=1+ws.left,Ts.right=1+ws.left+ws.center}_refreshDrawHeightConstants(){Cs.full=Math.round(2*this._coreBrowserService.dpr);let e=this._canvas.height/this._bufferService.buffer.lines.length,t=Math.round(Math.max(Math.min(e,12),6)*this._coreBrowserService.dpr);Cs.left=t,Cs.center=t,Cs.right=t}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*Cs.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*Cs.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*Cs.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*Cs.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowserService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowserService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(let e of this._decorationService.decorations)this._colorZoneStore.addDecoration(e);this._ctx.lineWidth=1,this._renderRulerOutline();let e=this._colorZoneStore.zones;for(let t of e)t.position!==`full`&&this._renderColorZone(t);for(let t of e)t.position===`full`&&this._renderColorZone(t);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderRulerOutline(){this._ctx.fillStyle=this._themeService.colors.overviewRulerBorder.css,this._ctx.fillRect(0,0,1,this._canvas.height),this._optionsService.rawOptions.overviewRuler.showTopBorder&&this._ctx.fillRect(1,0,this._canvas.width-1,1),this._optionsService.rawOptions.overviewRuler.showBottomBorder&&this._ctx.fillRect(1,this._canvas.height-1,this._canvas.width-1,this._canvas.height)}_renderColorZone(e){this._ctx.fillStyle=e.color,this._ctx.fillRect(Ts[e.position||`full`],Math.round((this._canvas.height-1)*(e.startBufferLine/this._bufferService.buffers.active.lines.length)-Cs[e.position||`full`]/2),ws[e.position||`full`],Math.round((this._canvas.height-1)*((e.endBufferLine-e.startBufferLine)/this._bufferService.buffers.active.lines.length)+Cs[e.position||`full`]))}_queueRefresh(e,t){this._shouldUpdateDimensions=e||this._shouldUpdateDimensions,this._shouldUpdateAnchor=t||this._shouldUpdateAnchor,this._animationFrame===void 0&&(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._refreshDecorations(),this._animationFrame=void 0}))}};Es=er([q(2,Dr),q(3,Ir),q(4,J),q(5,Nr),q(6,Y),q(7,Br)],Es);var Q;(e=>(e.NUL=`\0`,e.SOH=``,e.STX=``,e.ETX=``,e.EOT=``,e.ENQ=``,e.ACK=``,e.BEL=`\x07`,e.BS=`\b`,e.HT=` `,e.LF=`
35
+ `,e.VT=`\v`,e.FF=`\f`,e.CR=`\r`,e.SO=``,e.SI=``,e.DLE=``,e.DC1=``,e.DC2=``,e.DC3=``,e.DC4=``,e.NAK=``,e.SYN=``,e.ETB=``,e.CAN=``,e.EM=``,e.SUB=``,e.ESC=`\x1B`,e.FS=``,e.GS=``,e.RS=``,e.US=``,e.SP=` `,e.DEL=``))(Q||={});var Ds;(e=>(e.PAD=`€`,e.HOP=``,e.BPH=`‚`,e.NBH=`ƒ`,e.IND=`„`,e.NEL=`…`,e.SSA=`†`,e.ESA=`‡`,e.HTS=`ˆ`,e.HTJ=`‰`,e.VTS=`Š`,e.PLD=`‹`,e.PLU=`Œ`,e.RI=``,e.SS2=`Ž`,e.SS3=``,e.DCS=``,e.PU1=`‘`,e.PU2=`’`,e.STS=`“`,e.CCH=`”`,e.MW=`•`,e.SPA=`–`,e.EPA=`—`,e.SOS=`˜`,e.SGCI=`™`,e.SCI=`š`,e.CSI=`›`,e.ST=`œ`,e.OSC=``,e.PM=`ž`,e.APC=`Ÿ`))(Ds||={});var Os;(e=>e.ST=`${Q.ESC}\\`)(Os||={});var ks=class{constructor(e,t,n,r,i,a){this._textarea=e,this._compositionView=t,this._bufferService=n,this._optionsService=r,this._coreService=i,this._renderService=a,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=``}get isComposing(){return this._isComposing}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent=``,this._dataAlreadySent=``,this._compositionView.classList.add(`active`)}compositionupdate(e){this._compositionView.textContent=e.data,this.updateCompositionElements(),setTimeout(()=>{this._compositionPosition.end=this._textarea.value.length},0)}compositionend(){this._finalizeComposition(!0)}keydown(e){if(this._isComposing||this._isSendingComposition){if(e.keyCode===20||e.keyCode===229||e.keyCode===16||e.keyCode===17||e.keyCode===18)return!1;this._finalizeComposition(!1)}return e.keyCode===229?(this._handleAnyTextareaChanges(),!1):!0}_finalizeComposition(e){if(this._compositionView.classList.remove(`active`),this._isComposing=!1,e){let e={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout(()=>{if(this._isSendingComposition){this._isSendingComposition=!1;let t;e.start+=this._dataAlreadySent.length,t=this._isComposing?this._textarea.value.substring(e.start,this._compositionPosition.start):this._textarea.value.substring(e.start),t.length>0&&this._coreService.triggerDataEvent(t,!0)}},0)}else{this._isSendingComposition=!1;let e=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(e,!0)}}_handleAnyTextareaChanges(){let e=this._textarea.value;setTimeout(()=>{if(!this._isComposing){let t=this._textarea.value,n=t.replace(e,``);this._dataAlreadySent=n,t.length>e.length?this._coreService.triggerDataEvent(n,!0):t.length<e.length?this._coreService.triggerDataEvent(`${Q.DEL}`,!0):t.length===e.length&&t!==e&&this._coreService.triggerDataEvent(t,!0)}},0)}updateCompositionElements(e){if(this._isComposing){if(this._bufferService.buffer.isCursorInViewport){let e=Math.min(this._bufferService.buffer.x,this._bufferService.cols-1),t=this._renderService.dimensions.css.cell.height,n=this._bufferService.buffer.y*this._renderService.dimensions.css.cell.height,r=e*this._renderService.dimensions.css.cell.width;this._compositionView.style.left=r+`px`,this._compositionView.style.top=n+`px`,this._compositionView.style.height=t+`px`,this._compositionView.style.lineHeight=t+`px`,this._compositionView.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._compositionView.style.fontSize=this._optionsService.rawOptions.fontSize+`px`;let i=this._compositionView.getBoundingClientRect();this._textarea.style.left=r+`px`,this._textarea.style.top=n+`px`,this._textarea.style.width=Math.max(i.width,1)+`px`,this._textarea.style.height=Math.max(i.height,1)+`px`,this._textarea.style.lineHeight=i.height+`px`}e||setTimeout(()=>this.updateCompositionElements(!0),0)}}};ks=er([q(2,Dr),q(3,Nr),q(4,kr),q(5,J)],ks);var As=0,js=0,Ms=0,Ns=0,Ps={css:`#00000000`,rgba:0},Fs;(e=>{function t(e,t,n,r){return r===void 0?`#${Bs(e)}${Bs(t)}${Bs(n)}`:`#${Bs(e)}${Bs(t)}${Bs(n)}${Bs(r)}`}e.toCss=t;function n(e,t,n,r=255){return(e<<24|t<<16|n<<8|r)>>>0}e.toRgba=n;function r(t,n,r,i){return{css:e.toCss(t,n,r,i),rgba:e.toRgba(t,n,r,i)}}e.toColor=r})(Fs||={});var Is;(e=>{function t(e,t){if(Ns=(t.rgba&255)/255,Ns===1)return{css:t.css,rgba:t.rgba};let n=t.rgba>>24&255,r=t.rgba>>16&255,i=t.rgba>>8&255,a=e.rgba>>24&255,o=e.rgba>>16&255,s=e.rgba>>8&255;return As=a+Math.round((n-a)*Ns),js=o+Math.round((r-o)*Ns),Ms=s+Math.round((i-s)*Ns),{css:Fs.toCss(As,js,Ms),rgba:Fs.toRgba(As,js,Ms)}}e.blend=t;function n(e){return(e.rgba&255)==255}e.isOpaque=n;function r(e,t,n){let r=zs.ensureContrastRatio(e.rgba,t.rgba,n);if(r)return Fs.toColor(r>>24&255,r>>16&255,r>>8&255)}e.ensureContrastRatio=r;function i(e){let t=(e.rgba|255)>>>0;return[As,js,Ms]=zs.toChannels(t),{css:Fs.toCss(As,js,Ms),rgba:t}}e.opaque=i;function a(e,t){return Ns=Math.round(t*255),[As,js,Ms]=zs.toChannels(e.rgba),{css:Fs.toCss(As,js,Ms,Ns),rgba:Fs.toRgba(As,js,Ms,Ns)}}e.opacity=a;function o(e,t){return Ns=e.rgba&255,a(e,Ns*t/255)}e.multiplyOpacity=o;function s(e){return[e.rgba>>24&255,e.rgba>>16&255,e.rgba>>8&255]}e.toColorRGB=s})(Is||={});var Ls;(e=>{let t,n;try{let e=document.createElement(`canvas`);e.width=1,e.height=1;let r=e.getContext(`2d`,{willReadFrequently:!0});r&&(t=r,t.globalCompositeOperation=`copy`,n=t.createLinearGradient(0,0,1,1))}catch{}function r(e){if(e.match(/#[\da-f]{3,8}/i))switch(e.length){case 4:return As=parseInt(e.slice(1,2).repeat(2),16),js=parseInt(e.slice(2,3).repeat(2),16),Ms=parseInt(e.slice(3,4).repeat(2),16),Fs.toColor(As,js,Ms);case 5:return As=parseInt(e.slice(1,2).repeat(2),16),js=parseInt(e.slice(2,3).repeat(2),16),Ms=parseInt(e.slice(3,4).repeat(2),16),Ns=parseInt(e.slice(4,5).repeat(2),16),Fs.toColor(As,js,Ms,Ns);case 7:return{css:e,rgba:(parseInt(e.slice(1),16)<<8|255)>>>0};case 9:return{css:e,rgba:parseInt(e.slice(1),16)>>>0}}let r=e.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(r)return As=parseInt(r[1]),js=parseInt(r[2]),Ms=parseInt(r[3]),Ns=Math.round((r[5]===void 0?1:parseFloat(r[5]))*255),Fs.toColor(As,js,Ms,Ns);if(!t||!n||(t.fillStyle=n,t.fillStyle=e,typeof t.fillStyle!=`string`)||(t.fillRect(0,0,1,1),[As,js,Ms,Ns]=t.getImageData(0,0,1,1).data,Ns!==255))throw Error(`css.toColor: Unsupported css format`);return{rgba:Fs.toRgba(As,js,Ms,Ns),css:e}}e.toColor=r})(Ls||={});var Rs;(e=>{function t(e){return n(e>>16&255,e>>8&255,e&255)}e.relativeLuminance=t;function n(e,t,n){let r=e/255,i=t/255,a=n/255,o=r<=.03928?r/12.92:((r+.055)/1.055)**2.4,s=i<=.03928?i/12.92:((i+.055)/1.055)**2.4,c=a<=.03928?a/12.92:((a+.055)/1.055)**2.4;return o*.2126+s*.7152+c*.0722}e.relativeLuminance2=n})(Rs||={});var zs;(e=>{function t(e,t){if(Ns=(t&255)/255,Ns===1)return t;let n=t>>24&255,r=t>>16&255,i=t>>8&255,a=e>>24&255,o=e>>16&255,s=e>>8&255;return As=a+Math.round((n-a)*Ns),js=o+Math.round((r-o)*Ns),Ms=s+Math.round((i-s)*Ns),Fs.toRgba(As,js,Ms)}e.blend=t;function n(e,t,n){let a=Rs.relativeLuminance(e>>8),o=Rs.relativeLuminance(t>>8);if(Vs(a,o)<n){if(o<a){let o=r(e,t,n),s=Vs(a,Rs.relativeLuminance(o>>8));if(s<n){let r=i(e,t,n);return s>Vs(a,Rs.relativeLuminance(r>>8))?o:r}return o}let s=i(e,t,n),c=Vs(a,Rs.relativeLuminance(s>>8));if(c<n){let i=r(e,t,n);return c>Vs(a,Rs.relativeLuminance(i>>8))?s:i}return s}}e.ensureContrastRatio=n;function r(e,t,n){let r=e>>24&255,i=e>>16&255,a=e>>8&255,o=t>>24&255,s=t>>16&255,c=t>>8&255,l=Vs(Rs.relativeLuminance2(o,s,c),Rs.relativeLuminance2(r,i,a));for(;l<n&&(o>0||s>0||c>0);)o-=Math.max(0,Math.ceil(o*.1)),s-=Math.max(0,Math.ceil(s*.1)),c-=Math.max(0,Math.ceil(c*.1)),l=Vs(Rs.relativeLuminance2(o,s,c),Rs.relativeLuminance2(r,i,a));return(o<<24|s<<16|c<<8|255)>>>0}e.reduceLuminance=r;function i(e,t,n){let r=e>>24&255,i=e>>16&255,a=e>>8&255,o=t>>24&255,s=t>>16&255,c=t>>8&255,l=Vs(Rs.relativeLuminance2(o,s,c),Rs.relativeLuminance2(r,i,a));for(;l<n&&(o<255||s<255||c<255);)o=Math.min(255,o+Math.ceil((255-o)*.1)),s=Math.min(255,s+Math.ceil((255-s)*.1)),c=Math.min(255,c+Math.ceil((255-c)*.1)),l=Vs(Rs.relativeLuminance2(o,s,c),Rs.relativeLuminance2(r,i,a));return(o<<24|s<<16|c<<8|255)>>>0}e.increaseLuminance=i;function a(e){return[e>>24&255,e>>16&255,e>>8&255,e&255]}e.toChannels=a})(zs||={});function Bs(e){let t=e.toString(16);return t.length<2?`0`+t:t}function Vs(e,t){return e<t?(t+.05)/(e+.05):(e+.05)/(t+.05)}var Hs=class extends vr{constructor(e,t,n){super(),this.content=0,this.combinedData=``,this.fg=e.fg,this.bg=e.bg,this.combinedData=t,this._width=n}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(e){throw Error(`not implemented`)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}},Us=class{constructor(e){this._bufferService=e,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new br}register(e){let t={id:this._nextCharacterJoinerId++,handler:e};return this._characterJoiners.push(t),t.id}deregister(e){for(let t=0;t<this._characterJoiners.length;t++)if(this._characterJoiners[t].id===e)return this._characterJoiners.splice(t,1),!0;return!1}getJoinedCharacters(e){if(this._characterJoiners.length===0)return[];let t=this._bufferService.buffer.lines.get(e);if(!t||t.length===0)return[];let n=[],r=t.translateToString(!0),i=0,a=0,o=0,s=t.getFg(0),c=t.getBg(0);for(let e=0;e<t.getTrimmedLength();e++)if(t.loadCell(e,this._workCell),this._workCell.getWidth()!==0){if(this._workCell.fg!==s||this._workCell.bg!==c){if(e-i>1){let e=this._getJoinedRanges(r,o,a,t,i);for(let t=0;t<e.length;t++)n.push(e[t])}i=e,o=a,s=this._workCell.fg,c=this._workCell.bg}a+=this._workCell.getChars().length||_r.length}if(this._bufferService.cols-i>1){let e=this._getJoinedRanges(r,o,a,t,i);for(let t=0;t<e.length;t++)n.push(e[t])}return n}_getJoinedRanges(e,t,n,r,i){let a=e.substring(t,n),o=[];try{o=this._characterJoiners[0].handler(a)}catch(e){console.error(e)}for(let e=1;e<this._characterJoiners.length;e++)try{let t=this._characterJoiners[e].handler(a);for(let e=0;e<t.length;e++)Us._mergeRanges(o,t[e])}catch(e){console.error(e)}return this._stringRangesToCellRanges(o,r,i),o}_stringRangesToCellRanges(e,t,n){let r=0,i=!1,a=0,o=e[r];if(o){for(let s=n;s<this._bufferService.cols;s++){let n=t.getWidth(s),c=t.getString(s).length||_r.length;if(n!==0){if(!i&&o[0]<=a&&(o[0]=s,i=!0),o[1]<=a){if(o[1]=s,o=e[++r],!o)break;o[0]<=a?(o[0]=s,i=!0):i=!1}a+=c}}o&&(o[1]=this._bufferService.cols)}}static _mergeRanges(e,t){let n=!1;for(let r=0;r<e.length;r++){let i=e[r];if(n){if(t[1]<=i[0])return e[r-1][1]=t[1],e;if(t[1]<=i[1])return e[r-1][1]=Math.max(t[1],i[1]),e.splice(r,1),e;e.splice(r,1),r--}else{if(t[1]<=i[0])return e.splice(r,0,t),e;if(t[1]<=i[1])return i[0]=Math.min(t[0],i[0]),e;t[0]<i[1]&&(i[0]=Math.min(t[0],i[0]),n=!0);continue}}return n?e[e.length-1][1]=t[1]:e.push(t),e}};Us=er([q(0,Dr)],Us);function Ws(e){return 57508<=e&&e<=57558}function Gs(e){return 9472<=e&&e<=9631}function Ks(e){return Ws(e)||Gs(e)}function qs(){return{css:{canvas:Js(),cell:Js()},device:{canvas:Js(),cell:Js(),char:{width:0,height:0,left:0,top:0}}}}function Js(){return{width:0,height:0}}var Ys=class{constructor(e,t,n,r,i,a,o){this._document=e,this._characterJoinerService=t,this._optionsService=n,this._coreBrowserService=r,this._coreService=i,this._decorationService=a,this._themeService=o,this._workCell=new br,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(e,t,n){this._selectionStart=e,this._selectionEnd=t,this._columnSelectMode=n}createRow(e,t,n,r,i,a,o,s,c,l,u){let d=[],f=this._characterJoinerService.getJoinedCharacters(t),p=this._themeService.colors,m=e.getNoBgTrimmedLength();n&&m<a+1&&(m=a+1);let h,g=0,_=``,v=0,y=0,b=0,x=0,S=!1,C=0,w=!1,T=0,E=0,D=[],O=l!==-1&&u!==-1;for(let k=0;k<m;k++){e.loadCell(k,this._workCell);let m=this._workCell.getWidth();if(m===0)continue;let A=!1,j=k>=E,M=k,N=this._workCell;if(f.length>0&&k===f[0][0]&&j){let r=f.shift(),i=this._isCellInSelection(r[0],t);for(v=r[0]+1;v<r[1];v++)j&&=i===this._isCellInSelection(v,t);j&&=!n||a<r[0]||a>=r[1],j?(A=!0,N=new Hs(this._workCell,e.translateToString(!0,r[0],r[1]),r[1]-r[0]),M=r[1]-1,m=N.getWidth()):E=r[1]}let P=this._isCellInSelection(k,t),F=n&&k===a,ee=O&&k>=l&&k<=u,I=!1;this._decorationService.forEachDecorationAtCell(k,t,void 0,e=>{I=!0});let te=N.getChars()||_r;if(te===` `&&(N.isUnderline()||N.isOverline())&&(te=`\xA0`),T=m*s-c.get(te,N.isBold(),N.isItalic()),!h)h=this._document.createElement(`span`);else if(g&&(P&&w||!P&&!w&&N.bg===y)&&(P&&w&&p.selectionForeground||N.fg===b)&&N.extended.ext===x&&ee===S&&T===C&&!F&&!A&&!I&&j){N.isInvisible()?_+=_r:_+=te,g++;continue}else g&&(h.textContent=_),h=this._document.createElement(`span`),g=0,_=``;if(y=N.bg,b=N.fg,x=N.extended.ext,S=ee,C=T,w=P,A&&a>=k&&a<=M&&(a=k),!this._coreService.isCursorHidden&&F&&this._coreService.isCursorInitialized){if(D.push(`xterm-cursor`),this._coreBrowserService.isFocused)o&&D.push(`xterm-cursor-blink`),D.push(r===`bar`?`xterm-cursor-bar`:r===`underline`?`xterm-cursor-underline`:`xterm-cursor-block`);else if(i)switch(i){case`outline`:D.push(`xterm-cursor-outline`);break;case`block`:D.push(`xterm-cursor-block`);break;case`bar`:D.push(`xterm-cursor-bar`);break;case`underline`:D.push(`xterm-cursor-underline`);break;default:break}}if(N.isBold()&&D.push(`xterm-bold`),N.isItalic()&&D.push(`xterm-italic`),N.isDim()&&D.push(`xterm-dim`),_=N.isInvisible()?_r:N.getChars()||_r,N.isUnderline()&&(D.push(`xterm-underline-${N.extended.underlineStyle}`),_===` `&&(_=`\xA0`),!N.isUnderlineColorDefault()))if(N.isUnderlineColorRGB())h.style.textDecorationColor=`rgb(${vr.toColorRGB(N.getUnderlineColor()).join(`,`)})`;else{let e=N.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&N.isBold()&&e<8&&(e+=8),h.style.textDecorationColor=p.ansi[e].css}N.isOverline()&&(D.push(`xterm-overline`),_===` `&&(_=`\xA0`)),N.isStrikethrough()&&D.push(`xterm-strikethrough`),ee&&(h.style.textDecoration=`underline`);let L=N.getFgColor(),R=N.getFgColorMode(),ne=N.getBgColor(),z=N.getBgColorMode(),B=!!N.isInverse();if(B){let e=L;L=ne,ne=e;let t=R;R=z,z=t}let re,ie,ae=!1;this._decorationService.forEachDecorationAtCell(k,t,void 0,e=>{e.options.layer!==`top`&&ae||(e.backgroundColorRGB&&(z=50331648,ne=e.backgroundColorRGB.rgba>>8&16777215,re=e.backgroundColorRGB),e.foregroundColorRGB&&(R=50331648,L=e.foregroundColorRGB.rgba>>8&16777215,ie=e.foregroundColorRGB),ae=e.options.layer===`top`)}),!ae&&P&&(re=this._coreBrowserService.isFocused?p.selectionBackgroundOpaque:p.selectionInactiveBackgroundOpaque,ne=re.rgba>>8&16777215,z=50331648,ae=!0,p.selectionForeground&&(R=50331648,L=p.selectionForeground.rgba>>8&16777215,ie=p.selectionForeground)),ae&&D.push(`xterm-decoration-top`);let V;switch(z){case 16777216:case 33554432:V=p.ansi[ne],D.push(`xterm-bg-${ne}`);break;case 50331648:V=Fs.toColor(ne>>16,ne>>8&255,ne&255),this._addStyle(h,`background-color:#${Xs((ne>>>0).toString(16),`0`,6)}`);break;default:B?(V=p.foreground,D.push(`xterm-bg-257`)):V=p.background}switch(re||N.isDim()&&(re=Is.multiplyOpacity(V,.5)),R){case 16777216:case 33554432:N.isBold()&&L<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&(L+=8),this._applyMinimumContrast(h,V,p.ansi[L],N,re,void 0)||D.push(`xterm-fg-${L}`);break;case 50331648:let e=Fs.toColor(L>>16&255,L>>8&255,L&255);this._applyMinimumContrast(h,V,e,N,re,ie)||this._addStyle(h,`color:#${Xs(L.toString(16),`0`,6)}`);break;default:this._applyMinimumContrast(h,V,p.foreground,N,re,ie)||B&&D.push(`xterm-fg-257`)}D.length&&=(h.className=D.join(` `),0),!F&&!A&&!I&&j?g++:h.textContent=_,T!==this.defaultSpacing&&(h.style.letterSpacing=`${T}px`),d.push(h),k=M}return h&&g&&(h.textContent=_),d}_applyMinimumContrast(e,t,n,r,i,a){if(this._optionsService.rawOptions.minimumContrastRatio===1||Ks(r.getCode()))return!1;let o=this._getContrastCache(r),s;if(!i&&!a&&(s=o.getColor(t.rgba,n.rgba)),s===void 0){let e=this._optionsService.rawOptions.minimumContrastRatio/(r.isDim()?2:1);s=Is.ensureContrastRatio(i||t,a||n,e),o.setColor((i||t).rgba,(a||n).rgba,s??null)}return s?(this._addStyle(e,`color:${s.css}`),!0):!1}_getContrastCache(e){return e.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(e,t){e.setAttribute(`style`,`${e.getAttribute(`style`)||``}${t};`)}_isCellInSelection(e,t){let n=this._selectionStart,r=this._selectionEnd;return!n||!r?!1:this._columnSelectMode?n[0]<=r[0]?e>=n[0]&&t>=n[1]&&e<r[0]&&t<=r[1]:e<n[0]&&t>=n[1]&&e>=r[0]&&t<=r[1]:t>n[1]&&t<r[1]||n[1]===r[1]&&t===n[1]&&e>=n[0]&&e<r[0]||n[1]<r[1]&&t===r[1]&&e<r[0]||n[1]<r[1]&&t===n[1]&&e>=n[0]}};Ys=er([q(1,Ur),q(2,Nr),q(3,Br),q(4,kr),q(5,Ir),q(6,Y)],Ys);function Xs(e,t,n){for(;e.length<n;)e=t+e;return e}var Zs=class{constructor(e,t){this._flat=new Float32Array(256),this._font=``,this._fontSize=0,this._weight=`normal`,this._weightBold=`bold`,this._measureElements=[],this._container=e.createElement(`div`),this._container.classList.add(`xterm-width-cache-measure-container`),this._container.setAttribute(`aria-hidden`,`true`),this._container.style.whiteSpace=`pre`,this._container.style.fontKerning=`none`;let n=e.createElement(`span`);n.classList.add(`xterm-char-measure-element`);let r=e.createElement(`span`);r.classList.add(`xterm-char-measure-element`),r.style.fontWeight=`bold`;let i=e.createElement(`span`);i.classList.add(`xterm-char-measure-element`),i.style.fontStyle=`italic`;let a=e.createElement(`span`);a.classList.add(`xterm-char-measure-element`),a.style.fontWeight=`bold`,a.style.fontStyle=`italic`,this._measureElements=[n,r,i,a],this._container.appendChild(n),this._container.appendChild(r),this._container.appendChild(i),this._container.appendChild(a),t.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(e,t,n,r){e===this._font&&t===this._fontSize&&n===this._weight&&r===this._weightBold||(this._font=e,this._fontSize=t,this._weight=n,this._weightBold=r,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${n}`,this._measureElements[1].style.fontWeight=`${r}`,this._measureElements[2].style.fontWeight=`${n}`,this._measureElements[3].style.fontWeight=`${r}`,this.clear())}get(e,t,n){let r=0;if(!t&&!n&&e.length===1&&(r=e.charCodeAt(0))<256){if(this._flat[r]!==-9999)return this._flat[r];let t=this._measure(e,0);return t>0&&(this._flat[r]=t),t}let i=e;t&&(i+=`B`),n&&(i+=`I`);let a=this._holey.get(i);if(a===void 0){let r=0;t&&(r|=1),n&&(r|=2),a=this._measure(e,r),a>0&&this._holey.set(i,a)}return a}_measure(e,t){let n=this._measureElements[t];return n.textContent=e.repeat(32),n.offsetWidth/32}},Qs=class{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(e,t,n,r=!1){if(this.selectionStart=t,this.selectionEnd=n,!t||!n||t[0]===n[0]&&t[1]===n[1]){this.clear();return}let i=e.buffers.active.ydisp,a=t[1]-i,o=n[1]-i,s=Math.max(a,0),c=Math.min(o,e.rows-1);if(s>=e.rows||c<0){this.clear();return}this.hasSelection=!0,this.columnSelectMode=r,this.viewportStartRow=a,this.viewportEndRow=o,this.viewportCappedStartRow=s,this.viewportCappedEndRow=c,this.startCol=t[0],this.endCol=n[0]}isCellSelected(e,t,n){return this.hasSelection?(n-=e.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?t>=this.startCol&&n>=this.viewportCappedStartRow&&t<this.endCol&&n<=this.viewportCappedEndRow:t<this.startCol&&n>=this.viewportCappedStartRow&&t>=this.endCol&&n<=this.viewportCappedEndRow:n>this.viewportStartRow&&n<this.viewportEndRow||this.viewportStartRow===this.viewportEndRow&&n===this.viewportStartRow&&t>=this.startCol&&t<this.endCol||this.viewportStartRow<this.viewportEndRow&&n===this.viewportEndRow&&t<this.endCol||this.viewportStartRow<this.viewportEndRow&&n===this.viewportStartRow&&t>=this.startCol):!1}};function $s(){return new Qs}var ec=`xterm-dom-renderer-owner-`,tc=`xterm-rows`,nc=`xterm-fg-`,rc=`xterm-bg-`,ic=`xterm-focus`,ac=`xterm-selection`,oc=1,sc=class extends Ci{constructor(e,t,n,r,i,a,o,s,c,l,u,d,f,p){super(),this._terminal=e,this._document=t,this._element=n,this._screenElement=r,this._viewportElement=i,this._helperContainer=a,this._linkifier2=o,this._charSizeService=c,this._optionsService=l,this._bufferService=u,this._coreService=d,this._coreBrowserService=f,this._themeService=p,this._terminalClass=oc++,this._rowElements=[],this._selectionRenderModel=$s(),this.onRequestRedraw=this._register(new Z).event,this._rowContainer=this._document.createElement(`div`),this._rowContainer.classList.add(tc),this._rowContainer.style.lineHeight=`normal`,this._rowContainer.setAttribute(`aria-hidden`,`true`),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=this._document.createElement(`div`),this._selectionContainer.classList.add(ac),this._selectionContainer.setAttribute(`aria-hidden`,`true`),this.dimensions=qs(),this._updateDimensions(),this._register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this._register(this._themeService.onChangeColors(e=>this._injectCss(e))),this._injectCss(this._themeService.colors),this._rowFactory=s.createInstance(Ys,document),this._element.classList.add(ec+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this._register(this._linkifier2.onShowLinkUnderline(e=>this._handleLinkHover(e))),this._register(this._linkifier2.onHideLinkUnderline(e=>this._handleLinkLeave(e))),this._register(bi(()=>{this._element.classList.remove(ec+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()})),this._widthCache=new Zs(this._document,this._helperContainer),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){let e=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*e,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*e),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/e),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/e),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(let e of this._rowElements)e.style.width=`${this.dimensions.css.canvas.width}px`,e.style.height=`${this.dimensions.css.cell.height}px`,e.style.lineHeight=`${this.dimensions.css.cell.height}px`,e.style.overflow=`hidden`;this._dimensionsStyleElement||(this._dimensionsStyleElement=this._document.createElement(`style`),this._screenElement.appendChild(this._dimensionsStyleElement));let t=`${this._terminalSelector} .${tc} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=t,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(e){this._themeStyleElement||(this._themeStyleElement=this._document.createElement(`style`),this._screenElement.appendChild(this._themeStyleElement));let t=`${this._terminalSelector} .${tc} { pointer-events: none; color: ${e.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;t+=`${this._terminalSelector} .${tc} .xterm-dim { color: ${Is.multiplyOpacity(e.foreground,.5).css};}`,t+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`;let n=`blink_underline_${this._terminalClass}`,r=`blink_bar_${this._terminalClass}`,i=`blink_block_${this._terminalClass}`;t+=`@keyframes ${n} { 50% { border-bottom-style: hidden; }}`,t+=`@keyframes ${r} { 50% { box-shadow: none; }}`,t+=`@keyframes ${i} { 0% { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css}; } 50% { background-color: inherit; color: ${e.cursor.css}; }}`,t+=`${this._terminalSelector} .${tc}.${ic} .xterm-cursor.xterm-cursor-blink.xterm-cursor-underline { animation: ${n} 1s step-end infinite;}${this._terminalSelector} .${tc}.${ic} .xterm-cursor.xterm-cursor-blink.xterm-cursor-bar { animation: ${r} 1s step-end infinite;}${this._terminalSelector} .${tc}.${ic} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: ${i} 1s step-end infinite;}${this._terminalSelector} .${tc} .xterm-cursor.xterm-cursor-block { background-color: ${e.cursor.css}; color: ${e.cursorAccent.css};}${this._terminalSelector} .${tc} .xterm-cursor.xterm-cursor-block:not(.xterm-cursor-blink) { background-color: ${e.cursor.css} !important; color: ${e.cursorAccent.css} !important;}${this._terminalSelector} .${tc} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${e.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${tc} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${e.cursor.css} inset;}${this._terminalSelector} .${tc} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${e.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,t+=`${this._terminalSelector} .${ac} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${ac} div { position: absolute; background-color: ${e.selectionBackgroundOpaque.css};}${this._terminalSelector} .${ac} div { position: absolute; background-color: ${e.selectionInactiveBackgroundOpaque.css};}`;for(let[n,r]of e.ansi.entries())t+=`${this._terminalSelector} .${nc}${n} { color: ${r.css}; }${this._terminalSelector} .${nc}${n}.xterm-dim { color: ${Is.multiplyOpacity(r,.5).css}; }${this._terminalSelector} .${rc}${n} { background-color: ${r.css}; }`;t+=`${this._terminalSelector} .${nc}257 { color: ${Is.opaque(e.background).css}; }${this._terminalSelector} .${nc}257.xterm-dim { color: ${Is.multiplyOpacity(Is.opaque(e.background),.5).css}; }${this._terminalSelector} .${rc}257 { background-color: ${e.foreground.css}; }`,this._themeStyleElement.textContent=t}_setDefaultSpacing(){let e=this.dimensions.css.cell.width-this._widthCache.get(`W`,!1,!1);this._rowContainer.style.letterSpacing=`${e}px`,this._rowFactory.defaultSpacing=e}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(e,t){for(let e=this._rowElements.length;e<=t;e++){let e=this._document.createElement(`div`);this._rowContainer.appendChild(e),this._rowElements.push(e)}for(;this._rowElements.length>t;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(e,t){this._refreshRowElements(e,t),this._updateDimensions(),this.handleSelectionChanged(this._selectionRenderModel.selectionStart,this._selectionRenderModel.selectionEnd,this._selectionRenderModel.columnSelectMode)}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(ic),this.renderRows(0,this._bufferService.rows-1)}handleFocus(){this._rowContainer.classList.add(ic),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(e,t,n){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(e,t,n),this.renderRows(0,this._bufferService.rows-1),!e||!t||(this._selectionRenderModel.update(this._terminal,e,t,n),!this._selectionRenderModel.hasSelection))return;let r=this._selectionRenderModel.viewportStartRow,i=this._selectionRenderModel.viewportEndRow,a=this._selectionRenderModel.viewportCappedStartRow,o=this._selectionRenderModel.viewportCappedEndRow,s=this._document.createDocumentFragment();if(n){let n=e[0]>t[0];s.appendChild(this._createSelectionElement(a,n?t[0]:e[0],n?e[0]:t[0],o-a+1))}else{let n=r===a?e[0]:0,c=a===i?t[0]:this._bufferService.cols;s.appendChild(this._createSelectionElement(a,n,c));let l=o-a-1;if(s.appendChild(this._createSelectionElement(a+1,0,this._bufferService.cols,l)),a!==o){let e=i===o?t[0]:this._bufferService.cols;s.appendChild(this._createSelectionElement(o,0,e))}}this._selectionContainer.appendChild(s)}_createSelectionElement(e,t,n,r=1){let i=this._document.createElement(`div`),a=t*this.dimensions.css.cell.width,o=this.dimensions.css.cell.width*(n-t);return a+o>this.dimensions.css.canvas.width&&(o=this.dimensions.css.canvas.width-a),i.style.height=`${r*this.dimensions.css.cell.height}px`,i.style.top=`${e*this.dimensions.css.cell.height}px`,i.style.left=`${a}px`,i.style.width=`${o}px`,i}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(let e of this._rowElements)e.replaceChildren()}renderRows(e,t){let n=this._bufferService.buffer,r=n.ybase+n.y,i=Math.min(n.x,this._bufferService.cols-1),a=this._coreService.decPrivateModes.cursorBlink??this._optionsService.rawOptions.cursorBlink,o=this._coreService.decPrivateModes.cursorStyle??this._optionsService.rawOptions.cursorStyle,s=this._optionsService.rawOptions.cursorInactiveStyle;for(let c=e;c<=t;c++){let e=c+n.ydisp,t=this._rowElements[c],l=n.lines.get(e);if(!t||!l)break;t.replaceChildren(...this._rowFactory.createRow(l,e,e===r,o,s,i,a,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${ec}${this._terminalClass}`}_handleLinkHover(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!0)}_handleLinkLeave(e){this._setCellUnderline(e.x1,e.x2,e.y1,e.y2,e.cols,!1)}_setCellUnderline(e,t,n,r,i,a){n<0&&(e=0),r<0&&(t=0);let o=this._bufferService.rows-1;n=Math.max(Math.min(n,o),0),r=Math.max(Math.min(r,o),0),i=Math.min(i,this._bufferService.cols);let s=this._bufferService.buffer,c=s.ybase+s.y,l=Math.min(s.x,i-1),u=this._optionsService.rawOptions.cursorBlink,d=this._optionsService.rawOptions.cursorStyle,f=this._optionsService.rawOptions.cursorInactiveStyle;for(let o=n;o<=r;++o){let p=o+s.ydisp,m=this._rowElements[o],h=s.lines.get(p);if(!m||!h)break;m.replaceChildren(...this._rowFactory.createRow(h,p,p===c,d,f,l,u,this.dimensions.css.cell.width,this._widthCache,a?o===n?e:0:-1,a?(o===r?t:i)-1:-1))}}};sc=er([q(7,jr),q(8,zr),q(9,Nr),q(10,Dr),q(11,kr),q(12,Br),q(13,Y)],sc);var cc=class extends Ci{constructor(e,t,n){super(),this._optionsService=n,this.width=0,this.height=0,this._onCharSizeChange=this._register(new Z),this.onCharSizeChange=this._onCharSizeChange.event;try{this._measureStrategy=this._register(new dc(this._optionsService))}catch{this._measureStrategy=this._register(new uc(e,t,this._optionsService))}this._register(this._optionsService.onMultipleOptionChange([`fontFamily`,`fontSize`],()=>this.measure()))}get hasValidSize(){return this.width>0&&this.height>0}measure(){let e=this._measureStrategy.measure();(e.width!==this.width||e.height!==this.height)&&(this.width=e.width,this.height=e.height,this._onCharSizeChange.fire())}};cc=er([q(2,Nr)],cc);var lc=class extends Ci{constructor(){super(...arguments),this._result={width:0,height:0}}_validateAndSet(e,t){e!==void 0&&e>0&&t!==void 0&&t>0&&(this._result.width=e,this._result.height=t)}},uc=class extends lc{constructor(e,t,n){super(),this._document=e,this._parentElement=t,this._optionsService=n,this._measureElement=this._document.createElement(`span`),this._measureElement.classList.add(`xterm-char-measure-element`),this._measureElement.textContent=`W`.repeat(32),this._measureElement.setAttribute(`aria-hidden`,`true`),this._measureElement.style.whiteSpace=`pre`,this._measureElement.style.fontKerning=`none`,this._parentElement.appendChild(this._measureElement)}measure(){return this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`,this._validateAndSet(Number(this._measureElement.offsetWidth)/32,Number(this._measureElement.offsetHeight)),this._result}},dc=class extends lc{constructor(e){super(),this._optionsService=e,this._canvas=new OffscreenCanvas(100,100),this._ctx=this._canvas.getContext(`2d`);let t=this._ctx.measureText(`W`);if(!(`width`in t&&`fontBoundingBoxAscent`in t&&`fontBoundingBoxDescent`in t))throw Error(`Required font metrics not supported`)}measure(){this._ctx.font=`${this._optionsService.rawOptions.fontSize}px ${this._optionsService.rawOptions.fontFamily}`;let e=this._ctx.measureText(`W`);return this._validateAndSet(e.width,e.fontBoundingBoxAscent+e.fontBoundingBoxDescent),this._result}},fc=class extends Ci{constructor(e,t,n){super(),this._textarea=e,this._window=t,this.mainDocument=n,this._isFocused=!1,this._cachedIsFocused=void 0,this._screenDprMonitor=this._register(new pc(this._window)),this._onDprChange=this._register(new Z),this.onDprChange=this._onDprChange.event,this._onWindowChange=this._register(new Z),this.onWindowChange=this._onWindowChange.event,this._register(this.onWindowChange(e=>this._screenDprMonitor.setWindow(e))),this._register(Pi.forward(this._screenDprMonitor.onDprChange,this._onDprChange)),this._register(Do(this._textarea,`focus`,()=>this._isFocused=!0)),this._register(Do(this._textarea,`blur`,()=>this._isFocused=!1))}get window(){return this._window}set window(e){this._window!==e&&(this._window=e,this._onWindowChange.fire(this._window))}get dpr(){return this.window.devicePixelRatio}get isFocused(){return this._cachedIsFocused===void 0&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask(()=>this._cachedIsFocused=void 0)),this._cachedIsFocused}},pc=class extends Ci{constructor(e){super(),this._parentWindow=e,this._windowResizeListener=this._register(new wi),this._onDprChange=this._register(new Z),this.onDprChange=this._onDprChange.event,this._outerListener=()=>this._setDprAndFireIfDiffers(),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._updateDpr(),this._setWindowResizeListener(),this._register(bi(()=>this.clearListener()))}setWindow(e){this._parentWindow=e,this._setWindowResizeListener(),this._setDprAndFireIfDiffers()}_setWindowResizeListener(){this._windowResizeListener.value=Do(this._parentWindow,`resize`,()=>this._setDprAndFireIfDiffers())}_setDprAndFireIfDiffers(){this._parentWindow.devicePixelRatio!==this._currentDevicePixelRatio&&this._onDprChange.fire(this._parentWindow.devicePixelRatio),this._updateDpr()}_updateDpr(){this._outerListener&&(this._resolutionMediaMatchList?.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){!this._resolutionMediaMatchList||!this._outerListener||(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._outerListener=void 0)}},mc=class extends Ci{constructor(){super(),this.linkProviders=[],this._register(bi(()=>this.linkProviders.length=0))}registerLinkProvider(e){return this.linkProviders.push(e),{dispose:()=>{let t=this.linkProviders.indexOf(e);t!==-1&&this.linkProviders.splice(t,1)}}}};function hc(e,t,n){let r=n.getBoundingClientRect(),i=e.getComputedStyle(n),a=parseInt(i.getPropertyValue(`padding-left`)),o=parseInt(i.getPropertyValue(`padding-top`));return[t.clientX-r.left-a,t.clientY-r.top-o]}function gc(e,t,n,r,i,a,o,s,c){if(!a)return;let l=hc(e,t,n);if(l)return l[0]=Math.ceil((l[0]+(c?o/2:0))/o),l[1]=Math.ceil(l[1]/s),l[0]=Math.min(Math.max(l[0],1),r+ +!!c),l[1]=Math.min(Math.max(l[1],1),i),l}var _c=class{constructor(e,t){this._renderService=e,this._charSizeService=t}getCoords(e,t,n,r,i){return gc(window,e,t,n,r,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,i)}getMouseReportCoords(e,t){let n=hc(window,e,t);if(this._charSizeService.hasValidSize)return n[0]=Math.min(Math.max(n[0],0),this._renderService.dimensions.css.canvas.width-1),n[1]=Math.min(Math.max(n[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(n[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(n[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(n[0]),y:Math.floor(n[1])}}};_c=er([q(0,J),q(1,zr)],_c);var vc=class{constructor(e,t){this._renderCallback=e,this._coreBrowserService=t,this._refreshCallbacks=[]}dispose(){this._animationFrame&&=(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),void 0)}addRefreshCallback(e){return this._refreshCallbacks.push(e),this._animationFrame||=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()),this._animationFrame}refresh(e,t,n){this._rowCount=n,e=e===void 0?0:e,t=t===void 0?this._rowCount-1:t,this._rowStart=this._rowStart===void 0?e:Math.min(this._rowStart,e),this._rowEnd=this._rowEnd===void 0?t:Math.max(this._rowEnd,t),!this._animationFrame&&(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._innerRefresh()))}_innerRefresh(){if(this._animationFrame=void 0,this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0){this._runRefreshCallbacks();return}let e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(let e of this._refreshCallbacks)e(0);this._refreshCallbacks=[]}},yc={};$n(yc,{getSafariVersion:()=>Ec,isChromeOS:()=>Mc,isFirefox:()=>Cc,isIpad:()=>Oc,isIphone:()=>kc,isLegacyEdge:()=>wc,isLinux:()=>jc,isMac:()=>Dc,isNode:()=>bc,isSafari:()=>Tc,isWindows:()=>Ac});var bc=typeof process<`u`&&`title`in process,xc=bc?`node`:navigator.userAgent,Sc=bc?`node`:navigator.platform,Cc=xc.includes(`Firefox`),wc=xc.includes(`Edge`),Tc=/^((?!chrome|android).)*safari/i.test(xc);function Ec(){if(!Tc)return 0;let e=xc.match(/Version\/(\d+)/);return e===null||e.length<2?0:parseInt(e[1])}var Dc=[`Macintosh`,`MacIntel`,`MacPPC`,`Mac68K`].includes(Sc),Oc=Sc===`iPad`,kc=Sc===`iPhone`,Ac=[`Windows`,`Win16`,`Win32`,`WinCE`].includes(Sc),jc=Sc.indexOf(`Linux`)>=0,Mc=/\bCrOS\b/.test(xc),Nc=class{constructor(){this._tasks=[],this._i=0}enqueue(e){this._tasks.push(e),this._start()}flush(){for(;this._i<this._tasks.length;)this._tasks[this._i]()||this._i++;this.clear()}clear(){this._idleCallback&&=(this._cancelCallback(this._idleCallback),void 0),this._i=0,this._tasks.length=0}_start(){this._idleCallback||=this._requestCallback(this._process.bind(this))}_process(e){this._idleCallback=void 0;let t=0,n=0,r=e.timeRemaining(),i=0;for(;this._i<this._tasks.length;){if(t=performance.now(),this._tasks[this._i]()||this._i++,t=Math.max(1,performance.now()-t),n=Math.max(t,n),i=e.timeRemaining(),n*1.5>i){r-t<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(r-t))}ms`),this._start();return}r=i}this.clear()}},Pc=class extends Nc{_requestCallback(e){return setTimeout(()=>e(this._createDeadline(16)))}_cancelCallback(e){clearTimeout(e)}_createDeadline(e){let t=performance.now()+e;return{timeRemaining:()=>Math.max(0,t-performance.now())}}},Fc=class extends Nc{_requestCallback(e){return requestIdleCallback(e)}_cancelCallback(e){cancelIdleCallback(e)}},Ic=!bc&&`requestIdleCallback`in window?Fc:Pc,Lc=class{constructor(){this._queue=new Ic}set(e){this._queue.clear(),this._queue.enqueue(e)}flush(){this._queue.flush()}},Rc=class extends Ci{constructor(e,t,n,r,i,a,o,s,c){super(),this._rowCount=e,this._optionsService=n,this._charSizeService=r,this._coreService=i,this._coreBrowserService=s,this._renderer=this._register(new wi),this._pausedResizeTask=new Lc,this._observerDisposable=this._register(new wi),this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this._register(new Z),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this._register(new Z),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this._register(new Z),this.onRender=this._onRender.event,this._onRefreshRequest=this._register(new Z),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new vc((e,t)=>this._renderRows(e,t),this._coreBrowserService),this._register(this._renderDebouncer),this._syncOutputHandler=new zc(this._coreBrowserService,this._coreService,()=>this._fullRefresh()),this._register(bi(()=>this._syncOutputHandler.dispose())),this._register(this._coreBrowserService.onDprChange(()=>this.handleDevicePixelRatioChange())),this._register(o.onResize(()=>this._fullRefresh())),this._register(o.buffers.onBufferActivate(()=>this._renderer.value?.clear())),this._register(this._optionsService.onOptionChange(()=>this._handleOptionsChanged())),this._register(this._charSizeService.onCharSizeChange(()=>this.handleCharSizeChanged())),this._register(a.onDecorationRegistered(()=>this._fullRefresh())),this._register(a.onDecorationRemoved(()=>this._fullRefresh())),this._register(this._optionsService.onMultipleOptionChange([`customGlyphs`,`drawBoldTextInBrightColors`,`letterSpacing`,`lineHeight`,`fontFamily`,`fontSize`,`fontWeight`,`fontWeightBold`,`minimumContrastRatio`,`rescaleOverlappingGlyphs`],()=>{this.clear(),this.handleResize(o.cols,o.rows),this._fullRefresh()})),this._register(this._optionsService.onMultipleOptionChange([`cursorBlink`,`cursorStyle`],()=>this.refreshRows(o.buffer.y,o.buffer.y,!0))),this._register(c.onChangeColors(()=>this._fullRefresh())),this._registerIntersectionObserver(this._coreBrowserService.window,t),this._register(this._coreBrowserService.onWindowChange(e=>this._registerIntersectionObserver(e,t)))}get dimensions(){return this._renderer.value.dimensions}_registerIntersectionObserver(e,t){if(`IntersectionObserver`in e){let n=new e.IntersectionObserver(e=>this._handleIntersectionChange(e[e.length-1]),{threshold:0});n.observe(t),this._observerDisposable.value=bi(()=>n.disconnect())}}_handleIntersectionChange(e){this._isPaused=e.isIntersecting===void 0?e.intersectionRatio===0:!e.isIntersecting,!this._isPaused&&!this._charSizeService.hasValidSize&&this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(e,t,n=!1){if(this._isPaused){this._needsFullRefresh=!0;return}if(this._coreService.decPrivateModes.synchronizedOutput){this._syncOutputHandler.bufferRows(e,t);return}let r=this._syncOutputHandler.flush();r&&(e=Math.min(e,r.start),t=Math.max(t,r.end)),n||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(e,t,this._rowCount)}_renderRows(e,t){if(this._renderer.value){if(this._coreService.decPrivateModes.synchronizedOutput){this._syncOutputHandler.bufferRows(e,t);return}e=Math.min(e,this._rowCount-1),t=Math.min(t,this._rowCount-1),this._renderer.value.renderRows(e,t),this._needsSelectionRefresh&&=(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:e,end:t}),this._onRender.fire({start:e,end:t}),this._isNextRenderRedrawOnly=!0}}resize(e,t){this._rowCount=t,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(e){this._renderer.value=e,this._renderer.value&&(this._renderer.value.onRequestRedraw(e=>this.refreshRows(e.start,e.end,!0)),this._needsSelectionRefresh=!0,this._fullRefresh())}addRefreshCallback(e){return this._renderDebouncer.addRefreshCallback(e)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){this._renderer.value&&(this._renderer.value.clearTextureAtlas?.(),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(e,t){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set(()=>this._renderer.value?.handleResize(e,t)):this._renderer.value.handleResize(e,t),this._fullRefresh())}handleCharSizeChanged(){this._renderer.value?.handleCharSizeChanged()}handleBlur(){this._renderer.value?.handleBlur()}handleFocus(){this._renderer.value?.handleFocus()}handleSelectionChanged(e,t,n){this._selectionState.start=e,this._selectionState.end=t,this._selectionState.columnSelectMode=n,this._renderer.value?.handleSelectionChanged(e,t,n)}handleCursorMove(){this._renderer.value?.handleCursorMove()}clear(){this._renderer.value?.clear()}};Rc=er([q(2,Nr),q(3,zr),q(4,kr),q(5,Ir),q(6,Dr),q(7,Br),q(8,Y)],Rc);var zc=class{constructor(e,t,n){this._coreBrowserService=e,this._coreService=t,this._onTimeout=n,this._start=0,this._end=0,this._isBuffering=!1}bufferRows(e,t){this._isBuffering?(this._start=Math.min(this._start,e),this._end=Math.max(this._end,t)):(this._start=e,this._end=t,this._isBuffering=!0),this._timeout===void 0&&(this._timeout=this._coreBrowserService.window.setTimeout(()=>{this._timeout=void 0,this._coreService.decPrivateModes.synchronizedOutput=!1,this._onTimeout()},1e3))}flush(){if(this._timeout!==void 0&&(this._coreBrowserService.window.clearTimeout(this._timeout),this._timeout=void 0),!this._isBuffering)return;let e={start:this._start,end:this._end};return this._isBuffering=!1,e}dispose(){this._timeout!==void 0&&(this._coreBrowserService.window.clearTimeout(this._timeout),this._timeout=void 0)}};function Bc(e,t,n,r){let i=n.buffer.x,a=n.buffer.y;if(!n.buffer.hasScrollback)return Uc(i,a,e,t,n,r)+Wc(a,t,n,r)+Gc(i,a,e,t,n,r);let o;if(a===t)return o=i>e?`D`:`C`,Qc(Math.abs(i-e),Zc(o,r));o=a>t?`D`:`C`;let s=Math.abs(a-t);return Qc(Hc(a>t?e:i,n)+(s-1)*n.cols+1+Vc(a>t?i:e,n),Zc(o,r))}function Vc(e,t){return e-1}function Hc(e,t){return t.cols-e}function Uc(e,t,n,r,i,a){return Wc(t,r,i,a).length===0?``:Qc(Xc(e,t,e,t-qc(t,i),!1,i).length,Zc(`D`,a))}function Wc(e,t,n,r){let i=e-qc(e,n),a=t-qc(t,n);return Qc(Math.abs(i-a)-Kc(e,t,n),Zc(Yc(e,t),r))}function Gc(e,t,n,r,i,a){let o;o=Wc(t,r,i,a).length>0?r-qc(r,i):t;let s=r,c=Jc(e,t,n,r,i,a);return Qc(Xc(e,o,n,s,c===`C`,i).length,Zc(c,a))}function Kc(e,t,n){let r=0,i=e-qc(e,n),a=t-qc(t,n);for(let o=0;o<Math.abs(i-a);o++){let a=Yc(e,t)===`A`?-1:1;n.buffer.lines.get(i+a*o)?.isWrapped&&r++}return r}function qc(e,t){let n=0,r=t.buffer.lines.get(e),i=r?.isWrapped;for(;i&&e>=0&&e<t.rows;)n++,r=t.buffer.lines.get(--e),i=r?.isWrapped;return n}function Jc(e,t,n,r,i,a){let o;return o=Wc(n,r,i,a).length>0?r-qc(r,i):t,e<n&&o<=r||e>=n&&o<r?`C`:`D`}function Yc(e,t){return e>t?`A`:`B`}function Xc(e,t,n,r,i,a){let o=e,s=t,c=``;for(;(o!==n||s!==r)&&s>=0&&s<a.buffer.lines.length;)o+=i?1:-1,i&&o>a.cols-1?(c+=a.buffer.translateBufferLineToString(s,!1,e,o),o=0,e=0,s++):!i&&o<0&&(c+=a.buffer.translateBufferLineToString(s,!1,0,e+1),o=a.cols-1,e=o,s--);return c+a.buffer.translateBufferLineToString(s,!1,e,o)}function Zc(e,t){let n=t?`O`:`[`;return Q.ESC+n+e}function Qc(e,t){e=Math.floor(e);let n=``;for(let r=0;r<e;r++)n+=t;return n}var $c=class{constructor(e){this._bufferService=e,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:!this.selectionEnd||!this.selectionStart?this.selectionStart:this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){let e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?e%this._bufferService.cols===0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)-1]:[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[e,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){let e=this.selectionStart[0]+this.selectionStartLength;return e>this._bufferService.cols?[e%this._bufferService.cols,this.selectionStart[1]+Math.floor(e/this._bufferService.cols)]:[Math.max(e,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){let e=this.selectionStart,t=this.selectionEnd;return!e||!t?!1:e[1]>t[1]||e[1]===t[1]&&e[0]>t[0]}handleTrim(e){return this.selectionStart&&(this.selectionStart[1]-=e),this.selectionEnd&&(this.selectionEnd[1]-=e),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}};function el(e,t){if(e.start.y>e.end.y)throw Error(`Buffer range end (${e.end.x}, ${e.end.y}) cannot be before start (${e.start.x}, ${e.start.y})`);return t*(e.end.y-e.start.y)+(e.end.x-e.start.x+1)}var tl=50,nl=15,rl=50,il=500,al=RegExp(`\xA0`,`g`),ol=class extends Ci{constructor(e,t,n,r,i,a,o,s,c){super(),this._element=e,this._screenElement=t,this._linkifier=n,this._bufferService=r,this._coreService=i,this._mouseService=a,this._optionsService=o,this._renderService=s,this._coreBrowserService=c,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new br,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this._register(new Z),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this._register(new Z),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this._register(new Z),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this._register(new Z),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=e=>this._handleMouseMove(e),this._mouseUpListener=e=>this._handleMouseUp(e),this._coreService.onUserInput(()=>{this.hasSelection&&this.clearSelection()}),this._trimListener=this._bufferService.buffer.lines.onTrim(e=>this._handleTrim(e)),this._register(this._bufferService.buffers.onBufferActivate(e=>this._handleBufferActivate(e))),this.enable(),this._model=new $c(this._bufferService),this._activeSelectionMode=0,this._register(bi(()=>{this._removeMouseDownListeners()})),this._register(this._bufferService.onResize(e=>{e.rowsChanged&&this.clearSelection()}))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){let e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;return!e||!t?!1:e[0]!==t[0]||e[1]!==t[1]}get selectionText(){let e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd;if(!e||!t)return``;let n=this._bufferService.buffer,r=[];if(this._activeSelectionMode===3){if(e[0]===t[0])return``;let i=e[0]<t[0]?e[0]:t[0],a=e[0]<t[0]?t[0]:e[0];for(let o=e[1];o<=t[1];o++){let e=n.translateBufferLineToString(o,!0,i,a);r.push(e)}}else{let i=e[1]===t[1]?t[0]:void 0;r.push(n.translateBufferLineToString(e[1],!0,e[0],i));for(let i=e[1]+1;i<=t[1]-1;i++){let e=n.lines.get(i),t=n.translateBufferLineToString(i,!0);e?.isWrapped?r[r.length-1]+=t:r.push(t)}if(e[1]!==t[1]){let e=n.lines.get(t[1]),i=n.translateBufferLineToString(t[1],!0,0,t[0]);e&&e.isWrapped?r[r.length-1]+=i:r.push(i)}}return r.map(e=>e.replace(al,` `)).join(Ac?`\r
36
+ `:`
37
+ `)}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(e){this._refreshAnimationFrame||=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh()),jc&&e&&this.selectionText.length&&this._onLinuxMouseSelection.fire(this.selectionText)}_refresh(){this._refreshAnimationFrame=void 0,this._onRedrawRequest.fire({start:this._model.finalSelectionStart,end:this._model.finalSelectionEnd,columnSelectMode:this._activeSelectionMode===3})}_isClickInSelection(e){let t=this._getMouseBufferCoords(e),n=this._model.finalSelectionStart,r=this._model.finalSelectionEnd;return!n||!r||!t?!1:this._areCoordsInSelection(t,n,r)}isCellInSelection(e,t){let n=this._model.finalSelectionStart,r=this._model.finalSelectionEnd;return!n||!r?!1:this._areCoordsInSelection([e,t],n,r)}_areCoordsInSelection(e,t,n){return e[1]>t[1]&&e[1]<n[1]||t[1]===n[1]&&e[1]===t[1]&&e[0]>=t[0]&&e[0]<n[0]||t[1]<n[1]&&e[1]===n[1]&&e[0]<n[0]||t[1]<n[1]&&e[1]===t[1]&&e[0]>=t[0]}_selectWordAtCursor(e,t){let n=this._linkifier.currentLink?.link?.range;if(n)return this._model.selectionStart=[n.start.x-1,n.start.y-1],this._model.selectionStartLength=el(n,this._bufferService.cols),this._model.selectionEnd=void 0,!0;let r=this._getMouseBufferCoords(e);return r?(this._selectWordAt(r,t),this._model.selectionEnd=void 0,!0):!1}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(e,t){this._model.clearSelection(),e=Math.max(e,0),t=Math.min(t,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,e],this._model.selectionEnd=[this._bufferService.cols,t],this.refresh(),this._onSelectionChange.fire()}_handleTrim(e){this._model.handleTrim(e)&&this.refresh()}_getMouseBufferCoords(e){let t=this._mouseService.getCoords(e,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(t)return t[0]--,t[1]--,t[1]+=this._bufferService.buffer.ydisp,t}_getMouseEventScrollAmount(e){let t=hc(this._coreBrowserService.window,e,this._screenElement)[1],n=this._renderService.dimensions.css.canvas.height;return t>=0&&t<=n?0:(t>n&&(t-=n),t=Math.min(Math.max(t,-tl),tl),t/=tl,t/Math.abs(t)+Math.round(t*(nl-1)))}shouldForceSelection(e){return Dc?e.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:e.shiftKey}handleMouseDown(e){if(this._mouseDownTimeStamp=e.timeStamp,!(e.button===2&&this.hasSelection)&&e.button===0){if(!this._enabled){if(!this.shouldForceSelection(e))return;e.stopPropagation()}e.preventDefault(),this._dragScrollAmount=0,this._enabled&&e.shiftKey?this._handleIncrementalClick(e):e.detail===1?this._handleSingleClick(e):e.detail===2?this._handleDoubleClick(e):e.detail===3&&this._handleTripleClick(e),this._addMouseDownListeners(),this.refresh(!0)}}_addMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.addEventListener(`mousemove`,this._mouseMoveListener),this._screenElement.ownerDocument.addEventListener(`mouseup`,this._mouseUpListener)),this._dragScrollIntervalTimer=this._coreBrowserService.window.setInterval(()=>this._dragScroll(),rl)}_removeMouseDownListeners(){this._screenElement.ownerDocument&&(this._screenElement.ownerDocument.removeEventListener(`mousemove`,this._mouseMoveListener),this._screenElement.ownerDocument.removeEventListener(`mouseup`,this._mouseUpListener)),this._coreBrowserService.window.clearInterval(this._dragScrollIntervalTimer),this._dragScrollIntervalTimer=void 0}_handleIncrementalClick(e){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(e))}_handleSingleClick(e){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(e)?3:0,this._model.selectionStart=this._getMouseBufferCoords(e),!this._model.selectionStart)return;this._model.selectionEnd=void 0;let t=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);t&&t.length!==this._model.selectionStart[0]&&t.hasWidth(this._model.selectionStart[0])===0&&this._model.selectionStart[0]++}_handleDoubleClick(e){this._selectWordAtCursor(e,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(e){let t=this._getMouseBufferCoords(e);t&&(this._activeSelectionMode=2,this._selectLineAt(t[1]))}shouldColumnSelect(e){return e.altKey&&!(Dc&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(e){if(e.stopImmediatePropagation(),!this._model.selectionStart)return;let t=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(e),!this._model.selectionEnd){this.refresh(!0);return}this._activeSelectionMode===2?this._model.selectionEnd[1]<this._model.selectionStart[1]?this._model.selectionEnd[0]=0:this._model.selectionEnd[0]=this._bufferService.cols:this._activeSelectionMode===1&&this._selectToWordAt(this._model.selectionEnd),this._dragScrollAmount=this._getMouseEventScrollAmount(e),this._activeSelectionMode!==3&&(this._dragScrollAmount>0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));let n=this._bufferService.buffer;if(this._model.selectionEnd[1]<n.lines.length){let e=n.lines.get(this._model.selectionEnd[1]);e&&e.hasWidth(this._model.selectionEnd[0])===0&&this._model.selectionEnd[0]<this._bufferService.cols&&this._model.selectionEnd[0]++}(!t||t[0]!==this._model.selectionEnd[0]||t[1]!==this._model.selectionEnd[1])&&this.refresh(!0)}_dragScroll(){if(!(!this._model.selectionEnd||!this._model.selectionStart)&&this._dragScrollAmount){this._onRequestScrollLines.fire({amount:this._dragScrollAmount,suppressScrollEvent:!1});let e=this._bufferService.buffer;this._dragScrollAmount>0?(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(e.ydisp+this._bufferService.rows,e.lines.length-1)):(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=e.ydisp),this.refresh()}}_handleMouseUp(e){let t=e.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&t<il&&e.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){let t=this._mouseService.getCoords(e,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(t&&t[0]!==void 0&&t[1]!==void 0){let e=Bc(t[0]-1,t[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(e,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){let e=this._model.finalSelectionStart,t=this._model.finalSelectionEnd,n=!!e&&!!t&&(e[0]!==t[0]||e[1]!==t[1]);if(!n){this._oldHasSelection&&this._fireOnSelectionChange(e,t,n);return}!e||!t||(!this._oldSelectionStart||!this._oldSelectionEnd||e[0]!==this._oldSelectionStart[0]||e[1]!==this._oldSelectionStart[1]||t[0]!==this._oldSelectionEnd[0]||t[1]!==this._oldSelectionEnd[1])&&this._fireOnSelectionChange(e,t,n)}_fireOnSelectionChange(e,t,n){this._oldSelectionStart=e,this._oldSelectionEnd=t,this._oldHasSelection=n,this._onSelectionChange.fire()}_handleBufferActivate(e){this.clearSelection(),this._trimListener.dispose(),this._trimListener=e.activeBuffer.lines.onTrim(e=>this._handleTrim(e))}_convertViewportColToCharacterIndex(e,t){let n=t;for(let r=0;t>=r;r++){let i=e.loadCell(r,this._workCell).getChars().length;this._workCell.getWidth()===0?n--:i>1&&t!==r&&(n+=i-1)}return n}setSelection(e,t,n){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[e,t],this._model.selectionStartLength=n,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(e){this._isClickInSelection(e)||(this._selectWordAtCursor(e,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(e,t,n=!0,r=!0){if(e[0]>=this._bufferService.cols)return;let i=this._bufferService.buffer,a=i.lines.get(e[1]);if(!a)return;let o=i.translateBufferLineToString(e[1],!1),s=this._convertViewportColToCharacterIndex(a,e[0]),c=s,l=e[0]-s,u=0,d=0,f=0,p=0;if(o.charAt(s)===` `){for(;s>0&&o.charAt(s-1)===` `;)s--;for(;c<o.length&&o.charAt(c+1)===` `;)c++}else{let t=e[0],n=e[0];a.getWidth(t)===0&&(u++,t--),a.getWidth(n)===2&&(d++,n++);let r=a.getString(n).length;for(r>1&&(p+=r-1,c+=r-1);t>0&&s>0&&!this._isCharWordSeparator(a.loadCell(t-1,this._workCell));){a.loadCell(t-1,this._workCell);let e=this._workCell.getChars().length;this._workCell.getWidth()===0?(u++,t--):e>1&&(f+=e-1,s-=e-1),s--,t--}for(;n<a.length&&c+1<o.length&&!this._isCharWordSeparator(a.loadCell(n+1,this._workCell));){a.loadCell(n+1,this._workCell);let e=this._workCell.getChars().length;this._workCell.getWidth()===2?(d++,n++):e>1&&(p+=e-1,c+=e-1),c++,n++}}c++;let m=s+l-u+f,h=Math.min(this._bufferService.cols,c-s+u+d-f-p);if(!(!t&&o.slice(s,c).trim()===``)){if(n&&m===0&&a.getCodePoint(0)!==32){let t=i.lines.get(e[1]-1);if(t&&a.isWrapped&&t.getCodePoint(this._bufferService.cols-1)!==32){let t=this._getWordAt([this._bufferService.cols-1,e[1]-1],!1,!0,!1);if(t){let e=this._bufferService.cols-t.start;m-=e,h+=e}}}if(r&&m+h===this._bufferService.cols&&a.getCodePoint(this._bufferService.cols-1)!==32){let t=i.lines.get(e[1]+1);if(t?.isWrapped&&t.getCodePoint(0)!==32){let t=this._getWordAt([0,e[1]+1],!1,!1,!0);t&&(h+=t.length)}}return{start:m,length:h}}}_selectWordAt(e,t){let n=this._getWordAt(e,t);if(n){for(;n.start<0;)n.start+=this._bufferService.cols,e[1]--;this._model.selectionStart=[n.start,e[1]],this._model.selectionStartLength=n.length}}_selectToWordAt(e){let t=this._getWordAt(e,!0);if(t){let n=e[1];for(;t.start<0;)t.start+=this._bufferService.cols,n--;if(!this._model.areSelectionValuesReversed())for(;t.start+t.length>this._bufferService.cols;)t.length-=this._bufferService.cols,n++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?t.start:t.start+t.length,n]}}_isCharWordSeparator(e){return e.getWidth()===0?!1:this._optionsService.rawOptions.wordSeparator.indexOf(e.getChars())>=0}_selectLineAt(e){let t=this._bufferService.buffer.getWrappedRangeForLine(e),n={start:{x:0,y:t.first},end:{x:this._bufferService.cols-1,y:t.last}};this._model.selectionStart=[0,t.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=el(n,this._bufferService.cols)}};ol=er([q(3,Dr),q(4,kr),q(5,Vr),q(6,Nr),q(7,J),q(8,Br)],ol);var sl=class{constructor(){this._data={}}set(e,t,n){this._data[e]||(this._data[e]={}),this._data[e][t]=n}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}},cl=class{constructor(){this._color=new sl,this._css=new sl}setCss(e,t,n){this._css.set(e,t,n)}getCss(e,t){return this._css.get(e,t)}setColor(e,t,n){this._color.set(e,t,n)}getColor(e,t){return this._color.get(e,t)}clear(){this._color.clear(),this._css.clear()}},ll=Object.freeze((()=>{let e=[Ls.toColor(`#2e3436`),Ls.toColor(`#cc0000`),Ls.toColor(`#4e9a06`),Ls.toColor(`#c4a000`),Ls.toColor(`#3465a4`),Ls.toColor(`#75507b`),Ls.toColor(`#06989a`),Ls.toColor(`#d3d7cf`),Ls.toColor(`#555753`),Ls.toColor(`#ef2929`),Ls.toColor(`#8ae234`),Ls.toColor(`#fce94f`),Ls.toColor(`#729fcf`),Ls.toColor(`#ad7fa8`),Ls.toColor(`#34e2e2`),Ls.toColor(`#eeeeec`)],t=[0,95,135,175,215,255];for(let n=0;n<216;n++){let r=t[n/36%6|0],i=t[n/6%6|0],a=t[n%6];e.push({css:Fs.toCss(r,i,a),rgba:Fs.toRgba(r,i,a)})}for(let t=0;t<24;t++){let n=8+t*10;e.push({css:Fs.toCss(n,n,n),rgba:Fs.toRgba(n,n,n)})}return e})()),ul=Ls.toColor(`#ffffff`),dl=Ls.toColor(`#000000`),fl=Ls.toColor(`#ffffff`),pl=dl,ml={css:`rgba(255, 255, 255, 0.3)`,rgba:4294967117},hl=ul,gl=class extends Ci{constructor(e){super(),this._optionsService=e,this._contrastCache=new cl,this._halfContrastCache=new cl,this._onChangeColors=this._register(new Z),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:ul,background:dl,cursor:fl,cursorAccent:pl,selectionForeground:void 0,selectionBackgroundTransparent:ml,selectionBackgroundOpaque:Is.blend(dl,ml),selectionInactiveBackgroundTransparent:ml,selectionInactiveBackgroundOpaque:Is.blend(dl,ml),scrollbarSliderBackground:Is.opacity(ul,.2),scrollbarSliderHoverBackground:Is.opacity(ul,.4),scrollbarSliderActiveBackground:Is.opacity(ul,.5),overviewRulerBorder:ul,ansi:ll.slice(),contrastCache:this._contrastCache,halfContrastCache:this._halfContrastCache},this._updateRestoreColors(),this._setTheme(this._optionsService.rawOptions.theme),this._register(this._optionsService.onSpecificOptionChange(`minimumContrastRatio`,()=>this._contrastCache.clear())),this._register(this._optionsService.onSpecificOptionChange(`theme`,()=>this._setTheme(this._optionsService.rawOptions.theme)))}get colors(){return this._colors}_setTheme(e={}){let t=this._colors;if(t.foreground=_l(e.foreground,ul),t.background=_l(e.background,dl),t.cursor=Is.blend(t.background,_l(e.cursor,fl)),t.cursorAccent=Is.blend(t.background,_l(e.cursorAccent,pl)),t.selectionBackgroundTransparent=_l(e.selectionBackground,ml),t.selectionBackgroundOpaque=Is.blend(t.background,t.selectionBackgroundTransparent),t.selectionInactiveBackgroundTransparent=_l(e.selectionInactiveBackground,t.selectionBackgroundTransparent),t.selectionInactiveBackgroundOpaque=Is.blend(t.background,t.selectionInactiveBackgroundTransparent),t.selectionForeground=e.selectionForeground?_l(e.selectionForeground,Ps):void 0,t.selectionForeground===Ps&&(t.selectionForeground=void 0),Is.isOpaque(t.selectionBackgroundTransparent)&&(t.selectionBackgroundTransparent=Is.opacity(t.selectionBackgroundTransparent,.3)),Is.isOpaque(t.selectionInactiveBackgroundTransparent)&&(t.selectionInactiveBackgroundTransparent=Is.opacity(t.selectionInactiveBackgroundTransparent,.3)),t.scrollbarSliderBackground=_l(e.scrollbarSliderBackground,Is.opacity(t.foreground,.2)),t.scrollbarSliderHoverBackground=_l(e.scrollbarSliderHoverBackground,Is.opacity(t.foreground,.4)),t.scrollbarSliderActiveBackground=_l(e.scrollbarSliderActiveBackground,Is.opacity(t.foreground,.5)),t.overviewRulerBorder=_l(e.overviewRulerBorder,hl),t.ansi=ll.slice(),t.ansi[0]=_l(e.black,ll[0]),t.ansi[1]=_l(e.red,ll[1]),t.ansi[2]=_l(e.green,ll[2]),t.ansi[3]=_l(e.yellow,ll[3]),t.ansi[4]=_l(e.blue,ll[4]),t.ansi[5]=_l(e.magenta,ll[5]),t.ansi[6]=_l(e.cyan,ll[6]),t.ansi[7]=_l(e.white,ll[7]),t.ansi[8]=_l(e.brightBlack,ll[8]),t.ansi[9]=_l(e.brightRed,ll[9]),t.ansi[10]=_l(e.brightGreen,ll[10]),t.ansi[11]=_l(e.brightYellow,ll[11]),t.ansi[12]=_l(e.brightBlue,ll[12]),t.ansi[13]=_l(e.brightMagenta,ll[13]),t.ansi[14]=_l(e.brightCyan,ll[14]),t.ansi[15]=_l(e.brightWhite,ll[15]),e.extendedAnsi){let n=Math.min(t.ansi.length-16,e.extendedAnsi.length);for(let r=0;r<n;r++)t.ansi[r+16]=_l(e.extendedAnsi[r],ll[r+16])}this._contrastCache.clear(),this._halfContrastCache.clear(),this._updateRestoreColors(),this._onChangeColors.fire(this.colors)}restoreColor(e){this._restoreColor(e),this._onChangeColors.fire(this.colors)}_restoreColor(e){if(e===void 0){for(let e=0;e<this._restoreColors.ansi.length;++e)this._colors.ansi[e]=this._restoreColors.ansi[e];return}switch(e){case 256:this._colors.foreground=this._restoreColors.foreground;break;case 257:this._colors.background=this._restoreColors.background;break;case 258:this._colors.cursor=this._restoreColors.cursor;break;default:this._colors.ansi[e]=this._restoreColors.ansi[e]}}modifyColors(e){e(this._colors),this._onChangeColors.fire(this.colors)}_updateRestoreColors(){this._restoreColors={foreground:this._colors.foreground,background:this._colors.background,cursor:this._colors.cursor,ansi:this._colors.ansi.slice()}}};gl=er([q(0,Nr)],gl);function _l(e,t){if(e!==void 0)try{return Ls.toColor(e)}catch{}return t}var vl=class{constructor(...e){this._entries=new Map;for(let[t,n]of e)this.set(t,n)}set(e,t){let n=this._entries.get(e);return this._entries.set(e,t),n}forEach(e){for(let[t,n]of this._entries.entries())e(t,n)}has(e){return this._entries.has(e)}get(e){return this._entries.get(e)}},yl=class{constructor(){this._services=new vl,this._services.set(jr,this)}setService(e,t){this._services.set(e,t)}getService(e){return this._services.get(e)}createInstance(e,...t){let n=wr(e).sort((e,t)=>e.index-t.index),r=[];for(let t of n){let n=this._services.get(t.id);if(!n)throw Error(`[createInstance] ${e.name} depends on UNKNOWN service ${t.id._id}.`);r.push(n)}let i=n.length>0?n[0].index:t.length;if(t.length!==i)throw Error(`[createInstance] First service dependency of ${e.name} at position ${i+1} conflicts with ${t.length} static arguments`);return new e(...t,...r)}},bl={trace:0,debug:1,info:2,warn:3,error:4,off:5},xl=`xterm.js: `,Sl=class extends Ci{constructor(e){super(),this._optionsService=e,this._logLevel=5,this._updateLogLevel(),this._register(this._optionsService.onSpecificOptionChange(`logLevel`,()=>this._updateLogLevel())),Cl=this}get logLevel(){return this._logLevel}_updateLogLevel(){this._logLevel=bl[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;t<e.length;t++)typeof e[t]==`function`&&(e[t]=e[t]())}_log(e,t,n){this._evalLazyOptionalParams(n),e.call(console,(this._optionsService.options.logger?``:xl)+t,...n)}trace(e,...t){this._logLevel<=0&&this._log(this._optionsService.options.logger?.trace.bind(this._optionsService.options.logger)??console.log,e,t)}debug(e,...t){this._logLevel<=1&&this._log(this._optionsService.options.logger?.debug.bind(this._optionsService.options.logger)??console.log,e,t)}info(e,...t){this._logLevel<=2&&this._log(this._optionsService.options.logger?.info.bind(this._optionsService.options.logger)??console.info,e,t)}warn(e,...t){this._logLevel<=3&&this._log(this._optionsService.options.logger?.warn.bind(this._optionsService.options.logger)??console.warn,e,t)}error(e,...t){this._logLevel<=4&&this._log(this._optionsService.options.logger?.error.bind(this._optionsService.options.logger)??console.error,e,t)}};Sl=er([q(0,Nr)],Sl);var Cl,wl=class extends Ci{constructor(e){super(),this._maxLength=e,this.onDeleteEmitter=this._register(new Z),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this._register(new Z),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this._register(new Z),this.onTrim=this.onTrimEmitter.event,this._array=Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(e){if(this._maxLength===e)return;let t=Array(e);for(let n=0;n<Math.min(e,this.length);n++)t[n]=this._array[this._getCyclicIndex(n)];this._array=t,this._maxLength=e,this._startIndex=0}get length(){return this._length}set length(e){if(e>this._length)for(let t=this._length;t<e;t++)this._array[t]=void 0;this._length=e}get(e){return this._array[this._getCyclicIndex(e)]}set(e,t){this._array[this._getCyclicIndex(e)]=t}push(e){this._array[this._getCyclicIndex(this._length)]=e,this._length===this._maxLength?(this._startIndex=++this._startIndex%this._maxLength,this.onTrimEmitter.fire(1)):this._length++}recycle(){if(this._length!==this._maxLength)throw Error(`Can only recycle when the buffer is full`);return this._startIndex=++this._startIndex%this._maxLength,this.onTrimEmitter.fire(1),this._array[this._getCyclicIndex(this._length-1)]}get isFull(){return this._length===this._maxLength}pop(){return this._array[this._getCyclicIndex(this._length---1)]}splice(e,t,...n){if(t){for(let n=e;n<this._length-t;n++)this._array[this._getCyclicIndex(n)]=this._array[this._getCyclicIndex(n+t)];this._length-=t,this.onDeleteEmitter.fire({index:e,amount:t})}for(let t=this._length-1;t>=e;t--)this._array[this._getCyclicIndex(t+n.length)]=this._array[this._getCyclicIndex(t)];for(let t=0;t<n.length;t++)this._array[this._getCyclicIndex(e+t)]=n[t];if(n.length&&this.onInsertEmitter.fire({index:e,amount:n.length}),this._length+n.length>this._maxLength){let e=this._length+n.length-this._maxLength;this._startIndex+=e,this._length=this._maxLength,this.onTrimEmitter.fire(e)}else this._length+=n.length}trimStart(e){e>this._length&&(e=this._length),this._startIndex+=e,this._length-=e,this.onTrimEmitter.fire(e)}shiftElements(e,t,n){if(!(t<=0)){if(e<0||e>=this._length)throw Error(`start argument out of range`);if(e+n<0)throw Error(`Cannot shift elements in list beyond index 0`);if(n>0){for(let r=t-1;r>=0;r--)this.set(e+r+n,this.get(e+r));let r=e+t+n-this._length;if(r>0)for(this._length+=r;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let r=0;r<t;r++)this.set(e+r+n,this.get(e+r))}}_getCyclicIndex(e){return(this._startIndex+e)%this._maxLength}},Tl=3,El=Object.freeze(new vr),Dl=0,Ol=2,kl=class e{constructor(e,t,n=!1){this.isWrapped=n,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(e*Tl);let r=t||br.fromCharData([0,gr,1,0]);for(let t=0;t<e;++t)this.setCell(t,r);this.length=e}get(e){let t=this._data[e*Tl+0],n=t&2097151;return[this._data[e*Tl+1],t&2097152?this._combined[e]:n?fr(n):``,t>>22,t&2097152?this._combined[e].charCodeAt(this._combined[e].length-1):n]}set(e,t){this._data[e*Tl+1]=t[0],t[1].length>1?(this._combined[e]=t[1],this._data[e*Tl+0]=e|2097152|t[2]<<22):this._data[e*Tl+0]=t[1].charCodeAt(0)|t[2]<<22}getWidth(e){return this._data[e*Tl+0]>>22}hasWidth(e){return this._data[e*Tl+0]&12582912}getFg(e){return this._data[e*Tl+1]}getBg(e){return this._data[e*Tl+2]}hasContent(e){return this._data[e*Tl+0]&4194303}getCodePoint(e){let t=this._data[e*Tl+0];return t&2097152?this._combined[e].charCodeAt(this._combined[e].length-1):t&2097151}isCombined(e){return this._data[e*Tl+0]&2097152}getString(e){let t=this._data[e*Tl+0];return t&2097152?this._combined[e]:t&2097151?fr(t&2097151):``}isProtected(e){return this._data[e*Tl+2]&536870912}loadCell(e,t){return Dl=e*Tl,t.content=this._data[Dl+0],t.fg=this._data[Dl+1],t.bg=this._data[Dl+2],t.content&2097152&&(t.combinedData=this._combined[e]),t.bg&268435456&&(t.extended=this._extendedAttrs[e]),t}setCell(e,t){t.content&2097152&&(this._combined[e]=t.combinedData),t.bg&268435456&&(this._extendedAttrs[e]=t.extended),this._data[e*Tl+0]=t.content,this._data[e*Tl+1]=t.fg,this._data[e*Tl+2]=t.bg}setCellFromCodepoint(e,t,n,r){r.bg&268435456&&(this._extendedAttrs[e]=r.extended),this._data[e*Tl+0]=t|n<<22,this._data[e*Tl+1]=r.fg,this._data[e*Tl+2]=r.bg}addCodepointToCell(e,t,n){let r=this._data[e*Tl+0];r&2097152?this._combined[e]+=fr(t):r&2097151?(this._combined[e]=fr(r&2097151)+fr(t),r&=-2097152,r|=2097152):r=t|1<<22,n&&(r&=-12582913,r|=n<<22),this._data[e*Tl+0]=r}insertCells(e,t,n){if(e%=this.length,e&&this.getWidth(e-1)===2&&this.setCellFromCodepoint(e-1,0,1,n),t<this.length-e){let r=new br;for(let n=this.length-e-t-1;n>=0;--n)this.setCell(e+t+n,this.loadCell(e+n,r));for(let r=0;r<t;++r)this.setCell(e+r,n)}else for(let t=e;t<this.length;++t)this.setCell(t,n);this.getWidth(this.length-1)===2&&this.setCellFromCodepoint(this.length-1,0,1,n)}deleteCells(e,t,n){if(e%=this.length,t<this.length-e){let r=new br;for(let n=0;n<this.length-e-t;++n)this.setCell(e+n,this.loadCell(e+t+n,r));for(let e=this.length-t;e<this.length;++e)this.setCell(e,n)}else for(let t=e;t<this.length;++t)this.setCell(t,n);e&&this.getWidth(e-1)===2&&this.setCellFromCodepoint(e-1,0,1,n),this.getWidth(e)===0&&!this.hasContent(e)&&this.setCellFromCodepoint(e,0,1,n)}replaceCells(e,t,n,r=!1){if(r){for(e&&this.getWidth(e-1)===2&&!this.isProtected(e-1)&&this.setCellFromCodepoint(e-1,0,1,n),t<this.length&&this.getWidth(t-1)===2&&!this.isProtected(t)&&this.setCellFromCodepoint(t,0,1,n);e<t&&e<this.length;)this.isProtected(e)||this.setCell(e,n),e++;return}for(e&&this.getWidth(e-1)===2&&this.setCellFromCodepoint(e-1,0,1,n),t<this.length&&this.getWidth(t-1)===2&&this.setCellFromCodepoint(t,0,1,n);e<t&&e<this.length;)this.setCell(e++,n)}resize(e,t){if(e===this.length)return this._data.length*4*Ol<this._data.buffer.byteLength;let n=e*Tl;if(e>this.length){if(this._data.buffer.byteLength>=n*4)this._data=new Uint32Array(this._data.buffer,0,n);else{let e=new Uint32Array(n);e.set(this._data),this._data=e}for(let n=this.length;n<e;++n)this.setCell(n,t)}else{this._data=this._data.subarray(0,n);let t=Object.keys(this._combined);for(let n=0;n<t.length;n++){let r=parseInt(t[n],10);r>=e&&delete this._combined[r]}let r=Object.keys(this._extendedAttrs);for(let t=0;t<r.length;t++){let n=parseInt(r[t],10);n>=e&&delete this._extendedAttrs[n]}}return this.length=e,n*4*Ol<this._data.buffer.byteLength}cleanupMemory(){if(this._data.length*4*Ol<this._data.buffer.byteLength){let e=new Uint32Array(this._data.length);return e.set(this._data),this._data=e,1}return 0}fill(e,t=!1){if(t){for(let t=0;t<this.length;++t)this.isProtected(t)||this.setCell(t,e);return}this._combined={},this._extendedAttrs={};for(let t=0;t<this.length;++t)this.setCell(t,e)}copyFrom(e){this.length===e.length?this._data.set(e._data):this._data=new Uint32Array(e._data),this.length=e.length,this._combined={};for(let t in e._combined)this._combined[t]=e._combined[t];this._extendedAttrs={};for(let t in e._extendedAttrs)this._extendedAttrs[t]=e._extendedAttrs[t];this.isWrapped=e.isWrapped}clone(){let t=new e(0);t._data=new Uint32Array(this._data),t.length=this.length;for(let e in this._combined)t._combined[e]=this._combined[e];for(let e in this._extendedAttrs)t._extendedAttrs[e]=this._extendedAttrs[e];return t.isWrapped=this.isWrapped,t}getTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(this._data[e*Tl+0]&4194303)return e+(this._data[e*Tl+0]>>22);return 0}getNoBgTrimmedLength(){for(let e=this.length-1;e>=0;--e)if(this._data[e*Tl+0]&4194303||this._data[e*Tl+2]&50331648)return e+(this._data[e*Tl+0]>>22);return 0}copyCellsFrom(e,t,n,r,i){let a=e._data;if(i)for(let i=r-1;i>=0;i--){for(let e=0;e<Tl;e++)this._data[(n+i)*Tl+e]=a[(t+i)*Tl+e];a[(t+i)*Tl+2]&268435456&&(this._extendedAttrs[n+i]=e._extendedAttrs[t+i])}else for(let i=0;i<r;i++){for(let e=0;e<Tl;e++)this._data[(n+i)*Tl+e]=a[(t+i)*Tl+e];a[(t+i)*Tl+2]&268435456&&(this._extendedAttrs[n+i]=e._extendedAttrs[t+i])}let o=Object.keys(e._combined);for(let r=0;r<o.length;r++){let i=parseInt(o[r],10);i>=t&&(this._combined[i-t+n]=e._combined[i])}}translateToString(e,t,n,r){t??=0,n??=this.length,e&&(n=Math.min(n,this.getTrimmedLength())),r&&(r.length=0);let i=``;for(;t<n;){let e=this._data[t*Tl+0],n=e&2097151,a=e&2097152?this._combined[t]:n?fr(n):_r;if(i+=a,r)for(let e=0;e<a.length;++e)r.push(t);t+=e>>22||1}return r&&r.push(t),i}};function Al(e,t,n,r,i,a){let o=[];for(let s=0;s<e.length-1;s++){let c=s,l=e.get(++c);if(!l.isWrapped)continue;let u=[e.get(s)];for(;c<e.length&&l.isWrapped;)u.push(l),l=e.get(++c);if(!a&&r>=s&&r<c){s+=u.length-1;continue}let d=0,f=Pl(u,d,t),p=1,m=0;for(;p<u.length;){let e=Pl(u,p,t),r=e-m,a=n-f,o=Math.min(r,a);u[d].copyCellsFrom(u[p],m,f,o,!1),f+=o,f===n&&(d++,f=0),m+=o,m===e&&(p++,m=0),f===0&&d!==0&&u[d-1].getWidth(n-1)===2&&(u[d].copyCellsFrom(u[d-1],n-1,f++,1,!1),u[d-1].setCell(n-1,i))}u[d].replaceCells(f,n,i);let h=0;for(let e=u.length-1;e>0&&(e>d||u[e].getTrimmedLength()===0);e--)h++;h>0&&(o.push(s+u.length-h),o.push(h)),s+=u.length-1}return o}function jl(e,t){let n=[],r=0,i=t[r],a=0;for(let o=0;o<e.length;o++)if(i===o){let n=t[++r];e.onDeleteEmitter.fire({index:o-a,amount:n}),o+=n-1,a+=n,i=t[++r]}else n.push(o);return{layout:n,countRemoved:a}}function Ml(e,t){let n=[];for(let r=0;r<t.length;r++)n.push(e.get(t[r]));for(let t=0;t<n.length;t++)e.set(t,n[t]);e.length=t.length}function Nl(e,t,n){let r=[],i=e.map((n,r)=>Pl(e,r,t)).reduce((e,t)=>e+t),a=0,o=0,s=0;for(;s<i;){if(i-s<n){r.push(i-s);break}a+=n;let c=Pl(e,o,t);a>c&&(a-=c,o++);let l=e[o].getWidth(a-1)===2;l&&a--;let u=l?n-1:n;r.push(u),s+=u}return r}function Pl(e,t,n){if(t===e.length-1)return e[t].getTrimmedLength();let r=!e[t].hasContent(n-1)&&e[t].getWidth(n-1)===1,i=e[t+1].getWidth(0)===2;return r&&i?n-1:n}var Fl=class e{constructor(t){this.line=t,this.isDisposed=!1,this._disposables=[],this._id=e._nextId++,this._onDispose=this.register(new Z),this.onDispose=this._onDispose.event}get id(){return this._id}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),yi(this._disposables),this._disposables.length=0)}register(e){return this._disposables.push(e),e}};Fl._nextId=1;var Il=Fl,Ll={},Rl=Ll.B;Ll[0]={"`":`◆`,a:`▒`,b:`␉`,c:`␌`,d:`␍`,e:`␊`,f:`°`,g:`±`,h:`␤`,i:`␋`,j:`┘`,k:`┐`,l:`┌`,m:`└`,n:`┼`,o:`⎺`,p:`⎻`,q:`─`,r:`⎼`,s:`⎽`,t:`├`,u:`┤`,v:`┴`,w:`┬`,x:`│`,y:`≤`,z:`≥`,"{":`π`,"|":`≠`,"}":`£`,"~":`·`},Ll.A={"#":`£`},Ll.B=void 0,Ll[4]={"#":`£`,"@":`¾`,"[":`ij`,"\\":`½`,"]":`|`,"{":`¨`,"|":`f`,"}":`¼`,"~":`´`},Ll.C=Ll[5]={"[":`Ä`,"\\":`Ö`,"]":`Å`,"^":`Ü`,"`":`é`,"{":`ä`,"|":`ö`,"}":`å`,"~":`ü`},Ll.R={"#":`£`,"@":`à`,"[":`°`,"\\":`ç`,"]":`§`,"{":`é`,"|":`ù`,"}":`è`,"~":`¨`},Ll.Q={"@":`à`,"[":`â`,"\\":`ç`,"]":`ê`,"^":`î`,"`":`ô`,"{":`é`,"|":`ù`,"}":`è`,"~":`û`},Ll.K={"@":`§`,"[":`Ä`,"\\":`Ö`,"]":`Ü`,"{":`ä`,"|":`ö`,"}":`ü`,"~":`ß`},Ll.Y={"#":`£`,"@":`§`,"[":`°`,"\\":`ç`,"]":`é`,"`":`ù`,"{":`à`,"|":`ò`,"}":`è`,"~":`ì`},Ll.E=Ll[6]={"@":`Ä`,"[":`Æ`,"\\":`Ø`,"]":`Å`,"^":`Ü`,"`":`ä`,"{":`æ`,"|":`ø`,"}":`å`,"~":`ü`},Ll.Z={"#":`£`,"@":`§`,"[":`¡`,"\\":`Ñ`,"]":`¿`,"{":`°`,"|":`ñ`,"}":`ç`},Ll.H=Ll[7]={"@":`É`,"[":`Ä`,"\\":`Ö`,"]":`Å`,"^":`Ü`,"`":`é`,"{":`ä`,"|":`ö`,"}":`å`,"~":`ü`},Ll[`=`]={"#":`ù`,"@":`à`,"[":`é`,"\\":`ç`,"]":`ê`,"^":`î`,_:`è`,"`":`ô`,"{":`ä`,"|":`ö`,"}":`ü`,"~":`û`};var zl=4294967295,Bl=class{constructor(e,t,n){this._hasScrollback=e,this._optionsService=t,this._bufferService=n,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=El.clone(),this.savedCharset=Rl,this.markers=[],this._nullCell=br.fromCharData([0,gr,1,0]),this._whitespaceCell=br.fromCharData([0,_r,1,32]),this._isClearing=!1,this._memoryCleanupQueue=new Ic,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new wl(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(e){return e?(this._nullCell.fg=e.fg,this._nullCell.bg=e.bg,this._nullCell.extended=e.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new yr),this._nullCell}getWhitespaceCell(e){return e?(this._whitespaceCell.fg=e.fg,this._whitespaceCell.bg=e.bg,this._whitespaceCell.extended=e.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new yr),this._whitespaceCell}getBlankLine(e,t){return new kl(this._bufferService.cols,this.getNullCell(e),t)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){let e=this.ybase+this.y-this.ydisp;return e>=0&&e<this._rows}_getCorrectBufferLength(e){if(!this._hasScrollback)return e;let t=e+this._optionsService.rawOptions.scrollback;return t>zl?zl:t}fillViewportRows(e){if(this.lines.length===0){e===void 0&&(e=El);let t=this._rows;for(;t--;)this.lines.push(this.getBlankLine(e))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new wl(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(e,t){let n=this.getNullCell(El),r=0,i=this._getCorrectBufferLength(t);if(i>this.lines.maxLength&&(this.lines.maxLength=i),this.lines.length>0){if(this._cols<e)for(let t=0;t<this.lines.length;t++)r+=+this.lines.get(t).resize(e,n);let a=0;if(this._rows<t)for(let r=this._rows;r<t;r++)this.lines.length<t+this.ybase&&(this._optionsService.rawOptions.windowsMode||this._optionsService.rawOptions.windowsPty.backend!==void 0||this._optionsService.rawOptions.windowsPty.buildNumber!==void 0?this.lines.push(new kl(e,n)):this.ybase>0&&this.lines.length<=this.ybase+this.y+a+1?(this.ybase--,a++,this.ydisp>0&&this.ydisp--):this.lines.push(new kl(e,n)));else for(let e=this._rows;e>t;e--)this.lines.length>t+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(i<this.lines.maxLength){let e=this.lines.length-i;e>0&&(this.lines.trimStart(e),this.ybase=Math.max(this.ybase-e,0),this.ydisp=Math.max(this.ydisp-e,0),this.savedY=Math.max(this.savedY-e,0)),this.lines.maxLength=i}this.x=Math.min(this.x,e-1),this.y=Math.min(this.y,t-1),a&&(this.y+=a),this.savedX=Math.min(this.savedX,e-1),this.scrollTop=0}if(this.scrollBottom=t-1,this._isReflowEnabled&&(this._reflow(e,t),this._cols>e))for(let t=0;t<this.lines.length;t++)r+=+this.lines.get(t).resize(e,n);this._cols=e,this._rows=t,this._memoryCleanupQueue.clear(),r>.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let e=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,e=!1);let t=0;for(;this._memoryCleanupPosition<this.lines.length;)if(t+=this.lines.get(this._memoryCleanupPosition++).cleanupMemory(),t>100)return!0;return e}get _isReflowEnabled(){let e=this._optionsService.rawOptions.windowsPty;return e&&e.buildNumber?this._hasScrollback&&e.backend===`conpty`&&e.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(e,t){this._cols!==e&&(e>this._cols?this._reflowLarger(e,t):this._reflowSmaller(e,t))}_reflowLarger(e,t){let n=this._optionsService.rawOptions.reflowCursorLine,r=Al(this.lines,this._cols,e,this.ybase+this.y,this.getNullCell(El),n);if(r.length>0){let n=jl(this.lines,r);Ml(this.lines,n.layout),this._reflowLargerAdjustViewport(e,t,n.countRemoved)}}_reflowLargerAdjustViewport(e,t,n){let r=this.getNullCell(El),i=n;for(;i-- >0;)this.ybase===0?(this.y>0&&this.y--,this.lines.length<t&&this.lines.push(new kl(e,r))):(this.ydisp===this.ybase&&this.ydisp--,this.ybase--);this.savedY=Math.max(this.savedY-n,0)}_reflowSmaller(e,t){let n=this._optionsService.rawOptions.reflowCursorLine,r=this.getNullCell(El),i=[],a=0;for(let o=this.lines.length-1;o>=0;o--){let s=this.lines.get(o);if(!s||!s.isWrapped&&s.getTrimmedLength()<=e)continue;let c=[s];for(;s.isWrapped&&o>0;)s=this.lines.get(--o),c.unshift(s);if(!n){let e=this.ybase+this.y;if(e>=o&&e<o+c.length)continue}let l=c[c.length-1].getTrimmedLength(),u=Nl(c,this._cols,e),d=u.length-c.length,f;f=this.ybase===0&&this.y!==this.lines.length-1?Math.max(0,this.y-this.lines.maxLength+d):Math.max(0,this.lines.length-this.lines.maxLength+d);let p=[];for(let e=0;e<d;e++){let e=this.getBlankLine(El,!0);p.push(e)}p.length>0&&(i.push({start:o+c.length+a,newLines:p}),a+=p.length),c.push(...p);let m=u.length-1,h=u[m];h===0&&(m--,h=u[m]);let g=c.length-d-1,_=l;for(;g>=0;){let e=Math.min(_,h);if(c[m]===void 0)break;c[m].copyCellsFrom(c[g],_-e,h-e,e,!0),h-=e,h===0&&(m--,h=u[m]),_-=e,_===0&&(g--,_=Pl(c,Math.max(g,0),this._cols))}for(let t=0;t<c.length;t++)u[t]<e&&c[t].setCell(u[t],r);let v=d-f;for(;v-- >0;)this.ybase===0?this.y<t-1?(this.y++,this.lines.pop()):(this.ybase++,this.ydisp++):this.ybase<Math.min(this.lines.maxLength,this.lines.length+a)-t&&(this.ybase===this.ydisp&&this.ydisp++,this.ybase++);this.savedY=Math.min(this.savedY+d,this.ybase+t-1)}if(i.length>0){let e=[],t=[];for(let e=0;e<this.lines.length;e++)t.push(this.lines.get(e));let n=this.lines.length,r=n-1,o=0,s=i[o];this.lines.length=Math.min(this.lines.maxLength,this.lines.length+a);let c=0;for(let l=Math.min(this.lines.maxLength-1,n+a-1);l>=0;l--)if(s&&s.start>r+c){for(let e=s.newLines.length-1;e>=0;e--)this.lines.set(l--,s.newLines[e]);l++,e.push({index:r+1,amount:s.newLines.length}),c+=s.newLines.length,s=i[++o]}else this.lines.set(l,t[r--]);let l=0;for(let t=e.length-1;t>=0;t--)e[t].index+=l,this.lines.onInsertEmitter.fire(e[t]),l+=e[t].amount;let u=Math.max(0,n+a-this.lines.maxLength);u>0&&this.lines.onTrimEmitter.fire(u)}}translateBufferLineToString(e,t,n=0,r){let i=this.lines.get(e);return i?i.translateToString(t,n,r):``}getWrappedRangeForLine(e){let t=e,n=e;for(;t>0&&this.lines.get(t).isWrapped;)t--;for(;n+1<this.lines.length&&this.lines.get(n+1).isWrapped;)n++;return{first:t,last:n}}setupTabStops(e){for(e==null?(this.tabs={},e=0):this.tabs[e]||(e=this.prevStop(e));e<this._cols;e+=this._optionsService.rawOptions.tabStopWidth)this.tabs[e]=!0}prevStop(e){for(e??=this.x;!this.tabs[--e]&&e>0;);return e>=this._cols?this._cols-1:e<0?0:e}nextStop(e){for(e??=this.x;!this.tabs[++e]&&e<this._cols;);return e>=this._cols?this._cols-1:e<0?0:e}clearMarkers(e){this._isClearing=!0;for(let t=0;t<this.markers.length;t++)this.markers[t].line===e&&(this.markers[t].dispose(),this.markers.splice(t--,1));this._isClearing=!1}clearAllMarkers(){this._isClearing=!0;for(let e=0;e<this.markers.length;e++)this.markers[e].dispose();this.markers.length=0,this._isClearing=!1}addMarker(e){let t=new Il(e);return this.markers.push(t),t.register(this.lines.onTrim(e=>{t.line-=e,t.line<0&&t.dispose()})),t.register(this.lines.onInsert(e=>{t.line>=e.index&&(t.line+=e.amount)})),t.register(this.lines.onDelete(e=>{t.line>=e.index&&t.line<e.index+e.amount&&t.dispose(),t.line>e.index&&(t.line-=e.amount)})),t.register(t.onDispose(()=>this._removeMarker(t))),t}_removeMarker(e){this._isClearing||this.markers.splice(this.markers.indexOf(e),1)}},Vl=class extends Ci{constructor(e,t){super(),this._optionsService=e,this._bufferService=t,this._onBufferActivate=this._register(new Z),this.onBufferActivate=this._onBufferActivate.event,this.reset(),this._register(this._optionsService.onSpecificOptionChange(`scrollback`,()=>this.resize(this._bufferService.cols,this._bufferService.rows))),this._register(this._optionsService.onSpecificOptionChange(`tabStopWidth`,()=>this.setupTabStops()))}reset(){this._normal=new Bl(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new Bl(!1,this._optionsService,this._bufferService),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}),this.setupTabStops()}get alt(){return this._alt}get active(){return this._activeBuffer}get normal(){return this._normal}activateNormalBuffer(){this._activeBuffer!==this._normal&&(this._normal.x=this._alt.x,this._normal.y=this._alt.y,this._alt.clearAllMarkers(),this._alt.clear(),this._activeBuffer=this._normal,this._onBufferActivate.fire({activeBuffer:this._normal,inactiveBuffer:this._alt}))}activateAltBuffer(e){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(e),this._alt.x=this._normal.x,this._alt.y=this._normal.y,this._activeBuffer=this._alt,this._onBufferActivate.fire({activeBuffer:this._alt,inactiveBuffer:this._normal}))}resize(e,t){this._normal.resize(e,t),this._alt.resize(e,t),this.setupTabStops(e)}setupTabStops(e){this._normal.setupTabStops(e),this._alt.setupTabStops(e)}},Hl=2,Ul=1,Wl=class extends Ci{constructor(e){super(),this.isUserScrolling=!1,this._onResize=this._register(new Z),this.onResize=this._onResize.event,this._onScroll=this._register(new Z),this.onScroll=this._onScroll.event,this.cols=Math.max(e.rawOptions.cols||0,Hl),this.rows=Math.max(e.rawOptions.rows||0,Ul),this.buffers=this._register(new Vl(e,this)),this._register(this.buffers.onBufferActivate(e=>{this._onScroll.fire(e.activeBuffer.ydisp)}))}get buffer(){return this.buffers.active}resize(e,t){let n=this.cols!==e,r=this.rows!==t;this.cols=e,this.rows=t,this.buffers.resize(e,t),this._onResize.fire({cols:e,rows:t,colsChanged:n,rowsChanged:r})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(e,t=!1){let n=this.buffer,r;r=this._cachedBlankLine,(!r||r.length!==this.cols||r.getFg(0)!==e.fg||r.getBg(0)!==e.bg)&&(r=n.getBlankLine(e,t),this._cachedBlankLine=r),r.isWrapped=t;let i=n.ybase+n.scrollTop,a=n.ybase+n.scrollBottom;if(n.scrollTop===0){let e=n.lines.isFull;a===n.lines.length-1?e?n.lines.recycle().copyFrom(r):n.lines.push(r.clone()):n.lines.splice(a+1,0,r.clone()),e?this.isUserScrolling&&(n.ydisp=Math.max(n.ydisp-1,0)):(n.ybase++,this.isUserScrolling||n.ydisp++)}else{let e=a-i+1;n.lines.shiftElements(i+1,e-1,-1),n.lines.set(a,r.clone())}this.isUserScrolling||(n.ydisp=n.ybase),this._onScroll.fire(n.ydisp)}scrollLines(e,t){let n=this.buffer;if(e<0){if(n.ydisp===0)return;this.isUserScrolling=!0}else e+n.ydisp>=n.ybase&&(this.isUserScrolling=!1);let r=n.ydisp;n.ydisp=Math.max(Math.min(n.ydisp+e,n.ybase),0),r!==n.ydisp&&(t||this._onScroll.fire(n.ydisp))}};Wl=er([q(0,Nr)],Wl);var Gl={cols:80,rows:24,cursorBlink:!1,cursorStyle:`block`,cursorWidth:1,cursorInactiveStyle:`outline`,customGlyphs:!0,drawBoldTextInBrightColors:!0,documentOverride:null,fastScrollModifier:`alt`,fastScrollSensitivity:5,fontFamily:`monospace`,fontSize:15,fontWeight:`normal`,fontWeightBold:`bold`,ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:`info`,logger:null,scrollback:1e3,scrollOnEraseInDisplay:!1,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},reflowCursorLine:!1,rescaleOverlappingGlyphs:!1,rightClickSelectsWord:Dc,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:` ()[]{}',"\``,altClickMovesCursor:!0,convertEol:!1,termName:`xterm`,cancelEvents:!1,overviewRuler:{}},Kl=[`normal`,`bold`,`100`,`200`,`300`,`400`,`500`,`600`,`700`,`800`,`900`],ql=class extends Ci{constructor(e){super(),this._onOptionChange=this._register(new Z),this.onOptionChange=this._onOptionChange.event;let t={...Gl};for(let n in e)if(n in t)try{let r=e[n];t[n]=this._sanitizeAndValidateOption(n,r)}catch(e){console.error(e)}this.rawOptions=t,this.options={...t},this._setupOptions(),this._register(bi(()=>{this.rawOptions.linkHandler=null,this.rawOptions.documentOverride=null}))}onSpecificOptionChange(e,t){return this.onOptionChange(n=>{n===e&&t(this.rawOptions[e])})}onMultipleOptionChange(e,t){return this.onOptionChange(n=>{e.indexOf(n)!==-1&&t()})}_setupOptions(){let e=e=>{if(!(e in Gl))throw Error(`No option with key "${e}"`);return this.rawOptions[e]},t=(e,t)=>{if(!(e in Gl))throw Error(`No option with key "${e}"`);t=this._sanitizeAndValidateOption(e,t),this.rawOptions[e]!==t&&(this.rawOptions[e]=t,this._onOptionChange.fire(e))};for(let n in this.rawOptions){let r={get:e.bind(this,n),set:t.bind(this,n)};Object.defineProperty(this.options,n,r)}}_sanitizeAndValidateOption(e,t){switch(e){case`cursorStyle`:if(t||=Gl[e],!Jl(t))throw Error(`"${t}" is not a valid value for ${e}`);break;case`wordSeparator`:t||=Gl[e];break;case`fontWeight`:case`fontWeightBold`:if(typeof t==`number`&&1<=t&&t<=1e3)break;t=Kl.includes(t)?t:Gl[e];break;case`cursorWidth`:t=Math.floor(t);case`lineHeight`:case`tabStopWidth`:if(t<1)throw Error(`${e} cannot be less than 1, value: ${t}`);break;case`minimumContrastRatio`:t=Math.max(1,Math.min(21,Math.round(t*10)/10));break;case`scrollback`:if(t=Math.min(t,4294967295),t<0)throw Error(`${e} cannot be less than 0, value: ${t}`);break;case`fastScrollSensitivity`:case`scrollSensitivity`:if(t<=0)throw Error(`${e} cannot be less than or equal to 0, value: ${t}`);break;case`rows`:case`cols`:if(!t&&t!==0)throw Error(`${e} must be numeric, value: ${t}`);break;case`windowsPty`:t??={};break}return t}};function Jl(e){return e===`block`||e===`underline`||e===`bar`}function Yl(e,t=5){if(typeof e!=`object`)return e;let n=Array.isArray(e)?[]:{};for(let r in e)n[r]=t<=1?e[r]:e[r]&&Yl(e[r],t-1);return n}var Xl=Object.freeze({insertMode:!1}),Zl=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,cursorBlink:void 0,cursorStyle:void 0,origin:!1,reverseWraparound:!1,sendFocus:!1,synchronizedOutput:!1,wraparound:!0}),Ql=class extends Ci{constructor(e,t,n){super(),this._bufferService=e,this._logService=t,this._optionsService=n,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this._register(new Z),this.onData=this._onData.event,this._onUserInput=this._register(new Z),this.onUserInput=this._onUserInput.event,this._onBinary=this._register(new Z),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this._register(new Z),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=Yl(Xl),this.decPrivateModes=Yl(Zl)}reset(){this.modes=Yl(Xl),this.decPrivateModes=Yl(Zl)}triggerDataEvent(e,t=!1){if(this._optionsService.rawOptions.disableStdin)return;let n=this._bufferService.buffer;t&&this._optionsService.rawOptions.scrollOnUserInput&&n.ybase!==n.ydisp&&this._onRequestScrollToBottom.fire(),t&&this._onUserInput.fire(),this._logService.debug(`sending data "${e}"`),this._logService.trace(`sending data (codes)`,()=>e.split(``).map(e=>e.charCodeAt(0))),this._onData.fire(e)}triggerBinaryEvent(e){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${e}"`),this._logService.trace(`sending binary (codes)`,()=>e.split(``).map(e=>e.charCodeAt(0))),this._onBinary.fire(e))}};Ql=er([q(0,Dr),q(1,Mr),q(2,Nr)],Ql);var $l={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:e=>e.button===4||e.action!==1?!1:(e.ctrl=!1,e.alt=!1,e.shift=!1,!0)},VT200:{events:19,restrict:e=>e.action!==32},DRAG:{events:23,restrict:e=>!(e.action===32&&e.button===3)},ANY:{events:31,restrict:e=>!0}};function eu(e,t){let n=(e.ctrl?16:0)|(e.shift?4:0)|(e.alt?8:0);return e.button===4?(n|=64,n|=e.action):(n|=e.button&3,e.button&4&&(n|=64),e.button&8&&(n|=128),e.action===32?n|=32:e.action===0&&!t&&(n|=3)),n}var tu=String.fromCharCode,nu={DEFAULT:e=>{let t=[eu(e,!1)+32,e.col+32,e.row+32];return t[0]>255||t[1]>255||t[2]>255?``:`\x1B[M${tu(t[0])}${tu(t[1])}${tu(t[2])}`},SGR:e=>{let t=e.action===0&&e.button!==4?`m`:`M`;return`\x1B[<${eu(e,!0)};${e.col};${e.row}${t}`},SGR_PIXELS:e=>{let t=e.action===0&&e.button!==4?`m`:`M`;return`\x1B[<${eu(e,!0)};${e.x};${e.y}${t}`}},ru=class extends Ci{constructor(e,t,n){super(),this._bufferService=e,this._coreService=t,this._optionsService=n,this._protocols={},this._encodings={},this._activeProtocol=``,this._activeEncoding=``,this._lastEvent=null,this._wheelPartialScroll=0,this._onProtocolChange=this._register(new Z),this.onProtocolChange=this._onProtocolChange.event;for(let e of Object.keys($l))this.addProtocol(e,$l[e]);for(let e of Object.keys(nu))this.addEncoding(e,nu[e]);this.reset()}addProtocol(e,t){this._protocols[e]=t}addEncoding(e,t){this._encodings[e]=t}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(e){if(!this._protocols[e])throw Error(`unknown protocol "${e}"`);this._activeProtocol=e,this._onProtocolChange.fire(this._protocols[e].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(e){if(!this._encodings[e])throw Error(`unknown encoding "${e}"`);this._activeEncoding=e}reset(){this.activeProtocol=`NONE`,this.activeEncoding=`DEFAULT`,this._lastEvent=null,this._wheelPartialScroll=0}consumeWheelEvent(e,t,n){if(e.deltaY===0||e.shiftKey||t===void 0||n===void 0)return 0;let r=t/n,i=this._applyScrollModifier(e.deltaY,e);return e.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(i/=r+0,Math.abs(e.deltaY)<50&&(i*=.3),this._wheelPartialScroll+=i,i=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):e.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(i*=this._bufferService.rows),i}_applyScrollModifier(e,t){return t.altKey||t.ctrlKey||t.shiftKey?e*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:e*this._optionsService.rawOptions.scrollSensitivity}triggerMouseEvent(e){if(e.col<0||e.col>=this._bufferService.cols||e.row<0||e.row>=this._bufferService.rows||e.button===4&&e.action===32||e.button===3&&e.action!==32||e.button!==4&&(e.action===2||e.action===3)||(e.col++,e.row++,e.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,e,this._activeEncoding===`SGR_PIXELS`))||!this._protocols[this._activeProtocol].restrict(e))return!1;let t=this._encodings[this._activeEncoding](e);return t&&(this._activeEncoding===`DEFAULT`?this._coreService.triggerBinaryEvent(t):this._coreService.triggerDataEvent(t,!0)),this._lastEvent=e,!0}explainEvents(e){return{down:!!(e&1),up:!!(e&2),drag:!!(e&4),move:!!(e&8),wheel:!!(e&16)}}_equalEvents(e,t,n){if(n){if(e.x!==t.x||e.y!==t.y)return!1}else if(e.col!==t.col||e.row!==t.row)return!1;return!(e.button!==t.button||e.action!==t.action||e.ctrl!==t.ctrl||e.alt!==t.alt||e.shift!==t.shift)}};ru=er([q(0,Dr),q(1,kr),q(2,Nr)],ru);var iu=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531]],au=[[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]],ou;function su(e,t){let n=0,r=t.length-1,i;if(e<t[0][0]||e>t[r][1])return!1;for(;r>=n;)if(i=n+r>>1,e>t[i][1])n=i+1;else if(e<t[i][0])r=i-1;else return!0;return!1}var cu=class{constructor(){if(this.version=`6`,!ou){ou=new Uint8Array(65536),ou.fill(1),ou[0]=0,ou.fill(0,1,32),ou.fill(0,127,160),ou.fill(2,4352,4448),ou[9001]=2,ou[9002]=2,ou.fill(2,11904,42192),ou[12351]=1,ou.fill(2,44032,55204),ou.fill(2,63744,64256),ou.fill(2,65040,65050),ou.fill(2,65072,65136),ou.fill(2,65280,65377),ou.fill(2,65504,65511);for(let e=0;e<iu.length;++e)ou.fill(0,iu[e][0],iu[e][1]+1)}}wcwidth(e){return e<32?0:e<127?1:e<65536?ou[e]:su(e,au)?0:e>=131072&&e<=196605||e>=196608&&e<=262141?2:1}charProperties(e,t){let n=this.wcwidth(e),r=n===0&&t!==0;if(r){let e=lu.extractWidth(t);e===0?r=!1:e>n&&(n=e)}return lu.createPropertyValue(0,n,r)}},lu=class e{constructor(){this._providers=Object.create(null),this._active=``,this._onChange=new Z,this.onChange=this._onChange.event;let e=new cu;this.register(e),this._active=e.version,this._activeProvider=e}static extractShouldJoin(e){return(e&1)!=0}static extractWidth(e){return e>>1&3}static extractCharKind(e){return e>>3}static createPropertyValue(e,t,n=!1){return(e&16777215)<<3|(t&3)<<1|!!n}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(e){if(!this._providers[e])throw Error(`unknown Unicode version "${e}"`);this._active=e,this._activeProvider=this._providers[e],this._onChange.fire(e)}register(e){this._providers[e.version]=e}wcwidth(e){return this._activeProvider.wcwidth(e)}getStringCellWidth(t){let n=0,r=0,i=t.length;for(let a=0;a<i;++a){let o=t.charCodeAt(a);if(55296<=o&&o<=56319){if(++a>=i)return n+this.wcwidth(o);let e=t.charCodeAt(a);56320<=e&&e<=57343?o=(o-55296)*1024+e-56320+65536:n+=this.wcwidth(e)}let s=this.charProperties(o,r),c=e.extractWidth(s);e.extractShouldJoin(s)&&(c-=e.extractWidth(r)),n+=c,r=s}return n}charProperties(e,t){return this._activeProvider.charProperties(e,t)}},uu=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(e){this.glevel=e,this.charset=this._charsets[e]}setgCharset(e,t){this._charsets[e]=t,this.glevel===e&&(this.charset=t)}};function du(e){let t=e.buffer.lines.get(e.buffer.ybase+e.buffer.y-1)?.get(e.cols-1),n=e.buffer.lines.get(e.buffer.ybase+e.buffer.y);n&&t&&(n.isWrapped=t[3]!==0&&t[3]!==32)}var fu=2147483647,pu=256,mu=class e{constructor(e=32,t=32){if(this.maxLength=e,this.maxSubParamsLength=t,t>pu)throw Error(`maxSubParamsLength must not be greater than 256`);this.params=new Int32Array(e),this.length=0,this._subParams=new Int32Array(t),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(e),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}static fromArray(t){let n=new e;if(!t.length)return n;for(let e=+!!Array.isArray(t[0]);e<t.length;++e){let r=t[e];if(Array.isArray(r))for(let e=0;e<r.length;++e)n.addSubParam(r[e]);else n.addParam(r)}return n}clone(){let t=new e(this.maxLength,this.maxSubParamsLength);return t.params.set(this.params),t.length=this.length,t._subParams.set(this._subParams),t._subParamsLength=this._subParamsLength,t._subParamsIdx.set(this._subParamsIdx),t._rejectDigits=this._rejectDigits,t._rejectSubDigits=this._rejectSubDigits,t._digitIsSub=this._digitIsSub,t}toArray(){let e=[];for(let t=0;t<this.length;++t){e.push(this.params[t]);let n=this._subParamsIdx[t]>>8,r=this._subParamsIdx[t]&255;r-n>0&&e.push(Array.prototype.slice.call(this._subParams,n,r))}return e}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(e){if(this._digitIsSub=!1,this.length>=this.maxLength){this._rejectDigits=!0;return}if(e<-1)throw Error(`values lesser than -1 are not allowed`);this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=e>fu?fu:e}addSubParam(e){if(this._digitIsSub=!0,this.length){if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength){this._rejectSubDigits=!0;return}if(e<-1)throw Error(`values lesser than -1 are not allowed`);this._subParams[this._subParamsLength++]=e>fu?fu:e,this._subParamsIdx[this.length-1]++}}hasSubParams(e){return(this._subParamsIdx[e]&255)-(this._subParamsIdx[e]>>8)>0}getSubParams(e){let t=this._subParamsIdx[e]>>8,n=this._subParamsIdx[e]&255;return n-t>0?this._subParams.subarray(t,n):null}getSubParamsAll(){let e={};for(let t=0;t<this.length;++t){let n=this._subParamsIdx[t]>>8,r=this._subParamsIdx[t]&255;r-n>0&&(e[t]=this._subParams.slice(n,r))}return e}addDigit(e){let t;if(this._rejectDigits||!(t=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;let n=this._digitIsSub?this._subParams:this.params,r=n[t-1];n[t-1]=~r?Math.min(r*10+e,fu):e}},hu=[],gu=class{constructor(){this._state=0,this._active=hu,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(e,t){this._handlers[e]===void 0&&(this._handlers[e]=[]);let n=this._handlers[e];return n.push(t),{dispose:()=>{let e=n.indexOf(t);e!==-1&&n.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=hu}reset(){if(this._state===2)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].end(!1);this._stack.paused=!1,this._active=hu,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||hu,!this._active.length)this._handlerFb(this._id,`START`);else for(let e=this._active.length-1;e>=0;e--)this._active[e].start()}_put(e,t,n){if(!this._active.length)this._handlerFb(this._id,`PUT`,pr(e,t,n));else for(let r=this._active.length-1;r>=0;r--)this._active[r].put(e,t,n)}start(){this.reset(),this._state=1}put(e,t,n){if(this._state!==3){if(this._state===1)for(;t<n;){let n=e[t++];if(n===59){this._state=2,this._start();break}if(n<48||57<n){this._state=3;return}this._id===-1&&(this._id=0),this._id=this._id*10+n-48}this._state===2&&n-t>0&&this._put(e,t,n)}}end(e,t=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),!this._active.length)this._handlerFb(this._id,`END`,e);else{let n=!1,r=this._active.length-1,i=!1;if(this._stack.paused&&(r=this._stack.loopPosition-1,n=t,i=this._stack.fallThrough,this._stack.paused=!1),!i&&n===!1){for(;r>=0&&(n=this._active[r].end(e),n!==!0);r--)if(n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!1,n;r--}for(;r>=0;r--)if(n=this._active[r].end(!1),n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!0,n}this._active=hu,this._id=-1,this._state=0}}},_u=class{constructor(e){this._handler=e,this._data=``,this._hitLimit=!1}start(){this._data=``,this._hitLimit=!1}put(e,t,n){this._hitLimit||(this._data+=pr(e,t,n),this._data.length>1e7&&(this._data=``,this._hitLimit=!0))}end(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data),t instanceof Promise))return t.then(e=>(this._data=``,this._hitLimit=!1,e));return this._data=``,this._hitLimit=!1,t}},vu=[],yu=class{constructor(){this._handlers=Object.create(null),this._active=vu,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=vu}registerHandler(e,t){this._handlers[e]===void 0&&(this._handlers[e]=[]);let n=this._handlers[e];return n.push(t),{dispose:()=>{let e=n.indexOf(t);e!==-1&&n.splice(e,1)}}}clearHandler(e){this._handlers[e]&&delete this._handlers[e]}setHandlerFallback(e){this._handlerFb=e}reset(){if(this._active.length)for(let e=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;e>=0;--e)this._active[e].unhook(!1);this._stack.paused=!1,this._active=vu,this._ident=0}hook(e,t){if(this.reset(),this._ident=e,this._active=this._handlers[e]||vu,!this._active.length)this._handlerFb(this._ident,`HOOK`,t);else for(let e=this._active.length-1;e>=0;e--)this._active[e].hook(t)}put(e,t,n){if(!this._active.length)this._handlerFb(this._ident,`PUT`,pr(e,t,n));else for(let r=this._active.length-1;r>=0;r--)this._active[r].put(e,t,n)}unhook(e,t=!0){if(!this._active.length)this._handlerFb(this._ident,`UNHOOK`,e);else{let n=!1,r=this._active.length-1,i=!1;if(this._stack.paused&&(r=this._stack.loopPosition-1,n=t,i=this._stack.fallThrough,this._stack.paused=!1),!i&&n===!1){for(;r>=0&&(n=this._active[r].unhook(e),n!==!0);r--)if(n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!1,n;r--}for(;r>=0;r--)if(n=this._active[r].unhook(!1),n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=r,this._stack.fallThrough=!0,n}this._active=vu,this._ident=0}},bu=new mu;bu.addParam(0);var xu=class{constructor(e){this._handler=e,this._data=``,this._params=bu,this._hitLimit=!1}hook(e){this._params=e.length>1||e.params[0]?e.clone():bu,this._data=``,this._hitLimit=!1}put(e,t,n){this._hitLimit||(this._data+=pr(e,t,n),this._data.length>1e7&&(this._data=``,this._hitLimit=!0))}unhook(e){let t=!1;if(this._hitLimit)t=!1;else if(e&&(t=this._handler(this._data,this._params),t instanceof Promise))return t.then(e=>(this._params=bu,this._data=``,this._hitLimit=!1,e));return this._params=bu,this._data=``,this._hitLimit=!1,t}},Su=class{constructor(e){this.table=new Uint8Array(e)}setDefault(e,t){this.table.fill(e<<4|t)}add(e,t,n,r){this.table[t<<8|e]=n<<4|r}addMany(e,t,n,r){for(let i=0;i<e.length;i++)this.table[t<<8|e[i]]=n<<4|r}},Cu=160,wu=function(){let e=new Su(4095),t=Array.apply(null,Array(256)).map((e,t)=>t),n=(e,n)=>t.slice(e,n),r=n(32,127),i=n(0,24);i.push(25),i.push.apply(i,n(28,32));let a=n(0,14),o;for(o in e.setDefault(1,0),e.addMany(r,0,2,0),a)e.addMany([24,26,153,154],o,3,0),e.addMany(n(128,144),o,3,0),e.addMany(n(144,152),o,3,0),e.add(156,o,0,0),e.add(27,o,11,1),e.add(157,o,4,8),e.addMany([152,158,159],o,0,7),e.add(155,o,11,3),e.add(144,o,11,9);return e.addMany(i,0,3,0),e.addMany(i,1,3,1),e.add(127,1,0,1),e.addMany(i,8,0,8),e.addMany(i,3,3,3),e.add(127,3,0,3),e.addMany(i,4,3,4),e.add(127,4,0,4),e.addMany(i,6,3,6),e.addMany(i,5,3,5),e.add(127,5,0,5),e.addMany(i,2,3,2),e.add(127,2,0,2),e.add(93,1,4,8),e.addMany(r,8,5,8),e.add(127,8,5,8),e.addMany([156,27,24,26,7],8,6,0),e.addMany(n(28,32),8,0,8),e.addMany([88,94,95],1,0,7),e.addMany(r,7,0,7),e.addMany(i,7,0,7),e.add(156,7,0,0),e.add(127,7,0,7),e.add(91,1,11,3),e.addMany(n(64,127),3,7,0),e.addMany(n(48,60),3,8,4),e.addMany([60,61,62,63],3,9,4),e.addMany(n(48,60),4,8,4),e.addMany(n(64,127),4,7,0),e.addMany([60,61,62,63],4,0,6),e.addMany(n(32,64),6,0,6),e.add(127,6,0,6),e.addMany(n(64,127),6,0,0),e.addMany(n(32,48),3,9,5),e.addMany(n(32,48),5,9,5),e.addMany(n(48,64),5,0,6),e.addMany(n(64,127),5,7,0),e.addMany(n(32,48),4,9,5),e.addMany(n(32,48),1,9,2),e.addMany(n(32,48),2,9,2),e.addMany(n(48,127),2,10,0),e.addMany(n(48,80),1,10,0),e.addMany(n(81,88),1,10,0),e.addMany([89,90,92],1,10,0),e.addMany(n(96,127),1,10,0),e.add(80,1,11,9),e.addMany(i,9,0,9),e.add(127,9,0,9),e.addMany(n(28,32),9,0,9),e.addMany(n(32,48),9,9,12),e.addMany(n(48,60),9,8,10),e.addMany([60,61,62,63],9,9,10),e.addMany(i,11,0,11),e.addMany(n(32,128),11,0,11),e.addMany(n(28,32),11,0,11),e.addMany(i,10,0,10),e.add(127,10,0,10),e.addMany(n(28,32),10,0,10),e.addMany(n(48,60),10,8,10),e.addMany([60,61,62,63],10,0,11),e.addMany(n(32,48),10,9,12),e.addMany(i,12,0,12),e.add(127,12,0,12),e.addMany(n(28,32),12,0,12),e.addMany(n(32,48),12,9,12),e.addMany(n(48,64),12,0,11),e.addMany(n(64,127),12,12,13),e.addMany(n(64,127),10,12,13),e.addMany(n(64,127),9,12,13),e.addMany(i,13,13,13),e.addMany(r,13,13,13),e.add(127,13,0,13),e.addMany([27,156,24,26],13,14,0),e.add(Cu,0,2,0),e.add(Cu,8,5,8),e.add(Cu,6,0,6),e.add(Cu,11,0,11),e.add(Cu,13,13,13),e}(),Tu=class extends Ci{constructor(e=wu){super(),this._transitions=e,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new mu,this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._printHandlerFb=(e,t,n)=>{},this._executeHandlerFb=e=>{},this._csiHandlerFb=(e,t)=>{},this._escHandlerFb=e=>{},this._errorHandlerFb=e=>e,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this._register(bi(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this._register(new gu),this._dcsParser=this._register(new yu),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:`\\`},()=>!0)}_identifier(e,t=[64,126]){let n=0;if(e.prefix){if(e.prefix.length>1)throw Error(`only one byte as prefix supported`);if(n=e.prefix.charCodeAt(0),n&&60>n||n>63)throw Error(`prefix must be in range 0x3c .. 0x3f`)}if(e.intermediates){if(e.intermediates.length>2)throw Error(`only two bytes as intermediates are supported`);for(let t=0;t<e.intermediates.length;++t){let r=e.intermediates.charCodeAt(t);if(32>r||r>47)throw Error(`intermediate must be in range 0x20 .. 0x2f`);n<<=8,n|=r}}if(e.final.length!==1)throw Error(`final must be a single byte`);let r=e.final.charCodeAt(0);if(t[0]>r||r>t[1])throw Error(`final must be in range ${t[0]} .. ${t[1]}`);return n<<=8,n|=r,n}identToString(e){let t=[];for(;e;)t.push(String.fromCharCode(e&255)),e>>=8;return t.reverse().join(``)}setPrintHandler(e){this._printHandler=e}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(e,t){let n=this._identifier(e,[48,126]);this._escHandlers[n]===void 0&&(this._escHandlers[n]=[]);let r=this._escHandlers[n];return r.push(t),{dispose:()=>{let e=r.indexOf(t);e!==-1&&r.splice(e,1)}}}clearEscHandler(e){this._escHandlers[this._identifier(e,[48,126])]&&delete this._escHandlers[this._identifier(e,[48,126])]}setEscHandlerFallback(e){this._escHandlerFb=e}setExecuteHandler(e,t){this._executeHandlers[e.charCodeAt(0)]=t}clearExecuteHandler(e){this._executeHandlers[e.charCodeAt(0)]&&delete this._executeHandlers[e.charCodeAt(0)]}setExecuteHandlerFallback(e){this._executeHandlerFb=e}registerCsiHandler(e,t){let n=this._identifier(e);this._csiHandlers[n]===void 0&&(this._csiHandlers[n]=[]);let r=this._csiHandlers[n];return r.push(t),{dispose:()=>{let e=r.indexOf(t);e!==-1&&r.splice(e,1)}}}clearCsiHandler(e){this._csiHandlers[this._identifier(e)]&&delete this._csiHandlers[this._identifier(e)]}setCsiHandlerFallback(e){this._csiHandlerFb=e}registerDcsHandler(e,t){return this._dcsParser.registerHandler(this._identifier(e),t)}clearDcsHandler(e){this._dcsParser.clearHandler(this._identifier(e))}setDcsHandlerFallback(e){this._dcsParser.setHandlerFallback(e)}registerOscHandler(e,t){return this._oscParser.registerHandler(e,t)}clearOscHandler(e){this._oscParser.clearHandler(e)}setOscHandlerFallback(e){this._oscParser.setHandlerFallback(e)}setErrorHandler(e){this._errorHandler=e}clearErrorHandler(){this._errorHandler=this._errorHandlerFb}reset(){this.currentState=this.initialState,this._oscParser.reset(),this._dcsParser.reset(),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._parseStack.state!==0&&(this._parseStack.state=2,this._parseStack.handlers=[])}_preserveStack(e,t,n,r,i){this._parseStack.state=e,this._parseStack.handlers=t,this._parseStack.handlerPos=n,this._parseStack.transition=r,this._parseStack.chunkPos=i}parse(e,t,n){let r=0,i=0,a=0,o;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,a=this._parseStack.chunkPos+1;else{if(n===void 0||this._parseStack.state===1)throw this._parseStack.state=1,Error(`improper continuation due to previous async handler, giving up parsing`);let t=this._parseStack.handlers,i=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(n===!1&&i>-1){for(;i>=0&&(o=t[i](this._params),o!==!0);i--)if(o instanceof Promise)return this._parseStack.handlerPos=i,o}this._parseStack.handlers=[];break;case 4:if(n===!1&&i>-1){for(;i>=0&&(o=t[i](),o!==!0);i--)if(o instanceof Promise)return this._parseStack.handlerPos=i,o}this._parseStack.handlers=[];break;case 6:if(r=e[this._parseStack.chunkPos],o=this._dcsParser.unhook(r!==24&&r!==26,n),o)return o;r===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(r=e[this._parseStack.chunkPos],o=this._oscParser.end(r!==24&&r!==26,n),o)return o;r===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break}this._parseStack.state=0,a=this._parseStack.chunkPos+1,this.precedingJoinState=0,this.currentState=this._parseStack.transition&15}for(let n=a;n<t;++n){switch(r=e[n],i=this._transitions.table[this.currentState<<8|(r<160?r:Cu)],i>>4){case 2:for(let i=n+1;;++i){if(i>=t||(r=e[i])<32||r>126&&r<Cu){this._printHandler(e,n,i),n=i-1;break}if(++i>=t||(r=e[i])<32||r>126&&r<Cu){this._printHandler(e,n,i),n=i-1;break}if(++i>=t||(r=e[i])<32||r>126&&r<Cu){this._printHandler(e,n,i),n=i-1;break}if(++i>=t||(r=e[i])<32||r>126&&r<Cu){this._printHandler(e,n,i),n=i-1;break}}break;case 3:this._executeHandlers[r]?this._executeHandlers[r]():this._executeHandlerFb(r),this.precedingJoinState=0;break;case 0:break;case 1:if(this._errorHandler({position:n,code:r,currentState:this.currentState,collect:this._collect,params:this._params,abort:!1}).abort)return;break;case 7:let a=this._csiHandlers[this._collect<<8|r],s=a?a.length-1:-1;for(;s>=0&&(o=a[s](this._params),o!==!0);s--)if(o instanceof Promise)return this._preserveStack(3,a,s,i,n),o;s<0&&this._csiHandlerFb(this._collect<<8|r,this._params),this.precedingJoinState=0;break;case 8:do switch(r){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(r-48)}while(++n<t&&(r=e[n])>47&&r<60);n--;break;case 9:this._collect<<=8,this._collect|=r;break;case 10:let c=this._escHandlers[this._collect<<8|r],l=c?c.length-1:-1;for(;l>=0&&(o=c[l](),o!==!0);l--)if(o instanceof Promise)return this._preserveStack(4,c,l,i,n),o;l<0&&this._escHandlerFb(this._collect<<8|r),this.precedingJoinState=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|r,this._params);break;case 13:for(let i=n+1;;++i)if(i>=t||(r=e[i])===24||r===26||r===27||r>127&&r<Cu){this._dcsParser.put(e,n,i),n=i-1;break}break;case 14:if(o=this._dcsParser.unhook(r!==24&&r!==26),o)return this._preserveStack(6,[],0,i,n),o;r===27&&(i|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0;break;case 4:this._oscParser.start();break;case 5:for(let i=n+1;;i++)if(i>=t||(r=e[i])<32||r>127&&r<Cu){this._oscParser.put(e,n,i),n=i-1;break}break;case 6:if(o=this._oscParser.end(r!==24&&r!==26),o)return this._preserveStack(5,[],0,i,n),o;r===27&&(i|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0;break}this.currentState=i&15}}},Eu=/^([\da-f])\/([\da-f])\/([\da-f])$|^([\da-f]{2})\/([\da-f]{2})\/([\da-f]{2})$|^([\da-f]{3})\/([\da-f]{3})\/([\da-f]{3})$|^([\da-f]{4})\/([\da-f]{4})\/([\da-f]{4})$/,Du=/^[\da-f]+$/;function Ou(e){if(!e)return;let t=e.toLowerCase();if(t.indexOf(`rgb:`)===0){t=t.slice(4);let e=Eu.exec(t);if(e){let t=e[1]?15:e[4]?255:e[7]?4095:65535;return[Math.round(parseInt(e[1]||e[4]||e[7]||e[10],16)/t*255),Math.round(parseInt(e[2]||e[5]||e[8]||e[11],16)/t*255),Math.round(parseInt(e[3]||e[6]||e[9]||e[12],16)/t*255)]}}else if(t.indexOf(`#`)===0&&(t=t.slice(1),Du.exec(t)&&[3,6,9,12].includes(t.length))){let e=t.length/3,n=[0,0,0];for(let r=0;r<3;++r){let i=parseInt(t.slice(e*r,e*r+e),16);n[r]=e===1?i<<4:e===2?i:e===3?i>>4:i>>8}return n}}function ku(e,t){let n=e.toString(16),r=n.length<2?`0`+n:n;switch(t){case 4:return n[0];case 8:return r;case 12:return(r+r).slice(0,3);default:return r+r}}function Au(e,t=16){let[n,r,i]=e;return`rgb:${ku(n,t)}/${ku(r,t)}/${ku(i,t)}`}var ju={"(":0,")":1,"*":2,"+":3,"-":1,".":2},Mu=131072,Nu=10;function Pu(e,t){if(e>24)return t.setWinLines||!1;switch(e){case 1:return!!t.restoreWin;case 2:return!!t.minimizeWin;case 3:return!!t.setWinPosition;case 4:return!!t.setWinSizePixels;case 5:return!!t.raiseWin;case 6:return!!t.lowerWin;case 7:return!!t.refreshWin;case 8:return!!t.setWinSizeChars;case 9:return!!t.maximizeWin;case 10:return!!t.fullscreenWin;case 11:return!!t.getWinState;case 13:return!!t.getWinPosition;case 14:return!!t.getWinSizePixels;case 15:return!!t.getScreenSizePixels;case 16:return!!t.getCellSizePixels;case 18:return!!t.getWinSizeChars;case 19:return!!t.getScreenSizeChars;case 20:return!!t.getIconTitle;case 21:return!!t.getWinTitle;case 22:return!!t.pushTitle;case 23:return!!t.popTitle;case 24:return!!t.setWinLines}return!1}var Fu=5e3,Iu=0,Lu=class extends Ci{constructor(e,t,n,r,i,a,o,s,c=new Tu){super(),this._bufferService=e,this._charsetService=t,this._coreService=n,this._logService=r,this._optionsService=i,this._oscLinkService=a,this._coreMouseService=o,this._unicodeService=s,this._parser=c,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new mr,this._utf8Decoder=new hr,this._windowTitle=``,this._iconName=``,this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=El.clone(),this._eraseAttrDataInternal=El.clone(),this._onRequestBell=this._register(new Z),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this._register(new Z),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this._register(new Z),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this._register(new Z),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this._register(new Z),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this._register(new Z),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this._register(new Z),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this._register(new Z),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this._register(new Z),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this._register(new Z),this.onLineFeed=this._onLineFeed.event,this._onScroll=this._register(new Z),this.onScroll=this._onScroll.event,this._onTitleChange=this._register(new Z),this.onTitleChange=this._onTitleChange.event,this._onColor=this._register(new Z),this.onColor=this._onColor.event,this._parseStack={paused:!1,cursorStartX:0,cursorStartY:0,decodedLength:0,position:0},this._specialColors=[256,257,258],this._register(this._parser),this._dirtyRowTracker=new Ru(this._bufferService),this._activeBuffer=this._bufferService.buffer,this._register(this._bufferService.buffers.onBufferActivate(e=>this._activeBuffer=e.activeBuffer)),this._parser.setCsiHandlerFallback((e,t)=>{this._logService.debug(`Unknown CSI code: `,{identifier:this._parser.identToString(e),params:t.toArray()})}),this._parser.setEscHandlerFallback(e=>{this._logService.debug(`Unknown ESC code: `,{identifier:this._parser.identToString(e)})}),this._parser.setExecuteHandlerFallback(e=>{this._logService.debug(`Unknown EXECUTE code: `,{code:e})}),this._parser.setOscHandlerFallback((e,t,n)=>{this._logService.debug(`Unknown OSC code: `,{identifier:e,action:t,data:n})}),this._parser.setDcsHandlerFallback((e,t,n)=>{t===`HOOK`&&(n=n.toArray()),this._logService.debug(`Unknown DCS code: `,{identifier:this._parser.identToString(e),action:t,payload:n})}),this._parser.setPrintHandler((e,t,n)=>this.print(e,t,n)),this._parser.registerCsiHandler({final:`@`},e=>this.insertChars(e)),this._parser.registerCsiHandler({intermediates:` `,final:`@`},e=>this.scrollLeft(e)),this._parser.registerCsiHandler({final:`A`},e=>this.cursorUp(e)),this._parser.registerCsiHandler({intermediates:` `,final:`A`},e=>this.scrollRight(e)),this._parser.registerCsiHandler({final:`B`},e=>this.cursorDown(e)),this._parser.registerCsiHandler({final:`C`},e=>this.cursorForward(e)),this._parser.registerCsiHandler({final:`D`},e=>this.cursorBackward(e)),this._parser.registerCsiHandler({final:`E`},e=>this.cursorNextLine(e)),this._parser.registerCsiHandler({final:`F`},e=>this.cursorPrecedingLine(e)),this._parser.registerCsiHandler({final:`G`},e=>this.cursorCharAbsolute(e)),this._parser.registerCsiHandler({final:`H`},e=>this.cursorPosition(e)),this._parser.registerCsiHandler({final:`I`},e=>this.cursorForwardTab(e)),this._parser.registerCsiHandler({final:`J`},e=>this.eraseInDisplay(e,!1)),this._parser.registerCsiHandler({prefix:`?`,final:`J`},e=>this.eraseInDisplay(e,!0)),this._parser.registerCsiHandler({final:`K`},e=>this.eraseInLine(e,!1)),this._parser.registerCsiHandler({prefix:`?`,final:`K`},e=>this.eraseInLine(e,!0)),this._parser.registerCsiHandler({final:`L`},e=>this.insertLines(e)),this._parser.registerCsiHandler({final:`M`},e=>this.deleteLines(e)),this._parser.registerCsiHandler({final:`P`},e=>this.deleteChars(e)),this._parser.registerCsiHandler({final:`S`},e=>this.scrollUp(e)),this._parser.registerCsiHandler({final:`T`},e=>this.scrollDown(e)),this._parser.registerCsiHandler({final:`X`},e=>this.eraseChars(e)),this._parser.registerCsiHandler({final:`Z`},e=>this.cursorBackwardTab(e)),this._parser.registerCsiHandler({final:"`"},e=>this.charPosAbsolute(e)),this._parser.registerCsiHandler({final:`a`},e=>this.hPositionRelative(e)),this._parser.registerCsiHandler({final:`b`},e=>this.repeatPrecedingCharacter(e)),this._parser.registerCsiHandler({final:`c`},e=>this.sendDeviceAttributesPrimary(e)),this._parser.registerCsiHandler({prefix:`>`,final:`c`},e=>this.sendDeviceAttributesSecondary(e)),this._parser.registerCsiHandler({final:`d`},e=>this.linePosAbsolute(e)),this._parser.registerCsiHandler({final:`e`},e=>this.vPositionRelative(e)),this._parser.registerCsiHandler({final:`f`},e=>this.hVPosition(e)),this._parser.registerCsiHandler({final:`g`},e=>this.tabClear(e)),this._parser.registerCsiHandler({final:`h`},e=>this.setMode(e)),this._parser.registerCsiHandler({prefix:`?`,final:`h`},e=>this.setModePrivate(e)),this._parser.registerCsiHandler({final:`l`},e=>this.resetMode(e)),this._parser.registerCsiHandler({prefix:`?`,final:`l`},e=>this.resetModePrivate(e)),this._parser.registerCsiHandler({final:`m`},e=>this.charAttributes(e)),this._parser.registerCsiHandler({final:`n`},e=>this.deviceStatus(e)),this._parser.registerCsiHandler({prefix:`?`,final:`n`},e=>this.deviceStatusPrivate(e)),this._parser.registerCsiHandler({intermediates:`!`,final:`p`},e=>this.softReset(e)),this._parser.registerCsiHandler({intermediates:` `,final:`q`},e=>this.setCursorStyle(e)),this._parser.registerCsiHandler({final:`r`},e=>this.setScrollRegion(e)),this._parser.registerCsiHandler({final:`s`},e=>this.saveCursor(e)),this._parser.registerCsiHandler({final:`t`},e=>this.windowOptions(e)),this._parser.registerCsiHandler({final:`u`},e=>this.restoreCursor(e)),this._parser.registerCsiHandler({intermediates:`'`,final:`}`},e=>this.insertColumns(e)),this._parser.registerCsiHandler({intermediates:`'`,final:`~`},e=>this.deleteColumns(e)),this._parser.registerCsiHandler({intermediates:`"`,final:`q`},e=>this.selectProtected(e)),this._parser.registerCsiHandler({intermediates:`$`,final:`p`},e=>this.requestMode(e,!0)),this._parser.registerCsiHandler({prefix:`?`,intermediates:`$`,final:`p`},e=>this.requestMode(e,!1)),this._parser.setExecuteHandler(Q.BEL,()=>this.bell()),this._parser.setExecuteHandler(Q.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(Q.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(Q.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(Q.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(Q.BS,()=>this.backspace()),this._parser.setExecuteHandler(Q.HT,()=>this.tab()),this._parser.setExecuteHandler(Q.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(Q.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(Ds.IND,()=>this.index()),this._parser.setExecuteHandler(Ds.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(Ds.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new _u(e=>(this.setTitle(e),this.setIconName(e),!0))),this._parser.registerOscHandler(1,new _u(e=>this.setIconName(e))),this._parser.registerOscHandler(2,new _u(e=>this.setTitle(e))),this._parser.registerOscHandler(4,new _u(e=>this.setOrReportIndexedColor(e))),this._parser.registerOscHandler(8,new _u(e=>this.setHyperlink(e))),this._parser.registerOscHandler(10,new _u(e=>this.setOrReportFgColor(e))),this._parser.registerOscHandler(11,new _u(e=>this.setOrReportBgColor(e))),this._parser.registerOscHandler(12,new _u(e=>this.setOrReportCursorColor(e))),this._parser.registerOscHandler(104,new _u(e=>this.restoreIndexedColor(e))),this._parser.registerOscHandler(110,new _u(e=>this.restoreFgColor(e))),this._parser.registerOscHandler(111,new _u(e=>this.restoreBgColor(e))),this._parser.registerOscHandler(112,new _u(e=>this.restoreCursorColor(e))),this._parser.registerEscHandler({final:`7`},()=>this.saveCursor()),this._parser.registerEscHandler({final:`8`},()=>this.restoreCursor()),this._parser.registerEscHandler({final:`D`},()=>this.index()),this._parser.registerEscHandler({final:`E`},()=>this.nextLine()),this._parser.registerEscHandler({final:`H`},()=>this.tabSet()),this._parser.registerEscHandler({final:`M`},()=>this.reverseIndex()),this._parser.registerEscHandler({final:`=`},()=>this.keypadApplicationMode()),this._parser.registerEscHandler({final:`>`},()=>this.keypadNumericMode()),this._parser.registerEscHandler({final:`c`},()=>this.fullReset()),this._parser.registerEscHandler({final:`n`},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:`o`},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:`|`},()=>this.setgLevel(3)),this._parser.registerEscHandler({final:`}`},()=>this.setgLevel(2)),this._parser.registerEscHandler({final:`~`},()=>this.setgLevel(1)),this._parser.registerEscHandler({intermediates:`%`,final:`@`},()=>this.selectDefaultCharset()),this._parser.registerEscHandler({intermediates:`%`,final:`G`},()=>this.selectDefaultCharset());for(let e in Ll)this._parser.registerEscHandler({intermediates:`(`,final:e},()=>this.selectCharset(`(`+e)),this._parser.registerEscHandler({intermediates:`)`,final:e},()=>this.selectCharset(`)`+e)),this._parser.registerEscHandler({intermediates:`*`,final:e},()=>this.selectCharset(`*`+e)),this._parser.registerEscHandler({intermediates:`+`,final:e},()=>this.selectCharset(`+`+e)),this._parser.registerEscHandler({intermediates:`-`,final:e},()=>this.selectCharset(`-`+e)),this._parser.registerEscHandler({intermediates:`.`,final:e},()=>this.selectCharset(`.`+e)),this._parser.registerEscHandler({intermediates:`/`,final:e},()=>this.selectCharset(`/`+e));this._parser.registerEscHandler({intermediates:`#`,final:`8`},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(e=>(this._logService.error(`Parsing error: `,e),e)),this._parser.registerDcsHandler({intermediates:`$`,final:`q`},new xu((e,t)=>this.requestStatusString(e,t)))}getAttrData(){return this._curAttrData}_preserveStack(e,t,n,r){this._parseStack.paused=!0,this._parseStack.cursorStartX=e,this._parseStack.cursorStartY=t,this._parseStack.decodedLength=n,this._parseStack.position=r}_logSlowResolvingAsync(e){this._logService.logLevel<=3&&Promise.race([e,new Promise((e,t)=>setTimeout(()=>t(`#SLOW_TIMEOUT`),Fu))]).catch(e=>{if(e!==`#SLOW_TIMEOUT`)throw e;console.warn(`async parser handler taking longer than ${Fu} ms`)})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(e,t){let n,r=this._activeBuffer.x,i=this._activeBuffer.y,a=0,o=this._parseStack.paused;if(o){if(n=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,t))return this._logSlowResolvingAsync(n),n;r=this._parseStack.cursorStartX,i=this._parseStack.cursorStartY,this._parseStack.paused=!1,e.length>Mu&&(a=this._parseStack.position+Mu)}if(this._logService.logLevel<=1&&this._logService.debug(`parsing data ${typeof e==`string`?` "${e}"`:` "${Array.prototype.map.call(e,e=>String.fromCharCode(e)).join(``)}"`}`),this._logService.logLevel===0&&this._logService.trace(`parsing data (codes)`,typeof e==`string`?e.split(``).map(e=>e.charCodeAt(0)):e),this._parseBuffer.length<e.length&&this._parseBuffer.length<Mu&&(this._parseBuffer=new Uint32Array(Math.min(e.length,Mu))),o||this._dirtyRowTracker.clearRange(),e.length>Mu)for(let t=a;t<e.length;t+=Mu){let a=t+Mu<e.length?t+Mu:e.length,o=typeof e==`string`?this._stringDecoder.decode(e.substring(t,a),this._parseBuffer):this._utf8Decoder.decode(e.subarray(t,a),this._parseBuffer);if(n=this._parser.parse(this._parseBuffer,o))return this._preserveStack(r,i,o,t),this._logSlowResolvingAsync(n),n}else if(!o){let t=typeof e==`string`?this._stringDecoder.decode(e,this._parseBuffer):this._utf8Decoder.decode(e,this._parseBuffer);if(n=this._parser.parse(this._parseBuffer,t))return this._preserveStack(r,i,t,0),this._logSlowResolvingAsync(n),n}(this._activeBuffer.x!==r||this._activeBuffer.y!==i)&&this._onCursorMove.fire();let s=this._dirtyRowTracker.end+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp),c=this._dirtyRowTracker.start+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp);c<this._bufferService.rows&&this._onRequestRefreshRows.fire({start:Math.min(c,this._bufferService.rows-1),end:Math.min(s,this._bufferService.rows-1)})}print(e,t,n){let r,i,a=this._charsetService.charset,o=this._optionsService.rawOptions.screenReaderMode,s=this._bufferService.cols,c=this._coreService.decPrivateModes.wraparound,l=this._coreService.modes.insertMode,u=this._curAttrData,d=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._activeBuffer.x&&n-t>0&&d.getWidth(this._activeBuffer.x-1)===2&&d.setCellFromCodepoint(this._activeBuffer.x-1,0,1,u);let f=this._parser.precedingJoinState;for(let p=t;p<n;++p){if(r=e[p],r<127&&a){let e=a[String.fromCharCode(r)];e&&(r=e.charCodeAt(0))}let t=this._unicodeService.charProperties(r,f);i=lu.extractWidth(t);let n=lu.extractShouldJoin(t),m=n?lu.extractWidth(f):0;if(f=t,o&&this._onA11yChar.fire(fr(r)),this._getCurrentLinkId()&&this._oscLinkService.addLineToLink(this._getCurrentLinkId(),this._activeBuffer.ybase+this._activeBuffer.y),this._activeBuffer.x+i-m>s){if(c){let e=d,t=this._activeBuffer.x-m;for(this._activeBuffer.x=m,this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData(),!0)):(this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!0),d=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y),m>0&&d instanceof kl&&d.copyCellsFrom(e,t,0,m,!1);t<s;)e.setCellFromCodepoint(t++,0,1,u)}else if(this._activeBuffer.x=s-1,i===2)continue}if(n&&this._activeBuffer.x){let e=d.getWidth(this._activeBuffer.x-1)?1:2;d.addCodepointToCell(this._activeBuffer.x-e,r,i);for(let e=i-m;--e>=0;)d.setCellFromCodepoint(this._activeBuffer.x++,0,0,u);continue}if(l&&(d.insertCells(this._activeBuffer.x,i-m,this._activeBuffer.getNullCell(u)),d.getWidth(s-1)===2&&d.setCellFromCodepoint(s-1,0,1,u)),d.setCellFromCodepoint(this._activeBuffer.x++,r,i,u),i>0)for(;--i;)d.setCellFromCodepoint(this._activeBuffer.x++,0,0,u)}this._parser.precedingJoinState=f,this._activeBuffer.x<s&&n-t>0&&d.getWidth(this._activeBuffer.x)===0&&!d.hasContent(this._activeBuffer.x)&&d.setCellFromCodepoint(this._activeBuffer.x,0,1,u),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(e,t){return e.final===`t`&&!e.prefix&&!e.intermediates?this._parser.registerCsiHandler(e,e=>Pu(e.params[0],this._optionsService.rawOptions.windowOptions)?t(e):!0):this._parser.registerCsiHandler(e,t)}registerDcsHandler(e,t){return this._parser.registerDcsHandler(e,new xu(t))}registerEscHandler(e,t){return this._parser.registerEscHandler(e,t)}registerOscHandler(e,t){return this._parser.registerOscHandler(e,new _u(t))}bell(){return this._onRequestBell.fire(),!0}lineFeed(){return this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._optionsService.rawOptions.convertEol&&(this._activeBuffer.x=0),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows?this._activeBuffer.y=this._bufferService.rows-1:this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.x>=this._bufferService.cols&&this._activeBuffer.x--,this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._onLineFeed.fire(),!0}carriageReturn(){return this._activeBuffer.x=0,!0}backspace(){if(!this._coreService.decPrivateModes.reverseWraparound)return this._restrictCursor(),this._activeBuffer.x>0&&this._activeBuffer.x--,!0;if(this._restrictCursor(this._bufferService.cols),this._activeBuffer.x>0)this._activeBuffer.x--;else if(this._activeBuffer.x===0&&this._activeBuffer.y>this._activeBuffer.scrollTop&&this._activeBuffer.y<=this._activeBuffer.scrollBottom&&this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y)?.isWrapped){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;let e=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);e.hasWidth(this._activeBuffer.x)&&!e.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let e=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-e),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(e=this._bufferService.cols-1){this._activeBuffer.x=Math.min(e,Math.max(0,this._activeBuffer.x)),this._activeBuffer.y=this._coreService.decPrivateModes.origin?Math.min(this._activeBuffer.scrollBottom,Math.max(this._activeBuffer.scrollTop,this._activeBuffer.y)):Math.min(this._bufferService.rows-1,Math.max(0,this._activeBuffer.y)),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_setCursor(e,t){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=e,this._activeBuffer.y=this._activeBuffer.scrollTop+t):(this._activeBuffer.x=e,this._activeBuffer.y=t),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(e,t){this._restrictCursor(),this._setCursor(this._activeBuffer.x+e,this._activeBuffer.y+t)}cursorUp(e){let t=this._activeBuffer.y-this._activeBuffer.scrollTop;return t>=0?this._moveCursor(0,-Math.min(t,e.params[0]||1)):this._moveCursor(0,-(e.params[0]||1)),!0}cursorDown(e){let t=this._activeBuffer.scrollBottom-this._activeBuffer.y;return t>=0?this._moveCursor(0,Math.min(t,e.params[0]||1)):this._moveCursor(0,e.params[0]||1),!0}cursorForward(e){return this._moveCursor(e.params[0]||1,0),!0}cursorBackward(e){return this._moveCursor(-(e.params[0]||1),0),!0}cursorNextLine(e){return this.cursorDown(e),this._activeBuffer.x=0,!0}cursorPrecedingLine(e){return this.cursorUp(e),this._activeBuffer.x=0,!0}cursorCharAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(e){return this._setCursor(e.length>=2?(e.params[1]||1)-1:0,(e.params[0]||1)-1),!0}charPosAbsolute(e){return this._setCursor((e.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(e){return this._moveCursor(e.params[0]||1,0),!0}linePosAbsolute(e){return this._setCursor(this._activeBuffer.x,(e.params[0]||1)-1),!0}vPositionRelative(e){return this._moveCursor(0,e.params[0]||1),!0}hVPosition(e){return this.cursorPosition(e),!0}tabClear(e){let t=e.params[0];return t===0?delete this._activeBuffer.tabs[this._activeBuffer.x]:t===3&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(e){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let t=e.params[0]||1;for(;t--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(e){let t=e.params[0];return t===1&&(this._curAttrData.bg|=536870912),(t===2||t===0)&&(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(e,t,n,r=!1,i=!1){let a=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);a.replaceCells(t,n,this._activeBuffer.getNullCell(this._eraseAttrData()),i),r&&(a.isWrapped=!1)}_resetBufferLine(e,t=!1){let n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n&&(n.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),t),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+e),n.isWrapped=!1)}eraseInDisplay(e,t=!1){this._restrictCursor(this._bufferService.cols);let n;switch(e.params[0]){case 0:for(n=this._activeBuffer.y,this._dirtyRowTracker.markDirty(n),this._eraseInBufferLine(n++,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,t);n<this._bufferService.rows;n++)this._resetBufferLine(n,t);this._dirtyRowTracker.markDirty(n);break;case 1:for(n=this._activeBuffer.y,this._dirtyRowTracker.markDirty(n),this._eraseInBufferLine(n,0,this._activeBuffer.x+1,!0,t),this._activeBuffer.x+1>=this._bufferService.cols&&(this._activeBuffer.lines.get(n+1).isWrapped=!1);n--;)this._resetBufferLine(n,t);this._dirtyRowTracker.markDirty(0);break;case 2:if(this._optionsService.rawOptions.scrollOnEraseInDisplay){for(n=this._bufferService.rows,this._dirtyRowTracker.markRangeDirty(0,n-1);n--&&!this._activeBuffer.lines.get(this._activeBuffer.ybase+n)?.getTrimmedLength(););for(;n>=0;n--)this._bufferService.scroll(this._eraseAttrData())}else{for(n=this._bufferService.rows,this._dirtyRowTracker.markDirty(n-1);n--;)this._resetBufferLine(n,t);this._dirtyRowTracker.markDirty(0)}break;case 3:let e=this._activeBuffer.lines.length-this._bufferService.rows;e>0&&(this._activeBuffer.lines.trimStart(e),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-e,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-e,0),this._onScroll.fire(0));break}return!0}eraseInLine(e,t=!1){switch(this._restrictCursor(this._bufferService.cols),e.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,t);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,t);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,t);break}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let n=this._activeBuffer.ybase+this._activeBuffer.y,r=this._bufferService.rows-1-this._activeBuffer.scrollBottom,i=this._bufferService.rows-1+this._activeBuffer.ybase-r+1;for(;t--;)this._activeBuffer.lines.splice(i-1,1),this._activeBuffer.lines.splice(n,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}deleteLines(e){this._restrictCursor();let t=e.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let n=this._activeBuffer.ybase+this._activeBuffer.y,r;for(r=this._bufferService.rows-1-this._activeBuffer.scrollBottom,r=this._bufferService.rows-1+this._activeBuffer.ybase-r;t--;)this._activeBuffer.lines.splice(n,1),this._activeBuffer.lines.splice(r,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}insertChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.insertCells(this._activeBuffer.x,e.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}deleteChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.deleteCells(this._activeBuffer.x,e.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}scrollUp(e){let t=e.params[0]||1;for(;t--;)this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollTop,1),this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollBottom,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollDown(e){let t=e.params[0]||1;for(;t--;)this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollBottom,1),this._activeBuffer.lines.splice(this._activeBuffer.ybase+this._activeBuffer.scrollTop,0,this._activeBuffer.getBlankLine(El));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollLeft(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let e=this._activeBuffer.scrollTop;e<=this._activeBuffer.scrollBottom;++e){let n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n.deleteCells(0,t,this._activeBuffer.getNullCell(this._eraseAttrData())),n.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollRight(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let e=this._activeBuffer.scrollTop;e<=this._activeBuffer.scrollBottom;++e){let n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n.insertCells(0,t,this._activeBuffer.getNullCell(this._eraseAttrData())),n.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}insertColumns(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let e=this._activeBuffer.scrollTop;e<=this._activeBuffer.scrollBottom;++e){let n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n.insertCells(this._activeBuffer.x,t,this._activeBuffer.getNullCell(this._eraseAttrData())),n.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}deleteColumns(e){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;let t=e.params[0]||1;for(let e=this._activeBuffer.scrollTop;e<=this._activeBuffer.scrollBottom;++e){let n=this._activeBuffer.lines.get(this._activeBuffer.ybase+e);n.deleteCells(this._activeBuffer.x,t,this._activeBuffer.getNullCell(this._eraseAttrData())),n.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}eraseChars(e){this._restrictCursor();let t=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return t&&(t.replaceCells(this._activeBuffer.x,this._activeBuffer.x+(e.params[0]||1),this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}repeatPrecedingCharacter(e){let t=this._parser.precedingJoinState;if(!t)return!0;let n=e.params[0]||1,r=lu.extractWidth(t),i=this._activeBuffer.x-r,a=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).getString(i),o=new Uint32Array(a.length*n),s=0;for(let e=0;e<a.length;){let t=a.codePointAt(e)||0;o[s++]=t,e+=t>65535?2:1}let c=s;for(let e=1;e<n;++e)o.copyWithin(c,0,s),c+=s;return this.print(o,0,c),!0}sendDeviceAttributesPrimary(e){return e.params[0]>0||(this._is(`xterm`)||this._is(`rxvt-unicode`)||this._is(`screen`)?this._coreService.triggerDataEvent(Q.ESC+`[?1;2c`):this._is(`linux`)&&this._coreService.triggerDataEvent(Q.ESC+`[?6c`)),!0}sendDeviceAttributesSecondary(e){return e.params[0]>0||(this._is(`xterm`)?this._coreService.triggerDataEvent(Q.ESC+`[>0;276;0c`):this._is(`rxvt-unicode`)?this._coreService.triggerDataEvent(Q.ESC+`[>85;95;0c`):this._is(`linux`)?this._coreService.triggerDataEvent(e.params[0]+`c`):this._is(`screen`)&&this._coreService.triggerDataEvent(Q.ESC+`[>83;40003;0c`)),!0}_is(e){return(this._optionsService.rawOptions.termName+``).indexOf(e)===0}setMode(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 4:this._coreService.modes.insertMode=!0;break;case 20:this._optionsService.options.convertEol=!0;break}return!0}setModePrivate(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!0;break;case 2:this._charsetService.setgCharset(0,Rl),this._charsetService.setgCharset(1,Rl),this._charsetService.setgCharset(2,Rl),this._charsetService.setgCharset(3,Rl);break;case 3:this._optionsService.rawOptions.windowOptions.setWinLines&&(this._bufferService.resize(132,this._bufferService.rows),this._onRequestReset.fire());break;case 6:this._coreService.decPrivateModes.origin=!0,this._setCursor(0,0);break;case 7:this._coreService.decPrivateModes.wraparound=!0;break;case 12:this._optionsService.options.cursorBlink=!0;break;case 45:this._coreService.decPrivateModes.reverseWraparound=!0;break;case 66:this._logService.debug(`Serial port requested application keypad.`),this._coreService.decPrivateModes.applicationKeypad=!0,this._onRequestSyncScrollBar.fire();break;case 9:this._coreMouseService.activeProtocol=`X10`;break;case 1e3:this._coreMouseService.activeProtocol=`VT200`;break;case 1002:this._coreMouseService.activeProtocol=`DRAG`;break;case 1003:this._coreMouseService.activeProtocol=`ANY`;break;case 1004:this._coreService.decPrivateModes.sendFocus=!0,this._onRequestSendFocus.fire();break;case 1005:this._logService.debug(`DECSET 1005 not supported (see #2507)`);break;case 1006:this._coreMouseService.activeEncoding=`SGR`;break;case 1015:this._logService.debug(`DECSET 1015 not supported (see #2507)`);break;case 1016:this._coreMouseService.activeEncoding=`SGR_PIXELS`;break;case 25:this._coreService.isCursorHidden=!1;break;case 1048:this.saveCursor();break;case 1049:this.saveCursor();case 47:case 1047:this._bufferService.buffers.activateAltBuffer(this._eraseAttrData()),this._coreService.isCursorInitialized=!0,this._onRequestRefreshRows.fire(void 0),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!0;break;case 2026:this._coreService.decPrivateModes.synchronizedOutput=!0;break}return!0}resetMode(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 4:this._coreService.modes.insertMode=!1;break;case 20:this._optionsService.options.convertEol=!1;break}return!0}resetModePrivate(e){for(let t=0;t<e.length;t++)switch(e.params[t]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!1;break;case 3:this._optionsService.rawOptions.windowOptions.setWinLines&&(this._bufferService.resize(80,this._bufferService.rows),this._onRequestReset.fire());break;case 6:this._coreService.decPrivateModes.origin=!1,this._setCursor(0,0);break;case 7:this._coreService.decPrivateModes.wraparound=!1;break;case 12:this._optionsService.options.cursorBlink=!1;break;case 45:this._coreService.decPrivateModes.reverseWraparound=!1;break;case 66:this._logService.debug(`Switching back to normal keypad.`),this._coreService.decPrivateModes.applicationKeypad=!1,this._onRequestSyncScrollBar.fire();break;case 9:case 1e3:case 1002:case 1003:this._coreMouseService.activeProtocol=`NONE`;break;case 1004:this._coreService.decPrivateModes.sendFocus=!1;break;case 1005:this._logService.debug(`DECRST 1005 not supported (see #2507)`);break;case 1006:this._coreMouseService.activeEncoding=`DEFAULT`;break;case 1015:this._logService.debug(`DECRST 1015 not supported (see #2507)`);break;case 1016:this._coreMouseService.activeEncoding=`DEFAULT`;break;case 25:this._coreService.isCursorHidden=!0;break;case 1048:this.restoreCursor();break;case 1049:case 47:case 1047:this._bufferService.buffers.activateNormalBuffer(),e.params[t]===1049&&this.restoreCursor(),this._coreService.isCursorInitialized=!0,this._onRequestRefreshRows.fire(void 0),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!1;break;case 2026:this._coreService.decPrivateModes.synchronizedOutput=!1,this._onRequestRefreshRows.fire(void 0);break}return!0}requestMode(e,t){let n;(e=>(e[e.NOT_RECOGNIZED=0]=`NOT_RECOGNIZED`,e[e.SET=1]=`SET`,e[e.RESET=2]=`RESET`,e[e.PERMANENTLY_SET=3]=`PERMANENTLY_SET`,e[e.PERMANENTLY_RESET=4]=`PERMANENTLY_RESET`))(n||={});let r=this._coreService.decPrivateModes,{activeProtocol:i,activeEncoding:a}=this._coreMouseService,o=this._coreService,{buffers:s,cols:c}=this._bufferService,{active:l,alt:u}=s,d=this._optionsService.rawOptions,f=(e,n)=>(o.triggerDataEvent(`${Q.ESC}[${t?``:`?`}${e};${n}$y`),!0),p=e=>e?1:2,m=e.params[0];return t?m===2?f(m,4):m===4?f(m,p(o.modes.insertMode)):m===12?f(m,3):m===20?f(m,p(d.convertEol)):f(m,0):m===1?f(m,p(r.applicationCursorKeys)):m===3?f(m,d.windowOptions.setWinLines?c===80?2:+(c===132):0):m===6?f(m,p(r.origin)):m===7?f(m,p(r.wraparound)):m===8?f(m,3):m===9?f(m,p(i===`X10`)):m===12?f(m,p(d.cursorBlink)):m===25?f(m,p(!o.isCursorHidden)):m===45?f(m,p(r.reverseWraparound)):m===66?f(m,p(r.applicationKeypad)):m===67?f(m,4):m===1e3?f(m,p(i===`VT200`)):m===1002?f(m,p(i===`DRAG`)):m===1003?f(m,p(i===`ANY`)):m===1004?f(m,p(r.sendFocus)):m===1005?f(m,4):m===1006?f(m,p(a===`SGR`)):m===1015?f(m,4):m===1016?f(m,p(a===`SGR_PIXELS`)):m===1048?f(m,1):m===47||m===1047||m===1049?f(m,p(l===u)):m===2004?f(m,p(r.bracketedPasteMode)):m===2026?f(m,p(r.synchronizedOutput)):f(m,0)}_updateAttrColor(e,t,n,r,i){return t===2?(e|=50331648,e&=-16777216,e|=vr.fromColorRGB([n,r,i])):t===5&&(e&=-50331904,e|=33554432|n&255),e}_extractColor(e,t,n){let r=[0,0,-1,0,0,0],i=0,a=0;do{if(r[a+i]=e.params[t+a],e.hasSubParams(t+a)){let n=e.getSubParams(t+a),o=0;do r[1]===5&&(i=1),r[a+o+1+i]=n[o];while(++o<n.length&&o+a+1+i<r.length);break}if(r[1]===5&&a+i>=2||r[1]===2&&a+i>=5)break;r[1]&&(i=1)}while(++a+t<e.length&&a+i<r.length);for(let e=2;e<r.length;++e)r[e]===-1&&(r[e]=0);switch(r[0]){case 38:n.fg=this._updateAttrColor(n.fg,r[1],r[3],r[4],r[5]);break;case 48:n.bg=this._updateAttrColor(n.bg,r[1],r[3],r[4],r[5]);break;case 58:n.extended=n.extended.clone(),n.extended.underlineColor=this._updateAttrColor(n.extended.underlineColor,r[1],r[3],r[4],r[5])}return a}_processUnderline(e,t){t.extended=t.extended.clone(),(!~e||e>5)&&(e=1),t.extended.underlineStyle=e,t.fg|=268435456,e===0&&(t.fg&=-268435457),t.updateExtended()}_processSGR0(e){e.fg=El.fg,e.bg=El.bg,e.extended=e.extended.clone(),e.extended.underlineStyle=0,e.extended.underlineColor&=-67108864,e.updateExtended()}charAttributes(e){if(e.length===1&&e.params[0]===0)return this._processSGR0(this._curAttrData),!0;let t=e.length,n,r=this._curAttrData;for(let i=0;i<t;i++)n=e.params[i],n>=30&&n<=37?(r.fg&=-50331904,r.fg|=16777216|n-30):n>=40&&n<=47?(r.bg&=-50331904,r.bg|=16777216|n-40):n>=90&&n<=97?(r.fg&=-50331904,r.fg|=n-90|16777224):n>=100&&n<=107?(r.bg&=-50331904,r.bg|=n-100|16777224):n===0?this._processSGR0(r):n===1?r.fg|=134217728:n===3?r.bg|=67108864:n===4?(r.fg|=268435456,this._processUnderline(e.hasSubParams(i)?e.getSubParams(i)[0]:1,r)):n===5?r.fg|=536870912:n===7?r.fg|=67108864:n===8?r.fg|=1073741824:n===9?r.fg|=2147483648:n===2?r.bg|=134217728:n===21?this._processUnderline(2,r):n===22?(r.fg&=-134217729,r.bg&=-134217729):n===23?r.bg&=-67108865:n===24?(r.fg&=-268435457,this._processUnderline(0,r)):n===25?r.fg&=-536870913:n===27?r.fg&=-67108865:n===28?r.fg&=-1073741825:n===29?r.fg&=2147483647:n===39?(r.fg&=-67108864,r.fg|=El.fg&16777215):n===49?(r.bg&=-67108864,r.bg|=El.bg&16777215):n===38||n===48||n===58?i+=this._extractColor(e,i,r):n===53?r.bg|=1073741824:n===55?r.bg&=-1073741825:n===59?(r.extended=r.extended.clone(),r.extended.underlineColor=-1,r.updateExtended()):n===100?(r.fg&=-67108864,r.fg|=El.fg&16777215,r.bg&=-67108864,r.bg|=El.bg&16777215):this._logService.debug(`Unknown SGR attribute: %d.`,n);return!0}deviceStatus(e){switch(e.params[0]){case 5:this._coreService.triggerDataEvent(`${Q.ESC}[0n`);break;case 6:let e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${Q.ESC}[${e};${t}R`);break}return!0}deviceStatusPrivate(e){switch(e.params[0]){case 6:let e=this._activeBuffer.y+1,t=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${Q.ESC}[?${e};${t}R`);break;case 15:break;case 25:break;case 26:break;case 53:break}return!0}softReset(e){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=El.clone(),this._coreService.reset(),this._charsetService.reset(),this._activeBuffer.savedX=0,this._activeBuffer.savedY=this._activeBuffer.ybase,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,this._coreService.decPrivateModes.origin=!1,!0}setCursorStyle(e){let t=e.length===0?1:e.params[0];if(t===0)this._coreService.decPrivateModes.cursorStyle=void 0,this._coreService.decPrivateModes.cursorBlink=void 0;else{switch(t){case 1:case 2:this._coreService.decPrivateModes.cursorStyle=`block`;break;case 3:case 4:this._coreService.decPrivateModes.cursorStyle=`underline`;break;case 5:case 6:this._coreService.decPrivateModes.cursorStyle=`bar`;break}let e=t%2==1;this._coreService.decPrivateModes.cursorBlink=e}return!0}setScrollRegion(e){let t=e.params[0]||1,n;return(e.length<2||(n=e.params[1])>this._bufferService.rows||n===0)&&(n=this._bufferService.rows),n>t&&(this._activeBuffer.scrollTop=t-1,this._activeBuffer.scrollBottom=n-1,this._setCursor(0,0)),!0}windowOptions(e){if(!Pu(e.params[0],this._optionsService.rawOptions.windowOptions))return!0;let t=e.length>1?e.params[1]:0;switch(e.params[0]){case 14:t!==2&&this._onRequestWindowsOptionsReport.fire(0);break;case 16:this._onRequestWindowsOptionsReport.fire(1);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${Q.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:(t===0||t===2)&&(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>Nu&&this._windowTitleStack.shift()),(t===0||t===1)&&(this._iconNameStack.push(this._iconName),this._iconNameStack.length>Nu&&this._iconNameStack.shift());break;case 23:(t===0||t===2)&&this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),(t===0||t===1)&&this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop());break}return!0}saveCursor(e){return this._activeBuffer.savedX=this._activeBuffer.x,this._activeBuffer.savedY=this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.savedCurAttrData.fg=this._curAttrData.fg,this._activeBuffer.savedCurAttrData.bg=this._curAttrData.bg,this._activeBuffer.savedCharset=this._charsetService.charset,!0}restoreCursor(e){return this._activeBuffer.x=this._activeBuffer.savedX||0,this._activeBuffer.y=Math.max(this._activeBuffer.savedY-this._activeBuffer.ybase,0),this._curAttrData.fg=this._activeBuffer.savedCurAttrData.fg,this._curAttrData.bg=this._activeBuffer.savedCurAttrData.bg,this._charsetService.charset=this._savedCharset,this._activeBuffer.savedCharset&&(this._charsetService.charset=this._activeBuffer.savedCharset),this._restrictCursor(),!0}setTitle(e){return this._windowTitle=e,this._onTitleChange.fire(e),!0}setIconName(e){return this._iconName=e,!0}setOrReportIndexedColor(e){let t=[],n=e.split(`;`);for(;n.length>1;){let e=n.shift(),r=n.shift();if(/^\d+$/.exec(e)){let n=parseInt(e);if(zu(n))if(r===`?`)t.push({type:0,index:n});else{let e=Ou(r);e&&t.push({type:1,index:n,color:e})}}}return t.length&&this._onColor.fire(t),!0}setHyperlink(e){let t=e.indexOf(`;`);if(t===-1)return!0;let n=e.slice(0,t).trim(),r=e.slice(t+1);return r?this._createHyperlink(n,r):n.trim()?!1:this._finishHyperlink()}_createHyperlink(e,t){this._getCurrentLinkId()&&this._finishHyperlink();let n=e.split(`:`),r,i=n.findIndex(e=>e.startsWith(`id=`));return i!==-1&&(r=n[i].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:r,uri:t}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(e,t){let n=e.split(`;`);for(let e=0;e<n.length&&!(t>=this._specialColors.length);++e,++t)if(n[e]===`?`)this._onColor.fire([{type:0,index:this._specialColors[t]}]);else{let r=Ou(n[e]);r&&this._onColor.fire([{type:1,index:this._specialColors[t],color:r}])}return!0}setOrReportFgColor(e){return this._setOrReportSpecialColor(e,0)}setOrReportBgColor(e){return this._setOrReportSpecialColor(e,1)}setOrReportCursorColor(e){return this._setOrReportSpecialColor(e,2)}restoreIndexedColor(e){if(!e)return this._onColor.fire([{type:2}]),!0;let t=[],n=e.split(`;`);for(let e=0;e<n.length;++e)if(/^\d+$/.exec(n[e])){let r=parseInt(n[e]);zu(r)&&t.push({type:2,index:r})}return t.length&&this._onColor.fire(t),!0}restoreFgColor(e){return this._onColor.fire([{type:2,index:256}]),!0}restoreBgColor(e){return this._onColor.fire([{type:2,index:257}]),!0}restoreCursorColor(e){return this._onColor.fire([{type:2,index:258}]),!0}nextLine(){return this._activeBuffer.x=0,this.index(),!0}keypadApplicationMode(){return this._logService.debug(`Serial port requested application keypad.`),this._coreService.decPrivateModes.applicationKeypad=!0,this._onRequestSyncScrollBar.fire(),!0}keypadNumericMode(){return this._logService.debug(`Switching back to normal keypad.`),this._coreService.decPrivateModes.applicationKeypad=!1,this._onRequestSyncScrollBar.fire(),!0}selectDefaultCharset(){return this._charsetService.setgLevel(0),this._charsetService.setgCharset(0,Rl),!0}selectCharset(e){return e.length===2?(e[0]===`/`||this._charsetService.setgCharset(ju[e[0]],Ll[e[1]]||Rl),!0):(this.selectDefaultCharset(),!0)}index(){return this._restrictCursor(),this._activeBuffer.y++,this._activeBuffer.y===this._activeBuffer.scrollBottom+1?(this._activeBuffer.y--,this._bufferService.scroll(this._eraseAttrData())):this._activeBuffer.y>=this._bufferService.rows&&(this._activeBuffer.y=this._bufferService.rows-1),this._restrictCursor(),!0}tabSet(){return this._activeBuffer.tabs[this._activeBuffer.x]=!0,!0}reverseIndex(){if(this._restrictCursor(),this._activeBuffer.y===this._activeBuffer.scrollTop){let e=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,e,1),this._activeBuffer.lines.set(this._activeBuffer.ybase+this._activeBuffer.y,this._activeBuffer.getBlankLine(this._eraseAttrData())),this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom)}else this._activeBuffer.y--,this._restrictCursor();return!0}fullReset(){return this._parser.reset(),this._onRequestReset.fire(),!0}reset(){this._curAttrData=El.clone(),this._eraseAttrDataInternal=El.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=this._curAttrData.bg&67108863,this._eraseAttrDataInternal}setgLevel(e){return this._charsetService.setgLevel(e),!0}screenAlignmentPattern(){let e=new br;e.content=4194373,e.fg=this._curAttrData.fg,e.bg=this._curAttrData.bg,this._setCursor(0,0);for(let t=0;t<this._bufferService.rows;++t){let n=this._activeBuffer.ybase+this._activeBuffer.y+t,r=this._activeBuffer.lines.get(n);r&&(r.fill(e),r.isWrapped=!1)}return this._dirtyRowTracker.markAllDirty(),this._setCursor(0,0),!0}requestStatusString(e,t){let n=e=>(this._coreService.triggerDataEvent(`${Q.ESC}${e}${Q.ESC}\\`),!0),r=this._bufferService.buffer,i=this._optionsService.rawOptions;return n(e===`"q`?`P1$r${+!!this._curAttrData.isProtected()}"q`:e===`"p`?`P1$r61;1"p`:e===`r`?`P1$r${r.scrollTop+1};${r.scrollBottom+1}r`:e===`m`?`P1$r0m`:e===` q`?`P1$r${{block:2,underline:4,bar:6}[i.cursorStyle]-+!!i.cursorBlink} q`:`P0$r`)}markRangeDirty(e,t){this._dirtyRowTracker.markRangeDirty(e,t)}},Ru=class{constructor(e){this._bufferService=e,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(e){e<this.start?this.start=e:e>this.end&&(this.end=e)}markRangeDirty(e,t){e>t&&(Iu=e,e=t,t=Iu),e<this.start&&(this.start=e),t>this.end&&(this.end=t)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};Ru=er([q(0,Dr)],Ru);function zu(e){return 0<=e&&e<256}var Bu=5e7,Vu=12,Hu=50,Uu=class extends Ci{constructor(e){super(),this._action=e,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this._register(new Z),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(e,t){if(t!==void 0&&this._syncCalls>t){this._syncCalls=0;return}if(this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;this._isSyncWriting=!0;let n;for(;n=this._writeBuffer.shift();){this._action(n);let e=this._callbacks.shift();e&&e()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(e,t){if(this._pendingData>Bu)throw Error(`write data discarded, use flow control to avoid losing data`);if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput){this._didUserInput=!1,this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t),this._innerWrite();return}setTimeout(()=>this._innerWrite())}this._pendingData+=e.length,this._writeBuffer.push(e),this._callbacks.push(t)}_innerWrite(e=0,t=!0){let n=e||performance.now();for(;this._writeBuffer.length>this._bufferOffset;){let e=this._writeBuffer[this._bufferOffset],r=this._action(e,t);if(r){r.catch(e=>(queueMicrotask(()=>{throw e}),Promise.resolve(!1))).then(e=>performance.now()-n>=Vu?setTimeout(()=>this._innerWrite(0,e)):this._innerWrite(n,e));return}let i=this._callbacks[this._bufferOffset];if(i&&i(),this._bufferOffset++,this._pendingData-=e.length,performance.now()-n>=Vu)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>Hu&&(this._writeBuffer=this._writeBuffer.slice(this._bufferOffset),this._callbacks=this._callbacks.slice(this._bufferOffset),this._bufferOffset=0),setTimeout(()=>this._innerWrite())):(this._writeBuffer.length=0,this._callbacks.length=0,this._pendingData=0,this._bufferOffset=0),this._onWriteParsed.fire()}},Wu=class{constructor(e){this._bufferService=e,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(e){let t=this._bufferService.buffer;if(e.id===void 0){let n=t.addMarker(t.ybase+t.y),r={data:e,id:this._nextId++,lines:[n]};return n.onDispose(()=>this._removeMarkerFromLink(r,n)),this._dataByLinkId.set(r.id,r),r.id}let n=e,r=this._getEntryIdKey(n),i=this._entriesWithId.get(r);if(i)return this.addLineToLink(i.id,t.ybase+t.y),i.id;let a=t.addMarker(t.ybase+t.y),o={id:this._nextId++,key:this._getEntryIdKey(n),data:n,lines:[a]};return a.onDispose(()=>this._removeMarkerFromLink(o,a)),this._entriesWithId.set(o.key,o),this._dataByLinkId.set(o.id,o),o.id}addLineToLink(e,t){let n=this._dataByLinkId.get(e);if(n&&n.lines.every(e=>e.line!==t)){let e=this._bufferService.buffer.addMarker(t);n.lines.push(e),e.onDispose(()=>this._removeMarkerFromLink(n,e))}}getLinkData(e){return this._dataByLinkId.get(e)?.data}_getEntryIdKey(e){return`${e.id};;${e.uri}`}_removeMarkerFromLink(e,t){let n=e.lines.indexOf(t);n!==-1&&(e.lines.splice(n,1),e.lines.length===0&&(e.data.id!==void 0&&this._entriesWithId.delete(e.key),this._dataByLinkId.delete(e.id)))}};Wu=er([q(0,Dr)],Wu);var Gu=!1,Ku=class extends Ci{constructor(e){super(),this._windowsWrappingHeuristics=this._register(new wi),this._onBinary=this._register(new Z),this.onBinary=this._onBinary.event,this._onData=this._register(new Z),this.onData=this._onData.event,this._onLineFeed=this._register(new Z),this.onLineFeed=this._onLineFeed.event,this._onResize=this._register(new Z),this.onResize=this._onResize.event,this._onWriteParsed=this._register(new Z),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this._register(new Z),this._instantiationService=new yl,this.optionsService=this._register(new ql(e)),this._instantiationService.setService(Nr,this.optionsService),this._bufferService=this._register(this._instantiationService.createInstance(Wl)),this._instantiationService.setService(Dr,this._bufferService),this._logService=this._register(this._instantiationService.createInstance(Sl)),this._instantiationService.setService(Mr,this._logService),this.coreService=this._register(this._instantiationService.createInstance(Ql)),this._instantiationService.setService(kr,this.coreService),this.coreMouseService=this._register(this._instantiationService.createInstance(ru)),this._instantiationService.setService(Or,this.coreMouseService),this.unicodeService=this._register(this._instantiationService.createInstance(lu)),this._instantiationService.setService(Fr,this.unicodeService),this._charsetService=this._instantiationService.createInstance(uu),this._instantiationService.setService(Ar,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(Wu),this._instantiationService.setService(Pr,this._oscLinkService),this._inputHandler=this._register(new Lu(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this._register(Pi.forward(this._inputHandler.onLineFeed,this._onLineFeed)),this._register(this._inputHandler),this._register(Pi.forward(this._bufferService.onResize,this._onResize)),this._register(Pi.forward(this.coreService.onData,this._onData)),this._register(Pi.forward(this.coreService.onBinary,this._onBinary)),this._register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom(!0))),this._register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this._register(this.optionsService.onMultipleOptionChange([`windowsMode`,`windowsPty`],()=>this._handleWindowsPtyOptionChange())),this._register(this._bufferService.onScroll(()=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this._register(new Uu((e,t)=>this._inputHandler.parse(e,t))),this._register(Pi.forward(this._writeBuffer.onWriteParsed,this._onWriteParsed))}get onScroll(){return this._onScrollApi||(this._onScrollApi=this._register(new Z),this._onScroll.event(e=>{this._onScrollApi?.fire(e.position)})),this._onScrollApi.event}get cols(){return this._bufferService.cols}get rows(){return this._bufferService.rows}get buffers(){return this._bufferService.buffers}get options(){return this.optionsService.options}set options(e){for(let t in e)this.optionsService.options[t]=e[t]}write(e,t){this._writeBuffer.write(e,t)}writeSync(e,t){this._logService.logLevel<=3&&!Gu&&(this._logService.warn(`writeSync is unreliable and will be removed soon.`),Gu=!0),this._writeBuffer.writeSync(e,t)}input(e,t=!0){this.coreService.triggerDataEvent(e,t)}resize(e,t){isNaN(e)||isNaN(t)||(e=Math.max(e,Hl),t=Math.max(t,Ul),this._bufferService.resize(e,t))}scroll(e,t=!1){this._bufferService.scroll(e,t)}scrollLines(e,t){this._bufferService.scrollLines(e,t)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(e){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){let t=e-this._bufferService.buffer.ydisp;t!==0&&this.scrollLines(t)}registerEscHandler(e,t){return this._inputHandler.registerEscHandler(e,t)}registerDcsHandler(e,t){return this._inputHandler.registerDcsHandler(e,t)}registerCsiHandler(e,t){return this._inputHandler.registerCsiHandler(e,t)}registerOscHandler(e,t){return this._inputHandler.registerOscHandler(e,t)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let e=!1,t=this.optionsService.rawOptions.windowsPty;t&&t.buildNumber!==void 0&&t.buildNumber!==void 0?e=t.backend===`conpty`&&t.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(e=!0),e?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){let e=[];e.push(this.onLineFeed(du.bind(null,this._bufferService))),e.push(this.registerCsiHandler({final:`H`},()=>(du(this._bufferService),!1))),this._windowsWrappingHeuristics.value=bi(()=>{for(let t of e)t.dispose()})}}},qu={48:[`0`,`)`],49:[`1`,`!`],50:[`2`,`@`],51:[`3`,`#`],52:[`4`,`$`],53:[`5`,`%`],54:[`6`,`^`],55:[`7`,`&`],56:[`8`,`*`],57:[`9`,`(`],186:[`;`,`:`],187:[`=`,`+`],188:[`,`,`<`],189:[`-`,`_`],190:[`.`,`>`],191:[`/`,`?`],192:["`",`~`],219:[`[`,`{`],220:[`\\`,`|`],221:[`]`,`}`],222:[`'`,`"`]};function Ju(e,t,n,r){let i={type:0,cancel:!1,key:void 0},a=!!e.shiftKey|(e.altKey?2:0)|(e.ctrlKey?4:0)|(e.metaKey?8:0);switch(e.keyCode){case 0:e.key===`UIKeyInputUpArrow`?t?i.key=Q.ESC+`OA`:i.key=Q.ESC+`[A`:e.key===`UIKeyInputLeftArrow`?t?i.key=Q.ESC+`OD`:i.key=Q.ESC+`[D`:e.key===`UIKeyInputRightArrow`?t?i.key=Q.ESC+`OC`:i.key=Q.ESC+`[C`:e.key===`UIKeyInputDownArrow`&&(t?i.key=Q.ESC+`OB`:i.key=Q.ESC+`[B`);break;case 8:i.key=e.ctrlKey?`\b`:Q.DEL,e.altKey&&(i.key=Q.ESC+i.key);break;case 9:if(e.shiftKey){i.key=Q.ESC+`[Z`;break}i.key=Q.HT,i.cancel=!0;break;case 13:i.key=e.altKey?Q.ESC+Q.CR:Q.CR,i.cancel=!0;break;case 27:i.key=Q.ESC,e.altKey&&(i.key=Q.ESC+Q.ESC),i.cancel=!0;break;case 37:if(e.metaKey)break;a?i.key=Q.ESC+`[1;`+(a+1)+`D`:t?i.key=Q.ESC+`OD`:i.key=Q.ESC+`[D`;break;case 39:if(e.metaKey)break;a?i.key=Q.ESC+`[1;`+(a+1)+`C`:t?i.key=Q.ESC+`OC`:i.key=Q.ESC+`[C`;break;case 38:if(e.metaKey)break;a?i.key=Q.ESC+`[1;`+(a+1)+`A`:t?i.key=Q.ESC+`OA`:i.key=Q.ESC+`[A`;break;case 40:if(e.metaKey)break;a?i.key=Q.ESC+`[1;`+(a+1)+`B`:t?i.key=Q.ESC+`OB`:i.key=Q.ESC+`[B`;break;case 45:!e.shiftKey&&!e.ctrlKey&&(i.key=Q.ESC+`[2~`);break;case 46:a?i.key=Q.ESC+`[3;`+(a+1)+`~`:i.key=Q.ESC+`[3~`;break;case 36:a?i.key=Q.ESC+`[1;`+(a+1)+`H`:t?i.key=Q.ESC+`OH`:i.key=Q.ESC+`[H`;break;case 35:a?i.key=Q.ESC+`[1;`+(a+1)+`F`:t?i.key=Q.ESC+`OF`:i.key=Q.ESC+`[F`;break;case 33:e.shiftKey?i.type=2:e.ctrlKey?i.key=Q.ESC+`[5;`+(a+1)+`~`:i.key=Q.ESC+`[5~`;break;case 34:e.shiftKey?i.type=3:e.ctrlKey?i.key=Q.ESC+`[6;`+(a+1)+`~`:i.key=Q.ESC+`[6~`;break;case 112:a?i.key=Q.ESC+`[1;`+(a+1)+`P`:i.key=Q.ESC+`OP`;break;case 113:a?i.key=Q.ESC+`[1;`+(a+1)+`Q`:i.key=Q.ESC+`OQ`;break;case 114:a?i.key=Q.ESC+`[1;`+(a+1)+`R`:i.key=Q.ESC+`OR`;break;case 115:a?i.key=Q.ESC+`[1;`+(a+1)+`S`:i.key=Q.ESC+`OS`;break;case 116:a?i.key=Q.ESC+`[15;`+(a+1)+`~`:i.key=Q.ESC+`[15~`;break;case 117:a?i.key=Q.ESC+`[17;`+(a+1)+`~`:i.key=Q.ESC+`[17~`;break;case 118:a?i.key=Q.ESC+`[18;`+(a+1)+`~`:i.key=Q.ESC+`[18~`;break;case 119:a?i.key=Q.ESC+`[19;`+(a+1)+`~`:i.key=Q.ESC+`[19~`;break;case 120:a?i.key=Q.ESC+`[20;`+(a+1)+`~`:i.key=Q.ESC+`[20~`;break;case 121:a?i.key=Q.ESC+`[21;`+(a+1)+`~`:i.key=Q.ESC+`[21~`;break;case 122:a?i.key=Q.ESC+`[23;`+(a+1)+`~`:i.key=Q.ESC+`[23~`;break;case 123:a?i.key=Q.ESC+`[24;`+(a+1)+`~`:i.key=Q.ESC+`[24~`;break;default:if(e.ctrlKey&&!e.shiftKey&&!e.altKey&&!e.metaKey)e.keyCode>=65&&e.keyCode<=90?i.key=String.fromCharCode(e.keyCode-64):e.keyCode===32?i.key=Q.NUL:e.keyCode>=51&&e.keyCode<=55?i.key=String.fromCharCode(e.keyCode-51+27):e.keyCode===56?i.key=Q.DEL:e.keyCode===219?i.key=Q.ESC:e.keyCode===220?i.key=Q.FS:e.keyCode===221&&(i.key=Q.GS);else if((!n||r)&&e.altKey&&!e.metaKey){let t=qu[e.keyCode]?.[+!!e.shiftKey];if(t)i.key=Q.ESC+t;else if(e.keyCode>=65&&e.keyCode<=90){let t=e.ctrlKey?e.keyCode-64:e.keyCode+32,n=String.fromCharCode(t);e.shiftKey&&(n=n.toUpperCase()),i.key=Q.ESC+n}else if(e.keyCode===32)i.key=Q.ESC+(e.ctrlKey?Q.NUL:` `);else if(e.key===`Dead`&&e.code.startsWith(`Key`)){let t=e.code.slice(3,4);e.shiftKey||(t=t.toLowerCase()),i.key=Q.ESC+t,i.cancel=!0}}else n&&!e.altKey&&!e.ctrlKey&&!e.shiftKey&&e.metaKey?e.keyCode===65&&(i.type=1):e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&e.keyCode>=48&&e.key.length===1?i.key=e.key:e.key&&e.ctrlKey&&(e.key===`_`&&(i.key=Q.US),e.key===`@`&&(i.key=Q.NUL));break}return i}var Yu=0,Xu=class{constructor(e){this._getKey=e,this._array=[],this._insertedValues=[],this._flushInsertedTask=new Ic,this._isFlushingInserted=!1,this._deletedIndices=[],this._flushDeletedTask=new Ic,this._isFlushingDeleted=!1}clear(){this._array.length=0,this._insertedValues.length=0,this._flushInsertedTask.clear(),this._isFlushingInserted=!1,this._deletedIndices.length=0,this._flushDeletedTask.clear(),this._isFlushingDeleted=!1}insert(e){this._flushCleanupDeleted(),this._insertedValues.length===0&&this._flushInsertedTask.enqueue(()=>this._flushInserted()),this._insertedValues.push(e)}_flushInserted(){let e=this._insertedValues.sort((e,t)=>this._getKey(e)-this._getKey(t)),t=0,n=0,r=Array(this._array.length+this._insertedValues.length);for(let i=0;i<r.length;i++)n>=this._array.length||this._getKey(e[t])<=this._getKey(this._array[n])?(r[i]=e[t],t++):r[i]=this._array[n++];this._array=r,this._insertedValues.length=0}_flushCleanupInserted(){!this._isFlushingInserted&&this._insertedValues.length>0&&this._flushInsertedTask.flush()}delete(e){if(this._flushCleanupInserted(),this._array.length===0)return!1;let t=this._getKey(e);if(t===void 0||(Yu=this._search(t),Yu===-1)||this._getKey(this._array[Yu])!==t)return!1;do if(this._array[Yu]===e)return this._deletedIndices.length===0&&this._flushDeletedTask.enqueue(()=>this._flushDeleted()),this._deletedIndices.push(Yu),!0;while(++Yu<this._array.length&&this._getKey(this._array[Yu])===t);return!1}_flushDeleted(){this._isFlushingDeleted=!0;let e=this._deletedIndices.sort((e,t)=>e-t),t=0,n=Array(this._array.length-e.length),r=0;for(let i=0;i<this._array.length;i++)e[t]===i?t++:n[r++]=this._array[i];this._array=n,this._deletedIndices.length=0,this._isFlushingDeleted=!1}_flushCleanupDeleted(){!this._isFlushingDeleted&&this._deletedIndices.length>0&&this._flushDeletedTask.flush()}*getKeyIterator(e){if(this._flushCleanupInserted(),this._flushCleanupDeleted(),this._array.length!==0&&(Yu=this._search(e),!(Yu<0||Yu>=this._array.length)&&this._getKey(this._array[Yu])===e))do yield this._array[Yu];while(++Yu<this._array.length&&this._getKey(this._array[Yu])===e)}forEachByKey(e,t){if(this._flushCleanupInserted(),this._flushCleanupDeleted(),this._array.length!==0&&(Yu=this._search(e),!(Yu<0||Yu>=this._array.length)&&this._getKey(this._array[Yu])===e))do t(this._array[Yu]);while(++Yu<this._array.length&&this._getKey(this._array[Yu])===e)}values(){return this._flushCleanupInserted(),this._flushCleanupDeleted(),[...this._array].values()}_search(e){let t=0,n=this._array.length-1;for(;n>=t;){let r=t+n>>1,i=this._getKey(this._array[r]);if(i>e)n=r-1;else if(i<e)t=r+1;else{for(;r>0&&this._getKey(this._array[r-1])===e;)r--;return r}}return t}},Zu=0,Qu=0,$u=class extends Ci{constructor(){super(),this._decorations=new Xu(e=>e?.marker.line),this._onDecorationRegistered=this._register(new Z),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this._register(new Z),this.onDecorationRemoved=this._onDecorationRemoved.event,this._register(bi(()=>this.reset()))}get decorations(){return this._decorations.values()}registerDecoration(e){if(e.marker.isDisposed)return;let t=new ed(e);if(t){let e=t.marker.onDispose(()=>t.dispose()),n=t.onDispose(()=>{n.dispose(),t&&(this._decorations.delete(t)&&this._onDecorationRemoved.fire(t),e.dispose())});this._decorations.insert(t),this._onDecorationRegistered.fire(t)}return t}reset(){for(let e of this._decorations.values())e.dispose();this._decorations.clear()}*getDecorationsAtCell(e,t,n){let r=0,i=0;for(let a of this._decorations.getKeyIterator(t))r=a.options.x??0,i=r+(a.options.width??1),e>=r&&e<i&&(!n||(a.options.layer??`bottom`)===n)&&(yield a)}forEachDecorationAtCell(e,t,n,r){this._decorations.forEachByKey(t,t=>{Zu=t.options.x??0,Qu=Zu+(t.options.width??1),e>=Zu&&e<Qu&&(!n||(t.options.layer??`bottom`)===n)&&r(t)})}},ed=class extends Si{constructor(e){super(),this.options=e,this.onRenderEmitter=this.add(new Z),this.onRender=this.onRenderEmitter.event,this._onDispose=this.add(new Z),this.onDispose=this._onDispose.event,this._cachedBg=null,this._cachedFg=null,this.marker=e.marker,this.options.overviewRulerOptions&&!this.options.overviewRulerOptions.position&&(this.options.overviewRulerOptions.position=`full`)}get backgroundColorRGB(){return this._cachedBg===null&&(this.options.backgroundColor?this._cachedBg=Ls.toColor(this.options.backgroundColor):this._cachedBg=void 0),this._cachedBg}get foregroundColorRGB(){return this._cachedFg===null&&(this.options.foregroundColor?this._cachedFg=Ls.toColor(this.options.foregroundColor):this._cachedFg=void 0),this._cachedFg}dispose(){this._onDispose.fire(),super.dispose()}},td=1e3,nd=class{constructor(e,t=td){this._renderCallback=e,this._debounceThresholdMS=t,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(e,t,n){this._rowCount=n,e=e===void 0?0:e,t=t===void 0?this._rowCount-1:t,this._rowStart=this._rowStart===void 0?e:Math.min(this._rowStart,e),this._rowEnd=this._rowEnd===void 0?t:Math.max(this._rowEnd,t);let r=performance.now();if(r-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=r,this._innerRefresh();else if(!this._additionalRefreshRequested){let e=r-this._lastRefreshMs,t=this._debounceThresholdMS-e;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout(()=>{this._lastRefreshMs=performance.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0},t)}}_innerRefresh(){if(this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return;let e=Math.max(this._rowStart,0),t=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(e,t)}},rd=20,id=!1,ad=class extends Ci{constructor(e,t,n,r){super(),this._terminal=e,this._coreBrowserService=n,this._renderService=r,this._rowColumns=new WeakMap,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce=``;let i=this._coreBrowserService.mainDocument;this._accessibilityContainer=i.createElement(`div`),this._accessibilityContainer.classList.add(`xterm-accessibility`),this._rowContainer=i.createElement(`div`),this._rowContainer.setAttribute(`role`,`list`),this._rowContainer.classList.add(`xterm-accessibility-tree`),this._rowElements=[];for(let e=0;e<this._terminal.rows;e++)this._rowElements[e]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[e]);if(this._topBoundaryFocusListener=e=>this._handleBoundaryFocus(e,0),this._bottomBoundaryFocusListener=e=>this._handleBoundaryFocus(e,1),this._rowElements[0].addEventListener(`focus`,this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener(`focus`,this._bottomBoundaryFocusListener),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=i.createElement(`div`),this._liveRegion.classList.add(`live-region`),this._liveRegion.setAttribute(`aria-live`,`assertive`),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this._register(new nd(this._renderRows.bind(this))),!this._terminal.element)throw Error(`Cannot enable accessibility before Terminal.open`);id?(this._accessibilityContainer.classList.add(`debug`),this._rowContainer.classList.add(`debug`),this._debugRootContainer=i.createElement(`div`),this._debugRootContainer.classList.add(`xterm`),this._debugRootContainer.appendChild(i.createTextNode(`------start a11y------`)),this._debugRootContainer.appendChild(this._accessibilityContainer),this._debugRootContainer.appendChild(i.createTextNode(`------end a11y------`)),this._terminal.element.insertAdjacentElement(`afterend`,this._debugRootContainer)):this._terminal.element.insertAdjacentElement(`afterbegin`,this._accessibilityContainer),this._register(this._terminal.onResize(e=>this._handleResize(e.rows))),this._register(this._terminal.onRender(e=>this._refreshRows(e.start,e.end))),this._register(this._terminal.onScroll(()=>this._refreshRows())),this._register(this._terminal.onA11yChar(e=>this._handleChar(e))),this._register(this._terminal.onLineFeed(()=>this._handleChar(`
38
+ `))),this._register(this._terminal.onA11yTab(e=>this._handleTab(e))),this._register(this._terminal.onKey(e=>this._handleKey(e.key))),this._register(this._terminal.onBlur(()=>this._clearLiveRegion())),this._register(this._renderService.onDimensionsChange(()=>this._refreshRowsDimensions())),this._register(Do(i,`selectionchange`,()=>this._handleSelectionChange())),this._register(this._coreBrowserService.onDprChange(()=>this._refreshRowsDimensions())),this._refreshRowsDimensions(),this._refreshRows(),this._register(bi(()=>{id?this._debugRootContainer.remove():this._accessibilityContainer.remove(),this._rowElements.length=0}))}_handleTab(e){for(let t=0;t<e;t++)this._handleChar(` `)}_handleChar(e){this._liveRegionLineCount<rd+1&&(this._charsToConsume.length>0?this._charsToConsume.shift()!==e&&(this._charsToAnnounce+=e):this._charsToAnnounce+=e,e===`
39
+ `&&(this._liveRegionLineCount++,this._liveRegionLineCount===rd+1&&(this._liveRegion.textContent+=ir.get())))}_clearLiveRegion(){this._liveRegion.textContent=``,this._liveRegionLineCount=0}_handleKey(e){this._clearLiveRegion(),/\p{Control}/u.test(e)||this._charsToConsume.push(e)}_refreshRows(e,t){this._liveRegionDebouncer.refresh(e,t,this._terminal.rows)}_renderRows(e,t){let n=this._terminal.buffer,r=n.lines.length.toString();for(let i=e;i<=t;i++){let e=n.lines.get(n.ydisp+i),t=[],a=e?.translateToString(!0,void 0,void 0,t)||``,o=(n.ydisp+i+1).toString(),s=this._rowElements[i];s&&(a.length===0?(s.textContent=`\xA0`,this._rowColumns.set(s,[0,1])):(s.textContent=a,this._rowColumns.set(s,t)),s.setAttribute(`aria-posinset`,o),s.setAttribute(`aria-setsize`,r),this._alignRowWidth(s))}this._announceCharacters()}_announceCharacters(){this._charsToAnnounce.length!==0&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce=``)}_handleBoundaryFocus(e,t){let n=e.target,r=this._rowElements[t===0?1:this._rowElements.length-2];if(n.getAttribute(`aria-posinset`)===(t===0?`1`:`${this._terminal.buffer.lines.length}`)||e.relatedTarget!==r)return;let i,a;if(t===0?(i=n,a=this._rowElements.pop(),this._rowContainer.removeChild(a)):(i=this._rowElements.shift(),a=n,this._rowContainer.removeChild(i)),i.removeEventListener(`focus`,this._topBoundaryFocusListener),a.removeEventListener(`focus`,this._bottomBoundaryFocusListener),t===0){let e=this._createAccessibilityTreeNode();this._rowElements.unshift(e),this._rowContainer.insertAdjacentElement(`afterbegin`,e)}else{let e=this._createAccessibilityTreeNode();this._rowElements.push(e),this._rowContainer.appendChild(e)}this._rowElements[0].addEventListener(`focus`,this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener(`focus`,this._bottomBoundaryFocusListener),this._terminal.scrollLines(t===0?-1:1),this._rowElements[t===0?1:this._rowElements.length-2].focus(),e.preventDefault(),e.stopImmediatePropagation()}_handleSelectionChange(){if(this._rowElements.length===0)return;let e=this._coreBrowserService.mainDocument.getSelection();if(!e)return;if(e.isCollapsed){this._rowContainer.contains(e.anchorNode)&&this._terminal.clearSelection();return}if(!e.anchorNode||!e.focusNode){console.error(`anchorNode and/or focusNode are null`);return}let t={node:e.anchorNode,offset:e.anchorOffset},n={node:e.focusNode,offset:e.focusOffset};if((t.node.compareDocumentPosition(n.node)&Node.DOCUMENT_POSITION_PRECEDING||t.node===n.node&&t.offset>n.offset)&&([t,n]=[n,t]),t.node.compareDocumentPosition(this._rowElements[0])&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_FOLLOWING)&&(t={node:this._rowElements[0].childNodes[0],offset:0}),!this._rowContainer.contains(t.node))return;let r=this._rowElements.slice(-1)[0];if(n.node.compareDocumentPosition(r)&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_PRECEDING)&&(n={node:r,offset:r.textContent?.length??0}),!this._rowContainer.contains(n.node))return;let i=({node:e,offset:t})=>{let n=e instanceof Text?e.parentNode:e,r=parseInt(n?.getAttribute(`aria-posinset`),10)-1;if(isNaN(r))return console.warn(`row is invalid. Race condition?`),null;let i=this._rowColumns.get(n);if(!i)return console.warn(`columns is null. Race condition?`),null;let a=t<i.length?i[t]:i.slice(-1)[0]+1;return a>=this._terminal.cols&&(++r,a=0),{row:r,column:a}},a=i(t),o=i(n);if(!(!a||!o)){if(a.row>o.row||a.row===o.row&&a.column>=o.column)throw Error(`invalid range`);this._terminal.select(a.column,a.row,(o.row-a.row)*this._terminal.cols-a.column+o.column)}}_handleResize(e){this._rowElements[this._rowElements.length-1].removeEventListener(`focus`,this._bottomBoundaryFocusListener);for(let e=this._rowContainer.children.length;e<this._terminal.rows;e++)this._rowElements[e]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[e]);for(;this._rowElements.length>e;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener(`focus`,this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){let e=this._coreBrowserService.mainDocument.createElement(`div`);return e.setAttribute(`role`,`listitem`),e.tabIndex=-1,this._refreshRowDimensions(e),e}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){Object.assign(this._accessibilityContainer.style,{width:`${this._renderService.dimensions.css.canvas.width}px`,fontSize:`${this._terminal.options.fontSize}px`}),this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let e=0;e<this._terminal.rows;e++)this._refreshRowDimensions(this._rowElements[e]),this._alignRowWidth(this._rowElements[e])}}_refreshRowDimensions(e){e.style.height=`${this._renderService.dimensions.css.cell.height}px`}_alignRowWidth(e){e.style.transform=``;let t=e.getBoundingClientRect().width,n=this._rowColumns.get(e)?.slice(-1)?.[0];if(!n)return;let r=n*this._renderService.dimensions.css.cell.width;e.style.transform=`scaleX(${r/t})`}};ad=er([q(1,jr),q(2,Br),q(3,J)],ad);var od=class extends Ci{constructor(e,t,n,r,i){super(),this._element=e,this._mouseService=t,this._renderService=n,this._bufferService=r,this._linkProviderService=i,this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this._register(new Z),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this._register(new Z),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this._register(bi(()=>{yi(this._linkCacheDisposables),this._linkCacheDisposables.length=0,this._lastMouseEvent=void 0,this._activeProviderReplies?.clear()})),this._register(this._bufferService.onResize(()=>{this._clearCurrentLink(),this._wasResized=!0})),this._register(Do(this._element,`mouseleave`,()=>{this._isMouseOut=!0,this._clearCurrentLink()})),this._register(Do(this._element,`mousemove`,this._handleMouseMove.bind(this))),this._register(Do(this._element,`mousedown`,this._handleMouseDown.bind(this))),this._register(Do(this._element,`mouseup`,this._handleMouseUp.bind(this)))}get currentLink(){return this._currentLink}_handleMouseMove(e){this._lastMouseEvent=e;let t=this._positionFromMouseEvent(e,this._element,this._mouseService);if(!t)return;this._isMouseOut=!1;let n=e.composedPath();for(let e=0;e<n.length;e++){let t=n[e];if(t.classList.contains(`xterm`))break;if(t.classList.contains(`xterm-hover`))return}(!this._lastBufferCell||t.x!==this._lastBufferCell.x||t.y!==this._lastBufferCell.y)&&(this._handleHover(t),this._lastBufferCell=t)}_handleHover(e){if(this._activeLine!==e.y||this._wasResized){this._clearCurrentLink(),this._askForLink(e,!1),this._wasResized=!1;return}this._currentLink&&this._linkAtPosition(this._currentLink.link,e)||(this._clearCurrentLink(),this._askForLink(e,!0))}_askForLink(e,t){(!this._activeProviderReplies||!t)&&(this._activeProviderReplies?.forEach(e=>{e?.forEach(e=>{e.link.dispose&&e.link.dispose()})}),this._activeProviderReplies=new Map,this._activeLine=e.y);let n=!1;for(let[r,i]of this._linkProviderService.linkProviders.entries())t?this._activeProviderReplies?.get(r)&&(n=this._checkLinkProviderResult(r,e,n)):i.provideLinks(e.y,t=>{if(this._isMouseOut)return;let i=t?.map(e=>({link:e}));this._activeProviderReplies?.set(r,i),n=this._checkLinkProviderResult(r,e,n),this._activeProviderReplies?.size===this._linkProviderService.linkProviders.length&&this._removeIntersectingLinks(e.y,this._activeProviderReplies)})}_removeIntersectingLinks(e,t){let n=new Set;for(let r=0;r<t.size;r++){let i=t.get(r);if(i)for(let t=0;t<i.length;t++){let r=i[t],a=r.link.range.start.y<e?0:r.link.range.start.x,o=r.link.range.end.y>e?this._bufferService.cols:r.link.range.end.x;for(let e=a;e<=o;e++){if(n.has(e)){i.splice(t--,1);break}n.add(e)}}}}_checkLinkProviderResult(e,t,n){if(!this._activeProviderReplies)return n;let r=this._activeProviderReplies.get(e),i=!1;for(let t=0;t<e;t++)(!this._activeProviderReplies.has(t)||this._activeProviderReplies.get(t))&&(i=!0);if(!i&&r){let e=r.find(e=>this._linkAtPosition(e.link,t));e&&(n=!0,this._handleNewLink(e))}if(this._activeProviderReplies.size===this._linkProviderService.linkProviders.length&&!n)for(let e=0;e<this._activeProviderReplies.size;e++){let r=this._activeProviderReplies.get(e)?.find(e=>this._linkAtPosition(e.link,t));if(r){n=!0,this._handleNewLink(r);break}}return n}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(e){if(!this._currentLink)return;let t=this._positionFromMouseEvent(e,this._element,this._mouseService);t&&this._mouseDownLink&&sd(this._mouseDownLink.link,this._currentLink.link)&&this._linkAtPosition(this._currentLink.link,t)&&this._currentLink.link.activate(e,this._currentLink.link.text)}_clearCurrentLink(e,t){!this._currentLink||!this._lastMouseEvent||(!e||!t||this._currentLink.link.range.start.y>=e&&this._currentLink.link.range.end.y<=t)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,yi(this._linkCacheDisposables),this._linkCacheDisposables.length=0)}_handleNewLink(e){if(!this._lastMouseEvent)return;let t=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);t&&this._linkAtPosition(e.link,t)&&(this._currentLink=e,this._currentLink.state={decorations:{underline:e.link.decorations===void 0?!0:e.link.decorations.underline,pointerCursor:e.link.decorations===void 0?!0:e.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,e.link,this._lastMouseEvent),e.link.decorations={},Object.defineProperties(e.link.decorations,{pointerCursor:{get:()=>this._currentLink?.state?.decorations.pointerCursor,set:e=>{this._currentLink?.state&&this._currentLink.state.decorations.pointerCursor!==e&&(this._currentLink.state.decorations.pointerCursor=e,this._currentLink.state.isHovered&&this._element.classList.toggle(`xterm-cursor-pointer`,e))}},underline:{get:()=>this._currentLink?.state?.decorations.underline,set:t=>{this._currentLink?.state&&this._currentLink?.state?.decorations.underline!==t&&(this._currentLink.state.decorations.underline=t,this._currentLink.state.isHovered&&this._fireUnderlineEvent(e.link,t))}}}),this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange(e=>{if(!this._currentLink)return;let t=e.start===0?0:e.start+1+this._bufferService.buffer.ydisp,n=this._bufferService.buffer.ydisp+1+e.end;if(this._currentLink.link.range.start.y>=t&&this._currentLink.link.range.end.y<=n&&(this._clearCurrentLink(t,n),this._lastMouseEvent)){let e=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);e&&this._askForLink(e,!1)}})))}_linkHover(e,t,n){this._currentLink?.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!0),this._currentLink.state.decorations.pointerCursor&&e.classList.add(`xterm-cursor-pointer`)),t.hover&&t.hover(n,t.text)}_fireUnderlineEvent(e,t){let n=e.range,r=this._bufferService.buffer.ydisp,i=this._createLinkUnderlineEvent(n.start.x-1,n.start.y-r-1,n.end.x,n.end.y-r-1,void 0);(t?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(i)}_linkLeave(e,t,n){this._currentLink?.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(t,!1),this._currentLink.state.decorations.pointerCursor&&e.classList.remove(`xterm-cursor-pointer`)),t.leave&&t.leave(n,t.text)}_linkAtPosition(e,t){let n=e.range.start.y*this._bufferService.cols+e.range.start.x,r=e.range.end.y*this._bufferService.cols+e.range.end.x,i=t.y*this._bufferService.cols+t.x;return n<=i&&i<=r}_positionFromMouseEvent(e,t,n){let r=n.getCoords(e,t,this._bufferService.cols,this._bufferService.rows);if(r)return{x:r[0],y:r[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(e,t,n,r,i){return{x1:e,y1:t,x2:n,y2:r,cols:this._bufferService.cols,fg:i}}};od=er([q(1,Vr),q(2,J),q(3,Dr),q(4,Wr)],od);function sd(e,t){return e.text===t.text&&e.range.start.x===t.range.start.x&&e.range.start.y===t.range.start.y&&e.range.end.x===t.range.end.x&&e.range.end.y===t.range.end.y}var cd=class extends Ku{constructor(e={}){super(e),this._linkifier=this._register(new wi),this.browser=yc,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this._register(new wi),this._onCursorMove=this._register(new Z),this.onCursorMove=this._onCursorMove.event,this._onKey=this._register(new Z),this.onKey=this._onKey.event,this._onRender=this._register(new Z),this.onRender=this._onRender.event,this._onSelectionChange=this._register(new Z),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this._register(new Z),this.onTitleChange=this._onTitleChange.event,this._onBell=this._register(new Z),this.onBell=this._onBell.event,this._onFocus=this._register(new Z),this._onBlur=this._register(new Z),this._onA11yCharEmitter=this._register(new Z),this._onA11yTabEmitter=this._register(new Z),this._onWillOpen=this._register(new Z),this._setup(),this._decorationService=this._instantiationService.createInstance($u),this._instantiationService.setService(Ir,this._decorationService),this._linkProviderService=this._instantiationService.createInstance(mc),this._instantiationService.setService(Wr,this._linkProviderService),this._linkProviderService.registerLinkProvider(this._instantiationService.createInstance(Lr)),this._register(this._inputHandler.onRequestBell(()=>this._onBell.fire())),this._register(this._inputHandler.onRequestRefreshRows(e=>this.refresh(e?.start??0,e?.end??this.rows-1))),this._register(this._inputHandler.onRequestSendFocus(()=>this._reportFocus())),this._register(this._inputHandler.onRequestReset(()=>this.reset())),this._register(this._inputHandler.onRequestWindowsOptionsReport(e=>this._reportWindowsOptions(e))),this._register(this._inputHandler.onColor(e=>this._handleColorEvent(e))),this._register(Pi.forward(this._inputHandler.onCursorMove,this._onCursorMove)),this._register(Pi.forward(this._inputHandler.onTitleChange,this._onTitleChange)),this._register(Pi.forward(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this._register(Pi.forward(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this._register(this._bufferService.onResize(e=>this._afterResize(e.cols,e.rows))),this._register(bi(()=>{this._customKeyEventHandler=void 0,this.element?.parentNode?.removeChild(this.element)}))}get linkifier(){return this._linkifier.value}get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}_handleColorEvent(e){if(this._themeService)for(let t of e){let e,n=``;switch(t.index){case 256:e=`foreground`,n=`10`;break;case 257:e=`background`,n=`11`;break;case 258:e=`cursor`,n=`12`;break;default:e=`ansi`,n=`4;`+t.index}switch(t.type){case 0:let r=Is.toColorRGB(e===`ansi`?this._themeService.colors.ansi[t.index]:this._themeService.colors[e]);this.coreService.triggerDataEvent(`${Q.ESC}]${n};${Au(r)}${Os.ST}`);break;case 1:if(e===`ansi`)this._themeService.modifyColors(e=>e.ansi[t.index]=Fs.toColor(...t.color));else{let n=e;this._themeService.modifyColors(e=>e[n]=Fs.toColor(...t.color))}break;case 2:this._themeService.restoreColor(t.index);break}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(e){e?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(ad,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(e){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(Q.ESC+`[I`),this.element.classList.add(`focus`),this._showCursor(),this._onFocus.fire()}blur(){return this.textarea?.blur()}_handleTextAreaBlur(){this.textarea.value=``,this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(Q.ESC+`[O`),this.element.classList.remove(`focus`),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;let e=this.buffer.ybase+this.buffer.y,t=this.buffer.lines.get(e);if(!t)return;let n=Math.min(this.buffer.x,this.cols-1),r=this._renderService.dimensions.css.cell.height,i=t.getWidth(n),a=this._renderService.dimensions.css.cell.width*i,o=this.buffer.y*this._renderService.dimensions.css.cell.height,s=n*this._renderService.dimensions.css.cell.width;this.textarea.style.left=s+`px`,this.textarea.style.top=o+`px`,this.textarea.style.width=a+`px`,this.textarea.style.height=r+`px`,this.textarea.style.lineHeight=r+`px`,this.textarea.style.zIndex=`-5`}_initGlobal(){this._bindKeys(),this._register(Do(this.element,`copy`,e=>{this.hasSelection()&&sr(e,this._selectionService)}));let e=e=>cr(e,this.textarea,this.coreService,this.optionsService);this._register(Do(this.textarea,`paste`,e)),this._register(Do(this.element,`paste`,e)),Cc?this._register(Do(this.element,`mousedown`,e=>{e.button===2&&dr(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})):this._register(Do(this.element,`contextmenu`,e=>{dr(e,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)})),jc&&this._register(Do(this.element,`auxclick`,e=>{e.button===1&&ur(e,this.textarea,this.screenElement)}))}_bindKeys(){this._register(Do(this.textarea,`keyup`,e=>this._keyUp(e),!0)),this._register(Do(this.textarea,`keydown`,e=>this._keyDown(e),!0)),this._register(Do(this.textarea,`keypress`,e=>this._keyPress(e),!0)),this._register(Do(this.textarea,`compositionstart`,()=>this._compositionHelper.compositionstart())),this._register(Do(this.textarea,`compositionupdate`,e=>this._compositionHelper.compositionupdate(e))),this._register(Do(this.textarea,`compositionend`,()=>this._compositionHelper.compositionend())),this._register(Do(this.textarea,`input`,e=>this._inputEvent(e),!0)),this._register(this.onRender(()=>this._compositionHelper.updateCompositionElements()))}open(e){if(!e)throw Error(`Terminal requires a parent element.`);if(e.isConnected||this._logService.debug(`Terminal.open was called on an element that was not attached to the DOM`),this.element?.ownerDocument.defaultView&&this._coreBrowserService){this.element.ownerDocument.defaultView!==this._coreBrowserService.window&&(this._coreBrowserService.window=this.element.ownerDocument.defaultView);return}this._document=e.ownerDocument,this.options.documentOverride&&this.options.documentOverride instanceof Document&&(this._document=this.optionsService.rawOptions.documentOverride),this.element=this._document.createElement(`div`),this.element.dir=`ltr`,this.element.classList.add(`terminal`),this.element.classList.add(`xterm`),e.appendChild(this.element);let t=this._document.createDocumentFragment();this._viewportElement=this._document.createElement(`div`),this._viewportElement.classList.add(`xterm-viewport`),t.appendChild(this._viewportElement),this.screenElement=this._document.createElement(`div`),this.screenElement.classList.add(`xterm-screen`),this._register(Do(this.screenElement,`mousemove`,e=>this.updateCursorStyle(e))),this._helperContainer=this._document.createElement(`div`),this._helperContainer.classList.add(`xterm-helpers`),this.screenElement.appendChild(this._helperContainer),t.appendChild(this.screenElement);let n=this.textarea=this._document.createElement(`textarea`);this.textarea.classList.add(`xterm-helper-textarea`),this.textarea.setAttribute(`aria-label`,nr.get()),Mc||this.textarea.setAttribute(`aria-multiline`,`false`),this.textarea.setAttribute(`autocorrect`,`off`),this.textarea.setAttribute(`autocapitalize`,`off`),this.textarea.setAttribute(`spellcheck`,`false`),this.textarea.tabIndex=0,this._register(this.optionsService.onSpecificOptionChange(`disableStdin`,()=>n.readOnly=this.optionsService.rawOptions.disableStdin)),this.textarea.readOnly=this.optionsService.rawOptions.disableStdin,this._coreBrowserService=this._register(this._instantiationService.createInstance(fc,this.textarea,e.ownerDocument.defaultView??window,this._document??typeof window<`u`?window.document:null)),this._instantiationService.setService(Br,this._coreBrowserService),this._register(Do(this.textarea,`focus`,e=>this._handleTextAreaFocus(e))),this._register(Do(this.textarea,`blur`,()=>this._handleTextAreaBlur())),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(cc,this._document,this._helperContainer),this._instantiationService.setService(zr,this._charSizeService),this._themeService=this._instantiationService.createInstance(gl),this._instantiationService.setService(Y,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(Us),this._instantiationService.setService(Ur,this._characterJoinerService),this._renderService=this._register(this._instantiationService.createInstance(Rc,this.rows,this.screenElement)),this._instantiationService.setService(J,this._renderService),this._register(this._renderService.onRenderedViewportChange(e=>this._onRender.fire(e))),this.onResize(e=>this._renderService.resize(e.cols,e.rows)),this._compositionView=this._document.createElement(`div`),this._compositionView.classList.add(`composition-view`),this._compositionHelper=this._instantiationService.createInstance(ks,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this._mouseService=this._instantiationService.createInstance(_c),this._instantiationService.setService(Vr,this._mouseService);let r=this._linkifier.value=this._register(this._instantiationService.createInstance(od,this.screenElement));this.element.appendChild(t);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this._register(this.onCursorMove(()=>{this._renderService.handleCursorMove(),this._syncTextArea()})),this._register(this.onResize(()=>this._renderService.handleResize(this.cols,this.rows))),this._register(this.onBlur(()=>this._renderService.handleBlur())),this._register(this.onFocus(()=>this._renderService.handleFocus())),this._viewport=this._register(this._instantiationService.createInstance(bs,this.element,this.screenElement)),this._register(this._viewport.onRequestScrollLines(e=>{super.scrollLines(e,!1),this.refresh(0,this.rows-1)})),this._selectionService=this._register(this._instantiationService.createInstance(ol,this.element,this.screenElement,r)),this._instantiationService.setService(Hr,this._selectionService),this._register(this._selectionService.onRequestScrollLines(e=>this.scrollLines(e.amount,e.suppressScrollEvent))),this._register(this._selectionService.onSelectionChange(()=>this._onSelectionChange.fire())),this._register(this._selectionService.onRequestRedraw(e=>this._renderService.handleSelectionChanged(e.start,e.end,e.columnSelectMode))),this._register(this._selectionService.onLinuxMouseSelection(e=>{this.textarea.value=e,this.textarea.focus(),this.textarea.select()})),this._register(Pi.any(this._onScroll.event,this._inputHandler.onScroll)(()=>{this._selectionService.refresh(),this._viewport?.queueSync()})),this._register(this._instantiationService.createInstance(xs,this.screenElement)),this._register(Do(this.element,`mousedown`,e=>this._selectionService.handleMouseDown(e))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add(`enable-mouse-events`)):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(ad,this)),this._register(this.optionsService.onSpecificOptionChange(`screenReaderMode`,e=>this._handleScreenReaderModeOptionChange(e))),this.options.overviewRuler.width&&(this._overviewRulerRenderer=this._register(this._instantiationService.createInstance(Es,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange(`overviewRuler`,e=>{!this._overviewRulerRenderer&&e&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this._register(this._instantiationService.createInstance(Es,this._viewportElement,this.screenElement)))}),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(sc,this,this._document,this.element,this.screenElement,this._viewportElement,this._helperContainer,this.linkifier)}bindMouse(){let e=this,t=this.element;function n(t){let n=e._mouseService.getMouseReportCoords(t,e.screenElement);if(!n)return!1;let r,i;switch(t.overrideType||t.type){case`mousemove`:i=32,t.buttons===void 0?(r=3,t.button!==void 0&&(r=t.button<3?t.button:3)):r=t.buttons&1?0:t.buttons&4?1:t.buttons&2?2:3;break;case`mouseup`:i=0,r=t.button<3?t.button:3;break;case`mousedown`:i=1,r=t.button<3?t.button:3;break;case`wheel`:if(e._customWheelEventHandler&&e._customWheelEventHandler(t)===!1)return!1;let n=t.deltaY;if(n===0||e.coreMouseService.consumeWheelEvent(t,e._renderService?.dimensions?.device?.cell?.height,e._coreBrowserService?.dpr)===0)return!1;i=n<0?0:1,r=4;break;default:return!1}return i===void 0||r===void 0||r>4?!1:e.coreMouseService.triggerMouseEvent({col:n.col,row:n.row,x:n.x,y:n.y,button:r,action:i,ctrl:t.ctrlKey,alt:t.altKey,shift:t.shiftKey})}let r={mouseup:null,wheel:null,mousedrag:null,mousemove:null},i={mouseup:e=>(n(e),e.buttons||(this._document.removeEventListener(`mouseup`,r.mouseup),r.mousedrag&&this._document.removeEventListener(`mousemove`,r.mousedrag)),this.cancel(e)),wheel:e=>(n(e),this.cancel(e,!0)),mousedrag:e=>{e.buttons&&n(e)},mousemove:e=>{e.buttons||n(e)}};this._register(this.coreMouseService.onProtocolChange(e=>{e?(this.optionsService.rawOptions.logLevel===`debug`&&this._logService.debug(`Binding to mouse events:`,this.coreMouseService.explainEvents(e)),this.element.classList.add(`enable-mouse-events`),this._selectionService.disable()):(this._logService.debug(`Unbinding from mouse events.`),this.element.classList.remove(`enable-mouse-events`),this._selectionService.enable()),e&8?r.mousemove||=(t.addEventListener(`mousemove`,i.mousemove),i.mousemove):(t.removeEventListener(`mousemove`,r.mousemove),r.mousemove=null),e&16?r.wheel||=(t.addEventListener(`wheel`,i.wheel,{passive:!1}),i.wheel):(t.removeEventListener(`wheel`,r.wheel),r.wheel=null),e&2?r.mouseup||=i.mouseup:(this._document.removeEventListener(`mouseup`,r.mouseup),r.mouseup=null),e&4?r.mousedrag||=i.mousedrag:(this._document.removeEventListener(`mousemove`,r.mousedrag),r.mousedrag=null)})),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this._register(Do(t,`mousedown`,e=>{if(e.preventDefault(),this.focus(),!(!this.coreMouseService.areMouseEventsActive||this._selectionService.shouldForceSelection(e)))return n(e),r.mouseup&&this._document.addEventListener(`mouseup`,r.mouseup),r.mousedrag&&this._document.addEventListener(`mousemove`,r.mousedrag),this.cancel(e)})),this._register(Do(t,`wheel`,t=>{if(!r.wheel){if(this._customWheelEventHandler&&this._customWheelEventHandler(t)===!1)return!1;if(!this.buffer.hasScrollback){if(t.deltaY===0)return!1;if(e.coreMouseService.consumeWheelEvent(t,e._renderService?.dimensions?.device?.cell?.height,e._coreBrowserService?.dpr)===0)return this.cancel(t,!0);let n=Q.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?`O`:`[`)+(t.deltaY<0?`A`:`B`);return this.coreService.triggerDataEvent(n,!0),this.cancel(t,!0)}}},{passive:!1}))}refresh(e,t){this._renderService?.refreshRows(e,t)}updateCursorStyle(e){this._selectionService?.shouldColumnSelect(e)?this.element.classList.add(`column-select`):this.element.classList.remove(`column-select`)}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(e,t){this._viewport?this._viewport.scrollLines(e):super.scrollLines(e,t),this.refresh(0,this.rows-1)}scrollPages(e){this.scrollLines(e*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(e){e&&this._viewport?this._viewport.scrollToLine(this.buffer.ybase,!0):this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(e){let t=e-this._bufferService.buffer.ydisp;t!==0&&this.scrollLines(t)}paste(e){lr(e,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(e){this._customKeyEventHandler=e}attachCustomWheelEventHandler(e){this._customWheelEventHandler=e}registerLinkProvider(e){return this._linkProviderService.registerLinkProvider(e)}registerCharacterJoiner(e){if(!this._characterJoinerService)throw Error(`Terminal must be opened first`);let t=this._characterJoinerService.register(e);return this.refresh(0,this.rows-1),t}deregisterCharacterJoiner(e){if(!this._characterJoinerService)throw Error(`Terminal must be opened first`);this._characterJoinerService.deregister(e)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(e){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+e)}registerDecoration(e){return this._decorationService.registerDecoration(e)}hasSelection(){return this._selectionService?this._selectionService.hasSelection:!1}select(e,t,n){this._selectionService.setSelection(e,t,n)}getSelection(){return this._selectionService?this._selectionService.selectionText:``}getSelectionPosition(){if(!(!this._selectionService||!this._selectionService.hasSelection))return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){this._selectionService?.clearSelection()}selectAll(){this._selectionService?.selectAll()}selectLines(e,t){this._selectionService?.selectLines(e,t)}_keyDown(e){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&this._customKeyEventHandler(e)===!1)return!1;let t=this.browser.isMac&&this.options.macOptionIsMeta&&e.altKey;if(!t&&!this._compositionHelper.keydown(e))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(!0),!1;!t&&(e.key===`Dead`||e.key===`AltGraph`)&&(this._unprocessedDeadKey=!0);let n=Ju(e,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(e),n.type===3||n.type===2){let t=this.rows-1;return this.scrollLines(n.type===2?-t:t),this.cancel(e,!0)}if(n.type===1&&this.selectAll(),this._isThirdLevelShift(this.browser,e)||(n.cancel&&this.cancel(e,!0),!n.key)||e.key&&!e.ctrlKey&&!e.altKey&&!e.metaKey&&e.key.length===1&&e.key.charCodeAt(0)>=65&&e.key.charCodeAt(0)<=90)return!0;if(this._unprocessedDeadKey)return this._unprocessedDeadKey=!1,!0;if((n.key===Q.ETX||n.key===Q.CR)&&(this.textarea.value=``),this._onKey.fire({key:n.key,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(n.key,!0),!this.optionsService.rawOptions.screenReaderMode||e.altKey||e.ctrlKey)return this.cancel(e,!0);this._keyDownHandled=!0}_isThirdLevelShift(e,t){let n=e.isMac&&!this.options.macOptionIsMeta&&t.altKey&&!t.ctrlKey&&!t.metaKey||e.isWindows&&t.altKey&&t.ctrlKey&&!t.metaKey||e.isWindows&&t.getModifierState(`AltGraph`);return t.type===`keypress`?n:n&&(!t.keyCode||t.keyCode>47)}_keyUp(e){this._keyDownSeen=!1,!(this._customKeyEventHandler&&this._customKeyEventHandler(e)===!1)&&(ld(e)||this.focus(),this.updateCursorStyle(e),this._keyPressHandled=!1)}_keyPress(e){let t;if(this._keyPressHandled=!1,this._keyDownHandled||this._customKeyEventHandler&&this._customKeyEventHandler(e)===!1)return!1;if(this.cancel(e),e.charCode)t=e.charCode;else if(e.which===null||e.which===void 0)t=e.keyCode;else if(e.which!==0&&e.charCode!==0)t=e.which;else return!1;return!t||(e.altKey||e.ctrlKey||e.metaKey)&&!this._isThirdLevelShift(this.browser,e)?!1:(t=String.fromCharCode(t),this._onKey.fire({key:t,domEvent:e}),this._showCursor(),this.coreService.triggerDataEvent(t,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,!0)}_inputEvent(e){if(e.data&&e.inputType===`insertText`&&(!e.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;let t=e.data;return this.coreService.triggerDataEvent(t,!0),this.cancel(e),!0}return!1}resize(e,t){if(e===this.cols&&t===this.rows){this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure();return}super.resize(e,t)}_afterResize(e,t){this._charSizeService?.measure()}clear(){if(!(this.buffer.ybase===0&&this.buffer.y===0)){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let e=1;e<this.rows;e++)this.buffer.lines.push(this.buffer.getBlankLine(El));this._onScroll.fire({position:this.buffer.ydisp}),this.refresh(0,this.rows-1)}}reset(){this.options.rows=this.rows,this.options.cols=this.cols;let e=this._customKeyEventHandler;this._setup(),super.reset(),this._selectionService?.reset(),this._decorationService.reset(),this._customKeyEventHandler=e,this.refresh(0,this.rows-1)}clearTextureAtlas(){this._renderService?.clearTextureAtlas()}_reportFocus(){this.element?.classList.contains(`focus`)?this.coreService.triggerDataEvent(Q.ESC+`[I`):this.coreService.triggerDataEvent(Q.ESC+`[O`)}_reportWindowsOptions(e){if(this._renderService)switch(e){case 0:let e=this._renderService.dimensions.css.canvas.width.toFixed(0),t=this._renderService.dimensions.css.canvas.height.toFixed(0);this.coreService.triggerDataEvent(`${Q.ESC}[4;${t};${e}t`);break;case 1:let n=this._renderService.dimensions.css.cell.width.toFixed(0),r=this._renderService.dimensions.css.cell.height.toFixed(0);this.coreService.triggerDataEvent(`${Q.ESC}[6;${r};${n}t`);break}}cancel(e,t){if(!(!this.options.cancelEvents&&!t))return e.preventDefault(),e.stopPropagation(),!1}};function ld(e){return e.keyCode===16||e.keyCode===17||e.keyCode===18}var ud=class{constructor(){this._addons=[]}dispose(){for(let e=this._addons.length-1;e>=0;e--)this._addons[e].instance.dispose()}loadAddon(e,t){let n={instance:t,dispose:t.dispose,isDisposed:!1};this._addons.push(n),t.dispose=()=>this._wrappedAddonDispose(n),t.activate(e)}_wrappedAddonDispose(e){if(e.isDisposed)return;let t=-1;for(let n=0;n<this._addons.length;n++)if(this._addons[n]===e){t=n;break}if(t===-1)throw Error(`Could not dispose an addon that has not been loaded`);e.isDisposed=!0,e.dispose.apply(e.instance),this._addons.splice(t,1)}},dd=class{constructor(e){this._line=e}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(e,t){if(!(e<0||e>=this._line.length))return t?(this._line.loadCell(e,t),t):this._line.loadCell(e,new br)}translateToString(e,t,n){return this._line.translateToString(e,t,n)}},fd=class{constructor(e,t){this._buffer=e,this.type=t}init(e){return this._buffer=e,this}get cursorY(){return this._buffer.y}get cursorX(){return this._buffer.x}get viewportY(){return this._buffer.ydisp}get baseY(){return this._buffer.ybase}get length(){return this._buffer.lines.length}getLine(e){let t=this._buffer.lines.get(e);if(t)return new dd(t)}getNullCell(){return new br}},pd=class extends Ci{constructor(e){super(),this._core=e,this._onBufferChange=this._register(new Z),this.onBufferChange=this._onBufferChange.event,this._normal=new fd(this._core.buffers.normal,`normal`),this._alternate=new fd(this._core.buffers.alt,`alternate`),this._core.buffers.onBufferActivate(()=>this._onBufferChange.fire(this.active))}get active(){if(this._core.buffers.active===this._core.buffers.normal)return this.normal;if(this._core.buffers.active===this._core.buffers.alt)return this.alternate;throw Error(`Active buffer is neither normal nor alternate`)}get normal(){return this._normal.init(this._core.buffers.normal)}get alternate(){return this._alternate.init(this._core.buffers.alt)}},md=class{constructor(e){this._core=e}registerCsiHandler(e,t){return this._core.registerCsiHandler(e,e=>t(e.toArray()))}addCsiHandler(e,t){return this.registerCsiHandler(e,t)}registerDcsHandler(e,t){return this._core.registerDcsHandler(e,(e,n)=>t(e,n.toArray()))}addDcsHandler(e,t){return this.registerDcsHandler(e,t)}registerEscHandler(e,t){return this._core.registerEscHandler(e,t)}addEscHandler(e,t){return this.registerEscHandler(e,t)}registerOscHandler(e,t){return this._core.registerOscHandler(e,t)}addOscHandler(e,t){return this.registerOscHandler(e,t)}},hd=class{constructor(e){this._core=e}register(e){this._core.unicodeService.register(e)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(e){this._core.unicodeService.activeVersion=e}},gd=[`cols`,`rows`],_d=0,vd=class extends Ci{constructor(e){super(),this._core=this._register(new cd(e)),this._addonManager=this._register(new ud),this._publicOptions={...this._core.options};let t=e=>this._core.options[e],n=(e,t)=>{this._checkReadonlyOptions(e),this._core.options[e]=t};for(let e in this._core.options){let r={get:t.bind(this,e),set:n.bind(this,e)};Object.defineProperty(this._publicOptions,e,r)}}_checkReadonlyOptions(e){if(gd.includes(e))throw Error(`Option "${e}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw Error(`You must set the allowProposedApi option to true to use proposed API`)}get onBell(){return this._core.onBell}get onBinary(){return this._core.onBinary}get onCursorMove(){return this._core.onCursorMove}get onData(){return this._core.onData}get onKey(){return this._core.onKey}get onLineFeed(){return this._core.onLineFeed}get onRender(){return this._core.onRender}get onResize(){return this._core.onResize}get onScroll(){return this._core.onScroll}get onSelectionChange(){return this._core.onSelectionChange}get onTitleChange(){return this._core.onTitleChange}get onWriteParsed(){return this._core.onWriteParsed}get element(){return this._core.element}get parser(){return this._parser||=new md(this._core),this._parser}get unicode(){return this._checkProposedApi(),new hd(this._core)}get textarea(){return this._core.textarea}get rows(){return this._core.rows}get cols(){return this._core.cols}get buffer(){return this._buffer||=this._register(new pd(this._core)),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){let e=this._core.coreService.decPrivateModes,t=`none`;switch(this._core.coreMouseService.activeProtocol){case`X10`:t=`x10`;break;case`VT200`:t=`vt200`;break;case`DRAG`:t=`drag`;break;case`ANY`:t=`any`;break}return{applicationCursorKeysMode:e.applicationCursorKeys,applicationKeypadMode:e.applicationKeypad,bracketedPasteMode:e.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:t,originMode:e.origin,reverseWraparoundMode:e.reverseWraparound,sendFocusMode:e.sendFocus,synchronizedOutputMode:e.synchronizedOutput,wraparoundMode:e.wraparound}}get options(){return this._publicOptions}set options(e){for(let t in e)this._publicOptions[t]=e[t]}blur(){this._core.blur()}focus(){this._core.focus()}input(e,t=!0){this._core.input(e,t)}resize(e,t){this._verifyIntegers(e,t),this._core.resize(e,t)}open(e){this._core.open(e)}attachCustomKeyEventHandler(e){this._core.attachCustomKeyEventHandler(e)}attachCustomWheelEventHandler(e){this._core.attachCustomWheelEventHandler(e)}registerLinkProvider(e){return this._core.registerLinkProvider(e)}registerCharacterJoiner(e){return this._checkProposedApi(),this._core.registerCharacterJoiner(e)}deregisterCharacterJoiner(e){this._checkProposedApi(),this._core.deregisterCharacterJoiner(e)}registerMarker(e=0){return this._verifyIntegers(e),this._core.registerMarker(e)}registerDecoration(e){return this._checkProposedApi(),this._verifyPositiveIntegers(e.x??0,e.width??0,e.height??0),this._core.registerDecoration(e)}hasSelection(){return this._core.hasSelection()}select(e,t,n){this._verifyIntegers(e,t,n),this._core.select(e,t,n)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(e,t){this._verifyIntegers(e,t),this._core.selectLines(e,t)}dispose(){super.dispose()}scrollLines(e){this._verifyIntegers(e),this._core.scrollLines(e)}scrollPages(e){this._verifyIntegers(e),this._core.scrollPages(e)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(e){this._verifyIntegers(e),this._core.scrollToLine(e)}clear(){this._core.clear()}write(e,t){this._core.write(e,t)}writeln(e,t){this._core.write(e),this._core.write(`\r
40
+ `,t)}paste(e){this._core.paste(e)}refresh(e,t){this._verifyIntegers(e,t),this._core.refresh(e,t)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(e){this._addonManager.loadAddon(this,e)}static get strings(){return{get promptLabel(){return nr.get()},set promptLabel(e){nr.set(e)},get tooMuchOutput(){return ir.get()},set tooMuchOutput(e){ir.set(e)}}}_verifyIntegers(...e){for(_d of e)if(_d===1/0||isNaN(_d)||_d%1!=0)throw Error(`This API only accepts integers`)}_verifyPositiveIntegers(...e){for(_d of e)if(_d&&(_d===1/0||isNaN(_d)||_d%1!=0||_d<0))throw Error(`This API only accepts positive integers`)}},yd=2,bd=1,xd=class{activate(e){this._terminal=e}dispose(){}fit(){let e=this.proposeDimensions();if(!e||!this._terminal||isNaN(e.cols)||isNaN(e.rows))return;let t=this._terminal._core;(this._terminal.rows!==e.rows||this._terminal.cols!==e.cols)&&(t._renderService.clear(),this._terminal.resize(e.cols,e.rows))}proposeDimensions(){if(!this._terminal||!this._terminal.element||!this._terminal.element.parentElement)return;let e=this._terminal._core._renderService.dimensions;if(e.css.cell.width===0||e.css.cell.height===0)return;let t=this._terminal.options.scrollback===0?0:this._terminal.options.overviewRuler?.width||14,n=window.getComputedStyle(this._terminal.element.parentElement),r=parseInt(n.getPropertyValue(`height`)),i=Math.max(0,parseInt(n.getPropertyValue(`width`))),a=window.getComputedStyle(this._terminal.element),o={top:parseInt(a.getPropertyValue(`padding-top`)),bottom:parseInt(a.getPropertyValue(`padding-bottom`)),right:parseInt(a.getPropertyValue(`padding-right`)),left:parseInt(a.getPropertyValue(`padding-left`))},s=o.top+o.bottom,c=o.right+o.left,l=r-s,u=i-c-t;return{cols:Math.max(yd,Math.floor(u/e.css.cell.width)),rows:Math.max(bd,Math.floor(l/e.css.cell.height))}}},Sd=`3.7.8`,Cd=Sd,wd=typeof Buffer==`function`,Td=typeof TextDecoder==`function`?new TextDecoder:void 0,Ed=typeof TextEncoder==`function`?new TextEncoder:void 0,Dd=Array.prototype.slice.call(`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=`),Od=(e=>{let t={};return e.forEach((e,n)=>t[e]=n),t})(Dd),kd=/^(?:[A-Za-z\d+\/]{4})*?(?:[A-Za-z\d+\/]{2}(?:==)?|[A-Za-z\d+\/]{3}=?)?$/,Ad=String.fromCharCode.bind(String),jd=typeof Uint8Array.from==`function`?Uint8Array.from.bind(Uint8Array):e=>new Uint8Array(Array.prototype.slice.call(e,0)),Md=e=>e.replace(/=/g,``).replace(/[+\/]/g,e=>e==`+`?`-`:`_`),Nd=e=>e.replace(/[^A-Za-z0-9\+\/]/g,``),Pd=e=>{let t,n,r,i,a=``,o=e.length%3;for(let o=0;o<e.length;){if((n=e.charCodeAt(o++))>255||(r=e.charCodeAt(o++))>255||(i=e.charCodeAt(o++))>255)throw TypeError(`invalid character found`);t=n<<16|r<<8|i,a+=Dd[t>>18&63]+Dd[t>>12&63]+Dd[t>>6&63]+Dd[t&63]}return o?a.slice(0,o-3)+`===`.substring(o):a},Fd=typeof btoa==`function`?e=>btoa(e):wd?e=>Buffer.from(e,`binary`).toString(`base64`):Pd,Id=wd?e=>Buffer.from(e).toString(`base64`):e=>{let t=[];for(let n=0,r=e.length;n<r;n+=4096)t.push(Ad.apply(null,e.subarray(n,n+4096)));return Fd(t.join(``))},Ld=(e,t=!1)=>t?Md(Id(e)):Id(e),Rd=e=>{if(e.length<2){var t=e.charCodeAt(0);return t<128?e:t<2048?Ad(192|t>>>6)+Ad(128|t&63):Ad(224|t>>>12&15)+Ad(128|t>>>6&63)+Ad(128|t&63)}else{var t=65536+(e.charCodeAt(0)-55296)*1024+(e.charCodeAt(1)-56320);return Ad(240|t>>>18&7)+Ad(128|t>>>12&63)+Ad(128|t>>>6&63)+Ad(128|t&63)}},zd=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,Bd=e=>e.replace(zd,Rd),Vd=wd?e=>Buffer.from(e,`utf8`).toString(`base64`):Ed?e=>Id(Ed.encode(e)):e=>Fd(Bd(e)),Hd=(e,t=!1)=>t?Md(Vd(e)):Vd(e),Ud=e=>Hd(e,!0),Wd=/[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g,Gd=e=>{switch(e.length){case 4:var t=((7&e.charCodeAt(0))<<18|(63&e.charCodeAt(1))<<12|(63&e.charCodeAt(2))<<6|63&e.charCodeAt(3))-65536;return Ad((t>>>10)+55296)+Ad((t&1023)+56320);case 3:return Ad((15&e.charCodeAt(0))<<12|(63&e.charCodeAt(1))<<6|63&e.charCodeAt(2));default:return Ad((31&e.charCodeAt(0))<<6|63&e.charCodeAt(1))}},Kd=e=>e.replace(Wd,Gd),qd=e=>{if(e=e.replace(/\s+/g,``),!kd.test(e))throw TypeError(`malformed base64.`);e+=`==`.slice(2-(e.length&3));let t,n,r,i=[];for(let a=0;a<e.length;)t=Od[e.charAt(a++)]<<18|Od[e.charAt(a++)]<<12|(n=Od[e.charAt(a++)])<<6|(r=Od[e.charAt(a++)]),n===64?i.push(Ad(t>>16&255)):r===64?i.push(Ad(t>>16&255,t>>8&255)):i.push(Ad(t>>16&255,t>>8&255,t&255));return i.join(``)},Jd=typeof atob==`function`?e=>atob(Nd(e)):wd?e=>Buffer.from(e,`base64`).toString(`binary`):qd,Yd=wd?e=>jd(Buffer.from(e,`base64`)):e=>jd(Jd(e).split(``).map(e=>e.charCodeAt(0))),Xd=e=>Yd(Qd(e)),Zd=wd?e=>Buffer.from(e,`base64`).toString(`utf8`):Td?e=>Td.decode(Yd(e)):e=>Kd(Jd(e)),Qd=e=>Nd(e.replace(/[-_]/g,e=>e==`-`?`+`:`/`)),$d=e=>Zd(Qd(e)),ef=e=>{if(typeof e!=`string`)return!1;let t=e.replace(/\s+/g,``).replace(/={0,2}$/,``);return!/[^\s0-9a-zA-Z\+/]/.test(t)||!/[^\s0-9a-zA-Z\-_]/.test(t)},tf=e=>({value:e,enumerable:!1,writable:!0,configurable:!0}),nf=function(){let e=(e,t)=>Object.defineProperty(String.prototype,e,tf(t));e(`fromBase64`,function(){return $d(this)}),e(`toBase64`,function(e){return Hd(this,e)}),e(`toBase64URI`,function(){return Hd(this,!0)}),e(`toBase64URL`,function(){return Hd(this,!0)}),e(`toUint8Array`,function(){return Xd(this)})},rf=function(){let e=(e,t)=>Object.defineProperty(Uint8Array.prototype,e,tf(t));e(`toBase64`,function(e){return Ld(this,e)}),e(`toBase64URI`,function(){return Ld(this,!0)}),e(`toBase64URL`,function(){return Ld(this,!0)})},af={version:Sd,VERSION:Cd,atob:Jd,atobPolyfill:qd,btoa:Fd,btoaPolyfill:Pd,fromBase64:$d,toBase64:Hd,encode:Hd,encodeURI:Ud,encodeURL:Ud,utob:Bd,btou:Kd,decode:$d,isValid:ef,fromUint8Array:Ld,toUint8Array:Xd,extendString:nf,extendUint8Array:rf,extendBuiltins:()=>{nf(),rf()}},of=class{constructor(e=new cf,t=new sf){this._base64=e,this._provider=t}activate(e){this._terminal=e,this._disposable=e.parser.registerOscHandler(52,e=>this._setOrReportClipboard(e))}dispose(){return this._disposable?.dispose()}_readText(e,t){let n=this._base64.encodeText(t);this._terminal?.input(`\x1B]52;${e};${n}\x07`,!1)}_setOrReportClipboard(e){let t=e.split(`;`);if(t.length<2)return!0;let n=t[0],r=t[1];if(r===`?`){let e=this._provider.readText(n);return e instanceof Promise?e.then(e=>(this._readText(n,e),!0)):(this._readText(n,e),!0)}let i=``;try{i=this._base64.decodeText(r)}catch{}let a=this._provider.writeText(n,i);return a instanceof Promise?a.then(()=>!0):!0}},sf=class{async readText(e){return e===`c`?navigator.clipboard.readText():Promise.resolve(``)}async writeText(e,t){return e===`c`?navigator.clipboard.writeText(t):Promise.resolve()}},cf=class{encodeText(e){return af.encode(e)}decodeText(e){let t=af.decode(e);return!af.isValid(e)||af.encode(t)!==e?``:t}},lf=new class{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(e){setTimeout(()=>{throw e.stack?mf.isErrorNoTelemetry(e)?new mf(e.message+`
41
+
42
+ `+e.stack):Error(e.message+`
43
+
44
+ `+e.stack):e},0)}}addListener(e){return this.listeners.push(e),()=>{this._removeListener(e)}}emit(e){this.listeners.forEach(t=>{t(e)})}_removeListener(e){this.listeners.splice(this.listeners.indexOf(e),1)}setUnexpectedErrorHandler(e){this.unexpectedErrorHandler=e}getUnexpectedErrorHandler(){return this.unexpectedErrorHandler}onUnexpectedError(e){this.unexpectedErrorHandler(e),this.emit(e)}onUnexpectedExternalError(e){this.unexpectedErrorHandler(e)}};function uf(e){ff(e)||lf.onUnexpectedError(e)}var df=`Canceled`;function ff(e){return e instanceof pf?!0:e instanceof Error&&e.name===df&&e.message===df}var pf=class extends Error{constructor(){super(df),this.name=this.message}},mf=class e extends Error{constructor(e){super(e),this.name=`CodeExpectedError`}static fromError(t){if(t instanceof e)return t;let n=new e;return n.message=t.message,n.stack=t.stack,n}static isErrorNoTelemetry(e){return e.name===`CodeExpectedError`}};function hf(e,t,n=0,r=e.length){let i=n,a=r;for(;i<a;){let n=Math.floor((i+a)/2);t(e[n])?i=n+1:a=n}return i-1}var gf=class e{constructor(e){this._array=e,this._findLastMonotonousLastIdx=0}findLastMonotonous(t){if(e.assertInvariants){if(this._prevFindLastPredicate){for(let e of this._array)if(this._prevFindLastPredicate(e)&&!t(e))throw Error(`MonotonousArray: current predicate must be weaker than (or equal to) the previous predicate.`)}this._prevFindLastPredicate=t}let n=hf(this._array,t,this._findLastMonotonousLastIdx);return this._findLastMonotonousLastIdx=n+1,n===-1?void 0:this._array[n]}};gf.assertInvariants=!1;var _f;(e=>{function t(e){return e<0}e.isLessThan=t;function n(e){return e<=0}e.isLessThanOrEqual=n;function r(e){return e>0}e.isGreaterThan=r;function i(e){return e===0}e.isNeitherLessOrGreaterThan=i,e.greaterThan=1,e.lessThan=-1,e.neitherLessOrGreaterThan=0})(_f||={});function vf(e,t){return(n,r)=>t(e(n),e(r))}var yf=(e,t)=>e-t,bf=class e{constructor(e){this.iterate=e}forEach(e){this.iterate(t=>(e(t),!0))}toArray(){let e=[];return this.iterate(t=>(e.push(t),!0)),e}filter(t){return new e(e=>this.iterate(n=>t(n)?e(n):!0))}map(t){return new e(e=>this.iterate(n=>e(t(n))))}some(e){let t=!1;return this.iterate(n=>(t=e(n),!t)),t}findFirst(e){let t;return this.iterate(n=>e(n)?(t=n,!1):!0),t}findLast(e){let t;return this.iterate(n=>(e(n)&&(t=n),!0)),t}findLastMaxBy(e){let t,n=!0;return this.iterate(r=>((n||_f.isGreaterThan(e(r,t)))&&(n=!1,t=r),!0)),t}};bf.empty=new bf(e=>{});function xf(e,t){let n=Object.create(null);for(let r of e){let e=t(r),i=n[e];i||=n[e]=[],i.push(r)}return n}var Sf=class{constructor(){this.map=new Map}add(e,t){let n=this.map.get(e);n||(n=new Set,this.map.set(e,n)),n.add(t)}delete(e,t){let n=this.map.get(e);n&&(n.delete(t),n.size===0&&this.map.delete(e))}forEach(e,t){let n=this.map.get(e);n&&n.forEach(t)}get(e){return this.map.get(e)||new Set}};function Cf(e,t){let n=this,r=!1,i;return function(){if(r)return i;if(r=!0,t)try{i=e.apply(n,arguments)}finally{t()}else i=e.apply(n,arguments);return i}}var wf;(e=>{function t(e){return e&&typeof e==`object`&&typeof e[Symbol.iterator]==`function`}e.is=t;let n=Object.freeze([]);function r(){return n}e.empty=r;function*i(e){yield e}e.single=i;function a(e){return t(e)?e:i(e)}e.wrap=a;function o(e){return e||n}e.from=o;function*s(e){for(let t=e.length-1;t>=0;t--)yield e[t]}e.reverse=s;function c(e){return!e||e[Symbol.iterator]().next().done===!0}e.isEmpty=c;function l(e){return e[Symbol.iterator]().next().value}e.first=l;function u(e,t){let n=0;for(let r of e)if(t(r,n++))return!0;return!1}e.some=u;function d(e,t){for(let n of e)if(t(n))return n}e.find=d;function*f(e,t){for(let n of e)t(n)&&(yield n)}e.filter=f;function*p(e,t){let n=0;for(let r of e)yield t(r,n++)}e.map=p;function*m(e,t){let n=0;for(let r of e)yield*t(r,n++)}e.flatMap=m;function*h(...e){for(let t of e)yield*t}e.concat=h;function g(e,t,n){let r=n;for(let n of e)r=t(r,n);return r}e.reduce=g;function*_(e,t,n=e.length){for(t<0&&(t+=e.length),n<0?n+=e.length:n>e.length&&(n=e.length);t<n;t++)yield e[t]}e.slice=_;function v(t,n=1/0){let r=[];if(n===0)return[r,t];let i=t[Symbol.iterator]();for(let t=0;t<n;t++){let t=i.next();if(t.done)return[r,e.empty()];r.push(t.value)}return[r,{[Symbol.iterator](){return i}}]}e.consume=v;async function y(e){let t=[];for await(let n of e)t.push(n);return Promise.resolve(t)}e.asyncToArray=y})(wf||={});var Tf=!1,Ef=null,Df=class e{constructor(){this.livingDisposables=new Map}getDisposableData(t){let n=this.livingDisposables.get(t);return n||(n={parent:null,source:null,isSingleton:!1,value:t,idx:e.idx++},this.livingDisposables.set(t,n)),n}trackDisposable(e){let t=this.getDisposableData(e);t.source||=Error().stack}setParent(e,t){let n=this.getDisposableData(e);n.parent=t}markAsDisposed(e){this.livingDisposables.delete(e)}markAsSingleton(e){this.getDisposableData(e).isSingleton=!0}getRootParent(e,t){let n=t.get(e);if(n)return n;let r=e.parent?this.getRootParent(this.getDisposableData(e.parent),t):e;return t.set(e,r),r}getTrackedDisposables(){let e=new Map;return[...this.livingDisposables.entries()].filter(([,t])=>t.source!==null&&!this.getRootParent(t,e).isSingleton).flatMap(([e])=>e)}computeLeakingDisposables(e=10,t){let n;if(t)n=t;else{let e=new Map,t=[...this.livingDisposables.values()].filter(t=>t.source!==null&&!this.getRootParent(t,e).isSingleton);if(t.length===0)return;let r=new Set(t.map(e=>e.value));if(n=t.filter(e=>!(e.parent&&r.has(e.parent))),n.length===0)throw Error(`There are cyclic diposable chains!`)}if(!n)return;function r(e){function t(e,t){for(;e.length>0&&t.some(t=>typeof t==`string`?t===e[0]:e[0].match(t));)e.shift()}let n=e.source.split(`
45
+ `).map(e=>e.trim().replace(`at `,``)).filter(e=>e!==``);return t(n,[`Error`,/^trackDisposable \(.*\)$/,/^DisposableTracker.trackDisposable \(.*\)$/]),n.reverse()}let i=new Sf;for(let e of n){let t=r(e);for(let n=0;n<=t.length;n++)i.add(t.slice(0,n).join(`
46
+ `),e)}n.sort(vf(e=>e.idx,yf));let a=``,o=0;for(let t of n.slice(0,e)){o++;let e=r(t),s=[];for(let t=0;t<e.length;t++){let a=e[t];a=`(shared with ${i.get(e.slice(0,t+1).join(`
47
+ `)).size}/${n.length} leaks) at ${a}`;let o=xf([...i.get(e.slice(0,t).join(`
48
+ `))].map(e=>r(e)[t]),e=>e);delete o[e[t]];for(let[e,t]of Object.entries(o))s.unshift(` - stacktraces of ${t.length} other leaks continue with ${e}`);s.unshift(a)}a+=`
49
+
50
+
51
+ ==================== Leaking disposable ${o}/${n.length}: ${t.value.constructor.name} ====================
52
+ ${s.join(`
53
+ `)}
54
+ ============================================================
55
+
56
+ `}return n.length>e&&(a+=`
57
+
58
+
59
+ ... and ${n.length-e} more leaking disposables
60
+
61
+ `),{leaks:n,details:a}}};Df.idx=0;function Of(e){Ef=e}if(Tf){let e=`__is_disposable_tracked__`;Of(new class{trackDisposable(t){let n=Error(`Potentially leaked disposable`).stack;setTimeout(()=>{t[e]||console.log(n)},3e3)}setParent(t,n){if(t&&t!==Rf.None)try{t[e]=!0}catch{}}markAsDisposed(t){if(t&&t!==Rf.None)try{t[e]=!0}catch{}}markAsSingleton(e){}})}function kf(e){return Ef?.trackDisposable(e),e}function Af(e){Ef?.markAsDisposed(e)}function jf(e,t){Ef?.setParent(e,t)}function Mf(e,t){if(Ef)for(let n of e)Ef.setParent(n,t)}function Nf(e){if(wf.is(e)){let t=[];for(let n of e)if(n)try{n.dispose()}catch(e){t.push(e)}if(t.length===1)throw t[0];if(t.length>1)throw AggregateError(t,`Encountered errors while disposing of store`);return Array.isArray(e)?[]:e}else if(e)return e.dispose(),e}function Pf(...e){let t=Ff(()=>Nf(e));return Mf(e,t),t}function Ff(e){let t=kf({dispose:Cf(()=>{Af(t),e()})});return t}var If=class e{constructor(){this._toDispose=new Set,this._isDisposed=!1,kf(this)}dispose(){this._isDisposed||(Af(this),this._isDisposed=!0,this.clear())}get isDisposed(){return this._isDisposed}clear(){if(this._toDispose.size!==0)try{Nf(this._toDispose)}finally{this._toDispose.clear()}}add(t){if(!t)return t;if(t===this)throw Error(`Cannot register a disposable on itself!`);return jf(t,this),this._isDisposed?e.DISABLE_DISPOSED_WARNING||console.warn(Error(`Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!`).stack):this._toDispose.add(t),t}delete(e){if(e){if(e===this)throw Error(`Cannot dispose a disposable on itself!`);this._toDispose.delete(e),e.dispose()}}deleteAndLeak(e){e&&this._toDispose.has(e)&&(this._toDispose.delete(e),jf(e,null))}};If.DISABLE_DISPOSED_WARNING=!1;var Lf=If,Rf=class{constructor(){this._store=new Lf,kf(this),jf(this._store,this)}dispose(){Af(this),this._store.dispose()}_register(e){if(e===this)throw Error(`Cannot register a disposable on itself!`);return this._store.add(e)}};Rf.None=Object.freeze({dispose(){}});var zf=class{constructor(){this._isDisposed=!1,kf(this)}get value(){return this._isDisposed?void 0:this._value}set value(e){this._isDisposed||e===this._value||(this._value?.dispose(),e&&jf(e,this),this._value=e)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,Af(this),this._value?.dispose(),this._value=void 0}clearAndLeak(){let e=this._value;return this._value=void 0,e&&jf(e,null),e}},Bf=class e{constructor(t){this.element=t,this.next=e.Undefined,this.prev=e.Undefined}};Bf.Undefined=new Bf(void 0);var Vf=globalThis.performance&&typeof globalThis.performance.now==`function`,Hf=class e{static create(t){return new e(t)}constructor(e){this._now=Vf&&e===!1?Date.now:globalThis.performance.now.bind(globalThis.performance),this._startTime=this._now(),this._stopTime=-1}stop(){this._stopTime=this._now()}reset(){this._startTime=this._now(),this._stopTime=-1}elapsed(){return this._stopTime===-1?this._now()-this._startTime:this._stopTime-this._startTime}},Uf=!1,Wf=!1,Gf=!1,Kf;(e=>{e.None=()=>Rf.None;function t(e){if(Gf){let{onDidAddListener:t}=e,n=Qf.create(),r=0;e.onDidAddListener=()=>{++r===2&&(console.warn(`snapshotted emitter LIKELY used public and SHOULD HAVE BEEN created with DisposableStore. snapshotted here`),n.print()),t?.()}}}function n(e,t){return f(e,()=>{},0,void 0,!0,void 0,t)}e.defer=n;function r(e){return(t,n=null,r)=>{let i=!1,a;return a=e(e=>{if(!i)return a?a.dispose():i=!0,t.call(n,e)},null,r),i&&a.dispose(),a}}e.once=r;function i(e,t,n){return u((n,r=null,i)=>e(e=>n.call(r,t(e)),null,i),n)}e.map=i;function a(e,t,n){return u((n,r=null,i)=>e(e=>{t(e),n.call(r,e)},null,i),n)}e.forEach=a;function o(e,t,n){return u((n,r=null,i)=>e(e=>t(e)&&n.call(r,e),null,i),n)}e.filter=o;function s(e){return e}e.signal=s;function c(...e){return(t,n=null,r)=>d(Pf(...e.map(e=>e(e=>t.call(n,e)))),r)}e.any=c;function l(e,t,n,r){let a=n;return i(e,e=>(a=t(a,e),a),r)}e.reduce=l;function u(e,n){let r,i={onWillAddFirstListener(){r=e(a.fire,a)},onDidRemoveLastListener(){r?.dispose()}};n||t(i);let a=new op(i);return n?.add(a),a.event}function d(e,t){return t instanceof Array?t.push(e):t&&t.add(e),e}function f(e,n,r=100,i=!1,a=!1,o,s){let c,l,u,d=0,f,p={leakWarningThreshold:o,onWillAddFirstListener(){c=e(e=>{d++,l=n(l,e),i&&!u&&(m.fire(l),l=void 0),f=()=>{let e=l;l=void 0,u=void 0,(!i||d>1)&&m.fire(e),d=0},typeof r==`number`?(clearTimeout(u),u=setTimeout(f,r)):u===void 0&&(u=0,queueMicrotask(f))})},onWillRemoveListener(){a&&d>0&&f?.()},onDidRemoveLastListener(){f=void 0,c.dispose()}};s||t(p);let m=new op(p);return s?.add(m),m.event}e.debounce=f;function p(t,n=0,r){return e.debounce(t,(e,t)=>e?(e.push(t),e):[t],n,void 0,!0,void 0,r)}e.accumulate=p;function m(e,t=(e,t)=>e===t,n){let r=!0,i;return o(e,e=>{let n=r||!t(e,i);return r=!1,i=e,n},n)}e.latch=m;function h(t,n,r){return[e.filter(t,n,r),e.filter(t,e=>!n(e),r)]}e.split=h;function g(e,t=!1,n=[],r){let i=n.slice(),a=e(e=>{i?i.push(e):s.fire(e)});r&&r.add(a);let o=()=>{i?.forEach(e=>s.fire(e)),i=null},s=new op({onWillAddFirstListener(){a||(a=e(e=>s.fire(e)),r&&r.add(a))},onDidAddFirstListener(){i&&(t?setTimeout(o):o())},onDidRemoveLastListener(){a&&a.dispose(),a=null}});return r&&r.add(s),s.event}e.buffer=g;function _(e,t){return(n,r,i)=>{let a=t(new y);return e(function(e){let t=a.evaluate(e);t!==v&&n.call(r,t)},void 0,i)}}e.chain=_;let v=Symbol(`HaltChainable`);class y{constructor(){this.steps=[]}map(e){return this.steps.push(e),this}forEach(e){return this.steps.push(t=>(e(t),t)),this}filter(e){return this.steps.push(t=>e(t)?t:v),this}reduce(e,t){let n=t;return this.steps.push(t=>(n=e(n,t),n)),this}latch(e=(e,t)=>e===t){let t=!0,n;return this.steps.push(r=>{let i=t||!e(r,n);return t=!1,n=r,i?r:v}),this}evaluate(e){for(let t of this.steps)if(e=t(e),e===v)break;return e}}function b(e,t,n=e=>e){let r=(...e)=>i.fire(n(...e)),i=new op({onWillAddFirstListener:()=>e.on(t,r),onDidRemoveLastListener:()=>e.removeListener(t,r)});return i.event}e.fromNodeEventEmitter=b;function x(e,t,n=e=>e){let r=(...e)=>i.fire(n(...e)),i=new op({onWillAddFirstListener:()=>e.addEventListener(t,r),onDidRemoveLastListener:()=>e.removeEventListener(t,r)});return i.event}e.fromDOMEventEmitter=x;function S(e){return new Promise(t=>r(e)(t))}e.toPromise=S;function C(e){let t=new op;return e.then(e=>{t.fire(e)},()=>{t.fire(void 0)}).finally(()=>{t.dispose()}),t.event}e.fromPromise=C;function w(e,t){return e(e=>t.fire(e))}e.forward=w;function T(e,t,n){return t(n),e(e=>t(e))}e.runAndSubscribe=T;class E{constructor(e,n){this._observable=e,this._counter=0,this._hasChanged=!1;let r={onWillAddFirstListener:()=>{e.addObserver(this)},onDidRemoveLastListener:()=>{e.removeObserver(this)}};n||t(r),this.emitter=new op(r),n&&n.add(this.emitter)}beginUpdate(e){this._counter++}handlePossibleChange(e){}handleChange(e,t){this._hasChanged=!0}endUpdate(e){this._counter--,this._counter===0&&(this._observable.reportChanges(),this._hasChanged&&(this._hasChanged=!1,this.emitter.fire(this._observable.get())))}}function D(e,t){return new E(e,t).emitter.event}e.fromObservable=D;function O(e){return(t,n,r)=>{let i=0,a=!1,o={beginUpdate(){i++},endUpdate(){i--,i===0&&(e.reportChanges(),a&&(a=!1,t.call(n)))},handlePossibleChange(){},handleChange(){a=!0}};e.addObserver(o),e.reportChanges();let s={dispose(){e.removeObserver(o)}};return r instanceof Lf?r.add(s):Array.isArray(r)&&r.push(s),s}}e.fromObservableLight=O})(Kf||={});var qf=class e{constructor(t){this.listenerCount=0,this.invocationCount=0,this.elapsedOverall=0,this.durations=[],this.name=`${t}_${e._idPool++}`,e.all.add(this)}start(e){this._stopWatch=new Hf,this.listenerCount=e}stop(){if(this._stopWatch){let e=this._stopWatch.elapsed();this.durations.push(e),this.elapsedOverall+=e,this.invocationCount+=1,this._stopWatch=void 0}}};qf.all=new Set,qf._idPool=0;var Jf=qf,Yf=-1,Xf=class e{constructor(t,n,r=(e._idPool++).toString(16).padStart(3,`0`)){this._errorHandler=t,this.threshold=n,this.name=r,this._warnCountdown=0}dispose(){this._stacks?.clear()}check(e,t){let n=this.threshold;if(n<=0||t<n)return;this._stacks||=new Map;let r=this._stacks.get(e.value)||0;if(this._stacks.set(e.value,r+1),--this._warnCountdown,this._warnCountdown<=0){this._warnCountdown=n*.5;let[e,r]=this.getMostFrequentStack(),i=`[${this.name}] potential listener LEAK detected, having ${t} listeners already. MOST frequent listener (${r}):`;console.warn(i),console.warn(e);let a=new $f(i,e);this._errorHandler(a)}return()=>{let t=this._stacks.get(e.value)||0;this._stacks.set(e.value,t-1)}}getMostFrequentStack(){if(!this._stacks)return;let e,t=0;for(let[n,r]of this._stacks)(!e||t<r)&&(e=[n,r],t=r);return e}};Xf._idPool=1;var Zf=Xf,Qf=class e{constructor(e){this.value=e}static create(){return new e(Error().stack??``)}print(){console.warn(this.value.split(`
62
+ `).slice(2).join(`
63
+ `))}},$f=class extends Error{constructor(e,t){super(e),this.name=`ListenerLeakError`,this.stack=t}},ep=class extends Error{constructor(e,t){super(e),this.name=`ListenerRefusalError`,this.stack=t}},tp=0,np=class{constructor(e){this.value=e,this.id=tp++}},rp=2,ip=(e,t)=>{if(e instanceof np)t(e);else for(let n=0;n<e.length;n++){let r=e[n];r&&t(r)}},ap;if(Uf){let e=[];setInterval(()=>{e.length!==0&&(console.warn(`[LEAKING LISTENERS] GC'ed these listeners that were NOT yet disposed:`),console.warn(e.join(`
64
+ `)),e.length=0)},3e3),ap=new FinalizationRegistry(t=>{typeof t==`string`&&e.push(t)})}var op=class{constructor(e){this._size=0,this._options=e,this._leakageMon=Yf>0||this._options?.leakWarningThreshold?new Zf(e?.onListenerError??uf,this._options?.leakWarningThreshold??Yf):void 0,this._perfMon=this._options?._profName?new Jf(this._options._profName):void 0,this._deliveryQueue=this._options?.deliveryQueue}dispose(){if(!this._disposed){if(this._disposed=!0,this._deliveryQueue?.current===this&&this._deliveryQueue.reset(),this._listeners){if(Wf){let e=this._listeners;queueMicrotask(()=>{ip(e,e=>e.stack?.print())})}this._listeners=void 0,this._size=0}this._options?.onDidRemoveLastListener?.(),this._leakageMon?.dispose()}}get event(){return this._event??=(e,t,n)=>{if(this._leakageMon&&this._size>this._leakageMon.threshold**2){let e=`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;console.warn(e);let t=this._leakageMon.getMostFrequentStack()??[`UNKNOWN stack`,-1],n=new ep(`${e}. HINT: Stack shows most frequent listener (${t[1]}-times)`,t[0]);return(this._options?.onListenerError||uf)(n),Rf.None}if(this._disposed)return Rf.None;t&&(e=e.bind(t));let r=new np(e),i;this._leakageMon&&this._size>=Math.ceil(this._leakageMon.threshold*.2)&&(r.stack=Qf.create(),i=this._leakageMon.check(r.stack,this._size+1)),Wf&&(r.stack=Qf.create()),this._listeners?this._listeners instanceof np?(this._deliveryQueue??=new sp,this._listeners=[this._listeners,r]):this._listeners.push(r):(this._options?.onWillAddFirstListener?.(this),this._listeners=r,this._options?.onDidAddFirstListener?.(this)),this._size++;let a=Ff(()=>{ap?.unregister(a),i?.(),this._removeListener(r)});if(n instanceof Lf?n.add(a):Array.isArray(n)&&n.push(a),ap){let e=Error().stack.split(`
65
+ `).slice(2,3).join(`
66
+ `).trim(),t=/(file:|vscode-file:\/\/vscode-app)?(\/[^:]*:\d+:\d+)/.exec(e);ap.register(a,t?.[2]??e,a)}return a},this._event}_removeListener(e){if(this._options?.onWillRemoveListener?.(this),!this._listeners)return;if(this._size===1){this._listeners=void 0,this._options?.onDidRemoveLastListener?.(this),this._size=0;return}let t=this._listeners,n=t.indexOf(e);if(n===-1)throw console.log(`disposed?`,this._disposed),console.log(`size?`,this._size),console.log(`arr?`,JSON.stringify(this._listeners)),Error(`Attempted to dispose unknown listener`);this._size--,t[n]=void 0;let r=this._deliveryQueue.current===this;if(this._size*rp<=t.length){let e=0;for(let n=0;n<t.length;n++)t[n]?t[e++]=t[n]:r&&(this._deliveryQueue.end--,e<this._deliveryQueue.i&&this._deliveryQueue.i--);t.length=e}}_deliver(e,t){if(!e)return;let n=this._options?.onListenerError||uf;if(!n){e.value(t);return}try{e.value(t)}catch(e){n(e)}}_deliverQueue(e){let t=e.current._listeners;for(;e.i<e.end;)this._deliver(t[e.i++],e.value);e.reset()}fire(e){if(this._deliveryQueue?.current&&(this._deliverQueue(this._deliveryQueue),this._perfMon?.stop()),this._perfMon?.start(this._size),this._listeners)if(this._listeners instanceof np)this._deliver(this._listeners,e);else{let t=this._deliveryQueue;t.enqueue(this,e,this._listeners.length),this._deliverQueue(t)}this._perfMon?.stop()}hasListeners(){return this._size>0}},sp=class{constructor(){this.i=-1,this.end=0}enqueue(e,t,n){this.i=0,this.end=n,this.current=e,this.value=t}reset(){this.i=this.end,this.current=void 0,this.value=void 0}},cp=Object.freeze(function(e,t){let n=setTimeout(e.bind(t),0);return{dispose(){clearTimeout(n)}}}),lp;(e=>{function t(t){return t===e.None||t===e.Cancelled||t instanceof up?!0:!t||typeof t!=`object`?!1:typeof t.isCancellationRequested==`boolean`&&typeof t.onCancellationRequested==`function`}e.isCancellationToken=t,e.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:Kf.None}),e.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:cp})})(lp||={});var up=class{constructor(){this._isCancelled=!1,this._emitter=null}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?cp:(this._emitter||=new op,this._emitter.event)}dispose(){this._emitter&&=(this._emitter.dispose(),null)}},dp=`en`,fp=!1,pp=!1,mp=dp,hp,gp=globalThis,_p;typeof gp.vscode<`u`&&typeof gp.vscode.process<`u`?_p=gp.vscode.process:typeof process<`u`&&typeof process?.versions?.node==`string`&&(_p=process);var vp=typeof _p?.versions?.electron==`string`&&_p?.type===`renderer`;if(typeof _p==`object`){_p.platform,_p.platform,fp=_p.platform===`linux`,fp&&_p.env.SNAP&&_p.env.SNAP_REVISION,_p.env.CI||_p.env.BUILD_ARTIFACTSTAGINGDIRECTORY,mp=dp;let e=_p.env.VSCODE_NLS_CONFIG;if(e)try{let t=JSON.parse(e);t.userLocale,t.osLocale,mp=t.resolvedLanguage||dp,t.languagePack?.translationsConfigFile}catch{}}else typeof navigator==`object`&&!vp?(hp=navigator.userAgent,hp.indexOf(`Windows`),hp.indexOf(`Macintosh`),(hp.indexOf(`Macintosh`)>=0||hp.indexOf(`iPad`)>=0||hp.indexOf(`iPhone`)>=0)&&navigator.maxTouchPoints&&navigator.maxTouchPoints,fp=hp.indexOf(`Linux`)>=0,hp?.indexOf(`Mobi`),pp=!0,mp=globalThis._VSCODE_NLS_LANGUAGE||dp,navigator.language.toLowerCase()):console.error(`Unable to resolve platform.`);pp&&typeof gp.importScripts==`function`&&gp.origin;var yp=hp,bp=mp,xp;(e=>{function t(){return bp}e.value=t;function n(){return bp.length===2?bp===`en`:bp.length>=3?bp[0]===`e`&&bp[1]===`n`&&bp[2]===`-`:!1}e.isDefaultVariant=n;function r(){return bp===`en`}e.isDefault=r})(xp||={});var Sp=typeof gp.postMessage==`function`&&!gp.importScripts;(()=>{if(Sp){let e=[];gp.addEventListener(`message`,t=>{if(t.data&&t.data.vscodeScheduleAsyncWork)for(let n=0,r=e.length;n<r;n++){let r=e[n];if(r.id===t.data.vscodeScheduleAsyncWork){e.splice(n,1),r.callback();return}}});let t=0;return n=>{let r=++t;e.push({id:r,callback:n}),gp.postMessage({vscodeScheduleAsyncWork:r},`*`)}}return e=>setTimeout(e)})();var Cp=!!(yp&&yp.indexOf(`Chrome`)>=0);yp&&yp.indexOf(`Firefox`),!Cp&&yp&&yp.indexOf(`Safari`),yp&&yp.indexOf(`Edg/`),yp&&yp.indexOf(`Android`);function wp(e,t=0,n){let r=setTimeout(()=>{e(),n&&i.dispose()},t),i=Ff(()=>{clearTimeout(r),n?.deleteAndLeak(i)});return n?.add(i),i}(function(){typeof globalThis.requestIdleCallback!=`function`||globalThis.cancelIdleCallback})();var Tp;(e=>{async function t(e){let t,n=await Promise.all(e.map(e=>e.then(e=>e,e=>{t||=e})));if(typeof t<`u`)throw t;return n}e.settled=t;function n(e){return new Promise(async(t,n)=>{try{await e(t,n)}catch(e){n(e)}})}e.withAsyncBody=n})(Tp||={});var Ep=class e{static fromArray(t){return new e(e=>{e.emitMany(t)})}static fromPromise(t){return new e(async e=>{e.emitMany(await t)})}static fromPromises(t){return new e(async e=>{await Promise.all(t.map(async t=>e.emitOne(await t)))})}static merge(t){return new e(async e=>{await Promise.all(t.map(async t=>{for await(let n of t)e.emitOne(n)}))})}constructor(e,t){this._state=0,this._results=[],this._error=null,this._onReturn=t,this._onStateChanged=new op,queueMicrotask(async()=>{let t={emitOne:e=>this.emitOne(e),emitMany:e=>this.emitMany(e),reject:e=>this.reject(e)};try{await Promise.resolve(e(t)),this.resolve()}catch(e){this.reject(e)}finally{t.emitOne=void 0,t.emitMany=void 0,t.reject=void 0}})}[Symbol.asyncIterator](){let e=0;return{next:async()=>{do{if(this._state===2)throw this._error;if(e<this._results.length)return{done:!1,value:this._results[e++]};if(this._state===1)return{done:!0,value:void 0};await Kf.toPromise(this._onStateChanged.event)}while(!0)},return:async()=>(this._onReturn?.(),{done:!0,value:void 0})}}static map(t,n){return new e(async e=>{for await(let r of t)e.emitOne(n(r))})}map(t){return e.map(this,t)}static filter(t,n){return new e(async e=>{for await(let r of t)n(r)&&e.emitOne(r)})}filter(t){return e.filter(this,t)}static coalesce(t){return e.filter(t,e=>!!e)}coalesce(){return e.coalesce(this)}static async toPromise(e){let t=[];for await(let n of e)t.push(n);return t}toPromise(){return e.toPromise(this)}emitOne(e){this._state===0&&(this._results.push(e),this._onStateChanged.fire())}emitMany(e){this._state===0&&(this._results=this._results.concat(e),this._onStateChanged.fire())}resolve(){this._state===0&&(this._state=1,this._onStateChanged.fire())}reject(e){this._state===0&&(this._state=2,this._error=e,this._onStateChanged.fire())}};Ep.EMPTY=Ep.fromArray([]);var Dp=class extends Rf{constructor(e){super(),this._terminal=e,this._linesCacheTimeout=this._register(new zf),this._linesCacheDisposables=this._register(new zf),this._register(Ff(()=>this._destroyLinesCache()))}initLinesCache(){this._linesCache||(this._linesCache=Array(this._terminal.buffer.active.length),this._linesCacheDisposables.value=Pf(this._terminal.onLineFeed(()=>this._destroyLinesCache()),this._terminal.onCursorMove(()=>this._destroyLinesCache()),this._terminal.onResize(()=>this._destroyLinesCache()))),this._linesCacheTimeout.value=wp(()=>this._destroyLinesCache(),15e3)}_destroyLinesCache(){this._linesCache=void 0,this._linesCacheDisposables.clear(),this._linesCacheTimeout.clear()}getLineFromCache(e){return this._linesCache?.[e]}setLineInCache(e,t){this._linesCache&&(this._linesCache[e]=t)}translateBufferLineToStringWithWrap(e,t){let n=[],r=[0],i=this._terminal.buffer.active.getLine(e);for(;i;){let a=this._terminal.buffer.active.getLine(e+1),o=a?a.isWrapped:!1,s=i.translateToString(!o&&t);if(o&&a){let e=i.getCell(i.length-1);e&&e.getCode()===0&&e.getWidth()===1&&a.getCell(0)?.getWidth()===2&&(s=s.slice(0,-1))}if(n.push(s),o)r.push(r[r.length-1]+s.length);else break;e++,i=a}return[n.join(``),r]}},Op=class{get cachedSearchTerm(){return this._cachedSearchTerm}set cachedSearchTerm(e){this._cachedSearchTerm=e}get lastSearchOptions(){return this._lastSearchOptions}set lastSearchOptions(e){this._lastSearchOptions=e}isValidSearchTerm(e){return!!(e&&e.length>0)}didOptionsChange(e){return this._lastSearchOptions?e?this._lastSearchOptions.caseSensitive!==e.caseSensitive||this._lastSearchOptions.regex!==e.regex||this._lastSearchOptions.wholeWord!==e.wholeWord:!1:!0}shouldUpdateHighlighting(e,t){return t?.decorations?this._cachedSearchTerm===void 0||e!==this._cachedSearchTerm||this.didOptionsChange(t):!1}clearCachedTerm(){this._cachedSearchTerm=void 0}reset(){this._cachedSearchTerm=void 0,this._lastSearchOptions=void 0}},kp=class{constructor(e,t){this._terminal=e,this._lineCache=t}find(e,t,n,r){if(!e||e.length===0){this._terminal.clearSelection();return}if(n>this._terminal.cols)throw Error(`Invalid col: ${n} to search in terminal of ${this._terminal.cols} cols`);this._lineCache.initLinesCache();let i={startRow:t,startCol:n},a=this._findInLine(e,i,r);if(!a)for(let n=t+1;n<this._terminal.buffer.active.baseY+this._terminal.rows&&(i.startRow=n,i.startCol=0,a=this._findInLine(e,i,r),!a);n++);return a}findNextWithSelection(e,t,n){if(!e||e.length===0){this._terminal.clearSelection();return}let r=this._terminal.getSelectionPosition();this._terminal.clearSelection();let i=0,a=0;r&&(n===e?(i=r.end.x,a=r.end.y):(i=r.start.x,a=r.start.y)),this._lineCache.initLinesCache();let o={startRow:a,startCol:i},s=this._findInLine(e,o,t);if(!s)for(let n=a+1;n<this._terminal.buffer.active.baseY+this._terminal.rows&&(o.startRow=n,o.startCol=0,s=this._findInLine(e,o,t),!s);n++);if(!s&&a!==0)for(let n=0;n<a&&(o.startRow=n,o.startCol=0,s=this._findInLine(e,o,t),!s);n++);return!s&&r&&(o.startRow=r.start.y,o.startCol=0,s=this._findInLine(e,o,t)),s}findPreviousWithSelection(e,t,n){if(!e||e.length===0){this._terminal.clearSelection();return}let r=this._terminal.getSelectionPosition();this._terminal.clearSelection();let i=this._terminal.buffer.active.baseY+this._terminal.rows-1,a=this._terminal.cols;this._lineCache.initLinesCache();let o={startRow:i,startCol:a},s;if(r&&(o.startRow=i=r.start.y,o.startCol=a=r.start.x,n!==e&&(s=this._findInLine(e,o,t,!1),s||(o.startRow=i=r.end.y,o.startCol=a=r.end.x))),s||=this._findInLine(e,o,t,!0),!s){o.startCol=Math.max(o.startCol,this._terminal.cols);for(let n=i-1;n>=0&&(o.startRow=n,s=this._findInLine(e,o,t,!0),!s);n--);}if(!s&&i!==this._terminal.buffer.active.baseY+this._terminal.rows-1)for(let n=this._terminal.buffer.active.baseY+this._terminal.rows-1;n>=i&&(o.startRow=n,s=this._findInLine(e,o,t,!0),!s);n--);return s}_isWholeWord(e,t,n){return(e===0||` ~!@#$%^&*()+\`-=[]{}|\\;:"',./<>?`.includes(t[e-1]))&&(e+n.length===t.length||` ~!@#$%^&*()+\`-=[]{}|\\;:"',./<>?`.includes(t[e+n.length]))}_findInLine(e,t,n={},r=!1){let i=t.startRow,a=t.startCol;if(this._terminal.buffer.active.getLine(i)?.isWrapped){if(r){t.startCol+=this._terminal.cols;return}return t.startRow--,t.startCol+=this._terminal.cols,this._findInLine(e,t,n)}let o=this._lineCache.getLineFromCache(i);o||(o=this._lineCache.translateBufferLineToStringWithWrap(i,!0),this._lineCache.setLineInCache(i,o));let[s,c]=o,l=this._bufferColsToStringOffset(i,a),u=e,d=s;n.regex||(u=n.caseSensitive?e:e.toLowerCase(),d=n.caseSensitive?s:s.toLowerCase());let f=-1;if(n.regex){let t=RegExp(u,n.caseSensitive?`g`:`gi`),i;if(r)for(;i=t.exec(d.slice(0,l));)f=t.lastIndex-i[0].length,e=i[0],t.lastIndex-=e.length-1;else i=t.exec(d.slice(l)),i&&i[0].length>0&&(f=l+(t.lastIndex-i[0].length),e=i[0])}else r?l-u.length>=0&&(f=d.lastIndexOf(u,l-u.length)):f=d.indexOf(u,l);if(f>=0){if(n.wholeWord&&!this._isWholeWord(f,d,e))return;let t=0;for(;t<c.length-1&&f>=c[t+1];)t++;let r=t;for(;r<c.length-1&&f+e.length>=c[r+1];)r++;let a=f-c[t],o=f+e.length-c[r],s=this._stringLengthToBufferSize(i+t,a),l=this._stringLengthToBufferSize(i+r,o)-s+this._terminal.cols*(r-t);return{term:e,col:s,row:i+t,size:l}}}_stringLengthToBufferSize(e,t){let n=this._terminal.buffer.active.getLine(e);if(!n)return 0;for(let e=0;e<t;e++){let r=n.getCell(e);if(!r)break;let i=r.getChars();i.length>1&&(t-=i.length-1);let a=n.getCell(e+1);a&&a.getWidth()===0&&t++}return t}_bufferColsToStringOffset(e,t){let n=e,r=0,i=this._terminal.buffer.active.getLine(n);for(;t>0&&i;){for(let e=0;e<t&&e<this._terminal.cols;e++){let t=i.getCell(e);if(!t)break;t.getWidth()&&(r+=t.getCode()===0?1:t.getChars().length)}if(n++,i=this._terminal.buffer.active.getLine(n),i&&!i.isWrapped)break;t-=this._terminal.cols}return r}},Ap=class extends Rf{constructor(e){super(),this._terminal=e,this._highlightDecorations=[],this._highlightedLines=new Set,this._register(Ff(()=>this.clearHighlightDecorations()))}createHighlightDecorations(e,t){this.clearHighlightDecorations();for(let n of e){let e=this._createResultDecorations(n,t,!1);if(e)for(let t of e)this._storeDecoration(t,n)}}createActiveDecoration(e,t){let n=this._createResultDecorations(e,t,!0);if(n)return{decorations:n,match:e,dispose(){Nf(n)}}}clearHighlightDecorations(){Nf(this._highlightDecorations),this._highlightDecorations=[],this._highlightedLines.clear()}_storeDecoration(e,t){this._highlightedLines.add(e.marker.line),this._highlightDecorations.push({decoration:e,match:t,dispose(){e.dispose()}})}_applyStyles(e,t,n){e.classList.contains(`xterm-find-result-decoration`)||(e.classList.add(`xterm-find-result-decoration`),t&&(e.style.outline=`1px solid ${t}`)),n&&e.classList.add(`xterm-find-active-result-decoration`)}_createResultDecorations(e,t,n){let r=[],i=e.col,a=e.size,o=-this._terminal.buffer.active.baseY-this._terminal.buffer.active.cursorY+e.row;for(;a>0;){let e=Math.min(this._terminal.cols-i,a);r.push([o,i,e]),i=0,a-=e,o++}let s=[];for(let e of r){let r=this._terminal.registerMarker(e[0]),i=this._terminal.registerDecoration({marker:r,x:e[1],width:e[2],backgroundColor:n?t.activeMatchBackground:t.matchBackground,overviewRulerOptions:this._highlightedLines.has(r.line)?void 0:{color:n?t.activeMatchColorOverviewRuler:t.matchOverviewRuler,position:`center`}});if(i){let e=[];e.push(r),e.push(i.onRender(e=>this._applyStyles(e,n?t.activeMatchBorder:t.matchBorder,!1))),e.push(i.onDispose(()=>Nf(e))),s.push(i)}}return s.length===0?void 0:s}},jp=class extends Rf{constructor(){super(...arguments),this._searchResults=[],this._onDidChangeResults=this._register(new op)}get onDidChangeResults(){return this._onDidChangeResults.event}get searchResults(){return this._searchResults}get selectedDecoration(){return this._selectedDecoration}set selectedDecoration(e){this._selectedDecoration=e}updateResults(e,t){this._searchResults=e.slice(0,t)}clearResults(){this._searchResults=[]}clearSelectedDecoration(){this._selectedDecoration&&=(this._selectedDecoration.dispose(),void 0)}findResultIndex(e){for(let t=0;t<this._searchResults.length;t++){let n=this._searchResults[t];if(n.row===e.row&&n.col===e.col&&n.size===e.size)return t}return-1}fireResultsChanged(e){if(!e)return;let t=-1;this._selectedDecoration&&(t=this.findResultIndex(this._selectedDecoration.match)),this._onDidChangeResults.fire({resultIndex:t,resultCount:this._searchResults.length})}reset(){this.clearSelectedDecoration(),this.clearResults()}},Mp=class extends Rf{constructor(e){super(),this._highlightTimeout=this._register(new zf),this._lineCache=this._register(new zf),this._state=new Op,this._resultTracker=this._register(new jp),this._highlightLimit=e?.highlightLimit??1e3}get onDidChangeResults(){return this._resultTracker.onDidChangeResults}activate(e){this._terminal=e,this._lineCache.value=new Dp(e),this._engine=new kp(e,this._lineCache.value),this._decorationManager=new Ap(e),this._register(this._terminal.onWriteParsed(()=>this._updateMatches())),this._register(this._terminal.onResize(()=>this._updateMatches())),this._register(Ff(()=>this.clearDecorations()))}_updateMatches(){this._highlightTimeout.clear(),this._state.cachedSearchTerm&&this._state.lastSearchOptions?.decorations&&(this._highlightTimeout.value=wp(()=>{let e=this._state.cachedSearchTerm;this._state.clearCachedTerm(),this.findPrevious(e,{...this._state.lastSearchOptions,incremental:!0},{noScroll:!0})},200))}clearDecorations(e){this._resultTracker.clearSelectedDecoration(),this._decorationManager?.clearHighlightDecorations(),this._resultTracker.clearResults(),e||this._state.clearCachedTerm()}clearActiveDecoration(){this._resultTracker.clearSelectedDecoration()}findNext(e,t,n){if(!this._terminal||!this._engine)throw Error(`Cannot use addon until it has been loaded`);this._state.lastSearchOptions=t,this._state.shouldUpdateHighlighting(e,t)&&this._highlightAllMatches(e,t);let r=this._findNextAndSelect(e,t,n);return this._fireResults(t),this._state.cachedSearchTerm=e,r}_highlightAllMatches(e,t){if(!this._terminal||!this._engine||!this._decorationManager)throw Error(`Cannot use addon until it has been loaded`);if(!this._state.isValidSearchTerm(e)){this.clearDecorations();return}this.clearDecorations(!0);let n=[],r,i=this._engine.find(e,0,0,t);for(;i&&(r?.row!==i.row||r?.col!==i.col)&&!(n.length>=this._highlightLimit);)r=i,n.push(r),i=this._engine.find(e,r.col+r.term.length>=this._terminal.cols?r.row+1:r.row,r.col+r.term.length>=this._terminal.cols?0:r.col+1,t);this._resultTracker.updateResults(n,this._highlightLimit),t.decorations&&this._decorationManager.createHighlightDecorations(n,t.decorations)}_findNextAndSelect(e,t,n){if(!this._terminal||!this._engine)return!1;if(!this._state.isValidSearchTerm(e))return this._terminal.clearSelection(),this.clearDecorations(),!1;let r=this._engine.findNextWithSelection(e,t,this._state.cachedSearchTerm);return this._selectResult(r,t?.decorations,n?.noScroll)}findPrevious(e,t,n){if(!this._terminal||!this._engine)throw Error(`Cannot use addon until it has been loaded`);this._state.lastSearchOptions=t,this._state.shouldUpdateHighlighting(e,t)&&this._highlightAllMatches(e,t);let r=this._findPreviousAndSelect(e,t,n);return this._fireResults(t),this._state.cachedSearchTerm=e,r}_fireResults(e){this._resultTracker.fireResultsChanged(!!e?.decorations)}_findPreviousAndSelect(e,t,n){if(!this._terminal||!this._engine)return!1;if(!this._state.isValidSearchTerm(e))return this._terminal.clearSelection(),this.clearDecorations(),!1;let r=this._engine.findPreviousWithSelection(e,t,this._state.cachedSearchTerm);return this._selectResult(r,t?.decorations,n?.noScroll)}_selectResult(e,t,n){if(!this._terminal||!this._decorationManager)return!1;if(this._resultTracker.clearSelectedDecoration(),!e)return this._terminal.clearSelection(),!1;if(this._terminal.select(e.col,e.row,e.size),t){let n=this._decorationManager.createActiveDecoration(e,t);n&&(this._resultTracker.selectedDecoration=n)}if(!n&&(e.row>=this._terminal.buffer.active.viewportY+this._terminal.rows||e.row<this._terminal.buffer.active.viewportY)){let t=e.row-this._terminal.buffer.active.viewportY;t-=Math.floor(this._terminal.rows/2),this._terminal.scrollLines(t)}return!0}},Np=Object.defineProperty,Pp=Object.getOwnPropertyDescriptor,Fp=(e,t,n,r)=>{for(var i=r>1?void 0:r?Pp(t,n):t,a=e.length-1,o;a>=0;a--)(o=e[a])&&(i=(r?o(t,n,i):o(i))||i);return r&&i&&Np(t,n,i),i},Ip=(e,t)=>(n,r)=>t(n,r,e),Lp=new class{constructor(){this.listeners=[],this.unexpectedErrorHandler=function(e){setTimeout(()=>{throw e.stack?Hp.isErrorNoTelemetry(e)?new Hp(e.message+`
67
+
68
+ `+e.stack):Error(e.message+`
69
+
70
+ `+e.stack):e},0)}}addListener(e){return this.listeners.push(e),()=>{this._removeListener(e)}}emit(e){this.listeners.forEach(t=>{t(e)})}_removeListener(e){this.listeners.splice(this.listeners.indexOf(e),1)}setUnexpectedErrorHandler(e){this.unexpectedErrorHandler=e}getUnexpectedErrorHandler(){return this.unexpectedErrorHandler}onUnexpectedError(e){this.unexpectedErrorHandler(e),this.emit(e)}onUnexpectedExternalError(e){this.unexpectedErrorHandler(e)}};function Rp(e){Bp(e)||Lp.onUnexpectedError(e)}var zp=`Canceled`;function Bp(e){return e instanceof Vp?!0:e instanceof Error&&e.name===zp&&e.message===zp}var Vp=class extends Error{constructor(){super(zp),this.name=this.message}},Hp=class e extends Error{constructor(e){super(e),this.name=`CodeExpectedError`}static fromError(t){if(t instanceof e)return t;let n=new e;return n.message=t.message,n.stack=t.stack,n}static isErrorNoTelemetry(e){return e.name===`CodeExpectedError`}};function Up(e,t,n=0,r=e.length){let i=n,a=r;for(;i<a;){let n=Math.floor((i+a)/2);t(e[n])?i=n+1:a=n}return i-1}var Wp=class e{constructor(e){this._array=e,this._findLastMonotonousLastIdx=0}findLastMonotonous(t){if(e.assertInvariants){if(this._prevFindLastPredicate){for(let e of this._array)if(this._prevFindLastPredicate(e)&&!t(e))throw Error(`MonotonousArray: current predicate must be weaker than (or equal to) the previous predicate.`)}this._prevFindLastPredicate=t}let n=Up(this._array,t,this._findLastMonotonousLastIdx);return this._findLastMonotonousLastIdx=n+1,n===-1?void 0:this._array[n]}};Wp.assertInvariants=!1;var Gp;(e=>{function t(e){return e<0}e.isLessThan=t;function n(e){return e<=0}e.isLessThanOrEqual=n;function r(e){return e>0}e.isGreaterThan=r;function i(e){return e===0}e.isNeitherLessOrGreaterThan=i,e.greaterThan=1,e.lessThan=-1,e.neitherLessOrGreaterThan=0})(Gp||={});function Kp(e,t){return(n,r)=>t(e(n),e(r))}var qp=(e,t)=>e-t,Jp=class e{constructor(e){this.iterate=e}forEach(e){this.iterate(t=>(e(t),!0))}toArray(){let e=[];return this.iterate(t=>(e.push(t),!0)),e}filter(t){return new e(e=>this.iterate(n=>t(n)?e(n):!0))}map(t){return new e(e=>this.iterate(n=>e(t(n))))}some(e){let t=!1;return this.iterate(n=>(t=e(n),!t)),t}findFirst(e){let t;return this.iterate(n=>e(n)?(t=n,!1):!0),t}findLast(e){let t;return this.iterate(n=>(e(n)&&(t=n),!0)),t}findLastMaxBy(e){let t,n=!0;return this.iterate(r=>((n||Gp.isGreaterThan(e(r,t)))&&(n=!1,t=r),!0)),t}};Jp.empty=new Jp(e=>{});function Yp(e,t){let n=Object.create(null);for(let r of e){let e=t(r),i=n[e];i||=n[e]=[],i.push(r)}return n}var Xp=class{constructor(){this.map=new Map}add(e,t){let n=this.map.get(e);n||(n=new Set,this.map.set(e,n)),n.add(t)}delete(e,t){let n=this.map.get(e);n&&(n.delete(t),n.size===0&&this.map.delete(e))}forEach(e,t){let n=this.map.get(e);n&&n.forEach(t)}get(e){return this.map.get(e)||new Set}};function Zp(e,t){let n=this,r=!1,i;return function(){if(r)return i;if(r=!0,t)try{i=e.apply(n,arguments)}finally{t()}else i=e.apply(n,arguments);return i}}var Qp;(e=>{function t(e){return e&&typeof e==`object`&&typeof e[Symbol.iterator]==`function`}e.is=t;let n=Object.freeze([]);function r(){return n}e.empty=r;function*i(e){yield e}e.single=i;function a(e){return t(e)?e:i(e)}e.wrap=a;function o(e){return e||n}e.from=o;function*s(e){for(let t=e.length-1;t>=0;t--)yield e[t]}e.reverse=s;function c(e){return!e||e[Symbol.iterator]().next().done===!0}e.isEmpty=c;function l(e){return e[Symbol.iterator]().next().value}e.first=l;function u(e,t){let n=0;for(let r of e)if(t(r,n++))return!0;return!1}e.some=u;function d(e,t){for(let n of e)if(t(n))return n}e.find=d;function*f(e,t){for(let n of e)t(n)&&(yield n)}e.filter=f;function*p(e,t){let n=0;for(let r of e)yield t(r,n++)}e.map=p;function*m(e,t){let n=0;for(let r of e)yield*t(r,n++)}e.flatMap=m;function*h(...e){for(let t of e)yield*t}e.concat=h;function g(e,t,n){let r=n;for(let n of e)r=t(r,n);return r}e.reduce=g;function*_(e,t,n=e.length){for(t<0&&(t+=e.length),n<0?n+=e.length:n>e.length&&(n=e.length);t<n;t++)yield e[t]}e.slice=_;function v(t,n=1/0){let r=[];if(n===0)return[r,t];let i=t[Symbol.iterator]();for(let t=0;t<n;t++){let t=i.next();if(t.done)return[r,e.empty()];r.push(t.value)}return[r,{[Symbol.iterator](){return i}}]}e.consume=v;async function y(e){let t=[];for await(let n of e)t.push(n);return Promise.resolve(t)}e.asyncToArray=y})(Qp||={});var $p=!1,em=null,tm=class e{constructor(){this.livingDisposables=new Map}getDisposableData(t){let n=this.livingDisposables.get(t);return n||(n={parent:null,source:null,isSingleton:!1,value:t,idx:e.idx++},this.livingDisposables.set(t,n)),n}trackDisposable(e){let t=this.getDisposableData(e);t.source||=Error().stack}setParent(e,t){let n=this.getDisposableData(e);n.parent=t}markAsDisposed(e){this.livingDisposables.delete(e)}markAsSingleton(e){this.getDisposableData(e).isSingleton=!0}getRootParent(e,t){let n=t.get(e);if(n)return n;let r=e.parent?this.getRootParent(this.getDisposableData(e.parent),t):e;return t.set(e,r),r}getTrackedDisposables(){let e=new Map;return[...this.livingDisposables.entries()].filter(([,t])=>t.source!==null&&!this.getRootParent(t,e).isSingleton).flatMap(([e])=>e)}computeLeakingDisposables(e=10,t){let n;if(t)n=t;else{let e=new Map,t=[...this.livingDisposables.values()].filter(t=>t.source!==null&&!this.getRootParent(t,e).isSingleton);if(t.length===0)return;let r=new Set(t.map(e=>e.value));if(n=t.filter(e=>!(e.parent&&r.has(e.parent))),n.length===0)throw Error(`There are cyclic diposable chains!`)}if(!n)return;function r(e){function t(e,t){for(;e.length>0&&t.some(t=>typeof t==`string`?t===e[0]:e[0].match(t));)e.shift()}let n=e.source.split(`
71
+ `).map(e=>e.trim().replace(`at `,``)).filter(e=>e!==``);return t(n,[`Error`,/^trackDisposable \(.*\)$/,/^DisposableTracker.trackDisposable \(.*\)$/]),n.reverse()}let i=new Xp;for(let e of n){let t=r(e);for(let n=0;n<=t.length;n++)i.add(t.slice(0,n).join(`
72
+ `),e)}n.sort(Kp(e=>e.idx,qp));let a=``,o=0;for(let t of n.slice(0,e)){o++;let e=r(t),s=[];for(let t=0;t<e.length;t++){let a=e[t];a=`(shared with ${i.get(e.slice(0,t+1).join(`
73
+ `)).size}/${n.length} leaks) at ${a}`;let o=Yp([...i.get(e.slice(0,t).join(`
74
+ `))].map(e=>r(e)[t]),e=>e);delete o[e[t]];for(let[e,t]of Object.entries(o))s.unshift(` - stacktraces of ${t.length} other leaks continue with ${e}`);s.unshift(a)}a+=`
75
+
76
+
77
+ ==================== Leaking disposable ${o}/${n.length}: ${t.value.constructor.name} ====================
78
+ ${s.join(`
79
+ `)}
80
+ ============================================================
81
+
82
+ `}return n.length>e&&(a+=`
83
+
84
+
85
+ ... and ${n.length-e} more leaking disposables
86
+
87
+ `),{leaks:n,details:a}}};tm.idx=0;function nm(e){em=e}if($p){let e=`__is_disposable_tracked__`;nm(new class{trackDisposable(t){let n=Error(`Potentially leaked disposable`).stack;setTimeout(()=>{t[e]||console.log(n)},3e3)}setParent(t,n){if(t&&t!==fm.None)try{t[e]=!0}catch{}}markAsDisposed(t){if(t&&t!==fm.None)try{t[e]=!0}catch{}}markAsSingleton(e){}})}function rm(e){return em?.trackDisposable(e),e}function im(e){em?.markAsDisposed(e)}function am(e,t){em?.setParent(e,t)}function om(e,t){if(em)for(let n of e)em.setParent(n,t)}function sm(e){if(Qp.is(e)){let t=[];for(let n of e)if(n)try{n.dispose()}catch(e){t.push(e)}if(t.length===1)throw t[0];if(t.length>1)throw AggregateError(t,`Encountered errors while disposing of store`);return Array.isArray(e)?[]:e}else if(e)return e.dispose(),e}function cm(...e){let t=lm(()=>sm(e));return om(e,t),t}function lm(e){let t=rm({dispose:Zp(()=>{im(t),e()})});return t}var um=class e{constructor(){this._toDispose=new Set,this._isDisposed=!1,rm(this)}dispose(){this._isDisposed||(im(this),this._isDisposed=!0,this.clear())}get isDisposed(){return this._isDisposed}clear(){if(this._toDispose.size!==0)try{sm(this._toDispose)}finally{this._toDispose.clear()}}add(t){if(!t)return t;if(t===this)throw Error(`Cannot register a disposable on itself!`);return am(t,this),this._isDisposed?e.DISABLE_DISPOSED_WARNING||console.warn(Error(`Trying to add a disposable to a DisposableStore that has already been disposed of. The added object will be leaked!`).stack):this._toDispose.add(t),t}delete(e){if(e){if(e===this)throw Error(`Cannot dispose a disposable on itself!`);this._toDispose.delete(e),e.dispose()}}deleteAndLeak(e){e&&this._toDispose.has(e)&&(this._toDispose.delete(e),am(e,null))}};um.DISABLE_DISPOSED_WARNING=!1;var dm=um,fm=class{constructor(){this._store=new dm,rm(this),am(this._store,this)}dispose(){im(this),this._store.dispose()}_register(e){if(e===this)throw Error(`Cannot register a disposable on itself!`);return this._store.add(e)}};fm.None=Object.freeze({dispose(){}});var pm=class{constructor(){this._isDisposed=!1,rm(this)}get value(){return this._isDisposed?void 0:this._value}set value(e){this._isDisposed||e===this._value||(this._value?.dispose(),e&&am(e,this),this._value=e)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,im(this),this._value?.dispose(),this._value=void 0}clearAndLeak(){let e=this._value;return this._value=void 0,e&&am(e,null),e}},mm=typeof process<`u`&&`title`in process,hm=mm?`node`:navigator.userAgent,gm=mm?`node`:navigator.platform,_m=hm.includes(`Firefox`),vm=hm.includes(`Edge`),ym=/^((?!chrome|android).)*safari/i.test(hm);function bm(){if(!ym)return 0;let e=hm.match(/Version\/(\d+)/);return e===null||e.length<2?0:parseInt(e[1])}[`Macintosh`,`MacIntel`,`MacPPC`,`Mac68K`].includes(gm),[`Windows`,`Win16`,`Win32`,`WinCE`].includes(gm),gm.indexOf(`Linux`),/\bCrOS\b/.test(hm);var xm=``,Sm=0,Cm=0,wm=0,Tm=0,Em={css:`#00000000`,rgba:0},Dm;(e=>{function t(e,t,n,r){return r===void 0?`#${Mm(e)}${Mm(t)}${Mm(n)}`:`#${Mm(e)}${Mm(t)}${Mm(n)}${Mm(r)}`}e.toCss=t;function n(e,t,n,r=255){return(e<<24|t<<16|n<<8|r)>>>0}e.toRgba=n;function r(t,n,r,i){return{css:e.toCss(t,n,r,i),rgba:e.toRgba(t,n,r,i)}}e.toColor=r})(Dm||={});var Om;(e=>{function t(e,t){if(Tm=(t.rgba&255)/255,Tm===1)return{css:t.css,rgba:t.rgba};let n=t.rgba>>24&255,r=t.rgba>>16&255,i=t.rgba>>8&255,a=e.rgba>>24&255,o=e.rgba>>16&255,s=e.rgba>>8&255;return Sm=a+Math.round((n-a)*Tm),Cm=o+Math.round((r-o)*Tm),wm=s+Math.round((i-s)*Tm),{css:Dm.toCss(Sm,Cm,wm),rgba:Dm.toRgba(Sm,Cm,wm)}}e.blend=t;function n(e){return(e.rgba&255)==255}e.isOpaque=n;function r(e,t,n){let r=jm.ensureContrastRatio(e.rgba,t.rgba,n);if(r)return Dm.toColor(r>>24&255,r>>16&255,r>>8&255)}e.ensureContrastRatio=r;function i(e){let t=(e.rgba|255)>>>0;return[Sm,Cm,wm]=jm.toChannels(t),{css:Dm.toCss(Sm,Cm,wm),rgba:t}}e.opaque=i;function a(e,t){return Tm=Math.round(t*255),[Sm,Cm,wm]=jm.toChannels(e.rgba),{css:Dm.toCss(Sm,Cm,wm,Tm),rgba:Dm.toRgba(Sm,Cm,wm,Tm)}}e.opacity=a;function o(e,t){return Tm=e.rgba&255,a(e,Tm*t/255)}e.multiplyOpacity=o;function s(e){return[e.rgba>>24&255,e.rgba>>16&255,e.rgba>>8&255]}e.toColorRGB=s})(Om||={});var km;(e=>{let t,n;try{let e=document.createElement(`canvas`);e.width=1,e.height=1;let r=e.getContext(`2d`,{willReadFrequently:!0});r&&(t=r,t.globalCompositeOperation=`copy`,n=t.createLinearGradient(0,0,1,1))}catch{}function r(e){if(e.match(/#[\da-f]{3,8}/i))switch(e.length){case 4:return Sm=parseInt(e.slice(1,2).repeat(2),16),Cm=parseInt(e.slice(2,3).repeat(2),16),wm=parseInt(e.slice(3,4).repeat(2),16),Dm.toColor(Sm,Cm,wm);case 5:return Sm=parseInt(e.slice(1,2).repeat(2),16),Cm=parseInt(e.slice(2,3).repeat(2),16),wm=parseInt(e.slice(3,4).repeat(2),16),Tm=parseInt(e.slice(4,5).repeat(2),16),Dm.toColor(Sm,Cm,wm,Tm);case 7:return{css:e,rgba:(parseInt(e.slice(1),16)<<8|255)>>>0};case 9:return{css:e,rgba:parseInt(e.slice(1),16)>>>0}}let r=e.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(r)return Sm=parseInt(r[1]),Cm=parseInt(r[2]),wm=parseInt(r[3]),Tm=Math.round((r[5]===void 0?1:parseFloat(r[5]))*255),Dm.toColor(Sm,Cm,wm,Tm);if(!t||!n||(t.fillStyle=n,t.fillStyle=e,typeof t.fillStyle!=`string`)||(t.fillRect(0,0,1,1),[Sm,Cm,wm,Tm]=t.getImageData(0,0,1,1).data,Tm!==255))throw Error(`css.toColor: Unsupported css format`);return{rgba:Dm.toRgba(Sm,Cm,wm,Tm),css:e}}e.toColor=r})(km||={});var Am;(e=>{function t(e){return n(e>>16&255,e>>8&255,e&255)}e.relativeLuminance=t;function n(e,t,n){let r=e/255,i=t/255,a=n/255,o=r<=.03928?r/12.92:((r+.055)/1.055)**2.4,s=i<=.03928?i/12.92:((i+.055)/1.055)**2.4,c=a<=.03928?a/12.92:((a+.055)/1.055)**2.4;return o*.2126+s*.7152+c*.0722}e.relativeLuminance2=n})(Am||={});var jm;(e=>{function t(e,t){if(Tm=(t&255)/255,Tm===1)return t;let n=t>>24&255,r=t>>16&255,i=t>>8&255,a=e>>24&255,o=e>>16&255,s=e>>8&255;return Sm=a+Math.round((n-a)*Tm),Cm=o+Math.round((r-o)*Tm),wm=s+Math.round((i-s)*Tm),Dm.toRgba(Sm,Cm,wm)}e.blend=t;function n(e,t,n){let a=Am.relativeLuminance(e>>8),o=Am.relativeLuminance(t>>8);if(Nm(a,o)<n){if(o<a){let o=r(e,t,n),s=Nm(a,Am.relativeLuminance(o>>8));if(s<n){let r=i(e,t,n);return s>Nm(a,Am.relativeLuminance(r>>8))?o:r}return o}let s=i(e,t,n),c=Nm(a,Am.relativeLuminance(s>>8));if(c<n){let i=r(e,t,n);return c>Nm(a,Am.relativeLuminance(i>>8))?s:i}return s}}e.ensureContrastRatio=n;function r(e,t,n){let r=e>>24&255,i=e>>16&255,a=e>>8&255,o=t>>24&255,s=t>>16&255,c=t>>8&255,l=Nm(Am.relativeLuminance2(o,s,c),Am.relativeLuminance2(r,i,a));for(;l<n&&(o>0||s>0||c>0);)o-=Math.max(0,Math.ceil(o*.1)),s-=Math.max(0,Math.ceil(s*.1)),c-=Math.max(0,Math.ceil(c*.1)),l=Nm(Am.relativeLuminance2(o,s,c),Am.relativeLuminance2(r,i,a));return(o<<24|s<<16|c<<8|255)>>>0}e.reduceLuminance=r;function i(e,t,n){let r=e>>24&255,i=e>>16&255,a=e>>8&255,o=t>>24&255,s=t>>16&255,c=t>>8&255,l=Nm(Am.relativeLuminance2(o,s,c),Am.relativeLuminance2(r,i,a));for(;l<n&&(o<255||s<255||c<255);)o=Math.min(255,o+Math.ceil((255-o)*.1)),s=Math.min(255,s+Math.ceil((255-s)*.1)),c=Math.min(255,c+Math.ceil((255-c)*.1)),l=Nm(Am.relativeLuminance2(o,s,c),Am.relativeLuminance2(r,i,a));return(o<<24|s<<16|c<<8|255)>>>0}e.increaseLuminance=i;function a(e){return[e>>24&255,e>>16&255,e>>8&255,e&255]}e.toChannels=a})(jm||={});function Mm(e){let t=e.toString(16);return t.length<2?`0`+t:t}function Nm(e,t){return e<t?(t+.05)/(e+.05):(e+.05)/(t+.05)}function Pm(e){if(!e)throw Error(`value must not be falsy`);return e}function Fm(e){return 57508<=e&&e<=57558}function Im(e){return 57520<=e&&e<=57527}function Lm(e){return 57344<=e&&e<=63743}function Rm(e){return 9472<=e&&e<=9631}function zm(e){return e>=128512&&e<=128591||e>=127744&&e<=128511||e>=128640&&e<=128767||e>=9728&&e<=9983||e>=9984&&e<=10175||e>=65024&&e<=65039||e>=129280&&e<=129535||e>=127462&&e<=127487}function Bm(e,t,n,r){return t===1&&n>Math.ceil(r*1.5)&&e!==void 0&&e>255&&!zm(e)&&!Fm(e)&&!Lm(e)}function Vm(e){return Fm(e)||Rm(e)}function Hm(){return{css:{canvas:Um(),cell:Um()},device:{canvas:Um(),cell:Um(),char:{width:0,height:0,left:0,top:0}}}}function Um(){return{width:0,height:0}}function Wm(e,t,n=0){return(e-(Math.round(t)*2-n))%(Math.round(t)*2)}var Gm=0,Km=0,qm=!1,Jm=!1,Ym=!1,Xm,Zm=0,Qm=class{constructor(e,t,n,r,i,a){this._terminal=e,this._optionService=t,this._selectionRenderModel=n,this._decorationService=r,this._coreBrowserService=i,this._themeService=a,this.result={fg:0,bg:0,ext:0}}resolve(e,t,n,r){if(this.result.bg=e.bg,this.result.fg=e.fg,this.result.ext=e.bg&268435456?e.extended.ext:0,Km=0,Gm=0,Jm=!1,qm=!1,Ym=!1,Xm=this._themeService.colors,Zm=0,e.getCode()!==0&&e.extended.underlineStyle===4){let e=Math.max(1,Math.floor(this._optionService.rawOptions.fontSize*this._coreBrowserService.dpr/15));Zm=t*r%(Math.round(e)*2)}if(this._decorationService.forEachDecorationAtCell(t,n,`bottom`,e=>{e.backgroundColorRGB&&(Km=e.backgroundColorRGB.rgba>>8&16777215,Jm=!0),e.foregroundColorRGB&&(Gm=e.foregroundColorRGB.rgba>>8&16777215,qm=!0)}),Ym=this._selectionRenderModel.isCellSelected(this._terminal,t,n),Ym){if(this.result.fg&67108864||this.result.bg&50331648){if(this.result.fg&67108864)switch(this.result.fg&50331648){case 16777216:case 33554432:Km=this._themeService.colors.ansi[this.result.fg&255].rgba;break;case 50331648:Km=(this.result.fg&16777215)<<8|255;break;case 0:default:Km=this._themeService.colors.foreground.rgba}else switch(this.result.bg&50331648){case 16777216:case 33554432:Km=this._themeService.colors.ansi[this.result.bg&255].rgba;break;case 50331648:Km=(this.result.bg&16777215)<<8|255;break}Km=jm.blend(Km,(this._coreBrowserService.isFocused?Xm.selectionBackgroundOpaque:Xm.selectionInactiveBackgroundOpaque).rgba&4294967040|128)>>8&16777215}else Km=(this._coreBrowserService.isFocused?Xm.selectionBackgroundOpaque:Xm.selectionInactiveBackgroundOpaque).rgba>>8&16777215;if(Jm=!0,Xm.selectionForeground&&(Gm=Xm.selectionForeground.rgba>>8&16777215,qm=!0),Vm(e.getCode())){if(this.result.fg&67108864&&!(this.result.bg&50331648))Gm=(this._coreBrowserService.isFocused?Xm.selectionBackgroundOpaque:Xm.selectionInactiveBackgroundOpaque).rgba>>8&16777215;else{if(this.result.fg&67108864)switch(this.result.bg&50331648){case 16777216:case 33554432:Gm=this._themeService.colors.ansi[this.result.bg&255].rgba;break;case 50331648:Gm=(this.result.bg&16777215)<<8|255;break}else switch(this.result.fg&50331648){case 16777216:case 33554432:Gm=this._themeService.colors.ansi[this.result.fg&255].rgba;break;case 50331648:Gm=(this.result.fg&16777215)<<8|255;break;case 0:default:Gm=this._themeService.colors.foreground.rgba}Gm=jm.blend(Gm,(this._coreBrowserService.isFocused?Xm.selectionBackgroundOpaque:Xm.selectionInactiveBackgroundOpaque).rgba&4294967040|128)>>8&16777215}qm=!0}}this._decorationService.forEachDecorationAtCell(t,n,`top`,e=>{e.backgroundColorRGB&&(Km=e.backgroundColorRGB.rgba>>8&16777215,Jm=!0),e.foregroundColorRGB&&(Gm=e.foregroundColorRGB.rgba>>8&16777215,qm=!0)}),Jm&&(Km=Ym?e.bg&-150994944|Km|50331648:e.bg&-16777216|Km|50331648),qm&&(Gm=e.fg&-83886080|Gm|50331648),this.result.fg&67108864&&(Jm&&!qm&&(Gm=this.result.bg&50331648?this.result.fg&-134217728|this.result.bg&67108863:this.result.fg&-134217728|Xm.background.rgba>>8&16777215|50331648,qm=!0),!Jm&&qm&&(Km=this.result.fg&50331648?this.result.bg&-67108864|this.result.fg&67108863:this.result.bg&-67108864|Xm.foreground.rgba>>8&16777215|50331648,Jm=!0)),Xm=void 0,this.result.bg=Jm?Km:this.result.bg,this.result.fg=qm?Gm:this.result.fg,this.result.ext&=536870911,this.result.ext|=Zm<<29&3758096384}},$m=.5,eh=_m||vm?`bottom`:`ideographic`,th={"▀":[{x:0,y:0,w:8,h:4}],"▁":[{x:0,y:7,w:8,h:1}],"▂":[{x:0,y:6,w:8,h:2}],"▃":[{x:0,y:5,w:8,h:3}],"▄":[{x:0,y:4,w:8,h:4}],"▅":[{x:0,y:3,w:8,h:5}],"▆":[{x:0,y:2,w:8,h:6}],"▇":[{x:0,y:1,w:8,h:7}],"█":[{x:0,y:0,w:8,h:8}],"▉":[{x:0,y:0,w:7,h:8}],"▊":[{x:0,y:0,w:6,h:8}],"▋":[{x:0,y:0,w:5,h:8}],"▌":[{x:0,y:0,w:4,h:8}],"▍":[{x:0,y:0,w:3,h:8}],"▎":[{x:0,y:0,w:2,h:8}],"▏":[{x:0,y:0,w:1,h:8}],"▐":[{x:4,y:0,w:4,h:8}],"▔":[{x:0,y:0,w:8,h:1}],"▕":[{x:7,y:0,w:1,h:8}],"▖":[{x:0,y:4,w:4,h:4}],"▗":[{x:4,y:4,w:4,h:4}],"▘":[{x:0,y:0,w:4,h:4}],"▙":[{x:0,y:0,w:4,h:8},{x:0,y:4,w:8,h:4}],"▚":[{x:0,y:0,w:4,h:4},{x:4,y:4,w:4,h:4}],"▛":[{x:0,y:0,w:4,h:8},{x:4,y:0,w:4,h:4}],"▜":[{x:0,y:0,w:8,h:4},{x:4,y:0,w:4,h:8}],"▝":[{x:4,y:0,w:4,h:4}],"▞":[{x:4,y:0,w:4,h:4},{x:0,y:4,w:4,h:4}],"▟":[{x:4,y:0,w:4,h:8},{x:0,y:4,w:8,h:4}],"🭰":[{x:1,y:0,w:1,h:8}],"🭱":[{x:2,y:0,w:1,h:8}],"🭲":[{x:3,y:0,w:1,h:8}],"🭳":[{x:4,y:0,w:1,h:8}],"🭴":[{x:5,y:0,w:1,h:8}],"🭵":[{x:6,y:0,w:1,h:8}],"🭶":[{x:0,y:1,w:8,h:1}],"🭷":[{x:0,y:2,w:8,h:1}],"🭸":[{x:0,y:3,w:8,h:1}],"🭹":[{x:0,y:4,w:8,h:1}],"🭺":[{x:0,y:5,w:8,h:1}],"🭻":[{x:0,y:6,w:8,h:1}],"🭼":[{x:0,y:0,w:1,h:8},{x:0,y:7,w:8,h:1}],"🭽":[{x:0,y:0,w:1,h:8},{x:0,y:0,w:8,h:1}],"🭾":[{x:7,y:0,w:1,h:8},{x:0,y:0,w:8,h:1}],"🭿":[{x:7,y:0,w:1,h:8},{x:0,y:7,w:8,h:1}],"🮀":[{x:0,y:0,w:8,h:1},{x:0,y:7,w:8,h:1}],"🮁":[{x:0,y:0,w:8,h:1},{x:0,y:2,w:8,h:1},{x:0,y:4,w:8,h:1},{x:0,y:7,w:8,h:1}],"🮂":[{x:0,y:0,w:8,h:2}],"🮃":[{x:0,y:0,w:8,h:3}],"🮄":[{x:0,y:0,w:8,h:5}],"🮅":[{x:0,y:0,w:8,h:6}],"🮆":[{x:0,y:0,w:8,h:7}],"🮇":[{x:6,y:0,w:2,h:8}],"🮈":[{x:5,y:0,w:3,h:8}],"🮉":[{x:3,y:0,w:5,h:8}],"🮊":[{x:2,y:0,w:6,h:8}],"🮋":[{x:1,y:0,w:7,h:8}],"🮕":[{x:0,y:0,w:2,h:2},{x:4,y:0,w:2,h:2},{x:2,y:2,w:2,h:2},{x:6,y:2,w:2,h:2},{x:0,y:4,w:2,h:2},{x:4,y:4,w:2,h:2},{x:2,y:6,w:2,h:2},{x:6,y:6,w:2,h:2}],"🮖":[{x:2,y:0,w:2,h:2},{x:6,y:0,w:2,h:2},{x:0,y:2,w:2,h:2},{x:4,y:2,w:2,h:2},{x:2,y:4,w:2,h:2},{x:6,y:4,w:2,h:2},{x:0,y:6,w:2,h:2},{x:4,y:6,w:2,h:2}],"🮗":[{x:0,y:2,w:8,h:2},{x:0,y:6,w:8,h:2}]},nh={"░":[[1,0,0,0],[0,0,0,0],[0,0,1,0],[0,0,0,0]],"▒":[[1,0],[0,0],[0,1],[0,0]],"▓":[[0,1],[1,1],[1,0],[1,1]]},rh={"─":{1:`M0,.5 L1,.5`},"━":{3:`M0,.5 L1,.5`},"│":{1:`M.5,0 L.5,1`},"┃":{3:`M.5,0 L.5,1`},"┌":{1:`M0.5,1 L.5,.5 L1,.5`},"┏":{3:`M0.5,1 L.5,.5 L1,.5`},"┐":{1:`M0,.5 L.5,.5 L.5,1`},"┓":{3:`M0,.5 L.5,.5 L.5,1`},"└":{1:`M.5,0 L.5,.5 L1,.5`},"┗":{3:`M.5,0 L.5,.5 L1,.5`},"┘":{1:`M.5,0 L.5,.5 L0,.5`},"┛":{3:`M.5,0 L.5,.5 L0,.5`},"├":{1:`M.5,0 L.5,1 M.5,.5 L1,.5`},"┣":{3:`M.5,0 L.5,1 M.5,.5 L1,.5`},"┤":{1:`M.5,0 L.5,1 M.5,.5 L0,.5`},"┫":{3:`M.5,0 L.5,1 M.5,.5 L0,.5`},"┬":{1:`M0,.5 L1,.5 M.5,.5 L.5,1`},"┳":{3:`M0,.5 L1,.5 M.5,.5 L.5,1`},"┴":{1:`M0,.5 L1,.5 M.5,.5 L.5,0`},"┻":{3:`M0,.5 L1,.5 M.5,.5 L.5,0`},"┼":{1:`M0,.5 L1,.5 M.5,0 L.5,1`},"╋":{3:`M0,.5 L1,.5 M.5,0 L.5,1`},"╴":{1:`M.5,.5 L0,.5`},"╸":{3:`M.5,.5 L0,.5`},"╵":{1:`M.5,.5 L.5,0`},"╹":{3:`M.5,.5 L.5,0`},"╶":{1:`M.5,.5 L1,.5`},"╺":{3:`M.5,.5 L1,.5`},"╷":{1:`M.5,.5 L.5,1`},"╻":{3:`M.5,.5 L.5,1`},"═":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},"║":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},"╒":{1:(e,t)=>`M.5,1 L.5,${.5-t} L1,${.5-t} M.5,${.5+t} L1,${.5+t}`},"╓":{1:(e,t)=>`M${.5-e},1 L${.5-e},.5 L1,.5 M${.5+e},.5 L${.5+e},1`},"╔":{1:(e,t)=>`M1,${.5-t} L${.5-e},${.5-t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1`},"╕":{1:(e,t)=>`M0,${.5-t} L.5,${.5-t} L.5,1 M0,${.5+t} L.5,${.5+t}`},"╖":{1:(e,t)=>`M${.5+e},1 L${.5+e},.5 L0,.5 M${.5-e},.5 L${.5-e},1`},"╗":{1:(e,t)=>`M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M0,${.5-t} L${.5+e},${.5-t} L${.5+e},1`},"╘":{1:(e,t)=>`M.5,0 L.5,${.5+t} L1,${.5+t} M.5,${.5-t} L1,${.5-t}`},"╙":{1:(e,t)=>`M1,.5 L${.5-e},.5 L${.5-e},0 M${.5+e},.5 L${.5+e},0`},"╚":{1:(e,t)=>`M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0 M1,${.5+t} L${.5-e},${.5+t} L${.5-e},0`},"╛":{1:(e,t)=>`M0,${.5+t} L.5,${.5+t} L.5,0 M0,${.5-t} L.5,${.5-t}`},"╜":{1:(e,t)=>`M0,.5 L${.5+e},.5 L${.5+e},0 M${.5-e},.5 L${.5-e},0`},"╝":{1:(e,t)=>`M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M0,${.5+t} L${.5+e},${.5+t} L${.5+e},0`},"╞":{1:(e,t)=>`M.5,0 L.5,1 M.5,${.5-t} L1,${.5-t} M.5,${.5+t} L1,${.5+t}`},"╟":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1 M${.5+e},.5 L1,.5`},"╠":{1:(e,t)=>`M${.5-e},0 L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},"╡":{1:(e,t)=>`M.5,0 L.5,1 M0,${.5-t} L.5,${.5-t} M0,${.5+t} L.5,${.5+t}`},"╢":{1:(e,t)=>`M0,.5 L${.5-e},.5 M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},"╣":{1:(e,t)=>`M${.5+e},0 L${.5+e},1 M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0`},"╤":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t} M.5,${.5+t} L.5,1`},"╥":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},.5 L${.5-e},1 M${.5+e},.5 L${.5+e},1`},"╦":{1:(e,t)=>`M0,${.5-t} L1,${.5-t} M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1`},"╧":{1:(e,t)=>`M.5,0 L.5,${.5-t} M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},"╨":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},.5 L${.5-e},0 M${.5+e},.5 L${.5+e},0`},"╩":{1:(e,t)=>`M0,${.5+t} L1,${.5+t} M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},"╪":{1:(e,t)=>`M.5,0 L.5,1 M0,${.5-t} L1,${.5-t} M0,${.5+t} L1,${.5+t}`},"╫":{1:(e,t)=>`M0,.5 L1,.5 M${.5-e},0 L${.5-e},1 M${.5+e},0 L${.5+e},1`},"╬":{1:(e,t)=>`M0,${.5+t} L${.5-e},${.5+t} L${.5-e},1 M1,${.5+t} L${.5+e},${.5+t} L${.5+e},1 M0,${.5-t} L${.5-e},${.5-t} L${.5-e},0 M1,${.5-t} L${.5+e},${.5-t} L${.5+e},0`},"╱":{1:`M1,0 L0,1`},"╲":{1:`M0,0 L1,1`},"╳":{1:`M1,0 L0,1 M0,0 L1,1`},"╼":{1:`M.5,.5 L0,.5`,3:`M.5,.5 L1,.5`},"╽":{1:`M.5,.5 L.5,0`,3:`M.5,.5 L.5,1`},"╾":{1:`M.5,.5 L1,.5`,3:`M.5,.5 L0,.5`},"╿":{1:`M.5,.5 L.5,1`,3:`M.5,.5 L.5,0`},"┍":{1:`M.5,.5 L.5,1`,3:`M.5,.5 L1,.5`},"┎":{1:`M.5,.5 L1,.5`,3:`M.5,.5 L.5,1`},"┑":{1:`M.5,.5 L.5,1`,3:`M.5,.5 L0,.5`},"┒":{1:`M.5,.5 L0,.5`,3:`M.5,.5 L.5,1`},"┕":{1:`M.5,.5 L.5,0`,3:`M.5,.5 L1,.5`},"┖":{1:`M.5,.5 L1,.5`,3:`M.5,.5 L.5,0`},"┙":{1:`M.5,.5 L.5,0`,3:`M.5,.5 L0,.5`},"┚":{1:`M.5,.5 L0,.5`,3:`M.5,.5 L.5,0`},"┝":{1:`M.5,0 L.5,1`,3:`M.5,.5 L1,.5`},"┞":{1:`M0.5,1 L.5,.5 L1,.5`,3:`M.5,.5 L.5,0`},"┟":{1:`M.5,0 L.5,.5 L1,.5`,3:`M.5,.5 L.5,1`},"┠":{1:`M.5,.5 L1,.5`,3:`M.5,0 L.5,1`},"┡":{1:`M.5,.5 L.5,1`,3:`M.5,0 L.5,.5 L1,.5`},"┢":{1:`M.5,.5 L.5,0`,3:`M0.5,1 L.5,.5 L1,.5`},"┥":{1:`M.5,0 L.5,1`,3:`M.5,.5 L0,.5`},"┦":{1:`M0,.5 L.5,.5 L.5,1`,3:`M.5,.5 L.5,0`},"┧":{1:`M.5,0 L.5,.5 L0,.5`,3:`M.5,.5 L.5,1`},"┨":{1:`M.5,.5 L0,.5`,3:`M.5,0 L.5,1`},"┩":{1:`M.5,.5 L.5,1`,3:`M.5,0 L.5,.5 L0,.5`},"┪":{1:`M.5,.5 L.5,0`,3:`M0,.5 L.5,.5 L.5,1`},"┭":{1:`M0.5,1 L.5,.5 L1,.5`,3:`M.5,.5 L0,.5`},"┮":{1:`M0,.5 L.5,.5 L.5,1`,3:`M.5,.5 L1,.5`},"┯":{1:`M.5,.5 L.5,1`,3:`M0,.5 L1,.5`},"┰":{1:`M0,.5 L1,.5`,3:`M.5,.5 L.5,1`},"┱":{1:`M.5,.5 L1,.5`,3:`M0,.5 L.5,.5 L.5,1`},"┲":{1:`M.5,.5 L0,.5`,3:`M0.5,1 L.5,.5 L1,.5`},"┵":{1:`M.5,0 L.5,.5 L1,.5`,3:`M.5,.5 L0,.5`},"┶":{1:`M.5,0 L.5,.5 L0,.5`,3:`M.5,.5 L1,.5`},"┷":{1:`M.5,.5 L.5,0`,3:`M0,.5 L1,.5`},"┸":{1:`M0,.5 L1,.5`,3:`M.5,.5 L.5,0`},"┹":{1:`M.5,.5 L1,.5`,3:`M.5,0 L.5,.5 L0,.5`},"┺":{1:`M.5,.5 L0,.5`,3:`M.5,0 L.5,.5 L1,.5`},"┽":{1:`M.5,0 L.5,1 M.5,.5 L1,.5`,3:`M.5,.5 L0,.5`},"┾":{1:`M.5,0 L.5,1 M.5,.5 L0,.5`,3:`M.5,.5 L1,.5`},"┿":{1:`M.5,0 L.5,1`,3:`M0,.5 L1,.5`},"╀":{1:`M0,.5 L1,.5 M.5,.5 L.5,1`,3:`M.5,.5 L.5,0`},"╁":{1:`M.5,.5 L.5,0 M0,.5 L1,.5`,3:`M.5,.5 L.5,1`},"╂":{1:`M0,.5 L1,.5`,3:`M.5,0 L.5,1`},"╃":{1:`M0.5,1 L.5,.5 L1,.5`,3:`M.5,0 L.5,.5 L0,.5`},"╄":{1:`M0,.5 L.5,.5 L.5,1`,3:`M.5,0 L.5,.5 L1,.5`},"╅":{1:`M.5,0 L.5,.5 L1,.5`,3:`M0,.5 L.5,.5 L.5,1`},"╆":{1:`M.5,0 L.5,.5 L0,.5`,3:`M0.5,1 L.5,.5 L1,.5`},"╇":{1:`M.5,.5 L.5,1`,3:`M.5,.5 L.5,0 M0,.5 L1,.5`},"╈":{1:`M.5,.5 L.5,0`,3:`M0,.5 L1,.5 M.5,.5 L.5,1`},"╉":{1:`M.5,.5 L1,.5`,3:`M.5,0 L.5,1 M.5,.5 L0,.5`},"╊":{1:`M.5,.5 L0,.5`,3:`M.5,0 L.5,1 M.5,.5 L1,.5`},"╌":{1:`M.1,.5 L.4,.5 M.6,.5 L.9,.5`},"╍":{3:`M.1,.5 L.4,.5 M.6,.5 L.9,.5`},"┄":{1:`M.0667,.5 L.2667,.5 M.4,.5 L.6,.5 M.7333,.5 L.9333,.5`},"┅":{3:`M.0667,.5 L.2667,.5 M.4,.5 L.6,.5 M.7333,.5 L.9333,.5`},"┈":{1:`M.05,.5 L.2,.5 M.3,.5 L.45,.5 M.55,.5 L.7,.5 M.8,.5 L.95,.5`},"┉":{3:`M.05,.5 L.2,.5 M.3,.5 L.45,.5 M.55,.5 L.7,.5 M.8,.5 L.95,.5`},"╎":{1:`M.5,.1 L.5,.4 M.5,.6 L.5,.9`},"╏":{3:`M.5,.1 L.5,.4 M.5,.6 L.5,.9`},"┆":{1:`M.5,.0667 L.5,.2667 M.5,.4 L.5,.6 M.5,.7333 L.5,.9333`},"┇":{3:`M.5,.0667 L.5,.2667 M.5,.4 L.5,.6 M.5,.7333 L.5,.9333`},"┊":{1:`M.5,.05 L.5,.2 M.5,.3 L.5,.45 L.5,.55 M.5,.7 L.5,.95`},"┋":{3:`M.5,.05 L.5,.2 M.5,.3 L.5,.45 L.5,.55 M.5,.7 L.5,.95`},"╭":{1:(e,t)=>`M.5,1 L.5,${.5+t/.15*.5} C.5,${.5+t/.15*.5},.5,.5,1,.5`},"╮":{1:(e,t)=>`M.5,1 L.5,${.5+t/.15*.5} C.5,${.5+t/.15*.5},.5,.5,0,.5`},"╯":{1:(e,t)=>`M.5,0 L.5,${.5-t/.15*.5} C.5,${.5-t/.15*.5},.5,.5,0,.5`},"╰":{1:(e,t)=>`M.5,0 L.5,${.5-t/.15*.5} C.5,${.5-t/.15*.5},.5,.5,1,.5`}},ih={"":{d:`M.3,1 L.03,1 L.03,.88 C.03,.82,.06,.78,.11,.73 C.15,.7,.2,.68,.28,.65 L.43,.6 C.49,.58,.53,.56,.56,.53 C.59,.5,.6,.47,.6,.43 L.6,.27 L.4,.27 L.69,.1 L.98,.27 L.78,.27 L.78,.46 C.78,.52,.76,.56,.72,.61 C.68,.66,.63,.67,.56,.7 L.48,.72 C.42,.74,.38,.76,.35,.78 C.32,.8,.31,.84,.31,.88 L.31,1 M.3,.5 L.03,.59 L.03,.09 L.3,.09 L.3,.655`,type:0},"":{d:`M.7,.4 L.7,.47 L.2,.47 L.2,.03 L.355,.03 L.355,.4 L.705,.4 M.7,.5 L.86,.5 L.86,.95 L.69,.95 L.44,.66 L.46,.86 L.46,.95 L.3,.95 L.3,.49 L.46,.49 L.71,.78 L.69,.565 L.69,.5`,type:0},"":{d:`M.25,.94 C.16,.94,.11,.92,.11,.87 L.11,.53 C.11,.48,.15,.455,.23,.45 L.23,.3 C.23,.25,.26,.22,.31,.19 C.36,.16,.43,.15,.51,.15 C.59,.15,.66,.16,.71,.19 C.77,.22,.79,.26,.79,.3 L.79,.45 C.87,.45,.91,.48,.91,.53 L.91,.87 C.91,.92,.86,.94,.77,.94 L.24,.94 M.53,.2 C.49,.2,.45,.21,.42,.23 C.39,.25,.38,.27,.38,.3 L.38,.45 L.68,.45 L.68,.3 C.68,.27,.67,.25,.64,.23 C.61,.21,.58,.2,.53,.2 M.58,.82 L.58,.66 C.63,.65,.65,.63,.65,.6 C.65,.58,.64,.57,.61,.56 C.58,.55,.56,.54,.52,.54 C.48,.54,.46,.55,.43,.56 C.4,.57,.39,.59,.39,.6 C.39,.63,.41,.64,.46,.66 L.46,.82 L.57,.82`,type:0},"":{d:`M0,0 L1,.5 L0,1`,type:0,rightPadding:2},"":{d:`M-1,-.5 L1,.5 L-1,1.5`,type:1,leftPadding:1,rightPadding:1},"":{d:`M1,0 L0,.5 L1,1`,type:0,leftPadding:2},"":{d:`M2,-.5 L0,.5 L2,1.5`,type:1,leftPadding:1,rightPadding:1},"":{d:`M0,0 L0,1 C0.552,1,1,0.776,1,.5 C1,0.224,0.552,0,0,0`,type:0,rightPadding:1},"":{d:`M.2,1 C.422,1,.8,.826,.78,.5 C.8,.174,0.422,0,.2,0`,type:1,rightPadding:1},"":{d:`M1,0 L1,1 C0.448,1,0,0.776,0,.5 C0,0.224,0.448,0,1,0`,type:0,leftPadding:1},"":{d:`M.8,1 C0.578,1,0.2,.826,.22,.5 C0.2,0.174,0.578,0,0.8,0`,type:1,leftPadding:1},"":{d:`M-.5,-.5 L1.5,1.5 L-.5,1.5`,type:0},"":{d:`M-.5,-.5 L1.5,1.5`,type:1,leftPadding:1,rightPadding:1},"":{d:`M1.5,-.5 L-.5,1.5 L1.5,1.5`,type:0},"":{d:`M1.5,-.5 L-.5,1.5 L-.5,-.5`,type:0},"":{d:`M1.5,-.5 L-.5,1.5`,type:1,leftPadding:1,rightPadding:1},"":{d:`M-.5,-.5 L1.5,1.5 L1.5,-.5`,type:0}};ih[``]=ih[``],ih[``]=ih[``];function ah(e,t,n,r,i,a,o,s){let c=th[t];if(c)return oh(e,c,n,r,i,a),!0;let l=nh[t];if(l)return ch(e,l,n,r,i,a),!0;let u=rh[t];if(u)return lh(e,u,n,r,i,a,s),!0;let d=ih[t];return d?(uh(e,d,n,r,i,a,o,s),!0):!1}function oh(e,t,n,r,i,a){for(let o=0;o<t.length;o++){let s=t[o],c=i/8,l=a/8;e.fillRect(n+s.x*c,r+s.y*l,s.w*c,s.h*l)}}var sh=new Map;function ch(e,t,n,r,i,a){let o=sh.get(t);o||(o=new Map,sh.set(t,o));let s=e.fillStyle;if(typeof s!=`string`)throw Error(`Unexpected fillStyle type "${s}"`);let c=o.get(s);if(!c){let n=t[0].length,r=t.length,i=e.canvas.ownerDocument.createElement(`canvas`);i.width=n,i.height=r;let a=Pm(i.getContext(`2d`)),l=new ImageData(n,r),u,d,f,p;if(s.startsWith(`#`))u=parseInt(s.slice(1,3),16),d=parseInt(s.slice(3,5),16),f=parseInt(s.slice(5,7),16),p=s.length>7&&parseInt(s.slice(7,9),16)||1;else if(s.startsWith(`rgba`))[u,d,f,p]=s.substring(5,s.length-1).split(`,`).map(e=>parseFloat(e));else throw Error(`Unexpected fillStyle color format "${s}" when drawing pattern glyph`);for(let e=0;e<r;e++)for(let r=0;r<n;r++)l.data[(e*n+r)*4]=u,l.data[(e*n+r)*4+1]=d,l.data[(e*n+r)*4+2]=f,l.data[(e*n+r)*4+3]=t[e][r]*(p*255);a.putImageData(l,0,0),c=Pm(e.createPattern(i,null)),o.set(s,c)}e.fillStyle=c,e.fillRect(n,r,i,a)}function lh(e,t,n,r,i,a,o){e.strokeStyle=e.fillStyle;for(let[s,c]of Object.entries(t)){e.beginPath(),e.lineWidth=o*Number.parseInt(s);let t;t=typeof c==`function`?c(.15,.15/a*i):c;for(let s of t.split(` `)){let t=s[0],c=fh[t];if(!c){console.error(`Could not find drawing instructions for "${t}"`);continue}let l=s.substring(1).split(`,`);!l[0]||!l[1]||c(e,ph(l,i,a,n,r,!0,o))}e.stroke(),e.closePath()}}function uh(e,t,n,r,i,a,o,s){let c=new Path2D;c.rect(n,r,i,a),e.clip(c),e.beginPath();let l=o/12;e.lineWidth=s*l;for(let o of t.d.split(` `)){let c=o[0],u=fh[c];if(!u){console.error(`Could not find drawing instructions for "${c}"`);continue}let d=o.substring(1).split(`,`);!d[0]||!d[1]||u(e,ph(d,i,a,n,r,!1,s,(t.leftPadding??0)*(l/2),(t.rightPadding??0)*(l/2)))}t.type===1?(e.strokeStyle=e.fillStyle,e.stroke()):e.fill(),e.closePath()}function dh(e,t,n=0){return Math.max(Math.min(e,t),n)}var fh={C:(e,t)=>e.bezierCurveTo(t[0],t[1],t[2],t[3],t[4],t[5]),L:(e,t)=>e.lineTo(t[0],t[1]),M:(e,t)=>e.moveTo(t[0],t[1])};function ph(e,t,n,r,i,a,o,s=0,c=0){let l=e.map(e=>parseFloat(e)||parseInt(e));if(l.length<2)throw Error(`Too few arguments for instruction`);for(let e=0;e<l.length;e+=2)l[e]*=t-s*o-c*o,a&&l[e]!==0&&(l[e]=dh(Math.round(l[e]+.5)-.5,t,0)),l[e]+=r+s*o;for(let e=1;e<l.length;e+=2)l[e]*=n,a&&l[e]!==0&&(l[e]=dh(Math.round(l[e]+.5)-.5,n,0)),l[e]+=i;return l}var mh=class{constructor(){this._data={}}set(e,t,n){this._data[e]||(this._data[e]={}),this._data[e][t]=n}get(e,t){return this._data[e]?this._data[e][t]:void 0}clear(){this._data={}}},hh=class{constructor(){this._data=new mh}set(e,t,n,r,i){this._data.get(e,t)||this._data.set(e,t,new mh),this._data.get(e,t).set(n,r,i)}get(e,t,n,r){return this._data.get(e,t)?.get(n,r)}clear(){this._data.clear()}},gh=class{constructor(){this._tasks=[],this._i=0}enqueue(e){this._tasks.push(e),this._start()}flush(){for(;this._i<this._tasks.length;)this._tasks[this._i]()||this._i++;this.clear()}clear(){this._idleCallback&&=(this._cancelCallback(this._idleCallback),void 0),this._i=0,this._tasks.length=0}_start(){this._idleCallback||=this._requestCallback(this._process.bind(this))}_process(e){this._idleCallback=void 0;let t=0,n=0,r=e.timeRemaining(),i=0;for(;this._i<this._tasks.length;){if(t=performance.now(),this._tasks[this._i]()||this._i++,t=Math.max(1,performance.now()-t),n=Math.max(t,n),i=e.timeRemaining(),n*1.5>i){r-t<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(r-t))}ms`),this._start();return}r=i}this.clear()}},_h=class extends gh{_requestCallback(e){return setTimeout(()=>e(this._createDeadline(16)))}_cancelCallback(e){clearTimeout(e)}_createDeadline(e){let t=performance.now()+e;return{timeRemaining:()=>Math.max(0,t-performance.now())}}},vh=class extends gh{_requestCallback(e){return requestIdleCallback(e)}_cancelCallback(e){cancelIdleCallback(e)}},yh=!mm&&`requestIdleCallback`in window?vh:_h,bh=class e{constructor(){this.fg=0,this.bg=0,this.extended=new xh}static toColorRGB(e){return[e>>>16&255,e>>>8&255,e&255]}static fromColorRGB(e){return(e[0]&255)<<16|(e[1]&255)<<8|e[2]&255}clone(){let t=new e;return t.fg=this.fg,t.bg=this.bg,t.extended=this.extended.clone(),t}isInverse(){return this.fg&67108864}isBold(){return this.fg&134217728}isUnderline(){return this.hasExtendedAttrs()&&this.extended.underlineStyle!==0?1:this.fg&268435456}isBlink(){return this.fg&536870912}isInvisible(){return this.fg&1073741824}isItalic(){return this.bg&67108864}isDim(){return this.bg&134217728}isStrikethrough(){return this.fg&2147483648}isProtected(){return this.bg&536870912}isOverline(){return this.bg&1073741824}getFgColorMode(){return this.fg&50331648}getBgColorMode(){return this.bg&50331648}isFgRGB(){return(this.fg&50331648)==50331648}isBgRGB(){return(this.bg&50331648)==50331648}isFgPalette(){return(this.fg&50331648)==16777216||(this.fg&50331648)==33554432}isBgPalette(){return(this.bg&50331648)==16777216||(this.bg&50331648)==33554432}isFgDefault(){return(this.fg&50331648)==0}isBgDefault(){return(this.bg&50331648)==0}isAttributeDefault(){return this.fg===0&&this.bg===0}getFgColor(){switch(this.fg&50331648){case 16777216:case 33554432:return this.fg&255;case 50331648:return this.fg&16777215;default:return-1}}getBgColor(){switch(this.bg&50331648){case 16777216:case 33554432:return this.bg&255;case 50331648:return this.bg&16777215;default:return-1}}hasExtendedAttrs(){return this.bg&268435456}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(this.bg&268435456&&~this.extended.underlineColor)switch(this.extended.underlineColor&50331648){case 16777216:case 33554432:return this.extended.underlineColor&255;case 50331648:return this.extended.underlineColor&16777215;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return this.bg&268435456&&~this.extended.underlineColor?this.extended.underlineColor&50331648:this.getFgColorMode()}isUnderlineColorRGB(){return this.bg&268435456&&~this.extended.underlineColor?(this.extended.underlineColor&50331648)==50331648:this.isFgRGB()}isUnderlineColorPalette(){return this.bg&268435456&&~this.extended.underlineColor?(this.extended.underlineColor&50331648)==16777216||(this.extended.underlineColor&50331648)==33554432:this.isFgPalette()}isUnderlineColorDefault(){return this.bg&268435456&&~this.extended.underlineColor?(this.extended.underlineColor&50331648)==0:this.isFgDefault()}getUnderlineStyle(){return this.fg&268435456?this.bg&268435456?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}},xh=class e{constructor(e=0,t=0){this._ext=0,this._urlId=0,this._ext=e,this._urlId=t}get ext(){return this._urlId?this._ext&-469762049|this.underlineStyle<<26:this._ext}set ext(e){this._ext=e}get underlineStyle(){return this._urlId?5:(this._ext&469762048)>>26}set underlineStyle(e){this._ext&=-469762049,this._ext|=e<<26&469762048}get underlineColor(){return this._ext&67108863}set underlineColor(e){this._ext&=-67108864,this._ext|=e&67108863}get urlId(){return this._urlId}set urlId(e){this._urlId=e}get underlineVariantOffset(){let e=(this._ext&3758096384)>>29;return e<0?e^4294967288:e}set underlineVariantOffset(e){this._ext&=536870911,this._ext|=e<<29&3758096384}clone(){return new e(this._ext,this._urlId)}isEmpty(){return this.underlineStyle===0&&this._urlId===0}},Sh=class e{constructor(t){this.element=t,this.next=e.Undefined,this.prev=e.Undefined}};Sh.Undefined=new Sh(void 0);var Ch=globalThis.performance&&typeof globalThis.performance.now==`function`,wh=class e{static create(t){return new e(t)}constructor(e){this._now=Ch&&e===!1?Date.now:globalThis.performance.now.bind(globalThis.performance),this._startTime=this._now(),this._stopTime=-1}stop(){this._stopTime=this._now()}reset(){this._startTime=this._now(),this._stopTime=-1}elapsed(){return this._stopTime===-1?this._now()-this._startTime:this._stopTime-this._startTime}},Th=!1,Eh=!1,Dh=!1,Oh;(e=>{e.None=()=>fm.None;function t(e){if(Dh){let{onDidAddListener:t}=e,n=Ph.create(),r=0;e.onDidAddListener=()=>{++r===2&&(console.warn(`snapshotted emitter LIKELY used public and SHOULD HAVE BEEN created with DisposableStore. snapshotted here`),n.print()),t?.()}}}function n(e,t){return f(e,()=>{},0,void 0,!0,void 0,t)}e.defer=n;function r(e){return(t,n=null,r)=>{let i=!1,a;return a=e(e=>{if(!i)return a?a.dispose():i=!0,t.call(n,e)},null,r),i&&a.dispose(),a}}e.once=r;function i(e,t,n){return u((n,r=null,i)=>e(e=>n.call(r,t(e)),null,i),n)}e.map=i;function a(e,t,n){return u((n,r=null,i)=>e(e=>{t(e),n.call(r,e)},null,i),n)}e.forEach=a;function o(e,t,n){return u((n,r=null,i)=>e(e=>t(e)&&n.call(r,e),null,i),n)}e.filter=o;function s(e){return e}e.signal=s;function c(...e){return(t,n=null,r)=>d(cm(...e.map(e=>e(e=>t.call(n,e)))),r)}e.any=c;function l(e,t,n,r){let a=n;return i(e,e=>(a=t(a,e),a),r)}e.reduce=l;function u(e,n){let r,i={onWillAddFirstListener(){r=e(a.fire,a)},onDidRemoveLastListener(){r?.dispose()}};n||t(i);let a=new Hh(i);return n?.add(a),a.event}function d(e,t){return t instanceof Array?t.push(e):t&&t.add(e),e}function f(e,n,r=100,i=!1,a=!1,o,s){let c,l,u,d=0,f,p={leakWarningThreshold:o,onWillAddFirstListener(){c=e(e=>{d++,l=n(l,e),i&&!u&&(m.fire(l),l=void 0),f=()=>{let e=l;l=void 0,u=void 0,(!i||d>1)&&m.fire(e),d=0},typeof r==`number`?(clearTimeout(u),u=setTimeout(f,r)):u===void 0&&(u=0,queueMicrotask(f))})},onWillRemoveListener(){a&&d>0&&f?.()},onDidRemoveLastListener(){f=void 0,c.dispose()}};s||t(p);let m=new Hh(p);return s?.add(m),m.event}e.debounce=f;function p(t,n=0,r){return e.debounce(t,(e,t)=>e?(e.push(t),e):[t],n,void 0,!0,void 0,r)}e.accumulate=p;function m(e,t=(e,t)=>e===t,n){let r=!0,i;return o(e,e=>{let n=r||!t(e,i);return r=!1,i=e,n},n)}e.latch=m;function h(t,n,r){return[e.filter(t,n,r),e.filter(t,e=>!n(e),r)]}e.split=h;function g(e,t=!1,n=[],r){let i=n.slice(),a=e(e=>{i?i.push(e):s.fire(e)});r&&r.add(a);let o=()=>{i?.forEach(e=>s.fire(e)),i=null},s=new Hh({onWillAddFirstListener(){a||(a=e(e=>s.fire(e)),r&&r.add(a))},onDidAddFirstListener(){i&&(t?setTimeout(o):o())},onDidRemoveLastListener(){a&&a.dispose(),a=null}});return r&&r.add(s),s.event}e.buffer=g;function _(e,t){return(n,r,i)=>{let a=t(new y);return e(function(e){let t=a.evaluate(e);t!==v&&n.call(r,t)},void 0,i)}}e.chain=_;let v=Symbol(`HaltChainable`);class y{constructor(){this.steps=[]}map(e){return this.steps.push(e),this}forEach(e){return this.steps.push(t=>(e(t),t)),this}filter(e){return this.steps.push(t=>e(t)?t:v),this}reduce(e,t){let n=t;return this.steps.push(t=>(n=e(n,t),n)),this}latch(e=(e,t)=>e===t){let t=!0,n;return this.steps.push(r=>{let i=t||!e(r,n);return t=!1,n=r,i?r:v}),this}evaluate(e){for(let t of this.steps)if(e=t(e),e===v)break;return e}}function b(e,t,n=e=>e){let r=(...e)=>i.fire(n(...e)),i=new Hh({onWillAddFirstListener:()=>e.on(t,r),onDidRemoveLastListener:()=>e.removeListener(t,r)});return i.event}e.fromNodeEventEmitter=b;function x(e,t,n=e=>e){let r=(...e)=>i.fire(n(...e)),i=new Hh({onWillAddFirstListener:()=>e.addEventListener(t,r),onDidRemoveLastListener:()=>e.removeEventListener(t,r)});return i.event}e.fromDOMEventEmitter=x;function S(e){return new Promise(t=>r(e)(t))}e.toPromise=S;function C(e){let t=new Hh;return e.then(e=>{t.fire(e)},()=>{t.fire(void 0)}).finally(()=>{t.dispose()}),t.event}e.fromPromise=C;function w(e,t){return e(e=>t.fire(e))}e.forward=w;function T(e,t,n){return t(n),e(e=>t(e))}e.runAndSubscribe=T;class E{constructor(e,n){this._observable=e,this._counter=0,this._hasChanged=!1;let r={onWillAddFirstListener:()=>{e.addObserver(this)},onDidRemoveLastListener:()=>{e.removeObserver(this)}};n||t(r),this.emitter=new Hh(r),n&&n.add(this.emitter)}beginUpdate(e){this._counter++}handlePossibleChange(e){}handleChange(e,t){this._hasChanged=!0}endUpdate(e){this._counter--,this._counter===0&&(this._observable.reportChanges(),this._hasChanged&&(this._hasChanged=!1,this.emitter.fire(this._observable.get())))}}function D(e,t){return new E(e,t).emitter.event}e.fromObservable=D;function O(e){return(t,n,r)=>{let i=0,a=!1,o={beginUpdate(){i++},endUpdate(){i--,i===0&&(e.reportChanges(),a&&(a=!1,t.call(n)))},handlePossibleChange(){},handleChange(){a=!0}};e.addObserver(o),e.reportChanges();let s={dispose(){e.removeObserver(o)}};return r instanceof dm?r.add(s):Array.isArray(r)&&r.push(s),s}}e.fromObservableLight=O})(Oh||={});var kh=class e{constructor(t){this.listenerCount=0,this.invocationCount=0,this.elapsedOverall=0,this.durations=[],this.name=`${t}_${e._idPool++}`,e.all.add(this)}start(e){this._stopWatch=new wh,this.listenerCount=e}stop(){if(this._stopWatch){let e=this._stopWatch.elapsed();this.durations.push(e),this.elapsedOverall+=e,this.invocationCount+=1,this._stopWatch=void 0}}};kh.all=new Set,kh._idPool=0;var Ah=kh,jh=-1,Mh=class e{constructor(t,n,r=(e._idPool++).toString(16).padStart(3,`0`)){this._errorHandler=t,this.threshold=n,this.name=r,this._warnCountdown=0}dispose(){this._stacks?.clear()}check(e,t){let n=this.threshold;if(n<=0||t<n)return;this._stacks||=new Map;let r=this._stacks.get(e.value)||0;if(this._stacks.set(e.value,r+1),--this._warnCountdown,this._warnCountdown<=0){this._warnCountdown=n*.5;let[e,r]=this.getMostFrequentStack(),i=`[${this.name}] potential listener LEAK detected, having ${t} listeners already. MOST frequent listener (${r}):`;console.warn(i),console.warn(e);let a=new Fh(i,e);this._errorHandler(a)}return()=>{let t=this._stacks.get(e.value)||0;this._stacks.set(e.value,t-1)}}getMostFrequentStack(){if(!this._stacks)return;let e,t=0;for(let[n,r]of this._stacks)(!e||t<r)&&(e=[n,r],t=r);return e}};Mh._idPool=1;var Nh=Mh,Ph=class e{constructor(e){this.value=e}static create(){return new e(Error().stack??``)}print(){console.warn(this.value.split(`
88
+ `).slice(2).join(`
89
+ `))}},Fh=class extends Error{constructor(e,t){super(e),this.name=`ListenerLeakError`,this.stack=t}},Ih=class extends Error{constructor(e,t){super(e),this.name=`ListenerRefusalError`,this.stack=t}},Lh=0,Rh=class{constructor(e){this.value=e,this.id=Lh++}},zh=2,Bh=(e,t)=>{if(e instanceof Rh)t(e);else for(let n=0;n<e.length;n++){let r=e[n];r&&t(r)}},Vh;if(Th){let e=[];setInterval(()=>{e.length!==0&&(console.warn(`[LEAKING LISTENERS] GC'ed these listeners that were NOT yet disposed:`),console.warn(e.join(`
90
+ `)),e.length=0)},3e3),Vh=new FinalizationRegistry(t=>{typeof t==`string`&&e.push(t)})}var Hh=class{constructor(e){this._size=0,this._options=e,this._leakageMon=jh>0||this._options?.leakWarningThreshold?new Nh(e?.onListenerError??Rp,this._options?.leakWarningThreshold??jh):void 0,this._perfMon=this._options?._profName?new Ah(this._options._profName):void 0,this._deliveryQueue=this._options?.deliveryQueue}dispose(){if(!this._disposed){if(this._disposed=!0,this._deliveryQueue?.current===this&&this._deliveryQueue.reset(),this._listeners){if(Eh){let e=this._listeners;queueMicrotask(()=>{Bh(e,e=>e.stack?.print())})}this._listeners=void 0,this._size=0}this._options?.onDidRemoveLastListener?.(),this._leakageMon?.dispose()}}get event(){return this._event??=(e,t,n)=>{if(this._leakageMon&&this._size>this._leakageMon.threshold**2){let e=`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;console.warn(e);let t=this._leakageMon.getMostFrequentStack()??[`UNKNOWN stack`,-1],n=new Ih(`${e}. HINT: Stack shows most frequent listener (${t[1]}-times)`,t[0]);return(this._options?.onListenerError||Rp)(n),fm.None}if(this._disposed)return fm.None;t&&(e=e.bind(t));let r=new Rh(e),i;this._leakageMon&&this._size>=Math.ceil(this._leakageMon.threshold*.2)&&(r.stack=Ph.create(),i=this._leakageMon.check(r.stack,this._size+1)),Eh&&(r.stack=Ph.create()),this._listeners?this._listeners instanceof Rh?(this._deliveryQueue??=new Uh,this._listeners=[this._listeners,r]):this._listeners.push(r):(this._options?.onWillAddFirstListener?.(this),this._listeners=r,this._options?.onDidAddFirstListener?.(this)),this._size++;let a=lm(()=>{Vh?.unregister(a),i?.(),this._removeListener(r)});if(n instanceof dm?n.add(a):Array.isArray(n)&&n.push(a),Vh){let e=Error().stack.split(`
91
+ `).slice(2,3).join(`
92
+ `).trim(),t=/(file:|vscode-file:\/\/vscode-app)?(\/[^:]*:\d+:\d+)/.exec(e);Vh.register(a,t?.[2]??e,a)}return a},this._event}_removeListener(e){if(this._options?.onWillRemoveListener?.(this),!this._listeners)return;if(this._size===1){this._listeners=void 0,this._options?.onDidRemoveLastListener?.(this),this._size=0;return}let t=this._listeners,n=t.indexOf(e);if(n===-1)throw console.log(`disposed?`,this._disposed),console.log(`size?`,this._size),console.log(`arr?`,JSON.stringify(this._listeners)),Error(`Attempted to dispose unknown listener`);this._size--,t[n]=void 0;let r=this._deliveryQueue.current===this;if(this._size*zh<=t.length){let e=0;for(let n=0;n<t.length;n++)t[n]?t[e++]=t[n]:r&&(this._deliveryQueue.end--,e<this._deliveryQueue.i&&this._deliveryQueue.i--);t.length=e}}_deliver(e,t){if(!e)return;let n=this._options?.onListenerError||Rp;if(!n){e.value(t);return}try{e.value(t)}catch(e){n(e)}}_deliverQueue(e){let t=e.current._listeners;for(;e.i<e.end;)this._deliver(t[e.i++],e.value);e.reset()}fire(e){if(this._deliveryQueue?.current&&(this._deliverQueue(this._deliveryQueue),this._perfMon?.stop()),this._perfMon?.start(this._size),this._listeners)if(this._listeners instanceof Rh)this._deliver(this._listeners,e);else{let t=this._deliveryQueue;t.enqueue(this,e,this._listeners.length),this._deliverQueue(t)}this._perfMon?.stop()}hasListeners(){return this._size>0}},Uh=class{constructor(){this.i=-1,this.end=0}enqueue(e,t,n){this.i=0,this.end=n,this.current=e,this.value=t}reset(){this.i=this.end,this.current=void 0,this.value=void 0}},Wh={texturePage:0,texturePosition:{x:0,y:0},texturePositionClipSpace:{x:0,y:0},offset:{x:0,y:0},size:{x:0,y:0},sizeClipSpace:{x:0,y:0}},Gh=2,Kh,qh=class e{constructor(e,t,n){this._document=e,this._config=t,this._unicodeService=n,this._didWarmUp=!1,this._cacheMap=new hh,this._cacheMapCombined=new hh,this._pages=[],this._activePages=[],this._workBoundingBox={top:0,left:0,bottom:0,right:0},this._workAttributeData=new bh,this._textureSize=512,this._onAddTextureAtlasCanvas=new Hh,this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=new Hh,this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._requestClearModel=!1,this._createNewPage(),this._tmpCanvas=Zh(e,this._config.deviceCellWidth*4+Gh*2,this._config.deviceCellHeight+Gh*2),this._tmpCtx=Pm(this._tmpCanvas.getContext(`2d`,{alpha:this._config.allowTransparency,willReadFrequently:!0}))}get pages(){return this._pages}dispose(){this._tmpCanvas.remove();for(let e of this.pages)e.canvas.remove();this._onAddTextureAtlasCanvas.dispose()}warmUp(){this._didWarmUp||=(this._doWarmUp(),!0)}_doWarmUp(){let e=new yh;for(let t=33;t<126;t++)e.enqueue(()=>{if(!this._cacheMap.get(t,0,0,0)){let e=this._drawToCache(t,0,0,0,!1,void 0);this._cacheMap.set(t,0,0,0,e)}})}beginFrame(){return this._requestClearModel}clearTexture(){if(!(this._pages[0].currentRow.x===0&&this._pages[0].currentRow.y===0)){for(let e of this._pages)e.clear();this._cacheMap.clear(),this._cacheMapCombined.clear(),this._didWarmUp=!1}}_createNewPage(){if(e.maxAtlasPages&&this._pages.length>=Math.max(4,e.maxAtlasPages)){let t=this._pages.filter(t=>t.canvas.width*2<=(e.maxTextureSize||4096)).sort((e,t)=>t.canvas.width===e.canvas.width?t.percentageUsed-e.percentageUsed:t.canvas.width-e.canvas.width),n=-1,r=0;for(let e=0;e<t.length;e++)if(t[e].canvas.width!==r)n=e,r=t[e].canvas.width;else if(e-n===3)break;let i=t.slice(n,n+4),a=i.map(e=>e.glyphs[0].texturePage).sort((e,t)=>e>t?1:-1),o=this.pages.length-i.length,s=this._mergePages(i,o);s.version++;for(let e=a.length-1;e>=0;e--)this._deletePage(a[e]);this.pages.push(s),this._requestClearModel=!0,this._onAddTextureAtlasCanvas.fire(s.canvas)}let t=new Jh(this._document,this._textureSize);return this._pages.push(t),this._activePages.push(t),this._onAddTextureAtlasCanvas.fire(t.canvas),t}_mergePages(e,t){let n=e[0].canvas.width*2,r=new Jh(this._document,n,e);for(let[i,a]of e.entries()){let e=i*a.canvas.width%n,o=Math.floor(i/2)*a.canvas.height;r.ctx.drawImage(a.canvas,e,o);for(let r of a.glyphs)r.texturePage=t,r.sizeClipSpace.x=r.size.x/n,r.sizeClipSpace.y=r.size.y/n,r.texturePosition.x+=e,r.texturePosition.y+=o,r.texturePositionClipSpace.x=r.texturePosition.x/n,r.texturePositionClipSpace.y=r.texturePosition.y/n;this._onRemoveTextureAtlasCanvas.fire(a.canvas);let s=this._activePages.indexOf(a);s!==-1&&this._activePages.splice(s,1)}return r}_deletePage(e){this._pages.splice(e,1);for(let t=e;t<this._pages.length;t++){let e=this._pages[t];for(let t of e.glyphs)t.texturePage--;e.version++}}getRasterizedGlyphCombinedChar(e,t,n,r,i,a){return this._getFromCacheMap(this._cacheMapCombined,e,t,n,r,i,a)}getRasterizedGlyph(e,t,n,r,i,a){return this._getFromCacheMap(this._cacheMap,e,t,n,r,i,a)}_getFromCacheMap(e,t,n,r,i,a,o){return Kh=e.get(t,n,r,i),Kh||(Kh=this._drawToCache(t,n,r,i,a,o),e.set(t,n,r,i,Kh)),Kh}_getColorFromAnsiIndex(e){if(e>=this._config.colors.ansi.length)throw Error(`No color found for idx `+e);return this._config.colors.ansi[e]}_getBackgroundColor(e,t,n,r){if(this._config.allowTransparency)return Em;let i;switch(e){case 16777216:case 33554432:i=this._getColorFromAnsiIndex(t);break;case 50331648:let e=bh.toColorRGB(t);i=Dm.toColor(e[0],e[1],e[2]);break;default:i=n?Om.opaque(this._config.colors.foreground):this._config.colors.background;break}return this._config.allowTransparency||(i=Om.opaque(i)),i}_getForegroundColor(e,t,n,r,i,a,o,s,c,l){let u=this._getMinimumContrastColor(e,t,n,r,i,a,o,c,s,l);if(u)return u;let d;switch(i){case 16777216:case 33554432:this._config.drawBoldTextInBrightColors&&c&&a<8&&(a+=8),d=this._getColorFromAnsiIndex(a);break;case 50331648:let e=bh.toColorRGB(a);d=Dm.toColor(e[0],e[1],e[2]);break;default:d=o?this._config.colors.background:this._config.colors.foreground}return this._config.allowTransparency&&(d=Om.opaque(d)),s&&(d=Om.multiplyOpacity(d,$m)),d}_resolveBackgroundRgba(e,t,n){switch(e){case 16777216:case 33554432:return this._getColorFromAnsiIndex(t).rgba;case 50331648:return t<<8;default:return n?this._config.colors.foreground.rgba:this._config.colors.background.rgba}}_resolveForegroundRgba(e,t,n,r){switch(e){case 16777216:case 33554432:return this._config.drawBoldTextInBrightColors&&r&&t<8&&(t+=8),this._getColorFromAnsiIndex(t).rgba;case 50331648:return t<<8;default:return n?this._config.colors.background.rgba:this._config.colors.foreground.rgba}}_getMinimumContrastColor(e,t,n,r,i,a,o,s,c,l){if(this._config.minimumContrastRatio===1||l)return;let u=this._getContrastCache(c),d=u.getColor(e,r);if(d!==void 0)return d||void 0;let f=this._resolveBackgroundRgba(t,n,o),p=this._resolveForegroundRgba(i,a,o,s),m=jm.ensureContrastRatio(f,p,this._config.minimumContrastRatio/(c?2:1));if(!m){u.setColor(e,r,null);return}let h=Dm.toColor(m>>24&255,m>>16&255,m>>8&255);return u.setColor(e,r,h),h}_getContrastCache(e){return e?this._config.colors.halfContrastCache:this._config.colors.contrastCache}_drawToCache(t,n,r,i,a,o){let s=typeof t==`number`?String.fromCharCode(t):t;o&&this._tmpCanvas.parentElement!==o&&(this._tmpCanvas.style.display=`none`,o.append(this._tmpCanvas));let c=Math.min(this._config.deviceCellWidth*Math.max(s.length,2)+Gh*2,this._config.deviceMaxTextureSize);this._tmpCanvas.width<c&&(this._tmpCanvas.width=c);let l=Math.min(this._config.deviceCellHeight+Gh*4,this._textureSize);if(this._tmpCanvas.height<l&&(this._tmpCanvas.height=l),this._tmpCtx.save(),this._workAttributeData.fg=r,this._workAttributeData.bg=n,this._workAttributeData.extended.ext=i,this._workAttributeData.isInvisible())return Wh;let u=!!this._workAttributeData.isBold(),d=!!this._workAttributeData.isInverse(),f=!!this._workAttributeData.isDim(),p=!!this._workAttributeData.isItalic(),m=!!this._workAttributeData.isUnderline(),h=!!this._workAttributeData.isStrikethrough(),g=!!this._workAttributeData.isOverline(),_=this._workAttributeData.getFgColor(),v=this._workAttributeData.getFgColorMode(),y=this._workAttributeData.getBgColor(),b=this._workAttributeData.getBgColorMode();if(d){let e=_;_=y,y=e;let t=v;v=b,b=t}let x=this._getBackgroundColor(b,y,d,f);this._tmpCtx.globalCompositeOperation=`copy`,this._tmpCtx.fillStyle=x.css,this._tmpCtx.fillRect(0,0,this._tmpCanvas.width,this._tmpCanvas.height),this._tmpCtx.globalCompositeOperation=`source-over`;let S=u?this._config.fontWeightBold:this._config.fontWeight,C=p?`italic`:``;this._tmpCtx.font=`${C} ${S} ${this._config.fontSize*this._config.devicePixelRatio}px ${this._config.fontFamily}`,this._tmpCtx.textBaseline=eh;let w=s.length===1&&Fm(s.charCodeAt(0)),T=s.length===1&&Im(s.charCodeAt(0)),E=this._getForegroundColor(n,b,y,r,v,_,d,f,u,Vm(s.charCodeAt(0)));this._tmpCtx.fillStyle=E.css;let D=T?0:Gh*2,O=!1;this._config.customGlyphs!==!1&&(O=ah(this._tmpCtx,s,D,D,this._config.deviceCellWidth,this._config.deviceCellHeight,this._config.fontSize,this._config.devicePixelRatio));let k=!w,A;if(A=typeof t==`number`?this._unicodeService.wcwidth(t):this._unicodeService.getStringCellWidth(t),m){this._tmpCtx.save();let e=Math.max(1,Math.floor(this._config.fontSize*this._config.devicePixelRatio/15)),t=e%2==1?.5:0;if(this._tmpCtx.lineWidth=e,this._workAttributeData.isUnderlineColorDefault())this._tmpCtx.strokeStyle=this._tmpCtx.fillStyle;else if(this._workAttributeData.isUnderlineColorRGB())k=!1,this._tmpCtx.strokeStyle=`rgb(${bh.toColorRGB(this._workAttributeData.getUnderlineColor()).join(`,`)})`;else{k=!1;let e=this._workAttributeData.getUnderlineColor();this._config.drawBoldTextInBrightColors&&this._workAttributeData.isBold()&&e<8&&(e+=8),this._tmpCtx.strokeStyle=this._getColorFromAnsiIndex(e).css}this._tmpCtx.beginPath();let n=D,r=Math.ceil(D+this._config.deviceCharHeight)-t-(a?e*2:0),i=r+e,o=r+e*2,c=this._workAttributeData.getUnderlineVariantOffset();for(let a=0;a<A;a++){this._tmpCtx.save();let s=n+a*this._config.deviceCellWidth,l=n+(a+1)*this._config.deviceCellWidth,u=s+this._config.deviceCellWidth/2;switch(this._workAttributeData.extended.underlineStyle){case 2:this._tmpCtx.moveTo(s,r),this._tmpCtx.lineTo(l,r),this._tmpCtx.moveTo(s,o),this._tmpCtx.lineTo(l,o);break;case 3:let n=e<=1?o:Math.ceil(D+this._config.deviceCharHeight-e/2)-t,a=e<=1?r:Math.ceil(D+this._config.deviceCharHeight+e/2)-t,d=new Path2D;d.rect(s,r,this._config.deviceCellWidth,o-r),this._tmpCtx.clip(d),this._tmpCtx.moveTo(s-this._config.deviceCellWidth/2,i),this._tmpCtx.bezierCurveTo(s-this._config.deviceCellWidth/2,a,s,a,s,i),this._tmpCtx.bezierCurveTo(s,n,u,n,u,i),this._tmpCtx.bezierCurveTo(u,a,l,a,l,i),this._tmpCtx.bezierCurveTo(l,n,l+this._config.deviceCellWidth/2,n,l+this._config.deviceCellWidth/2,i);break;case 4:let f=c===0?0:c>=e?e*2-c:e-c;c>=e||f===0?(this._tmpCtx.setLineDash([Math.round(e),Math.round(e)]),this._tmpCtx.moveTo(s+f,r),this._tmpCtx.lineTo(l,r)):(this._tmpCtx.setLineDash([Math.round(e),Math.round(e)]),this._tmpCtx.moveTo(s,r),this._tmpCtx.lineTo(s+f,r),this._tmpCtx.moveTo(s+f+e,r),this._tmpCtx.lineTo(l,r)),c=Wm(l-s,e,c);break;case 5:let p=l-s,m=Math.floor(.6*p),h=Math.floor(.3*p),g=p-m-h;this._tmpCtx.setLineDash([m,h,g]),this._tmpCtx.moveTo(s,r),this._tmpCtx.lineTo(l,r);break;default:this._tmpCtx.moveTo(s,r),this._tmpCtx.lineTo(l,r);break}this._tmpCtx.stroke(),this._tmpCtx.restore()}if(this._tmpCtx.restore(),!O&&this._config.fontSize>=12&&!this._config.allowTransparency&&s!==` `){this._tmpCtx.save(),this._tmpCtx.textBaseline=`alphabetic`;let t=this._tmpCtx.measureText(s);if(this._tmpCtx.restore(),`actualBoundingBoxDescent`in t&&t.actualBoundingBoxDescent>0){this._tmpCtx.save();let t=new Path2D;t.rect(n,r-Math.ceil(e/2),this._config.deviceCellWidth*A,o-r+Math.ceil(e/2)),this._tmpCtx.clip(t),this._tmpCtx.lineWidth=this._config.devicePixelRatio*3,this._tmpCtx.strokeStyle=x.css,this._tmpCtx.strokeText(s,D,D+this._config.deviceCharHeight),this._tmpCtx.restore()}}}if(g){let e=Math.max(1,Math.floor(this._config.fontSize*this._config.devicePixelRatio/15)),t=e%2==1?.5:0;this._tmpCtx.lineWidth=e,this._tmpCtx.strokeStyle=this._tmpCtx.fillStyle,this._tmpCtx.beginPath(),this._tmpCtx.moveTo(D,D+t),this._tmpCtx.lineTo(D+this._config.deviceCharWidth*A,D+t),this._tmpCtx.stroke()}if(O||this._tmpCtx.fillText(s,D,D+this._config.deviceCharHeight),s===`_`&&!this._config.allowTransparency){let e=Yh(this._tmpCtx.getImageData(D,D,this._config.deviceCellWidth,this._config.deviceCellHeight),x,E,k);if(e)for(let t=1;t<=5&&(this._tmpCtx.save(),this._tmpCtx.fillStyle=x.css,this._tmpCtx.fillRect(0,0,this._tmpCanvas.width,this._tmpCanvas.height),this._tmpCtx.restore(),this._tmpCtx.fillText(s,D,D+this._config.deviceCharHeight-t),e=Yh(this._tmpCtx.getImageData(D,D,this._config.deviceCellWidth,this._config.deviceCellHeight),x,E,k),e);t++);}if(h){let e=Math.max(1,Math.floor(this._config.fontSize*this._config.devicePixelRatio/10)),t=this._tmpCtx.lineWidth%2==1?.5:0;this._tmpCtx.lineWidth=e,this._tmpCtx.strokeStyle=this._tmpCtx.fillStyle,this._tmpCtx.beginPath(),this._tmpCtx.moveTo(D,D+Math.floor(this._config.deviceCharHeight/2)-t),this._tmpCtx.lineTo(D+this._config.deviceCharWidth*A,D+Math.floor(this._config.deviceCharHeight/2)-t),this._tmpCtx.stroke()}this._tmpCtx.restore();let j=this._tmpCtx.getImageData(0,0,this._tmpCanvas.width,this._tmpCanvas.height),M;if(M=this._config.allowTransparency?Xh(j):Yh(j,x,E,k),M)return Wh;let N=this._findGlyphBoundingBox(j,this._workBoundingBox,c,T,O,D),P,F;for(;;){if(this._activePages.length===0){let e=this._createNewPage();P=e,F=e.currentRow,F.height=N.size.y;break}P=this._activePages[this._activePages.length-1],F=P.currentRow;for(let e of this._activePages)N.size.y<=e.currentRow.height&&(P=e,F=e.currentRow);for(let e=this._activePages.length-1;e>=0;e--)for(let t of this._activePages[e].fixedRows)t.height<=F.height&&N.size.y<=t.height&&(P=this._activePages[e],F=t);if(N.size.x>this._textureSize){this._overflowSizePage||(this._overflowSizePage=new Jh(this._document,this._config.deviceMaxTextureSize),this.pages.push(this._overflowSizePage),this._requestClearModel=!0,this._onAddTextureAtlasCanvas.fire(this._overflowSizePage.canvas)),P=this._overflowSizePage,F=this._overflowSizePage.currentRow,F.x+N.size.x>=P.canvas.width&&(F.x=0,F.y+=F.height,F.height=0);break}if(F.y+N.size.y>=P.canvas.height||F.height>N.size.y+2){let t=!1;if(P.currentRow.y+P.currentRow.height+N.size.y>=P.canvas.height){let n;for(let e of this._activePages)if(e.currentRow.y+e.currentRow.height+N.size.y<e.canvas.height){n=e;break}if(n)P=n;else if(e.maxAtlasPages&&this._pages.length>=e.maxAtlasPages&&F.y+N.size.y<=P.canvas.height&&F.height>=N.size.y&&F.x+N.size.x<=P.canvas.width)t=!0;else{let e=this._createNewPage();P=e,F=e.currentRow,F.height=N.size.y,t=!0}}t||(P.currentRow.height>0&&P.fixedRows.push(P.currentRow),F={x:0,y:P.currentRow.y+P.currentRow.height,height:N.size.y},P.fixedRows.push(F),P.currentRow={x:0,y:F.y+F.height,height:0})}if(F.x+N.size.x<=P.canvas.width)break;F===P.currentRow?(F.x=0,F.y+=F.height,F.height=0):P.fixedRows.splice(P.fixedRows.indexOf(F),1)}return N.texturePage=this._pages.indexOf(P),N.texturePosition.x=F.x,N.texturePosition.y=F.y,N.texturePositionClipSpace.x=F.x/P.canvas.width,N.texturePositionClipSpace.y=F.y/P.canvas.height,N.sizeClipSpace.x/=P.canvas.width,N.sizeClipSpace.y/=P.canvas.height,F.height=Math.max(F.height,N.size.y),F.x+=N.size.x,P.ctx.putImageData(j,N.texturePosition.x-this._workBoundingBox.left,N.texturePosition.y-this._workBoundingBox.top,this._workBoundingBox.left,this._workBoundingBox.top,N.size.x,N.size.y),P.addGlyph(N),P.version++,N}_findGlyphBoundingBox(e,t,n,r,i,a){t.top=0;let o=r?this._config.deviceCellHeight:this._tmpCanvas.height,s=r?this._config.deviceCellWidth:n,c=!1;for(let n=0;n<o;n++){for(let r=0;r<s;r++){let i=n*this._tmpCanvas.width*4+r*4+3;if(e.data[i]!==0){t.top=n,c=!0;break}}if(c)break}t.left=0,c=!1;for(let n=0;n<a+s;n++){for(let r=0;r<o;r++){let i=r*this._tmpCanvas.width*4+n*4+3;if(e.data[i]!==0){t.left=n,c=!0;break}}if(c)break}t.right=s,c=!1;for(let n=a+s-1;n>=a;n--){for(let r=0;r<o;r++){let i=r*this._tmpCanvas.width*4+n*4+3;if(e.data[i]!==0){t.right=n,c=!0;break}}if(c)break}t.bottom=o,c=!1;for(let n=o-1;n>=0;n--){for(let r=0;r<s;r++){let i=n*this._tmpCanvas.width*4+r*4+3;if(e.data[i]!==0){t.bottom=n,c=!0;break}}if(c)break}return{texturePage:0,texturePosition:{x:0,y:0},texturePositionClipSpace:{x:0,y:0},size:{x:t.right-t.left+1,y:t.bottom-t.top+1},sizeClipSpace:{x:t.right-t.left+1,y:t.bottom-t.top+1},offset:{x:-t.left+a+(r||i?Math.floor((this._config.deviceCellWidth-this._config.deviceCharWidth)/2):0),y:-t.top+a+(r||i?this._config.lineHeight===1?0:Math.round((this._config.deviceCellHeight-this._config.deviceCharHeight)/2):0)}}}},Jh=class{constructor(e,t,n){if(this._usedPixels=0,this._glyphs=[],this.version=0,this.currentRow={x:0,y:0,height:0},this.fixedRows=[],n)for(let e of n)this._glyphs.push(...e.glyphs),this._usedPixels+=e._usedPixels;this.canvas=Zh(e,t,t),this.ctx=Pm(this.canvas.getContext(`2d`,{alpha:!0}))}get percentageUsed(){return this._usedPixels/(this.canvas.width*this.canvas.height)}get glyphs(){return this._glyphs}addGlyph(e){this._glyphs.push(e),this._usedPixels+=e.size.x*e.size.y}clear(){this.ctx.clearRect(0,0,this.canvas.width,this.canvas.height),this.currentRow.x=0,this.currentRow.y=0,this.currentRow.height=0,this.fixedRows.length=0,this.version++}};function Yh(e,t,n,r){let i=t.rgba>>>24,a=t.rgba>>>16&255,o=t.rgba>>>8&255,s=n.rgba>>>24,c=n.rgba>>>16&255,l=n.rgba>>>8&255,u=Math.floor((Math.abs(i-s)+Math.abs(a-c)+Math.abs(o-l))/12),d=!0;for(let t=0;t<e.data.length;t+=4)e.data[t]===i&&e.data[t+1]===a&&e.data[t+2]===o||r&&Math.abs(e.data[t]-i)+Math.abs(e.data[t+1]-a)+Math.abs(e.data[t+2]-o)<u?e.data[t+3]=0:d=!1;return d}function Xh(e){for(let t=0;t<e.data.length;t+=4)if(e.data[t+3]>0)return!1;return!0}function Zh(e,t,n){let r=e.createElement(`canvas`);return r.width=t,r.height=n,r}function Qh(e,t,n,r,i,a,o,s){let c={foreground:a.foreground,background:a.background,cursor:Em,cursorAccent:Em,selectionForeground:Em,selectionBackgroundTransparent:Em,selectionBackgroundOpaque:Em,selectionInactiveBackgroundTransparent:Em,selectionInactiveBackgroundOpaque:Em,overviewRulerBorder:Em,scrollbarSliderBackground:Em,scrollbarSliderHoverBackground:Em,scrollbarSliderActiveBackground:Em,ansi:a.ansi.slice(),contrastCache:a.contrastCache,halfContrastCache:a.halfContrastCache};return{customGlyphs:i.customGlyphs,devicePixelRatio:o,deviceMaxTextureSize:s,letterSpacing:i.letterSpacing,lineHeight:i.lineHeight,deviceCellWidth:e,deviceCellHeight:t,deviceCharWidth:n,deviceCharHeight:r,fontFamily:i.fontFamily,fontSize:i.fontSize,fontWeight:i.fontWeight,fontWeightBold:i.fontWeightBold,allowTransparency:i.allowTransparency,drawBoldTextInBrightColors:i.drawBoldTextInBrightColors,minimumContrastRatio:i.minimumContrastRatio,colors:c}}function $h(e,t){for(let n=0;n<e.colors.ansi.length;n++)if(e.colors.ansi[n].rgba!==t.colors.ansi[n].rgba)return!1;return e.devicePixelRatio===t.devicePixelRatio&&e.customGlyphs===t.customGlyphs&&e.lineHeight===t.lineHeight&&e.letterSpacing===t.letterSpacing&&e.fontFamily===t.fontFamily&&e.fontSize===t.fontSize&&e.fontWeight===t.fontWeight&&e.fontWeightBold===t.fontWeightBold&&e.allowTransparency===t.allowTransparency&&e.deviceCharWidth===t.deviceCharWidth&&e.deviceCharHeight===t.deviceCharHeight&&e.drawBoldTextInBrightColors===t.drawBoldTextInBrightColors&&e.minimumContrastRatio===t.minimumContrastRatio&&e.colors.foreground.rgba===t.colors.foreground.rgba&&e.colors.background.rgba===t.colors.background.rgba}function eg(e){return(e&50331648)==16777216||(e&50331648)==33554432}var tg=[];function ng(e,t,n,r,i,a,o,s,c){let l=Qh(r,i,a,o,t,n,s,c);for(let t=0;t<tg.length;t++){let n=tg[t],r=n.ownedBy.indexOf(e);if(r>=0){if($h(n.config,l))return n.atlas;n.ownedBy.length===1?(n.atlas.dispose(),tg.splice(t,1)):n.ownedBy.splice(r,1);break}}for(let t=0;t<tg.length;t++){let n=tg[t];if($h(n.config,l))return n.ownedBy.push(e),n.atlas}let u=e._core,d={atlas:new qh(document,l,u.unicodeService),config:l,ownedBy:[e]};return tg.push(d),d.atlas}function rg(e){for(let t=0;t<tg.length;t++){let n=tg[t].ownedBy.indexOf(e);if(n!==-1){tg[t].ownedBy.length===1?(tg[t].atlas.dispose(),tg.splice(t,1)):tg[t].ownedBy.splice(n,1);break}}}var ig=600,ag=class{constructor(e,t){this._renderCallback=e,this._coreBrowserService=t,this.isCursorVisible=!0,this._coreBrowserService.isFocused&&this._restartInterval()}get isPaused(){return!(this._blinkStartTimeout||this._blinkInterval)}dispose(){this._blinkInterval&&=(this._coreBrowserService.window.clearInterval(this._blinkInterval),void 0),this._blinkStartTimeout&&=(this._coreBrowserService.window.clearTimeout(this._blinkStartTimeout),void 0),this._animationFrame&&=(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),void 0)}restartBlinkAnimation(){this.isPaused||(this._animationTimeRestarted=Date.now(),this.isCursorVisible=!0,this._animationFrame||=this._coreBrowserService.window.requestAnimationFrame(()=>{this._renderCallback(),this._animationFrame=void 0}))}_restartInterval(e=ig){this._blinkInterval&&=(this._coreBrowserService.window.clearInterval(this._blinkInterval),void 0),this._blinkStartTimeout=this._coreBrowserService.window.setTimeout(()=>{if(this._animationTimeRestarted){let e=ig-(Date.now()-this._animationTimeRestarted);if(this._animationTimeRestarted=void 0,e>0){this._restartInterval(e);return}}this.isCursorVisible=!1,this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._renderCallback(),this._animationFrame=void 0}),this._blinkInterval=this._coreBrowserService.window.setInterval(()=>{if(this._animationTimeRestarted){let e=ig-(Date.now()-this._animationTimeRestarted);this._animationTimeRestarted=void 0,this._restartInterval(e);return}this.isCursorVisible=!this.isCursorVisible,this._animationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>{this._renderCallback(),this._animationFrame=void 0})},ig)},e)}pause(){this.isCursorVisible=!0,this._blinkInterval&&=(this._coreBrowserService.window.clearInterval(this._blinkInterval),void 0),this._blinkStartTimeout&&=(this._coreBrowserService.window.clearTimeout(this._blinkStartTimeout),void 0),this._animationFrame&&=(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),void 0)}resume(){this.pause(),this._animationTimeRestarted=void 0,this._restartInterval(),this.restartBlinkAnimation()}};function og(e,t,n){let r=new t.ResizeObserver(t=>{let i=t.find(t=>t.target===e);if(!i)return;if(!(`devicePixelContentBoxSize`in i)){r?.disconnect(),r=void 0;return}let a=i.devicePixelContentBoxSize[0].inlineSize,o=i.devicePixelContentBoxSize[0].blockSize;a>0&&o>0&&n(a,o)});try{r.observe(e,{box:[`device-pixel-content-box`]})}catch{r.disconnect(),r=void 0}return lm(()=>r?.disconnect())}function sg(e){return e>65535?(e-=65536,String.fromCharCode((e>>10)+55296)+String.fromCharCode(e%1024+56320)):String.fromCharCode(e)}var cg=class e extends bh{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new xh,this.combinedData=``}static fromCharData(t){let n=new e;return n.setFromCharData(t),n}isCombined(){return this.content&2097152}getWidth(){return this.content>>22}getChars(){return this.content&2097152?this.combinedData:this.content&2097151?sg(this.content&2097151):``}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):this.content&2097151}setFromCharData(e){this.fg=e[0],this.bg=0;let t=!1;if(e[1].length>2)t=!0;else if(e[1].length===2){let n=e[1].charCodeAt(0);if(55296<=n&&n<=56319){let r=e[1].charCodeAt(1);56320<=r&&r<=57343?this.content=(n-55296)*1024+r-56320+65536|e[2]<<22:t=!0}else t=!0}else this.content=e[1].charCodeAt(0)|e[2]<<22;t&&(this.combinedData=e[1],this.content=2097152|e[2]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}},lg=new Float32Array([2,0,0,0,0,-2,0,0,0,0,1,0,-1,1,0,1]);function ug(e,t,n){let r=Pm(e.createProgram());if(e.attachShader(r,Pm(dg(e,e.VERTEX_SHADER,t))),e.attachShader(r,Pm(dg(e,e.FRAGMENT_SHADER,n))),e.linkProgram(r),e.getProgramParameter(r,e.LINK_STATUS))return r;console.error(e.getProgramInfoLog(r)),e.deleteProgram(r)}function dg(e,t,n){let r=Pm(e.createShader(t));if(e.shaderSource(r,n),e.compileShader(r),e.getShaderParameter(r,e.COMPILE_STATUS))return r;console.error(e.getShaderInfoLog(r)),e.deleteShader(r)}function fg(e,t){let n=Math.min(e.length*2,t),r=new Float32Array(n);for(let t=0;t<e.length;t++)r[t]=e[t];return r}var pg=class{constructor(e){this.texture=e,this.version=-1}},mg=`#version 300 es
93
+ layout (location = 0) in vec2 a_unitquad;
94
+ layout (location = 1) in vec2 a_cellpos;
95
+ layout (location = 2) in vec2 a_offset;
96
+ layout (location = 3) in vec2 a_size;
97
+ layout (location = 4) in float a_texpage;
98
+ layout (location = 5) in vec2 a_texcoord;
99
+ layout (location = 6) in vec2 a_texsize;
100
+
101
+ uniform mat4 u_projection;
102
+ uniform vec2 u_resolution;
103
+
104
+ out vec2 v_texcoord;
105
+ flat out int v_texpage;
106
+
107
+ void main() {
108
+ vec2 zeroToOne = (a_offset / u_resolution) + a_cellpos + (a_unitquad * a_size);
109
+ gl_Position = u_projection * vec4(zeroToOne, 0.0, 1.0);
110
+ v_texpage = int(a_texpage);
111
+ v_texcoord = a_texcoord + a_unitquad * a_texsize;
112
+ }`;function hg(e){let t=``;for(let n=1;n<e;n++)t+=` else if (v_texpage == ${n}) { outColor = texture(u_texture[${n}], v_texcoord); }`;return`#version 300 es
113
+ precision lowp float;
114
+
115
+ in vec2 v_texcoord;
116
+ flat in int v_texpage;
117
+
118
+ uniform sampler2D u_texture[${e}];
119
+
120
+ out vec4 outColor;
121
+
122
+ void main() {
123
+ if (v_texpage == 0) {
124
+ outColor = texture(u_texture[0], v_texcoord);
125
+ } ${t}
126
+ }`}var gg=11,_g=gg*Float32Array.BYTES_PER_ELEMENT,vg=2,yg=0,bg,xg=0,Sg=0,Cg=class extends fm{constructor(e,t,n,r){super(),this._terminal=e,this._gl=t,this._dimensions=n,this._optionsService=r,this._activeBuffer=0,this._vertices={count:0,attributes:new Float32Array,attributesBuffers:[new Float32Array,new Float32Array]};let i=this._gl;qh.maxAtlasPages===void 0&&(qh.maxAtlasPages=Math.min(32,Pm(i.getParameter(i.MAX_TEXTURE_IMAGE_UNITS))),qh.maxTextureSize=Pm(i.getParameter(i.MAX_TEXTURE_SIZE))),this._program=Pm(ug(i,mg,hg(qh.maxAtlasPages))),this._register(lm(()=>i.deleteProgram(this._program))),this._projectionLocation=Pm(i.getUniformLocation(this._program,`u_projection`)),this._resolutionLocation=Pm(i.getUniformLocation(this._program,`u_resolution`)),this._textureLocation=Pm(i.getUniformLocation(this._program,`u_texture`)),this._vertexArrayObject=i.createVertexArray(),i.bindVertexArray(this._vertexArrayObject);let a=new Float32Array([0,0,1,0,0,1,1,1]),o=i.createBuffer();this._register(lm(()=>i.deleteBuffer(o))),i.bindBuffer(i.ARRAY_BUFFER,o),i.bufferData(i.ARRAY_BUFFER,a,i.STATIC_DRAW),i.enableVertexAttribArray(0),i.vertexAttribPointer(0,2,this._gl.FLOAT,!1,0,0);let s=new Uint8Array([0,1,2,3]),c=i.createBuffer();this._register(lm(()=>i.deleteBuffer(c))),i.bindBuffer(i.ELEMENT_ARRAY_BUFFER,c),i.bufferData(i.ELEMENT_ARRAY_BUFFER,s,i.STATIC_DRAW),this._attributesBuffer=Pm(i.createBuffer()),this._register(lm(()=>i.deleteBuffer(this._attributesBuffer))),i.bindBuffer(i.ARRAY_BUFFER,this._attributesBuffer),i.enableVertexAttribArray(2),i.vertexAttribPointer(2,2,i.FLOAT,!1,_g,0),i.vertexAttribDivisor(2,1),i.enableVertexAttribArray(3),i.vertexAttribPointer(3,2,i.FLOAT,!1,_g,2*Float32Array.BYTES_PER_ELEMENT),i.vertexAttribDivisor(3,1),i.enableVertexAttribArray(4),i.vertexAttribPointer(4,1,i.FLOAT,!1,_g,4*Float32Array.BYTES_PER_ELEMENT),i.vertexAttribDivisor(4,1),i.enableVertexAttribArray(5),i.vertexAttribPointer(5,2,i.FLOAT,!1,_g,5*Float32Array.BYTES_PER_ELEMENT),i.vertexAttribDivisor(5,1),i.enableVertexAttribArray(6),i.vertexAttribPointer(6,2,i.FLOAT,!1,_g,7*Float32Array.BYTES_PER_ELEMENT),i.vertexAttribDivisor(6,1),i.enableVertexAttribArray(1),i.vertexAttribPointer(1,2,i.FLOAT,!1,_g,9*Float32Array.BYTES_PER_ELEMENT),i.vertexAttribDivisor(1,1),i.useProgram(this._program);let l=new Int32Array(qh.maxAtlasPages);for(let e=0;e<qh.maxAtlasPages;e++)l[e]=e;i.uniform1iv(this._textureLocation,l),i.uniformMatrix4fv(this._projectionLocation,!1,lg),this._atlasTextures=[];for(let e=0;e<qh.maxAtlasPages;e++){let t=new pg(Pm(i.createTexture()));this._register(lm(()=>i.deleteTexture(t.texture))),i.activeTexture(i.TEXTURE0+e),i.bindTexture(i.TEXTURE_2D,t.texture),i.texParameteri(i.TEXTURE_2D,i.TEXTURE_WRAP_S,i.CLAMP_TO_EDGE),i.texParameteri(i.TEXTURE_2D,i.TEXTURE_WRAP_T,i.CLAMP_TO_EDGE),i.texImage2D(i.TEXTURE_2D,0,i.RGBA,1,1,0,i.RGBA,i.UNSIGNED_BYTE,new Uint8Array([255,0,0,255])),this._atlasTextures[e]=t}i.enable(i.BLEND),i.blendFunc(i.SRC_ALPHA,i.ONE_MINUS_SRC_ALPHA),this.handleResize()}beginFrame(){return this._atlas?this._atlas.beginFrame():!0}updateCell(e,t,n,r,i,a,o,s,c){this._updateCell(this._vertices.attributes,e,t,n,r,i,a,o,s,c)}_updateCell(e,t,n,r,i,a,o,s,c,l){if(yg=(n*this._terminal.cols+t)*gg,r===0||r===void 0){e.fill(0,yg,yg+gg-1-vg);return}this._atlas&&(bg=s&&s.length>1?this._atlas.getRasterizedGlyphCombinedChar(s,i,a,o,!1,this._terminal.element):this._atlas.getRasterizedGlyph(r,i,a,o,!1,this._terminal.element),xg=Math.floor((this._dimensions.device.cell.width-this._dimensions.device.char.width)/2),i!==l&&bg.offset.x>xg?(Sg=bg.offset.x-xg,e[yg]=-(bg.offset.x-Sg)+this._dimensions.device.char.left,e[yg+1]=-bg.offset.y+this._dimensions.device.char.top,e[yg+2]=(bg.size.x-Sg)/this._dimensions.device.canvas.width,e[yg+3]=bg.size.y/this._dimensions.device.canvas.height,e[yg+4]=bg.texturePage,e[yg+5]=bg.texturePositionClipSpace.x+Sg/this._atlas.pages[bg.texturePage].canvas.width,e[yg+6]=bg.texturePositionClipSpace.y,e[yg+7]=bg.sizeClipSpace.x-Sg/this._atlas.pages[bg.texturePage].canvas.width,e[yg+8]=bg.sizeClipSpace.y):(e[yg]=-bg.offset.x+this._dimensions.device.char.left,e[yg+1]=-bg.offset.y+this._dimensions.device.char.top,e[yg+2]=bg.size.x/this._dimensions.device.canvas.width,e[yg+3]=bg.size.y/this._dimensions.device.canvas.height,e[yg+4]=bg.texturePage,e[yg+5]=bg.texturePositionClipSpace.x,e[yg+6]=bg.texturePositionClipSpace.y,e[yg+7]=bg.sizeClipSpace.x,e[yg+8]=bg.sizeClipSpace.y),this._optionsService.rawOptions.rescaleOverlappingGlyphs&&Bm(r,c,bg.size.x,this._dimensions.device.cell.width)&&(e[yg+2]=(this._dimensions.device.cell.width-1)/this._dimensions.device.canvas.width))}clear(){let e=this._terminal,t=e.cols*e.rows*gg;this._vertices.count===t?this._vertices.attributes.fill(0):this._vertices.attributes=new Float32Array(t);let n=0;for(;n<this._vertices.attributesBuffers.length;n++)this._vertices.count===t?this._vertices.attributesBuffers[n].fill(0):this._vertices.attributesBuffers[n]=new Float32Array(t);this._vertices.count=t,n=0;for(let t=0;t<e.rows;t++)for(let r=0;r<e.cols;r++)this._vertices.attributes[n+9]=r/e.cols,this._vertices.attributes[n+10]=t/e.rows,n+=gg}handleResize(){let e=this._gl;e.useProgram(this._program),e.viewport(0,0,e.canvas.width,e.canvas.height),e.uniform2f(this._resolutionLocation,e.canvas.width,e.canvas.height),this.clear()}render(e){if(!this._atlas)return;let t=this._gl;t.useProgram(this._program),t.bindVertexArray(this._vertexArrayObject),this._activeBuffer=(this._activeBuffer+1)%2;let n=this._vertices.attributesBuffers[this._activeBuffer],r=0;for(let t=0;t<e.lineLengths.length;t++){let i=t*this._terminal.cols*gg,a=this._vertices.attributes.subarray(i,i+e.lineLengths[t]*gg);n.set(a,r),r+=a.length}t.bindBuffer(t.ARRAY_BUFFER,this._attributesBuffer),t.bufferData(t.ARRAY_BUFFER,n.subarray(0,r),t.STREAM_DRAW);for(let e=0;e<this._atlas.pages.length;e++)this._atlas.pages[e].version!==this._atlasTextures[e].version&&this._bindAtlasPageTexture(t,this._atlas,e);t.drawElementsInstanced(t.TRIANGLE_STRIP,4,t.UNSIGNED_BYTE,0,r/gg)}setAtlas(e){this._atlas=e;for(let e of this._atlasTextures)e.version=-1}_bindAtlasPageTexture(e,t,n){e.activeTexture(e.TEXTURE0+n),e.bindTexture(e.TEXTURE_2D,this._atlasTextures[n].texture),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.CLAMP_TO_EDGE),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.CLAMP_TO_EDGE),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,t.pages[n].canvas),e.generateMipmap(e.TEXTURE_2D),this._atlasTextures[n].version=t.pages[n].version}setDimensions(e){this._dimensions=e}},wg=class{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(e,t,n,r=!1){if(this.selectionStart=t,this.selectionEnd=n,!t||!n||t[0]===n[0]&&t[1]===n[1]){this.clear();return}let i=e.buffers.active.ydisp,a=t[1]-i,o=n[1]-i,s=Math.max(a,0),c=Math.min(o,e.rows-1);if(s>=e.rows||c<0){this.clear();return}this.hasSelection=!0,this.columnSelectMode=r,this.viewportStartRow=a,this.viewportEndRow=o,this.viewportCappedStartRow=s,this.viewportCappedEndRow=c,this.startCol=t[0],this.endCol=n[0]}isCellSelected(e,t,n){return this.hasSelection?(n-=e.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?t>=this.startCol&&n>=this.viewportCappedStartRow&&t<this.endCol&&n<=this.viewportCappedEndRow:t<this.startCol&&n>=this.viewportCappedStartRow&&t>=this.endCol&&n<=this.viewportCappedEndRow:n>this.viewportStartRow&&n<this.viewportEndRow||this.viewportStartRow===this.viewportEndRow&&n===this.viewportStartRow&&t>=this.startCol&&t<this.endCol||this.viewportStartRow<this.viewportEndRow&&n===this.viewportEndRow&&t<this.endCol||this.viewportStartRow<this.viewportEndRow&&n===this.viewportStartRow&&t>=this.startCol):!1}};function Tg(){return new wg}var Eg=4,Dg=1,Og=2,kg=3,Ag=2147483648,jg=class{constructor(){this.cells=new Uint32Array,this.lineLengths=new Uint32Array,this.selection=Tg()}resize(e,t){let n=e*t*Eg;n!==this.cells.length&&(this.cells=new Uint32Array(n),this.lineLengths=new Uint32Array(t))}clear(){this.cells.fill(0,0),this.lineLengths.fill(0,0)}},Mg=`#version 300 es
127
+ layout (location = 0) in vec2 a_position;
128
+ layout (location = 1) in vec2 a_size;
129
+ layout (location = 2) in vec4 a_color;
130
+ layout (location = 3) in vec2 a_unitquad;
131
+
132
+ uniform mat4 u_projection;
133
+
134
+ out vec4 v_color;
135
+
136
+ void main() {
137
+ vec2 zeroToOne = a_position + (a_unitquad * a_size);
138
+ gl_Position = u_projection * vec4(zeroToOne, 0.0, 1.0);
139
+ v_color = a_color;
140
+ }`,Ng=`#version 300 es
141
+ precision lowp float;
142
+
143
+ in vec4 v_color;
144
+
145
+ out vec4 outColor;
146
+
147
+ void main() {
148
+ outColor = v_color;
149
+ }`,Pg=8,Fg=Pg*Float32Array.BYTES_PER_ELEMENT,Ig=20*Pg,Lg=class{constructor(){this.attributes=new Float32Array(Ig),this.count=0}},Rg=0,zg=0,Bg=0,Vg=0,Hg=0,Ug=0,Wg=0,Gg=class extends fm{constructor(e,t,n,r){super(),this._terminal=e,this._gl=t,this._dimensions=n,this._themeService=r,this._vertices=new Lg,this._verticesCursor=new Lg;let i=this._gl;this._program=Pm(ug(i,Mg,Ng)),this._register(lm(()=>i.deleteProgram(this._program))),this._projectionLocation=Pm(i.getUniformLocation(this._program,`u_projection`)),this._vertexArrayObject=i.createVertexArray(),i.bindVertexArray(this._vertexArrayObject);let a=new Float32Array([0,0,1,0,0,1,1,1]),o=i.createBuffer();this._register(lm(()=>i.deleteBuffer(o))),i.bindBuffer(i.ARRAY_BUFFER,o),i.bufferData(i.ARRAY_BUFFER,a,i.STATIC_DRAW),i.enableVertexAttribArray(3),i.vertexAttribPointer(3,2,this._gl.FLOAT,!1,0,0);let s=new Uint8Array([0,1,2,3]),c=i.createBuffer();this._register(lm(()=>i.deleteBuffer(c))),i.bindBuffer(i.ELEMENT_ARRAY_BUFFER,c),i.bufferData(i.ELEMENT_ARRAY_BUFFER,s,i.STATIC_DRAW),this._attributesBuffer=Pm(i.createBuffer()),this._register(lm(()=>i.deleteBuffer(this._attributesBuffer))),i.bindBuffer(i.ARRAY_BUFFER,this._attributesBuffer),i.enableVertexAttribArray(0),i.vertexAttribPointer(0,2,i.FLOAT,!1,Fg,0),i.vertexAttribDivisor(0,1),i.enableVertexAttribArray(1),i.vertexAttribPointer(1,2,i.FLOAT,!1,Fg,2*Float32Array.BYTES_PER_ELEMENT),i.vertexAttribDivisor(1,1),i.enableVertexAttribArray(2),i.vertexAttribPointer(2,4,i.FLOAT,!1,Fg,4*Float32Array.BYTES_PER_ELEMENT),i.vertexAttribDivisor(2,1),this._updateCachedColors(r.colors),this._register(this._themeService.onChangeColors(e=>{this._updateCachedColors(e),this._updateViewportRectangle()}))}renderBackgrounds(){this._renderVertices(this._vertices)}renderCursor(){this._renderVertices(this._verticesCursor)}_renderVertices(e){let t=this._gl;t.useProgram(this._program),t.bindVertexArray(this._vertexArrayObject),t.uniformMatrix4fv(this._projectionLocation,!1,lg),t.bindBuffer(t.ARRAY_BUFFER,this._attributesBuffer),t.bufferData(t.ARRAY_BUFFER,e.attributes,t.DYNAMIC_DRAW),t.drawElementsInstanced(this._gl.TRIANGLE_STRIP,4,t.UNSIGNED_BYTE,0,e.count)}handleResize(){this._updateViewportRectangle()}setDimensions(e){this._dimensions=e}_updateCachedColors(e){this._bgFloat=this._colorToFloat32Array(e.background),this._cursorFloat=this._colorToFloat32Array(e.cursor)}_updateViewportRectangle(){this._addRectangleFloat(this._vertices.attributes,0,0,0,this._terminal.cols*this._dimensions.device.cell.width,this._terminal.rows*this._dimensions.device.cell.height,this._bgFloat)}updateBackgrounds(e){let t=this._terminal,n=this._vertices,r=1,i,a,o,s,c,l,u,d,f,p,m;for(i=0;i<t.rows;i++){for(o=-1,s=0,c=0,l=!1,a=0;a<t.cols;a++)u=(i*t.cols+a)*Eg,d=e.cells[u+Dg],f=e.cells[u+Og],p=!!(f&67108864),(d!==s||f!==c&&(l||p))&&((s!==0||l&&c!==0)&&(m=r++*Pg,this._updateRectangle(n,m,c,s,o,a,i)),o=a,s=d,c=f,l=p);(s!==0||l&&c!==0)&&(m=r++*Pg,this._updateRectangle(n,m,c,s,o,t.cols,i))}n.count=r}updateCursor(e){let t=this._verticesCursor,n=e.cursor;if(!n||n.style===`block`){t.count=0;return}let r,i=0;(n.style===`bar`||n.style===`outline`)&&(r=i++*Pg,this._addRectangleFloat(t.attributes,r,n.x*this._dimensions.device.cell.width,n.y*this._dimensions.device.cell.height,n.style===`bar`?n.dpr*n.cursorWidth:n.dpr,this._dimensions.device.cell.height,this._cursorFloat)),(n.style===`underline`||n.style===`outline`)&&(r=i++*Pg,this._addRectangleFloat(t.attributes,r,n.x*this._dimensions.device.cell.width,(n.y+1)*this._dimensions.device.cell.height-n.dpr,n.width*this._dimensions.device.cell.width,n.dpr,this._cursorFloat)),n.style===`outline`&&(r=i++*Pg,this._addRectangleFloat(t.attributes,r,n.x*this._dimensions.device.cell.width,n.y*this._dimensions.device.cell.height,n.width*this._dimensions.device.cell.width,n.dpr,this._cursorFloat),r=i++*Pg,this._addRectangleFloat(t.attributes,r,(n.x+n.width)*this._dimensions.device.cell.width-n.dpr,n.y*this._dimensions.device.cell.height,n.dpr,this._dimensions.device.cell.height,this._cursorFloat)),t.count=i}_updateRectangle(e,t,n,r,i,a,o){if(n&67108864)switch(n&50331648){case 16777216:case 33554432:Rg=this._themeService.colors.ansi[n&255].rgba;break;case 50331648:Rg=(n&16777215)<<8;break;case 0:default:Rg=this._themeService.colors.foreground.rgba}else switch(r&50331648){case 16777216:case 33554432:Rg=this._themeService.colors.ansi[r&255].rgba;break;case 50331648:Rg=(r&16777215)<<8;break;case 0:default:Rg=this._themeService.colors.background.rgba}e.attributes.length<t+4&&(e.attributes=fg(e.attributes,this._terminal.rows*this._terminal.cols*Pg)),zg=i*this._dimensions.device.cell.width,Bg=o*this._dimensions.device.cell.height,Vg=(Rg>>24&255)/255,Hg=(Rg>>16&255)/255,Ug=(Rg>>8&255)/255,Wg=1,this._addRectangle(e.attributes,t,zg,Bg,(a-i)*this._dimensions.device.cell.width,this._dimensions.device.cell.height,Vg,Hg,Ug,Wg)}_addRectangle(e,t,n,r,i,a,o,s,c,l){e[t]=n/this._dimensions.device.canvas.width,e[t+1]=r/this._dimensions.device.canvas.height,e[t+2]=i/this._dimensions.device.canvas.width,e[t+3]=a/this._dimensions.device.canvas.height,e[t+4]=o,e[t+5]=s,e[t+6]=c,e[t+7]=l}_addRectangleFloat(e,t,n,r,i,a,o){e[t]=n/this._dimensions.device.canvas.width,e[t+1]=r/this._dimensions.device.canvas.height,e[t+2]=i/this._dimensions.device.canvas.width,e[t+3]=a/this._dimensions.device.canvas.height,e[t+4]=o[0],e[t+5]=o[1],e[t+6]=o[2],e[t+7]=o[3]}_colorToFloat32Array(e){return new Float32Array([(e.rgba>>24&255)/255,(e.rgba>>16&255)/255,(e.rgba>>8&255)/255,(e.rgba&255)/255])}},Kg=class extends fm{constructor(e,t,n,r,i,a,o,s){super(),this._container=t,this._alpha=i,this._coreBrowserService=a,this._optionsService=o,this._themeService=s,this._deviceCharWidth=0,this._deviceCharHeight=0,this._deviceCellWidth=0,this._deviceCellHeight=0,this._deviceCharLeft=0,this._deviceCharTop=0,this._canvas=this._coreBrowserService.mainDocument.createElement(`canvas`),this._canvas.classList.add(`xterm-${n}-layer`),this._canvas.style.zIndex=r.toString(),this._initCanvas(),this._container.appendChild(this._canvas),this._register(this._themeService.onChangeColors(t=>{this._refreshCharAtlas(e,t),this.reset(e)})),this._register(lm(()=>{this._canvas.remove()}))}_initCanvas(){this._ctx=Pm(this._canvas.getContext(`2d`,{alpha:this._alpha})),this._alpha||this._clearAll()}handleBlur(e){}handleFocus(e){}handleCursorMove(e){}handleGridChanged(e,t,n){}handleSelectionChanged(e,t,n,r=!1){}_setTransparency(e,t){if(t===this._alpha)return;let n=this._canvas;this._alpha=t,this._canvas=this._canvas.cloneNode(),this._initCanvas(),this._container.replaceChild(this._canvas,n),this._refreshCharAtlas(e,this._themeService.colors),this.handleGridChanged(e,0,e.rows-1)}_refreshCharAtlas(e,t){this._deviceCharWidth<=0&&this._deviceCharHeight<=0||(this._charAtlas=ng(e,this._optionsService.rawOptions,t,this._deviceCellWidth,this._deviceCellHeight,this._deviceCharWidth,this._deviceCharHeight,this._coreBrowserService.dpr,2048),this._charAtlas.warmUp())}resize(e,t){this._deviceCellWidth=t.device.cell.width,this._deviceCellHeight=t.device.cell.height,this._deviceCharWidth=t.device.char.width,this._deviceCharHeight=t.device.char.height,this._deviceCharLeft=t.device.char.left,this._deviceCharTop=t.device.char.top,this._canvas.width=t.device.canvas.width,this._canvas.height=t.device.canvas.height,this._canvas.style.width=`${t.css.canvas.width}px`,this._canvas.style.height=`${t.css.canvas.height}px`,this._alpha||this._clearAll(),this._refreshCharAtlas(e,this._themeService.colors)}_fillBottomLineAtCells(e,t,n=1){this._ctx.fillRect(e*this._deviceCellWidth,(t+1)*this._deviceCellHeight-this._coreBrowserService.dpr-1,n*this._deviceCellWidth,this._coreBrowserService.dpr)}_clearAll(){this._alpha?this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height):(this._ctx.fillStyle=this._themeService.colors.background.css,this._ctx.fillRect(0,0,this._canvas.width,this._canvas.height))}_clearCells(e,t,n,r){this._alpha?this._ctx.clearRect(e*this._deviceCellWidth,t*this._deviceCellHeight,n*this._deviceCellWidth,r*this._deviceCellHeight):(this._ctx.fillStyle=this._themeService.colors.background.css,this._ctx.fillRect(e*this._deviceCellWidth,t*this._deviceCellHeight,n*this._deviceCellWidth,r*this._deviceCellHeight))}_fillCharTrueColor(e,t,n,r){this._ctx.font=this._getFont(e,!1,!1),this._ctx.textBaseline=eh,this._clipCell(n,r,t.getWidth()),this._ctx.fillText(t.getChars(),n*this._deviceCellWidth+this._deviceCharLeft,r*this._deviceCellHeight+this._deviceCharTop+this._deviceCharHeight)}_clipCell(e,t,n){this._ctx.beginPath(),this._ctx.rect(e*this._deviceCellWidth,t*this._deviceCellHeight,n*this._deviceCellWidth,this._deviceCellHeight),this._ctx.clip()}_getFont(e,t,n){let r=t?e.options.fontWeightBold:e.options.fontWeight;return`${n?`italic`:``} ${r} ${e.options.fontSize*this._coreBrowserService.dpr}px ${e.options.fontFamily}`}},qg=class extends Kg{constructor(e,t,n,r,i,a,o){super(n,e,`link`,t,!0,i,a,o),this._register(r.onShowLinkUnderline(e=>this._handleShowLinkUnderline(e))),this._register(r.onHideLinkUnderline(e=>this._handleHideLinkUnderline(e)))}resize(e,t){super.resize(e,t),this._state=void 0}reset(e){this._clearCurrentLink()}_clearCurrentLink(){if(this._state){this._clearCells(this._state.x1,this._state.y1,this._state.cols-this._state.x1,1);let e=this._state.y2-this._state.y1-1;e>0&&this._clearCells(0,this._state.y1+1,this._state.cols,e),this._clearCells(0,this._state.y2,this._state.x2,1),this._state=void 0}}_handleShowLinkUnderline(e){if(e.fg===257?this._ctx.fillStyle=this._themeService.colors.background.css:e.fg!==void 0&&eg(e.fg)?this._ctx.fillStyle=this._themeService.colors.ansi[e.fg].css:this._ctx.fillStyle=this._themeService.colors.foreground.css,e.y1===e.y2)this._fillBottomLineAtCells(e.x1,e.y1,e.x2-e.x1);else{this._fillBottomLineAtCells(e.x1,e.y1,e.cols-e.x1);for(let t=e.y1+1;t<e.y2;t++)this._fillBottomLineAtCells(0,t,e.cols);this._fillBottomLineAtCells(0,e.y2,e.x2)}this._state=e}_handleHideLinkUnderline(e){this._clearCurrentLink()}},Jg=typeof window==`object`?window:globalThis,Yg=class{constructor(){this.mapWindowIdToZoomLevel=new Map,this._onDidChangeZoomLevel=new Hh,this.onDidChangeZoomLevel=this._onDidChangeZoomLevel.event,this.mapWindowIdToZoomFactor=new Map,this._onDidChangeFullscreen=new Hh,this.onDidChangeFullscreen=this._onDidChangeFullscreen.event,this.mapWindowIdToFullScreen=new Map}getZoomLevel(e){return this.mapWindowIdToZoomLevel.get(this.getWindowId(e))??0}setZoomLevel(e,t){if(this.getZoomLevel(t)===e)return;let n=this.getWindowId(t);this.mapWindowIdToZoomLevel.set(n,e),this._onDidChangeZoomLevel.fire(n)}getZoomFactor(e){return this.mapWindowIdToZoomFactor.get(this.getWindowId(e))??1}setZoomFactor(e,t){this.mapWindowIdToZoomFactor.set(this.getWindowId(t),e)}setFullscreen(e,t){if(this.isFullscreen(t)===e)return;let n=this.getWindowId(t);this.mapWindowIdToFullScreen.set(n,e),this._onDidChangeFullscreen.fire(n)}isFullscreen(e){return!!this.mapWindowIdToFullScreen.get(this.getWindowId(e))}getWindowId(e){return e.vscodeWindowId}};Yg.INSTANCE=new Yg;var Xg=Yg;function Zg(e,t,n){typeof t==`string`&&(t=e.matchMedia(t)),t.addEventListener(`change`,n)}Xg.INSTANCE.onDidChangeZoomLevel,Xg.INSTANCE.onDidChangeFullscreen;var Qg=typeof navigator==`object`?navigator.userAgent:``;Qg.indexOf(`Firefox`);var $g=Qg.indexOf(`AppleWebKit`)>=0;!(Qg.indexOf(`Chrome`)>=0)&&Qg.indexOf(`Safari`),Qg.indexOf(`Electron/`),Qg.indexOf(`Android`);var e_=!1;if(typeof Jg.matchMedia==`function`){let e=Jg.matchMedia(`(display-mode: standalone) or (display-mode: window-controls-overlay)`),t=Jg.matchMedia(`(display-mode: fullscreen)`);e_=e.matches,Zg(Jg,e,({matches:e})=>{e_&&t.matches||(e_=e)})}function t_(){return e_}var n_=`en`,r_=!1,i_=!1,a_=!1,o_=n_,s_,c_=globalThis,l_;typeof c_.vscode<`u`&&typeof c_.vscode.process<`u`?l_=c_.vscode.process:typeof process<`u`&&typeof process?.versions?.node==`string`&&(l_=process);var u_=typeof l_?.versions?.electron==`string`&&l_?.type===`renderer`;if(typeof l_==`object`){l_.platform,l_.platform,r_=l_.platform===`linux`,r_&&l_.env.SNAP&&l_.env.SNAP_REVISION,l_.env.CI||l_.env.BUILD_ARTIFACTSTAGINGDIRECTORY,o_=n_;let e=l_.env.VSCODE_NLS_CONFIG;if(e)try{let t=JSON.parse(e);t.userLocale,t.osLocale,o_=t.resolvedLanguage||n_,t.languagePack?.translationsConfigFile}catch{}i_=!0}else typeof navigator==`object`&&!u_?(s_=navigator.userAgent,s_.indexOf(`Windows`),s_.indexOf(`Macintosh`),(s_.indexOf(`Macintosh`)>=0||s_.indexOf(`iPad`)>=0||s_.indexOf(`iPhone`)>=0)&&navigator.maxTouchPoints&&navigator.maxTouchPoints,r_=s_.indexOf(`Linux`)>=0,s_?.indexOf(`Mobi`),a_=!0,o_=globalThis._VSCODE_NLS_LANGUAGE||n_,navigator.language.toLowerCase()):console.error(`Unable to resolve platform.`);var d_=i_;a_&&typeof c_.importScripts==`function`&&c_.origin;var f_=s_,p_=o_,m_;(e=>{function t(){return p_}e.value=t;function n(){return p_.length===2?p_===`en`:p_.length>=3?p_[0]===`e`&&p_[1]===`n`&&p_[2]===`-`:!1}e.isDefaultVariant=n;function r(){return p_===`en`}e.isDefault=r})(m_||={});var h_=typeof c_.postMessage==`function`&&!c_.importScripts;(()=>{if(h_){let e=[];c_.addEventListener(`message`,t=>{if(t.data&&t.data.vscodeScheduleAsyncWork)for(let n=0,r=e.length;n<r;n++){let r=e[n];if(r.id===t.data.vscodeScheduleAsyncWork){e.splice(n,1),r.callback();return}}});let t=0;return n=>{let r=++t;e.push({id:r,callback:n}),c_.postMessage({vscodeScheduleAsyncWork:r},`*`)}}return e=>setTimeout(e)})();var g_=!!(f_&&f_.indexOf(`Chrome`)>=0);f_&&f_.indexOf(`Firefox`),!g_&&f_&&f_.indexOf(`Safari`),f_&&f_.indexOf(`Edg/`),f_&&f_.indexOf(`Android`);var __=typeof navigator==`object`?navigator:{};d_||document.queryCommandSupported&&document.queryCommandSupported(`copy`)||__&&__.clipboard&&__.clipboard.writeText,d_||__&&__.clipboard&&__.clipboard.readText,d_||t_()||__.keyboard,`ontouchstart`in Jg||__.maxTouchPoints,Jg.PointerEvent&&(`ontouchstart`in Jg||navigator.maxTouchPoints);var v_=class{constructor(){this._keyCodeToStr=[],this._strToKeyCode=Object.create(null)}define(e,t){this._keyCodeToStr[e]=t,this._strToKeyCode[t.toLowerCase()]=e}keyCodeToStr(e){return this._keyCodeToStr[e]}strToKeyCode(e){return this._strToKeyCode[e.toLowerCase()]||0}},y_=new v_,b_=new v_,x_=new v_;Array(230);var S_;(e=>{function t(e){return y_.keyCodeToStr(e)}e.toString=t;function n(e){return y_.strToKeyCode(e)}e.fromString=n;function r(e){return b_.keyCodeToStr(e)}e.toUserSettingsUS=r;function i(e){return x_.keyCodeToStr(e)}e.toUserSettingsGeneral=i;function a(e){return b_.strToKeyCode(e)||x_.strToKeyCode(e)}e.fromUserSettings=a;function o(e){if(e>=98&&e<=113)return null;switch(e){case 16:return`Up`;case 18:return`Down`;case 15:return`Left`;case 17:return`Right`}return y_.keyCodeToStr(e)}e.toElectronAccelerator=o})(S_||={});var C_=Object.freeze(function(e,t){let n=setTimeout(e.bind(t),0);return{dispose(){clearTimeout(n)}}}),w_;(e=>{function t(t){return t===e.None||t===e.Cancelled||t instanceof T_?!0:!t||typeof t!=`object`?!1:typeof t.isCancellationRequested==`boolean`&&typeof t.onCancellationRequested==`function`}e.isCancellationToken=t,e.None=Object.freeze({isCancellationRequested:!1,onCancellationRequested:Oh.None}),e.Cancelled=Object.freeze({isCancellationRequested:!0,onCancellationRequested:C_})})(w_||={});var T_=class{constructor(){this._isCancelled=!1,this._emitter=null}cancel(){this._isCancelled||(this._isCancelled=!0,this._emitter&&(this._emitter.fire(void 0),this.dispose()))}get isCancellationRequested(){return this._isCancelled}get onCancellationRequested(){return this._isCancelled?C_:(this._emitter||=new Hh,this._emitter.event)}dispose(){this._emitter&&=(this._emitter.dispose(),null)}};(function(){typeof globalThis.requestIdleCallback!=`function`||globalThis.cancelIdleCallback})();var E_;(e=>{async function t(e){let t,n=await Promise.all(e.map(e=>e.then(e=>e,e=>{t||=e})));if(typeof t<`u`)throw t;return n}e.settled=t;function n(e){return new Promise(async(t,n)=>{try{await e(t,n)}catch(e){n(e)}})}e.withAsyncBody=n})(E_||={});var D_=class e{static fromArray(t){return new e(e=>{e.emitMany(t)})}static fromPromise(t){return new e(async e=>{e.emitMany(await t)})}static fromPromises(t){return new e(async e=>{await Promise.all(t.map(async t=>e.emitOne(await t)))})}static merge(t){return new e(async e=>{await Promise.all(t.map(async t=>{for await(let n of t)e.emitOne(n)}))})}constructor(e,t){this._state=0,this._results=[],this._error=null,this._onReturn=t,this._onStateChanged=new Hh,queueMicrotask(async()=>{let t={emitOne:e=>this.emitOne(e),emitMany:e=>this.emitMany(e),reject:e=>this.reject(e)};try{await Promise.resolve(e(t)),this.resolve()}catch(e){this.reject(e)}finally{t.emitOne=void 0,t.emitMany=void 0,t.reject=void 0}})}[Symbol.asyncIterator](){let e=0;return{next:async()=>{do{if(this._state===2)throw this._error;if(e<this._results.length)return{done:!1,value:this._results[e++]};if(this._state===1)return{done:!0,value:void 0};await Oh.toPromise(this._onStateChanged.event)}while(!0)},return:async()=>(this._onReturn?.(),{done:!0,value:void 0})}}static map(t,n){return new e(async e=>{for await(let r of t)e.emitOne(n(r))})}map(t){return e.map(this,t)}static filter(t,n){return new e(async e=>{for await(let r of t)n(r)&&e.emitOne(r)})}filter(t){return e.filter(this,t)}static coalesce(t){return e.filter(t,e=>!!e)}coalesce(){return e.coalesce(this)}static async toPromise(e){let t=[];for await(let n of e)t.push(n);return t}toPromise(){return e.toPromise(this)}emitOne(e){this._state===0&&(this._results.push(e),this._onStateChanged.fire())}emitMany(e){this._state===0&&(this._results=this._results.concat(e),this._onStateChanged.fire())}resolve(){this._state===0&&(this._state=1,this._onStateChanged.fire())}reject(e){this._state===0&&(this._state=2,this._error=e,this._onStateChanged.fire())}};D_.EMPTY=D_.fromArray([]);function O_(e){return 55296<=e&&e<=56319}function k_(e){return 56320<=e&&e<=57343}function A_(e,t){return(e-55296<<10)+(t-56320)+65536}function j_(e){return M_(e,0)}function M_(e,t){switch(typeof e){case`object`:return e===null?N_(349,t):Array.isArray(e)?I_(e,t):L_(e,t);case`string`:return F_(e,t);case`boolean`:return P_(e,t);case`number`:return N_(e,t);case`undefined`:return N_(937,t);default:return N_(617,t)}}function N_(e,t){return(t<<5)-t+e|0}function P_(e,t){return N_(e?433:863,t)}function F_(e,t){t=N_(149417,t);for(let n=0,r=e.length;n<r;n++)t=N_(e.charCodeAt(n),t);return t}function I_(e,t){return t=N_(104579,t),e.reduce((e,t)=>M_(t,e),t)}function L_(e,t){return t=N_(181387,t),Object.keys(e).sort().reduce((t,n)=>(t=F_(n,t),M_(e[n],t)),t)}function R_(e,t,n=32){let r=n-t,i=~((1<<r)-1);return(e<<t|(i&e)>>>r)>>>0}function z_(e,t=0,n=e.byteLength,r=0){for(let i=0;i<n;i++)e[t+i]=r}function B_(e,t,n=`0`){for(;e.length<t;)e=n+e;return e}function V_(e,t=32){return e instanceof ArrayBuffer?Array.from(new Uint8Array(e)).map(e=>e.toString(16).padStart(2,`0`)).join(``):B_((e>>>0).toString(16),t/4)}var H_=class e{constructor(){this._h0=1732584193,this._h1=4023233417,this._h2=2562383102,this._h3=271733878,this._h4=3285377520,this._buff=new Uint8Array(67),this._buffDV=new DataView(this._buff.buffer),this._buffLen=0,this._totalLen=0,this._leftoverHighSurrogate=0,this._finished=!1}update(e){let t=e.length;if(t===0)return;let n=this._buff,r=this._buffLen,i=this._leftoverHighSurrogate,a,o;for(i===0?(a=e.charCodeAt(0),o=0):(a=i,o=-1,i=0);;){let s=a;if(O_(a))if(o+1<t){let t=e.charCodeAt(o+1);k_(t)?(o++,s=A_(a,t)):s=65533}else{i=a;break}else k_(a)&&(s=65533);if(r=this._push(n,r,s),o++,o<t)a=e.charCodeAt(o);else break}this._buffLen=r,this._leftoverHighSurrogate=i}_push(e,t,n){return n<128?e[t++]=n:n<2048?(e[t++]=192|(n&1984)>>>6,e[t++]=128|(n&63)>>>0):n<65536?(e[t++]=224|(n&61440)>>>12,e[t++]=128|(n&4032)>>>6,e[t++]=128|(n&63)>>>0):(e[t++]=240|(n&1835008)>>>18,e[t++]=128|(n&258048)>>>12,e[t++]=128|(n&4032)>>>6,e[t++]=128|(n&63)>>>0),t>=64&&(this._step(),t-=64,this._totalLen+=64,e[0]=e[64],e[1]=e[65],e[2]=e[66]),t}digest(){return this._finished||(this._finished=!0,this._leftoverHighSurrogate&&(this._leftoverHighSurrogate=0,this._buffLen=this._push(this._buff,this._buffLen,65533)),this._totalLen+=this._buffLen,this._wrapUp()),V_(this._h0)+V_(this._h1)+V_(this._h2)+V_(this._h3)+V_(this._h4)}_wrapUp(){this._buff[this._buffLen++]=128,z_(this._buff,this._buffLen),this._buffLen>56&&(this._step(),z_(this._buff));let e=8*this._totalLen;this._buffDV.setUint32(56,Math.floor(e/4294967296),!1),this._buffDV.setUint32(60,e%4294967296,!1),this._step()}_step(){let t=e._bigBlock32,n=this._buffDV;for(let e=0;e<64;e+=4)t.setUint32(e,n.getUint32(e,!1),!1);for(let e=64;e<320;e+=4)t.setUint32(e,R_(t.getUint32(e-12,!1)^t.getUint32(e-32,!1)^t.getUint32(e-56,!1)^t.getUint32(e-64,!1),1),!1);let r=this._h0,i=this._h1,a=this._h2,o=this._h3,s=this._h4,c,l,u;for(let e=0;e<80;e++)e<20?(c=i&a|~i&o,l=1518500249):e<40?(c=i^a^o,l=1859775393):e<60?(c=i&a|i&o|a&o,l=2400959708):(c=i^a^o,l=3395469782),u=R_(r,5)+c+s+l+t.getUint32(e*4,!1)&4294967295,s=o,o=a,a=R_(i,30),i=r,r=u;this._h0=this._h0+r&4294967295,this._h1=this._h1+i&4294967295,this._h2=this._h2+a&4294967295,this._h3=this._h3+o&4294967295,this._h4=this._h4+s&4294967295}};H_._bigBlock32=new DataView(new ArrayBuffer(320));var{registerWindow:U_,getWindow:W_,getDocument:G_,getWindows:K_,getWindowsCount:q_,getWindowId:J_,getWindowById:Y_,hasWindow:X_,onDidRegisterWindow:Z_,onWillUnregisterWindow:Q_,onDidUnregisterWindow:$_}=function(){let e=new Map,t={window:Jg,disposables:new dm};e.set(Jg.vscodeWindowId,t);let n=new Hh,r=new Hh,i=new Hh;function a(n,r){return(typeof n==`number`?e.get(n):void 0)??(r?t:void 0)}return{onDidRegisterWindow:n.event,onWillUnregisterWindow:i.event,onDidUnregisterWindow:r.event,registerWindow(t){if(e.has(t.vscodeWindowId))return fm.None;let a=new dm,o={window:t,disposables:a.add(new dm)};return e.set(t.vscodeWindowId,o),a.add(lm(()=>{e.delete(t.vscodeWindowId),r.fire(t)})),a.add(tv(t,rv.BEFORE_UNLOAD,()=>{i.fire(t)})),n.fire(o),a},getWindows(){return e.values()},getWindowsCount(){return e.size},getWindowId(e){return e.vscodeWindowId},hasWindow(t){return e.has(t)},getWindowById:a,getWindow(e){let t=e;if(t?.ownerDocument?.defaultView)return t.ownerDocument.defaultView.window;let n=e;return n?.view?n.view.window:Jg},getDocument(e){return W_(e).document}}}(),ev=class{constructor(e,t,n,r){this._node=e,this._type=t,this._handler=n,this._options=r||!1,this._node.addEventListener(this._type,this._handler,this._options)}dispose(){this._handler&&=(this._node.removeEventListener(this._type,this._handler,this._options),this._node=null,null)}};function tv(e,t,n,r){return new ev(e,t,n,r)}var nv=class e{constructor(e,t){this.width=e,this.height=t}with(t=this.width,n=this.height){return t!==this.width||n!==this.height?new e(t,n):this}static is(e){return typeof e==`object`&&typeof e.height==`number`&&typeof e.width==`number`}static lift(t){return t instanceof e?t:new e(t.width,t.height)}static equals(e,t){return e===t?!0:!e||!t?!1:e.width===t.width&&e.height===t.height}};nv.None=new nv(0,0),new class{constructor(){this.mutationObservers=new Map}observe(e,t,n){let r=this.mutationObservers.get(e);r||(r=new Map,this.mutationObservers.set(e,r));let i=j_(n),a=r.get(i);if(a)a.users+=1;else{let o=new Hh,s=new MutationObserver(e=>o.fire(e));s.observe(e,n);let c=a={users:1,observer:s,onDidMutate:o.event};t.add(lm(()=>{--c.users,c.users===0&&(o.dispose(),s.disconnect(),r?.delete(i),r?.size===0&&this.mutationObservers.delete(e))})),r.set(i,a)}return a.onDidMutate}};var rv={CLICK:`click`,AUXCLICK:`auxclick`,DBLCLICK:`dblclick`,MOUSE_UP:`mouseup`,MOUSE_DOWN:`mousedown`,MOUSE_OVER:`mouseover`,MOUSE_MOVE:`mousemove`,MOUSE_OUT:`mouseout`,MOUSE_ENTER:`mouseenter`,MOUSE_LEAVE:`mouseleave`,MOUSE_WHEEL:`wheel`,POINTER_UP:`pointerup`,POINTER_DOWN:`pointerdown`,POINTER_MOVE:`pointermove`,POINTER_LEAVE:`pointerleave`,CONTEXT_MENU:`contextmenu`,WHEEL:`wheel`,KEY_DOWN:`keydown`,KEY_PRESS:`keypress`,KEY_UP:`keyup`,LOAD:`load`,BEFORE_UNLOAD:`beforeunload`,UNLOAD:`unload`,PAGE_SHOW:`pageshow`,PAGE_HIDE:`pagehide`,PASTE:`paste`,ABORT:`abort`,ERROR:`error`,RESIZE:`resize`,SCROLL:`scroll`,FULLSCREEN_CHANGE:`fullscreenchange`,WK_FULLSCREEN_CHANGE:`webkitfullscreenchange`,SELECT:`select`,CHANGE:`change`,SUBMIT:`submit`,RESET:`reset`,FOCUS:`focus`,FOCUS_IN:`focusin`,FOCUS_OUT:`focusout`,BLUR:`blur`,INPUT:`input`,STORAGE:`storage`,DRAG_START:`dragstart`,DRAG:`drag`,DRAG_ENTER:`dragenter`,DRAG_LEAVE:`dragleave`,DRAG_OVER:`dragover`,DROP:`drop`,DRAG_END:`dragend`,ANIMATION_START:$g?`webkitAnimationStart`:`animationstart`,ANIMATION_END:$g?`webkitAnimationEnd`:`animationend`,ANIMATION_ITERATION:$g?`webkitAnimationIteration`:`animationiteration`},iv=/([\w\-]+)?(#([\w\-]+))?((\.([\w\-]+))*)/;function av(e,t,n,...r){let i=iv.exec(t);if(!i)throw Error(`Bad use of emmet`);let a=i[1]||`div`,o;return o=e===`http://www.w3.org/1999/xhtml`?document.createElement(a):document.createElementNS(e,a),i[3]&&(o.id=i[3]),i[4]&&(o.className=i[4].replace(/\./g,` `).trim()),n&&Object.entries(n).forEach(([e,t])=>{typeof t>`u`||(/^on\w+$/.test(e)?o[e]=t:e===`selected`?t&&o.setAttribute(e,`true`):o.setAttribute(e,t))}),o.append(...r),o}function ov(e,t,...n){return av(`http://www.w3.org/1999/xhtml`,e,t,...n)}ov.SVG=function(e,t,...n){return av(`http://www.w3.org/2000/svg`,e,t,...n)};var sv=class extends fm{constructor(e,t,n,r,i,a,o,s,c){super(),this._terminal=e,this._characterJoinerService=t,this._charSizeService=n,this._coreBrowserService=r,this._coreService=i,this._decorationService=a,this._optionsService=o,this._themeService=s,this._cursorBlinkStateManager=new pm,this._charAtlasDisposable=this._register(new pm),this._observerDisposable=this._register(new pm),this._model=new jg,this._workCell=new cg,this._workCell2=new cg,this._rectangleRenderer=this._register(new pm),this._glyphRenderer=this._register(new pm),this._onChangeTextureAtlas=this._register(new Hh),this.onChangeTextureAtlas=this._onChangeTextureAtlas.event,this._onAddTextureAtlasCanvas=this._register(new Hh),this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=this._register(new Hh),this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._onRequestRedraw=this._register(new Hh),this.onRequestRedraw=this._onRequestRedraw.event,this._onContextLoss=this._register(new Hh),this.onContextLoss=this._onContextLoss.event,this._canvas=this._coreBrowserService.mainDocument.createElement(`canvas`);let l={antialias:!1,depth:!1,preserveDrawingBuffer:c};if(this._gl=this._canvas.getContext(`webgl2`,l),!this._gl)throw Error(`WebGL2 not supported `+this._gl);this._register(this._themeService.onChangeColors(()=>this._handleColorChange())),this._cellColorResolver=new Qm(this._terminal,this._optionsService,this._model.selection,this._decorationService,this._coreBrowserService,this._themeService),this._core=this._terminal._core,this._renderLayers=[new qg(this._core.screenElement,2,this._terminal,this._core.linkifier,this._coreBrowserService,o,this._themeService)],this.dimensions=Hm(),this._devicePixelRatio=this._coreBrowserService.dpr,this._updateDimensions(),this._updateCursorBlink(),this._register(o.onOptionChange(()=>this._handleOptionsChanged())),this._deviceMaxTextureSize=this._gl.getParameter(this._gl.MAX_TEXTURE_SIZE),this._register(tv(this._canvas,`webglcontextlost`,e=>{console.log(`webglcontextlost event received`),e.preventDefault(),this._contextRestorationTimeout=setTimeout(()=>{this._contextRestorationTimeout=void 0,console.warn(`webgl context not restored; firing onContextLoss`),this._onContextLoss.fire(e)},3e3)})),this._register(tv(this._canvas,`webglcontextrestored`,e=>{console.warn(`webglcontextrestored event received`),clearTimeout(this._contextRestorationTimeout),this._contextRestorationTimeout=void 0,rg(this._terminal),this._initializeWebGLState(),this._requestRedrawViewport()})),this._observerDisposable.value=og(this._canvas,this._coreBrowserService.window,(e,t)=>this._setCanvasDevicePixelDimensions(e,t)),this._register(this._coreBrowserService.onWindowChange(e=>{this._observerDisposable.value=og(this._canvas,e,(e,t)=>this._setCanvasDevicePixelDimensions(e,t))})),this._core.screenElement.appendChild(this._canvas),[this._rectangleRenderer.value,this._glyphRenderer.value]=this._initializeWebGLState(),this._isAttached=this._core.screenElement.isConnected,this._register(lm(()=>{for(let e of this._renderLayers)e.dispose();this._canvas.parentElement?.removeChild(this._canvas),rg(this._terminal)}))}get textureAtlas(){return this._charAtlas?.pages[0].canvas}_handleColorChange(){this._refreshCharAtlas(),this._clearModel(!0)}handleDevicePixelRatioChange(){this._devicePixelRatio!==this._coreBrowserService.dpr&&(this._devicePixelRatio=this._coreBrowserService.dpr,this.handleResize(this._terminal.cols,this._terminal.rows))}handleResize(e,t){this._updateDimensions(),this._model.resize(this._terminal.cols,this._terminal.rows);for(let e of this._renderLayers)e.resize(this._terminal,this.dimensions);this._canvas.width=this.dimensions.device.canvas.width,this._canvas.height=this.dimensions.device.canvas.height,this._canvas.style.width=`${this.dimensions.css.canvas.width}px`,this._canvas.style.height=`${this.dimensions.css.canvas.height}px`,this._core.screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._core.screenElement.style.height=`${this.dimensions.css.canvas.height}px`,this._rectangleRenderer.value?.setDimensions(this.dimensions),this._rectangleRenderer.value?.handleResize(),this._glyphRenderer.value?.setDimensions(this.dimensions),this._glyphRenderer.value?.handleResize(),this._refreshCharAtlas(),this._clearModel(!1)}handleCharSizeChanged(){this.handleResize(this._terminal.cols,this._terminal.rows)}handleBlur(){for(let e of this._renderLayers)e.handleBlur(this._terminal);this._cursorBlinkStateManager.value?.pause(),this._requestRedrawViewport()}handleFocus(){for(let e of this._renderLayers)e.handleFocus(this._terminal);this._cursorBlinkStateManager.value?.resume(),this._requestRedrawViewport()}handleSelectionChanged(e,t,n){for(let r of this._renderLayers)r.handleSelectionChanged(this._terminal,e,t,n);this._model.selection.update(this._core,e,t,n),this._requestRedrawViewport()}handleCursorMove(){for(let e of this._renderLayers)e.handleCursorMove(this._terminal);this._cursorBlinkStateManager.value?.restartBlinkAnimation()}_handleOptionsChanged(){this._updateDimensions(),this._refreshCharAtlas(),this._updateCursorBlink()}_initializeWebGLState(){return this._rectangleRenderer.value=new Gg(this._terminal,this._gl,this.dimensions,this._themeService),this._glyphRenderer.value=new Cg(this._terminal,this._gl,this.dimensions,this._optionsService),this.handleCharSizeChanged(),[this._rectangleRenderer.value,this._glyphRenderer.value]}_refreshCharAtlas(){if(this.dimensions.device.char.width<=0&&this.dimensions.device.char.height<=0){this._isAttached=!1;return}let e=ng(this._terminal,this._optionsService.rawOptions,this._themeService.colors,this.dimensions.device.cell.width,this.dimensions.device.cell.height,this.dimensions.device.char.width,this.dimensions.device.char.height,this._coreBrowserService.dpr,this._deviceMaxTextureSize);this._charAtlas!==e&&(this._onChangeTextureAtlas.fire(e.pages[0].canvas),this._charAtlasDisposable.value=cm(Oh.forward(e.onAddTextureAtlasCanvas,this._onAddTextureAtlasCanvas),Oh.forward(e.onRemoveTextureAtlasCanvas,this._onRemoveTextureAtlasCanvas))),this._charAtlas=e,this._charAtlas.warmUp(),this._glyphRenderer.value?.setAtlas(this._charAtlas)}_clearModel(e){this._model.clear(),e&&this._glyphRenderer.value?.clear()}clearTextureAtlas(){this._charAtlas?.clearTexture(),this._clearModel(!0),this._requestRedrawViewport()}clear(){this._clearModel(!0);for(let e of this._renderLayers)e.reset(this._terminal);this._cursorBlinkStateManager.value?.restartBlinkAnimation(),this._updateCursorBlink()}renderRows(e,t){if(!this._isAttached)if(this._core.screenElement?.isConnected&&this._charSizeService.width&&this._charSizeService.height)this._updateDimensions(),this._refreshCharAtlas(),this._isAttached=!0;else return;for(let n of this._renderLayers)n.handleGridChanged(this._terminal,e,t);!this._glyphRenderer.value||!this._rectangleRenderer.value||(this._glyphRenderer.value.beginFrame()?(this._clearModel(!0),this._updateModel(0,this._terminal.rows-1)):this._updateModel(e,t),this._rectangleRenderer.value.renderBackgrounds(),this._glyphRenderer.value.render(this._model),(!this._cursorBlinkStateManager.value||this._cursorBlinkStateManager.value.isCursorVisible)&&this._rectangleRenderer.value.renderCursor())}_updateCursorBlink(){this._coreService.decPrivateModes.cursorBlink??this._terminal.options.cursorBlink?this._cursorBlinkStateManager.value=new ag(()=>{this._requestRedrawCursor()},this._coreBrowserService):this._cursorBlinkStateManager.clear(),this._requestRedrawCursor()}_updateModel(e,t){let n=this._core,r=this._workCell,i,a,o,s,c,l,u=0,d=!0,f,p,m,h,g,_,v,y,b;e=lv(e,n.rows-1,0),t=lv(t,n.rows-1,0);let x=this._coreService.decPrivateModes.cursorStyle??n.options.cursorStyle??`block`,S=this._terminal.buffer.active.baseY+this._terminal.buffer.active.cursorY,C=S-n.buffer.ydisp,w=Math.min(this._terminal.buffer.active.cursorX,n.cols-1),T=-1,E=this._coreService.isCursorInitialized&&!this._coreService.isCursorHidden&&(!this._cursorBlinkStateManager.value||this._cursorBlinkStateManager.value.isCursorVisible);this._model.cursor=void 0;let D=!1;for(a=e;a<=t;a++)for(o=a+n.buffer.ydisp,s=n.buffer.lines.get(o),this._model.lineLengths[a]=0,m=S===o,u=0,c=this._characterJoinerService.getJoinedCharacters(o),y=0;y<n.cols;y++){if(i=this._cellColorResolver.result.bg,s.loadCell(y,r),y===0&&(i=this._cellColorResolver.result.bg),l=!1,d=y>=u,f=y,c.length>0&&y===c[0][0]&&d){p=c.shift();let e=this._model.selection.isCellSelected(this._terminal,p[0],o);for(v=p[0]+1;v<p[1];v++)d&&=e===this._model.selection.isCellSelected(this._terminal,v,o);d&&=!m||w<p[0]||w>=p[1],d?(l=!0,r=new cv(r,s.translateToString(!0,p[0],p[1]),p[1]-p[0]),f=p[1]-1):u=p[1]}if(h=r.getChars(),g=r.getCode(),v=(a*n.cols+y)*Eg,this._cellColorResolver.resolve(r,y,o,this.dimensions.device.cell.width),E&&o===S&&(y===w&&(this._model.cursor={x:w,y:C,width:r.getWidth(),style:this._coreBrowserService.isFocused?x:n.options.cursorInactiveStyle,cursorWidth:n.options.cursorWidth,dpr:this._devicePixelRatio},T=w+r.getWidth()-1),y>=w&&y<=T&&(this._coreBrowserService.isFocused&&x===`block`||this._coreBrowserService.isFocused===!1&&n.options.cursorInactiveStyle===`block`)&&(this._cellColorResolver.result.fg=50331648|this._themeService.colors.cursorAccent.rgba>>8&16777215,this._cellColorResolver.result.bg=50331648|this._themeService.colors.cursor.rgba>>8&16777215)),g!==0&&(this._model.lineLengths[a]=y+1),!(this._model.cells[v]===g&&this._model.cells[v+Dg]===this._cellColorResolver.result.bg&&this._model.cells[v+Og]===this._cellColorResolver.result.fg&&this._model.cells[v+kg]===this._cellColorResolver.result.ext)&&(D=!0,h.length>1&&(g|=Ag),this._model.cells[v]=g,this._model.cells[v+Dg]=this._cellColorResolver.result.bg,this._model.cells[v+Og]=this._cellColorResolver.result.fg,this._model.cells[v+kg]=this._cellColorResolver.result.ext,_=r.getWidth(),this._glyphRenderer.value.updateCell(y,a,g,this._cellColorResolver.result.bg,this._cellColorResolver.result.fg,this._cellColorResolver.result.ext,h,_,i),l)){for(r=this._workCell,y++;y<=f;y++)b=(a*n.cols+y)*Eg,this._glyphRenderer.value.updateCell(y,a,0,0,0,0,xm,0,0),this._model.cells[b]=0,this._model.cells[b+Dg]=this._cellColorResolver.result.bg,this._model.cells[b+Og]=this._cellColorResolver.result.fg,this._model.cells[b+kg]=this._cellColorResolver.result.ext;y--}}D&&this._rectangleRenderer.value.updateBackgrounds(this._model),this._rectangleRenderer.value.updateCursor(this._model)}_updateDimensions(){!this._charSizeService.width||!this._charSizeService.height||(this.dimensions.device.char.width=Math.floor(this._charSizeService.width*this._devicePixelRatio),this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*this._devicePixelRatio),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.top=this._optionsService.rawOptions.lineHeight===1?0:Math.round((this.dimensions.device.cell.height-this.dimensions.device.char.height)/2),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.char.left=Math.floor(this._optionsService.rawOptions.letterSpacing/2),this.dimensions.device.canvas.height=this._terminal.rows*this.dimensions.device.cell.height,this.dimensions.device.canvas.width=this._terminal.cols*this.dimensions.device.cell.width,this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/this._devicePixelRatio),this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/this._devicePixelRatio),this.dimensions.css.cell.height=this.dimensions.device.cell.height/this._devicePixelRatio,this.dimensions.css.cell.width=this.dimensions.device.cell.width/this._devicePixelRatio)}_setCanvasDevicePixelDimensions(e,t){this._canvas.width===e&&this._canvas.height===t||(this._canvas.width=e,this._canvas.height=t,this._requestRedrawViewport())}_requestRedrawViewport(){this._onRequestRedraw.fire({start:0,end:this._terminal.rows-1})}_requestRedrawCursor(){let e=this._terminal.buffer.active.cursorY;this._onRequestRedraw.fire({start:e,end:e})}},cv=class extends bh{constructor(e,t,n){super(),this.content=0,this.combinedData=``,this.fg=e.fg,this.bg=e.bg,this.combinedData=t,this._width=n}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(e){throw Error(`not implemented`)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}};function lv(e,t,n=0){return Math.max(Math.min(e,t),n)}var uv=`di$target`,dv=`di$dependencies`,fv=new Map;function pv(e){if(fv.has(e))return fv.get(e);let t=function(e,n,r){if(arguments.length!==3)throw Error(`@IServiceName-decorator can only be used to decorate a parameter`);mv(t,e,r)};return t._id=e,fv.set(e,t),t}function mv(e,t,n){t[uv]===t?t[dv].push({id:e,index:n}):(t[dv]=[{id:e,index:n}],t[uv]=t)}pv(`BufferService`),pv(`CoreMouseService`),pv(`CoreService`),pv(`CharsetService`),pv(`InstantiationService`),pv(`LogService`);var hv=pv(`OptionsService`);pv(`OscLinkService`),pv(`UnicodeService`),pv(`DecorationService`);var gv={trace:0,debug:1,info:2,warn:3,error:4,off:5},_v=`xterm.js: `,vv=class extends fm{constructor(e){super(),this._optionsService=e,this._logLevel=5,this._updateLogLevel(),this._register(this._optionsService.onSpecificOptionChange(`logLevel`,()=>this._updateLogLevel())),yv=this}get logLevel(){return this._logLevel}_updateLogLevel(){this._logLevel=gv[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(e){for(let t=0;t<e.length;t++)typeof e[t]==`function`&&(e[t]=e[t]())}_log(e,t,n){this._evalLazyOptionalParams(n),e.call(console,(this._optionsService.options.logger?``:_v)+t,...n)}trace(e,...t){this._logLevel<=0&&this._log(this._optionsService.options.logger?.trace.bind(this._optionsService.options.logger)??console.log,e,t)}debug(e,...t){this._logLevel<=1&&this._log(this._optionsService.options.logger?.debug.bind(this._optionsService.options.logger)??console.log,e,t)}info(e,...t){this._logLevel<=2&&this._log(this._optionsService.options.logger?.info.bind(this._optionsService.options.logger)??console.info,e,t)}warn(e,...t){this._logLevel<=3&&this._log(this._optionsService.options.logger?.warn.bind(this._optionsService.options.logger)??console.warn,e,t)}error(e,...t){this._logLevel<=4&&this._log(this._optionsService.options.logger?.error.bind(this._optionsService.options.logger)??console.error,e,t)}};vv=Fp([Ip(0,hv)],vv);var yv,bv=class extends fm{constructor(e){if(ym&&bm()<16&&!document.createElement(`canvas`).getContext(`webgl2`,{antialias:!1,depth:!1,preserveDrawingBuffer:!0}))throw Error(`Webgl2 is only supported on Safari 16 and above`);super(),this._preserveDrawingBuffer=e,this._onChangeTextureAtlas=this._register(new Hh),this.onChangeTextureAtlas=this._onChangeTextureAtlas.event,this._onAddTextureAtlasCanvas=this._register(new Hh),this.onAddTextureAtlasCanvas=this._onAddTextureAtlasCanvas.event,this._onRemoveTextureAtlasCanvas=this._register(new Hh),this.onRemoveTextureAtlasCanvas=this._onRemoveTextureAtlasCanvas.event,this._onContextLoss=this._register(new Hh),this.onContextLoss=this._onContextLoss.event}activate(e){let t=e._core;if(!e.element){this._register(t.onWillOpen(()=>this.activate(e)));return}this._terminal=e;let n=t.coreService,r=t.optionsService,i=t,a=i._renderService,o=i._characterJoinerService,s=i._charSizeService,c=i._coreBrowserService,l=i._decorationService;i._logService;let u=i._themeService;this._renderer=this._register(new sv(e,o,s,c,n,l,r,u,this._preserveDrawingBuffer)),this._register(Oh.forward(this._renderer.onContextLoss,this._onContextLoss)),this._register(Oh.forward(this._renderer.onChangeTextureAtlas,this._onChangeTextureAtlas)),this._register(Oh.forward(this._renderer.onAddTextureAtlasCanvas,this._onAddTextureAtlasCanvas)),this._register(Oh.forward(this._renderer.onRemoveTextureAtlasCanvas,this._onRemoveTextureAtlasCanvas)),a.setRenderer(this._renderer),this._register(lm(()=>{if(this._terminal._core._store._isDisposed)return;let t=this._terminal._core._renderService;t.setRenderer(this._terminal._core._createRenderer()),t.handleResize(e.cols,e.rows)}))}get textureAtlas(){return this._renderer?.textureAtlas}clearTextureAtlas(){this._renderer?.clearTextureAtlas()}},xv={background:`#0d1117`,foreground:`#e6edf3`,cursor:`#e6edf3`,cursorAccent:`#0d1117`,selectionBackground:`rgba(88, 166, 255, 0.32)`,selectionInactiveBackground:`rgba(88, 166, 255, 0.22)`,black:`#484f58`,red:`#ff7b72`,green:`#7ee787`,yellow:`#d29922`,blue:`#58a6ff`,magenta:`#bc8cff`,cyan:`#39c5cf`,white:`#b1bac4`,brightBlack:`#6e7681`,brightRed:`#ffa198`,brightGreen:`#56d364`,brightYellow:`#e3b341`,brightBlue:`#79c0ff`,brightMagenta:`#d2a8ff`,brightCyan:`#56d4dd`,brightWhite:`#f0f6fc`,scrollbarSliderBackground:`rgba(139, 148, 158, 0.32)`,scrollbarSliderHoverBackground:`rgba(139, 148, 158, 0.44)`,scrollbarSliderActiveBackground:`rgba(139, 148, 158, 0.56)`};function Sv(){return typeof document<`u`&&document.body?.dataset.appearance===`dark`?xv:{...Gn,selectionInactiveBackground:Gn.selectionBackground,scrollbarSliderBackground:`rgba(87, 96, 106, 0.24)`,scrollbarSliderHoverBackground:`rgba(87, 96, 106, 0.34)`,scrollbarSliderActiveBackground:`rgba(87, 96, 106, 0.44)`}}function Cv(e){let t=Sv();e.options.theme=t,Tv(e,t),e.refresh?.(0,Math.max(0,e.rows-1))}function wv(e){e.querySelectorAll(`textarea`).forEach((e,t)=>{e.setAttribute(`name`,t===0?`farming-terminal-input`:`farming-terminal-input-${t+1}`),e.setAttribute(`autocomplete`,`off`),e.setAttribute(`autocorrect`,`off`),e.setAttribute(`autocapitalize`,`none`),e.setAttribute(`spellcheck`,`false`),e.setAttribute(`data-lpignore`,`true`),e.setAttribute(`data-1p-ignore`,`true`),e.setAttribute(`data-bwignore`,`true`),e.setAttribute(`data-form-type`,`other`)})}function Tv(e,t=Sv()){let n=Ov(e);if(!n)return;let r=t.background,i=t.foreground;wv(n),n.style.backgroundColor=r,n.style.color=i,n.querySelectorAll(`.xterm-screen, .xterm-viewport, .xterm-rows, .xterm-helper-textarea`).forEach(e=>{e.style.backgroundColor=r,e.style.color=i})}function Ev(e){if(typeof window>`u`)return()=>{};let t=()=>{Tv(e),e.refresh?.(0,Math.max(0,e.rows-1))},n=window.requestAnimationFrame(t),r=window.setTimeout(t,80);return()=>{window.cancelAnimationFrame(n),window.clearTimeout(r)}}function Dv(e){if(typeof document>`u`)return;let t=[];Cv(e);let n=new MutationObserver(()=>{Cv(e),t.push(Ev(e))});n.observe(document.body,{attributes:!0,attributeFilter:[`data-appearance`]});let r=e.dispose.bind(e);e.dispose=()=>{n.disconnect(),t.forEach(e=>e()),t.length=0,r()}}function Ov(e){return e.element instanceof HTMLElement?e.element:null}function kv(e){let t=Ov(e),n=t?.querySelector(`.xterm-screen`);return n instanceof HTMLElement?n:t}function Av(e){let t=kv(e);if(!t||e.cols<=0||e.rows<=0)return;let n=t.getBoundingClientRect();if(!(n.width<=0||n.height<=0))return{width:n.width/e.cols,height:n.height/e.rows}}function jv(e){return Math.max(0,e.buffer.active.viewportY)}function Mv(){return typeof document<`u`&&document.body?.dataset.appearance===`dark`?{matchBackground:`#3b3f1c`,matchBorder:`#8a7b24`,matchOverviewRuler:`#8a7b24`,activeMatchBackground:`#8a5a12`,activeMatchBorder:`#d29922`,activeMatchColorOverviewRuler:`#d29922`}:{matchBackground:`#fff4a3`,matchBorder:`#d4a72c`,matchOverviewRuler:`#d4a72c`,activeMatchBackground:`#ffd33d`,activeMatchBorder:`#9a6700`,activeMatchColorOverviewRuler:`#9a6700`}}function Nv(e,t){let n=e,r=e.open.bind(e),i=e.dispose.bind(e),a=e.scrollToLine.bind(e),o=e.scrollToBottom.bind(e),s=new Set,c=null,l=``,u=`pending`,d=null,f=null,p=e=>{u!==`failed`&&(u=`failed`,d=e,s.forEach(t=>t(e)))};return t.onDidChangeResults(e=>{c=e}),n.__farmingTerminalEngine=`xterm`,n.getRendererType=()=>u,n.onRendererFailure=e=>(s.add(e),d&&e(d),{dispose:()=>s.delete(e)}),n.open=t=>{r(t);let n=new bv;try{e.loadAddon(n)}catch(t){try{n.dispose()}catch{}let r=t instanceof Error?`: ${t.message}`:``,i=Error(`Terminal WebGL renderer failed to initialize${r}`);throw u=`failed`,d=i,e.dispose(),i}u=`webgl`,f=n.onContextLoss(()=>{p(Error(`Terminal WebGL context was lost; reopen the terminal to retry.`))})},n.dispose=()=>{f?.dispose(),f=null,s.clear(),i()},n.getScrollbackLength=()=>Math.max(0,e.buffer.active.baseY),n.getVisibleBufferBase=()=>jv(e),n.getCellMetrics=()=>Av(e),n.getScreenElement=()=>kv(e),n.getTerminalElement=()=>Ov(e),n.syncAppearanceTheme=()=>Cv(e),n.reattach=()=>{Ov(e)&&(Tv(e),e.refresh?.(0,Math.max(0,e.rows-1)))},n.forceRedraw=()=>{e.clearTextureAtlas(),Tv(e),e.refresh?.(0,Math.max(0,e.rows-1))},n.clearTerminalSelection=()=>e.clearSelection(),n.clearBuffer=()=>{e.write(`\x1B[2J\x1B[3J\x1B[H`),e.clearSelection()},n.selectAll=()=>e.selectAll(),n.search=(n,r=`next`,i={})=>{let a=n.trim();if(!a)return t.clearDecorations(),e.clearSelection(),c=null,l=``,{found:!1,resultIndex:0,resultCount:0};let o={caseSensitive:i.caseSensitive===!0,wholeWord:i.wholeWord===!0,regex:i.regex===!0,incremental:i.incremental===!0,decorations:Mv()},s=[o.caseSensitive,o.wholeWord,o.regex].join(`:`);l&&l!==s&&(t.clearDecorations(),e.clearSelection(),c=null),l=s;let u=!1;try{u=r===`previous`?t.findPrevious(a,o):t.findNext(a,o)}catch(n){if(o.regex)return t.clearDecorations(),e.clearSelection(),c=null,l=``,{found:!1,resultIndex:0,resultCount:0};throw n}return{found:u,resultIndex:c?.resultIndex,resultCount:c?.resultCount}},n.clearSearch=()=>{t.clearDecorations(),e.clearSelection(),c=null,l=``},n.scrollToLine=t=>{let n=Number.isFinite(t)?Math.max(0,t):0;a(Math.max(0,e.buffer.active.baseY-n))},n.scrollToBottom=()=>{Math.max(0,e.buffer.active.baseY),o()},n.wasmTerm={getCursor:()=>({x:e.buffer.active.cursorX,y:e.buffer.active.cursorY,visible:e.textarea?document.activeElement===e.textarea:!0})},Object.defineProperty(n,`viewportY`,{configurable:!0,get:()=>Math.max(0,e.buffer.active.baseY-jv(e)),set:t=>{let n=Number.isFinite(t)?Math.max(0,Number(t)):0;a(Math.max(0,e.buffer.active.baseY-n))}}),n}async function Pv(e){let t=new vd({allowProposedApi:!0,altClickMovesCursor:!1,cols:80,convertEol:!0,cursorBlink:!1,cursorInactiveStyle:`none`,cursorStyle:`block`,drawBoldTextInBrightColors:!1,fontFamily:Kn,fontSize:e?.fontSize??12,lineHeight:1.18,linkHandler:{allowNonHttpProtocols:!1,activate:(e,t)=>{window.open(t,`_blank`,`noopener,noreferrer`)}},macOptionClickForcesSelection:!0,minimumContrastRatio:4.5,rightClickSelectsWord:!1,rows:30,scrollback:5e3,scrollOnEraseInDisplay:!0,scrollOnUserInput:!0,smoothScrollDuration:0,theme:Sv(),wordSeparator:` ()[]{}'"\`─`,windowOptions:{getCellSizePixels:!0,getWinSizeChars:!0,getWinSizePixels:!0}}),n=new Mp({highlightLimit:2e3});return t.loadAddon(new of(void 0,y())),t.loadAddon(n),Dv(t),{terminal:Nv(t,n),fitAddon:new xd}}function Fv(e){return e.__farmingTerminalEngine===`xterm`}function Iv(){return typeof window>`u`?`xterm`:window.localStorage.getItem(`farmingTerminalEngine`)===`ghostty`?`ghostty`:`xterm`}async function Lv(e){if(Iv()===`ghostty`){let t=await Xn(e);return t?{terminal:t.terminal,fitAddon:t.fitAddon}:null}return await Pv(e)}var Rv=/(^|[\s"'`([{<])((?:\/|~\/|\.{1,2}\/)?[A-Za-z0-9_@.+~=-][^\s"'`<>{}()[\],;:]*(?:\/[^\s"'`<>{}()[\],;:]+)*):(\d+)(?::(\d+))?/g,zv=/(^|[\s"'`([{<])((?:\/|~\/|\.{1,2}\/)?[A-Za-z0-9_@.+~=-][^\s"'`<>{}()[\],;:]*(?:\/[^\s"'`<>{}()[\],;:]+)*)(?=$|[\s"'`)\]}>.,;:])/g,Bv=/\bhttps?:\/\/[^\s<>"'`]+/g,Vv=/^[A-Za-z0-9%/?#&=._~:+@!$'()*+,;-]+/,Hv=/^(?:[0-9A-Fa-f]{1,2})?%[0-9A-Fa-f]{2}|^[/?#&=._~:+@!$'()*+,;-]/,Uv=new Set([`Dockerfile`,`Gemfile`,`LICENSE`,`Makefile`,`README`]);function Wv(e){try{let t=new URL(e);return t.protocol===`http:`||t.protocol===`https:`}catch{return!1}}function Gv(e){let t=e.split(`/`).filter(Boolean).pop()||e;return e.includes(`/`)||t.includes(`.`)||Uv.has(t)||/^[A-Z][A-Za-z0-9_-]*file$/.test(t)}function Kv(e){return!e||e.includes(`://`)||e===`.`||e===`..`?!1:Gv(e)}function qv(e,t){for(Rv.lastIndex=0;;){let n=Rv.exec(e);if(!n)return null;let r=n[1]||``,i=n[2]||``,a=n[3]||``,o=n[4]||``,s=`${i}:${a}${o?`:${o}`:``}`,c=n.index+r.length,l=c+s.length;if(t<c||t>=l)continue;let u=i.replace(/^\.\/+/,``);if(!Kv(u))return null;let d=Number(a),f=o?Number(o):void 0;return!Number.isFinite(d)||d<=0||f!==void 0&&(!Number.isFinite(f)||f<=0)?null:{path:u,lineNumber:d,...f===void 0?{}:{column:f}}}}function Jv(e,t){for(zv.lastIndex=0;;){let n=zv.exec(e);if(!n)return null;let r=n[1]||``,i=n[2]||``,a=n.index+r.length,o=a+i.length;if(t<a||t>=o)continue;let s=i.replace(/^\.\/+/,``);return Kv(s)?{path:s}:null}}function Yv(e){let t=[];for(Rv.lastIndex=0;;){let n=Rv.exec(e);if(!n)break;let r=n[1]||``,i=n[2]||``,a=n[3]||``,o=n[4]||``,s=`${i}:${a}${o?`:${o}`:``}`,c=n.index+r.length,l=i.replace(/^\.\/+/,``),u=Number(a),d=o?Number(o):void 0;!Kv(l)||!Number.isFinite(u)||u<=0||d!==void 0&&(!Number.isFinite(d)||d<=0)||t.push({kind:`path`,startIndex:c,length:s.length,text:s,pathTarget:{path:l,lineNumber:u,...d===void 0?{}:{column:d}}})}for(zv.lastIndex=0;;){let n=zv.exec(e);if(!n)break;let r=n[1]||``,i=n[2]||``,a=n.index+r.length,o=i.replace(/^\.\/+/,``);Kv(o)&&(t.some(e=>Qv(a,i.length,e.startIndex,e.length))||t.push({kind:`path`,startIndex:a,length:i.length,text:i,pathTarget:{path:o}}))}return t}function Xv(e,t){return Yv(e).find(e=>t>=e.startIndex&&t<e.startIndex+e.length)??null}function Zv(e,t,n){if(!Number.isFinite(e)||!Number.isFinite(t)||!Number.isFinite(n)||t<=0||n<=0)return null;let r=Math.floor(e/t);return r>=0&&r<n?r:null}function Qv(e,t,n,r){let i=e+t;return e<n+r&&n<i}function $v(e){let t=e.trim();for(;/[.,;:!?]$/.test(t);)t=t.slice(0,-1);for(;;){let e=t[t.length-1];if(e!==`)`&&e!==`]`&&e!==`}`)break;let n=e===`)`?`(`:e===`]`?`[`:`{`,r=[...t].filter(e=>e===n).length;if([...t].filter(t=>t===e).length<=r)break;t=t.slice(0,-1)}return t}function ey(e){Bv.lastIndex=0;let t=null;for(;;){let n=Bv.exec(e);if(!n)break;let r=n[0]||``,i=n.index+r.length,a=$v(r);i===e.length&&Wv(a)&&(t={rawUrl:r,url:a})}return t}function ty(e){return e.rawUrl!==e.url}function ny(e,t){return e.length>=Math.max(20,t-2)}function ry(e){return/%[0-9A-Fa-f]?$/.test(e)||/[/?#&=._~:+@!$'()*+,;%-]$/.test(e)}function iy(e,t,n){return ny(e,n)||/%[0-9A-Fa-f]?$/.test(t)||ry(t)||/[?#=&/][A-Za-z0-9%._~:+@!$'()*+,;-]*$/.test(t)}function ay(e,t){let n=e.trimStart();if(!n||/^https?:\/\//i.test(n))return null;let r=Vv.exec(n)?.[0]||``;if(!r)return null;let i=n===r,a=/[?#=&/][A-Za-z0-9%._~:+@!$'()*+,;-]*$/.test(t);return Hv.test(r)||ry(t)||i&&a?{text:r,startCol:e.length-n.length}:null}function oy(e,t){for(Bv.lastIndex=0;;){let n=Bv.exec(e);if(!n)return null;let r=n[0]||``,i=n.index,a=i+r.length;if(t<i||t>=a)continue;let o=$v(r);return Wv(o)?o:null}}function sy(e){let t=[];for(Bv.lastIndex=0;;){let n=Bv.exec(e);if(!n)break;let r=$v(n[0]||``);Wv(r)&&t.push({kind:`url`,startIndex:n.index,length:r.length,text:r})}return t}function cy(e,t){let n=sy(e),r=t?Yv(e).filter(e=>!n.some(t=>Qv(e.startIndex,e.length,t.startIndex,t.length))):[];return[...n,...r].sort((e,t)=>e.startIndex-t.startIndex)}function ly(e,t){let n=Math.max(0,e.startIndex),r=Math.max(n,e.startIndex+e.length-1),i=t.startRow+Math.floor(n/t.cols),a=t.startRow+Math.floor(r/t.cols);return{start:{x:n%t.cols+1,y:i+1},end:{x:r%t.cols+1,y:a+1}}}function uy(e){let t={...e.start},n={...e.end};return t.y>n.y||t.y===n.y&&t.x>n.x?{start:n,end:t}:{start:t,end:n}}function dy(e){if(!e||(typeof e.getWidth==`function`?e.getWidth():1)===0)return``;if(typeof e.getChars==`function`)return e.getChars();let t=typeof e.getCode==`function`?e.getCode():0;return t>0?String.fromCodePoint(t):``}function fy(e){return!!(e&&typeof e.getWidth==`function`&&e.getWidth()===0)}function py(e,t,n){if(!e||typeof e.getCell!=`function`)return null;let r=``,i=Math.max(t,n);for(let n=Math.max(0,t);n<=i;n+=1){let t=e.getCell(n);t&&(r+=dy(t))}return r.trimEnd()}function my(e,t){if(typeof t.getLine!=`function`)return null;let{start:n,end:r}=uy(e),i=[];for(let e=n.y;e<=r.y;e+=1){let a=t.getLine(e),o=e===n.y?n.x:0,s=typeof a?.length==`number`?a.length-1:r.x,c=py(a,o,e===r.y?r.x:s);if(c===null)return null;let l=e===n.y||a?.isWrapped?``:`
150
+ `;i.push(`${l}${c}`)}return i.join(``)}function hy(e,t,n){if(!e.includes(`
151
+ `))return e;let{start:r}=uy(t),i=e.split(`
152
+ `);return i.length<=1?e:i.reduce((e,t,i)=>{if(i===0)return t;let a=r.y+i;return`${e}${n.getLine?.(a)?.isWrapped?``:`
153
+ `}${t}`},``)}function gy(e){let t=e.getSelection?.()||``,n=e.getSelectionPosition?.(),r=e.buffer?.active;if(!n||!r||typeof r.getLine!=`function`)return t;let i=my(n,r);return i===null?hy(t,n,r):i}function _y(e){if(!e.includes(`
154
+ `))return e;let t=$v(e.split(/\r?\n/).map((e,t)=>t===0?e.trimEnd():e.trim()).join(``));return Wv(t)?t:e}function vy(e){return e.length>0&&!/\s/u.test(e)}function yy(e,t,n){return Math.max(1,(t.row-e.row)*n+(t.col-e.col)+1)}function by(e){let t=e.getScrollbackLength?.();return Number.isFinite(t)?Math.max(0,Number(t)):0}function xy(e){let t=Number(e.viewportY||0);return Number.isFinite(t)?Math.max(0,t):0}function Sy(e){let t=e.getVisibleBufferBase?.();return Number.isFinite(t)?Math.max(0,Number(t)):xy(e)}function Cy(e){return xy(e.terminal)<=0}function wy(e){e.followOutputHandler?.({following:e.followOutput,hasUnreadOutput:e.hasUnreadOutput})}function Ty(e,t,n,r={}){e.preserveUnreadOutputUntilJump&&!n&&r.allowClearUnread!==!0&&(n=!0),!n&&r.allowClearUnread===!0&&(e.preserveUnreadOutputUntilJump=!1),!(e.followOutput===t&&e.hasUnreadOutput===n)&&(e.followOutput=t,e.hasUnreadOutput=n,wy(e))}function Ey(e){e.preserveUnreadOutputUntilJump=!0,Ty(e,!1,!0)}function Dy(e,t,n){let r=by(e),i=xy(e),a=Math.max(1,Math.floor((e.rows||n)*.9));return t===`PageUp`?Math.min(r,i+a):Math.max(0,i-a)}function Oy(e,t,n){let r=by(e)-n;return Math.max(0,t+r)}function ky(e,t){let n=Math.floor(Number(e)),r=Math.floor(Number(t));return!Number.isFinite(n)||!Number.isFinite(r)||n<40||r<10?null:{cols:n,rows:r}}function Ay(e,t){let n=e.getBoundingClientRect();if(n.width<=0||n.height<=0)return null;let r=t.proposeDimensions();return r?ky(r.cols,r.rows):null}function jy(e,t,n,r,i={}){let a=ky(t,n);return!a||!i.force&&e.lastNotifiedResize&&e.lastNotifiedResize.cols===a.cols&&e.lastNotifiedResize.rows===a.rows||r(a.cols,a.rows)===!1?!1:(e.lastNotifiedResize=a,e.resizeNotificationCount+=1,!0)}function My(e){e.lastNotifiedResize=null}function Ny(e,t,n={}){return n.force!==!0&&(e.cols!==t.cols||e.rows!==t.rows)}function Py(e,t){return!!(e&&t&&e.cols===t.cols&&e.rows===t.rows)}function Fy(e,t,n,r){let i=ky(t,n);return i?e.resizeRequestInFlight?(e.pendingResizeRequest=i,!0):r(i.cols,i.rows)===!1?!1:(e.resizeRequestInFlight=i,!0):!1}function Iy(e,t,n){let r=ky(t,n);if(!Py(e.resizeRequestInFlight,r))return{matched:!1,preserveLocalGeometry:e.resizeRequestInFlight!==null,next:null};let i=e.pendingResizeRequest;return e.resizeRequestInFlight=null,e.pendingResizeRequest=null,!i||Py(i,r)?{matched:!0,preserveLocalGeometry:!1,next:null}:{matched:!0,preserveLocalGeometry:!0,next:i}}function Ly(e){e.resizeRequestInFlight=null,e.pendingResizeRequest=null}function Ry(e){let t=e.pendingResizeRequest;return Ly(e),t}var zy=512;function By(e){if(Fv(e.terminal)){e.terminal.refresh?.(0,Math.max(0,(e.terminal.rows||1)-1));return}let{renderer:t,wasmTerm:n}=e.terminal;!t?.render||!n||(Vy(e),t.render(n,!0,e.terminal.viewportY||0,e.terminal))}function Vy(e){let t=e.terminal.renderer?.getCanvas?.()||e.hostEl.querySelector(`canvas`);if(!(t instanceof HTMLCanvasElement))return;let n=t.getContext(`2d`);n&&(n.save(),n.setTransform(1,0,0,1,0,0),n.fillStyle=Gn.background,n.fillRect(0,0,t.width,t.height),n.restore())}function Hy(e){return e===void 0?e:+(e>0)}function Uy(e){By(e),requestAnimationFrame(()=>{e.disposed||By(e)})}function Wy(e,t){let n=by(e.terminal),r=Math.max(0,Math.min(n,t));typeof e.terminal.scrollToLine==`function`?e.terminal.scrollToLine(r):e.terminal.viewportY=r,By(e)}function Gy(e,t){let n=by(e.terminal);Wy(e,n-Math.max(0,Math.min(n,t)))}function Ky(e,t={}){if(!e.disposed){if(by(e.terminal)<=0){By(e),Ty(e,!0,!1,t);return}typeof e.terminal.scrollToBottom==`function`?(e.terminal.scrollToBottom(),By(e)):Wy(e,0),Ty(e,!0,!1,t)}}function qy(e,t,n,r){e.disposed||(Wy(e,Oy(e.terminal,t,n)),Ty(e,!1,r))}function Jy(e,t,n){qy(e,t,n,!0),Ey(e)}function Yy(e,t,n,r,i){if(!e.disposed){if(r){Ky(e,{allowClearUnread:!e.preserveUnreadOutputUntilJump});return}qy(e,t,n,i)}}function Xy(e,t,n){e.terminal.write(t,n)}function Zy(e,t,n){return e.terminalWriteQueue=e.terminalWriteQueue.catch(()=>{}).then(()=>new Promise(r=>{let i=!1,a=(t=!1)=>i?!1:(i=!0,e.terminalWriteResolvers.delete(a),t&&n?.(),r(),!0);e.terminalWriteResolvers.add(a),t(a)})),e.terminalWriteQueue}function Qy(e){let t=Array.from(e.terminalWriteResolvers);e.terminalWriteResolvers.clear(),t.forEach(e=>e(!0))}function $y(e,t){e()&&t?.()}function eb(e,t,n){if(!t||e.disposed||!Fv(e.terminal)){n();return}if(Math.abs((e.terminal.cols||0)-t.cols)>1||t.y>=(e.terminal.rows||0)){n();return}e.terminal.write(`\x1b[${t.y+1};${t.x+1}H`,n)}function tb(e,t,n,r={}){if(!t){n?.();return}Zy(e,i=>{if(e.disposed){$y(i,n);return}let a=xy(e.terminal),o=by(e.terminal),s=e.followOutput,c=r.quiet===!0||t.length>=zy,l=r.isOutputObserved?.()??!0;c&&(e.suspendRendering=!0),Xy(e,t,()=>{if(e.disposed){$y(i,n);return}e.suspendRendering=!1,s?l?c?Ky(e,{allowClearUnread:!e.preserveUnreadOutputUntilJump}):Ty(e,!0,!1,{allowClearUnread:!e.preserveUnreadOutputUntilJump}):Ey(e):l?(Jy(e,a,o),requestAnimationFrame(()=>{e.disposed||(Jy(e,a,o),By(e))})):Ey(e),l&&By(e),$y(i,n)})},n)}function nb(e,t,n,r={}){Zy(e,i=>{if(e.disposed){$y(i,n);return}let a=xy(e.terminal),o=by(e.terminal),s=e.followOutput;if(e.suspendRendering=!0,e.terminal.reset(),!t){e.suspendRendering=!1,By(e),$y(i,n);return}Xy(e,t,()=>{if(e.disposed){$y(i,n);return}e.suspendRendering=!1,s?Ky(e,{allowClearUnread:!e.preserveUnreadOutputUntilJump}):Jy(e,a,o),!s&&o===by(e.terminal)&&By(e),eb(e,r.cursor??null,()=>{if(e.disposed){$y(i,n);return}By(e),$y(i,n)})})},n)}function rb(){let e=document.getElementById(`terminal-session-parking-lot`);return e||(e=document.createElement(`div`),e.id=`terminal-session-parking-lot`,e.setAttribute(`aria-hidden`,`true`),e.style.display=`none`,document.body.appendChild(e),e)}function ib(e){return!e.disposed&&e.attachedMount!==null&&e.hostEl.parentElement===e.attachedMount}function ab(e,t){return e.attachGeneration===t&&ib(e)}function ob(e){return e.attachGeneration+=1,e.attachGeneration}function sb(e,t,n){return e.disposed?!1:(n?.(),e.hostEl.parentElement===t?Array.from(t.children).forEach(t=>{t!==e.hostEl&&t.remove()}):t.replaceChildren(e.hostEl),e.attachedMount=t,!0)}function cb(e,t){return!(e.disposed||t&&e.attachedMount!==t||t&&e.hostEl.parentElement!==t)}function lb(e){return e.disposed?!1:(e.attachedMount=null,e.attachGeneration+=1,rb().appendChild(e.hostEl),!0)}function ub(e,t){let n=t.target;return n instanceof Node&&e.contains(n)}function db(e,t,n){return!n&&ub(e,t)}function fb(e,t,n){return n&&ub(e,t)}function pb(e){return e.session&&typeof e.session==`object`?e.session.renderOutput??e.session.output??``:typeof e.session==`string`?e.session:typeof e.renderOutput==`string`?e.renderOutput:e.output??``}function mb(e){let t=e.session&&typeof e.session==`object`?e.session.outputSeq:e.outputSeq,n=Number(t);return Number.isFinite(n)&&n>=0?n:null}function hb(e){let t=e.session&&typeof e.session==`object`?e.session.runtimeEpoch:e.runtimeEpoch;return typeof t==`string`?t:``}function gb(e){let t=e.session&&typeof e.session==`object`?e.session.stateRevision:e.stateRevision,n=Number(t);return Number.isFinite(n)&&n>=0?n:null}function _b(e){let t=Math.floor(Number(e));return Number.isFinite(t)&&t>0?t:null}function vb(e){let t=e.session&&typeof e.session==`object`?e.session:null;return{cols:_b(t?.previewCols??t?.cols??e.previewCols??e.cols),rows:_b(t?.previewRows??t?.rows??e.previewRows??e.rows)}}function yb(e){let t=pb(e),n=e.session&&typeof e.session==`object`?e.session.output??``:e.output??``,r=vb(e);return{runtimeEpoch:hb(e),output:t,textOutput:n,cursor:null,outputSeq:mb(e),stateRevision:gb(e),cols:r.cols,rows:r.rows}}var bb=5e3,xb=250,Sb=1500,Cb=FarmingTerminalReplay,wb=new Map,Tb=0,Eb=6,Db=520,Ob=.025,kb=3.2,Ab=.972,jb=90,Mb=.28,Nb=30,Pb=240,Fb=3e4;function Ib(){return oe()}function Lb(e,t){sb(e,t,()=>Jb(e.hostEl,t)),Kb(e)}function Rb(e){for(let t of wb.values())if(!(t instanceof Promise)&&t.hostEl===e)return t;return null}function zb(e){e.reconnectSnapshotSeq+=1,yx(e),e.bootstrapRequestControllers.forEach(e=>e.abort()),e.bootstrapRequestControllers.clear(),e.checkpointRequestInFlight=!1}function Bb(e){e.resizeDeliveryTimeout!==null&&(window.clearTimeout(e.resizeDeliveryTimeout),e.resizeDeliveryTimeout=null)}function Vb(e){e.fitResizeTimer!==null&&(window.clearTimeout(e.fitResizeTimer),e.fitResizeTimer=null),e.pendingFitResize=null}function Hb(e,t){e.fitResizeTimer!==null&&window.clearTimeout(e.fitResizeTimer),e.pendingFitResize=t,e.fitResizeTimer=window.setTimeout(()=>{e.fitResizeTimer=null;let t=e.pendingFitResize;e.pendingFitResize=null,!(!t||e.disposed)&&Jx(e,t.cols,t.rows)},xb)}function Ub(e){Vb(e),Bb(e),Ly(e)}function Wb(e){Bb(e),e.resizeDeliveryTimeout=window.setTimeout(()=>{e.resizeDeliveryTimeout=null;let t=Ry(e);!t||e.disposed||qx(e,t.cols,t.rows)},Sb)}function Gb(e){e.disposed||(e.parkedViewportState={viewportY:xy(e.terminal),scrollbackLength:by(e.terminal),following:e.followOutput,hasUnreadOutput:e.hasUnreadOutput,preserveUnreadOutputUntilJump:e.preserveUnreadOutputUntilJump,readingAnchor:vS(e)},zb(e),Ub(e),e.followOutputHandler=null,e.pathOpenHandler=null,e.pathResolveHandler=null,qb(e),XS(e),lb(e))}function Kb(e){e.disposed||!e.resizeObserver||e.resizeObserver.observe(e.hostEl)}function qb(e){e.resizeObserver?.disconnect()}function Jb(e,t){let n=t.closest(`.code-terminal-grid.panes-1`);n&&n.querySelectorAll(`.terminal-session-host`).forEach(t=>{if(t===e||!(t instanceof HTMLDivElement))return;let n=Rb(t);n?Gb(n):rb().appendChild(t)})}function Yb(e){let t=e.dataset.terminalFontSize,n=t?Number(t):NaN;return Number.isFinite(n)&&n>0?n:12}async function Xb(e,t){let n=await fetch(r(`/api/agents/${e}/session-view`),{signal:t});if(!n.ok)throw Error(`Terminal session view failed: ${n.status}`);return yb(await n.json())}async function Zb(e){let t=new AbortController;e.bootstrapRequestControllers.add(t);let n=window.setTimeout(()=>t.abort(new DOMException(`Terminal checkpoint request timed out`,`TimeoutError`)),bb);try{return await Xb(e.agentId,t.signal)}finally{window.clearTimeout(n),e.bootstrapRequestControllers.delete(t)}}function Qb(e,t){if(Fv(t))return t.focus(),!0;let n=e.querySelector(`textarea`);return n instanceof HTMLTextAreaElement?(px(e,t),n.focus(),!0):(t.focus(),!1)}function $b(e){return e.disposed||e.attachedMount===null?!1:(Tb+=1,Qb(e.hostEl,e.terminal))}function ex(e,t,n){if(e.disposed||e.attachedMount===null||Tb!==n)return!1;let r=document.activeElement;return r===document.body||t.contains(r)||e.hostEl.contains(r)}function tx(e){let t=document.activeElement;return document.querySelector(`.code-composer.menu-open, .code-composer-menu`)?!1:!(t instanceof Element)||t===document.body||e.contains(t)?!0:!t.closest([`.code-composer`,`.code-composer-menu`,`.code-context-menu`,`.input-dialog-overlay`,`.code-overlay-dialog`,`.code-file-editor`,`.code-files-section`,`input`,`textarea`,`select`,`[contenteditable="true"]`,`[role="dialog"]`,`[role="menu"]`].join(`,`))}function nx(e){return e instanceof Element?!!e.closest([`.code-composer`,`.code-terminal-search`,`.code-file-editor`,`.monaco-editor`,`input`,`textarea`,`select`,`[contenteditable="true"]`,`[role="dialog"]`,`[role="menu"]`].join(`,`)):!1}function rx(e,t){if(e.disposed||e.attachedMount===null)return!1;let n=t.target;if(n instanceof Node&&e.hostEl.contains(n))return!0;if(nx(n))return!1;let r=window.getSelection?.();if(!r||r.isCollapsed)return!0;let i=r.anchorNode,a=r.focusNode;return!!(i&&e.hostEl.contains(i)||a&&e.hostEl.contains(a))}function ix(e){return e.key.toLowerCase()!==`c`||e.altKey||e.shiftKey?!1:e.metaKey&&!e.ctrlKey?!0:!navigator.platform.toLowerCase().includes(`mac`)&&e.ctrlKey&&!e.metaKey}function ax(e,t){if(!ix(t)||e.disposed||e.attachedMount===null)return!1;let n=t.target;if(n instanceof Node&&e.hostEl.contains(n))return!0;if(nx(n))return!1;let r=window.getSelection?.();if(!r||r.isCollapsed)return!0;let i=r.anchorNode,a=r.focusNode;return!!(i&&e.hostEl.contains(i)||a&&e.hostEl.contains(a))}function ox(e){return e.key.toLowerCase()!==`k`||e.altKey||e.shiftKey||e.ctrlKey?!1:navigator.platform.toLowerCase().includes(`mac`)&&e.metaKey}function sx(e,t){if(!ox(t)||e.disposed||e.attachedMount===null)return!1;let n=t.target;return n instanceof Node&&e.hostEl.contains(n)}function cx(e,t){return sx(e,t)?(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),KS(e),!0):!1}function lx(e){return ib(e)}function ux(e){return lx(e)}function dx(e,t){if(t.type!==`keydown`||![`PageUp`,`PageDown`].includes(t.key)||e.disposed||e.attachedMount===null)return!1;let n=t.target;return n instanceof Node&&e.hostEl.contains(n)}function fx(e,t){if(!dx(e,t))return!1;t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation();let n=Dy(e.terminal,t.key===`PageUp`?`PageUp`:`PageDown`,10);return Wy(e,n),Ty(e,n<=0,n<=0?!1:e.hasUnreadOutput,{allowClearUnread:n<=0}),wy(e),!0}function px(e,t){let n=e.querySelector(`textarea`),r=t.renderer?.getMetrics?.(),i=t.wasmTerm?.getCursor?.();if(!(n instanceof HTMLTextAreaElement)||!r||!i)return;let a=Yb(e),o=Math.max(0,i.x*r.width),s=Math.max(0,i.y*r.height),c=Math.max(a+2,r.height),l=Math.max(r.width*8,120);n.classList.add(`terminal-ime-input`),n.style.position=`absolute`,n.style.left=`${o}px`,n.style.top=`${s}px`,n.style.width=`${l}px`,n.style.height=`${c}px`,n.style.lineHeight=`${c}px`,n.style.fontSize=`${a}px`,n.style.fontFamily=Kn,n.style.padding=`0`,n.style.margin=`0`,n.style.border=`0`,n.style.outline=`0`,n.style.background=`transparent`,n.style.clipPath=`none`,n.style.overflow=`hidden`,n.style.whiteSpace=`pre`,n.style.resize=`none`}function mx(e,t){return ab(e,t)}function hx(e,t=e.attachGeneration){if(!(e.fixtureOverrideActive||e.disposed||!e.pendingSnapshotReplay||!mx(e,t))){if(e.pendingSnapshotReplay=!1,!e.snapshotRuntimeEpoch||e.snapshotOutputSeq===null||e.snapshotStateRevision===null||e.snapshotCols===null||e.snapshotRows===null){Dx(e,t);return}Ex(e,{runtimeEpoch:e.snapshotRuntimeEpoch,output:e.snapshotOutput,textOutput:``,cursor:null,outputSeq:e.snapshotOutputSeq,stateRevision:e.snapshotStateRevision,cols:e.snapshotCols,rows:e.snapshotRows},t)}}function gx(e,t){if(!t||e.fixtureOverrideActive)return!1;let n=_x(t);return Cb.evaluateCheckpoint(e.replayState,n).action!==`install`||t.runtimeEpoch===e.snapshotRuntimeEpoch&&e.snapshotStateRevision!==null&&t.stateRevision<=e.snapshotStateRevision?!1:(e.snapshotOutput=t.output,e.snapshotRuntimeEpoch=t.runtimeEpoch,e.snapshotOutputSeq=t.outputSeq,e.snapshotStateRevision=t.stateRevision,e.snapshotCols=t.cols,e.snapshotRows=t.rows,e.pendingSnapshotReplay=!0,e.bootstrappingSnapshot=!0,e.needsReconnectOutputSync=!0,!0)}function _x(e){return{runtimeEpoch:e.runtimeEpoch,outputSeq:e.outputSeq,stateRevision:e.stateRevision,cols:e.cols,rows:e.rows}}function vx(e,t){Cb.queueTransition(e.replayState,t).queued||(e.needsReconnectOutputSync=!0,e.bootstrappingSnapshot=!0,Dx(e,e.attachGeneration))}function yx(e){e.checkpointRetryTimer!==null&&(window.clearTimeout(e.checkpointRetryTimer),e.checkpointRetryTimer=null)}function bx(e,t,n=e.attachGeneration){e.disposed||e.replayState.halted||e.checkpointRetryTimer!==null||(e.checkpointRetryTimer=window.setTimeout(()=>{e.checkpointRetryTimer=null,!(e.disposed||!mx(e,n))&&Dx(e,n)},t))}function xx(e,t,n){if(e.checkpointRequestInFlight=!1,e.needsReconnectOutputSync=!0,e.bootstrappingSnapshot=!0,t.halted){Sx(e,t.message);return}bx(e,t.delay,n)}function Sx(e,t){yx(e),e.checkpointRequestInFlight=!1,e.replayInProgress=!1,e.bootstrappingSnapshot=!1,e.pendingSnapshotReplay=!1,Cb.clearQueuedTransitions(e.replayState),e.hostEl.classList.add(`terminal-checkpoint-installing`),Wx(e,t)}function Cx(e,t){if(!(e.disposed||!mx(e,t)||e.replayInProgress||e.checkpointRequestInFlight||e.pendingSnapshotReplay||e.liveWriteInProgress)&&!(e.replayState.queuedTransitions.length>0&&(Ax(e),e.replayState.queuedTransitions.length>0||e.liveWriteInProgress||e.checkpointRequestInFlight))){if(e.needsReconnectOutputSync||Cb.isReplayTargetPending(e.replayState)){Dx(e,t);return}e.bootstrappingSnapshot=!1,Ub(e),requestAnimationFrame(()=>{!mx(e,t)||e.disposed||(e.hostEl.classList.remove(`terminal-checkpoint-installing`),Kx(e,{force:!0}),iC(e,t))})}}function wx(e){if(e.parkedViewportState)return{...e.parkedViewportState,hasUnreadOutput:e.parkedViewportState.hasUnreadOutput||e.hasUnreadOutput,preserveUnreadOutputUntilJump:e.parkedViewportState.preserveUnreadOutputUntilJump||e.preserveUnreadOutputUntilJump};let t=ne(ue(e.agentId,`terminal`)),n=t?.surface===`terminal`?t:vS(e);return{viewportY:xy(e.terminal),scrollbackLength:by(e.terminal),following:n?!1:e.followOutput,hasUnreadOutput:e.hasUnreadOutput,preserveUnreadOutputUntilJump:e.preserveUnreadOutputUntilJump,readingAnchor:n}}function Tx(e,t){if(e.followOutput=t.following,e.hasUnreadOutput=t.hasUnreadOutput,e.preserveUnreadOutputUntilJump=t.preserveUnreadOutputUntilJump,t.following){Yy(e,t.viewportY,t.scrollbackLength,!0,t.hasUnreadOutput);return}t.readingAnchor&&yS(e,t.readingAnchor)||(ae(ue(e.agentId,`terminal`)),Ky(e,{allowClearUnread:!0}))}function Ex(e,t,n){if(e.disposed||!mx(e,n))return!1;e.checkpointRequestInFlight=!1;let r=_x(t),i=Cb.evaluateCheckpoint(e.replayState,r);if(i.action===`reject`)return xx(e,Cb.recordInvariantFailure(e.replayState,i.signature||`invalid-checkpoint`,i.message||`Terminal replay returned an invalid screen state`),n),!1;if(i.action===`current`&&e.terminal.cols===t.cols&&e.terminal.rows===t.rows){let t=wx(e);return Cb.commitCheckpoint(e.replayState,r),e.needsReconnectOutputSync=!1,e.bootstrappingSnapshot=!1,Tx(e,t),Ax(e),Cx(e,n),!0}let a=e.reconnectSnapshotSeq+1;e.reconnectSnapshotSeq=a;let o=wx(e);if(e.replayInProgress=!0,e.bootstrappingSnapshot=!0,e.hostEl.classList.add(`terminal-checkpoint-installing`),e.terminal.cols!==t.cols||e.terminal.rows!==t.rows){e.applyingLocalResize=!0;try{e.terminal.resize?.(t.cols,t.rows)}finally{e.applyingLocalResize=!1}}return nb(e,t.output,()=>{e.disposed||!mx(e,n)||e.reconnectSnapshotSeq!==a||(Cb.commitCheckpoint(e.replayState,r),e.followOutput=o.following,e.hasUnreadOutput=o.hasUnreadOutput,e.preserveUnreadOutputUntilJump=o.preserveUnreadOutputUntilJump,Tx(e,o),e.replayInProgress=!1,e.needsReconnectOutputSync=!1,e.bootstrappingSnapshot=!1,Ix(e),Ax(e),Cx(e,n))}),!0}function Dx(e,t=e.attachGeneration){if(e.disposed||e.fixtureOverrideActive||e.pageOutputSuspended||e.checkpointRequestInFlight||e.checkpointRetryTimer!==null||e.replayInProgress||e.replayState.halted||!mx(e,t))return;Cb.beginRecovery(e.replayState);let n=e.reconnectSnapshotSeq+1;e.reconnectSnapshotSeq=n,e.checkpointRequestInFlight=!0,e.bootstrappingSnapshot=!0,e.needsReconnectOutputSync=!0,Zb(e).then(r=>{e.disposed||e.reconnectSnapshotSeq!==n||e.pageOutputSuspended||!mx(e,t)||(e.checkpointRequestInFlight=!1,Ex(e,r,t))}).catch(r=>{e.disposed||e.reconnectSnapshotSeq!==n||(xx(e,Cb.recordTransportFailure(e.replayState),t),r instanceof Error&&r.name!==`AbortError`&&console.warn(`Terminal replay request failed; retrying:`,r))})}function Ox(e,t,n,r,i=``,a,o,s,c=`output`){if(n){if(e.fixtureOverrideActive||e.pageOutputSuspended)return;zb(e),Ex(e,{runtimeEpoch:i,output:t,textOutput:``,cursor:null,outputSeq:Number.isFinite(r)?r:null,stateRevision:Number.isFinite(a)?a:null,cols:Number.isFinite(o)?o:null,rows:Number.isFinite(s)?s:null},e.attachGeneration);return}let l={kind:c,data:t,outputSeq:r,runtimeEpoch:i,stateRevision:a,cols:o,rows:s},u=Cb.classifyTransition(e.replayState,l);if(u.action===`drop`)return;if(u.action===`recover`){vx(e,l),e.needsReconnectOutputSync=!0,e.bootstrappingSnapshot=!0,Dx(e);return}if(c===`resize`){let t=Math.floor(o),n=Math.floor(s),r=Iy(e,t,n);if(r.matched&&Bb(e),!r.preserveLocalGeometry&&(e.terminal.cols!==t||e.terminal.rows!==n)){e.applyingLocalResize=!0;try{e.terminal.resize?.(t,n)}finally{e.applyingLocalResize=!1}}Cb.commitTransition(e.replayState,l),r.next&&qx(e,r.next.cols,r.next.rows),Ix(e),Ax(e),iC(e,e.attachGeneration);return}let d=c===`clear`?`\x1B[2J\x1B[3J\x1B[H`:t;if(!d){Cb.commitTransition(e.replayState,l),Ax(e);return}e.liveWriteInProgress=!0,tb(e,d,()=>{e.disposed||(Cb.commitTransition(e.replayState,l),c===`clear`&&e.terminal.clearTerminalSelection?.(),e.liveWriteInProgress=!1,e.followOutput&&!e.hasUnreadOutput&&wy(e),Ix(e),Ax(e),e.hostEl.classList.contains(`terminal-checkpoint-installing`)?Cx(e,e.attachGeneration):iC(e,e.attachGeneration))},{isOutputObserved:()=>lx(e)})}function kx(e,t,n,r,i=``,a,o,s,c=`output`){if(e.disposed||Date.now()<e.suppressOutputUntil)return;if(e.pageOutputSuspended||document.visibilityState===`hidden`){Cb.clearQueuedTransitions(e.replayState),Cb.beginRecovery(e.replayState,{kind:c,data:t,outputSeq:r,runtimeEpoch:i,stateRevision:a,cols:o,rows:s}),e.needsReconnectOutputSync=!0;return}let l=e.needsReconnectOutputSync||e.bootstrappingSnapshot||e.pendingSnapshotReplay||e.replayInProgress||e.checkpointRequestInFlight||e.replayState.recovering;if(e.liveWriteInProgress&&!l){vx(e,{kind:c,data:t,outputSeq:r,runtimeEpoch:i,stateRevision:a,cols:o,rows:s});return}if(l){if(n){Ox(e,t,!0,r,i,a,o,s,c);return}vx(e,{kind:c,data:t,outputSeq:r,runtimeEpoch:i,stateRevision:a,cols:o,rows:s}),e.bootstrappingSnapshot=!0,Dx(e);return}Ox(e,t,n,r,i,a,o,s,c)}function Ax(e){if(!(e.disposed||e.bootstrappingSnapshot||e.pendingSnapshotReplay||e.replayInProgress||e.checkpointRequestInFlight||e.liveWriteInProgress))for(;!e.bootstrappingSnapshot&&!e.replayInProgress&&!e.checkpointRequestInFlight&&!e.liveWriteInProgress;){let t=Cb.takeQueuedTransition(e.replayState);if(!t)break;Ox(e,t.data,!1,t.outputSeq,t.runtimeEpoch,t.stateRevision,t.cols,t.rows,t.kind)}}function jx(e){return e.terminal.getCellMetrics?.()??e.terminal.renderer?.getMetrics?.()}function Mx(e){let t=e.terminal.getScreenElement?.();if(t instanceof HTMLElement)return t.getBoundingClientRect();let n=e.terminal.renderer?.getCanvas?.()||e.hostEl.querySelector(`canvas`);return n instanceof HTMLCanvasElement?n.getBoundingClientRect():null}function Nx(e,t={}){let n=Cy(e);Ty(e,n,n?!1:e.hasUnreadOutput,{allowClearUnread:n&&t.allowClearUnread===!0})}function Px(e){Cb.clearQueuedTransitions(e.replayState),e.bootstrappingSnapshot=!1,e.pendingSnapshotReplay=!1}function Fx(e,t={}){e.followCheckFrame!==null&&cancelAnimationFrame(e.followCheckFrame),e.followCheckFrame=requestAnimationFrame(()=>{if(e.followCheckFrame=null,e.disposed||!lx(e))return;let n=Cy(e);Ty(e,n,n?!1:e.hasUnreadOutput,{allowClearUnread:n&&t.allowClearUnread===!0})})}function Ix(e){e.imeComposing&&requestAnimationFrame(()=>{!e.disposed&&e.imeComposing&&px(e.hostEl,e.terminal)})}function Lx(e){return Fv(e.terminal)?!1:e.imeComposing||e.suppressRendererCursor}function Rx(e,t=!0){let n=e.terminal.renderer;if(!e.disposed){if(e.hostEl.classList.toggle(`terminal-renderer-cursor-suppressed`,Lx(e)),!n){t&&By(e);return}Lx(e)?n.cursorVisible=!1:!e.imeComposing&&e.rendererCursorWasVisible!==void 0&&(n.cursorVisible=e.rendererCursorWasVisible,e.rendererCursorWasVisible=void 0),t&&By(e)}}function zx(e,t){if(e.suppressRendererCursor===t){e.hostEl.classList.toggle(`terminal-renderer-cursor-suppressed`,Lx(e));return}e.suppressRendererCursor=t,Rx(e)}function Bx(e,t){let n=e.terminal.renderer;if(!(e.disposed||!n)){if(t){e.imeComposing||(e.rendererCursorWasVisible=n.cursorVisible===void 0?void 0:!!n.cursorVisible),e.imeComposing=!0,Rx(e);return}if(e.imeComposing){if(e.imeComposing=!1,e.suppressRendererCursor){n.cursorVisible=!1,By(e);return}n.cursorVisible=e.rendererCursorWasVisible??!0,e.rendererCursorWasVisible=void 0,By(e)}}}function Vx(e){let t=e.terminal.renderer;if(!t?.render||e.originalRender)return;let n=t.render.bind(t);e.originalRender=n,t.render=(r,i,a,o,s)=>{let c=Hy(s);if(!e.suspendRendering){if(!Lx(e)){n(r,i,a,o,c);return}t.cursorVisible=!1,n(r,!0,a,o,c),t.cursorVisible=!1}}}function Hx(e){if(Fv(e.terminal))return;let t=e.hostEl.querySelector(`textarea`);if(!(t instanceof HTMLTextAreaElement))return;let n=()=>{e.disposed||px(e.hostEl,e.terminal)},r=()=>requestAnimationFrame(n),i=()=>{e.imeComposing&&r()},a=()=>{n(),e.hostEl.classList.add(`terminal-ime-active`),t.classList.add(`terminal-ime-composing`),Bx(e,!0)},o=()=>{Bx(e,!1),requestAnimationFrame(()=>{e.hostEl.classList.remove(`terminal-ime-active`),t.classList.remove(`terminal-ime-composing`),t.value=``,n()})},s=()=>{Bx(e,!1),e.hostEl.classList.remove(`terminal-ime-active`),t.classList.remove(`terminal-ime-composing`)},c=e=>{(e.isComposing||e.keyCode===229)&&a()};t.addEventListener(`focus`,n),e.hostEl.addEventListener(`keydown`,c,!0),e.hostEl.addEventListener(`compositionstart`,a,!0),e.hostEl.addEventListener(`compositionupdate`,n,!0),e.hostEl.addEventListener(`compositionend`,o,!0),t.addEventListener(`input`,i),t.addEventListener(`blur`,s),e.imeKeydownHandler=c;let l=e.terminal.onCursorMove?.(i),u=e.terminal.onKey?.(i);e.imeOverlayDisposables.push(()=>t.removeEventListener(`focus`,n),()=>e.hostEl.removeEventListener(`keydown`,c,!0),()=>e.hostEl.removeEventListener(`compositionstart`,a,!0),()=>e.hostEl.removeEventListener(`compositionupdate`,n,!0),()=>e.hostEl.removeEventListener(`compositionend`,o,!0),()=>t.removeEventListener(`input`,i),()=>t.removeEventListener(`blur`,s),s),l&&e.imeOverlayDisposables.push(()=>l.dispose()),u&&e.imeOverlayDisposables.push(()=>u.dispose()),n()}function Ux(e,t,n=12){if(mx(e,t)&&tx(e.hostEl)){if(e.replayInProgress||e.bootstrappingSnapshot||e.pendingSnapshotReplay){if(n<=0)return;requestAnimationFrame(()=>{Ux(e,t,n-1)});return}$b(e)||n<=0||requestAnimationFrame(()=>{Ux(e,t,n-1)})}}function Wx(e,t){e.errorHandler?.(Error(t))}function Gx(e,t){return e.disposed||e.attachedMount===null||e.inputDisabled||!Je({type:`input`,agentId:e.agentId,...Array.isArray(t)?{inputParts:t}:{input:t}})?!1:(e.fixtureOverrideActive=!1,e.inputCount+=1,e.contextMenuSelection=``,e.lastNonEmptySelection=``,!0)}function Kx(e,t={}){try{let n=Ay(e.hostEl,e.fitAddon);if(!n)return;let r={cols:e.terminal.cols||n.cols,rows:e.terminal.rows||n.rows};if(r.cols===n.cols&&r.rows===n.rows){Vb(e);return}if(Ny(r,n,t)){Hb(e,n);return}Vb(e),Jx(e,n.cols,n.rows,t)}catch{}}function qx(e,t,n){if(!lx(e)||e.replayInProgress||e.bootstrappingSnapshot||e.pageOutputSuspended)return!1;let r=e.resizeRequestInFlight!==null,i=Fy(e,t,n,(t,n)=>Je({type:`resize-agent`,agentId:e.agentId,cols:t,rows:n}));return i&&!r&&e.resizeRequestInFlight&&Wb(e),i}function Jx(e,t,n,r={}){!lx(e)||e.replayInProgress||e.bootstrappingSnapshot||jy(e,t,n,(t,n)=>{if(typeof e.terminal.resize!=`function`)return!1;if(e.terminal.cols!==t||e.terminal.rows!==n){e.applyingLocalResize=!0;try{e.terminal.resize(t,n)}finally{e.applyingLocalResize=!1}}return qx(e,t,n)},r)}function Yx(e){My(e),Ub(e),Cb.resetRecovery(e.replayState),Cb.beginRecovery(e.replayState),e.needsReconnectOutputSync=!0,!(e.disposed||e.pageOutputSuspended)&&(!e.attachedMount||e.hostEl.parentElement!==e.attachedMount||(zb(e),Dx(e,e.attachGeneration)))}function Xx(e){My(e),Ub(e),Cb.resetRecovery(e.replayState),Cb.beginRecovery(e.replayState),e.needsReconnectOutputSync=!0,!(e.disposed||e.pageOutputSuspended)&&(!e.attachedMount||e.hostEl.parentElement!==e.attachedMount||(zb(e),Dx(e,e.attachGeneration)))}function Zx(e,t){return Math.max(0,(typeof e?.length==`number`?e.length:t)-1)}function Qx(e,t,n){return dy(e.getLine(t)?.getCell?.(n))}function $x(e,t,n,r){if(n>0)return{row:t,col:n-1};let i=e.getLine(t);if(t<=0||!i?.isWrapped)return null;let a=e.getLine(t-1);return{row:t-1,col:Zx(a,r)}}function eS(e,t,n,r){if(n<Zx(e.getLine(t),r))return{row:t,col:n+1};let i=t+1;return e.getLine(i)?.isWrapped?{row:i,col:0}:null}function tS(e,t,n){let r=e.terminal.buffer?.active,i=e.terminal.cols||80;if(!r||typeof r.getLine!=`function`||typeof e.terminal.select!=`function`)return``;let a=Sy(e.terminal)+n;if(!vy(Qx(r,a,t)))return``;let o={row:a,col:t};for(;;){let e=$x(r,o.row,o.col,i);if(!e||!vy(Qx(r,e.row,e.col)))break;o=e}if(/^[#$%>]$/u.test(Qx(r,o.row,o.col))){let e=eS(r,o.row,o.col,i);e&&(o=e)}let s={row:a,col:t};for(;;){let e=eS(r,s.row,s.col,i);if(!e||!vy(Qx(r,e.row,e.col)))break;s=e}return e.terminal.select(o.col,o.row,yy(o,s,i)),e.cachedSelection=gy(e.terminal),e.cachedSelection}function nS(e,t,n){let r=e.terminal.buffer?.active,i=e.terminal.cols||80;if(!r||typeof e.terminal.select!=`function`)return``;let a=Sy(e.terminal),o={row:a+t.row,col:t.col},s={row:a+n.row,col:n.col},c=o.row<s.row||o.row===s.row&&o.col<=s.col?{start:o,end:s}:{start:s,end:o};return e.terminal.select(c.start.col,c.start.row,yy(c.start,c.end,i)),e.cachedSelection=gy(e.terminal),e.cachedSelection}function rS(e){let t=e.terminal.buffer?.active,n=e.terminal.cols||80;if(!t||typeof t.getLine!=`function`||typeof e.terminal.select!=`function`)return``;let r=typeof t.length==`number`?t.length:Sy(e.terminal)+(e.terminal.rows||1),i=Math.max(0,r-1),a=Zx(t.getLine(i),n);return e.terminal.select(0,0,yy({row:0,col:0},{row:i,col:a},n)),e.cachedSelection=gy(e.terminal),e.cachedSelection}function iS(e,t){let n=jx(e),r=Mx(e);return!n||!r||t.clientX<r.left||t.clientX>r.right||t.clientY<r.top||t.clientY>r.bottom?null:{col:Math.max(0,Math.min(Math.floor((t.clientX-r.left)/n.width),(e.terminal.cols||1)-1)),row:Math.max(0,Math.min(Math.floor((t.clientY-r.top)/n.height),(e.terminal.rows||1)-1))}}function aS(e,t,n,r=!0){let i=e.getLine(t);if(!i||typeof i.getCell!=`function`)return``;let a=Math.max(0,typeof i.length==`number`?i.length:n),o=``;for(let e=0;e<a;e+=1)o+=dy(i.getCell(e))||` `;return r?o.trimEnd():o}function oS(e){return e.button===0&&(e.ctrlKey||e.metaKey)}function sS(e){return e.ctrlKey||e.metaKey}function cS(e,t){return sS(t)||e.openModifierActive}function lS(e,t){if(!e.decorations){e.decorations=t;return}e.decorations.pointerCursor=t.pointerCursor,e.decorations.underline=t.underline}function uS(e){return[e.path,e.lineNumber??``,e.column??``,e.endColumn??``].join(`\0`)}async function dS(e,t){if(!e.pathResolveHandler)return t;let n=uS(t),r=e.pathResolveCache.get(n);if(r&&Date.now()-r.resolvedAt<=Fb)return r.promise?await r.promise:r.target;let i=Promise.resolve(e.pathResolveHandler(e.agentId,t)).catch(()=>null);e.pathResolveCache.set(n,{resolvedAt:Date.now(),target:null,promise:i});let a=await i;return e.pathResolveCache.set(n,{resolvedAt:Date.now(),target:a}),a}async function fS(e,t){return e.pathResolveHandler?(await Promise.all(t.map(async t=>{if(t.kind!==`path`||!t.pathTarget)return t;let n=await dS(e,t.pathTarget);return n?{...t,pathTarget:n}:null}))).filter(e=>!!e):t}function pS(e,t){if(!e.pathResolveHandler||t.kind!==`path`||!t.pathTarget)return t;let n=e.pathResolveCache.get(uS(t.pathTarget));return!n||n.promise||Date.now()-n.resolvedAt>Fb?null:n.target?{...t,pathTarget:n.target}:null}function mS(e){if(!Fv(e.terminal)||typeof e.terminal.registerLinkProvider!=`function`)return;let t=e.terminal.registerLinkProvider({provideLinks:(t,n)=>{if(e.disposed){n(void 0);return}let r=gS(e,t-1);if(!r?.text){n(void 0);return}let i=cy(r.text,!!e.pathOpenHandler);if(i.length===0){n(void 0);return}(async()=>{let t=await fS(e,i);if(e.disposed){n(void 0);return}if(t.length===0){n(void 0);return}n(t.map(t=>{let n=t.kind===`path`&&!!(t.pathTarget&&e.pathOpenHandler),i={range:ly(t,r),text:t.text,decorations:{pointerCursor:n,underline:n||t.kind===`url`},activate:r=>{if(r.button!==0)return;let i=cS(e,r);lx(e)&&(t.kind===`url`&&!i||t.kind===`path`&&!n||(r.preventDefault(),r.stopPropagation(),r.stopImmediatePropagation(),t.kind===`url`?NS(t.text):t.pathTarget&&e.pathOpenHandler&&e.pathOpenHandler(e.agentId,t.pathTarget),e.suppressClickUntil=Date.now()+250))},hover:r=>{if(!ux(e)||Ib())return;e.linkProviderHoverTarget={kind:t.kind,text:t.text,...t.pathTarget?{pathTarget:t.pathTarget}:{}},e.lastLinkHoverEvent=r;let a=n||cS(e,r);lS(i,{pointerCursor:a,underline:n||t.kind===`url`||a}),zS(e,a)},leave:()=>{e.linkProviderHoverTarget?.text===t.text&&(e.linkProviderHoverTarget=null),lS(i,{pointerCursor:n,underline:n||t.kind===`url`}),IS(e)},dispose:()=>{e.linkProviderHoverTarget?.text===t.text&&(e.linkProviderHoverTarget=null)}};return i}))})()}});e.linkProviderDisposable=()=>t.dispose()}function hS(e,t){let n=e.terminal.buffer?.active;if(!t||!n||typeof n.getLine!=`function`)return null;let r=Sy(e.terminal)+t.row,i=e.terminal.cols||80,a=r;for(;a>0&&n.getLine(a)?.isWrapped;)--a;let o=r;for(;n.getLine(o+1)?.isWrapped;)o+=1;let s=[];for(let e=a;e<=o;e+=1)s.push(aS(n,e,i,e===o));let c=(r-a)*i+t.col;return{text:s.join(``).trimEnd(),col:c,startRow:a,endRow:o,bufferRow:r,cols:i,buffer:n}}function gS(e,t){let n=e.terminal.buffer?.active;if(!n||typeof n.getLine!=`function`||!Number.isFinite(t)||t<0)return null;let r=e.terminal.cols||80,i=t;for(;i>0&&n.getLine(i)?.isWrapped;)--i;let a=t;for(;n.getLine(a+1)?.isWrapped;)a+=1;let o=[];for(let e=i;e<=a;e+=1)o.push(aS(n,e,r,e===a));return{text:o.join(``).trimEnd(),col:0,startRow:i,endRow:a,bufferRow:t,cols:r,buffer:n}}var _S=3;function vS(e){let t=ue(e.agentId,`terminal`);if(e.followOutput)return ae(t),null;let n=Sy(e.terminal),r=gS(e,n);if(!r)return null;let i=[],a=r.startRow;for(let t=0;t<_S;t+=1){let t=gS(e,a);if(!t)break;i.push(t.text),a=t.endRow+1}if(i.length===0)return null;let o={version:1,surface:`terminal`,resource:{kind:`agent`,id:e.agentId},locator:{kind:`terminal-lines`,id:z(i),lineCount:i.length},position:{unit:`row`,value:Math.max(0,n-r.startRow)}};return B(o),o}function yS(e,t){let n=e.terminal.buffer?.active;if(!n||typeof n.getLine!=`function`)return!1;let r=Math.max(0,by(e.terminal)+Math.max(1,e.terminal.rows||1)),i=Math.max(1,t.locator.lineCount||1),a=null,o=1/0;for(let n=0;n<=r;){let r=gS(e,n);if(!r){n+=1;continue}let s=[r.text],c=r.endRow+1;for(let t=1;t<i;t+=1){let t=gS(e,c);if(!t)break;s.push(t.text),c=t.endRow+1}if(s.length===i&&z(s)===t.locator.id){let t=Math.abs(r.startRow-Sy(e.terminal));t<o&&(a=r,o=t)}n=Math.max(n+1,r.endRow+1)}return a?(Gy(e,Math.min(a.endRow,a.startRow+Math.max(0,t.position.value))),Ty(e,!1,e.hasUnreadOutput),!0):!1}function bS(e,t){let n=hS(e,t);return n?{text:n.text,col:n.col}:null}function xS(e,t){let n=document.elementFromPoint(t.clientX,t.clientY);if(!(n instanceof HTMLElement))return null;let r=n.closest(`.xterm-rows > div`);if(!r||!e.hostEl.contains(r))return null;let i=jx(e),a=r.getBoundingClientRect();if(!i||i.width<=0||a.width<=0)return null;let o=(r.textContent||``).trimEnd();if(!o)return null;let s=Zv(t.clientX-a.left,i.width,o.length);return s===null?null:{text:o,col:s}}function SS(e,t,n){let r=t;for(;r>0&&e.getLine(r)?.isWrapped;)--r;let i=[];for(let a=r;a<=t;a+=1)i.push({row:a,text:aS(e,a,n,a===t),startCol:0});return{startRow:r,endRow:t,text:i.map(e=>e.text).join(``).trimEnd(),lastPhysicalText:i[i.length-1]?.text??``,segments:i}}function CS(e,t,n){let r=``,i=-1;for(let a of e){if(a.row===t){let e=n-a.startCol;e>=0&&e<a.text.length&&(i=r.length+e)}r+=a.text}return i>=0?{text:r,col:i}:null}function wS(e,t){let n=hS(e,t);if(!n)return null;let{buffer:r,bufferRow:i,cols:a}=n,o=[];for(let e=n.startRow;e<=n.endRow;e+=1)o.push({row:e,text:aS(r,e,a,e===n.endRow),startCol:0});for(;;){let e=o[0];if(!e||e.row<=0)break;let t=SS(r,e.row-1,a),n=ey(t.text),i=n?ay(e.text,n.rawUrl):null;if(!n||ty(n)||!i||!iy(t.lastPhysicalText,n.rawUrl,a))break;e.text=i.text,e.startCol=i.startCol,o.unshift(...t.segments)}for(;;){let e=o[o.length-1];if(!e)break;let t=ey(o.map(e=>e.text).join(``));if(!t||ty(t)||!iy(e.text,t.rawUrl,a)||!r.getLine(e.row+1))break;let n=ay(aS(r,e.row+1,a),t.rawUrl);if(!n)break;o.push({row:e.row+1,text:n.text,startCol:n.startCol})}return CS(o,i,t.col)}function TS(e,t){let n=iS(e,t);if(n){let t=bS(e,n),r=t?Xv(t.text,t.col):null;if(r)return r}let r=xS(e,t);return r?Xv(r.text,r.col):null}function ES(e,t){let n=TS(e,t);return n?pS(e,n):null}function DS(e,t){return ES(e,t)?.pathTarget??null}function OS(e,t){let n=iS(e,t);if(n){let t=wS(e,n),r=t?oy(t.text,t.col):null;if(r)return r}let r=xS(e,t);return r?oy(r.text,r.col):null}function kS(e){return _y(e.terminal.getSelection()||``)}function AS(e,t){return(Fv(e.terminal)?kS(e):_y(gy(e.terminal)))||(!Fv(e.terminal)&&t?.includeNativeFallback?_y(MS(e.hostEl)):``)}function jS(e,t){let n=e.terminal.getSelectionPosition?.();if(!n||!e.terminal.getSelection?.())return!1;let r=iS(e,t);if(!r)return!1;let{start:i,end:a}=uy(n),o={x:r.col,y:Sy(e.terminal)+r.row};return!(o.y<i.y||o.y>a.y||o.y===i.y&&o.x<i.x||o.y===a.y&&o.x>a.x)}function MS(e){let t=window.getSelection?.();if(!t||t.isCollapsed)return``;let n=t.anchorNode,r=t.focusNode;return n&&!e.contains(n)||r&&!e.contains(r)?``:t.toString()}function NS(e){window.open(e,`_blank`,`noopener,noreferrer`)}function PS(e){let t=navigator.platform.toLowerCase().includes(`mac`)?`Cmd`:`Ctrl`;return(document.documentElement.lang||navigator.language||``).toLowerCase().startsWith(`zh`)?e===`url`?`按住 ${t} 点击打开链接`:`点击打开文件或文件夹`:e===`url`?`${t}-click to open link`:`Click to open file or folder`}function FS(e,t){e.hostEl.classList.toggle(`terminal-open-target-hover`,t!==null),e.hostEl.classList.toggle(`terminal-open-target-url`,t===`url`),e.hostEl.classList.toggle(`terminal-open-target-path`,t===`path`),t?(e.hostEl.dataset.terminalOpenTarget=t,e.hostEl.title=PS(t)):(delete e.hostEl.dataset.terminalOpenTarget,e.hostEl.removeAttribute(`title`))}function IS(e){e.openModifierActive=!1,e.lastLinkHoverEvent=null,e.linkProviderHoverTarget=null,FS(e,null)}function LS(e,t,n=cS(e,t)){return e.pathOpenHandler&&DS(e,t)?`path`:n&&OS(e,t)?`url`:null}async function RS(e,t){if(!e.pathOpenHandler)return null;let n=TS(e,t);if(!n?.pathTarget)return null;let r=await dS(e,n.pathTarget);return r?{...n,pathTarget:r}:null}function zS(e,t){if(!ux(e)||Ib()){FS(e,null);return}let n=e.linkProviderHoverTarget,r=t??e.openModifierActive;if(n){FS(e,n.kind===`path`||r?n.kind:null);return}if(!e.lastLinkHoverEvent){FS(e,null);return}FS(e,LS(e,e.lastLinkHoverEvent,r))}function BS(e){e.contextMenuCleanup?.(),e.contextMenuCleanup=null,e.contextMenuEl?.remove(),e.contextMenuEl=null,e.contextMenuSelection=``}function VS(e){let t=(document.documentElement.lang||navigator.language||``).toLowerCase().startsWith(`zh`);return e===`copy`?t?`复制`:`Copy`:e===`paste`?t?`粘贴`:`Paste`:e===`clear`?t?`清除`:`Clear`:t?`全选`:`Select All`}function HS(e,t,n=160,r=148){return{x:Math.max(8,Math.min(e,window.innerWidth-n-8)),y:Math.max(8,Math.min(t,window.innerHeight-r-8))}}function US(e){e.querySelector(`button:not(:disabled)`)?.focus()}function WS(e,t,n={}){let r=document.createElement(`button`);return r.type=`button`,r.className=`terminal-context-menu-item`,r.setAttribute(`role`,`menuitem`),r.textContent=e,r.disabled=n.disabled===!0,r.addEventListener(`click`,()=>{r.disabled||t()}),r}function GS(e,t){return!(!t||e.disposed||e.attachedMount===null||(Ky(e,{allowClearUnread:!0}),!Gx(e,t)))}function KS(e){e.disposed||e.attachedMount===null||(YS(e),e.contextMenuSelection=``,e.lastNonEmptySelection=``,e.terminal.clearSearch?.(),Ty(e,!0,!1,{allowClearUnread:!0}),Je({type:`clear-terminal`,agentId:e.agentId}))}function qS(e,t,n){BS(e);let r=HS(t.clientX,t.clientY),i=document.createElement(`div`);i.className=`terminal-context-menu terminal-context-menu-pooled`,i.setAttribute(`data-testid`,`code-terminal-context-menu`),i.setAttribute(`role`,`menu`),i.style.left=`${r.x}px`,i.style.top=`${r.y}px`;let a=WS(VS(`copy`),()=>{let t=Tb;F(n).finally(()=>{let n=ex(e,i,t);BS(e),!Ib()&&n&&$b(e)})},{disabled:!n}),o=WS(VS(`paste`),()=>{let t=Tb;N().then(t=>{GS(e,t)}).finally(()=>{let n=ex(e,i,t);BS(e),!Ib()&&n&&$b(e)})}),s=WS(VS(`selectAll`),()=>{BS(e),YS(e),requestAnimationFrame(()=>{if(e.disposed)return;let t=rS(e);e.contextMenuSelection=t,e.lastNonEmptySelection=t||e.lastNonEmptySelection,Ib()||$b(e)})},{disabled:typeof e.terminal.select!=`function`||!e.terminal.buffer?.active}),c=WS(VS(`clear`),()=>{BS(e),KS(e),Ib()||$b(e)});i.addEventListener(`mousedown`,e=>e.stopPropagation()),i.addEventListener(`pointerdown`,e=>e.stopPropagation()),i.addEventListener(`keydown`,e=>{if(!(e.target instanceof HTMLButtonElement)||e.key!==`ArrowDown`&&e.key!==`ArrowUp`)return;let t=Array.from(i.querySelectorAll(`button:not(:disabled)`)),n=t.indexOf(e.target);n<0||t.length===0||(e.preventDefault(),t[(n+(e.key===`ArrowDown`?1:-1)+t.length)%t.length]?.focus())}),i.appendChild(a),i.appendChild(o),i.appendChild(s),i.appendChild(c),document.body.appendChild(i),e.contextMenuEl=i;let l=t=>{let n=t.target;n instanceof Node&&i.contains(n)||BS(e)},u=t=>{t.key===`Escape`&&(t.preventDefault(),BS(e),Ib()||$b(e))},d=()=>BS(e);document.addEventListener(`mousedown`,l,!0),document.addEventListener(`pointerdown`,l,!0),document.addEventListener(`keydown`,u,!0),window.addEventListener(`resize`,d),window.addEventListener(`scroll`,d,!0),e.contextMenuCleanup=()=>{document.removeEventListener(`mousedown`,l,!0),document.removeEventListener(`pointerdown`,l,!0),document.removeEventListener(`keydown`,u,!0),window.removeEventListener(`resize`,d),window.removeEventListener(`scroll`,d,!0)},requestAnimationFrame(()=>US(i))}function JS(e){let t=window.getSelection?.();if(!t||t.rangeCount===0)return;let n=t.anchorNode,r=t.focusNode;n&&!e.contains(n)||r&&!e.contains(r)||t.removeAllRanges()}function YS(e){e.cachedSelection=``,e.contextMenuSelection=``,e.lastNonEmptySelection=``,e.dragSelection=null,e.terminal.clearTerminalSelection?.(),JS(e.hostEl)}function XS(e){BS(e),IS(e),YS(e)}function ZS(e){XS(e),Fv(e.terminal)&&(e.terminal.reattach?.(),e.terminal.syncAppearanceTheme?.(),e.terminal.forceRedraw?.()),Uy(e),requestAnimationFrame(()=>{e.disposed||e.attachedMount===null||(Fv(e.terminal)&&e.terminal.forceRedraw?.(),By(e))})}function QS(e,t){let n=AS(e)||e.contextMenuSelection||e.lastNonEmptySelection,r=OS(e,t),i=e.pathOpenHandler?ES(e,t):null,a=!!n&&jS(e,t),o=n.replace(/\s+/g,``);if(r&&(!a||r.includes(o)))return r;if(i?.text&&(!a||i.text.includes(o)))return i.text;if(n)return n;let s=iS(e,t);return s?tS(e,s.col,s.row):``}function $S(e,t){let n=n=>{if(!(n.target instanceof Node)||!e.hostEl.contains(n.target))return;let r=e.pathOpenHandler?TS(e,n):null;if(r?.pathTarget){n.preventDefault(),n.stopPropagation(),n.stopImmediatePropagation(),dS(e,r.pathTarget).then(t=>{if(!e.disposed){if(t){qS(e,n,r.text);return}qS(e,n,QS(e,n))}});return}if(e.pathOpenHandler&&oS(n)){let r=DS(e,n);if(r){n.preventDefault(),n.stopPropagation(),n.stopImmediatePropagation(),e.pathOpenHandler(t,r);return}}let i=QS(e,n);n.preventDefault(),n.stopPropagation(),n.stopImmediatePropagation(),qS(e,n,i)},r=t=>{if(!(!(t.target instanceof Node)||!e.hostEl.contains(t.target))){if(t.button===0){e.contextMenuSelection=``,e.lastNonEmptySelection=``;return}t.button===2&&(e.contextMenuSelection=AS(e)||_y(e.cachedSelection)||e.lastNonEmptySelection)}};window.addEventListener(`mousedown`,r,!0),window.addEventListener(`contextmenu`,n,!0),e.hostEl.addEventListener(`mousedown`,r,!0),e.hostEl.addEventListener(`contextmenu`,n,!0),e.contextMenuMouseDownHandler=r,e.contextMenuHandler=n}function eC(e){let t=null,n=0,r=0,i=0,a=0,o=0,s=0,c=!1,l=null,u=0,d=[],f=0,p=null,m=null,h=null,g=e=>Math.max(-kb,Math.min(kb,e)),_=()=>{m!==null&&(window.clearTimeout(m),m=null),h=null},v=()=>e.hostEl.querySelector(`.xterm-screen`),y=()=>{p!==null&&(window.clearTimeout(p),p=null)},b=(e,t=!1)=>{let n=v();f=e,n&&(y(),n.style.transition=t?`transform ${Pb}ms cubic-bezier(0.22, 0.75, 0.28, 1)`:`none`,n.style.transform=e===0?``:`translate3d(0, ${e}px, 0)`,t&&(p=window.setTimeout(()=>{n.style.transition=``,n.style.transform=``,p=null},Pb)))},x=e=>{b(Math.max(-Nb,Math.min(Nb,f+e*Mb)))},S=(e=!0)=>{f===0&&p===null||b(0,e)},C=(e,t)=>{d.push({y:e,at:t});let n=t-jb;for(;d.length>2&&d[0].at<n;)d.shift()},w=()=>{let e=d[0],t=d[d.length-1];return!e||!t||t.at<=e.at?o:g((t.y-e.y)/(t.at-e.at))},T=()=>{let t=h;if(_(),!t||e.disposed||c)return;let n=QS(e,t);n&&qS(e,t,n)},E=t=>{let n=Math.max(8,jx(e)?.height||16);s+=t;let r=Math.trunc(s/n);if(r===0)return!1;s-=r*n;let i=xy(e.terminal);Wy(e,i+r);let a=xy(e.terminal)!==i;return a&&(Nx(e,{allowClearUnread:!0}),BS(e)),a},D=()=>{l!==null&&(window.cancelAnimationFrame(l),l=null),u=0,o=0,s=0},O=t=>{if(e.disposed){l=null;return}let n=u===0?16:Math.min(48,Math.max(1,t-u));u=t;let r=o*n,i=E(r);if(o*=Ab**(n/16),!i||Math.abs(o)<Ob){i||x(r),D(),S();return}l=window.requestAnimationFrame(O)},k=()=>{if(Math.abs(o)<Ob){o=0;return}u=0,l=window.requestAnimationFrame(O)},A=o=>{if(o.pointerType===`touch`){D(),S(!1),t=o.pointerId,n=o.clientX,r=o.clientY,i=o.clientY,a=o.timeStamp||performance.now(),d=[],C(o.clientY,a),s=0,c=!1,h=o,m=window.setTimeout(T,Db);try{e.hostEl.setPointerCapture(o.pointerId)}catch{}}},j=e=>{if(t===null||e.pointerId!==t)return;Math.hypot(e.clientX-n,e.clientY-r)>Eb&&(c=!0,_());let s=e.clientY-i,l=e.timeStamp||performance.now(),u=Math.max(1,l-a);if(i=e.clientY,a=l,Math.abs(s)<.5)return;C(e.clientY,l);let d=s/u;o=g(w()*.72+d*.28);let p=E(s);!p&&c?x(s):p&&f!==0&&S(!1),(c||p)&&(e.preventDefault(),e.stopPropagation())},M=n=>{if(t===null||n.pointerId!==t)return;let r=c;t=null,_(),r?(n.preventDefault(),n.stopPropagation(),Nx(e,{allowClearUnread:!0}),o=w(),n.type===`pointerup`&&f===0?k():(D(),S())):(o=0,s=0,S()),d=[];try{e.hostEl.releasePointerCapture(n.pointerId)}catch{}};e.hostEl.addEventListener(`pointerdown`,A,{capture:!0,passive:!1}),e.hostEl.addEventListener(`pointermove`,j,{capture:!0,passive:!1}),e.hostEl.addEventListener(`pointerup`,M,{capture:!0,passive:!1}),e.hostEl.addEventListener(`pointercancel`,M,{capture:!0,passive:!1}),e.hostEl.addEventListener(`lostpointercapture`,M,{capture:!0,passive:!1}),e.touchInteraction={pointerDownHandler:A,pointerMoveHandler:j,pointerUpHandler:M,stopTouchMomentum:D}}function tC(){typeof window>`u`||!window.__FARMING_E2E__||window.__farmingTerminalTest||(window.__farmingTerminalTest={async writeFixture(e,t){let n=wb.get(e),r=n instanceof Promise?await n:n;if(!r||r.disposed)throw Error(`Terminal session not found: ${e}`);r.bootstrapRefreshSeq+=1,zb(r),r.snapshotOutput=``,r.snapshotRuntimeEpoch=``,r.snapshotOutputSeq=null,r.snapshotStateRevision=null,r.snapshotCols=null,r.snapshotRows=null,Cb.resetRecovery(r.replayState,{keepCursor:!1}),r.replayInProgress=!1,r.liveWriteInProgress=!1,r.pendingSnapshotReplay=!1,r.bootstrappingSnapshot=!1,r.needsReconnectOutputSync=!1,r.fixtureOverrideActive=!0,r.suppressOutputUntil=Date.now()+1500,r.terminal.reset(),r.terminal.viewportY=0,r.terminal.scrollToLine?.(0),await new Promise(e=>r.terminal.write(t,e)),r.terminal.viewportY=0,r.terminal.scrollToLine?.(0),Ty(r,Cy(r),!1,{allowClearUnread:!0}),By(r),await new Promise(e=>requestAnimationFrame(()=>requestAnimationFrame(()=>e())))},async resumeLive(e){let t=wb.get(e),n=t instanceof Promise?await t:t;if(!n||n.disposed)throw Error(`Terminal session not found: ${e}`);n.fixtureOverrideActive=!1,n.suppressOutputUntil=0,zb(n),Cb.resetRecovery(n.replayState),Cb.beginRecovery(n.replayState),n.needsReconnectOutputSync=!0,Dx(n,n.attachGeneration)},getSelection(e){return fC(e)},getCellCenter(e,t,n){let r=wb.get(e);if(!r||r instanceof Promise||r.disposed)return null;let i=jx(r),a=Mx(r);return!i||!a?null:{x:a.left+(t+.5)*i.width,y:a.top+(n+.5)*i.height}},getRows(e,t=6){let n=wb.get(e);if(!n||n instanceof Promise||n.disposed)return[];let r=n.terminal.buffer?.active;if(!r||typeof r.getLine!=`function`)return[];let i=[],a=Sy(n.terminal);for(let e=0;e<t;e+=1){let t=r.getLine(a+e),o=[],s=n.terminal.cols||t?.length||0;for(let e=0;e<s;e+=1){let n=t?.getCell?.(e);fy(n)||o.push(dy(n)||` `)}i.push(o.join(``).trimEnd())}return i},getHostDiagnostics(){return Array.from(document.querySelectorAll(`.terminal-session-host`)).map(e=>{let t=e,n=Rb(t),r=t.getBoundingClientRect(),i=t.parentElement,a=i?.classList.contains(`terminal-container`)?i:null;return{agentId:t.dataset.agentId||``,paneAgentId:t.closest(`[data-testid="code-terminal-pane"]`)?.getAttribute(`data-agent-id`)||``,inParkingLot:t.closest(`#terminal-session-parking-lot`)!==null,recordAttached:n?lx(n):!1,attachedMountMatchesParent:n?n.attachedMount!==null&&n.hostEl.parentElement===n.attachedMount:!1,visible:r.width>0&&r.height>0&&getComputedStyle(t).display!==`none`,hostCountInMount:a?a.querySelectorAll(`.terminal-session-host`).length:0}})},doubleClickCell(e,t,n){let r=wb.get(e);return!r||r instanceof Promise||r.disposed?``:tS(r,t,n)},getUrlAtCell(e,t,n){let r=wb.get(e);if(!r||r instanceof Promise||r.disposed)return null;let i=wS(r,{col:t,row:n});return i?oy(i.text,i.col):null},isReady(e){let t=wb.get(e);return!!(t&&!(t instanceof Promise)&&!t.disposed&&!t.bootstrappingSnapshot&&!t.pendingSnapshotReplay)},getPathAtCell(e,t,n){let r=wb.get(e);if(!r||r instanceof Promise||r.disposed)return null;let i=bS(r,{col:t,row:n});return i?qv(i.text,i.col)??Jv(i.text,i.col):null},openPathAtCell(e,t,n){let r=wb.get(e);if(!r||r instanceof Promise||r.disposed||!r.pathOpenHandler)return!1;let i=bS(r,{col:t,row:n}),a=i?qv(i.text,i.col)??Jv(i.text,i.col):null;return a?(r.pathOpenHandler(e,a),!0):!1},getCursor(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?null:t.terminal.wasmTerm?.getCursor?.()??null},getCursorVisible(e){let t=wb.get(e);if(!t||t instanceof Promise||t.disposed)return;let n=t.terminal.wasmTerm?.getCursor?.().visible;return n===void 0?void 0:!!n},getRendererCursorVisible(e){let t=wb.get(e);if(!t||t instanceof Promise||t.disposed)return;let n=t.terminal.renderer?.cursorVisible;return n===void 0?void 0:!!n},getCursorCellPixel(e){let t=wb.get(e);if(!t||t instanceof Promise||t.disposed)return null;let n=t.terminal.renderer?.getCanvas?.()||t.hostEl.querySelector(`canvas`),r=jx(t),i=t.terminal.wasmTerm?.getCursor?.();if(!(n instanceof HTMLCanvasElement)||!r||!i){let e=t.hostEl.querySelector(`.xterm-cursor`);if(!(e instanceof HTMLElement))return null;let n=(getComputedStyle(e).backgroundColor||Gn.cursor).match(/rgba?\((\d+),\s*(\d+),\s*(\d+)(?:,\s*([0-9.]+))?\)/);return n?{r:Number(n[1]??36),g:Number(n[2]??41),b:Number(n[3]??47),a:Math.round(Number(n[4]??1)*255)}:{r:36,g:41,b:47,a:255}}let a=n.width/Math.max(1,n.getBoundingClientRect().width),o=n.height/Math.max(1,n.getBoundingClientRect().height),s=Math.min(n.width-1,Math.max(0,Math.floor((i.x+.5)*r.width*a))),c=Math.min(n.height-1,Math.max(0,Math.floor((i.y+.5)*r.height*o))),l=n.getContext(`2d`)?.getImageData(s,c,1,1).data;return l?{r:l[0]??0,g:l[1]??0,b:l[2]??0,a:l[3]??0}:null},getCanvasInkPixelCount(e){let t=wb.get(e);if(!t||t instanceof Promise||t.disposed)return 0;let n=t.terminal.renderer?.getCanvas?.(),r=[...new Set([...n instanceof HTMLCanvasElement?[n]:[],...t.hostEl.querySelectorAll(`canvas`)])];if(r.length===0)return(t.hostEl.querySelector(`.xterm-rows`)?.textContent?.trim()??``).length*8;let i=0;for(let e of r){let t=null,n=e.getContext(`2d`);if(n)t=n.getImageData(0,0,e.width,e.height).data;else{let n=e.getContext(`webgl2`)||e.getContext(`webgl`);n&&(t=new Uint8Array(e.width*e.height*4),n.readPixels(0,0,e.width,e.height,n.RGBA,n.UNSIGNED_BYTE,t))}if(t)for(let e=0;e<t.length;e+=4){let n=t[e]??255,r=t[e+1]??255,a=t[e+2]??255;(t[e+3]??0)>0&&!(n>248&&r>248&&a>245)&&(i+=1)}}return i},async writeRaw(e,t){let n=wb.get(e),r=n instanceof Promise?await n:n;if(!r||r.disposed)throw Error(`Terminal session not found: ${e}`);await new Promise(e=>tb(r,t,e,{isOutputObserved:()=>lx(r)})),await new Promise(e=>requestAnimationFrame(()=>requestAnimationFrame(()=>e())))},async writeSequenced(e,t,n,r=``,i){let a=wb.get(e),o=a instanceof Promise?await a:a;if(!o||o.disposed)throw Error(`Terminal session not found: ${e}`);Ox(o,t,!1,n,r,i??(o.replayState.stateRevision??0)+1),await new Promise(e=>requestAnimationFrame(()=>requestAnimationFrame(()=>e())))},async streamSequenced(e,t,n,r=``,i){let a=wb.get(e),o=a instanceof Promise?await a:a;if(!o||o.disposed)throw Error(`Terminal session not found: ${e}`);kx(o,t,!1,n,r,i??(o.replayState.stateRevision??0)+1)},async writeRawAndSampleViewport(e,t){let n=wb.get(e),r=n instanceof Promise?await n:n;if(!r||r.disposed)throw Error(`Terminal session not found: ${e}`);let i=xy(r.terminal),a=by(r.terminal),o=i;return await new Promise(e=>{tb(r,t,e,{isOutputObserved:()=>lx(r)}),o=xy(r.terminal)}),await new Promise(e=>requestAnimationFrame(()=>requestAnimationFrame(()=>e()))),{before:i,during:o,after:xy(r.terminal),beforeScrollbackLength:a,afterScrollbackLength:by(r.terminal),following:r.followOutput,hasUnreadOutput:r.hasUnreadOutput}},getViewport(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?null:{viewportY:xy(t.terminal),scrollbackLength:by(t.terminal),following:t.followOutput,hasUnreadOutput:t.hasUnreadOutput}},getInputCount(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?0:t.inputCount},getLastNotifiedResize(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?null:t.lastNotifiedResize},getResizeNotificationCount(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?0:t.resizeNotificationCount},notifyResizeForTest(e,t,n){let r=wb.get(e);return!r||r instanceof Promise||r.disposed?0:(Jx(r,t,n),r.resizeNotificationCount)},getLastOutputSeq(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?null:t.replayState.outputSeq},getRuntimeEpoch(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?``:t.replayState.runtimeEpoch},getStateRevision(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?null:t.replayState.stateRevision},setCheckpointAckSuppressed(e){let t=wb.get(e);return!!(t&&!(t instanceof Promise)&&!t.disposed)},getBufferDiagnostics(e){let t=wb.get(e);if(!t||t instanceof Promise||t.disposed)return null;let n=t.terminal.buffer?.active;return{engine:t.terminal.__farmingTerminalEngine,renderer:t.terminal.getRendererType?.(),cols:t.terminal.cols||0,rows:t.terminal.rows||0,viewportY:xy(t.terminal),scrollbackLength:by(t.terminal),visibleBufferBase:Sy(t.terminal),bufferViewportY:typeof n?.viewportY==`number`?n.viewportY:void 0,bufferBaseY:typeof n?.baseY==`number`?n.baseY:void 0,bufferLength:typeof n?.length==`number`?n.length:void 0,queuedTransitions:t.replayState.queuedTransitions.length,queuedBytes:t.replayState.queuedBytes,replayTargetEpoch:t.replayState.replayTargetEpoch,replayTargetRevision:t.replayState.replayTargetRevision,checkpointHalted:t.replayState.halted,checkpointFailureCount:t.replayState.failureCount,checkpointRequestInFlight:t.checkpointRequestInFlight,replayInProgress:t.replayInProgress,bootstrappingSnapshot:t.bootstrappingSnapshot,pendingSnapshotReplay:t.pendingSnapshotReplay,runtimeEpoch:t.replayState.runtimeEpoch,stateRevision:t.replayState.stateRevision,lastOutputSeq:t.replayState.outputSeq,reconnectSnapshotSeq:t.reconnectSnapshotSeq,bootstrapRefreshSeq:t.bootstrapRefreshSeq,attachGeneration:t.attachGeneration,currentAttachment:mx(t,t.attachGeneration),attachedMount:t.attachedMount!==null,fixtureOverrideActive:t.fixtureOverrideActive,pageOutputSuspended:t.pageOutputSuspended,suppressOutputForMs:Math.max(0,t.suppressOutputUntil-Date.now()),needsReconnectOutputSync:t.needsReconnectOutputSync,lastNotifiedResize:t.lastNotifiedResize,resizeNotificationCount:t.resizeNotificationCount,resizeRequestInFlight:t.resizeRequestInFlight,pendingResizeRequest:t.pendingResizeRequest,resizeDeliveryTimeoutPending:t.resizeDeliveryTimeout!==null,pendingFitResize:t.pendingFitResize,fitResizeTimerPending:t.fitResizeTimer!==null}},async scrollToLine(e,t){let n=wb.get(e),r=n instanceof Promise?await n:n;if(!r||r.disposed)throw Error(`Terminal session not found: ${e}`);r.touchInteraction?.stopTouchMomentum(),Gy(r,t);let i=Cy(r);Ty(r,i,i?!1:r.hasUnreadOutput,{allowClearUnread:i}),await new Promise(e=>requestAnimationFrame(()=>e()))},async scrollToBottom(e){let t=wb.get(e),n=t instanceof Promise?await t:t;if(!n||n.disposed)throw Error(`Terminal session not found: ${e}`);n.touchInteraction?.stopTouchMomentum(),Ky(n,{allowClearUnread:!0}),await new Promise(e=>requestAnimationFrame(()=>e()))},async search(e,t,n=`next`,r={}){return yC(e,t,n,r)},async clearSearch(e){await bC(e)},dispatchPasteToTextarea(e,t){let n=wb.get(e);if(!n||n instanceof Promise||n.disposed)return{prevented:!1};let r=n.hostEl.querySelector(`textarea`);if(!(r instanceof HTMLTextAreaElement))return{prevented:!1};let i=new window.DataTransfer;i.setData(`text/plain`,t);let a=new window.ClipboardEvent(`paste`,{clipboardData:i,bubbles:!0,cancelable:!0});return r.dispatchEvent(a),{prevented:a.defaultPrevented}},dispatchCopyFromTextarea(e){let t=wb.get(e);if(!t||t instanceof Promise||t.disposed)return{prevented:!1,text:``};let n=t.hostEl.querySelector(`textarea`);if(!(n instanceof HTMLTextAreaElement))return{prevented:!1,text:``};let r=new window.DataTransfer,i=new window.ClipboardEvent(`copy`,{clipboardData:r,bubbles:!0,cancelable:!0});return n.dispatchEvent(i),{prevented:i.defaultPrevented,text:r.getData(`text/plain`)}}})}async function nC(e,t){let n=Ib()?11:12,r=await Lv({fontSize:n});if(!r)throw Error(`Failed to create terminal for ${e}`);let i=document.createElement(`div`);i.className=`terminal-session-host`,i.dataset.agentId=e,i.dataset.terminalFontSize=String(n),i.style.width=`100%`,i.style.height=`100%`,i.style.position=`relative`,i.style.overflow=`hidden`;let{terminal:a,fitAddon:o}=r;a.loadAddon(o);let s={agentId:e,hostEl:i,attachedMount:null,attachGeneration:0,attachReadyHandler:null,attachReadyGeneration:null,attachReadyNotified:!1,terminal:a,fitAddon:o,unsubscribeOutput:null,selectionChangeDisposable:null,imeOverlayDisposables:[],resizeObserver:null,applyingLocalResize:!1,parkedViewportState:null,inputDisabled:!!t.inputDisabled,errorHandler:t.onError??null,rendererFailureDisposable:null,scrollChangeDisposable:null,backendConnectedHandler:null,clickHandler:null,pointerDownSelectionHandler:null,pointerMoveSelectionHandler:null,pointerUpSelectionHandler:null,mouseDownOpenTargetHandler:null,mouseDownSelectionHandler:null,mouseMoveSelectionHandler:null,mouseUpSelectionHandler:null,mouseUpOpenTargetHandler:null,doubleClickHandler:null,copyHandler:null,copyKeyHandler:null,clearKeyHandler:null,pasteHandler:null,lastLinkHoverEvent:null,openModifierActive:!1,linkHoverHandler:null,linkHoverLeaveHandler:null,linkHoverKeyHandler:null,linkHoverBlurHandler:null,linkProviderDisposable:null,linkProviderHoverTarget:null,contextMenuHandler:null,contextMenuMouseDownHandler:null,contextMenuEl:null,contextMenuCleanup:null,contextMenuSelection:``,imeKeydownHandler:null,scrollIntentHandler:null,scrollKeyHandler:null,touchInteraction:null,lastNotifiedResize:null,resizeNotificationCount:0,resizeRequestInFlight:null,pendingResizeRequest:null,resizeDeliveryTimeout:null,pendingFitResize:null,fitResizeTimer:null,followOutputHandler:t.onFollowOutputChange??null,pathOpenHandler:t.onPathOpen??null,pathResolveHandler:t.onPathResolve??null,pathResolveCache:new Map,originalRender:null,snapshotOutput:``,snapshotRuntimeEpoch:``,snapshotOutputSeq:null,snapshotStateRevision:null,snapshotCols:null,snapshotRows:null,replayState:Cb.createState(),replayInProgress:!1,liveWriteInProgress:!1,terminalWriteQueue:Promise.resolve(),terminalWriteResolvers:new Set,bootstrapRefreshSeq:0,reconnectSnapshotSeq:0,checkpointRequestInFlight:!1,checkpointRetryTimer:null,bootstrapRequestControllers:new Set,needsReconnectOutputSync:!1,pageOutputSuspended:document.visibilityState===`hidden`,pageLifecycleHandler:null,pendingSnapshotReplay:!1,bootstrappingSnapshot:!0,fixtureOverrideActive:!1,suspendRendering:!1,cachedSelection:``,lastNonEmptySelection:``,openTargetMouseDown:null,dragSelection:null,suppressClickUntil:0,suppressOutputUntil:0,imeComposing:!1,suppressRendererCursor:!!t.suppressRendererCursor,rendererCursorWasVisible:void 0,inputCount:0,followOutput:!0,hasUnreadOutput:!1,preserveUnreadOutputUntilJump:!1,followCheckFrame:null,disposed:!1,bootstrapped:!0};gx(s,t.bootstrapState),a.onData(e=>{s.inputDisabled||Gx(s,e)}),a.onResize(({cols:e,rows:t})=>{s.applyingLocalResize||s.replayInProgress||s.bootstrappingSnapshot||Jx(s,e,t)}),$S(s,e);let c=a.onRendererFailure?.(e=>{s.disposed||(s.inputDisabled=!0,Ub(s),s.errorHandler?.(e),mC(s.agentId).catch(e=>{console.error(`Failed to dispose terminal after renderer failure:`,e)}))});s.rendererFailureDisposable=c?()=>c.dispose():null,a.open(i),mS(s),a.syncAppearanceTheme?.(),requestAnimationFrame(()=>{s.disposed||a.syncAppearanceTheme?.()}),Vx(s),Rx(s,!1);let l=a.onSelectionChange?.(()=>{s.cachedSelection=gy(a),s.cachedSelection&&(s.lastNonEmptySelection=_y(s.cachedSelection))});s.selectionChangeDisposable=l?()=>l.dispose():null;let u=a.onScroll?.(()=>{Fx(s),vS(s)}),d=a.onRender?.(()=>{Fx(s)});s.scrollChangeDisposable=u||d?()=>{u?.dispose(),d?.dispose()}:null;let f=()=>Yx(s);window.addEventListener(`farming:backend-connected`,f),s.backendConnectedHandler=f;let p=e=>{let t=e.type===`pagehide`||document.visibilityState===`hidden`;if(s.pageOutputSuspended=t,t){Ub(s),s.needsReconnectOutputSync=!0;return}Xx(s)};document.addEventListener(`visibilitychange`,p),window.addEventListener(`pagehide`,p),window.addEventListener(`pageshow`,p),s.pageLifecycleHandler=p,Hx(s);let m=t=>{let n=cS(s,t),r=t.button===0&&n?OS(s,t):null;if(r)return t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),NS(r),s.suppressClickUntil=Date.now()+250,!0;if(s.pathOpenHandler&&t.button===0){let n=DS(s,t);if(n)return t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),s.pathOpenHandler(e,n),s.suppressClickUntil=Date.now()+250,!0}return!1},h=(e,t)=>{if(Ib()||e.button!==0||e.ctrlKey||e.metaKey||e.altKey)return!1;let n=iS(s,e);return n?(s.dragSelection={start:n,active:!0,moved:!1,pointerId:t},!0):!1},g=e=>{let t=s.dragSelection;if(!t?.active||`pointerId`in e&&t.pointerId!==void 0&&e.pointerId!==t.pointerId)return!1;let n=iS(s,e);return!n||n.col===t.start.col&&n.row===t.start.row&&!t.moved?!1:(t.moved=!0,nS(s,t.start,n),e.preventDefault(),e.stopPropagation(),!0)},_=e=>{let t=s.dragSelection;return!t?.active||`pointerId`in e&&t.pointerId!==void 0&&e.pointerId!==t.pointerId||(s.dragSelection=null,!t.moved)?!1:(s.suppressClickUntil=Date.now()+250,s.cachedSelection=gy(a),e.preventDefault(),e.stopPropagation(),!0)},v=e=>{if(s.openTargetMouseDown=null,Ib()||e.button!==0||e.ctrlKey||e.metaKey||e.altKey)return;let t=s.pathOpenHandler?TS(s,e):null;t?.pathTarget&&(s.openTargetMouseDown={x:e.clientX,y:e.clientY,pathTarget:t.pathTarget})};i.addEventListener(`mousedown`,v,!0),s.mouseDownOpenTargetHandler=v;let y=t=>{if(Ib()||t.button!==0)return;if(cS(s,t)){let e=OS(s,t);if(e){t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),NS(e),s.suppressClickUntil=Date.now()+250;return}}let n=s.openTargetMouseDown;if(s.openTargetMouseDown=null,n){if(Math.hypot(t.clientX-n.x,t.clientY-n.y)>4){s.suppressClickUntil=Date.now()+250;return}AS(s)||m(t)||(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),dS(s,n.pathTarget).then(t=>{if(!s.disposed){if(!t){$b(s);return}s.pathOpenHandler?.(e,t),s.suppressClickUntil=Date.now()+250}}))}};i.addEventListener(`mouseup`,y,!0),s.mouseUpOpenTargetHandler=y;let b=e=>{if(e.pointerType!==`touch`&&h(e,e.pointerId))try{s.hostEl.setPointerCapture(e.pointerId)}catch{}};if(!Fv(a)){i.addEventListener(`pointerdown`,b,!0),s.pointerDownSelectionHandler=b;let e=e=>{e.pointerType!==`touch`&&g(e)};window.addEventListener(`pointermove`,e,!0),s.pointerMoveSelectionHandler=e;let t=e=>{if(e.pointerType===`touch`)return;let t=_(e);if(t||m(e),t||Date.now()<s.suppressClickUntil)try{s.hostEl.releasePointerCapture(e.pointerId)}catch{}};window.addEventListener(`pointerup`,t,!0),window.addEventListener(`pointercancel`,t,!0),s.pointerUpSelectionHandler=t;let n=e=>{s.dragSelection||h(e)};i.addEventListener(`mousedown`,n,!0),s.mouseDownSelectionHandler=n;let r=e=>{g(e)};window.addEventListener(`mousemove`,r,!0),s.mouseMoveSelectionHandler=r;let a=e=>{_(e)};window.addEventListener(`mouseup`,a,!0),s.mouseUpSelectionHandler=a}let x=e=>{if(!Ib()){if(Date.now()<s.suppressClickUntil){e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation();return}m(e)||$b(s)}};i.addEventListener(`click`,x,!0),s.clickHandler=x;let S=e=>{if(Fv(a)||Ib())return;let t=iS(s,e);t&&tS(s,t.col,t.row)&&(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation())};i.addEventListener(`dblclick`,S,!0),s.doubleClickHandler=S;let C=e=>{if(!rx(s,e))return;let t=AS(s,{includeNativeFallback:!0});t&&(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation(),e.clipboardData?.setData(`text/plain`,t))};i.addEventListener(`copy`,C,!0),document.addEventListener(`copy`,C,!0),s.copyHandler=C;let w=e=>{if(!ax(s,e))return;let t=AS(s,{includeNativeFallback:!0});t&&(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation(),F(t))};document.addEventListener(`keydown`,w,!0),s.copyKeyHandler=w;let T=e=>{cx(s,e)};a.attachCustomKeyEventHandler||(document.addEventListener(`keydown`,T,!0),s.clearKeyHandler=T);let E=e=>{let t=lx(s);if(db(s.hostEl,e,t)){e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation();return}fb(s.hostEl,e,t)&&(Fv(s.terminal)||GS(s,e.clipboardData?.getData(`text/plain`)||``)&&(e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation()))};window.addEventListener(`paste`,E,!0),i.addEventListener(`paste`,E,!0),s.pasteHandler=E;let D=e=>{if(!ux(s)){IS(s);return}s.lastLinkHoverEvent=e,LS(s,e)||(s.linkProviderHoverTarget=null,FS(s,null)),zS(s),RS(s,e).then(t=>{!t||s.disposed||s.lastLinkHoverEvent!==e||(s.linkProviderHoverTarget={kind:`path`,text:t.text,...t.pathTarget?{pathTarget:t.pathTarget}:{}},FS(s,`path`))})};i.addEventListener(`mousemove`,D,!0),s.linkHoverHandler=D;let O=()=>{IS(s)};i.addEventListener(`mouseleave`,O,!0),s.linkHoverLeaveHandler=O;let k=e=>{if(!ux(s)){IS(s);return}e.type===`keydown`&&[`Control`,`Meta`].includes(e.key)?s.openModifierActive=!0:s.openModifierActive=sS(e),s.lastLinkHoverEvent&&(![`Control`,`Meta`].includes(e.key)&&!s.openModifierActive||zS(s,s.openModifierActive))};window.addEventListener(`keydown`,k,!0),window.addEventListener(`keyup`,k,!0),s.linkHoverKeyHandler=k;let A=()=>{IS(s)};window.addEventListener(`blur`,A),s.linkHoverBlurHandler=A;let j=e=>{e instanceof WheelEvent&&e.deltaY<0&&Ty(s,!1,s.hasUnreadOutput),vS(s),Fx(s,{allowClearUnread:!0}),window.setTimeout(()=>Fx(s,{allowClearUnread:!0}),80)};i.addEventListener(`wheel`,j,!0),i.addEventListener(`pointerup`,j,!0),s.scrollIntentHandler=j;let M=e=>{fx(s,e)};return a.attachCustomKeyEventHandler?a.attachCustomKeyEventHandler(e=>!(cx(s,e)||fx(s,e))):(document.addEventListener(`keydown`,M,!0),i.addEventListener(`keydown`,M,!0),s.scrollKeyHandler=M),eC(s),s.resizeObserver=new ResizeObserver(()=>{requestAnimationFrame(()=>{if(!s.disposed)try{Kx(s)}catch{}})}),s.unsubscribeOutput=t.onSessionOutput(e,(e,t,n,r,i,a,o,c)=>{s.disposed||kx(s,e,t,n,r,i,a,o,c)}),tC(),s}async function rC(e,t){let n=wb.get(e);if(n)return n instanceof Promise?n:Promise.resolve(n);let r=nC(e,t).then(t=>(wb.set(e,t),t)).catch(n=>{throw wb.delete(e),t.onError?.(n instanceof Error?n:Error(String(n))),n});return wb.set(e,r),r}function iC(e,t){if(e.attachReadyNotified||e.attachReadyGeneration!==t||!mx(e,t)||e.bootstrappingSnapshot||e.pendingSnapshotReplay||e.needsReconnectOutputSync||e.replayInProgress||e.liveWriteInProgress||e.replayState.queuedTransitions.length>0||!e.replayState.runtimeEpoch||e.replayState.outputSeq===null||e.replayState.stateRevision===null)return!1;e.attachReadyNotified=!0;let n=!!(e.parkedViewportState?.following&&Cy(e));return e.parkedViewportState=null,n&&Ty(e,!0,!1,{allowClearUnread:!0}),e.attachReadyHandler?.(),!0}function aC(e,t){if(mx(e,t)){if(e.pendingSnapshotReplay&&e.snapshotRuntimeEpoch&&e.snapshotOutputSeq!==null&&e.snapshotStateRevision!==null&&e.snapshotCols!==null&&e.snapshotRows!==null&&Date.now()>=e.suppressOutputUntil){hx(e,t);return}iC(e,t)||e.replayInProgress||e.checkpointRequestInFlight||(e.needsReconnectOutputSync=!0,Dx(e,t))}}function oC(e,t,n){let r=e.followOutput,i=xy(e.terminal),a=by(e.terminal),o=e.hasUnreadOutput;requestAnimationFrame(()=>{mx(e,n)&&(Kx(e,{force:!0}),Yy(e,i,a,r,o),Uy(e),t.autoFocus&&!Ib()&&tx(e.hostEl)&&Ux(e,n),requestAnimationFrame(()=>{mx(e,n)&&(Kx(e,{force:!0}),Yy(e,i,a,r,o),Uy(e),aC(e,n))}))})}async function sC(e,t){if(t.signal?.aborted)return;let n=await rC(e,t);if(n.disposed||t.signal?.aborted||wb.get(e)!==n)return;let r=ob(n);n.attachReadyHandler=t.onReady??null,n.attachReadyGeneration=r,n.attachReadyNotified=!1,zb(n),Cb.resetRecovery(n.replayState),Cb.beginRecovery(n.replayState),Lb(n,t.mountEl),n.parkedViewportState&&(n.followOutput=n.parkedViewportState.following,n.hasUnreadOutput=n.hasUnreadOutput||n.parkedViewportState.hasUnreadOutput,n.preserveUnreadOutputUntilJump=n.preserveUnreadOutputUntilJump||n.parkedViewportState.preserveUnreadOutputUntilJump),ZS(n),n.errorHandler=t.onError??null,n.inputDisabled=!!t.inputDisabled,n.followOutputHandler=t.onFollowOutputChange??null,n.pathOpenHandler=t.onPathOpen??null,n.pathResolveHandler=t.onPathResolve??null,gx(n,t.bootstrapState),wy(n),zx(n,!!t.suppressRendererCursor),oC(n,t,r)}async function cC(e,t){let n=wb.get(e),r=n instanceof Promise?await n:n;if(!r||r.disposed||!r.bootstrappingSnapshot&&!r.needsReconnectOutputSync)return!1;zb(r);let i=gx(r,t);return!i&&!r.pendingSnapshotReplay?!1:(lx(r)&&requestAnimationFrame(()=>{!r.disposed&&r.pendingSnapshotReplay&&hx(r,r.attachGeneration)}),i)}async function lC(e,t){let n=wb.get(e);if(!n)return;let r=await n;r.disposed||wb.get(e)===r&&cb(r,t)&&Gb(r)}function uC(e,t){let n=wb.get(e);return!n||n instanceof Promise?!1:Gx(n,t)}async function dC(e){let t=wb.get(e);if(!t)return``;let n=await t;return n.disposed?``:(n.cachedSelection=gy(n.terminal),n.cachedSelection&&(n.lastNonEmptySelection=_y(n.cachedSelection)),n.cachedSelection)}function fC(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed?``:(t.cachedSelection=gy(t.terminal),t.cachedSelection&&(t.lastNonEmptySelection=_y(t.cachedSelection)),t.cachedSelection)}function pC(e){let t=wb.get(e);return!t||t instanceof Promise||t.disposed||!t.replayState.runtimeEpoch||t.replayState.outputSeq===null?null:{runtimeEpoch:t.replayState.runtimeEpoch,outputSeq:t.replayState.outputSeq}}async function mC(e){let t=wb.get(e);if(!t)return;wb.delete(e);let n=await t;n.disposed||(n.disposed=!0,zb(n),Ub(n),Px(n),Qy(n),n.unsubscribeOutput?.(),n.rendererFailureDisposable?.(),n.selectionChangeDisposable?.(),n.scrollChangeDisposable?.(),n.backendConnectedHandler&&window.removeEventListener(`farming:backend-connected`,n.backendConnectedHandler),n.pageLifecycleHandler&&(document.removeEventListener(`visibilitychange`,n.pageLifecycleHandler),window.removeEventListener(`pagehide`,n.pageLifecycleHandler),window.removeEventListener(`pageshow`,n.pageLifecycleHandler)),n.imeOverlayDisposables.forEach(e=>e()),n.resizeObserver?.disconnect(),n.followCheckFrame!==null&&cancelAnimationFrame(n.followCheckFrame),n.clickHandler&&n.hostEl.removeEventListener(`click`,n.clickHandler,!0),n.pointerDownSelectionHandler&&n.hostEl.removeEventListener(`pointerdown`,n.pointerDownSelectionHandler,!0),n.pointerMoveSelectionHandler&&window.removeEventListener(`pointermove`,n.pointerMoveSelectionHandler,!0),n.pointerUpSelectionHandler&&(window.removeEventListener(`pointerup`,n.pointerUpSelectionHandler,!0),window.removeEventListener(`pointercancel`,n.pointerUpSelectionHandler,!0)),n.mouseDownOpenTargetHandler&&n.hostEl.removeEventListener(`mousedown`,n.mouseDownOpenTargetHandler,!0),n.mouseDownSelectionHandler&&n.hostEl.removeEventListener(`mousedown`,n.mouseDownSelectionHandler,!0),n.mouseMoveSelectionHandler&&window.removeEventListener(`mousemove`,n.mouseMoveSelectionHandler,!0),n.mouseUpSelectionHandler&&window.removeEventListener(`mouseup`,n.mouseUpSelectionHandler,!0),n.mouseUpOpenTargetHandler&&n.hostEl.removeEventListener(`mouseup`,n.mouseUpOpenTargetHandler,!0),n.doubleClickHandler&&n.hostEl.removeEventListener(`dblclick`,n.doubleClickHandler,!0),n.copyHandler&&(n.hostEl.removeEventListener(`copy`,n.copyHandler,!0),document.removeEventListener(`copy`,n.copyHandler,!0)),n.copyKeyHandler&&document.removeEventListener(`keydown`,n.copyKeyHandler,!0),n.clearKeyHandler&&document.removeEventListener(`keydown`,n.clearKeyHandler,!0),n.pasteHandler&&(window.removeEventListener(`paste`,n.pasteHandler,!0),n.hostEl.removeEventListener(`paste`,n.pasteHandler,!0)),n.linkHoverHandler&&n.hostEl.removeEventListener(`mousemove`,n.linkHoverHandler,!0),n.linkHoverLeaveHandler&&n.hostEl.removeEventListener(`mouseleave`,n.linkHoverLeaveHandler,!0),n.linkHoverKeyHandler&&(window.removeEventListener(`keydown`,n.linkHoverKeyHandler,!0),window.removeEventListener(`keyup`,n.linkHoverKeyHandler,!0)),n.linkHoverBlurHandler&&window.removeEventListener(`blur`,n.linkHoverBlurHandler),n.linkProviderDisposable?.(),n.contextMenuHandler&&(n.hostEl.removeEventListener(`contextmenu`,n.contextMenuHandler,!0),window.removeEventListener(`contextmenu`,n.contextMenuHandler,!0)),n.contextMenuMouseDownHandler&&(n.hostEl.removeEventListener(`mousedown`,n.contextMenuMouseDownHandler,!0),window.removeEventListener(`mousedown`,n.contextMenuMouseDownHandler,!0)),BS(n),n.scrollIntentHandler&&(n.hostEl.removeEventListener(`wheel`,n.scrollIntentHandler,!0),n.hostEl.removeEventListener(`pointerup`,n.scrollIntentHandler,!0)),n.scrollKeyHandler&&(document.removeEventListener(`keydown`,n.scrollKeyHandler,!0),n.hostEl.removeEventListener(`keydown`,n.scrollKeyHandler,!0)),n.touchInteraction&&(n.touchInteraction.stopTouchMomentum(),n.hostEl.removeEventListener(`pointerdown`,n.touchInteraction.pointerDownHandler,!0),n.hostEl.removeEventListener(`pointermove`,n.touchInteraction.pointerMoveHandler,!0),n.hostEl.removeEventListener(`pointerup`,n.touchInteraction.pointerUpHandler,!0),n.hostEl.removeEventListener(`pointercancel`,n.touchInteraction.pointerUpHandler,!0),n.hostEl.removeEventListener(`lostpointercapture`,n.touchInteraction.pointerUpHandler,!0)),n.originalRender&&n.terminal.renderer&&(n.terminal.renderer.render=n.originalRender),n.terminal.dispose(),n.hostEl.remove())}async function hC(e){let t=new Set(e),n=[...wb.keys()].filter(e=>!t.has(e));await Promise.all(n.map(e=>mC(e)))}function gC(e){let t=wb.get(e);if(!t)return Promise.resolve(!1);if(typeof t.then!=`function`){let e=t;return Promise.resolve($b(e))}return t.then(e=>$b(e))}async function _C(e,t={}){let n=wb.get(e);if(!n)return!1;let r=await n;if(r.disposed||!lx(r))return!1;let i=r.followOutput,a=xy(r.terminal),o=by(r.terminal),s=r.hasUnreadOutput,c=()=>{r.disposed||!lx(r)||(Kx(r,{force:!0}),Yy(r,a,o,i,s),Uy(r),t.autoFocus&&!Ib()&&tx(r.hostEl)&&Ux(r,r.attachGeneration))};return requestAnimationFrame(()=>{c(),requestAnimationFrame(c)}),!0}async function vC(e){let t=wb.get(e);if(!t)return;let n=await t;n.disposed||(n.touchInteraction?.stopTouchMomentum(),Ky(n,{allowClearUnread:!0}))}async function yC(e,t,n=`next`,r={}){let i=wb.get(e);if(!i)return{found:!1,resultIndex:0,resultCount:0};let a=await i;return a.disposed||typeof a.terminal.search!=`function`?{found:!1,resultIndex:0,resultCount:0}:a.terminal.search(t,n,r)}async function bC(e){let t=wb.get(e);if(!t)return;let n=await t;n.disposed||n.terminal.clearSearch?.()}function xC({agentId:e,containerRef:t,onSessionOutput:n,suppressRendererCursor:r=!1,inputDisabled:i=!1,onFollowOutputChange:a,onPathOpen:o,onPathResolve:s,onReady:c,onError:l,bootstrapState:u}){let d=(0,G.useRef)({onSessionOutput:n,onFollowOutputChange:a,onPathOpen:o,onPathResolve:s,onReady:c,onError:l,bootstrapState:u});d.current={onSessionOutput:n,onFollowOutputChange:a,onPathOpen:o,onPathResolve:s,onReady:c,onError:l,bootstrapState:u};let f=(0,G.useCallback)((e,t)=>d.current.onSessionOutput(e,t),[]),p=(0,G.useCallback)(e=>{d.current.onFollowOutputChange?.(e)},[]),m=(0,G.useCallback)((e,t)=>{d.current.onPathOpen?.(e,t)},[]),h=(0,G.useCallback)((e,t)=>d.current.onPathResolve?.(e,t)??null,[]),g=(0,G.useCallback)(()=>{d.current.onReady?.()},[]),_=(0,G.useCallback)(e=>{d.current.onError?.(e)},[]);return(0,G.useEffect)(()=>{if(!e||!t.current)return;let n=t.current,a=new AbortController,o=!1;return n.replaceChildren(),sC(e,{mountEl:n,onSessionOutput:f,suppressRendererCursor:r,inputDisabled:i,onFollowOutputChange:p,onPathOpen:m,onPathResolve:h,onError:_,bootstrapState:d.current.bootstrapState,signal:a.signal,onReady:()=>{o||g()}}).catch(e=>{console.error(`Failed to attach terminal session:`,e),_(e instanceof Error?e:Error(String(e)))}),()=>{o=!0,a.abort(),lC(e,n).catch(e=>{console.error(`Failed to detach terminal session:`,e)})}},[e,t,_,p,m,h,g,f,i,r]),(0,G.useEffect)(()=>{!e||!u?.runtimeEpoch||u.stateRevision===null||cC(e,u).catch(e=>{console.error(`Failed to apply terminal bootstrap state:`,e)})},[e,u?.runtimeEpoch,u?.outputSeq,u?.stateRevision,u?.output,u?.cols,u?.rows]),{focus:(0,G.useCallback)(()=>{let n=t.current;!e||!n||gC(e).then(t=>{if(!t)return sC(e,{mountEl:n,onSessionOutput:f,autoFocus:!0,suppressRendererCursor:r,inputDisabled:i,onFollowOutputChange:p,onPathOpen:m,onPathResolve:h,onError:_,bootstrapState:d.current.bootstrapState,onReady:g})}).catch(e=>{console.error(`Failed to focus terminal session:`,e),_(e instanceof Error?e:Error(String(e)))})},[e,t,_,p,m,h,g,f,i,r]),refreshLayout:(0,G.useCallback)((t={})=>{e&&_C(e,t).catch(e=>{console.error(`Failed to refresh terminal layout:`,e)})},[e]),getSelection:(0,G.useCallback)(async()=>e?dC(e):``,[e]),getSelectionNow:(0,G.useCallback)(()=>e?fC(e):``,[e]),getReadCutNow:(0,G.useCallback)(()=>e?pC(e):null,[e]),scrollToBottom:(0,G.useCallback)(()=>{e&&vC(e).catch(e=>{console.error(`Failed to scroll terminal session to bottom:`,e)})},[e]),search:(0,G.useCallback)((t,n=`next`,r)=>e?yC(e,t,n,r):Promise.resolve({found:!1,resultIndex:0,resultCount:0}),[e]),clearSearch:(0,G.useCallback)(()=>e?bC(e):Promise.resolve(),[e])}}function SC(e){let t=String(e||``).trim().split(/\s+/)[0]||``;return[`claude`,`codex`,`qwen`,`opencode`,`qodercli`,`aider`,`github-copilot-cli`,`amazon-q`].includes(t)}function CC(){return oe()}function wC(e){return(e.metaKey&&!e.ctrlKey||e.ctrlKey&&!e.metaKey)&&!e.altKey&&!e.shiftKey&&e.key.toLowerCase()===`f`}function TC(e){return e.key===`F3`&&!e.metaKey&&!e.ctrlKey&&!e.altKey}function EC(e){if(!e.altKey||e.metaKey||e.ctrlKey||e.shiftKey)return null;let t=e.code||`Key${e.key.toUpperCase()}`;return t===`KeyC`?`caseSensitive`:t===`KeyW`?`wholeWord`:t===`KeyR`?`regex`:null}function DC(e,t){return!(e instanceof Node)||t?.contains(e)?!0:e===document.body||e===document.documentElement}function OC(e,t,n){return!e.trim()||!t?``:t.found?typeof t.resultCount==`number`&&t.resultCount>0&&typeof t.resultIndex==`number`&&t.resultIndex>=0?n.terminalSearchResults(t.resultIndex+1,t.resultCount):``:n.terminalSearchNoResults}function kC(e){let t=e.replace(/\r/g,``).trim();if(!t)return``;let n=t.split(`
155
+ `).map(e=>e.trim()).filter(Boolean);if(n.length!==1)return``;let r=n[0];return r?r.slice(0,240):``}function AC(e){return`code-terminal-search-button option${e?` active`:``}`}function jC({agent:e,active:t,focusSignal:n,onActivate:r,onSessionOutput:i,onOpenPath:a,onResolvePath:o,onFollowOutputChange:s,onReadLatest:c,copy:l}){let u=(0,G.useRef)(null),d=(0,G.useRef)(null),f=(0,G.useRef)(null),[p,m]=(0,G.useState)({following:!0,hasUnreadOutput:!1}),[h,g]=(0,G.useState)(!1),[_,v]=(0,G.useState)(!1),[y,b]=(0,G.useState)(``),[x,S]=(0,G.useState)({}),[C,w]=(0,G.useState)(null),[T,E]=(0,G.useState)(null),D=Tn(e)&&e.runtimeBinding.observerDeferred,O=(0,G.useCallback)(t=>{g(!0),m(t),s?.(e.id,t)},[e.id,s]),k=(0,G.useCallback)(()=>{E(null)},[]),A=(0,G.useCallback)(e=>{E(e.message||l.terminalSessionUnavailable)},[l.terminalSessionUnavailable]),{focus:j,refreshLayout:M,getSelectionNow:N,getReadCutNow:P,scrollToBottom:F,search:ee,clearSearch:I}=xC({agentId:e.id,containerRef:d,onSessionOutput:i,inputDisabled:D,suppressRendererCursor:SC(e.command),onFollowOutputChange:O,onPathOpen:a,onPathResolve:o,onReady:k,onError:A});(0,G.useEffect)(()=>{if(!t||!h||e.unread!==!0||!p.following||p.hasUnreadOutput)return;let n=P();if(!n)return;let r=e.attentionOutputEpoch||``,i=Number(e.attentionOutputSeq);r&&(r!==n.runtimeEpoch||Number.isFinite(i)&&i>n.outputSeq)||c?.(e.id,n)},[t,e.attentionOutputEpoch,e.attentionOutputSeq,e.id,e.unread,p.following,p.hasUnreadOutput,h,P,c]);let te=(0,G.useCallback)((e=!1)=>{window.requestAnimationFrame(()=>{M({autoFocus:e}),window.requestAnimationFrame(()=>M({autoFocus:e}))})},[M]);(0,G.useEffect)(()=>{t&&te(!1)},[t,te]),(0,G.useEffect)(()=>{!t||n<=0||CC()||(te(!0),j())},[t,j,n,te]),(0,G.useEffect)(()=>()=>{I()},[I]);let L=(0,G.useCallback)((e,t=`next`,n)=>{let r=e.trim();if(!r){w(null),I();return}ee(r,t,{...x,...n}).then(w).catch(e=>{console.error(`Failed to search terminal:`,e),w({found:!1,resultIndex:0,resultCount:0})})},[I,ee,x]),R=(0,G.useCallback)(e=>{S(t=>({...t,[e]:t[e]!==!0}))},[]),ne=(0,G.useCallback)(()=>{let e=kC(N());e&&(b(e),L(e,`next`,{incremental:!0})),v(!0),window.requestAnimationFrame(()=>{let e=f.current;e?.focus(),e?.select()})},[N,L]),z=(0,G.useCallback)(()=>{v(!1),w(null),I(),CC()||j()},[I,j]),B=(0,G.useCallback)(e=>{let t=EC(e.nativeEvent);if(t){e.preventDefault(),e.stopPropagation(),R(t);return}e.target===f.current&&e.key===`Enter`&&(e.preventDefault(),L(y,e.shiftKey?`previous`:`next`)),e.key===`Escape`&&(e.preventDefault(),z())},[z,L,y,R]);(0,G.useEffect)(()=>{_&&L(y,`next`,{incremental:!0})},[L,_,y]);let re=(0,G.useCallback)(e=>{if(DC(e.target,u.current)){if(wC(e)){e.preventDefault(),e.stopPropagation(),ne();return}if(_&&TC(e)){e.preventDefault(),e.stopPropagation(),L(y,e.shiftKey?`previous`:`next`);return}_&&e.key===`Escape`&&(e.preventDefault(),e.stopPropagation(),z())}},[z,ne,L,_,y]);(0,G.useEffect)(()=>{if(!t)return;let e=e=>{re(e)};return window.addEventListener(`keydown`,e,!0),()=>{window.removeEventListener(`keydown`,e,!0)}},[t,re]);let ie=(0,G.useCallback)(n=>{let i=n?.target,a=i instanceof Element&&i.closest(`.xterm`),o=n&&`pointerType`in n?n.pointerType:``;if(n&&n.button!==0){t||r(e.id,{focusTerminal:!1});return}if(a){t||r(e.id,{focusTerminal:!1}),(!CC()||o&&o!==`touch`)&&j();return}r(e.id),!(CC()&&(!o||o===`touch`))&&j()},[t,e.id,j,r]),ae=(0,G.useCallback)(()=>{F(),c?.(e.id,P()),!CC()&&j()},[e.id,j,P,c,F]),V=(0,G.useCallback)(()=>{E(null),j()},[j]),oe=!p.following||p.hasUnreadOutput,se=OC(y,C,l);return(0,K.jsxs)(`section`,{className:`code-terminal-pane ${t?`active`:``}`,"data-testid":`code-terminal-pane`,"data-agent-id":e.id,ref:u,onKeyDownCapture:re,onPointerDown:ie,children:[(0,K.jsx)(`div`,{className:`code-terminal-container terminal-container`,"data-testid":`code-terminal-container`,ref:d}),D?(0,K.jsx)(`div`,{className:`code-terminal-status-card`,"data-testid":`code-terminal-app-server-ready`,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),children:(0,K.jsx)(`span`,{children:l.appServerWaitingForFirstMessage})}):T?(0,K.jsxs)(`div`,{className:`code-terminal-status-card`,"data-testid":`code-terminal-status-card`,title:T,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),children:[(0,K.jsx)(`span`,{children:l.terminalSessionUnavailable}),(0,K.jsx)(`button`,{type:`button`,onClick:V,children:l.retry})]}):null,_?(0,K.jsxs)(`form`,{className:`code-terminal-search`,"data-testid":`code-terminal-search`,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onSubmit:e=>{e.preventDefault(),L(y,`next`)},onKeyDown:B,children:[(0,K.jsx)(`input`,{ref:f,type:`search`,name:`farming-terminal-search`,inputMode:`search`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,value:y,placeholder:l.terminalSearchPlaceholder,"aria-label":l.terminalSearchPlaceholder,"data-testid":`code-terminal-search-input`,spellCheck:!1,enterKeyHint:`search`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,onChange:e=>b(e.target.value)}),(0,K.jsx)(`span`,{className:`code-terminal-search-status ${C&&!C.found?`empty`:``}`,children:se}),(0,K.jsx)(`button`,{type:`button`,className:AC(x.caseSensitive),"aria-label":l.terminalSearchCaseSensitive,"aria-pressed":x.caseSensitive===!0,title:l.terminalSearchCaseSensitive,"data-testid":`code-terminal-search-case-sensitive`,onClick:()=>R(`caseSensitive`),children:(0,K.jsx)(ve,{})}),(0,K.jsx)(`button`,{type:`button`,className:AC(x.wholeWord),"aria-label":l.terminalSearchWholeWord,"aria-pressed":x.wholeWord===!0,title:l.terminalSearchWholeWord,"data-testid":`code-terminal-search-whole-word`,onClick:()=>R(`wholeWord`),children:(0,K.jsx)(he,{})}),(0,K.jsx)(`button`,{type:`button`,className:AC(x.regex),"aria-label":l.terminalSearchRegex,"aria-pressed":x.regex===!0,title:l.terminalSearchRegex,"data-testid":`code-terminal-search-regex`,onClick:()=>R(`regex`),children:(0,K.jsx)(H,{})}),(0,K.jsx)(`button`,{type:`button`,className:`code-terminal-search-button`,"aria-label":l.terminalSearchPrevious,title:l.terminalSearchPrevious,onClick:()=>L(y,`previous`),children:(0,K.jsx)(Ce,{})}),(0,K.jsx)(`button`,{type:`button`,className:`code-terminal-search-button`,"aria-label":l.terminalSearchNext,title:l.terminalSearchNext,onClick:()=>L(y,`next`),children:(0,K.jsx)(Ae,{})}),(0,K.jsx)(`button`,{type:`button`,className:`code-terminal-search-button close`,"aria-label":l.terminalSearchClose,title:l.terminalSearchClose,onClick:z,children:(0,K.jsx)(Se,{})})]}):null,oe?(0,K.jsx)(`button`,{type:`button`,className:`code-terminal-jump-bottom`,"data-testid":`code-terminal-jump-bottom`,"aria-label":`Jump to latest output`,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onClick:e=>{e.stopPropagation(),ae()},children:(0,K.jsx)(Ae,{})}):null]})}function MC(e){let t=String(e.status||``).trim().replace(/[_-]/g,``).toLowerCase();return[`running`,`inprogress`,`pending`,`started`,`active`].includes(t)}function NC(e){let t=e[e.length-1];if(String(t?.type||``).toLowerCase()===`thought`)return`thinking`;let n=t&&MC(t)?t:void 0;if(!n)for(let t=e.length-1;t>=0;--t){let r=e[t];if(r&&String(r.type||``).toLowerCase()!==`plan`&&MC(r)){n=r;break}}if(!n)return`processing`;let r=String(n.type||``).toLowerCase(),i=String(n.kind||``).toLowerCase();return i===`think`?`thinking`:r===`plan`?`plan`:r===`patch`||[`edit`,`delete`,`move`].includes(i)?`editing`:i===`execute`?`running`:i===`read`?`reading`:i===`search`?`searching`:i===`fetch`?`fetching`:r===`tool`?`tool`:`processing`}function PC(e){for(let t=e.length-1;t>=0;--t){let n=e[t];if(!n||String(n.type||``).toLowerCase()!==`plan`||!MC(n))continue;let r=Number(n.completedSteps),i=Number(n.totalSteps);return!Number.isInteger(r)||!Number.isInteger(i)||r<0||i<=0||r>i?null:{completed:r,total:i}}return null}function FC(e,t=10){let n=PC(e);if(!n)return``;let r=[...e].reverse().find(e=>String(e.type||``).toLowerCase()===`plan`&&MC(e)),i=String(r?.currentStep||``).trim().replace(/\s+/g,` `);if(!i)return``;let a=`${n.completed}/${n.total} `,o=Math.max(0,t-[...a].length);if(o<=0)return a.trim();let s=[...i];return`${a}${s.length<=o?i:`${s.slice(0,Math.max(1,o-1)).join(``)}…`}`}function IC({terminalId:e,output:t,interactive:n,onInput:r,onResize:i}){let a=(0,G.useRef)(null),o=(0,G.useRef)(null),s=(0,G.useRef)(``),c=(0,G.useRef)(t),l=(0,G.useRef)(n),u=(0,G.useRef)(r),d=(0,G.useRef)(i),f=(0,G.useRef)(``),[p,m]=(0,G.useState)(``);return c.current=t,l.current=n,u.current=r,d.current=i,(0,G.useEffect)(()=>{let e=a.current;if(!e)return;let t=!1,n=null,r;return Pv({fontSize:12}).then(({terminal:i,fitAddon:a})=>{if(t){i.dispose(),a.dispose();return}i.loadAddon(a),i.open(e),e.querySelector(`textarea`)?.setAttribute(`aria-label`,`Terminal input`),o.current=i;let p=c.current;p&&i.write(p),s.current=p;let h=i.onData(e=>{!l.current||!u.current||u.current(e).then(()=>m(``)).catch(e=>{m(e instanceof Error?e.message:`Failed to send terminal input`)})}),g=()=>{if(!e.isConnected||e.clientWidth<=0||e.clientHeight<=0)return;a.fit();let t=Number(i.cols||0),n=Number(i.rows||0),r=`${t}x${n}`;!d.current||t<40||n<10||r===f.current||(f.current=r,d.current(t,n).catch(()=>{}))};n=new ResizeObserver(g),n.observe(e),window.requestAnimationFrame(g),r=()=>{n?.disconnect(),h.dispose(),a.dispose(),i.dispose()}}).catch(e=>{t||m(e instanceof Error?e.message:`Failed to start terminal view`)}),()=>{t=!0,o.current=null,r?.()}},[e]),(0,G.useEffect)(()=>{let e=o.current;!e||t===s.current||(t.startsWith(s.current)?e.write(t.slice(s.current.length)):(e.clearBuffer?.(),e.write(t)),s.current=t)},[t]),(0,K.jsxs)(`div`,{className:`code-acp-embedded-terminal ${n?`interactive`:`readonly`}`,"data-testid":`code-acp-embedded-terminal`,children:[(0,K.jsx)(`div`,{ref:a,className:`code-acp-embedded-terminal-host`,onClick:()=>o.current?.focus()}),(0,K.jsx)(`pre`,{className:`code-visually-hidden`,"aria-label":`Terminal output`,children:t}),p?(0,K.jsx)(`small`,{className:`code-codex-transcript-terminal-error`,role:`alert`,children:p}):null]})}var LC=class{diff(e,t,n={}){let r;typeof n==`function`?(r=n,n={}):`callback`in n&&(r=n.callback);let i=this.castInput(e,n),a=this.castInput(t,n),o=this.removeEmpty(this.tokenize(i,n)),s=this.removeEmpty(this.tokenize(a,n));return this.diffWithOptionsObj(o,s,n,r)}diffWithOptionsObj(e,t,n,r){let i=e=>{if(e=this.postProcess(e,n),r){setTimeout(function(){r(e)},0);return}else return e},a=t.length,o=e.length,s=1,c=a+o;n.maxEditLength!=null&&(c=Math.min(c,n.maxEditLength));let l=n.timeout??1/0,u=Date.now()+l,d=[{oldPos:-1,lastComponent:void 0}],f=this.extractCommon(d[0],t,e,0,n);if(d[0].oldPos+1>=o&&f+1>=a)return i(this.buildValues(d[0].lastComponent,t,e));let p=-1/0,m=1/0,h=()=>{for(let r=Math.max(p,-s);r<=Math.min(m,s);r+=2){let s,c=d[r-1],l=d[r+1];c&&(d[r-1]=void 0);let u=!1;if(l){let e=l.oldPos-r;u=l&&0<=e&&e<a}let h=c&&c.oldPos+1<o;if(!u&&!h){d[r]=void 0;continue}if(s=!h||u&&c.oldPos<l.oldPos?this.addToPath(l,!0,!1,0,n):this.addToPath(c,!1,!0,1,n),f=this.extractCommon(s,t,e,r,n),s.oldPos+1>=o&&f+1>=a)return i(this.buildValues(s.lastComponent,t,e))||!0;d[r]=s,s.oldPos+1>=o&&(m=Math.min(m,r-1)),f+1>=a&&(p=Math.max(p,r+1))}s++};if(r)(function e(){setTimeout(function(){if(s>c||Date.now()>u)return r(void 0);h()||e()},0)})();else for(;s<=c&&Date.now()<=u;){let e=h();if(e)return e}}addToPath(e,t,n,r,i){let a=e.lastComponent;return a&&!i.oneChangePerToken&&a.added===t&&a.removed===n?{oldPos:e.oldPos+r,lastComponent:{count:a.count+1,added:t,removed:n,previousComponent:a.previousComponent}}:{oldPos:e.oldPos+r,lastComponent:{count:1,added:t,removed:n,previousComponent:a}}}extractCommon(e,t,n,r,i){let a=t.length,o=n.length,s=e.oldPos,c=s-r,l=0;for(;c+1<a&&s+1<o&&this.equals(n[s+1],t[c+1],i);)c++,s++,l++,i.oneChangePerToken&&(e.lastComponent={count:1,previousComponent:e.lastComponent,added:!1,removed:!1});return l&&!i.oneChangePerToken&&(e.lastComponent={count:l,previousComponent:e.lastComponent,added:!1,removed:!1}),e.oldPos=s,c}equals(e,t,n){return n.comparator?n.comparator(e,t):e===t||!!n.ignoreCase&&e.toLowerCase()===t.toLowerCase()}removeEmpty(e){let t=[];for(let n=0;n<e.length;n++)e[n]&&t.push(e[n]);return t}castInput(e,t){return e}tokenize(e,t){return Array.from(e)}join(e){return e.join(``)}postProcess(e,t){return e}get useLongestToken(){return!1}buildValues(e,t,n){let r=[],i;for(;e;)r.push(e),i=e.previousComponent,delete e.previousComponent,e=i;r.reverse();let a=r.length,o=0,s=0,c=0;for(;o<a;o++){let e=r[o];if(e.removed)e.value=this.join(n.slice(c,c+e.count)),c+=e.count;else{if(!e.added&&this.useLongestToken){let r=t.slice(s,s+e.count);r=r.map(function(e,t){let r=n[c+t];return r.length>e.length?r:e}),e.value=this.join(r)}else e.value=this.join(t.slice(s,s+e.count));s+=e.count,e.added||(c+=e.count)}}return r}};new class extends LC{};function RC(e,t){let n;for(n=0;n<e.length&&n<t.length;n++)if(e[n]!=t[n])return e.slice(0,n);return e.slice(0,n)}function zC(e,t){let n;if(!e||!t||e[e.length-1]!=t[t.length-1])return``;for(n=0;n<e.length&&n<t.length;n++)if(e[e.length-(n+1)]!=t[t.length-(n+1)])return e.slice(-n);return e.slice(-n)}function BC(e,t,n){if(e.slice(0,t.length)!=t)throw Error(`string ${JSON.stringify(e)} doesn't start with prefix ${JSON.stringify(t)}; this is a bug`);return n+e.slice(t.length)}function VC(e,t,n){if(!t)return e+n;if(e.slice(-t.length)!=t)throw Error(`string ${JSON.stringify(e)} doesn't end with suffix ${JSON.stringify(t)}; this is a bug`);return e.slice(0,-t.length)+n}function HC(e,t){return BC(e,t,``)}function UC(e,t){return VC(e,t,``)}function WC(e,t){return t.slice(0,GC(e,t))}function GC(e,t){let n=0;e.length>t.length&&(n=e.length-t.length);let r=t.length;e.length<t.length&&(r=e.length);let i=Array(r),a=0;i[0]=0;for(let e=1;e<r;e++){for(t[e]==t[a]?i[e]=i[a]:i[e]=a;a>0&&t[e]!=t[a];)a=i[a];t[e]==t[a]&&a++}a=0;for(let r=n;r<e.length;r++){for(;a>0&&e[r]!=t[a];)a=i[a];e[r]==t[a]&&a++}return a}function KC(e,t){let n=[];for(let r of Array.from(t.segment(e))){let e=r.segment;n.length&&/\s/.test(n[n.length-1])&&/\s/.test(e)?n[n.length-1]+=e:n.push(e)}return n}function qC(e,t){if(t)return YC(e,t)[1];let n;for(n=e.length-1;n>=0&&e[n].match(/\s/);n--);return e.substring(n+1)}function JC(e,t){if(t)return YC(e,t)[0];let n=e.match(/^\s*/);return n?n[0]:``}function YC(e,t){if(!t)return[JC(e),qC(e)];if(t.resolvedOptions().granularity!=`word`)throw Error(`The segmenter passed must have a granularity of "word"`);let n=KC(e,t),r=n[0],i=n[n.length-1];return[/\s/.test(r)?r:``,/\s/.test(i)?i:``]}var XC=`a-zA-Z0-9_\\u{AD}\\u{C0}-\\u{D6}\\u{D8}-\\u{F6}\\u{F8}-\\u{2C6}\\u{2C8}-\\u{2D7}\\u{2DE}-\\u{2FF}\\u{1E00}-\\u{1EFF}`,ZC=RegExp(`[${XC}]+|\\s+|[^${XC}]`,`ug`);new class extends LC{equals(e,t,n){return n.ignoreCase&&(e=e.toLowerCase(),t=t.toLowerCase()),e.trim()===t.trim()}tokenize(e,t={}){let n;if(t.intlSegmenter){let r=t.intlSegmenter;if(r.resolvedOptions().granularity!=`word`)throw Error(`The segmenter passed must have a granularity of "word"`);n=KC(e,r)}else n=e.match(ZC)||[];let r=[],i=null;return n.forEach(e=>{/\s/.test(e)?i==null?r.push(e):r.push(r.pop()+e):i!=null&&/\s/.test(i)?r[r.length-1]==i?r.push(r.pop()+e):r.push(i+e):r.push(e),i=e}),r}join(e){return e.map((e,t)=>t==0?e:e.replace(/^\s+/,``)).join(``)}postProcess(e,t){if(!e||t.oneChangePerToken)return e;let n=null,r=null,i=null;return e.forEach(e=>{e.added?r=e:e.removed?i=e:((r||i)&&QC(n,i,r,e,t.intlSegmenter),n=e,r=null,i=null)}),(r||i)&&QC(n,i,r,null,t.intlSegmenter),e}};function QC(e,t,n,r,i){if(t&&n){let[a,o]=YC(t.value,i),[s,c]=YC(n.value,i);if(e){let r=RC(a,s);e.value=VC(e.value,s,r),t.value=HC(t.value,r),n.value=HC(n.value,r)}if(r){let e=zC(o,c);r.value=BC(r.value,c,e),t.value=UC(t.value,e),n.value=UC(n.value,e)}}else if(n){if(e){let e=JC(n.value,i);n.value=n.value.substring(e.length)}if(r){let e=JC(r.value,i);r.value=r.value.substring(e.length)}}else if(e&&r){let n=JC(r.value,i),[a,o]=YC(t.value,i),s=RC(n,a);t.value=HC(t.value,s);let c=zC(HC(n,s),o);t.value=UC(t.value,c),r.value=BC(r.value,n,c),e.value=VC(e.value,n,n.slice(0,n.length-c.length))}else if(r){let e=JC(r.value,i),n=WC(qC(t.value,i),e);t.value=UC(t.value,n)}else if(e){let n=WC(qC(e.value,i),JC(t.value,i));t.value=HC(t.value,n)}}new class extends LC{tokenize(e){let t=RegExp(`(\\r?\\n)|[${XC}]+|[^\\S\\n\\r]+|[^${XC}]`,`ug`);return e.match(t)||[]}};var $C=new class extends LC{constructor(){super(...arguments),this.tokenize=tw}equals(e,t,n){return n.ignoreWhitespace?((!n.newlineIsToken||!e.includes(`
156
+ `))&&(e=e.trim()),(!n.newlineIsToken||!t.includes(`
157
+ `))&&(t=t.trim())):n.ignoreNewlineAtEof&&!n.newlineIsToken&&(e.endsWith(`
158
+ `)&&(e=e.slice(0,-1)),t.endsWith(`
159
+ `)&&(t=t.slice(0,-1))),super.equals(e,t,n)}};function ew(e,t,n){return $C.diff(e,t,n)}function tw(e,t){t.stripTrailingCr&&(e=e.replace(/\r\n/g,`
160
+ `));let n=[],r=e.split(/(\n|\r\n)/);r[r.length-1]||r.pop();for(let e=0;e<r.length;e++){let i=r[e];e%2&&!t.newlineIsToken?n[n.length-1]+=i:n.push(i)}return n}function nw(e){return e==`.`||e==`!`||e==`?`}new class extends LC{tokenize(e){let t=[],n=0;for(let r=0;r<e.length;r++){if(r==e.length-1){t.push(e.slice(n));break}if(nw(e[r])&&e[r+1].match(/\s/)){for(t.push(e.slice(n,r+1)),r=n=r+1;e[r+1]?.match(/\s/);)r++;t.push(e.slice(n,r+1)),n=r+1}}return t}},new class extends LC{tokenize(e){return e.split(/([{}:;,]|\s+)/)}},new class extends LC{constructor(){super(...arguments),this.tokenize=tw}get useLongestToken(){return!0}castInput(e,t){let{undefinedReplacement:n,stringifyReplacer:r=(e,t)=>t===void 0?n:t}=t;return typeof e==`string`?e:JSON.stringify(rw(e,null,null,r),null,` `)}equals(e,t,n){return super.equals(e.replace(/,([\r\n])/g,`$1`),t.replace(/,([\r\n])/g,`$1`),n)}};function rw(e,t,n,r,i){t||=[],n||=[],r&&(e=r(i===void 0?``:i,e));let a;for(a=0;a<t.length;a+=1)if(t[a]===e)return n[a];let o;if(Object.prototype.toString.call(e)===`[object Array]`){for(t.push(e),o=Array(e.length),n.push(o),a=0;a<e.length;a+=1)o[a]=rw(e[a],t,n,r,String(a));return t.pop(),n.pop(),o}if(e&&e.toJSON&&(e=e.toJSON()),typeof e==`object`&&e){t.push(e),o={},n.push(o);let i=[],s;for(s in e)Object.prototype.hasOwnProperty.call(e,s)&&i.push(s);for(i.sort(),a=0;a<i.length;a+=1)s=i[a],o[s]=rw(e[s],t,n,r,s);t.pop(),n.pop()}else o=e;return o}new class extends LC{tokenize(e){return e.slice()}join(e){return e}removeEmpty(e){return e}};function iw(e){for(let t=0;t<e.length;t++)if(e[t]<` `||e[t]>`~`||e[t]===`"`||e[t]===`\\`)return!0;return!1}function aw(e){if(!iw(e))return e;let t=`"`,n=new TextEncoder().encode(e),r=0;for(;r<n.length;){let e=n[r];e===7?t+=`\\a`:e===8?t+=`\\b`:e===9?t+=`\\t`:e===10?t+=`\\n`:e===11?t+=`\\v`:e===12?t+=`\\f`:e===13?t+=`\\r`:e===34?t+=`\\"`:e===92?t+=`\\\\`:e>=32&&e<=126?t+=String.fromCharCode(e):t+=`\\`+e.toString(8).padStart(3,`0`),r++}return t+=`"`,t}var ow={includeIndex:!0,includeUnderline:!0,includeFileHeaders:!0};function sw(e,t,n,r,i,a,o){let s;s=o?typeof o==`function`?{callback:o}:o:{},s.context===void 0&&(s.context=4);let c=s.context;if(s.newlineIsToken)throw Error(`newlineIsToken may not be used with patch-generation functions, only with diffing functions`);if(s.callback){let{callback:e}=s;ew(n,r,Object.assign(Object.assign({},s),{callback:t=>{e(l(t))}}))}else return l(ew(n,r,s));function l(n){if(!n)return;n.push({value:``,lines:[]});function r(e){return e.map(function(e){return` `+e})}let o=[],s=0,l=0,u=[],d=1,f=1;for(let e=0;e<n.length;e++){let t=n[e],i=t.lines||uw(t.value);if(t.lines=i,t.added||t.removed){if(!s){let t=n[e-1];s=d,l=f,t&&(u=c>0?r(t.lines.slice(-c)):[],s-=u.length,l-=u.length)}for(let e of i)u.push((t.added?`+`:`-`)+e);t.added?f+=i.length:d+=i.length}else{if(s)if(i.length<=c*2&&e<n.length-2)for(let e of r(i))u.push(e);else{let e=Math.min(i.length,c);for(let t of r(i.slice(0,e)))u.push(t);let t={oldStart:s,oldLines:d-s+e,newStart:l,newLines:f-l+e,lines:u};o.push(t),s=0,l=0,u=[]}d+=i.length,f+=i.length}}for(let e of o)for(let t=0;t<e.lines.length;t++)e.lines[t].endsWith(`
161
+ `)?e.lines[t]=e.lines[t].slice(0,-1):(e.lines.splice(t+1,0,`\`),t++);return{oldFileName:e,newFileName:t,oldHeader:i,newHeader:a,hunks:o}}}function cw(e,t){if(t||=ow,Array.isArray(e)){if(e.length>1&&!t.includeFileHeaders&&!e.every(e=>e.isGit))throw Error(`Cannot omit file headers on a multi-file patch. (The result would be unparseable; how would a tool trying to apply the patch know which changes are to which file?)`);return e.map(e=>cw(e,t)).join(`
162
+ `)}let n=[];if(e.isGit){if(t=ow,!e.oldFileName)throw Error(`oldFileName must be specified for Git patches`);if(!e.newFileName)throw Error(`newFileName must be specified for Git patches`);let r=e.oldFileName,i=e.newFileName;e.isCreate&&r===`/dev/null`?r=i.replace(/^b\//,`a/`):e.isDelete&&i===`/dev/null`&&(i=r.replace(/^a\//,`b/`)),n.push(`diff --git `+aw(r)+` `+aw(i)),e.isDelete&&n.push(`deleted file mode `+(e.oldMode??`100644`)),e.isCreate&&n.push(`new file mode `+(e.newMode??`100644`)),e.oldMode&&e.newMode&&!e.isDelete&&!e.isCreate&&(n.push(`old mode `+e.oldMode),n.push(`new mode `+e.newMode)),e.isRename&&(n.push(`rename from `+aw((e.oldFileName??``).replace(/^a\//,``))),n.push(`rename to `+aw((e.newFileName??``).replace(/^b\//,``)))),e.isCopy&&(n.push(`copy from `+aw((e.oldFileName??``).replace(/^a\//,``))),n.push(`copy to `+aw((e.newFileName??``).replace(/^b\//,``))))}else t.includeIndex&&e.oldFileName==e.newFileName&&e.oldFileName!==void 0&&n.push(`Index: `+e.oldFileName),t.includeUnderline&&n.push(`===================================================================`);let r=e.hunks.length>0;t.includeFileHeaders&&e.oldFileName!==void 0&&e.newFileName!==void 0&&(!e.isGit||r)&&(n.push(`--- `+aw(e.oldFileName)+(e.oldHeader?` `+e.oldHeader:``)),n.push(`+++ `+aw(e.newFileName)+(e.newHeader?` `+e.newHeader:``)));for(let t=0;t<e.hunks.length;t++){let r=e.hunks[t],i=r.oldLines===0?r.oldStart-1:r.oldStart,a=r.newLines===0?r.newStart-1:r.newStart;n.push(`@@ -`+i+`,`+r.oldLines+` +`+a+`,`+r.newLines+` @@`);for(let e of r.lines)n.push(e)}return n.join(`
163
+ `)+`
164
+ `}function lw(e,t,n,r,i,a,o){if(typeof o==`function`&&(o={callback:o}),o?.callback){let{callback:s}=o;sw(e,t,n,r,i,a,Object.assign(Object.assign({},o),{callback:e=>{s(e?cw(e,o.headerOptions):void 0)}}))}else{let s=sw(e,t,n,r,i,a,o);return s?cw(s,o?.headerOptions):void 0}}function uw(e){let t=e.endsWith(`
165
+ `),n=e.split(`
166
+ `).map(e=>e+`
167
+ `);return t?n.pop():n.push(n.pop().slice(0,-1)),n}var dw=64*1024,fw=4*1024;function pw(e){return e&&typeof e==`object`&&!Array.isArray(e)?e:{}}function mw(e){return Array.isArray(e)?e:[]}function $(e){return typeof e==`string`?e:e==null?``:String(e)}function hw(e){return mw(e).map(pw).filter(e=>e.type===`text`&&typeof e.text==`string`).map(e=>e.text).join(``).trim()}function gw(e){return e.replace(/\s*\*?Context compacted(?: to fit the model's context window)?\.\*?\s*/gi,``).trim()}function _w(e){return $(pw(pw(e._meta).codex).phase).trim().toLowerCase()}function vw(e){return mw(e).map(pw).filter(e=>e.type===`diff`&&typeof e.path==`string`&&e.path.trim())}function yw(e){let t=$(pw(e._meta).kind).trim().toLowerCase();return[`add`,`added`,`create`,`created`].includes(t)?`Added`:[`delete`,`deleted`,`remove`,`removed`].includes(t)?`Deleted`:[`move`,`moved`].includes(t)?`Moved`:[`rename`,`renamed`].includes(t)?`Renamed`:`Updated`}function bw(e){let t=$(e);return t.length<=dw?t:`${t.slice(0,dw)}\n\n[Diff detail truncated]`}function xw(e){let t=$(e.path).trim();return`File: ${t}\n${bw(lw(t,t,$(e.oldText),$(e.newText),`before`,`after`,{context:3}))}`.trim()}function Sw(e){return vw(e).map(e=>`${yw(e)} ${$(e.path).trim()}`).join(`
168
+ `)}function Cw(e,t){return ew(e,t).reduce((e,t)=>{let n=Number(t.count||0);return t.added&&(e.added+=n),t.removed&&(e.removed+=n),e},{added:0,removed:0})}function ww(e,t={}){return vw(e).map(e=>{let n=$(e.path).trim(),r=Cw($(e.oldText),$(e.newText));return{path:n,kind:yw(e).toLowerCase(),added:r.added,removed:r.removed,...$(t[n])?{decision:$(t[n])}:{}}})}function Tw(e){if(e==null)return``;if(typeof e==`string`)return e;try{return JSON.stringify(e,null,2)}catch{return String(e)}}function Ew(e){return mw(e).map(e=>{let t=pw(e);if(t.type===`content`){let e=pw(t.content);return e.type===`text`?$(e.text):e.type===`resource_link`?[e.name,e.uri].filter(Boolean).join(` — `):e.type===`resource`?Tw(e.resource):e.type===`image`?`[Image: ${$(e.mimeType)||`image`}]`:e.type===`audio`?`[Audio: ${$(e.mimeType)||`audio`}]`:Tw(e)}return t.type===`diff`?xw(t):t.type===`text`?$(t.text):t.type===`image`||t.type===`audio`?``:t.type===`resource_link`?[t.name,t.uri].map($).filter(Boolean).join(` — `):t.type===`resource`?Tw(t.resource):Tw(t)}).filter(Boolean).join(`
169
+
170
+ `).trim()}function Dw(e){let t=pw(e.rawOutput),n=pw(t.result);return Array.isArray(n.content)?n.content:Array.isArray(t.content)?t.content:[]}function Ow(e){return e.replace(/<app_specific_instructions>[\s\S]*?<\/app_specific_instructions>\s*/gi,``).trim()}function kw(e){let t=new Set;return e.filter(e=>!e.url||t.has(e.url)?!1:(t.add(e.url),!0))}function Aw(e,t){return mw(e).map(pw).filter(e=>e.type===`image`&&typeof e.data==`string`&&e.data).map((e,n)=>({id:`${t}-image-${n+1}`,url:`data:${$(e.mimeType)||`image/png`};base64,${e.data}`,alt:`Image`}))}function jw(e,t){return mw(e).map(pw).filter(e=>e.type===`audio`&&typeof e.data==`string`&&e.data).map((e,n)=>({id:`${t}-audio-${n+1}`,url:`data:${$(e.mimeType)||`audio/mpeg`};base64,${e.data}`,mimeType:$(e.mimeType)||`audio/mpeg`,name:$(e.name)||`Audio ${n+1}`}))}function Mw(e,t){return mw(e).flatMap((e,n)=>{let r=pw(e);if(r.type===`resource_link`)return[{id:`${t}-resource-link-${n+1}`,name:$(r.name||r.uri)||`Resource`,content:$(r.uri),uri:$(r.uri),mimeType:$(r.mimeType),resourceKind:`link`}];if(r.type!==`resource`||!r.resource)return[];let i=pw(r.resource);return[{id:`${t}-resource-${n+1}`,name:$(i.name||i.uri)||`Resource`,content:$(i.text||i.uri),uri:$(i.uri),mimeType:$(i.mimeType),resourceKind:i.blob?`blob`:`embedded`,...i.blob?{error:`[Binary resource: ${$(i.mimeType)||`application/octet-stream`}]`}:{}}]})}function Nw(e,t){let n=e.trim();if(!n||t==null)return!1;if(n===Tw(t).trim())return!0;try{return JSON.stringify(JSON.parse(n))===JSON.stringify(t)}catch{return!1}}function Pw(e){let t=e.rawOutput;if($(e.kind).toLowerCase()===`execute`&&t&&typeof t==`object`&&!Array.isArray(t)){let e=pw(t),n=typeof e.stdout==`string`?e.stdout.trimEnd():``,r=typeof e.stderr==`string`?e.stderr.trimEnd():``,i=[];if(n&&i.push(n),r&&i.push(`stderr\n${r}`),e.interrupted===!0&&i.push(`Interrupted`),i.length>0)return i.join(`
171
+
172
+ `)}let n=Dw(e);if(n.length>0){let e=Ow(Ew(n)),r=pw(t).error;return[e,r?`Error\n${Tw(r)}`:``].filter(Boolean).join(`
173
+
174
+ `)}return Tw(t).trim()}function Fw(e){let t=[],n=Tw(e.rawInput).trim(),r=Ew(mw(e.content).filter(e=>pw(e).type!==`terminal`)),i=Pw(e);Nw(r,e.rawOutput)&&(r=``);let a=mw(e.locations).map(e=>{let t=pw(e);return`${$(t.path||t.uri)}${t.line==null?``:`:${$(t.line)}`}`}).filter(Boolean).join(`
175
+ `);return n&&t.push(`Input\n${n}`),r&&t.push(r),i&&t.push(`Output\n${i}`),a&&t.push(`Locations\n${a}`),t.join(`
176
+
177
+ `)}function Iw(e){return e.length<=fw?{detail:e,detailTruncated:!1}:{detail:`${e.slice(0,fw)}\n\n[Open to load full detail]`,detailTruncated:!0}}function Lw(e){let t=pw(e),n=mw(t.entries).map(pw);return n.length>0?n.map(e=>`${$(e.status)||`pending`}: ${$(e.content||e.title)}`).join(`
178
+ `):t.type===`markdown`?$(t.content):t.type===`file`?$(t.uri):``}function Rw(e){return e===`authentication`?`Authentication required`:e===`payment`?`Billing problem`:e===`context`?`Context limit reached`:e===`model`?`Model unavailable`:e===`rate-limit`?`Rate limit reached`:e===`network`?`Connection problem`:e===`protocol`?`ACP protocol error`:`Agent error`}function zw(e){if(e.type===`error`){let t=$(e.kind)||`unknown`;return{id:$(e.id),type:`error`,kind:t,title:Rw(t),detail:$(e.message),status:`failed`}}if(e.type===`thought`){let t=hw(e.content);return t?{id:$(e.id),type:`thought`,title:`Reasoning`,detail:t,status:`completed`}:null}if(e.type===`tool`){let t=pw(pw(e._meta).subagent_session_info),n=mw(e.content).map(pw).filter(e=>e.type===`terminal`&&e.terminalId).map(e=>$(e.terminalId)),r=mw(e.content).map(pw).filter(e=>e.type===`content`&&e.content).map(e=>e.content),i=Dw(e),a=[...r,...i],o=$(e.id)||`tool`,s=kw(Aw(a,o)),c=kw(jw(a,o)),l=Mw(a,o),u=$(e.transcriptPatchSummary)||Sw(e.content),d=Array.isArray(e.transcriptChanges)?e.transcriptChanges.map(pw).map(e=>({path:$(e.path),kind:$(e.kind),added:Number(e.added||0),removed:Number(e.removed||0),...$(e.decision)?{decision:$(e.decision)}:{}})):ww(e.content,pw(pw(e._meta).farming_patch_decisions)),f=typeof e.transcriptDetail==`string`?{detail:e.transcriptDetail,detailTruncated:e.transcriptDetailTruncated===!0}:Iw([u,Fw(e)].filter(Boolean).join(`
179
+
180
+ `)),p=$(t.session_id);return{id:$(e.id),type:p?`subagent`:u?`patch`:`tool`,kind:$(e.kind)||`other`,title:$(e.title)||`Tool`,detail:[p?`Session ${p}`:``,f.detail].filter(Boolean).join(`
181
+
182
+ `),detailTruncated:f.detailTruncated,status:$(e.status),...n.length>0?{terminalIds:n}:{},...p?{subagentSessionId:p}:{},...s.length>0?{images:s}:{},...c.length>0?{audios:c}:{},...l.length>0?{files:l}:{},...d.length>0?{changes:d}:{}}}if(e.type===`plan`){let t=Lw(e.plan);if(!t)return null;let n=mw(pw(e.plan).entries).map(pw),r=n.filter(e=>e.status===`completed`).length,i=n.find(e=>[`in_progress`,`running`].includes($(e.status)));return{id:$(e.id),type:`plan`,title:`Plan`,detail:t,status:n.length>0&&n.every(e=>e.status===`completed`)?`completed`:`running`,completedSteps:r,totalSteps:n.length,currentStep:$(i?.content||i?.title)}}return e.type===`compaction`?{id:$(e.id),type:`compaction`,title:e.status===`completed`?`Context compacted`:`Compacting context`,detail:$(e.summary),status:$(e.status)||`completed`}:null}function Bw(e){if(e.type!==`tool`)return!1;if(e.generatedMedia===!0)return!0;let t=$(e.title).trim().toLowerCase(),n=$(e.id).trim().toLowerCase(),r=pw(e.rawOutput);return n.startsWith(`ig_`)||t===`image generation`||t===`audio generation`||!!$(r.savedPath).includes(`/generated_images/`)}function Vw(e,t){return{id:e,internal:t,userMessage:``,userImages:[],userFiles:[],userAudios:[],resultImages:[],resultFiles:[],resultAudios:[],finalMessage:``,startedAt:null,completedAt:null,durationMs:null,status:`completed`,processItems:[],assistantMessages:[]}}function Hw(e,t){if(!e)return null;let n=e.assistantMessages[e.assistantMessages.length-1],r=e.processItems[e.processItems.length-1];e.internal&&n?.text?e.finalMessage=n.text:!e.finalMessage&&!t&&n?.text&&n.processItemId&&n.phase!==`commentary`&&r?.id===n.processItemId&&(r.images||[]).length===0&&(r.audios||[]).length===0&&(r.files||[]).length===0&&(e.finalMessage=n.text,e.processItems.pop());let{internal:i,assistantMessages:a,...o}=e;return i&&(o.processItems=[]),o.userMessage||o.finalMessage||o.userImages.length>0||o.userAudios.length>0||o.userFiles.length>0||o.resultImages.length>0||o.resultAudios.length>0||o.resultFiles.length>0||o.processItems.length>0?o:null}function Uw(e,t={}){let n=pw(e),r=[],i=null,a=0,o=[`working`,`waiting-for-permission`,`waiting-for-input`,`interrupting`].includes($(n.state)),s=(e=!1)=>{let t=Hw(i,e);t&&r.push(t),i=null};for(let e of mw(n.entries)){let t=pw(e);if(t.type===`message`&&t.role===`user`){s();let e=$(t.id)||String(++a);i=Vw(`acp-turn-${e}`,t.internal===!0),i.startedAt=t.turnStartedAt==null?null:Number(t.turnStartedAt),i.completedAt=t.turnCompletedAt==null?null:Number(t.turnCompletedAt),i.durationMs=Number.isFinite(Number(t.turnDurationMs))?Number(t.turnDurationMs):null,t.internal||(i.userMessage=hw(t.content),i.userImages=Aw(t.content,e),i.userAudios=jw(t.content,e),i.userFiles=Mw(t.content,e));continue}if(i||=Vw(`acp-segment-${++a}`,t.internal===!0),t.internal===!0&&!i.internal&&(s(),i=Vw(`acp-segment-${++a}`,!0)),t.type===`message`&&t.role===`assistant`){let e=gw(hw(t.content)),n=_w(t),r=$(t.id)||`assistant`,o=Aw(t.content,r),s=jw(t.content,r),c=Mw(t.content,r);if(n===`final_answer`&&e){i.finalMessage=e;continue}let l=e?`acp-progress-${$(t.id)||String(++a)}`:``;i.assistantMessages.push({text:e,processItemId:l,phase:n}),!i.internal&&(e||o.length>0||s.length>0||c.length>0)&&i.processItems.push({id:l,type:`progress`,title:`Progress update`,detail:e,status:`completed`,...o.length>0?{images:o}:{},...s.length>0?{audios:s}:{},...c.length>0?{files:c}:{}});continue}if(i.internal||t.internal===!0)continue;let n=zw(t);n&&Bw(t)?(i.resultImages=kw([...i.resultImages,...n.images||[]]),i.resultAudios=kw([...i.resultAudios,...n.audios||[]]),i.resultFiles.push(...n.files||[]),i.processItems.push({...n,images:void 0,audios:void 0,files:void 0})):n&&i.processItems.push(n)}s(o);let c=r[r.length-1];c&&o?c.status=`inProgress`:c&&[`cancelled`,`canceled`,`max_tokens`,`max_turn_requests`,`refusal`,`error`,`cancel_error`].includes($(n.stopReason).toLowerCase())&&(c.status=`interrupted`);let l=Number.isFinite(Number(t.maxTurns))?Math.max(1,Math.floor(Number(t.maxTurns))):80,u=r.slice(-l);return{version:2,available:u.length>0,reason:u.length>0?void 0:`empty-acp-session`,sessionId:$(n.sessionId),title:$(n.title),updatedAt:$(n.updatedAt),source:`acp`,state:$(n.state),error:$(n.error),errorKind:$(n.errorKind),revision:Number(n.revision||0),delta:n.delta===!0,replaceFromTurnId:n.delta===!0?$(u[0]?.id):``,stopReason:$(n.stopReason),hasMoreBefore:n.hasMoreBefore===!0||r.length>u.length,turnLimit:l,truncated:n.truncated===!0,turns:u}}function Ww(e){let t=String(e.type||``).trim().toLowerCase(),n=String(e.kind||``).trim().toLowerCase();return t===`thought`||t===`progress`||t===`plan`?null:t===`patch`||[`edit`,`delete`,`move`].includes(n)?`edit`:n===`read`||t===`file-read`||t===`read`?`read`:n===`search`||t===`search`||t===`web-search`?`search`:n===`execute`||t===`command`?`execute`:n===`fetch`?`fetch`:`tool`}function Gw(e,t){return e===`edit`?t===1?`Edited a file`:`Edited files`:e===`read`?t===1?`Read a file`:`Read files`:e===`search`?t===1?`Searched code`:`Searched code ${t} times`:e===`execute`?t===1?`Ran a command`:`Ran commands`:e===`fetch`?t===1?`Fetched a resource`:`Fetched resources`:t===1?`Used a tool`:`Used tools`}function Kw(e){let t=e.filter(e=>[`failed`,`rejected`,`cancelled`,`canceled`].includes(String(e.status||``).toLowerCase())).length;if(t>0)return t===1?`Action failed`:`${t} actions failed`;let n=new Map;for(let t of e){let e=Ww(t);e&&n.set(e,(n.get(e)||0)+1)}return n.size===0?`Reasoning`:[...n.entries()].map(([e,t],n)=>{let r=Gw(e,t);return n===0?r:`${r.charAt(0).toLowerCase()}${r.slice(1)}`}).join(`, `)}function qw(e){return String(e.type||``).trim().toLowerCase()===`progress`}function Jw(e){return e.trim().replace(/\\/g,`/`)}function Yw(e){return Jw(e).replace(/\/+$/,``)}function Xw(e){let t=Yw(e);return/^\/Users\/[^/]+/.exec(t)?.[0]??``}function Zw(e,t){let n=Jw(e).replace(/\/+$/,``),r=Yw(t);if(!n||!r)return null;let i=[r];r===`/private/tmp`||r.startsWith(`/private/tmp/`)||r===`/private/var`||r.startsWith(`/private/var/`)?i.push(r.slice(8)):(r===`/tmp`||r.startsWith(`/tmp/`)||r===`/var`||r.startsWith(`/var/`))&&i.push(`/private${r}`);for(let e of i){if(n===e)return``;let t=`${e}/`;if(n.startsWith(t))return n.slice(t.length)}return null}function Qw(e,t){let n=Jw(e);if(!n||n.startsWith(`../`))return null;if(n.startsWith(`./`))return n.replace(/^\.\/+/,``);if(n.startsWith(`~/`)){let e=Xw(t);return e?Zw(`${e}/${n.slice(2)}`,t):null}return n.startsWith(`/`)?Zw(n,t):n}function $w(e,t){let n=e.processItems[e.processItems.length-1],r=t.processItems[t.processItems.length-1];return e.status!==`inProgress`&&t.status!==`inProgress`&&e.userMessage===t.userMessage&&e.finalMessage===t.finalMessage&&e.startedAt===t.startedAt&&e.completedAt===t.completedAt&&e.durationMs===t.durationMs&&e.userImages?.length===t.userImages?.length&&e.userAudios?.length===t.userAudios?.length&&e.userFiles?.length===t.userFiles?.length&&e.resultImages?.length===t.resultImages?.length&&e.resultAudios?.length===t.resultAudios?.length&&e.resultFiles?.length===t.resultFiles?.length&&e.processItems.length===t.processItems.length&&n?.id===r?.id&&n?.status===r?.status&&n?.title===r?.title&&n?.detail===r?.detail}function eT(e,t){if(!e||!t||e.sessionId!==t.sessionId)return t;let n=new Map(e.turns.filter(e=>e.status!==`inProgress`).map(e=>[e.id,e]));return{...t,turns:t.turns.map(e=>{let t=n.get(e.id);return t&&$w(t,e)?t:e})}}function tT(e,t){if(!t?.delta)return eT(e,t);if(!e||e.sessionId!==t.sessionId)return t;if(!t.replaceFromTurnId||t.turns.length===0)return{...e,...t,available:e.available,hasMoreBefore:e.hasMoreBefore,turns:e.turns};let n=e.turns.findIndex(e=>e.id===t.replaceFromTurnId);if(n<0){let n=new Set(e.turns.map(e=>e.id)),r=t.turns.filter(e=>!n.has(e.id)),i=[...e.turns,...r],a=e.turnLimit&&i.length>e.turnLimit?i.slice(-e.turnLimit):i;return eT(e,{...e,...t,available:e.available||t.available,hasMoreBefore:e.hasMoreBefore||t.hasMoreBefore||a.length<i.length,turns:a})}return eT(e,{...t,available:e.available||t.available,hasMoreBefore:e.hasMoreBefore||t.hasMoreBefore,turns:[...e.turns.slice(0,n),...t.turns]})}function nT(e,t){if(iE(t)){ae(ue(e,`chat`));return}let n=t.getBoundingClientRect(),r=Array.from(t.querySelectorAll(`[data-turn-id]`)).find(e=>e.getBoundingClientRect().bottom>n.top);if(!r)return;let i=Array.from(r.querySelectorAll(`[data-process-item-id]`)).find(e=>e.getBoundingClientRect().bottom>n.top),a=(i||r).getBoundingClientRect(),o=a.height>0?Math.max(0,Math.min(1,(n.top-a.top)/a.height)):0,s=r.dataset.turnId;s&&B({version:1,surface:`chat`,resource:{kind:`agent`,id:e},locator:{kind:`message`,id:s,...i?.dataset.processItemId?{childId:i.dataset.processItemId}:{}},position:{unit:`fraction`,value:o}})}function rT(e,t){let n=ue(e,`chat`),r=ne(n);if(!r)return`none`;if(r.surface!==`chat`||r.resource.kind!==`agent`)return ae(n),`expired`;let i=t.querySelector(`[data-turn-id="${CSS.escape(r.locator.id)}"]`);if(!i)return ae(n),`expired`;let a=((r.locator.childId?i.querySelector(`[data-process-item-id="${CSS.escape(r.locator.childId)}"]`):null)||i).getBoundingClientRect(),o=t.getBoundingClientRect(),s=a.height*r.position.value;return t.scrollTop+=a.top+s-o.top,`restored`}var iT=80,aT=80,oT=20,sT=20,cT=1e3;function lT(e){return e===`acp`?oT:iT}var uT=72,dT=96;function fT(e){if(!e||!Number.isFinite(e)||e<1e3)return``;let t=Math.round(e/1e3);if(t<=0)return``;if(t<60)return`${t}s`;let n=Math.floor(t/60),r=t%60;return r?`${n}m ${r}s`:`${n}m`}function pT(e){let t=Number(e);if(!Number.isFinite(t)||t<=0)return``;let n=t<0xe8d4a51000?t*1e3:t;return fT(Math.max(0,Date.now()-n))}function mT(e,t){return{thinking:t.codexTranscriptThinking,running:t.codexTranscriptRunning,reading:t.codexTranscriptReading,searching:t.codexTranscriptSearching,editing:t.codexTranscriptEditing,plan:t.codexTranscriptPlanActive,fetching:t.codexTranscriptFetching,tool:t.codexTranscriptUsingTool,processing:t.codexTranscriptWorking}[NC(e.processItems)]}function hT(e,t){let n=PC(e.processItems);return n?FC(e.processItems)||(n.total<=99?t.codexTranscriptPlanProgress(n.completed,n.total):t.codexTranscriptPlanActive):``}function gT(e,t,n=t.codexTranscriptWorking,r=``){let i=fT(e.durationMs),a=e.status===`interrupted`?e.processItems.find(e=>e.type===`error`):void 0;return a?.title?a.title:i?t.codexTranscriptWorkedFor(i):e.status===`inProgress`?r||n:t.codexTranscriptProcess}function _T(e,t){if(!(e.processItems.length<=0))return t.codexTranscriptProcessCount(e.processItems.length)}function vT(e){let t=e.split(`
183
+ `);return t.map((e,n)=>(0,K.jsxs)(`span`,{children:[e,n<t.length-1?(0,K.jsx)(`br`,{}):null]},n))}function yT(e){return e.replace(/<oai-mem-citation>[\s\S]*?<\/oai-mem-citation>/g,``).trim()}function bT(e){let t=e.trim();return xT(t)?!1:/^[a-z][a-z\d+.-]*:/i.test(t)||ST(t)}function xT(e){return/^[^/\s]+\.[A-Za-z0-9+_-]+:\d+(?::\d+(?:-\d+)?)?$/.test(e.trim())}function ST(e){return/^(?:[a-z0-9-]+\.)+[a-z]{2,}(?::\d+)?[/?#].*$/i.test(e.trim())}function CT(e){let t=e.trim();return ST(t)?`https://${t}`:e}var wT=new Set(`c.cc.cpp.cxx.h.hh.hpp.hxx.go.java.js.jsx.ts.tsx.mjs.cjs.json.jsonl.py.rb.rs.sh.bash.zsh.sql.md.mdx.pdf.txt.xml.html.css.scss.less.yaml.yml.toml.ini.conf.gradle.kt.kts.scala.proto.swift.vue.svelte.svg.png.jpg.jpeg.gif.webp`.split(`.`)),TT=new Set([`BUILD`,`BUCK`,`Dockerfile`,`Makefile`,`WORKSPACE`]);function ET(e){return e.replace(/:(\d+)(?::(\d+)(?:-(\d+))?)?$/,``)}function DT(e){let t=e.split(/[\\/]/).filter(Boolean).pop()||e;if(TT.has(t))return!0;let n=t.match(/\.([A-Za-z0-9+_-]+)$/);return n?wT.has((n[1]||``).toLowerCase()):!1}function OT(e){let t=e.trim();return!t||/\s/.test(t)||t.startsWith(`#`)||bT(t)||/^[A-Z_][A-Z0-9_]*(?:\s+[A-Z_][A-Z0-9_]*)*$/.test(t)?!1:DT(ET(t))}function kT(e){try{return decodeURI(e)}catch{return e}}function AT(e){let t=e.match(/:(\d+)(?::(\d+)(?:-(\d+))?)?$/);if(!t)return null;let n=Number(t[1]),r=t[2]?Number(t[2]):void 0,i=t[3]?Number(t[3]):void 0;return!Number.isFinite(n)||n<=0||r!==void 0&&(!Number.isFinite(r)||r<=0)||i!==void 0&&(!Number.isFinite(i)||i<=0)?null:{lineNumber:n,...r===void 0?{}:{column:r},...i===void 0?{}:{endColumn:i}}}function jT(e,t){let n=kT(e.trim()),r=ET(n);if(!r.startsWith(`/`)||r.startsWith(`//`)||!DT(r))return null;let i=Qw(r,t||``),a=i?``:Re(r);if(!i&&!a)return null;let o=AT(n);return{filePath:i||a,target:{...o||{},...!i&&a?{globalRoot:!0}:{}}}}function MT(e,t){let n=e.trim();if(!n||n.startsWith(`#`)||bT(n))return null;let r=jT(n,t);if(r)return r;if(!OT(n))return null;let i=Yv(n).find(e=>e.startIndex===0&&e.length===n.length&&e.pathTarget);if(!i?.pathTarget)return null;let a=i.pathTarget,o=Qw(a.path,t||``);if(!o&&!a.path.startsWith(`/`))return null;let s=!o&&a.path.startsWith(`/`)?Re(a.path):``;return!o&&!s?null:{filePath:o||s,target:{...a.lineNumber?{lineNumber:a.lineNumber,column:a.column,endColumn:a.endColumn}:{},...!o&&s?{globalRoot:!0}:{}}}}function NT(e){let t=e.trim();if(!t)return!1;let n=ET(t);return n.startsWith(`/`)||n.startsWith(`~/`)||n.startsWith(`./`)||n.startsWith(`../`)||n.includes(`/`)||/:(\d+)(?::(\d+)(?:-(\d+))?)?$/.test(t)}function PT(e,t){let n=ET(e.trim()).split(/[\\/]/).filter(Boolean).pop()||e.trim();return t&&t>1?`${n}:${t}`:n}function FT(e){if(e==null||typeof e==`boolean`)return``;if(typeof e==`string`||typeof e==`number`)return String(e);if(Array.isArray(e))return e.map(FT).join(``);if((0,G.isValidElement)(e)){let t=e.props;return FT(t.children)}return``}function IT(e){return FT(e).replace(/\n$/,``)}function LT(e){let t=G.Children.count(e)===1?G.Children.only(e):null;if(!(0,G.isValidElement)(t))return null;let n=t.props;return/\blanguage-mermaid\b/i.test(n.className||``)?IT(n.children):null}function RT(e,t){return t===`src`&&/^data:image\/(?:png|gif|jpe?g|webp|svg\+xml);base64,/i.test(e)||t===`href`&&xT(e)?e:t===`href`&&ST(e)?CT(e):Ie(e)}function zT({images:e}){return e.length<=0?null:(0,K.jsx)(`div`,{className:`code-codex-transcript-user-images`,"data-testid":`code-codex-transcript-user-images`,children:e.map(e=>(0,K.jsx)(`img`,{src:e.url,alt:e.alt||`Attached image`,loading:`lazy`,decoding:`async`},e.id))})}function BT(e){if(e.error)return e.error;if(e.resourceKind===`link`)return e.mimeType||`Resource link`;let t=e.content||``,n=t?t.split(`
184
+ `).length:0,r=t.length;return`${n===1?`1 line`:`${n} lines`} · ${r===1?`1 char`:`${r} chars`}${e.truncated?` · truncated`:``}`}function VT(e){if(!e)return``;try{let t=new URL(e);return[`http:`,`https:`].includes(t.protocol)?t.toString():``}catch{return``}}function HT({files:e}){return e.length<=0?null:(0,K.jsx)(`div`,{className:`code-codex-transcript-user-files`,"data-testid":`code-codex-transcript-user-files`,children:e.map(e=>{let t=e.content||``,n=!!t,r=e.resourceKind===`link`?VT(e.uri):``;return e.resourceKind===`link`?(0,K.jsxs)(`div`,{className:`code-codex-transcript-user-file code-codex-transcript-resource-link`,children:[(0,K.jsx)(UT,{filePath:e.name}),r?(0,K.jsx)(`a`,{href:r,target:`_blank`,rel:`noreferrer`,title:e.uri,children:e.name}):(0,K.jsx)(`span`,{title:e.uri,children:e.name}),(0,K.jsx)(`span`,{className:`code-codex-transcript-user-file-meta`,children:BT(e)})]},e.id):(0,K.jsxs)(`details`,{className:`code-codex-transcript-user-file ${e.error?`error`:``}`,children:[(0,K.jsxs)(`summary`,{children:[(0,K.jsx)(UT,{filePath:e.name}),(0,K.jsx)(`span`,{className:`code-codex-transcript-user-file-name`,title:e.name,children:e.name}),(0,K.jsx)(`span`,{className:`code-codex-transcript-user-file-meta`,children:BT(e)})]}),e.error?(0,K.jsx)(`div`,{className:`code-codex-transcript-user-file-error`,children:e.error}):n?(0,K.jsx)(`pre`,{children:t}):null]},e.id)})})}function UT({filePath:e}){let t=se(e);return(0,K.jsx)(`span`,{className:`code-codex-transcript-file-icon`,style:{WebkitMaskImage:`url("${t}")`,maskImage:`url("${t}")`},"aria-hidden":`true`})}function WT({children:e,filePath:t,lineNumber:n}){let r=PT(t,n);return(0,K.jsxs)(`span`,{title:n&&n>1?`${t}:${n}`:t,children:[(0,K.jsx)(UT,{filePath:t}),(0,K.jsx)(`span`,{className:`code-codex-transcript-file-label`,children:r})]})}function GT({images:e}){return e.length<=0?null:(0,K.jsx)(`div`,{className:`code-codex-transcript-process-images`,"data-testid":`code-codex-transcript-process-images`,children:e.map(e=>(0,K.jsx)(`img`,{src:e.url,alt:e.alt||`Generated image`,loading:`lazy`,decoding:`async`},e.id))})}function KT({images:e}){return e.length<=0?null:(0,K.jsx)(`div`,{className:`code-codex-transcript-result-images`,"data-testid":`code-codex-transcript-result-images`,children:e.map(e=>(0,K.jsx)(`img`,{src:e.url,alt:e.alt||`Generated image`,loading:`lazy`,decoding:`async`},e.id))})}function qT({audios:e}){return e.length<=0?null:(0,K.jsx)(`div`,{className:`code-codex-transcript-audios`,"data-testid":`code-codex-transcript-audios`,children:e.map(e=>(0,K.jsxs)(`figure`,{children:[e.name?(0,K.jsx)(`figcaption`,{children:e.name}):null,(0,K.jsx)(`audio`,{controls:!0,preload:`metadata`,src:e.url,children:e.mimeType?(0,K.jsx)(`source`,{src:e.url,type:e.mimeType}):null})]},e.id))})}function JT(e){let t=e.terminal?.exitStatus;return t?t.signal?`Exited (${t.signal})`:`Exited ${t.exitCode??``}`.trim():e.terminal?.released?`Released`:`Running`}function YT(e){return[String(e.terminal?.command||``).trim(),...Array.isArray(e.terminal?.args)?e.terminal.args:[]].filter(Boolean).join(` `)||e.terminalId}function XT(e){return!Number.isFinite(e)||Number(e)<0?``:Number(e)<1e3?`${Math.round(Number(e))}ms`:`${(Number(e)/1e3).toFixed(+(Number(e)<1e4))}s`}function ZT({terminals:e,onStop:t,onInput:n,onResize:r}){let[i,a]=(0,G.useState)(``),[o,s]=(0,G.useState)(``),[c,l]=(0,G.useState)(``);return e.length<=0?null:(0,K.jsx)(`div`,{className:`code-codex-transcript-terminals`,"data-testid":`code-codex-transcript-terminals`,children:e.map(e=>{let u=YT(e),d=XT(e.terminal?.durationMs),f=e.terminal?.output||``;return(0,K.jsxs)(`section`,{className:`code-codex-transcript-terminal`,children:[(0,K.jsxs)(`header`,{children:[(0,K.jsx)(`code`,{title:u,children:u}),(0,K.jsx)(`span`,{children:JT(e)}),!e.terminal?.exitStatus&&!e.terminal?.released&&t?(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-terminal-stop`,"data-testid":`code-acp-terminal-stop`,"aria-label":`Stop command`,title:`Stop command`,disabled:!!o,onClick:()=>{s(e.terminalId),l(``),t(e.terminalId).catch(e=>l(e instanceof Error?e.message:`Failed to stop command`)).finally(()=>s(``))},children:o===e.terminalId?(0,K.jsx)(`span`,{className:`code-permission-switching-spinner`}):(0,K.jsx)(Se,{})}):null,f?(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-terminal-copy`,"aria-label":i===e.terminalId?`Copied terminal output`:`Copy terminal output`,title:i===e.terminalId?`Copied`:`Copy output`,onClick:()=>{AE(f).then(t=>{t&&(a(e.terminalId),window.setTimeout(()=>a(t=>t===e.terminalId?``:t),1200))})},children:i===e.terminalId?(0,K.jsx)(ke,{}):(0,K.jsx)(Te,{})}):null]}),e.terminal?.cwd||d||e.terminal?.truncated?(0,K.jsxs)(`div`,{className:`code-codex-transcript-terminal-meta`,children:[e.terminal?.cwd?(0,K.jsx)(`span`,{title:e.terminal.cwd,children:e.terminal.cwd}):null,d?(0,K.jsx)(`span`,{children:d}):null,e.terminal?.truncated?(0,K.jsx)(`span`,{children:`Earlier output hidden`}):null]}):null,(0,K.jsx)(IC,{terminalId:e.terminalId,output:f,interactive:!!(e.terminal?.interactive&&!e.terminal.exitStatus&&!e.terminal.released&&n),onInput:n?t=>n(e.terminalId,t):void 0,onResize:r?(t,n)=>r(e.terminalId,t,n):void 0}),c?(0,K.jsx)(`div`,{className:`code-codex-transcript-terminal-error`,role:`alert`,children:c}):null]},e.terminalId)})})}function QT({item:e}){let t=String(e.detail||``).trim(),n=e.changes||[],r=!!(t||n.length>0),i=(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`span`,{children:e.title||`Action`}),tE(e.status)?(0,K.jsx)(`small`,{children:e.status}):null]});return r?(0,K.jsxs)(`details`,{className:`code-codex-transcript-subagent-action`,"data-testid":`code-codex-transcript-subagent-action`,children:[(0,K.jsxs)(`summary`,{children:[i,(0,K.jsx)(W,{})]}),t?(0,K.jsx)(`div`,{className:`detail`,children:vT(t)}):null,n.length>0?(0,K.jsx)(`div`,{className:`changes`,children:n.map((e,t)=>(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`span`,{title:e.path,children:e.path}),(0,K.jsxs)(`small`,{children:[e.added>0?`+${e.added}`:``,e.removed>0?` -${e.removed}`:``]})]},`${e.path}-${t}`))}):null]}):(0,K.jsx)(`div`,{className:`code-codex-transcript-subagent-action static`,children:i})}function $T({transcript:e,onStop:t}){let n=[`working`,`waiting-for-permission`,`waiting-for-input`,`interrupting`].includes(e.state||``),r=e.error?`Failed`:n?`Working`:`Completed`,i=e.turns.reduce((e,t)=>e+t.processItems.length,0),[a,o]=(0,G.useState)(!1),[s,c]=(0,G.useState)(!1),[l,u]=(0,G.useState)(``);(0,G.useEffect)(()=>{if(!a)return;let e=e=>{e.key===`Escape`&&o(!1)};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[a]);let d=(0,K.jsxs)(`div`,{className:`code-codex-transcript-subagent-entries`,children:[e.turns.map(e=>(0,K.jsxs)(`div`,{className:`code-codex-transcript-subagent-turn`,children:[e.userMessage?(0,K.jsx)(`div`,{className:`user`,children:vT(e.userMessage)}):null,e.processItems.length>0?(0,K.jsx)(`div`,{className:`actions`,children:e.processItems.map(e=>(0,K.jsx)(QT,{item:e},e.id))}):null,(0,K.jsx)(KT,{images:e.resultImages||[]}),e.finalMessage?(0,K.jsx)(`div`,{className:`assistant`,children:vT(e.finalMessage)}):null]},e.id)),e.turns.length===0?(0,K.jsx)(`div`,{className:`empty`,children:`No subagent output received yet`}):null]}),f=(0,K.jsxs)(`header`,{children:[(0,K.jsx)(`span`,{children:e.title||`Subagent`}),(0,K.jsxs)(`span`,{className:`code-codex-transcript-subagent-meta`,title:e.sessionId,children:[e.turns.length,` `,e.turns.length===1?`turn`:`turns`,i>0?` · ${i} ${i===1?`action`:`actions`}`:``]}),(0,K.jsx)(`span`,{className:`code-codex-transcript-subagent-status ${e.error?`error`:n?`active`:``}`,children:r}),n&&t?(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-subagent-control stop`,"data-testid":`code-acp-subagent-stop`,"aria-label":`Stop subagent`,title:`Stop subagent`,disabled:s,onClick:()=>{c(!0),u(``),t().catch(e=>u(e instanceof Error?e.message:`Failed to stop subagent`)).finally(()=>c(!1))},children:s?(0,K.jsx)(`span`,{className:`code-permission-switching-spinner`}):(0,K.jsx)(Se,{})}):null,(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-subagent-control`,"data-testid":`code-acp-subagent-fullscreen`,"aria-label":a?`Close subagent details`:`Open subagent details`,title:a?`Close details`:`Open details`,onClick:()=>o(e=>!e),children:a?(0,K.jsx)(Se,{}):(0,K.jsx)(`span`,{"aria-hidden":`true`,children:`↗`})})]});return(0,K.jsxs)(K.Fragment,{children:[(0,K.jsxs)(`section`,{className:`code-codex-transcript-subagent`,"data-testid":`code-codex-transcript-subagent`,children:[f,e.error?(0,K.jsx)(`div`,{className:`code-codex-transcript-subagent-error`,role:`status`,children:e.error}):null,l?(0,K.jsx)(`div`,{className:`code-codex-transcript-subagent-error`,role:`alert`,children:l}):null,d]}),a?(0,K.jsx)(`div`,{className:`code-codex-transcript-subagent-overlay`,role:`dialog`,"aria-modal":`true`,"aria-label":`Subagent details`,children:(0,K.jsxs)(`div`,{className:`code-codex-transcript-subagent-dialog`,children:[f,e.error?(0,K.jsx)(`div`,{className:`code-codex-transcript-subagent-error`,role:`status`,children:e.error}):null,l?(0,K.jsx)(`div`,{className:`code-codex-transcript-subagent-error`,role:`alert`,children:l}):null,d]})}):null]})}function eE(e){let t=e.type.replace(/[^a-z0-9_-]/gi,``).toLowerCase()||`event`,n=(e.status||``).replace(/[^a-z0-9_-]/gi,``).toLowerCase();return[`code-codex-transcript-process-item`,t,n?`status-${n}`:``].filter(Boolean).join(` `)}function tE(e){let t=String(e||``).trim().toLowerCase();return!!t&&t!==`completed`&&t!==`success`}function nE(e){let t=String(e.status||``).trim().replace(/[_-]/g,``).toLowerCase();return[`running`,`inprogress`,`pending`,`started`,`active`].includes(t)}function rE(e){return e.scrollHeight-e.clientHeight-e.scrollTop}function iE(e){return rE(e)<=dT}function aE(e){let t=window.getSelection();return!t||t.isCollapsed||t.rangeCount===0?!1:!!(t.anchorNode&&e.contains(t.anchorNode)||t.focusNode&&e.contains(t.focusNode))}function oE(e){let t=e.split(`
185
+ `).map(e=>e.trim()).filter(Boolean).map(e=>{let t=e.match(/^\[(x|>| )\]\s+(.+)$/i);if(!t)return null;let n=(t[1]||``).toLowerCase();return{status:n===`x`?`completed`:n===`>`?`running`:`pending`,text:t[2]||``}});return t.some(e=>e===null)?null:t}function sE(e){return[`message`,`agent-message`,`progress`,`reasoning`,`thought`,`hook`,`warning`,`error`,`review`,`rollback`,`compaction`,`subagent`].includes(e.type)}function cE(e){return sE(e)||e.type===`plan`||e.type===`user-steer`}function lE(e){return!cE(e)}function uE(e){let t=[],n=[],r=()=>{n.length>0&&t.push({kind:`group`,id:`group:${n.map(e=>e.id).join(`:`)}`,items:n}),n=[]};for(let i of e){if(lE(i)){n.push(i);continue}r(),t.push({kind:`item`,item:i})}return r(),t}function dE(e){let t=e.filter(e=>[`failed`,`rejected`,`cancelled`,`canceled`].includes(String(e.status||``).toLowerCase())).length;if(t>0)return t===1?`Action failed`:`${t} actions failed`;let n=e.reduce((e,t)=>{let n=t.type;return e[n]=(e[n]||0)+1,e},{}),r=n.command||0,i=(n[`file-read`]||0)+(n.read||0),a=(n[`web-search`]||0)+(n.search||0),o=n.patch||0;if(e.length===i+a&&(i>0||a>0)){let e=[];i>0&&e.push(i===1?`read a file`:`read ${i} files`),a>0&&e.push(`searched code`);let t=e.length===1?e[0]:`${e.slice(0,-1).join(`, `)} and ${e[e.length-1]}`;return t?t.charAt(0).toUpperCase()+t.slice(1):`Completed actions`}return e.length===r?r===1?`Ran command`:`Ran ${r} commands`:e.length===i?i===1?`Read a file`:`Read ${i} files`:e.length===a?a===1?`Searched code`:`Searched ${a} times`:o>0&&o===e.length?o===1?`Edited files`:`Edited files ${o} times`:r>0?`Ran ${e.length} actions`:`Completed ${e.length} actions`}function fE(e,t,n){return!!(t||n||(e.images||[]).length>0||(e.audios||[]).length>0||(e.files||[]).length>0||(e.terminals||[]).length>0||(e.terminalIds||[]).length>0||e.detailTruncated===!0||e.subagentSessionId||e.subagentTranscript)}function pE(e){return e.type===`patch`}function mE(e){return e.type===`user-steer`}function hE(e){return String(e.detail||``).split(`
186
+ `).map(e=>e.trim()).filter(Boolean).filter(e=>!e.startsWith(`Success.`)).filter(gE).slice(0,16)}function gE(e){let t=e.trim();return/^(add|added|delete|deleted|update|updated|move|moved|rename|renamed)\s+.+/i.test(t)||/^[AMDRC]\s+.+/.test(t)}function _E(e){let t=e.trim(),n=t.match(/^([AMDRC])\s+(.+)$/);if(n)return{kind:n[1]||``,path:n[2]||t,added:``,removed:``};let r=t.match(/\s(\+\d+)(?:\s(-\d+))?$/),i=r?.[1]||``,a=r?.[2]||``,o=r?t.slice(0,r.index).trim():t,s=o.match(/^(add|added|delete|deleted|update|updated|move|moved|rename|renamed)\s+(.+)$/i);return{kind:s?.[1]||``,path:s?.[2]||o,added:i,removed:a}}function vE(e){return String(e||``).replace(/\\/g,`/`).replace(/\/+/g,`/`).trim()}function yE(e,t){let n=vE(e),r=vE(t||``).replace(/\/+$/,``);if(!n||!r)return n;let i=[r];r.startsWith(`/private/`)&&i.push(r.slice(8)),(r.startsWith(`/var/`)||r.startsWith(`/tmp/`))&&i.push(`/private${r}`);for(let e of i){if(n===e)return``;if(n.startsWith(`${e}/`))return n.slice(e.length+1)}return n}function bE(e,t){return yE(e.path,t)||e.path}function xE(e){return!!(e.added||e.removed)}function SE(e,t){let n=[],r=new Map;for(let i of e){let e=bE(i,t),a=e||i.path,o=r.get(a);if(o===void 0){r.set(a,n.length),n.push({...i,path:e||i.path});continue}let s=n[o];s&&(xE(i)||!xE(s))&&(n[o]={...i,path:e||i.path})}return n}function CE(e,t){return SE(e.map(e=>({kind:e.kind,path:e.path,added:e.added>0?`+${e.added}`:``,removed:e.removed>0?`-${e.removed}`:``})),t)}function wE(e,t){return SE(e.flatMap(e=>e.changes?.length?CE(e.changes):hE(e).map(_E)),t)}function TE(e,t){return t?e===1?`Failed editing 1 file`:`Failed editing ${e} files`:e===1?`Edited 1 file`:`Edited ${e} files`}function EE(e,t){return t?TE(e,t):e===1?`1 file changed`:`${e} files changed`}function DE(e){return e.startsWith(`+`)&&!e.startsWith(`+++`)?`added`:e.startsWith(`-`)&&!e.startsWith(`---`)?`removed`:e.startsWith(`@@`)?`hunk`:e.startsWith(`Index:`)||e.startsWith(`===`)?`meta`:``}function OE(e){let t=document.createElement(`textarea`);t.value=e,t.setAttribute(`readonly`,`true`),t.setAttribute(`autocomplete`,`off`),t.setAttribute(`autocorrect`,`off`),t.setAttribute(`autocapitalize`,`none`),t.setAttribute(`spellcheck`,`false`),t.setAttribute(`data-lpignore`,`true`),t.setAttribute(`data-1p-ignore`,`true`),t.setAttribute(`data-bwignore`,`true`),t.setAttribute(`data-form-type`,`other`),t.style.position=`fixed`,t.style.left=`-9999px`,t.style.top=`0`,document.body.appendChild(t),t.focus(),t.select();let n=!1;try{n=document.execCommand(`copy`)}catch{n=!1}return t.remove(),n}function kE(e,t){let n=e.closest(`.code-codex-transcript-scroll`),r=e.getBoundingClientRect().top;t(),window.requestAnimationFrame(()=>{if(!n?.isConnected||!e.isConnected)return;let t=e.getBoundingClientRect().top-r;Math.abs(t)<.5||(n.scrollTop+=t)})}async function AE(e){return navigator.clipboard?.writeText?(await navigator.clipboard.writeText(e),!0):OE(e)}function jE({item:e}){let t=(e.detail||e.title||``).trim(),n=e.images||[],r=e.audios||[],i=e.files||[],a=e.terminals||[];return!t&&n.length<=0&&r.length<=0&&i.length<=0&&a.length<=0?null:(0,K.jsx)(`div`,{className:`code-codex-transcript-steer`,"data-testid":`code-codex-transcript-steer`,children:(0,K.jsxs)(`div`,{className:`code-codex-transcript-user code-codex-transcript-steer-bubble`,children:[t?(0,K.jsx)(`div`,{children:vT(t)}):null,(0,K.jsx)(zT,{images:n}),(0,K.jsx)(qT,{audios:r}),(0,K.jsx)(HT,{files:i}),(0,K.jsx)(ZT,{terminals:a})]})})}function ME({item:e,copy:t,copied:n,detailOpen:r,onToggle:i,onCopy:a,onStopTerminal:o,onInputTerminal:s,onResizeTerminal:c,onStopSubagent:l}){if(mE(e))return(0,K.jsx)(jE,{item:e});let u=e.detail&&e.detail.trim()!==e.title.trim()?e.detail:``,d=!!u,f=e.images||[],p=e.audios||[],m=e.files||[],h=e.terminals||[],g=e.type===`plan`&&u?oE(u):null,_=fE(e,u,g),v=(0,K.jsxs)(K.Fragment,{children:[g?(0,K.jsx)(`ul`,{className:`code-codex-transcript-plan-list`,children:g.map((e,t)=>(0,K.jsxs)(`li`,{className:e.status,children:[(0,K.jsx)(`span`,{className:`code-codex-transcript-plan-marker`,"aria-hidden":`true`}),(0,K.jsx)(`span`,{children:e.text})]},`${t}-${e.text}`))}):null,(0,K.jsx)(GT,{images:f}),(0,K.jsx)(qT,{audios:p}),(0,K.jsx)(HT,{files:m}),(0,K.jsx)(ZT,{terminals:h,onStop:o?t=>o(e.id,t):void 0,onInput:s?(t,n)=>s(e.id,t,n):void 0,onResize:c?(t,n,r)=>c(e.id,t,n,r):void 0}),e.subagentTranscript?(0,K.jsx)($T,{transcript:e.subagentTranscript,onStop:e.subagentSessionId&&l?()=>l(e.subagentSessionId||``):void 0}):null,!g&&d&&sE(e)?(0,K.jsx)(`div`,{className:`code-codex-transcript-process-detail`,children:vT(u)}):!g&&d?(0,K.jsx)(`pre`,{children:u}):null]});return(0,K.jsxs)(`section`,{className:eE(e),"data-testid":`code-codex-transcript-process-item`,"data-process-item-id":e.id,"data-type":e.type,"data-status":e.status||``,children:[(0,K.jsxs)(`div`,{className:`code-codex-transcript-process-title`,children:[(0,K.jsx)(`span`,{className:`code-codex-transcript-process-dot`,"aria-hidden":`true`}),_?(0,K.jsxs)(`button`,{type:`button`,className:`code-codex-transcript-process-title-toggle`,"data-testid":`code-codex-transcript-process-item-toggle`,"aria-expanded":r,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onClick:t=>{t.stopPropagation(),kE(t.currentTarget,()=>i(e.id))},onKeyDown:t=>{t.key!==`Enter`&&t.key!==` `||(t.preventDefault(),t.stopPropagation(),kE(t.currentTarget,()=>i(e.id)))},children:[(0,K.jsx)(`span`,{className:`code-codex-transcript-process-title-text`,children:e.title}),tE(e.status)?(0,K.jsx)(`span`,{className:`code-codex-transcript-process-status`,children:e.status}):null,(0,K.jsx)(W,{className:`code-codex-transcript-process-item-chevron`})]}):(0,K.jsxs)(`span`,{className:`code-codex-transcript-process-title-static`,children:[(0,K.jsx)(`span`,{className:`code-codex-transcript-process-title-text`,children:e.title}),tE(e.status)?(0,K.jsx)(`span`,{className:`code-codex-transcript-process-status`,children:e.status}):null]}),d?(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-copy ${n?`copied`:``}`,"aria-label":n?t.codexTranscriptCopiedDetails:t.codexTranscriptCopyDetails,title:n?t.codexTranscriptCopiedDetails:t.codexTranscriptCopyDetails,"data-tooltip":n?t.codexTranscriptCopiedDetails:t.codexTranscriptCopyDetails,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onClick:()=>a(e),children:n?(0,K.jsx)(ke,{}):(0,K.jsx)(Te,{})}):null]}),_&&r?v:null]})}function NE({groupId:e,items:t,summaryLabel:n,copy:r,copiedItemId:i,detailOpen:a,openProcessItemIds:o,onToggleGroup:s,onToggleItem:c,onCopy:l,onStopTerminal:u,onInputTerminal:d,onResizeTerminal:f,onStopSubagent:p}){return(0,K.jsxs)(`section`,{className:`code-codex-transcript-process-group ${t.some(nE)?`running`:``}`,"data-testid":`code-codex-transcript-process-group`,"data-count":t.length,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-codex-transcript-process-group-summary`,"data-testid":`code-codex-transcript-process-group-toggle`,"aria-expanded":a,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onClick:t=>{t.stopPropagation(),kE(t.currentTarget,()=>s(e))},onKeyDown:t=>{t.key!==`Enter`&&t.key!==` `||(t.preventDefault(),t.stopPropagation(),kE(t.currentTarget,()=>s(e)))},children:[(0,K.jsx)(`span`,{className:`code-codex-transcript-process-dot`,"aria-hidden":`true`}),(0,K.jsx)(`span`,{className:`code-codex-transcript-process-title-text`,children:n||dE(t)}),(0,K.jsx)(W,{className:`code-codex-transcript-process-item-chevron`})]}),a?(0,K.jsx)(`div`,{className:`code-codex-transcript-process-group-list`,children:t.map(e=>(0,K.jsx)(ME,{item:e,copy:r,copied:i===e.id,detailOpen:o.has(e.id),onToggle:c,onCopy:l,onStopTerminal:u,onInputTerminal:d,onResizeTerminal:f,onStopSubagent:p},e.id))}):null]})}function PE({items:e,copy:t,onLoadPatchChanges:n,onCreateReview:i,onDecidePatch:a,source:o,workspaceRoot:s}){let[c,l]=(0,G.useState)(!1),[u,d]=(0,G.useState)(null),[f,p]=(0,G.useState)(``),m=(0,G.useMemo)(()=>Object.fromEntries(e.flatMap(e=>(e.changes||[]).flatMap(e=>e.decision?[[yE(e.path,s)||e.path,e.decision]]:[]))),[e,s]),[h,g]=(0,G.useState)(m),[_,v]=(0,G.useState)(``),[y,b]=(0,G.useState)({});(0,G.useEffect)(()=>{g(e=>({...m,...e}))},[m]);let x=wE(e,s),S=u?CE(u,s):[],C=new Map(S.map(e=>[e.path,e])),w=u?[...x.map(e=>C.get(e.path)||e),...S.filter(e=>!x.some(t=>t.path===e.path))]:x,T=e.some(e=>e.status===`failed`),E=w.reduce((e,t)=>e+Number(t.added.replace(`+`,``)||0),0),D=w.reduce((e,t)=>e+Number(t.removed.replace(`-`,``)||0),0),O=EE(w.length,T),k=e.flatMap(e=>e.changes||[]),A=new Set((u||[]).map(e=>e.path)),j=u?[...u,...k.filter(e=>!A.has(yE(e.path,s)||e.path))]:k,M=o===`acp`?w.map(e=>yE(e.path,s)).filter(e=>e&&!e.startsWith(`/`)&&!e.split(`/`).includes(`..`)):[],N=(0,G.useCallback)(t=>{let n=e.flatMap(e=>(e.changes||[]).filter(e=>(yE(e.path,s)||e.path)===t).map(t=>({itemId:e.id,path:t.path})));return n.length===1?n[0]:null},[e,s]),P=(0,G.useCallback)((e,n)=>{let r=N(e);!r||!a||_||(v(e),b(t=>({...t,[e]:``})),a(r.itemId,r.path,n).then(t=>g(n=>({...n,[e]:t.action}))).catch(n=>b(r=>({...r,[e]:n instanceof Error?n.message:t.codexTranscriptUnavailable}))).finally(()=>v(``)))},[t.codexTranscriptUnavailable,_,a,N]),F=(0,G.useCallback)(()=>{if(!s||o===`acp`&&M.length===0)return;if(o===`acp`&&i){window.open(i(e.map(e=>e.id)),`_blank`,`noopener,noreferrer`);return}let t=new URLSearchParams({root:s});o===`acp`&&M.forEach(e=>t.append(`path`,e)),window.open(r(`/review?${t.toString()}`),`_blank`,`noopener,noreferrer`)},[e,i,M,o,s]),ee=(0,G.useCallback)(r=>{if(o!==`acp`){F();return}kE(r.currentTarget,()=>{l(e=>!e)}),!(c||u||!n)&&(p(``),n(e.map(e=>e.id)).then(d).catch(e=>p(e instanceof Error?e.message:t.codexTranscriptUnavailable)))},[t.codexTranscriptUnavailable,c,u,F,e,n,o]),I=(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`span`,{children:O}),E?(0,K.jsxs)(`span`,{className:`added`,children:[`+`,E]}):null,D?(0,K.jsxs)(`span`,{className:`removed`,children:[`-`,D]}):null]});return(0,K.jsxs)(`section`,{className:`code-codex-transcript-result-card ${T?`failed`:``}`,"data-testid":`code-codex-transcript-result-card`,children:[s&&w.length>0?(0,K.jsxs)(`button`,{type:`button`,className:`code-codex-transcript-result-summary`,"data-testid":`code-codex-transcript-result-summary`,"aria-label":`${O}. ${o===`acp`?t.codexTranscriptShowChanges:t.codexTranscriptReviewChanges}`,"aria-expanded":o===`acp`?c:void 0,onClick:ee,children:[I,o===`acp`?(0,K.jsx)(W,{className:`code-codex-transcript-result-chevron`}):null]}):(0,K.jsx)(`div`,{className:`code-codex-transcript-result-summary`,"aria-label":O,children:I}),o===`acp`&&c?(0,K.jsxs)(`div`,{className:`code-codex-transcript-result-details`,"data-testid":`code-codex-transcript-result-details`,children:[(0,K.jsx)(`div`,{className:`code-codex-transcript-result-files`,children:w.map(n=>{let r=bE(n,s),i=j.filter(e=>(yE(e.path,s)||e.path)===r),o=N(r),c=h[r];return(0,K.jsxs)(`details`,{className:`code-codex-transcript-result-file`,children:[(0,K.jsxs)(`summary`,{children:[(0,K.jsx)(`span`,{className:`code-codex-transcript-result-file-path`,children:r}),(0,K.jsxs)(`span`,{className:`code-codex-transcript-result-file-stats`,children:[n.added?(0,K.jsx)(`span`,{className:`added`,children:n.added}):null,n.removed?(0,K.jsx)(`span`,{className:`removed`,children:n.removed}):null]})]}),i.map((e,t)=>e.diff?(0,K.jsx)(`pre`,{className:`code-codex-transcript-result-diff`,children:e.diff.split(`
187
+ `).map((e,t)=>(0,K.jsxs)(`span`,{className:DE(e),children:[e,`
188
+ `]},`${t}:${e}`))},`${r}:${t}`):null),o&&a?(0,K.jsxs)(`div`,{className:`code-codex-transcript-result-decision`,"data-testid":`code-acp-patch-decision`,children:[c?(0,K.jsx)(`span`,{children:c===`reverted`?t.codexTranscriptChangeReverted:t.codexTranscriptChangeKept}):(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`button`,{type:`button`,disabled:!!_,onClick:()=>P(r,`keep`),children:t.codexTranscriptKeepChange}),(0,K.jsx)(`button`,{type:`button`,className:`revert`,disabled:!!_,onClick:()=>P(r,`revert`),children:t.codexTranscriptRevertChange})]}),y[r]?(0,K.jsx)(`small`,{role:`alert`,children:y[r]}):null]}):null]},`${e[0]?.id||`patch`}:${r}`)})}),!u&&!f?(0,K.jsx)(`div`,{className:`code-codex-transcript-result-loading`,children:t.codexTranscriptLoadingChanges}):null,f?(0,K.jsx)(`div`,{className:`code-codex-transcript-result-error`,children:f}):null,o!==`acp`||M.length>0?(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-result-review`,"aria-label":`${t.codexTranscriptReviewChanges}: ${M.length} workspace ${M.length===1?`file`:`files`}`,onClick:F,children:t.codexTranscriptReviewChanges}):null]}):null]})}function FE({turn:e,copy:t,onOpenFile:n,workspaceRoot:r,processOpen:i,groupProcessActions:a,source:o,onToggleProcess:s,onLoadProcessItemDetail:c,onLoadPatchChanges:l,onCreatePatchReview:u,onDecidePatch:d,onStopTerminal:f,onInputTerminal:p,onResizeTerminal:m,onStopSubagent:h}){let[g,_]=(0,G.useState)({}),v=(0,G.useRef)(new Set),y=(0,G.useMemo)(()=>e.processItems.map(e=>Object.prototype.hasOwnProperty.call(g,e.id)?{...e,detail:g[e.id]?.detail||``,terminals:g[e.id]?.terminals,subagentTranscript:g[e.id]?.subagentTranscript,detailTruncated:!1}:e),[g,e.processItems]),b=y.length>0,x=y.filter(pE),S=e.userImages||[],C=e.userAudios||[],w=e.userFiles||[],T=e.resultImages||[],E=e.resultAudios||[],D=e.resultFiles||[],[O,k]=(0,G.useState)(``),[A,j]=(0,G.useState)(!1),[M,N]=(0,G.useState)(()=>new Set),[P,F]=(0,G.useState)(()=>new Set),[,ee]=(0,G.useState)(0),I=(0,G.useMemo)(()=>a?uE(y):y.map(e=>({kind:`item`,item:e})),[a,y]),te=(0,G.useMemo)(()=>e.status===`inProgress`&&[...y].reverse().find(e=>[`reasoning`,`thought`].includes(e.type)&&!!String(e.detail||``).trim())?.id||``,[y,e.status]),L=oe(),R=(0,G.useMemo)(()=>yT(e.finalMessage),[e.finalMessage]),ne=e.status===`inProgress`&&!R&&(!!e.userMessage||S.length>0||C.length>0||w.length>0||b);(0,G.useEffect)(()=>{if(e.status!==`inProgress`||!e.startedAt)return;let t=window.setInterval(()=>ee(Date.now()),3e4);return()=>window.clearInterval(t)},[e.startedAt,e.status]);let z=e.status===`inProgress`?pT(e.startedAt):``,B=y===e.processItems?e:{...e,processItems:y},re=o===`acp`?mT(B,t):t.codexTranscriptWorking,ie=o===`acp`?hT(B,t):``,ae=(0,G.useCallback)(async(e,t=!1)=>{if(!e.detailTruncated&&!e.terminalIds?.length&&!e.subagentSessionId||!c)return{detail:e.detail||``,terminals:e.terminals,subagentTranscript:e.subagentTranscript};if(!t&&Object.prototype.hasOwnProperty.call(g,e.id))return g[e.id]||{detail:e.detail||``};if(v.current.has(e.id))return{detail:e.detail||``};v.current.add(e.id);try{let t=await c(e.id);return _(n=>({...n,[e.id]:t})),t}finally{v.current.delete(e.id)}},[g,c]);(0,G.useEffect)(()=>{let e=y.filter(e=>e.terminalIds?.length&&nE(e)&&M.has(e.id));if(e.length===0)return;let t=()=>e.forEach(e=>{ae(e,!0).catch(()=>{})});t();let n=window.setInterval(t,1e3);return()=>window.clearInterval(n)},[ae,M,y]);let V=(0,G.useCallback)(e=>{ae(e).then(t=>{let n=[e.title,t.detail].filter(Boolean).join(`
189
+
190
+ `);if(n)return AE(n)}).then(t=>{t&&(k(e.id),window.setTimeout(()=>k(t=>t===e.id?``:t),1200))}).catch(()=>{})},[ae]),se=(0,G.useCallback)(()=>{let e=R.trim();e&&AE(e).then(e=>{e&&(j(!0),window.setTimeout(()=>j(!1),1200))})},[R]),ce=(0,G.useCallback)(()=>{s(e.id)},[s,e.id]),le=(0,G.useCallback)(e=>{if(e===te&&!M.has(e)){F(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n});return}if(!M.has(e)){let t=y.find(t=>t.id===e);(t?.detailTruncated||t?.terminalIds?.length||t?.subagentSessionId)&&ae(t).catch(()=>{})}N(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[te,ae,M,y]),ue=(0,G.useCallback)(async(e,t)=>{if(!f)return;await f(t);let n=y.find(t=>t.id===e);n&&await ae(n,!0)},[ae,f,y]),de=(0,G.useCallback)(async(e,t,n)=>{if(!p)return;await p(t,n);let r=y.find(t=>t.id===e);r&&await ae(r,!0)},[ae,p,y]),fe=(0,G.useCallback)(async(e,t,n,r)=>{m&&await m(t,n,r)},[m]),pe=i,me=(0,G.useMemo)(()=>({a:({href:e,children:t,onClick:i,...a})=>{let o=e?MT(e,r):null,s=e?bT(e):!1,c=e&&CT(e),l=e=>{i?.(e),!(e.defaultPrevented||!o||!n)&&(e.preventDefault(),n(o.filePath,o.target))};return(0,K.jsx)(`a`,{...a,className:[a.className,o?`code-codex-transcript-markdown-file-link`:``].filter(Boolean).join(` `)||void 0,href:o?`#`:c,target:s?`_blank`:void 0,rel:s?`noreferrer`:void 0,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onClick:l,children:o?(0,K.jsx)(WT,{filePath:o.filePath,lineNumber:o.target?.lineNumber,children:t}):t})},code:({className:e,children:t,...i})=>{let a=FT(t),o=!(e||a.includes(`
191
+ `))&&NT(a)?MT(a,r):null;return!o||!n?(0,K.jsx)(`code`,{className:e,...i,children:t}):(0,K.jsx)(`a`,{className:`code-codex-transcript-markdown-file-link`,href:`#`,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onClick:e=>{e.preventDefault(),n(o.filePath,o.target)},children:(0,K.jsx)(WT,{filePath:o.filePath,lineNumber:o.target?.lineNumber,children:t})})},pre:({children:e,...n})=>{let r=LT(e);return r===null?(0,K.jsx)(`pre`,{...n,children:e}):(0,K.jsx)(Ve,{source:r,copy:t})}}),[t,n,r]);return(0,K.jsxs)(`article`,{className:`code-codex-transcript-turn ${e.status===`inProgress`?`running`:``}`,"data-turn-id":e.id,children:[e.userMessage||S.length>0||C.length>0||w.length>0?(0,K.jsxs)(`div`,{className:`code-codex-transcript-user`,children:[e.userMessage?(0,K.jsx)(`div`,{children:vT(e.userMessage)}):null,(0,K.jsx)(zT,{images:S}),(0,K.jsx)(qT,{audios:C}),(0,K.jsx)(HT,{files:w})]}):null,b?(0,K.jsxs)(`div`,{className:`code-codex-transcript-process ${pe?`expanded`:``}`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-codex-transcript-process-summary`,"data-testid":`code-codex-transcript-process-summary`,"aria-expanded":pe,title:_T(e,t),onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),onClick:e=>{e.stopPropagation(),kE(e.currentTarget,ce)},onKeyDown:e=>{e.key!==`Enter`&&e.key!==` `||(e.preventDefault(),e.stopPropagation(),kE(e.currentTarget,ce))},children:[(0,K.jsx)(`span`,{children:gT(e,t,re,ie)}),(0,K.jsx)(W,{className:`code-codex-transcript-chevron`})]}),pe?(0,K.jsx)(`div`,{className:`code-codex-transcript-process-list`,children:I.map(e=>{if(e.kind===`group`){let n=M.has(e.id)||o!==`acp`&&!L&&e.items.some(nE);return(0,K.jsx)(NE,{groupId:e.id,items:e.items,summaryLabel:o===`acp`?Kw(e.items):void 0,copy:t,copiedItemId:O,detailOpen:n,openProcessItemIds:te&&!P.has(te)?new Set([...M,te]):M,onToggleGroup:le,onToggleItem:le,onCopy:V,onStopTerminal:ue,onInputTerminal:de,onResizeTerminal:fe,onStopSubagent:h},e.id)}if(o===`acp`&&qw(e.item)){let t=String(e.item.detail||``).trim();return t?(0,K.jsx)(`div`,{className:`code-acp-progress-update code-markdown-preview`,"data-testid":`code-acp-progress-update`,children:(0,K.jsx)(We,{remarkPlugins:[ze,Ue],rehypePlugins:[Fe,He],components:me,skipHtml:!0,urlTransform:RT,children:t})},e.item.id):null}return(0,K.jsx)(ME,{item:e.item,copy:t,copied:O===e.item.id,detailOpen:M.has(e.item.id)||e.item.id===te&&!P.has(e.item.id),onToggle:le,onCopy:V,onStopTerminal:ue,onInputTerminal:de,onResizeTerminal:fe,onStopSubagent:h},e.item.id)})}):null]}):null,R||T.length>0||E.length>0||D.length>0?(0,K.jsxs)(`div`,{className:`code-codex-transcript-answer`,children:[R?(0,K.jsx)(`div`,{className:`code-codex-transcript-assistant code-markdown-preview`,children:(0,K.jsx)(We,{remarkPlugins:[ze,Ue],rehypePlugins:[Fe,He],components:me,skipHtml:!0,urlTransform:RT,children:R})}):null,(0,K.jsx)(KT,{images:T}),(0,K.jsx)(qT,{audios:E}),(0,K.jsx)(HT,{files:D}),R?(0,K.jsx)(`div`,{className:`code-codex-transcript-answer-actions`,children:(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-answer-action ${A?`copied`:``}`,"data-testid":`code-codex-transcript-copy-answer`,"aria-label":A?t.codexTranscriptCopiedAnswer:t.codexTranscriptCopyAnswer,title:A?t.codexTranscriptCopiedAnswer:t.codexTranscriptCopyAnswer,"data-tooltip":A?t.codexTranscriptCopiedAnswer:t.codexTranscriptCopyAnswer,onClick:se,children:A?(0,K.jsx)(ke,{}):(0,K.jsx)(Te,{})})}):null]}):ne?(0,K.jsx)(`div`,{className:`code-codex-transcript-placeholder`,children:t.codexTranscriptWaiting}):null,x.length>0||e.status===`inProgress`?(0,K.jsxs)(`div`,{className:`code-codex-transcript-results code-codex-transcript-status-row`,children:[x.length>0?(0,K.jsx)(PE,{items:x,copy:t,onLoadPatchChanges:l,onCreateReview:u,onDecidePatch:d,source:o,workspaceRoot:r}):null,e.status===`inProgress`?(0,K.jsx)(`span`,{className:`code-codex-transcript-progress`,children:[re,z].filter(Boolean).join(` `)}):null]}):null]})}var IE=(0,G.memo)(FE);function LE({agentId:e,workspaceRoot:t,active:n,source:i=`legacy-jsonl`,refreshSignal:a=0,runtimeState:o=``,expectHistory:s=!1,onOpenWorkspaceFilePath:c,onAvailabilityChange:l,onReadLatest:u,groupProcessActions:d=!0,copy:f}){let[p,m]=(0,G.useState)(null),h=(0,G.useRef)(null),[g,_]=(0,G.useState)(!0),[v,y]=(0,G.useState)(``),[b,x]=(0,G.useState)(()=>new Set),[S,C]=(0,G.useState)(()=>new Set),[w,T]=(0,G.useState)(()=>lT(i)),[E,D]=(0,G.useState)(!1),[O,k]=(0,G.useState)(!1),A=(0,G.useRef)(null),j=(0,G.useRef)(null),M=(0,G.useRef)(!0),N=(0,G.useRef)(!1),P=(0,G.useRef)(!1),F=(0,G.useRef)(null),ee=(0,G.useRef)(!1),I=(0,G.useRef)(!1),te=(0,G.useRef)(c);(0,G.useLayoutEffect)(()=>{te.current=c},[c]),(0,G.useEffect)(()=>{m(null),h.current=null,y(``),_(!0),D(!1),T(lT(i)),x(new Set),C(new Set),k(!1);let t=!!ne(ue(e,`chat`));M.current=!t,N.current=t,ee.current=!1,I.current=!1,j.current=null},[e,i]),(0,G.useEffect)(()=>()=>{F.current!==null&&(window.clearTimeout(F.current),F.current=null)},[]),(0,G.useEffect)(()=>{if(!n)return;let e=()=>{let e=A.current;if(e){if(aE(e)){M.current=!1,I.current=!0;return}ee.current||I.current&&(I.current=!1,k(!iE(e)&&e.scrollHeight>e.clientHeight+dT))}},t=()=>{window.requestAnimationFrame(()=>{ee.current=!1,e()})};return document.addEventListener(`selectionchange`,e),document.addEventListener(`pointerup`,t),document.addEventListener(`pointercancel`,t),()=>{document.removeEventListener(`selectionchange`,e),document.removeEventListener(`pointerup`,t),document.removeEventListener(`pointercancel`,t),ee.current=!1,I.current=!1}},[n]),(0,G.useEffect)(()=>{if(!n)return;let t=!1,a=null,o=null,s=()=>{o?.abort(),o=new AbortController;let n=new URLSearchParams({maxTurns:String(w)}),a=h.current;i===`acp`&&a?.sessionId&&a.turnLimit===w&&Number.isFinite(a.revision)&&n.set(`sinceRevision`,String(a.revision)),fetch(r(`/api/agents/${encodeURIComponent(e)}/${i===`acp`?`acp-transcript`:i===`app-server`?`codex-app-server-transcript`:i===`json-cli`?`json-cli-transcript`:`codex-transcript`}?${n.toString()}`),{signal:o.signal}).then(e=>{if(!e.ok)throw Error(f.codexTranscriptUnavailable);return e.json()}).then(e=>{if(t)return;let n=i===`acp`&&e.transcript?Uw(e.transcript,{maxTurns:w}):e.transcript||null;m(e=>{let t=i===`acp`?tT(e,n):eT(e,n);return h.current=t,t}),y(``),_(!1),D(!1)}).catch(e=>{t||e?.name===`AbortError`||(y(e?.message||f.codexTranscriptUnavailable),_(!1),D(!1))})};return s(),i!==`acp`&&(a=window.setInterval(s,3e3)),()=>{t=!0,o?.abort(),a&&window.clearInterval(a)}},[n,e,f.codexTranscriptUnavailable,a,i,w]);let L=(0,G.useMemo)(()=>p?.turns||[],[p]),R=i===`acp`&&!v&&L.length===0&&(o===`connecting`||s);(0,G.useEffect)(()=>{if(!n||!p?.available||L.length===0)return;let e=A.current,t=e?iE(e):M.current;e&&(ee.current||aE(e))||t&&u?.()},[n,u,p?.available,p?.updatedAt,L.length]),(0,G.useLayoutEffect)(()=>{if(g||!p?.available||L.length===0)return;let t=A.current;if(!t||P.current)return;let r=aE(t);if(ee.current||r){r&&(M.current=!1,I.current=!0);return}let i=j.current;if(i){j.current=null,window.requestAnimationFrame(()=>{if(ee.current||aE(t))return;let n=t.scrollHeight-i.scrollHeight+i.scrollTop;t.scrollTop=Math.max(0,n),nT(e,t)});return}if(M.current){N.current=!1,window.requestAnimationFrame(()=>{ee.current||aE(t)||(t.scrollTop=t.scrollHeight,ae(ue(e,`chat`)),k(!1),n&&u?.())});return}N.current&&(N.current=!1,window.requestAnimationFrame(()=>{ee.current||aE(t)||rT(e,t)===`expired`&&(M.current=!0,t.scrollTop=t.scrollHeight,k(!1),n&&u?.())}))},[n,e,g,u,p?.available,p?.updatedAt,L.length]),(0,G.useEffect)(()=>()=>{let t=A.current;t&&nT(e,t)},[e]),(0,G.useEffect)(()=>{l?.({loading:g,hasContent:!!(p?.available&&L.length>0),available:!!p?.available})},[g,l,p?.available,L.length]);let z=(0,G.useCallback)((t,n)=>te.current?.(e,t,{...n,suppressSearchOnMiss:!0}),[e]),B=(0,G.useCallback)(async t=>{let n=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-tool-details/${encodeURIComponent(t)}`)),i=await n.json().catch(()=>({}));if(!n.ok)throw Error(i.error||f.codexTranscriptUnavailable);return{detail:String(i.detail||``),terminals:Array.isArray(i.terminals)?i.terminals:void 0,subagentTranscript:i.subagentSession&&typeof i.subagentSession==`object`?Uw(i.subagentSession,{maxTurns:12}):void 0}},[e,f.codexTranscriptUnavailable]),re=(0,G.useCallback)(t=>Ge(e,t),[e]),ie=(0,G.useCallback)(t=>{let n=new URLSearchParams({agentId:e});return t.forEach(e=>n.append(`acpItem`,e)),r(`/review?${n.toString()}`)},[e]),V=(0,G.useCallback)(async(t,n,i)=>{let a=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-patches/${encodeURIComponent(t)}/decision`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({path:n,decision:i})}),o=await a.json().catch(()=>({}));if(!a.ok||!o.action)throw Error(o.error||`Failed to decide file change`);return{action:o.action}},[e]),oe=(0,G.useCallback)(async t=>{let n=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-terminals/${encodeURIComponent(t)}/kill`),{method:`POST`}),i=await n.json().catch(()=>({}));if(!n.ok)throw Error(i.error||`Failed to stop command`)},[e]),se=(0,G.useCallback)(async(t,n)=>{let i=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-terminals/${encodeURIComponent(t)}/input`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({input:n})}),a=await i.json().catch(()=>({}));if(!i.ok)throw Error(a.error||`Failed to send terminal input`)},[e]),ce=(0,G.useCallback)(async(t,n,i)=>{let a=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-terminals/${encodeURIComponent(t)}/resize`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({cols:n,rows:i})}),o=await a.json().catch(()=>({}));if(!a.ok)throw Error(o.error||`Failed to resize terminal`)},[e]),le=(0,G.useCallback)(async t=>{let n=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-subagents/${encodeURIComponent(t)}/cancel`),{method:`POST`}),i=await n.json().catch(()=>({}));if(!n.ok)throw Error(i.error||`Failed to stop subagent`)},[e]),de=(0,G.useCallback)(e=>{!p?.hasMoreBefore||E||w>=cT||(j.current={scrollTop:e.scrollTop,scrollHeight:e.scrollHeight},D(!0),T(e=>{let t=Math.min(cT,e+(i===`acp`?sT:aT));return t===e&&D(!1),t}))},[E,i,p?.hasMoreBefore,w]),fe=(0,G.useCallback)(()=>{P.current=!0,F.current!==null&&(window.clearTimeout(F.current),F.current=null)},[]),pe=(0,G.useCallback)(()=>{F.current!==null&&window.clearTimeout(F.current),F.current=window.setTimeout(()=>{P.current=!1,F.current=null},420)},[]),me=(0,G.useCallback)(()=>{fe()},[fe]),he=(0,G.useCallback)(()=>{fe()},[fe]),H=(0,G.useCallback)(()=>{pe()},[pe]),ge=(0,G.useCallback)(()=>{let t=A.current;if(!t)return;if(N.current=!1,ee.current||aE(t)){M.current=!1,I.current=!0,nT(e,t);return}let r=iE(t);M.current=r,nT(e,t),k(!r&&t.scrollHeight>t.clientHeight+dT),n&&r&&u?.(),t.scrollTop<=uT&&de(t)},[n,e,u,de]),_e=(0,G.useCallback)(e=>{if(fe(),pe(),e.deltaY>=0)return;let t=A.current;!t||t.scrollTop>uT||de(t)},[pe,fe,de]),ve=(0,G.useCallback)(e=>{if(e.button!==0||e.pointerType===`touch`)return;let t=e.target;t instanceof Element&&t.closest(`button, a, input, textarea, select, summary, [role="button"]`)||(ee.current=!0)},[]),ye=(0,G.useCallback)(e=>{let t=L.find(t=>t.id===e);if(i===`acp`&&t?.status===`inProgress`){C(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n});return}x(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[i,L]),be=(0,G.useCallback)(()=>{let t=A.current;t&&(M.current=!0,I.current=!1,t.scrollTop=t.scrollHeight,ae(ue(e,`chat`)),k(!1),u?.())},[e,u]);return(0,K.jsxs)(`div`,{className:`code-codex-transcript`,"data-testid":`code-codex-transcript`,children:[g||R?(0,K.jsx)(`div`,{className:`code-codex-transcript-state subtle`,children:f.codexTranscriptSyncing}):v?(0,K.jsx)(`div`,{className:`code-codex-transcript-state`,role:`status`,children:v}):p?.available?L.length===0?(0,K.jsx)(`div`,{className:`code-codex-transcript-blank`}):(0,K.jsx)(`div`,{className:`code-codex-transcript-scroll`,"data-testid":`code-codex-transcript-scroll`,ref:A,onPointerDown:ve,onScroll:ge,onWheel:_e,onTouchStart:me,onTouchMove:he,onTouchEnd:H,onTouchCancel:H,children:L.map(e=>{let n=i===`acp`&&e.status===`inProgress`&&!S.has(e.id);return(0,K.jsx)(IE,{turn:e,copy:f,onOpenFile:c?z:void 0,workspaceRoot:t,processOpen:b.has(e.id)||n,groupProcessActions:d,source:i,onToggleProcess:ye,onLoadProcessItemDetail:i===`acp`?B:void 0,onLoadPatchChanges:i===`acp`?re:void 0,onCreatePatchReview:i===`acp`?ie:void 0,onDecidePatch:i===`acp`?V:void 0,onStopTerminal:i===`acp`?oe:void 0,onInputTerminal:i===`acp`?se:void 0,onResizeTerminal:i===`acp`?ce:void 0,onStopSubagent:i===`acp`?le:void 0},e.id)})}):(0,K.jsx)(`div`,{className:`code-codex-transcript-blank`}),O?(0,K.jsx)(`button`,{type:`button`,className:`code-codex-transcript-jump-bottom`,"data-testid":`code-codex-transcript-jump-bottom`,"aria-label":`Jump to latest chat`,onClick:be,children:(0,K.jsx)(Ae,{})}):null]})}function RE(e){return(0,K.jsx)(LE,{...e,source:`app-server`})}function zE(e){return(0,K.jsx)(LE,{...e,source:`json-cli`})}function BE(e){return(0,K.jsx)(LE,{...e,source:`acp`,groupProcessActions:!0})}function VE(e){let t=e.runtimeObservation.kind;return t===`codex`||t===`claude`||t===`shell`?t:t===`process`?`agent`:null}function HE(e){if(!e)return{kind:null,kindSource:`none`,turnActive:!1,terminalBusy:!1};let t=e.runtimeObservation.phase,n=t===`starting`||t===`working`||t===`waiting`;return{kind:VE(e),kindSource:`terminal-status`,turnActive:n,terminalBusy:e.runtimeBinding.kind===`terminal`?e.terminalStatus?e.terminalStatus.busy===!0:e.terminalBusy===!0:!1}}function UE(e){let t=HE(e);return t.kind===`codex`&&t.turnActive}function WE(e){return HE(e).turnActive}function GE(e){return Tn(e)}function KE({agent:e,active:t,switching:n,switchingKind:r,focusSignal:i,onActivate:a,onSessionOutput:o,onOpenPath:s,onResolvePath:c,onOpenWorkspaceFilePath:l,onFollowOutputChange:u,onReadLatest:d,onRuntimeModeChange:f,copy:p}){let m=GE(e),h=wn(e)?e.runtimeBinding:null,g=Cn(e)?e.runtimeBinding:null,_=!!h,v=!!g,y=m||_||v,b=e.providerCapabilities.runtimeSwitch&&e.runtimeBinding.kind===`terminal`&&e.providerSessionTemporary===!0&&e.terminalInputReceived!==!0,x=e.providerCapabilities.runtimeSwitch&&e.providerCapabilities.supportedRuntimes.includes(`acp`)&&(e.providerSessionTemporary!==!0||b)&&!!e.providerSessionId,S=n||WE(e),C=(0,G.useCallback)(n=>{n.button===0&&(t||a(e.id,{focusTerminal:!1}))},[t,e.id,a]);return(0,K.jsxs)(`section`,{className:`code-agent-work-pane ${t?`active`:``} ${x?`runtime-switchable`:``}`,"data-testid":`code-agent-work-pane`,"data-agent-id":e.id,"aria-busy":n,children:[x?(0,K.jsxs)(`div`,{className:`code-terminal-mode-toggle`,"data-testid":`code-terminal-mode-toggle`,onPointerDown:e=>e.stopPropagation(),onMouseDown:e=>e.stopPropagation(),children:[(0,K.jsx)(`button`,{type:`button`,className:y?`active`:``,"aria-pressed":y,"aria-label":p.transcriptView,title:p.transcriptView,disabled:S,onClick:()=>!y&&f?.(e.id,`acp`),children:(0,K.jsx)(De,{})}),(0,K.jsx)(`button`,{type:`button`,className:y?``:`active`,"aria-pressed":!y,"aria-label":p.terminalView,title:p.terminalView,disabled:S,onClick:()=>y&&f?.(e.id,`terminal`),children:(0,K.jsx)(pe,{})})]}):null,y?null:(0,K.jsx)(`div`,{className:`code-agent-work-view terminal active`,"data-testid":`code-agent-terminal-view`,"aria-hidden":!1,children:(0,K.jsx)(jC,{agent:e,active:t,onActivate:a,onOpenPath:s,onResolvePath:c,onFollowOutputChange:u,onReadLatest:d,onSessionOutput:o,focusSignal:i,copy:p})},`terminal`),y?(0,K.jsx)(`div`,{className:`code-agent-work-view transcript active`,"data-testid":`code-agent-chat-view`,"aria-hidden":!1,onPointerDown:C,children:v?(0,K.jsx)(BE,{agentId:e.id,workspaceRoot:e.projectWorkspace||e.cwd,active:t,runtimeState:g?.state||``,expectHistory:(e.source||``).startsWith(`codex-history:`),refreshSignal:g?.sessionRevision||(g?.sessionUpdatedAt?Date.parse(g.sessionUpdatedAt):0),onOpenWorkspaceFilePath:l,onReadLatest:()=>d?.(e.id),copy:p}):m?(0,K.jsx)(RE,{agentId:e.id,workspaceRoot:e.projectWorkspace||e.cwd,active:t,onOpenWorkspaceFilePath:l,onReadLatest:()=>d?.(e.id),copy:p}):(0,K.jsx)(zE,{agentId:e.id,workspaceRoot:e.projectWorkspace||e.cwd,active:t,refreshSignal:h?.transcriptUpdatedAt?Date.parse(h.transcriptUpdatedAt):0,onOpenWorkspaceFilePath:l,onReadLatest:()=>d?.(e.id),copy:p})},`chat`):null,n?(0,K.jsxs)(`div`,{className:`code-permission-switching`,"data-testid":`code-permission-switching`,role:`status`,"aria-live":`polite`,children:[(0,K.jsx)(`span`,{className:`code-permission-switching-spinner`,"aria-hidden":`true`}),(0,K.jsx)(`span`,{children:r===`runtime`?p.runtimeModeRestarting:p.permissionProfileRestarting})]}):null]})}var qE=`__farming_main_agent__`,JE=`__agent_chats__`;function YE(e){return e.kind===`agent-session`?`${e.kind}:${e.provider}:${e.id}`:`${e.kind}:${e.id}`}function XE(e){let t=e.replace(/\/+$/,``);return t.split(`/`).filter(Boolean).pop()||t||`Farming`}function ZE(e){return e.gitWorktree?.workspace?e.gitWorktree.workspace:e.projectWorkspace?e.projectWorkspace:e.cwd||`Farming`}function QE(e){return e?XE(e):`Farming`}function $E(e){return e||`No workspace`}function eD(e){return e===`xhigh`?`Extra High`:e?`${e.slice(0,1).toUpperCase()}${e.slice(1)}`:`Config`}function tD(e){if(!e||e===`config`)return{model:`gpt-5.5`,effort:`xhigh`};let[t=`gpt-5.5`,n=`xhigh`]=e.split(`:`);return{model:t,effort:n}}function nD(e,t){return/^gpt-/i.test(t)?(e?.displayName||e?.label||t).replace(/^gpt-/i,``).replace(/^GPT-/i,``):e?.displayName?e.displayName:e?.label||t||`Model`}function rD(e){let t=new Map;return e.forEach(e=>{let n=e.model||e.value.split(`:`)[0];if(!n)return;let r=t.get(n)??{value:n,label:n.replace(/^gpt-/i,``),defaultEffort:e.effort||`medium`,reasoningLevels:[],serviceTiers:[{value:`default`,label:`Standard`,description:`Default speed`}],source:e.source};e.effort&&!r.reasoningLevels?.some(t=>t.value===e.effort)&&(r.reasoningLevels=[...r.reasoningLevels??[],{value:e.effort,effort:e.effort,label:eD(e.effort),description:e.description}]),t.set(n,r)}),Array.from(t.values())}function iD(e){let t=Array.isArray(e.catalog)?e.catalog.filter(e=>e&&typeof e.value==`string`&&typeof e.label==`string`):[];return t.length>0?t:rD(Array.isArray(e.models)?e.models.filter(e=>e&&typeof e.value==`string`&&typeof e.label==`string`):[])}function aD(e){let t=e.providerHomeId&&e.providerHomeId!==`default`?`home:${e.providerHomeId}:${e.id}`:e.id;return YE({kind:`agent-session`,provider:e.provider,id:t})}function oD(e){let t=e.workspace||e.cwd;return t?an(t):e.projectless?`Chats`:e.providerName||`Agent`}function sD(e){return e.projectless?``:e.workspace||e.cwd||``}function cD(e){return e.cwd||e.workspace||``}function lD(e){return e.projectless?JE:sD(e)||`__agent_sessions__`}function uD(e){if(e.projectless)return`Chats`;let t=sD(e);return t?QE(t):`Agent Sessions`}function dD(e){let t=Date.parse(e.updatedAt||e.createdAt||``);return Number.isFinite(t)?t:0}function fD(e,t){return dD(t)-dD(e)}function pD(e,t){let n=new Map;return e.forEach(e=>{let t=ZE(e),r=e.isMain?qE:t,i=n.get(r)??{id:r,name:e.isMain?`Main Agent`:QE(t),workspace:t,agents:[],agentSessions:[],hasMain:!1,hasProjectAgent:!1,hasAgentSession:!1,gitWorktree:e.gitWorktree??null};i.agents.push(e),i.hasMain||=e.isMain,i.hasProjectAgent||=!e.isMain,e.gitWorktree?.workspace&&(i.gitWorktree=e.gitWorktree),i.name=i.hasMain?`Main Agent`:QE(i.workspace),n.set(r,i)}),t.forEach(e=>{let t=lD(e),r=sD(e),i=n.get(t)??{id:t,name:uD(e),workspace:r,agents:[],agentSessions:[],hasMain:!1,hasProjectAgent:!1,hasAgentSession:!1,gitWorktree:null};i.agentSessions.push(e),i.hasAgentSession=!0,n.set(t,i)}),Array.from(n.values()).map(e=>({...e,agents:e.agents.sort((e,t)=>{if(e.isMain!==t.isMain)return e.isMain?-1:1;let n=(t.projectOrder??0)-(e.projectOrder??0);return n===0?(t.startedAt??0)-(e.startedAt??0):n}),agentSessions:e.agentSessions.sort(fD)})).sort((e,t)=>{let n=e.agents.some(e=>e.isMain);if(n!==t.agents.some(e=>e.isMain))return n?-1:1;let r=e.id===JE;return r===(t.id===`__agent_chats__`)?e.name.localeCompare(t.name):r?1:-1})}function mD(e,t){return t||e.isComposing===!0||e.nativeEvent?.isComposing===!0||e.nativeEvent?.keyCode===229}function hD(e,t,n=Date.now()){return e.key===`Enter`&&t>0&&n-t<=120}function gD(e,t,n,r=Date.now()){return e.key!==`Enter`||e.shiftKey||mD(e,t)||hD(e,n,r)?!1:e.ctrlKey||e.metaKey||e.altKey?(e.ctrlKey===!0||e.metaKey===!0)&&e.altKey!==!0:!0}function _D(e,t){return e||t}function vD(e){return e&&typeof e==`object`&&!Array.isArray(e)?e:{}}function yD(e){return typeof e==`string`?e:``}function bD(e){return(Array.isArray(e.questions)?e.questions:[]).map(e=>{let t=vD(e);return{id:yD(t.id),header:yD(t.header),question:yD(t.question),isSecret:t.isSecret===!0,options:Array.isArray(t.options)?t.options.map(e=>{let t=vD(e);return{label:yD(t.label),description:yD(t.description)}}).filter(e=>e.label):[]}}).filter(e=>e.id)}function xD(e){return e===`item/commandExecution/requestApproval`||e===`item/fileChange/requestApproval`||e===`item/permissions/requestApproval`}function SD(e,t){return xD(e)?{decision:t}:null}function CD({request:e,onRespond:t,onReject:n,copy:r}){let[i,a]=(0,G.useState)({}),o=(0,G.useMemo)(()=>bD(e?.params||{}),[e]);if((0,G.useEffect)(()=>{a({})},[e?.id]),!e)return null;let s=vD(e.params),c=yD(s.command),l=yD(s.reason),u=xD(e.method),d=e.method===`item/tool/requestUserInput`&&o.length>0,f=d&&o.every(e=>(i[e.id]||``).trim());return(0,K.jsxs)(`section`,{className:`code-app-server-request`,"data-testid":`code-app-server-request`,children:[(0,K.jsxs)(`header`,{children:[(0,K.jsx)(`strong`,{children:u?r.appServerApprovalRejectedTitle:r.appServerRequestTitle}),(0,K.jsx)(`span`,{children:e.method})]}),l&&(0,K.jsx)(`p`,{children:l}),u&&(0,K.jsx)(`p`,{children:r.appServerApprovalRejectedDescription}),c&&(0,K.jsxs)(`div`,{className:`code-app-server-request-command`,children:[(0,K.jsx)(`small`,{children:r.appServerRequestCommand}),(0,K.jsx)(`code`,{children:c})]}),d&&(0,K.jsx)(`div`,{className:`code-app-server-request-questions`,children:o.map(e=>(0,K.jsxs)(`label`,{children:[(0,K.jsx)(`span`,{children:e.header||r.appServerRequestQuestion}),e.question&&(0,K.jsx)(`small`,{children:e.question}),e.options.length>0&&(0,K.jsx)(`div`,{className:`code-app-server-request-options`,children:e.options.map(t=>(0,K.jsxs)(`button`,{type:`button`,className:i[e.id]===t.label?`active`:``,onClick:()=>a(n=>({...n,[e.id]:t.label})),children:[t.label,t.description&&(0,K.jsx)(`small`,{children:t.description})]},t.label))}),(0,K.jsx)(`input`,{type:`text`,className:e.isSecret?`code-app-server-secret-input`:void 0,name:`farming-app-server-answer-${e.id}`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`done`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,value:i[e.id]||``,onChange:t=>a(n=>({...n,[e.id]:t.target.value}))})]},e.id))}),!u&&!d&&(0,K.jsx)(`p`,{children:r.appServerRequestUnsupported}),(0,K.jsxs)(`div`,{className:`code-app-server-request-actions`,children:[u&&(0,K.jsx)(`button`,{type:`button`,onClick:()=>t(e.id,SD(e.method,`decline`)),children:r.appServerRequestDecline}),d&&(0,K.jsx)(`button`,{type:`button`,className:`approve`,disabled:!f,onClick:()=>t(e.id,{answers:Object.fromEntries(o.map(e=>[e.id,{answers:[String(i[e.id]??``).trim()]}]))}),children:r.appServerRequestSubmit}),!u&&!d&&(0,K.jsx)(`button`,{type:`button`,onClick:()=>n(e.id),children:r.appServerRequestDecline})]})]})}function wD({attachments:e,onRemove:t}){return e.length===0?null:(0,K.jsx)(`div`,{className:`code-composer-attachments`,"data-testid":`code-composer-attachments`,children:e.map(e=>{let n=e.kind===`image`&&!!e.previewUrl;return(0,K.jsxs)(`div`,{className:[`code-composer-attachment`,n?`image`:`chip`,e.status].join(` `),"data-testid":`code-composer-attachment`,children:[n?(0,K.jsx)(`div`,{className:`code-composer-attachment-preview`,"data-testid":`code-composer-attachment-preview`,children:(0,K.jsx)(`img`,{src:e.previewUrl,alt:e.name})}):(0,K.jsx)(`span`,{className:`code-composer-attachment-fallback`,"aria-hidden":`true`,children:(0,K.jsx)(me,{})}),(0,K.jsx)(`span`,{className:`code-composer-attachment-name`,title:e.name,children:e.name}),e.status!==`ready`&&(0,K.jsx)(`span`,{className:`code-composer-attachment-status`,children:e.status===`uploading`?`Uploading`:`Failed`}),(0,K.jsx)(`button`,{type:`button`,className:`code-composer-attachment-remove`,"aria-label":`Remove ${e.name}`,onClick:()=>t(e.id),children:(0,K.jsx)(Se,{})})]},e.id)})})}function TD(e,t){let n=Math.max(0,Math.min(t,e.length)),r=e.lastIndexOf(`
192
+ `,Math.max(0,n-1))+1,i=e.slice(r,n),a=i.match(/^(\s*)\/([A-Za-z0-9._:-]*)$/);if(a)return{start:r+(a[1]?.length??0),end:n,query:a[2]??``,trigger:`/`};let o=i.match(/(^|\s)\$([A-Za-z0-9._:-]*)$/);return o?{start:r+(o.index??0)+(o[1]?.length??0),end:n,query:o[2]??``,trigger:`$`}:null}function ED(e,t,n){let r=t.trim().toLowerCase();return e.command.startsWith(n)?r?e.command.slice(1).toLowerCase().startsWith(r)||e.label.toLowerCase().includes(r):!0:!1}function DD(e,t){let n=t.trim().toLowerCase();return n?+!e.command.slice(1).toLowerCase().startsWith(n):0}function OD(e){return`code-slash-command-${e.replace(/^[/$]/,``).replace(/[^A-Za-z0-9_-]+/g,`-`)||`root`}`}function kD(e){if(!e||typeof window>`u`)return 0;let t=window.getSelection();if(!t||t.rangeCount<=0)return(e.textContent||``).length;let n=t.getRangeAt(0);if(!e.contains(n.startContainer))return(e.textContent||``).length;let r=n.cloneRange();return r.selectNodeContents(e),r.setEnd(n.startContainer,n.startOffset),r.toString().length}function AD(e,t){if(!e||typeof window>`u`)return;e.normalize();let n=Math.max(0,Math.min(t,(e.textContent||``).length)),r=document.createTreeWalker(e,NodeFilter.SHOW_TEXT),i=n,a=r.nextNode();for(;a;){let e=a.textContent||``;if(i<=e.length){let e=document.createRange();e.setStart(a,i),e.collapse(!0);let t=window.getSelection();t?.removeAllRanges(),t?.addRange(e);return}i-=e.length,a=r.nextNode()}let o=document.createRange();o.selectNodeContents(e),o.collapse(!1);let s=window.getSelection();s?.removeAllRanges(),s?.addRange(o)}function jD(e){return e?(e.innerText||e.textContent||``).replace(/\u00a0/g,` `).replace(/\n$/,``):``}function MD({active:e,draft:t,placeholder:n,minHeight:r,maxHeight:i,editorRef:a,composerRef:o,onFocus:s,onBlur:c,onInput:l,onPaste:u,onCompositionStart:d,onCompositionEnd:f,onKeyDown:p,onSelectionIntent:m}){let h=(0,G.useRef)(null);return(0,G.useLayoutEffect)(()=>{let e=a.current,n=h.current,s=o.current;if(!e||!n||!s)return;(e.textContent||``)!==t&&(e.textContent=t),n.innerText=t||`M`,e.style.height=`auto`;let c=Math.max(n.scrollHeight,e.scrollHeight),l=Math.min(i,Math.max(r,c));e.style.height=`${l}px`;let u=s.closest(`.code-main`),d=s.getBoundingClientRect().height;if(d>0){let e=`${Math.ceil(d)}px`;s.style.setProperty(`--mobile-composer-current-height`,e),u?.style.setProperty(`--mobile-composer-current-height`,e)}},[o,t,a,i,r]),(0,G.useLayoutEffect)(()=>{let e=a.current;e&&(e.removeAttribute(`autocomplete`),e.removeAttribute(`aria-autocomplete`),e.removeAttribute(`inputmode`),e.setAttribute(`autocorrect`,`off`),e.setAttribute(`autocapitalize`,`none`),e.setAttribute(`spellcheck`,`false`))},[a]),(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`div`,{"data-testid":`code-composer-input`,ref:a,className:`code-composer-mobile-input`,"aria-disabled":!e,contentEditable:e?`true`:`false`,suppressContentEditableWarning:!0,enterKeyHint:`send`,tabIndex:e?0:-1,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,"data-placeholder":n,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,"data-gramm":`false`,"data-ms-editor":`false`,onFocus:s,onBlur:c,onInput:l,onPaste:u,onCompositionStart:d,onCompositionEnd:f,onKeyDown:p,onKeyUp:m,onMouseUp:m}),(0,K.jsx)(`div`,{ref:h,className:`code-composer-mobile-input-mirror`,"aria-hidden":`true`})]})}var ND=[`sol`,`terra`,`luna`],PD=4,FD=240;function ID(e,t){let n=t.match(/^(.*?)[-\s](sol|terra|luna)$/i)?.[1]?.toLowerCase();if(!n)return null;let r=e.flatMap(e=>{let t=e.value.match(/^(.*?)[-\s](sol|terra|luna)$/i),r=t?.[1]?.toLowerCase(),i=t?.[2]?.toLowerCase();return!r||r!==n||!i?[]:[{...e,variant:i}]}).sort((e,t)=>ND.indexOf(e.variant)-ND.indexOf(t.variant));return r.length>=2?r:null}function LD(){return(0,K.jsx)(`svg`,{viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M8.85 1.35a.55.55 0 0 1 .55.68L8.28 6.1h3.07a.55.55 0 0 1 .42.9l-5.5 6.6a.55.55 0 0 1-.96-.48l1.12-4.2H3.65a.55.55 0 0 1-.44-.88l5.2-6.48a.55.55 0 0 1 .44-.21Z`})})}function RD({label:e,active:t,disabled:n,unavailable:r,unavailableReason:i,onChange:a}){let[o,s]=(0,G.useState)(!1),c=(0,G.useRef)(null);(0,G.useEffect)(()=>()=>{c.current!==null&&window.clearTimeout(c.current)},[]);function l(){c.current!==null&&window.clearTimeout(c.current),s(!0),c.current=window.setTimeout(()=>{c.current=null,s(!1)},650)}function u(){c.current!==null&&window.clearTimeout(c.current),c.current=null,s(!1)}return(0,K.jsxs)(`div`,{className:`code-model-matrix-rocker is-ultra ${t?`is-active`:``} ${r?`is-disabled`:``}`,title:r?i:void 0,children:[(0,K.jsx)(`span`,{children:e}),(0,K.jsx)(`button`,{type:`button`,className:`code-model-matrix-rocker-button`,disabled:n||r,"aria-label":r&&i?`Ultra reasoning unavailable: ${i}`:`Ultra reasoning`,"aria-pressed":t,onClick:()=>{t||l(),a(!t)},children:(0,K.jsxs)(`span`,{className:`code-model-matrix-rocker-control ${o?`is-kicked`:``}`,"aria-hidden":`true`,children:[(0,K.jsx)(`span`,{className:`code-model-matrix-rocker-slot`,children:(0,K.jsx)(`span`,{className:`code-model-matrix-rocker-energy`})}),(0,K.jsx)(`span`,{className:`code-model-matrix-rocker-knob-position`,children:(0,K.jsx)(`span`,{className:`code-model-matrix-rocker-knob ${o?`is-kicked`:``}`,onAnimationEnd:u})})]})})]})}function zD({active:e,available:t,disabled:n,unavailableReason:r,onChange:i}){let[a,o]=(0,G.useState)(!1),s=!t,c=n||s;return(0,K.jsxs)(`button`,{type:`button`,className:`code-model-matrix-fast ${e?`is-active`:``} ${s?`is-disabled`:``}`,"aria-label":s&&r?`Fast mode unavailable: ${r}`:`Fast mode`,title:s?r:void 0,"aria-pressed":e,"aria-disabled":c,disabled:c,onClick:()=>{o(!0),i(!e)},children:[(0,K.jsx)(`span`,{className:`code-model-matrix-fast-bolt ${a?`is-kicked`:``}`,"aria-hidden":`true`,onAnimationEnd:()=>o(!1),children:(0,K.jsx)(LD,{})}),(0,K.jsx)(`span`,{children:`Fast`}),(0,K.jsx)(`small`,{children:t?e?`ON`:`OFF`:`—`})]})}function BD({models:e,currentModel:t,currentReasoning:n,fastAvailable:r,fast:i,disabled:a,onSelect:o,onFastChange:s,advanced:c}){let l=ID(e,t),u=!!l?.find(e=>e.value===t)?.reasoning.some(e=>e.value===n),[d,f]=(0,G.useState)(!u),[p,m]=(0,G.useState)(null),[h,g]=(0,G.useState)(null),[_,v]=(0,G.useState)(null),y=(0,G.useRef)(!!l),b=(0,G.useRef)(new Map),x=(0,G.useRef)(null),S=(0,G.useRef)(null),C=(0,G.useRef)(null),w=(0,G.useRef)(null),T=(0,G.useRef)(null),E=(0,G.useRef)(null),D=(0,G.useRef)(null),O=(0,G.useRef)(null),k=(0,G.useRef)(null);if((0,G.useEffect)(()=>{let e=!y.current&&!!l;y.current=!!l,e&&u&&(D.current=w.current?.getBoundingClientRect().height??null,f(!1))},[l,u]),(0,G.useEffect)(()=>{if(!h)return;if(t===h.model&&n===h.reasoning){g(null);return}let e=window.setTimeout(()=>g(null),5e3);return()=>window.clearTimeout(e)},[t,n,h]),(0,G.useEffect)(()=>{if(_===null)return;if(!r||i===_){v(null);return}let e=window.setTimeout(()=>v(null),5e3);return()=>window.clearTimeout(e)},[i,r,_]),(0,G.useEffect)(()=>()=>{C.current!==null&&window.cancelAnimationFrame(C.current),O.current!==null&&window.cancelAnimationFrame(O.current),k.current!==null&&window.clearTimeout(k.current)},[]),(0,G.useLayoutEffect)(()=>{let e=w.current,t=d?E.current:T.current,n=D.current;if(D.current=null,!e||!t)return;O.current!==null&&window.cancelAnimationFrame(O.current),k.current!==null&&window.clearTimeout(k.current),O.current=null,k.current=null;let r=t.getBoundingClientRect().height,i=window.matchMedia(`(prefers-reduced-motion: reduce)`).matches;if(n===null||i||Math.abs(n-r)<1){e.style.height=`${r}px`,e.style.overflow=d?`visible`:`hidden`;return}e.style.height=`${n}px`,e.style.overflow=`hidden`,e.offsetHeight,O.current=window.requestAnimationFrame(()=>{e.style.height=`${r}px`,O.current=null}),k.current=window.setTimeout(()=>{e.style.height=`${r}px`,e.style.overflow=d?`visible`:`hidden`,k.current=null},FD+40)},[d]),!l)return c;let A=l.find(e=>e.value===t)??l[0],j=A.reasoning.filter(e=>e.value!==`ultra`);n!==`ultra`&&j.some(e=>e.value===n)&&b.current.set(A.value,n);let M=b.current.get(A.value)||j[j.length-1]?.value||n,N=n===`ultra`?M:n,P=Math.max(0,j.findIndex(e=>e.value===N)),F=A.reasoning.find(e=>e.value===n)?.label||n;function ee(e,t){a||(g({model:e.value,reasoning:t}),b.current.set(e.value,t),o(e.value,t))}let I=l.map(e=>({model:e,reasoning:e.reasoning.filter(e=>e.value!==`ultra`)})),te=Math.max(0,I.findIndex(e=>e.model.value===t)),L=Math.max(0,I[te]?.reasoning.findIndex(e=>e.value===N)??0),R=h?I.findIndex(e=>e.model.value===h.model):-1,ne=R>=0?I[R]?.reasoning.findIndex(e=>e.value===h?.reasoning)??-1:-1,z=p??(R>=0&&ne>=0?{row:R,column:ne}:null)??{row:te,column:L},B=I[z.row]??I[0],re=Math.min(z.column,Math.max(0,B.reasoning.length-1)),ie=B.reasoning[re],ae=h?l.find(e=>e.value===h.model)??A:A,V=h?.reasoning??n,oe=ae.reasoning.filter(e=>e.value!==`ultra`),se=ae.reasoning.find(e=>e.value===`ultra`),ce=b.current.get(ae.value)||oe[oe.length-1]?.value||V,le=ae.reasoning.find(e=>e.value===V)?.label||V,ue=!!se&&V===`ultra`,de=_??i,fe=`${(typeof z.x==`number`?z.x:(re+.5)/Math.max(1,B.reasoning.length))*100}%`,pe=typeof z.y==`number`?z.y:(z.row+.5)/Math.max(1,I.length),me=`${pe*100}%`,he=`${Math.max(0,Math.min(1-1/Math.max(1,I.length),pe-.5/Math.max(1,I.length)))*100}%`,H=`${100/Math.max(1,I.length)}%`;function ge(e){let t=e.currentTarget.getBoundingClientRect(),n=Math.max(0,Math.min(1,(e.clientX-t.left)/Math.max(1,t.width))),r=Math.max(0,Math.min(1,(e.clientY-t.top)/Math.max(1,t.height))),i=Math.max(0,Math.min(I.length-1,Math.floor(r*I.length))),a=I[i]?.reasoning.length||1;return{row:i,column:Math.max(0,Math.min(a-1,Math.floor(n*a))),x:Math.max(.5/a,Math.min(1-.5/a,n)),y:Math.max(.5/I.length,Math.min(1-.5/I.length,r))}}function _e(e){let t=I[e.row],n=t?.reasoning[e.column];t&&n&&ee(t.model,n.value)}function ve(e){a||!r||de===e||(v(e),s(e))}function ye(e){if(a||!se||ue===e)return;let t=e?se.value:ce;g({model:ae.value,reasoning:t}),e||b.current.set(ae.value,t),o(ae.value,t)}function xe(e){S.current=e,C.current===null&&(C.current=window.requestAnimationFrame(()=>{C.current=null;let e=S.current;S.current=null,e&&m(e)}))}function Se(){S.current=null,C.current!==null&&(window.cancelAnimationFrame(C.current),C.current=null)}function Ce(e,t=!0){let n=x.current;if(!n||n.pointerId!==e.pointerId)return;let r=ge(e);x.current=null,Se(),t&&_e(r),m(null),e.currentTarget.hasPointerCapture(e.pointerId)&&e.currentTarget.releasePointerCapture(e.pointerId)}function we(){D.current=w.current?.getBoundingClientRect().height??null,f(e=>!e)}return(0,K.jsxs)(`div`,{className:`code-model-matrix-shell is-${B.model.variant}`,"data-testid":`code-model-matrix-picker`,"data-advanced":d?`open`:`closed`,"data-fast":de?`on`:`off`,"data-ultra":ue?`on`:`off`,children:[(0,K.jsxs)(`div`,{className:`code-model-matrix-stage`,ref:w,children:[(0,K.jsxs)(`div`,{ref:T,className:`code-model-matrix`,"aria-hidden":d,inert:d?!0:void 0,children:[(0,K.jsx)(`div`,{className:`code-model-matrix-head`,style:{"--matrix-columns":B.reasoning.length},"aria-hidden":`true`,children:B.reasoning.map(e=>(0,K.jsx)(`span`,{children:e.label},e.value))}),(0,K.jsx)(`div`,{className:`code-model-matrix-labels`,"aria-hidden":`true`,children:I.map(({model:e})=>(0,K.jsx)(`span`,{className:e.value===B.model.value?`selected`:``,"data-variant":e.variant,children:e.variant.charAt(0).toUpperCase()+e.variant.slice(1)},e.value))}),(0,K.jsxs)(`div`,{className:`code-model-matrix-surface ${p?`is-dragging`:``}`,role:`radiogroup`,"aria-label":`Model and reasoning`,style:{"--matrix-columns":j.length,"--matrix-rows":I.length,"--matrix-selection-x":fe,"--matrix-selection-y":me,"--matrix-selection-row-top":he,"--matrix-selection-row-height":H},onPointerDown:e=>{a||(e.preventDefault(),e.currentTarget.setPointerCapture(e.pointerId),x.current={pointerId:e.pointerId,startX:e.clientX,startY:e.clientY,dragged:!1})},onPointerMove:e=>{let t=x.current;if(!t||t.pointerId!==e.pointerId)return;if(e.pointerType===`mouse`&&e.buttons===0){Ce(e);return}let n=Math.hypot(e.clientX-t.startX,e.clientY-t.startY);!t.dragged&&n>=PD&&(t.dragged=!0),t.dragged&&xe(ge(e))},onPointerUp:e=>Ce(e),onPointerCancel:e=>Ce(e,!1),onLostPointerCapture:e=>{x.current?.pointerId===e.pointerId&&(x.current=null,Se(),m(null))},children:[(0,K.jsx)(`span`,{className:`code-model-matrix-fill`,"data-variant":B.model.variant,"aria-hidden":`true`}),(0,K.jsx)(`div`,{className:`code-model-matrix-cells`,children:I.flatMap(({model:e,reasoning:t},n)=>t.map((r,i)=>{let o=n===z.row&&i===re,s=o&&!ue;return(0,K.jsx)(`button`,{type:`button`,className:o?`selected`:``,role:`radio`,"data-matrix-cell":!0,"data-testid":`code-model-matrix-cell-${e.variant}-${r.value}`,"aria-label":`${e.label}, ${r.label}`,"aria-checked":s,disabled:a,style:{"--matrix-cell-left":`${i/Math.max(1,t.length)*100}%`,"--matrix-cell-top":`${n/Math.max(1,I.length)*100}%`,"--matrix-cell-width":`${100/Math.max(1,t.length)}%`,"--matrix-cell-height":`${100/Math.max(1,I.length)}%`},onClick:t=>{t.detail===0&&ee(e,r.value)}},`${e.value}:${r.value}`)}))}),(0,K.jsx)(`span`,{className:`code-model-matrix-thumb`,"data-variant":B.model.variant,"aria-hidden":`true`})]}),(0,K.jsx)(`div`,{className:`code-model-matrix-rockers`,children:(0,K.jsx)(RD,{label:se?.label||`Ultra`,active:ue,disabled:a,unavailable:!se,unavailableReason:`Ultra is not offered for this model by the active Codex CLI.`,onChange:ye})}),(0,K.jsx)(zD,{active:r&&de,available:r,disabled:a,unavailableReason:`Fast is not offered for this model by the active Codex CLI.`,onChange:ve}),(0,K.jsx)(`span`,{className:`code-model-matrix-current`,"aria-live":`polite`,children:p?`${B.model.label} · ${ie?.label||``}`:h?`${ae.label} · ${le}`:`${A.label} · ${F||j[P]?.label}`})]}),(0,K.jsx)(`div`,{ref:E,className:`code-model-matrix-advanced`,"data-testid":`code-model-matrix-advanced`,"aria-hidden":!d,inert:d?void 0:!0,children:c})]}),(0,K.jsxs)(`button`,{type:`button`,className:`code-model-matrix-advanced-toggle`,"data-testid":`code-model-matrix-advanced-toggle`,"aria-expanded":d,onClick:we,children:[(0,K.jsx)(`span`,{children:`Advanced`}),(0,K.jsx)(be,{className:d?`expanded`:``})]})]})}function VD(e,t){return t===`goal`?e.goalMode:t===`plan`?e.planMode:e.messageMode}function HD(e,t,n){return t===`goal`?e.describeAgentGoal:t===`plan`?e.describePlanFirst:n===`shell`?e.shellCommandPlaceholder:e.askFollowUpChanges}function UD(){return typeof window<`u`&&oe()}function WD(e){return e.trim().replace(/^gpt[-\s]*/i,``)||e}function GD(e,t){return e===`xhigh`&&t.trim().toLowerCase()===`extra high`?`XHigh`:t}function KD(e){return!Number.isFinite(e)||e<0?`0`:e>=1e6?`${Math.round(e/1e5)/10}m`:e>=1e3?`${Math.round(e/1e3)}k`:String(Math.round(e))}function qD(e){let t=Math.max(0,Math.floor(e)),n=Math.floor(t/60),r=t%60;return`${n}:${String(r).padStart(2,`0`)}`}var JD=[.28,.5,.72,.46,.9,.36,.62,.82,.42,.68,.95,.52,.33,.75,.57,.88,.4,.64,.93,.48,.7,.31,.58,.83],YD=22,XD=22,ZD=66,QD=`M8 10.9995C9.654 10.9995 11 9.65351 11 7.99951V3.99951C11 2.34551 9.654 0.999512 8 0.999512C6.346 0.999512 5 2.34551 5 3.99951V7.99951C5 9.65351 6.346 10.9995 8 10.9995ZM6 3.99951C6 2.89651 6.897 1.99951 8 1.99951C9.103 1.99951 10 2.89651 10 3.99951V7.99951C10 9.10251 9.103 9.99951 8 9.99951C6.897 9.99951 6 9.10251 6 7.99951V3.99951ZM13 7.49951V7.99951C13 10.5855 11.02 12.6935 8.5 12.9485V14.4995C8.5 14.7755 8.276 14.9995 8 14.9995C7.724 14.9995 7.5 14.7755 7.5 14.4995V12.9485C4.98 12.6935 3 10.5845 3 7.99951V7.49951C3 7.22351 3.224 6.99951 3.5 6.99951C3.776 6.99951 4 7.22351 4 7.49951V7.99951C4 10.2055 5.794 11.9995 8 11.9995C10.206 11.9995 12 10.2055 12 7.99951V7.49951C12 7.22351 12.224 6.99951 12.5 6.99951C12.776 6.99951 13 7.22351 13 7.49951Z`,$D=`M8 10.9995C9.654 10.9995 11 9.65351 11 7.99951V3.99951C11 2.34551 9.654 0.999512 8 0.999512C6.346 0.999512 5 2.34551 5 3.99951V7.99951C5 9.65351 6.346 10.9995 8 10.9995ZM13 7.49951V7.99951C13 10.5855 11.02 12.6935 8.5 12.9485V14.4995C8.5 14.7755 8.276 14.9995 8 14.9995C7.724 14.9995 7.5 14.7755 7.5 14.4995V12.9485C4.98 12.6935 3 10.5845 3 7.99951V7.49951C3 7.22351 3.224 6.99951 3.5 6.99951C3.776 6.99951 4 7.22351 4 7.49951V7.99951C4 10.2055 5.794 11.9995 8 11.9995C10.206 11.9995 12 10.2055 12 7.99951V7.49951C12 7.22351 12.224 6.99951 12.5 6.99951C12.776 6.99951 13 7.22351 13 7.49951Z`;function eO({listening:e}){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:e?$D:QD})})}function tO(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M8.85 1.35a.55.55 0 0 1 .55.68L8.28 6.1h3.07a.55.55 0 0 1 .42.9l-5.5 6.6a.55.55 0 0 1-.96-.48l1.12-4.2H3.65a.55.55 0 0 1-.44-.88l5.2-6.48a.55.55 0 0 1 .44-.21ZM4.8 7.9h2.34a.55.55 0 0 1 .53.69l-.63 2.38L10.17 7.1H7.56a.55.55 0 0 1-.53-.7l.62-2.26L4.8 7.9Z`})})}function nO({active:e,agentKind:t,capabilities:n,slashCommands:r,draft:i,attachments:a,composerMode:o,plusMenuOpen:s,approvalMenuOpen:c,modelMenuOpen:l,modelPickerPane:u,agentModelPreset:d,agentModel:f,agentReasoningEffort:p,agentServiceTier:m,agentModelOptions:h,currentPermissionMode:g,permissionModeDisabled:_,modelProfileDisabled:v,currentPermissionLabel:y,currentPermissionColor:b,permissionModeHint:x,currentModelLabel:S,currentReasoningLabel:C,currentSpeedLabel:w,currentReasoningOptions:T,currentServiceTierOptions:E,permissionModeOptions:D,contextWindow:O,pendingFollowUp:k,appServerRequest:A,appServerNotice:j,submitAction:M,speechSupported:N,speechListening:P,textareaRef:F,attachmentInputRef:ee,plusMenuRef:I,approvalMenuRef:te,modelMenuRef:L,onDraftChange:R,onNavigateHistory:ne,onRemoveAttachment:z,onSubmit:B,onInterrupt:re,onSteerPendingFollowUp:ie,onDiscardPendingFollowUp:ae,onRespondToAppServerRequest:V,onRejectAppServerRequest:se,onPasteAttachment:ce,onAttachmentFiles:le,onChooseAttachmentFile:ue,onActivateComposerMode:de,onClearComposerMode:pe,onTogglePlusMenu:me,onToggleApprovalMenu:he,onToggleModelMenu:H,onCloseMenus:ge,onSetModelPickerPane:_e,onComposerMenuKeyDown:ve,onComposerMenuBlur:ye,onUpdatePermissionMode:be,onUpdateModel:xe,onUpdateReasoningEffort:we,onUpdateServiceTier:Te,onUpdateModelProfile:Ee,onUpdateServiceTierInline:De,onToggleSpeechInput:Oe,copy:U}){let Ae=e&&n.plusMenu,je=e&&n.permissionMode,Me=e&&n.modelPicker,Pe=n.serviceTier&&E.length>0,Fe=h.map(e=>({value:e.value,label:nD(e,e.value),reasoning:(e.reasoningLevels||[]).map(e=>({value:e.value,label:U.reasoningOptionLabel(e.value,e.label)}))})),Ie=t===`codex`&&!!ID(Fe,f),[Le,Re]=(0,G.useState)(UD),[ze,Be]=(0,G.useState)(0),[Ve,He]=(0,G.useState)(!1),[Ue,We]=(0,G.useState)(i.length),[Ge,Ke]=(0,G.useState)(!1),[qe,Je]=(0,G.useState)(null),[Ye,Xe]=(0,G.useState)(0),Ze=e&&n.speechInput&&(!Le||N),Qe=(0,G.useRef)(new Map),$e=(0,G.useRef)(null),et=(0,G.useRef)(null),tt=(0,G.useRef)(!1),nt=(0,G.useRef)(0),rt=(0,G.useRef)(i),it=(0,G.useRef)(!1),at=s||c||l,ot=(0,G.useMemo)(()=>TD(i,Ue),[i,Ue]),st=ot?`${ot.trigger}:${ot.start}:${ot.end}:${ot.query}`:``,ct=(0,G.useMemo)(()=>ot?r.filter(e=>ED(e,ot.query,ot.trigger)).sort((e,t)=>DD(e,ot.query)-DD(t,ot.query)):[],[r,ot]),lt=e&&Ve&&!at&&!!ot&&st!==qe&&ct.length>0,ut=at||lt,dt=ct[Ye]??ct[0]??null,ft=U.permissionModeLabel(g,y),pt=U.reasoningOptionLabel(p,C),mt=U.serviceTierLabel(m,w),ht=WD(S),gt=GD(p,pt),_t=O?`Context window: ${O.percentUsed}% used (${O.percentLeft}% left), ${KD(O.usedTokens)} / ${KD(O.limitTokens)} tokens used`:``,vt=!e||M===`disabled`,yt=e&&M===`interrupt`,bt=ot?.trigger===`$`?`Skills`:`Commands`,xt=Le&&P&&Ze,St=N||Le,Ct=()=>{(Le||oe())&&Ke(!0),Oe()},wt=()=>{if(it.current){it.current=!1;return}Ct()},Tt=e=>{e.pointerType!==`mouse`&&(e.preventDefault(),it.current=!0,Ct())};function Et(t){if(!Le||!e||t instanceof Element&&t.closest(`.code-composer-menu, button, input, select, [role="menuitem"]`))return;let n=et.current;if(n){n.focus({preventScroll:!0}),We(kD(n)||(n.textContent||``).length);return}let r=F.current;!r||r.disabled||(r.focus({preventScroll:!0}),At(r))}let Dt=e=>{Et(e.target)},Ot=e=>{Et(e.target)},kt=e=>{Et(e.target)};(0,G.useEffect)(()=>{Xe(0)},[ot?.query,ct.length]),(0,G.useEffect)(()=>{rt.current=i},[i]),(0,G.useEffect)(()=>()=>{let e=$e.current;e?.style.removeProperty(`--mobile-composer-current-height`),(e?.closest(`.code-main`))?.style.removeProperty(`--mobile-composer-current-height`)},[]),(0,G.useEffect)(()=>{ot||Je(null)},[ot]),(0,G.useEffect)(()=>{e||(He(!1),Je(null))},[e]),(0,G.useEffect)(()=>{if(typeof window>`u`)return;let e=window.matchMedia(`(max-width: 980px)`),t=()=>Re(UD());return t(),window.addEventListener(`resize`,t),e.addEventListener(`change`,t),()=>{window.removeEventListener(`resize`,t),e.removeEventListener(`change`,t)}},[]),(0,G.useEffect)(()=>{if(Le)return;let e=$e.current,t=e?.closest(`.code-main`);e?.style.removeProperty(`--mobile-composer-current-height`),t?.style.removeProperty(`--mobile-composer-current-height`)},[Le]),(0,G.useEffect)(()=>{if(P||!Ge)return;let e=window.setTimeout(()=>Ke(!1),3600);return()=>window.clearTimeout(e)},[Ge,P]),(0,G.useEffect)(()=>{P&&Ke(!1)},[P]),(0,G.useEffect)(()=>{if(!P){Be(0);return}let e=Date.now();Be(0);let t=window.setInterval(()=>{Be(Math.floor((Date.now()-e)/1e3))},250);return()=>window.clearInterval(t)},[P]),(0,G.useEffect)(()=>{!lt||!dt||Qe.current.get(dt.command)?.scrollIntoView({block:`nearest`})},[lt,dt]);function At(e=F.current){e&&We(e.selectionStart??i.length)}function jt(){We(kD(et.current))}function Mt(e){if(!ot)return;let t=`${e.command} `,n=`${i.slice(0,ot.start)}${t}${i.slice(ot.end)}`,r=ot.start+t.length;R(n),We(r),Je(null),window.requestAnimationFrame(()=>{if(Le){let e=et.current;if(!e)return;e.focus({preventScroll:!0}),AD(e,r),We(r);return}let e=F.current;e&&(e.focus({preventScroll:!0}),e.setSelectionRange(r,r),At(e))})}let Nt=e&&!!(A||j);return(0,K.jsxs)(`footer`,{ref:$e,className:[`code-composer`,ut?`menu-open`:``,xt?`recording`:``,a.length>0?`has-attachments`:``,k&&e?`has-pending-followup`:``,Nt?`has-app-server-request`:``].filter(Boolean).join(` `),"data-testid":`code-composer`,onPointerDownCapture:Dt,onTouchStartCapture:Ot,onMouseDownCapture:kt,onClickCapture:kt,children:[k&&e&&(0,K.jsx)(`div`,{className:`code-pending-followup`,"data-testid":`code-pending-followup`,children:k.messages.map(e=>(0,K.jsxs)(`div`,{className:`code-pending-followup-row`,"data-testid":`code-pending-followup-row`,children:[(0,K.jsx)(`span`,{className:`code-pending-followup-icon`,"aria-hidden":`true`,children:(0,K.jsx)(fe,{})}),(0,K.jsx)(`p`,{children:e.text}),(0,K.jsxs)(`div`,{className:`code-pending-followup-actions`,children:[(0,K.jsxs)(`button`,{type:`button`,"data-testid":`code-pending-followup-steer`,onClick:()=>ie(e.id),children:[(0,K.jsx)(fe,{}),(0,K.jsx)(`span`,{children:U.steerQueuedMessage})]}),(0,K.jsx)(`button`,{type:`button`,className:`icon`,"data-testid":`code-pending-followup-discard`,"aria-label":U.discardQueuedMessage,onClick:()=>ae(e.id),children:(0,K.jsx)(Se,{})})]})]},e.id))}),e&&A&&(0,K.jsx)(CD,{request:A,onRespond:V,onReject:se,copy:U}),e&&j&&j.kind===`approval-rejected`&&(0,K.jsxs)(`section`,{className:`code-app-server-request code-app-server-notice`,"data-testid":`code-app-server-notice`,children:[(0,K.jsxs)(`header`,{children:[(0,K.jsx)(`strong`,{children:U.appServerApprovalRejectedTitle}),j.method?(0,K.jsx)(`span`,{children:j.method}):null]}),(0,K.jsx)(`p`,{children:U.appServerApprovalRejectedDescription})]}),lt&&(0,K.jsxs)(`div`,{className:`code-slash-menu code-composer-menu`,"data-testid":`code-slash-menu`,role:`listbox`,"aria-label":bt,children:[(0,K.jsx)(`div`,{className:`code-slash-menu-header`,children:bt}),ct.map((e,t)=>(0,K.jsxs)(`button`,{type:`button`,className:`code-slash-command ${t===Ye?`active`:``}`,"data-testid":OD(e.command),role:`option`,"aria-selected":t===Ye,ref:t=>{t?Qe.current.set(e.command,t):Qe.current.delete(e.command)},onMouseMove:()=>Xe(t),onMouseDown:e=>e.preventDefault(),onClick:()=>Mt(e),children:[(0,K.jsx)(`span`,{className:`code-slash-command-icon`,"aria-hidden":`true`,children:ot?.trigger??`/`}),(0,K.jsxs)(`span`,{className:`code-slash-command-copy`,children:[(0,K.jsxs)(`span`,{className:`code-slash-command-title`,children:[(0,K.jsx)(`code`,{children:e.command}),(0,K.jsx)(`strong`,{children:e.label})]}),(0,K.jsx)(`small`,{children:e.description})]}),e.scope&&(0,K.jsx)(`span`,{className:`code-slash-command-source`,children:e.scope})]},e.command))]}),Le?(0,K.jsx)(MD,{active:e,draft:i,placeholder:e?HD(U,o,t):U.openAgentTerminalFirst,minHeight:Ve||ut||a.length>0||k&&e?XD:YD,maxHeight:ZD,editorRef:et,composerRef:$e,onFocus:()=>{ge(),He(!0),We(kD(et.current))},onBlur:()=>He(!1),onInput:e=>{let t=jD(e.currentTarget);rt.current=t,R(t),Je(null),We(kD(e.currentTarget))},onPaste:ce,onCompositionStart:()=>{tt.current=!0},onCompositionEnd:e=>{tt.current=!1,nt.current=Date.now();let t=jD(e.currentTarget);rt.current=t,R(t),We(kD(e.currentTarget))},onKeyDown:e=>{let t=tt.current;if(!mD(e,t)){if(hD(e,nt.current)){e.preventDefault(),e.stopPropagation();return}if(lt&&(e.key===`Enter`||e.key===`Tab`)&&dt){e.preventDefault(),e.stopPropagation(),Mt(dt);return}e.key!==`Enter`||e.shiftKey||(e.preventDefault(),e.stopPropagation(),B(_D(jD(e.currentTarget),rt.current)))}},onSelectionIntent:jt}):(0,K.jsx)(`textarea`,{"data-testid":`code-composer-input`,ref:F,enterKeyHint:`send`,name:`farming-chat-message`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,value:i,onFocus:e=>{ge(),He(!0),At(e.currentTarget)},onBlur:()=>He(!1),onClick:e=>At(e.currentTarget),onKeyUp:e=>At(e.currentTarget),onSelect:e=>At(e.currentTarget),onCompositionStart:()=>{tt.current=!0},onCompositionEnd:e=>{tt.current=!1,nt.current=Date.now(),rt.current=e.currentTarget.value,At(e.currentTarget)},onChange:e=>{rt.current=e.target.value,R(e.target.value),Je(null),At(e.currentTarget)},onPaste:ce,onKeyDown:e=>{let t=tt.current;if(!mD(e,t)){if(hD(e,nt.current)){e.preventDefault(),e.stopPropagation();return}if(lt){if(e.key===`ArrowDown`||e.key===`ArrowUp`){e.preventDefault(),e.stopPropagation();let t=e.key===`ArrowDown`?1:-1;Xe(e=>(e+t+ct.length)%ct.length);return}if(e.key===`Home`){e.preventDefault(),e.stopPropagation(),Xe(0);return}if(e.key===`End`){e.preventDefault(),e.stopPropagation(),Xe(ct.length-1);return}if(e.key===`Escape`){e.preventDefault(),e.stopPropagation(),Je(st);return}if((e.key===`Enter`||e.key===`Tab`)&&dt){e.preventDefault(),e.stopPropagation(),Mt(dt);return}}if(e.key===`ArrowUp`||e.key===`ArrowDown`){let t=e.key===`ArrowUp`?`previous`:`next`,n=ne(t,{direction:t,value:e.currentTarget.value,selectionStart:e.currentTarget.selectionStart,selectionEnd:e.currentTarget.selectionEnd});if(n!==null){e.preventDefault(),e.stopPropagation(),window.requestAnimationFrame(()=>{let e=F.current;if(!e)return;let t=n.length;e.setSelectionRange(t,t),At(e)});return}}gD(e,t,nt.current)&&(e.preventDefault(),e.stopPropagation(),B(_D(e.currentTarget.value,rt.current)))}},placeholder:e?HD(U,o,t):U.openAgentTerminalFirst,disabled:!e}),Ge&&!P&&(0,K.jsx)(`div`,{className:`code-composer-dictation-hint`,"data-testid":`code-composer-dictation-hint`,children:U.mobileDictationHint}),(0,K.jsx)(wD,{attachments:a,onRemove:z}),(0,K.jsx)(`input`,{ref:ee,className:`code-composer-file-input`,"data-testid":`code-composer-file-input`,type:`file`,multiple:!0,onChange:le}),(0,K.jsx)(`div`,{className:`code-composer-toolbar ${xt?`recording`:``}`,"data-testid":`code-composer-toolbar`,children:xt?(0,K.jsxs)(`div`,{className:`code-composer-recording-bar`,"data-testid":`code-composer-recording`,children:[(0,K.jsx)(`button`,{type:`button`,className:`code-composer-recording-stop`,"data-testid":`code-composer-recording-stop`,"aria-label":U.stopDictation,onPointerDown:Tt,onClick:wt,children:(0,K.jsx)(`span`,{"aria-hidden":`true`})}),(0,K.jsx)(`div`,{className:`code-composer-recording-wave`,"aria-hidden":`true`,children:JD.map((e,t)=>(0,K.jsx)(`span`,{style:{"--voice-bar-scale":e,"--voice-bar-delay":`${t*38}ms`}},t))}),(0,K.jsx)(`span`,{className:`code-composer-recording-time`,children:qD(ze)}),(0,K.jsx)(`button`,{type:`button`,className:`code-composer-send ${yt?`interrupt`:``}`,"data-testid":`code-composer-send`,"data-action":M,"aria-label":yt?U.interruptAgent:U.sendMessage,onClick:yt?re:()=>B(rt.current),disabled:vt,children:yt?(0,K.jsx)(`span`,{className:`code-composer-stop-icon`,"aria-hidden":`true`}):(0,K.jsx)(Ce,{})})]}):(0,K.jsxs)(K.Fragment,{children:[(0,K.jsxs)(`div`,{className:`code-composer-left-tools`,"data-testid":`code-composer-left-tools`,children:[Ae&&(0,K.jsxs)(`div`,{className:`code-composer-menu-anchor`,children:[(0,K.jsx)(`button`,{type:`button`,className:`code-composer-add`,"data-testid":`code-composer-add`,"aria-label":U.addContext,"aria-haspopup":`menu`,"aria-expanded":s,disabled:!e,onClick:me,children:(0,K.jsx)(Ne,{})}),s&&(0,K.jsxs)(`div`,{className:`code-plus-menu code-composer-menu`,role:`menu`,"data-testid":`code-composer-plus-menu`,ref:I,onKeyDown:ve,onBlur:ye,onMouseDown:e=>e.preventDefault(),children:[(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-composer-attach-file`,onClick:ue,children:[(0,K.jsx)(`span`,{children:U.attachFile}),(0,K.jsx)(`small`,{children:U.fileContext})]}),(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-composer-goal-mode`,onClick:()=>de(`goal`),children:[(0,K.jsx)(`span`,{children:U.goalMode}),(0,K.jsx)(`small`,{children:U.setObjective})]}),(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-composer-plan-mode`,onClick:()=>de(`plan`),children:[(0,K.jsx)(`span`,{children:U.planMode}),(0,K.jsx)(`small`,{children:U.planFirst})]})]})]}),o!==`default`&&(0,K.jsxs)(`button`,{type:`button`,className:`code-composer-mode-chip`,"data-testid":`code-composer-mode-chip`,"aria-label":U.clearComposerMode,onClick:pe,children:[(0,K.jsx)(`span`,{children:VD(U,o)}),(0,K.jsx)(`span`,{"aria-hidden":`true`,children:(0,K.jsx)(Se,{})})]}),je&&(0,K.jsxs)(`div`,{className:`code-composer-menu-anchor`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-composer-approval ${b}`,"data-testid":`code-composer-approval`,"aria-label":U.agentPermissionMode,"aria-haspopup":`menu`,"aria-expanded":c,disabled:_,onClick:he,children:[(0,K.jsx)(`span`,{className:`code-tool-icon`,"aria-hidden":`true`,children:(0,K.jsx)(rO,{mode:g})}),(0,K.jsx)(`span`,{className:`code-composer-approval-label`,children:ft}),(0,K.jsx)(`span`,{className:`code-chevron`,"aria-hidden":`true`,children:(0,K.jsx)(iO,{})})]}),c&&(0,K.jsxs)(`div`,{className:`code-approval-menu code-composer-menu`,role:`menu`,"data-testid":`code-approval-menu`,ref:te,onKeyDown:ve,onBlur:ye,onMouseDown:e=>e.preventDefault(),children:[(0,K.jsxs)(`div`,{className:`code-approval-menu-header`,children:[(0,K.jsx)(`span`,{children:U.permissionsPrompt}),(0,K.jsx)(`small`,{children:x})]}),D.map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-approval-option ${e.value===g?`selected`:``}`,role:`menuitemradio`,"aria-checked":e.value===g,onClick:()=>be(e.value),children:[(0,K.jsx)(`span`,{className:`code-approval-option-icon ${e.color??`muted`}`,"aria-hidden":`true`,children:(0,K.jsx)(rO,{mode:e.value})}),(0,K.jsxs)(`span`,{className:`code-approval-option-copy`,children:[(0,K.jsx)(`span`,{children:U.permissionModeLabel(e.value,e.label)}),(0,K.jsx)(`small`,{children:U.permissionModeDescription(e.value,e.description)})]}),e.value===g&&(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})})]},e.value))]})]})]}),(0,K.jsxs)(`div`,{className:`code-composer-right-tools`,"data-testid":`code-composer-right-tools`,children:[O&&(0,K.jsxs)(`div`,{className:`code-composer-context-window`,"data-testid":`code-composer-context-window`,tabIndex:0,role:`img`,"aria-label":_t,children:[(0,K.jsx)(`span`,{className:`code-context-window-ring`,"aria-hidden":`true`,style:{"--context-percent":O.percentUsed}}),(0,K.jsxs)(`div`,{className:`code-context-window-popover`,role:`tooltip`,children:[(0,K.jsx)(`span`,{children:`Context window:`}),(0,K.jsxs)(`strong`,{children:[O.percentUsed,`% used (`,O.percentLeft,`% left)`]}),(0,K.jsxs)(`strong`,{children:[KD(O.usedTokens),` / `,KD(O.limitTokens),` tokens used`]})]})]}),Me&&(0,K.jsxs)(`div`,{className:`code-composer-menu-anchor model-picker`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-composer-model-picker`,"data-testid":`code-composer-model-picker`,"data-agent-model-preset":d,"aria-label":U.modelAndReasoning,"aria-haspopup":`menu`,"aria-expanded":l,title:[S,pt,mt].filter(Boolean).join(` · `),onClick:H,children:[m===`priority`&&(0,K.jsx)(`span`,{className:`code-composer-speed-active`,"aria-hidden":`true`,children:(0,K.jsx)(tO,{})}),(0,K.jsx)(`span`,{className:`code-composer-model-label desktop`,children:S}),(0,K.jsx)(`span`,{className:`code-composer-model-label mobile`,children:ht}),(0,K.jsx)(`span`,{className:`code-composer-model-picker-muted desktop`,children:pt}),(0,K.jsx)(`span`,{className:`code-composer-model-picker-muted mobile`,children:gt}),(0,K.jsx)(`span`,{className:`code-chevron`,"aria-hidden":`true`,children:(0,K.jsx)(iO,{})})]}),l&&(0,K.jsx)(`div`,{className:`code-model-picker-menu code-composer-menu ${Ie?`has-matrix`:``}`,role:`menu`,"data-testid":`code-model-menu`,ref:L,onKeyDown:ve,onBlur:ye,onMouseDown:e=>e.preventDefault(),children:(0,K.jsx)(BD,{models:Fe,currentModel:f,currentReasoning:p,fastAvailable:Pe&&E.some(e=>e.value===`priority`),fast:m===`priority`,disabled:v,onSelect:Ee,onFastChange:e=>De(e?`priority`:`default`),advanced:(0,K.jsxs)(K.Fragment,{children:[T.length>0&&(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`div`,{className:`code-model-menu-header`,children:U.reasoning}),T.map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-model-option ${e.value===p?`selected`:``}`,role:`menuitemradio`,"aria-checked":e.value===p,disabled:v,onClick:()=>we(e.value),children:[(0,K.jsx)(`span`,{className:`code-model-option-copy`,children:(0,K.jsx)(`span`,{children:U.reasoningOptionLabel(e.value,e.label)})}),e.value===p&&(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})})]},e.value)),(0,K.jsx)(`div`,{className:`code-context-menu-separator`,role:`separator`})]}),(0,K.jsxs)(`div`,{className:`code-model-nested-anchor`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-model-nested-trigger ${u===`model`?`selected`:``}`,role:`menuitem`,"data-testid":`code-model-submenu-trigger`,disabled:v,onClick:()=>_e(u===`model`?null:`model`),children:[(0,K.jsx)(`span`,{children:S}),(0,K.jsx)(W,{className:`code-menu-chevron-right`})]}),u===`model`&&(0,K.jsx)(`div`,{className:`code-model-submenu code-composer-menu`,role:`menu`,"data-testid":`code-model-submenu`,onKeyDown:ve,children:h.map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-model-option ${e.value===f?`selected`:``}`,role:`menuitemradio`,"aria-checked":e.value===f,disabled:v,onClick:()=>xe(e.value),children:[(0,K.jsx)(`span`,{className:`code-model-option-copy`,children:(0,K.jsx)(`span`,{children:nD(e,e.value)})}),e.value===f&&(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})})]},e.value))})]}),Pe&&(0,K.jsxs)(`div`,{className:`code-model-nested-anchor`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-model-nested-trigger ${u===`speed`?`selected`:``}`,role:`menuitem`,"data-testid":`code-speed-submenu-trigger`,disabled:v,onClick:()=>_e(u===`speed`?null:`speed`),children:[(0,K.jsx)(`span`,{children:U.speed}),(0,K.jsx)(W,{className:`code-menu-chevron-right`})]}),u===`speed`&&(0,K.jsx)(`div`,{className:`code-speed-submenu code-composer-menu`,role:`menu`,"data-testid":`code-speed-submenu`,onKeyDown:ve,children:E.map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-model-option ${e.value===m?`selected`:``}`,role:`menuitemradio`,"aria-checked":e.value===m,disabled:v,onClick:()=>Te(e.value),children:[(0,K.jsxs)(`span`,{className:`code-model-option-copy`,children:[(0,K.jsxs)(`span`,{className:`code-speed-option-label`,children:[e.value===`priority`&&(0,K.jsx)(`span`,{className:`code-speed-option-icon`,"aria-hidden":`true`,children:(0,K.jsx)(tO,{})}),(0,K.jsx)(`span`,{children:U.serviceTierLabel(e.value,e.label)})]}),e.description&&(0,K.jsx)(`small`,{children:U.serviceTierDescription(e.value,e.description)})]}),e.value===m&&(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})})]},e.value))})]})]})})})]}),Ze&&(0,K.jsx)(`button`,{type:`button`,className:`code-composer-mic ${P?`listening`:``}`,"data-testid":`code-composer-mic`,"aria-label":P?U.stopDictation:N?U.startDictation:U.mobileDictationHint,"aria-pressed":P,onPointerDown:Tt,onClick:wt,disabled:!e||!St,title:St?P?U.stopDictation:N?U.startDictation:U.mobileDictationHint:U.speechUnsupported,children:(0,K.jsx)(eO,{listening:P})}),(0,K.jsx)(`button`,{type:`button`,className:`code-composer-send ${yt?`interrupt`:``}`,"data-testid":`code-composer-send`,"data-action":M,"aria-label":yt?U.interruptAgent:U.sendMessage,onClick:yt?re:()=>B(rt.current),disabled:vt,children:yt?(0,K.jsx)(`span`,{className:`code-composer-stop-icon`,"aria-hidden":`true`}):(0,K.jsx)(Ce,{})})]})]})})]})}function rO({mode:e}){return e===`ask`?(0,K.jsx)(ye,{className:`code-approval-hand-glyph`}):e===`custom`?(0,K.jsx)(`svg`,{className:`filled`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M7.99997 6C6.89497 6 5.99997 6.895 5.99997 8C5.99997 9.105 6.89497 10 7.99997 10C9.10497 10 9.99997 9.105 9.99997 8C9.99997 6.895 9.10497 6 7.99997 6ZM7.99997 9C7.44797 9 6.99997 8.552 6.99997 8C6.99997 7.448 7.44797 7 7.99997 7C8.55197 7 8.99997 7.448 8.99997 8C8.99997 8.552 8.55197 9 7.99997 9ZM14.565 9.715L13.279 8.628C13.245 8.599 13.213 8.567 13.184 8.533C12.888 8.186 12.931 7.667 13.279 7.372L14.565 6.285C14.693 6.177 14.742 6.003 14.691 5.844C14.386 4.903 13.882 4.04 13.219 3.308C13.139 3.22 13.027 3.172 12.912 3.172C12.865 3.172 12.818 3.18 12.773 3.196L11.186 3.761C11.144 3.776 11.1 3.788 11.056 3.796C11.006 3.805 10.956 3.81 10.907 3.81C10.515 3.81 10.167 3.532 10.094 3.134L9.79097 1.482C9.76097 1.318 9.63397 1.188 9.46997 1.153C8.98997 1.051 8.49897 1 8.00097 1C7.50297 1 7.01097 1.052 6.53097 1.153C6.36697 1.188 6.23997 1.318 6.20997 1.482L5.90797 3.134C5.89997 3.178 5.88797 3.221 5.87297 3.263C5.75197 3.6 5.43397 3.81 5.09397 3.81C5.00197 3.81 4.90797 3.794 4.81597 3.762L3.22897 3.197C3.18397 3.181 3.13597 3.173 3.08997 3.173C2.97497 3.173 2.86297 3.221 2.78297 3.309C2.11897 4.041 1.61597 4.904 1.30997 5.845C1.25797 6.004 1.30797 6.178 1.43597 6.286L2.72197 7.373C2.75597 7.402 2.78797 7.434 2.81697 7.468C3.11297 7.815 3.06997 8.334 2.72197 8.629L1.43597 9.716C1.30797 9.824 1.25897 9.998 1.30997 10.157C1.61497 11.098 2.11897 11.961 2.78297 12.693C2.86297 12.781 2.97497 12.829 3.08997 12.829C3.13697 12.829 3.18397 12.821 3.22897 12.805L4.81597 12.24C4.85797 12.225 4.90197 12.213 4.94597 12.205C4.99597 12.196 5.04597 12.192 5.09497 12.192C5.48697 12.192 5.83497 12.47 5.90797 12.868L6.20997 14.52C6.23997 14.684 6.36697 14.814 6.53097 14.849C7.01097 14.951 7.50297 15.002 8.00097 15.002C8.49897 15.002 8.99097 14.95 9.46997 14.849C9.63397 14.814 9.76097 14.684 9.79097 14.52L10.094 12.868C10.102 12.824 10.114 12.781 10.129 12.739C10.25 12.402 10.568 12.192 10.908 12.192C11 12.192 11.094 12.208 11.186 12.24L12.772 12.805C12.818 12.821 12.865 12.829 12.911 12.829C13.026 12.829 13.138 12.781 13.218 12.693C13.882 11.961 14.385 11.098 14.69 10.157C14.742 9.998 14.692 9.824 14.564 9.716L14.565 9.715ZM12.728 11.726L11.521 11.296C11.323 11.226 11.117 11.19 10.908 11.19C10.139 11.19 9.44697 11.676 9.18797 12.399C9.15397 12.492 9.12897 12.588 9.11097 12.686L8.88097 13.937C8.59097 13.979 8.29597 14 8.00097 14C7.70597 14 7.41097 13.979 7.11997 13.936L6.89097 12.685C6.73197 11.818 5.97697 11.189 5.09497 11.189C4.98697 11.189 4.87697 11.199 4.76597 11.219C4.66897 11.237 4.57397 11.262 4.47997 11.295L3.27297 11.725C2.90497 11.264 2.61097 10.759 2.39397 10.214L3.36797 9.391C3.74097 9.076 3.96797 8.634 4.00797 8.148C4.04797 7.662 3.89497 7.19 3.57797 6.818C3.51397 6.743 3.44297 6.672 3.36797 6.608L2.39397 5.785C2.61097 5.24 2.90497 4.734 3.27297 4.274L4.47997 4.704C4.67797 4.774 4.88397 4.81 5.09397 4.81C5.86297 4.81 6.55497 4.324 6.81397 3.601C6.84797 3.507 6.87297 3.411 6.89097 3.314L7.11997 2.063C7.41097 2.021 7.70597 1.999 8.00097 1.999C8.29597 1.999 8.59097 2.02 8.88097 2.062L9.10997 3.313C9.26897 4.18 10.024 4.809 10.906 4.809C11.014 4.809 11.124 4.799 11.234 4.779C11.331 4.761 11.427 4.736 11.521 4.703L12.728 4.273C13.096 4.733 13.39 5.239 13.607 5.784L12.634 6.607C12.261 6.922 12.033 7.364 11.994 7.85C11.954 8.336 12.107 8.809 12.424 9.18C12.489 9.256 12.559 9.326 12.635 9.39L13.609 10.213C13.392 10.758 13.098 11.264 12.73 11.724L12.728 11.726Z`})}):(0,K.jsxs)(`svg`,{viewBox:`0 0 24 24`,"aria-hidden":`true`,children:[(0,K.jsx)(`path`,{d:`M12 3.6 19 6v5.5c0 4.2-2.7 7.6-7 8.9-4.3-1.3-7-4.7-7-8.9V6l7-2.4Z`}),e===`full`||e===`bypassPermissions`?(0,K.jsx)(`path`,{d:`M12 8v5`}):(0,K.jsx)(`path`,{d:`M9.5 12.4 11.3 14l3.5-4`}),e===`full`||e===`bypassPermissions`?(0,K.jsx)(`path`,{d:`M12 16.4h.01`}):null]})}function iO(){return(0,K.jsx)(be,{})}function aO(e){return e&&typeof e==`object`&&!Array.isArray(e)?e:null}function oO({request:e,onRespond:t,copy:n}){let r=e.toolCall?.title||n.acpPermissionTool,i=e.options.filter(e=>e.kind.startsWith(`allow`)),a=e.options.filter(e=>e.kind.startsWith(`reject`)),[o,s]=(0,G.useState)(i.find(e=>e.kind===`allow_once`)?.optionId||i[0]?.optionId||``),[c,l]=(0,G.useState)(!1),u={...e._meta||{},...e.toolCall?._meta||{}},d=aO(u.sandbox_authorization),f=aO(u.sandbox_fallback_authorization),p=u.sandbox_not_applied,m=Array.isArray(d?.network_hosts)?d.network_hosts.map(String):[],h=Array.isArray(d?.write_paths)?d.write_paths.map(String):[],g=e.securityWarnings||[],_=g.length>0&&!c,v=[];return e.toolCall?.rawInput!==void 0&&v.push([`Input`,e.toolCall.rawInput]),e.toolCall?.content!==void 0&&v.push([`Content`,e.toolCall.content]),e.toolCall?.locations!==void 0&&v.push([`Locations`,e.toolCall.locations]),(0,K.jsxs)(`section`,{className:`code-app-server-request`,"data-testid":`code-acp-permission-request`,children:[(0,K.jsxs)(`header`,{children:[(0,K.jsx)(`strong`,{children:n.acpPermissionTitle}),(0,K.jsx)(`span`,{children:e.origin===`subagent`?`Subagent · ${e.toolCall?.kind||`tool`}`:e.toolCall?.kind||`tool`})]}),(0,K.jsx)(`p`,{children:r}),v.length>0?(0,K.jsxs)(`details`,{className:`code-acp-permission-details`,children:[(0,K.jsx)(`summary`,{children:`Details`}),v.map(([e,t])=>(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`strong`,{children:e}),(0,K.jsx)(`pre`,{children:typeof t==`string`?t:JSON.stringify(t,null,2)})]},e))]}):null,d?(0,K.jsxs)(`section`,{className:`code-acp-sandbox-details`,"data-testid":`code-acp-sandbox-details`,children:[d.reason?(0,K.jsxs)(`p`,{children:[(0,K.jsx)(`strong`,{children:`Reason from Agent`}),(0,K.jsx)(`span`,{children:d.reason})]}):null,d.unsandboxed?(0,K.jsxs)(`p`,{className:`warning`,children:[(0,K.jsx)(`strong`,{children:`Sandbox`}),(0,K.jsx)(`span`,{children:`Runs without the OS sandbox`})]}):null,d.network_all_hosts||d.network?(0,K.jsxs)(`p`,{children:[(0,K.jsx)(`strong`,{children:`Network`}),(0,K.jsx)(`span`,{children:`Any host`})]}):m.length>0?(0,K.jsxs)(`details`,{children:[(0,K.jsxs)(`summary`,{children:[`Network · `,m.length,` `,m.length===1?`host`:`hosts`]}),(0,K.jsx)(`ul`,{children:m.map(e=>(0,K.jsx)(`li`,{children:(0,K.jsx)(`code`,{children:e})},e))})]}):null,d.allow_fs_write_all?(0,K.jsxs)(`p`,{children:[(0,K.jsx)(`strong`,{children:`Write access`}),(0,K.jsx)(`span`,{children:`Unrestricted workspace writes`})]}):h.length>0?(0,K.jsxs)(`details`,{children:[(0,K.jsxs)(`summary`,{children:[`Write access · `,h.length,` `,h.length===1?`path`:`paths`]}),(0,K.jsx)(`ul`,{children:h.map(e=>(0,K.jsx)(`li`,{children:(0,K.jsx)(`code`,{children:e})},e))})]}):null,d.command?(0,K.jsxs)(`details`,{children:[(0,K.jsx)(`summary`,{children:`Command`}),(0,K.jsx)(`pre`,{children:d.command})]}):null]}):null,f?(0,K.jsxs)(`section`,{className:`code-acp-sandbox-details warning`,"data-testid":`code-acp-sandbox-fallback`,children:[(0,K.jsxs)(`p`,{children:[(0,K.jsx)(`strong`,{children:`Sandbox unavailable`}),(0,K.jsx)(`span`,{children:f.reason||`The command may run without OS sandboxing.`})]}),f.command?(0,K.jsx)(`pre`,{children:f.command}):null]}):null,p?(0,K.jsx)(`section`,{className:`code-acp-sandbox-details warning`,"data-testid":`code-acp-sandbox-not-applied`,children:(0,K.jsxs)(`p`,{children:[(0,K.jsx)(`strong`,{children:`Sandbox not applied`}),(0,K.jsx)(`span`,{children:typeof p==`string`?p:JSON.stringify(p)})]})}):null,g.length>0?(0,K.jsxs)(`label`,{className:`code-acp-permission-risk`,"data-testid":`code-acp-permission-risk`,children:[(0,K.jsx)(`strong`,{children:`Potentially misleading Unicode`}),g.map(e=>(0,K.jsxs)(`span`,{className:`code-acp-permission-risk-finding`,children:[(0,K.jsx)(`code`,{children:e.displayValue}),e.characters.map(e=>(0,K.jsxs)(`small`,{children:[e.character?`‘${e.character}’ `:``,e.codePoint,` · `,e.description]},`${e.codePoint}:${e.kind}`))]},`${e.targetType}:${e.value}`)),(0,K.jsx)(`input`,{type:`checkbox`,checked:c,onChange:e=>l(e.target.checked)}),(0,K.jsx)(`span`,{children:`I reviewed these targets and wish to proceed.`})]}):null,(0,K.jsxs)(`div`,{className:`code-app-server-request-actions`,children:[i.length>1?(0,K.jsx)(`select`,{"aria-label":`Permission scope`,value:o,onChange:e=>s(e.target.value),children:i.map(e=>(0,K.jsx)(`option`,{value:e.optionId,children:e.name},e.optionId))}):null,i.length>0?(0,K.jsx)(`button`,{type:`button`,className:`approve`,disabled:_,onClick:()=>t(e.requestId,o||i[0].optionId,!1),children:i.length===1?i[0].name:n.appServerRequestApprove}):null,a.map(n=>(0,K.jsx)(`button`,{type:`button`,onClick:()=>t(e.requestId,n.optionId,!1),children:n.name},n.optionId)),(0,K.jsx)(`button`,{type:`button`,onClick:()=>t(e.requestId,void 0,!0),children:n.cancel})]})]})}function sO(e){return Array.isArray(e.oneOf)?e.oneOf.map(e=>({value:e.const,label:e.title})):Array.isArray(e.enum)?e.enum.map(e=>({value:e,label:e})):Array.isArray(e.items?.anyOf)?e.items.anyOf.map(e=>({value:e.const,label:e.title})):Array.isArray(e.items?.enum)?e.items.enum.map(e=>({value:e,label:e})):[]}function cO(e){return e.type===`boolean`?e.default===!0:e.type===`array`?Array.isArray(e.default)?e.default:[]:e.type===`number`||e.type===`integer`?typeof e.default==`number`?e.default:``:typeof e.default==`string`?e.default:sO(e)[0]?.value||``}function lO({request:e,onRespond:t}){let n=e.requestedSchema?.properties||{},r=new Set(e.requestedSchema?.required||[]),[i,a]=(0,G.useState)(()=>Object.fromEntries(Object.entries(n).map(([e,t])=>[e,cO(t)]))),[o,s]=(0,G.useState)(``),c=e.requestedSchema?.title||`Input requested`,l=e.mode===`url`&&e.status===`accepted`,u=(0,G.useMemo)(()=>{if(e.mode!==`url`||!e.url)return``;try{let t=new URL(e.url);return[`http:`,`https:`].includes(t.protocol)?t.toString():``}catch{return``}},[e.mode,e.url]);return(0,K.jsxs)(`form`,{className:`code-app-server-request code-acp-elicitation`,"data-testid":`code-acp-elicitation`,"data-status":e.status||`pending`,onSubmit:a=>{a.preventDefault();for(let[e,t]of Object.entries(n)){let n=i[e];if(t.type!==`array`)continue;let a=Array.isArray(n)?n:[],o=Math.max(+!!r.has(e),Number(t.minItems||0));if(a.length<o){s(`${t.title||e} needs at least ${o} selection${o===1?``:`s`}.`);return}if(Number.isFinite(t.maxItems)&&a.length>Number(t.maxItems)){s(`${t.title||e} allows at most ${t.maxItems} selections.`);return}}s(``);let o=Object.fromEntries(Object.entries(i).filter(([e,t])=>r.has(e)||(Array.isArray(t)?t.length>0:t!==``)));t(e.requestId,`accept`,o)},children:[(0,K.jsxs)(`header`,{children:[(0,K.jsx)(`strong`,{children:c}),(0,K.jsx)(`span`,{children:e.origin===`subagent`?`Subagent · ${e.mode}`:e.mode})]}),(0,K.jsx)(`p`,{children:e.message}),e.requestedSchema?.description?(0,K.jsx)(`small`,{children:e.requestedSchema.description}):null,o?(0,K.jsx)(`small`,{className:`code-acp-elicitation-error`,role:`alert`,children:o}):null,e.mode===`url`?u?(0,K.jsx)(`a`,{className:`code-acp-elicitation-link`,href:u,target:`_blank`,rel:`noreferrer`,children:`Open secure link`}):(0,K.jsx)(`small`,{role:`alert`,children:`The Agent provided an unsupported link.`}):(0,K.jsx)(`div`,{className:`code-app-server-request-questions`,children:Object.entries(n).map(([e,t])=>{let n=sO(t),o=t.title||e;return t.type===`boolean`?(0,K.jsxs)(`label`,{className:`code-acp-elicitation-checkbox`,children:[(0,K.jsx)(`input`,{type:`checkbox`,checked:i[e]===!0,onChange:t=>a(n=>({...n,[e]:t.target.checked}))}),(0,K.jsx)(`span`,{children:o}),t.description?(0,K.jsx)(`small`,{children:t.description}):null]},e):t.type===`array`?(0,K.jsxs)(`fieldset`,{children:[(0,K.jsx)(`legend`,{children:o}),n.map(t=>{let n=Array.isArray(i[e])?i[e]:[];return(0,K.jsxs)(`label`,{className:`code-acp-elicitation-checkbox`,children:[(0,K.jsx)(`input`,{type:`checkbox`,checked:n.includes(t.value),onChange:r=>a(i=>({...i,[e]:r.target.checked?[...n,t.value]:n.filter(e=>e!==t.value)}))}),(0,K.jsx)(`span`,{children:t.label})]},t.value)})]},e):(0,K.jsxs)(`label`,{children:[(0,K.jsx)(`span`,{children:o}),n.length>0?(0,K.jsx)(`select`,{value:String(i[e]??``),required:r.has(e),onChange:t=>a(n=>({...n,[e]:t.target.value})),children:n.map(e=>(0,K.jsx)(`option`,{value:e.value,children:e.label},e.value))}):(0,K.jsx)(`input`,{type:t.type===`number`||t.type===`integer`?`number`:t.format===`email`?`email`:t.format===`date`?`date`:t.format===`date-time`?`datetime-local`:t.format===`uri`?`url`:`text`,value:String(i[e]??``),required:r.has(e),min:t.minimum??void 0,max:t.maximum??void 0,minLength:t.minLength??void 0,maxLength:t.maxLength??void 0,pattern:t.pattern??void 0,step:t.type===`integer`?1:t.type===`number`?`any`:void 0,onChange:n=>a(r=>({...r,[e]:t.type===`number`||t.type===`integer`?n.target.value===``?``:n.target.valueAsNumber:n.target.value}))}),t.description?(0,K.jsx)(`small`,{children:t.description}):null]},e)})}),l?(0,K.jsx)(`small`,{className:`code-acp-elicitation-waiting`,children:`Waiting for the Agent to confirm completion…`}):(0,K.jsxs)(`div`,{className:`code-app-server-request-actions`,children:[(0,K.jsx)(`button`,{type:`submit`,className:`approve`,disabled:e.mode===`url`&&!u,children:e.mode===`url`?`Continue`:`Submit`}),(0,K.jsx)(`button`,{type:`button`,onClick:()=>t(e.requestId,`decline`),children:`Decline`}),(0,K.jsx)(`button`,{type:`button`,onClick:()=>t(e.requestId,`cancel`),children:`Cancel`})]})]})}function uO(e){return e.ctrlKey&&e.key.toLowerCase()===`c`?``:e.key===`Tab`?` `:e.key===`Escape`?`\x1B`:e.key===`ArrowUp`?`\x1B[A`:e.key===`ArrowDown`?`\x1B[B`:``}function dO({agentId:e,authTerminal:t}){let[n,i]=(0,G.useState)(``),[a,o]=(0,G.useState)(!1),[s,c]=(0,G.useState)(``),l=(0,G.useRef)(null),u=t.terminal,d=t.state===`running`&&!u?.exitStatus&&u?.interactive===!0;(0,G.useEffect)(()=>{let e=l.current;e&&(e.scrollTop=e.scrollHeight)},[u?.output]);let f=async n=>{if(!(!d||!n||a)){o(!0);try{let i=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-terminals/${encodeURIComponent(t.terminalId)}/input`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({input:n})}),a=await i.json().catch(()=>null);if(!i.ok)throw Error(a?.error||`Failed to send terminal input (${i.status})`);c(``)}catch(e){c(e instanceof Error?e.message:`Failed to send terminal input`)}finally{o(!1)}}};return(0,K.jsxs)(`div`,{className:`code-acp-auth-terminal`,"data-testid":`code-acp-auth-terminal`,children:[(0,K.jsxs)(`div`,{className:`code-acp-auth-terminal-heading`,children:[(0,K.jsx)(`strong`,{children:t.name||`Sign in`}),(0,K.jsx)(`span`,{children:t.state===`running`?`Waiting for sign-in`:t.state})]}),(0,K.jsx)(`pre`,{ref:l,"data-testid":`code-acp-auth-terminal-output`,children:u?.output||`Starting sign-in…`}),d?(0,K.jsxs)(`form`,{onSubmit:e=>{e.preventDefault();let t=n;t&&(i(``),f(`${t}\r`))},children:[(0,K.jsx)(`input`,{"aria-label":`Terminal sign-in input`,autoComplete:`off`,"data-testid":`code-acp-auth-terminal-input`,disabled:a,value:n,onChange:e=>i(e.currentTarget.value),onKeyDown:e=>{let t=uO(e);t&&(e.preventDefault(),f(t))}}),(0,K.jsx)(`button`,{type:`submit`,disabled:a||!n,children:`Send`})]}):null,t.error||s?(0,K.jsx)(`small`,{className:`code-acp-auth-terminal-error`,children:t.error||s}):null]})}function fO({agentId:e,methods:t,authTerminal:n,agentName:r,authenticatingId:i,onAuthenticate:a}){if(t.length===0&&!n)return null;let o=t.filter(e=>!e.type||e.type===`agent`||e.type===`terminal`),s=t.filter(e=>e.type===`env_var`);return(0,K.jsxs)(`section`,{className:`code-app-server-request code-acp-authentication`,"data-testid":`code-acp-authentication`,role:`alert`,children:[(0,K.jsxs)(`header`,{children:[(0,K.jsxs)(`strong`,{children:[`Sign in to `,r||`Agent`]}),(0,K.jsx)(`span`,{children:`Authentication required`})]}),(0,K.jsxs)(`div`,{className:`code-acp-authentication-methods`,children:[n?(0,K.jsx)(dO,{agentId:e,authTerminal:n}):null,o.map(e=>(0,K.jsxs)(`div`,{className:`code-acp-authentication-method`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`strong`,{children:e.name||e.id}),e.description?(0,K.jsx)(`small`,{children:e.description}):null,e.link?(0,K.jsx)(`a`,{href:e.link,target:`_blank`,rel:`noreferrer`,children:`Get credentials`}):null]}),(0,K.jsx)(`button`,{type:`button`,disabled:!!i,onClick:()=>a(e.id),children:i===e.id||n?.methodId===e.id&&n.state===`running`?`Signing in…`:`Authenticate`})]},e.id)),s.map(e=>(0,K.jsx)(`div`,{className:`code-acp-authentication-method unsupported`,children:(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`strong`,{children:e.name||e.id}),e.description?(0,K.jsx)(`small`,{children:e.description}):null,e.type===`env_var`?(0,K.jsxs)(`small`,{children:[`Set `,e.vars?.map(e=>e.label||e.name).join(`, `)||`the requested environment variables`,` and restart the Agent.`]}):null,e.link?(0,K.jsx)(`a`,{href:e.link,target:`_blank`,rel:`noreferrer`,children:`Get credentials`}):null]})},e.id))]})]})}function pO(e){return e.options.flatMap(e=>`options`in e?e.options:[e])}function mO(e,t){return t.test(`${e.id} ${e.name} ${e.category||``}`)}function hO(e,t){return e.configOptions.find(e=>e.type===`select`&&mO(e,t))}function gO(e,t){return e.configOptions.find(e=>e.type===`boolean`&&mO(e,t))}function _O(e){return e?pO(e).find(t=>t.value===e.currentValue):void 0}function vO(e){return e.trim().replace(/^gpt[-\s]*/i,``)||e}function yO({modeId:e}){return e===`read-only`||e===`plan`?(0,K.jsxs)(`svg`,{viewBox:`0 0 24 24`,"aria-hidden":`true`,children:[(0,K.jsx)(`path`,{d:`M3.5 12s3.1-5 8.5-5 8.5 5 8.5 5-3.1 5-8.5 5-8.5-5-8.5-5Z`}),(0,K.jsx)(`circle`,{cx:`12`,cy:`12`,r:`2.4`})]}):e===`default`?(0,K.jsx)(ye,{className:`code-approval-hand-glyph`}):(0,K.jsxs)(`svg`,{viewBox:`0 0 24 24`,"aria-hidden":`true`,children:[(0,K.jsx)(`path`,{d:`M12 3.6 19 6v5.5c0 4.2-2.7 7.6-7 8.9-4.3-1.3-7-4.7-7-8.9V6l7-2.4Z`}),e===`agent-full-access`||e===`bypassPermissions`?(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`path`,{d:`M12 8v5`}),(0,K.jsx)(`path`,{d:`M12 16.4h.01`})]}):e===`dontAsk`?(0,K.jsx)(`path`,{d:`M9.5 12h5`}):[`agent`,`auto`,`acceptEdits`,`build`].includes(e)?(0,K.jsx)(`path`,{d:`m9.5 12.4 1.8 1.6 3.5-4`}):(0,K.jsx)(`circle`,{cx:`12`,cy:`12`,r:`2.4`})]})}function bO(e){return[`agent`,`auto`,`acceptEdits`,`build`].includes(e)?`blue`:[`agent-full-access`,`bypassPermissions`].includes(e)?`orange`:`muted`}function xO(e){return e.configOptions.find(e=>e.type===`select`&&(e.id===`mode`||e.category===`mode`))}function SO(e,t){return e.provider===`qoder`&&e.agentInfo?.version===`1.0.43`?t.filter(e=>e.id!==`plan`):t}function CO(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M8.85 1.35a.55.55 0 0 1 .55.68L8.28 6.1h3.07a.55.55 0 0 1 .42.9l-5.5 6.6a.55.55 0 0 1-.96-.48l1.12-4.2H3.65a.55.55 0 0 1-.44-.88l5.2-6.48a.55.55 0 0 1 .44-.21Z`})})}function wO({option:e,currentValue:t,label:n,onSelect:r}){return pO(e).map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-model-option ${e.value===t?`selected`:``}`,role:`menuitemradio`,"aria-checked":e.value===t,onClick:()=>r(e.value),children:[(0,K.jsx)(`span`,{className:`code-model-option-copy`,children:(0,K.jsx)(`span`,{children:n(e)})}),e.value===t?(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})}):null]},e.value))}function TO({session:e,updatingId:t,copy:n,open:r,onToggle:i,onSetMode:a,onSetConfigOption:o}){let s=e.modes?.availableModes||[],c=xO(e),l=s.length===0&&!!c,u=SO(e,s.length>0?s:c?pO(c).map(e=>({id:e.value,name:e.name,description:e.description})):[]);if(u.length===0)return null;let d=e.currentModeId||e.modes?.currentModeId||c?.currentValue||``,f=u.find(e=>e.id===d)||u[0],p=n.acpModeLabel(f?.id||d,f?.name||d),m=f?.description?n.acpModeDescription(f.id,f.description):``;return(0,K.jsxs)(`div`,{className:`code-composer-menu-anchor`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-composer-approval ${bO(d)}`,"data-testid":`code-acp-mode`,"data-acp-value":d,"aria-label":n.agentPermissionMode,"aria-haspopup":`menu`,"aria-expanded":r,disabled:!!t,onClick:i,children:[(0,K.jsx)(`span`,{className:`code-tool-icon`,"aria-hidden":`true`,children:(0,K.jsx)(yO,{modeId:d})}),(0,K.jsx)(`span`,{className:`code-composer-approval-label`,children:p}),(0,K.jsx)(`span`,{className:`code-chevron`,"aria-hidden":`true`,children:(0,K.jsx)(be,{})})]}),r?(0,K.jsxs)(`div`,{className:`code-approval-menu code-composer-menu`,role:`menu`,"data-testid":`code-acp-mode-menu`,children:[(0,K.jsxs)(`div`,{className:`code-approval-menu-header`,children:[(0,K.jsx)(`span`,{children:n.agentPermissionMode}),m?(0,K.jsx)(`small`,{children:m}):null]}),u.map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-approval-option ${e.id===d?`selected`:``}`,role:`menuitemradio`,"aria-checked":e.id===d,onClick:()=>l&&c?o(c.id,e.id):a(e.id),children:[(0,K.jsx)(`span`,{className:`code-approval-option-icon ${bO(e.id)}`,"aria-hidden":`true`,children:(0,K.jsx)(yO,{modeId:e.id})}),(0,K.jsxs)(`span`,{className:`code-approval-option-copy`,children:[(0,K.jsx)(`span`,{children:n.acpModeLabel(e.id,e.name)}),e.description?(0,K.jsx)(`small`,{children:n.acpModeDescription(e.id,e.description)}):null]}),e.id===d?(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})}):null]},e.id))]}):null]})}function EO({session:e,updatingId:t,copy:n,open:r,pane:i,onToggle:a,onSetPane:o,onSetConfigOption:s,onSetProfile:c,onSetFast:l}){let u=hO(e,/(^|[\s_-])model([\s_-]|$)/i),d=hO(e,/(reasoning|thought)/i),f=gO(e,/(fast|speed)/i),p=e.configOptions.filter(e=>e!==u&&e!==d&&e!==f&&e.category!==`mode`&&e.id!==`mode`),m=_O(u),h=_O(d),g=u&&d?pO(u).map(e=>({value:e.value,label:e.name,reasoning:pO(d).map(e=>({value:e.value,label:n.reasoningOptionLabel(e.value,e.name)}))})):[],_=!!ID(g,u?.currentValue||``);if(!u&&!d&&!f&&p.length===0)return null;let v=!!t;return(0,K.jsxs)(`div`,{className:`code-composer-menu-anchor model-picker`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-composer-model-picker`,"data-testid":`code-acp-model-picker`,"data-agent-model-preset":`${u?.currentValue||``}:${d?.currentValue||``}`,"aria-label":n.modelAndReasoning,"aria-haspopup":`menu`,"aria-expanded":r,disabled:v,title:[m?.name,h?.name,f?.currentValue?f.name:``].filter(Boolean).join(` · `),onClick:a,children:[f?.currentValue?(0,K.jsx)(`span`,{className:`code-composer-speed-active`,"aria-hidden":`true`,children:(0,K.jsx)(CO,{})}):null,(0,K.jsx)(`span`,{className:`code-composer-model-label desktop`,children:vO(m?.name||u?.currentValue||`Model`)}),(0,K.jsx)(`span`,{className:`code-composer-model-label mobile`,children:vO(m?.name||u?.currentValue||`Model`)}),h?(0,K.jsx)(`span`,{className:`code-composer-model-picker-muted desktop`,children:h.name}):null,h?(0,K.jsx)(`span`,{className:`code-composer-model-picker-muted mobile`,children:h.name}):null,(0,K.jsx)(`span`,{className:`code-chevron`,"aria-hidden":`true`,children:(0,K.jsx)(be,{})})]}),r?(0,K.jsx)(`div`,{className:`code-model-picker-menu code-composer-menu ${_?`has-matrix`:``}`,role:`menu`,"data-testid":`code-acp-model-menu`,children:(0,K.jsx)(BD,{models:g,currentModel:u?.currentValue||``,currentReasoning:d?.currentValue||``,fastAvailable:!!f,fast:f?.currentValue===!0,disabled:v,onSelect:(e,t)=>{u&&d&&c(u.id,e,d.id,t)},onFastChange:e=>{f&&l(f.id,e)},advanced:(0,K.jsxs)(K.Fragment,{children:[d?(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`div`,{className:`code-model-menu-header`,children:n.reasoning}),(0,K.jsx)(wO,{option:d,currentValue:d.currentValue,label:e=>n.reasoningOptionLabel(e.value,e.name),onSelect:e=>s(d.id,e)}),(0,K.jsx)(`div`,{className:`code-context-menu-separator`,role:`separator`})]}):null,u?(0,K.jsxs)(`div`,{className:`code-model-nested-anchor`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-model-nested-trigger ${i===`model`?`selected`:``}`,role:`menuitem`,"data-testid":`code-acp-model-submenu-trigger`,onClick:()=>o(i===`model`?null:`model`),children:[(0,K.jsx)(`span`,{children:m?.name||u.currentValue}),(0,K.jsx)(W,{className:`code-menu-chevron-right`})]}),i===`model`?(0,K.jsx)(`div`,{className:`code-model-submenu code-composer-menu`,role:`menu`,"data-testid":`code-acp-model-submenu`,children:(0,K.jsx)(wO,{option:u,currentValue:u.currentValue,label:e=>e.name,onSelect:e=>s(u.id,e)})}):null]}):null,f?(0,K.jsxs)(`div`,{className:`code-model-nested-anchor`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-model-nested-trigger ${i===`speed`?`selected`:``}`,role:`menuitem`,"data-testid":`code-acp-speed-submenu-trigger`,onClick:()=>o(i===`speed`?null:`speed`),children:[(0,K.jsx)(`span`,{children:n.speed}),(0,K.jsx)(W,{className:`code-menu-chevron-right`})]}),i===`speed`?(0,K.jsx)(`div`,{className:`code-speed-submenu code-composer-menu`,role:`menu`,"data-testid":`code-acp-speed-submenu`,children:[!1,!0].map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-model-option ${f.currentValue===e?`selected`:``}`,role:`menuitemradio`,"aria-checked":f.currentValue===e,onClick:()=>s(f.id,e),children:[(0,K.jsxs)(`span`,{className:`code-model-option-copy`,children:[(0,K.jsxs)(`span`,{className:`code-speed-option-label`,children:[e?(0,K.jsx)(`span`,{className:`code-speed-option-icon`,"aria-hidden":`true`,children:(0,K.jsx)(CO,{})}):null,(0,K.jsx)(`span`,{children:e?f.name:n.serviceTierLabel(`default`,`Standard`)})]}),(0,K.jsx)(`small`,{children:e?f.description||n.serviceTierDescription(`priority`,``):n.serviceTierDescription(`default`,``)})]}),f.currentValue===e?(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})}):null]},String(e)))}):null]}):null,p.map(e=>e.type===`select`?(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`div`,{className:`code-context-menu-separator`,role:`separator`}),(0,K.jsx)(`div`,{className:`code-model-menu-header`,children:e.name}),(0,K.jsx)(wO,{option:e,currentValue:e.currentValue,label:e=>e.name,onSelect:t=>s(e.id,t)})]},e.id):(0,K.jsxs)(`button`,{type:`button`,className:`code-model-option ${e.currentValue?`selected`:``}`,role:`menuitemcheckbox`,"aria-checked":e.currentValue,onClick:()=>s(e.id,!e.currentValue),children:[(0,K.jsxs)(`span`,{className:`code-model-option-copy`,children:[(0,K.jsx)(`span`,{children:e.name}),e.description?(0,K.jsx)(`small`,{children:e.description}):null]}),e.currentValue?(0,K.jsx)(`span`,{className:`code-menu-check`,"aria-hidden":`true`,children:(0,K.jsx)(ke,{})}):null]},e.id))]})})}):null]})}function DO(e){let t=Number(e?.used),n=Number(e?.size);if(!Number.isFinite(t)||t<0||!Number.isFinite(n)||n<=0)return null;let r=t/n,i=Math.max(0,Math.min(100,Math.round(r*100))),a=Number(e?.cost?.amount),o=String(e?.cost?.currency||``).trim().toUpperCase(),s=Number.isFinite(a)&&a>=0&&/^[A-Z]{3}$/.test(o)?`${a.toLocaleString(`en-US`,{maximumFractionDigits:4})} ${o}`:``;return{usedTokens:t,limitTokens:n,percentUsed:i,percentLeft:100-i,costLabel:s,level:r>=1?`critical`:r>=.85?`warning`:`normal`}}function OO(e){return(Array.isArray(e.configOptions)?e.configOptions:typeof e.configId==`string`&&(typeof e.value==`string`||typeof e.value==`boolean`)?[{configId:e.configId,value:e.value}]:[]).flatMap(e=>e&&typeof e==`object`&&`configId`in e&&typeof e.configId==`string`&&`value`in e&&(typeof e.value==`string`||typeof e.value==`boolean`)?[{configId:e.configId,value:e.value}]:[])}function kO(e,t){return t.length===0?!0:e?t.every(t=>e.some(e=>e.id===t.configId&&typeof e.currentValue==typeof t.value&&e.currentValue===t.value)):!1}function AO(e,t){if(!e)return e;let n=OO(t);if(n.length===0)return e;let r=new Map(n.map(e=>[e.configId,e.value]));return r.size===0?e:{...e,configOptions:e.configOptions.map(e=>{let t=r.get(e.id);return t===void 0||typeof t!=typeof e.currentValue?e:{...e,currentValue:t}})}}function jO(e,t,n){let[i,a]=(0,G.useState)(null),[o,s]=(0,G.useState)(``),[c,l]=(0,G.useState)(``),[u,d]=(0,G.useState)(``),f=(0,G.useRef)(null),p=(0,G.useRef)({agentId:e,active:t}),m=(0,G.useRef)(null),h=(0,G.useRef)(0);p.current={agentId:e,active:t},(0,G.useEffect)(()=>{f.current=i},[i]);let g=(0,G.useCallback)(async n=>{if(!e||!t)return;let i=e,o=h.current;try{let t=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-session?includeEntries=0`),{signal:n}),c=await t.json().catch(()=>null);if(!t.ok||!c?.session)throw Error(c?.error||`Failed to read ACP session (${t.status})`);if(p.current.agentId!==i||!p.current.active||m.current||h.current!==o)return;f.current=c.session,a(c.session),s(``)}catch(e){if(e instanceof DOMException&&e.name===`AbortError`)return;s(e instanceof Error?e.message:`Failed to read ACP session`)}},[t,e]);(0,G.useEffect)(()=>{h.current+=1,m.current=null,l(``)},[t,e]),(0,G.useEffect)(()=>{let e=new AbortController;return g(e.signal),()=>e.abort()},[g,n]),(0,G.useEffect)(()=>{if(!i?.authTerminal||![`running`,`completed`].includes(i.authTerminal.state))return;let e=window.setInterval(()=>{g()},500);return()=>window.clearInterval(e)},[g,i?.authTerminal?.state,i?.authTerminal?.terminalId]);let _=(0,G.useCallback)(async(t,n)=>{if(!e||m.current)return!1;let i=e,o=++h.current;m.current={agentId:i,id:t,sequence:o};let c=f.current,u=AO(c,n),d=OO(n);u!==c&&(f.current=u,a(u)),l(t);try{let t=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-session`),{method:`PATCH`,headers:{"Content-Type":`application/json`},body:JSON.stringify(n)}),c=await t.json().catch(()=>null);if(!t.ok)throw Error(c?.error||`Failed to update ACP session (${t.status})`);if(!kO(c?.configOptions,d))throw Error(`ACP Agent did not confirm the requested configuration`);return p.current.agentId!==i||m.current?.sequence!==o?!1:(a(e=>{let t=e&&{...e,...c?.modeId?{currentModeId:c.modeId,modes:e.modes?{...e.modes,currentModeId:c.modeId}:e.modes}:{},...c?.configOptions?{configOptions:c.configOptions}:{}};return f.current=t,t}),s(``),!0)}catch(e){return c&&p.current.agentId===i&&m.current?.sequence===o&&(f.current=c,a(c)),p.current.agentId===i&&s(e instanceof Error?e.message:`Failed to update ACP session`),!1}finally{m.current?.sequence===o&&(m.current=null,l(``))}},[e]);return{session:i,error:o,updatingId:c,authenticatingId:u,setMode:(0,G.useCallback)(e=>_(`mode`,{modeId:e}),[_]),setConfigOption:(0,G.useCallback)((e,t)=>_(e,{configId:e,value:t}),[_]),setConfigOptions:(0,G.useCallback)(e=>_(e.map(e=>e.configId).join(`:`),{configOptions:e}),[_]),authenticate:(0,G.useCallback)(async t=>{if(!e||u)return!1;d(t);try{let n=await fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-session/authenticate`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({methodId:t})}),i=await n.json().catch(()=>null);if(!n.ok)throw Error(i?.error||`Failed to authenticate ACP Agent (${n.status})`);return s(``),await g(),!0}catch(e){return s(e instanceof Error?e.message:`Failed to authenticate ACP Agent`),!1}finally{d(``)}},[e,u,g])}}var MO=`M8 10.9995C9.654 10.9995 11 9.65351 11 7.99951V3.99951C11 2.34551 9.654 0.999512 8 0.999512C6.346 0.999512 5 2.34551 5 3.99951V7.99951C5 9.65351 6.346 10.9995 8 10.9995ZM6 3.99951C6 2.89651 6.897 1.99951 8 1.99951C9.103 1.99951 10 2.89651 10 3.99951V7.99951C10 9.10251 9.103 9.99951 8 9.99951C6.897 9.99951 6 9.10251 6 7.99951V3.99951ZM13 7.49951V7.99951C13 10.5855 11.02 12.6935 8.5 12.9485V14.4995C8.5 14.7755 8.276 14.9995 8 14.9995C7.724 14.9995 7.5 14.7755 7.5 14.4995V12.9485C4.98 12.6935 3 10.5845 3 7.99951V7.49951C3 7.22351 3.224 6.99951 3.5 6.99951C3.776 6.99951 4 7.22351 4 7.49951V7.99951C4 10.2055 5.794 11.9995 8 11.9995C10.206 11.9995 12 10.2055 12 7.99951V7.49951C12 7.22351 12.224 6.99951 12.5 6.99951C12.776 6.99951 13 7.22351 13 7.49951Z`,NO=`M8 10.9995C9.654 10.9995 11 9.65351 11 7.99951V3.99951C11 2.34551 9.654 0.999512 8 0.999512C6.346 0.999512 5 2.34551 5 3.99951V7.99951C5 9.65351 6.346 10.9995 8 10.9995ZM13 7.49951V7.99951C13 10.5855 11.02 12.6935 8.5 12.9485V14.4995C8.5 14.7755 8.276 14.9995 8 14.9995C7.724 14.9995 7.5 14.7755 7.5 14.4995V12.9485C4.98 12.6935 3 10.5845 3 7.99951V7.49951C3 7.22351 3.224 6.99951 3.5 6.99951C3.776 6.99951 4 7.22351 4 7.49951V7.99951C4 10.2055 5.794 11.9995 8 11.9995C10.206 11.9995 12 10.2055 12 7.99951V7.49951C12 7.22351 12.224 6.99951 12.5 6.99951C12.776 6.99951 13 7.22351 13 7.49951Z`;function PO({listening:e}){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:e?NO:MO})})}function FO(e){return!Number.isFinite(e)||e<0?`0`:e>=1e6?`${Math.round(e/1e5)/10}m`:e>=1e3?`${Math.round(e/1e3)}k`:String(Math.round(e))}function IO(e,t){let n=TD(e,t);if(n)return n;let r=Math.max(0,Math.min(t,e.length)),i=e.lastIndexOf(`
193
+ `,Math.max(0,r-1))+1,a=e.slice(i,r).match(/^(\s*)\/(\$[A-Za-z0-9._:-]*)$/);return a?{start:i+(a[1]?.length??0),end:r,query:a[2]??``,trigger:`/`}:null}function LO({active:e,agentId:t,runtimeState:n,sessionUpdatedAt:r,runtimeError:i,draft:a,attachments:o,composerMode:s,contextWindow:c,pendingFollowUp:l,submitAction:u,textareaRef:d,attachmentInputRef:f,permissions:p,elicitations:m,activeElicitations:h,speechSupported:g,speechListening:_,onDraftChange:v,onNavigateHistory:y,onRemoveAttachment:b,onSubmit:x,onInterrupt:S,onDiscardPendingFollowUp:C,onToggleSpeechInput:w,onPasteAttachment:T,onAttachmentFiles:E,onChooseAttachmentFile:D,onActivateComposerMode:O,onClearComposerMode:k,onRespondToPermission:A,onRespondToElicitation:j,copy:M}){let N=(0,G.useRef)(!1),P=(0,G.useRef)(0),F=(0,G.useRef)(a),ee=(0,G.useRef)(null),[I,te]=(0,G.useState)(!1),[L,R]=(0,G.useState)(a.length),[ne,z]=(0,G.useState)(0),[B,re]=(0,G.useState)(null),[ie,ae]=(0,G.useState)(null),{session:V,error:oe,updatingId:se,authenticatingId:ce,setMode:le,setConfigOption:ue,setConfigOptions:de,authenticate:pe}=jO(t,e,`${n}:${r||``}`);F.current=a;let me=u===`interrupt`,he=u===`disabled`,H=(0,G.useMemo)(()=>IO(a,L),[a,L]),ge=(0,G.useMemo)(()=>{if(!H)return[];let e=H.query.toLowerCase();return(V?.availableCommands||[]).filter(t=>{let n=t.name.toLowerCase();return H.trigger===`$`&&!n.startsWith(`$`)?!1:(H.trigger===`$`?n.slice(1):n).startsWith(e)||t.description.toLowerCase().includes(e)}).slice(0,12)},[H,V?.availableCommands]),_e=e&&I&&ge.length>0,ve=ge[ne]||ge[0]||null;(0,G.useEffect)(()=>z(0),[H?.query,H?.trigger,ge.length]),(0,G.useEffect)(()=>{if(!B)return;let e=e=>{e.target instanceof Node&&ee.current?.contains(e.target)||(re(null),ae(null))};return document.addEventListener(`pointerdown`,e),()=>document.removeEventListener(`pointerdown`,e)},[B]);let ye=e=>{if(!H)return;let t=`/${e} `,n=`${a.slice(0,H.start)}${t}${a.slice(H.end)}`,r=H.start+t.length;re(null),F.current=n,v(n),window.requestAnimationFrame(()=>{d.current?.focus({preventScroll:!0}),d.current?.setSelectionRange(r,r),R(r)})},be=e=>{if(_e&&(e.key===`ArrowDown`||e.key===`ArrowUp`)){e.preventDefault();let t=e.key===`ArrowDown`?1:-1;z(e=>(e+t+ge.length)%ge.length);return}if(_e&&e.key===`Home`){e.preventDefault(),z(0);return}if(_e&&e.key===`End`){e.preventDefault(),z(ge.length-1);return}if(_e&&(e.key===`Enter`||e.key===`Tab`)&&ve){e.preventDefault(),e.stopPropagation(),ye(ve.name);return}if(e.key===`ArrowUp`||e.key===`ArrowDown`){let t=e.key===`ArrowUp`?`previous`:`next`,n=y(t,{direction:t,value:e.currentTarget.value,selectionStart:e.currentTarget.selectionStart,selectionEnd:e.currentTarget.selectionEnd});if(n!==null){e.preventDefault(),e.stopPropagation(),window.requestAnimationFrame(()=>{let e=d.current;if(!e)return;let t=n.length;e.setSelectionRange(t,t)});return}}gD(e,N.current,P.current)&&(e.preventDefault(),e.stopPropagation(),x(_D(e.currentTarget.value,F.current)))},xe=e=>{re(t=>t===e?null:e),ae(null)},we=DO(V?.usage),Te=we||c,Ee=we?.level||(Te&&Te.percentUsed>=100?`critical`:Te&&Te.percentUsed>=85?`warning`:`normal`),De=Te?[`Context window: ${Te.percentUsed}% used (${Te.percentLeft}% left), ${FO(Te.usedTokens)} / ${FO(Te.limitTokens)} tokens used`,Ee===`critical`?`Context window is full`:Ee===`warning`?`Context window is nearly full`:``,we?.costLabel?`Session cost: ${we.costLabel}`:``].filter(Boolean).join(`. `):``,Oe=V?.errorKind===`authentication`||/\b(?:auth(?:entication)?|login|sign[ -]?in|unauthorized|401)\b/i.test(i);return(0,K.jsxs)(`footer`,{ref:ee,className:`code-composer code-acp-composer ${B?`menu-open`:``} ${o.length>0?`has-attachments`:``} ${l&&e?`has-pending-followup`:``}`,"data-testid":`code-acp-composer`,children:[l&&e?(0,K.jsx)(`div`,{className:`code-pending-followup`,"data-testid":`code-acp-pending-followup`,children:l.messages.map(e=>(0,K.jsxs)(`div`,{className:`code-pending-followup-row`,"data-testid":`code-acp-pending-followup-row`,children:[(0,K.jsx)(`span`,{className:`code-pending-followup-icon`,"aria-hidden":`true`,children:(0,K.jsx)(fe,{})}),(0,K.jsx)(`p`,{children:e.text||e.attachments?.map(e=>e.name).join(`, `)}),(0,K.jsx)(`div`,{className:`code-pending-followup-actions`,children:(0,K.jsx)(`button`,{type:`button`,className:`icon`,"data-testid":`code-acp-pending-followup-discard`,"aria-label":M.discardQueuedMessage,onClick:()=>C(e.id),children:(0,K.jsx)(Se,{})})})]},e.id))}):null,e?p.map(e=>(0,K.jsx)(oO,{request:e,onRespond:A,copy:M},e.requestId)):null,e?m.map(e=>(0,K.jsx)(lO,{request:e,onRespond:j},e.requestId)):null,e?h.map(e=>(0,K.jsx)(lO,{request:e,onRespond:j},`active-${e.elicitationId||e.requestId}`)):null,e&&Oe?(0,K.jsx)(fO,{agentId:t,methods:V?.authMethods||[],authTerminal:V?.authTerminal||null,agentName:V?.agentInfo?.title||V?.agentInfo?.name||``,authenticatingId:ce,onAuthenticate:e=>{pe(e)}}):null,e&&oe?(0,K.jsxs)(`section`,{className:`code-app-server-request code-app-server-notice`,"data-testid":`code-acp-error`,role:`alert`,children:[(0,K.jsxs)(`header`,{children:[(0,K.jsx)(`strong`,{children:`ACP`}),(0,K.jsx)(`span`,{children:n||`error`})]}),(0,K.jsx)(`p`,{children:oe})]}):null,_e?(0,K.jsxs)(`div`,{className:`code-slash-menu code-composer-menu`,"data-testid":`code-acp-command-menu`,role:`listbox`,"aria-label":`ACP commands`,children:[(0,K.jsx)(`div`,{className:`code-slash-menu-header`,children:H?.trigger===`$`?`Skills`:`Agent commands`}),ge.map((e,t)=>(0,K.jsxs)(`button`,{type:`button`,className:`code-slash-command ${t===ne?`active`:``}`,"data-testid":`code-acp-command-${e.name}`,role:`option`,"aria-selected":t===ne,onMouseDown:e=>e.preventDefault(),onMouseMove:()=>z(t),onClick:()=>ye(e.name),children:[(0,K.jsx)(`span`,{className:`code-slash-command-icon`,"aria-hidden":`true`,children:`/`}),(0,K.jsxs)(`span`,{className:`code-slash-command-copy`,children:[(0,K.jsx)(`span`,{className:`code-slash-command-title`,children:(0,K.jsxs)(`code`,{children:[`/`,e.name]})}),(0,K.jsxs)(`small`,{children:[e.description,e.input?.hint?` · ${e.input.hint}`:``]})]})]},e.name))]}):null,(0,K.jsx)(`textarea`,{"data-testid":`code-acp-composer-input`,ref:d,name:`farming-acp-chat-message`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,value:a,placeholder:e?s===`goal`?M.describeAgentGoal:s===`plan`?M.describePlanFirst:M.askFollowUpChanges:M.openAgentTerminalFirst,disabled:!e,onFocus:e=>{te(!0),R(e.currentTarget.selectionStart),re(null),ae(null)},onBlur:()=>te(!1),onClick:e=>R(e.currentTarget.selectionStart),onKeyUp:e=>R(e.currentTarget.selectionStart),onSelect:e=>R(e.currentTarget.selectionStart),onChange:e=>{R(e.currentTarget.selectionStart),v(e.currentTarget.value)},onPaste:T,onCompositionStart:()=>{N.current=!0},onCompositionEnd:e=>{N.current=!1,P.current=Date.now(),v(e.currentTarget.value)},onKeyDown:be,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`}),(0,K.jsx)(wD,{attachments:o,onRemove:b}),(0,K.jsx)(`input`,{ref:f,className:`code-composer-file-input`,"data-testid":`code-acp-composer-file-input`,type:`file`,multiple:!0,onChange:E}),(0,K.jsxs)(`div`,{className:`code-composer-toolbar`,"data-testid":`code-acp-composer-toolbar`,children:[(0,K.jsxs)(`div`,{className:`code-composer-left-tools`,"data-testid":`code-acp-composer-left-tools`,children:[(0,K.jsxs)(`div`,{className:`code-composer-menu-anchor`,children:[(0,K.jsx)(`button`,{type:`button`,className:`code-composer-add`,"data-testid":`code-acp-composer-add`,"aria-label":M.addContext,"aria-haspopup":`menu`,"aria-expanded":B===`commands`,disabled:!e,onClick:()=>xe(`commands`),children:(0,K.jsx)(Ne,{})}),B===`commands`?(0,K.jsxs)(`div`,{className:`code-plus-menu code-composer-menu`,role:`menu`,"data-testid":`code-acp-plus-menu`,children:[(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-acp-composer-attach-file`,onClick:()=>{re(null),D()},children:[(0,K.jsx)(`span`,{children:M.attachFile}),(0,K.jsx)(`small`,{children:M.fileContext})]}),(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-acp-composer-goal-mode`,onClick:()=>{re(null),O(`goal`)},children:[(0,K.jsx)(`span`,{children:M.goalMode}),(0,K.jsx)(`small`,{children:M.setObjective})]}),(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-acp-composer-plan-mode`,onClick:()=>{re(null),O(`plan`)},children:[(0,K.jsx)(`span`,{children:M.planMode}),(0,K.jsx)(`small`,{children:M.planFirst})]})]}):null]}),s===`default`?null:(0,K.jsxs)(`button`,{type:`button`,className:`code-composer-mode-chip`,"data-testid":`code-acp-composer-mode-chip`,"aria-label":M.clearComposerMode,onClick:k,children:[(0,K.jsx)(`span`,{children:s===`goal`?M.goalMode:M.planMode}),(0,K.jsx)(`span`,{"aria-hidden":`true`,children:(0,K.jsx)(Se,{})})]}),V?(0,K.jsx)(TO,{session:V,updatingId:se,copy:M,open:B===`mode`,onToggle:()=>xe(`mode`),onSetMode:e=>{re(null),le(e)},onSetConfigOption:(e,t)=>{re(null),ue(e,t)}}):null]}),(0,K.jsxs)(`div`,{className:`code-composer-right-tools`,"data-testid":`code-acp-composer-right-tools`,children:[Te?(0,K.jsxs)(`div`,{className:`code-composer-context-window`,"data-testid":`code-acp-context-window`,"data-level":Ee,tabIndex:0,role:`img`,"aria-label":De,children:[(0,K.jsx)(`span`,{className:`code-context-window-ring`,"aria-hidden":`true`,style:{"--context-percent":Te.percentUsed}}),(0,K.jsxs)(`div`,{className:`code-context-window-popover`,role:`tooltip`,children:[(0,K.jsx)(`span`,{children:`Context window:`}),(0,K.jsxs)(`strong`,{children:[Te.percentUsed,`% used (`,Te.percentLeft,`% left)`]}),(0,K.jsxs)(`strong`,{children:[FO(Te.usedTokens),` / `,FO(Te.limitTokens),` tokens used`]}),Ee===`critical`?(0,K.jsx)(`strong`,{className:`warning`,children:`Context window is full`}):null,Ee===`warning`?(0,K.jsx)(`strong`,{className:`warning`,children:`Context window is nearly full`}):null,we?.costLabel?(0,K.jsx)(`strong`,{children:we.costLabel}):null]})]}):null,V?(0,K.jsx)(EO,{session:V,updatingId:se,copy:M,open:B===`model`,pane:ie,onToggle:()=>xe(`model`),onSetPane:ae,onSetConfigOption:(e,t)=>{re(null),ae(null),ue(e,t)},onSetProfile:(e,t,n,r)=>{de([{configId:e,value:t},{configId:n,value:r}])},onSetFast:(e,t)=>{ue(e,t)}}):null,g?(0,K.jsx)(`button`,{type:`button`,className:`code-composer-mic ${_?`listening`:``}`,"data-testid":`code-acp-composer-mic`,"aria-label":_?M.stopDictation:M.startDictation,"aria-pressed":_,onClick:w,disabled:!e,title:_?M.stopDictation:M.startDictation,children:(0,K.jsx)(PO,{listening:_})}):null,(0,K.jsx)(`button`,{type:`button`,className:`code-composer-send ${me?`interrupt`:``}`,"data-testid":`code-acp-composer-send`,"data-action":u,"aria-label":me?M.interruptAgent:M.sendMessage,onClick:me?S:()=>x(F.current),disabled:he,children:me?(0,K.jsx)(`span`,{className:`code-composer-stop-icon`,"aria-hidden":`true`}):(0,K.jsx)(Ce,{})})]})]})]})}function RO(e){return!!e&&e?.providerSessionProvider===`codex`&&Tn(e)&&!!(e.runtimeBinding.threadId||e.providerSessionId)}function zO(e){return e?.status===`active`?`paused`:`active`}async function BO(e){let t=await e.json().catch(()=>({}));if(!e.ok)throw Error(t.error||`${e.status}`);return t}function VO(){return(0,K.jsx)(`svg`,{width:`15`,height:`15`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M11.6 1.65a1.55 1.55 0 0 1 2.19 2.19l-8.4 8.4-3.14.64.64-3.14 8.71-8.09Zm-.7 2.11-7.08 7.08-.22 1.08 1.08-.22 7.08-7.08-.86-.86Zm1.56-1.4-.86.86.86.86.62-.62a.55.55 0 0 0-.78-.78l-.84.84Z`})})}function HO(){return(0,K.jsx)(`svg`,{width:`15`,height:`15`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M4.5 3.4c0-.67.73-1.08 1.3-.72l6.1 3.78a.85.85 0 0 1 0 1.44l-6.1 3.78a.85.85 0 0 1-1.3-.72V3.4Z`})})}function UO(){return(0,K.jsx)(`svg`,{width:`15`,height:`15`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M4.25 3.25c0-.41.34-.75.75-.75h1c.41 0 .75.34.75.75v9.5c0 .41-.34.75-.75.75H5a.75.75 0 0 1-.75-.75v-9.5Zm5 0c0-.41.34-.75.75-.75h1c.41 0 .75.34.75.75v9.5c0 .41-.34.75-.75.75h-1a.75.75 0 0 1-.75-.75v-9.5Z`})})}function WO(){return(0,K.jsx)(`svg`,{width:`15`,height:`15`,viewBox:`0 0 16 16`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M6.25 2h3.5l.5 1H13v1H3V3h2.75l.5-1ZM4.2 5h7.6l-.48 8.1A1 1 0 0 1 10.32 14H5.68a1 1 0 0 1-1-.9L4.2 5Zm2.05 1 .35 7h.95L7.2 6h-.95Zm2.2 0v7h.95V6h-.95Z`})})}function GO({agent:e,active:t,copy:n}){let i=RO(e),a=e?.id||``,o=Tn(e)?e.runtimeBinding.goal:null,s=(0,G.useRef)(null),[c,l]=(0,G.useState)(o),[u,d]=(0,G.useState)(c?.objective||``),[f,p]=(0,G.useState)(!1),[m,h]=(0,G.useState)(!1),[g,_]=(0,G.useState)(``);(0,G.useEffect)(()=>{l(o)},[o]),(0,G.useEffect)(()=>{p(!1),_(``)},[a]),(0,G.useEffect)(()=>{f||d(c?.objective||``)},[f,c]),(0,G.useEffect)(()=>{f&&s.current?.focus({preventScroll:!0})},[f]),(0,G.useEffect)(()=>{if(!t||!i||!a)return;let e=new AbortController;return fetch(r(`/api/agents/${encodeURIComponent(a)}/codex-goal`),{signal:e.signal}).then(BO).then(e=>{l(e.goal||null),_(``)}).catch(e=>{e?.name!==`AbortError`&&_(e?.message||n.codexTranscriptUnavailable)}),()=>e.abort()},[t,a,i,n.codexTranscriptUnavailable]);let v=(0,G.useCallback)(e=>{!i||!a||m||(h(!0),_(``),fetch(r(`/api/agents/${encodeURIComponent(a)}/codex-goal`),{method:`PATCH`,headers:{"Content-Type":`application/json`},body:JSON.stringify(e)}).then(BO).then(e=>{l(e.goal||null),p(!1),_(``)}).catch(e=>{_(e?.message||n.codexTranscriptUnavailable)}).finally(()=>h(!1)))},[a,n.codexTranscriptUnavailable,i,m]),y=(0,G.useCallback)(()=>{let e=u.trim();if(!e){_(n.codexGoalObjective);return}v({objective:e,status:c?.status||`active`})},[n.codexGoalObjective,c?.status,u,v]),b=(0,G.useCallback)(()=>{if(!c){p(!0);return}v({status:zO(c)})},[c,v]),x=(0,G.useCallback)(()=>{!i||!a||m||!c||(h(!0),_(``),fetch(r(`/api/agents/${encodeURIComponent(a)}/codex-goal`),{method:`DELETE`}).then(BO).then(()=>{l(null),d(``),p(!1),_(``)}).catch(e=>{_(e?.message||n.codexTranscriptUnavailable)}).finally(()=>h(!1)))},[a,n.codexTranscriptUnavailable,c,i,m]);if(!e||e.providerSessionProvider!==`codex`||!c&&!f)return null;let S=c?.status===`active`,C=!i||m;return(0,K.jsxs)(`section`,{className:`code-codex-goal-bar`,"data-testid":`code-codex-goal-bar`,children:[(0,K.jsx)(`textarea`,{ref:s,className:`code-codex-goal-input`,"data-testid":`code-codex-goal-input`,rows:1,value:u,placeholder:n.codexGoalEmpty,readOnly:!f,disabled:!i||m,"aria-label":n.codexGoalObjective,onChange:e=>d(e.target.value),onKeyDown:e=>{(e.metaKey||e.ctrlKey)&&e.key===`Enter`&&y(),e.key===`Escape`&&(d(c?.objective||``),p(!1),_(``))}}),(0,K.jsxs)(`div`,{className:`code-codex-goal-icon-actions`,children:[(0,K.jsx)(`button`,{type:`button`,className:`code-codex-goal-icon-button`,"data-testid":`code-codex-goal-edit`,disabled:C,title:f?n.codexGoalSave:n.codexGoalEdit,"aria-label":f?n.codexGoalSave:n.codexGoalEdit,onClick:f?y:()=>p(!0),children:f?(0,K.jsx)(ke,{}):(0,K.jsx)(VO,{})}),f?(0,K.jsx)(`button`,{type:`button`,className:`code-codex-goal-icon-button`,"data-testid":`code-codex-goal-cancel`,disabled:m,title:n.cancel,"aria-label":n.cancel,onClick:()=>{d(c?.objective||``),p(!1),_(``)},children:(0,K.jsx)(Se,{})}):null,(0,K.jsx)(`button`,{type:`button`,className:`code-codex-goal-icon-button`,"data-testid":`code-codex-goal-toggle`,disabled:C||!c&&!u.trim(),title:S?n.codexGoalStop:n.codexGoalStart,"aria-label":S?n.codexGoalStop:n.codexGoalStart,onClick:b,children:S?(0,K.jsx)(UO,{}):(0,K.jsx)(HO,{})}),(0,K.jsx)(`button`,{type:`button`,className:`code-codex-goal-icon-button danger`,"data-testid":`code-codex-goal-delete`,disabled:C||!c,title:n.codexGoalDelete,"aria-label":n.codexGoalDelete,onClick:x,children:(0,K.jsx)(WO,{})})]}),g?(0,K.jsx)(`div`,{className:`code-codex-goal-error`,children:g}):null]})}var KO=`farming.codex.sessionDisplayState.v1`,qO=50,JO=`tmp_uuid`;function YO(){return{promotedKeys:[],pinnedOverrides:{},archivedOverrides:{}}}function XO(){if(typeof window>`u`)return YO();try{let e=JSON.parse(window.localStorage.getItem(`farming.codex.sessionDisplayState.v1`)||`{}`),t=Array.isArray(e.promotedKeys)?e.promotedKeys.filter(e=>typeof e==`string`&&e.length>0):[],n={};e.pinnedOverrides&&typeof e.pinnedOverrides==`object`&&Object.entries(e.pinnedOverrides).forEach(([e,t])=>{typeof t==`boolean`&&(n[e]=t)});let r={};return e.archivedOverrides&&typeof e.archivedOverrides==`object`&&Object.entries(e.archivedOverrides).forEach(([e,t])=>{typeof t==`boolean`&&(r[e]=t)}),{promotedKeys:t,pinnedOverrides:n,archivedOverrides:r}}catch{return YO()}}function ZO(e){typeof window>`u`||window.localStorage.setItem(KO,JSON.stringify(e))}function QO(e=[]){let t=[],n=new Set;return e.forEach(e=>{let r=typeof e==`string`?e.trim():``;if(!/^agent-session:[a-z][a-z0-9_-]*:.+$/i.test(r))return;let i=r.replace(/^agent-session:[^:]+:/i,``);i.startsWith(`-`)||i.startsWith(JO)||n.has(r)||(n.add(r),t.push(r))}),t.slice(0,qO)}function $O(e,t,n){return e.map(e=>{let r=aD(e),i=r in t,a=r in n;if(!i&&!a)return e;let o=a?n[r]:e.archived;return{...e,pinned:o?!1:i?t[r]:e.pinned,archived:o}})}function ek(e,t,n=``){return n&&n!==`default`?`${e}-history:home:${n}:${t}`:`${e}-history:${t}`}function tk(e){let t=/^([a-z]+)-history(?:-fork)?:(?:(?:home:([A-Za-z0-9._-]+):)?(.+))$/.exec(e||``);if(!t)return null;let n=t[1],r=t[2]||`default`,i=t[3];return n&&i?{provider:n,providerHomeId:r,sessionId:i}:null}function nk(e){let t=tk(e);return t?aD({provider:t.provider,id:t.sessionId,providerHomeId:t.providerHomeId}):``}function rk(e,t,n){return e.map(e=>{if(n||t.has(e.id)||e.agentSessions.length<=5)return{...e,hiddenAgentSessionCount:0,agentSessionsExpanded:t.has(e.id)};let r=e.agentSessions.filter(e=>e.pinned||e.unread),i=new Set(r.map(aD)),a=e.agentSessions.filter(e=>!i.has(aD(e))),o=Math.max(0,5-r.length),s=a.slice(0,o),c=a.length-s.length;return{...e,agentSessions:[...r,...s],hiddenAgentSessionCount:c,agentSessionsExpanded:!1}})}var ik=150,ak=12;function ok(e){let t=String(e||``).trim().toLowerCase();return t===`codex`||t===`claude`||t===`qoder`?t:``}function sk(e){let t=tk(e);if(!t)return null;let n=ok(t.provider),r=String(t.sessionId||``).trim();return n&&r?{...t,provider:n,sessionId:r}:null}function ck(e){return e.title||e.task||e.command||`History agent`}function lk(e){return e.projectWorkspace||e.cwd||``}function uk(...e){return e.map(e=>String(e||``).trim()).filter(Boolean).join(` · `)}function dk(e){return uk(an(lk(e)))}function fk(e){return uk(e.providerSessionProvider||e.engineName,an(ZE(e)))}function pk(e){return uk(e.providerName||e.provider,e.model,e.effort?eD(e.effort):``,oD(e))}function mk(e){return Math.max(e.archivedAt||0,e.lastActivity||0,e.startedAt||0)}function hk(e){return Math.max(e.archivedAt||0,e.lastActivity||0,e.startedAt||0)}function gk(e){if(e.kind===`session`){let t=ok(e.session.provider),n=String(e.session.id||``).trim();return t&&n?{provider:t,sessionId:n,providerHomeId:e.session.providerHomeId||`default`}:null}if(e.kind===`agent`){let t=ok(e.agent.providerSessionProvider),n=String(e.agent.providerSessionId||``).trim();return t&&n&&e.agent.providerSessionTemporary!==!0?{provider:t,sessionId:n,providerHomeId:e.agent.providerHomeId||`default`}:sk(e.agent.source)}return sk(e.entry.source)}function _k(e){let t=gk(e);return t?`resume:${t.provider}:${t.providerHomeId||`default`}:${t.sessionId}`:``}function vk(e){return e.kind===`session`?30:e.kind===`agent`?20:10}function yk(e,t){return t.updatedAt===e.updatedAt?vk(t)>vk(e):t.updatedAt>e.updatedAt}function bk(e){let t=[],n=new Map;return e.forEach(e=>{let r=_k(e);if(!r){t.push(e);return}let i=n.get(r);(!i||yk(i,e))&&n.set(r,e)}),[...t,...n.values()].sort((e,t)=>t.updatedAt-e.updatedAt)}function xk(e,t,n){return bk([...e.map(e=>({kind:`run`,historyKey:`run:${e.id}`,updatedAt:mk(e),entry:e})),...t.map(e=>({kind:`agent`,historyKey:`agent:${e.id}`,updatedAt:hk(e),agent:e})),...n.map(e=>({kind:`session`,historyKey:aD(e),updatedAt:dD(e),session:e}))])}function Sk(e,t){let n=new Map(e.map(e=>[aD(e),e]));return t.forEach(e=>n.set(aD(e),e)),Array.from(n.values())}function Ck(e){return String(e||``).normalize(`NFKC`).toLocaleLowerCase()}function wk(e,t){let n=Ck(t).trim();return n?e.filter(e=>e.kind===`run`?Ck([ck(e.entry),dk(e.entry),e.entry.command,e.entry.task].join(`
194
+ `)).includes(n):e.kind===`agent`?Ck([ee(e.agent),fk(e.agent),e.agent.command].join(`
195
+ `)).includes(n):Ck([e.session.title,pk(e.session),e.session.provider].join(`
196
+ `)).includes(n)):e}function Tk(e,t,n=ak){let r=Math.max(1,Math.floor(n)),i=Math.max(1,Math.ceil(e.length/r)),a=Math.max(0,Math.min(i-1,Math.floor(t))),o=a*r;return{items:e.slice(o,o+r),page:a,pageSize:r,totalItems:e.length,totalPages:i}}function Ek({archivedRuns:e,archivedAgents:t,agentSessions:n,now:r,onResumeSession:i,onContinueRun:a,onOpenArchivedAgent:o,onRestoreArchivedAgent:s,searchAgentSessions:c,canLoadMoreAgentSessions:l,onLoadMoreAgentSessions:u,copy:d}){let[f,p]=(0,G.useState)(``),[m,h]=(0,G.useState)(0),[g,_]=(0,G.useState)(!1),v=f.trim(),y=!!v,[b,x]=(0,G.useState)({query:``,sessions:[],loading:!1}),S=b.query===v?b.sessions:[],C=xk(e,t,y?Sk(n,S):n),w=wk(C,v),T=Tk(w,m),E=C.length,D=y&&(b.query!==v||b.loading);(0,G.useEffect)(()=>{if(!v){x({query:``,sessions:[],loading:!1});return}let e=new AbortController;x({query:v,sessions:[],loading:!0});let t=window.setTimeout(()=>{c(v,e.signal).then(t=>{e.signal.aborted||x({query:v,sessions:t,loading:!1})}).catch(t=>{t instanceof DOMException&&t.name===`AbortError`||e.signal.aborted||x({query:v,sessions:[],loading:!1})})},ik);return()=>{window.clearTimeout(t),e.abort()}},[v,c]),(0,G.useEffect)(()=>{h(0)},[v]),(0,G.useEffect)(()=>{m!==T.page&&h(T.page)},[T.page,m]);let O=async()=>{let e=T.page+1;if(e<T.totalPages){h(e);return}if(!(!l||g)){_(!0);try{await u()&&h(e)}finally{_(!1)}}};return(0,K.jsxs)(`div`,{className:`code-history-panel`,"data-testid":`code-history-panel`,children:[(0,K.jsxs)(`div`,{className:`code-history-panel-header`,children:[(0,K.jsx)(`h2`,{children:d.history}),(0,K.jsxs)(`div`,{className:`code-search-panel-input code-history-search`,"data-testid":`code-history-search-box`,children:[(0,K.jsx)(`span`,{className:`code-search-panel-icon`,"aria-hidden":`true`,children:(0,K.jsx)(Me,{})}),(0,K.jsx)(`input`,{type:`text`,role:`searchbox`,inputMode:`search`,value:f,onChange:e=>p(e.currentTarget.value),placeholder:d.searchHistory,"aria-label":d.searchHistory,autoComplete:`off`,spellCheck:!1}),f&&(0,K.jsx)(`button`,{type:`button`,onClick:()=>p(``),"aria-label":d.clearSearch,children:(0,K.jsx)(Se,{})})]})]}),E===0?(0,K.jsxs)(`div`,{className:`code-empty-workspace`,children:[(0,K.jsx)(`h2`,{children:d.noHistoryYet}),(0,K.jsx)(`p`,{children:d.noHistoryDescription})]}):y&&D&&w.length===0?(0,K.jsx)(`div`,{className:`code-empty-workspace`,"data-testid":`code-history-search-loading`,children:(0,K.jsx)(`h2`,{children:d.searching})}):y&&w.length===0?(0,K.jsx)(`div`,{className:`code-empty-workspace`,"data-testid":`code-empty-history-search`,children:(0,K.jsx)(`h2`,{children:d.noMatchingAgents})}):(0,K.jsxs)(`div`,{className:`code-history-list`,children:[(0,K.jsx)(`section`,{className:`code-history-section`,"data-testid":`code-history-agents`,children:T.items.map(e=>{if(e.kind===`run`){let{entry:t}=e;return(0,K.jsxs)(`article`,{className:`code-history-card archived`,"data-testid":`code-archived-run-card`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`h3`,{children:ck(t)}),(0,K.jsx)(`p`,{children:dk(t)})]}),(0,K.jsxs)(`div`,{className:`code-history-actions`,children:[(0,K.jsx)(`span`,{children:M(e.updatedAt,r)}),(0,K.jsx)(`button`,{type:`button`,"data-testid":`code-archived-run-continue`,onClick:()=>a(t),"aria-label":d.continueRun,title:d.continueRun,children:(0,K.jsx)(U,{})})]})]},e.historyKey)}if(e.kind===`agent`){let{agent:t}=e;return(0,K.jsxs)(`article`,{className:`code-history-card archived`,"data-testid":`code-archived-agent-card`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`h3`,{children:ee(t)}),(0,K.jsx)(`p`,{children:fk(t)})]}),(0,K.jsxs)(`div`,{className:`code-history-actions`,children:[(0,K.jsx)(`span`,{children:M(e.updatedAt,r)}),(0,K.jsx)(`button`,{type:`button`,"data-testid":`code-archived-agent-open`,onClick:()=>o(t.id),"aria-label":d.open,title:d.open,children:(0,K.jsx)(je,{})}),(0,K.jsx)(`button`,{type:`button`,"data-testid":`code-archived-agent-restore`,onClick:()=>s(t.id),"aria-label":d.restore,title:d.restore,children:(0,K.jsx)(U,{})})]})]},e.historyKey)}let{session:t}=e,n=t.title||d.sessionFallbackTitle(t.providerName);return(0,K.jsxs)(`article`,{className:`code-history-card code-session`,"data-testid":`code-session-history-card`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`h3`,{children:n}),(0,K.jsx)(`p`,{children:pk(t)})]}),(0,K.jsxs)(`div`,{className:`code-history-actions`,children:[(0,K.jsx)(`span`,{children:M(e.updatedAt,r)}),(0,K.jsx)(`button`,{type:`button`,"aria-label":d.resumeSessionAria(n),title:d.restore,onClick:()=>i(t.provider,t.id,t.providerHomeId),children:(0,K.jsx)(U,{})})]})]},e.historyKey)})}),(0,K.jsxs)(`nav`,{className:`code-history-pagination`,"data-testid":`code-history-pagination`,"aria-label":d.historyPagination,children:[(0,K.jsx)(`button`,{type:`button`,onClick:()=>h(e=>Math.max(0,e-1)),disabled:T.page===0,"aria-label":d.previousPage,title:d.previousPage,children:(0,K.jsx)(we,{})}),(0,K.jsx)(`span`,{"data-testid":`code-history-page-status`,children:d.historyPageStatus(T.page+1,T.totalPages,T.totalItems,l)}),(0,K.jsx)(`button`,{type:`button`,onClick:()=>void O(),disabled:g||T.page>=T.totalPages-1&&!l,"aria-label":d.nextPage,title:d.nextPage,children:(0,K.jsx)(W,{})})]})]})]})}function Dk(e){let t=(e||``).trim().split(/\s+/).find(e=>e!==`env`&&!/^[A-Za-z_][A-Za-z0-9_]*=/.test(e)),n=t?.split(`/`).pop()||``;return n===`codex`?`codex`:n===`claude`?`claude`:[`bash`,`zsh`,`sh`,`fish`].includes(n)?`shell`:t?`agent`:null}var Ok={plusMenu:!1,permissionMode:!1,modelPicker:!1,reasoningEffort:!1,serviceTier:!1,speechInput:!0},kk={plusMenu:!0,permissionMode:!0,modelPicker:!0,reasoningEffort:!0,serviceTier:!1,speechInput:!0},Ak=[{command:`/goal`,label:`Goal`,description:`Set or update what this Codex session should keep working toward`,source:`codex`},{command:`/plan`,label:`Plan mode`,description:`Ask Codex to plan first before editing`,source:`codex`},{command:`/skills`,label:`Skills`,description:`Browse and use available Codex skills`,source:`codex`},{command:`/permissions`,label:`Permissions`,description:`Change what Codex can do without asking first`,source:`codex`},{command:`/model`,label:`Model`,description:`Change or inspect the active Codex model`,source:`codex`},{command:`/reasoning`,label:`Reasoning`,description:`Change the reasoning effort for this session`,source:`codex`},{command:`/mcp`,label:`MCP`,description:`Show MCP server status`,source:`codex`},{command:`/fast`,label:`Fast`,description:`Toggle Codex fast mode when available`,source:`codex`},{command:`/status`,label:`Status`,description:`Inspect the session, model, permissions, and token usage`,source:`codex`},{command:`/usage`,label:`Usage`,description:`View account token usage from Codex`,source:`codex`},{command:`/compact`,label:`Compact`,description:`Summarize long context to free tokens`,source:`codex`},{command:`/review`,label:`Review`,description:`Ask Codex to review the current working tree`,source:`codex`},{command:`/personality`,label:`Personality`,description:`Choose how Codex communicates in this session`,source:`codex`},{command:`/help`,label:`Help`,description:`Show available Codex slash commands`,source:`codex`}],jk=[{command:`/help`,label:`Help`,description:`Show available Claude Code slash commands`,source:`claude`},{command:`/model`,label:`Model`,description:`Change or inspect the active Claude model`,source:`claude`},{command:`/permissions`,label:`Permissions`,description:`Review or change Claude Code permission behavior`,source:`claude`},{command:`/cost`,label:`Cost`,description:`Show Claude Code usage for the current conversation`,source:`claude`},{command:`/compact`,label:`Compact`,description:`Compact the current Claude Code conversation`,source:`claude`},{command:`/clear`,label:`Clear`,description:`Clear the current Claude Code conversation`,source:`claude`},{command:`/config`,label:`Config`,description:`Open Claude Code configuration`,source:`claude`},{command:`/doctor`,label:`Doctor`,description:`Check Claude Code installation and account health`,source:`claude`},{command:`/memory`,label:`Memory`,description:`Edit or inspect Claude Code memory`,source:`claude`}];function Mk(e){return e===`codex`?Ak:e===`claude`?jk:[]}function Nk(e){let t=new Set;return e.filter(e=>{let n=e.command.trim().toLowerCase();return!n||t.has(n)?!1:(t.add(n),!0)})}function Pk(e){let t=HE(e).kind,n=e?.runtimeBinding.kind||`terminal`;return{kind:t,composer:t===`codex`?{...kk,modelPicker:n===`terminal`||n===`app-server`,reasoningEffort:n===`terminal`||n===`app-server`,serviceTier:n===`terminal`||n===`app-server`}:t===`claude`?{...kk,modelPicker:!1,reasoningEffort:!1}:{...Ok},actions:{pin:!!e,rename:!!e,archive:!!(e&&!e.isMain),markUnread:!!e,copyWorkingDirectory:!!e,forkSameWorktree:!!e,forkNewWorktree:e?.canForkNewWorktree===!0,kill:!!(e&&e.isMain)}}}function Fk(e){return!!(e&&(e.agents.some(e=>!e.isMain)||e.agentSessions.length>0))}function Ik(e){if(!e||e.hasMain||!e.workspace)return!1;let t=e.workspace.replace(/[\\/]+$/,``).split(/[\\/]/).pop()??``;return/-farming-fork-\d{8}-\d{6}(?:-\d+)?$/.test(t)}function Lk(e){let t=Pk(e),n=[t.actions.pin,t.actions.rename,t.actions.archive,t.actions.markUnread,t.actions.copyWorkingDirectory,t.actions.forkSameWorktree,t.actions.forkNewWorktree,t.actions.kill].filter(Boolean).length;return{itemCount:n,separatorCount:n>0?2:0}}function Rk(e){return e.kind===`agent`?e.claimedSessionKey||`agent:${e.agent.id}`:aD(e.session)}function zk(e){return!!e.parentAgentId&&e.source===`ui-fork-new-worktree`}function Bk(e,t){return t||e===`pending`||e===`stopped`||e===`dead`}function Vk(e){let t=e.replace(/\s+/g,` `).trim();return t.length>160?`${t.slice(0,157)}...`:t}function Hk(e){return e?new Date(e).toLocaleString():void 0}function Uk(e){return e.map(e=>typeof e==`string`?e.trim():``).filter(Boolean).join(` · `)}function Wk(e){return typeof e==`number`&&Number.isFinite(e)?e:null}function Gk(e){if(e===null||e<0)return``;let t=Math.max(0,Math.round(e/1e3));if(t<60)return`${t}s`;let n=Math.floor(t/60);if(n<60)return`${n}m`;let r=Math.floor(n/60),i=n%60;return i>0?`${r}h ${i}m`:`${r}h`}function Kk(e,t,n){let r=Vk(e.terminalStatus?.runningCommand||e.shellCommand||``);if(r&&t){let t=Wk(e.terminalStatus?.runningCommandStartedAt)??Wk(e.shellCommandStartedAt),i=t===null?``:Gk(n-t);return i?`Running ${i}: ${r}`:`Running: ${r}`}let i=Vk(e.terminalStatus?.lastCommand||e.shellLastCommand||``);if(!i)return``;let a=e.terminalStatus?.lastExitCode,o=[Gk(Wk(e.terminalStatus?.lastCommandDurationMs)??Wk(e.shellLastCommandDurationMs)),typeof a==`number`?`exit ${a}`:``].filter(Boolean).join(`, `);return o?`Last command: ${i} (${o})`:`Last command: ${i}`}function qk(e,t){let n=e.lastActivity??e.startedAt,r=HE(e).turnActive,i=C(e),a=Kk(e,r,t),o=Uk([c(e.providerSessionProvider||e.command),e.codexTerminalProfile?.model,e.codexTerminalProfile?.reasoningEffort]),s=a||(o.toLowerCase()===i.toLowerCase()?``:o),l=M(n,t);return{kind:`agent`,title:i,rowTitle:[i,a,e.cwd].filter(Boolean).join(` · `),commandTitle:a,detailLabel:s,lifecycleStatus:e.status,turnActive:r,statusIndicatorVisible:Bk(e.status,r),pinned:e.pinned===!0,unread:e.unread===!0,forkedToNewWorktree:zk(e),requiresResume:!1,scheduled:!1,scheduleTitle:``,ageLabel:l,ageVisible:!r&&!!l,ageTitle:Hk(n)}}function Jk(e,t,n){let r=dD(e),i=e.schedule?.label||e.schedule?.name||e.schedule?.rrule||``,a=Uk([e.providerName||c(e.provider),e.model,e.effort]),o=M(r,n);return{kind:`history`,title:e.title||t,rowTitle:[e.title||t,e.cwd||e.workspace].filter(Boolean).join(` · `),commandTitle:``,detailLabel:a,turnActive:!1,statusIndicatorVisible:!1,pinned:e.pinned===!0,unread:e.unread===!0,forkedToNewWorktree:!1,requiresResume:!0,scheduled:!!e.schedule,scheduleTitle:i,ageLabel:o,ageVisible:!!o,ageTitle:Hk(r)}}function Yk(e,t=Date.now()){return e.kind===`agent`?qk(e.agent,t):Jk(e.session,e.fallbackTitle,t)}function Xk({query:e,displayedProjects:t,hasQuery:n,loading:r,resultCount:i,selectedAgentId:a,selectedSessionHandle:o,inputRef:s,onQueryChange:c,onKeyDown:l,onClearSearch:u,onOpenAgent:d,onOpenSession:f,copy:p}){return(0,G.useEffect)(()=>{let e=s.current;e&&window.requestAnimationFrame(()=>{e.focus({preventScroll:!0})})},[s]),(0,K.jsxs)(`div`,{className:`code-search-panel`,"data-testid":`code-search-panel`,children:[(0,K.jsxs)(`div`,{className:`code-search-panel-header`,children:[(0,K.jsx)(`h2`,{children:p.search}),n?(0,K.jsx)(`span`,{children:p.resultsCount(i)}):null]}),(0,K.jsxs)(`div`,{className:`code-search-panel-input`,"data-testid":`code-search-box`,children:[(0,K.jsx)(`span`,{className:`code-search-panel-icon`,"aria-hidden":`true`,children:(0,K.jsx)(Me,{})}),(0,K.jsx)(`input`,{ref:s,type:`text`,role:`searchbox`,name:`farming-workspace-search`,inputMode:`search`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`search`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,value:e,onChange:e=>c(e.currentTarget.value),onKeyDown:l,placeholder:p.searchProjectsOrAgents,"aria-label":p.searchProjectsOrAgents}),e&&(0,K.jsx)(`button`,{type:`button`,onClick:u,"aria-label":p.clearSearch,children:(0,K.jsx)(Se,{})})]}),n&&r&&i===0?(0,K.jsx)(`div`,{className:`code-empty-workspace`,"data-testid":`code-search-loading`,children:(0,K.jsx)(`h2`,{children:p.searching})}):n&&i===0?(0,K.jsx)(`div`,{className:`code-empty-workspace`,"data-testid":`code-empty-search`,children:(0,K.jsx)(`h2`,{children:p.noMatchingAgents})}):n?(0,K.jsx)(`div`,{className:`code-search-results`,children:t.map(e=>(0,K.jsxs)(`section`,{className:`code-search-result-group`,children:[(0,K.jsx)(`h3`,{children:e.name}),e.agents.map(e=>(0,K.jsx)(Zk,{agent:e,selected:e.id===a,onOpen:()=>d(e.id)},e.id)),e.agentSessions.map(e=>{let t=aD(e),n=[e.providerName||e.provider,e.model,e.effort?eD(e.effort):``].filter(Boolean).join(` · `)||oD(e);return(0,K.jsx)(`button`,{type:`button`,className:`code-search-result code-session-result ${t===o?`active`:``}`,"data-testid":`code-session-search-result`,onClick:()=>f(e),children:(0,K.jsxs)(`span`,{className:`code-search-result-copy`,children:[(0,K.jsx)(`strong`,{children:e.title||p.sessionFallbackTitle(e.providerName)}),(0,K.jsx)(`span`,{children:n})]})},t)})]},e.id))}):null]})}function Zk({agent:e,selected:t,onOpen:n}){let r=Yk({kind:`agent`,agent:e}),i=c(e.providerSessionProvider||e.command);return(0,K.jsxs)(`button`,{type:`button`,className:`code-search-result ${r.statusIndicatorVisible?``:`no-status`} ${t?`active`:``}`,"data-testid":`code-search-result`,title:r.rowTitle||r.title,onClick:n,children:[r.statusIndicatorVisible&&(0,K.jsx)(`span`,{className:`code-agent-dot ${r.lifecycleStatus} ${r.turnActive?`turn-active`:``}`}),(0,K.jsxs)(`span`,{className:`code-search-result-copy`,children:[(0,K.jsx)(`strong`,{children:r.title}),(0,K.jsx)(`span`,{children:i||$E(ZE(e))})]})]})}var Qk=`farming.code.fileEditor.chunk-recovery`,$k=null,eA=null;function tA(){if(typeof window>`u`)return!1;try{return window.sessionStorage.getItem(Qk)===`1`?!1:(window.sessionStorage.setItem(Qk,`1`),window.location.reload(),!0)}catch{return!1}}function nA(){return $k||=Promise.all([s(()=>import(`./FileEditorPane-Dxx4rKOg.js`),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16])),s(()=>import(`./workspace-editor-monaco-DRJ7IaXk.js`).then(e=>{e.preloadWorkspaceEditorMonaco()}),__vite__mapDeps([17,10,1,3,11,12,13,14,7,8]))]).then(([e])=>{try{window.sessionStorage.removeItem(Qk)}catch{}return eA=e.FileEditorPane,{default:eA}}),$k}function rA(e){nA().then(t=>{e(t.default)}).catch(()=>{})}function iA(){return nA().catch(e=>{if(tA())return new Promise(()=>{});throw e})}function aA(e){return e.split(`/`).filter(Boolean).pop()||e}function oA(e){return e.split(`/`).filter(Boolean)}function sA({openFile:e,onChangeDraft:t,copy:n}){let r=oA(e.file.path);return(0,K.jsxs)(`section`,{className:`code-file-editor fallback`,"data-testid":`code-file-editor`,"aria-label":n.editorFor(e.file.path),children:[(0,K.jsxs)(`header`,{className:`code-file-editor-header`,children:[(0,K.jsx)(`div`,{className:`code-file-editor-tabs`,role:`tablist`,children:(0,K.jsxs)(`div`,{className:`code-file-editor-tab active ${e.dirty?`dirty`:``} ${e.externalChanged?`warning`:``}`,title:e.file.path,role:`tab`,"aria-selected":`true`,children:[(0,K.jsx)(`span`,{"aria-hidden":`true`}),(0,K.jsx)(`span`,{className:`code-file-editor-tab-name`,children:aA(e.file.path)}),(0,K.jsx)(`span`,{className:`code-file-editor-tab-tail`,children:(e.dirty||e.externalChanged)&&(0,K.jsx)(`span`,{className:`code-file-editor-dirty`,title:e.externalChanged?n.changedOnDisk:n.unsavedChanges})})]})}),(0,K.jsxs)(`div`,{className:`code-file-editor-bar`,children:[(0,K.jsx)(`nav`,{className:`code-file-editor-breadcrumbs`,title:e.file.path,"aria-label":n.filePath,children:r.map((e,t)=>(0,K.jsxs)(`span`,{className:`code-file-editor-breadcrumb ${t===r.length-1?`current`:``}`,children:[(0,K.jsx)(`span`,{className:`code-file-editor-breadcrumb-name`,children:e}),t<r.length-1&&(0,K.jsx)(`span`,{className:`code-file-editor-breadcrumb-separator`,"aria-hidden":`true`})]},`${t}-${e}`))}),(0,K.jsx)(`div`,{className:`code-file-editor-actions`,children:e.dirty&&(0,K.jsx)(`span`,{className:`code-file-editor-status`,children:n.unsavedChanges})})]})]}),(0,K.jsx)(`textarea`,{className:`code-file-editor-fallback-textarea`,"data-testid":`code-file-editor-fallback-textarea`,name:`farming-file-editor-fallback`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,value:e.draft,onChange:e=>t(e.currentTarget.value),spellCheck:!1,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,"aria-label":n.editorFor(e.file.path)}),(0,K.jsx)(`footer`,{className:`code-file-editor-statusbar`,children:(0,K.jsx)(`span`,{className:`code-file-editor-cursor-position`,children:n.cursorPosition(1,1)})})]})}function cA(e,t){return t===`search`?e.search:t===`history`?e.history:`Farming`}function lA({activeView:e,showFileEditor:t,openWorkspaceFile:n,openWorkspaceFiles:r,openAgentsCount:i,visibleOpenAgents:a,activeTerminalId:o,permissionSwitchingAgentId:s,agentSwitchingKind:c,terminalFocusRequest:l,agentCreationWorkspace:u,displayedProjects:d,searchQuery:f,searchHasQuery:p,searchLoading:m,visibleSearchTargetCount:h,selectedSearchAgentId:g,selectedSearchSessionHandle:_,searchInputRef:v,archivedRuns:y,archivedAgents:b,historyAgentSessions:x,canLoadMoreHistoryAgentSessions:S,now:C,composerProps:w,acpComposerProps:T,onNewAgent:E,onOpenTerminal:D,onOpenTerminalPath:O,onResolveTerminalPath:k,onTerminalFollowOutputChange:A,onAgentReadLatest:j,onRuntimeModeChange:M,onSessionOutput:N,onOpenSearchAgent:P,onOpenSearchSession:F,onSearchQueryChange:ee,onSearchKeyDown:I,onCloseSearch:te,onLoadMoreHistoryAgentSessions:L,onSearchHistoryAgentSessions:R,onResumeHistorySession:ne,onContinueArchivedRun:z,onOpenArchivedAgent:B,onRestoreArchivedAgent:re,onChangeWorkspaceFileDraft:ie,onUpdateOpenWorkspaceFile:ae,onSelectOpenWorkspaceFile:V,onOpenWorkspaceFilePath:se,canNavigateWorkspaceBack:ce,canNavigateWorkspaceForward:le,onNavigateWorkspaceHistory:ue,onCloseOpenWorkspaceFile:de,onCloseOpenWorkspaceFiles:fe,onRevealWorkspaceFileInExplorer:pe,onFocusWorkspaceFilesSearch:me,onRecordWorkspaceNavigationCursor:he,onBackToAgentFromFile:H,copy:ge}){let[_e,ve]=(0,G.useState)(!1),[ye,Se]=(0,G.useState)(!1),[Ce,we]=(0,G.useState)(()=>eA),[Te,Ee]=(0,G.useState)(null),De=Ce??eA,Oe=t&&n!==null;(0,G.useEffect)(()=>{let e=!0;return rA(t=>{e&&we(()=>t)}),()=>{e=!1}},[]),(0,G.useEffect)(()=>{if(!Oe||De)return;let e=!0;return iA().then(t=>{e&&we(()=>t.default)}).catch(t=>{e&&Ee(t)}),()=>{e=!1}},[De,Oe]);let U=o&&a.find(e=>e.id===o)||null,ke=Cn(U),Ae=ye&&e===`projects`&&!t&&i>0,W=Ae&&_e;(0,G.useEffect)(()=>{let e=window.matchMedia(`(hover: hover) and (pointer: fine)`),t=()=>Se(e.matches);return t(),e.addEventListener(`change`,t),()=>e.removeEventListener(`change`,t)},[]),(0,G.useEffect)(()=>{!Ae&&_e&&ve(!1)},[Ae,_e]);let je=(0,G.useCallback)(e=>{if(!oe())return;let t=e.target;if(t instanceof Element&&t.closest(`.code-composer`))return;let n=document.activeElement;n instanceof HTMLElement&&n.closest(`.code-composer`)&&(n instanceof HTMLTextAreaElement||n.isContentEditable||n.getAttribute(`role`)===`textbox`)&&n.blur()},[]);if(Te)throw Te;return(0,K.jsx)(`main`,{className:`code-main`,"data-testid":`code-main`,onPointerDownCapture:je,onTouchStartCapture:je,children:e===`projects`?t&&n?De?(0,K.jsx)(De,{openFile:n,openFiles:r,onChangeDraft:ie,onUpdateOpenFile:ae,onSelectOpenFile:V,onOpenFilePath:se,canNavigateBack:ce,canNavigateForward:le,onNavigateHistory:ue,onCloseOpenFile:de,onCloseOpenFiles:fe,onRevealInExplorer:pe,onFocusFilesSearch:me,onRecordNavigationCursor:he,onBackToAgent:H,copy:ge}):(0,K.jsx)(sA,{openFile:n,onChangeDraft:ie,copy:ge}):(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`div`,{className:`code-terminal-grid panes-1`,"data-testid":`code-terminal-grid`,children:i===0?(0,K.jsxs)(`div`,{className:`code-empty-workspace`,"data-testid":`code-empty-workspace`,children:[(0,K.jsx)(`h2`,{children:ge.startOrSelectAgent}),(0,K.jsx)(`p`,{children:ge.startOrSelectAgentDescription}),(0,K.jsx)(`button`,{type:`button`,onClick:()=>E(u),children:ge.newAgent})]}):a.map(e=>(0,K.jsx)(KE,{agent:e,active:e.id===o,switching:e.id===s,switchingKind:e.id===s?c:null,onActivate:D,onOpenPath:O,onResolvePath:k,onOpenWorkspaceFilePath:se,onFollowOutputChange:A,onReadLatest:j,onRuntimeModeChange:M,onSessionOutput:N,focusSignal:l?.agentId===e.id?l.nonce:0,copy:ge},e.id))}),W?(0,K.jsx)(`div`,{className:`code-composer-restore-bar`,"data-testid":`code-composer-restore-bar`,children:(0,K.jsx)(`button`,{type:`button`,className:`code-composer-restore`,"data-testid":`code-composer-restore`,"aria-label":ge.restoreComposer,title:ge.restoreComposer,onClick:()=>ve(!1),children:(0,K.jsx)(xe,{})})}):(0,K.jsxs)(`div`,{className:`code-composer-shell ${Ae?`collapsible`:``}`,children:[Ae?(0,K.jsx)(`div`,{className:`code-composer-collapse-zone`,"aria-hidden":`false`,children:(0,K.jsx)(`button`,{type:`button`,className:`code-composer-collapse`,"data-testid":`code-composer-collapse`,"aria-label":ge.collapseComposer,title:ge.collapseComposer,onClick:()=>ve(!0),children:(0,K.jsx)(be,{})})}):null,ke?null:(0,K.jsx)(GO,{agent:U,active:e===`projects`&&!t&&!W,copy:ge}),ke?(0,K.jsx)(LO,{...T,copy:ge}):(0,K.jsx)(nO,{...w,copy:ge})]})]}):(0,K.jsx)(`section`,{className:`code-side-view-panel ${e===`search`?`code-search-view`:``} ${e===`history`?`code-history-view`:``}`,"data-testid":`code-side-view-panel`,children:e===`search`?(0,K.jsx)(Xk,{query:f,displayedProjects:d,hasQuery:p,loading:m,resultCount:h,selectedAgentId:g,selectedSessionHandle:_,inputRef:v,onQueryChange:ee,onKeyDown:I,onClearSearch:te,onOpenAgent:P,onOpenSession:F,copy:ge}):e===`history`?(0,K.jsx)(Ek,{archivedRuns:y,archivedAgents:b,agentSessions:x,now:C,onResumeSession:ne,onContinueRun:z,onOpenArchivedAgent:B,onRestoreArchivedAgent:re,searchAgentSessions:R,canLoadMoreAgentSessions:S,onLoadMoreAgentSessions:L,copy:ge}):(0,K.jsx)(`h2`,{children:cA(ge,e)})})})}function uA(){return{entries:[],cursor:null}}function dA(e,t,n=100){let r=t.trimEnd();if(!r)return{...e,cursor:null};let i=Math.max(1,n);return{entries:e.entries[e.entries.length-1]===r?e.entries:[...e.entries,r].slice(-i),cursor:null}}function fA(e){let t=e.value||``,n=Math.max(0,Math.min(e.selectionStart,t.length));return n===Math.max(0,Math.min(e.selectionEnd,t.length))?e.direction===`previous`?t.lastIndexOf(`
197
+ `,Math.max(0,n-1))===-1:t.indexOf(`
198
+ `,n)===-1:!1}function pA(e,t,n){if(e.entries.length===0)return{history:{...e,cursor:null},value:n,changed:!1};let r=e.cursor,i=r!==null&&e.entries[r]===n;if(!i&&!(r===null&&n===``))return{history:{...e,cursor:null},value:n,changed:!1};if(t===`previous`){let t=i?Math.max(0,r):e.entries.length-1,a=i?Math.max(0,t-1):t,o=e.entries[a]||``;return{history:{...e,cursor:a},value:o,changed:o!==n||e.cursor!==a}}if(!i||r===null)return{history:{...e,cursor:null},value:n,changed:!1};let a=r+1;if(a>=e.entries.length)return{history:{...e,cursor:null},value:``,changed:n!==``||e.cursor!==null};let o=e.entries[a]||``;return{history:{...e,cursor:a},value:o,changed:o!==n||e.cursor!==a}}var mA={plusMenuOpen:!1,approvalMenuOpen:!1,modelMenuOpen:!1,modelPickerPane:null},hA=gA();function gA(){return{draft:``,attachments:[],mode:`default`,history:uA(),ui:{...mA}}}function _A(e,t=[]){return{id:`pending-${typeof crypto<`u`&&`randomUUID`in crypto?crypto.randomUUID():`${Date.now().toString(36)}-${Math.random().toString(36).slice(2,10)}`}`,text:e,createdAt:Date.now(),...t.length>0?{attachments:t}:{}}}function vA(e,t){if(!e)return;let n=e.messages.filter(e=>e.id!==t);return n.length>0?{...e,messages:n}:void 0}function yA(e){return!e.ui.plusMenuOpen&&!e.ui.approvalMenuOpen&&!e.ui.modelMenuOpen&&e.ui.modelPickerPane===null?e:{...e,ui:{...mA}}}function bA(e){return!e.plusMenuOpen&&!e.approvalMenuOpen&&!e.modelMenuOpen&&e.modelPickerPane===null}function xA(e,t){let n=[...e.pendingFollowUp?.messages||[],...t.pendingFollowUp?.messages||[]],r=Math.min(e.pendingFollowUp?.createdAt??1/0,t.pendingFollowUp?.createdAt??1/0);return{...e,draft:e.draft||t.draft,attachments:[...t.attachments,...e.attachments],mode:e.mode===`default`?t.mode:e.mode,history:{entries:[...t.history.entries,...e.history.entries].slice(-100),cursor:null},pendingFollowUp:n.length>0?{messages:n,createdAt:Number.isFinite(r)?r:Date.now()}:void 0,ui:bA(e.ui)?t.ui:e.ui}}function SA(e){return!e||e.providerSessionTemporary===!0?``:e.providerSessionKey?e.providerSessionKey:e.providerSessionProvider&&e.providerSessionId?aD({provider:e.providerSessionProvider,id:e.providerSessionId,providerHomeId:e.providerHomeId}):nk(e.source)}function CA(e){return e?SA(e)||e.restartedFromAgentIds?.[0]||e.id:``}function wA(e){let t=new Set;e.id&&t.add(e.id),e.restartedFromAgentIds?.forEach(e=>t.add(e)),e.providerSessionKey&&t.add(e.providerSessionKey),e.providerSessionProvider&&e.providerSessionId&&t.add(aD({provider:e.providerSessionProvider,id:e.providerSessionId,providerHomeId:e.providerHomeId}));let n=nk(e.source);return n&&t.add(n),Array.from(t)}var TA=5e4,EA={goal:`Goal mode: Treat the following as the working goal for this agent. Track progress toward it and report clearly when it is complete or blocked.`,plan:`Plan mode: Inspect the relevant context first and respond with a concise plan before making code changes. Do not edit files until the plan is clear.`};function DA(e){return!e||e===`/`?``:e.endsWith(`/`)?e.slice(0,-1):e}function OA(e=`/`){let t=DA(`/farming/`),n=e.startsWith(`/`)?e:`/${e}`;return t?`${t}${n}`:n}function kA(e,t){let n=t.trimEnd();if(!n)return e;let r=e.trim()?`
199
+
200
+ `:``;return`${e.trimEnd()}${r}${n}`}function AA(e,t=`attachment`){return e.name||t}function jA(e){return typeof e.type==`string`&&e.type.startsWith(`image/`)}function MA(e,t){let n=t.length>TA,r=n?t.slice(0,TA):t,i=n?`\n\n[File truncated after ${TA} characters]`:``;return`Attached file: ${AA(e)}\n\n${r}${i}`}function NA(e){return`Attached image: ${e.name}\n\nImage path: ${e.path}`}function PA(e){let t=Math.random().toString(36).slice(2,8);return`image-${Date.now()}-${AA(e,`pasted-image`)}-${t}`}function FA(e){if(!(typeof URL>`u`||typeof URL.createObjectURL!=`function`))return URL.createObjectURL(e)}function IA(e){!e.previewUrl||typeof URL>`u`||typeof URL.revokeObjectURL!=`function`||URL.revokeObjectURL(e.previewUrl)}function LA(e){return e.map(e=>e.messageBlock||``).filter(Boolean)}function RA(e,t){let n=LA(t);return kA(e.trimEnd(),n.join(`
201
+
202
+ `)).trimEnd()}function zA(e,t){let n=t.filter(e=>!e.path).map(e=>e.messageBlock||``).filter(Boolean);return kA(e.trimEnd(),n.join(`
203
+
204
+ `)).trimEnd()}function BA(e){return e.flatMap(e=>e.status===`ready`&&e.path?[{kind:`image`,path:e.path,name:e.name,type:e.type,size:e.size}]:[])}function VA(e){return new Promise((t,n)=>{let r=new FileReader;r.onerror=()=>n(r.error??Error(`File read failed`)),r.onload=()=>t(typeof r.result==`string`?r.result:``),r.readAsText(e)})}async function HA(e){let t=await fetch(OA(`/api/attachments/image`),{method:`POST`,headers:{"Content-Type":e.type||`image/png`},body:e});if(!t.ok)throw Error(`Image upload failed: ${t.status}`);return t.json()}async function UA(e){if(jA(e))return NA(await HA(e));try{return MA(e,await VA(e))}catch{return`Attached file: ${AA(e)}\n\n[Unable to read this file as text]`}}function WA(e){return jA(e)?`Attached image: ${AA(e,`pasted image`)}\n\n[Unable to upload this image]`:`Attached file: ${AA(e)}\n\n[Unable to read this file as text]`}function GA(e){if(!e)return[];let t=Array.from(e.files??[]).filter(jA);return t.length>0?t:Array.from(e.items??[]).filter(e=>e.kind===`file`&&e.type.startsWith(`image/`)).map(e=>e.getAsFile()).filter(e=>!!(e&&jA(e)))}function KA(e,t){return e===`default`?t:`${EA[e]}\n\n${t}`}function qA({agent:e,composerKey:t,draft:n,attachments:r,composerMode:i,turnActive:a,sendMessage:o,updateComposerState:s}){let c=BA(r),l=KA(i,zA(n,r).trim());return!l&&c.length===0||!e||e.runtimeBinding.kind!==`acp`||!t||!a&&!o(e,l,c)?!1:(s(t,e=>({...e,draft:``,attachments:[],mode:`default`,history:dA(e.history,n),...a?{pendingFollowUp:{messages:[...e.pendingFollowUp?.messages||[],_A(l,c)],createdAt:e.pendingFollowUp?.createdAt||Date.now()}}:{}})),r.forEach(IA),!0)}function JA(e,t,n,i=!1){return fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-permission`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({requestId:t,optionId:n,cancelled:i})})}function YA(e,t,n,i){return fetch(r(`/api/agents/${encodeURIComponent(e)}/acp-elicitation`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({requestId:t,action:n,content:i})})}var XA=`acp:`;function ZA(e){let t=CA(e);return t?`${XA}${t}`:``}function QA(e){return wA(e).map(e=>`${XA}${e}`)}function $A(e){return e.startsWith(XA)}function ej(){return typeof window>`u`?!1:navigator.standalone===!0||window.matchMedia(`(display-mode: standalone)`).matches}function tj(){return(0,K.jsx)(`svg`,{viewBox:`0 0 20 20`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M10 13V3m0 0L6.5 6.5M10 3l3.5 3.5M4 9v6.5A1.5 1.5 0 0 0 5.5 17h9a1.5 1.5 0 0 0 1.5-1.5V9`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.5`,strokeLinecap:`round`,strokeLinejoin:`round`})})}function nj(){return(0,K.jsxs)(`svg`,{viewBox:`0 0 20 20`,"aria-hidden":`true`,focusable:`false`,children:[(0,K.jsx)(`rect`,{x:`3`,y:`3`,width:`14`,height:`14`,rx:`3`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.4`}),(0,K.jsx)(`path`,{d:`M10 6.5v7M6.5 10h7`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.4`,strokeLinecap:`round`})]})}function rj(){return(0,K.jsxs)(`svg`,{viewBox:`0 0 20 20`,"aria-hidden":`true`,focusable:`false`,children:[(0,K.jsx)(`rect`,{x:`6.5`,y:`6.5`,width:`9`,height:`9`,rx:`2`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.5`}),(0,K.jsx)(`path`,{d:`M13.5 6.5v-2A1.5 1.5 0 0 0 12 3H4.5A1.5 1.5 0 0 0 3 4.5V12A1.5 1.5 0 0 0 4.5 13.5h2`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.5`,strokeLinecap:`round`})]})}function ij({copy:e,title:t,url:n,onClose:r}){let i=ej(),[a,o]=(0,G.useState)(!1),[s,c]=(0,G.useState)(!1);(0,G.useEffect)(()=>{let e=e=>{e.key===`Escape`&&r()};return document.addEventListener(`keydown`,e),()=>document.removeEventListener(`keydown`,e)},[r]),(0,G.useEffect)(()=>{if(!a&&!s)return;let e=window.setTimeout(()=>{o(!1),c(!1)},1800);return()=>window.clearTimeout(e)},[a,s]);let l=(0,G.useCallback)(async()=>{let e=await F(n);o(e),c(!e)},[n]);return(0,K.jsx)(`div`,{className:`code-mobile-share-backdrop`,"data-testid":`code-mobile-share-sheet`,role:`presentation`,onPointerDown:r,children:(0,K.jsxs)(`section`,{className:`code-mobile-share-sheet`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`code-mobile-share-title`,onPointerDown:e=>e.stopPropagation(),children:[(0,K.jsxs)(`header`,{className:`code-mobile-share-header`,children:[(0,K.jsx)(`h2`,{id:`code-mobile-share-title`,children:e.mobileShareTitle}),(0,K.jsx)(`button`,{type:`button`,"aria-label":e.cancel,onClick:r,children:`×`})]}),(0,K.jsxs)(`section`,{className:`code-mobile-share-choice code-mobile-share-forward`,children:[(0,K.jsxs)(`div`,{className:`code-mobile-share-choice-copy`,children:[(0,K.jsx)(`h3`,{children:e.mobileForwardTitle}),(0,K.jsx)(`p`,{children:e.mobileForwardHint})]}),(0,K.jsxs)(`div`,{className:`code-mobile-share-link-row`,children:[(0,K.jsx)(`span`,{className:`code-mobile-share-link`,title:t,children:n}),(0,K.jsxs)(`button`,{type:`button`,"data-testid":`code-mobile-share-copy-action`,onClick:()=>void l(),children:[(0,K.jsx)(rj,{}),(0,K.jsx)(`span`,{children:a?e.mobileShareCopied:e.mobileShareCopyAction})]})]}),s&&(0,K.jsx)(`span`,{className:`code-mobile-share-status`,role:`status`,children:e.copyFailed})]}),(0,K.jsxs)(`section`,{className:`code-mobile-share-choice code-mobile-share-install-guide`,children:[(0,K.jsx)(`h3`,{children:e.mobileInstallTitle}),i?(0,K.jsx)(`p`,{className:`code-mobile-install-complete`,children:e.mobileShareInstalled}):(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`p`,{className:`code-mobile-install-hint`,children:e.mobileInstallChromeHint}),(0,K.jsxs)(`div`,{className:`code-mobile-install-steps`,children:[(0,K.jsxs)(`div`,{className:`code-mobile-install-step`,children:[(0,K.jsxs)(`span`,{className:`code-mobile-install-controls`,"aria-hidden":`true`,children:[(0,K.jsx)(`span`,{className:`code-mobile-install-control`,children:(0,K.jsx)(tj,{})}),(0,K.jsx)(`span`,{className:`code-mobile-install-or`,children:`/`}),(0,K.jsx)(`span`,{className:`code-mobile-install-control code-mobile-install-more`,children:`•••`})]}),(0,K.jsxs)(`span`,{children:[e.mobileInstallShareStep,(0,K.jsx)(`small`,{children:e.mobileInstallMoreStep})]})]}),(0,K.jsxs)(`div`,{className:`code-mobile-install-step`,children:[(0,K.jsx)(`span`,{className:`code-mobile-install-controls`,"aria-hidden":`true`,children:(0,K.jsx)(`span`,{className:`code-mobile-install-control`,children:(0,K.jsx)(nj,{})})}),(0,K.jsxs)(`span`,{children:[e.mobileInstallAddStep,(0,K.jsx)(`small`,{children:e.mobileInstallOpenStep})]})]})]})]})]})]})})}function aj(e){let t=e.filter(e=>!e.hidden),n=[];for(t.forEach(e=>{e.type===`separator`&&(n.length===0||n[n.length-1]?.type===`separator`)||n.push(e)});n[n.length-1]?.type===`separator`;)n.pop();return n}function oj({contextMenuAgent:e,contextMenuAgentSession:t,contextMenuProject:n,agentMenu:r,projectMenu:i,agentSessionMenu:a,renameDialog:o,killDialog:s,deleteWorktreeDialog:c,copyNotice:l,contextMenuRef:u,renameDialogRef:d,renameInputRef:f,killDialogRef:p,killCancelButtonRef:m,deleteWorktreeDialogRef:h,deleteWorktreeCancelButtonRef:g,onContextMenuKeyDown:_,onUpdateAgentFlags:v,onRenameAgent:y,onRenameProject:b,onCopyAgentWorkingDirectory:x,onForkAgent:S,onKillAgent:C,onOpenSession:w,onToggleSessionPinned:T,onArchiveSession:E,onCopySessionWorkingDirectory:D,onToggleProjectPinned:O,onRevealProject:k,onCreatePermanentWorktree:A,onMarkProjectRead:j,onArchiveProject:M,onRemoveProject:N,onDeleteWorktree:P,onCloseRenameDialog:F,onRenameDialogTitleChange:ee,onSubmitRenameDialog:I,onCloseKillDialog:te,onSubmitKillDialog:L,onCloseDeleteWorktreeDialog:R,onSubmitDeleteWorktreeDialog:ne,copy:z}){let B=Pk(e),re=Fk(n),ie=Ik(n),ae=!!n?.agents.some(e=>e.unread),V=aj([{type:`item`,id:`pin-agent`,label:e?.pinned?z.unpinAgent:z.pinAgent,hidden:!B.actions.pin,onSelect:()=>v({pinned:!e?.pinned})},{type:`item`,id:`rename-agent`,label:z.renameAgent,hidden:!B.actions.rename,onSelect:y},{type:`item`,id:`archive-agent`,label:z.archiveAgent,hidden:!B.actions.archive,onSelect:()=>v({archived:!0})},{type:`item`,id:`toggle-agent-unread`,label:e?.unread?z.markAsRead:z.markAsUnread,hidden:!B.actions.markUnread,onSelect:()=>v({unread:!e?.unread})},{type:`separator`,id:`agent-copy-separator`},{type:`item`,id:`copy-agent-working-directory`,label:z.copyWorkingDirectory,hidden:!B.actions.copyWorkingDirectory,onSelect:x},{type:`separator`,id:`agent-fork-separator`},{type:`item`,id:`fork-same-worktree`,label:z.forkSameWorktree,hidden:!B.actions.forkSameWorktree,onSelect:()=>S(`same-worktree`)},{type:`item`,id:`fork-new-worktree`,label:z.forkNewWorktree,hidden:!B.actions.forkNewWorktree,onSelect:()=>S(`new-worktree`)},{type:`item`,id:`kill-agent`,label:z.killAgent,danger:!0,hidden:!B.actions.kill,onSelect:C}]),oe=aj([{type:`item`,id:`open-session`,label:z.openSession,onSelect:()=>{t&&w(t.provider,t.id)}},{type:`item`,id:`toggle-session-pinned`,label:t?.pinned?z.unpinChat:z.pinChat,onSelect:T},{type:`item`,id:`archive-session`,label:z.archiveChat,onSelect:E},{type:`item`,id:`copy-session-working-directory`,label:z.copyWorkingDirectory,onSelect:D}]),se=aj([{type:`item`,id:`pin-project`,label:n?.pinned?z.unpinProject:z.pinProject,icon:`pin`,hidden:!n?.workspace,onSelect:O},{type:`item`,id:`reveal-project`,label:z.revealInFinder,icon:`folder`,hidden:!n?.workspace||n.hasMain,onSelect:k},{type:`item`,id:`create-permanent-worktree`,label:z.createPermanentWorktree,icon:`worktree`,hidden:!n?.workspace||n.hasMain,onSelect:A},{type:`separator`,id:`project-primary-separator`},{type:`item`,id:`rename-project`,label:z.renameProject,icon:`rename`,hidden:!n?.workspace,onSelect:b},{type:`item`,id:`mark-project-read`,label:z.markAllAsRead,icon:`check`,disabled:!ae,onSelect:j},{type:`item`,id:`archive-project`,label:z.archiveChats,icon:`archive`,disabled:!re,onSelect:M},{type:`separator`,id:`project-destructive-separator`},{type:`item`,id:`remove-project`,label:z.removeProject,removeIcon:!0,hidden:!n?.workspace||n.hasMain,disabled:!!(n&&(n.agents.length>0||n.agentSessions.length>0||n.hasOpenFile)),onSelect:N},{type:`item`,id:`delete-worktree`,label:z.deleteWorktree,icon:`trash`,danger:!0,hidden:!ie,onSelect:P}]);return(0,K.jsxs)(K.Fragment,{children:[e&&(0,K.jsx)(`div`,{className:`code-context-menu`,"data-testid":`code-agent-context-menu`,style:{left:r?.x??0,top:r?.y??0},role:`menu`,ref:u,onKeyDownCapture:_,onKeyDown:_,children:(0,K.jsx)(sj,{entries:V})}),t&&(0,K.jsx)(`div`,{className:`code-context-menu`,"data-testid":`code-session-context-menu`,style:{left:a?.x??0,top:a?.y??0},role:`menu`,ref:u,onKeyDownCapture:_,onKeyDown:_,children:(0,K.jsx)(sj,{entries:oe})}),n&&(0,K.jsx)(`div`,{className:`code-context-menu code-project-context-menu`,"data-testid":`code-project-context-menu`,style:{left:i?.x??0,top:i?.y??0},role:`menu`,ref:u,onKeyDownCapture:_,onKeyDown:_,children:(0,K.jsx)(sj,{entries:se})}),o&&(0,K.jsx)(`div`,{className:`code-rename-backdrop`,"data-testid":`code-rename-backdrop`,onMouseDown:F,children:(0,K.jsxs)(`form`,{className:`code-rename-dialog`,"data-testid":`code-rename-dialog`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`code-rename-title`,ref:d,onMouseDown:e=>e.stopPropagation(),onKeyDownCapture:e=>uj(e,d.current),onKeyDown:e=>uj(e,d.current),onSubmit:e=>{e.preventDefault(),I()},children:[(0,K.jsx)(`label`,{id:`code-rename-title`,htmlFor:`code-rename-input`,children:o.kind===`project`?z.renameProject:z.renameAgent}),(0,K.jsx)(`input`,{id:`code-rename-input`,ref:f,"data-testid":`code-rename-input`,type:`text`,name:`farming-rename-title`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`done`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,value:o.title,onChange:e=>ee(e.target.value),onKeyDown:e=>{e.key===`Escape`&&(e.preventDefault(),F())}}),(0,K.jsxs)(`div`,{className:`code-rename-actions`,children:[(0,K.jsx)(`button`,{type:`button`,onClick:F,children:z.cancel}),(0,K.jsx)(`button`,{type:`submit`,className:`primary`,disabled:!o.title.trim(),children:z.save})]})]})}),s&&(0,K.jsx)(`div`,{className:`code-rename-backdrop`,"data-testid":`code-kill-backdrop`,onMouseDown:te,children:(0,K.jsxs)(`div`,{className:`code-rename-dialog code-kill-dialog`,"data-testid":`code-kill-dialog`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`code-kill-title`,ref:p,onMouseDown:e=>e.stopPropagation(),onKeyDownCapture:e=>uj(e,p.current),onKeyDown:e=>uj(e,p.current),children:[(0,K.jsx)(`h2`,{id:`code-kill-title`,children:z.killAgentQuestion}),(0,K.jsx)(`p`,{children:z.stopAgentDescription(s.title)}),(0,K.jsxs)(`div`,{className:`code-rename-actions`,children:[(0,K.jsx)(`button`,{type:`button`,ref:m,onClick:te,autoFocus:!0,children:z.cancel}),(0,K.jsx)(`button`,{type:`button`,className:`danger`,onClick:L,children:z.killAgent})]})]})}),c&&(0,K.jsx)(`div`,{className:`code-rename-backdrop`,"data-testid":`code-delete-worktree-backdrop`,onMouseDown:R,children:(0,K.jsxs)(`div`,{className:`code-rename-dialog code-kill-dialog`,"data-testid":`code-delete-worktree-dialog`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`code-delete-worktree-title`,ref:h,onMouseDown:e=>e.stopPropagation(),onKeyDownCapture:e=>uj(e,h.current),onKeyDown:e=>uj(e,h.current),children:[(0,K.jsx)(`h2`,{id:`code-delete-worktree-title`,children:z.deleteWorktreeQuestion}),(0,K.jsx)(`p`,{children:z.deleteWorktreeDescription}),(0,K.jsxs)(`div`,{className:`code-rename-actions`,children:[(0,K.jsx)(`button`,{type:`button`,ref:g,onClick:R,autoFocus:!0,children:z.cancel}),(0,K.jsx)(`button`,{type:`button`,className:`danger`,onClick:ne,children:z.forceDelete})]})]})}),l&&(0,K.jsx)(`div`,{className:`code-copy-toast ${l.kind}`,"data-testid":`code-copy-toast`,role:`status`,children:l.message})]})}function sj({entries:e}){return(0,K.jsx)(K.Fragment,{children:e.map(e=>e.type===`separator`?(0,K.jsx)(`div`,{className:`code-context-menu-separator`,role:`separator`},e.id):(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,className:e.danger?`danger`:void 0,disabled:e.disabled,onClick:e.onSelect,children:[(e.icon||e.removeIcon)&&(0,K.jsx)(`span`,{className:`code-context-menu-icon`,"aria-hidden":`true`,children:e.removeIcon?(0,K.jsx)(cj,{}):(0,K.jsx)(lj,{kind:e.icon})}),(0,K.jsx)(`span`,{children:e.label})]},e.id))})}function cj(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M4.354 3.646a.5.5 0 0 0-.708.708L7.293 8l-3.647 3.646a.5.5 0 0 0 .708.708L8 8.707l3.646 3.647a.5.5 0 0 0 .708-.708L8.707 8l3.647-3.646a.5.5 0 0 0-.708-.708L8 7.293 4.354 3.646Z`})})}function lj({kind:e}){return e===`pin`?(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M13.5 3C13.303 3 13.109 3.038 12.923 3.114L8.481 4.967L5.659 4.026C5.505 3.976 5.339 4.001 5.209 4.095C5.078 4.189 5.001 4.339 5.001 4.5V7H1.257L0.5 7.5L1.257 8H5V10.5C5 10.661 5.077 10.812 5.208 10.905C5.338 11 5.504 11.023 5.658 10.974L8.48 10.033L12.925 11.887C13.109 11.962 13.302 12 13.499 12C14.326 12 14.999 11.327 14.999 10.5V4.5C14.999 3.673 14.326 3 13.499 3H13.5ZM14 10.5C14 10.843 13.615 11.09 13.308 10.962L8.693 9.038C8.631 9.013 8.566 9 8.501 9C8.447 9 8.395 9.009 8.343 9.025L6.001 9.806V5.193L8.343 5.974C8.457 6.011 8.581 6.007 8.694 5.961L13.306 4.038C13.629 3.902 14.001 4.156 14.001 4.499V10.499L14 10.5Z`})}):e===`folder`?(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M2 4.5V9.10022L2.92389 7.5C3.45979 6.5718 4.45017 6 5.52196 6L11.9146 6C11.7087 5.4174 11.1531 5 10.5 5H7C6.86739 5 6.74021 4.94732 6.64645 4.85355L4.93934 3.14645C4.84557 3.05268 4.71839 3 4.58579 3H3.5C2.67157 3 2 3.67157 2 4.5ZM7.06895 13.9953C7.04641 13.9984 7.02339 14 7 14H3.5C2.11929 14 1 12.8807 1 11.5V4.5C1 3.11929 2.11929 2 3.5 2H4.58579C4.98361 2 5.36514 2.15804 5.64645 2.43934L7.20711 4H10.5C11.724 4 12.7426 4.87965 12.958 6.04127C14.605 6.34148 15.5443 8.22106 14.6616 9.75L13.0766 12.4953C12.5407 13.4235 11.5503 13.9953 10.4785 13.9953H7.06895ZM5.52196 7C4.80743 7 4.14718 7.3812 3.78991 8L2.20492 10.7453C1.62757 11.7453 2.34926 12.9953 3.50396 12.9953L10.4785 12.9953C11.193 12.9953 11.8533 12.6141 12.2105 11.9953L13.7955 9.25C14.3729 8.25 13.6512 7 12.4965 7L5.52196 7Z`})}):e===`worktree`?(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M14 5.5C14 4.121 12.879 3 11.5 3C10.121 3 9 4.121 9 5.5C9 6.682 9.826 7.669 10.93 7.928C10.744 8.546 10.177 9 9.5 9H6.5C5.935 9 5.419 9.195 5 9.512V4.949C6.14 4.717 7 3.707 7 2.5C7 1.121 5.879 0 4.5 0C3.121 0 2 1.121 2 2.5C2 3.708 2.86 4.717 4 4.949V11.05C2.86 11.282 2 12.292 2 13.499C2 14.878 3.121 15.999 4.5 15.999C5.879 15.999 7 14.878 7 13.499C7 12.317 6.174 11.33 5.07 11.071C5.256 10.453 5.823 9.999 6.5 9.999H9.5C10.723 9.999 11.74 9.115 11.954 7.953C13.116 7.738 14 6.723 14 5.5ZM3 2.5C3 1.673 3.673 1 4.5 1C5.327 1 6 1.673 6 2.5C6 3.327 5.327 4 4.5 4C3.673 4 3 3.327 3 2.5ZM6 13.5C6 14.327 5.327 15 4.5 15C3.673 15 3 14.327 3 13.5C3 12.673 3.673 12 4.5 12C5.327 12 6 12.673 6 13.5ZM11.5 7C10.673 7 10 6.327 10 5.5C10 4.673 10.673 4 11.5 4C12.327 4 13 4.673 13 5.5C13 6.327 12.327 7 11.5 7Z`})}):e===`check`?(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M13.6572 3.13573C13.8583 2.9465 14.175 2.95614 14.3643 3.15722C14.5535 3.35831 14.5438 3.675 14.3428 3.86425L5.84277 11.8642C5.64597 12.0494 5.33756 12.0446 5.14648 11.8535L1.64648 8.35351C1.45121 8.15824 1.45121 7.84174 1.64648 7.64647C1.84174 7.45121 2.15825 7.45121 2.35351 7.64647L5.50976 10.8027L13.6572 3.13573Z`})}):e===`archive`?(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M6.5 8C6.22386 8 6 8.22386 6 8.5C6 8.77614 6.22386 9 6.5 9H9.5C9.77614 9 10 8.77614 10 8.5C10 8.22386 9.77614 8 9.5 8H6.5ZM1 3.5C1 2.67157 1.67157 2 2.5 2H13.5C14.3284 2 15 2.67157 15 3.5V4.5C15 5.15311 14.5826 5.70873 14 5.91465V11.5C14 12.8807 12.8807 14 11.5 14H4.5C3.11929 14 2 12.8807 2 11.5V5.91465C1.4174 5.70873 1 5.15311 1 4.5V3.5ZM2.5 3C2.22386 3 2 3.22386 2 3.5V4.5C2 4.77614 2.22386 5 2.5 5H13.5C13.7761 5 14 4.77614 14 4.5V3.5C14 3.22386 13.7761 3 13.5 3H2.5ZM3 6V11.5C3 12.3284 3.67157 13 4.5 13H11.5C12.3284 13 13 12.3284 13 11.5V6H3Z`})}):e===`trash`?(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M6.25 2h3.5l.5 1H13v1H3V3h2.75l.5-1ZM4.2 5h7.6l-.48 8.1A1 1 0 0 1 10.32 14H5.68a1 1 0 0 1-1-.9L4.2 5Zm2.05 1 .35 7h.95L7.2 6h-.95Zm2.2 0v7h.95V6h-.95Z`})}):(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M11.3536 1.64645C10.963 1.25592 10.3299 1.25592 9.93934 1.64645L3.14645 8.43934C3.05268 8.53311 2.99999 8.66029 2.99999 8.79289V11.5C2.99999 11.7761 3.22385 12 3.49999 12H6.2071C6.33971 12 6.46689 11.9473 6.56066 11.8536L13.3536 5.06066C13.7441 4.67014 13.7441 4.037 13.3536 3.64645L11.3536 1.64645ZM3.99999 9L8.99999 4L11 6L6 11H3.99999V9ZM9.7071 3.29289L10.6464 2.35355L12.6464 4.35355L11.7071 5.29289L9.7071 3.29289ZM2.5 14C2.22386 14 2 14.2239 2 14.5C2 14.7761 2.22386 15 2.5 15H13.5C13.7761 15 14 14.7761 14 14.5C14 14.2239 13.7761 14 13.5 14H2.5Z`})})}function uj(e,t){if(e.key!==`Tab`||!t)return;let n=Array.from(t.querySelectorAll(`button:not(:disabled), input:not(:disabled), select:not(:disabled), textarea:not(:disabled), [href], [tabindex]:not([tabindex="-1"])`)).filter(e=>e.offsetParent!==null);if(n.length===0){e.preventDefault();return}let r=n[0],i=n[n.length-1];!r||!i||(e.shiftKey&&document.activeElement===r?(e.preventDefault(),i.focus()):!e.shiftKey&&document.activeElement===i&&(e.preventDefault(),r.focus()))}var dj=o();function fj({canInstall:e,canFullscreen:t,fullscreenActive:n,copy:i,onClose:a,onInstall:o,onToggleFullscreen:s}){let c=(0,G.useRef)(null);return(0,G.useEffect)(()=>{let e=document.activeElement instanceof HTMLElement?document.activeElement:null;c.current?.focus({preventScroll:!0});let t=e=>{e.key===`Escape`&&a()};return document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`keydown`,t),e?.focus({preventScroll:!0})}},[a]),(0,dj.createPortal)((0,K.jsx)(`div`,{className:`code-app-mode-backdrop`,"data-testid":`code-app-mode-dialog`,role:`presentation`,onPointerDown:a,children:(0,K.jsxs)(`section`,{className:`code-app-mode-dialog`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`code-app-mode-title`,onPointerDown:e=>e.stopPropagation(),children:[(0,K.jsx)(`button`,{ref:c,type:`button`,className:`code-app-mode-close`,"aria-label":i.cancel,onClick:a,children:`×`}),(0,K.jsxs)(`header`,{className:`code-app-mode-heading`,children:[(0,K.jsx)(`img`,{src:r(`/farming-2/app-icon-v2-180.png`),alt:``,"aria-hidden":`true`}),(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`h2`,{id:`code-app-mode-title`,children:i.appModeTitle}),(0,K.jsx)(`p`,{children:i.appModeDescription})]})]}),(0,K.jsxs)(`section`,{className:`code-app-mode-choice recommended`,children:[(0,K.jsx)(`span`,{className:`code-app-mode-recommended`,children:i.appModeRecommended}),(0,K.jsx)(`h3`,{children:i.appModeInstallTitle}),(0,K.jsx)(`p`,{children:i.appModeInstallDescription}),e&&(0,K.jsx)(`button`,{type:`button`,className:`code-app-mode-install`,"data-testid":`code-app-mode-install`,onClick:o,children:i.appModeInstallAction}),(0,K.jsxs)(`ol`,{className:`code-app-mode-install-steps`,children:[(0,K.jsx)(`li`,{children:i.appModeInstallStepOne}),(0,K.jsx)(`li`,{children:i.appModeInstallStepTwo})]})]}),t&&(0,K.jsxs)(`section`,{className:`code-app-mode-choice temporary`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`h3`,{children:i.appModeFullscreenTitle}),(0,K.jsx)(`p`,{children:i.appModeFullscreenDescription})]}),(0,K.jsx)(`button`,{type:`button`,"data-testid":`code-app-mode-fullscreen`,onClick:s,children:n?i.exitFocusMode:i.enterFocusMode})]})]})}),document.body)}var pj=`https://github.com/zhuwenzhuang/farming`;function mj({copy:e,version:t,onClose:n}){let i=(0,G.useRef)(null);return(0,G.useEffect)(()=>{let e=document.activeElement instanceof HTMLElement?document.activeElement:null;i.current?.focus({preventScroll:!0});let t=e=>{e.key===`Escape`&&n()};return document.addEventListener(`keydown`,t),()=>{document.removeEventListener(`keydown`,t),e?.focus({preventScroll:!0})}},[n]),(0,dj.createPortal)((0,K.jsx)(`div`,{className:`code-brand-backdrop`,"data-testid":`code-brand-dialog`,role:`presentation`,onPointerDown:n,children:(0,K.jsxs)(`section`,{className:`code-brand-dialog`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`code-brand-title`,onPointerDown:e=>e.stopPropagation(),children:[(0,K.jsx)(`button`,{ref:i,type:`button`,className:`code-brand-close`,"aria-label":e.cancel,onClick:n,children:`×`}),(0,K.jsx)(`img`,{className:`code-brand-logo`,src:r(`/farming-2/app-icon-v2-180.png`),alt:``,"aria-hidden":`true`}),(0,K.jsxs)(`div`,{className:`code-brand-heading`,children:[(0,K.jsx)(`h2`,{id:`code-brand-title`,children:`Farming Code`}),t&&(0,K.jsx)(`span`,{children:t})]}),(0,K.jsxs)(`div`,{className:`code-brand-story`,children:[(0,K.jsx)(`p`,{children:e.brandStoryOrigin}),(0,K.jsx)(`p`,{children:e.brandStoryPurpose})]}),(0,K.jsx)(`a`,{className:`code-brand-github`,href:pj,target:`_blank`,rel:`noreferrer`,children:e.brandGithub})]})}),document.body)}var hj=8,gj=26,_j=11,vj=10;function yj(){return typeof window>`u`?{width:220+hj*2,height:vj+hj*2}:{width:window.innerWidth,height:window.innerHeight}}function bj(e,t=0){return vj+e*gj+t*_j}function xj(e,t,n,r=yj(),i=220){let a=Math.max(hj,r.width-i-hj),o=Math.max(hj,r.height-n-hj);return{x:Math.max(hj,Math.min(e,a)),y:Math.max(hj,Math.min(t,o))}}function Sj(e,t,n=yj(),r=220){let i=e.right+hj,a=e.left-r-hj,o=i+r<=n.width-hj?i:a>=hj?a:xj(i,e.top,t,n,r).x;return{x:o,y:xj(o,e.top,t,n,r).y}}function Cj(e,t,n=yj(),r=220){let i=Math.max(hj,n.width-r-hj),a=Math.max(hj,Math.min(e.right-r,i)),o=e.bottom+6,s=Math.max(hj,n.height-t-hj),c=e.top-t-6;return{x:a,y:o<=s?o:Math.max(hj,Math.min(c,s))}}function wj(e){let t=Lk(e);return bj(t.itemCount,t.separatorCount)}var Tj=140,Ej=264,Dj=340,Oj=4,kj=null;function Aj(e){if(typeof e==`function`)return e;if(typeof e.default==`function`)return e.default;if(typeof e.qrcode==`function`)return e.qrcode;throw Error(`QR renderer failed to load`)}function jj(){return kj||=s(()=>import(`./qrcode-DV-_rjU8.js`).then(e=>Aj(e)),[]),kj}function Mj(e){let t=Math.max(0,Math.ceil(e/1e3)),n=Math.floor(t/60),r=t%60;return`${n}:${String(r).padStart(2,`0`)}`}function Nj(e,t){return!!(e&&e.expiresAt>t+1e3)}function Pj(e){return e.split(`-`).map(e=>e.trim()).filter(Boolean)}async function Fj(e){e?.code&&await fetch(r(`/api/share/qr-ticket/${encodeURIComponent(e.code)}`),{method:`DELETE`}).catch(()=>{})}function Ij(e,t,n){let r=e<7,i=t<7,a=t>=n-7,o=e>=n-7;return r&&i||r&&a||o&&i}function Lj(e,t,n,r){let i=Math.floor((n-r)/2),a=i+r;return e>=i&&e<a&&t>=i&&t<a}function Rj(e,t){return(e+t)%11==0?`#6d8a63`:(e*3+t)%17==0?`#9b7a35`:`#263327`}function zj(e,t,n){return(0,K.jsxs)(`g`,{children:[(0,K.jsx)(`rect`,{x:e,y:t,width:`7`,height:`7`,rx:`1.45`,fill:`#263327`}),(0,K.jsx)(`rect`,{x:e+1,y:t+1,width:`5`,height:`5`,rx:`1`,fill:`#fbfaf2`}),(0,K.jsx)(`rect`,{x:e+2,y:t+2,width:`3`,height:`3`,rx:`0.72`,fill:`#263327`}),(0,K.jsx)(`rect`,{x:e+3.05,y:t+3.05,width:`0.9`,height:`0.9`,rx:`0.32`,fill:`#d9a735`})]},n)}function Bj({value:e,badgeUrl:t,qrCodeFactory:n}){let r=(0,G.useId)().replace(/:/g,``),i=(0,G.useMemo)(()=>{let t=n(0,`H`);return t.addData(e),t.make(),t},[n,e]),a=i.getModuleCount(),o=a+Oj*2,s=Math.max(7,Math.min(11,Math.floor(a*.26)|1)),c=s+1.4,l=Oj+(a-c)/2,u=Oj+(a-c)/2,d=`farming-qr-badge-${r}`,f=[];for(let e=0;e<a;e+=1)for(let t=0;t<a;t+=1)i.isDark(e,t)&&(Ij(e,t,a)||Lj(e,t,a,s)||f.push((0,K.jsx)(`rect`,{x:Oj+t+.14,y:Oj+e+.14,width:`0.72`,height:`0.72`,rx:`0.24`,fill:Rj(e,t)},`${e}-${t}`)));return(0,K.jsxs)(`svg`,{className:`code-share-qr-svg`,viewBox:`0 0 ${o} ${o}`,role:`img`,"aria-label":`QR code`,shapeRendering:`geometricPrecision`,children:[(0,K.jsx)(`defs`,{children:(0,K.jsx)(`clipPath`,{id:d,children:(0,K.jsx)(`rect`,{x:l+.55,y:u+.55,width:c-1.1,height:c-1.1,rx:`2.1`})})}),(0,K.jsx)(`rect`,{x:`0`,y:`0`,width:o,height:o,rx:`4`,fill:`#fbfaf2`}),f,zj(Oj,Oj,`top-left`),zj(Oj+a-7,Oj,`top-right`),zj(Oj,Oj+a-7,`bottom-left`),(0,K.jsx)(`rect`,{x:l,y:u,width:c,height:c,rx:`2.6`,fill:`#fbfaf2`}),(0,K.jsx)(`rect`,{x:l+.35,y:u+.35,width:c-.7,height:c-.7,rx:`2.25`,fill:`#ffffff`}),(0,K.jsx)(`image`,{href:t,x:l+.55,y:u+.55,width:c-1.1,height:c-1.1,preserveAspectRatio:`xMidYMid slice`,clipPath:`url(#${d})`})]})}function Vj(){return(0,K.jsxs)(`svg`,{className:`code-share-icon`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:[(0,K.jsx)(`path`,{d:`M2.5 2.5h4v4h-4zM9.5 2.5h4v4h-4zM2.5 9.5h4v4h-4z`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.4`,strokeLinejoin:`round`}),(0,K.jsx)(`path`,{d:`M4 4h1v1H4zM11 4h1v1h-1zM4 11h1v1H4zM9.5 9.5h1.4v1.4H9.5zM12.1 9.5h1.4v1.4h-1.4zM9.5 12.1h1.4v1.4H9.5zM12.1 12.1h1.4v1.4h-1.4z`,fill:`currentColor`})]})}function Hj({copy:e,sidebarCollapsed:t,shareTarget:n}){let[i,a]=(0,G.useState)(!1),[o,s]=(0,G.useState)(!1),[c,l]=(0,G.useState)(null),[u,d]=(0,G.useState)(!1),[f,p]=(0,G.useState)(``),[m,h]=(0,G.useState)(!1),[g,_]=(0,G.useState)(()=>Date.now()),[v,y]=(0,G.useState)({x:0,y:0}),b=(0,G.useRef)(null),x=(0,G.useRef)(null),S=(0,G.useRef)(null),C=(0,G.useRef)(null),w=(0,G.useRef)(null),D=(0,G.useRef)(0),O=(0,G.useRef)(null),k=(0,G.useRef)(null),[A,j]=(0,G.useState)(!0),[M,N]=(0,G.useState)(null),P=r(`/farming-2/app-icon-v2-180.png`),ee=E(n);(0,G.useEffect)(()=>{O.current=c},[c]);let I=(0,G.useCallback)(()=>{w.current!==null&&(window.clearTimeout(w.current),w.current=null)},[]),te=(0,G.useCallback)(()=>{let e=x.current?.getBoundingClientRect();if(!e)return;let t=e.right+8,n=e.left-Ej-8;y({x:t+Ej+10<=window.innerWidth?t:Math.max(8,n),y:Math.max(8,Math.min(e.top-4,window.innerHeight-Dj-8))})},[]),L=(0,G.useCallback)(()=>{t||jj().then(e=>N(()=>e)).catch(()=>p(e.shareLinkFailed))},[e.shareLinkFailed,t]),R=(0,G.useCallback)(async(t=!1)=>{let i=O.current;if(!t&&Nj(i,Date.now()))return i;let a=D.current+1;D.current=a,d(!0),p(``);try{let t=T(n),i=await fetch(r(`/api/share/qr-ticket`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify(t?{target:t}:{})}),o=await i.json();if(!i.ok||!(`shortUrl`in o))throw Error(`error`in o&&o.error?o.error:e.shareLinkFailed);return a===D.current?(l(o),_(Date.now()),h(!1),o):(await Fj(o),null)}catch(t){return a===D.current&&p(t instanceof Error?t.message:e.shareLinkFailed),null}finally{a===D.current&&d(!1)}},[e.shareLinkFailed,n,ee]),ne=(0,G.useCallback)(()=>{I(),D.current+=1,a(!1),s(!1),p(``),h(!1),d(!1);let e=O.current;O.current=null,l(null),Fj(e)},[I]),z=(0,G.useCallback)((e,t=!1)=>{I(),te(),a(!0),s(e),L(),R(t)},[I,R,L,te]),B=(0,G.useCallback)(()=>{!i||o||(I(),w.current=window.setTimeout(()=>{w.current=null,ne()},Tj))},[I,ne,i,o]),re=(0,G.useCallback)(()=>{if(i&&o){ne();return}z(!0,!0)},[ne,i,z,o]),ie=(0,G.useCallback)(async()=>{let t=Nj(O.current,Date.now())?O.current:await R(!0);if(t){if(!await F(t.longUrl)){p(e.copyFailed);return}h(!0),k.current!==null&&window.clearTimeout(k.current),k.current=window.setTimeout(()=>{h(!1),k.current=null},1800)}},[e.copyFailed,R]);(0,G.useLayoutEffect)(()=>{if(i)return te(),window.addEventListener(`resize`,te),()=>window.removeEventListener(`resize`,te)},[i,te]),(0,G.useEffect)(()=>{if(!i)return;let e=window.setInterval(()=>_(Date.now()),1e3);return()=>window.clearInterval(e)},[i]),(0,G.useEffect)(()=>{let e=O.current;e&&(O.current=null,l(null),h(!1),Fj(e))},[ee]),(0,G.useLayoutEffect)(()=>{if(!i)return;let e=()=>{let e=S.current,t=C.current;!e||!t||j(t.scrollWidth<=e.clientWidth+1)};e();let t=typeof ResizeObserver<`u`?new ResizeObserver(e):null;return t&&S.current&&t.observe(S.current),window.addEventListener(`resize`,e),()=>{t?.disconnect(),window.removeEventListener(`resize`,e)}},[i,c?.tokenLabel,c?.shortPath]),(0,G.useEffect)(()=>{if(!i)return;let e=e=>{let t=e.target;t instanceof Node&&b.current?.contains(t)||ne()},t=e=>{e.key===`Escape`&&ne()};return document.addEventListener(`pointerdown`,e,!0),document.addEventListener(`keydown`,t,!0),()=>{document.removeEventListener(`pointerdown`,e,!0),document.removeEventListener(`keydown`,t,!0)}},[ne,i]),(0,G.useEffect)(()=>()=>{I(),k.current!==null&&window.clearTimeout(k.current),D.current+=1,Fj(O.current)},[I]);let ae=!!(c&&c.expiresAt<=g),V=c?Mj(c.expiresAt-g):``,oe=c?.tokenLabel||c?.shortPath||e.copyFullShareLink,se=Pj(oe),ce=A||se.length<=1?[oe]:se;return(0,K.jsxs)(`div`,{ref:b,className:`code-share-root`,onMouseEnter:L,onMouseLeave:B,onFocus:()=>{I(),L()},onBlur:e=>{!e.currentTarget.contains(e.relatedTarget)&&!o&&ne()},children:[(0,K.jsx)(`button`,{ref:x,type:`button`,className:`code-share-button`,"data-testid":`code-share-button`,"aria-label":e.sharePage,title:e.sharePage,"aria-haspopup":`dialog`,"aria-expanded":i,onClick:re,children:(0,K.jsx)(Vj,{})}),i&&(0,K.jsxs)(`div`,{className:`code-share-popover`,"data-testid":`code-share-popover`,role:`dialog`,"aria-label":e.scanToOpenOnPhone,style:{left:v.x,top:v.y},onMouseEnter:()=>{I()},onMouseLeave:B,onKeyDown:e=>{e.key===`Escape`&&(ne(),x.current?.focus())},children:[(0,K.jsxs)(`div`,{className:`code-share-qr-frame`,"data-expired":ae?`true`:`false`,children:[(0,K.jsx)(`div`,{className:`code-share-qr-canvas`,children:c&&!u&&M?(0,K.jsx)(Bj,{value:c.shortUrl,badgeUrl:P,qrCodeFactory:M}):(0,K.jsx)(`div`,{className:`code-share-qr-loading`,children:u?e.loading:e.shareLinkFailed})}),c&&(0,K.jsx)(`div`,{className:`code-share-countdown`,children:ae?e.shareLinkExpired:V}),ae&&(0,K.jsx)(`button`,{type:`button`,className:`code-share-refresh`,onClick:()=>void R(!0),children:e.refreshShareLink})]}),(0,K.jsxs)(`button`,{type:`button`,className:`code-share-copy-token`,"data-testid":`code-share-copy-link`,disabled:!c&&u,onClick:()=>void ie(),children:[(0,K.jsxs)(`span`,{ref:S,className:`code-share-token ${A?`single-line`:``}`,"aria-label":oe,children:[(0,K.jsx)(`span`,{ref:C,className:`code-share-token-measure`,"aria-hidden":`true`,children:oe}),ce.map((e,t)=>(0,K.jsx)(`span`,{className:`code-share-token-line`,children:e},`${t}-${e}`))]}),(0,K.jsx)(`span`,{className:`code-share-copy-action`,children:m?e.copiedShareLink:e.copyFullShareLink})]}),f&&(0,K.jsx)(`div`,{className:`code-share-error`,role:`status`,children:f})]})]})}function Uj(e,t){return e&&t.some(t=>!t.isMain&&t.id===e)?e:t.find(e=>!e.isMain)?.id??null}function Wj(e){return e&&(e.projectWorkspace||e.cwd)||``}function Gj(e,t,n={},r=[],i=e,a=[],o=[]){let s=pD(e,t),c=new Map(s.map(e=>[e.workspace,e]));r.forEach(e=>{let t=e.sourceAgentId?i.find(t=>t.id===e.sourceAgentId):i.find(t=>t.id===e.agentId),n=e.workspaceRoot||(t?ZE(t):``);if(!n||n===`/`)return;let r=c.get(n);if(r){r.hasOpenFile=!0,!r.gitWorktree&&t?.gitWorktree?.workspace&&(r.gitWorktree=t.gitWorktree);return}let a={id:n,name:QE(n),workspace:n,agents:[],agentSessions:[],hasMain:!1,hasProjectAgent:!1,hasAgentSession:!1,hasOpenFile:!0,gitWorktree:t?.gitWorktree??null};s.push(a),c.set(n,a)}),a.forEach(e=>{if(!e||e===`/`||c.get(e))return;let t={id:e,name:QE(e),workspace:e,agents:[],agentSessions:[],hasMain:!1,hasProjectAgent:!1,hasAgentSession:!1,gitWorktree:null};s.push(t),c.set(e,t)});let l=new Map(o.map((e,t)=>[e,t]));return s.map((e,t)=>{let r=e.workspace?n[e.workspace]?.trim():``,i=r&&!e.hasMain?{...e,name:r}:e,a=l.get(e.workspace);return{project:{...i,pinned:a!==void 0},pinIndex:a,sourceIndex:t}}).sort((e,t)=>e.pinIndex!==void 0&&t.pinIndex!==void 0?e.pinIndex-t.pinIndex:e.pinIndex===void 0?t.pinIndex===void 0?e.sourceIndex-t.sourceIndex:1:-1).map(e=>e.project)}function Kj(e,t,n,r=new Set,i=new Set){return t?rk(e.map(e=>{let n=[e.name,e.workspace].some(e=>e.toLowerCase().includes(t)),a=n?e.agents:e.agents.filter(e=>i.has(e.id)||C(e).toLowerCase().includes(t)),o=n?e.agentSessions:e.agentSessions.filter(e=>r.has(aD(e))||e.title.toLowerCase().includes(t));return a.length>0||o.length>0||e.workspace&&n?{...e,agents:a,agentSessions:o}:null}).filter(e=>!!e),n,!0):e}function qj(e,t,n){return e.flatMap(e=>t.has(e.id)&&!n?[]:[...e.agents.map(e=>({kind:`agent`,id:e.id})),...e.agentSessions.map(e=>({kind:`agent-session`,provider:e.provider,id:e.id,...e.providerHomeId?{providerHomeId:e.providerHomeId}:{}}))])}var Jj=5,Yj=5,Xj=`__project_agent_drop_end__`;function Zj(){return typeof window>`u`?!1:navigator.standalone===!0||window.matchMedia(`(display-mode: standalone)`).matches}function Qj(e){let t=e?.trim().toLowerCase()||``;if(t===`claude-code`)return`claude`;if([`codex`,`claude`,`opencode`,`qoder`,`bash`,`zsh`].includes(t))return t}function $j(e){return Qj(e.providerSessionProvider)||Qj(e.command.trim().split(/\s+/).find(e=>e!==`env`&&!/^[A-Za-z_][A-Za-z0-9_]*=/.test(e))?.split(`/`).pop())}function eM(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M3.75 3C3.33579 3 3 3.33579 3 3.75V5.5C3 5.77614 2.77614 6 2.5 6C2.22386 6 2 5.77614 2 5.5V3.75C2 2.7835 2.7835 2 3.75 2H5.5C5.77614 2 6 2.22386 6 2.5C6 2.77614 5.77614 3 5.5 3H3.75ZM10 2.5C10 2.22386 10.2239 2 10.5 2H12.25C13.2165 2 14 2.7835 14 3.75V5.5C14 5.77614 13.7761 6 13.5 6C13.2239 6 13 5.77614 13 5.5V3.75C13 3.33579 12.6642 3 12.25 3H10.5C10.2239 3 10 2.77614 10 2.5ZM2.5 10C2.77614 10 3 10.2239 3 10.5V12.25C3 12.6642 3.33579 13 3.75 13H5.5C5.77614 13 6 13.2239 6 13.5C6 13.7761 5.77614 14 5.5 14H3.75C2.7835 14 2 13.2165 2 12.25V10.5C2 10.2239 2.22386 10 2.5 10ZM13.5 10C13.7761 10 14 10.2239 14 10.5V12.25C14 13.2165 13.2165 14 12.25 14H10.5C10.2239 14 10 13.7761 10 13.5C10 13.2239 10.2239 13 10.5 13H12.25C12.6642 13 13 12.6642 13 12.25V10.5C13 10.2239 13.2239 10 13.5 10Z`})})}function tM(){return(0,K.jsxs)(`svg`,{width:`12`,height:`12`,viewBox:`0 0 16 16`,fill:`none`,stroke:`currentColor`,strokeWidth:`1.4`,strokeLinecap:`round`,strokeLinejoin:`round`,"aria-hidden":`true`,children:[(0,K.jsx)(`circle`,{cx:`4`,cy:`3`,r:`1.5`}),(0,K.jsx)(`circle`,{cx:`4`,cy:`13`,r:`1.5`}),(0,K.jsx)(`circle`,{cx:`12`,cy:`5`,r:`1.5`}),(0,K.jsx)(`path`,{d:`M4 4.5v7M5.5 8h2.25A4.25 4.25 0 0 0 12 3.75`})]})}function nM(e){let t=e.trim().replace(/^v/i,``);if(!t)return``;let n=/^(\d+\.\d+\.\d+)-(\d+)-g[0-9a-f]+(?:-dirty)?$/i.exec(t);if(n)return`${n[1]}-${n[2]}`;let r=/^(\d+\.\d+\.\d+)-dirty$/i.exec(t);return r?`${r[1]}-1`:t.replace(/-dirty$/i,``)}var rM=(0,G.lazy)(()=>s(()=>import(`./ProjectFilesSection-DE7Nb9Jk.js`).then(e=>({default:e.ProjectFilesSection})),__vite__mapDeps([18,1,5,6,19,20,8,15,16])));function iM({sidebarCollapsed:e,activeView:t,searchOpen:n,displayedProjects:i,collapsedProjectIds:a,normalizedSearch:o,hasProjectListItems:s,hasDisplayedProjectListItems:c,activeTerminalId:l,selectedSearchAgentId:u,selectedSearchSessionHandle:f,claimedAgentSessionKeyByAgentId:p,agentShortcutKeys:m,keyboardShortcutsEnabled:h,now:g,mainAgent:_,usageSummary:v,shareTarget:y,agentLaunchOptions:b,agentCreationWorkspace:x,openWorkspaceFile:S,openWorkspaceFiles:C,fileRevealRequest:w,fileSearchFocusRequest:T,projectListRef:E,canLoadMoreAgentSessions:D,onLoadMoreAgentSessions:O,onNewAgent:k,onStartAgent:A,onToggleSidebar:j,onOpenSearch:M,onOpenWorkspaceView:N,onOpenMainAgent:P,onRestartMainAgent:F,onProjectListKeyDown:ee,onToggleProject:I,onToggleProjectSessions:te,onMountProject:L,onOpenProjectContextMenu:R,onOpenProjectKeyboardMenu:ne,onOpenAgent:z,onUpdateAgentFlags:B,onReorderAgent:re,onOpenAgentContextMenu:ie,onOpenAgentKeyboardMenu:ae,onResumeAgentSession:V,onOpenAgentSessionContextMenu:oe,onOpenAgentSessionKeyboardMenu:se,onOpenProjectFile:ce,onSelectOpenWorkspaceFile:le,onCloseOpenWorkspaceFile:ue,onMoveWorkspaceEntries:de,onDeleteWorkspaceEntries:fe,onRefreshProjectOpenFiles:pe,onOpenOptionsMenu:me,copy:he}){let[H,_e]=(0,G.useState)(null),ve=(0,G.useRef)(null),ye=(0,G.useRef)(!1),xe=(0,G.useRef)(new Map),[Se,Ce]=(0,G.useState)(!0),[Te,Ee]=(0,G.useState)(!1),[De,Oe]=(0,G.useState)(!1),U=(0,G.useCallback)(()=>Oe(!1),[]),[ke,Ae]=(0,G.useState)(!1),[je,Ne]=(0,G.useState)(!1),[Pe,Fe]=(0,G.useState)(Zj),[Ie,Re]=(0,G.useState)(!1),[ze,Ve]=(0,G.useState)(null),[He,Ue]=(0,G.useState)(!1),We=(0,G.useCallback)(e=>{D&&e.scrollHeight-e.scrollTop-e.clientHeight<=240&&O()},[D,O]),Ge=(0,G.useCallback)(()=>{ve.current!==null&&(window.clearTimeout(ve.current),ve.current=null)},[]),Ke=(0,G.useCallback)(()=>{Ge(),_e(null)},[Ge]),qe=(0,G.useCallback)(()=>{ye.current=!1,Ke()},[Ke]),Je=(0,G.useCallback)((e,t,n=!1)=>{Ge();let i=e.currentTarget,a=ye.current?0:n?450:1500;ve.current=window.setTimeout(()=>{if(ve.current=null,!i.matches(`:hover`))return;let e=i.getBoundingClientRect(),n=e.right+10,a=Math.min(320,window.innerWidth-n-12);if(a<200)return;let o=Math.max(8,Math.min(e.top-4,window.innerHeight-152)),s=t.workspaceRootId?xe.current.get(t.workspaceRootId):void 0,c=s&&s.expiresAt>Date.now()?s.branch:``;ye.current=!0,_e({...t,x:n,y:o,width:a,branch:c}),!(!t.workspaceRootId||c)&&fetch(r(`/api/files/branch?rootId=${encodeURIComponent(t.workspaceRootId)}`)).then(e=>e.ok?e.json():null).then(e=>{let n=typeof e?.branch==`string`?e.branch.trim():``;xe.current.set(t.workspaceRootId,{branch:n,expiresAt:Date.now()+3e4}),_e(e=>e?.key===t.key?{...e,branch:n}:e)}).catch(()=>{xe.current.set(t.workspaceRootId,{branch:``,expiresAt:Date.now()+3e4})})},a)},[Ge]);(0,G.useEffect)(()=>()=>Ge(),[Ge]),(0,G.useEffect)(()=>{Ne(!!(document.fullscreenEnabled&&document.documentElement.requestFullscreen));let e=()=>{Ae(!!document.fullscreenElement)};return document.addEventListener(`fullscreenchange`,e),e(),()=>{document.removeEventListener(`fullscreenchange`,e)}},[]),(0,G.useEffect)(()=>{let e=window.matchMedia(`(display-mode: standalone)`),t=()=>{let e=Zj();Fe(e),e&&Re(!1)},n=e=>{e.preventDefault(),Ve(e)};return e.addEventListener(`change`,t),window.addEventListener(`beforeinstallprompt`,n),t(),()=>{e.removeEventListener(`change`,t),window.removeEventListener(`beforeinstallprompt`,n)}},[]);let Ye=(0,G.useCallback)(()=>{if(document.fullscreenElement){document.exitFullscreen().catch(()=>{});return}document.documentElement.requestFullscreen({navigationUI:`hide`}).catch(()=>{})},[]),Xe=(0,G.useCallback)(()=>{let e=ze;e&&e.prompt().then(()=>e.userChoice).then(e=>{Ve(null),e.outcome===`accepted`&&Re(!1)}).catch(()=>Ve(null))},[ze]),Ze=(0,G.useCallback)(()=>{Re(!1),Ye()},[Ye]),Qe=i.flatMap(e=>[...e.agents.filter(e=>e.pinned).map(e=>({kind:`agent`,agent:e})),...e.agentSessions.filter(e=>e.pinned).map(e=>({kind:`agent-session`,session:e}))]).sort((e,t)=>e.kind===`agent`&&t.kind===`agent`?(e.agent.pinnedOrder??0)-(t.agent.pinnedOrder??0)||(e.agent.startedAt??0)-(t.agent.startedAt??0):e.kind===t.kind?e.kind===`agent-session`&&t.kind===`agent-session`?dD(t.session)-dD(e.session):0:e.kind===`agent`?-1:1),$e=i.filter(e=>e.agents.some(e=>!e.pinned||!e.isMain)||e.agentSessions.some(e=>!e.pinned)||(e.hiddenAgentSessionCount??0)>0||e.hasOpenFile||!!e.workspace),et=i.flatMap(e=>[...e.agents.filter(e=>!e.isMain).map(t=>({agent:t,projectName:e.name}))]),tt=C.filter(e=>Le(e.agentId)),nt=S&&Le(S.agentId)?S:null,rt=w?.agentId===Be,it=tt.length>0||rt;(0,G.useEffect)(()=>{it||Ue(!1)},[it]),(0,G.useEffect)(()=>{rt&&Ue(!1)},[rt]);let at=nM(`2.2.12`),ot=at?`v${at}`:``,st=e;return(0,K.jsxs)(`aside`,{className:`code-sidebar ${e?`collapsed`:``}`,"data-testid":`code-sidebar`,onMouseLeave:qe,children:[(0,K.jsx)(`div`,{className:`code-nav`,children:(0,K.jsxs)(`div`,{className:`code-nav-top-row`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-nav-item primary`,"data-testid":`code-new-agent`,onClick:e=>k(x,void 0,e.currentTarget),children:[(0,K.jsx)(`span`,{className:`code-nav-icon`,children:(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,"aria-hidden":`true`,children:(0,K.jsx)(`path`,{d:`M14.452 1.548C14.087 1.183 13.608 1 13.13 1C12.652 1 12.173 1.183 11.808 1.548L6.979 6.377C6.697 6.659 6.498 7.011 6.401 7.398L6.027 8.896C5.883 9.473 6.329 10.002 6.886 10.002C6.958 10.002 7.031 9.993 7.106 9.975L8.604 9.601C8.99 9.504 9.343 9.305 9.625 9.023L14.454 4.194C15.184 3.464 15.184 2.28 14.454 1.549L14.452 1.548ZM13.745 3.485L8.916 8.314C8.763 8.467 8.57 8.576 8.36 8.629L7.04 8.962L7.371 7.64C7.424 7.43 7.532 7.237 7.686 7.084L12.516 2.255C12.68 2.091 12.899 2 13.131 2C13.363 2 13.582 2.091 13.746 2.255C14.085 2.594 14.085 3.146 13.746 3.486L13.745 3.485ZM13 7.768L14 6.768V11.5C14 12.878 12.879 14 11.5 14H4.5C3.121 14 2 12.878 2 11.5V4.5C2 3.122 3.121 2 4.5 2H9.236L8.236 3H4.5C3.673 3 3 3.673 3 4.5V11.5C3 12.327 3.673 13 4.5 13H11.5C12.327 13 13 12.327 13 11.5V7.768Z`})})}),(0,K.jsx)(`span`,{children:he.newAgent}),h&&(0,K.jsx)(`kbd`,{children:`N`})]}),(0,K.jsx)(Hj,{copy:he,sidebarCollapsed:e,shareTarget:y}),!Pe&&!e&&(0,K.jsx)(`button`,{type:`button`,className:`code-sidebar-focus-toggle ${ke?`active`:``}`,"data-testid":`code-sidebar-focus-toggle`,"aria-label":he.appModeOpen,title:he.appModeOpen,"aria-haspopup":`dialog`,"aria-expanded":Ie,onClick:()=>Re(!0),children:(0,K.jsx)(`span`,{className:`code-sidebar-focus-icon`,children:(0,K.jsx)(eM,{})})}),!e&&(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`button`,{type:`button`,className:`code-sidebar-search-toggle ${t===`search`||n?`active`:``}`,"data-testid":`code-nav-search`,"aria-label":he.search,title:he.search,"aria-pressed":t===`search`||n,onClick:M,children:(0,K.jsx)(`span`,{className:`code-sidebar-search-icon`,"aria-hidden":`true`,children:(0,K.jsx)(Me,{})})}),(0,K.jsx)(`button`,{type:`button`,className:`code-sidebar-history-toggle ${t===`history`?`active`:``}`,"data-testid":`code-nav-history`,"aria-label":he.history,title:he.history,"aria-pressed":t===`history`,onClick:()=>N(`history`),children:(0,K.jsx)(`span`,{className:`code-sidebar-history-icon`,"aria-hidden":`true`,children:(0,K.jsx)(xN,{})})})]}),(0,K.jsx)(`button`,{type:`button`,className:`code-sidebar-toggle`,"data-testid":`code-sidebar-toggle`,"aria-label":e?he.expandSidebar:he.collapseSidebar,title:e?he.expandSidebar:he.collapseSidebar,onClick:j,children:(0,K.jsx)(`span`,{className:`code-sidebar-toggle-icon ${e?`collapsed`:`expanded`}`,"aria-hidden":`true`,children:e?(0,K.jsx)(W,{}):(0,K.jsx)(we,{})})})]})}),e&&et.length>0&&(0,K.jsx)(eN,{items:et,activeTerminalId:l,now:g,onOpenAgent:z,onShowPreview:Je,onHidePreview:Ke,copy:he}),(0,K.jsxs)(`div`,{className:`code-project-list`,"data-testid":`code-project-list`,ref:E,tabIndex:0,onKeyDown:ee,onScroll:e=>We(e.currentTarget),"aria-label":he.projectsAndAgents,children:[!s&&(0,K.jsx)(`div`,{className:`code-empty-project`,children:he.noAgentsYet}),s&&!c&&(0,K.jsx)(`div`,{className:`code-empty-project`,"data-testid":`code-empty-search`,children:he.noMatchingProjectsOrAgents}),Qe.length>0&&(0,K.jsx)(iN,{items:Qe,collapsed:Te,compressed:st,activeTerminalId:l,selectedSearchAgentId:u,selectedSearchSessionHandle:f,claimedAgentSessionKeyByAgentId:p,agentShortcutKeys:m,keyboardShortcutsEnabled:h,now:g,onOpenAgent:z,onUpdateAgentFlags:B,onReorderAgent:re,onOpenAgentContextMenu:ie,onOpenAgentKeyboardMenu:ae,onResumeAgentSession:V,onOpenAgentSessionContextMenu:oe,onOpenAgentSessionKeyboardMenu:se,onShowAgentPreview:Je,onHideAgentPreview:Ke,onToggleCollapsed:()=>Ee(e=>!e),copy:he}),it&&(0,K.jsxs)(`section`,{className:`code-project-group code-root-files-group`,"data-testid":`code-root-files-group`,children:[(0,K.jsx)(`div`,{className:`code-project-row code-root-files-row`,children:(0,K.jsxs)(`button`,{type:`button`,className:`code-project-title`,"data-testid":`code-root-files-title`,"aria-expanded":!He,onClick:()=>Ue(e=>!e),children:[(0,K.jsx)(`span`,{className:`code-folder-icon ${He?`collapsed`:`expanded`}`,"aria-hidden":`true`,children:He?(0,K.jsx)(W,{}):(0,K.jsx)(be,{})}),(0,K.jsx)(`span`,{children:`/`})]})}),!He&&(0,K.jsx)(`div`,{className:`code-project-expanded`,children:(0,K.jsx)(G.Suspense,{fallback:null,children:(0,K.jsx)(rM,{projectId:`__farming_global_files_project__`,projectWorkspace:`/`,agentId:`wroot_global`,agentLaunchOptions:[],activeFilePath:nt?.file.path,openFiles:tt.map(e=>({agentId:e.agentId,workspaceRoot:e.workspaceRoot,key:d(e),path:e.file.path,dirty:e.dirty,externalChanged:e.externalChanged})),revealRequest:w?.agentId===`wroot_global`?w:void 0,focusSearchRequest:T?.agentId===`wroot_global`?T:void 0,onOpenFile:ce,onSelectOpenFile:le,onCloseOpenFile:ue,onMoveEntries:de,onDeleteEntries:fe,onRefreshOpenFiles:pe,readOnly:!0,copy:he})})})]}),$e.map(e=>(0,K.jsx)(cN,{project:e,collapsed:a.has(e.id)&&!o,forceAgentsExpanded:!!o,compactAgents:st,activeTerminalId:l,selectedSearchAgentId:u,selectedSearchSessionHandle:f,claimedAgentSessionKeyByAgentId:p,agentShortcutKeys:m,keyboardShortcutsEnabled:h,now:g,openWorkspaceFile:S,openWorkspaceFiles:C,agentLaunchOptions:b,fileRevealRequest:w,fileSearchFocusRequest:T,onToggleProject:I,onToggleProjectSessions:te,onMountProject:L,onNewAgent:k,onStartAgent:A,onOpenProjectContextMenu:R,onOpenProjectKeyboardMenu:ne,onOpenAgent:z,onUpdateAgentFlags:B,onReorderAgent:re,onOpenAgentContextMenu:ie,onOpenAgentKeyboardMenu:ae,onResumeAgentSession:V,onOpenAgentSessionContextMenu:oe,onOpenAgentSessionKeyboardMenu:se,onShowAgentPreview:Je,onHideAgentPreview:Ke,onOpenProjectFile:ce,onSelectOpenWorkspaceFile:le,onCloseOpenWorkspaceFile:ue,onMoveWorkspaceEntries:de,onDeleteWorkspaceEntries:fe,onRefreshProjectOpenFiles:pe,copy:he},e.id))]}),(0,K.jsxs)(`div`,{className:`code-sidebar-footer`,children:[(0,K.jsxs)(`div`,{className:`code-product-row`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-product-mark`,"data-testid":`code-product-mark`,title:`Farming Code`,"aria-label":`Farming Code`,onClick:()=>Oe(!0),children:[(0,K.jsx)(`img`,{className:`code-product-logo`,src:r(`/farming-2/app-icon-v2-180.png`),alt:``,"aria-hidden":`true`}),(0,K.jsxs)(`span`,{className:`code-product-mark-copy`,children:[(0,K.jsxs)(`span`,{className:`code-product-mark-main-slot`,children:[(0,K.jsx)(`span`,{className:`code-product-mark-main code-product-mark-main-full`,children:`Farming Code`}),(0,K.jsx)(`span`,{className:`code-product-mark-main code-product-mark-main-short`,"aria-hidden":`true`,children:`Farming`})]}),ot&&(0,K.jsx)(`span`,{className:`code-product-mark-badge`,children:ot})]})]}),(0,K.jsx)(`button`,{type:`button`,className:`code-sidebar-options`,"data-testid":`code-sidebar-options`,"aria-label":he.openSettings,title:he.openSettings,onClick:me,children:(0,K.jsx)(ge,{})})]}),!e&&(0,K.jsx)(AM,{collapsed:Se,mainAgent:_,now:g,usageSummary:v,onToggleCollapsed:()=>Ce(e=>!e),onOpenMainAgent:P,onRestartMainAgent:F})]}),H&&(0,K.jsx)(gN,{preview:H,now:g}),De&&(0,K.jsx)(mj,{copy:he,version:ot,onClose:U}),Ie&&(0,K.jsx)(fj,{canInstall:!!ze,canFullscreen:je,fullscreenActive:ke,copy:he,onClose:()=>Re(!1),onInstall:Xe,onToggleFullscreen:Ze})]})}function aM(e){let t=Number(e);return!Number.isFinite(t)||t<=0?`Window`:t===10080?`Weekly`:t%1440==0?`${t/1440}d`:t%60==0?`${t/60}h`:`${t}m`}function oM(e){let t=Number(e);return Number.isFinite(t)?`${Math.round(t)}%`:`--`}function sM(e){let t=Number(e);if(!Number.isFinite(t))return`-- left`;let n=Math.max(0,Math.min(100,100-t));return`${Math.round(n)}% left`}function cM(e){let t=e.forecast?.remainingTokens,n=t==null?null:Number(t);return typeof n==`number`&&Number.isFinite(n)&&n>=0?`${fM(Math.round(n))} tok left`:sM(e.usedPercent)}function lM(e){return cM(e)}function uM(e,t){let n=[e],r=oM(t.usedPercent),i=cM(t);return r!==`--`&&n.push(`${r} used`),i!==`-- left`&&n.push(i),n.filter(Boolean).join(` / `)}function dM(e,t){let n=Number(e);if(!Number.isFinite(n)||n<=0)return null;let r=Math.max(0,Math.round((n-t)/6e4));return r===0?`reset now`:r>=1440?`reset ${Math.floor(r/1440)}d ${Math.floor(r%1440/60)}h`:r>=60?`reset ${Math.floor(r/60)}h ${r%60}m`:`reset ${r}m`}function fM(e){if(e>=1e9){let t=e/1e9;return`${t>=10?Math.round(t):Math.round(t*10)/10}B`}if(e>=1e6){let t=e/1e6;return`${t>=10?Math.round(t):Math.round(t*10)/10}M`}if(e>=1e3){let t=e/1e3;return`${t>=10?Math.round(t):Math.round(t*10)/10}k`}return`${e}`}function pM(e,t=!1){let n=Number(e);if(!Number.isFinite(n))return`-- tok/min`;let r=n<10?Math.round(n*10)/10:Math.round(n);return`${t?`~`:``}${fM(r)} tok/min`}function mM(e){let t=e.auth?.status||``;return e.auth?.available?/logged in/i.test(t)?`logged in`:t||`available`:`offline`}function hM(e){if(e.tokenUsage.available===!1)return!1;let t=Number(e.tokenUsage.eventCount),n=Number(e.tokenUsage.totalTokens),r=Number.isFinite(t)&&t>0||Number.isFinite(n)&&n>0;return e.auth.available||r}function gM(e){return e?.providers.filter(hM)??[]}function _M(e){let t=gM(e);return t.length?t.reduce((e,t)=>{let n=Number(t.tokenUsage.tokensPerMinute);return e+(Number.isFinite(n)?n:0)},0):null}function vM(e){let t=e.forecast?.remainingPercent;if(typeof t==`number`&&Number.isFinite(t))return Math.max(0,Math.min(100,t));let n=Number(e.usedPercent);return Number.isFinite(n)?Math.max(0,Math.min(100,100-n)):null}function yM(e){let t=Number(e.windowMinutes);return Number.isFinite(t)&&t>=10020?0:Number.isFinite(t)&&t>=285&&t<=315?1:2}function bM(e){return[e.quota.primary,e.quota.secondary].filter(e=>!!e).map(e=>({label:aM(e.windowMinutes),limit:e,remaining:vM(e),exhaustedAt:typeof e.forecast?.projectedExhaustedAt==`number`&&Number.isFinite(e.forecast.projectedExhaustedAt)?e.forecast.projectedExhaustedAt:null})).filter(e=>e.remaining!==null).sort((e,t)=>yM(e.limit)-yM(t.limit))}function xM(e){let t=Number(e.tokenUsage.tokensPerMinute);return Number.isFinite(t)&&t>0}function SM(e){let t=gM(e);return t.length?t.filter(e=>xM(e)&&e.quota.available).map(e=>{let t=bM(e),n=t.filter(e=>e.remaining!==null&&e.remaining<50);return n.length?{provider:e,limits:t,earliestExhaustedAt:n.reduce((e,t)=>t.exhaustedAt===null?e:e===null?t.exhaustedAt:Math.min(e,t.exhaustedAt),null),lowestRemaining:n.reduce((e,t)=>Math.min(e,t.remaining??100),100)}:null}).filter(e=>!!e).sort((e,t)=>e.earliestExhaustedAt!==null&&t.earliestExhaustedAt!==null?e.earliestExhaustedAt-t.earliestExhaustedAt:e.earliestExhaustedAt===null?t.earliestExhaustedAt===null?e.lowestRemaining-t.lowestRemaining:1:-1)[0]??null:null}function CM(e,t){let n=SM(e);if(!n)return null;let r=[n.provider.providerName];return n.limits.forEach(e=>{r.push(`${e.label} ${Math.round(e.remaining??0)}%`);let n=dM(e.limit.resetsAt,t);n&&r.push(n)}),r.join(` · `)}function wM(e,t){let n=[],r=_M(e);return r!==null&&n.push(pM(r)),t&&n.push(`CPU ${t.cpu}% / MEM ${t.memory.percentage}%`),n.join(` · `)||`5m`}function TM(e,t,n){return CM(e,n)||wM(e,t)}function EM(e){return e.status===`pending`?`starting`:e.status===`dead`?`offline`:e.status}function DM(e,t){return e??t?.systemStats??null}function OM({usageSummary:e,now:t}){let n=TM(e,DM(ut(),e),t);return(0,K.jsx)(`span`,{className:`code-usage-summary`,"data-testid":`code-usage-summary`,title:n,children:n})}function kM({usageSummary:e}){let t=DM(ut(),e);return t?(0,K.jsxs)(`div`,{className:`code-usage-row`,children:[(0,K.jsx)(`span`,{children:`System`}),(0,K.jsxs)(`strong`,{children:[`CPU `,t.cpu,`% / MEM `,t.memory.percentage,`%`]})]}):null}function AM(e){let t=dt();return!e.usageSummary&&!e.mainAgent&&!t?null:(0,K.jsx)(QM,{...e})}function jM(e){return new Date(e).toLocaleTimeString([],{hour:`2-digit`,minute:`2-digit`})}function MM(e){return`${String(new Date(e).getHours()).padStart(2,`0`)}:00`}function NM(e){return Math.round(e).toLocaleString(`en-US`)}function PM(e){let t=e.map(e=>Math.max(0,Number(e)||0)).filter(e=>e>0).sort((e,t)=>e-t);if(!t.length)return[];let n=t[0],r=t[t.length-1];return n===r?[.2,.4,.6,.8].map(e=>r*e):[.2,.4,.6,.8].map(e=>{let n=(t.length-1)*e,r=Math.floor(n),i=Math.ceil(n),a=t[r];return a+(t[i]-a)*(n-r)})}function FM(e,t){let n=Math.max(0,Number(e)||0);return n<=0?0:Math.max(1,Math.min(5,1+t.filter(e=>n>e).length))}function IM(e){let t=e.timeline,n=Array.isArray(t?.points)?t.points:[];return n.length>0&&n.every((e,t)=>Number.isFinite(Number(e.startedAt))&&Number.isFinite(Number(e.endedAt))&&Number(e.endedAt)>Number(e.startedAt)&&Number.isFinite(Number(e.totalTokens))&&Number(e.totalTokens)>=0&&(t===0||Number(e.startedAt)>=Number(n[t-1].startedAt)))?n:null}function LM(e){let t=/^(\d{4})-(\d{2})-(\d{2})$/.exec(e);if(!t)return null;let n=Number(t[1]),r=Number(t[2]),i=Number(t[3]),a=new Date(n,r-1,i,12,0,0,0);return a.getFullYear()!==n||a.getMonth()!==r-1||a.getDate()!==i?null:a}function RM(e){let t=Array.isArray(e.daily?.points)?e.daily.points:[];return t.length>0&&t.every((e,n)=>!!LM(e.date)&&Number.isFinite(Number(e.totalTokens))&&Number(e.totalTokens)>=0&&(n===0||e.date>t[n-1].date))?t.slice(-364):null}function zM({usageSummary:e,points:t,onInspect:n}){let r=e.timeline,i=t.reduce((e,t)=>e+Number(t.totalTokens),0),a=aM(Number(r.windowMs)/6e4).toLowerCase(),o=PM(t.map(e=>e.totalTokens)),s=[0,.25,.5,.75,1].map(e=>r.startAt+(r.endAt-r.startAt)*e);return(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`div`,{className:`code-usage-heatmap`,"data-testid":`code-usage-heatmap`,role:`img`,"aria-label":`Token activity over the last ${a}, ${fM(i)} tokens`,title:`Local token activity · last ${a}`,children:t.map((e,t)=>{let r=Number(e.totalTokens),i=`${jM(e.startedAt)}–${jM(e.endedAt)}`,a=`${i} · ${NM(r)} tokens`;return(0,K.jsx)(`span`,{className:`code-usage-heatmap-cell`,"data-level":FM(r,o),"data-start":e.startedAt,title:a,"aria-label":a,onMouseEnter:()=>n({label:i,tokens:r})},`${e.startedAt}-${t}`)})}),(0,K.jsx)(`div`,{className:`code-usage-time-axis`,"data-testid":`code-usage-time-axis`,"aria-hidden":`true`,children:s.map((e,t)=>(0,K.jsx)(`span`,{children:MM(e)},`${e}-${t}`))})]})}function BM({points:e,onInspect:t,inspection:n=null,showDayHighlight:r=!1}){let i=(LM(e[0].date).getDay()+6)%7,a=Math.max(1,Math.ceil((i+e.length)/7)),o=a*7-i-e.length,s=PM(e.map(e=>e.totalTokens)),c=e.filter(e=>e.totalTokens>0).length,l=Math.max(0,e.length-7),u=e.slice(l).reduce((e,t)=>e+t.totalTokens,0),d=e.reduce((e,t)=>!e||t.totalTokens>e.totalTokens?t:e,null),f=d&&d.totalTokens>0?d:null,p=n?e.find(e=>e.date===n.label)??null:null,m=e[e.length-1]??null,h=p??m,g=!!(h&&h.date===f?.date);return(0,K.jsxs)(K.Fragment,{children:[(0,K.jsxs)(`div`,{className:`code-usage-activity-heading`,children:[(0,K.jsx)(`span`,{children:`52w · daily`}),r&&h?(0,K.jsxs)(`div`,{className:`code-usage-detail-day-highlight`,"data-state":p?`selected`:`today`,"data-testid":`code-usage-detail-day-highlight`,children:[(0,K.jsxs)(`span`,{children:[p&&g?`Top · `:``,UM(h.date)]}),(0,K.jsx)(`strong`,{children:fM(h.totalTokens)}),(0,K.jsx)(`small`,{children:`tokens`})]}):(0,K.jsxs)(`span`,{children:[`7d `,fM(u)]})]}),(0,K.jsxs)(`div`,{className:`code-usage-daily-heatmap`,"data-testid":`code-usage-daily-heatmap`,role:`img`,"aria-label":`Daily token activity over 52 weeks, ${c} active days`,style:{gridTemplateColumns:`repeat(${a}, minmax(2px, 1fr))`},children:[Array.from({length:i},(e,t)=>(0,K.jsx)(`span`,{className:`code-usage-daily-spacer`,"aria-hidden":`true`},`leading-${t}`)),e.map((e,n)=>{let i=Number(e.totalTokens),a=e.date===f?.date,o=i>1e9,c=a?`Token king`:o?`Over 1B tokens`:``,u=`${e.date} · ${NM(i)} tokens${c?` · ${c}`:``}`,d=e.date===p?.date,m=()=>t({label:e.date,tokens:i});return(0,K.jsx)(`span`,{className:`code-usage-heatmap-cell code-usage-daily-heatmap-cell`,"data-date":e.date,"data-level":FM(i,s),"data-peak":a?`true`:void 0,"data-billion":o?`true`:void 0,"data-shape":r?a?`crown`:o?`flame`:void 0:void 0,"data-recent":n>=l?`true`:void 0,"data-selected":d?`true`:void 0,title:u,"aria-label":u,role:r?`button`:void 0,tabIndex:r?0:void 0,onClick:r?m:void 0,onFocus:r?m:void 0,onKeyDown:r?e=>{(e.key===`Enter`||e.key===` `)&&(e.preventDefault(),m())}:void 0,onMouseEnter:r?void 0:m,onPointerMove:r?m:void 0},e.date)}),Array.from({length:o},(e,t)=>(0,K.jsx)(`span`,{className:`code-usage-daily-spacer`,"aria-hidden":`true`},`trailing-${t}`))]})]})}function VM(e){return e.reduce((e,t)=>e+Number(t.totalTokens),0)}function HM(e,t){if(t<=0)return e>0?`New`:`0%`;let n=Math.round((e-t)/t*100);return`${n>0?`+`:``}${n}%`}function UM(e){let t=LM(e);return t?t.toLocaleDateString([],{month:`short`,day:`numeric`}):e}function WM(e,t){if(!e||typeof e!=`object`)return!1;let n=e;return n.date===t&&Array.isArray(n.hours)&&n.hours.length===24&&n.hours.every((e,t)=>e.hour===t&&Number.isFinite(Number(e.totalTokens))&&e.totalTokens>=0&&!!(e.agents&&typeof e.agents==`object`))&&Array.isArray(n.agents)&&n.agents.every(e=>!!(e.key&&e.label)&&Number.isFinite(Number(e.totalTokens))&&e.totalTokens>=0)}function GM(e,t){let[n,i]=(0,G.useState)(0),[a,o]=(0,G.useState)({date:``,detail:null,error:``,loading:!1});return(0,G.useEffect)(()=>{if(!e){o({date:``,detail:null,error:``,loading:!1});return}let n=new AbortController;o({date:e,detail:null,error:``,loading:!0});let i=new URLSearchParams({date:e});return t&&i.set(`live`,`1`),fetch(r(`/api/usage/day?${i.toString()}`),{signal:n.signal}).then(async t=>{let n=await t.json();if(!t.ok)throw Error(n.error||`Failed to load day activity`);if(!WM(n.detail,e))throw Error(`Day activity response was incomplete`);return n.detail}).then(t=>{n.signal.aborted||o({date:e,detail:t,error:``,loading:!1})}).catch(t=>{n.signal.aborted||o({date:e,detail:null,error:t instanceof Error?t.message:`Failed to load day activity`,loading:!1})}),()=>n.abort()},[e,t,n]),{...a,retry:()=>i(e=>e+1)}}var KM=[`#245f1d`,`#3b782f`,`#548f47`,`#70a766`,`#8dbc86`,`#aacda5`,`#486d42`,`#789473`];function qM(e){let t=0;for(let n of e)t=(t<<5)-t+n.charCodeAt(0)|0;return KM[Math.abs(t)%KM.length]}function JM({date:e,detail:t,error:n,loading:r,onRetry:i}){let[a,o]=(0,G.useState)(null);if((0,G.useEffect)(()=>o(null),[e]),r)return(0,K.jsx)(`div`,{className:`code-usage-day-breakdown loading`,"data-testid":`code-usage-day-histogram-loading`,children:(0,K.jsx)(`div`,{className:`code-usage-day-breakdown-status`,children:`Loading hourly Agent activity…`})});if(n)return(0,K.jsxs)(`div`,{className:`code-usage-day-breakdown error`,"data-testid":`code-usage-day-histogram-error`,children:[(0,K.jsx)(`span`,{children:n}),(0,K.jsx)(`button`,{type:`button`,onClick:i,children:`Retry`})]});if(!t)return null;let s=Math.max(0,...t.hours.map(e=>e.totalTokens)),l=Array.from(t.agents.reduce((e,t)=>{let n=e.get(t.provider);return n?n.totalTokens+=t.totalTokens:e.set(t.provider,{key:t.provider,label:c(t.provider),totalTokens:t.totalTokens}),e},new Map).values()).sort((e,t)=>t.totalTokens-e.totalTokens||e.label.localeCompare(t.label)),u=a?`${a.label} · ${fM(a.tokens)} tokens`:`${UM(t.date)} · ${fM(t.total.totalTokens)} tokens`;return(0,K.jsxs)(`div`,{className:`code-usage-day-breakdown`,"data-testid":`code-usage-day-histogram`,onMouseLeave:()=>o(null),children:[(0,K.jsxs)(`div`,{className:`code-usage-day-breakdown-heading`,children:[(0,K.jsx)(`span`,{children:`Hourly by Agent type`}),(0,K.jsx)(`strong`,{"data-testid":`code-usage-day-histogram-readout`,children:u})]}),(0,K.jsxs)(`div`,{className:`code-usage-day-histogram-chart`,role:`img`,"aria-label":`Hourly token activity for ${t.date}, split across ${l.length} Agent types`,children:[(0,K.jsxs)(`div`,{className:`code-usage-day-histogram-scale`,"aria-hidden":`true`,children:[(0,K.jsx)(`span`,{children:fM(s)}),(0,K.jsx)(`span`,{children:`0`})]}),(0,K.jsxs)(`div`,{className:`code-usage-day-histogram-plot`,children:[(0,K.jsx)(`div`,{className:`code-usage-day-histogram-bars`,children:t.hours.map(e=>{let n=s>0?e.totalTokens/s*100:0;return(0,K.jsx)(`div`,{className:`code-usage-day-histogram-column`,"data-hour":e.hour,title:`${e.label}:00 · ${NM(e.totalTokens)} tokens`,children:(0,K.jsx)(`div`,{className:`code-usage-day-histogram-stack`,style:{height:`${n}%`},children:l.map(n=>{let r=t.agents.reduce((t,r)=>r.provider===n.key?t+(Number(e.agents[r.key]?.totalTokens)||0):t,0);if(r<=0||e.totalTokens<=0)return null;let i=`${e.label}:00 · ${n.label}`,a=`${i} · ${NM(r)} tokens`;return(0,K.jsx)(`span`,{className:`code-usage-day-histogram-segment`,"data-agent-type":n.key,style:{backgroundColor:qM(n.key),height:`${r/e.totalTokens*100}%`},title:a,onMouseEnter:()=>o({label:i,tokens:r})},n.key)})})},e.hour)})}),(0,K.jsxs)(`div`,{className:`code-usage-day-histogram-axis`,"aria-hidden":`true`,children:[(0,K.jsx)(`span`,{children:`00:00`}),(0,K.jsx)(`span`,{children:`06:00`}),(0,K.jsx)(`span`,{children:`12:00`}),(0,K.jsx)(`span`,{children:`18:00`}),(0,K.jsx)(`span`,{children:`23:00`})]})]})]}),l.length>0&&(0,K.jsx)(`div`,{className:`code-usage-day-agent-legend`,"data-testid":`code-usage-day-agent-legend`,children:l.map(e=>(0,K.jsxs)(`span`,{title:`${e.label} · ${NM(e.totalTokens)} tokens`,children:[(0,K.jsx)(`i`,{style:{backgroundColor:qM(e.key)},"aria-hidden":`true`}),(0,K.jsx)(`b`,{children:e.label}),(0,K.jsx)(`small`,{children:fM(e.totalTokens)})]},e.key))})]})}function YM({label:e,value:t,detail:n}){return(0,K.jsxs)(`div`,{className:`code-usage-detail-stat`,children:[(0,K.jsx)(`span`,{children:e}),(0,K.jsx)(`strong`,{children:t}),n&&(0,K.jsx)(`small`,{children:n})]})}function XM({initialRange:e,usageSummary:t,onClose:n}){let[r,i]=(0,G.useState)(e),[a,o]=(0,G.useState)(null),s=IM(t),c=RM(t),l=c?.reduce((e,t)=>!e||t.totalTokens>e.totalTokens?t:e,null)??null,u=c?.[c.length-1]??null,d=c?.find(e=>e.date===a?.label)??null,f=r===`year`&&(d??u)?.date||``,p=GM(f,!!(f&&c&&f===c[c.length-1]?.date));if((0,G.useEffect)(()=>{let e=e=>{e.key===`Escape`&&n()};return window.addEventListener(`keydown`,e),()=>window.removeEventListener(`keydown`,e)},[n]),typeof document>`u`)return null;let m=s?.reduce((e,t)=>e+t.totalTokens,0)??0,h=s?.filter(e=>e.totalTokens>0).length??0,g=s?.reduce((e,t)=>!e||t.totalTokens>e.totalTokens?t:e,null)??null,_=c?.slice(-7)??[],v=c?.slice(-14,-7)??[],y=VM(_),b=VM(v),x=c?VM(c):0,S=c?.filter(e=>e.totalTokens>0).length??0,C=_.reduce((e,t)=>e+(Number(t.cacheReadTokens)||0)+(Number(t.cacheWriteTokens)||0),0),w=y>0?Math.min(100,Math.round(C/y*100)):0,T=a?`${a.label} · ${NM(a.tokens)} tokens`:`Last 24 hours · ${NM(m)} tokens`,E=a?`${a.label} · ${NM(a.tokens)} tokens`:`Last 52 weeks · ${NM(x)} tokens`;return(0,dj.createPortal)((0,K.jsx)(`div`,{className:`code-usage-detail-backdrop`,"data-testid":`code-usage-detail-backdrop`,onMouseDown:e=>{e.target===e.currentTarget&&n()},children:(0,K.jsxs)(`section`,{className:`code-usage-detail-dialog`,"data-testid":`code-usage-detail-dialog`,role:`dialog`,"aria-modal":`true`,"aria-labelledby":`code-usage-detail-title`,children:[(0,K.jsxs)(`header`,{className:`code-usage-detail-header`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`span`,{className:`code-usage-detail-eyebrow`,children:`Local provider tokens`}),(0,K.jsx)(`h2`,{id:`code-usage-detail-title`,children:`Usage activity`})]}),(0,K.jsx)(`button`,{type:`button`,className:`code-usage-detail-close`,"aria-label":`Close usage activity`,onClick:n,children:(0,K.jsx)(Se,{})})]}),(0,K.jsxs)(`div`,{className:`code-usage-detail-tabs`,role:`tablist`,"aria-label":`Usage activity range`,children:[(0,K.jsx)(`button`,{type:`button`,role:`tab`,"aria-selected":r===`day`,"data-testid":`code-usage-detail-day-tab`,onClick:()=>{o(null),i(`day`)},children:`1 Day`}),(0,K.jsx)(`button`,{type:`button`,role:`tab`,"aria-selected":r===`year`,"data-testid":`code-usage-detail-year-tab`,onClick:()=>{o(null),i(`year`)},children:`52 Weeks`})]}),(0,K.jsxs)(`div`,{className:`code-usage-detail-chart`,onBlur:e=>{e.currentTarget.contains(e.relatedTarget)||o(null)},onMouseLeave:()=>o(null),children:[r===`day`&&s&&(0,K.jsxs)(K.Fragment,{children:[(0,K.jsxs)(`div`,{className:`code-usage-detail-chart-heading`,children:[(0,K.jsx)(`span`,{children:`Hourly activity`}),(0,K.jsxs)(`strong`,{children:[fM(m),` tokens`]})]}),(0,K.jsx)(zM,{usageSummary:t,points:s,onInspect:o})]}),r===`year`&&c&&(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(BM,{points:c,inspection:a,showDayHighlight:!0,onInspect:o}),(0,K.jsx)(JM,{date:f,detail:p.date===f?p.detail:null,error:p.date===f?p.error:``,loading:p.date===f?p.loading:!0,onRetry:p.retry})]}),(0,K.jsx)(`div`,{className:`code-usage-detail-readout`,"data-testid":`code-usage-detail-readout`,children:r===`day`?T:E})]}),(0,K.jsx)(`div`,{className:`code-usage-detail-analysis`,"data-testid":`code-usage-detail-analysis`,children:r===`day`?(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(YM,{label:`24-hour tokens`,value:fM(m)}),(0,K.jsx)(YM,{label:`Active hours`,value:`${h}`,detail:`hours with token activity`}),(0,K.jsx)(YM,{label:`Peak hour`,value:g?MM(g.startedAt):`--`,detail:g?`${fM(g.totalTokens)} tokens`:`no activity`})]}):(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(YM,{label:`Last 7 days`,value:fM(y)}),(0,K.jsx)(YM,{label:`Previous 7 days`,value:fM(b),detail:`${HM(y,b)} change`}),(0,K.jsx)(YM,{label:`Peak day`,value:l?UM(l.date):`--`,detail:l?`${fM(l.totalTokens)} tokens`:`no activity`}),(0,K.jsx)(YM,{label:`Active days`,value:`${S}`,detail:`within 52 weeks`}),(0,K.jsx)(YM,{label:`7-day cache share`,value:`${w}%`,detail:`read and write tokens`}),(0,K.jsx)(YM,{label:`52-week tokens`,value:fM(x)})]})})]})}),document.body)}function ZM({usageSummary:e}){let t=IM(e),n=RM(e),[r,i]=(0,G.useState)(null),[a,o]=(0,G.useState)(null);if(!t&&!n)return null;let s=t?.reduce((e,t)=>e+t.totalTokens,0)??0,c=aM(Number(e.timeline?.windowMs)/6e4).toLowerCase(),l=n?.slice(-7).reduce((e,t)=>e+t.totalTokens,0)??0,u=n?.reduce((e,t)=>e+t.totalTokens,0)??0,d=r?`${r.label} · ${NM(r.tokens)} tokens`:`${t?`${c} ${fM(s)}`:``}${t&&n?` · `:``}${n?`7d ${fM(l)} · 52w ${fM(u)}`:``}`;return(0,K.jsxs)(`div`,{className:`code-usage-activity`,onMouseLeave:()=>i(null),children:[t&&(0,K.jsxs)(`button`,{type:`button`,className:`code-usage-chart-trigger`,"data-testid":`code-usage-open-day`,title:`Open 1-day usage details`,onClick:()=>o(`day`),children:[(0,K.jsxs)(`div`,{className:`code-usage-activity-heading`,children:[(0,K.jsxs)(`span`,{children:[c,` · activity`]}),(0,K.jsxs)(`span`,{children:[aM(e.timeline.bucketMs/6e4).toLowerCase(),` buckets`]})]}),(0,K.jsx)(zM,{usageSummary:e,points:t,onInspect:i})]}),n&&(0,K.jsx)(`button`,{type:`button`,className:`code-usage-chart-trigger`,"data-testid":`code-usage-open-year`,title:`Open 52-week usage details`,onClick:()=>o(`year`),children:(0,K.jsx)(BM,{points:n,onInspect:i})}),(0,K.jsx)(`div`,{className:`code-usage-activity-readout`,"data-testid":`code-usage-activity-readout`,title:d,children:d}),a&&(0,K.jsx)(XM,{initialRange:a,usageSummary:e,onClose:()=>o(null)})]})}function QM({collapsed:e,mainAgent:t,now:n,usageSummary:r,onToggleCollapsed:i,onOpenMainAgent:a,onRestartMainAgent:o}){let s=gM(r),c=_M(r),[l,u]=(0,G.useState)(!1);return(0,K.jsxs)(`div`,{className:`code-usage-panel ${e?`collapsed`:``}`,"data-testid":`code-usage-panel`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-usage-header`,"data-testid":`code-usage-toggle`,"aria-expanded":!e,title:`Provider local token usage refreshes periodically.`,onClick:i,children:[(0,K.jsxs)(`span`,{className:`code-usage-title`,children:[(0,K.jsx)(`span`,{className:`code-usage-chevron ${e?`collapsed`:`expanded`}`,"aria-hidden":`true`,children:e?(0,K.jsx)(W,{}):(0,K.jsx)(be,{})}),(0,K.jsx)(`span`,{children:`Usage`})]}),(0,K.jsx)(`span`,{className:`code-usage-header-meta`,children:e?(0,K.jsx)(OM,{usageSummary:r,now:n}):(0,K.jsx)(`span`,{className:`code-usage-summary`,"data-testid":`code-usage-summary`,title:`5-minute rate · hourly and daily activity`,children:`5m rate · activity`})})]}),!e&&(0,K.jsxs)(K.Fragment,{children:[s.length>0&&r?.timeline&&(0,K.jsx)(ZM,{usageSummary:r}),t&&(0,K.jsxs)(`div`,{className:`code-usage-main-agent-block`,children:[(0,K.jsxs)(`div`,{className:`code-usage-row code-usage-main-agent`,title:`${ee(t)} · ${t.command} · ${t.cwd}`,"data-testid":`code-main-agent-usage-row`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-usage-main-agent-open`,"data-testid":`code-main-agent-open`,onClick:a,children:[(0,K.jsx)(`span`,{children:`Main Agent`}),(0,K.jsx)(`strong`,{children:EM(t)})]}),(0,K.jsx)(`button`,{type:`button`,className:`code-usage-main-agent-restart`,"data-testid":`code-main-agent-restart`,"aria-expanded":l,onClick:()=>u(e=>!e),children:`Restart`})]}),l&&(0,K.jsx)(`div`,{className:`code-main-agent-restart-menu`,"data-testid":`code-main-agent-restart-menu`,role:`menu`,children:[[`codex`,`Codex`],[`claude`,`Claude Code`],[`opencode`,`OpenCode`],[`qoder`,`Qoder`],[`bash`,`bash`],[`zsh`,`zsh`]].map(([e,t])=>(0,K.jsx)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-main-agent-restart-${e}`,onClick:()=>{u(!1),o(e)},children:t},e))})]}),s.map(e=>(0,K.jsx)($M,{provider:e},e.provider)),s.length>1&&c!==null&&(0,K.jsxs)(`div`,{className:`code-usage-row`,title:`Sum of local token usage reported by providers.`,children:[(0,K.jsx)(`span`,{children:`Total local tokens`}),(0,K.jsx)(`strong`,{children:pM(c)})]}),(0,K.jsx)(kM,{usageSummary:r})]})]})}function $M({provider:e}){let t=e.quota.primary??null,n=e.quota.secondary??null,r=e.quota.available?e.quota.source:e.quota.reason||e.quota.source;return(0,K.jsxs)(`div`,{className:`code-usage-provider`,children:[(0,K.jsxs)(`div`,{className:`code-usage-row`,children:[(0,K.jsx)(`span`,{children:e.providerName}),(0,K.jsx)(`strong`,{title:e.auth?.status,children:mM(e)})]}),e.quota.available&&(0,K.jsxs)(K.Fragment,{children:[t&&(0,K.jsxs)(`div`,{className:`code-usage-row code-usage-subrow`,title:uM(r,t),children:[(0,K.jsx)(`span`,{children:aM(t.windowMinutes)}),(0,K.jsx)(`strong`,{children:lM(t)})]}),n&&(0,K.jsxs)(`div`,{className:`code-usage-row code-usage-subrow`,title:uM(r,n),children:[(0,K.jsx)(`span`,{children:aM(n.windowMinutes)}),(0,K.jsx)(`strong`,{children:lM(n)})]})]}),(0,K.jsxs)(`div`,{className:`code-usage-row code-usage-subrow`,title:e.tokenUsage.source,children:[(0,K.jsx)(`span`,{children:`Local tokens`}),(0,K.jsx)(`strong`,{children:pM(e.tokenUsage.tokensPerMinute)})]})]})}function eN({items:e,activeTerminalId:t,now:n,onOpenAgent:r,onShowPreview:i,onHidePreview:a,copy:o}){return(0,K.jsx)(`div`,{className:`code-agent-rail`,"data-testid":`code-agent-rail`,"aria-label":o.projectsAndAgents,children:e.map((e,o)=>(0,K.jsx)(tN,{item:e,index:o,activeTerminalId:t,now:n,onOpenAgent:r,onShowPreview:i,onHidePreview:a},Rk({kind:`agent`,agent:e.agent})))})}function tN({item:e,index:t,activeTerminalId:n,now:r,onOpenAgent:i,onShowPreview:a,onHidePreview:o}){let s=Yk({kind:`agent`,agent:e.agent},r),c=e.agent.id===n,l=[s.title,s.commandTitle,e.projectName].filter(Boolean).join(` · `);return(0,K.jsxs)(`button`,{type:`button`,className:`code-agent-rail-button ${c?`active`:``} ${s.unread?`unread`:``}`,"data-testid":`code-agent-rail-item`,"data-agent-id":e.agent.id,"aria-label":l,onClick:()=>{i(e.agent.id)},onMouseEnter:t=>a(t,mN(e.agent,s,e.projectName),!0),onMouseLeave:o,children:[(0,K.jsx)(`span`,{className:`code-agent-rail-label`,children:t+1}),s.statusIndicatorVisible&&(0,K.jsx)(`span`,{className:`code-agent-rail-status ${s.lifecycleStatus} ${s.turnActive?`turn-active`:``}`,"aria-hidden":`true`}),s.unread&&(0,K.jsx)(`span`,{className:`code-agent-rail-unread`,"aria-hidden":`true`})]})}function nN({agents:e,activeTerminalId:t,selectedSearchAgentId:n,claimedAgentSessionKeyByAgentId:r,now:i,onOpenAgent:a,onOpenAgentContextMenu:o,onOpenAgentKeyboardMenu:s,onShowPreview:c,onHidePreview:l}){return(0,K.jsx)(`div`,{className:`code-project-agent-strip`,"data-testid":`code-project-agent-strip`,"aria-label":`Project agents`,children:e.map((e,u)=>{let d=Yk({kind:`agent`,agent:e},i),f=e.id===t,p=e.id===n,m=d.rowTitle||d.title;return(0,K.jsxs)(`button`,{type:`button`,className:`code-project-agent-compact ${f?`active`:``} ${p?`search-selected`:``} ${d.unread?`unread`:``}`,"data-testid":`code-project-agent-compact`,"data-agent-id":e.id,"aria-label":m,onClick:()=>a(e.id),onMouseEnter:t=>c(t,mN(e,d),!0),onMouseLeave:l,onContextMenu:t=>o(t,e.id),onKeyDown:t=>{s(t,e.id),!t.defaultPrevented&&(t.key===`Enter`||t.key===` `)&&(t.preventDefault(),a(e.id))},children:[(0,K.jsx)(`span`,{className:`code-project-agent-compact-label`,children:u+1}),d.statusIndicatorVisible&&(0,K.jsx)(`span`,{className:`code-project-agent-compact-status ${d.lifecycleStatus} ${d.turnActive?`turn-active`:``}`,"aria-hidden":`true`}),d.unread&&(0,K.jsx)(`span`,{className:`code-project-agent-compact-unread`,"aria-hidden":`true`})]},Rk({kind:`agent`,agent:e,claimedSessionKey:r.get(e.id)}))})})}function rN({items:e,activeTerminalId:t,selectedSearchAgentId:n,selectedSearchSessionHandle:r,claimedAgentSessionKeyByAgentId:i,now:a,onOpenAgent:o,onOpenAgentContextMenu:s,onOpenAgentKeyboardMenu:c,onResumeAgentSession:l,onOpenAgentSessionContextMenu:u,onOpenAgentSessionKeyboardMenu:d,onShowPreview:f,onHidePreview:p}){return(0,K.jsx)(`div`,{className:`code-project-agent-strip code-pinned-agent-strip`,"data-testid":`code-pinned-agent-strip`,"aria-label":`Pinned agents`,children:e.map((e,m)=>{let h=e.kind===`agent`?Yk({kind:`agent`,agent:e.agent},a):Yk({kind:`history`,session:e.session,fallbackTitle:e.session.providerName||e.session.provider||`Agent`},a),g=e.kind===`agent`?e.agent:null,_=e.kind===`agent`?null:e.session,v=_?aD(_):null,y=g?g.id===t:!1,b=g?g.id===n:v===r,x=h.rowTitle||h.title;return(0,K.jsxs)(`button`,{type:`button`,className:`code-project-agent-compact ${y?`active`:``} ${b?`search-selected`:``} ${h.unread?`unread`:``}`,"data-testid":`code-pinned-agent-compact`,"data-agent-id":g?.id,"data-session-id":v??void 0,"aria-label":x,onClick:()=>{if(g){o(g.id);return}_&&l(_.provider,_.id,_.providerHomeId)},onMouseEnter:e=>f(e,g?mN(g,h):hN(_,h),!0),onMouseLeave:p,onContextMenu:e=>{if(g){s(e,g.id);return}_&&u(e,_.provider,aD(_))},onKeyDown:e=>{g?c(e,g.id):_&&d(e,_.provider,aD(_)),!e.defaultPrevented&&(e.key===`Enter`||e.key===` `)&&(e.preventDefault(),g?o(g.id):_&&l(_.provider,_.id,_.providerHomeId))},children:[(0,K.jsx)(`span`,{className:`code-project-agent-compact-label`,children:m+1}),h.statusIndicatorVisible&&(0,K.jsx)(`span`,{className:`code-project-agent-compact-status ${h.lifecycleStatus} ${h.turnActive?`turn-active`:``}`,"aria-hidden":`true`}),h.unread&&(0,K.jsx)(`span`,{className:`code-project-agent-compact-unread`,"aria-hidden":`true`})]},e.kind===`agent`?Rk({kind:`agent`,agent:e.agent,claimedSessionKey:i.get(e.agent.id)}):Rk({kind:`history`,session:e.session}))})})}function iN({items:e,collapsed:t,compressed:n,activeTerminalId:r,selectedSearchAgentId:i,selectedSearchSessionHandle:a,claimedAgentSessionKeyByAgentId:o,agentShortcutKeys:s,keyboardShortcutsEnabled:c,now:l,onOpenAgent:u,onUpdateAgentFlags:d,onReorderAgent:f,onOpenAgentContextMenu:p,onOpenAgentKeyboardMenu:m,onResumeAgentSession:h,onOpenAgentSessionContextMenu:g,onOpenAgentSessionKeyboardMenu:_,onShowAgentPreview:v,onHideAgentPreview:y,onToggleCollapsed:b,copy:x}){let S=e.flatMap(e=>e.kind===`agent`?[e.agent]:[]),[C,w]=(0,G.useState)(null),T=(e,t)=>{e.dataTransfer.effectAllowed=`move`,e.dataTransfer.setData(`text/plain`,t),y(),w({agentId:t,targetAgentId:``,position:`before`})},E=(e,t)=>{if(!C||C.agentId===t)return;e.preventDefault(),e.dataTransfer.dropEffect=`move`;let n=e.currentTarget.getBoundingClientRect(),r=e.clientY<n.top+n.height/2?`before`:`after`;C.targetAgentId===t&&C.position===r||w(e=>e?{...e,targetAgentId:t,position:r}:null)},D=()=>w(null),O=(e,t)=>{if(e.preventDefault(),!C||C.agentId===t){D();return}let n=S.filter(e=>e.id!==C.agentId),r=n.findIndex(e=>e.id===t);if(r<0){D();return}let i=C.position===`before`?r:r+1;f(C.agentId,i>0?n[i-1]?.id??``:``,i<n.length?n[i]?.id??``:``),D()};return(0,K.jsxs)(`section`,{className:`code-pinned-section ${t?`collapsed`:``}`,"data-testid":`code-pinned-section`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-pinned-title`,"data-testid":`code-pinned-title`,"aria-expanded":!t,onClick:b,children:[(0,K.jsx)(`span`,{className:`code-folder-icon ${t?`collapsed`:`expanded`}`,"aria-hidden":`true`,children:t?(0,K.jsx)(W,{}):(0,K.jsx)(be,{})}),(0,K.jsx)(`span`,{children:x.pinned})]}),!t&&(0,K.jsx)(`div`,{className:`code-agent-list code-pinned-list`,children:n?(0,K.jsx)(rN,{items:e,activeTerminalId:r,selectedSearchAgentId:i,selectedSearchSessionHandle:a,claimedAgentSessionKeyByAgentId:o,now:l,onOpenAgent:u,onOpenAgentContextMenu:p,onOpenAgentKeyboardMenu:m,onResumeAgentSession:h,onOpenAgentSessionContextMenu:g,onOpenAgentSessionKeyboardMenu:_,onShowPreview:v,onHidePreview:y}):e.map(e=>{if(e.kind===`agent`){let t=e.agent;return(0,K.jsx)(wN,{agent:t,shortcutHint:c?s.get(t.id):void 0,active:t.id===r,searchSelected:t.id===i,now:l,onOpenAgent:u,onUpdateAgentFlags:d,reorderable:!0,dragging:C?.agentId===t.id,dropPosition:C?.targetAgentId===t.id?C.position:void 0,onAgentDragStart:T,onAgentDragEnd:D,onAgentDragOver:E,onAgentDrop:O,onOpenAgentContextMenu:p,onOpenAgentKeyboardMenu:m,onShowPreview:v,onHidePreview:y,copy:x},Rk({kind:`agent`,agent:t,claimedSessionKey:o.get(t.id)}))}return(0,K.jsx)(wN,{session:e.session,searchSelected:aD(e.session)===a,now:l,onResume:h,onOpenSessionContextMenu:g,onOpenSessionKeyboardMenu:_,onShowPreview:v,onHidePreview:y,copy:x},Rk({kind:`history`,session:e.session}))})})]})}function aN(e,t){return e.branch?e.branch:e.detached?`${t.worktreeDetached}@${e.head.slice(0,7)}`:e.bare?`bare`:e.head.slice(0,7)}function oN({agentId:e,anchorRef:t,copy:n,fallback:r,point:i,onClose:a,onMountProject:o}){let s=(0,G.useRef)(null),c=(0,G.useRef)(null),[l,u]=(0,G.useState)(r),[d,f]=(0,G.useState)(!1),[p,m]=(0,G.useState)(``),h=(0,G.useCallback)(()=>{c.current?.abort();let t=new AbortController;c.current=t,f(!0),m(``),ce(e,{signal:t.signal}).then(e=>{t.signal.aborted||u(e)}).catch(e=>{t.signal.aborted||e?.name===`AbortError`||m(n.worktreeLoadFailed)}).finally(()=>{t.signal.aborted||f(!1)})},[e,n.worktreeLoadFailed]);return(0,G.useEffect)(()=>(h(),()=>c.current?.abort()),[h]),(0,G.useEffect)(()=>{let e=e=>{let n=e.target;n&&(s.current?.contains(n)||t.current?.contains(n))||a()},n=e=>{e.key===`Escape`&&(e.preventDefault(),a(),t.current?.focus())};return window.addEventListener(`pointerdown`,e,!0),window.addEventListener(`keydown`,n,!0),()=>{window.removeEventListener(`pointerdown`,e,!0),window.removeEventListener(`keydown`,n,!0)}},[t,a]),(0,K.jsxs)(`div`,{ref:s,className:`code-worktree-popover`,"data-testid":`code-project-worktree-menu`,role:`dialog`,"aria-label":n.worktrees,style:{left:i.x,top:i.y},children:[(0,K.jsxs)(`div`,{className:`code-worktree-popover-header`,children:[(0,K.jsx)(`span`,{children:n.worktrees}),(0,K.jsx)(`span`,{className:`code-worktree-popover-count`,children:l.items.length}),(0,K.jsx)(`button`,{type:`button`,className:d?`loading`:``,disabled:d,onClick:h,children:n.refresh})]}),p&&(0,K.jsx)(`div`,{className:`code-worktree-popover-status error`,children:p}),!p&&!l.isGitRepo&&(0,K.jsx)(`div`,{className:`code-worktree-popover-status`,children:n.gitHistoryNotRepository}),(0,K.jsx)(`div`,{className:`code-worktree-list`,children:l.items.map(e=>(0,K.jsxs)(`button`,{type:`button`,className:`code-worktree-row ${e.current?`current`:``}`,"data-current":e.current?`true`:void 0,"data-main":e.main?`true`:void 0,title:e.workspace,onClick:()=>{o(e.workspace),a()},children:[(0,K.jsx)(`span`,{className:`code-worktree-row-marker`,"aria-hidden":`true`}),(0,K.jsxs)(`span`,{className:`code-worktree-row-content`,children:[(0,K.jsxs)(`span`,{className:`code-worktree-row-heading`,children:[(0,K.jsx)(`strong`,{children:aN(e,n)}),(0,K.jsxs)(`span`,{className:`code-worktree-row-badges`,children:[e.current&&(0,K.jsx)(`span`,{children:n.worktreeCurrent}),e.main&&(0,K.jsx)(`span`,{children:n.worktreeMain}),e.locked&&(0,K.jsx)(`span`,{title:e.lockReason,children:n.worktreeLocked}),e.prunable&&(0,K.jsx)(`span`,{title:e.pruneReason,children:n.worktreePrunable})]}),e.head&&(0,K.jsx)(`code`,{children:e.head.slice(0,7)})]}),(0,K.jsx)(`span`,{className:`code-worktree-row-path`,children:e.workspace})]})]},e.workspace))})]})}function sN(e){return e?.workspace?{isGitRepo:!0,commonDir:e.commonDir,currentWorkspace:e.workspace,mainWorkspace:e.mainWorkspace,items:Array.isArray(e.worktrees)?e.worktrees:[]}:null}function cN({project:e,collapsed:t,forceAgentsExpanded:n,compactAgents:r,activeTerminalId:i,selectedSearchAgentId:a,selectedSearchSessionHandle:o,claimedAgentSessionKeyByAgentId:s,agentShortcutKeys:l,keyboardShortcutsEnabled:u,now:f,openWorkspaceFile:p,openWorkspaceFiles:h,agentLaunchOptions:g,fileRevealRequest:_,fileSearchFocusRequest:v,onToggleProject:y,onToggleProjectSessions:b,onMountProject:x,onNewAgent:S,onStartAgent:C,onOpenProjectContextMenu:w,onOpenProjectKeyboardMenu:T,onOpenAgent:E,onUpdateAgentFlags:D,onReorderAgent:O,onOpenAgentContextMenu:k,onOpenAgentKeyboardMenu:A,onResumeAgentSession:j,onOpenAgentSessionContextMenu:M,onOpenAgentSessionKeyboardMenu:N,onShowAgentPreview:P,onHideAgentPreview:F,onOpenProjectFile:ee,onSelectOpenWorkspaceFile:I,onCloseOpenWorkspaceFile:te,onMoveWorkspaceEntries:L,onDeleteWorkspaceEntries:R,onRefreshProjectOpenFiles:ne,copy:z}){let B=(0,G.useRef)(null),re=(0,G.useRef)(null),ie=(0,G.useRef)(null),ae=(0,G.useRef)(null),V=(0,G.useRef)(null),se=(0,G.useRef)(null),[le,ue]=(0,G.useState)(null),[de,fe]=(0,G.useState)(null),[pe,me]=(0,G.useState)(()=>sN(e.gitWorktree)),[he,H]=(0,G.useState)(!1),[ge,_e]=(0,G.useState)(!1),[ve,ye]=(0,G.useState)(!1),[xe,Se]=(0,G.useState)(null),[Ce,we]=(0,G.useState)(()=>Uj(null,e.agents)),Te=Uj(Ce,e.agents),Ee=e.agents.find(e=>!e.isMain&&e.id===Te)??null,De=e.workspace?Fn(e.workspace):``,Oe=e.id!==`__farming_main_agent__`&&!!De,U=new Set([De,...e.agents.filter(e=>!e.isMain).map(e=>e.id),...Ee&&!Ee.isMain?[Ee.id]:[]]),ke=t=>t.workspaceRoot===e.workspace||U.has(t.agentId),Ae=p&&ke(p)?p:null,je=h.filter(ke),Me=new Set(je.filter(e=>e.dirty).map(e=>e.file.path)),Ne=new Set(je.filter(e=>e.externalChanged).map(e=>e.file.path)),Pe=e.agents.filter(e=>!e.pinned),Fe=e.agentSessions.filter(e=>!e.pinned),Ie=Pe.length>0||Fe.length>0||(e.hiddenAgentSessionCount??0)>0,Le=ve&&oe()&&Pe.length>1,Re=(r||Le)&&Pe.length>0,ze=Re||he?Pe:fN(Pe,Yj,[i,a]),Be=Math.max(0,Pe.length-ze.length),Ve=ge&&!n;(0,G.useEffect)(()=>{Ce!==Te&&we(Te)},[Te,Ce]),(0,G.useEffect)(()=>{let t=sN(e.gitWorktree);t&&me(t)},[e.gitWorktree]),(0,G.useEffect)(()=>{if(!De)return;let e=new AbortController;return ce(De,{signal:e.signal}).then(me).catch(()=>{}),()=>e.abort()},[De]);let He=(0,G.useCallback)(e=>!Ee?.id||e?.sourceAgentId?e:{...e,sourceAgentId:Ee.id},[Ee?.id]),Ue=(0,G.useCallback)((e,t,n)=>{ee(e,t,He(n))},[ee,He]),We=(0,G.useCallback)((e,t,n)=>I(e,t,He(n)),[I,He]),Ge=(0,G.useCallback)(e=>{ye(!e)},[]),Ke=(e,t)=>{e.dataTransfer.effectAllowed=`move`,e.dataTransfer.setData(`text/plain`,t),F(),Se({agentId:t,targetAgentId:``,position:`before`})},qe=(e,t)=>{if(!xe||xe.agentId===t)return;e.preventDefault(),e.dataTransfer.dropEffect=`move`;let n=e.currentTarget.getBoundingClientRect(),r=e.clientY<n.top+n.height/2?`before`:`after`;xe.targetAgentId===t&&xe.position===r||Se(e=>e?{...e,targetAgentId:t,position:r}:null)},Je=()=>Se(null),Ye=(e,t)=>{if(e.preventDefault(),!xe||xe.agentId===t){Je();return}let n=Pe.filter(e=>e.id!==xe.agentId),r=n.findIndex(e=>e.id===t);if(r<0){Je();return}let i=xe.position===`before`?r:r+1;O(xe.agentId,i>0?n[i-1]?.id??``:``,i<n.length?n[i]?.id??``:``),Je()},Xe=e=>{if(e.preventDefault(),!xe)return;let t=Pe.filter(e=>e.id!==xe.agentId);O(xe.agentId,t[t.length-1]?.id??``,``),Je()},Ze=e=>{xe&&(e.preventDefault(),e.dataTransfer.dropEffect=`move`,xe.targetAgentId!==Xj&&Se(e=>e?{...e,targetAgentId:Xj,position:`after`}:null))};(0,G.useEffect)(()=>{Pe.length<=Yj&&he&&H(!1)},[he,Pe.length]),(0,G.useLayoutEffect)(()=>{let e=B.current;if(!e)return;let t=()=>{let t=re.current;e.style.setProperty(`--code-project-sticky-height`,t?`${Math.ceil(t.getBoundingClientRect().height)}px`:``);let n=ie.current;e.style.setProperty(`--code-agents-sticky-height`,n?`${Math.ceil(n.getBoundingClientRect().height)}px`:`0px`)};t();let n=re.current,r=ie.current,i=typeof ResizeObserver<`u`?new ResizeObserver(t):null;return n&&i?.observe(n),r&&i?.observe(r),window.addEventListener(`resize`,t),()=>{i?.disconnect(),window.removeEventListener(`resize`,t)}},[t,e.id,Ie]),(0,G.useEffect)(()=>{if(!le)return;let e=e=>{let t=e.target;t&&(V.current?.contains(t)||ae.current?.contains(t))||ue(null)},t=e=>{e.key===`Escape`&&(e.preventDefault(),ue(null),ae.current?.focus())};return window.addEventListener(`pointerdown`,e,!0),window.addEventListener(`keydown`,t,!0),()=>{window.removeEventListener(`pointerdown`,e,!0),window.removeEventListener(`keydown`,t,!0)}},[le]);let Qe=t=>{if(t.preventDefault(),t.stopPropagation(),g.length===0){S(e.workspace,void 0,t.currentTarget);return}let n=t.currentTarget.getBoundingClientRect(),r=Math.min(260,g.length*34+12);ue(oe()?Cj(n,r,void 0,160):Sj(n,r,void 0,160))},$e=t=>{ue(null),C(t,e.workspace)},et=pe?.items.find(e=>e.current),tt=pe?.isGitRepo&&et&&et?et.branch||`detached@${et.head.slice(0,7)}`:``,nt=pe?.items.length||0;return(0,K.jsxs)(`section`,{ref:B,className:`code-project-group`,"data-testid":`code-project-group`,children:[(0,K.jsxs)(`div`,{ref:re,className:`code-project-row`,children:[(0,K.jsxs)(`span`,{className:`code-project-title-content`,children:[(0,K.jsxs)(`button`,{type:`button`,className:`code-project-title`,"data-testid":`code-project-title`,"data-project-id":e.id,"aria-expanded":!t,onClick:()=>y(e.id),onContextMenu:t=>w(t,e.id),onKeyDown:t=>T(t,e.id),children:[(0,K.jsx)(`span`,{className:`code-folder-icon ${t?`collapsed`:`expanded`}`,"aria-hidden":`true`,children:t?(0,K.jsx)(W,{}):(0,K.jsx)(be,{})}),(0,K.jsx)(`span`,{className:`code-project-title-name`,children:e.name})]}),tt&&pe&&(0,K.jsxs)(`button`,{ref:se,type:`button`,className:`code-project-worktree`,"data-testid":`code-project-worktree`,title:`${tt} · ${nt} ${z.worktrees.toLocaleLowerCase()} · ${z.showWorktrees}`,"aria-label":`${tt} · ${nt} ${z.worktrees}`,"aria-haspopup":`dialog`,"aria-expanded":de?!0:void 0,onClick:e=>{e.preventDefault(),e.stopPropagation();let t=e.currentTarget.getBoundingClientRect(),n=Math.min(440,Math.max(320,window.innerWidth-24)),r=Math.min(420,Math.max(132,(pe?.items.length||2)*58+54));fe(oe()?Cj(t,r,void 0,n):Sj(t,r,void 0,n))},children:[(0,K.jsx)(`span`,{className:`code-project-worktree-icon`,"aria-hidden":`true`,children:(0,K.jsx)(tM,{})}),(0,K.jsx)(`span`,{className:`code-project-worktree-name`,children:tt}),nt>1&&(0,K.jsx)(`span`,{className:`code-project-worktree-count`,"aria-hidden":`true`,children:nt})]})]}),(0,K.jsxs)(`span`,{className:`code-project-title-actions`,"aria-hidden":!1,children:[Ie&&!n&&(0,K.jsx)(`button`,{type:`button`,className:`code-project-title-action`,"data-testid":`code-project-agent-visibility`,"data-collapsed":Ve?`true`:`false`,"aria-expanded":!Ve,"aria-label":Ve?z.showAgents:z.hideAgents,title:Ve?z.showAgents:z.hideAgents,onClick:()=>_e(e=>!e),children:Ve?(0,K.jsx)(uN,{}):(0,K.jsx)(dN,{})}),(0,K.jsx)(`button`,{type:`button`,className:`code-project-title-action`,"data-testid":`code-project-actions`,"aria-label":z.openOptions,title:z.openOptions,onClick:t=>w(t,e.id),children:(0,K.jsx)(pN,{})}),(0,K.jsx)(`button`,{ref:ae,type:`button`,className:`code-project-title-action`,"data-testid":`code-project-new-agent`,"aria-label":z.newAgent,title:z.newAgent,"aria-haspopup":`menu`,"aria-expanded":le?!0:void 0,onClick:Qe,children:(0,K.jsx)(lN,{})})]}),le&&typeof document<`u`&&(0,dj.createPortal)((0,K.jsx)(`div`,{ref:V,className:`code-context-menu code-project-launch-menu`,"data-testid":`code-project-new-agent-menu`,role:`menu`,style:{left:le.x,top:le.y},children:g.map(e=>(0,K.jsxs)(`button`,{type:`button`,role:`menuitem`,"data-testid":`code-project-agent-launch-${e.name}`,onClick:()=>$e(e.command||e.name),children:[(0,K.jsx)(m,{name:e.name}),(0,K.jsx)(`span`,{children:c(e.name)})]},e.name))}),document.body),de&&pe&&typeof document<`u`&&(0,dj.createPortal)((0,K.jsx)(oN,{agentId:De,anchorRef:se,copy:z,fallback:pe,point:de,onClose:()=>fe(null),onMountProject:x}),document.body)]}),!t&&(0,K.jsxs)(`div`,{className:`code-project-expanded`,children:[Ie&&(0,K.jsx)(`div`,{ref:ie,className:`code-agents-section`,"data-testid":`code-agents-section`,"data-project-id":e.id,children:(0,K.jsxs)(`div`,{className:`code-agent-list`,children:[!Ve&&(0,K.jsxs)(K.Fragment,{children:[Re?(0,K.jsx)(nN,{agents:Pe,activeTerminalId:i,selectedSearchAgentId:a,claimedAgentSessionKeyByAgentId:s,now:f,onOpenAgent:E,onOpenAgentContextMenu:k,onOpenAgentKeyboardMenu:A,onShowPreview:P,onHidePreview:F}):ze.map(e=>(0,K.jsx)(wN,{agent:e,shortcutHint:u?l.get(e.id):void 0,active:e.id===i,searchSelected:e.id===a,now:f,onOpenAgent:E,onUpdateAgentFlags:D,reorderable:!0,dragging:xe?.agentId===e.id,dropPosition:xe?.targetAgentId===e.id?xe.position:void 0,onAgentDragStart:Ke,onAgentDragEnd:Je,onAgentDragOver:qe,onAgentDrop:Ye,onOpenAgentContextMenu:k,onOpenAgentKeyboardMenu:A,onShowPreview:P,onHidePreview:F,copy:z},Rk({kind:`agent`,agent:e,claimedSessionKey:s.get(e.id)}))),Fe.map(e=>(0,K.jsx)(wN,{session:e,searchSelected:aD(e)===o,now:f,onResume:j,onOpenSessionContextMenu:M,onOpenSessionKeyboardMenu:N,onShowPreview:P,onHidePreview:F,copy:z},Rk({kind:`history`,session:e}))),(e.hiddenAgentSessionCount??0)>0&&(0,K.jsxs)(`button`,{type:`button`,className:`code-agent-row code-session-show-more`,"data-testid":`code-session-show-more`,onClick:()=>b(e.id),children:[(0,K.jsx)(`span`,{className:`code-agent-row-copy`,children:(0,K.jsx)(`span`,{className:`code-agent-name`,children:z.showMore})}),(0,K.jsx)(`span`,{className:`code-agent-row-trailing`,children:(0,K.jsx)(`span`,{className:`code-agent-age`,children:e.hiddenAgentSessionCount})})]}),e.agentSessionsExpanded&&e.agentSessions.length>Jj&&(0,K.jsx)(`button`,{type:`button`,className:`code-agent-row code-session-show-more`,"data-testid":`code-session-show-less`,onClick:()=>b(e.id),children:(0,K.jsx)(`span`,{className:`code-agent-row-copy`,children:(0,K.jsx)(`span`,{className:`code-agent-name`,children:z.showLess})})})]}),!n&&!Ve&&!Re&&Pe.length>Yj&&(0,K.jsxs)(`div`,{className:`code-agent-list-controls`,"data-testid":`code-agent-list-controls`,children:[Be>0&&(0,K.jsxs)(`button`,{type:`button`,className:`code-agent-row code-session-show-more ${xe?.targetAgentId===Xj?`drop-after`:``}`,"data-testid":`code-agent-show-more`,onClick:()=>H(!0),onDragOver:Ze,onDrop:Xe,children:[(0,K.jsx)(`span`,{className:`code-agent-row-copy`,children:(0,K.jsx)(`span`,{className:`code-agent-name`,children:z.showMore})}),(0,K.jsx)(`span`,{className:`code-agent-row-trailing`,children:(0,K.jsx)(`span`,{className:`code-agent-age`,children:Be})})]}),he&&(0,K.jsx)(`button`,{type:`button`,className:`code-agent-row code-session-show-more`,"data-testid":`code-agent-show-less`,onClick:()=>H(!1),children:(0,K.jsx)(`span`,{className:`code-agent-row-copy`,children:(0,K.jsx)(`span`,{className:`code-agent-name`,children:z.showLess})})})]})]})}),Oe&&(0,K.jsx)(G.Suspense,{fallback:null,children:(0,K.jsx)(rM,{projectId:e.id,projectWorkspace:e.workspace,agentId:De,agentLaunchOptions:g,activeFilePath:Ae?.file.path,openFiles:je.map(e=>({agentId:e.agentId,workspaceRoot:e.workspaceRoot,key:d(e),path:e.file.path,dirty:e.dirty,externalChanged:e.externalChanged})),revealRequest:_&&U.has(_.agentId)?_:void 0,focusSearchRequest:v&&U.has(v.agentId)?v:void 0,editorDirtyFilePaths:Me,editorExternalChangedFilePaths:Ne,onOpenFile:Ue,onSelectOpenFile:We,onCloseOpenFile:te,onNewAgent:S,onStartAgent:C,onMoveEntries:L,onDeleteEntries:R,onRefreshOpenFiles:ne,onFilesCollapsedChange:Ge,copy:z})})]})]})}function lN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M7.5 3C7.77614 3 8 3.22386 8 3.5V7H11.5C11.7761 7 12 7.22386 12 7.5C12 7.77614 11.7761 8 11.5 8H8V11.5C8 11.7761 7.77614 12 7.5 12C7.22386 12 7 11.7761 7 11.5V8H3.5C3.22386 8 3 7.77614 3 7.5C3 7.22386 3.22386 7 3.5 7H7V3.5C7 3.22386 7.22386 3 7.5 3Z`})})}function uN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M2.98444 8.62471L2.98346 8.62815C2.91251 8.8948 2.63879 9.05404 2.37202 8.9833C1.94098 8.86907 2.01687 8.37186 2.01687 8.37186L2.03453 8.31047C2.03453 8.31047 2.06063 8.22636 2.08166 8.1653C2.12369 8.04329 2.18795 7.87274 2.27931 7.66977C2.46154 7.26493 2.75443 6.72477 3.19877 6.18295C4.09629 5.08851 5.60509 4 8.00017 4C10.3952 4 11.904 5.08851 12.8016 6.18295C13.2459 6.72477 13.5388 7.26493 13.721 7.66977C13.8124 7.87274 13.8766 8.04329 13.9187 8.1653C13.9397 8.22636 13.9552 8.27541 13.9658 8.31047C13.9711 8.328 13.9752 8.34204 13.9781 8.35236L13.9816 8.365L13.9827 8.36916L13.9832 8.37069L13.9835 8.37186C14.0542 8.63878 13.8952 8.91253 13.6283 8.9833C13.3618 9.05397 13.0885 8.89556 13.0172 8.62937L13.0169 8.62815L13.0159 8.62471L13.0085 8.5997C13.0014 8.57616 12.9898 8.53927 12.9732 8.49095C12.9399 8.39422 12.8866 8.25227 12.8091 8.08023C12.6538 7.73508 12.4041 7.27523 12.0283 6.81706C11.2857 5.9115 10.0445 5 8.00017 5C5.95584 5 4.71464 5.9115 3.97201 6.81706C3.59627 7.27523 3.34655 7.73508 3.19119 8.08023C3.11375 8.25227 3.06047 8.39422 3.02715 8.49095C3.01051 8.53927 2.9989 8.57616 2.99179 8.5997L2.98444 8.62471ZM8.00024 7C6.61953 7 5.50024 8.11929 5.50024 9.5C5.50024 10.8807 6.61953 12 8.00024 12C9.38096 12 10.5002 10.8807 10.5002 9.5C10.5002 8.11929 9.38096 7 8.00024 7ZM6.50024 9.5C6.50024 8.67157 7.17182 8 8.00024 8C8.82867 8 9.50024 8.67157 9.50024 9.5C9.50024 10.3284 8.82867 11 8.00024 11C7.17182 11 6.50024 10.3284 6.50024 9.5Z`})})}function dN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M10.1196 10.8267L14.1464 14.8536C14.3417 15.0488 14.6583 15.0488 14.8536 14.8536C15.0488 14.6583 15.0488 14.3417 14.8536 14.1464L1.85355 1.14645C1.65829 0.951184 1.34171 0.951184 1.14645 1.14645C0.951184 1.34171 0.951184 1.65829 1.14645 1.85355L4.37624 5.08334C3.90117 5.4183 3.5126 5.80026 3.19877 6.18295C2.75443 6.72477 2.46154 7.26493 2.27931 7.66977C2.18795 7.87274 2.12369 8.04329 2.08166 8.1653C2.06063 8.22636 2.03453 8.31047 2.03453 8.31047L2.01687 8.37186C2.01687 8.37186 1.94098 8.86907 2.37202 8.9833C2.63879 9.05404 2.91251 8.8948 2.98346 8.62815L2.98444 8.62471L2.99179 8.5997C2.9989 8.57616 3.01051 8.53927 3.02715 8.49095C3.06047 8.39421 3.11375 8.25227 3.19119 8.08023C3.34655 7.73507 3.59627 7.27523 3.97201 6.81706C4.26363 6.46146 4.63213 6.10494 5.09595 5.80306L6.67356 7.38067C5.9688 7.82277 5.50024 8.60667 5.50024 9.5C5.50024 10.8807 6.61953 12 8.00024 12C8.89358 12 9.67747 11.5314 10.1196 10.8267ZM9.3807 10.0878C9.15205 10.6241 8.62005 11 8.00024 11C7.17182 11 6.50024 10.3284 6.50024 9.5C6.50024 8.88019 6.87616 8.34819 7.41244 8.11955L9.3807 10.0878ZM6.31962 4.19853L7.174 5.05291C7.43366 5.01852 7.70875 5 8.00017 5C10.0445 5 11.2857 5.9115 12.0283 6.81706C12.4041 7.27523 12.6538 7.73507 12.8091 8.08023C12.8866 8.25227 12.9399 8.39421 12.9732 8.49095C12.9898 8.53927 13.0014 8.57616 13.0085 8.5997L13.0159 8.62471L13.0169 8.62815L13.0172 8.62937C13.0885 8.89555 13.3618 9.05397 13.6283 8.9833C13.8952 8.91253 14.0542 8.63878 13.9835 8.37186L13.9832 8.37069L13.9827 8.36916L13.9816 8.365L13.9781 8.35236C13.9752 8.34204 13.9711 8.328 13.9658 8.31047C13.9552 8.27541 13.9397 8.22636 13.9187 8.1653C13.8766 8.04329 13.8124 7.87274 13.721 7.66977C13.5388 7.26493 13.2459 6.72477 12.8016 6.18295C11.904 5.0885 10.3952 4 8.00017 4C7.38264 4 6.82403 4.07236 6.31962 4.19853Z`})})}function fN(e,t,n){if(e.length<=t)return e;let r=e.slice(0,t),i=new Set(r.map(e=>e.id)),a=new Set(n.filter(e=>!!e));for(let n of e)if(!(!a.has(n.id)||i.has(n.id))){if(r.length>=t&&r.length>0){let e=r[r.length-1];i.delete(e.id),r[r.length-1]=n}else r.push(n);i.add(n.id)}return r}function pN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M4 8C4 8.55228 3.55228 9 3 9C2.44772 9 2 8.55228 2 8C2 7.44772 2.44772 7 3 7C3.55228 7 4 7.44772 4 8ZM9 8C9 8.55228 8.55228 9 8 9C7.44772 9 7 8.55228 7 8C7 7.44772 7.44772 7 8 7C8.55228 7 9 7.44772 9 8ZM13 9C13.5523 9 14 8.55228 14 8C14 7.44772 13.5523 7 13 7C12.4477 7 12 7.44772 12 8C12 8.55228 12.4477 9 13 9Z`})})}function mN(e,t,n){return{key:`agent:${e.id}`,title:t.title,project:n||QE(e.projectWorkspace||e.cwd),lastActive:e.lastActivity||e.startedAt||0,provider:$j(e),workspaceRootId:e.workspaceRootId}}function hN(e,t){return{key:`session:${aD(e)}`,title:t.title,project:uD(e),lastActive:dD(e),provider:Qj(e.provider)}}function gN({preview:e,now:t}){return(0,K.jsxs)(`div`,{className:`code-agent-hover-preview`,"data-testid":`code-agent-hover-preview`,style:{left:e.x,top:e.y,width:e.width},"aria-hidden":`true`,children:[(0,K.jsxs)(`div`,{className:`code-agent-hover-preview-header`,children:[(0,K.jsx)(`strong`,{children:e.title}),(0,K.jsx)(`span`,{children:M(e.lastActive,t)})]}),(0,K.jsxs)(`div`,{className:`code-agent-hover-preview-line`,children:[(0,K.jsx)(`span`,{className:`code-agent-hover-preview-icon`,children:(0,K.jsx)(_N,{})}),(0,K.jsxs)(`div`,{className:`code-agent-hover-preview-project`,children:[(0,K.jsx)(`span`,{className:`code-agent-hover-preview-project-name`,children:e.project}),e.provider&&(0,K.jsx)(m,{name:e.provider,variant:`color`,className:`code-agent-hover-preview-provider-icon`})]})]}),(0,K.jsxs)(`div`,{className:`code-agent-hover-preview-line`,children:[(0,K.jsx)(`span`,{className:`code-agent-hover-preview-icon`,children:(0,K.jsx)(vN,{})}),(0,K.jsx)(`span`,{children:e.branch||`—`})]})]})}function _N(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M1.5 3.75C1.5 2.784 2.284 2 3.25 2h3.104c.464 0 .91.184 1.237.513l.841.842c.14.14.33.22.528.22h3.79c.966 0 1.75.784 1.75 1.75v6.925c0 .966-.784 1.75-1.75 1.75H3.25a1.75 1.75 0 0 1-1.75-1.75V3.75Zm1.75-.75a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h9.5a.75.75 0 0 0 .75-.75V5.325a.75.75 0 0 0-.75-.75H8.96a1.75 1.75 0 0 1-1.235-.512l-.841-.842A.75.75 0 0 0 6.354 3H3.25Z`})})}function vN(){return(0,K.jsx)(`svg`,{width:`24`,height:`24`,viewBox:`0 0 24 24`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M21 8.25C21 6.1815 19.3185 4.5 17.25 4.5C15.1815 4.5 13.5 6.1815 13.5 8.25C13.5 10.023 14.739 11.5035 16.395 11.892C16.116 12.819 15.2655 13.5 14.25 13.5H9.75C8.9025 13.5 8.1285 13.7925 7.5 14.268V7.4235C9.21 7.0755 10.5 5.5605 10.5 3.75C10.5 1.6815 8.8185 0 6.75 0C4.6815 0 3 1.6815 3 3.75C3 5.562 4.29 7.0755 6 7.4235V16.575C4.29 16.923 3 18.438 3 20.2485C3 22.317 4.6815 23.9985 6.75 23.9985C8.8185 23.9985 10.5 22.317 10.5 20.2485C10.5 18.4755 9.261 16.995 7.605 16.6065C7.884 15.6795 8.7345 14.9985 9.75 14.9985H14.25C16.0845 14.9985 17.61 13.6725 17.931 11.9295C19.674 11.607 21 10.0845 21 8.25ZM4.5 3.75C4.5 2.5095 5.5095 1.5 6.75 1.5C7.9905 1.5 9 2.5095 9 3.75C9 4.9905 7.9905 6 6.75 6C5.5095 6 4.5 4.9905 4.5 3.75ZM9 20.25C9 21.4905 7.9905 22.5 6.75 22.5C5.5095 22.5 4.5 21.4905 4.5 20.25C4.5 19.0095 5.5095 18 6.75 18C7.9905 18 9 19.0095 9 20.25ZM17.25 10.5C16.0095 10.5 15 9.4905 15 8.25C15 7.0095 16.0095 6 17.25 6C18.4905 6 19.5 7.0095 19.5 8.25C19.5 9.4905 18.4905 10.5 17.25 10.5Z`})})}function yN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M10.0589 2.44511C9.34701 1.73063 8.14697 1.90829 7.67261 2.79839L5.6526 6.58878L2.8419 7.52568C2.6775 7.58048 2.5532 7.71649 2.51339 7.88514C2.47357 8.0538 2.52392 8.23104 2.64646 8.35357L4.79291 10.5L2.14645 13.1465L2 14L2.85356 13.8536L5.50002 11.2071L7.64646 13.3536C7.76899 13.4761 7.94623 13.5265 8.11489 13.4866C8.28354 13.4468 8.41955 13.3225 8.47435 13.1581L9.41143 10.3469L13.1897 8.32423C14.0759 7.84982 14.2538 6.6551 13.5443 5.94305L10.0589 2.44511ZM8.55511 3.2687C8.71323 2.972 9.11324 2.91278 9.35055 3.15094L12.836 6.64889C13.0725 6.88624 13.0131 7.28448 12.7178 7.44262L8.76403 9.55921C8.65137 9.61952 8.56608 9.72068 8.52567 9.84191L7.7815 12.0744L3.92562 8.21853L6.15812 7.47436C6.27966 7.43385 6.38101 7.34823 6.44126 7.23518L8.55511 3.2687Z`})})}function bN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,xmlns:`http://www.w3.org/2000/svg`,fill:`currentColor`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{d:`M9.56016 10.2673L14.1464 14.8536C14.3417 15.0488 14.6583 15.0488 14.8536 14.8536C15.0488 14.6583 15.0488 14.3417 14.8536 14.1464L1.85355 1.14645C1.65829 0.951184 1.34171 0.951184 1.14645 1.14645C0.951184 1.34171 0.951184 1.65829 1.14645 1.85355L5.73223 6.43934L5.6526 6.58876L2.8419 7.52566C2.6775 7.58046 2.5532 7.71648 2.51339 7.88513C2.47357 8.05378 2.52392 8.23102 2.64646 8.35356L4.79291 10.5L2.14645 13.1465L2 14L2.85356 13.8536L5.50002 11.2071L7.64646 13.3536C7.76899 13.4761 7.94623 13.5264 8.11489 13.4866C8.28354 13.4468 8.41955 13.3225 8.47435 13.1581L9.41143 10.3469L9.56016 10.2673ZM8.82138 9.52849L8.76403 9.5592C8.65137 9.61951 8.56608 9.72066 8.52567 9.84189L7.7815 12.0744L3.92562 8.21851L6.15812 7.47435C6.27966 7.43383 6.38101 7.34822 6.44126 7.23516L6.47143 7.17854L8.82138 9.52849ZM12.7178 7.4426L10.6636 8.54227L11.4024 9.28105L13.1897 8.32422C14.0759 7.84981 14.2538 6.65509 13.5443 5.94304L10.0589 2.44509C9.34701 1.73062 8.14697 1.90828 7.67261 2.79838L6.71556 4.59421L7.45476 5.33341L8.55511 3.26869C8.71323 2.97199 9.11324 2.91277 9.35055 3.15093L12.836 6.64888C13.0725 6.88623 13.0131 7.28446 12.7178 7.4426Z`})})}function xN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M7.99909 3C10.7605 3 12.9991 5.23858 12.9991 8C12.9991 10.7614 10.7605 13 7.99909 13C5.39117 13 3.2491 11.003 3.0195 8.45512C2.99471 8.1801 2.75167 7.97723 2.47664 8.00202C2.20161 8.0268 1.99875 8.26985 2.02353 8.54488C2.29916 11.6035 4.86898 14 7.99909 14C11.3128 14 13.9991 11.3137 13.9991 8C13.9991 4.68629 11.3128 2 7.99909 2C6.20656 2 4.59815 2.78613 3.49909 4.03138V2.5C3.49909 2.22386 3.27524 2 2.99909 2C2.72295 2 2.49909 2.22386 2.49909 2.5V5.5C2.49909 5.77614 2.72295 6 2.99909 6H3.08812C3.09498 6.00014 3.10184 6.00014 3.10868 6H5.99909C6.27524 6 6.49909 5.77614 6.49909 5.5C6.49909 5.22386 6.27524 5 5.99909 5H3.99863C4.91128 3.78495 6.36382 3 7.99909 3ZM7.99909 5.5C7.99909 5.22386 7.77524 5 7.49909 5C7.22295 5 6.99909 5.22386 6.99909 5.5V8.5C6.99909 8.77614 7.22295 9 7.49909 9H9.49909C9.77524 9 9.99909 8.77614 9.99909 8.5C9.99909 8.22386 9.77524 8 9.49909 8H7.99909V5.5Z`})})}function SN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M6.5 8C6.22386 8 6 8.22386 6 8.5C6 8.77614 6.22386 9 6.5 9H9.5C9.77614 9 10 8.77614 10 8.5C10 8.22386 9.77614 8 9.5 8H6.5ZM1 3.5C1 2.67157 1.67157 2 2.5 2H13.5C14.3284 2 15 2.67157 15 3.5V4.5C15 5.15311 14.5826 5.70873 14 5.91465V11.5C14 12.8807 12.8807 14 11.5 14H4.5C3.11929 14 2 12.8807 2 11.5V5.91465C1.4174 5.70873 1 5.15311 1 4.5V3.5ZM2.5 3C2.22386 3 2 3.22386 2 3.5V4.5C2 4.77614 2.22386 5 2.5 5H13.5C13.7761 5 14 4.77614 14 4.5V3.5C14 3.22386 13.7761 3 13.5 3H2.5ZM3 6V11.5C3 12.3284 3.67157 13 4.5 13H11.5C12.3284 13 13 12.3284 13 11.5V6H3Z`})})}function CN(){return(0,K.jsx)(`svg`,{width:`16`,height:`16`,viewBox:`0 0 16 16`,"aria-hidden":`true`,focusable:`false`,children:(0,K.jsx)(`path`,{fill:`currentColor`,d:`M12.854 14.8542L14.854 12.8542C15.049 12.6592 15.049 12.3422 14.854 12.1472L12.854 10.1472C12.659 9.95223 12.342 9.95223 12.147 10.1472C11.952 10.3422 11.952 10.6592 12.147 10.8542L13.293 12.0002H8.5C8.225 12.0002 8 11.7752 8 11.5002V5.50023C8 5.22523 8.225 5.00023 8.5 5.00023H13.293L12.147 6.14623C12.049 6.24423 12.001 6.37223 12.001 6.50023C12.001 6.62823 12.05 6.75623 12.147 6.85423C12.342 7.04923 12.659 7.04923 12.854 6.85423L14.854 4.85423C15.049 4.65923 15.049 4.34223 14.854 4.14723L12.854 2.14723C12.659 1.95223 12.342 1.95223 12.147 2.14723C11.952 2.34223 11.952 2.65923 12.147 2.85423L13.293 4.00023H8.5C7.673 4.00023 7 4.67323 7 5.50023V8.00023H1.5C1.224 8.00023 1 8.22423 1 8.50023C1 8.77623 1.224 9.00023 1.5 9.00023H7V11.5002C7 12.3272 7.673 13.0002 8.5 13.0002H13.293L12.147 14.1462C12.049 14.2442 12.001 14.3722 12.001 14.5002C12.001 14.6282 12.05 14.7562 12.147 14.8542C12.342 15.0492 12.659 15.0492 12.854 14.8542Z`})})}function wN({agent:e,session:t,shortcutHint:n,active:r=!1,searchSelected:i,now:a,onOpenAgent:o,onUpdateAgentFlags:s,reorderable:c=!1,dragging:l=!1,dropPosition:u,onAgentDragStart:d,onAgentDragEnd:f,onAgentDragOver:p,onAgentDrop:h,onOpenAgentContextMenu:g,onOpenAgentKeyboardMenu:_,onResume:v,onOpenSessionContextMenu:y,onOpenSessionKeyboardMenu:b,onShowPreview:x,onHidePreview:S,copy:C}){let w=(0,G.useRef)(!1),T=Dt(e),E=T?{kind:`agent`,agent:T}:t?{kind:`history`,session:t,fallbackTitle:C.sessionFallbackTitle(t.providerName)}:null;if(!E)return null;let D=Yk(E,a),O=D.requiresResume,k=T?.id??``,A=t?.provider??``,j=t?.id??``,M=O?`code-active-session-row`:`code-agent-row`,N=T?$j(T):Qj(t?.provider),P=()=>{if(O){S?.(),A&&j&&v?.(A,j,t?.providerHomeId);return}k&&o?.(k)};return(0,K.jsxs)(`div`,{tabIndex:0,className:`code-agent-row ${N?`has-provider`:``} ${O?`requires-resume`:``} ${r?`active`:``} ${i?`search-selected`:``} ${D.pinned?`pinned`:``} ${D.unread?`unread`:``} ${l?`dragging`:``} ${u?`drop-${u}`:``}`,draggable:c||void 0,"data-testid":M,"data-agent-id":T?.id,"data-activity-level":T?.activityLevel,"data-provider":t?.provider,"data-session-id":t?aD(t):void 0,"aria-label":D.rowTitle||D.title,onDragStart:e=>{!k||!c||(w.current=!0,d?.(e,k))},onDragEnd:()=>{f?.(),window.setTimeout(()=>{w.current=!1},0)},onDragOver:e=>k&&p?.(e,k),onDrop:e=>k&&h?.(e,k),onClick:e=>{if(w.current){e.preventDefault(),e.stopPropagation();return}P()},onMouseEnter:e=>{T?x?.(e,mN(T,D)):t&&x?.(e,hN(t,D))},onMouseLeave:S,onContextMenu:e=>{if(O){S?.(),A&&t&&y?.(e,A,aD(t));return}k&&g?.(e,k)},onKeyDown:e=>{O?A&&t&&b?.(e,A,aD(t)):k&&_?.(e,k),!e.defaultPrevented&&(e.key===`Enter`||e.key===` `)&&(e.preventDefault(),P())},children:[N&&(0,K.jsx)(`span`,{className:`code-agent-row-provider-icon`,"aria-hidden":`true`,children:(0,K.jsx)(m,{name:N,variant:`color`})}),(0,K.jsxs)(`span`,{className:`code-agent-row-copy ${D.detailLabel?`has-details`:``}`,children:[(0,K.jsx)(`span`,{className:`code-agent-name`,children:D.title}),D.detailLabel&&(0,K.jsx)(`span`,{className:`code-agent-meta`,"data-testid":`code-agent-row-detail`,title:D.detailLabel,children:D.detailLabel})]}),(0,K.jsxs)(`span`,{className:`code-agent-row-trailing`,children:[D.statusIndicatorVisible&&(0,K.jsx)(`span`,{className:`code-agent-dot ${D.lifecycleStatus} ${D.turnActive?`turn-active`:``}`,title:D.commandTitle||D.lifecycleStatus}),D.forkedToNewWorktree&&(0,K.jsx)(`span`,{className:`code-agent-fork-new-worktree`,"data-testid":`code-agent-new-worktree-fork`,title:C.newWorktreeFork,"aria-label":C.newWorktreeFork,role:`img`,children:(0,K.jsx)(CN,{})}),D.scheduled&&(0,K.jsx)(`span`,{className:`code-agent-schedule-clock`,"data-testid":`code-agent-schedule-clock`,title:D.scheduleTitle,"aria-label":D.scheduleTitle||C.scheduledTask}),D.unread&&(0,K.jsx)(`span`,{className:`code-agent-unread`,title:C.unread}),D.ageVisible&&(0,K.jsx)(`span`,{className:`code-agent-age code-agent-relative-age`,"data-testid":`code-agent-row-age`,title:D.ageTitle,children:D.ageLabel}),e&&(0,K.jsxs)(`span`,{className:`code-agent-row-actions`,"aria-hidden":!1,children:[(0,K.jsx)(`button`,{type:`button`,className:`code-agent-row-action pin ${D.pinned?`active`:``}`,"data-testid":`code-agent-row-pin`,"aria-label":D.pinned?C.unpinAgent:C.pinAgent,title:D.pinned?C.unpinAgent:C.pinAgent,onClick:e=>{e.preventDefault(),e.stopPropagation(),T&&s?.(T,{pinned:!D.pinned})},children:D.pinned?(0,K.jsx)(bN,{}):(0,K.jsx)(yN,{})}),(0,K.jsx)(`button`,{type:`button`,className:`code-agent-row-action archive`,"data-testid":`code-agent-row-archive`,"aria-label":C.archiveAgent,title:C.archiveAgent,onClick:e=>{e.preventDefault(),e.stopPropagation(),T&&s?.(T,{archived:!0})},children:(0,K.jsx)(SN,{})})]}),(e||t)&&(0,K.jsx)(`button`,{type:`button`,className:`code-agent-row-more`,"data-testid":`code-agent-row-more`,"aria-label":C.openOptions,title:C.openOptions,onClick:e=>{if(e.preventDefault(),e.stopPropagation(),O){S?.(),A&&t&&y?.(e,A,aD(t));return}k&&g?.(e,k)},children:(0,K.jsx)(pN,{})}),n&&(0,K.jsx)(`kbd`,{children:n})]})]})}var TN=[`codex`,`claude`,`opencode`,`qoder`],EN=new Set([`bash`,`zsh`]),DN=/^[A-Za-z0-9._-]+$/,ON=[3,5,10,15,30,60,180];function kN(e){let t=e/1e3;return ON.reduce((e,n)=>Math.abs(n-t)<Math.abs(e-t)?n:e)}function AN(e){let t=e===`zh`;return{title:t?`设置`:`Settings`,subtitle:t?`管理 Farming 的本地元数据。`:`Manage local Farming metadata.`,close:t?`关闭`:`Close`,back:t?`返回导航`:`Back to navigation`,general:t?`通用`:`General`,appearance:t?`外观`:`Appearance`,light:t?`浅色`:`Light`,dark:t?`深色`:`Dark`,interface:t?`界面`:`Interface`,interfaceSkin:t?`界面皮肤`:`Interface skin`,farmingCode:`Farming Code`,farmingCrt:`Farming CRT`,language:t?`语言`:`Language`,english:`English`,chinese:`中文`,search:t?`搜索`:`Search`,agentPermissions:t?`Agent 权限`:`Agent Permissions`,dangerousSkipLabel:t?`默认跳过所有 agent 权限检查`:`Skip all agent permission checks by default`,dangerousSkipHint:t?`开启后,新启动的 Codex、Claude、OpenCode、Qoder、Qwen、Aider、GitHub Copilot CLI、Amazon Q 等会使用各自的危险跳过权限 flag。只在可信沙箱中使用。`:`When enabled, new Codex, Claude, OpenCode, Qoder, Qwen, Aider, GitHub Copilot CLI, Amazon Q, and similar agents launch with their provider-specific dangerous skip flags. Use only in trusted sandboxes.`,searchTimeout:t?`搜索超时`:`Search timeout`,searchTimeoutValue:e=>t?e>=60?`${e/60} 分钟`:`${e} 秒`:e>=60?`${e/60} min`:`${e} sec`,updates:t?`更新`:`Updates`,updateUrl:t?`更新 URL`:`Update URL`,updateUrlPlaceholder:`https://github.com/zhuwenzhuang/farming/releases/latest`,updateUrlEmpty:t?`等待检查更新`:`Waiting for update check`,saveUpdateUrl:t?`保存更新 URL`:`Save Update URL`,refreshUpdates:t?`刷新`:`Refresh`,updateAction:t?`更新`:`Update`,updateToVersion:e=>t?`更新到 ${e}`:`Update to ${e}`,updating:t?`更新中…`:`Updating…`,checkingUpdates:t?`正在检查更新…`:`Checking for updates…`,currentVersion:t?`当前版本`:`Current`,latestVersion:t?`最新版本`:`Latest`,targetVersion:t?`升级版本`:`Target`,updateSource:t?`更新源`:`Update source`,updateMethodLabel:e=>({npm:`npm`,"app-bundle":t?`兼容包`:`App bundle`,"source-deploy":t?`源码部署`:`Source deployment`,source:t?`源码检出`:`Source checkout`,"standalone-cli":t?`单文件 CLI`:`Standalone CLI`})[e]||e||`-`,upToDate:t?`已是最新版本`:`Up to date`,updateAvailable:t?`有新版本可用`:`Update available`,updateNotInstallable:t?`当前更新不可安装`:`Update is not installable`,updateInstalling:t?`升级已开始,服务会自动重启。`:`Upgrade started. The server will restart automatically.`,updateRestarting:t?`新版本已安装,正在重启 Farming。`:`The new version is installed. Restarting Farming.`,updateSucceeded:t?`更新成功。`:`Update completed.`,updateRolledBack:t?`新版本启动失败,已回退到旧版本。`:`The new version failed to start and Farming rolled back.`,agentHomes:`Agent Homes`,agentHomesHint:t?`为不同 Agent 配置独立的主目录。`:`Configure a separate home directory for each agent.`,addHome:e=>t?`添加 ${e} home`:`Add ${e} home`,edit:t?`编辑`:`Edit`,remove:t?`删除`:`Remove`,save:t?`保存`:`Save`,cancel:t?`取消`:`Cancel`,homeName:t?`Home 名称(可选)`:`Home name (optional)`,homePath:t?`Home 路径`:`Home path`,homeNameHint:t?`留空时将根据路径自动生成。允许字母、数字、点、下划线和短横线。`:`Leave empty to generate it from the path. Use letters, numbers, dots, underscores, and hyphens.`,homeNamePlaceholder:t?`例如:work`:`e.g. work`,pathPlaceholder:`~/.codex.local`,loading:t?`加载中…`:`Loading…`,saving:t?`保存中…`:`Saving…`,saved:t?`已保存`:`Saved`,loadFailed:t?`加载设置失败`:`Failed to load settings`,saveFailed:t?`保存失败`:`Failed to save`,invalidId:t?`Home 名称只能包含字母、数字、点、下划线和短横线。`:`Home name can only contain letters, numbers, dots, underscores, and hyphens.`,duplicateId:t?`同一个 provider 下 Home 名称不能重复。`:`Home name must be unique under the same provider.`,missingPath:t?`Home 路径不能为空。`:`Home path is required.`,removeLastHint:t?`至少保留一个 home。`:`Keep at least one home.`,removeDefaultHint:t?`default home 不能删除。`:`The default home cannot be removed.`,editDisabledHint:t?`home 不支持编辑;请删除后重新添加。`:`Homes cannot be edited. Remove and add again.`,confirmRemove:e=>t?`删除 home ${e}?`:`Remove home ${e}?`,empty:t?`还没有配置 home。`:`No homes configured.`,noAgents:t?`当前机器没有识别到可配置的 coding agent。`:`No configurable coding agents were detected on this machine.`,unavailable:t?`未安装`:`Not installed`}}function jN(e){return e.trim().toLowerCase()}function MN(e){let t=e&&typeof e==`object`&&!Array.isArray(e)?e:{},n={};return Object.entries(t).forEach(([e,t])=>{let r=jN(e);if(!r||!/^[a-z0-9._-]+$/.test(r)||!Array.isArray(t))return;let i=new Set,a=[];t.forEach(e=>{if(!e||typeof e!=`object`)return;let t=e,n=String(t.id??``).trim(),r=String(t.path??``).trim();if(!n||!r||!DN.test(n))return;let o=n.toLowerCase();i.has(o)||(i.add(o),a.push({id:n,path:r}))}),a.length>0&&(n[r]=a)}),n}function NN(e){return e===`codex`?`Codex`:e===`claude`?`Claude`:e===`opencode`?`OpenCode`:e===`qoder`?`Qoder`:e}function PN(e){return{codex:`~/.codex`,claude:`~/.claude`,opencode:`~/.opencode`,qoder:`~/.qoder`}[e]??`~/.${e}`}function FN(e){return!!e?.some(e=>e.id.toLowerCase()!==`default`)}function IN(e){return e.filter(e=>e.supported!==!1&&e.interactive!==!1).filter(e=>!EN.has(e.name)).filter(e=>TN.includes(e.name)).map(e=>jN(e.name)).filter(Boolean)}function LN(e,t){let n=new Set(IN(t)),r=Object.keys(e).filter(t=>FN(e[t])),i=new Set([...n,...r]);return Array.from(i).sort((e,t)=>{let n=TN.indexOf(e),r=TN.indexOf(t),i=n===-1?TN.length:n,a=r===-1?TN.length:r;return i===a?e.localeCompare(t):i-a})}function RN(e,t){let n=e[t]??[];return n.some(e=>e.id.toLowerCase()===`default`)?n:[{id:`default`,path:PN(t)},...n]}function zN(e,t){let n=e.trim().replace(/\/+$/,``).split(`/`).filter(Boolean),r=(n[n.length-1]??``).replace(/^\.+/,``).replace(/[^A-Za-z0-9._-]+/g,`-`).replace(/^[.-]+|[.-]+$/g,``).slice(0,64)||`home`,i=new Set(t.map(e=>e.id.toLowerCase())),a=1,o=r;for(;i.has(o.toLowerCase());)a+=1,o=`${r}-${a}`;return{id:o}}function BN(e){return{provider:e,id:``,path:``}}function VN({open:e,activeAgentId:t=null,language:n,uiPreferences:i,agentLaunchOptions:a,onClose:o,onUpdateUiPreferences:s}){let c=(0,G.useMemo)(()=>AN(n),[n]),l=(0,G.useRef)(null),u=(0,G.useRef)(null),d=(0,G.useRef)(``),[f,p]=(0,G.useState)(!1),[m,h]=(0,G.useState)(``),[g,_]=(0,G.useState)(15),[v,y]=(0,G.useState)(null),[b,x]=(0,G.useState)(``),[S,C]=(0,G.useState)(!1),[w,T]=(0,G.useState)(!1),[E,D]=(0,G.useState)(()=>MN({codex:[{id:`default`,path:`~/.codex`}],claude:[{id:`default`,path:`~/.claude`}],opencode:[{id:`default`,path:`~/.opencode`}],qoder:[{id:`default`,path:`~/.qoder`}]})),[O,k]=(0,G.useState)(!1),[A,j]=(0,G.useState)(!1),[M,N]=(0,G.useState)(``),[P,F]=(0,G.useState)(``),[ee,I]=(0,G.useState)(null),te=(0,G.useCallback)(()=>{k(!0),F(``),fetch(r(`/api/settings`)).then(e=>e.json()).then(e=>{D(MN(e.settings?.agentHomes)),p(e.settings?.dangerouslySkipAgentPermissionsByDefault===!0),h(String(e.settings?.updateUrl??``)),_(kN(Number(e.settings?.searchTimeoutMs??15e3)))}).catch(()=>F(c.loadFailed)).finally(()=>k(!1))},[c.loadFailed]);(0,G.useEffect)(()=>()=>{u.current!==null&&window.clearTimeout(u.current)},[]),(0,G.useEffect)(()=>{e&&(te(),window.requestAnimationFrame(()=>l.current?.focus({preventScroll:!0})))},[te,e]),(0,G.useEffect)(()=>{if(!e)return;let t=e=>{e.key===`Escape`&&(e.preventDefault(),o())};return window.addEventListener(`keydown`,t),()=>window.removeEventListener(`keydown`,t)},[o,e]);let L=(0,G.useCallback)(e=>{j(!0),F(``),N(``),fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({agentHomes:e})}).then(async t=>{let n=await t.json().catch(()=>null);if(!t.ok)throw Error(n?.error||c.saveFailed);D(MN(n?.settings?.agentHomes??e)),I(null),N(c.saved),window.dispatchEvent(new CustomEvent(`farming-agent-homes-saved`))}).catch(e=>F(e instanceof Error?e.message:c.saveFailed)).finally(()=>j(!1))},[c.saveFailed,c.saved]),R=(0,G.useCallback)((e=!0,t=!1)=>{t||(C(!0),F(``)),fetch(r(`/api/update${e?`?force=1`:``}`)).then(async e=>{let t=await e.json().catch(()=>null);if(!e.ok)throw Error(t?.error||c.loadFailed);let n=t?.update??null;y(n);let r=n?.versions??[];x(e=>e&&r.some(t=>t.assetName===e)?e:r[0]?.assetName||``)}).catch(e=>{t||F(e instanceof Error?e.message:c.loadFailed)}).finally(()=>{t||C(!1)})},[c.loadFailed]),ne=(0,G.useCallback)(()=>{T(!0),F(``),N(``),fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({updateUrl:m})}).then(async e=>{let t=await e.json().catch(()=>null);if(!e.ok)throw Error(t?.error||c.saveFailed);h(String(t?.settings?.updateUrl??``)),N(c.saved),R(!0)}).catch(e=>F(e instanceof Error?e.message:c.saveFailed)).finally(()=>T(!1))},[c.saveFailed,c.saved,R,m]),z=(0,G.useCallback)(e=>{_(e),F(``),u.current!==null&&window.clearTimeout(u.current),u.current=window.setTimeout(()=>{fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({searchTimeoutMs:e*1e3})}).then(async t=>{let n=await t.json().catch(()=>null);if(!t.ok)throw Error(n?.error||c.saveFailed);_(kN(Number(n?.settings?.searchTimeoutMs??e*1e3)))}).catch(e=>F(e instanceof Error?e.message:c.saveFailed))},120)},[c.saveFailed]),B=(0,G.useCallback)(()=>{let e=v?.versions?.find(e=>e.assetName===b);if(!e?.available){R(!0);return}C(!0),F(``),N(``),d.current=e.version||e.assetName||``,fetch(r(`/api/update/install`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({assetName:b})}).then(async e=>{let t=await e.json().catch(()=>null);if(!e.ok){let e=t?.blockingAgents||[],n=e.length?`: ${e.map(e=>e.command).join(`, `)}`:``;throw Error(`${t?.error||c.saveFailed}${n}`)}y(e=>({...e??{},state:t?.update?.state??e?.state,blockingAgents:t?.update?.blockingAgents??e?.blockingAgents}))}).catch(e=>{d.current=``,F(e instanceof Error?e.message:c.saveFailed)}).finally(()=>C(!1))},[c,R,b,v]);(0,G.useEffect)(()=>{e&&R(!1)},[e,R]);let re=(0,G.useCallback)(e=>{p(e),j(!0),F(``),N(``),fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({dangerouslySkipAgentPermissionsByDefault:e})}).then(async e=>{let t=await e.json().catch(()=>null);if(!e.ok)throw Error(t?.error||c.saveFailed);p(t?.settings?.dangerouslySkipAgentPermissionsByDefault===!0),N(c.saved)}).catch(t=>{p(!e),F(t instanceof Error?t.message:c.saveFailed)}).finally(()=>j(!1))},[c.saveFailed,c.saved]),ie=(0,G.useCallback)(()=>{if(!ee)return;let e=jN(ee.provider),t=ee.path.trim();if(!t){F(c.missingPath);return}let n=E[e]??[],r=ee.id.trim()||zN(t,n).id;if(!DN.test(r)){F(c.invalidId);return}if(n.some(e=>e.id.toLowerCase()===r.toLowerCase())){F(c.duplicateId);return}L({...E,[e]:[...n,{id:r,path:t}]})},[c.duplicateId,c.invalidId,c.missingPath,ee,E,L]),ae=(0,G.useCallback)((e,t)=>{if(t.toLowerCase()===`default`)return;let n=E[e]??[];window.confirm(c.confirmRemove(t))&&L({...E,[e]:n.filter(e=>e.id!==t)})},[c,E,L]),V=v?.state?.phase||``;if((0,G.useEffect)(()=>{if(!e||![`downloading`,`extracting`,`installing`,`restarting`,`rolling-back`].includes(V))return;let t=window.setInterval(()=>R(!1,!0),1500);return()=>window.clearInterval(t)},[e,R,V]),(0,G.useEffect)(()=>{!e||V!==`succeeded`||!d.current||(v?.state?.version||v?.current?.releaseVersion||v?.current?.packageVersion||``)===d.current&&(d.current=``,window.location.reload())},[e,V,v]),!e)return null;let oe=LN(E,a),se=v?.versions??[],ce=se.find(e=>e.assetName===b),le=[`downloading`,`extracting`,`installing`,`restarting`,`rolling-back`].includes(V),ue=S||w||le,de=v?.method||v?.current?.type||``,fe=c.updateMethodLabel(de),pe=de===`app-bundle`||de===`source-deploy`,me=v?.current?.releaseVersion||v?.current?.packageVersion||v?.state?.previousVersion||`-`,he=v?.latest?.version||`-`,H=ce?.version||v?.selected?.version||he,ge=me!==`-`&&H!==`-`&&me!==H&&(v?.available===!0||ue),_e=v?V===`rolled-back`?c.updateRolledBack:V===`failed`&&v?.state?.error?v.state.error:V===`restarting`?c.updateRestarting:[`downloading`,`extracting`,`installing`,`rolling-back`].includes(V)?c.updateInstalling:v.available?c.updateAvailable:V===`succeeded`?c.updateSucceeded:v.latest?.blockedReason||c.upToDate:c.checkingUpdates,ve=le?c.updating:ce?.available&&H!==`-`?c.updateToVersion(H):c.updateAction;return(0,K.jsx)(`div`,{className:`code-settings-panel-overlay`,"data-testid":`code-settings-panel`,onPointerDown:e=>{e.target===e.currentTarget&&o()},children:(0,K.jsxs)(`aside`,{className:`code-settings-panel`,"aria-modal":`true`,role:`dialog`,"aria-labelledby":`code-settings-panel-title`,children:[(0,K.jsxs)(`header`,{className:`code-settings-panel-header`,children:[(0,K.jsx)(`button`,{type:`button`,className:`code-settings-panel-back`,onClick:o,"aria-label":c.back,children:(0,K.jsx)(we,{})}),(0,K.jsx)(`div`,{children:(0,K.jsx)(`h2`,{id:`code-settings-panel-title`,children:c.title})}),(0,K.jsx)(`button`,{ref:l,type:`button`,className:`code-settings-panel-close`,onClick:o,"aria-label":c.close,children:(0,K.jsx)(Se,{})})]}),(0,K.jsxs)(`div`,{className:`code-settings-panel-body`,children:[(0,K.jsx)(`section`,{className:`code-settings-section compact`,children:(0,K.jsxs)(`div`,{className:`code-settings-inline-preferences`,children:[(0,K.jsxs)(`div`,{className:`code-settings-inline-choice`,children:[(0,K.jsx)(Oe,{"aria-hidden":`true`}),(0,K.jsxs)(`div`,{className:`code-settings-segmented`,role:`group`,"aria-label":c.appearance,children:[(0,K.jsx)(`button`,{type:`button`,className:i.appearance===`light`?`active`:``,onClick:()=>s({appearance:`light`}),children:c.light}),(0,K.jsx)(`button`,{type:`button`,className:i.appearance===`dark`?`active`:``,onClick:()=>s({appearance:`dark`}),children:c.dark})]})]}),(0,K.jsx)(`div`,{className:`code-settings-inline-choice code-settings-language-choice`,children:(0,K.jsxs)(`div`,{className:`code-settings-segmented`,role:`group`,"aria-label":c.language,children:[(0,K.jsx)(`button`,{type:`button`,className:i.language===`en`?`active`:``,onClick:()=>s({language:`en`}),children:c.english}),(0,K.jsx)(`button`,{type:`button`,className:i.language===`zh`?`active`:``,onClick:()=>s({language:`zh`}),children:c.chinese})]})})]})}),(0,K.jsxs)(`section`,{className:`code-settings-section code-settings-group`,children:[(0,K.jsx)(`div`,{className:`code-settings-section-heading`,children:(0,K.jsx)(`div`,{children:(0,K.jsx)(`h3`,{children:c.interface})})}),(0,K.jsx)(`div`,{className:`code-settings-card`,children:(0,K.jsxs)(`div`,{className:`code-settings-choice-row code-settings-runtime-row`,children:[(0,K.jsx)(`div`,{className:`code-settings-row-copy`,children:(0,K.jsx)(`strong`,{children:c.interfaceSkin})}),(0,K.jsxs)(`div`,{className:`code-settings-segmented`,role:`group`,"aria-label":c.interfaceSkin,children:[(0,K.jsx)(`button`,{type:`button`,className:`active`,"data-testid":`code-settings-skin-code`,"aria-pressed":`true`,children:c.farmingCode}),(0,K.jsx)(`button`,{type:`button`,"data-testid":`code-settings-skin-crt`,"aria-pressed":`false`,onClick:()=>window.location.assign(`${r(`/crt/`)}${t?`?agent=${encodeURIComponent(t)}`:``}`),children:c.farmingCrt})]})]})})]}),(0,K.jsxs)(`section`,{className:`code-settings-section code-settings-group`,children:[(0,K.jsx)(`div`,{className:`code-settings-section-heading`,children:(0,K.jsx)(`div`,{children:(0,K.jsx)(`h3`,{children:c.search})})}),(0,K.jsx)(`div`,{className:`code-settings-card`,children:(0,K.jsxs)(`div`,{className:`code-settings-choice-row code-settings-search-timeout-row`,children:[(0,K.jsx)(`div`,{className:`code-settings-row-copy`,children:(0,K.jsx)(`strong`,{children:c.searchTimeout})}),(0,K.jsx)(`input`,{type:`range`,min:`0`,max:String(ON.length-1),step:`1`,value:ON.indexOf(g),"aria-label":c.searchTimeout,onChange:e=>z(ON[Number(e.target.value)]??15)}),(0,K.jsx)(`output`,{children:c.searchTimeoutValue(g)})]})})]}),(0,K.jsxs)(`section`,{className:`code-settings-section`,children:[(0,K.jsx)(`div`,{className:`code-settings-section-heading`,children:(0,K.jsx)(`div`,{children:(0,K.jsx)(`h3`,{children:c.updates})})}),(0,K.jsxs)(`div`,{className:`code-settings-update-card ${v?.available?`available`:``}`,"data-testid":`code-settings-update-card`,children:[(0,K.jsxs)(`div`,{className:`code-settings-update-overview`,children:[(0,K.jsxs)(`div`,{className:`code-settings-update-versions`,"aria-label":`${c.currentVersion} ${me}; ${c.latestVersion} ${he}`,children:[(0,K.jsx)(`span`,{children:me}),ge&&(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`span`,{className:`code-settings-update-arrow`,"aria-hidden":`true`,children:`→`}),(0,K.jsx)(`strong`,{children:H})]})]}),(0,K.jsxs)(`div`,{className:`code-settings-update-summary ${v?.available?`available`:``} ${V?`phase-${V}`:``}`,role:`status`,"aria-live":`polite`,children:[de&&(0,K.jsxs)(K.Fragment,{children:[(0,K.jsx)(`span`,{children:fe}),(0,K.jsx)(`span`,{"aria-hidden":`true`,children:` · `})]}),(0,K.jsx)(`span`,{children:_e})]})]}),(0,K.jsxs)(`div`,{className:`code-settings-update-actions`,children:[(0,K.jsx)(`button`,{type:`button`,className:`code-settings-update-refresh`,onClick:()=>R(!0),disabled:ue,"aria-label":c.refreshUpdates,title:c.refreshUpdates,children:`↻`}),(0,K.jsx)(`button`,{type:`button`,className:`primary`,"data-testid":`code-settings-update-action`,onClick:B,disabled:ue||!ce?.available,children:ve})]}),pe&&(0,K.jsxs)(`label`,{className:`code-settings-update-url`,children:[(0,K.jsx)(`span`,{children:c.updateSource}),(0,K.jsx)(`input`,{type:`url`,name:`farming-update-url`,inputMode:`url`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`done`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,value:m,placeholder:c.updateUrlPlaceholder,"aria-label":c.updateUrl,onChange:e=>h(e.target.value),disabled:ue})]}),pe&&(0,K.jsx)(`button`,{type:`button`,className:`code-settings-update-save`,onClick:ne,disabled:ue,children:c.saveUpdateUrl}),se.length>1&&(0,K.jsx)(`label`,{className:`code-settings-update-version`,children:(0,K.jsx)(`select`,{value:b,"aria-label":c.targetVersion,onChange:e=>x(e.target.value),disabled:ue||se.length===0,children:se.map(e=>(0,K.jsxs)(`option`,{value:e.assetName||``,children:[e.version||e.assetName||`-`,e.assetName&&e.assetName!==e.version?` · ${e.assetName}`:``]},e.assetName||e.version))})})]})]}),(0,K.jsxs)(`section`,{className:`code-settings-section`,children:[(0,K.jsx)(`div`,{className:`code-settings-section-heading`,children:(0,K.jsx)(`div`,{children:(0,K.jsx)(`h3`,{children:c.agentPermissions})})}),(0,K.jsxs)(`div`,{className:`code-settings-choice-row dangerous`,children:[(0,K.jsx)(`span`,{children:c.dangerousSkipLabel}),(0,K.jsx)(`button`,{type:`button`,className:`code-settings-permission-toggle ${f?`active`:``}`,role:`checkbox`,"aria-label":c.dangerousSkipLabel,"aria-pressed":f,disabled:A,onClick:()=>re(!f),children:(0,K.jsx)(ke,{})})]})]}),(0,K.jsxs)(`section`,{className:`code-settings-section`,children:[(0,K.jsxs)(`div`,{className:`code-settings-section-heading`,children:[(0,K.jsxs)(`div`,{children:[(0,K.jsx)(`h3`,{children:c.agentHomes}),(0,K.jsx)(`p`,{children:c.agentHomesHint})]}),(O||A||M)&&(0,K.jsx)(`span`,{className:`code-settings-status`,children:O?c.loading:A?c.saving:M})]}),P&&(0,K.jsx)(`div`,{className:`code-settings-error`,role:`alert`,children:P}),oe.length===0&&(0,K.jsx)(`div`,{className:`code-agent-home-empty`,children:c.noAgents}),(0,K.jsx)(`div`,{className:`code-agent-homes-list`,children:oe.map(e=>{let t=RN(E,e),n=IN(a).includes(e),r=t.find(e=>e.id.toLowerCase()===`default`),i=t.filter(e=>e.id.toLowerCase()!==`default`);return(0,K.jsxs)(`div`,{className:`code-agent-home-provider`,children:[(0,K.jsxs)(`div`,{className:`code-agent-home-provider-header`,children:[(0,K.jsxs)(`div`,{className:`code-agent-home-provider-title`,children:[(0,K.jsxs)(`strong`,{children:[NN(e),n?``:` · ${c.unavailable}`]}),r&&(0,K.jsxs)(`span`,{title:r.path,children:[r.path,` default`]})]}),(0,K.jsx)(`button`,{type:`button`,className:`code-agent-home-add`,onClick:()=>{F(``),N(``),I(BN(e))},"aria-label":c.addHome(NN(e)),title:c.addHome(NN(e)),children:(0,K.jsx)(Ne,{})})]}),i.map(t=>(0,K.jsxs)(`div`,{className:`code-agent-home-row`,children:[(0,K.jsx)(`div`,{className:`code-agent-home-path`,title:t.path,children:t.path}),(0,K.jsx)(`div`,{className:`code-agent-home-id`,children:t.id}),(0,K.jsx)(`div`,{className:`code-agent-home-actions`,children:(0,K.jsx)(`button`,{type:`button`,onClick:()=>ae(e,t.id),"aria-label":c.remove,title:c.remove,children:(0,K.jsx)(Se,{})})})]},t.id)),ee&&ee.provider===e&&(0,K.jsxs)(`div`,{className:`code-agent-home-form`,children:[(0,K.jsxs)(`label`,{children:[(0,K.jsx)(`span`,{children:c.homePath}),(0,K.jsx)(`input`,{type:`text`,name:`farming-agent-home-${e}-path`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`next`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,value:ee.path,placeholder:c.pathPlaceholder,"aria-label":c.homePath,onChange:e=>I(t=>t&&{...t,path:e.target.value})})]}),(0,K.jsxs)(`label`,{children:[(0,K.jsx)(`span`,{children:c.homeName}),(0,K.jsx)(`input`,{type:`text`,name:`farming-agent-home-${e}-name`,inputMode:`text`,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`none`,spellCheck:!1,enterKeyHint:`done`,"data-lpignore":`true`,"data-1p-ignore":`true`,"data-bwignore":`true`,"data-form-type":`other`,value:ee.id,placeholder:c.homeNamePlaceholder,"aria-label":c.homeName,onChange:e=>I(t=>t&&{...t,id:e.target.value})}),(0,K.jsx)(`span`,{children:c.homeNameHint})]}),(0,K.jsxs)(`div`,{className:`code-agent-home-form-actions`,children:[(0,K.jsx)(`button`,{type:`button`,onClick:()=>I(null),"aria-label":c.cancel,title:c.cancel,children:(0,K.jsx)(Se,{})}),(0,K.jsx)(`button`,{type:`button`,className:`primary`,disabled:A,onClick:ie,"aria-label":c.save,title:c.save,children:(0,K.jsx)(ke,{})})]})]})]},e)})})]})]})]})})}var HN=`\r`;function UN(e){return[{type:`paste`,text:e},HN]}var WN={newAgent:`New Agent`,search:`Search`,history:`History`,codex:`Farming Code`,expandSidebar:`Expand sidebar`,collapseSidebar:`Collapse sidebar`,enterFocusMode:`Enter focus mode`,exitFocusMode:`Exit focus mode`,appModeOpen:`App mode and fullscreen`,appModeTitle:`Use Farming without browser controls`,appModeDescription:`Install Farming for a clean app window, or use fullscreen temporarily.`,appModeRecommended:`Recommended`,appModeInstallTitle:`Install Farming 2`,appModeInstallDescription:`Opens as its own window without tabs, the address bar, or browser extensions.`,appModeInstallAction:`Install Farming 2`,appModeInstallStepOne:`Open Chrome’s ⋮ menu, then choose “Cast, save and share”.`,appModeInstallStepTwo:`Choose “Install page as app”, then open Farming 2 from its app icon.`,appModeFullscreenTitle:`Fullscreen for now`,appModeFullscreenDescription:`Hide browser controls for this window. Press Esc to leave fullscreen.`,terminalView:`Terminal`,transcriptView:`Chat`,collapseComposer:`Hide input`,restoreComposer:`Show input`,codexTranscriptSyncing:`Syncing chat history...`,codexTranscriptUnavailable:`This session’s Chat history could not be loaded.`,codexTranscriptEmpty:``,codexTranscriptWaiting:`Agent is still working...`,codexTranscriptProcess:`Worked`,codexTranscriptWorking:`Processing`,codexTranscriptThinking:`Thinking`,codexTranscriptRunning:`Running`,codexTranscriptReading:`Reading`,codexTranscriptSearching:`Searching`,codexTranscriptEditing:`Editing`,codexTranscriptPlanActive:`On plan`,codexTranscriptPlanProgress:(e,t)=>`Plan ${e}/${t}`,codexTranscriptFetching:`Fetching`,codexTranscriptUsingTool:`Using tool`,codexTranscriptWorkedFor:e=>`Worked for ${e}`,codexTranscriptProcessCount:e=>`${e} ${e===1?`event`:`events`}`,codexTranscriptCopyDetails:`Copy details`,codexTranscriptCopiedDetails:`Copied`,codexTranscriptCopyAnswer:`Copy answer`,codexTranscriptCopiedAnswer:`Copied answer`,codexTranscriptReviewChanges:`Review`,codexTranscriptShowChanges:`Show file changes`,codexTranscriptLoadingChanges:`Loading exact changes…`,codexTranscriptKeepChange:`Keep`,codexTranscriptRevertChange:`Revert`,codexTranscriptChangeKept:`Kept`,codexTranscriptChangeReverted:`Reverted`,codexTranscriptShowMoreFiles:e=>`Show ${e} more file${e===1?``:`s`}`,codexGoalTitle:`Goal`,codexGoalEmpty:`No active goal`,codexGoalOpen:`Open goal controls`,codexGoalObjective:`Objective`,codexGoalStatus:`Status`,codexGoalTokenBudget:`Token budget`,codexGoalNoBudget:`No budget`,codexGoalUsage:(e,t)=>`${e.toLocaleString()} tokens · ${Math.round(t/60)}m`,codexGoalStatusLabel:e=>({active:`Active`,paused:`Paused`,blocked:`Blocked`,usageLimited:`Usage limited`,budgetLimited:`Budget limited`,complete:`Complete`})[e]??e,codexGoalEdit:`Edit`,codexGoalStart:`Start`,codexGoalStop:`Stop`,codexGoalDelete:`Delete`,codexGoalSave:`Save goal`,codexGoalClear:`Clear`,codexGoalSaving:`Saving...`,codexGoalUnsupported:`Native goal controls require a Codex App Server session.`,searchProjectsOrAgents:`Search projects or agents`,clearSearch:`Clear search`,projectsAndAgents:`Projects and agents`,noAgentsYet:`No agents yet.`,noMatchingProjectsOrAgents:`No matching projects or agents.`,openNavigation:`Open navigation`,closeNavigation:`Close navigation`,resizeNavigation:`Resize navigation`,openOptions:`Open options`,openSettings:`Settings`,agentActions:`Agent actions`,appearanceLight:`Appearance: Light`,appearanceDark:`Appearance: Dark`,languageEnglish:`Language: English`,languageChinese:`Language: 中文`,pinAgent:`Pin Agent`,unpinAgent:`Unpin Agent`,pinProject:`Pin project`,unpinProject:`Unpin project`,revealInFinder:`Reveal in Finder`,revealInFinderFailed:`Failed to reveal project in Finder`,createPermanentWorktree:`Create permanent worktree`,permanentWorktreeCreated:`Permanent worktree created`,permanentWorktreeFailed:`Failed to create permanent worktree`,markAllAsRead:`Mark all as read`,renameAgent:`Rename Agent`,renameProject:`Rename project`,archiveAgent:`Archive`,reorderAgentFailed:`Failed to reorder Agent`,markAsRead:`Mark as read`,markAsUnread:`Mark as unread`,copyWorkingDirectory:`Copy working directory`,copiedWorkingDirectory:`Copied working directory`,copyFailed:`Copy failed`,sharePage:`Share page`,scanToOpenOnPhone:`Scan to open on phone`,copyFullShareLink:`Copy full link`,copiedShareLink:`Copied full link`,shareLinkFailed:`Share link unavailable`,sharedLocationUnavailable:e=>`Unable to locate shared path: ${e}`,shareLinkExpired:`Expired`,refreshShareLink:`Refresh`,brandStoryOrigin:`Farming Code began with a simple idea: when several coding agents work at once, people should not have to bounce between terminals, editors, and browser tabs.`,brandStoryPurpose:`It brings conversations, terminals, project files, and progress into one calm workspace, so attention stays on what matters.`,brandGithub:`GitHub`,mobileShareTitle:`Share page`,mobileForwardTitle:`Send this page`,mobileForwardHint:`Copy the link to send the current view to someone else.`,mobileShareCopyAction:`Copy link`,mobileShareCopied:`Copied`,mobileInstallTitle:`Add to Home Screen`,mobileInstallChromeHint:`Make sure this page is open in your system browser or Chrome.`,mobileInstallShareStep:`Tap Share in the browser toolbar.`,mobileInstallMoreStep:`If it is hidden, tap •••, then Share.`,mobileInstallAddStep:`Choose “Add to Home Screen”.`,mobileInstallOpenStep:`Open Farming from its Home Screen icon next time.`,mobileShareInstalled:`Farming is already open as a Home Screen app.`,forkSameWorktree:`Fork into same worktree`,forkNewWorktree:`Fork into new worktree`,newWorktreeFork:`Forked to new worktree`,scheduledTask:`Scheduled task`,killAgent:`Kill Agent`,killAgentQuestion:`Kill Agent?`,openSession:`Open Session`,pinChat:`Pin chat`,unpinChat:`Unpin chat`,archiveChat:`Archive`,archiveChats:`Archive chats`,archiveProject:`Archive Project`,removeProject:`Remove Project`,deleteWorktree:`Permanently Delete Worktree`,deleteWorktreeQuestion:`Permanently delete worktree?`,deleteWorktreeDescription:`This permanently deletes the worktree and all of its files.`,forceDelete:`Permanently Delete`,cancel:`Cancel`,retry:`Retry`,save:`Save`,stopAgentDescription:e=>`Stop ${e} and close its terminal.`,permissionModeLabel:(e,t)=>t,permissionModeDescription:(e,t)=>t,acpModeLabel:(e,t)=>({"read-only":`Read-only`,agent:`Workspace`,"agent-full-access":`Full access`,auto:`Auto`,default:`Manual`,acceptEdits:`Accept edits`,plan:`Plan`,dontAsk:`Don't ask`,bypassPermissions:`Bypass permissions`,build:`Build`})[e]??t,acpModeDescription:(e,t)=>({"read-only":`Read and analyze by default. File writes and commands that need more access require approval. Network access is off.`,agent:`Read and write inside this workspace and run sandboxed commands. Network and out-of-workspace access require approval.`,"agent-full-access":`Access files outside this workspace and use the network without approval prompts. Use only in a trusted environment.`,auto:`Use the model classifier to approve or deny permission requests.`,default:`Prompt before operations that require approval.`,acceptEdits:`Approve file edits automatically; ask about other operations that need permission.`,plan:`Plan and inspect without modifying files.`,dontAsk:`Do not show permission prompts; deny operations that were not already allowed.`,bypassPermissions:`Bypass permission checks. Use only in a trusted environment.`,build:`Run tools according to the permissions configured for this Agent.`})[e]??t,reasoningOptionLabel:(e,t)=>t,serviceTierLabel:(e,t)=>t,serviceTierDescription:(e,t)=>t,messageMode:`Message`,goalMode:`Goal`,planMode:`Plan`,askFollowUpChanges:`Ask for follow-up changes`,shellCommandPlaceholder:`Type a shell command`,describeAgentGoal:`Describe the goal for this agent`,describePlanFirst:`Describe what should be planned first`,openAgentTerminalFirst:`Open an agent terminal first`,queuedMessages:e=>`${e} queued messages`,steerQueuedMessage:`Steer`,discardQueuedMessage:`Discard queued message`,addContext:`Add context`,attachFile:`Attach file`,fileContext:`File context`,setObjective:`Set objective`,planFirst:`Plan first`,clearComposerMode:`Clear composer mode`,agentPermissionMode:`Agent permission mode`,permissionsPrompt:`Launch permission profile`,permissionProfileSavedForNextLaunch:`Saved for new agents. Running sessions keep the permissions they launched with.`,permissionProfileRestarting:`Switching agent permissions…`,permissionProfileApplying:`Applying App Server permissions…`,runtimeModeRestarting:`Restarting Agent…`,terminalProfileApplying:`Applying model to Codex Terminal…`,terminalProfileApplied:`Codex Terminal model updated.`,terminalProfileFailed:e=>`Codex Terminal model was not changed: ${e}`,agentRestartTimedOut:`Agent restart timed out. The previous Agent remains available; try switching again.`,permissionRestartHint:`The running agent restarts to apply these permissions. If it has no resumable session id yet, a fresh session starts.`,permissionAppServerHint:`Applies to this App Server thread without restarting the Agent. New permissions take effect for subsequent turns.`,modelAndReasoning:`Model and reasoning`,reasoning:`Reasoning`,speed:`Speed`,startDictation:`Start dictation`,stopDictation:`Stop dictation`,speechUnsupported:`Speech recognition is not supported in this browser`,mobileDictationHint:`Use the microphone key on the iOS keyboard to dictate.`,sendMessage:`Send message`,interruptAgent:`Interrupt agent`,startOrSelectAgent:`Start or select an agent`,startOrSelectAgentDescription:`Projects live on the left. Open any agent terminal without closing the rest of the workspace.`,historySummary:(e,t,n,r)=>`${n+r} history agents`,searchHistory:`Search history`,noHistoryYet:`No history yet`,noHistoryDescription:`Agents moved off the main page will appear here.`,historyAgents:`History Agents`,historyPagination:`History pages`,historyPageStatus:(e,t,n,r)=>`${e} / ${t}${r?`+`:``} · ${n} loaded`,previousPage:`Previous page`,nextPage:`Next page`,agentSessions:`Agent Sessions`,recentWorkspaces:`Recent Workspaces`,agentsSessionsSummary:(e,t)=>`${e} agents · ${t} sessions`,restore:`Restore`,continueRun:`Continue`,open:`Open`,archived:`Archived`,pinned:`Pinned`,unread:`Unread`,showMore:`Show more`,showLess:`Show less`,showAgents:`Show agents`,hideAgents:`Hide agents`,latest:`Latest`,upgrade:`UPGRADE`,updating:`UPDATING`,retryUpdate:`RETRY`,checkForUpdates:`Check for updates`,updateFailed:`Update failed`,upgradeToVersion:e=>e?`Upgrade to ${e}`:`Upgrade Farming Code`,sessionFallbackTitle:e=>`${e||`Agent`} session`,resumeSessionAria:e=>`Resume ${e}`,resultsCount:e=>`${e} results`,noMatchingAgents:`No matching agents`,searchHint:`Search by Agent title, session title, or project.`,searchEmptyTitle:`Start a search`,searchEmptyDescription:`Type an Agent title, session title, or project name or path.`,agents:`Agents`,files:`Files`,changes:`Changes`,changedFiles:`Changed files`,trackedChanges:`Tracked`,untrackedChanges:`Untracked`,reviewChanges:`Review`,refreshChanges:`Refresh changes`,worktrees:`Worktrees`,showWorktrees:`Show repository worktrees`,worktreeCurrent:`current`,worktreeMain:`main`,worktreeDetached:`detached`,worktreeLocked:`locked`,worktreePrunable:`prunable`,worktreeLoadFailed:`Unable to load repository worktrees`,gitHistory:`History`,gitHistoryEmpty:`No commits yet`,gitHistoryNotRepository:`This project is not a Git repository`,gitHistoryLoadMore:`Load more`,gitHistoryView:`History view`,gitHistoryCurrentScope:`Current`,gitHistoryAllScope:`All`,gitHistoryCurrentBranch:`Current branch`,gitHistoryAllBranches:`All branches`,gitHistoryCommitMessage:`Message`,gitHistoryParent:`Compare with parent`,gitHistoryRootCommit:`Root commit`,gitHistoryReviewCommit:`Review commit`,gitHistoryCommitChanges:e=>`${e} file${e===1?``:`s`} changed`,gitHistoryNoChanges:`No file changes`,gitHistoryChangesTruncated:`More changed files were omitted`,searchOrPathLine:`Search or path:line`,searchFilesOrJump:`Search files or jump to path line`,openEditors:`OPEN EDITORS`,loading:`Loading...`,searching:`Searching...`,noMatches:`No matches`,searchIgnoredFolders:`Also search ignored folders`,searchIncomplete:e=>`Search stopped early. Current timeout: ${Math.round(e/1e3)}s.`,terminalSearchPlaceholder:`Find in terminal`,terminalSearchPrevious:`Previous match`,terminalSearchNext:`Next match`,terminalSearchClose:`Close terminal search`,terminalSearchCaseSensitive:`Match case`,terminalSearchWholeWord:`Match whole word`,terminalSearchRegex:`Use regular expression`,terminalSearchNoResults:`No results`,terminalSearchResults:(e,t)=>`${e}/${t}`,terminalSessionUnavailable:`Terminal session unavailable`,appServerWaitingForFirstMessage:`App Server is ready. Send the first Composer message to start the shared Codex CLI terminal.`,appServerRequestTitle:`Codex needs your input`,appServerRequestCommand:`Requested command`,appServerRequestQuestion:`Question`,appServerRequestApprove:`Allow`,appServerRequestDecline:`Decline`,appServerRequestSubmit:`Submit answer`,appServerRequestUnsupported:`This Codex request is not supported in Farming. Declining it will let the turn continue safely.`,appServerApprovalRejectedTitle:`Permission request declined`,appServerApprovalRejectedDescription:`Chat does not approve this permission request. Increase this Agent permission mode, or handle it in Terminal view.`,acpPermissionTitle:`Agent needs permission`,acpPermissionTool:`Requested tool`,file:`File`,folder:`Folder`,go:`Go`,moreMatchesOmitted:`More matches omitted`,stickyFolderPath:`Sticky folder path`,containsUncommittedChanges:`Contains uncommitted changes`,changedOnDisk:`Changed on disk`,unsavedChanges:`Unsaved changes`,gitStatus:e=>`Git status: ${e}`,renameEntry:e=>`Rename ${e}`,newFile:`New File`,newFolder:`New Folder`,refreshFiles:`Refresh files`,refreshingFiles:`Refreshing files…`,filesRefreshed:`Files refreshed`,filesRefreshFailed:`Files refresh failed`,refresh:`Refresh`,rename:`Rename`,copyRelativePath:`Copy Relative Path`,copyShareUrl:`Copy Share URL`,delete:`Delete`,deleteFolderContents:e=>`Delete folder and all contents: ${e||``}`,deleteFile:e=>`Delete file: ${e||``}`,saveFile:`Save file`,savingFile:`Saving file`,reloadFile:`Reload file`,overwriteChangedFile:`Overwrite changed file`,openFileDiff:`Open File Diff`,openFileDiffFor:e=>`Open diff for ${e}`,closeDiff:`Close diff`,openFilePreview:`Open preview`,showFileSource:`Show source`,enableWordWrap:`Enable word wrap`,disableWordWrap:`Disable word wrap`,openMarkdownPreview:`Open Markdown preview`,showMarkdownSource:`Show Markdown source`,openMarkdownSplitPreview:`Open Markdown preview to side`,closeMarkdownSplitPreview:`Close Markdown side preview`,markdownPreviewFor:e=>`Markdown preview for ${e}`,markdownFrontMatter:`Front matter`,markdownHeadingAnchor:`Link to heading`,mermaidDiagram:`Mermaid diagram`,mermaidDiagramControls:`Mermaid diagram controls`,mermaidRendering:`Rendering diagram...`,mermaidRenderFailed:`Unable to render Mermaid diagram`,mermaidZoomIn:`Zoom in`,mermaidZoomOut:`Zoom out`,mermaidPanMode:`Toggle pan mode`,mermaidEnterFullscreen:`Open fullscreen diagram`,mermaidExitFullscreen:`Close fullscreen diagram`,mermaidResetView:`Reset view`,mermaidCopySource:`Copy Mermaid source`,mermaidCopiedSource:`Copied Mermaid source`,fileDiff:`File Diff`,loadingDiff:`Loading diff...`,noFileDiff:`No file changes.`,diffUnavailable:`Diff content is unavailable for this file.`,binaryDiffUnavailable:`Binary file diff is unavailable.`,diffTooLarge:`Diff is too large to display.`,deletedFileDiffOnly:`This deleted file is only available as a diff.`,showGitBlame:`Show git blame`,hideGitBlame:`Hide git blame`,gitBlameAnnotations:`Git blame annotations`,gitBlameDetails:`Git blame details`,filePath:`File path`,editorFor:e=>`Editor for ${e}`,revealInExplorer:e=>`Reveal ${e} in Explorer`,previewFor:e=>`Preview for ${e}`,author:`Author`,commit:`Commit`,date:`Date`,line:`Line`,unknown:`Unknown`,uncommitted:`Uncommitted`,closeBlameDetails:`Close blame details`,cut:`Cut`,copy:`Copy`,paste:`Paste`,selectAll:`Select All`,annotateWithBlame:`Annotate with Blame`,hideBlame:`Hide Blame`,openLineChangesWithPreviousRevision:`Open Line Changes with Previous Revision`,openLineChangesWithWorkingFile:`Open Line Changes with Working File`,lineChanges:`Line changes`,loadingLineChanges:`Loading line changes...`,noLineChanges:`No line changes for this line.`,closeLineChanges:`Close line changes`,close:`Close`,closeFile:e=>`Close ${e}`,closeOthers:`Close Others`,closeToRight:`Close to the Right`,closeSaved:`Close Saved`,closeAll:`Close All`,saveBeforeCloseTitle:e=>`Save changes to ${e}?`,saveBeforeCloseDescription:`If you do not save, your changes will be lost.`,dontSave:`Don't Save`,loadingBlame:`Loading blame...`,notGitRepository:`Not a git repository.`,noCommittedLines:`No committed lines.`,cursorPosition:(e,t)=>`Ln ${e}, Col ${t}`,startMainAgent:`Start Main Agent`,startNewAgent:`Start New Agent`,loadingAgents:`Loading agents...`,agentListUnavailable:`Agent list unavailable.`,noSupportedAgentsFound:`No supported agents found.`,resumePreviousMainAgent:`Resume previous Main Agent`,codingAgents:`coding agents`,otherAgents:`Shell`,workspace:`Workspace:`,workspacePathPlaceholder:`/path/to/workspace`,chooseWorkspaceDirectory:`Choose workspace folder`,workspaceDirectoryBrowserFailed:`Couldn’t read this directory.`,workspaceDirectoryBrowserHostHint:`Browse folders on the Farming host.`,workspaceDirectoryBrowserGo:`Go to directory`,workspaceDirectoryBrowserParent:`Parent directory`,workspaceDirectoryBrowserEmpty:`No subdirectories.`,workspaceDirectoryBrowserTruncated:`Only the first 500 folders are shown. Enter a more specific path to continue.`,workspaceDirectoryBrowserSelect:`Select this folder`,workspaceMissingTitle:`Create this workspace?`,workspaceMissingDescription:`This directory does not exist yet. Farming can create it and start the Agent there.`,workspaceCreateAndStart:`Create & Start`,workspaceCreating:`Creating...`,workspaceCreateFailedTitle:`Couldn’t create workspace`,workspaceCreateForbiddenDescription:`Farming does not have permission to create this directory. Choose another location or update the parent directory permissions.`,workspaceCreateFailedDescription:`Farming couldn’t create this directory. Check the path and try again.`,returnToWorkspace:`Change Path`,recentWorkspacesLower:`recent workspaces`,start:`Start`,back:`Back`,backToAgent:`Back to Agent`,goBack:`Go Back`,goForward:`Go Forward`,backendConnecting:`Connecting to Farming backend...`,backendConnectionLost:`Farming backend disconnected. Reconnecting...`,backendHeartbeatLost:`No Farming backend heartbeat. Waiting for it to recover...`},GN={newAgent:`新建 Agent`,search:`搜索`,history:`历史`,codex:`Farming Code`,expandSidebar:`展开侧边栏`,collapseSidebar:`收起侧边栏`,enterFocusMode:`进入沉浸模式`,exitFocusMode:`退出沉浸模式`,appModeOpen:`应用模式与全屏`,appModeTitle:`隐藏浏览器控制`,appModeDescription:`安装 Farming 获得干净的应用窗口,也可以临时进入全屏。`,appModeRecommended:`推荐`,appModeInstallTitle:`安装 Farming 2`,appModeInstallDescription:`以后从独立窗口打开,不显示标签栏、地址栏和浏览器扩展。`,appModeInstallAction:`安装 Farming 2`,appModeInstallStepOne:`打开 Chrome 右上角 ⋮,选择“投放、保存和分享”。`,appModeInstallStepTwo:`选择“将网页安装为应用”,以后从 Farming 2 应用图标打开。`,appModeFullscreenTitle:`暂时全屏`,appModeFullscreenDescription:`只为当前窗口隐藏浏览器控制,按 Esc 即可退出。`,terminalView:`终端`,transcriptView:`对话`,collapseComposer:`收起输入框`,restoreComposer:`唤出输入框`,codexTranscriptSyncing:`正在同步聊天历史...`,codexTranscriptUnavailable:`无法加载此会话的 Chat 历史。`,codexTranscriptEmpty:``,codexTranscriptWaiting:`Agent 仍在工作...`,codexTranscriptProcess:`执行过程`,codexTranscriptWorking:`处理中`,codexTranscriptThinking:`思考中`,codexTranscriptRunning:`运行命令中`,codexTranscriptReading:`读取文件中`,codexTranscriptSearching:`搜索中`,codexTranscriptEditing:`修改文件中`,codexTranscriptPlanActive:`执行计划中`,codexTranscriptPlanProgress:(e,t)=>`执行计划 ${e}/${t}`,codexTranscriptFetching:`获取信息中`,codexTranscriptUsingTool:`调用工具中`,codexTranscriptWorkedFor:e=>`Worked for ${e}`,codexTranscriptProcessCount:e=>`${e} 个事件`,codexTranscriptCopyDetails:`复制详情`,codexTranscriptCopiedDetails:`已复制`,codexTranscriptCopyAnswer:`复制答复`,codexTranscriptCopiedAnswer:`已复制答复`,codexTranscriptReviewChanges:`Review`,codexTranscriptShowChanges:`展开文件改动`,codexTranscriptLoadingChanges:`正在加载准确改动…`,codexTranscriptKeepChange:`保留`,codexTranscriptRevertChange:`撤销`,codexTranscriptChangeKept:`已保留`,codexTranscriptChangeReverted:`已撤销`,codexTranscriptShowMoreFiles:e=>`显示另外 ${e} 个文件`,codexGoalTitle:`目标`,codexGoalEmpty:`没有活动目标`,codexGoalOpen:`打开目标控制`,codexGoalObjective:`目标内容`,codexGoalStatus:`状态`,codexGoalTokenBudget:`Token 预算`,codexGoalNoBudget:`不限制`,codexGoalUsage:(e,t)=>`${e.toLocaleString()} tokens · ${Math.round(t/60)} 分钟`,codexGoalStatusLabel:e=>({active:`进行中`,paused:`已暂停`,blocked:`已阻塞`,usageLimited:`用量受限`,budgetLimited:`预算受限`,complete:`已完成`})[e]??e,codexGoalEdit:`编辑`,codexGoalStart:`启动`,codexGoalStop:`停止`,codexGoalDelete:`删除`,codexGoalSave:`保存目标`,codexGoalClear:`清除`,codexGoalSaving:`保存中...`,codexGoalUnsupported:`原生目标控制需要 Codex App Server 会话。`,searchProjectsOrAgents:`搜索项目或 Agent`,clearSearch:`清空搜索`,projectsAndAgents:`项目与 Agent`,noAgentsYet:`还没有 Agent。`,noMatchingProjectsOrAgents:`没有匹配的项目或 Agent。`,openNavigation:`打开导航`,closeNavigation:`关闭导航`,resizeNavigation:`调整导航宽度`,openOptions:`打开选项`,openSettings:`设置`,agentActions:`Agent 操作`,appearanceLight:`外观:浅色`,appearanceDark:`外观:深色`,languageEnglish:`语言:English`,languageChinese:`语言:中文`,pinAgent:`置顶 Agent`,unpinAgent:`取消置顶`,pinProject:`置顶项目`,unpinProject:`取消置顶项目`,revealInFinder:`在访达中显示`,revealInFinderFailed:`无法在访达中显示项目`,createPermanentWorktree:`创建永久 worktree`,permanentWorktreeCreated:`已创建永久 worktree`,permanentWorktreeFailed:`创建永久 worktree 失败`,markAllAsRead:`全部标为已读`,renameAgent:`重命名 Agent`,renameProject:`重命名项目`,archiveAgent:`归档`,reorderAgentFailed:`调整 Agent 顺序失败`,markAsRead:`标为已读`,markAsUnread:`标为未读`,copyWorkingDirectory:`复制工作目录`,copiedWorkingDirectory:`已复制工作目录`,copyFailed:`复制失败`,sharePage:`分享页面`,scanToOpenOnPhone:`手机扫码打开`,copyFullShareLink:`复制完整链接`,copiedShareLink:`已复制完整链接`,shareLinkFailed:`分享链接不可用`,sharedLocationUnavailable:e=>`无法定位分享路径:${e}`,shareLinkExpired:`已过期`,refreshShareLink:`刷新`,brandStoryOrigin:`Farming Code 从一个简单的问题出发:当多个 Coding Agent 同时工作,人不该在终端、编辑器和浏览器标签页之间反复切换。`,brandStoryPurpose:`它把对话、终端、项目文件与进展放在一个安静的工作空间里,让注意力留在真正重要的事情上。`,brandGithub:`GitHub`,mobileShareTitle:`分享页面`,mobileForwardTitle:`转发当前页面`,mobileForwardHint:`复制链接,发送给其他人。`,mobileShareCopyAction:`复制链接`,mobileShareCopied:`已复制`,mobileInstallTitle:`添加到主屏幕`,mobileInstallChromeHint:`确认已使用系统浏览器或 Chrome 打开当前页面。`,mobileInstallShareStep:`点浏览器工具栏里的“分享”。`,mobileInstallMoreStep:`没看到时,点 •••,再点“分享”。`,mobileInstallAddStep:`选择“添加到主屏幕”。`,mobileInstallOpenStep:`以后从主屏幕的 Farming 图标进入。`,mobileShareInstalled:`Farming 已经作为主屏幕 App 打开。`,forkSameWorktree:`在同一 worktree 分叉`,forkNewWorktree:`分叉到新 worktree`,newWorktreeFork:`已分叉到新 worktree`,scheduledTask:`周期任务`,killAgent:`停止 Agent`,killAgentQuestion:`停止 Agent?`,openSession:`打开会话`,pinChat:`置顶会话`,unpinChat:`取消置顶会话`,archiveChat:`归档`,archiveChats:`归档会话`,archiveProject:`归档项目`,removeProject:`移除项目`,deleteWorktree:`彻底删除 worktree`,deleteWorktreeQuestion:`彻底删除 worktree?`,deleteWorktreeDescription:`这会彻底删除该 worktree 及其中的所有文件。`,forceDelete:`彻底删除`,cancel:`取消`,retry:`重试`,save:`保存`,stopAgentDescription:e=>`停止 ${e} 并关闭它的终端。`,permissionModeLabel:(e,t)=>({ask:`请求批准`,approve:`自动批准`,full:`完全访问`,custom:`自定义`,default:`默认`,auto:`自动`,acceptEdits:`接受编辑`,dontAsk:`不询问`,plan:`计划`,bypassPermissions:`绕过权限`})[e]??t,permissionModeDescription:(e,t)=>({ask:`新 Codex 会话以 workspace-write 沙箱启动,并对不可信操作询问`,approve:`新 Codex 会话以 workspace-write 沙箱启动,并在 Codex 请求时询问`,full:`新 Codex 会话绕过批准和沙箱;仅用于可信沙箱`,custom:`新 Codex 会话使用 config.toml 中定义的权限`,default:`新 Claude Code 会话使用默认设置`,auto:`新 Claude Code 会话以 auto 权限模式启动`,acceptEdits:`新 Claude Code 会话允许文件编辑,其他高风险操作仍会询问`,dontAsk:`新 Claude Code 会话在支持时尽量避免交互式批准`,plan:`新 Claude Code 会话以计划权限模式启动`,bypassPermissions:`新 Claude Code 会话绕过权限检查;仅用于可信沙箱`})[e]??t,acpModeLabel:(e,t)=>({"read-only":`只读`,agent:`工作区`,"agent-full-access":`完全访问`,auto:`自动`,default:`手动批准`,acceptEdits:`接受编辑`,plan:`计划`,dontAsk:`不询问`,bypassPermissions:`绕过权限`,build:`执行`})[e]??t,acpModeDescription:(e,t)=>({"read-only":`默认只读和分析;写文件或运行需要更高权限的命令时会请求批准,网络默认关闭`,agent:`可在当前工作区内读写文件并运行沙箱命令;使用网络或访问工作区外内容时会请求批准`,"agent-full-access":`可访问工作区外文件并使用网络,且不再请求批准;仅用于可信环境`,auto:`由模型分类器自动批准或拒绝权限请求`,default:`需要权限的操作会先请求批准`,acceptEdits:`自动批准文件编辑;其他需要权限的操作仍会询问`,plan:`只进行规划和检查,不修改文件`,dontAsk:`不弹出权限询问;未经预先允许的操作会直接拒绝`,bypassPermissions:`绕过权限检查;仅用于可信环境`,build:`按照该 Agent 已配置的权限执行工具`})[e]??t,reasoningOptionLabel:(e,t)=>({config:`使用配置`,low:`低`,medium:`中`,high:`高`,xhigh:`超高`,max:`最高`})[e]??t,serviceTierLabel:(e,t)=>({default:`标准`,priority:`快`,flex:`弹性`})[e]??t,serviceTierDescription:(e,t)=>({default:`默认速度`,priority:`1.5 倍速度,用量增加`})[e]??t,messageMode:`消息`,goalMode:`目标`,planMode:`计划`,askFollowUpChanges:`输入后续修改要求`,shellCommandPlaceholder:`输入 Shell 命令`,describeAgentGoal:`描述这个 Agent 的目标`,describePlanFirst:`描述需要先规划的事情`,openAgentTerminalFirst:`先打开一个 Agent 终端`,queuedMessages:e=>`${e} 条排队消息`,steerQueuedMessage:`引导`,discardQueuedMessage:`丢弃排队消息`,addContext:`添加上下文`,attachFile:`附加文件`,fileContext:`文件上下文`,setObjective:`设置目标`,planFirst:`先做计划`,clearComposerMode:`清除输入模式`,agentPermissionMode:`Agent 权限模式`,permissionsPrompt:`启动权限 profile`,permissionProfileSavedForNextLaunch:`已保存给新 Agent。运行中的会话保留启动时的权限。`,permissionProfileRestarting:`正在切换 Agent 权限…`,permissionProfileApplying:`正在应用 App Server 权限…`,runtimeModeRestarting:`正在重启 Agent…`,terminalProfileApplying:`正在应用 Codex Terminal 模型…`,terminalProfileApplied:`Codex Terminal 模型已更新。`,terminalProfileFailed:e=>`Codex Terminal 模型未修改:${e}`,agentRestartTimedOut:`Agent 重启超时。原 Agent 仍然可用,请重新切换。`,permissionRestartHint:`运行中的 Agent 会重启以应用权限;如果还没有可 resume 的 Session ID,则启动一个新会话。`,permissionAppServerHint:`直接应用到当前 App Server thread,不重启 Agent;新权限从后续 turn 生效。`,modelAndReasoning:`模型与推理`,reasoning:`推理`,speed:`速度`,startDictation:`开始语音输入`,stopDictation:`停止语音输入`,speechUnsupported:`当前浏览器不支持语音识别`,mobileDictationHint:`请点 iOS 键盘上的麦克风进行听写。`,sendMessage:`发送消息`,interruptAgent:`中止 Agent`,startOrSelectAgent:`启动或选择一个 Agent`,startOrSelectAgentDescription:`项目在左侧。打开任意 Agent 终端时,不会关闭其他工作区。`,historySummary:(e,t,n,r)=>`${n+r} 个 History Agents`,searchHistory:`搜索历史记录`,noHistoryYet:`还没有历史记录`,noHistoryDescription:`从主页面移出的 Agent 会出现在这里。`,historyAgents:`History Agents`,historyPagination:`历史记录分页`,historyPageStatus:(e,t,n,r)=>`第 ${e} / ${t}${r?`+`:``} 页 · 已载入 ${n} 条`,previousPage:`上一页`,nextPage:`下一页`,agentSessions:`Agent 会话`,recentWorkspaces:`最近工作区`,agentsSessionsSummary:(e,t)=>`${e} 个 Agent · ${t} 个会话`,restore:`恢复`,continueRun:`继续`,open:`打开`,archived:`已归档`,pinned:`已置顶`,unread:`未读`,showMore:`显示更多`,showLess:`收起`,showAgents:`展开 Agent`,hideAgents:`隐藏 Agent`,latest:`最新`,upgrade:`升级`,updating:`更新中`,retryUpdate:`重试`,checkForUpdates:`检查更新`,updateFailed:`更新失败`,upgradeToVersion:e=>e?`升级到 ${e}`:`升级 Farming Code`,sessionFallbackTitle:e=>`${e||`Agent`} 会话`,resumeSessionAria:e=>`恢复 ${e}`,resultsCount:e=>`${e} 个结果`,noMatchingAgents:`没有匹配的 Agent`,searchHint:`可按 Agent 标题、会话标题或项目搜索。`,searchEmptyTitle:`开始搜索`,searchEmptyDescription:`输入 Agent 标题、会话标题,或项目名称、路径。`,agents:`Agent`,files:`文件`,changes:`变更`,changedFiles:`变更文件`,trackedChanges:`已跟踪`,untrackedChanges:`未跟踪`,reviewChanges:`Review`,refreshChanges:`刷新变更`,worktrees:`工作树`,showWorktrees:`查看仓库工作树`,worktreeCurrent:`当前`,worktreeMain:`主工作树`,worktreeDetached:`游离`,worktreeLocked:`已锁定`,worktreePrunable:`可清理`,worktreeLoadFailed:`无法加载仓库工作树`,gitHistory:`历史`,gitHistoryEmpty:`还没有提交`,gitHistoryNotRepository:`当前项目不是 Git 仓库`,gitHistoryLoadMore:`加载更多`,gitHistoryView:`历史视图`,gitHistoryCurrentScope:`当前`,gitHistoryAllScope:`全部`,gitHistoryCurrentBranch:`当前分支`,gitHistoryAllBranches:`所有分支`,gitHistoryCommitMessage:`提交说明`,gitHistoryParent:`与父提交比较`,gitHistoryRootCommit:`根提交`,gitHistoryReviewCommit:`Review 提交`,gitHistoryCommitChanges:e=>`${e} 个文件有变化`,gitHistoryNoChanges:`没有文件变化`,gitHistoryChangesTruncated:`还有部分变更文件未展示`,searchOrPathLine:`搜索或路径:行号`,searchFilesOrJump:`搜索文件或跳转到路径行号`,openEditors:`打开的编辑器`,loading:`加载中...`,searching:`搜索中...`,noMatches:`无匹配`,searchIgnoredFolders:`同时在已忽略目录中搜索`,searchIncomplete:e=>`搜索提前停止(当前超时:${Math.round(e/1e3)} 秒)`,terminalSearchPlaceholder:`在终端中查找`,terminalSearchPrevious:`上一个匹配`,terminalSearchNext:`下一个匹配`,terminalSearchClose:`关闭终端搜索`,terminalSearchCaseSensitive:`区分大小写`,terminalSearchWholeWord:`全词匹配`,terminalSearchRegex:`使用正则表达式`,terminalSearchNoResults:`无结果`,terminalSearchResults:(e,t)=>`${e}/${t}`,terminalSessionUnavailable:`终端会话不可用`,appServerWaitingForFirstMessage:`App Server 已就绪。发送第一条 Composer 消息后,会启动加入同一条 thread 的 Codex CLI 终端。`,appServerRequestTitle:`Codex 需要你的输入`,appServerRequestCommand:`请求执行的命令`,appServerRequestQuestion:`问题`,appServerRequestApprove:`允许`,appServerRequestDecline:`拒绝`,appServerRequestSubmit:`提交回答`,appServerRequestUnsupported:`Farming 目前不支持这类 Codex 请求。拒绝后,当前 turn 会安全地继续。`,appServerApprovalRejectedTitle:`已拒绝权限申请`,appServerApprovalRejectedDescription:`Chat 界面不会批准这类权限申请。请调高这个 Agent 的权限,或切到 Terminal 界面处理。`,acpPermissionTitle:`Agent 需要权限`,acpPermissionTool:`请求使用工具`,file:`文件`,folder:`文件夹`,go:`跳转`,moreMatchesOmitted:`更多匹配已省略`,stickyFolderPath:`固定文件夹路径`,containsUncommittedChanges:`包含未提交改动`,changedOnDisk:`磁盘上已变更`,unsavedChanges:`未保存改动`,gitStatus:e=>`Git 状态:${e}`,renameEntry:e=>`重命名 ${e}`,newFile:`新建文件`,newFolder:`新建文件夹`,refreshFiles:`刷新文件`,refreshingFiles:`正在刷新文件…`,filesRefreshed:`文件已刷新`,filesRefreshFailed:`文件刷新失败`,refresh:`刷新`,rename:`重命名`,copyRelativePath:`复制相对路径`,copyShareUrl:`拷贝分享 URL`,delete:`删除`,deleteFolderContents:e=>`删除文件夹及其所有内容:${e||``}`,deleteFile:e=>`删除文件:${e||``}`,saveFile:`保存文件`,savingFile:`正在保存文件`,reloadFile:`重新加载文件`,overwriteChangedFile:`覆盖已变更文件`,openFileDiff:`打开文件 Diff`,openFileDiffFor:e=>`打开 ${e} 的 Diff`,closeDiff:`关闭 Diff`,openFilePreview:`打开预览`,showFileSource:`显示源码`,enableWordWrap:`开启折行`,disableWordWrap:`关闭折行`,openMarkdownPreview:`打开 Markdown 预览`,showMarkdownSource:`显示 Markdown 源码`,openMarkdownSplitPreview:`打开 Markdown 侧边预览`,closeMarkdownSplitPreview:`关闭 Markdown 侧边预览`,markdownPreviewFor:e=>`${e} 的 Markdown 预览`,markdownFrontMatter:`Front matter`,markdownHeadingAnchor:`跳转到这个标题`,mermaidDiagram:`Mermaid 图表`,mermaidDiagramControls:`Mermaid 图表控制`,mermaidRendering:`正在渲染图表...`,mermaidRenderFailed:`无法渲染 Mermaid 图表`,mermaidZoomIn:`放大`,mermaidZoomOut:`缩小`,mermaidPanMode:`切换平移模式`,mermaidEnterFullscreen:`全屏查看图表`,mermaidExitFullscreen:`退出全屏查看`,mermaidResetView:`重置视图`,mermaidCopySource:`复制 Mermaid 源码`,mermaidCopiedSource:`已复制 Mermaid 源码`,fileDiff:`文件 Diff`,loadingDiff:`正在加载 Diff...`,noFileDiff:`文件没有变化。`,diffUnavailable:`这个文件没有可显示的 Diff 内容。`,binaryDiffUnavailable:`二进制文件不能显示 Diff。`,diffTooLarge:`Diff 过大,无法显示。`,deletedFileDiffOnly:`这个已删除文件只支持以 Diff 查看。`,showGitBlame:`显示 Git Blame`,hideGitBlame:`隐藏 Git Blame`,gitBlameAnnotations:`Git Blame 标注`,gitBlameDetails:`Git Blame 详情`,filePath:`文件路径`,editorFor:e=>`${e} 的编辑器`,revealInExplorer:e=>`在文件树中显示 ${e}`,previewFor:e=>`${e} 的预览`,author:`作者`,commit:`提交`,date:`日期`,line:`行`,unknown:`未知`,uncommitted:`未提交`,closeBlameDetails:`关闭 Blame 详情`,cut:`剪切`,copy:`复制`,paste:`粘贴`,selectAll:`全选`,annotateWithBlame:`用 Blame 标注`,hideBlame:`隐藏 Blame`,openLineChangesWithPreviousRevision:`打开与上一版的行变化`,openLineChangesWithWorkingFile:`打开与工作区文件的行变化`,lineChanges:`行变化`,loadingLineChanges:`正在加载行变化...`,noLineChanges:`这一行没有可显示的变化。`,closeLineChanges:`关闭行变化`,close:`关闭`,closeFile:e=>`关闭 ${e}`,closeOthers:`关闭其他`,closeToRight:`关闭右侧`,closeSaved:`关闭已保存`,closeAll:`全部关闭`,saveBeforeCloseTitle:e=>`是否保存对 ${e} 的更改?`,saveBeforeCloseDescription:`如果不保存,你的更改将丢失。`,dontSave:`不保存`,loadingBlame:`正在加载 Blame...`,notGitRepository:`不是 Git 仓库。`,noCommittedLines:`没有已提交行。`,cursorPosition:(e,t)=>`第 ${e} 行,第 ${t} 列`,startMainAgent:`启动 Main Agent`,startNewAgent:`启动新 Agent`,loadingAgents:`正在加载 Agent...`,agentListUnavailable:`Agent 列表不可用。`,noSupportedAgentsFound:`没有找到支持的 Agent。`,resumePreviousMainAgent:`恢复上一个 Main Agent`,codingAgents:`Coding Agent`,otherAgents:`Shell`,workspace:`工作区:`,workspacePathPlaceholder:`/工作区/路径`,chooseWorkspaceDirectory:`选择工作区目录`,workspaceDirectoryBrowserFailed:`无法读取这个目录。`,workspaceDirectoryBrowserHostHint:`浏览 Farming Host 上的目录。`,workspaceDirectoryBrowserGo:`转到目录`,workspaceDirectoryBrowserParent:`上级目录`,workspaceDirectoryBrowserEmpty:`没有子目录。`,workspaceDirectoryBrowserTruncated:`仅显示前 500 个目录,请输入更具体的路径继续浏览。`,workspaceDirectoryBrowserSelect:`选择此目录`,workspaceMissingTitle:`创建这个工作区?`,workspaceMissingDescription:`这个目录尚不存在。Farming 可以创建目录,并在其中启动 Agent。`,workspaceCreateAndStart:`创建并启动`,workspaceCreating:`正在创建…`,workspaceCreateFailedTitle:`无法创建工作区`,workspaceCreateForbiddenDescription:`Farming 没有权限创建这个目录。请选择其他位置,或调整父目录权限。`,workspaceCreateFailedDescription:`Farming 无法创建这个目录。请检查路径后重试。`,returnToWorkspace:`修改路径`,recentWorkspacesLower:`最近工作区`,start:`启动`,back:`返回`,backToAgent:`返回 Agent`,goBack:`后退`,goForward:`前进`,backendConnecting:`正在连接 Farming 后端...`,backendConnectionLost:`Farming 后端连接已断开,正在重连...`,backendHeartbeatLost:`没有收到 Farming 后端心跳,正在等待恢复...`};function KN(e){return e===`zh`?GN:WN}function qN(){return window}function JN(e,t={},n=qN()){let r=t.delays??[],i=[],a=t.animationFrame!==!1,o;return t.runNow!==!1&&e(),a&&(o=n.requestAnimationFrame(e)),r.forEach(t=>{i.push(n.setTimeout(e,t))}),()=>{o!==void 0&&n.cancelAnimationFrame(o),i.forEach(e=>n.clearTimeout(e))}}var YN={ask:`Ask for approval`,approve:`Approve for me`,full:`Full access`,custom:`Custom`},XN={ask:`Launch Codex with workspace-write sandbox and ask for untrusted actions`,approve:`Launch Codex with workspace-write sandbox and ask when Codex requests approval`,full:`Launch Codex with approvals and sandbox bypassed; use only in trusted sandboxes`,custom:`Launch Codex with permissions defined in config.toml`},ZN=[`ask`,`approve`,`full`,`custom`].map(e=>({value:e,label:YN[e],description:XN[e],color:e===`approve`?`blue`:e===`full`?`orange`:`muted`})),QN={default:`Default`,auto:`Auto`,acceptEdits:`Accept edits`,dontAsk:`Don't ask`,plan:`Plan`,bypassPermissions:`Bypass permissions`},$N={default:`Launch Claude Code with its default settings`,auto:`Launch Claude Code in auto permission mode`,acceptEdits:`Launch Claude Code allowing file edits while still asking for other risky actions`,dontAsk:`Launch Claude Code avoiding interactive approval prompts where supported`,plan:`Launch Claude Code in plan permission mode`,bypassPermissions:`Launch Claude Code with permission checks bypassed; use only in trusted sandboxes`},eP=[`default`,`auto`,`acceptEdits`,`dontAsk`,`plan`,`bypassPermissions`].map(e=>({value:e,label:QN[e],description:$N[e],color:e===`bypassPermissions`?`orange`:[`auto`,`acceptEdits`,`plan`].includes(e)?`blue`:`muted`})),tP=[{value:`low`,effort:`low`,label:`Low`},{value:`medium`,effort:`medium`,label:`Medium`},{value:`high`,effort:`high`,label:`High`},{value:`xhigh`,effort:`xhigh`,label:`Extra High`},{value:`max`,effort:`max`,label:`Max`}],nP=`Claude settings`,rP={value:`config`,effort:`config`,label:nP},iP=[{value:`config`,label:nP,displayName:nP,defaultEffort:`config`,reasoningLevels:[rP,...tP],source:`settings`}],aP={available:!1,effectiveModel:``,effectiveEffort:``,modelOptions:[],effortOptions:tP};function oP(e){return!!(e&&e in YN)}function sP(e){return!!(e&&e in QN)}function cP(e,t,n){return e?oP(t)?t:`custom`:n}function lP(e,t,n){return e?sP(t)?t:`default`:n}function uP(e){if(typeof e!=`string`)return``;let t=e.trim();return!t||/[\s\x00-\x1f\x7f]/.test(t)||t.startsWith(`-`)?``:t}function dP(e){return e===`config`?e:uP(e)||`config`}function fP(e){return e&&tP.some(t=>t.value===e)?e:``}function pP(e){return e===`config`?e:fP(e)||`config`}function mP(e){let t=[];return Array.isArray(e)&&e.forEach(e=>{let n=fP(e?.value);n&&t.push({value:n,effort:n,label:e.label||eD(n),description:e.description})}),t.length>0?t:tP}function hP(e){let t=mP(e?.effortOptions),n=uP(e?.effectiveModel),r=fP(e?.effectiveEffort),i=[];return Array.isArray(e?.modelOptions)&&e.modelOptions.forEach(e=>{let n=uP(e?.value);n&&i.push({...e,value:n,label:e.label||n,displayName:e.displayName||n,defaultEffort:fP(e.defaultEffort)||r||`medium`,reasoningLevels:t,source:e.source||`settings`})}),n&&!i.some(e=>e.value===n)&&i.unshift({value:n,label:n,displayName:n,defaultEffort:r||`medium`,reasoningLevels:t,source:`settings`}),{available:e?.available===!0,effectiveModel:n,effectiveEffort:r,modelOptions:i,effortOptions:t}}function gP(e,t){let n=t.effortOptions?.length?t.effortOptions:tP,r=t.modelOptions?.length?t.modelOptions:iP.map(e=>({...e})),i=dP(e);return!i||i===`config`||r.some(e=>e.value===i)?r.map(e=>({...e,reasoningLevels:e.reasoningLevels?.length?e.reasoningLevels:n})):[...r.map(e=>({...e,reasoningLevels:e.reasoningLevels?.length?e.reasoningLevels:n})),{value:i,label:i,displayName:i,defaultEffort:t.effectiveEffort||`medium`,reasoningLevels:n,source:`settings`}]}function _P(e,t){return e===`config`?t.effectiveModel||t.modelOptions?.[0]?.value||`config`:dP(e)}function vP(e,t){return e===`config`?t.effectiveEffort||`config`:pP(e)}function yP(e,t){let n=t.effortOptions?.length?t.effortOptions:tP;return e===`config`?[rP,...n]:n.some(t=>t.value===e)?n:[...n,{value:e,effort:e,label:eD(e)}]}function bP(e,t,n,r){if(!e||r.some(t=>t.value===e))return r;let i=[{value:`default`,label:`Standard`,description:`Default speed`}];return n&&n!==`default`&&i.push({value:n,label:n===`priority`?`Fast`:n}),[...r,{value:e,label:nD(void 0,e),displayName:nD(void 0,e),defaultEffort:t,reasoningLevels:[{value:t,effort:t,label:eD(t)}],serviceTiers:i,source:`pending-catalog`}]}function xP(e){let t=e.agentLaunchProfiles?.codex??{},n=t.approvalMode??e.codexApprovalMode,r=tD(t.modelPreset??e.codexModelPreset),i=t.model||e.codexModel||r.model,a=t.reasoningEffort||e.codexReasoningEffort||r.effort,o=e.agentLaunchProfiles?.claude??{};return{codexApprovalMode:oP(n)?n:`approve`,codexModel:i,codexReasoningEffort:a,codexServiceTier:t.serviceTier||e.codexServiceTier||`default`,codexModelPreset:`${i}:${a}`,claudePermissionMode:sP(o.permissionMode)?o.permissionMode:`default`,claudeModel:dP(o.model),claudeEffort:pP(o.effort)}}function SP(e,t){return!e?.model||!e.reasoningEffort?t:{model:e.model,reasoningEffort:e.reasoningEffort,serviceTier:e.serviceTier||`default`}}function CP({agentKind:e,codexModel:t,codexReasoningEffort:n,codexServiceTier:r,codexModelPreset:i,codexModelOptions:a,codexApprovalMode:o,claudeModel:s,claudeEffort:c,claudeSettings:l,claudePermissionMode:u}){let d=_P(s,l),f=vP(c,l),p=e===`claude`?gP(s,l):e===`codex`?bP(t,n,r,a):a,m=e===`claude`?d:t,h=e===`claude`?f:n,g=e===`claude`?``:r,_=e===`claude`?`${m}:${h}`:i,v=p.find(e=>e.value===m)??p[0],y=e===`claude`?yP(h,l):v?.reasoningLevels?.length?v.reasoningLevels:h?[{value:h,effort:h,label:eD(h)}]:[],b=e===`claude`?[]:v?.serviceTiers?.length?v.serviceTiers:[{value:`default`,label:`Standard`,description:`Default speed`}],x=y.find(e=>e.value===h)??y[0],S=b.find(e=>e.value===g)??b[0],C=e===`claude`?eP:ZN,w=e===`claude`?u:o,T=C.find(e=>e.value===w)??C[0];return{agentModelOptions:p,agentModel:m,agentReasoningEffort:h,agentServiceTier:g,agentModelPreset:_,currentModelOption:v,currentReasoningOptions:y,currentServiceTierOptions:b,currentReasoningOption:x,currentServiceTierOption:S,currentModelLabel:nD(v,m),currentReasoningLabel:x?.label??eD(h),currentSpeedLabel:S?.label??``,permissionModeOptions:C,currentPermissionMode:w,currentPermissionOption:T,currentPermissionLabel:T?.label??w,currentPermissionColor:T?.color??`muted`}}function wP(e){return!e.isMain&&e.archived!==!0&&e.status!==`dead`&&e.status!==`stopped`}function TP(e){return!e.isMain&&e.archived===!0}function EP(e,t=[]){let n=new Map;return e.forEach(e=>{if(!wP(e))return;let t=e.providerSessionKey||nk(e.source);t&&n.set(e.id,t)}),n}function DP(e,t){return t.get(e.id)||`agent:${e.id}`}function OP(e){return e.providerSessionKey&&e.providerSessionTemporary!==!0?120:nk(e.source)?100:e.providerSessionKey?40:0}function kP(e){return e.status===`running`?30:e.status===`pending`?20:0}function AP(e,t){return OP(e)+(t.has(e.id)?50:0)+kP(e)}function jP(e,t){let n=new Map;return e.forEach(e=>{let r=DP(e,t),i=n.get(r);if(!i){n.set(r,e);return}let a=AP(e,t),o=AP(i,t),s=Number(e.startedAt)||0,c=Number(i.startedAt)||0;(a>o||a===o&&s>c)&&n.set(r,e)}),e.filter(e=>n.get(DP(e,t))===e)}function MP(e,t){return e.filter(e=>!t.has(aD(e)))}function NP(e,t,n){return e.filter(e=>{let r=aD(e);return(e.archived||!t.has(r))&&!n.has(r)})}function PP({allAgents:e,liveAgents:t,sessions:n,mainPageSessionKeys:r}){let i=t.filter(wP),a=EP(i,n),o=new Set(a.values()),s=jP(i,a),c=n.filter(e=>!e.archived&&r.has(aD(e))).sort(fD),l=MP(c,o),u=MP(n,o).sort(fD),d=NP(n,r,o).sort(fD);return{liveAgents:s,archivedAgents:e.filter(TP).sort((e,t)=>(t.archivedAt??0)-(e.archivedAt??0)),mainPageAgentSessions:c,sidebarAgentSessions:l,searchableAgentSessions:u,historyAgentSessions:d,claimedAgentSessionKeys:o,claimedAgentSessionKeyByAgentId:a}}function FP(){return{activeFile:null,files:[],closedFileCache:new Map}}function IP(e){return{activeFile:e.activeFile,files:e.files,closedFileCache:e.closedFileCache}}function LP(){let[e,t]=(0,G.useState)(()=>FP()),n=(0,G.useRef)(e),r=(0,G.useCallback)(e=>(n.current=IP(e),t(n.current),n.current),[]),i=(0,G.useCallback)((e,t,i)=>r(R(n.current,e,t,i)),[r]),a=(0,G.useCallback)((e,t,i)=>{let a=_(n.current,e,t,i);return a?r(a):null},[r]),o=(0,G.useCallback)(e=>{let t=v(n.current,e);return t.closedFiles.length>0&&r(t),t},[r]),s=(0,G.useCallback)(e=>{let t=u(n.current,{canReopen:e});return t?r(t):null},[r]),c=(0,G.useCallback)(e=>r(O(n.current,e)),[r]),d=(0,G.useCallback)((e,t)=>r(g(n.current,e,t)),[r]),f=(0,G.useCallback)(e=>{let t=n.current.activeFile;if(!t)return null;let i=l(t,e);return r({...n.current,activeFile:i,files:L(n.current.files,i)})},[r]),p=(0,G.useCallback)((e,t)=>{let i=b(n.current,e,t);return i!==n.current&&r(i),i},[r]),m=(0,G.useCallback)((e,t)=>{let i=te(n.current,e,t);return t.length>0&&r(i),i},[r]),h=(0,G.useMemo)(()=>Array.from(e.closedFileCache.values()),[e.closedFileCache]);return(0,G.useMemo)(()=>({activeFile:e.activeFile,files:e.files,closedFiles:h,openFromRead:i,select:a,close:o,reopenLastClosed:s,update:c,refreshFromReads:d,updateDraft:f,move:p,deleteEntries:m}),[h,o,m,p,i,d,s,a,e.activeFile,e.files,c,f])}function RP(){let[e,t]=(0,G.useState)(()=>Rn()),n=(0,G.useRef)(e),r=(0,G.useRef)(!1),i=(0,G.useRef)(null),a=(0,G.useCallback)(e=>(n.current=e,t(e),e),[]),o=(0,G.useCallback)(e=>{r.current||a(Un(n.current,e))},[a]),s=(0,G.useCallback)(e=>{o(zn(e))},[o]),c=(0,G.useCallback)(e=>{o(Bn(e))},[o]),l=(0,G.useCallback)(e=>{r.current||(i.current!==null&&window.clearTimeout(i.current),i.current=window.setTimeout(()=>{i.current=null,o(Bn({...e,reason:`cursor`}))},650))},[o]),u=(0,G.useCallback)(e=>{let t=n.current,i=t.index+e,o=t.entries[i];return o?(r.current=!0,a({entries:t.entries,index:i}),o):null},[a]),d=(0,G.useCallback)(()=>{window.setTimeout(()=>{r.current=!1},120)},[]),f=(0,G.useCallback)(e=>{let t=n.current,r=t.entries.filter(e);if(r.length===t.entries.length)return;let i=t.entries[t.index],o=i?r.indexOf(i):-1;a({entries:r,index:o>=0?o:Math.min(t.index,r.length-1)})},[a]);return(0,G.useEffect)(()=>()=>{i.current!==null&&(window.clearTimeout(i.current),i.current=null)},[]),(0,G.useMemo)(()=>({canGoBack:e.index>0,canGoForward:e.index>=0&&e.index<e.entries.length-1,recordAgent:s,recordFile:c,recordFileCursor:l,beginNavigation:u,finishNavigation:d,pruneEntries:f}),[u,d,f,s,c,l,e.entries.length,e.index])}function zP({agents:e,permissionSwitchReplacement:t,onDiscardAttachment:n}){let[r,i]=(0,G.useState)({});(0,G.useLayoutEffect)(()=>{let r=new Set(e.filter(e=>!e.archived&&e.status!==`dead`&&e.status!==`stopped`).flatMap(e=>[CA(e),ZA(e)]).filter(Boolean));i(i=>{let a=i,o=!1,s=()=>(a===i&&(a={...i}),o=!0,a);if(t){let e=(e,t)=>{let n=a[e];if(!n)return;let r=s(),i=r[t];r[t]=i?xA(i,n):n,delete r[e]};e(t.originalAgentId,t.replacementAgentId),e(`acp:${t.originalAgentId}`,`acp:${t.replacementAgentId}`)}return e.forEach(e=>{let t=CA(e);if(!t)return;wA(e).forEach(e=>{if(e===t)return;let n=a[e];if(!n)return;let r=s();r[t]=r[t]?xA(r[t],n):n,delete r[e]});let n=ZA(e);QA(e).forEach(e=>{if(e===n)return;let t=a[e];if(!t)return;let r=s();r[n]=r[n]?xA(r[n],t):t,delete r[e]})}),Object.entries(a).forEach(([e,t])=>{if(r.has(e))return;let i=s();t.attachments.forEach(n),delete i[e]}),o?a:i})},[e,n,t]);let a=(0,G.useCallback)(t=>{if(!t)return``;for(let n of e){let e=$A(t),r=e?ZA(n):CA(n);if(!r)continue;let i=e?QA(n):wA(n);if(t===r||i.includes(t))return r}return t},[e]);return{composerByAgentKey:r,updateComposerStateForKey:(0,G.useCallback)((e,t)=>{i(n=>{let r=a(e);if(!r)return n;let i=n[r]??gA(),o=t(i);return o===i?n:{...n,[r]:o}})},[a]),updateExistingComposerStateForKey:(0,G.useCallback)((e,t)=>{i(n=>{let r=a(e);if(!r)return n;let i=n[r];if(!i)return n;let o=t(i);return o===i?n:{...n,[r]:o}})},[a])}}function BP(){if(typeof window>`u`)return``;let e=window.location.hostname;return e?e===`localhost`||e===`127.0.0.1`||e===`::1`?`Local server`:`Remote server`:``}function VP(e){return e.replace(/^Language:\s*/i,``).replace(/^语言[::]\s*/,``)}function HP(e){if(!e||typeof e!=`object`||Array.isArray(e))return{};let t={};return Object.entries(e).forEach(([e,n])=>{let r=e.trim(),i=String(n??``).trim();!r||!i||(t[r]=i.slice(0,80))}),t}function UP(e){return e.replace(/^Appearance:\s*/i,``).replace(/^外观[::]\s*/,``)}function WP(e,t){return e.size===t.length?t.every(t=>e.has(t)):!1}function GP(e){return(e.ctrlKey||e.metaKey)&&e.shiftKey&&!e.altKey&&e.key.toLowerCase()===`t`}var KP=296,qP=220,JP=840,YP=360,XP=5*6e4,ZP=52,QP=172,$P=900,eF=12,tF=4,nF=15e3,rF=286,iF=60,aF=1e3,oF=150,sF=35e3;async function cF(e,t){let n=[],r=!0,i=0,a=Array.from({length:Math.min(tF,t.length)},async()=>{for(;i<t.length;){let a=t[i];i+=1;let o=new AbortController,s=window.setTimeout(()=>o.abort(),nF);try{n.push(await le(e,a,{signal:o.signal}))}catch{r=!1}finally{window.clearTimeout(s)}}});return await Promise.all(a),{files:n,successful:r}}function lF(){return typeof window>`u`?!1:oe()&&re()}function uF(e){let t=(e||``).trim().split(/\s+/).find(e=>e!==`env`&&!/^[A-Za-z_][A-Za-z0-9_]*=/.test(e))?.split(`/`).pop()||``;return t===`qoder`||t===`qodercli`||t===`opencode`}function dF(e){return!!(e&&Dk(e.command)===`codex`&&e.runtimeBinding.kind===`terminal`)}function fF(e){return e instanceof HTMLElement?e.tagName===`INPUT`||e.tagName===`TEXTAREA`||e.isContentEditable:!1}function pF(e){return tk(e)}function mF(e){return e.kind===`agent-session`?aD(e):YE(e)}function hF(){return oe()}function gF(e){return!hF()&&e>0&&e<$P}function _F(){return hF()?!0:typeof window<`u`&&gF(window.innerWidth)}function vF(e){e.preventDefault(),e.stopPropagation(),e.stopImmediatePropagation()}function yF(e){let t=(e||``).replace(/\/+$/,``);return t.split(`/`).filter(Boolean).pop()||t||`workspace`}function bF(e){if(e.lineNumber)return{lineNumber:e.lineNumber,column:e.column,endColumn:e.endColumn}}function xF(e){let t=new Map;for(let n of e)n.kind!==`path`||t.has(n.path)||t.set(n.path,n);return Array.from(t.values())}function SF(e){let t=new Map;for(let n of e)t.has(n.path)||t.set(n.path,n);return Array.from(t.values())}async function CF(e){try{if(navigator.clipboard?.writeText)return await navigator.clipboard.writeText(e),!0}catch{}let t=document.createElement(`textarea`);t.value=e,t.setAttribute(`readonly`,`true`),t.setAttribute(`autocomplete`,`off`),t.setAttribute(`autocorrect`,`off`),t.setAttribute(`autocapitalize`,`none`),t.setAttribute(`spellcheck`,`false`),t.setAttribute(`data-lpignore`,`true`),t.setAttribute(`data-1p-ignore`,`true`),t.setAttribute(`data-bwignore`,`true`),t.setAttribute(`data-form-type`,`other`),t.style.position=`fixed`,t.style.left=`-9999px`,t.style.top=`0`,document.body.appendChild(t),t.select();try{return document.execCommand(`copy`)}finally{t.remove()}}function wF({agents:e,taskHistory:t,mainPageSessionKeys:n,activeView:i,dialogOpen:a,usageSummary:o,contextWindowByAgentId:s={},activeTerminalId:c,permissionSwitchingAgentId:l,agentSwitchingKind:u,permissionSwitchReplacement:m,openTerminalIds:g,terminalFocusRequest:_,keyMap:v,keyboardShortcutsEnabled:y,uiPreferences:b,onOpenTerminal:C,onOpenTerminalWhenReady:E,onNewAgent:O,onStartAgent:M,onRenameAgent:N,onUpdateAgentFlags:F,onOpenArchivedAgent:te,onForkAgent:L,onDeleteForkWorktreeProject:R,onRestartMainAgent:ne,onWorkspaceViewChange:z,onKill:B,onInterruptAgent:re,sendComposerInput:ae,respondToAppServerRequest:se,onSessionOutput:ce,onUpdateUiPreferences:ue}){An(`codeWorkspace`);let fe=It(),{composerByAgentKey:pe,updateComposerStateForKey:me,updateExistingComposerStateForKey:he}=zP({agents:e,permissionSwitchReplacement:m,onDiscardAttachment:IA}),H=(0,G.useRef)({}),ge=(0,G.useRef)({}),[,_e]=(0,G.useState)({}),[ve,ye]=(0,G.useState)(`terminal`),[be]=(0,G.useState)(()=>j().surface),xe=(0,G.useRef)(!1),Se=(0,G.useRef)(!be),Ce=LP(),{canGoBack:we,canGoForward:Te,recordAgent:Ee,recordFile:De,recordFileCursor:Oe,beginNavigation:U,finishNavigation:ke,pruneEntries:Ae}=RP(),W=Ce.activeFile,je=Ce.files,Me=(0,G.useCallback)(async(e,t)=>{let n=Array.from(new Set(Ce.files.filter(e=>e.workspaceRoot===t).map(e=>e.file.path)));if(n.length===0)return!0;let r=await cF(e,n);return Ce.refreshFromReads(t,r.files),r.successful},[Ce]),[Ne,Pe]=(0,G.useState)(!1),[Fe,Ie]=(0,G.useState)(``),[ze,Ve]=(0,G.useState)(0),[,He]=(0,G.useState)([]),[Ue,We]=(0,G.useState)([]),[Ge,Ke]=(0,G.useState)(!1),qe=(0,G.useRef)([]),Je=(0,G.useRef)(0),Ye=(0,G.useRef)(Promise.resolve()),[Xe,Ze]=(0,G.useState)([]),Qe=(0,G.useRef)([]),$e=(0,G.useRef)(0),et=(0,G.useRef)(Promise.resolve()),tt=(0,G.useRef)(new Set),[nt,rt]=(0,G.useState)({}),[it,at]=(0,G.useState)([]),[ot,st]=(0,G.useState)(()=>new Set),[ct,lt]=(0,G.useState)(`approve`),[,ut]=(0,G.useState)(`gpt-5.5:xhigh`),[dt,ft]=(0,G.useState)(`gpt-5.5`),[pt,mt]=(0,G.useState)(`xhigh`),[ht,gt]=(0,G.useState)(`default`),[_t,vt]=(0,G.useState)([]),[yt,bt]=(0,G.useState)(()=>new Set),[xt,St]=(0,G.useState)(()=>new Map),Ct=(0,G.useRef)(new Set),[wt,Tt]=(0,G.useState)(`default`),[Et,Dt]=(0,G.useState)(`config`),[kt,At]=(0,G.useState)(`config`),[jt,Mt]=(0,G.useState)(aP),[Nt,Pt]=(0,G.useState)([]),[Ft,Lt]=(0,G.useState)([]),[Bt,Vt]=(0,G.useState)(``),[Ut,Wt]=(0,G.useState)(!1),[Gt,Kt]=(0,G.useState)([]),[qt,Yt]=(0,G.useState)(!1),Xt=(0,G.useRef)(!1),Zt=(0,G.useRef)(null),Qt=(0,G.useRef)(iF),[en,tn]=(0,G.useState)(()=>XO().pinnedOverrides),[nn,rn]=(0,G.useState)(!1),[an,on]=(0,G.useState)(!1),[sn,cn]=(0,G.useState)(()=>new Set),[ln,un]=(0,G.useState)(()=>new Set),[dn,fn]=(0,G.useState)(KP),[pn,mn]=(0,G.useState)(()=>_F()),[hn,gn]=(0,G.useState)(()=>typeof window>`u`?null:A(window.location.search)),[_n,vn]=(0,G.useState)(0),[yn,bn]=(0,G.useState)(void 0),[xn,Sn]=(0,G.useState)(null),[wn,Dn]=(0,G.useState)(null),[On,kn]=(0,G.useState)(null),[jn,Mn]=(0,G.useState)(null),[Nn,Pn]=(0,G.useState)(!1),[Rn,zn]=(0,G.useState)(``),[Bn,Vn]=(0,G.useState)(null),[Hn,Un]=(0,G.useState)(null),[Gn,Kn]=(0,G.useState)(null),[qn,Jn]=(0,G.useState)(null),[Yn,Xn]=(0,G.useState)(null),[Zn,Qn]=(0,G.useState)(null),$n=Bn?Bn.kind===`agent`?`agent:${Bn.agentId}`:`project:${Bn.projectId}`:``,[er,q]=(0,G.useState)(Date.now()),tr=(0,G.useRef)(null),nr=(0,G.useRef)(null),rr=(0,G.useRef)([]),ir=(0,G.useRef)(null),ar=(0,G.useRef)(null),or=(0,G.useRef)(null),sr=(0,G.useRef)(null),cr=(0,G.useRef)(null),lr=(0,G.useRef)(null),ur=(0,G.useRef)(null),dr=(0,G.useRef)(null),fr=(0,G.useRef)(null),pr=(0,G.useRef)(null),mr=(0,G.useRef)(null),hr=(0,G.useRef)(null),gr=(0,G.useRef)(null),_r=(0,G.useRef)(!1),vr=(0,G.useRef)(0),yr=(0,G.useRef)(null),br=(0,G.useRef)(0),xr=(0,G.useRef)(!1),Sr=(0,G.useRef)(()=>{}),Cr=(0,G.useRef)(c),wr=(0,G.useRef)(0),Tr=(0,G.useRef)(0),Er=(0,G.useRef)(0),Dr=(0,G.useRef)(0),Or=(0,G.useRef)(0),kr=(0,G.useRef)(0),Ar=(0,G.useRef)(null),jr=(0,G.useRef)(null),Mr=(0,G.useRef)(null),Nr=(0,G.useRef)(0),Pr=(0,G.useRef)(new Set),Fr=(0,G.useRef)(!1),Ir=(0,G.useRef)(pn),Lr=(0,G.useRef)(hF()),Rr=(0,G.useCallback)(()=>{Ir.current=!1,mn(!0)},[]),zr=(0,G.useCallback)(()=>{mn(e=>(e||(Ir.current=!0),!0))},[]),Br=(0,G.useCallback)(()=>{Ir.current=!1,mn(!1)},[]),Vr=(0,G.useCallback)(()=>{Ir.current=!1,mn(e=>!e)},[]);Cr.current=c;let J=(0,G.useMemo)(()=>KN(b.language),[b.language]);(0,G.useEffect)(()=>{ZO({promotedKeys:[],pinnedOverrides:en,archivedOverrides:{}})},[en]);let Hr=(0,G.useMemo)(()=>e.filter(e=>!e.isMain),[e]),Ur=(0,G.useMemo)(()=>e.find(e=>e.isMain)??null,[e]),Y=(0,G.useMemo)(()=>Hr.filter(wP),[Hr]),Wr=(0,G.useMemo)(()=>{let e=new Set(Y.map(e=>e.id));return Ur&&e.add(Ur.id),e},[Y,Ur]),Gr=(0,G.useMemo)(()=>{let e=new Set([Be]);return Ue.forEach(t=>e.add(Fn(t))),Y.forEach(t=>e.add(Fn(ZE(t)))),Wr.forEach(t=>e.add(t)),e},[Y,Ue,Wr]);(0,G.useEffect)(()=>{Ae(e=>e.kind===`agent`?Wr.has(e.agentId):Gr.has(e.agentId))},[Ae,Wr,Gr]);let Kr=(0,G.useCallback)((e,t)=>{let n=Ur?[...Y,Ur]:Y;if(Le(e)){let e=n.find(e=>e.id===t);return{filesId:Be,workspaceRoot:`/`,sourceAgentId:e?.id,sourceAgent:e}}let r=In(e);if(r){let e=Y.find(e=>e.id===t&&Fn(ZE(e))===Fn(r));return{filesId:Fn(r),workspaceRoot:r,sourceAgentId:e?.id,sourceAgent:e}}let i=n.find(t=>t.id===e);if(i&&!i.isMain){let e=ZE(i),n=Y.find(n=>n.id===t&&Fn(ZE(n))===Fn(e))??i;return{filesId:Fn(e),workspaceRoot:e,sourceAgentId:n.id,sourceAgent:n}}return{filesId:e,workspaceRoot:i?ZE(i):void 0,sourceAgentId:i?.id,sourceAgent:i}},[Y,Ur]);(0,G.useEffect)(()=>{W?.sourceAgentId&&(Kr(W.agentId,W.sourceAgentId).sourceAgentId||Ce.update({...W,sourceAgentId:void 0}))},[W,Kr,Ce]);let qr=(0,G.useMemo)(()=>$O(Ft,en,{}),[en,Ft]),Jr=(0,G.useMemo)(()=>PP({allAgents:Hr,liveAgents:Y,sessions:qr,mainPageSessionKeys:ot}),[Y,qr,ot,Hr]),Yr=Jr.mainPageAgentSessions,Xr=Jr.sidebarAgentSessions,Zr=Jr.searchableAgentSessions,Qr=Jr.historyAgentSessions,$r=Jr.liveAgents,ei=Jr.archivedAgents,ti=t,ni=Qr,ri=(0,G.useMemo)(()=>new Set(Gt.map(aD)),[Gt]),ii=(0,G.useMemo)(()=>new Set(Array.from(Jr.claimedAgentSessionKeyByAgentId.entries()).filter(([,e])=>ri.has(e)).map(([e])=>e)),[Jr.claimedAgentSessionKeyByAgentId,ri]),ai=(0,G.useMemo)(()=>{let e=new Map(Zr.map(e=>[aD(e),e]));return Gt.forEach(t=>e.set(aD(t),t)),MP(Array.from(e.values()),Jr.claimedAgentSessionKeys)},[Jr.claimedAgentSessionKeys,Gt,Zr]),oi=(0,G.useMemo)(()=>Gj($r,Xr,nt,je,Hr,Ue,Xe),[je,Xe,nt,Ue,Xr,Hr,$r]),si=(0,G.useMemo)(()=>rk(oi,ln,!1),[ln,oi]),ci=(0,G.useMemo)(()=>Gj($r,ai,nt,je,Hr,Ue,Xe),[je,Xe,nt,Ue,ai,Hr,$r]),li=Fe.trim().toLowerCase(),ui=li.length>0,di=(0,G.useMemo)(()=>Kj((i===`search`||Ne)&&ui?ci:si,li,ln,ri,ii),[i,ln,ui,li,si,ci,ii,ri,Ne]),fi=si.some(e=>!!e.workspace),pi=(0,G.useMemo)(()=>ui?di:[],[di,ui]),mi=(0,G.useMemo)(()=>qj(di,sn,li),[sn,di,li]),hi=(0,G.useMemo)(()=>ui?mi:[],[ui,mi]),gi=(0,G.useMemo)(()=>{let e=new Map;return y&&v.forEach((t,n)=>{e.set(t,n)}),e},[v,y]),_i=(0,G.useMemo)(()=>g.map(e=>Y.find(t=>t.id===e)??(Ur?.id===e?Ur:null)).filter(e=>!!e),[Y,Ur,g]),vi=Ot((0,G.useMemo)(()=>_i.find(e=>e.id===c)??_i[0]??null,[c,_i])),yi=vi?[vi]:[],X=Ot((0,G.useMemo)(()=>Y.find(e=>e.id===c)??(Ur?.id===c?Ur:null),[Y,c,Ur])),bi=Cn(X)?X.runtimeBinding:null,xi=Tn(X)?X.runtimeBinding:null,Si=!!(X&&X.id===l),Ci=!!(X&&yt.has(X.id)),wi=X?s[X.id]??null:null,Ti=bi?ZA(X):X?CA(X):``,Ei=(0,G.useMemo)(()=>Pk(X),[X]),Di=Ti?pe[Ti]??(X?(bi?QA(X):wA(X)).map(e=>pe[e]).find(Boolean):void 0)??hA:hA,Oi=Di.draft,ki=Di.attachments,Ai=Di.mode,{plusMenuOpen:ji,approvalMenuOpen:Mi,modelMenuOpen:Ni,modelPickerPane:Pi}=Di.ui,Fi=!!(bi&&X&&ge.current[X.id]!==void 0),Ii=(0,G.useMemo)(()=>Fi||WE(X),[Fi,X]),Li=(0,G.useMemo)(()=>HE(X),[X]),Ri=Ei.kind,zi=(0,G.useMemo)(()=>cP(!!(X&&Ri===`codex`),X?.launchPermissionMode,ct),[X,ct,Ri]),Bi=(0,G.useMemo)(()=>lP(!!(X&&Ri===`claude`),X?.launchPermissionMode,wt),[X,wt,Ri]),Vi=X&&xt.get(X.id)||null,Hi=(0,G.useMemo)(()=>SP(Vi||X?.codexTerminalProfile,{model:dt,reasoningEffort:pt,serviceTier:ht}),[Vi?.model,Vi?.reasoningEffort,Vi?.serviceTier,X?.codexTerminalProfile?.model,X?.codexTerminalProfile?.reasoningEffort,X?.codexTerminalProfile?.serviceTier,dt,pt,ht]),Ui=Hi.model,Wi=Hi.reasoningEffort,Gi=Hi.serviceTier,Ki=`${Ui}:${Wi}`,qi=(0,G.useMemo)(()=>Ii||!!X&&X?.status===`running`&&Ri===`shell`&&Li.terminalBusy,[X,Li.terminalBusy,Ii,Ri]),Z=(0,G.useMemo)(()=>Nk([...Mk(Ri),...Nt]),[Ri,Nt]),Ji=Di.pendingFollowUp;(0,G.useEffect)(()=>{!c||ve!==`terminal`||i!==`projects`||Ee(c)},[c,i,ve,Ee]),(0,G.useEffect)(()=>{!W||ve!==`editor`||i!==`projects`||De({agentId:W.agentId,filePath:W.file.path,view:W.diffRequestId?`diff`:`editor`,lineNumber:W.cursor?.lineNumber,column:W.cursor?.column,endColumn:W.cursor?.endColumn,sourceAgentId:W.sourceAgentId})},[i,ve,W?.agentId,W?.cursor?.column,W?.cursor?.endColumn,W?.cursor?.lineNumber,W?.cursor?.requestId,W?.diffRequestId,W?.file.path,W?.sourceAgentId,De]);let Yi=LA(ki).length>0,Xi=ki.some(e=>e.status===`uploading`),Zi=Ci?`disabled`:X&&!Xi&&(Oi.trim()||Yi)?`send`:qi?`interrupt`:`disabled`,Qi=bi?Zi:`disabled`,$i=(0,G.useCallback)(e=>{Ti&&me(Ti,e)},[Ti,me]),ea=(0,G.useCallback)(()=>{$i(yA)},[$i]),ta=(0,G.useMemo)(()=>Y.find(e=>e.id===xn?.agentId)??null,[Y,xn?.agentId]),na=(0,G.useMemo)(()=>oi.find(e=>e.id===wn?.projectId)??null,[oi,wn?.projectId]),ra=(0,G.useMemo)(()=>di.flatMap(e=>e.agentSessions).find(e=>e.provider===On?.provider&&aD(e)===On?.sessionId)??null,[On?.provider,On?.sessionId,di]),ia=Ne?hi[ze]??null:null,aa=ia?.kind===`agent`?ia.id:null,oa=ia?.kind===`agent-session`?aD(ia):null,sa=X?ZE(X):void 0,ca=(0,G.useMemo)(()=>{if(W&&!Le(W.agentId))return W.agentId;if(X&&!X.isMain)return Fn(ZE(X));if(sa)return Fn(sa);let e=Y.find(e=>!e.isMain);return e?Fn(ZE(e)):null},[X,Y,sa,W]),la=(0,G.useCallback)(e=>{if(!(e instanceof Element))return null;let t=e.closest(`[data-testid="code-agent-row"][data-agent-id], [data-testid="code-project-agent-compact"][data-agent-id], [data-testid="code-pinned-agent-compact"][data-agent-id], [data-testid="code-agent-rail-item"][data-agent-id]`)?.dataset.agentId;if(t){let e=Y.find(e=>e.id===t&&!e.isMain);if(e)return Fn(ZE(e))}let n=e.closest(`[data-testid="code-project-group"]`)?.querySelector(`[data-testid="code-project-title"][data-project-id]`)?.dataset.projectId;return!n||n===`__farming_main_agent__`?null:Fn(n)},[Y]),ua=X?.isMain?yn??si[0]?.workspace:sa??yn??si[0]?.workspace,da=ve===`editor`&&!!W,fa=(0,G.useMemo)(()=>{if(da&&W){let e=W.workspaceRoot??Y.find(e=>e.id===W.agentId)?.projectWorkspace??Y.find(e=>e.id===W.agentId)?.cwd??``;return{kind:`file`,agentId:W.agentId,filePath:W.file.path,...e?{absolutePath:w(e,W.file.path)}:{},...e?{projectLabel:P(e)}:{},view:W.diffRequestId?`diff`:`editor`,lineNumber:W.cursor?.lineNumber,column:W.cursor?.column,endColumn:W.cursor?.endColumn}}return c&&Wr.has(c)?{kind:`agent`,agentId:c,readingSurface:En(Y.find(e=>e.id===c))?`chat`:`terminal`}:null},[c,W?.agentId,W?.cursor?.column,W?.cursor?.endColumn,W?.cursor?.lineNumber,W?.diffRequestId,W?.file.path,W?.workspaceRoot,da,Y,Wr]),{agentModelOptions:pa,agentModel:ma,agentReasoningEffort:ha,agentServiceTier:ga,agentModelPreset:_a,currentReasoningOptions:va,currentServiceTierOptions:ya,currentPermissionMode:ba,currentPermissionLabel:xa,currentPermissionColor:Sa,currentModelLabel:Ca,currentReasoningLabel:wa,currentSpeedLabel:Ta,permissionModeOptions:Ea}=(0,G.useMemo)(()=>CP({agentKind:Ri,codexModel:Ui,codexReasoningEffort:Wi,codexServiceTier:Gi,codexModelPreset:Ki,codexModelOptions:_t,codexApprovalMode:zi,claudeModel:Et,claudeEffort:kt,claudeSettings:jt,claudePermissionMode:Bi}),[kt,Et,jt,Bi,zi,Ui,_t,Ki,Wi,Gi,Ri]),Da=BP(),Oa=Ne||i===`search`?J.search:i===`history`?J.history:da&&W?XE(W.file.path):X?ee(X):J.codex,ka=X?.isMain?`farming`:yF(X?ZE(X):void 0),Aa=X?`${ka} · ${Da}`:Da,ja=da&&W?W.sourceAgentId:null,Ma=!!ja,Na=(0,G.useCallback)(()=>{let e=nr.current;if(!e)return;e.style.height=`auto`;let t=Math.min(e.scrollHeight,132);e.style.height=`${t}px`,e.style.overflowY=e.scrollHeight>132?`auto`:`hidden`},[]),Pa=(0,G.useCallback)(()=>{JN(()=>{document.querySelector(`.code-composer-menu`)||(nr.current??document.querySelector(`[data-testid="code-composer-input"]`))?.focus({preventScroll:!0})},{delays:[60]})},[]),Fa=(0,G.useCallback)(e=>{let t=xP(e);lt(t.codexApprovalMode),ft(t.codexModel),mt(t.codexReasoningEffort),gt(t.codexServiceTier),ut(t.codexModelPreset),Tt(t.claudePermissionMode),Dt(t.claudeModel),At(t.claudeEffort)},[]),Ia=(0,G.useCallback)(()=>{let e=!1,t=Nr.current;return fetch(r(`/api/settings`)).then(e=>e.json()).then(n=>{if(e)return;let r=n.settings??{};t===Nr.current&&st(new Set(QO(r.mainPageSessionKeys??[]))),We(Ln(r.projectWorkspaces)),Ze(Ln(r.pinnedProjectWorkspaces)),Ke(!0),rt(HP(r.projectNames)),Fa(r)}).catch(()=>{}),()=>{e=!0}},[Fa]),La=(0,G.useCallback)(()=>{let e=Date.now()-br.current;if(xr.current||br.current>0&&e<=XP)return()=>{};let t=!1;return xr.current=!0,fetch(r(`/api/codex/models`)).then(async e=>{let t=await e.json().catch(()=>({}));if(!e.ok)throw Error(t.error||`Failed to load Codex model catalog (${e.status})`);return t}).then(e=>{if(t)return;let n=iD(e);if(n.length===0)throw Error(`Codex model catalog did not contain any visible models`);br.current=Date.now(),vt(n)}).catch(e=>{t||(br.current=0,vt([]),Jn({id:Date.now(),kind:`error`,message:e instanceof Error?e.message:`Failed to load Codex model catalog`}))}).finally(()=>{xr.current=!1}),()=>{t=!0}},[]),Ra=(0,G.useCallback)(()=>{let e=!1;return fetch(r(`/api/claude/settings`)).then(e=>e.json()).then(t=>{e||Mt(hP(t.settings))}).catch(()=>{e||Mt(aP)}),()=>{e=!0}},[]),za=(0,G.useCallback)(async(e,t)=>{let n=new URLSearchParams({q:e,limit:String(aF),fresh:`1`}),i=await fetch(r(`/api/agent-sessions/search?${n.toString()}`),{signal:t,cache:`no-store`});if(!i.ok)throw Error(`Failed to search Agent sessions: ${i.status}`);let a=await i.json();return Array.isArray(a.sessions)?a.sessions:[]},[]),Ba=(0,G.useCallback)(async(e,t)=>NP($O(await za(e,t),en,{}),ot,Jr.claimedAgentSessionKeys),[Jr.claimedAgentSessionKeys,en,za,ot]),Va=(0,G.useCallback)(async(e={})=>{let t=new URLSearchParams({limit:String(e.limit||iF)});e.cursor&&t.set(`cursor`,e.cursor),e.fresh&&t.set(`fresh`,`1`);let n=await(await fetch(r(`/api/agent-sessions?${t.toString()}`),{cache:e.fresh?`no-store`:`default`})).json();return{sessions:Array.isArray(n.sessions)?n.sessions:[],nextCursor:typeof n.nextCursor==`string`?n.nextCursor:``,hasMore:n.hasMore===!0}},[]),Ha=(0,G.useCallback)((e=!1)=>{let t=!1;return Va({fresh:e}).then(e=>{t||(Lt(e.sessions),Vt(e.nextCursor),Wt(e.hasMore),Qt.current=Math.max(iF,e.sessions.length))}).catch(()=>{t||(Lt([]),Vt(``),Wt(!1))}),()=>{t=!0}},[Va]),Ua=(0,G.useCallback)(()=>{if(Zt.current)return Zt.current;let e=Va({limit:Qt.current,fresh:!0}).then(e=>{Lt(e.sessions),Vt(e.nextCursor),Wt(e.hasMore)}).catch(()=>Lt([])).finally(()=>{Zt.current===e&&(Zt.current=null)});return Zt.current=e,e},[Va]),Wa=(0,G.useCallback)(async()=>{if(!Ut||!Bt||Xt.current)return!1;Xt.current=!0;try{let e=await Va({cursor:Bt});return Lt(t=>{let n=new Set(t.map(aD)),r=[...t];return e.sessions.forEach(e=>{let t=aD(e);n.has(t)||(n.add(t),r.push(e))}),Qt.current=Math.max(iF,r.length),r}),Vt(e.nextCursor),Wt(e.hasMore),e.sessions.length>0}catch{return!1}finally{Xt.current=!1}},[Bt,Ut,Va]);(0,G.useEffect)(()=>{if(!((i===`search`||Ne)&&ui)){Kt([]),Yt(!1);return}let e=new AbortController;Kt([]),Yt(!0);let t=window.setTimeout(()=>{za(li,e.signal).then(Kt).catch(e=>{e instanceof DOMException&&e.name===`AbortError`||Kt([])}).finally(()=>{e.signal.aborted||Yt(!1)})},oF);return()=>{window.clearTimeout(t),e.abort()}},[i,za,ui,li,Ne]);let Ga=(0,G.useCallback)((e,t)=>{if(e!==`codex`&&e!==`claude`)return Pt([]),()=>{};let n=!1,i=new URLSearchParams({provider:e});return t&&i.set(`workspace`,t),fetch(r(`/api/slash-commands?${i.toString()}`)).then(e=>e.json()).then(e=>{n||Pt(Array.isArray(e.commands)?e.commands:[])}).catch(()=>{n||Pt([])}),()=>{n=!0}},[]),Ka=(0,G.useCallback)(()=>{Ti&&($i(e=>({...e,ui:{...e.ui,plusMenuOpen:!1}})),ir.current?.click())},[Ti,$i]),qa=(0,G.useCallback)((e,t)=>{let n=PA(t),r=AA(t,`pasted image`),i=FA(t),a={id:n,kind:`image`,name:r,type:t.type||`image/png`,size:t.size,status:`uploading`,previewUrl:i};me(e,e=>({...e,attachments:[...e.attachments,a]})),HA(t).then(t=>{he(e,e=>({...e,attachments:e.attachments.map(e=>e.id===n?{...e,name:r,type:t.type||e.type,size:t.size||e.size,status:`ready`,path:t.path,messageBlock:NA({...t,name:r}),error:void 0}:e)}))}).catch(()=>{he(e,e=>({...e,attachments:e.attachments.map(e=>e.id===n?{...e,status:`error`,messageBlock:WA(t),error:`Upload failed`}:e)}))})},[me,he]),Ja=(0,G.useCallback)(async e=>{if(!Ti||e.length===0)return;e.filter(jA).forEach(e=>qa(Ti,e));let t=e.filter(e=>!jA(e));if(t.length===0){Pa();return}let n=[];for(let e of t)try{n.push(await UA(e))}catch{n.push(WA(e))}me(Ti,e=>({...e,draft:kA(e.draft,n.join(`
205
+
206
+ `))})),Pa()},[Ti,qa,Pa,me]),Ya=(0,G.useCallback)(e=>{$i(t=>{let n=t.attachments.find(t=>t.id===e);return n&&IA(n),{...t,attachments:t.attachments.filter(t=>t.id!==e)}}),Pa()},[Pa,$i]),Xa=(0,G.useCallback)(e=>{let t=Array.from(e.target.files??[]);e.target.value=``,Ja(t)},[Ja]),Za=(0,G.useCallback)(e=>{let t=GA(e.clipboardData);t.length!==0&&(e.preventDefault(),Ja(t))},[Ja]);(0,G.useEffect)(()=>{let e=ir.current;if(e)return e.addEventListener(`cancel`,Pa),()=>e.removeEventListener(`cancel`,Pa)},[Pa]),(0,G.useEffect)(()=>{rr.current=Object.values(pe).flatMap(e=>e.attachments)},[pe]),(0,G.useEffect)(()=>()=>{rr.current.forEach(IA)},[]);let Qa=(0,G.useCallback)(e=>{$i(t=>({...t,mode:e,ui:{...t.ui,plusMenuOpen:!1}})),Pa()},[Pa,$i]),$a=(0,G.useCallback)((e,t=!1,n=null)=>{let r=Y.find(t=>t.id===e);if(!r)return;let i=Number.isFinite(r.attentionSeq)?Math.max(0,Number(r.attentionSeq)):0,a=Number.isFinite(r.readAttentionSeq)?Math.max(0,Number(r.readAttentionSeq)):0;!t&&i<=a&&!r.unread||F(e,{unread:!1,...n?{readOutputEpoch:n.runtimeEpoch,readOutputSeq:n.outputSeq}:{}})},[Y,F]),eo=(0,G.useCallback)((e,t=null)=>{$a(e,!0,t)},[$a]),to=(0,G.useCallback)((e,t)=>{_e(n=>{let r=n[e];return r?.following===t.following&&r?.hasUnreadOutput===t.hasUnreadOutput?n:{...n,[e]:t}})},[]),no=(0,G.useCallback)(e=>{$i(t=>({...t,draft:e,history:{...t.history,cursor:null}}))},[$i]),ro=(0,G.useCallback)((e,t)=>{if(!X||!Ti||!fA(t))return null;let n=pA(Di.history,e,t.value);return n.changed?(me(Ti,e=>({...e,draft:n.value,history:n.history})),n.value):null},[X,Ti,Di.history,me]),io=(0,G.useCallback)(async(e,t,n,i)=>{if(!dF(e))return!0;if(Ct.current.has(e.id))return!1;Ct.current.add(e.id);let a={model:t,reasoningEffort:n,serviceTier:i,source:`pending-terminal-command`};St(t=>{let n=new Map(t);return n.set(e.id,a),n}),bt(t=>new Set(t).add(e.id)),Jn({id:Date.now(),kind:`success`,message:J.terminalProfileApplying});let o=new AbortController,s=window.setTimeout(()=>{o.abort(new DOMException(`Timed out applying the Codex Terminal profile`,`TimeoutError`))},sF);try{let a=await fetch(r(`/api/agents/${encodeURIComponent(e.id)}/codex-terminal-profile`),{method:`POST`,headers:{"Content-Type":`application/json`},signal:o.signal,body:JSON.stringify({model:t,effort:n,serviceTier:i})}),s=await a.json().catch(()=>({}));if(!a.ok)throw Error(s.error||`Failed to update Codex Terminal (${a.status})`);return Jn({id:Date.now(),kind:`success`,message:J.terminalProfileApplied}),!0}catch(t){St(t=>{let n=new Map(t);return n.delete(e.id),n});let n=t instanceof Error?t.message:`Failed to update Codex Terminal`;return Jn({id:Date.now(),kind:`error`,message:J.terminalProfileFailed(n)}),!1}finally{window.clearTimeout(s),Ct.current.delete(e.id),bt(t=>{let n=new Set(t);return n.delete(e.id),n})}},[J.terminalProfileApplied,J.terminalProfileApplying,J.terminalProfileFailed]);(0,G.useEffect)(()=>{let e=X?.codexTerminalProfile;!X||!e||St(t=>{let n=t.get(X.id);if(!n||e.model!==n.model||e.reasoningEffort!==n.reasoningEffort||e.serviceTier!==n.serviceTier)return t;let r=new Map(t);return r.delete(X.id),r})},[X?.id,X?.codexTerminalProfile?.model,X?.codexTerminalProfile?.reasoningEffort,X?.codexTerminalProfile?.serviceTier]);let ao=(0,G.useCallback)((e,t,n=[])=>En(e)?ae(t,e.id,Cn(e)?n:[]):Dk(e.command)===`shell`||Pk(e).kind===`shell`||uF(e.command)?uC(e.id,`${t}\r`):uC(e.id,UN(t)),[ae]),oo=(0,G.useCallback)(async(e,t)=>(await fetch(r(`/api/agents/${encodeURIComponent(e.id)}/codex-goal`),{method:`PATCH`,headers:{"Content-Type":`application/json`},body:JSON.stringify({objective:t,status:`active`,tokenBudget:null})})).ok,[]),so=(0,G.useCallback)(e=>{let t=e??nr.current?.value??Oi,n=RA(t,ki);if(!n||!X||!Ti||ki.some(e=>e.status===`uploading`))return;if(Ai===`goal`&&xi){(async()=>{await oo(X,n)&&ao(X,n)&&(me(Ti,e=>(e.attachments.forEach(IA),{...e,draft:``,attachments:[],mode:`default`,history:dA(e.history,t)})),Pa())})();return}let r=KA(Ai,n),i=!0;UE(X)&&X.runtimeBinding.kind===`terminal`?me(Ti,e=>{let t=e.pendingFollowUp;return{...e,pendingFollowUp:{messages:[...t?.messages||[],_A(r)],createdAt:t?.createdAt||Date.now()}}}):i=ao(X,r),i&&(me(Ti,e=>(e.attachments.forEach(IA),{...e,draft:``,attachments:[],mode:`default`,history:dA(e.history,t)})),Pa())},[X,xi,Ti,ki,Ai,Oi,Pa,ao,oo,me]),co=(0,G.useCallback)(e=>{let t=e??nr.current?.value??Oi,n=!!(bi&&X&&ge.current[X.id]!==void 0),r=qA({agent:X,composerKey:Ti,draft:t,attachments:ki,composerMode:Ai,turnActive:Ii||n,sendMessage:ao,updateComposerState:me});r&&X&&bi&&!Ii&&!n&&(ge.current[X.id]=Number(bi.sessionRevision)||0),r&&Pa()},[bi,X,Ii,Ti,ki,Ai,Oi,Pa,ao,me]),lo=(0,G.useCallback)(()=>{!X||!qi||(re(X.id),Pa())},[X,qi,Pa,re]),uo=(0,G.useCallback)((e,t)=>{X&&se(X.id,e,t)},[X,se]),fo=(0,G.useCallback)(e=>{X&&se(X.id,e,void 0,{reject:!0,reason:`Declined in Farming`})},[X,se]),po=(0,G.useCallback)((e,t,n)=>{X&&JA(X.id,e,t,n===!0)},[X]),mo=(0,G.useCallback)((e,t,n)=>{X&&YA(X.id,e,t,n)},[X]),ho=(0,G.useCallback)(e=>{if(!X||!Ti)return;let t=pe[Ti]?.pendingFollowUp;if(!t||t.messages.length===0)return;let n=t.messages.find(t=>t.id===e);n&&ao(X,n.text,n.attachments)&&(H.current[Ti]=n.id,me(Ti,t=>t.pendingFollowUp?{...t,pendingFollowUp:vA(t.pendingFollowUp,e)}:t),Pa())},[X,Ti,pe,Pa,ao,me]),go=(0,G.useCallback)(e=>{!X||!Ti||(me(Ti,t=>t.pendingFollowUp?{...t,pendingFollowUp:vA(t.pendingFollowUp,e)}:t),Pa())},[X,Ti,Pa,me]);(0,G.useEffect)(()=>{let e=new Set(Y.map(e=>e.id));Object.keys(ge.current).forEach(t=>{e.has(t)||delete ge.current[t]}),Y.forEach(e=>{let t=ge.current[e.id];if(t===void 0)return;let n=Cn(e)?e.runtimeBinding:null,r=WE(e)||(Number(n?.sessionRevision)||0)>t;(!n||r||n.state===`error`||e.archived||e.status===`dead`||e.status===`stopped`)&&delete ge.current[e.id]})},[Y]),(0,G.useEffect)(()=>{let e=[];Y.forEach(t=>{let n=Cn(t),r=n?ZA(t):CA(t);if(!r)return;let i=pe[r]?.pendingFollowUp;if(!i||i.messages.length===0){delete H.current[r];return}if(t.archived||t.status===`dead`||t.status===`stopped`||n&&ge.current[t.id]!==void 0)return;if(n?WE(t):UE(t)){delete H.current[r];return}if(H.current[r])return;let a=i.messages[0];a&&e.push({agent:t,composerKey:r,message:a})}),e.length!==0&&e.forEach(({agent:e,composerKey:t,message:n})=>{ao(e,n.text,n.attachments)&&(H.current[t]=n.id,he(t,e=>e.pendingFollowUp?{...e,pendingFollowUp:vA(e.pendingFollowUp,n.id)}:e))})},[Y,pe,ao,he]);let _o=(0,G.useCallback)(()=>{Sn(null),Dn(null),kn(null),Mn(null),ea(),Br(),z(`search`),Pe(!0),requestAnimationFrame(()=>cr.current?.focus())},[ea,Br,z]),vo=(0,G.useCallback)(()=>{hF()&&zr()},[zr]),yo=(0,G.useCallback)(()=>{Br()},[Br]),bo=(0,G.useCallback)((e,t,n)=>{O(e,t,n),vo()},[vo,O]),xo=(0,G.useCallback)((e,t,n)=>{if(Ie(``),Pe(!1),Ve(0),ye(`terminal`),z(`projects`),Dk(e)!==`codex`){M(e,t,n);return}let r=n?.codexApprovalMode||ct;M(e,t,{...n,codexApprovalMode:r,...r===`full`?{dangerouslySkipPermissions:!0}:{}})},[ct,M,z]);(0,G.useEffect)(()=>{let e=!1;return fetch(r(`/api/executables`)).then(e=>{if(!e.ok)throw Error(`Failed to load executables: ${e.status}`);return e.json()}).then(t=>{e||at(Jt(Array.isArray(t)?t:t.agents??[]))}).catch(()=>{e||at([])}),()=>{e=!0}},[]);let So=(0,G.useCallback)(e=>{fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({mainPageSessionKeys:QO(e)})}).catch(()=>{})},[]),Co=(0,G.useCallback)(e=>{st(t=>{let n=QO(e(t));return WP(t,n)?t:(Nr.current+=1,So(n),new Set(n))})},[So]);(0,G.useEffect)(()=>{let e=QO(n);st(t=>WP(t,e)?t:new Set(e))},[n]);let wo=(0,G.useCallback)((e,t,n=``)=>{let r=aD({provider:e,id:t,providerHomeId:n});Co(e=>[...e,r])},[Co]),To=(0,G.useCallback)(e=>{Co(t=>Array.from(t).filter(t=>t!==e))},[Co]),Eo=(0,G.useCallback)(e=>{let t=new Set(e);Co(e=>Array.from(e).filter(e=>!t.has(e)))},[Co]),Do=(0,G.useCallback)(e=>{Promise.resolve(e).then(e=>{if(!e||typeof e!=`object`)return;let t=Array.isArray(e.removedMainPageSessionKeys)?e.removedMainPageSessionKeys:[];t.length>0&&Eo(t)}).catch(()=>{})},[Eo]);(0,G.useEffect)(()=>{let e=!1;Y.forEach(t=>{if(t.providerSessionTemporary===!0)return;let n=t.providerSessionKey||nk(t.source);if(!n)return;let r=`${t.id}:${n}`;Pr.current.has(r)||(Pr.current.add(r),Co(e=>[...e,n]),e=!0)}),e&&Ua()},[Y,Ua,Co]),(0,G.useEffect)(()=>{if(!fe||!Y.some(e=>e.providerSessionTemporary===!0))return;Ua();let e=window.setInterval(Ua,5e3);return()=>window.clearInterval(e)},[Y,fe,Ua]);let Oo=(0,G.useCallback)(()=>{let e=Cr.current,t=Array.from(tr.current?.querySelectorAll(`[data-testid="code-agent-row"], [data-testid="code-project-agent-compact"], [data-testid="code-pinned-agent-compact"], [data-testid="code-agent-rail-item"], [data-testid="code-active-session-row"]`)??[]),n=(e?t.find(t=>t.dataset.agentId===e):null)??t[0]??hr.current;return n?(n.focus({preventScroll:!0}),document.activeElement===n):!1},[]),ko=(0,G.useCallback)(e=>{let t=Array.from(tr.current?.querySelectorAll(`[data-testid="code-agent-row"], [data-testid="code-project-agent-compact"], [data-testid="code-pinned-agent-compact"], [data-testid="code-agent-rail-item"], [data-testid="code-active-session-row"]`)??[]).find(t=>e.kind===`agent`?t.dataset.agentId===e.id:t.dataset.provider===e.provider&&t.dataset.sessionId===mF(e));return t?(t.focus({preventScroll:!0}),document.activeElement===t):!1},[]),Ao=(0,G.useCallback)(()=>{if(a||document.querySelector(`.code-context-menu`)||document.querySelector(`.code-composer.menu-open, .code-composer-menu`))return!0;let e=document.activeElement;return e instanceof HTMLElement?e.closest(`.code-context-menu`)?!0:e===document.body||e===document.documentElement||hr.current?.contains(e)||e.closest(`.code-sidebar`)?!1:!!e.closest(`.code-composer`):!1},[a]),jo=(0,G.useCallback)(e=>{window.requestAnimationFrame(()=>{e?.skipIfFocusMoved&&Ao()||Oo()})},[Oo,Ao]),Mo=(0,G.useCallback)(()=>{Ie(``),Pe(!1),Ve(0)},[]),No=(0,G.useCallback)(()=>{Mo(),z(`projects`),Ar.current=`active-force`},[Mo,z]);(0,G.useEffect)(()=>{if(!Ne||i!==`search`)return;let e=e=>{let t=e.target;t instanceof Element&&(t.closest(`.code-search-panel, [data-testid="code-nav-search"], [data-testid="code-mobile-menu"]`)||No())};return document.addEventListener(`pointerdown`,e,!0),()=>{document.removeEventListener(`pointerdown`,e,!0)}},[i,No,Ne]);let Po=(0,G.useCallback)(e=>{Sn(null),Dn(null),kn(null),Mn(null),e===`projects`?(Br(),Mo()):e!==`search`&&Mo(),z(e)},[Mo,Br,z]),Fo=(0,G.useCallback)(()=>{_o(),vo()},[vo,_o]),Io=(0,G.useCallback)(e=>{Po(e),vo()},[vo,Po]),Lo=(0,G.useCallback)(e=>{cn(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[]);(0,G.useEffect)(()=>{qe.current=Ue},[Ue]),(0,G.useEffect)(()=>{Qe.current=Xe},[Xe]);let Ro=(0,G.useCallback)((e,t)=>{let n=Ln(e),i=Je.current+=1;qe.current=n,We(n),Ye.current=Ye.current.catch(()=>{}).then(async()=>{let e=await fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({projectWorkspaces:n})});if(!e.ok)throw Error(`settings request failed (${e.status})`);let t=await e.json();if(i!==Je.current)return;let a=Ln(t.settings?.projectWorkspaces);qe.current=a,We(a)}).catch(()=>{if(i!==Je.current)return;let e=Ln(t);qe.current=e,We(e),Jn({id:Date.now(),kind:`error`,message:J.copyFailed})})},[J.copyFailed]),zo=(0,G.useCallback)((e,t)=>{let n=Ln(e),i=$e.current+=1;Qe.current=n,Ze(n),et.current=et.current.catch(()=>{}).then(async()=>{let e=await fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({pinnedProjectWorkspaces:n})});if(!e.ok)throw Error(`settings request failed (${e.status})`);let t=await e.json();if(i!==$e.current)return;let a=Ln(t.settings?.pinnedProjectWorkspaces);Qe.current=a,Ze(a)}).catch(()=>{if(i!==$e.current)return;let e=Ln(t);Qe.current=e,Ze(e),Jn({id:Date.now(),kind:`error`,message:J.copyFailed})})},[J.copyFailed]),Bo=(0,G.useCallback)(e=>{let t=e.trim().replace(/[\\/]+$/,``);if(!t)return;let n=qe.current;n.includes(t)||Ro([t,...n],n),cn(e=>{if(!e.has(t))return e;let n=new Set(e);return n.delete(t),n})},[Ro]);(0,G.useEffect)(()=>{if(!Ge)return;let e=qe.current,t=oi.filter(e=>!e.hasMain&&!!e.workspace).map(e=>e.workspace).filter(t=>!e.includes(t)&&!tt.current.has(t));t.length!==0&&(t.forEach(e=>tt.current.add(e)),Ro([...t,...e],e))},[Ro,oi,Ge]);let Vo=(0,G.useCallback)(e=>{un(t=>{let n=new Set(t);return n.has(e)?n.delete(e):n.add(e),n})},[]),Ho=(0,G.useCallback)((e,t)=>{ye(`terminal`),z(`projects`),e.kind===`agent`?C(e.id,{focusTerminal:t?.focusTerminal}):Sr.current(e.provider,e.id,e.providerHomeId)},[C,z]),Uo=(0,G.useCallback)(()=>{let e=document.activeElement;if(e instanceof HTMLElement){let t=e.closest(`[data-testid="code-agent-row"], [data-testid="code-project-agent-compact"], [data-testid="code-pinned-agent-compact"], [data-testid="code-agent-rail-item"], [data-testid="code-active-session-row"]`);if(t?.dataset.agentId)return YE({kind:`agent`,id:t.dataset.agentId});if(t?.dataset.sessionId&&t.dataset.provider)return t.dataset.sessionId}let t=Cr.current;return t?YE({kind:`agent`,id:t}):``},[]),Wo=(0,G.useCallback)(e=>{if(mi.length===0)return;let t=Uo(),n=mi.findIndex(e=>mF(e)===t),r=mi[((n===-1?e>0?-1:0:n)+e+mi.length)%mi.length];r&&(Ho(r,{focusTerminal:!1}),r.kind===`agent`&&(Ao()||ko(r),window.requestAnimationFrame(()=>{Ao()||ko(r)})),Ar.current=`active`)},[Uo,ko,Ho,Ao,mi]),Go=(0,G.useCallback)(e=>{if(!(e.ctrlKey||e.metaKey||e.altKey)){if(e.key===`/`&&!e.shiftKey){e.preventDefault(),_o();return}if(e.key===`ArrowDown`){e.preventDefault(),Wo(1);return}e.key===`ArrowUp`&&(e.preventDefault(),Wo(-1))}},[Wo,_o]),Ko=(0,G.useCallback)(e=>{hi.length!==0&&Ve(t=>(t+e+hi.length)%hi.length)},[hi.length]),qo=(0,G.useCallback)(()=>{ia&&(Ho(ia),Mo())},[Mo,Ho,ia]),Jo=(0,G.useCallback)(e=>{if(e.key===`Escape`){e.preventDefault(),No();return}if(e.key===`ArrowDown`){e.preventDefault(),Ko(1);return}if(e.key===`ArrowUp`){e.preventDefault(),Ko(-1);return}e.key===`Enter`&&(e.preventDefault(),qo())},[No,Ko,qo]),Yo=(0,G.useCallback)(e=>{let t=tr.current?.getBoundingClientRect(),n=e-(t?.left??0);if(n<=QP){Rr();return}let r=t?.width??window.innerWidth,i=Math.max(qP,Math.min(JP,r-YP)),a=Math.max(qP,Math.min(i,n));Br(),fn(a)},[Rr,Br]),Xo=(0,G.useCallback)(e=>{let t=Array.from(tr.current?.querySelectorAll(`[data-testid="code-agent-row"], [data-testid="code-project-agent-compact"], [data-testid="code-pinned-agent-compact"], [data-testid="code-agent-rail-item"]`)??[]).find(t=>t.dataset.agentId===e);return t?(t.focus({preventScroll:!0}),document.activeElement===t):!1},[]),Zo=(0,G.useCallback)(e=>{JN(()=>{Xo(e)},{delays:[80,180]})},[Xo]),Qo=(0,G.useCallback)((e,t)=>{window.requestAnimationFrame(()=>{Array.from(tr.current?.querySelectorAll(`[data-testid="code-active-session-row"]`)??[]).find(n=>n.dataset.provider===e&&n.dataset.sessionId===t)?.focus({preventScroll:!0})})},[]),$o=(0,G.useCallback)(e=>{window.requestAnimationFrame(()=>{Array.from(tr.current?.querySelectorAll(`[data-testid="code-project-title"]`)??[]).find(t=>t.dataset.projectId===e)?.focus()})},[]),es=(0,G.useCallback)(async()=>{if(!ra)return;let e=aD(ra),t=ra.pinned!==!0;tn(n=>({...n,[e]:t})),kn(null),Mn(null),ot.has(e)?Qo(ra.provider,e):window.requestAnimationFrame(()=>hr.current?.focus({preventScroll:!0}));try{if(!(await fetch(r(`/api/agent-sessions/${encodeURIComponent(ra.provider)}/${encodeURIComponent(ra.id)}`),{method:`PATCH`,headers:{"Content-Type":`application/json`},body:JSON.stringify({pinned:t,providerHomeId:ra.providerHomeId||`default`})})).ok)throw Error(J.updateFailed);let n=await Va({limit:Qt.current});Lt(n.sessions),Vt(n.nextCursor),Wt(n.hasMore),tn(t=>{let n={...t};return delete n[e],n})}catch(n){tn(n=>({...n,[e]:!t})),Jn({id:Date.now(),kind:`error`,message:n instanceof Error?n.message:J.updateFailed})}},[ra,J.updateFailed,Va,Qo,ot]),ts=(0,G.useCallback)(()=>{if(!ra)return;let e=aD(ra);tn(t=>({...t,[e]:!1})),To(e),kn(null),Mn(null),window.requestAnimationFrame(()=>hr.current?.focus({preventScroll:!0}))},[ra,To]),ns=(0,G.useCallback)(e=>{e.preventDefault(),Br(),Fr.current=!0,document.body.classList.add(`code-resizing-sidebar`),Yo(e.clientX)},[Br,Yo]),rs=(0,G.useCallback)((e,t)=>{Sn(null),Dn(null),kn(null),Mn(null),Mo(),ye(`terminal`),z(`projects`),C(e,t)},[Mo,C,z]),is=(0,G.useCallback)(e=>{rs(e),vo()},[vo,rs]),as=(0,G.useCallback)(e=>f(e,{cursorRequestId:e?.lineNumber?wr.current+=1:wr.current,diffRequestId:e?.view===`diff`?Tr.current+=1:Tr.current}),[]),os=(0,G.useCallback)((e,t,n)=>{let r=Kr(e,n?.sourceAgentId),i=Le(r.filesId),a=In(r.filesId);if(!i&&(a||r.sourceAgent)){let e=a||(r.sourceAgent?.isMain?`__farming_main_agent__`:ZE(r.sourceAgent));cn(t=>{if(!t.has(e))return t;let n=new Set(t);return n.delete(e),n})}Sn(null),Dn(null),kn(null),Mn(null),Mo(),z(`projects`),ye(`editor`);let o={...as(n),workspaceRoot:r.workspaceRoot,sourceAgentId:r.sourceAgentId};Ce.openFromRead(r.filesId,t,o),p(n)&&Xn({agentId:r.filesId,path:t.path,kind:`file`,requestId:Er.current+=1}),r.sourceAgent&&r.sourceAgentId&&C(r.sourceAgentId,{focusTerminal:!1}),vo()},[Mo,vo,as,C,z,Kr,Ce]);(0,G.useEffect)(()=>{if(Se.current||xe.current)return;let e=be;if(!e){Se.current=!0;return}if(e.kind===`agent`){if(Y.length===0)return;xe.current=!0;let t=Y.find(t=>t.id===e.agentId)??Y.find(t=>!!e.providerSessionKey&&t.providerSessionKey===e.providerSessionKey)??Y.find(t=>!!e.workspace&&ZE(t)===e.workspace);t?rs(t.id,{focusTerminal:!1}):D({surface:void 0}),Se.current=!0;return}if(!Ge)return;xe.current=!0;let t=Y.find(t=>t.id===e.sourceAgentId&&(e.workspace===`/`||Fn(ZE(t))===Fn(e.workspace)))??Y.find(t=>Fn(ZE(t))===Fn(e.workspace)),n=e.workspace===`/`?Be:Fn(e.workspace);if(!(e.workspace===`/`||Ue.some(e=>Fn(e)===n)||t)){D({surface:void 0}),Se.current=!0;return}let r=Kr(n,t?.id);le(r.filesId,e.filePath).then(t=>{os(r.filesId,t,{view:e.view??`editor`,lineNumber:e.lineNumber,column:e.column,endColumn:e.endColumn,revealInTree:!0,sourceAgentId:r.sourceAgentId})}).catch(()=>{D({surface:void 0})}).finally(()=>{Se.current=!0})},[Y,be,os,rs,Ue,Ge,Kr]),(0,G.useEffect)(()=>{if(!Se.current||i!==`projects`)return;if(ve===`terminal`){let e=Y.find(e=>e.id===c);if(!e)return;D({surface:{kind:`agent`,agentId:e.id,providerSessionKey:e.providerSessionKey||void 0,workspace:ZE(e)}});return}if(!W)return;let e=W.workspaceRoot??Y.find(e=>e.id===W.agentId)?.projectWorkspace??Y.find(e=>e.id===W.agentId)?.cwd??``;e&&D({surface:{kind:`file`,workspace:e,filePath:W.file.path,view:W.diffRequestId?`diff`:`editor`,lineNumber:W.cursor?.lineNumber,column:W.cursor?.column,endColumn:W.cursor?.endColumn,sourceAgentId:W.sourceAgentId}})},[Y,c,i,ve,W]);let ss=(0,G.useCallback)((e,t)=>{let n=Kr(e),r=In(n.filesId);if(!Le(n.filesId)&&(r||n.sourceAgent)){let e=r||(n.sourceAgent?.isMain?`__farming_main_agent__`:ZE(n.sourceAgent));cn(t=>{if(!t.has(e))return t;let n=new Set(t);return n.delete(e),n})}Sn(null),Dn(null),kn(null),Mn(null),Mo(),Br(),z(`projects`),Qn({agentId:n.filesId,...t?{query:t}:{},requestId:Dr.current+=1})},[Mo,Br,z,Kr]),cs=(0,G.useCallback)((e,t,n)=>{let r=Kr(e),i=In(r.filesId);if(!Le(r.filesId)&&(i||r.sourceAgent)){let e=i||(r.sourceAgent?.isMain?`__farming_main_agent__`:ZE(r.sourceAgent));cn(t=>{if(!t.has(e))return t;let n=new Set(t);return n.delete(e),n})}Sn(null),Dn(null),kn(null),Mn(null),Mo(),Br(),z(`projects`),Xn({agentId:r.filesId,path:t,kind:n,requestId:Er.current+=1})},[Mo,Br,z,Kr]),ls=(0,G.useCallback)(async(e,t)=>{let n=Kr(e,e),r=Qw(t.path,n.workspaceRoot??``);if(!r)return null;try{let e=xF((await de(n.filesId,r,{limit:eF})).matches),i=e.find(e=>e.path===r)?.path??(e.length===1?e[0]?.path:``);return i?{...t,path:i}:null}catch{return null}},[Kr]),us=(0,G.useCallback)((e,t)=>{let n=Kr(e,e),r=Qw(t.path,n.workspaceRoot??``);if(!r)return;let i=Or.current+1;Or.current=i;let a=bF(t),o={...a??{},sourceAgentId:n.sourceAgentId},s=async(e,t=o)=>{let r=await le(n.filesId,e);Or.current===i&&os(n.filesId,r,t)},c=e=>{Or.current===i&&cs(n.filesId,e,`directory`)},l=async e=>{if(e.entryType===`directory`){c(e.path);return}await s(e.path)},u=()=>{Or.current===i&&ss(n.filesId,r)};(async()=>{try{await V(n.filesId,r),c(r);return}catch{}try{await s(r);return}catch{}try{let e=await de(n.filesId,r,{limit:eF});if(Or.current!==i)return;let t=xF(e.matches);if(t.length===1){let e=t[0];if(!e)return;await l(e);return}let c=SF(e.matches);if(t.length===0&&c.length===1){let e=c[0];if(!e)return;await s(e.path,!a&&e.kind===`content`?{lineNumber:e.lineNumber,column:e.ranges[0]?e.ranges[0].start+1:void 0,endColumn:e.ranges[0]?Math.max(e.ranges[0].start+1,e.ranges[0].end+1):void 0,sourceAgentId:n.sourceAgentId}:o);return}}catch{}u()})()},[ss,os,Kr,cs]),ds=(0,G.useCallback)((e,t,n)=>{let r=Kr(e,n?.sourceAgentId),i=Le(r.filesId),a=In(r.filesId);if(!i&&(a||r.sourceAgent)){let e=a||(r.sourceAgent?.isMain?`__farming_main_agent__`:ZE(r.sourceAgent));cn(t=>{if(!t.has(e))return t;let n=new Set(t);return n.delete(e),n})}let o=h({agentId:r.filesId,workspaceRoot:r.workspaceRoot,filePath:t});if(!je.some(e=>d(e)===o))return!1;let s={...as(n),workspaceRoot:r.workspaceRoot,sourceAgentId:r.sourceAgentId};return Ce.select(r.filesId,t,s)?(Sn(null),Dn(null),kn(null),Mn(null),Mo(),z(`projects`),ye(`editor`),p(n)&&Xn({agentId:r.filesId,path:t,kind:`file`,requestId:Er.current+=1}),r.sourceAgent&&r.sourceAgentId&&C(r.sourceAgentId,{focusTerminal:!1}),vo(),!0):!1},[Mo,vo,as,C,z,je,Kr,Ce]),fs=(0,G.useCallback)(async(e,t,n)=>{let r=Kr(n?.globalRoot?Be:e,n?.sourceAgentId??(n?.globalRoot?e:void 0)),i=r.filesId,a=n?.globalRoot?Re(t):t,o=n?{...n,sourceAgentId:r.sourceAgentId}:r.sourceAgentId?{sourceAgentId:r.sourceAgentId}:void 0;if(ds(i,a,o))return;let s=async(e,t=o)=>{os(i,await le(i,e),t)};try{await s(a,o)}catch{try{await V(i,a),cs(i,a,`directory`)}catch{try{let e=await de(i,a,{limit:eF}),t=xF(e.matches),c=SF(e.matches);if(t.length===1){let e=t[0];if(e?.entryType===`directory`){cs(i,e.path,`directory`);return}if(e?.path){await s(e.path,o);return}}if(t.length===0&&c.length===1){let e=c[0];if(e?.path){await s(e.path,!n&&e.kind===`content`?{lineNumber:e.lineNumber,column:e.ranges[0]?e.ranges[0].start+1:void 0,endColumn:e.ranges[0]?Math.max(e.ranges[0].start+1,e.ranges[0].end+1):void 0,sourceAgentId:r.sourceAgentId}:o);return}}}catch{}o?.suppressSearchOnMiss||ss(i,a)}}},[ss,os,Kr,cs,ds]),ps=(0,G.useCallback)(async e=>{if(ie(e.kind===`agent`?e.readingAnchor:void 0),e.kind===`agent`)return Wr.has(e.agentId)?(Sn(null),Dn(null),kn(null),Mn(null),Mo(),z(`projects`),ye(`terminal`),C(e.agentId,{focusTerminal:!1}),vo(),!0):!1;let t=k(e,[...Y.filter(e=>!e.isMain).map(e=>({agentId:e.id,workspace:ZE(e)})),...Ue.map(e=>({agentId:Fn(e),workspace:e}))],Be);if(!t)return!1;let n=Kr(t.agentId,t.agentId);if(e.kind===`folder`)try{let e=S((await V(n.filesId,t.filePath)).items);if(e){let t=await le(n.filesId,e);return os(n.filesId,t,{sourceAgentId:n.sourceAgentId}),!0}return cs(n.filesId,t.filePath,`directory`),!0}catch{return!1}let r={...I(e),sourceAgentId:n.sourceAgentId};if(ds(n.filesId,t.filePath,r))return!0;try{let e=await le(n.filesId,t.filePath);return os(n.filesId,e,r),!0}catch{return!1}},[Y,Mo,vo,C,z,os,Ue,cs,Kr,ds,Wr]),ms=(0,G.useRef)(ps);ms.current=ps;let hs=(0,G.useCallback)(()=>{if(typeof window>`u`)return;let e=x(window.location.search);window.history.replaceState(window.history.state,``,`${window.location.pathname}${e}${window.location.hash}`)},[]);(0,G.useEffect)(()=>{if(!hn)return;let e=!1,t=null,n=hn.kind===`agent`?hn.agentId:hn.absolutePath||(hn.kind===`folder`?hn.folderPath:hn.filePath);return ms.current(hn).then(r=>{if(!e){if(r){gn(null),hs();return}if(kr.current+=1,kr.current>=20){Jn({id:Date.now(),kind:`error`,message:J.sharedLocationUnavailable(n)}),gn(null),hs();return}t=window.setTimeout(()=>{vn(e=>e+1)},250)}}).catch(()=>{e||(Jn({id:Date.now(),kind:`error`,message:J.sharedLocationUnavailable(n)}),gn(null),hs())}),()=>{e=!0,t!==null&&window.clearTimeout(t)}},[hs,J.sharedLocationUnavailable,hn,_n]);let gs=(0,G.useCallback)(async e=>{if(e.kind===`agent`){if(!Wr.has(e.agentId))return!1}else if(!Gr.has(e.agentId))return!1;if(Sn(null),Dn(null),kn(null),Mn(null),Mo(),z(`projects`),e.kind===`agent`)return ye(`terminal`),C(e.agentId),vo(),!0;let t={view:e.view,lineNumber:e.lineNumber,column:e.column,endColumn:e.endColumn,sourceAgentId:e.sourceAgentId},n=Kr(e.agentId,e.sourceAgentId);if(ds(n.filesId,e.filePath,t))return!0;try{let r=await le(n.filesId,e.filePath);return os(n.filesId,r,t),!0}catch{return!1}},[Mo,vo,C,z,os,Kr,ds,Wr,Gr]),_s=(0,G.useCallback)(e=>{let t=U(e);return t?((async()=>{let n=t;for(;n;){if(await gs(n))return;n=U(e)}})().finally(()=>{ke()}),!0):!1},[U,ke,gs]),vs=(0,G.useCallback)(e=>{ye(`terminal`),z(`projects`),C(e,{focusTerminal:!oe()}),vo()},[vo,C,z]),ys=(0,G.useCallback)(e=>{let t=Ce.close(e);t.closedFiles.length!==0&&t.activeFileClosed&&ye(t.activeFile?`editor`:`terminal`)},[Ce]),bs=(0,G.useCallback)((e,t,n)=>{ys([{agentId:e,filePath:t,workspaceRoot:n}])},[ys]),xs=(0,G.useCallback)(()=>{let e=Ce.reopenLastClosed(e=>Gr.has(e.agentId))?.activeFile;if(!e)return!1;Sn(null),Dn(null),kn(null),Mn(null),Mo(),z(`projects`),ye(`editor`);let t=e.sourceAgentId;return t&&Y.some(e=>e.id===t)&&C(t,{focusTerminal:!1}),vo(),!0},[Y,Mo,vo,C,z,Gr,Ce]),Ss=(0,G.useCallback)(e=>{Ce.update(e)},[Ce]),Cs=(0,G.useCallback)(e=>{Ce.updateDraft(e)},[Ce]),ws=(0,G.useCallback)((e,t)=>{t.length!==0&&Ce.move(e,t)},[Ce]),Ts=(0,G.useCallback)((e,t)=>{if(t.length===0)return;let n=Ce.deleteEntries(e,t);n.activeFileDeleted&&(n.activeFile||ye(`terminal`))},[Ce]),Es=(0,G.useCallback)((e,t)=>{e.preventDefault(),e.stopPropagation();let n=Y.find(e=>e.id===t),r=xj(e.clientX,e.clientY,wj(n));Dn(null),kn(null),Mn(null),Sn({agentId:t,x:r.x,y:r.y})},[Y]),Q=(0,G.useCallback)((e,t)=>{if(e.key!==`ContextMenu`&&!(e.shiftKey&&e.key===`F10`))return;e.preventDefault(),e.stopPropagation();let n=e.currentTarget.getBoundingClientRect(),r=Y.find(e=>e.id===t),i=xj(n.left+24,n.top+n.height,wj(r));Dn(null),kn(null),Mn(null),Sn({agentId:t,x:i.x,y:i.y})},[Y]),Ds=(0,G.useCallback)((e,t)=>{e.preventDefault(),e.stopPropagation();let n=e.currentTarget.getBoundingClientRect(),r=oi.find(e=>e.id===t),i=r?.hasMain?4:Ik(r)?8:7,a=bj(i,r?.hasMain?1:2)+i*8,o=oe()?Cj(n,a,void 0,rF):Sj(n,a);Sn(null),kn(null),Mn(null),Dn({projectId:t,x:o.x,y:o.y})},[oi]),Os=(0,G.useCallback)((e,t)=>{if(e.key!==`ContextMenu`&&!(e.shiftKey&&e.key===`F10`))return;e.preventDefault(),e.stopPropagation();let n=e.currentTarget.getBoundingClientRect(),r=oi.find(e=>e.id===t),i=r?.hasMain?4:Ik(r)?8:7,a=bj(i,r?.hasMain?1:2)+i*8,o=oe()?Cj(n,a,void 0,rF):Sj(n,a);Sn(null),kn(null),Mn(null),Dn({projectId:t,x:o.x,y:o.y})},[oi]),ks=(0,G.useCallback)((e,t,n)=>{e.preventDefault(),e.stopPropagation();let r=xj(e.clientX,e.clientY,bj(3));Sn(null),Dn(null),Mn(null),kn({provider:t,sessionId:n,x:r.x,y:r.y})},[]),As=(0,G.useCallback)((e,t,n)=>{if(e.key!==`ContextMenu`&&!(e.shiftKey&&e.key===`F10`))return;e.preventDefault(),e.stopPropagation();let r=e.currentTarget.getBoundingClientRect(),i=xj(r.left+24,r.top+r.height,bj(3));Sn(null),Dn(null),Mn(null),kn({provider:t,sessionId:n,x:i.x,y:i.y})},[]),js=(0,G.useCallback)(()=>{if(!ta)return;let e=ee(ta);Sn(null),Mn(null),Vn({kind:`agent`,agentId:ta.id,title:e})},[ta]),Ms=(0,G.useCallback)(()=>{na&&(Dn(null),Mn(null),Vn({kind:`project`,projectId:na.id,workspace:na.workspace,title:na.name}))},[na]),Ns=(0,G.useCallback)(()=>{let e=Bn;Vn(null),e&&(e.kind===`agent`&&Zo(e.agentId),e.kind===`project`&&$o(e.projectId))},[Zo,$o,Bn]),Ps=(0,G.useCallback)(()=>{if(!Bn)return;let e=Bn.title.trim();if(Bn.kind===`agent`){if(!e)return;N(Bn.agentId,e),Vn(null),Zo(Bn.agentId);return}if(!e)return;let t={...nt,[Bn.workspace]:e};rt(t),fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({projectNames:t})}).then(e=>e.json()).then(e=>{rt(HP((e.settings??{}).projectNames))}).catch(()=>{Jn({id:Date.now(),kind:`error`,message:J.copyFailed})}),Vn(null),$o(Bn.projectId)},[J.copyFailed,Zo,$o,N,nt,Bn]),Fs=(0,G.useCallback)(async(e,t)=>{Sn(null),Dn(null),kn(null),Mn(null);let n=await CF(e);Jn({id:Date.now(),kind:n?`success`:`error`,message:n?J.copiedWorkingDirectory:J.copyFailed}),t?.kind===`agent`&&Zo(t.id),t?.kind===`agent-session`&&Qo(t.provider,aD(t))},[J.copiedWorkingDirectory,J.copyFailed,Zo,Qo]),Is=(0,G.useCallback)(()=>{ta&&(Sn(null),Mn(null),Un({agentId:ta.id,title:ee(ta)}))},[ta]),Ls=(0,G.useCallback)(()=>{let e=Hn?.agentId;Un(null),e&&Zo(e)},[Zo,Hn?.agentId]),Rs=(0,G.useCallback)(()=>{Hn&&(B(Hn.agentId),Un(null))},[Hn,B]),zs=(0,G.useCallback)(e=>{ta&&(Sn(null),Mn(null),L(ta.id,e))},[ta,L]),Bs=(0,G.useCallback)(e=>{if(!ta)return;let t=ta.id;if(Sn(null),Mn(null),e.archived===!0){let e=ta.providerSessionKey||nk(ta.source);e&&To(e),jr.current=t,window.setTimeout(()=>Oo(),120),window.setTimeout(()=>Oo(),360),window.setTimeout(()=>Oo(),720)}let n=F(t,e);e.archived===!0&&Do(n),e.archived!==!0&&Zo(t)},[ta,Oo,Zo,F,To,Do]),Vs=(0,G.useCallback)((e,t)=>{let n=e.id;if(Sn(null),Mn(null),t.archived===!0){let t=e.providerSessionKey||nk(e.source);t&&To(t),jr.current=n,window.setTimeout(()=>Oo(),120),window.setTimeout(()=>Oo(),360),window.setTimeout(()=>Oo(),720)}let r=F(n,t);t.archived===!0&&Do(r),t.archived!==!0&&Zo(n)},[Oo,Zo,F,To,Do]),Hs=(0,G.useCallback)(async(e,t,n)=>{try{let i=await fetch(r(`/api/agents/${encodeURIComponent(e)}/reorder`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({beforeAgentId:t,afterAgentId:n})});if(!i.ok){let e=await i.json().catch(()=>null);throw Error(e?.error||J.reorderAgentFailed)}}catch(e){Jn({id:Date.now(),kind:`error`,message:e instanceof Error?e.message:J.reorderAgentFailed})}},[J.reorderAgentFailed]),Us=(0,G.useCallback)(e=>{jr.current=null,Mr.current=e,F(e,{archived:!1}),Mo(),z(`projects`),[120,360,720,1200,1800].forEach(t=>{window.setTimeout(()=>{Ao()||Xo(e)},t)})},[Mo,Xo,F,z,Ao]),Ws=(0,G.useCallback)(e=>{te(e)},[te]),Gs=(0,G.useCallback)(async(e,t,n=``,i=``)=>{let a=aD({provider:e,id:t,providerHomeId:n}),o=()=>{Lt(r=>r.map(r=>r.provider===e&&r.id===t&&(r.providerHomeId||`default`)===(n||`default`)?{...r,archived:!1}:r))},s=Y.find(r=>(r.providerSessionKey===a||r.source===ek(e,t,n))&&r.archived!==!0&&r.status!==`dead`&&r.status!==`stopped`);if(s){o(),wo(e,t,n),C(s.id),vo();return}try{let a=await fetch(r(`/api/agent-sessions/${encodeURIComponent(e)}/${encodeURIComponent(t)}/resume`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({unarchiveArchived:!0,providerHomeId:n,...[`codex`,`claude`,`opencode`,`qoder`].includes(e)?{agentRuntimeMode:`acp`,acpHistoryMode:`load`}:{},...i?{customTitle:i}:{}})}),s=await a.json().catch(()=>null);if(!a.ok||!s?.agentId){Jn({id:Date.now(),kind:`error`,message:s?.error||`Failed to resume agent session (${a.status})`});return}o(),wo(e,t,n),E(s.agentId),vo()}catch(e){Jn({id:Date.now(),kind:`error`,message:e instanceof Error?e.message:`Failed to resume agent session`})}},[Y,wo,vo,C,E]);Sr.current=Gs;let Ks=(0,G.useCallback)(e=>{let t=pF(e.source);if(t){Gs(t.provider,t.sessionId,t.providerHomeId,e.customTitle||``),z(`projects`);return}O(Wj(e),e.command||void 0,null,e.customTitle||void 0)},[O,z,Gs]),qs=(0,G.useCallback)(e=>{if(e.preventDefault(),e.stopPropagation(),Sn(null),Dn(null),kn(null),!oe()){Mn(null),Pn(!0);return}let t=e.currentTarget.getBoundingClientRect();Mn({x:Math.max(8,t.right-164),y:Math.min(window.innerHeight-12,t.bottom+6),returnFocusTarget:e.currentTarget})},[]),Js=(0,G.useCallback)(async()=>{Mn(null);try{let e=T(fa),t=await fetch(r(`/api/share/qr-ticket`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify(e?{target:e}:{})}),n=await t.json().catch(()=>null);if(!t.ok||!n?.longUrl&&!n?.shortUrl)throw Error(n?.error||J.shareLinkFailed);zn(n.longUrl||n.shortUrl||``)}catch(e){if(e instanceof DOMException&&e.name===`AbortError`)return;Jn({id:Date.now(),kind:`error`,message:e instanceof Error?e.message:J.shareLinkFailed})}},[J.shareLinkFailed,fa]),Ys=(0,G.useCallback)(e=>{Mn(null),ue({language:e})},[ue]),Xs=(0,G.useCallback)(e=>{Mn(null),ue({appearance:e})},[ue]),Zs=(0,G.useCallback)(()=>{Mn(null),Pn(!0)},[]),Qs=(0,G.useCallback)(e=>{e.preventDefault(),e.stopPropagation(),Mn(null),Pn(!0)},[]),$s=(0,G.useMemo)(()=>oe()?aj([{type:`separator`,id:`options-mobile-share-separator`},{type:`item`,id:`options-mobile-share`,label:J.sharePage,ariaLabel:J.sharePage,onSelect:Js}]):aj([{type:`item`,id:`options-appearance-light`,label:UP(J.appearanceLight),ariaLabel:J.appearanceLight,checked:b.appearance===`light`,onSelect:()=>Xs(`light`)},{type:`item`,id:`options-appearance-dark`,label:UP(J.appearanceDark),ariaLabel:J.appearanceDark,checked:b.appearance===`dark`,onSelect:()=>Xs(`dark`)},{type:`separator`,id:`options-appearance-language-separator`},{type:`item`,id:`options-language-en`,label:VP(J.languageEnglish),ariaLabel:J.languageEnglish,checked:b.language===`en`,onSelect:()=>Ys(`en`)},{type:`item`,id:`options-language-zh`,label:VP(J.languageChinese),ariaLabel:J.languageChinese,checked:b.language===`zh`,onSelect:()=>Ys(`zh`)},{type:`separator`,id:`options-settings-separator`},{type:`item`,id:`options-open-settings`,label:J.openSettings,ariaLabel:J.openSettings,onSelect:Zs}]),[J.appearanceDark,J.appearanceLight,J.languageChinese,J.languageEnglish,J.openSettings,J.sharePage,Zs,Js,b.appearance,b.language,Xs,Ys]),ec=(0,G.useCallback)((e,t)=>{fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({agentLaunchProfiles:{[e]:t}})}).catch(()=>{})},[]),tc=(0,G.useCallback)(e=>{if(l)return;if(Ri===`claude`){let t=sP(e)?e:`default`;Tt(t),ec(`claude`,{permissionMode:t}),X&&(Jn({id:Date.now(),kind:`success`,message:J.permissionProfileRestarting}),F(X.id,{launchPermissionMode:t})),ea(),Pa();return}let t=oP(e)?e:`approve`;lt(t),ec(`codex`,{approvalMode:t}),X&&Ri===`codex`&&(Jn({id:Date.now(),kind:`success`,message:xi?J.permissionProfileApplying:J.permissionProfileRestarting}),F(X.id,{launchPermissionMode:t})),ea(),Pa()},[X,xi,ea,Ri,J.permissionProfileApplying,J.permissionProfileRestarting,Pa,F,l,ec]),nc=(0,G.useCallback)((e,t)=>{l||(Jn({id:Date.now(),kind:`success`,message:J.runtimeModeRestarting}),F(e,{agentRuntimeMode:t}))},[J.runtimeModeRestarting,F,l]),rc=(0,G.useCallback)((e,t,n)=>{ft(e),mt(t),gt(n),ut(`${e}:${t}`),ec(`codex`,{model:e,reasoningEffort:t,serviceTier:n})},[ec]),ic=(0,G.useCallback)(e=>{if(Ri===`claude`){let t=dP(e);Dt(t),ea(),Pa(),ec(`claude`,{model:t,effort:kt});return}let t=_t.find(t=>t.value===e),n=t?.reasoningLevels??[],r=t?.serviceTiers??[],i=n.some(e=>e.value===Wi)?Wi:t?.defaultEffort||n[0]?.value||Wi,a=r.some(e=>e.value===Gi)?Gi:`default`;if(ea(),Pa(),X&&dF(X)){io(X,e,i,a).then(t=>{t&&rc(e,i,a)});return}rc(e,i,a)},[X,io,kt,ea,_t,Wi,Gi,rc,Ri,Pa,ec]),ac=(0,G.useCallback)((e,t)=>{if(Ri!==`codex`)return;let n=_t.find(t=>t.value===e);if(!n)return;let r=n.reasoningLevels?.some(e=>e.value===t)?t:n.defaultEffort||n.reasoningLevels?.[0]?.value||t,i=n.serviceTiers?.some(e=>e.value===Gi)?Gi:`default`;if(X&&dF(X)){io(X,e,r,i).then(t=>{t&&rc(e,r,i)});return}rc(e,r,i)},[X,io,_t,Gi,rc,Ri]),oc=(0,G.useCallback)(e=>{if(Ri===`claude`){let t=pP(e);At(t),ea(),Pa(),ec(`claude`,{model:Et,effort:t});return}if(ea(),Pa(),X&&dF(X)){io(X,Ui,e,Gi).then(t=>{t&&rc(Ui,e,Gi)});return}rc(Ui,e,Gi)},[X,io,Et,ea,Ui,Gi,rc,Ri,Pa,ec]),sc=(0,G.useCallback)(e=>{if(Ri!==`claude`){if(ea(),Pa(),X&&dF(X)){io(X,Ui,Wi,e).then(t=>{t&&rc(Ui,Wi,e)});return}rc(Ui,Wi,e)}},[X,io,ea,Ui,Wi,rc,Ri,Pa]),cc=(0,G.useCallback)(e=>{if(Ri===`codex`){if(X&&dF(X)){io(X,Ui,Wi,e).then(t=>{t&&rc(Ui,Wi,e)});return}rc(Ui,Wi,e)}},[X,io,Ui,Wi,rc,Ri]),lc=(0,G.useCallback)(()=>{if(an){yr.current?.stop(),yr.current=null,on(!1);return}let e=Ti;if(!e)return;let t=oe(),n=lF(),r=nn&&!n?window.SpeechRecognition||window.webkitSpeechRecognition:null;if(!r){(lF()||t)&&Pa(),on(!1);return}let i=new r,a=null,o=()=>{a!==null&&(window.clearTimeout(a),a=null)},s=()=>{if(yr.current===i)try{i.stop()}catch{on(!1),yr.current=null}};i.continuous=!1,i.interimResults=!1,i.lang=b.language===`zh`?`zh-CN`:navigator.language||`en-US`,i.onresult=t=>{let n=``;for(let e=t.resultIndex;e<t.results.length;e+=1)n+=t.results[e]?.[0]?.transcript??``;n.trim()&&(me(e,e=>{let t=e.draft&&!/\s$/.test(e.draft)?` `:``;return{...e,draft:`${e.draft}${t}${n.trim()}`}}),Pa())},i.onerror=()=>{o(),on(!1)},i.onspeechend=s,i.onaudioend=s,i.onend=()=>{o(),on(!1),yr.current=null},yr.current=i,on(!0);try{i.start(),a=window.setTimeout(s,6e4)}catch{o(),yr.current=null,on(!1),t&&Pa()}},[Ti,Pa,an,nn,b.language,me]),uc=(0,G.useCallback)(()=>{if(!na?.workspace)return;let e=na.id,t=na.workspace,n=Qe.current,r=na.pinned?n.filter(e=>e!==t):[...n.filter(e=>e!==t),t];Dn(null),Mn(null),zo(r,n),window.requestAnimationFrame(()=>$o(e))},[na,$o,zo]),dc=(0,G.useCallback)(async()=>{if(!na?.workspace)return;let e=na.id,t=Fn(na.workspace);Dn(null),Mn(null);try{let e=await fetch(r(`/api/projects/reveal`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({rootId:t})}),n=await e.json().catch(()=>null);if(!e.ok)throw Error(n?.error||J.revealInFinderFailed)}catch(e){Jn({id:Date.now(),kind:`error`,message:e instanceof Error?e.message:J.revealInFinderFailed})}$o(e)},[na,J.revealInFinderFailed,$o]),fc=(0,G.useCallback)(async()=>{if(!na?.workspace)return;let e=na.id,t=Fn(na.workspace);Dn(null),Mn(null);try{await Ye.current.catch(()=>{});let e=await fetch(r(`/api/projects/create-worktree`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({rootId:t})}),n=await e.json().catch(()=>null);if(!e.ok)throw Error(n?.error||J.permanentWorktreeFailed);let i=Ln(n?.projectWorkspaces);Je.current+=1,qe.current=i,We(i),Jn({id:Date.now(),kind:`success`,message:J.permanentWorktreeCreated})}catch(e){Jn({id:Date.now(),kind:`error`,message:e instanceof Error?e.message:J.permanentWorktreeFailed})}$o(e)},[na,J.permanentWorktreeCreated,J.permanentWorktreeFailed,$o]),pc=(0,G.useCallback)(()=>{if(!na)return;let e=na.id;na.agents.forEach(e=>{e.unread&&$a(e.id,!0)}),Dn(null),Mn(null),$o(e)},[na,$o,$a]),mc=(0,G.useCallback)(()=>{if(!na)return;let e=na.workspace,t=na.agents.filter(e=>!e.isMain),n=Yr.filter(t=>sD(t)===e);if(t.length===0&&n.length===0){Dn(null),Mn(null),Ar.current=`list`;return}t.forEach(e=>{F(e.id,{archived:!0})}),Eo(n.map(aD)),Dn(null),Mn(null),Ar.current=`list`},[Yr,na,F,Eo]),hc=(0,G.useCallback)(()=>{if(!na||na.hasMain||na.agents.length>0||na.agentSessions.length>0||na.hasOpenFile)return;let e=qe.current;Ro(e.filter(e=>e!==na.workspace),e);let t=Qe.current;t.includes(na.workspace)&&zo(t.filter(e=>e!==na.workspace),t),Dn(null),Mn(null),Ar.current=`list`},[na,zo,Ro]),gc=(0,G.useCallback)(()=>{na&&(Dn(null),Mn(null),Kn({projectId:na.id,workspace:na.workspace,sessionHandles:na.agentSessions.map(aD)}))},[na]),_c=(0,G.useCallback)(()=>{let e=Gn?.projectId;Kn(null),e&&$o(e)},[Gn?.projectId,$o]),vc=(0,G.useCallback)(async()=>{if(!Gn)return;let e=Gn,t=await R(e.workspace,{force:!0});if(t.deleted){Eo([...e.sessionHandles,...t.removedMainPageSessionKeys??[]]);let n=qe.current;Ro(n.filter(t=>t!==e.workspace),n);let r=Qe.current;r.includes(e.workspace)&&zo(r.filter(t=>t!==e.workspace),r),Ar.current=`list`,Kn(null)}},[Gn,R,zo,Ro,Eo]),yc=(0,G.useCallback)(()=>{let e=xn?.agentId,t=wn?.projectId,n=On?.provider,r=On?.sessionId,i=jn?.returnFocusTarget??null;Sn(null),Dn(null),kn(null),Mn(null),e?Zo(e):t?$o(t):n&&r?Qo(n,r):i&&window.requestAnimationFrame(()=>i.focus({preventScroll:!0}))},[xn?.agentId,On?.provider,On?.sessionId,Zo,Qo,$o,jn?.returnFocusTarget,wn?.projectId]),bc=(0,G.useCallback)((e,t)=>{if(!t)return!1;if(e.key===`Escape`)return e.preventDefault(),e.stopPropagation(),yc(),!0;let n=Array.from(t.querySelectorAll(`button:not(:disabled)`));if(n.length===0)return;let r=n.findIndex(e=>e===document.activeElement),i=Math.min(vr.current,n.length-1),a=r===-1?i:r,o=e=>{vr.current=e,n[e]?.focus()};if(e.key===`Tab`){_r.current=!0,e.preventDefault(),e.stopPropagation();let t=a+(e.shiftKey?-1:1);if(t<0||t>=n.length){yc();return}return o(t),!0}if(e.key===`ArrowDown`||e.key===`ArrowUp`){_r.current=!0,e.preventDefault(),e.stopPropagation();let t=e.key===`ArrowDown`?1:-1;return o(a===-1?t>0?0:n.length-1:(a+t+n.length)%n.length),!0}return e.key===`Home`?(_r.current=!0,e.preventDefault(),e.stopPropagation(),o(0),!0):e.key===`End`?(_r.current=!0,e.preventDefault(),e.stopPropagation(),o(n.length-1),!0):!1},[yc]),xc=(0,G.useCallback)(e=>{e.defaultPrevented||bc(e.nativeEvent,e.currentTarget)},[bc]);(0,G.useLayoutEffect)(()=>{if(!xn&&!wn&&!On&&!jn)return;let e=e=>{bc(e,document.querySelector(`.code-context-menu`))&&e.stopImmediatePropagation()};return document.addEventListener(`keydown`,e,!0),()=>document.removeEventListener(`keydown`,e,!0)},[xn,On,bc,jn,wn]);let Sc=(0,G.useCallback)(e=>{let t=Array.from(e.currentTarget.querySelectorAll(`button:not(:disabled)`)),n=e.target instanceof Element?e.target.closest(`button`):null,r=t.findIndex(e=>e===n||e===document.activeElement);if(e.key===`Escape`){e.preventDefault(),e.stopPropagation(),ea(),Pa();return}if(e.key===`Tab`){e.preventDefault(),e.stopPropagation();let t=Mi?`[data-testid="code-composer-model-picker"]`:Ni?hF()?`[data-testid="code-composer-send"]`:`[data-testid="code-composer-mic"]`:`[data-testid="code-composer-approval"]`;ea(),window.requestAnimationFrame(()=>{document.querySelector(t)?.focus({preventScroll:!0})});return}if(e.key===`ArrowDown`||e.key===`ArrowUp`){e.preventDefault(),e.stopPropagation();let n=e.key===`ArrowDown`?1:-1;t[r===-1?n>0?0:t.length-1:(r+n+t.length)%t.length]?.focus();return}if(e.key===`Home`){e.preventDefault(),e.stopPropagation(),t[0]?.focus();return}e.key===`End`&&(e.preventDefault(),e.stopPropagation(),t[t.length-1]?.focus())},[Mi,ea,Pa,Ni]),Cc=(0,G.useCallback)(e=>{let t=e.relatedTarget;t&&(t instanceof Node&&e.currentTarget.contains(t)||t instanceof Element&&t.closest(`.code-composer`)||ea())},[ea]);(0,G.useEffect)(()=>{function e(e){if(a)return;let t=e.target;if(xn||wn||On||jn){if(bc(e,gr.current))return;if(e.key.length===1||e.key===`Tab`||e.key===`ArrowDown`||e.key===`ArrowUp`||e.key===`Home`||e.key===`End`){e.preventDefault(),e.stopPropagation();return}}if(e.key===`Escape`&&Bn){e.preventDefault(),Ns();return}if(e.key===`Escape`&&Hn){e.preventDefault(),Ls();return}if(e.key===`Escape`&&Gn){e.preventDefault(),_c();return}if(Bn||Hn||Gn){Ht(t)||(e.preventDefault(),e.stopPropagation());return}let n=y?Wn(e):null;if(n){vF(e),_s(n);return}if(GP(e)&&!Ht(t)){e.preventDefault(),e.stopPropagation(),xs();return}if((e.ctrlKey||e.metaKey)&&e.key.toLowerCase()===`p`&&!e.altKey&&!e.shiftKey&&!Bn&&!Hn&&!Gn&&!Ht(t)&&!fF(t)&&!Rt(t)){let n=la(t)??ca;if(!n)return;e.preventDefault(),ss(n);return}if(!(zt(t)||Rt(t))&&!(Ht(t)&&e.key!==`Escape`)){if(e.key===`Escape`&&(ji||Mi||Ni)){e.preventDefault(),ea(),Pa();return}if(e.key===`Escape`&&i!==`projects`){e.preventDefault(),Sn(null),Dn(null),kn(null),Mn(null),Mo(),z(`projects`),Ar.current=`active-force`;return}if(e.key===`Escape`&&(xn||wn||On||jn)){e.preventDefault();let t=xn?.agentId,n=wn?.projectId,r=On?.provider,i=On?.sessionId,a=jn?.returnFocusTarget??null;Sn(null),Dn(null),kn(null),Mn(null),t?Zo(t):n?$o(n):r&&i?Qo(r,i):a&&window.requestAnimationFrame(()=>a.focus({preventScroll:!0}));return}if(y){if((e.ctrlKey||e.metaKey)&&e.key.toLowerCase()===`b`){e.preventDefault(),Vr();return}e.key===`/`&&!e.ctrlKey&&!e.metaKey&&!e.altKey&&!e.shiftKey&&(e.preventDefault(),_o())}}}return window.addEventListener(`keydown`,e,!0),()=>window.removeEventListener(`keydown`,e,!0)},[i,xn,Mi,ea,_c,Ls,Ns,On,Gn,a,Zo,Qo,Pa,$o,ss,bc,Hn,y,Ni,_s,jn,ji,ca,la,wn,Bn,xs,Mo,z,_o,Vr]),(0,G.useEffect)(()=>{if(!Bn)return;let e=Bn.title,t=!1;return JN(()=>{let n=lr.current;if(!n)return;let r=document.activeElement;if(r!==n&&!ur.current?.contains(r)&&n.focus(),!t&&document.activeElement===n&&n.value===e){if(t=!0,Bn.kind===`project`){let e=n.value.length;n.setSelectionRange(e,e);return}n.select()}},{delays:[0,80,180,360]})},[$n]),(0,G.useEffect)(()=>Hn?JN(()=>{dr.current?.contains(document.activeElement)||fr.current?.focus()},{runNow:!1,delays:[180]}):void 0,[Hn]),(0,G.useEffect)(()=>Gn?JN(()=>{pr.current?.contains(document.activeElement)||mr.current?.focus()},{runNow:!1,delays:[180]}):void 0,[Gn]),(0,G.useEffect)(()=>{if(!qn)return;let e=window.setTimeout(()=>Jn(null),1700);return()=>window.clearTimeout(e)},[qn]),(0,G.useEffect)(()=>{function e(e){let t=e.target;t instanceof Element&&t.closest(`.code-context-menu`)||(Sn(null),Dn(null),kn(null),Mn(null))}if(!(!xn&&!wn&&!On&&!jn))return window.addEventListener(`pointerdown`,e),()=>window.removeEventListener(`pointerdown`,e)},[xn,On,jn,wn]),(0,G.useEffect)(()=>{function e(e){let t=e.target;t instanceof Element&&t.closest(`.code-composer-menu-anchor`)||ea()}if(!(!ji&&!Mi&&!Ni))return window.addEventListener(`pointerdown`,e),()=>window.removeEventListener(`pointerdown`,e)},[Mi,ea,Ni,ji]),(0,G.useLayoutEffect)(()=>!xn&&!wn&&!On&&!jn?void 0:(_r.current=!1,vr.current=0,JN(()=>{if(_r.current)return;let e=gr.current;if(!e)return;let t=document.activeElement;if(t instanceof HTMLButtonElement&&e.contains(t))return;let n=e.querySelector(`button:not(:disabled)`);n&&(vr.current=0,n.focus())},{delays:[0,80,180,360]})),[xn,On,jn,wn]),(0,G.useEffect)(()=>{if(!Ni)return;let e=window.setTimeout(()=>{let e=Pi===`model`?`.code-model-submenu .code-model-option.selected`:Pi===`speed`?`.code-speed-submenu .code-model-option.selected`:`.code-model-picker-menu > .code-model-option.selected`,t=sr.current?.querySelector(e),n=sr.current?.querySelector(`button:not(:disabled)`);(t??n)?.focus()},0);return()=>window.clearTimeout(e)},[Ni,Pi,ma,ha,ga]),(0,G.useEffect)(()=>{if(!ji)return;let e=window.setTimeout(()=>{ar.current?.querySelector(`button:not(:disabled)`)?.focus()},0);return()=>window.clearTimeout(e)},[ji]),(0,G.useEffect)(()=>{if(!Mi)return;let e=window.setTimeout(()=>{let e=or.current?.querySelector(`.code-approval-option.selected`),t=or.current?.querySelector(`button:not(:disabled)`);(e??t)?.focus()},0);return()=>window.clearTimeout(e)},[Mi,ba]),(0,G.useEffect)(()=>{if(!fe)return;let e=window.setInterval(()=>q(Date.now()),6e4);return()=>window.clearInterval(e)},[fe]),(0,G.useEffect)(()=>{let e=window.matchMedia(`(max-width: 980px)`),t=()=>{rn(!!(window.SpeechRecognition||window.webkitSpeechRecognition)&&!lF())};return t(),e.addEventListener(`change`,t),()=>{e.removeEventListener(`change`,t),yr.current?.stop(),yr.current=null}},[]),(0,G.useEffect)(()=>Ia(),[Ia]),(0,G.useEffect)(()=>{let e=()=>{Ia(),Ha()};return window.addEventListener(`farming-agent-homes-saved`,e),()=>window.removeEventListener(`farming-agent-homes-saved`,e)},[Ha,Ia]),(0,G.useEffect)(()=>Ra(),[Ra]),(0,G.useEffect)(()=>Ga(Ri||``,X?.cwd),[X?.cwd,Ri,Ga]),(0,G.useEffect)(()=>{if(Ni)return La()},[La,Ni]),(0,G.useEffect)(()=>{if(!(!Ni||Ri!==`claude`))return Ra()},[Ri,Ra,Ni]),(0,G.useEffect)(()=>Ha(),[Ha]),(0,G.useEffect)(()=>{Na()},[Na,Ti,Ai,Oi]),(0,G.useEffect)(()=>{Ei.composer.permissionMode||Ei.composer.modelPicker||$i(e=>{let t=yA(e);return Ei.composer.plusMenu||t.mode===`default`?t:{...t,mode:`default`}})},[Ei,$i]),(0,G.useEffect)(()=>{i!==`search`&&Ne&&Mo(),i!==`projects`&&(Sn(null),Dn(null),kn(null),Mn(null),ea())},[i,Mo,ea,Ne]),(0,G.useEffect)(()=>{a&&(Sn(null),Dn(null),kn(null),Mn(null),ea())},[ea,a]),(0,G.useEffect)(()=>{if(i===`projects`)return Ia()},[i,Ia]),(0,G.useEffect)(()=>{if(i!==`history`)return;let e=!1,t=Nr.current;return fetch(r(`/api/settings`)).then(e=>e.json()).then(n=>{if(e)return;let r=n.settings??{};He($t(r.lastMainWorkspace,r.workspaceHistory??[])),We(Ln(r.projectWorkspaces)),Ze(Ln(r.pinnedProjectWorkspaces)),Ke(!0),rt(HP(r.projectNames)),t===Nr.current&&st(new Set(QO(r.mainPageSessionKeys??[]))),Fa(r),Ha(!0)}).catch(()=>{e||He([])}),()=>{e=!0}},[i,Fa,Ha]),(0,G.useEffect)(()=>{function e(e){Fr.current&&(e.preventDefault(),Yo(e.clientX))}function t(){Fr.current&&(Fr.current=!1,document.body.classList.remove(`code-resizing-sidebar`))}return window.addEventListener(`pointermove`,e),window.addEventListener(`pointerup`,t),window.addEventListener(`pointercancel`,t),()=>{window.removeEventListener(`pointermove`,e),window.removeEventListener(`pointerup`,t),window.removeEventListener(`pointercancel`,t),document.body.classList.remove(`code-resizing-sidebar`)}},[Yo]),(0,G.useEffect)(()=>{let e=tr.current;if(!e||typeof ResizeObserver>`u`)return;let t=e=>{if(hF()){Lr.current||zr(),Lr.current=!0;return}if(Lr.current=!1,gF(e)){zr();return}Ir.current&&Br()};t(e.getBoundingClientRect().width);let n=new ResizeObserver(n=>{t(n[0]?.contentRect.width??e.getBoundingClientRect().width)});return n.observe(e),()=>n.disconnect()},[zr,Br]),(0,G.useEffect)(()=>{let e=Ar.current;if(!e||i!==`projects`||Ne)return;Ar.current=null;let t,n=0,r=e===`active-force`?4:12,a=()=>{n>=r||(t=window.setTimeout(o,90))},o=()=>{if(n+=1,Ao()){a();return}let t=!1;e===`list`?(hr.current?.focus({preventScroll:!0}),t=document.activeElement===hr.current):t=Oo(),(!t||e===`active-force`)&&a()},s=window.setTimeout(()=>{o()},e===`list`?0:50);return()=>{window.clearTimeout(s),t!==void 0&&window.clearTimeout(t)}},[c,i,Oo,Ne,Ao]),(0,G.useEffect)(()=>{if(!jr.current||i!==`projects`||Ne)return;jr.current=null;let e,t=0,n=()=>{t>=12||(e=window.setTimeout(r,90))},r=()=>{if(t+=1,Ao()){n();return}jo({skipIfFocusMoved:!0}),n()},a=window.setTimeout(()=>{r(),e=window.setTimeout(r,180)},50);return()=>{window.clearTimeout(a),e!==void 0&&window.clearTimeout(e)}},[Y.length,c,i,jo,Ne,Ao]),(0,G.useEffect)(()=>{let e=Mr.current;if(!e||i!==`projects`||Ne||!Y.some(t=>t.id===e))return;Mr.current=null;let t,n=0,r=()=>{n+=1,Ao()||Xo(e),!(n>=60)&&(t=window.setTimeout(()=>{window.requestAnimationFrame(r)},80))},a=window.setTimeout(()=>{window.requestAnimationFrame(r)},50);return()=>{window.clearTimeout(a),t!==void 0&&window.clearTimeout(t)}},[Y,i,Xo,Ne,Ao]),(0,G.useEffect)(()=>{sa&&bn(sa)},[sa]),(0,G.useEffect)(()=>{Ve(0)},[li,Ne]),(0,G.useEffect)(()=>{Ve(e=>hi.length===0?0:Math.min(e,hi.length-1))},[hi.length]);let wc={"--code-sidebar-width":`${pn?ZP:dn}px`};return(0,K.jsxs)(`div`,{className:`code-workspace ${pn?`sidebar-collapsed`:``}`,"data-testid":`code-workspace`,ref:tr,style:wc,children:[(0,K.jsx)(iM,{sidebarCollapsed:pn,activeView:i,searchOpen:Ne,displayedProjects:si,collapsedProjectIds:sn,normalizedSearch:``,hasProjectListItems:fi,hasDisplayedProjectListItems:fi,activeTerminalId:c,selectedSearchAgentId:aa,selectedSearchSessionHandle:oa,claimedAgentSessionKeyByAgentId:Jr.claimedAgentSessionKeyByAgentId,agentShortcutKeys:gi,keyboardShortcutsEnabled:y,now:er,mainAgent:Ur,usageSummary:o,shareTarget:fa,agentLaunchOptions:it,agentCreationWorkspace:ua,openWorkspaceFile:W,openWorkspaceFiles:je,fileRevealRequest:Yn,fileSearchFocusRequest:Zn,projectListRef:hr,canLoadMoreAgentSessions:Ut,onLoadMoreAgentSessions:Wa,onNewAgent:bo,onStartAgent:xo,onToggleSidebar:Vr,onOpenSearch:Fo,onOpenWorkspaceView:Io,onOpenMainAgent:()=>{Ur&&(ye(`terminal`),z(`projects`),C(Ur.id))},onRestartMainAgent:ne,onProjectListKeyDown:Go,onToggleProject:Lo,onToggleProjectSessions:Vo,onMountProject:Bo,onOpenProjectContextMenu:Ds,onOpenProjectKeyboardMenu:Os,onOpenAgent:is,onUpdateAgentFlags:Vs,onReorderAgent:Hs,onOpenAgentContextMenu:Es,onOpenAgentKeyboardMenu:Q,onResumeAgentSession:Gs,onOpenAgentSessionContextMenu:ks,onOpenAgentSessionKeyboardMenu:As,onOpenProjectFile:os,onSelectOpenWorkspaceFile:ds,onCloseOpenWorkspaceFile:bs,onMoveWorkspaceEntries:ws,onDeleteWorkspaceEntries:Ts,onRefreshProjectOpenFiles:Me,onOpenOptionsMenu:Qs,copy:J}),(0,K.jsx)(VN,{open:Nn,activeAgentId:i===`projects`?X?.id??null:null,language:b.language,uiPreferences:b,agentLaunchOptions:it,onClose:()=>Pn(!1),onUpdateUiPreferences:ue}),Rn&&(0,K.jsx)(ij,{copy:J,title:Oa,url:Rn,onClose:()=>zn(``)}),(0,K.jsx)(`div`,{className:`code-sidebar-resizer`,"data-testid":`code-sidebar-resizer`,role:`separator`,"aria-label":J.resizeNavigation,"aria-orientation":`vertical`,"aria-valuemin":qP,"aria-valuemax":JP,"aria-valuenow":pn?ZP:dn,onPointerDown:ns}),!pn&&(0,K.jsx)(`button`,{type:`button`,className:`code-mobile-sidebar-backdrop`,"data-testid":`code-mobile-sidebar-backdrop`,"aria-label":J.closeNavigation,onPointerDown:zr}),(0,K.jsxs)(`div`,{className:`code-mobile-topbar`,"data-testid":`code-mobile-topbar`,children:[Ma?(0,K.jsx)(`button`,{type:`button`,className:`code-mobile-topbar-button back`,"data-testid":`code-mobile-back`,"aria-label":J.backToAgent,onClick:()=>{ja&&vs(ja)},children:(0,K.jsx)(`span`,{"aria-hidden":`true`})}):(0,K.jsx)(`button`,{type:`button`,className:`code-mobile-topbar-button menu`,"data-testid":`code-mobile-menu`,"aria-label":J.openNavigation,onClick:yo,children:(0,K.jsx)(`span`,{"aria-hidden":`true`})}),(0,K.jsxs)(`div`,{className:`code-mobile-topbar-title`,children:[(0,K.jsx)(`strong`,{children:Oa}),Aa&&(0,K.jsxs)(`span`,{children:[(0,K.jsx)(`i`,{"aria-hidden":`true`}),Aa]})]}),(0,K.jsx)(`button`,{type:`button`,className:`code-mobile-topbar-button more`,"data-testid":`code-mobile-more`,"aria-label":J.openOptions,onClick:qs,children:(0,K.jsx)(`span`,{"aria-hidden":`true`})})]}),jn&&(0,K.jsx)(`div`,{className:`code-context-menu code-options-menu`,"data-testid":`code-options-menu`,style:{left:jn.x,top:jn.y},role:`menu`,ref:gr,onKeyDownCapture:xc,onKeyDown:xc,children:(0,K.jsx)(TF,{entries:$s})}),(0,K.jsx)(lA,{activeView:i,showFileEditor:da,openWorkspaceFile:W,openWorkspaceFiles:je,openAgentsCount:_i.length,visibleOpenAgents:yi,activeTerminalId:c,permissionSwitchingAgentId:l,agentSwitchingKind:u,terminalFocusRequest:_,agentCreationWorkspace:ua,displayedProjects:pi,searchQuery:Fe,searchHasQuery:ui,searchLoading:qt,visibleSearchTargetCount:hi.length,selectedSearchAgentId:aa,selectedSearchSessionHandle:oa,searchInputRef:cr,archivedRuns:ti,archivedAgents:ei,historyAgentSessions:ni,canLoadMoreHistoryAgentSessions:Ut,now:er,acpComposerProps:{active:!!X&&!Si,agentId:X?.id||``,runtimeState:bi?.state||``,sessionUpdatedAt:bi?.sessionUpdatedAt||``,runtimeError:bi?.error||``,draft:Oi,attachments:ki,composerMode:Ai,contextWindow:wi,pendingFollowUp:Ji??null,submitAction:Qi,textareaRef:nr,attachmentInputRef:ir,permissions:bi?.pendingPermissions.length?bi.pendingPermissions:bi?.pendingPermission?[bi.pendingPermission]:[],elicitations:bi?.pendingElicitations.length?bi.pendingElicitations:bi?.pendingElicitation?[bi.pendingElicitation]:[],activeElicitations:bi?.activeElicitations||[],speechSupported:nn,speechListening:an,onDraftChange:no,onNavigateHistory:ro,onRemoveAttachment:Ya,onSubmit:co,onInterrupt:lo,onDiscardPendingFollowUp:go,onToggleSpeechInput:lc,onPasteAttachment:Za,onAttachmentFiles:Xa,onChooseAttachmentFile:Ka,onActivateComposerMode:Qa,onClearComposerMode:()=>{$i(e=>({...e,mode:`default`}))},onRespondToPermission:po,onRespondToElicitation:mo},composerProps:{active:!!X&&!Si,agentKind:Ri,capabilities:Ei.composer,slashCommands:Z,draft:Oi,attachments:ki,composerMode:Ai,plusMenuOpen:ji,approvalMenuOpen:Mi,modelMenuOpen:Ni,modelPickerPane:Pi,agentModelPreset:_a,agentModel:ma,agentReasoningEffort:ha,agentServiceTier:ga,agentModelOptions:pa,currentPermissionMode:ba,permissionModeDisabled:!!l,modelProfileDisabled:Ci||!!(X&&dF(X)&&X.terminalStatus?.activity===`busy`),currentPermissionLabel:xa,currentPermissionColor:Sa,permissionModeHint:xi?J.permissionAppServerHint:J.permissionRestartHint,currentModelLabel:Ca,currentReasoningLabel:wa,currentSpeedLabel:Ta,currentReasoningOptions:va,currentServiceTierOptions:ya,permissionModeOptions:Ea,contextWindow:wi,pendingFollowUp:Ji?{messages:Ji.messages,createdAt:Ji.createdAt}:null,appServerRequest:xi?.pendingRequest||null,appServerNotice:xi?.notice||null,submitAction:Zi,speechSupported:nn,speechListening:an,textareaRef:nr,attachmentInputRef:ir,plusMenuRef:ar,approvalMenuRef:or,modelMenuRef:sr,onDraftChange:no,onNavigateHistory:ro,onRemoveAttachment:Ya,onSubmit:so,onInterrupt:lo,onSteerPendingFollowUp:ho,onDiscardPendingFollowUp:go,onRespondToAppServerRequest:uo,onRejectAppServerRequest:fo,onPasteAttachment:Za,onAttachmentFiles:Xa,onChooseAttachmentFile:Ka,onActivateComposerMode:Qa,onClearComposerMode:()=>{$i(e=>({...e,mode:`default`})),Pa()},onTogglePlusMenu:()=>{$i(e=>({...e,ui:{plusMenuOpen:!e.ui.plusMenuOpen,approvalMenuOpen:!1,modelMenuOpen:!1,modelPickerPane:null}}))},onToggleApprovalMenu:()=>{$i(e=>({...e,ui:{plusMenuOpen:!1,approvalMenuOpen:!e.ui.approvalMenuOpen,modelMenuOpen:!1,modelPickerPane:null}}))},onToggleModelMenu:()=>{$i(e=>({...e,ui:{plusMenuOpen:!1,approvalMenuOpen:!1,modelMenuOpen:!e.ui.modelMenuOpen,modelPickerPane:null}}))},onCloseMenus:ea,onSetModelPickerPane:e=>{$i(t=>({...t,ui:{...t.ui,modelPickerPane:e}}))},onComposerMenuKeyDown:Sc,onComposerMenuBlur:Cc,onUpdatePermissionMode:tc,onUpdateModel:ic,onUpdateReasoningEffort:oc,onUpdateServiceTier:sc,onUpdateModelProfile:ac,onUpdateServiceTierInline:cc,onToggleSpeechInput:lc},onNewAgent:O,onOpenTerminal:C,onOpenTerminalPath:us,onResolveTerminalPath:ls,onTerminalFollowOutputChange:to,onAgentReadLatest:eo,onRuntimeModeChange:nc,onSessionOutput:ce,onOpenSearchAgent:rs,onOpenSearchSession:e=>{Gs(e.provider,e.id,e.providerHomeId),Mo(),z(`projects`)},onSearchQueryChange:Ie,onSearchKeyDown:Jo,onCloseSearch:No,onLoadMoreHistoryAgentSessions:Wa,onSearchHistoryAgentSessions:Ba,onResumeHistorySession:Gs,onContinueArchivedRun:Ks,onOpenArchivedAgent:Ws,onRestoreArchivedAgent:Us,onChangeWorkspaceFileDraft:Cs,onUpdateOpenWorkspaceFile:Ss,onSelectOpenWorkspaceFile:ds,onOpenWorkspaceFilePath:fs,canNavigateWorkspaceBack:we,canNavigateWorkspaceForward:Te,onNavigateWorkspaceHistory:_s,onCloseOpenWorkspaceFile:bs,onCloseOpenWorkspaceFiles:ys,onRevealWorkspaceFileInExplorer:cs,onFocusWorkspaceFilesSearch:ss,onRecordWorkspaceNavigationCursor:Oe,onBackToAgentFromFile:vs,copy:J}),(0,K.jsx)(oj,{contextMenuAgent:ta,contextMenuAgentSession:ra,contextMenuProject:na,agentMenu:xn,projectMenu:wn,agentSessionMenu:On,renameDialog:Bn,killDialog:Hn,deleteWorktreeDialog:Gn,copyNotice:qn,contextMenuRef:gr,renameDialogRef:ur,renameInputRef:lr,killDialogRef:dr,killCancelButtonRef:fr,deleteWorktreeDialogRef:pr,deleteWorktreeCancelButtonRef:mr,onContextMenuKeyDown:xc,onUpdateAgentFlags:Bs,onRenameAgent:js,onRenameProject:Ms,onCopyAgentWorkingDirectory:()=>{ta&&Fs(ZE(ta),{kind:`agent`,id:ta.id})},onForkAgent:zs,onKillAgent:Is,onOpenSession:(e,t)=>{kn(null),Mn(null),Gs(e,t,ra?.providerHomeId),ra&&Qo(e,aD(ra))},onToggleSessionPinned:es,onArchiveSession:ts,onCopySessionWorkingDirectory:()=>{ra&&Fs(cD(ra),{kind:`agent-session`,provider:ra.provider,id:ra.id,providerHomeId:ra.providerHomeId})},onToggleProjectPinned:uc,onRevealProject:dc,onCreatePermanentWorktree:fc,onMarkProjectRead:pc,onArchiveProject:mc,onRemoveProject:hc,onDeleteWorktree:gc,onCloseRenameDialog:Ns,onRenameDialogTitleChange:e=>Vn(t=>t&&{...t,title:e}),onSubmitRenameDialog:Ps,onCloseKillDialog:Ls,onSubmitKillDialog:Rs,onCloseDeleteWorktreeDialog:_c,onSubmitDeleteWorktreeDialog:vc,copy:J})]})}function TF({entries:e}){return(0,K.jsx)(K.Fragment,{children:e.map(e=>e.type===`separator`?(0,K.jsx)(`div`,{className:`code-context-menu-separator`,role:`separator`},e.id):(0,K.jsxs)(`button`,{type:`button`,role:typeof e.checked==`boolean`?`menuitemradio`:`menuitem`,"aria-checked":typeof e.checked==`boolean`?e.checked:void 0,"aria-label":e.ariaLabel,className:[e.danger?`danger`:``,typeof e.checked==`boolean`?`selectable`:``,e.checked?`checked`:``].filter(Boolean).join(` `)||void 0,disabled:e.disabled,onClick:e.onSelect,children:[typeof e.checked==`boolean`&&(0,K.jsx)(`span`,{className:`code-options-menu-check`,"aria-hidden":`true`,children:e.checked?(0,K.jsx)(ke,{}):null}),e.icon&&(0,K.jsx)(`span`,{className:`code-context-menu-icon`,"aria-hidden":`true`,children:(0,K.jsx)(lj,{kind:e.icon})}),(0,K.jsx)(`span`,{children:e.label})]},e.id))})}var EF={appearance:`light`,language:`en`};function DF(e){return e===`light`||e===`dark`?e:EF.appearance}function OF(e){return e===`zh`||e===`en`?e:EF.language}function kF(e){return e}function AF(e=`terminal`,t={}){if(typeof document>`u`)return;let n=document.body,r=t.crtEffects!==!1,i=DF(t.appearance),a=kF(i);n.dataset.theme=e,n.dataset.crtEffects=r?`on`:`off`,n.dataset.appearancePreference=i,n.dataset.appearance=a,r?n.classList.remove(`no-crt`):n.classList.add(`no-crt`)}var jF=!1,MF=240,NF=3e4,PF=1e4,FF=6e4,IF=45e3,LF=6e4;function RF(e){if(e)return e.gitWorktree?.workspace?e.gitWorktree.workspace:e.projectWorkspace?e.projectWorkspace:e.cwd}function zF(e){return!e.archived&&e.status!==`dead`&&e.status!==`stopped`}function BF(e,t){return e.restartedFromAgentId===t||e.restartedFromAgentIds?.includes(t)===!0}function VF(e,t,n){return e.filter(e=>zF(e)&&BF(e,t)&&(!n?.providerSessionProvider||!n.providerSessionId||e.providerSessionProvider===n.providerSessionProvider&&(n.providerSessionTemporary===!0||e.providerSessionId===n.providerSessionId)&&(e.providerHomeId||``)===(n.providerHomeId||``))).sort((e,t)=>{let n=(t.restartedFromAgentIds?.length??0)-(e.restartedFromAgentIds?.length??0);return n===0?(t.startedAt??0)-(e.startedAt??0):n})[0]??null}function HF(e){return e?.providerSessionProvider===`codex`&&!!e.providerSessionId&&e.providerSessionTemporary!==!0}function UF(e){if(!e||!e.isConnected||e.getAttribute(`aria-disabled`)===`true`||`disabled`in e&&e.disabled)return!1;let t=window.getComputedStyle(e);return t.display!==`none`&&t.visibility!==`hidden`&&e.getClientRects().length>0}function WF(e){return UF(e)?(e.focus({preventScroll:!0}),document.activeElement===e||e.contains(document.activeElement)):!1}function GF(){An(`app`);let e=Pt(),t=It(),{keyMap:n}=Lt(e.agents,e.mainAgentId),[i]=(0,G.useState)(()=>j()),[a,o]=(0,G.useState)(`none`),[s,c]=(0,G.useState)(void 0),[l,u]=(0,G.useState)(void 0),[d,f]=(0,G.useState)(void 0),[p,m]=(0,G.useState)(()=>i.openTerminalIds??[]),[h,g]=(0,G.useState)(()=>i.activeTerminalId??null),[_,v]=(0,G.useState)(null),[y,b]=(0,G.useState)(null),[x,S]=(0,G.useState)(()=>i.activeView??`projects`),[C,w]=(0,G.useState)(null),[T,E]=(0,G.useState)(null),[O,k]=(0,G.useState)(null),[A,M]=(0,G.useState)(null),[N,P]=(0,G.useState)({}),[F,ee]=(0,G.useState)(EF),I=(0,G.useRef)(null),te=(0,G.useRef)(null),L=(0,G.useRef)(null),R=(0,G.useRef)(null),ne=(0,G.useRef)([]),z=(0,G.useRef)(!1),B=(0,G.useRef)(!1),ie=(0,G.useRef)(!1),ae=(0,G.useRef)(void 0),V=(0,G.useRef)(null),se=(0,G.useRef)(0);(0,G.useLayoutEffect)(()=>{ne.current=p},[p]),(0,G.useEffect)(()=>{D({activeTerminalId:h,activeView:x,openTerminalIds:p})},[h,x,p]);let ce=(0,G.useCallback)(e=>{R.current=e,E(e)},[]),le=a,ue=(0,G.useMemo)(()=>KN(F.language),[F.language]),de=(0,G.useMemo)(()=>{if(!T)return e.agents;let t=e.agents.filter(e=>e.id===T.agent.id||!BF(e,T.originalAgentId));return t.some(e=>e.id===T.agent.id)?t:[...t,T.agent]},[T,e.agents]),fe=(0,G.useMemo)(()=>{let e=new Map,t=new Set(p);return h&&t.add(h),t.forEach(t=>{if(de.some(e=>e.id===t&&zF(e)))return;let n=VF(de,t);n&&e.set(t,n.id)}),e},[h,de,p]),pe=(0,G.useMemo)(()=>{if(h){let e=fe.get(h);if(e)return{originalAgentId:h,replacementAgentId:e}}let e=fe.entries().next().value;return e?{originalAgentId:e[0],replacementAgentId:e[1]}:null},[h,fe]),me=(0,G.useMemo)(()=>Array.from(new Set(p.map(e=>fe.get(e)??e))),[fe,p]),he=h?fe.get(h)??h:null;(0,G.useLayoutEffect)(()=>{pe&&(m(me),g(he),k(pe))},[he,me,pe]),(0,G.useEffect)(()=>{!O||pe||k(null)},[O,pe]),(0,G.useEffect)(()=>{let t=R.current;if(!t)return;let n=VF(e.agents,t.originalAgentId,t.agent);if(!n||n.id===t.agent.id)return;let r=t.agent.id,i={...t,agent:n,replacementAgentId:n.id,transitionFromAgentId:r};m(e=>Array.from(new Set(e.map(e=>BF(n,e)?n.id:e)))),g(e=>e&&BF(n,e)?n.id:e),ce(i)},[ce,T?.agent.id,T?.originalAgentId,e.agents]),(0,G.useEffect)(()=>{let t=T;!t?.requestSettled||!t.replacementAgentId||e.agents.some(e=>e.id===t.agent.id)&&R.current?.agent.id===t.agent.id&&(L.current=null,ce(null))},[ce,T?.agent.id,T?.replacementAgentId,T?.requestSettled,e.agents]),(0,G.useEffect)(()=>{let e=T;if(!e?.requestSettled||!e.requestError||e.replacementAgentId)return;let t=e.requestErrorAt??Date.now(),n=()=>{let n=rt();if(e.requestFreshStateAt||!n.connected||n.lastMessageAt<=t)return!1;let r=R.current;return r?.originalAgentId===e.originalAgentId&&!r.replacementAgentId&&!r.requestFreshStateAt&&ce({...r,requestFreshStateAt:n.lastMessageAt}),!0};if(n())return;let r=it(n),i=t+FF,a=e.requestFreshStateAt?e.requestFreshStateAt+PF:1/0,o=Math.max(0,Math.min(i,a)-Date.now()),s=window.setTimeout(()=>{let t=R.current;!t?.requestSettled||!t.requestError||t.replacementAgentId||t.originalAgentId!==e.originalAgentId||(L.current=null,ce(null),w({id:Date.now(),kind:`error`,message:t.requestError}))},o);return()=>{r(),window.clearTimeout(s)}},[ce,T]),(0,G.useEffect)(()=>{let e=T;if(!e)return;let t=Math.max(0,e.startedAt+LF-Date.now()),n=window.setTimeout(()=>{let t=R.current;!t||t.startedAt!==e.startedAt||(L.current=null,ce(null),w({id:Date.now(),kind:`error`,message:ue.agentRestartTimedOut}))},t);return()=>window.clearTimeout(n)},[ce,ue.agentRestartTimedOut,T]);let H=(0,G.useCallback)(e=>{let t={appearance:DF(e.appearance??F.appearance),language:OF(e.language??F.language)};ee(t),fetch(r(`/api/settings`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify(t)}).then(e=>e.json()).then(e=>{let n=e.settings??{};ee({appearance:DF(n.appearance??t.appearance),language:OF(n.language??t.language)})}).catch(()=>{w({id:Date.now(),kind:`error`,message:`Failed to save preferences`})})},[F.appearance,F.language]),ge=(0,G.useCallback)(e=>{let t=Array.from(new Set(e.filter(Boolean)));t.length!==0&&fetch(r(`/api/codex/context-windows`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({agentIds:t})}).then(e=>e.json()).then(e=>{let t=Array.isArray(e.contextWindows)?e.contextWindows:[];P(e=>{let n={...e};return t.forEach(e=>{let t=String(e?.agentId||``);t&&(e&&e.available===!0?n[t]=e:delete n[t])}),n})}).catch(()=>{})},[]);(0,G.useEffect)(()=>{if(e.connected){if(e.mainAgentId||e.agents.some(e=>e.isMain)){z.current=!1;return}z.current||(z.current=!0,e.startAgent(`bash`,void 0,!0))}},[e.agents,e.connected,e.mainAgentId,e.startAgent]),(0,G.useEffect)(()=>{let e=()=>{let e=window.visualViewport,t=e?.width??window.innerWidth,n=e?.height??window.innerHeight,r=e?.offsetTop??0,i=e?.offsetLeft??0,a=oe(),o=window.innerHeight||n||MF,s=a?Math.min(Math.max(n,MF),Math.max(o,MF)):n,c=Math.max(0,o-n-r),l=a&&re(),u=a&&c>80,d=navigator.standalone===!0||window.matchMedia(`(display-mode: standalone)`).matches;document.body.classList.toggle(`code-mobile-touch`,a),document.body.classList.toggle(`code-mobile-ios`,l),document.body.classList.toggle(`code-mobile-standalone`,a&&d),document.body.classList.toggle(`code-mobile-keyboard-active`,u),document.documentElement.style.setProperty(`--app-visual-width`,`${t}px`),document.documentElement.style.setProperty(`--app-visual-height`,`${s}px`),document.documentElement.style.setProperty(`--app-visual-offset-top`,`${r}px`),document.documentElement.style.setProperty(`--app-visual-offset-left`,`${i}px`),document.documentElement.style.setProperty(`--mobile-keyboard-offset`,`${c}px`)};return e(),window.addEventListener(`resize`,e),window.visualViewport?.addEventListener(`resize`,e),window.visualViewport?.addEventListener(`scroll`,e),()=>{window.removeEventListener(`resize`,e),window.visualViewport?.removeEventListener(`resize`,e),window.visualViewport?.removeEventListener(`scroll`,e),document.documentElement.style.removeProperty(`--app-visual-width`),document.documentElement.style.removeProperty(`--app-visual-height`),document.documentElement.style.removeProperty(`--app-visual-offset-top`),document.documentElement.style.removeProperty(`--app-visual-offset-left`),document.documentElement.style.removeProperty(`--mobile-keyboard-offset`),document.body.classList.remove(`code-mobile-touch`),document.body.classList.remove(`code-mobile-ios`),document.body.classList.remove(`code-mobile-standalone`),document.body.classList.remove(`code-mobile-keyboard-active`)}},[]);let _e=(0,G.useCallback)((t,n)=>{h!==t&&e.focusAgent(t),m(e=>e.includes(t)?e:[...e,t]),g(t),S(`projects`),n?.focusTerminal!==!1&&v(e=>({agentId:t,nonce:(e?.nonce??0)+1})),o(`none`)},[h,e]),ve=(0,G.useCallback)((e,t)=>{b({agentId:e,options:t})},[]),ye=(0,G.useCallback)((e,t)=>{if(e===h&&p.includes(e)){_e(e,t);return}ve(e,t)},[_e,h,p,ve]);(0,G.useEffect)(()=>{y&&de.some(e=>e.id===y.agentId&&zF(e))&&(b(null),_e(y.agentId,y.options))},[_e,de,y]);let be=(0,G.useCallback)(e=>{let t=new Set(e);if(t.size===0)return;let n=ne.current,r=n.indexOf(h??``),i=n.filter(e=>!t.has(e)),a=r===-1?i[i.length-1]??null:i[Math.min(r,i.length-1)]??null;ne.current=i,m(i),g(e=>!e||!t.has(e)?e:a),h&&t.has(h)&&a&&v(e=>({agentId:a,nonce:(e?.nonce??0)+1}))},[h]),xe=(0,G.useCallback)(e=>{be([e])},[be]),Se=(0,G.useCallback)(e=>{if(p.length===0)return;let t=p[(Math.max(0,p.findIndex(e=>e===h))+e+p.length)%p.length];t&&ye(t)},[h,ye,p]),Ce=(0,G.useCallback)((e,t,n,r)=>{let i=se.current+1;se.current=i,V.current=n??(document.activeElement instanceof HTMLElement?document.activeElement:null),c(e),u(t),f(r),S(`projects`),o(`input`);let a=()=>{se.current===i&&o(e=>e===`input`?e:`input`)};window.requestAnimationFrame(a),window.setTimeout(a,80),window.setTimeout(a,180)},[]),we=(0,G.useCallback)(()=>{let e=V.current,t=e?.getAttribute(`data-testid`)===`code-new-agent`;V.current=null;let n=()=>{WF(e)||t&&WF(document.querySelector(`[data-testid="code-new-agent"]`))||WF((h?Array.from(document.querySelectorAll(`[data-testid="code-agent-row"]`)).find(e=>e.dataset.agentId===h):null)??null)||WF(document.querySelector(`[data-testid="code-new-agent"]`))||WF(document.querySelector(`[data-testid="code-project-list"]`))};window.requestAnimationFrame(n),window.setTimeout(n,80),window.setTimeout(n,180)},[h]),Te=(0,G.useCallback)(()=>{se.current+=1,o(`none`),we()},[we]),Ee=(0,G.useCallback)(e=>{w({id:Date.now(),kind:`error`,message:e})},[]),De=(0,G.useCallback)(t=>{mC(t).catch(e=>{console.error(`Failed to destroy killed terminal session:`,e)}),e.killAgent(t),xe(t)},[e,xe]),Oe=(0,G.useCallback)(t=>{e.interruptAgent(t)},[e]),U=(0,G.useCallback)(t=>{te.current||(z.current=!0,te.current={beforeIds:new Set(e.agents.map(e=>e.id))},e.restartMainAgent(t)||(te.current=null,z.current=!1))},[e]),ke=(0,G.useCallback)((t,n,r)=>{I.current||(se.current+=1,I.current={beforeIds:new Set(e.agents.map(e=>e.id))},e.startAgent(t,n,!1,r)||(I.current=null))},[e]);(0,G.useEffect)(()=>{let t=e.lastStartedAgentId,n=I.current;!t||!n||n.beforeIds.has(t)||(I.current=null,o(`none`),ve(t))},[ve,e.lastStartedAgentId]);let Ae=(0,G.useCallback)(async(e,t)=>{try{let n=await fetch(r(`/api/agents/${e}/fork`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({mode:t})}),i=await n.json().catch(()=>null);if(!n.ok||!i?.agentId){Ee(i?.error||`Failed to fork agent (${n.status})`);return}ve(i.agentId)}catch(e){Ee(e instanceof Error?e.message:`Failed to fork agent`)}},[Ee,ve]),W=(0,G.useCallback)(async(e,t)=>{try{let n=await fetch(r(`/api/projects/delete-worktree`),{method:`POST`,headers:{"Content-Type":`application/json`},body:JSON.stringify({workspace:e,force:t?.force===!0})}),i=await n.json().catch(()=>null);if(!n.ok&&i?.requiresForce!==!0&&Ee(i?.error||`Failed to delete worktree (${n.status})`),i?.deleted&&be(i.archivedAgentIds??[]),i)return i;let a=`Failed to delete worktree (${n.status})`;return Ee(a),{error:a}}catch(e){let t=e instanceof Error?e.message:`Failed to delete worktree`;return Ee(t),{error:t}}},[be,Ee]),je=(0,G.useCallback)(async(e,t)=>{try{let n=await fetch(r(`/api/agents/${e}`),{method:`PATCH`,headers:{"Content-Type":`application/json`},body:JSON.stringify({customTitle:t})}),i=await n.json().catch(()=>null);n.ok||Ee(i?.error||`Failed to rename agent (${n.status})`)}catch(e){Ee(e instanceof Error?e.message:`Failed to rename agent`)}},[Ee]),Me=(0,G.useCallback)(async(t,n)=>{if(n.unread===!1&&Object.keys(n).every(e=>e===`unread`||e===`readAttentionSeq`||e===`readOutputEpoch`||e===`readOutputSeq`)&&L.current===t)return!0;let i=typeof n.launchPermissionMode==`string`?n.launchPermissionMode:``,a=typeof n.agentRuntimeMode==`string`,o=i||a?e.agents.find(e=>e.id===t)??null:null,s=Tn(o)&&!a?null:o;if(s){if(L.current)return!1;L.current=t,ce({originalAgentId:t,agent:s,kind:a?`runtime`:`permission`,startedAt:Date.now()})}let c=()=>{s&&R.current?.originalAgentId===t&&(L.current=null,ce(null))};try{let e=new AbortController,a=window.setTimeout(()=>e.abort(),IF),o=await fetch(r(`/api/agents/${t}`),{method:`PATCH`,headers:{"Content-Type":`application/json`},body:JSON.stringify(n),signal:e.signal});window.clearTimeout(a);let l=await o.json().catch(()=>null);if(!o.ok){let e=R.current;return s&&e?.originalAgentId===t&&e.replacementAgentId?(ce({...e,requestSettled:!0}),l??!0):(c(),Ee(l?.error||`Failed to update agent (${o.status})`),!1)}if(l?.warning&&Ee(l.warning),n.archived===!0&&xe(t),l?.restartedAgentId){let e=l.restartedAgentId,r=R.current;s&&r?.originalAgentId===t&&(r.agent.id===t?(m(n=>n.map(n=>n===t?e:n)),g(n=>n===t?e:n),ce({...r,replacementAgentId:e,transitionFromAgentId:t,requestSettled:!0,agent:{...r.agent,id:e,launchPermissionMode:l.launchPermissionMode??i,runtimeBinding:Dn(l.agentRuntimeMode??n.agentRuntimeMode,r.agent.runtimeBinding),restartedFromAgentId:t,restartedFromAgentIds:Array.from(new Set([...r.agent.restartedFromAgentIds??[],t]))}})):ce({...r,requestSettled:!0,requestError:void 0}))}else c();return l??!0}catch(e){let n=e instanceof DOMException&&e.name===`AbortError`?ue.agentRestartTimedOut:e instanceof Error?e.message:`Failed to update agent`,r=R.current;return s&&r?.originalAgentId===t?(ce({...r,requestSettled:!0,requestError:n,requestErrorAt:Date.now()}),!!r.replacementAgentId):(Ee(n),!1)}},[xe,ce,ue.agentRestartTimedOut,Ee,e.agents]),Ne=(0,G.useCallback)(async e=>{await Me(e,{archived:!1})&&ve(e)},[Me,ve]),Pe=(0,G.useMemo)(()=>de.find(e=>e.id===he)??null,[de,he]);return(0,G.useEffect)(()=>{if(!t||!HF(Pe))return;let e=Pe.id,n,r;return n=window.setTimeout(()=>ge([e]),2500),r=window.setInterval(()=>ge([e]),NF),()=>{n!==void 0&&window.clearTimeout(n),r!==void 0&&window.clearInterval(r)}},[Pe?.id,Pe?.providerSessionId,Pe?.providerSessionProvider,Pe?.providerSessionTemporary,t,ge]),(0,G.useEffect)(()=>{let e=RF(Pe);e&&(ae.current=e)},[Pe]),Wt((0,G.useMemo)(()=>[],[Pe,Se,n,Ce,ye]),jF),(0,G.useEffect)(()=>{e.error&&(I.current=null,b(null),te.current=null,z.current=!1,Ee(e.error))},[Ee,e.error,e.errorId]),(0,G.useEffect)(()=>{if(!C)return;let e=window.setTimeout(()=>w(null),2800);return()=>window.clearTimeout(e)},[C]),(0,G.useEffect)(()=>{if(!t)return;let e=!1,n,i,a=()=>{fetch(r(`/api/usage`)).then(e=>e.json()).then(t=>{e||M(t.usage??null)}).catch(()=>{e||M(null)})};return i=window.setTimeout(a,1500),n=window.setInterval(a,6e4),()=>{e=!0,i!==void 0&&window.clearTimeout(i),n!==void 0&&window.clearInterval(n)}},[t]),(0,G.useEffect)(()=>{hC(de.filter(zF).map(e=>e.id)).catch(e=>{console.error(`Failed to prune terminal sessions:`,e)})},[de]),(0,G.useEffect)(()=>{let e=new Set(de.filter(zF).map(e=>e.id));m(t=>Array.from(new Set(t.map(t=>e.has(t)?t:VF(de,t)?.id??t))).filter(t=>e.has(t)||R.current?.agent.id===t))},[de]),(0,G.useEffect)(()=>{let e=new Set(de.filter(zF).map(e=>e.id));g(t=>t&&(e.has(t)||R.current?.agent.id===t)?t:p[0]??null)},[de,p]),(0,G.useEffect)(()=>{de.some(e=>!e.isMain&&zF(e))||(B.current=!1)},[de]),(0,G.useEffect)(()=>{if(p.length>0||B.current)return;let e=de.find(e=>!e.isMain&&zF(e))?.id;e&&(B.current=!0,m([e]),g(e))},[de,p.length,e.mainAgentId]),(0,G.useEffect)(()=>{let t=te.current;if(!t)return;let n=e.agents.find(e=>e.isMain&&!e.archived&&!t.beforeIds.has(e.id));n&&(te.current=null,z.current=!1,ye(n.id))},[ye,e.agents]),(0,G.useEffect)(()=>{if(ie.current||e.agents.length===0)return;let t=new URLSearchParams(window.location.search).get(`agent`);if(!t){ie.current=!0;return}e.agents.some(e=>e.id===t&&!e.archived)&&(ie.current=!0,ye(t))},[ye,e.agents]),(0,G.useEffect)(()=>(document.body.classList.add(`code-mode`),()=>{document.body.classList.remove(`code-mode`)}),[]),(0,G.useEffect)(()=>{AF(`terminal`,{crtEffects:!1,appearance:F.appearance})},[F.appearance]),(0,G.useEffect)(()=>{let e=!1;return fetch(r(`/api/settings`)).then(e=>e.json()).then(t=>{if(e)return;let n=t.settings??{};ee({appearance:DF(n.appearance),language:OF(n.language)})}).catch(()=>{}),()=>{e=!0}},[]),(0,K.jsxs)(`div`,{className:`app-container code-app-shell`,"data-testid":`app-shell`,children:[(0,K.jsx)(wF,{agents:de,taskHistory:e.taskHistory,mainPageSessionKeys:e.mainPageSessionKeys,activeView:x,dialogOpen:le!==`none`,usageSummary:A,contextWindowByAgentId:N,activeTerminalId:he,permissionSwitchingAgentId:T?.agent.id??null,agentSwitchingKind:T?.kind??null,permissionSwitchReplacement:T?.replacementAgentId?{originalAgentId:T.transitionFromAgentId??T.originalAgentId,replacementAgentId:T.replacementAgentId}:pe??O,openTerminalIds:me,terminalFocusRequest:_,keyMap:n,keyboardShortcutsEnabled:jF,uiPreferences:F,onOpenTerminal:ye,onOpenTerminalWhenReady:ve,onNewAgent:Ce,onStartAgent:ke,onRenameAgent:je,onUpdateAgentFlags:Me,onOpenArchivedAgent:Ne,onForkAgent:Ae,onDeleteForkWorktreeProject:W,onRestartMainAgent:U,onWorkspaceViewChange:S,onKill:De,onInterruptAgent:Oe,sendComposerInput:e.sendComposerInput,respondToAppServerRequest:e.respondToAppServerRequest,onSessionOutput:e.onSessionOutput,onUpdateUiPreferences:H}),(0,K.jsx)(vn,{open:le===`input`,mustStartMain:!1,initialWorkspace:s,initialCommand:l,initialCustomTitle:d,showWorkflowTaskFields:!1,copy:ue,onStart:ke,onClose:Te}),(0,K.jsx)(Sn,{copy:ue}),C&&(0,K.jsx)(`div`,{className:`app-toast ${C.kind}`,"data-testid":`app-toast`,role:`status`,children:C.message})]})}export{GF as App};