@tui-sandbox/library 11.2.1 → 11.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/browser/assets/{index-VJaZoTqH.js → index-DXraucSs.js} +1 -1
- package/dist/browser/index.html +1 -1
- package/dist/src/browser/neovim-client.d.ts +3 -2
- package/dist/src/browser/neovim-client.js +3 -0
- package/dist/src/browser/neovim-client.js.map +1 -1
- package/dist/src/client/neovim-terminal-client.d.ts +2 -1
- package/dist/src/client/neovim-terminal-client.js +9 -1
- package/dist/src/client/neovim-terminal-client.js.map +1 -1
- package/dist/src/client/{websocket-client.js → startTerminal.js} +1 -1
- package/dist/src/client/startTerminal.js.map +1 -0
- package/dist/src/client/terminal-config.d.ts +1 -1
- package/dist/src/client/terminal-terminal-client.d.ts +1 -1
- package/dist/src/client/terminal-terminal-client.js +1 -1
- package/dist/src/client/terminal-terminal-client.js.map +1 -1
- package/dist/src/server/applications/neovim/neovimRouter.d.ts +9 -0
- package/dist/src/server/applications/neovim/neovimRouter.js +5 -0
- package/dist/src/server/applications/neovim/neovimRouter.js.map +1 -1
- package/dist/src/server/cypress-support/contents.js +15 -0
- package/dist/src/server/cypress-support/contents.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -7
- package/src/browser/neovim-client.ts +6 -1
- package/src/client/neovim-terminal-client.ts +11 -1
- package/src/client/terminal-config.ts +1 -1
- package/src/client/terminal-terminal-client.ts +2 -2
- package/src/server/applications/neovim/neovimRouter.ts +8 -0
- package/src/server/cypress-support/contents.ts +15 -0
- package/dist/src/client/websocket-client.js.map +0 -1
- package/dist/src/server/utilities/applicationAvailable.d.ts +0 -1
- package/dist/src/server/utilities/applicationAvailable.js +0 -5
- package/dist/src/server/utilities/applicationAvailable.js.map +0 -1
- package/dist/src/server/utilities/applicationAvailable.test.d.ts +0 -1
- package/dist/src/server/utilities/applicationAvailable.test.js +0 -13
- package/dist/src/server/utilities/applicationAvailable.test.js.map +0 -1
- package/src/server/utilities/applicationAvailable.test.ts +0 -14
- package/src/server/utilities/applicationAvailable.ts +0 -5
- /package/dist/src/client/{websocket-client.d.ts → startTerminal.d.ts} +0 -0
- /package/src/client/{websocket-client.ts → startTerminal.ts} +0 -0
|
@@ -6,4 +6,4 @@ WARNING: This link could potentially be dangerous`)){const a=window.open();if(a)
|
|
|
6
6
|
`:`
|
|
7
7
|
`)}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(p){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame(()=>this._refresh())),a.isLinux&&p&&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(p){const E=this._getMouseBufferCoords(p),P=this._model.finalSelectionStart,T=this._model.finalSelectionEnd;return!!(P&&T&&E)&&this._areCoordsInSelection(E,P,T)}isCellInSelection(p,E){const P=this._model.finalSelectionStart,T=this._model.finalSelectionEnd;return!(!P||!T)&&this._areCoordsInSelection([p,E],P,T)}_areCoordsInSelection(p,E,P){return p[1]>E[1]&&p[1]<P[1]||E[1]===P[1]&&p[1]===E[1]&&p[0]>=E[0]&&p[0]<P[0]||E[1]<P[1]&&p[1]===P[1]&&p[0]<P[0]||E[1]<P[1]&&p[1]===E[1]&&p[0]>=E[0]}_selectWordAtCursor(p,E){const P=this._linkifier.currentLink?.link?.range;if(P)return this._model.selectionStart=[P.start.x-1,P.start.y-1],this._model.selectionStartLength=(0,i.getRangeLength)(P,this._bufferService.cols),this._model.selectionEnd=void 0,!0;const T=this._getMouseBufferCoords(p);return!!T&&(this._selectWordAt(T,E),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(p,E){this._model.clearSelection(),p=Math.max(p,0),E=Math.min(E,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,p],this._model.selectionEnd=[this._bufferService.cols,E],this.refresh(),this._onSelectionChange.fire()}_handleTrim(p){this._model.handleTrim(p)&&this.refresh()}_getMouseBufferCoords(p){const E=this._mouseService.getCoords(p,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(E)return E[0]--,E[1]--,E[1]+=this._bufferService.buffer.ydisp,E}_getMouseEventScrollAmount(p){let E=(0,h.getCoordsRelativeToElement)(this._coreBrowserService.window,p,this._screenElement)[1];const P=this._renderService.dimensions.css.canvas.height;return E>=0&&E<=P?0:(E>P&&(E-=P),E=Math.min(Math.max(E,-50),50),E/=50,E/Math.abs(E)+Math.round(14*E))}shouldForceSelection(p){return a.isMac?p.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:p.shiftKey}handleMouseDown(p){if(this._mouseDownTimeStamp=p.timeStamp,(p.button!==2||!this.hasSelection)&&p.button===0){if(!this._enabled){if(!this.shouldForceSelection(p))return;p.stopPropagation()}p.preventDefault(),this._dragScrollAmount=0,this._enabled&&p.shiftKey?this._handleIncrementalClick(p):p.detail===1?this._handleSingleClick(p):p.detail===2?this._handleDoubleClick(p):p.detail===3&&this._handleTripleClick(p),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(),50)}_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(p){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(p))}_handleSingleClick(p){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(p)?3:0,this._model.selectionStart=this._getMouseBufferCoords(p),!this._model.selectionStart)return;this._model.selectionEnd=void 0;const E=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);E&&E.length!==this._model.selectionStart[0]&&E.hasWidth(this._model.selectionStart[0])===0&&this._model.selectionStart[0]++}_handleDoubleClick(p){this._selectWordAtCursor(p,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(p){const E=this._getMouseBufferCoords(p);E&&(this._activeSelectionMode=2,this._selectLineAt(E[1]))}shouldColumnSelect(p){return p.altKey&&!(a.isMac&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(p){if(p.stopImmediatePropagation(),!this._model.selectionStart)return;const E=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(p),!this._model.selectionEnd)return void this.refresh(!0);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(p),this._activeSelectionMode!==3&&(this._dragScrollAmount>0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));const P=this._bufferService.buffer;if(this._model.selectionEnd[1]<P.lines.length){const T=P.lines.get(this._model.selectionEnd[1]);T&&T.hasWidth(this._model.selectionEnd[0])===0&&this._model.selectionEnd[0]<this._bufferService.cols&&this._model.selectionEnd[0]++}E&&E[0]===this._model.selectionEnd[0]&&E[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});const p=this._bufferService.buffer;this._dragScrollAmount>0?(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(p.ydisp+this._bufferService.rows,p.lines.length-1)):(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=p.ydisp),this.refresh()}}_handleMouseUp(p){const E=p.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&E<500&&p.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){const P=this._mouseService.getCoords(p,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(P&&P[0]!==void 0&&P[1]!==void 0){const T=(0,f.moveToCellSequence)(P[0]-1,P[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(T,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){const p=this._model.finalSelectionStart,E=this._model.finalSelectionEnd,P=!(!p||!E||p[0]===E[0]&&p[1]===E[1]);P?p&&E&&(this._oldSelectionStart&&this._oldSelectionEnd&&p[0]===this._oldSelectionStart[0]&&p[1]===this._oldSelectionStart[1]&&E[0]===this._oldSelectionEnd[0]&&E[1]===this._oldSelectionEnd[1]||this._fireOnSelectionChange(p,E,P)):this._oldHasSelection&&this._fireOnSelectionChange(p,E,P)}_fireOnSelectionChange(p,E,P){this._oldSelectionStart=p,this._oldSelectionEnd=E,this._oldHasSelection=P,this._onSelectionChange.fire()}_handleBufferActivate(p){this.clearSelection(),this._trimListener.dispose(),this._trimListener=p.activeBuffer.lines.onTrim(E=>this._handleTrim(E))}_convertViewportColToCharacterIndex(p,E){let P=E;for(let T=0;E>=T;T++){const B=p.loadCell(T,this._workCell).getChars().length;this._workCell.getWidth()===0?P--:B>1&&E!==T&&(P+=B-1)}return P}setSelection(p,E,P){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[p,E],this._model.selectionStartLength=P,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(p){this._isClickInSelection(p)||(this._selectWordAtCursor(p,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(p,E,P=!0,T=!0){if(p[0]>=this._bufferService.cols)return;const B=this._bufferService.buffer,D=B.lines.get(p[1]);if(!D)return;const M=B.translateBufferLineToString(p[1],!1);let j=this._convertViewportColToCharacterIndex(D,p[0]),N=j;const K=p[0]-j;let W=0,x=0,L=0,A=0;if(M.charAt(j)===" "){for(;j>0&&M.charAt(j-1)===" ";)j--;for(;N<M.length&&M.charAt(N+1)===" ";)N++}else{let U=p[0],V=p[0];D.getWidth(U)===0&&(W++,U--),D.getWidth(V)===2&&(x++,V++);const G=D.getString(V).length;for(G>1&&(A+=G-1,N+=G-1);U>0&&j>0&&!this._isCharWordSeparator(D.loadCell(U-1,this._workCell));){D.loadCell(U-1,this._workCell);const I=this._workCell.getChars().length;this._workCell.getWidth()===0?(W++,U--):I>1&&(L+=I-1,j-=I-1),j--,U--}for(;V<D.length&&N+1<M.length&&!this._isCharWordSeparator(D.loadCell(V+1,this._workCell));){D.loadCell(V+1,this._workCell);const I=this._workCell.getChars().length;this._workCell.getWidth()===2?(x++,V++):I>1&&(A+=I-1,N+=I-1),N++,V++}}N++;let O=j+K-W+L,F=Math.min(this._bufferService.cols,N-j+W+x-L-A);if(E||M.slice(j,N).trim()!==""){if(P&&O===0&&D.getCodePoint(0)!==32){const U=B.lines.get(p[1]-1);if(U&&D.isWrapped&&U.getCodePoint(this._bufferService.cols-1)!==32){const V=this._getWordAt([this._bufferService.cols-1,p[1]-1],!1,!0,!1);if(V){const G=this._bufferService.cols-V.start;O-=G,F+=G}}}if(T&&O+F===this._bufferService.cols&&D.getCodePoint(this._bufferService.cols-1)!==32){const U=B.lines.get(p[1]+1);if(U?.isWrapped&&U.getCodePoint(0)!==32){const V=this._getWordAt([0,p[1]+1],!1,!1,!0);V&&(F+=V.length)}}return{start:O,length:F}}}_selectWordAt(p,E){const P=this._getWordAt(p,E);if(P){for(;P.start<0;)P.start+=this._bufferService.cols,p[1]--;this._model.selectionStart=[P.start,p[1]],this._model.selectionStartLength=P.length}}_selectToWordAt(p){const E=this._getWordAt(p,!0);if(E){let P=p[1];for(;E.start<0;)E.start+=this._bufferService.cols,P--;if(!this._model.areSelectionValuesReversed())for(;E.start+E.length>this._bufferService.cols;)E.length-=this._bufferService.cols,P++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?E.start:E.start+E.length,P]}}_isCharWordSeparator(p){return p.getWidth()!==0&&this._optionsService.rawOptions.wordSeparator.indexOf(p.getChars())>=0}_selectLineAt(p){const E=this._bufferService.buffer.getWrappedRangeForLine(p),P={start:{x:0,y:E.first},end:{x:this._bufferService.cols-1,y:E.last}};this._model.selectionStart=[0,E.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=(0,i.getRangeLength)(P,this._bufferService.cols)}};r.SelectionService=C=l([_(3,d.IBufferService),_(4,d.ICoreService),_(5,y.IMouseService),_(6,d.IOptionsService),_(7,y.IRenderService),_(8,y.ICoreBrowserService)],C)},4725:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ILinkProviderService=r.IThemeService=r.ICharacterJoinerService=r.ISelectionService=r.IRenderService=r.IMouseService=r.ICoreBrowserService=r.ICharSizeService=void 0;const l=s(8343);r.ICharSizeService=(0,l.createDecorator)("CharSizeService"),r.ICoreBrowserService=(0,l.createDecorator)("CoreBrowserService"),r.IMouseService=(0,l.createDecorator)("MouseService"),r.IRenderService=(0,l.createDecorator)("RenderService"),r.ISelectionService=(0,l.createDecorator)("SelectionService"),r.ICharacterJoinerService=(0,l.createDecorator)("CharacterJoinerService"),r.IThemeService=(0,l.createDecorator)("ThemeService"),r.ILinkProviderService=(0,l.createDecorator)("LinkProviderService")},6731:function(w,r,s){var l=this&&this.__decorate||function(C,p,E,P){var T,B=arguments.length,D=B<3?p:P===null?P=Object.getOwnPropertyDescriptor(p,E):P;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")D=Reflect.decorate(C,p,E,P);else for(var M=C.length-1;M>=0;M--)(T=C[M])&&(D=(B<3?T(D):B>3?T(p,E,D):T(p,E))||D);return B>3&&D&&Object.defineProperty(p,E,D),D},_=this&&this.__param||function(C,p){return function(E,P){p(E,P,C)}};Object.defineProperty(r,"__esModule",{value:!0}),r.ThemeService=r.DEFAULT_ANSI_COLORS=void 0;const h=s(7239),f=s(8055),v=s(8460),y=s(844),u=s(2585),n=f.css.toColor("#ffffff"),a=f.css.toColor("#000000"),i=f.css.toColor("#ffffff"),o=f.css.toColor("#000000"),d={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117};r.DEFAULT_ANSI_COLORS=Object.freeze((()=>{const C=[f.css.toColor("#2e3436"),f.css.toColor("#cc0000"),f.css.toColor("#4e9a06"),f.css.toColor("#c4a000"),f.css.toColor("#3465a4"),f.css.toColor("#75507b"),f.css.toColor("#06989a"),f.css.toColor("#d3d7cf"),f.css.toColor("#555753"),f.css.toColor("#ef2929"),f.css.toColor("#8ae234"),f.css.toColor("#fce94f"),f.css.toColor("#729fcf"),f.css.toColor("#ad7fa8"),f.css.toColor("#34e2e2"),f.css.toColor("#eeeeec")],p=[0,95,135,175,215,255];for(let E=0;E<216;E++){const P=p[E/36%6|0],T=p[E/6%6|0],B=p[E%6];C.push({css:f.channels.toCss(P,T,B),rgba:f.channels.toRgba(P,T,B)})}for(let E=0;E<24;E++){const P=8+10*E;C.push({css:f.channels.toCss(P,P,P),rgba:f.channels.toRgba(P,P,P)})}return C})());let S=r.ThemeService=class extends y.Disposable{get colors(){return this._colors}constructor(C){super(),this._optionsService=C,this._contrastCache=new h.ColorContrastCache,this._halfContrastCache=new h.ColorContrastCache,this._onChangeColors=this.register(new v.EventEmitter),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:n,background:a,cursor:i,cursorAccent:o,selectionForeground:void 0,selectionBackgroundTransparent:d,selectionBackgroundOpaque:f.color.blend(a,d),selectionInactiveBackgroundTransparent:d,selectionInactiveBackgroundOpaque:f.color.blend(a,d),ansi:r.DEFAULT_ANSI_COLORS.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)))}_setTheme(C={}){const p=this._colors;if(p.foreground=b(C.foreground,n),p.background=b(C.background,a),p.cursor=b(C.cursor,i),p.cursorAccent=b(C.cursorAccent,o),p.selectionBackgroundTransparent=b(C.selectionBackground,d),p.selectionBackgroundOpaque=f.color.blend(p.background,p.selectionBackgroundTransparent),p.selectionInactiveBackgroundTransparent=b(C.selectionInactiveBackground,p.selectionBackgroundTransparent),p.selectionInactiveBackgroundOpaque=f.color.blend(p.background,p.selectionInactiveBackgroundTransparent),p.selectionForeground=C.selectionForeground?b(C.selectionForeground,f.NULL_COLOR):void 0,p.selectionForeground===f.NULL_COLOR&&(p.selectionForeground=void 0),f.color.isOpaque(p.selectionBackgroundTransparent)&&(p.selectionBackgroundTransparent=f.color.opacity(p.selectionBackgroundTransparent,.3)),f.color.isOpaque(p.selectionInactiveBackgroundTransparent)&&(p.selectionInactiveBackgroundTransparent=f.color.opacity(p.selectionInactiveBackgroundTransparent,.3)),p.ansi=r.DEFAULT_ANSI_COLORS.slice(),p.ansi[0]=b(C.black,r.DEFAULT_ANSI_COLORS[0]),p.ansi[1]=b(C.red,r.DEFAULT_ANSI_COLORS[1]),p.ansi[2]=b(C.green,r.DEFAULT_ANSI_COLORS[2]),p.ansi[3]=b(C.yellow,r.DEFAULT_ANSI_COLORS[3]),p.ansi[4]=b(C.blue,r.DEFAULT_ANSI_COLORS[4]),p.ansi[5]=b(C.magenta,r.DEFAULT_ANSI_COLORS[5]),p.ansi[6]=b(C.cyan,r.DEFAULT_ANSI_COLORS[6]),p.ansi[7]=b(C.white,r.DEFAULT_ANSI_COLORS[7]),p.ansi[8]=b(C.brightBlack,r.DEFAULT_ANSI_COLORS[8]),p.ansi[9]=b(C.brightRed,r.DEFAULT_ANSI_COLORS[9]),p.ansi[10]=b(C.brightGreen,r.DEFAULT_ANSI_COLORS[10]),p.ansi[11]=b(C.brightYellow,r.DEFAULT_ANSI_COLORS[11]),p.ansi[12]=b(C.brightBlue,r.DEFAULT_ANSI_COLORS[12]),p.ansi[13]=b(C.brightMagenta,r.DEFAULT_ANSI_COLORS[13]),p.ansi[14]=b(C.brightCyan,r.DEFAULT_ANSI_COLORS[14]),p.ansi[15]=b(C.brightWhite,r.DEFAULT_ANSI_COLORS[15]),C.extendedAnsi){const E=Math.min(p.ansi.length-16,C.extendedAnsi.length);for(let P=0;P<E;P++)p.ansi[P+16]=b(C.extendedAnsi[P],r.DEFAULT_ANSI_COLORS[P+16])}this._contrastCache.clear(),this._halfContrastCache.clear(),this._updateRestoreColors(),this._onChangeColors.fire(this.colors)}restoreColor(C){this._restoreColor(C),this._onChangeColors.fire(this.colors)}_restoreColor(C){if(C!==void 0)switch(C){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[C]=this._restoreColors.ansi[C]}else for(let p=0;p<this._restoreColors.ansi.length;++p)this._colors.ansi[p]=this._restoreColors.ansi[p]}modifyColors(C){C(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()}}};function b(C,p){if(C!==void 0)try{return f.css.toColor(C)}catch{}return p}r.ThemeService=S=l([_(0,u.IOptionsService)],S)},6349:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CircularList=void 0;const l=s(8460),_=s(844);class h extends _.Disposable{constructor(v){super(),this._maxLength=v,this.onDeleteEmitter=this.register(new l.EventEmitter),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this.register(new l.EventEmitter),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this.register(new l.EventEmitter),this.onTrim=this.onTrimEmitter.event,this._array=new Array(this._maxLength),this._startIndex=0,this._length=0}get maxLength(){return this._maxLength}set maxLength(v){if(this._maxLength===v)return;const y=new Array(v);for(let u=0;u<Math.min(v,this.length);u++)y[u]=this._array[this._getCyclicIndex(u)];this._array=y,this._maxLength=v,this._startIndex=0}get length(){return this._length}set length(v){if(v>this._length)for(let y=this._length;y<v;y++)this._array[y]=void 0;this._length=v}get(v){return this._array[this._getCyclicIndex(v)]}set(v,y){this._array[this._getCyclicIndex(v)]=y}push(v){this._array[this._getCyclicIndex(this._length)]=v,this._length===this._maxLength?(this._startIndex=++this._startIndex%this._maxLength,this.onTrimEmitter.fire(1)):this._length++}recycle(){if(this._length!==this._maxLength)throw new 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(v,y,...u){if(y){for(let n=v;n<this._length-y;n++)this._array[this._getCyclicIndex(n)]=this._array[this._getCyclicIndex(n+y)];this._length-=y,this.onDeleteEmitter.fire({index:v,amount:y})}for(let n=this._length-1;n>=v;n--)this._array[this._getCyclicIndex(n+u.length)]=this._array[this._getCyclicIndex(n)];for(let n=0;n<u.length;n++)this._array[this._getCyclicIndex(v+n)]=u[n];if(u.length&&this.onInsertEmitter.fire({index:v,amount:u.length}),this._length+u.length>this._maxLength){const n=this._length+u.length-this._maxLength;this._startIndex+=n,this._length=this._maxLength,this.onTrimEmitter.fire(n)}else this._length+=u.length}trimStart(v){v>this._length&&(v=this._length),this._startIndex+=v,this._length-=v,this.onTrimEmitter.fire(v)}shiftElements(v,y,u){if(!(y<=0)){if(v<0||v>=this._length)throw new Error("start argument out of range");if(v+u<0)throw new Error("Cannot shift elements in list beyond index 0");if(u>0){for(let a=y-1;a>=0;a--)this.set(v+a+u,this.get(v+a));const n=v+y+u-this._length;if(n>0)for(this._length+=n;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let n=0;n<y;n++)this.set(v+n+u,this.get(v+n))}}_getCyclicIndex(v){return(this._startIndex+v)%this._maxLength}}r.CircularList=h},1439:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.clone=void 0,r.clone=function s(l,_=5){if(typeof l!="object")return l;const h=Array.isArray(l)?[]:{};for(const f in l)h[f]=_<=1?l[f]:l[f]&&s(l[f],_-1);return h}},8055:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.contrastRatio=r.toPaddedHex=r.rgba=r.rgb=r.css=r.color=r.channels=r.NULL_COLOR=void 0;let s=0,l=0,_=0,h=0;var f,v,y,u,n;function a(o){const d=o.toString(16);return d.length<2?"0"+d:d}function i(o,d){return o<d?(d+.05)/(o+.05):(o+.05)/(d+.05)}r.NULL_COLOR={css:"#00000000",rgba:0},function(o){o.toCss=function(d,S,b,C){return C!==void 0?`#${a(d)}${a(S)}${a(b)}${a(C)}`:`#${a(d)}${a(S)}${a(b)}`},o.toRgba=function(d,S,b,C=255){return(d<<24|S<<16|b<<8|C)>>>0},o.toColor=function(d,S,b,C){return{css:o.toCss(d,S,b,C),rgba:o.toRgba(d,S,b,C)}}}(f||(r.channels=f={})),function(o){function d(S,b){return h=Math.round(255*b),[s,l,_]=n.toChannels(S.rgba),{css:f.toCss(s,l,_,h),rgba:f.toRgba(s,l,_,h)}}o.blend=function(S,b){if(h=(255&b.rgba)/255,h===1)return{css:b.css,rgba:b.rgba};const C=b.rgba>>24&255,p=b.rgba>>16&255,E=b.rgba>>8&255,P=S.rgba>>24&255,T=S.rgba>>16&255,B=S.rgba>>8&255;return s=P+Math.round((C-P)*h),l=T+Math.round((p-T)*h),_=B+Math.round((E-B)*h),{css:f.toCss(s,l,_),rgba:f.toRgba(s,l,_)}},o.isOpaque=function(S){return(255&S.rgba)==255},o.ensureContrastRatio=function(S,b,C){const p=n.ensureContrastRatio(S.rgba,b.rgba,C);if(p)return f.toColor(p>>24&255,p>>16&255,p>>8&255)},o.opaque=function(S){const b=(255|S.rgba)>>>0;return[s,l,_]=n.toChannels(b),{css:f.toCss(s,l,_),rgba:b}},o.opacity=d,o.multiplyOpacity=function(S,b){return h=255&S.rgba,d(S,h*b/255)},o.toColorRGB=function(S){return[S.rgba>>24&255,S.rgba>>16&255,S.rgba>>8&255]}}(v||(r.color=v={})),function(o){let d,S;try{const b=document.createElement("canvas");b.width=1,b.height=1;const C=b.getContext("2d",{willReadFrequently:!0});C&&(d=C,d.globalCompositeOperation="copy",S=d.createLinearGradient(0,0,1,1))}catch{}o.toColor=function(b){if(b.match(/#[\da-f]{3,8}/i))switch(b.length){case 4:return s=parseInt(b.slice(1,2).repeat(2),16),l=parseInt(b.slice(2,3).repeat(2),16),_=parseInt(b.slice(3,4).repeat(2),16),f.toColor(s,l,_);case 5:return s=parseInt(b.slice(1,2).repeat(2),16),l=parseInt(b.slice(2,3).repeat(2),16),_=parseInt(b.slice(3,4).repeat(2),16),h=parseInt(b.slice(4,5).repeat(2),16),f.toColor(s,l,_,h);case 7:return{css:b,rgba:(parseInt(b.slice(1),16)<<8|255)>>>0};case 9:return{css:b,rgba:parseInt(b.slice(1),16)>>>0}}const C=b.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(C)return s=parseInt(C[1]),l=parseInt(C[2]),_=parseInt(C[3]),h=Math.round(255*(C[5]===void 0?1:parseFloat(C[5]))),f.toColor(s,l,_,h);if(!d||!S)throw new Error("css.toColor: Unsupported css format");if(d.fillStyle=S,d.fillStyle=b,typeof d.fillStyle!="string")throw new Error("css.toColor: Unsupported css format");if(d.fillRect(0,0,1,1),[s,l,_,h]=d.getImageData(0,0,1,1).data,h!==255)throw new Error("css.toColor: Unsupported css format");return{rgba:f.toRgba(s,l,_,h),css:b}}}(y||(r.css=y={})),function(o){function d(S,b,C){const p=S/255,E=b/255,P=C/255;return .2126*(p<=.03928?p/12.92:Math.pow((p+.055)/1.055,2.4))+.7152*(E<=.03928?E/12.92:Math.pow((E+.055)/1.055,2.4))+.0722*(P<=.03928?P/12.92:Math.pow((P+.055)/1.055,2.4))}o.relativeLuminance=function(S){return d(S>>16&255,S>>8&255,255&S)},o.relativeLuminance2=d}(u||(r.rgb=u={})),function(o){function d(b,C,p){const E=b>>24&255,P=b>>16&255,T=b>>8&255;let B=C>>24&255,D=C>>16&255,M=C>>8&255,j=i(u.relativeLuminance2(B,D,M),u.relativeLuminance2(E,P,T));for(;j<p&&(B>0||D>0||M>0);)B-=Math.max(0,Math.ceil(.1*B)),D-=Math.max(0,Math.ceil(.1*D)),M-=Math.max(0,Math.ceil(.1*M)),j=i(u.relativeLuminance2(B,D,M),u.relativeLuminance2(E,P,T));return(B<<24|D<<16|M<<8|255)>>>0}function S(b,C,p){const E=b>>24&255,P=b>>16&255,T=b>>8&255;let B=C>>24&255,D=C>>16&255,M=C>>8&255,j=i(u.relativeLuminance2(B,D,M),u.relativeLuminance2(E,P,T));for(;j<p&&(B<255||D<255||M<255);)B=Math.min(255,B+Math.ceil(.1*(255-B))),D=Math.min(255,D+Math.ceil(.1*(255-D))),M=Math.min(255,M+Math.ceil(.1*(255-M))),j=i(u.relativeLuminance2(B,D,M),u.relativeLuminance2(E,P,T));return(B<<24|D<<16|M<<8|255)>>>0}o.blend=function(b,C){if(h=(255&C)/255,h===1)return C;const p=C>>24&255,E=C>>16&255,P=C>>8&255,T=b>>24&255,B=b>>16&255,D=b>>8&255;return s=T+Math.round((p-T)*h),l=B+Math.round((E-B)*h),_=D+Math.round((P-D)*h),f.toRgba(s,l,_)},o.ensureContrastRatio=function(b,C,p){const E=u.relativeLuminance(b>>8),P=u.relativeLuminance(C>>8);if(i(E,P)<p){if(P<E){const D=d(b,C,p),M=i(E,u.relativeLuminance(D>>8));if(M<p){const j=S(b,C,p);return M>i(E,u.relativeLuminance(j>>8))?D:j}return D}const T=S(b,C,p),B=i(E,u.relativeLuminance(T>>8));if(B<p){const D=d(b,C,p);return B>i(E,u.relativeLuminance(D>>8))?T:D}return T}},o.reduceLuminance=d,o.increaseLuminance=S,o.toChannels=function(b){return[b>>24&255,b>>16&255,b>>8&255,255&b]}}(n||(r.rgba=n={})),r.toPaddedHex=a,r.contrastRatio=i},8969:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CoreTerminal=void 0;const l=s(844),_=s(2585),h=s(4348),f=s(7866),v=s(744),y=s(7302),u=s(6975),n=s(8460),a=s(1753),i=s(1480),o=s(7994),d=s(9282),S=s(5435),b=s(5981),C=s(2660);let p=!1;class E extends l.Disposable{get onScroll(){return this._onScrollApi||(this._onScrollApi=this.register(new n.EventEmitter),this._onScroll.event(T=>{this._onScrollApi?.fire(T.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(T){for(const B in T)this.optionsService.options[B]=T[B]}constructor(T){super(),this._windowsWrappingHeuristics=this.register(new l.MutableDisposable),this._onBinary=this.register(new n.EventEmitter),this.onBinary=this._onBinary.event,this._onData=this.register(new n.EventEmitter),this.onData=this._onData.event,this._onLineFeed=this.register(new n.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onResize=this.register(new n.EventEmitter),this.onResize=this._onResize.event,this._onWriteParsed=this.register(new n.EventEmitter),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this.register(new n.EventEmitter),this._instantiationService=new h.InstantiationService,this.optionsService=this.register(new y.OptionsService(T)),this._instantiationService.setService(_.IOptionsService,this.optionsService),this._bufferService=this.register(this._instantiationService.createInstance(v.BufferService)),this._instantiationService.setService(_.IBufferService,this._bufferService),this._logService=this.register(this._instantiationService.createInstance(f.LogService)),this._instantiationService.setService(_.ILogService,this._logService),this.coreService=this.register(this._instantiationService.createInstance(u.CoreService)),this._instantiationService.setService(_.ICoreService,this.coreService),this.coreMouseService=this.register(this._instantiationService.createInstance(a.CoreMouseService)),this._instantiationService.setService(_.ICoreMouseService,this.coreMouseService),this.unicodeService=this.register(this._instantiationService.createInstance(i.UnicodeService)),this._instantiationService.setService(_.IUnicodeService,this.unicodeService),this._charsetService=this._instantiationService.createInstance(o.CharsetService),this._instantiationService.setService(_.ICharsetService,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(C.OscLinkService),this._instantiationService.setService(_.IOscLinkService,this._oscLinkService),this._inputHandler=this.register(new S.InputHandler(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this.register((0,n.forwardEvent)(this._inputHandler.onLineFeed,this._onLineFeed)),this.register(this._inputHandler),this.register((0,n.forwardEvent)(this._bufferService.onResize,this._onResize)),this.register((0,n.forwardEvent)(this.coreService.onData,this._onData)),this.register((0,n.forwardEvent)(this.coreService.onBinary,this._onBinary)),this.register(this.coreService.onRequestScrollToBottom(()=>this.scrollToBottom())),this.register(this.coreService.onUserInput(()=>this._writeBuffer.handleUserInput())),this.register(this.optionsService.onMultipleOptionChange(["windowsMode","windowsPty"],()=>this._handleWindowsPtyOptionChange())),this.register(this._bufferService.onScroll(B=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this.register(this._inputHandler.onScroll(B=>{this._onScroll.fire({position:this._bufferService.buffer.ydisp,source:0}),this._inputHandler.markRangeDirty(this._bufferService.buffer.scrollTop,this._bufferService.buffer.scrollBottom)})),this._writeBuffer=this.register(new b.WriteBuffer((B,D)=>this._inputHandler.parse(B,D))),this.register((0,n.forwardEvent)(this._writeBuffer.onWriteParsed,this._onWriteParsed))}write(T,B){this._writeBuffer.write(T,B)}writeSync(T,B){this._logService.logLevel<=_.LogLevelEnum.WARN&&!p&&(this._logService.warn("writeSync is unreliable and will be removed soon."),p=!0),this._writeBuffer.writeSync(T,B)}input(T,B=!0){this.coreService.triggerDataEvent(T,B)}resize(T,B){isNaN(T)||isNaN(B)||(T=Math.max(T,v.MINIMUM_COLS),B=Math.max(B,v.MINIMUM_ROWS),this._bufferService.resize(T,B))}scroll(T,B=!1){this._bufferService.scroll(T,B)}scrollLines(T,B,D){this._bufferService.scrollLines(T,B,D)}scrollPages(T){this.scrollLines(T*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(T){const B=T-this._bufferService.buffer.ydisp;B!==0&&this.scrollLines(B)}registerEscHandler(T,B){return this._inputHandler.registerEscHandler(T,B)}registerDcsHandler(T,B){return this._inputHandler.registerDcsHandler(T,B)}registerCsiHandler(T,B){return this._inputHandler.registerCsiHandler(T,B)}registerOscHandler(T,B){return this._inputHandler.registerOscHandler(T,B)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let T=!1;const B=this.optionsService.rawOptions.windowsPty;B&&B.buildNumber!==void 0&&B.buildNumber!==void 0?T=B.backend==="conpty"&&B.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(T=!0),T?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){const T=[];T.push(this.onLineFeed(d.updateWindowsModeWrappedState.bind(null,this._bufferService))),T.push(this.registerCsiHandler({final:"H"},()=>((0,d.updateWindowsModeWrappedState)(this._bufferService),!1))),this._windowsWrappingHeuristics.value=(0,l.toDisposable)(()=>{for(const B of T)B.dispose()})}}}r.CoreTerminal=E},8460:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.runAndSubscribe=r.forwardEvent=r.EventEmitter=void 0,r.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=s=>(this._listeners.push(s),{dispose:()=>{if(!this._disposed){for(let l=0;l<this._listeners.length;l++)if(this._listeners[l]===s)return void this._listeners.splice(l,1)}}})),this._event}fire(s,l){const _=[];for(let h=0;h<this._listeners.length;h++)_.push(this._listeners[h]);for(let h=0;h<_.length;h++)_[h].call(void 0,s,l)}dispose(){this.clearListeners(),this._disposed=!0}clearListeners(){this._listeners&&(this._listeners.length=0)}},r.forwardEvent=function(s,l){return s(_=>l.fire(_))},r.runAndSubscribe=function(s,l){return l(void 0),s(_=>l(_))}},5435:function(w,r,s){var l=this&&this.__decorate||function(W,x,L,A){var O,F=arguments.length,U=F<3?x:A===null?A=Object.getOwnPropertyDescriptor(x,L):A;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")U=Reflect.decorate(W,x,L,A);else for(var V=W.length-1;V>=0;V--)(O=W[V])&&(U=(F<3?O(U):F>3?O(x,L,U):O(x,L))||U);return F>3&&U&&Object.defineProperty(x,L,U),U},_=this&&this.__param||function(W,x){return function(L,A){x(L,A,W)}};Object.defineProperty(r,"__esModule",{value:!0}),r.InputHandler=r.WindowsOptionsReportType=void 0;const h=s(2584),f=s(7116),v=s(2015),y=s(844),u=s(482),n=s(8437),a=s(8460),i=s(643),o=s(511),d=s(3734),S=s(2585),b=s(1480),C=s(6242),p=s(6351),E=s(5941),P={"(":0,")":1,"*":2,"+":3,"-":1,".":2},T=131072;function B(W,x){if(W>24)return x.setWinLines||!1;switch(W){case 1:return!!x.restoreWin;case 2:return!!x.minimizeWin;case 3:return!!x.setWinPosition;case 4:return!!x.setWinSizePixels;case 5:return!!x.raiseWin;case 6:return!!x.lowerWin;case 7:return!!x.refreshWin;case 8:return!!x.setWinSizeChars;case 9:return!!x.maximizeWin;case 10:return!!x.fullscreenWin;case 11:return!!x.getWinState;case 13:return!!x.getWinPosition;case 14:return!!x.getWinSizePixels;case 15:return!!x.getScreenSizePixels;case 16:return!!x.getCellSizePixels;case 18:return!!x.getWinSizeChars;case 19:return!!x.getScreenSizeChars;case 20:return!!x.getIconTitle;case 21:return!!x.getWinTitle;case 22:return!!x.pushTitle;case 23:return!!x.popTitle;case 24:return!!x.setWinLines}return!1}var D;(function(W){W[W.GET_WIN_SIZE_PIXELS=0]="GET_WIN_SIZE_PIXELS",W[W.GET_CELL_SIZE_PIXELS=1]="GET_CELL_SIZE_PIXELS"})(D||(r.WindowsOptionsReportType=D={}));let M=0;class j extends y.Disposable{getAttrData(){return this._curAttrData}constructor(x,L,A,O,F,U,V,G,I=new v.EscapeSequenceParser){super(),this._bufferService=x,this._charsetService=L,this._coreService=A,this._logService=O,this._optionsService=F,this._oscLinkService=U,this._coreMouseService=V,this._unicodeService=G,this._parser=I,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new u.StringToUtf32,this._utf8Decoder=new u.Utf8ToUtf32,this._workCell=new o.CellData,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=n.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=n.DEFAULT_ATTR_DATA.clone(),this._onRequestBell=this.register(new a.EventEmitter),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this.register(new a.EventEmitter),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this.register(new a.EventEmitter),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this.register(new a.EventEmitter),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this.register(new a.EventEmitter),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this.register(new a.EventEmitter),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this.register(new a.EventEmitter),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this.register(new a.EventEmitter),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this.register(new a.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this.register(new a.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onScroll=this.register(new a.EventEmitter),this.onScroll=this._onScroll.event,this._onTitleChange=this.register(new a.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onColor=this.register(new a.EventEmitter),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 N(this._bufferService),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate(R=>this._activeBuffer=R.activeBuffer)),this._parser.setCsiHandlerFallback((R,H)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(R),params:H.toArray()})}),this._parser.setEscHandlerFallback(R=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(R)})}),this._parser.setExecuteHandlerFallback(R=>{this._logService.debug("Unknown EXECUTE code: ",{code:R})}),this._parser.setOscHandlerFallback((R,H,$)=>{this._logService.debug("Unknown OSC code: ",{identifier:R,action:H,data:$})}),this._parser.setDcsHandlerFallback((R,H,$)=>{H==="HOOK"&&($=$.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(R),action:H,payload:$})}),this._parser.setPrintHandler((R,H,$)=>this.print(R,H,$)),this._parser.registerCsiHandler({final:"@"},R=>this.insertChars(R)),this._parser.registerCsiHandler({intermediates:" ",final:"@"},R=>this.scrollLeft(R)),this._parser.registerCsiHandler({final:"A"},R=>this.cursorUp(R)),this._parser.registerCsiHandler({intermediates:" ",final:"A"},R=>this.scrollRight(R)),this._parser.registerCsiHandler({final:"B"},R=>this.cursorDown(R)),this._parser.registerCsiHandler({final:"C"},R=>this.cursorForward(R)),this._parser.registerCsiHandler({final:"D"},R=>this.cursorBackward(R)),this._parser.registerCsiHandler({final:"E"},R=>this.cursorNextLine(R)),this._parser.registerCsiHandler({final:"F"},R=>this.cursorPrecedingLine(R)),this._parser.registerCsiHandler({final:"G"},R=>this.cursorCharAbsolute(R)),this._parser.registerCsiHandler({final:"H"},R=>this.cursorPosition(R)),this._parser.registerCsiHandler({final:"I"},R=>this.cursorForwardTab(R)),this._parser.registerCsiHandler({final:"J"},R=>this.eraseInDisplay(R,!1)),this._parser.registerCsiHandler({prefix:"?",final:"J"},R=>this.eraseInDisplay(R,!0)),this._parser.registerCsiHandler({final:"K"},R=>this.eraseInLine(R,!1)),this._parser.registerCsiHandler({prefix:"?",final:"K"},R=>this.eraseInLine(R,!0)),this._parser.registerCsiHandler({final:"L"},R=>this.insertLines(R)),this._parser.registerCsiHandler({final:"M"},R=>this.deleteLines(R)),this._parser.registerCsiHandler({final:"P"},R=>this.deleteChars(R)),this._parser.registerCsiHandler({final:"S"},R=>this.scrollUp(R)),this._parser.registerCsiHandler({final:"T"},R=>this.scrollDown(R)),this._parser.registerCsiHandler({final:"X"},R=>this.eraseChars(R)),this._parser.registerCsiHandler({final:"Z"},R=>this.cursorBackwardTab(R)),this._parser.registerCsiHandler({final:"`"},R=>this.charPosAbsolute(R)),this._parser.registerCsiHandler({final:"a"},R=>this.hPositionRelative(R)),this._parser.registerCsiHandler({final:"b"},R=>this.repeatPrecedingCharacter(R)),this._parser.registerCsiHandler({final:"c"},R=>this.sendDeviceAttributesPrimary(R)),this._parser.registerCsiHandler({prefix:">",final:"c"},R=>this.sendDeviceAttributesSecondary(R)),this._parser.registerCsiHandler({final:"d"},R=>this.linePosAbsolute(R)),this._parser.registerCsiHandler({final:"e"},R=>this.vPositionRelative(R)),this._parser.registerCsiHandler({final:"f"},R=>this.hVPosition(R)),this._parser.registerCsiHandler({final:"g"},R=>this.tabClear(R)),this._parser.registerCsiHandler({final:"h"},R=>this.setMode(R)),this._parser.registerCsiHandler({prefix:"?",final:"h"},R=>this.setModePrivate(R)),this._parser.registerCsiHandler({final:"l"},R=>this.resetMode(R)),this._parser.registerCsiHandler({prefix:"?",final:"l"},R=>this.resetModePrivate(R)),this._parser.registerCsiHandler({final:"m"},R=>this.charAttributes(R)),this._parser.registerCsiHandler({final:"n"},R=>this.deviceStatus(R)),this._parser.registerCsiHandler({prefix:"?",final:"n"},R=>this.deviceStatusPrivate(R)),this._parser.registerCsiHandler({intermediates:"!",final:"p"},R=>this.softReset(R)),this._parser.registerCsiHandler({intermediates:" ",final:"q"},R=>this.setCursorStyle(R)),this._parser.registerCsiHandler({final:"r"},R=>this.setScrollRegion(R)),this._parser.registerCsiHandler({final:"s"},R=>this.saveCursor(R)),this._parser.registerCsiHandler({final:"t"},R=>this.windowOptions(R)),this._parser.registerCsiHandler({final:"u"},R=>this.restoreCursor(R)),this._parser.registerCsiHandler({intermediates:"'",final:"}"},R=>this.insertColumns(R)),this._parser.registerCsiHandler({intermediates:"'",final:"~"},R=>this.deleteColumns(R)),this._parser.registerCsiHandler({intermediates:'"',final:"q"},R=>this.selectProtected(R)),this._parser.registerCsiHandler({intermediates:"$",final:"p"},R=>this.requestMode(R,!0)),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},R=>this.requestMode(R,!1)),this._parser.setExecuteHandler(h.C0.BEL,()=>this.bell()),this._parser.setExecuteHandler(h.C0.LF,()=>this.lineFeed()),this._parser.setExecuteHandler(h.C0.VT,()=>this.lineFeed()),this._parser.setExecuteHandler(h.C0.FF,()=>this.lineFeed()),this._parser.setExecuteHandler(h.C0.CR,()=>this.carriageReturn()),this._parser.setExecuteHandler(h.C0.BS,()=>this.backspace()),this._parser.setExecuteHandler(h.C0.HT,()=>this.tab()),this._parser.setExecuteHandler(h.C0.SO,()=>this.shiftOut()),this._parser.setExecuteHandler(h.C0.SI,()=>this.shiftIn()),this._parser.setExecuteHandler(h.C1.IND,()=>this.index()),this._parser.setExecuteHandler(h.C1.NEL,()=>this.nextLine()),this._parser.setExecuteHandler(h.C1.HTS,()=>this.tabSet()),this._parser.registerOscHandler(0,new C.OscHandler(R=>(this.setTitle(R),this.setIconName(R),!0))),this._parser.registerOscHandler(1,new C.OscHandler(R=>this.setIconName(R))),this._parser.registerOscHandler(2,new C.OscHandler(R=>this.setTitle(R))),this._parser.registerOscHandler(4,new C.OscHandler(R=>this.setOrReportIndexedColor(R))),this._parser.registerOscHandler(8,new C.OscHandler(R=>this.setHyperlink(R))),this._parser.registerOscHandler(10,new C.OscHandler(R=>this.setOrReportFgColor(R))),this._parser.registerOscHandler(11,new C.OscHandler(R=>this.setOrReportBgColor(R))),this._parser.registerOscHandler(12,new C.OscHandler(R=>this.setOrReportCursorColor(R))),this._parser.registerOscHandler(104,new C.OscHandler(R=>this.restoreIndexedColor(R))),this._parser.registerOscHandler(110,new C.OscHandler(R=>this.restoreFgColor(R))),this._parser.registerOscHandler(111,new C.OscHandler(R=>this.restoreBgColor(R))),this._parser.registerOscHandler(112,new C.OscHandler(R=>this.restoreCursorColor(R))),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(const R in f.CHARSETS)this._parser.registerEscHandler({intermediates:"(",final:R},()=>this.selectCharset("("+R)),this._parser.registerEscHandler({intermediates:")",final:R},()=>this.selectCharset(")"+R)),this._parser.registerEscHandler({intermediates:"*",final:R},()=>this.selectCharset("*"+R)),this._parser.registerEscHandler({intermediates:"+",final:R},()=>this.selectCharset("+"+R)),this._parser.registerEscHandler({intermediates:"-",final:R},()=>this.selectCharset("-"+R)),this._parser.registerEscHandler({intermediates:".",final:R},()=>this.selectCharset("."+R)),this._parser.registerEscHandler({intermediates:"/",final:R},()=>this.selectCharset("/"+R));this._parser.registerEscHandler({intermediates:"#",final:"8"},()=>this.screenAlignmentPattern()),this._parser.setErrorHandler(R=>(this._logService.error("Parsing error: ",R),R)),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new p.DcsHandler((R,H)=>this.requestStatusString(R,H)))}_preserveStack(x,L,A,O){this._parseStack.paused=!0,this._parseStack.cursorStartX=x,this._parseStack.cursorStartY=L,this._parseStack.decodedLength=A,this._parseStack.position=O}_logSlowResolvingAsync(x){this._logService.logLevel<=S.LogLevelEnum.WARN&&Promise.race([x,new Promise((L,A)=>setTimeout(()=>A("#SLOW_TIMEOUT"),5e3))]).catch(L=>{if(L!=="#SLOW_TIMEOUT")throw L;console.warn("async parser handler taking longer than 5000 ms")})}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(x,L){let A,O=this._activeBuffer.x,F=this._activeBuffer.y,U=0;const V=this._parseStack.paused;if(V){if(A=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,L))return this._logSlowResolvingAsync(A),A;O=this._parseStack.cursorStartX,F=this._parseStack.cursorStartY,this._parseStack.paused=!1,x.length>T&&(U=this._parseStack.position+T)}if(this._logService.logLevel<=S.LogLevelEnum.DEBUG&&this._logService.debug("parsing data"+(typeof x=="string"?` "${x}"`:` "${Array.prototype.map.call(x,R=>String.fromCharCode(R)).join("")}"`),typeof x=="string"?x.split("").map(R=>R.charCodeAt(0)):x),this._parseBuffer.length<x.length&&this._parseBuffer.length<T&&(this._parseBuffer=new Uint32Array(Math.min(x.length,T))),V||this._dirtyRowTracker.clearRange(),x.length>T)for(let R=U;R<x.length;R+=T){const H=R+T<x.length?R+T:x.length,$=typeof x=="string"?this._stringDecoder.decode(x.substring(R,H),this._parseBuffer):this._utf8Decoder.decode(x.subarray(R,H),this._parseBuffer);if(A=this._parser.parse(this._parseBuffer,$))return this._preserveStack(O,F,$,R),this._logSlowResolvingAsync(A),A}else if(!V){const R=typeof x=="string"?this._stringDecoder.decode(x,this._parseBuffer):this._utf8Decoder.decode(x,this._parseBuffer);if(A=this._parser.parse(this._parseBuffer,R))return this._preserveStack(O,F,R,0),this._logSlowResolvingAsync(A),A}this._activeBuffer.x===O&&this._activeBuffer.y===F||this._onCursorMove.fire();const G=this._dirtyRowTracker.end+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp),I=this._dirtyRowTracker.start+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp);I<this._bufferService.rows&&this._onRequestRefreshRows.fire(Math.min(I,this._bufferService.rows-1),Math.min(G,this._bufferService.rows-1))}print(x,L,A){let O,F;const U=this._charsetService.charset,V=this._optionsService.rawOptions.screenReaderMode,G=this._bufferService.cols,I=this._coreService.decPrivateModes.wraparound,R=this._coreService.modes.insertMode,H=this._curAttrData;let $=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._activeBuffer.x&&A-L>0&&$.getWidth(this._activeBuffer.x-1)===2&&$.setCellFromCodepoint(this._activeBuffer.x-1,0,1,H);let q=this._parser.precedingJoinState;for(let Z=L;Z<A;++Z){if(O=x[Z],O<127&&U){const ce=U[String.fromCharCode(O)];ce&&(O=ce.charCodeAt(0))}const X=this._unicodeService.charProperties(O,q);F=b.UnicodeService.extractWidth(X);const se=b.UnicodeService.extractShouldJoin(X),ne=se?b.UnicodeService.extractWidth(q):0;if(q=X,V&&this._onA11yChar.fire((0,u.stringFromCodePoint)(O)),this._getCurrentLinkId()&&this._oscLinkService.addLineToLink(this._getCurrentLinkId(),this._activeBuffer.ybase+this._activeBuffer.y),this._activeBuffer.x+F-ne>G){if(I){const ce=$;let J=this._activeBuffer.x-ne;for(this._activeBuffer.x=ne,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),$=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y),ne>0&&$ instanceof n.BufferLine&&$.copyCellsFrom(ce,J,0,ne,!1);J<G;)ce.setCellFromCodepoint(J++,0,1,H)}else if(this._activeBuffer.x=G-1,F===2)continue}if(se&&this._activeBuffer.x){const ce=$.getWidth(this._activeBuffer.x-1)?1:2;$.addCodepointToCell(this._activeBuffer.x-ce,O,F);for(let J=F-ne;--J>=0;)$.setCellFromCodepoint(this._activeBuffer.x++,0,0,H)}else if(R&&($.insertCells(this._activeBuffer.x,F-ne,this._activeBuffer.getNullCell(H)),$.getWidth(G-1)===2&&$.setCellFromCodepoint(G-1,i.NULL_CELL_CODE,i.NULL_CELL_WIDTH,H)),$.setCellFromCodepoint(this._activeBuffer.x++,O,F,H),F>0)for(;--F;)$.setCellFromCodepoint(this._activeBuffer.x++,0,0,H)}this._parser.precedingJoinState=q,this._activeBuffer.x<G&&A-L>0&&$.getWidth(this._activeBuffer.x)===0&&!$.hasContent(this._activeBuffer.x)&&$.setCellFromCodepoint(this._activeBuffer.x,0,1,H),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(x,L){return x.final!=="t"||x.prefix||x.intermediates?this._parser.registerCsiHandler(x,L):this._parser.registerCsiHandler(x,A=>!B(A.params[0],this._optionsService.rawOptions.windowOptions)||L(A))}registerDcsHandler(x,L){return this._parser.registerDcsHandler(x,new p.DcsHandler(L))}registerEscHandler(x,L){return this._parser.registerEscHandler(x,L)}registerOscHandler(x,L){return this._parser.registerOscHandler(x,new C.OscHandler(L))}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;const x=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);x.hasWidth(this._activeBuffer.x)&&!x.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;const x=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-x),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(x=this._bufferService.cols-1){this._activeBuffer.x=Math.min(x,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(x,L){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=x,this._activeBuffer.y=this._activeBuffer.scrollTop+L):(this._activeBuffer.x=x,this._activeBuffer.y=L),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(x,L){this._restrictCursor(),this._setCursor(this._activeBuffer.x+x,this._activeBuffer.y+L)}cursorUp(x){const L=this._activeBuffer.y-this._activeBuffer.scrollTop;return L>=0?this._moveCursor(0,-Math.min(L,x.params[0]||1)):this._moveCursor(0,-(x.params[0]||1)),!0}cursorDown(x){const L=this._activeBuffer.scrollBottom-this._activeBuffer.y;return L>=0?this._moveCursor(0,Math.min(L,x.params[0]||1)):this._moveCursor(0,x.params[0]||1),!0}cursorForward(x){return this._moveCursor(x.params[0]||1,0),!0}cursorBackward(x){return this._moveCursor(-(x.params[0]||1),0),!0}cursorNextLine(x){return this.cursorDown(x),this._activeBuffer.x=0,!0}cursorPrecedingLine(x){return this.cursorUp(x),this._activeBuffer.x=0,!0}cursorCharAbsolute(x){return this._setCursor((x.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(x){return this._setCursor(x.length>=2?(x.params[1]||1)-1:0,(x.params[0]||1)-1),!0}charPosAbsolute(x){return this._setCursor((x.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(x){return this._moveCursor(x.params[0]||1,0),!0}linePosAbsolute(x){return this._setCursor(this._activeBuffer.x,(x.params[0]||1)-1),!0}vPositionRelative(x){return this._moveCursor(0,x.params[0]||1),!0}hVPosition(x){return this.cursorPosition(x),!0}tabClear(x){const L=x.params[0];return L===0?delete this._activeBuffer.tabs[this._activeBuffer.x]:L===3&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(x){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let L=x.params[0]||1;for(;L--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(x){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let L=x.params[0]||1;for(;L--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(x){const L=x.params[0];return L===1&&(this._curAttrData.bg|=536870912),L!==2&&L!==0||(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(x,L,A,O=!1,F=!1){const U=this._activeBuffer.lines.get(this._activeBuffer.ybase+x);U.replaceCells(L,A,this._activeBuffer.getNullCell(this._eraseAttrData()),F),O&&(U.isWrapped=!1)}_resetBufferLine(x,L=!1){const A=this._activeBuffer.lines.get(this._activeBuffer.ybase+x);A&&(A.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),L),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+x),A.isWrapped=!1)}eraseInDisplay(x,L=!1){let A;switch(this._restrictCursor(this._bufferService.cols),x.params[0]){case 0:for(A=this._activeBuffer.y,this._dirtyRowTracker.markDirty(A),this._eraseInBufferLine(A++,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,L);A<this._bufferService.rows;A++)this._resetBufferLine(A,L);this._dirtyRowTracker.markDirty(A);break;case 1:for(A=this._activeBuffer.y,this._dirtyRowTracker.markDirty(A),this._eraseInBufferLine(A,0,this._activeBuffer.x+1,!0,L),this._activeBuffer.x+1>=this._bufferService.cols&&(this._activeBuffer.lines.get(A+1).isWrapped=!1);A--;)this._resetBufferLine(A,L);this._dirtyRowTracker.markDirty(0);break;case 2:for(A=this._bufferService.rows,this._dirtyRowTracker.markDirty(A-1);A--;)this._resetBufferLine(A,L);this._dirtyRowTracker.markDirty(0);break;case 3:const O=this._activeBuffer.lines.length-this._bufferService.rows;O>0&&(this._activeBuffer.lines.trimStart(O),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-O,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-O,0),this._onScroll.fire(0))}return!0}eraseInLine(x,L=!1){switch(this._restrictCursor(this._bufferService.cols),x.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,L);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,L);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,L)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(x){this._restrictCursor();let L=x.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const A=this._activeBuffer.ybase+this._activeBuffer.y,O=this._bufferService.rows-1-this._activeBuffer.scrollBottom,F=this._bufferService.rows-1+this._activeBuffer.ybase-O+1;for(;L--;)this._activeBuffer.lines.splice(F-1,1),this._activeBuffer.lines.splice(A,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}deleteLines(x){this._restrictCursor();let L=x.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const A=this._activeBuffer.ybase+this._activeBuffer.y;let O;for(O=this._bufferService.rows-1-this._activeBuffer.scrollBottom,O=this._bufferService.rows-1+this._activeBuffer.ybase-O;L--;)this._activeBuffer.lines.splice(A,1),this._activeBuffer.lines.splice(O,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}insertChars(x){this._restrictCursor();const L=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return L&&(L.insertCells(this._activeBuffer.x,x.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}deleteChars(x){this._restrictCursor();const L=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return L&&(L.deleteCells(this._activeBuffer.x,x.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}scrollUp(x){let L=x.params[0]||1;for(;L--;)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(x){let L=x.params[0]||1;for(;L--;)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(n.DEFAULT_ATTR_DATA));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollLeft(x){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const L=x.params[0]||1;for(let A=this._activeBuffer.scrollTop;A<=this._activeBuffer.scrollBottom;++A){const O=this._activeBuffer.lines.get(this._activeBuffer.ybase+A);O.deleteCells(0,L,this._activeBuffer.getNullCell(this._eraseAttrData())),O.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollRight(x){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const L=x.params[0]||1;for(let A=this._activeBuffer.scrollTop;A<=this._activeBuffer.scrollBottom;++A){const O=this._activeBuffer.lines.get(this._activeBuffer.ybase+A);O.insertCells(0,L,this._activeBuffer.getNullCell(this._eraseAttrData())),O.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}insertColumns(x){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const L=x.params[0]||1;for(let A=this._activeBuffer.scrollTop;A<=this._activeBuffer.scrollBottom;++A){const O=this._activeBuffer.lines.get(this._activeBuffer.ybase+A);O.insertCells(this._activeBuffer.x,L,this._activeBuffer.getNullCell(this._eraseAttrData())),O.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}deleteColumns(x){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const L=x.params[0]||1;for(let A=this._activeBuffer.scrollTop;A<=this._activeBuffer.scrollBottom;++A){const O=this._activeBuffer.lines.get(this._activeBuffer.ybase+A);O.deleteCells(this._activeBuffer.x,L,this._activeBuffer.getNullCell(this._eraseAttrData())),O.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}eraseChars(x){this._restrictCursor();const L=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return L&&(L.replaceCells(this._activeBuffer.x,this._activeBuffer.x+(x.params[0]||1),this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}repeatPrecedingCharacter(x){const L=this._parser.precedingJoinState;if(!L)return!0;const A=x.params[0]||1,O=b.UnicodeService.extractWidth(L),F=this._activeBuffer.x-O,U=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).getString(F),V=new Uint32Array(U.length*A);let G=0;for(let R=0;R<U.length;){const H=U.codePointAt(R)||0;V[G++]=H,R+=H>65535?2:1}let I=G;for(let R=1;R<A;++R)V.copyWithin(I,0,G),I+=G;return this.print(V,0,I),!0}sendDeviceAttributesPrimary(x){return x.params[0]>0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(h.C0.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(h.C0.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(x){return x.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(h.C0.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(h.C0.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(x.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(h.C0.ESC+"[>83;40003;0c")),!0}_is(x){return(this._optionsService.rawOptions.termName+"").indexOf(x)===0}setMode(x){for(let L=0;L<x.length;L++)switch(x.params[L]){case 4:this._coreService.modes.insertMode=!0;break;case 20:this._optionsService.options.convertEol=!0}return!0}setModePrivate(x){for(let L=0;L<x.length;L++)switch(x.params[L]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!0;break;case 2:this._charsetService.setgCharset(0,f.DEFAULT_CHARSET),this._charsetService.setgCharset(1,f.DEFAULT_CHARSET),this._charsetService.setgCharset(2,f.DEFAULT_CHARSET),this._charsetService.setgCharset(3,f.DEFAULT_CHARSET);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(0,this._bufferService.rows-1),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!0}return!0}resetMode(x){for(let L=0;L<x.length;L++)switch(x.params[L]){case 4:this._coreService.modes.insertMode=!1;break;case 20:this._optionsService.options.convertEol=!1}return!0}resetModePrivate(x){for(let L=0;L<x.length;L++)switch(x.params[L]){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:case 1016:this._coreMouseService.activeEncoding="DEFAULT";break;case 1015:this._logService.debug("DECRST 1015 not supported (see #2507)");break;case 25:this._coreService.isCursorHidden=!0;break;case 1048:this.restoreCursor();break;case 1049:case 47:case 1047:this._bufferService.buffers.activateNormalBuffer(),x.params[L]===1049&&this.restoreCursor(),this._coreService.isCursorInitialized=!0,this._onRequestRefreshRows.fire(0,this._bufferService.rows-1),this._onRequestSyncScrollBar.fire();break;case 2004:this._coreService.decPrivateModes.bracketedPasteMode=!1}return!0}requestMode(x,L){const A=this._coreService.decPrivateModes,{activeProtocol:O,activeEncoding:F}=this._coreMouseService,U=this._coreService,{buffers:V,cols:G}=this._bufferService,{active:I,alt:R}=V,H=this._optionsService.rawOptions,$=se=>se?1:2,q=x.params[0];return Z=q,X=L?q===2?4:q===4?$(U.modes.insertMode):q===12?3:q===20?$(H.convertEol):0:q===1?$(A.applicationCursorKeys):q===3?H.windowOptions.setWinLines?G===80?2:G===132?1:0:0:q===6?$(A.origin):q===7?$(A.wraparound):q===8?3:q===9?$(O==="X10"):q===12?$(H.cursorBlink):q===25?$(!U.isCursorHidden):q===45?$(A.reverseWraparound):q===66?$(A.applicationKeypad):q===67?4:q===1e3?$(O==="VT200"):q===1002?$(O==="DRAG"):q===1003?$(O==="ANY"):q===1004?$(A.sendFocus):q===1005?4:q===1006?$(F==="SGR"):q===1015?4:q===1016?$(F==="SGR_PIXELS"):q===1048?1:q===47||q===1047||q===1049?$(I===R):q===2004?$(A.bracketedPasteMode):0,U.triggerDataEvent(`${h.C0.ESC}[${L?"":"?"}${Z};${X}$y`),!0;var Z,X}_updateAttrColor(x,L,A,O,F){return L===2?(x|=50331648,x&=-16777216,x|=d.AttributeData.fromColorRGB([A,O,F])):L===5&&(x&=-50331904,x|=33554432|255&A),x}_extractColor(x,L,A){const O=[0,0,-1,0,0,0];let F=0,U=0;do{if(O[U+F]=x.params[L+U],x.hasSubParams(L+U)){const V=x.getSubParams(L+U);let G=0;do O[1]===5&&(F=1),O[U+G+1+F]=V[G];while(++G<V.length&&G+U+1+F<O.length);break}if(O[1]===5&&U+F>=2||O[1]===2&&U+F>=5)break;O[1]&&(F=1)}while(++U+L<x.length&&U+F<O.length);for(let V=2;V<O.length;++V)O[V]===-1&&(O[V]=0);switch(O[0]){case 38:A.fg=this._updateAttrColor(A.fg,O[1],O[3],O[4],O[5]);break;case 48:A.bg=this._updateAttrColor(A.bg,O[1],O[3],O[4],O[5]);break;case 58:A.extended=A.extended.clone(),A.extended.underlineColor=this._updateAttrColor(A.extended.underlineColor,O[1],O[3],O[4],O[5])}return U}_processUnderline(x,L){L.extended=L.extended.clone(),(!~x||x>5)&&(x=1),L.extended.underlineStyle=x,L.fg|=268435456,x===0&&(L.fg&=-268435457),L.updateExtended()}_processSGR0(x){x.fg=n.DEFAULT_ATTR_DATA.fg,x.bg=n.DEFAULT_ATTR_DATA.bg,x.extended=x.extended.clone(),x.extended.underlineStyle=0,x.extended.underlineColor&=-67108864,x.updateExtended()}charAttributes(x){if(x.length===1&&x.params[0]===0)return this._processSGR0(this._curAttrData),!0;const L=x.length;let A;const O=this._curAttrData;for(let F=0;F<L;F++)A=x.params[F],A>=30&&A<=37?(O.fg&=-50331904,O.fg|=16777216|A-30):A>=40&&A<=47?(O.bg&=-50331904,O.bg|=16777216|A-40):A>=90&&A<=97?(O.fg&=-50331904,O.fg|=16777224|A-90):A>=100&&A<=107?(O.bg&=-50331904,O.bg|=16777224|A-100):A===0?this._processSGR0(O):A===1?O.fg|=134217728:A===3?O.bg|=67108864:A===4?(O.fg|=268435456,this._processUnderline(x.hasSubParams(F)?x.getSubParams(F)[0]:1,O)):A===5?O.fg|=536870912:A===7?O.fg|=67108864:A===8?O.fg|=1073741824:A===9?O.fg|=2147483648:A===2?O.bg|=134217728:A===21?this._processUnderline(2,O):A===22?(O.fg&=-134217729,O.bg&=-134217729):A===23?O.bg&=-67108865:A===24?(O.fg&=-268435457,this._processUnderline(0,O)):A===25?O.fg&=-536870913:A===27?O.fg&=-67108865:A===28?O.fg&=-1073741825:A===29?O.fg&=2147483647:A===39?(O.fg&=-67108864,O.fg|=16777215&n.DEFAULT_ATTR_DATA.fg):A===49?(O.bg&=-67108864,O.bg|=16777215&n.DEFAULT_ATTR_DATA.bg):A===38||A===48||A===58?F+=this._extractColor(x,F,O):A===53?O.bg|=1073741824:A===55?O.bg&=-1073741825:A===59?(O.extended=O.extended.clone(),O.extended.underlineColor=-1,O.updateExtended()):A===100?(O.fg&=-67108864,O.fg|=16777215&n.DEFAULT_ATTR_DATA.fg,O.bg&=-67108864,O.bg|=16777215&n.DEFAULT_ATTR_DATA.bg):this._logService.debug("Unknown SGR attribute: %d.",A);return!0}deviceStatus(x){switch(x.params[0]){case 5:this._coreService.triggerDataEvent(`${h.C0.ESC}[0n`);break;case 6:const L=this._activeBuffer.y+1,A=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${h.C0.ESC}[${L};${A}R`)}return!0}deviceStatusPrivate(x){if(x.params[0]===6){const L=this._activeBuffer.y+1,A=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${h.C0.ESC}[?${L};${A}R`)}return!0}softReset(x){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=n.DEFAULT_ATTR_DATA.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(x){const L=x.params[0]||1;switch(L){case 1:case 2:this._optionsService.options.cursorStyle="block";break;case 3:case 4:this._optionsService.options.cursorStyle="underline";break;case 5:case 6:this._optionsService.options.cursorStyle="bar"}const A=L%2==1;return this._optionsService.options.cursorBlink=A,!0}setScrollRegion(x){const L=x.params[0]||1;let A;return(x.length<2||(A=x.params[1])>this._bufferService.rows||A===0)&&(A=this._bufferService.rows),A>L&&(this._activeBuffer.scrollTop=L-1,this._activeBuffer.scrollBottom=A-1,this._setCursor(0,0)),!0}windowOptions(x){if(!B(x.params[0],this._optionsService.rawOptions.windowOptions))return!0;const L=x.length>1?x.params[1]:0;switch(x.params[0]){case 14:L!==2&&this._onRequestWindowsOptionsReport.fire(D.GET_WIN_SIZE_PIXELS);break;case 16:this._onRequestWindowsOptionsReport.fire(D.GET_CELL_SIZE_PIXELS);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${h.C0.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:L!==0&&L!==2||(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),L!==0&&L!==1||(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:L!==0&&L!==2||this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),L!==0&&L!==1||this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(x){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(x){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(x){return this._windowTitle=x,this._onTitleChange.fire(x),!0}setIconName(x){return this._iconName=x,!0}setOrReportIndexedColor(x){const L=[],A=x.split(";");for(;A.length>1;){const O=A.shift(),F=A.shift();if(/^\d+$/.exec(O)){const U=parseInt(O);if(K(U))if(F==="?")L.push({type:0,index:U});else{const V=(0,E.parseColor)(F);V&&L.push({type:1,index:U,color:V})}}}return L.length&&this._onColor.fire(L),!0}setHyperlink(x){const L=x.split(";");return!(L.length<2)&&(L[1]?this._createHyperlink(L[0],L[1]):!L[0]&&this._finishHyperlink())}_createHyperlink(x,L){this._getCurrentLinkId()&&this._finishHyperlink();const A=x.split(":");let O;const F=A.findIndex(U=>U.startsWith("id="));return F!==-1&&(O=A[F].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:O,uri:L}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(x,L){const A=x.split(";");for(let O=0;O<A.length&&!(L>=this._specialColors.length);++O,++L)if(A[O]==="?")this._onColor.fire([{type:0,index:this._specialColors[L]}]);else{const F=(0,E.parseColor)(A[O]);F&&this._onColor.fire([{type:1,index:this._specialColors[L],color:F}])}return!0}setOrReportFgColor(x){return this._setOrReportSpecialColor(x,0)}setOrReportBgColor(x){return this._setOrReportSpecialColor(x,1)}setOrReportCursorColor(x){return this._setOrReportSpecialColor(x,2)}restoreIndexedColor(x){if(!x)return this._onColor.fire([{type:2}]),!0;const L=[],A=x.split(";");for(let O=0;O<A.length;++O)if(/^\d+$/.exec(A[O])){const F=parseInt(A[O]);K(F)&&L.push({type:2,index:F})}return L.length&&this._onColor.fire(L),!0}restoreFgColor(x){return this._onColor.fire([{type:2,index:256}]),!0}restoreBgColor(x){return this._onColor.fire([{type:2,index:257}]),!0}restoreCursorColor(x){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,f.DEFAULT_CHARSET),!0}selectCharset(x){return x.length!==2?(this.selectDefaultCharset(),!0):(x[0]==="/"||this._charsetService.setgCharset(P[x[0]],f.CHARSETS[x[1]]||f.DEFAULT_CHARSET),!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){const x=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,x,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=n.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=n.DEFAULT_ATTR_DATA.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(x){return this._charsetService.setgLevel(x),!0}screenAlignmentPattern(){const x=new o.CellData;x.content=4194373,x.fg=this._curAttrData.fg,x.bg=this._curAttrData.bg,this._setCursor(0,0);for(let L=0;L<this._bufferService.rows;++L){const A=this._activeBuffer.ybase+this._activeBuffer.y+L,O=this._activeBuffer.lines.get(A);O&&(O.fill(x),O.isWrapped=!1)}return this._dirtyRowTracker.markAllDirty(),this._setCursor(0,0),!0}requestStatusString(x,L){const A=this._bufferService.buffer,O=this._optionsService.rawOptions;return(F=>(this._coreService.triggerDataEvent(`${h.C0.ESC}${F}${h.C0.ESC}\\`),!0))(x==='"q'?`P1$r${this._curAttrData.isProtected()?1:0}"q`:x==='"p'?'P1$r61;1"p':x==="r"?`P1$r${A.scrollTop+1};${A.scrollBottom+1}r`:x==="m"?"P1$r0m":x===" q"?`P1$r${{block:2,underline:4,bar:6}[O.cursorStyle]-(O.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(x,L){this._dirtyRowTracker.markRangeDirty(x,L)}}r.InputHandler=j;let N=class{constructor(W){this._bufferService=W,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(W){W<this.start?this.start=W:W>this.end&&(this.end=W)}markRangeDirty(W,x){W>x&&(M=W,W=x,x=M),W<this.start&&(this.start=W),x>this.end&&(this.end=x)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function K(W){return 0<=W&&W<256}N=l([_(0,S.IBufferService)],N)},844:(w,r)=>{function s(l){for(const _ of l)_.dispose();l.length=0}Object.defineProperty(r,"__esModule",{value:!0}),r.getDisposeArrayDisposable=r.disposeArray=r.toDisposable=r.MutableDisposable=r.Disposable=void 0,r.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const l of this._disposables)l.dispose();this._disposables.length=0}register(l){return this._disposables.push(l),l}unregister(l){const _=this._disposables.indexOf(l);_!==-1&&this._disposables.splice(_,1)}},r.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(l){this._isDisposed||l===this._value||(this._value?.dispose(),this._value=l)}clear(){this.value=void 0}dispose(){this._isDisposed=!0,this._value?.dispose(),this._value=void 0}},r.toDisposable=function(l){return{dispose:l}},r.disposeArray=s,r.getDisposeArrayDisposable=function(l){return{dispose:()=>s(l)}}},1505:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.FourKeyMap=r.TwoKeyMap=void 0;class s{constructor(){this._data={}}set(_,h,f){this._data[_]||(this._data[_]={}),this._data[_][h]=f}get(_,h){return this._data[_]?this._data[_][h]:void 0}clear(){this._data={}}}r.TwoKeyMap=s,r.FourKeyMap=class{constructor(){this._data=new s}set(l,_,h,f,v){this._data.get(l,_)||this._data.set(l,_,new s),this._data.get(l,_).set(h,f,v)}get(l,_,h,f){return this._data.get(l,_)?.get(h,f)}clear(){this._data.clear()}}},6114:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.isChromeOS=r.isLinux=r.isWindows=r.isIphone=r.isIpad=r.isMac=r.getSafariVersion=r.isSafari=r.isLegacyEdge=r.isFirefox=r.isNode=void 0,r.isNode=typeof process<"u"&&"title"in process;const s=r.isNode?"node":navigator.userAgent,l=r.isNode?"node":navigator.platform;r.isFirefox=s.includes("Firefox"),r.isLegacyEdge=s.includes("Edge"),r.isSafari=/^((?!chrome|android).)*safari/i.test(s),r.getSafariVersion=function(){if(!r.isSafari)return 0;const _=s.match(/Version\/(\d+)/);return _===null||_.length<2?0:parseInt(_[1])},r.isMac=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(l),r.isIpad=l==="iPad",r.isIphone=l==="iPhone",r.isWindows=["Windows","Win16","Win32","WinCE"].includes(l),r.isLinux=l.indexOf("Linux")>=0,r.isChromeOS=/\bCrOS\b/.test(s)},6106:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.SortedList=void 0;let s=0;r.SortedList=class{constructor(l){this._getKey=l,this._array=[]}clear(){this._array.length=0}insert(l){this._array.length!==0?(s=this._search(this._getKey(l)),this._array.splice(s,0,l)):this._array.push(l)}delete(l){if(this._array.length===0)return!1;const _=this._getKey(l);if(_===void 0||(s=this._search(_),s===-1)||this._getKey(this._array[s])!==_)return!1;do if(this._array[s]===l)return this._array.splice(s,1),!0;while(++s<this._array.length&&this._getKey(this._array[s])===_);return!1}*getKeyIterator(l){if(this._array.length!==0&&(s=this._search(l),!(s<0||s>=this._array.length)&&this._getKey(this._array[s])===l))do yield this._array[s];while(++s<this._array.length&&this._getKey(this._array[s])===l)}forEachByKey(l,_){if(this._array.length!==0&&(s=this._search(l),!(s<0||s>=this._array.length)&&this._getKey(this._array[s])===l))do _(this._array[s]);while(++s<this._array.length&&this._getKey(this._array[s])===l)}values(){return[...this._array].values()}_search(l){let _=0,h=this._array.length-1;for(;h>=_;){let f=_+h>>1;const v=this._getKey(this._array[f]);if(v>l)h=f-1;else{if(!(v<l)){for(;f>0&&this._getKey(this._array[f-1])===l;)f--;return f}_=f+1}}return _}}},7226:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DebouncedIdleTask=r.IdleTaskQueue=r.PriorityTaskQueue=void 0;const l=s(6114);class _{constructor(){this._tasks=[],this._i=0}enqueue(v){this._tasks.push(v),this._start()}flush(){for(;this._i<this._tasks.length;)this._tasks[this._i]()||this._i++;this.clear()}clear(){this._idleCallback&&(this._cancelCallback(this._idleCallback),this._idleCallback=void 0),this._i=0,this._tasks.length=0}_start(){this._idleCallback||(this._idleCallback=this._requestCallback(this._process.bind(this)))}_process(v){this._idleCallback=void 0;let y=0,u=0,n=v.timeRemaining(),a=0;for(;this._i<this._tasks.length;){if(y=Date.now(),this._tasks[this._i]()||this._i++,y=Math.max(1,Date.now()-y),u=Math.max(y,u),a=v.timeRemaining(),1.5*u>a)return n-y<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(n-y))}ms`),void this._start();n=a}this.clear()}}class h extends _{_requestCallback(v){return setTimeout(()=>v(this._createDeadline(16)))}_cancelCallback(v){clearTimeout(v)}_createDeadline(v){const y=Date.now()+v;return{timeRemaining:()=>Math.max(0,y-Date.now())}}}r.PriorityTaskQueue=h,r.IdleTaskQueue=!l.isNode&&"requestIdleCallback"in window?class extends _{_requestCallback(f){return requestIdleCallback(f)}_cancelCallback(f){cancelIdleCallback(f)}}:h,r.DebouncedIdleTask=class{constructor(){this._queue=new r.IdleTaskQueue}set(f){this._queue.clear(),this._queue.enqueue(f)}flush(){this._queue.flush()}}},9282:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.updateWindowsModeWrappedState=void 0;const l=s(643);r.updateWindowsModeWrappedState=function(_){const h=_.buffer.lines.get(_.buffer.ybase+_.buffer.y-1),f=h?.get(_.cols-1),v=_.buffer.lines.get(_.buffer.ybase+_.buffer.y);v&&f&&(v.isWrapped=f[l.CHAR_DATA_CODE_INDEX]!==l.NULL_CELL_CODE&&f[l.CHAR_DATA_CODE_INDEX]!==l.WHITESPACE_CELL_CODE)}},3734:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ExtendedAttrs=r.AttributeData=void 0;class s{constructor(){this.fg=0,this.bg=0,this.extended=new l}static toColorRGB(h){return[h>>>16&255,h>>>8&255,255&h]}static fromColorRGB(h){return(255&h[0])<<16|(255&h[1])<<8|255&h[2]}clone(){const h=new s;return h.fg=this.fg,h.bg=this.bg,h.extended=this.extended.clone(),h}isInverse(){return 67108864&this.fg}isBold(){return 134217728&this.fg}isUnderline(){return this.hasExtendedAttrs()&&this.extended.underlineStyle!==0?1:268435456&this.fg}isBlink(){return 536870912&this.fg}isInvisible(){return 1073741824&this.fg}isItalic(){return 67108864&this.bg}isDim(){return 134217728&this.bg}isStrikethrough(){return 2147483648&this.fg}isProtected(){return 536870912&this.bg}isOverline(){return 1073741824&this.bg}getFgColorMode(){return 50331648&this.fg}getBgColorMode(){return 50331648&this.bg}isFgRGB(){return(50331648&this.fg)==50331648}isBgRGB(){return(50331648&this.bg)==50331648}isFgPalette(){return(50331648&this.fg)==16777216||(50331648&this.fg)==33554432}isBgPalette(){return(50331648&this.bg)==16777216||(50331648&this.bg)==33554432}isFgDefault(){return(50331648&this.fg)==0}isBgDefault(){return(50331648&this.bg)==0}isAttributeDefault(){return this.fg===0&&this.bg===0}getFgColor(){switch(50331648&this.fg){case 16777216:case 33554432:return 255&this.fg;case 50331648:return 16777215&this.fg;default:return-1}}getBgColor(){switch(50331648&this.bg){case 16777216:case 33554432:return 255&this.bg;case 50331648:return 16777215&this.bg;default:return-1}}hasExtendedAttrs(){return 268435456&this.bg}updateExtended(){this.extended.isEmpty()?this.bg&=-268435457:this.bg|=268435456}getUnderlineColor(){if(268435456&this.bg&&~this.extended.underlineColor)switch(50331648&this.extended.underlineColor){case 16777216:case 33554432:return 255&this.extended.underlineColor;case 50331648:return 16777215&this.extended.underlineColor;default:return this.getFgColor()}return this.getFgColor()}getUnderlineColorMode(){return 268435456&this.bg&&~this.extended.underlineColor?50331648&this.extended.underlineColor:this.getFgColorMode()}isUnderlineColorRGB(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==50331648:this.isFgRGB()}isUnderlineColorPalette(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==16777216||(50331648&this.extended.underlineColor)==33554432:this.isFgPalette()}isUnderlineColorDefault(){return 268435456&this.bg&&~this.extended.underlineColor?(50331648&this.extended.underlineColor)==0:this.isFgDefault()}getUnderlineStyle(){return 268435456&this.fg?268435456&this.bg?this.extended.underlineStyle:1:0}getUnderlineVariantOffset(){return this.extended.underlineVariantOffset}}r.AttributeData=s;class l{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(h){this._ext=h}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(h){this._ext&=-469762049,this._ext|=h<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(h){this._ext&=-67108864,this._ext|=67108863&h}get urlId(){return this._urlId}set urlId(h){this._urlId=h}get underlineVariantOffset(){const h=(3758096384&this._ext)>>29;return h<0?4294967288^h:h}set underlineVariantOffset(h){this._ext&=536870911,this._ext|=h<<29&3758096384}constructor(h=0,f=0){this._ext=0,this._urlId=0,this._ext=h,this._urlId=f}clone(){return new l(this._ext,this._urlId)}isEmpty(){return this.underlineStyle===0&&this._urlId===0}}r.ExtendedAttrs=l},9092:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Buffer=r.MAX_BUFFER_SIZE=void 0;const l=s(6349),_=s(7226),h=s(3734),f=s(8437),v=s(4634),y=s(511),u=s(643),n=s(4863),a=s(7116);r.MAX_BUFFER_SIZE=4294967295,r.Buffer=class{constructor(i,o,d){this._hasScrollback=i,this._optionsService=o,this._bufferService=d,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=f.DEFAULT_ATTR_DATA.clone(),this.savedCharset=a.DEFAULT_CHARSET,this.markers=[],this._nullCell=y.CellData.fromCharData([0,u.NULL_CELL_CHAR,u.NULL_CELL_WIDTH,u.NULL_CELL_CODE]),this._whitespaceCell=y.CellData.fromCharData([0,u.WHITESPACE_CELL_CHAR,u.WHITESPACE_CELL_WIDTH,u.WHITESPACE_CELL_CODE]),this._isClearing=!1,this._memoryCleanupQueue=new _.IdleTaskQueue,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(i){return i?(this._nullCell.fg=i.fg,this._nullCell.bg=i.bg,this._nullCell.extended=i.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new h.ExtendedAttrs),this._nullCell}getWhitespaceCell(i){return i?(this._whitespaceCell.fg=i.fg,this._whitespaceCell.bg=i.bg,this._whitespaceCell.extended=i.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new h.ExtendedAttrs),this._whitespaceCell}getBlankLine(i,o){return new f.BufferLine(this._bufferService.cols,this.getNullCell(i),o)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){const i=this.ybase+this.y-this.ydisp;return i>=0&&i<this._rows}_getCorrectBufferLength(i){if(!this._hasScrollback)return i;const o=i+this._optionsService.rawOptions.scrollback;return o>r.MAX_BUFFER_SIZE?r.MAX_BUFFER_SIZE:o}fillViewportRows(i){if(this.lines.length===0){i===void 0&&(i=f.DEFAULT_ATTR_DATA);let o=this._rows;for(;o--;)this.lines.push(this.getBlankLine(i))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new l.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(i,o){const d=this.getNullCell(f.DEFAULT_ATTR_DATA);let S=0;const b=this._getCorrectBufferLength(o);if(b>this.lines.maxLength&&(this.lines.maxLength=b),this.lines.length>0){if(this._cols<i)for(let p=0;p<this.lines.length;p++)S+=+this.lines.get(p).resize(i,d);let C=0;if(this._rows<o)for(let p=this._rows;p<o;p++)this.lines.length<o+this.ybase&&(this._optionsService.rawOptions.windowsMode||this._optionsService.rawOptions.windowsPty.backend!==void 0||this._optionsService.rawOptions.windowsPty.buildNumber!==void 0?this.lines.push(new f.BufferLine(i,d)):this.ybase>0&&this.lines.length<=this.ybase+this.y+C+1?(this.ybase--,C++,this.ydisp>0&&this.ydisp--):this.lines.push(new f.BufferLine(i,d)));else for(let p=this._rows;p>o;p--)this.lines.length>o+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(b<this.lines.maxLength){const p=this.lines.length-b;p>0&&(this.lines.trimStart(p),this.ybase=Math.max(this.ybase-p,0),this.ydisp=Math.max(this.ydisp-p,0),this.savedY=Math.max(this.savedY-p,0)),this.lines.maxLength=b}this.x=Math.min(this.x,i-1),this.y=Math.min(this.y,o-1),C&&(this.y+=C),this.savedX=Math.min(this.savedX,i-1),this.scrollTop=0}if(this.scrollBottom=o-1,this._isReflowEnabled&&(this._reflow(i,o),this._cols>i))for(let C=0;C<this.lines.length;C++)S+=+this.lines.get(C).resize(i,d);this._cols=i,this._rows=o,this._memoryCleanupQueue.clear(),S>.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue(()=>this._batchedMemoryCleanup()))}_batchedMemoryCleanup(){let i=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,i=!1);let o=0;for(;this._memoryCleanupPosition<this.lines.length;)if(o+=this.lines.get(this._memoryCleanupPosition++).cleanupMemory(),o>100)return!0;return i}get _isReflowEnabled(){const i=this._optionsService.rawOptions.windowsPty;return i&&i.buildNumber?this._hasScrollback&&i.backend==="conpty"&&i.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(i,o){this._cols!==i&&(i>this._cols?this._reflowLarger(i,o):this._reflowSmaller(i,o))}_reflowLarger(i,o){const d=(0,v.reflowLargerGetLinesToRemove)(this.lines,this._cols,i,this.ybase+this.y,this.getNullCell(f.DEFAULT_ATTR_DATA));if(d.length>0){const S=(0,v.reflowLargerCreateNewLayout)(this.lines,d);(0,v.reflowLargerApplyNewLayout)(this.lines,S.layout),this._reflowLargerAdjustViewport(i,o,S.countRemoved)}}_reflowLargerAdjustViewport(i,o,d){const S=this.getNullCell(f.DEFAULT_ATTR_DATA);let b=d;for(;b-- >0;)this.ybase===0?(this.y>0&&this.y--,this.lines.length<o&&this.lines.push(new f.BufferLine(i,S))):(this.ydisp===this.ybase&&this.ydisp--,this.ybase--);this.savedY=Math.max(this.savedY-d,0)}_reflowSmaller(i,o){const d=this.getNullCell(f.DEFAULT_ATTR_DATA),S=[];let b=0;for(let C=this.lines.length-1;C>=0;C--){let p=this.lines.get(C);if(!p||!p.isWrapped&&p.getTrimmedLength()<=i)continue;const E=[p];for(;p.isWrapped&&C>0;)p=this.lines.get(--C),E.unshift(p);const P=this.ybase+this.y;if(P>=C&&P<C+E.length)continue;const T=E[E.length-1].getTrimmedLength(),B=(0,v.reflowSmallerGetNewLineLengths)(E,this._cols,i),D=B.length-E.length;let M;M=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);const j=[];for(let A=0;A<D;A++){const O=this.getBlankLine(f.DEFAULT_ATTR_DATA,!0);j.push(O)}j.length>0&&(S.push({start:C+E.length+b,newLines:j}),b+=j.length),E.push(...j);let N=B.length-1,K=B[N];K===0&&(N--,K=B[N]);let W=E.length-D-1,x=T;for(;W>=0;){const A=Math.min(x,K);if(E[N]===void 0)break;if(E[N].copyCellsFrom(E[W],x-A,K-A,A,!0),K-=A,K===0&&(N--,K=B[N]),x-=A,x===0){W--;const O=Math.max(W,0);x=(0,v.getWrappedLineTrimmedLength)(E,O,this._cols)}}for(let A=0;A<E.length;A++)B[A]<i&&E[A].setCell(B[A],d);let L=D-M;for(;L-- >0;)this.ybase===0?this.y<o-1?(this.y++,this.lines.pop()):(this.ybase++,this.ydisp++):this.ybase<Math.min(this.lines.maxLength,this.lines.length+b)-o&&(this.ybase===this.ydisp&&this.ydisp++,this.ybase++);this.savedY=Math.min(this.savedY+D,this.ybase+o-1)}if(S.length>0){const C=[],p=[];for(let N=0;N<this.lines.length;N++)p.push(this.lines.get(N));const E=this.lines.length;let P=E-1,T=0,B=S[T];this.lines.length=Math.min(this.lines.maxLength,this.lines.length+b);let D=0;for(let N=Math.min(this.lines.maxLength-1,E+b-1);N>=0;N--)if(B&&B.start>P+D){for(let K=B.newLines.length-1;K>=0;K--)this.lines.set(N--,B.newLines[K]);N++,C.push({index:P+1,amount:B.newLines.length}),D+=B.newLines.length,B=S[++T]}else this.lines.set(N,p[P--]);let M=0;for(let N=C.length-1;N>=0;N--)C[N].index+=M,this.lines.onInsertEmitter.fire(C[N]),M+=C[N].amount;const j=Math.max(0,E+b-this.lines.maxLength);j>0&&this.lines.onTrimEmitter.fire(j)}}translateBufferLineToString(i,o,d=0,S){const b=this.lines.get(i);return b?b.translateToString(o,d,S):""}getWrappedRangeForLine(i){let o=i,d=i;for(;o>0&&this.lines.get(o).isWrapped;)o--;for(;d+1<this.lines.length&&this.lines.get(d+1).isWrapped;)d++;return{first:o,last:d}}setupTabStops(i){for(i!=null?this.tabs[i]||(i=this.prevStop(i)):(this.tabs={},i=0);i<this._cols;i+=this._optionsService.rawOptions.tabStopWidth)this.tabs[i]=!0}prevStop(i){for(i==null&&(i=this.x);!this.tabs[--i]&&i>0;);return i>=this._cols?this._cols-1:i<0?0:i}nextStop(i){for(i==null&&(i=this.x);!this.tabs[++i]&&i<this._cols;);return i>=this._cols?this._cols-1:i<0?0:i}clearMarkers(i){this._isClearing=!0;for(let o=0;o<this.markers.length;o++)this.markers[o].line===i&&(this.markers[o].dispose(),this.markers.splice(o--,1));this._isClearing=!1}clearAllMarkers(){this._isClearing=!0;for(let i=0;i<this.markers.length;i++)this.markers[i].dispose(),this.markers.splice(i--,1);this._isClearing=!1}addMarker(i){const o=new n.Marker(i);return this.markers.push(o),o.register(this.lines.onTrim(d=>{o.line-=d,o.line<0&&o.dispose()})),o.register(this.lines.onInsert(d=>{o.line>=d.index&&(o.line+=d.amount)})),o.register(this.lines.onDelete(d=>{o.line>=d.index&&o.line<d.index+d.amount&&o.dispose(),o.line>d.index&&(o.line-=d.amount)})),o.register(o.onDispose(()=>this._removeMarker(o))),o}_removeMarker(i){this._isClearing||this.markers.splice(this.markers.indexOf(i),1)}}},8437:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLine=r.DEFAULT_ATTR_DATA=void 0;const l=s(3734),_=s(511),h=s(643),f=s(482);r.DEFAULT_ATTR_DATA=Object.freeze(new l.AttributeData);let v=0;class y{constructor(n,a,i=!1){this.isWrapped=i,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*n);const o=a||_.CellData.fromCharData([0,h.NULL_CELL_CHAR,h.NULL_CELL_WIDTH,h.NULL_CELL_CODE]);for(let d=0;d<n;++d)this.setCell(d,o);this.length=n}get(n){const a=this._data[3*n+0],i=2097151&a;return[this._data[3*n+1],2097152&a?this._combined[n]:i?(0,f.stringFromCodePoint)(i):"",a>>22,2097152&a?this._combined[n].charCodeAt(this._combined[n].length-1):i]}set(n,a){this._data[3*n+1]=a[h.CHAR_DATA_ATTR_INDEX],a[h.CHAR_DATA_CHAR_INDEX].length>1?(this._combined[n]=a[1],this._data[3*n+0]=2097152|n|a[h.CHAR_DATA_WIDTH_INDEX]<<22):this._data[3*n+0]=a[h.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|a[h.CHAR_DATA_WIDTH_INDEX]<<22}getWidth(n){return this._data[3*n+0]>>22}hasWidth(n){return 12582912&this._data[3*n+0]}getFg(n){return this._data[3*n+1]}getBg(n){return this._data[3*n+2]}hasContent(n){return 4194303&this._data[3*n+0]}getCodePoint(n){const a=this._data[3*n+0];return 2097152&a?this._combined[n].charCodeAt(this._combined[n].length-1):2097151&a}isCombined(n){return 2097152&this._data[3*n+0]}getString(n){const a=this._data[3*n+0];return 2097152&a?this._combined[n]:2097151&a?(0,f.stringFromCodePoint)(2097151&a):""}isProtected(n){return 536870912&this._data[3*n+2]}loadCell(n,a){return v=3*n,a.content=this._data[v+0],a.fg=this._data[v+1],a.bg=this._data[v+2],2097152&a.content&&(a.combinedData=this._combined[n]),268435456&a.bg&&(a.extended=this._extendedAttrs[n]),a}setCell(n,a){2097152&a.content&&(this._combined[n]=a.combinedData),268435456&a.bg&&(this._extendedAttrs[n]=a.extended),this._data[3*n+0]=a.content,this._data[3*n+1]=a.fg,this._data[3*n+2]=a.bg}setCellFromCodepoint(n,a,i,o){268435456&o.bg&&(this._extendedAttrs[n]=o.extended),this._data[3*n+0]=a|i<<22,this._data[3*n+1]=o.fg,this._data[3*n+2]=o.bg}addCodepointToCell(n,a,i){let o=this._data[3*n+0];2097152&o?this._combined[n]+=(0,f.stringFromCodePoint)(a):2097151&o?(this._combined[n]=(0,f.stringFromCodePoint)(2097151&o)+(0,f.stringFromCodePoint)(a),o&=-2097152,o|=2097152):o=a|4194304,i&&(o&=-12582913,o|=i<<22),this._data[3*n+0]=o}insertCells(n,a,i){if((n%=this.length)&&this.getWidth(n-1)===2&&this.setCellFromCodepoint(n-1,0,1,i),a<this.length-n){const o=new _.CellData;for(let d=this.length-n-a-1;d>=0;--d)this.setCell(n+a+d,this.loadCell(n+d,o));for(let d=0;d<a;++d)this.setCell(n+d,i)}else for(let o=n;o<this.length;++o)this.setCell(o,i);this.getWidth(this.length-1)===2&&this.setCellFromCodepoint(this.length-1,0,1,i)}deleteCells(n,a,i){if(n%=this.length,a<this.length-n){const o=new _.CellData;for(let d=0;d<this.length-n-a;++d)this.setCell(n+d,this.loadCell(n+a+d,o));for(let d=this.length-a;d<this.length;++d)this.setCell(d,i)}else for(let o=n;o<this.length;++o)this.setCell(o,i);n&&this.getWidth(n-1)===2&&this.setCellFromCodepoint(n-1,0,1,i),this.getWidth(n)!==0||this.hasContent(n)||this.setCellFromCodepoint(n,0,1,i)}replaceCells(n,a,i,o=!1){if(o)for(n&&this.getWidth(n-1)===2&&!this.isProtected(n-1)&&this.setCellFromCodepoint(n-1,0,1,i),a<this.length&&this.getWidth(a-1)===2&&!this.isProtected(a)&&this.setCellFromCodepoint(a,0,1,i);n<a&&n<this.length;)this.isProtected(n)||this.setCell(n,i),n++;else for(n&&this.getWidth(n-1)===2&&this.setCellFromCodepoint(n-1,0,1,i),a<this.length&&this.getWidth(a-1)===2&&this.setCellFromCodepoint(a,0,1,i);n<a&&n<this.length;)this.setCell(n++,i)}resize(n,a){if(n===this.length)return 4*this._data.length*2<this._data.buffer.byteLength;const i=3*n;if(n>this.length){if(this._data.buffer.byteLength>=4*i)this._data=new Uint32Array(this._data.buffer,0,i);else{const o=new Uint32Array(i);o.set(this._data),this._data=o}for(let o=this.length;o<n;++o)this.setCell(o,a)}else{this._data=this._data.subarray(0,i);const o=Object.keys(this._combined);for(let S=0;S<o.length;S++){const b=parseInt(o[S],10);b>=n&&delete this._combined[b]}const d=Object.keys(this._extendedAttrs);for(let S=0;S<d.length;S++){const b=parseInt(d[S],10);b>=n&&delete this._extendedAttrs[b]}}return this.length=n,4*i*2<this._data.buffer.byteLength}cleanupMemory(){if(4*this._data.length*2<this._data.buffer.byteLength){const n=new Uint32Array(this._data.length);return n.set(this._data),this._data=n,1}return 0}fill(n,a=!1){if(a)for(let i=0;i<this.length;++i)this.isProtected(i)||this.setCell(i,n);else{this._combined={},this._extendedAttrs={};for(let i=0;i<this.length;++i)this.setCell(i,n)}}copyFrom(n){this.length!==n.length?this._data=new Uint32Array(n._data):this._data.set(n._data),this.length=n.length,this._combined={};for(const a in n._combined)this._combined[a]=n._combined[a];this._extendedAttrs={};for(const a in n._extendedAttrs)this._extendedAttrs[a]=n._extendedAttrs[a];this.isWrapped=n.isWrapped}clone(){const n=new y(0);n._data=new Uint32Array(this._data),n.length=this.length;for(const a in this._combined)n._combined[a]=this._combined[a];for(const a in this._extendedAttrs)n._extendedAttrs[a]=this._extendedAttrs[a];return n.isWrapped=this.isWrapped,n}getTrimmedLength(){for(let n=this.length-1;n>=0;--n)if(4194303&this._data[3*n+0])return n+(this._data[3*n+0]>>22);return 0}getNoBgTrimmedLength(){for(let n=this.length-1;n>=0;--n)if(4194303&this._data[3*n+0]||50331648&this._data[3*n+2])return n+(this._data[3*n+0]>>22);return 0}copyCellsFrom(n,a,i,o,d){const S=n._data;if(d)for(let C=o-1;C>=0;C--){for(let p=0;p<3;p++)this._data[3*(i+C)+p]=S[3*(a+C)+p];268435456&S[3*(a+C)+2]&&(this._extendedAttrs[i+C]=n._extendedAttrs[a+C])}else for(let C=0;C<o;C++){for(let p=0;p<3;p++)this._data[3*(i+C)+p]=S[3*(a+C)+p];268435456&S[3*(a+C)+2]&&(this._extendedAttrs[i+C]=n._extendedAttrs[a+C])}const b=Object.keys(n._combined);for(let C=0;C<b.length;C++){const p=parseInt(b[C],10);p>=a&&(this._combined[p-a+i]=n._combined[p])}}translateToString(n,a,i,o){a=a??0,i=i??this.length,n&&(i=Math.min(i,this.getTrimmedLength())),o&&(o.length=0);let d="";for(;a<i;){const S=this._data[3*a+0],b=2097151&S,C=2097152&S?this._combined[a]:b?(0,f.stringFromCodePoint)(b):h.WHITESPACE_CELL_CHAR;if(d+=C,o)for(let p=0;p<C.length;++p)o.push(a);a+=S>>22||1}return o&&o.push(a),d}}r.BufferLine=y},4841:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.getRangeLength=void 0,r.getRangeLength=function(s,l){if(s.start.y>s.end.y)throw new Error(`Buffer range end (${s.end.x}, ${s.end.y}) cannot be before start (${s.start.x}, ${s.start.y})`);return l*(s.end.y-s.start.y)+(s.end.x-s.start.x+1)}},4634:(w,r)=>{function s(l,_,h){if(_===l.length-1)return l[_].getTrimmedLength();const f=!l[_].hasContent(h-1)&&l[_].getWidth(h-1)===1,v=l[_+1].getWidth(0)===2;return f&&v?h-1:h}Object.defineProperty(r,"__esModule",{value:!0}),r.getWrappedLineTrimmedLength=r.reflowSmallerGetNewLineLengths=r.reflowLargerApplyNewLayout=r.reflowLargerCreateNewLayout=r.reflowLargerGetLinesToRemove=void 0,r.reflowLargerGetLinesToRemove=function(l,_,h,f,v){const y=[];for(let u=0;u<l.length-1;u++){let n=u,a=l.get(++n);if(!a.isWrapped)continue;const i=[l.get(u)];for(;n<l.length&&a.isWrapped;)i.push(a),a=l.get(++n);if(f>=u&&f<n){u+=i.length-1;continue}let o=0,d=s(i,o,_),S=1,b=0;for(;S<i.length;){const p=s(i,S,_),E=p-b,P=h-d,T=Math.min(E,P);i[o].copyCellsFrom(i[S],b,d,T,!1),d+=T,d===h&&(o++,d=0),b+=T,b===p&&(S++,b=0),d===0&&o!==0&&i[o-1].getWidth(h-1)===2&&(i[o].copyCellsFrom(i[o-1],h-1,d++,1,!1),i[o-1].setCell(h-1,v))}i[o].replaceCells(d,h,v);let C=0;for(let p=i.length-1;p>0&&(p>o||i[p].getTrimmedLength()===0);p--)C++;C>0&&(y.push(u+i.length-C),y.push(C)),u+=i.length-1}return y},r.reflowLargerCreateNewLayout=function(l,_){const h=[];let f=0,v=_[f],y=0;for(let u=0;u<l.length;u++)if(v===u){const n=_[++f];l.onDeleteEmitter.fire({index:u-y,amount:n}),u+=n-1,y+=n,v=_[++f]}else h.push(u);return{layout:h,countRemoved:y}},r.reflowLargerApplyNewLayout=function(l,_){const h=[];for(let f=0;f<_.length;f++)h.push(l.get(_[f]));for(let f=0;f<h.length;f++)l.set(f,h[f]);l.length=_.length},r.reflowSmallerGetNewLineLengths=function(l,_,h){const f=[],v=l.map((a,i)=>s(l,i,_)).reduce((a,i)=>a+i);let y=0,u=0,n=0;for(;n<v;){if(v-n<h){f.push(v-n);break}y+=h;const a=s(l,u,_);y>a&&(y-=a,u++);const i=l[u].getWidth(y-1)===2;i&&y--;const o=i?h-1:h;f.push(o),n+=o}return f},r.getWrappedLineTrimmedLength=s},5295:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferSet=void 0;const l=s(8460),_=s(844),h=s(9092);class f extends _.Disposable{constructor(y,u){super(),this._optionsService=y,this._bufferService=u,this._onBufferActivate=this.register(new l.EventEmitter),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 h.Buffer(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new h.Buffer(!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(y){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(y),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(y,u){this._normal.resize(y,u),this._alt.resize(y,u),this.setupTabStops(y)}setupTabStops(y){this._normal.setupTabStops(y),this._alt.setupTabStops(y)}}r.BufferSet=f},511:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CellData=void 0;const l=s(482),_=s(643),h=s(3734);class f extends h.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new h.ExtendedAttrs,this.combinedData=""}static fromCharData(y){const u=new f;return u.setFromCharData(y),u}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,l.stringFromCodePoint)(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(y){this.fg=y[_.CHAR_DATA_ATTR_INDEX],this.bg=0;let u=!1;if(y[_.CHAR_DATA_CHAR_INDEX].length>2)u=!0;else if(y[_.CHAR_DATA_CHAR_INDEX].length===2){const n=y[_.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=n&&n<=56319){const a=y[_.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=a&&a<=57343?this.content=1024*(n-55296)+a-56320+65536|y[_.CHAR_DATA_WIDTH_INDEX]<<22:u=!0}else u=!0}else this.content=y[_.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|y[_.CHAR_DATA_WIDTH_INDEX]<<22;u&&(this.combinedData=y[_.CHAR_DATA_CHAR_INDEX],this.content=2097152|y[_.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}r.CellData=f},643:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WHITESPACE_CELL_CODE=r.WHITESPACE_CELL_WIDTH=r.WHITESPACE_CELL_CHAR=r.NULL_CELL_CODE=r.NULL_CELL_WIDTH=r.NULL_CELL_CHAR=r.CHAR_DATA_CODE_INDEX=r.CHAR_DATA_WIDTH_INDEX=r.CHAR_DATA_CHAR_INDEX=r.CHAR_DATA_ATTR_INDEX=r.DEFAULT_EXT=r.DEFAULT_ATTR=r.DEFAULT_COLOR=void 0,r.DEFAULT_COLOR=0,r.DEFAULT_ATTR=256|r.DEFAULT_COLOR<<9,r.DEFAULT_EXT=0,r.CHAR_DATA_ATTR_INDEX=0,r.CHAR_DATA_CHAR_INDEX=1,r.CHAR_DATA_WIDTH_INDEX=2,r.CHAR_DATA_CODE_INDEX=3,r.NULL_CELL_CHAR="",r.NULL_CELL_WIDTH=1,r.NULL_CELL_CODE=0,r.WHITESPACE_CELL_CHAR=" ",r.WHITESPACE_CELL_WIDTH=1,r.WHITESPACE_CELL_CODE=32},4863:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Marker=void 0;const l=s(8460),_=s(844);class h{get id(){return this._id}constructor(v){this.line=v,this.isDisposed=!1,this._disposables=[],this._id=h._nextId++,this._onDispose=this.register(new l.EventEmitter),this.onDispose=this._onDispose.event}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),(0,_.disposeArray)(this._disposables),this._disposables.length=0)}register(v){return this._disposables.push(v),v}}r.Marker=h,h._nextId=1},7116:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DEFAULT_CHARSET=r.CHARSETS=void 0,r.CHARSETS={},r.DEFAULT_CHARSET=r.CHARSETS.B,r.CHARSETS[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:"≥","{":"π","|":"≠","}":"£","~":"·"},r.CHARSETS.A={"#":"£"},r.CHARSETS.B=void 0,r.CHARSETS[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},r.CHARSETS.C=r.CHARSETS[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},r.CHARSETS.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},r.CHARSETS.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},r.CHARSETS.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},r.CHARSETS.E=r.CHARSETS[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},r.CHARSETS.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},r.CHARSETS.H=r.CHARSETS[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},r.CHARSETS["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}},2584:(w,r)=>{var s,l,_;Object.defineProperty(r,"__esModule",{value:!0}),r.C1_ESCAPED=r.C1=r.C0=void 0,function(h){h.NUL="\0",h.SOH="",h.STX="",h.ETX="",h.EOT="",h.ENQ="",h.ACK="",h.BEL="\x07",h.BS="\b",h.HT=" ",h.LF=`
|
|
8
8
|
`,h.VT="\v",h.FF="\f",h.CR="\r",h.SO="",h.SI="",h.DLE="",h.DC1="",h.DC2="",h.DC3="",h.DC4="",h.NAK="",h.SYN="",h.ETB="",h.CAN="",h.EM="",h.SUB="",h.ESC="\x1B",h.FS="",h.GS="",h.RS="",h.US="",h.SP=" ",h.DEL=""}(s||(r.C0=s={})),function(h){h.PAD="",h.HOP="",h.BPH="",h.NBH="",h.IND="",h.NEL="
",h.SSA="",h.ESA="",h.HTS="",h.HTJ="",h.VTS="",h.PLD="",h.PLU="",h.RI="",h.SS2="",h.SS3="",h.DCS="",h.PU1="",h.PU2="",h.STS="",h.CCH="",h.MW="",h.SPA="",h.EPA="",h.SOS="",h.SGCI="",h.SCI="",h.CSI="",h.ST="",h.OSC="",h.PM="",h.APC=""}(l||(r.C1=l={})),function(h){h.ST=`${s.ESC}\\`}(_||(r.C1_ESCAPED=_={}))},7399:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.evaluateKeyboardEvent=void 0;const l=s(2584),_={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:["'",'"']};r.evaluateKeyboardEvent=function(h,f,v,y){const u={type:0,cancel:!1,key:void 0},n=(h.shiftKey?1:0)|(h.altKey?2:0)|(h.ctrlKey?4:0)|(h.metaKey?8:0);switch(h.keyCode){case 0:h.key==="UIKeyInputUpArrow"?u.key=f?l.C0.ESC+"OA":l.C0.ESC+"[A":h.key==="UIKeyInputLeftArrow"?u.key=f?l.C0.ESC+"OD":l.C0.ESC+"[D":h.key==="UIKeyInputRightArrow"?u.key=f?l.C0.ESC+"OC":l.C0.ESC+"[C":h.key==="UIKeyInputDownArrow"&&(u.key=f?l.C0.ESC+"OB":l.C0.ESC+"[B");break;case 8:u.key=h.ctrlKey?"\b":l.C0.DEL,h.altKey&&(u.key=l.C0.ESC+u.key);break;case 9:if(h.shiftKey){u.key=l.C0.ESC+"[Z";break}u.key=l.C0.HT,u.cancel=!0;break;case 13:u.key=h.altKey?l.C0.ESC+l.C0.CR:l.C0.CR,u.cancel=!0;break;case 27:u.key=l.C0.ESC,h.altKey&&(u.key=l.C0.ESC+l.C0.ESC),u.cancel=!0;break;case 37:if(h.metaKey)break;n?(u.key=l.C0.ESC+"[1;"+(n+1)+"D",u.key===l.C0.ESC+"[1;3D"&&(u.key=l.C0.ESC+(v?"b":"[1;5D"))):u.key=f?l.C0.ESC+"OD":l.C0.ESC+"[D";break;case 39:if(h.metaKey)break;n?(u.key=l.C0.ESC+"[1;"+(n+1)+"C",u.key===l.C0.ESC+"[1;3C"&&(u.key=l.C0.ESC+(v?"f":"[1;5C"))):u.key=f?l.C0.ESC+"OC":l.C0.ESC+"[C";break;case 38:if(h.metaKey)break;n?(u.key=l.C0.ESC+"[1;"+(n+1)+"A",v||u.key!==l.C0.ESC+"[1;3A"||(u.key=l.C0.ESC+"[1;5A")):u.key=f?l.C0.ESC+"OA":l.C0.ESC+"[A";break;case 40:if(h.metaKey)break;n?(u.key=l.C0.ESC+"[1;"+(n+1)+"B",v||u.key!==l.C0.ESC+"[1;3B"||(u.key=l.C0.ESC+"[1;5B")):u.key=f?l.C0.ESC+"OB":l.C0.ESC+"[B";break;case 45:h.shiftKey||h.ctrlKey||(u.key=l.C0.ESC+"[2~");break;case 46:u.key=n?l.C0.ESC+"[3;"+(n+1)+"~":l.C0.ESC+"[3~";break;case 36:u.key=n?l.C0.ESC+"[1;"+(n+1)+"H":f?l.C0.ESC+"OH":l.C0.ESC+"[H";break;case 35:u.key=n?l.C0.ESC+"[1;"+(n+1)+"F":f?l.C0.ESC+"OF":l.C0.ESC+"[F";break;case 33:h.shiftKey?u.type=2:h.ctrlKey?u.key=l.C0.ESC+"[5;"+(n+1)+"~":u.key=l.C0.ESC+"[5~";break;case 34:h.shiftKey?u.type=3:h.ctrlKey?u.key=l.C0.ESC+"[6;"+(n+1)+"~":u.key=l.C0.ESC+"[6~";break;case 112:u.key=n?l.C0.ESC+"[1;"+(n+1)+"P":l.C0.ESC+"OP";break;case 113:u.key=n?l.C0.ESC+"[1;"+(n+1)+"Q":l.C0.ESC+"OQ";break;case 114:u.key=n?l.C0.ESC+"[1;"+(n+1)+"R":l.C0.ESC+"OR";break;case 115:u.key=n?l.C0.ESC+"[1;"+(n+1)+"S":l.C0.ESC+"OS";break;case 116:u.key=n?l.C0.ESC+"[15;"+(n+1)+"~":l.C0.ESC+"[15~";break;case 117:u.key=n?l.C0.ESC+"[17;"+(n+1)+"~":l.C0.ESC+"[17~";break;case 118:u.key=n?l.C0.ESC+"[18;"+(n+1)+"~":l.C0.ESC+"[18~";break;case 119:u.key=n?l.C0.ESC+"[19;"+(n+1)+"~":l.C0.ESC+"[19~";break;case 120:u.key=n?l.C0.ESC+"[20;"+(n+1)+"~":l.C0.ESC+"[20~";break;case 121:u.key=n?l.C0.ESC+"[21;"+(n+1)+"~":l.C0.ESC+"[21~";break;case 122:u.key=n?l.C0.ESC+"[23;"+(n+1)+"~":l.C0.ESC+"[23~";break;case 123:u.key=n?l.C0.ESC+"[24;"+(n+1)+"~":l.C0.ESC+"[24~";break;default:if(!h.ctrlKey||h.shiftKey||h.altKey||h.metaKey)if(v&&!y||!h.altKey||h.metaKey)!v||h.altKey||h.ctrlKey||h.shiftKey||!h.metaKey?h.key&&!h.ctrlKey&&!h.altKey&&!h.metaKey&&h.keyCode>=48&&h.key.length===1?u.key=h.key:h.key&&h.ctrlKey&&(h.key==="_"&&(u.key=l.C0.US),h.key==="@"&&(u.key=l.C0.NUL)):h.keyCode===65&&(u.type=1);else{const a=_[h.keyCode],i=a?.[h.shiftKey?1:0];if(i)u.key=l.C0.ESC+i;else if(h.keyCode>=65&&h.keyCode<=90){const o=h.ctrlKey?h.keyCode-64:h.keyCode+32;let d=String.fromCharCode(o);h.shiftKey&&(d=d.toUpperCase()),u.key=l.C0.ESC+d}else if(h.keyCode===32)u.key=l.C0.ESC+(h.ctrlKey?l.C0.NUL:" ");else if(h.key==="Dead"&&h.code.startsWith("Key")){let o=h.code.slice(3,4);h.shiftKey||(o=o.toLowerCase()),u.key=l.C0.ESC+o,u.cancel=!0}}else h.keyCode>=65&&h.keyCode<=90?u.key=String.fromCharCode(h.keyCode-64):h.keyCode===32?u.key=l.C0.NUL:h.keyCode>=51&&h.keyCode<=55?u.key=String.fromCharCode(h.keyCode-51+27):h.keyCode===56?u.key=l.C0.DEL:h.keyCode===219?u.key=l.C0.ESC:h.keyCode===220?u.key=l.C0.FS:h.keyCode===221&&(u.key=l.C0.GS)}return u}},482:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Utf8ToUtf32=r.StringToUtf32=r.utf32ToString=r.stringFromCodePoint=void 0,r.stringFromCodePoint=function(s){return s>65535?(s-=65536,String.fromCharCode(55296+(s>>10))+String.fromCharCode(s%1024+56320)):String.fromCharCode(s)},r.utf32ToString=function(s,l=0,_=s.length){let h="";for(let f=l;f<_;++f){let v=s[f];v>65535?(v-=65536,h+=String.fromCharCode(55296+(v>>10))+String.fromCharCode(v%1024+56320)):h+=String.fromCharCode(v)}return h},r.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(s,l){const _=s.length;if(!_)return 0;let h=0,f=0;if(this._interim){const v=s.charCodeAt(f++);56320<=v&&v<=57343?l[h++]=1024*(this._interim-55296)+v-56320+65536:(l[h++]=this._interim,l[h++]=v),this._interim=0}for(let v=f;v<_;++v){const y=s.charCodeAt(v);if(55296<=y&&y<=56319){if(++v>=_)return this._interim=y,h;const u=s.charCodeAt(v);56320<=u&&u<=57343?l[h++]=1024*(y-55296)+u-56320+65536:(l[h++]=y,l[h++]=u)}else y!==65279&&(l[h++]=y)}return h}},r.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(s,l){const _=s.length;if(!_)return 0;let h,f,v,y,u=0,n=0,a=0;if(this.interim[0]){let d=!1,S=this.interim[0];S&=(224&S)==192?31:(240&S)==224?15:7;let b,C=0;for(;(b=63&this.interim[++C])&&C<4;)S<<=6,S|=b;const p=(224&this.interim[0])==192?2:(240&this.interim[0])==224?3:4,E=p-C;for(;a<E;){if(a>=_)return 0;if(b=s[a++],(192&b)!=128){a--,d=!0;break}this.interim[C++]=b,S<<=6,S|=63&b}d||(p===2?S<128?a--:l[u++]=S:p===3?S<2048||S>=55296&&S<=57343||S===65279||(l[u++]=S):S<65536||S>1114111||(l[u++]=S)),this.interim.fill(0)}const i=_-4;let o=a;for(;o<_;){for(;!(!(o<i)||128&(h=s[o])||128&(f=s[o+1])||128&(v=s[o+2])||128&(y=s[o+3]));)l[u++]=h,l[u++]=f,l[u++]=v,l[u++]=y,o+=4;if(h=s[o++],h<128)l[u++]=h;else if((224&h)==192){if(o>=_)return this.interim[0]=h,u;if(f=s[o++],(192&f)!=128){o--;continue}if(n=(31&h)<<6|63&f,n<128){o--;continue}l[u++]=n}else if((240&h)==224){if(o>=_)return this.interim[0]=h,u;if(f=s[o++],(192&f)!=128){o--;continue}if(o>=_)return this.interim[0]=h,this.interim[1]=f,u;if(v=s[o++],(192&v)!=128){o--;continue}if(n=(15&h)<<12|(63&f)<<6|63&v,n<2048||n>=55296&&n<=57343||n===65279)continue;l[u++]=n}else if((248&h)==240){if(o>=_)return this.interim[0]=h,u;if(f=s[o++],(192&f)!=128){o--;continue}if(o>=_)return this.interim[0]=h,this.interim[1]=f,u;if(v=s[o++],(192&v)!=128){o--;continue}if(o>=_)return this.interim[0]=h,this.interim[1]=f,this.interim[2]=v,u;if(y=s[o++],(192&y)!=128){o--;continue}if(n=(7&h)<<18|(63&f)<<12|(63&v)<<6|63&y,n<65536||n>1114111)continue;l[u++]=n}}return u}}},225:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeV6=void 0;const l=s(1480),_=[[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]],h=[[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]];let f;r.UnicodeV6=class{constructor(){if(this.version="6",!f){f=new Uint8Array(65536),f.fill(1),f[0]=0,f.fill(0,1,32),f.fill(0,127,160),f.fill(2,4352,4448),f[9001]=2,f[9002]=2,f.fill(2,11904,42192),f[12351]=1,f.fill(2,44032,55204),f.fill(2,63744,64256),f.fill(2,65040,65050),f.fill(2,65072,65136),f.fill(2,65280,65377),f.fill(2,65504,65511);for(let v=0;v<_.length;++v)f.fill(0,_[v][0],_[v][1]+1)}}wcwidth(v){return v<32?0:v<127?1:v<65536?f[v]:function(y,u){let n,a=0,i=u.length-1;if(y<u[0][0]||y>u[i][1])return!1;for(;i>=a;)if(n=a+i>>1,y>u[n][1])a=n+1;else{if(!(y<u[n][0]))return!0;i=n-1}return!1}(v,h)?0:v>=131072&&v<=196605||v>=196608&&v<=262141?2:1}charProperties(v,y){let u=this.wcwidth(v),n=u===0&&y!==0;if(n){const a=l.UnicodeService.extractWidth(y);a===0?n=!1:a>u&&(u=a)}return l.UnicodeService.createPropertyValue(0,u,n)}}},5981:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.WriteBuffer=void 0;const l=s(8460),_=s(844);class h extends _.Disposable{constructor(v){super(),this._action=v,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new l.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(v,y){if(y!==void 0&&this._syncCalls>y)return void(this._syncCalls=0);if(this._pendingData+=v.length,this._writeBuffer.push(v),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let u;for(this._isSyncWriting=!0;u=this._writeBuffer.shift();){this._action(u);const n=this._callbacks.shift();n&&n()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(v,y){if(this._pendingData>5e7)throw new Error("write data discarded, use flow control to avoid losing data");if(!this._writeBuffer.length){if(this._bufferOffset=0,this._didUserInput)return this._didUserInput=!1,this._pendingData+=v.length,this._writeBuffer.push(v),this._callbacks.push(y),void this._innerWrite();setTimeout(()=>this._innerWrite())}this._pendingData+=v.length,this._writeBuffer.push(v),this._callbacks.push(y)}_innerWrite(v=0,y=!0){const u=v||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const n=this._writeBuffer[this._bufferOffset],a=this._action(n,y);if(a){const o=d=>Date.now()-u>=12?setTimeout(()=>this._innerWrite(0,d)):this._innerWrite(u,d);return void a.catch(d=>(queueMicrotask(()=>{throw d}),Promise.resolve(!1))).then(o)}const i=this._callbacks[this._bufferOffset];if(i&&i(),this._bufferOffset++,this._pendingData-=n.length,Date.now()-u>=12)break}this._writeBuffer.length>this._bufferOffset?(this._bufferOffset>50&&(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()}}r.WriteBuffer=h},5941:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.toRgbString=r.parseColor=void 0;const s=/^([\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})$/,l=/^[\da-f]+$/;function _(h,f){const v=h.toString(16),y=v.length<2?"0"+v:v;switch(f){case 4:return v[0];case 8:return y;case 12:return(y+y).slice(0,3);default:return y+y}}r.parseColor=function(h){if(!h)return;let f=h.toLowerCase();if(f.indexOf("rgb:")===0){f=f.slice(4);const v=s.exec(f);if(v){const y=v[1]?15:v[4]?255:v[7]?4095:65535;return[Math.round(parseInt(v[1]||v[4]||v[7]||v[10],16)/y*255),Math.round(parseInt(v[2]||v[5]||v[8]||v[11],16)/y*255),Math.round(parseInt(v[3]||v[6]||v[9]||v[12],16)/y*255)]}}else if(f.indexOf("#")===0&&(f=f.slice(1),l.exec(f)&&[3,6,9,12].includes(f.length))){const v=f.length/3,y=[0,0,0];for(let u=0;u<3;++u){const n=parseInt(f.slice(v*u,v*u+v),16);y[u]=v===1?n<<4:v===2?n:v===3?n>>4:n>>8}return y}},r.toRgbString=function(h,f=16){const[v,y,u]=h;return`rgb:${_(v,f)}/${_(y,f)}/${_(u,f)}`}},5770:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.PAYLOAD_LIMIT=void 0,r.PAYLOAD_LIMIT=1e7},6351:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DcsHandler=r.DcsParser=void 0;const l=s(482),_=s(8742),h=s(5770),f=[];r.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=f,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=f}registerHandler(y,u){this._handlers[y]===void 0&&(this._handlers[y]=[]);const n=this._handlers[y];return n.push(u),{dispose:()=>{const a=n.indexOf(u);a!==-1&&n.splice(a,1)}}}clearHandler(y){this._handlers[y]&&delete this._handlers[y]}setHandlerFallback(y){this._handlerFb=y}reset(){if(this._active.length)for(let y=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;y>=0;--y)this._active[y].unhook(!1);this._stack.paused=!1,this._active=f,this._ident=0}hook(y,u){if(this.reset(),this._ident=y,this._active=this._handlers[y]||f,this._active.length)for(let n=this._active.length-1;n>=0;n--)this._active[n].hook(u);else this._handlerFb(this._ident,"HOOK",u)}put(y,u,n){if(this._active.length)for(let a=this._active.length-1;a>=0;a--)this._active[a].put(y,u,n);else this._handlerFb(this._ident,"PUT",(0,l.utf32ToString)(y,u,n))}unhook(y,u=!0){if(this._active.length){let n=!1,a=this._active.length-1,i=!1;if(this._stack.paused&&(a=this._stack.loopPosition-1,n=u,i=this._stack.fallThrough,this._stack.paused=!1),!i&&n===!1){for(;a>=0&&(n=this._active[a].unhook(y),n!==!0);a--)if(n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=a,this._stack.fallThrough=!1,n;a--}for(;a>=0;a--)if(n=this._active[a].unhook(!1),n instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=a,this._stack.fallThrough=!0,n}else this._handlerFb(this._ident,"UNHOOK",y);this._active=f,this._ident=0}};const v=new _.Params;v.addParam(0),r.DcsHandler=class{constructor(y){this._handler=y,this._data="",this._params=v,this._hitLimit=!1}hook(y){this._params=y.length>1||y.params[0]?y.clone():v,this._data="",this._hitLimit=!1}put(y,u,n){this._hitLimit||(this._data+=(0,l.utf32ToString)(y,u,n),this._data.length>h.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}unhook(y){let u=!1;if(this._hitLimit)u=!1;else if(y&&(u=this._handler(this._data,this._params),u instanceof Promise))return u.then(n=>(this._params=v,this._data="",this._hitLimit=!1,n));return this._params=v,this._data="",this._hitLimit=!1,u}}},2015:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.EscapeSequenceParser=r.VT500_TRANSITION_TABLE=r.TransitionTable=void 0;const l=s(844),_=s(8742),h=s(6242),f=s(6351);class v{constructor(a){this.table=new Uint8Array(a)}setDefault(a,i){this.table.fill(a<<4|i)}add(a,i,o,d){this.table[i<<8|a]=o<<4|d}addMany(a,i,o,d){for(let S=0;S<a.length;S++)this.table[i<<8|a[S]]=o<<4|d}}r.TransitionTable=v;const y=160;r.VT500_TRANSITION_TABLE=function(){const n=new v(4095),a=Array.apply(null,Array(256)).map((C,p)=>p),i=(C,p)=>a.slice(C,p),o=i(32,127),d=i(0,24);d.push(25),d.push.apply(d,i(28,32));const S=i(0,14);let b;for(b in n.setDefault(1,0),n.addMany(o,0,2,0),S)n.addMany([24,26,153,154],b,3,0),n.addMany(i(128,144),b,3,0),n.addMany(i(144,152),b,3,0),n.add(156,b,0,0),n.add(27,b,11,1),n.add(157,b,4,8),n.addMany([152,158,159],b,0,7),n.add(155,b,11,3),n.add(144,b,11,9);return n.addMany(d,0,3,0),n.addMany(d,1,3,1),n.add(127,1,0,1),n.addMany(d,8,0,8),n.addMany(d,3,3,3),n.add(127,3,0,3),n.addMany(d,4,3,4),n.add(127,4,0,4),n.addMany(d,6,3,6),n.addMany(d,5,3,5),n.add(127,5,0,5),n.addMany(d,2,3,2),n.add(127,2,0,2),n.add(93,1,4,8),n.addMany(o,8,5,8),n.add(127,8,5,8),n.addMany([156,27,24,26,7],8,6,0),n.addMany(i(28,32),8,0,8),n.addMany([88,94,95],1,0,7),n.addMany(o,7,0,7),n.addMany(d,7,0,7),n.add(156,7,0,0),n.add(127,7,0,7),n.add(91,1,11,3),n.addMany(i(64,127),3,7,0),n.addMany(i(48,60),3,8,4),n.addMany([60,61,62,63],3,9,4),n.addMany(i(48,60),4,8,4),n.addMany(i(64,127),4,7,0),n.addMany([60,61,62,63],4,0,6),n.addMany(i(32,64),6,0,6),n.add(127,6,0,6),n.addMany(i(64,127),6,0,0),n.addMany(i(32,48),3,9,5),n.addMany(i(32,48),5,9,5),n.addMany(i(48,64),5,0,6),n.addMany(i(64,127),5,7,0),n.addMany(i(32,48),4,9,5),n.addMany(i(32,48),1,9,2),n.addMany(i(32,48),2,9,2),n.addMany(i(48,127),2,10,0),n.addMany(i(48,80),1,10,0),n.addMany(i(81,88),1,10,0),n.addMany([89,90,92],1,10,0),n.addMany(i(96,127),1,10,0),n.add(80,1,11,9),n.addMany(d,9,0,9),n.add(127,9,0,9),n.addMany(i(28,32),9,0,9),n.addMany(i(32,48),9,9,12),n.addMany(i(48,60),9,8,10),n.addMany([60,61,62,63],9,9,10),n.addMany(d,11,0,11),n.addMany(i(32,128),11,0,11),n.addMany(i(28,32),11,0,11),n.addMany(d,10,0,10),n.add(127,10,0,10),n.addMany(i(28,32),10,0,10),n.addMany(i(48,60),10,8,10),n.addMany([60,61,62,63],10,0,11),n.addMany(i(32,48),10,9,12),n.addMany(d,12,0,12),n.add(127,12,0,12),n.addMany(i(28,32),12,0,12),n.addMany(i(32,48),12,9,12),n.addMany(i(48,64),12,0,11),n.addMany(i(64,127),12,12,13),n.addMany(i(64,127),10,12,13),n.addMany(i(64,127),9,12,13),n.addMany(d,13,13,13),n.addMany(o,13,13,13),n.add(127,13,0,13),n.addMany([27,156,24,26],13,14,0),n.add(y,0,2,0),n.add(y,8,5,8),n.add(y,6,0,6),n.add(y,11,0,11),n.add(y,13,13,13),n}();class u extends l.Disposable{constructor(a=r.VT500_TRANSITION_TABLE){super(),this._transitions=a,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new _.Params,this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._printHandlerFb=(i,o,d)=>{},this._executeHandlerFb=i=>{},this._csiHandlerFb=(i,o)=>{},this._escHandlerFb=i=>{},this._errorHandlerFb=i=>i,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,l.toDisposable)(()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)})),this._oscParser=this.register(new h.OscParser),this._dcsParser=this.register(new f.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},()=>!0)}_identifier(a,i=[64,126]){let o=0;if(a.prefix){if(a.prefix.length>1)throw new Error("only one byte as prefix supported");if(o=a.prefix.charCodeAt(0),o&&60>o||o>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(a.intermediates){if(a.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let S=0;S<a.intermediates.length;++S){const b=a.intermediates.charCodeAt(S);if(32>b||b>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");o<<=8,o|=b}}if(a.final.length!==1)throw new Error("final must be a single byte");const d=a.final.charCodeAt(0);if(i[0]>d||d>i[1])throw new Error(`final must be in range ${i[0]} .. ${i[1]}`);return o<<=8,o|=d,o}identToString(a){const i=[];for(;a;)i.push(String.fromCharCode(255&a)),a>>=8;return i.reverse().join("")}setPrintHandler(a){this._printHandler=a}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(a,i){const o=this._identifier(a,[48,126]);this._escHandlers[o]===void 0&&(this._escHandlers[o]=[]);const d=this._escHandlers[o];return d.push(i),{dispose:()=>{const S=d.indexOf(i);S!==-1&&d.splice(S,1)}}}clearEscHandler(a){this._escHandlers[this._identifier(a,[48,126])]&&delete this._escHandlers[this._identifier(a,[48,126])]}setEscHandlerFallback(a){this._escHandlerFb=a}setExecuteHandler(a,i){this._executeHandlers[a.charCodeAt(0)]=i}clearExecuteHandler(a){this._executeHandlers[a.charCodeAt(0)]&&delete this._executeHandlers[a.charCodeAt(0)]}setExecuteHandlerFallback(a){this._executeHandlerFb=a}registerCsiHandler(a,i){const o=this._identifier(a);this._csiHandlers[o]===void 0&&(this._csiHandlers[o]=[]);const d=this._csiHandlers[o];return d.push(i),{dispose:()=>{const S=d.indexOf(i);S!==-1&&d.splice(S,1)}}}clearCsiHandler(a){this._csiHandlers[this._identifier(a)]&&delete this._csiHandlers[this._identifier(a)]}setCsiHandlerFallback(a){this._csiHandlerFb=a}registerDcsHandler(a,i){return this._dcsParser.registerHandler(this._identifier(a),i)}clearDcsHandler(a){this._dcsParser.clearHandler(this._identifier(a))}setDcsHandlerFallback(a){this._dcsParser.setHandlerFallback(a)}registerOscHandler(a,i){return this._oscParser.registerHandler(a,i)}clearOscHandler(a){this._oscParser.clearHandler(a)}setOscHandlerFallback(a){this._oscParser.setHandlerFallback(a)}setErrorHandler(a){this._errorHandler=a}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(a,i,o,d,S){this._parseStack.state=a,this._parseStack.handlers=i,this._parseStack.handlerPos=o,this._parseStack.transition=d,this._parseStack.chunkPos=S}parse(a,i,o){let d,S=0,b=0,C=0;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,C=this._parseStack.chunkPos+1;else{if(o===void 0||this._parseStack.state===1)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");const p=this._parseStack.handlers;let E=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(o===!1&&E>-1){for(;E>=0&&(d=p[E](this._params),d!==!0);E--)if(d instanceof Promise)return this._parseStack.handlerPos=E,d}this._parseStack.handlers=[];break;case 4:if(o===!1&&E>-1){for(;E>=0&&(d=p[E](),d!==!0);E--)if(d instanceof Promise)return this._parseStack.handlerPos=E,d}this._parseStack.handlers=[];break;case 6:if(S=a[this._parseStack.chunkPos],d=this._dcsParser.unhook(S!==24&&S!==26,o),d)return d;S===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(S=a[this._parseStack.chunkPos],d=this._oscParser.end(S!==24&&S!==26,o),d)return d;S===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,C=this._parseStack.chunkPos+1,this.precedingJoinState=0,this.currentState=15&this._parseStack.transition}for(let p=C;p<i;++p){switch(S=a[p],b=this._transitions.table[this.currentState<<8|(S<160?S:y)],b>>4){case 2:for(let D=p+1;;++D){if(D>=i||(S=a[D])<32||S>126&&S<y){this._printHandler(a,p,D),p=D-1;break}if(++D>=i||(S=a[D])<32||S>126&&S<y){this._printHandler(a,p,D),p=D-1;break}if(++D>=i||(S=a[D])<32||S>126&&S<y){this._printHandler(a,p,D),p=D-1;break}if(++D>=i||(S=a[D])<32||S>126&&S<y){this._printHandler(a,p,D),p=D-1;break}}break;case 3:this._executeHandlers[S]?this._executeHandlers[S]():this._executeHandlerFb(S),this.precedingJoinState=0;break;case 0:break;case 1:if(this._errorHandler({position:p,code:S,currentState:this.currentState,collect:this._collect,params:this._params,abort:!1}).abort)return;break;case 7:const E=this._csiHandlers[this._collect<<8|S];let P=E?E.length-1:-1;for(;P>=0&&(d=E[P](this._params),d!==!0);P--)if(d instanceof Promise)return this._preserveStack(3,E,P,b,p),d;P<0&&this._csiHandlerFb(this._collect<<8|S,this._params),this.precedingJoinState=0;break;case 8:do switch(S){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(S-48)}while(++p<i&&(S=a[p])>47&&S<60);p--;break;case 9:this._collect<<=8,this._collect|=S;break;case 10:const T=this._escHandlers[this._collect<<8|S];let B=T?T.length-1:-1;for(;B>=0&&(d=T[B](),d!==!0);B--)if(d instanceof Promise)return this._preserveStack(4,T,B,b,p),d;B<0&&this._escHandlerFb(this._collect<<8|S),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|S,this._params);break;case 13:for(let D=p+1;;++D)if(D>=i||(S=a[D])===24||S===26||S===27||S>127&&S<y){this._dcsParser.put(a,p,D),p=D-1;break}break;case 14:if(d=this._dcsParser.unhook(S!==24&&S!==26),d)return this._preserveStack(6,[],0,b,p),d;S===27&&(b|=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 D=p+1;;D++)if(D>=i||(S=a[D])<32||S>127&&S<y){this._oscParser.put(a,p,D),p=D-1;break}break;case 6:if(d=this._oscParser.end(S!==24&&S!==26),d)return this._preserveStack(5,[],0,b,p),d;S===27&&(b|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0}this.currentState=15&b}}}r.EscapeSequenceParser=u},6242:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.OscHandler=r.OscParser=void 0;const l=s(5770),_=s(482),h=[];r.OscParser=class{constructor(){this._state=0,this._active=h,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(f,v){this._handlers[f]===void 0&&(this._handlers[f]=[]);const y=this._handlers[f];return y.push(v),{dispose:()=>{const u=y.indexOf(v);u!==-1&&y.splice(u,1)}}}clearHandler(f){this._handlers[f]&&delete this._handlers[f]}setHandlerFallback(f){this._handlerFb=f}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=h}reset(){if(this._state===2)for(let f=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;f>=0;--f)this._active[f].end(!1);this._stack.paused=!1,this._active=h,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||h,this._active.length)for(let f=this._active.length-1;f>=0;f--)this._active[f].start();else this._handlerFb(this._id,"START")}_put(f,v,y){if(this._active.length)for(let u=this._active.length-1;u>=0;u--)this._active[u].put(f,v,y);else this._handlerFb(this._id,"PUT",(0,_.utf32ToString)(f,v,y))}start(){this.reset(),this._state=1}put(f,v,y){if(this._state!==3){if(this._state===1)for(;v<y;){const u=f[v++];if(u===59){this._state=2,this._start();break}if(u<48||57<u)return void(this._state=3);this._id===-1&&(this._id=0),this._id=10*this._id+u-48}this._state===2&&y-v>0&&this._put(f,v,y)}}end(f,v=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),this._active.length){let y=!1,u=this._active.length-1,n=!1;if(this._stack.paused&&(u=this._stack.loopPosition-1,y=v,n=this._stack.fallThrough,this._stack.paused=!1),!n&&y===!1){for(;u>=0&&(y=this._active[u].end(f),y!==!0);u--)if(y instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=u,this._stack.fallThrough=!1,y;u--}for(;u>=0;u--)if(y=this._active[u].end(!1),y instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=u,this._stack.fallThrough=!0,y}else this._handlerFb(this._id,"END",f);this._active=h,this._id=-1,this._state=0}}},r.OscHandler=class{constructor(f){this._handler=f,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(f,v,y){this._hitLimit||(this._data+=(0,_.utf32ToString)(f,v,y),this._data.length>l.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}end(f){let v=!1;if(this._hitLimit)v=!1;else if(f&&(v=this._handler(this._data),v instanceof Promise))return v.then(y=>(this._data="",this._hitLimit=!1,y));return this._data="",this._hitLimit=!1,v}}},8742:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.Params=void 0;const s=2147483647;class l{static fromArray(h){const f=new l;if(!h.length)return f;for(let v=Array.isArray(h[0])?1:0;v<h.length;++v){const y=h[v];if(Array.isArray(y))for(let u=0;u<y.length;++u)f.addSubParam(y[u]);else f.addParam(y)}return f}constructor(h=32,f=32){if(this.maxLength=h,this.maxSubParamsLength=f,f>256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(h),this.length=0,this._subParams=new Int32Array(f),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(h),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const h=new l(this.maxLength,this.maxSubParamsLength);return h.params.set(this.params),h.length=this.length,h._subParams.set(this._subParams),h._subParamsLength=this._subParamsLength,h._subParamsIdx.set(this._subParamsIdx),h._rejectDigits=this._rejectDigits,h._rejectSubDigits=this._rejectSubDigits,h._digitIsSub=this._digitIsSub,h}toArray(){const h=[];for(let f=0;f<this.length;++f){h.push(this.params[f]);const v=this._subParamsIdx[f]>>8,y=255&this._subParamsIdx[f];y-v>0&&h.push(Array.prototype.slice.call(this._subParams,v,y))}return h}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(h){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(h<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=h>s?s:h}}addSubParam(h){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(h<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=h>s?s:h,this._subParamsIdx[this.length-1]++}}hasSubParams(h){return(255&this._subParamsIdx[h])-(this._subParamsIdx[h]>>8)>0}getSubParams(h){const f=this._subParamsIdx[h]>>8,v=255&this._subParamsIdx[h];return v-f>0?this._subParams.subarray(f,v):null}getSubParamsAll(){const h={};for(let f=0;f<this.length;++f){const v=this._subParamsIdx[f]>>8,y=255&this._subParamsIdx[f];y-v>0&&(h[f]=this._subParams.slice(v,y))}return h}addDigit(h){let f;if(this._rejectDigits||!(f=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const v=this._digitIsSub?this._subParams:this.params,y=v[f-1];v[f-1]=~y?Math.min(10*y+h,s):h}}r.Params=l},5741:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.AddonManager=void 0,r.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let s=this._addons.length-1;s>=0;s--)this._addons[s].instance.dispose()}loadAddon(s,l){const _={instance:l,dispose:l.dispose,isDisposed:!1};this._addons.push(_),l.dispose=()=>this._wrappedAddonDispose(_),l.activate(s)}_wrappedAddonDispose(s){if(s.isDisposed)return;let l=-1;for(let _=0;_<this._addons.length;_++)if(this._addons[_]===s){l=_;break}if(l===-1)throw new Error("Could not dispose an addon that has not been loaded");s.isDisposed=!0,s.dispose.apply(s.instance),this._addons.splice(l,1)}}},8771:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferApiView=void 0;const l=s(3785),_=s(511);r.BufferApiView=class{constructor(h,f){this._buffer=h,this.type=f}init(h){return this._buffer=h,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(h){const f=this._buffer.lines.get(h);if(f)return new l.BufferLineApiView(f)}getNullCell(){return new _.CellData}}},3785:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferLineApiView=void 0;const l=s(511);r.BufferLineApiView=class{constructor(_){this._line=_}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(_,h){if(!(_<0||_>=this._line.length))return h?(this._line.loadCell(_,h),h):this._line.loadCell(_,new l.CellData)}translateToString(_,h,f){return this._line.translateToString(_,h,f)}}},8285:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.BufferNamespaceApi=void 0;const l=s(8771),_=s(8460),h=s(844);class f extends h.Disposable{constructor(y){super(),this._core=y,this._onBufferChange=this.register(new _.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new l.BufferApiView(this._core.buffers.normal,"normal"),this._alternate=new l.BufferApiView(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 new 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)}}r.BufferNamespaceApi=f},7975:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.ParserApi=void 0,r.ParserApi=class{constructor(s){this._core=s}registerCsiHandler(s,l){return this._core.registerCsiHandler(s,_=>l(_.toArray()))}addCsiHandler(s,l){return this.registerCsiHandler(s,l)}registerDcsHandler(s,l){return this._core.registerDcsHandler(s,(_,h)=>l(_,h.toArray()))}addDcsHandler(s,l){return this.registerDcsHandler(s,l)}registerEscHandler(s,l){return this._core.registerEscHandler(s,l)}addEscHandler(s,l){return this.registerEscHandler(s,l)}registerOscHandler(s,l){return this._core.registerOscHandler(s,l)}addOscHandler(s,l){return this.registerOscHandler(s,l)}}},7090:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeApi=void 0,r.UnicodeApi=class{constructor(s){this._core=s}register(s){this._core.unicodeService.register(s)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(s){this._core.unicodeService.activeVersion=s}}},744:function(w,r,s){var l=this&&this.__decorate||function(n,a,i,o){var d,S=arguments.length,b=S<3?a:o===null?o=Object.getOwnPropertyDescriptor(a,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(n,a,i,o);else for(var C=n.length-1;C>=0;C--)(d=n[C])&&(b=(S<3?d(b):S>3?d(a,i,b):d(a,i))||b);return S>3&&b&&Object.defineProperty(a,i,b),b},_=this&&this.__param||function(n,a){return function(i,o){a(i,o,n)}};Object.defineProperty(r,"__esModule",{value:!0}),r.BufferService=r.MINIMUM_ROWS=r.MINIMUM_COLS=void 0;const h=s(8460),f=s(844),v=s(5295),y=s(2585);r.MINIMUM_COLS=2,r.MINIMUM_ROWS=1;let u=r.BufferService=class extends f.Disposable{get buffer(){return this.buffers.active}constructor(n){super(),this.isUserScrolling=!1,this._onResize=this.register(new h.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new h.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(n.rawOptions.cols||0,r.MINIMUM_COLS),this.rows=Math.max(n.rawOptions.rows||0,r.MINIMUM_ROWS),this.buffers=this.register(new v.BufferSet(n,this))}resize(n,a){this.cols=n,this.rows=a,this.buffers.resize(n,a),this._onResize.fire({cols:n,rows:a})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(n,a=!1){const i=this.buffer;let o;o=this._cachedBlankLine,o&&o.length===this.cols&&o.getFg(0)===n.fg&&o.getBg(0)===n.bg||(o=i.getBlankLine(n,a),this._cachedBlankLine=o),o.isWrapped=a;const d=i.ybase+i.scrollTop,S=i.ybase+i.scrollBottom;if(i.scrollTop===0){const b=i.lines.isFull;S===i.lines.length-1?b?i.lines.recycle().copyFrom(o):i.lines.push(o.clone()):i.lines.splice(S+1,0,o.clone()),b?this.isUserScrolling&&(i.ydisp=Math.max(i.ydisp-1,0)):(i.ybase++,this.isUserScrolling||i.ydisp++)}else{const b=S-d+1;i.lines.shiftElements(d+1,b-1,-1),i.lines.set(S,o.clone())}this.isUserScrolling||(i.ydisp=i.ybase),this._onScroll.fire(i.ydisp)}scrollLines(n,a,i){const o=this.buffer;if(n<0){if(o.ydisp===0)return;this.isUserScrolling=!0}else n+o.ydisp>=o.ybase&&(this.isUserScrolling=!1);const d=o.ydisp;o.ydisp=Math.max(Math.min(o.ydisp+n,o.ybase),0),d!==o.ydisp&&(a||this._onScroll.fire(o.ydisp))}};r.BufferService=u=l([_(0,y.IOptionsService)],u)},7994:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.CharsetService=void 0,r.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(s){this.glevel=s,this.charset=this._charsets[s]}setgCharset(s,l){this._charsets[s]=l,this.glevel===s&&(this.charset=l)}}},1753:function(w,r,s){var l=this&&this.__decorate||function(o,d,S,b){var C,p=arguments.length,E=p<3?d:b===null?b=Object.getOwnPropertyDescriptor(d,S):b;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")E=Reflect.decorate(o,d,S,b);else for(var P=o.length-1;P>=0;P--)(C=o[P])&&(E=(p<3?C(E):p>3?C(d,S,E):C(d,S))||E);return p>3&&E&&Object.defineProperty(d,S,E),E},_=this&&this.__param||function(o,d){return function(S,b){d(S,b,o)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreMouseService=void 0;const h=s(2585),f=s(8460),v=s(844),y={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:o=>o.button!==4&&o.action===1&&(o.ctrl=!1,o.alt=!1,o.shift=!1,!0)},VT200:{events:19,restrict:o=>o.action!==32},DRAG:{events:23,restrict:o=>o.action!==32||o.button!==3},ANY:{events:31,restrict:o=>!0}};function u(o,d){let S=(o.ctrl?16:0)|(o.shift?4:0)|(o.alt?8:0);return o.button===4?(S|=64,S|=o.action):(S|=3&o.button,4&o.button&&(S|=64),8&o.button&&(S|=128),o.action===32?S|=32:o.action!==0||d||(S|=3)),S}const n=String.fromCharCode,a={DEFAULT:o=>{const d=[u(o,!1)+32,o.col+32,o.row+32];return d[0]>255||d[1]>255||d[2]>255?"":`\x1B[M${n(d[0])}${n(d[1])}${n(d[2])}`},SGR:o=>{const d=o.action===0&&o.button!==4?"m":"M";return`\x1B[<${u(o,!0)};${o.col};${o.row}${d}`},SGR_PIXELS:o=>{const d=o.action===0&&o.button!==4?"m":"M";return`\x1B[<${u(o,!0)};${o.x};${o.y}${d}`}};let i=r.CoreMouseService=class extends v.Disposable{constructor(o,d){super(),this._bufferService=o,this._coreService=d,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._onProtocolChange=this.register(new f.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const S of Object.keys(y))this.addProtocol(S,y[S]);for(const S of Object.keys(a))this.addEncoding(S,a[S]);this.reset()}addProtocol(o,d){this._protocols[o]=d}addEncoding(o,d){this._encodings[o]=d}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(o){if(!this._protocols[o])throw new Error(`unknown protocol "${o}"`);this._activeProtocol=o,this._onProtocolChange.fire(this._protocols[o].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(o){if(!this._encodings[o])throw new Error(`unknown encoding "${o}"`);this._activeEncoding=o}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null}triggerMouseEvent(o){if(o.col<0||o.col>=this._bufferService.cols||o.row<0||o.row>=this._bufferService.rows||o.button===4&&o.action===32||o.button===3&&o.action!==32||o.button!==4&&(o.action===2||o.action===3)||(o.col++,o.row++,o.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,o,this._activeEncoding==="SGR_PIXELS"))||!this._protocols[this._activeProtocol].restrict(o))return!1;const d=this._encodings[this._activeEncoding](o);return d&&(this._activeEncoding==="DEFAULT"?this._coreService.triggerBinaryEvent(d):this._coreService.triggerDataEvent(d,!0)),this._lastEvent=o,!0}explainEvents(o){return{down:!!(1&o),up:!!(2&o),drag:!!(4&o),move:!!(8&o),wheel:!!(16&o)}}_equalEvents(o,d,S){if(S){if(o.x!==d.x||o.y!==d.y)return!1}else if(o.col!==d.col||o.row!==d.row)return!1;return o.button===d.button&&o.action===d.action&&o.ctrl===d.ctrl&&o.alt===d.alt&&o.shift===d.shift}};r.CoreMouseService=i=l([_(0,h.IBufferService),_(1,h.ICoreService)],i)},6975:function(w,r,s){var l=this&&this.__decorate||function(i,o,d,S){var b,C=arguments.length,p=C<3?o:S===null?S=Object.getOwnPropertyDescriptor(o,d):S;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")p=Reflect.decorate(i,o,d,S);else for(var E=i.length-1;E>=0;E--)(b=i[E])&&(p=(C<3?b(p):C>3?b(o,d,p):b(o,d))||p);return C>3&&p&&Object.defineProperty(o,d,p),p},_=this&&this.__param||function(i,o){return function(d,S){o(d,S,i)}};Object.defineProperty(r,"__esModule",{value:!0}),r.CoreService=void 0;const h=s(1439),f=s(8460),v=s(844),y=s(2585),u=Object.freeze({insertMode:!1}),n=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let a=r.CoreService=class extends v.Disposable{constructor(i,o,d){super(),this._bufferService=i,this._logService=o,this._optionsService=d,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new f.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new f.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new f.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new f.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,h.clone)(u),this.decPrivateModes=(0,h.clone)(n)}reset(){this.modes=(0,h.clone)(u),this.decPrivateModes=(0,h.clone)(n)}triggerDataEvent(i,o=!1){if(this._optionsService.rawOptions.disableStdin)return;const d=this._bufferService.buffer;o&&this._optionsService.rawOptions.scrollOnUserInput&&d.ybase!==d.ydisp&&this._onRequestScrollToBottom.fire(),o&&this._onUserInput.fire(),this._logService.debug(`sending data "${i}"`,()=>i.split("").map(S=>S.charCodeAt(0))),this._onData.fire(i)}triggerBinaryEvent(i){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${i}"`,()=>i.split("").map(o=>o.charCodeAt(0))),this._onBinary.fire(i))}};r.CoreService=a=l([_(0,y.IBufferService),_(1,y.ILogService),_(2,y.IOptionsService)],a)},9074:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.DecorationService=void 0;const l=s(8055),_=s(8460),h=s(844),f=s(6106);let v=0,y=0;class u extends h.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new f.SortedList(i=>i?.marker.line),this._onDecorationRegistered=this.register(new _.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new _.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,h.toDisposable)(()=>this.reset()))}registerDecoration(i){if(i.marker.isDisposed)return;const o=new n(i);if(o){const d=o.marker.onDispose(()=>o.dispose());o.onDispose(()=>{o&&(this._decorations.delete(o)&&this._onDecorationRemoved.fire(o),d.dispose())}),this._decorations.insert(o),this._onDecorationRegistered.fire(o)}return o}reset(){for(const i of this._decorations.values())i.dispose();this._decorations.clear()}*getDecorationsAtCell(i,o,d){let S=0,b=0;for(const C of this._decorations.getKeyIterator(o))S=C.options.x??0,b=S+(C.options.width??1),i>=S&&i<b&&(!d||(C.options.layer??"bottom")===d)&&(yield C)}forEachDecorationAtCell(i,o,d,S){this._decorations.forEachByKey(o,b=>{v=b.options.x??0,y=v+(b.options.width??1),i>=v&&i<y&&(!d||(b.options.layer??"bottom")===d)&&S(b)})}}r.DecorationService=u;class n extends h.Disposable{get isDisposed(){return this._isDisposed}get backgroundColorRGB(){return this._cachedBg===null&&(this.options.backgroundColor?this._cachedBg=l.css.toColor(this.options.backgroundColor):this._cachedBg=void 0),this._cachedBg}get foregroundColorRGB(){return this._cachedFg===null&&(this.options.foregroundColor?this._cachedFg=l.css.toColor(this.options.foregroundColor):this._cachedFg=void 0),this._cachedFg}constructor(i){super(),this.options=i,this.onRenderEmitter=this.register(new _.EventEmitter),this.onRender=this.onRenderEmitter.event,this._onDispose=this.register(new _.EventEmitter),this.onDispose=this._onDispose.event,this._cachedBg=null,this._cachedFg=null,this.marker=i.marker,this.options.overviewRulerOptions&&!this.options.overviewRulerOptions.position&&(this.options.overviewRulerOptions.position="full")}dispose(){this._onDispose.fire(),super.dispose()}}},4348:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.InstantiationService=r.ServiceCollection=void 0;const l=s(2585),_=s(8343);class h{constructor(...v){this._entries=new Map;for(const[y,u]of v)this.set(y,u)}set(v,y){const u=this._entries.get(v);return this._entries.set(v,y),u}forEach(v){for(const[y,u]of this._entries.entries())v(y,u)}has(v){return this._entries.has(v)}get(v){return this._entries.get(v)}}r.ServiceCollection=h,r.InstantiationService=class{constructor(){this._services=new h,this._services.set(l.IInstantiationService,this)}setService(f,v){this._services.set(f,v)}getService(f){return this._services.get(f)}createInstance(f,...v){const y=(0,_.getServiceDependencies)(f).sort((a,i)=>a.index-i.index),u=[];for(const a of y){const i=this._services.get(a.id);if(!i)throw new Error(`[createInstance] ${f.name} depends on UNKNOWN service ${a.id}.`);u.push(i)}const n=y.length>0?y[0].index:v.length;if(v.length!==n)throw new Error(`[createInstance] First service dependency of ${f.name} at position ${n+1} conflicts with ${v.length} static arguments`);return new f(...v,...u)}}},7866:function(w,r,s){var l=this&&this.__decorate||function(n,a,i,o){var d,S=arguments.length,b=S<3?a:o===null?o=Object.getOwnPropertyDescriptor(a,i):o;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")b=Reflect.decorate(n,a,i,o);else for(var C=n.length-1;C>=0;C--)(d=n[C])&&(b=(S<3?d(b):S>3?d(a,i,b):d(a,i))||b);return S>3&&b&&Object.defineProperty(a,i,b),b},_=this&&this.__param||function(n,a){return function(i,o){a(i,o,n)}};Object.defineProperty(r,"__esModule",{value:!0}),r.traceCall=r.setTraceLogger=r.LogService=void 0;const h=s(844),f=s(2585),v={trace:f.LogLevelEnum.TRACE,debug:f.LogLevelEnum.DEBUG,info:f.LogLevelEnum.INFO,warn:f.LogLevelEnum.WARN,error:f.LogLevelEnum.ERROR,off:f.LogLevelEnum.OFF};let y,u=r.LogService=class extends h.Disposable{get logLevel(){return this._logLevel}constructor(n){super(),this._optionsService=n,this._logLevel=f.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",()=>this._updateLogLevel())),y=this}_updateLogLevel(){this._logLevel=v[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(n){for(let a=0;a<n.length;a++)typeof n[a]=="function"&&(n[a]=n[a]())}_log(n,a,i){this._evalLazyOptionalParams(i),n.call(console,(this._optionsService.options.logger?"":"xterm.js: ")+a,...i)}trace(n,...a){this._logLevel<=f.LogLevelEnum.TRACE&&this._log(this._optionsService.options.logger?.trace.bind(this._optionsService.options.logger)??console.log,n,a)}debug(n,...a){this._logLevel<=f.LogLevelEnum.DEBUG&&this._log(this._optionsService.options.logger?.debug.bind(this._optionsService.options.logger)??console.log,n,a)}info(n,...a){this._logLevel<=f.LogLevelEnum.INFO&&this._log(this._optionsService.options.logger?.info.bind(this._optionsService.options.logger)??console.info,n,a)}warn(n,...a){this._logLevel<=f.LogLevelEnum.WARN&&this._log(this._optionsService.options.logger?.warn.bind(this._optionsService.options.logger)??console.warn,n,a)}error(n,...a){this._logLevel<=f.LogLevelEnum.ERROR&&this._log(this._optionsService.options.logger?.error.bind(this._optionsService.options.logger)??console.error,n,a)}};r.LogService=u=l([_(0,f.IOptionsService)],u),r.setTraceLogger=function(n){y=n},r.traceCall=function(n,a,i){if(typeof i.value!="function")throw new Error("not supported");const o=i.value;i.value=function(...d){if(y.logLevel!==f.LogLevelEnum.TRACE)return o.apply(this,d);y.trace(`GlyphRenderer#${o.name}(${d.map(b=>JSON.stringify(b)).join(", ")})`);const S=o.apply(this,d);return y.trace(`GlyphRenderer#${o.name} return`,S),S}}},7302:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.OptionsService=r.DEFAULT_OPTIONS=void 0;const l=s(8460),_=s(844),h=s(6114);r.DEFAULT_OPTIONS={cols:80,rows:24,cursorBlink:!1,cursorStyle:"block",cursorWidth:1,cursorInactiveStyle:"outline",customGlyphs:!0,drawBoldTextInBrightColors:!0,documentOverride:null,fastScrollModifier:"alt",fastScrollSensitivity:5,fontFamily:"courier-new, courier, monospace",fontSize:15,fontWeight:"normal",fontWeightBold:"bold",ignoreBracketedPasteMode:!1,lineHeight:1,letterSpacing:0,linkHandler:null,logLevel:"info",logger:null,scrollback:1e3,scrollOnUserInput:!0,scrollSensitivity:1,screenReaderMode:!1,smoothScrollDuration:0,macOptionIsMeta:!1,macOptionClickForcesSelection:!1,minimumContrastRatio:1,disableStdin:!1,allowProposedApi:!1,allowTransparency:!1,tabStopWidth:8,theme:{},rescaleOverlappingGlyphs:!1,rightClickSelectsWord:h.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRulerWidth:0};const f=["normal","bold","100","200","300","400","500","600","700","800","900"];class v extends _.Disposable{constructor(u){super(),this._onOptionChange=this.register(new l.EventEmitter),this.onOptionChange=this._onOptionChange.event;const n={...r.DEFAULT_OPTIONS};for(const a in u)if(a in n)try{const i=u[a];n[a]=this._sanitizeAndValidateOption(a,i)}catch(i){console.error(i)}this.rawOptions=n,this.options={...n},this._setupOptions(),this.register((0,_.toDisposable)(()=>{this.rawOptions.linkHandler=null,this.rawOptions.documentOverride=null}))}onSpecificOptionChange(u,n){return this.onOptionChange(a=>{a===u&&n(this.rawOptions[u])})}onMultipleOptionChange(u,n){return this.onOptionChange(a=>{u.indexOf(a)!==-1&&n()})}_setupOptions(){const u=a=>{if(!(a in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${a}"`);return this.rawOptions[a]},n=(a,i)=>{if(!(a in r.DEFAULT_OPTIONS))throw new Error(`No option with key "${a}"`);i=this._sanitizeAndValidateOption(a,i),this.rawOptions[a]!==i&&(this.rawOptions[a]=i,this._onOptionChange.fire(a))};for(const a in this.rawOptions){const i={get:u.bind(this,a),set:n.bind(this,a)};Object.defineProperty(this.options,a,i)}}_sanitizeAndValidateOption(u,n){switch(u){case"cursorStyle":if(n||(n=r.DEFAULT_OPTIONS[u]),!function(a){return a==="block"||a==="underline"||a==="bar"}(n))throw new Error(`"${n}" is not a valid value for ${u}`);break;case"wordSeparator":n||(n=r.DEFAULT_OPTIONS[u]);break;case"fontWeight":case"fontWeightBold":if(typeof n=="number"&&1<=n&&n<=1e3)break;n=f.includes(n)?n:r.DEFAULT_OPTIONS[u];break;case"cursorWidth":n=Math.floor(n);case"lineHeight":case"tabStopWidth":if(n<1)throw new Error(`${u} cannot be less than 1, value: ${n}`);break;case"minimumContrastRatio":n=Math.max(1,Math.min(21,Math.round(10*n)/10));break;case"scrollback":if((n=Math.min(n,4294967295))<0)throw new Error(`${u} cannot be less than 0, value: ${n}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(n<=0)throw new Error(`${u} cannot be less than or equal to 0, value: ${n}`);break;case"rows":case"cols":if(!n&&n!==0)throw new Error(`${u} must be numeric, value: ${n}`);break;case"windowsPty":n=n??{}}return n}}r.OptionsService=v},2660:function(w,r,s){var l=this&&this.__decorate||function(v,y,u,n){var a,i=arguments.length,o=i<3?y:n===null?n=Object.getOwnPropertyDescriptor(y,u):n;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")o=Reflect.decorate(v,y,u,n);else for(var d=v.length-1;d>=0;d--)(a=v[d])&&(o=(i<3?a(o):i>3?a(y,u,o):a(y,u))||o);return i>3&&o&&Object.defineProperty(y,u,o),o},_=this&&this.__param||function(v,y){return function(u,n){y(u,n,v)}};Object.defineProperty(r,"__esModule",{value:!0}),r.OscLinkService=void 0;const h=s(2585);let f=r.OscLinkService=class{constructor(v){this._bufferService=v,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(v){const y=this._bufferService.buffer;if(v.id===void 0){const d=y.addMarker(y.ybase+y.y),S={data:v,id:this._nextId++,lines:[d]};return d.onDispose(()=>this._removeMarkerFromLink(S,d)),this._dataByLinkId.set(S.id,S),S.id}const u=v,n=this._getEntryIdKey(u),a=this._entriesWithId.get(n);if(a)return this.addLineToLink(a.id,y.ybase+y.y),a.id;const i=y.addMarker(y.ybase+y.y),o={id:this._nextId++,key:this._getEntryIdKey(u),data:u,lines:[i]};return i.onDispose(()=>this._removeMarkerFromLink(o,i)),this._entriesWithId.set(o.key,o),this._dataByLinkId.set(o.id,o),o.id}addLineToLink(v,y){const u=this._dataByLinkId.get(v);if(u&&u.lines.every(n=>n.line!==y)){const n=this._bufferService.buffer.addMarker(y);u.lines.push(n),n.onDispose(()=>this._removeMarkerFromLink(u,n))}}getLinkData(v){return this._dataByLinkId.get(v)?.data}_getEntryIdKey(v){return`${v.id};;${v.uri}`}_removeMarkerFromLink(v,y){const u=v.lines.indexOf(y);u!==-1&&(v.lines.splice(u,1),v.lines.length===0&&(v.data.id!==void 0&&this._entriesWithId.delete(v.key),this._dataByLinkId.delete(v.id)))}};r.OscLinkService=f=l([_(0,h.IBufferService)],f)},8343:(w,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.createDecorator=r.getServiceDependencies=r.serviceRegistry=void 0;const s="di$target",l="di$dependencies";r.serviceRegistry=new Map,r.getServiceDependencies=function(_){return _[l]||[]},r.createDecorator=function(_){if(r.serviceRegistry.has(_))return r.serviceRegistry.get(_);const h=function(f,v,y){if(arguments.length!==3)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");(function(u,n,a){n[s]===n?n[l].push({id:u,index:a}):(n[l]=[{id:u,index:a}],n[s]=n)})(h,f,y)};return h.toString=()=>_,r.serviceRegistry.set(_,h),h}},2585:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.IDecorationService=r.IUnicodeService=r.IOscLinkService=r.IOptionsService=r.ILogService=r.LogLevelEnum=r.IInstantiationService=r.ICharsetService=r.ICoreService=r.ICoreMouseService=r.IBufferService=void 0;const l=s(8343);var _;r.IBufferService=(0,l.createDecorator)("BufferService"),r.ICoreMouseService=(0,l.createDecorator)("CoreMouseService"),r.ICoreService=(0,l.createDecorator)("CoreService"),r.ICharsetService=(0,l.createDecorator)("CharsetService"),r.IInstantiationService=(0,l.createDecorator)("InstantiationService"),function(h){h[h.TRACE=0]="TRACE",h[h.DEBUG=1]="DEBUG",h[h.INFO=2]="INFO",h[h.WARN=3]="WARN",h[h.ERROR=4]="ERROR",h[h.OFF=5]="OFF"}(_||(r.LogLevelEnum=_={})),r.ILogService=(0,l.createDecorator)("LogService"),r.IOptionsService=(0,l.createDecorator)("OptionsService"),r.IOscLinkService=(0,l.createDecorator)("OscLinkService"),r.IUnicodeService=(0,l.createDecorator)("UnicodeService"),r.IDecorationService=(0,l.createDecorator)("DecorationService")},1480:(w,r,s)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.UnicodeService=void 0;const l=s(8460),_=s(225);class h{static extractShouldJoin(v){return(1&v)!=0}static extractWidth(v){return v>>1&3}static extractCharKind(v){return v>>3}static createPropertyValue(v,y,u=!1){return(16777215&v)<<3|(3&y)<<1|(u?1:0)}constructor(){this._providers=Object.create(null),this._active="",this._onChange=new l.EventEmitter,this.onChange=this._onChange.event;const v=new _.UnicodeV6;this.register(v),this._active=v.version,this._activeProvider=v}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(v){if(!this._providers[v])throw new Error(`unknown Unicode version "${v}"`);this._active=v,this._activeProvider=this._providers[v],this._onChange.fire(v)}register(v){this._providers[v.version]=v}wcwidth(v){return this._activeProvider.wcwidth(v)}getStringCellWidth(v){let y=0,u=0;const n=v.length;for(let a=0;a<n;++a){let i=v.charCodeAt(a);if(55296<=i&&i<=56319){if(++a>=n)return y+this.wcwidth(i);const S=v.charCodeAt(a);56320<=S&&S<=57343?i=1024*(i-55296)+S-56320+65536:y+=this.wcwidth(S)}const o=this.charProperties(i,u);let d=h.extractWidth(o);h.extractShouldJoin(o)&&(d-=h.extractWidth(u)),y+=d,u=o}return y}charProperties(v,y){return this._activeProvider.charProperties(v,y)}}r.UnicodeService=h}},g={};function m(w){var r=g[w];if(r!==void 0)return r.exports;var s=g[w]={exports:{}};return c[w].call(s.exports,s,s.exports,m),s.exports}var k={};return(()=>{var w=k;Object.defineProperty(w,"__esModule",{value:!0}),w.Terminal=void 0;const r=m(9042),s=m(3236),l=m(844),_=m(5741),h=m(8285),f=m(7975),v=m(7090),y=["cols","rows"];class u extends l.Disposable{constructor(a){super(),this._core=this.register(new s.Terminal(a)),this._addonManager=this.register(new _.AddonManager),this._publicOptions={...this._core.options};const i=d=>this._core.options[d],o=(d,S)=>{this._checkReadonlyOptions(d),this._core.options[d]=S};for(const d in this._core.options){const S={get:i.bind(this,d),set:o.bind(this,d)};Object.defineProperty(this._publicOptions,d,S)}}_checkReadonlyOptions(a){if(y.includes(a))throw new Error(`Option "${a}" can only be set in the constructor`)}_checkProposedApi(){if(!this._core.optionsService.rawOptions.allowProposedApi)throw new 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||(this._parser=new f.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new v.UnicodeApi(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._buffer=this.register(new h.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const a=this._core.coreService.decPrivateModes;let i="none";switch(this._core.coreMouseService.activeProtocol){case"X10":i="x10";break;case"VT200":i="vt200";break;case"DRAG":i="drag";break;case"ANY":i="any"}return{applicationCursorKeysMode:a.applicationCursorKeys,applicationKeypadMode:a.applicationKeypad,bracketedPasteMode:a.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:i,originMode:a.origin,reverseWraparoundMode:a.reverseWraparound,sendFocusMode:a.sendFocus,wraparoundMode:a.wraparound}}get options(){return this._publicOptions}set options(a){for(const i in a)this._publicOptions[i]=a[i]}blur(){this._core.blur()}focus(){this._core.focus()}input(a,i=!0){this._core.input(a,i)}resize(a,i){this._verifyIntegers(a,i),this._core.resize(a,i)}open(a){this._core.open(a)}attachCustomKeyEventHandler(a){this._core.attachCustomKeyEventHandler(a)}attachCustomWheelEventHandler(a){this._core.attachCustomWheelEventHandler(a)}registerLinkProvider(a){return this._core.registerLinkProvider(a)}registerCharacterJoiner(a){return this._checkProposedApi(),this._core.registerCharacterJoiner(a)}deregisterCharacterJoiner(a){this._checkProposedApi(),this._core.deregisterCharacterJoiner(a)}registerMarker(a=0){return this._verifyIntegers(a),this._core.registerMarker(a)}registerDecoration(a){return this._checkProposedApi(),this._verifyPositiveIntegers(a.x??0,a.width??0,a.height??0),this._core.registerDecoration(a)}hasSelection(){return this._core.hasSelection()}select(a,i,o){this._verifyIntegers(a,i,o),this._core.select(a,i,o)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(a,i){this._verifyIntegers(a,i),this._core.selectLines(a,i)}dispose(){super.dispose()}scrollLines(a){this._verifyIntegers(a),this._core.scrollLines(a)}scrollPages(a){this._verifyIntegers(a),this._core.scrollPages(a)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(a){this._verifyIntegers(a),this._core.scrollToLine(a)}clear(){this._core.clear()}write(a,i){this._core.write(a,i)}writeln(a,i){this._core.write(a),this._core.write(`\r
|
|
9
|
-
`,i)}paste(a){this._core.paste(a)}refresh(a,i){this._verifyIntegers(a,i),this._core.refresh(a,i)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(a){this._addonManager.loadAddon(this,a)}static get strings(){return r}_verifyIntegers(...a){for(const i of a)if(i===1/0||isNaN(i)||i%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...a){for(const i of a)if(i&&(i===1/0||isNaN(i)||i%1!=0||i<0))throw new Error("This API only accepts positive integers")}}w.Terminal=u})(),k})())}(lt)),lt.exports}var ds=us();function z(e,t,c){function g(r,s){var l;Object.defineProperty(r,"_zod",{value:r._zod??{},enumerable:!1}),(l=r._zod).traits??(l.traits=new Set),r._zod.traits.add(e),t(r,s);for(const _ in w.prototype)_ in r||Object.defineProperty(r,_,{value:w.prototype[_].bind(r)});r._zod.constr=w,r._zod.def=s}const m=c?.Parent??Object;class k extends m{}Object.defineProperty(k,"name",{value:e});function w(r){var s;const l=c?.Parent?new k:this;g(l,r),(s=l._zod).deferred??(s.deferred=[]);for(const _ of l._zod.deferred)_();return l}return Object.defineProperty(w,"init",{value:g}),Object.defineProperty(w,Symbol.hasInstance,{value:r=>c?.Parent&&r instanceof c.Parent?!0:r?._zod?.traits?.has(e)}),Object.defineProperty(w,"name",{value:e}),w}class Ie extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}}const fs={};function ye(e){return fs}function dt(e,t){return typeof t=="bigint"?t.toString():t}function gt(e){return e==null}function mt(e){const t=e.startsWith("^")?1:0,c=e.endsWith("$")?e.length-1:e.length;return e.slice(t,c)}const Ht=Symbol("evaluating");function ee(e,t,c){let g;Object.defineProperty(e,t,{get(){if(g!==Ht)return g===void 0&&(g=Ht,g=c()),g},set(m){Object.defineProperty(e,t,{value:m})},configurable:!0})}const kr="captureStackTrace"in Error?Error.captureStackTrace:(...e)=>{};function Ft(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function zt(e){if(Ft(e)===!1)return!1;const t=e.constructor;if(t===void 0)return!0;const c=t.prototype;return!(Ft(c)===!1||Object.prototype.hasOwnProperty.call(c,"isPrototypeOf")===!1)}function bt(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function _s(e,t,c){const g=new e._zod.constr(t??e._zod.def);return(!t||c?.parent)&&(g._zod.parent=e),g}function Y(e){const t=e;if(!t)return{};if(typeof t=="string")return{error:()=>t};if(t?.message!==void 0){if(t?.error!==void 0)throw new Error("Cannot specify both `message` and `error` params");t.error=t.message}return delete t.message,typeof t.error=="string"?{...t,error:()=>t.error}:t}function Te(e,t=0){for(let c=t;c<e.issues.length;c++)if(e.issues[c]?.continue!==!0)return!0;return!1}function ps(e,t){return t.map(c=>{var g;return(g=c).path??(g.path=[]),c.path.unshift(e),c})}function Ve(e){return typeof e=="string"?e:e?.message}function Ce(e,t,c){const g={...e,path:e.path??[]};if(!e.message){const m=Ve(e.inst?._zod.def?.error?.(e))??Ve(t?.error?.(e))??Ve(c.customError?.(e))??Ve(c.localeError?.(e))??"Invalid input";g.message=m}return delete g.inst,delete g.continue,t?.reportInput||delete g.input,g}function St(e){return Array.isArray(e)?"array":typeof e=="string"?"string":"unknown"}function Me(...e){const[t,c,g]=e;return typeof t=="string"?{message:t,code:"custom",input:c,inst:g}:{...t}}const Rr=(e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),e.message=JSON.stringify(t,dt,2),Object.defineProperty(e,"toString",{value:()=>e.message,enumerable:!1})},Dr=z("$ZodError",Rr),Lr=z("$ZodError",Rr,{Parent:Error});function vs(e,t=c=>c.message){const c={},g=[];for(const m of e.issues)m.path.length>0?(c[m.path[0]]=c[m.path[0]]||[],c[m.path[0]].push(t(m))):g.push(t(m));return{formErrors:g,fieldErrors:c}}function gs(e,t){const c=t||function(k){return k.message},g={_errors:[]},m=k=>{for(const w of k.issues)if(w.code==="invalid_union"&&w.errors.length)w.errors.map(r=>m({issues:r}));else if(w.code==="invalid_key")m({issues:w.issues});else if(w.code==="invalid_element")m({issues:w.issues});else if(w.path.length===0)g._errors.push(c(w));else{let r=g,s=0;for(;s<w.path.length;){const l=w.path[s];s===w.path.length-1?(r[l]=r[l]||{_errors:[]},r[l]._errors.push(c(w))):r[l]=r[l]||{_errors:[]},r=r[l],s++}}};return m(e),g}const ms=e=>(t,c,g,m)=>{const k=g?Object.assign(g,{async:!1}):{async:!1},w=t._zod.run({value:c,issues:[]},k);if(w instanceof Promise)throw new Ie;if(w.issues.length){const r=new(m?.Err??e)(w.issues.map(s=>Ce(s,k,ye())));throw kr(r,m?.callee),r}return w.value},bs=e=>async(t,c,g,m)=>{const k=g?Object.assign(g,{async:!0}):{async:!0};let w=t._zod.run({value:c,issues:[]},k);if(w instanceof Promise&&(w=await w),w.issues.length){const r=new(m?.Err??e)(w.issues.map(s=>Ce(s,k,ye())));throw kr(r,m?.callee),r}return w.value},Ar=e=>(t,c,g)=>{const m=g?{...g,async:!1}:{async:!1},k=t._zod.run({value:c,issues:[]},m);if(k instanceof Promise)throw new Ie;return k.issues.length?{success:!1,error:new(e??Dr)(k.issues.map(w=>Ce(w,m,ye())))}:{success:!0,data:k.value}},Ss=Ar(Lr),Pr=e=>async(t,c,g)=>{const m=g?Object.assign(g,{async:!0}):{async:!0};let k=t._zod.run({value:c,issues:[]},m);return k instanceof Promise&&(k=await k),k.issues.length?{success:!1,error:new e(k.issues.map(w=>Ce(w,m,ye())))}:{success:!0,data:k.value}},ys=Pr(Lr),Cs=/^[cC][^\s-]{8,}$/,ws=/^[0-9a-z]+$/,Es=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,xs=/^[0-9a-vA-V]{20}$/,ks=/^[A-Za-z0-9]{27}$/,Rs=/^[a-zA-Z0-9_-]{21}$/,Ds=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/,Ls=/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,jt=e=>e?new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${e}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`):/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$/,As=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/,Ps="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";function Ts(){return new RegExp(Ps,"u")}const Os=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,Bs=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})$/,Is=/^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/,Ms=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,Hs=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,Tr=/^[A-Za-z0-9_-]*$/,Fs=/^(?=.{1,253}\.?$)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[-0-9a-zA-Z]{0,61}[0-9a-zA-Z])?)*\.?$/,zs=/^\+(?:[0-9]){6,14}[0-9]$/,Or="(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))",js=new RegExp(`^${Or}$`);function Br(e){const t="(?:[01]\\d|2[0-3]):[0-5]\\d";return typeof e.precision=="number"?e.precision===-1?`${t}`:e.precision===0?`${t}:[0-5]\\d`:`${t}:[0-5]\\d\\.\\d{${e.precision}}`:`${t}(?::[0-5]\\d(?:\\.\\d+)?)?`}function $s(e){return new RegExp(`^${Br(e)}$`)}function Ws(e){const t=Br({precision:e.precision}),c=["Z"];e.local&&c.push(""),e.offset&&c.push("([+-](?:[01]\\d|2[0-3]):[0-5]\\d)");const g=`${t}(?:${c.join("|")})`;return new RegExp(`^${Or}T(?:${g})$`)}const Ns=e=>{const t=e?`[\\s\\S]{${e?.minimum??0},${e?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${t}$`)},Us=/^[^A-Z]*$/,Zs=/^[^a-z]*$/,pe=z("$ZodCheck",(e,t)=>{var c;e._zod??(e._zod={}),e._zod.def=t,(c=e._zod).onattach??(c.onattach=[])}),qs=z("$ZodCheckMaxLength",(e,t)=>{var c;pe.init(e,t),(c=e._zod.def).when??(c.when=g=>{const m=g.value;return!gt(m)&&m.length!==void 0}),e._zod.onattach.push(g=>{const m=g._zod.bag.maximum??Number.POSITIVE_INFINITY;t.maximum<m&&(g._zod.bag.maximum=t.maximum)}),e._zod.check=g=>{const m=g.value;if(m.length<=t.maximum)return;const w=St(m);g.issues.push({origin:w,code:"too_big",maximum:t.maximum,inclusive:!0,input:m,inst:e,continue:!t.abort})}}),Ks=z("$ZodCheckMinLength",(e,t)=>{var c;pe.init(e,t),(c=e._zod.def).when??(c.when=g=>{const m=g.value;return!gt(m)&&m.length!==void 0}),e._zod.onattach.push(g=>{const m=g._zod.bag.minimum??Number.NEGATIVE_INFINITY;t.minimum>m&&(g._zod.bag.minimum=t.minimum)}),e._zod.check=g=>{const m=g.value;if(m.length>=t.minimum)return;const w=St(m);g.issues.push({origin:w,code:"too_small",minimum:t.minimum,inclusive:!0,input:m,inst:e,continue:!t.abort})}}),Vs=z("$ZodCheckLengthEquals",(e,t)=>{var c;pe.init(e,t),(c=e._zod.def).when??(c.when=g=>{const m=g.value;return!gt(m)&&m.length!==void 0}),e._zod.onattach.push(g=>{const m=g._zod.bag;m.minimum=t.length,m.maximum=t.length,m.length=t.length}),e._zod.check=g=>{const m=g.value,k=m.length;if(k===t.length)return;const w=St(m),r=k>t.length;g.issues.push({origin:w,...r?{code:"too_big",maximum:t.length}:{code:"too_small",minimum:t.length},inclusive:!0,exact:!0,input:g.value,inst:e,continue:!t.abort})}}),et=z("$ZodCheckStringFormat",(e,t)=>{var c,g;pe.init(e,t),e._zod.onattach.push(m=>{const k=m._zod.bag;k.format=t.format,t.pattern&&(k.patterns??(k.patterns=new Set),k.patterns.add(t.pattern))}),t.pattern?(c=e._zod).check??(c.check=m=>{t.pattern.lastIndex=0,!t.pattern.test(m.value)&&m.issues.push({origin:"string",code:"invalid_format",format:t.format,input:m.value,...t.pattern?{pattern:t.pattern.toString()}:{},inst:e,continue:!t.abort})}):(g=e._zod).check??(g.check=()=>{})}),Gs=z("$ZodCheckRegex",(e,t)=>{et.init(e,t),e._zod.check=c=>{t.pattern.lastIndex=0,!t.pattern.test(c.value)&&c.issues.push({origin:"string",code:"invalid_format",format:"regex",input:c.value,pattern:t.pattern.toString(),inst:e,continue:!t.abort})}}),Js=z("$ZodCheckLowerCase",(e,t)=>{t.pattern??(t.pattern=Us),et.init(e,t)}),Ys=z("$ZodCheckUpperCase",(e,t)=>{t.pattern??(t.pattern=Zs),et.init(e,t)}),Xs=z("$ZodCheckIncludes",(e,t)=>{pe.init(e,t);const c=bt(t.includes),g=new RegExp(typeof t.position=="number"?`^.{${t.position}}${c}`:c);t.pattern=g,e._zod.onattach.push(m=>{const k=m._zod.bag;k.patterns??(k.patterns=new Set),k.patterns.add(g)}),e._zod.check=m=>{m.value.includes(t.includes,t.position)||m.issues.push({origin:"string",code:"invalid_format",format:"includes",includes:t.includes,input:m.value,inst:e,continue:!t.abort})}}),Qs=z("$ZodCheckStartsWith",(e,t)=>{pe.init(e,t);const c=new RegExp(`^${bt(t.prefix)}.*`);t.pattern??(t.pattern=c),e._zod.onattach.push(g=>{const m=g._zod.bag;m.patterns??(m.patterns=new Set),m.patterns.add(c)}),e._zod.check=g=>{g.value.startsWith(t.prefix)||g.issues.push({origin:"string",code:"invalid_format",format:"starts_with",prefix:t.prefix,input:g.value,inst:e,continue:!t.abort})}}),en=z("$ZodCheckEndsWith",(e,t)=>{pe.init(e,t);const c=new RegExp(`.*${bt(t.suffix)}$`);t.pattern??(t.pattern=c),e._zod.onattach.push(g=>{const m=g._zod.bag;m.patterns??(m.patterns=new Set),m.patterns.add(c)}),e._zod.check=g=>{g.value.endsWith(t.suffix)||g.issues.push({origin:"string",code:"invalid_format",format:"ends_with",suffix:t.suffix,input:g.value,inst:e,continue:!t.abort})}}),tn=z("$ZodCheckOverwrite",(e,t)=>{pe.init(e,t),e._zod.check=c=>{c.value=t.tx(c.value)}}),rn={major:4,minor:0,patch:14},ae=z("$ZodType",(e,t)=>{var c;e??(e={}),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=rn;const g=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&g.unshift(e);for(const m of g)for(const k of m._zod.onattach)k(e);if(g.length===0)(c=e._zod).deferred??(c.deferred=[]),e._zod.deferred?.push(()=>{e._zod.run=e._zod.parse});else{const m=(k,w,r)=>{let s=Te(k),l;for(const _ of w){if(_._zod.def.when){if(!_._zod.def.when(k))continue}else if(s)continue;const h=k.issues.length,f=_._zod.check(k);if(f instanceof Promise&&r?.async===!1)throw new Ie;if(l||f instanceof Promise)l=(l??Promise.resolve()).then(async()=>{await f,k.issues.length!==h&&(s||(s=Te(k,h)))});else{if(k.issues.length===h)continue;s||(s=Te(k,h))}}return l?l.then(()=>k):k};e._zod.run=(k,w)=>{const r=e._zod.parse(k,w);if(r instanceof Promise){if(w.async===!1)throw new Ie;return r.then(s=>m(s,g,w))}return m(r,g,w)}}e["~standard"]={validate:m=>{try{const k=Ss(e,m);return k.success?{value:k.data}:{issues:k.error?.issues}}catch{return ys(e,m).then(w=>w.success?{value:w.data}:{issues:w.error?.issues})}},vendor:"zod",version:1}}),yt=z("$ZodString",(e,t)=>{ae.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??Ns(e._zod.bag),e._zod.parse=(c,g)=>{if(t.coerce)try{c.value=String(c.value)}catch{}return typeof c.value=="string"||c.issues.push({expected:"string",code:"invalid_type",input:c.value,inst:e}),c}}),te=z("$ZodStringFormat",(e,t)=>{et.init(e,t),yt.init(e,t)}),sn=z("$ZodGUID",(e,t)=>{t.pattern??(t.pattern=Ls),te.init(e,t)}),nn=z("$ZodUUID",(e,t)=>{if(t.version){const g={v1:1,v2:2,v3:3,v4:4,v5:5,v6:6,v7:7,v8:8}[t.version];if(g===void 0)throw new Error(`Invalid UUID version: "${t.version}"`);t.pattern??(t.pattern=jt(g))}else t.pattern??(t.pattern=jt());te.init(e,t)}),on=z("$ZodEmail",(e,t)=>{t.pattern??(t.pattern=As),te.init(e,t)}),an=z("$ZodURL",(e,t)=>{te.init(e,t),e._zod.check=c=>{try{const g=c.value.trim(),m=new URL(g);t.hostname&&(t.hostname.lastIndex=0,t.hostname.test(m.hostname)||c.issues.push({code:"invalid_format",format:"url",note:"Invalid hostname",pattern:Fs.source,input:c.value,inst:e,continue:!t.abort})),t.protocol&&(t.protocol.lastIndex=0,t.protocol.test(m.protocol.endsWith(":")?m.protocol.slice(0,-1):m.protocol)||c.issues.push({code:"invalid_format",format:"url",note:"Invalid protocol",pattern:t.protocol.source,input:c.value,inst:e,continue:!t.abort})),t.normalize?c.value=m.href:c.value=g;return}catch{c.issues.push({code:"invalid_format",format:"url",input:c.value,inst:e,continue:!t.abort})}}}),cn=z("$ZodEmoji",(e,t)=>{t.pattern??(t.pattern=Ts()),te.init(e,t)}),hn=z("$ZodNanoID",(e,t)=>{t.pattern??(t.pattern=Rs),te.init(e,t)}),ln=z("$ZodCUID",(e,t)=>{t.pattern??(t.pattern=Cs),te.init(e,t)}),un=z("$ZodCUID2",(e,t)=>{t.pattern??(t.pattern=ws),te.init(e,t)}),dn=z("$ZodULID",(e,t)=>{t.pattern??(t.pattern=Es),te.init(e,t)}),fn=z("$ZodXID",(e,t)=>{t.pattern??(t.pattern=xs),te.init(e,t)}),_n=z("$ZodKSUID",(e,t)=>{t.pattern??(t.pattern=ks),te.init(e,t)}),pn=z("$ZodISODateTime",(e,t)=>{t.pattern??(t.pattern=Ws(t)),te.init(e,t)}),vn=z("$ZodISODate",(e,t)=>{t.pattern??(t.pattern=js),te.init(e,t)}),gn=z("$ZodISOTime",(e,t)=>{t.pattern??(t.pattern=$s(t)),te.init(e,t)}),mn=z("$ZodISODuration",(e,t)=>{t.pattern??(t.pattern=Ds),te.init(e,t)}),bn=z("$ZodIPv4",(e,t)=>{t.pattern??(t.pattern=Os),te.init(e,t),e._zod.onattach.push(c=>{const g=c._zod.bag;g.format="ipv4"})}),Sn=z("$ZodIPv6",(e,t)=>{t.pattern??(t.pattern=Bs),te.init(e,t),e._zod.onattach.push(c=>{const g=c._zod.bag;g.format="ipv6"}),e._zod.check=c=>{try{new URL(`http://[${c.value}]`)}catch{c.issues.push({code:"invalid_format",format:"ipv6",input:c.value,inst:e,continue:!t.abort})}}}),yn=z("$ZodCIDRv4",(e,t)=>{t.pattern??(t.pattern=Is),te.init(e,t)}),Cn=z("$ZodCIDRv6",(e,t)=>{t.pattern??(t.pattern=Ms),te.init(e,t),e._zod.check=c=>{const[g,m]=c.value.split("/");try{if(!m)throw new Error;const k=Number(m);if(`${k}`!==m)throw new Error;if(k<0||k>128)throw new Error;new URL(`http://[${g}]`)}catch{c.issues.push({code:"invalid_format",format:"cidrv6",input:c.value,inst:e,continue:!t.abort})}}});function Ir(e){if(e==="")return!0;if(e.length%4!==0)return!1;try{return atob(e),!0}catch{return!1}}const wn=z("$ZodBase64",(e,t)=>{t.pattern??(t.pattern=Hs),te.init(e,t),e._zod.onattach.push(c=>{c._zod.bag.contentEncoding="base64"}),e._zod.check=c=>{Ir(c.value)||c.issues.push({code:"invalid_format",format:"base64",input:c.value,inst:e,continue:!t.abort})}});function En(e){if(!Tr.test(e))return!1;const t=e.replace(/[-_]/g,g=>g==="-"?"+":"/"),c=t.padEnd(Math.ceil(t.length/4)*4,"=");return Ir(c)}const xn=z("$ZodBase64URL",(e,t)=>{t.pattern??(t.pattern=Tr),te.init(e,t),e._zod.onattach.push(c=>{c._zod.bag.contentEncoding="base64url"}),e._zod.check=c=>{En(c.value)||c.issues.push({code:"invalid_format",format:"base64url",input:c.value,inst:e,continue:!t.abort})}}),kn=z("$ZodE164",(e,t)=>{t.pattern??(t.pattern=zs),te.init(e,t)});function Rn(e,t=null){try{const c=e.split(".");if(c.length!==3)return!1;const[g]=c;if(!g)return!1;const m=JSON.parse(atob(g));return!("typ"in m&&m?.typ!=="JWT"||!m.alg||t&&(!("alg"in m)||m.alg!==t))}catch{return!1}}const Dn=z("$ZodJWT",(e,t)=>{te.init(e,t),e._zod.check=c=>{Rn(c.value,t.alg)||c.issues.push({code:"invalid_format",format:"jwt",input:c.value,inst:e,continue:!t.abort})}});function $t(e,t,c){e.issues.length&&t.issues.push(...ps(c,e.issues)),t.value[c]=e.value}const Ln=z("$ZodArray",(e,t)=>{ae.init(e,t),e._zod.parse=(c,g)=>{const m=c.value;if(!Array.isArray(m))return c.issues.push({expected:"array",code:"invalid_type",input:m,inst:e}),c;c.value=Array(m.length);const k=[];for(let w=0;w<m.length;w++){const r=m[w],s=t.element._zod.run({value:r,issues:[]},g);s instanceof Promise?k.push(s.then(l=>$t(l,c,w))):$t(s,c,w)}return k.length?Promise.all(k).then(()=>c):c}});function Wt(e,t,c,g){for(const k of e)if(k.issues.length===0)return t.value=k.value,t;const m=e.filter(k=>!Te(k));return m.length===1?(t.value=m[0].value,m[0]):(t.issues.push({code:"invalid_union",input:t.value,inst:c,errors:e.map(k=>k.issues.map(w=>Ce(w,g,ye())))}),t)}const An=z("$ZodUnion",(e,t)=>{ae.init(e,t),ee(e._zod,"optin",()=>t.options.some(m=>m._zod.optin==="optional")?"optional":void 0),ee(e._zod,"optout",()=>t.options.some(m=>m._zod.optout==="optional")?"optional":void 0),ee(e._zod,"values",()=>{if(t.options.every(m=>m._zod.values))return new Set(t.options.flatMap(m=>Array.from(m._zod.values)))}),ee(e._zod,"pattern",()=>{if(t.options.every(m=>m._zod.pattern)){const m=t.options.map(k=>k._zod.pattern);return new RegExp(`^(${m.map(k=>mt(k.source)).join("|")})$`)}});const c=t.options.length===1,g=t.options[0]._zod.run;e._zod.parse=(m,k)=>{if(c)return g(m,k);let w=!1;const r=[];for(const s of t.options){const l=s._zod.run({value:m.value,issues:[]},k);if(l instanceof Promise)r.push(l),w=!0;else{if(l.issues.length===0)return l;r.push(l)}}return w?Promise.all(r).then(s=>Wt(s,m,e,k)):Wt(r,m,e,k)}}),Pn=z("$ZodIntersection",(e,t)=>{ae.init(e,t),e._zod.parse=(c,g)=>{const m=c.value,k=t.left._zod.run({value:m,issues:[]},g),w=t.right._zod.run({value:m,issues:[]},g);return k instanceof Promise||w instanceof Promise?Promise.all([k,w]).then(([s,l])=>Nt(c,s,l)):Nt(c,k,w)}});function ft(e,t){if(e===t)return{valid:!0,data:e};if(e instanceof Date&&t instanceof Date&&+e==+t)return{valid:!0,data:e};if(zt(e)&&zt(t)){const c=Object.keys(t),g=Object.keys(e).filter(k=>c.indexOf(k)!==-1),m={...e,...t};for(const k of g){const w=ft(e[k],t[k]);if(!w.valid)return{valid:!1,mergeErrorPath:[k,...w.mergeErrorPath]};m[k]=w.data}return{valid:!0,data:m}}if(Array.isArray(e)&&Array.isArray(t)){if(e.length!==t.length)return{valid:!1,mergeErrorPath:[]};const c=[];for(let g=0;g<e.length;g++){const m=e[g],k=t[g],w=ft(m,k);if(!w.valid)return{valid:!1,mergeErrorPath:[g,...w.mergeErrorPath]};c.push(w.data)}return{valid:!0,data:c}}return{valid:!1,mergeErrorPath:[]}}function Nt(e,t,c){if(t.issues.length&&e.issues.push(...t.issues),c.issues.length&&e.issues.push(...c.issues),Te(e))return e;const g=ft(t.value,c.value);if(!g.valid)throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(g.mergeErrorPath)}`);return e.value=g.data,e}const Tn=z("$ZodTransform",(e,t)=>{ae.init(e,t),e._zod.parse=(c,g)=>{const m=t.transform(c.value,c);if(g.async)return(m instanceof Promise?m:Promise.resolve(m)).then(w=>(c.value=w,c));if(m instanceof Promise)throw new Ie;return c.value=m,c}});function Ut(e,t){return e.issues.length&&t===void 0?{issues:[],value:void 0}:e}const On=z("$ZodOptional",(e,t)=>{ae.init(e,t),e._zod.optin="optional",e._zod.optout="optional",ee(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0),ee(e._zod,"pattern",()=>{const c=t.innerType._zod.pattern;return c?new RegExp(`^(${mt(c.source)})?$`):void 0}),e._zod.parse=(c,g)=>{if(t.innerType._zod.optin==="optional"){const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>Ut(k,c.value)):Ut(m,c.value)}return c.value===void 0?c:t.innerType._zod.run(c,g)}}),Bn=z("$ZodNullable",(e,t)=>{ae.init(e,t),ee(e._zod,"optin",()=>t.innerType._zod.optin),ee(e._zod,"optout",()=>t.innerType._zod.optout),ee(e._zod,"pattern",()=>{const c=t.innerType._zod.pattern;return c?new RegExp(`^(${mt(c.source)}|null)$`):void 0}),ee(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,null]):void 0),e._zod.parse=(c,g)=>c.value===null?c:t.innerType._zod.run(c,g)}),In=z("$ZodDefault",(e,t)=>{ae.init(e,t),e._zod.optin="optional",ee(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(c,g)=>{if(c.value===void 0)return c.value=t.defaultValue,c;const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>Zt(k,t)):Zt(m,t)}});function Zt(e,t){return e.value===void 0&&(e.value=t.defaultValue),e}const Mn=z("$ZodPrefault",(e,t)=>{ae.init(e,t),e._zod.optin="optional",ee(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(c,g)=>(c.value===void 0&&(c.value=t.defaultValue),t.innerType._zod.run(c,g))}),Hn=z("$ZodNonOptional",(e,t)=>{ae.init(e,t),ee(e._zod,"values",()=>{const c=t.innerType._zod.values;return c?new Set([...c].filter(g=>g!==void 0)):void 0}),e._zod.parse=(c,g)=>{const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>qt(k,e)):qt(m,e)}});function qt(e,t){return!e.issues.length&&e.value===void 0&&e.issues.push({code:"invalid_type",expected:"nonoptional",input:e.value,inst:t}),e}const Fn=z("$ZodCatch",(e,t)=>{ae.init(e,t),ee(e._zod,"optin",()=>t.innerType._zod.optin),ee(e._zod,"optout",()=>t.innerType._zod.optout),ee(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(c,g)=>{const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>(c.value=k.value,k.issues.length&&(c.value=t.catchValue({...c,error:{issues:k.issues.map(w=>Ce(w,g,ye()))},input:c.value}),c.issues=[]),c)):(c.value=m.value,m.issues.length&&(c.value=t.catchValue({...c,error:{issues:m.issues.map(k=>Ce(k,g,ye()))},input:c.value}),c.issues=[]),c)}}),zn=z("$ZodPipe",(e,t)=>{ae.init(e,t),ee(e._zod,"values",()=>t.in._zod.values),ee(e._zod,"optin",()=>t.in._zod.optin),ee(e._zod,"optout",()=>t.out._zod.optout),ee(e._zod,"propValues",()=>t.in._zod.propValues),e._zod.parse=(c,g)=>{const m=t.in._zod.run(c,g);return m instanceof Promise?m.then(k=>Kt(k,t,g)):Kt(m,t,g)}});function Kt(e,t,c){return e.issues.length?e:t.out._zod.run({value:e.value,issues:e.issues},c)}const jn=z("$ZodReadonly",(e,t)=>{ae.init(e,t),ee(e._zod,"propValues",()=>t.innerType._zod.propValues),ee(e._zod,"values",()=>t.innerType._zod.values),ee(e._zod,"optin",()=>t.innerType._zod.optin),ee(e._zod,"optout",()=>t.innerType._zod.optout),e._zod.parse=(c,g)=>{const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(Vt):Vt(m)}});function Vt(e){return e.value=Object.freeze(e.value),e}const $n=z("$ZodCustom",(e,t)=>{pe.init(e,t),ae.init(e,t),e._zod.parse=(c,g)=>c,e._zod.check=c=>{const g=c.value,m=t.fn(g);if(m instanceof Promise)return m.then(k=>Gt(k,c,g,e));Gt(m,c,g,e)}});function Gt(e,t,c,g){if(!e){const m={code:"custom",input:c,inst:g,path:[...g._zod.def.path??[]],continue:!g._zod.def.abort};g._zod.def.params&&(m.params=g._zod.def.params),t.issues.push(Me(m))}}class Wn{constructor(){this._map=new Map,this._idmap=new Map}add(t,...c){const g=c[0];if(this._map.set(t,g),g&&typeof g=="object"&&"id"in g){if(this._idmap.has(g.id))throw new Error(`ID ${g.id} already exists in the registry`);this._idmap.set(g.id,t)}return this}clear(){return this._map=new Map,this._idmap=new Map,this}remove(t){const c=this._map.get(t);return c&&typeof c=="object"&&"id"in c&&this._idmap.delete(c.id),this._map.delete(t),this}get(t){const c=t._zod.parent;if(c){const g={...this.get(c)??{}};delete g.id;const m={...g,...this._map.get(t)};return Object.keys(m).length?m:void 0}return this._map.get(t)}has(t){return this._map.has(t)}}function Nn(){return new Wn}const Ge=Nn();function Un(e,t){return new e({type:"string",...Y(t)})}function Zn(e,t){return new e({type:"string",format:"email",check:"string_format",abort:!1,...Y(t)})}function Jt(e,t){return new e({type:"string",format:"guid",check:"string_format",abort:!1,...Y(t)})}function qn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,...Y(t)})}function Kn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...Y(t)})}function Vn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...Y(t)})}function Gn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...Y(t)})}function Jn(e,t){return new e({type:"string",format:"url",check:"string_format",abort:!1,...Y(t)})}function Yn(e,t){return new e({type:"string",format:"emoji",check:"string_format",abort:!1,...Y(t)})}function Xn(e,t){return new e({type:"string",format:"nanoid",check:"string_format",abort:!1,...Y(t)})}function Qn(e,t){return new e({type:"string",format:"cuid",check:"string_format",abort:!1,...Y(t)})}function eo(e,t){return new e({type:"string",format:"cuid2",check:"string_format",abort:!1,...Y(t)})}function to(e,t){return new e({type:"string",format:"ulid",check:"string_format",abort:!1,...Y(t)})}function ro(e,t){return new e({type:"string",format:"xid",check:"string_format",abort:!1,...Y(t)})}function io(e,t){return new e({type:"string",format:"ksuid",check:"string_format",abort:!1,...Y(t)})}function so(e,t){return new e({type:"string",format:"ipv4",check:"string_format",abort:!1,...Y(t)})}function no(e,t){return new e({type:"string",format:"ipv6",check:"string_format",abort:!1,...Y(t)})}function oo(e,t){return new e({type:"string",format:"cidrv4",check:"string_format",abort:!1,...Y(t)})}function ao(e,t){return new e({type:"string",format:"cidrv6",check:"string_format",abort:!1,...Y(t)})}function co(e,t){return new e({type:"string",format:"base64",check:"string_format",abort:!1,...Y(t)})}function ho(e,t){return new e({type:"string",format:"base64url",check:"string_format",abort:!1,...Y(t)})}function lo(e,t){return new e({type:"string",format:"e164",check:"string_format",abort:!1,...Y(t)})}function uo(e,t){return new e({type:"string",format:"jwt",check:"string_format",abort:!1,...Y(t)})}function fo(e,t){return new e({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...Y(t)})}function _o(e,t){return new e({type:"string",format:"date",check:"string_format",...Y(t)})}function po(e,t){return new e({type:"string",format:"time",check:"string_format",precision:null,...Y(t)})}function vo(e,t){return new e({type:"string",format:"duration",check:"string_format",...Y(t)})}function Mr(e,t){return new qs({check:"max_length",...Y(t),maximum:e})}function Qe(e,t){return new Ks({check:"min_length",...Y(t),minimum:e})}function Hr(e,t){return new Vs({check:"length_equals",...Y(t),length:e})}function go(e,t){return new Gs({check:"string_format",format:"regex",...Y(t),pattern:e})}function mo(e){return new Js({check:"string_format",format:"lowercase",...Y(e)})}function bo(e){return new Ys({check:"string_format",format:"uppercase",...Y(e)})}function So(e,t){return new Xs({check:"string_format",format:"includes",...Y(t),includes:e})}function yo(e,t){return new Qs({check:"string_format",format:"starts_with",...Y(t),prefix:e})}function Co(e,t){return new en({check:"string_format",format:"ends_with",...Y(t),suffix:e})}function je(e){return new tn({check:"overwrite",tx:e})}function wo(e){return je(t=>t.normalize(e))}function Eo(){return je(e=>e.trim())}function xo(){return je(e=>e.toLowerCase())}function ko(){return je(e=>e.toUpperCase())}function Ro(e,t,c){return new e({type:"array",element:t,...Y(c)})}function Do(e,t,c){return new e({type:"custom",check:"custom",fn:t,...Y(c)})}function Lo(e){const t=Ao(c=>(c.addIssue=g=>{if(typeof g=="string")c.issues.push(Me(g,c.value,t._zod.def));else{const m=g;m.fatal&&(m.continue=!1),m.code??(m.code="custom"),m.input??(m.input=c.value),m.inst??(m.inst=t),m.continue??(m.continue=!t._zod.def.abort),c.issues.push(Me(m))}},e(c.value,c)));return t}function Ao(e,t){const c=new pe({check:"custom",...Y(t)});return c._zod.check=e,c}const Po=z("ZodISODateTime",(e,t)=>{pn.init(e,t),ie.init(e,t)});function To(e){return fo(Po,e)}const Oo=z("ZodISODate",(e,t)=>{vn.init(e,t),ie.init(e,t)});function Bo(e){return _o(Oo,e)}const Io=z("ZodISOTime",(e,t)=>{gn.init(e,t),ie.init(e,t)});function Mo(e){return po(Io,e)}const Ho=z("ZodISODuration",(e,t)=>{mn.init(e,t),ie.init(e,t)});function Fo(e){return vo(Ho,e)}const zo=(e,t)=>{Dr.init(e,t),e.name="ZodError",Object.defineProperties(e,{format:{value:c=>gs(e,c)},flatten:{value:c=>vs(e,c)},addIssue:{value:c=>{e.issues.push(c),e.message=JSON.stringify(e.issues,dt,2)}},addIssues:{value:c=>{e.issues.push(...c),e.message=JSON.stringify(e.issues,dt,2)}},isEmpty:{get(){return e.issues.length===0}}})},tt=z("ZodError",zo,{Parent:Error}),jo=ms(tt),$o=bs(tt),Wo=Ar(tt),No=Pr(tt),he=z("ZodType",(e,t)=>(ae.init(e,t),e.def=t,Object.defineProperty(e,"_def",{value:t}),e.check=(...c)=>e.clone({...t,checks:[...t.checks??[],...c.map(g=>typeof g=="function"?{_zod:{check:g,def:{check:"custom"},onattach:[]}}:g)]}),e.clone=(c,g)=>_s(e,c,g),e.brand=()=>e,e.register=(c,g)=>(c.add(e,g),e),e.parse=(c,g)=>jo(e,c,g,{callee:e.parse}),e.safeParse=(c,g)=>Wo(e,c,g),e.parseAsync=async(c,g)=>$o(e,c,g,{callee:e.parseAsync}),e.safeParseAsync=async(c,g)=>No(e,c,g),e.spa=e.safeParseAsync,e.refine=(c,g)=>e.check(Pa(c,g)),e.superRefine=c=>e.check(Ta(c)),e.overwrite=c=>e.check(je(c)),e.optional=()=>Xt(e),e.nullable=()=>Qt(e),e.nullish=()=>Xt(Qt(e)),e.nonoptional=c=>Ea(e,c),e.array=()=>la(e),e.or=c=>da([e,c]),e.and=c=>_a(e,c),e.transform=c=>er(e,va(c)),e.default=c=>Sa(e,c),e.prefault=c=>Ca(e,c),e.catch=c=>ka(e,c),e.pipe=c=>er(e,c),e.readonly=()=>La(e),e.describe=c=>{const g=e.clone();return Ge.add(g,{description:c}),g},Object.defineProperty(e,"description",{get(){return Ge.get(e)?.description},configurable:!0}),e.meta=(...c)=>{if(c.length===0)return Ge.get(e);const g=e.clone();return Ge.add(g,c[0]),g},e.isOptional=()=>e.safeParse(void 0).success,e.isNullable=()=>e.safeParse(null).success,e)),Fr=z("_ZodString",(e,t)=>{yt.init(e,t),he.init(e,t);const c=e._zod.bag;e.format=c.format??null,e.minLength=c.minimum??null,e.maxLength=c.maximum??null,e.regex=(...g)=>e.check(go(...g)),e.includes=(...g)=>e.check(So(...g)),e.startsWith=(...g)=>e.check(yo(...g)),e.endsWith=(...g)=>e.check(Co(...g)),e.min=(...g)=>e.check(Qe(...g)),e.max=(...g)=>e.check(Mr(...g)),e.length=(...g)=>e.check(Hr(...g)),e.nonempty=(...g)=>e.check(Qe(1,...g)),e.lowercase=g=>e.check(mo(g)),e.uppercase=g=>e.check(bo(g)),e.trim=()=>e.check(Eo()),e.normalize=(...g)=>e.check(wo(...g)),e.toLowerCase=()=>e.check(xo()),e.toUpperCase=()=>e.check(ko())}),Uo=z("ZodString",(e,t)=>{yt.init(e,t),Fr.init(e,t),e.email=c=>e.check(Zn(qo,c)),e.url=c=>e.check(Jn(Ko,c)),e.jwt=c=>e.check(uo(ca,c)),e.emoji=c=>e.check(Yn(Vo,c)),e.guid=c=>e.check(Jt(Yt,c)),e.uuid=c=>e.check(qn(Je,c)),e.uuidv4=c=>e.check(Kn(Je,c)),e.uuidv6=c=>e.check(Vn(Je,c)),e.uuidv7=c=>e.check(Gn(Je,c)),e.nanoid=c=>e.check(Xn(Go,c)),e.guid=c=>e.check(Jt(Yt,c)),e.cuid=c=>e.check(Qn(Jo,c)),e.cuid2=c=>e.check(eo(Yo,c)),e.ulid=c=>e.check(to(Xo,c)),e.base64=c=>e.check(co(na,c)),e.base64url=c=>e.check(ho(oa,c)),e.xid=c=>e.check(ro(Qo,c)),e.ksuid=c=>e.check(io(ea,c)),e.ipv4=c=>e.check(so(ta,c)),e.ipv6=c=>e.check(no(ra,c)),e.cidrv4=c=>e.check(oo(ia,c)),e.cidrv6=c=>e.check(ao(sa,c)),e.e164=c=>e.check(lo(aa,c)),e.datetime=c=>e.check(To(c)),e.date=c=>e.check(Bo(c)),e.time=c=>e.check(Mo(c)),e.duration=c=>e.check(Fo(c))});function Zo(e){return Un(Uo,e)}const ie=z("ZodStringFormat",(e,t)=>{te.init(e,t),Fr.init(e,t)}),qo=z("ZodEmail",(e,t)=>{on.init(e,t),ie.init(e,t)}),Yt=z("ZodGUID",(e,t)=>{sn.init(e,t),ie.init(e,t)}),Je=z("ZodUUID",(e,t)=>{nn.init(e,t),ie.init(e,t)}),Ko=z("ZodURL",(e,t)=>{an.init(e,t),ie.init(e,t)}),Vo=z("ZodEmoji",(e,t)=>{cn.init(e,t),ie.init(e,t)}),Go=z("ZodNanoID",(e,t)=>{hn.init(e,t),ie.init(e,t)}),Jo=z("ZodCUID",(e,t)=>{ln.init(e,t),ie.init(e,t)}),Yo=z("ZodCUID2",(e,t)=>{un.init(e,t),ie.init(e,t)}),Xo=z("ZodULID",(e,t)=>{dn.init(e,t),ie.init(e,t)}),Qo=z("ZodXID",(e,t)=>{fn.init(e,t),ie.init(e,t)}),ea=z("ZodKSUID",(e,t)=>{_n.init(e,t),ie.init(e,t)}),ta=z("ZodIPv4",(e,t)=>{bn.init(e,t),ie.init(e,t)}),ra=z("ZodIPv6",(e,t)=>{Sn.init(e,t),ie.init(e,t)}),ia=z("ZodCIDRv4",(e,t)=>{yn.init(e,t),ie.init(e,t)}),sa=z("ZodCIDRv6",(e,t)=>{Cn.init(e,t),ie.init(e,t)}),na=z("ZodBase64",(e,t)=>{wn.init(e,t),ie.init(e,t)}),oa=z("ZodBase64URL",(e,t)=>{xn.init(e,t),ie.init(e,t)}),aa=z("ZodE164",(e,t)=>{kn.init(e,t),ie.init(e,t)}),ca=z("ZodJWT",(e,t)=>{Dn.init(e,t),ie.init(e,t)}),ha=z("ZodArray",(e,t)=>{Ln.init(e,t),he.init(e,t),e.element=t.element,e.min=(c,g)=>e.check(Qe(c,g)),e.nonempty=c=>e.check(Qe(1,c)),e.max=(c,g)=>e.check(Mr(c,g)),e.length=(c,g)=>e.check(Hr(c,g)),e.unwrap=()=>e.element});function la(e,t){return Ro(ha,e,t)}const ua=z("ZodUnion",(e,t)=>{An.init(e,t),he.init(e,t),e.options=t.options});function da(e,t){return new ua({type:"union",options:e,...Y(t)})}const fa=z("ZodIntersection",(e,t)=>{Pn.init(e,t),he.init(e,t)});function _a(e,t){return new fa({type:"intersection",left:e,right:t})}const pa=z("ZodTransform",(e,t)=>{Tn.init(e,t),he.init(e,t),e._zod.parse=(c,g)=>{c.addIssue=k=>{if(typeof k=="string")c.issues.push(Me(k,c.value,t));else{const w=k;w.fatal&&(w.continue=!1),w.code??(w.code="custom"),w.input??(w.input=c.value),w.inst??(w.inst=e),c.issues.push(Me(w))}};const m=t.transform(c.value,c);return m instanceof Promise?m.then(k=>(c.value=k,c)):(c.value=m,c)}});function va(e){return new pa({type:"transform",transform:e})}const ga=z("ZodOptional",(e,t)=>{On.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Xt(e){return new ga({type:"optional",innerType:e})}const ma=z("ZodNullable",(e,t)=>{Bn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Qt(e){return new ma({type:"nullable",innerType:e})}const ba=z("ZodDefault",(e,t)=>{In.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeDefault=e.unwrap});function Sa(e,t){return new ba({type:"default",innerType:e,get defaultValue(){return typeof t=="function"?t():t}})}const ya=z("ZodPrefault",(e,t)=>{Mn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Ca(e,t){return new ya({type:"prefault",innerType:e,get defaultValue(){return typeof t=="function"?t():t}})}const wa=z("ZodNonOptional",(e,t)=>{Hn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Ea(e,t){return new wa({type:"nonoptional",innerType:e,...Y(t)})}const xa=z("ZodCatch",(e,t)=>{Fn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeCatch=e.unwrap});function ka(e,t){return new xa({type:"catch",innerType:e,catchValue:typeof t=="function"?t:()=>t})}const Ra=z("ZodPipe",(e,t)=>{zn.init(e,t),he.init(e,t),e.in=t.in,e.out=t.out});function er(e,t){return new Ra({type:"pipe",in:e,out:t})}const Da=z("ZodReadonly",(e,t)=>{jn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function La(e){return new Da({type:"readonly",innerType:e})}const Aa=z("ZodCustom",(e,t)=>{$n.init(e,t),he.init(e,t)});function Pa(e,t={}){return Do(Aa,e,t)}function Ta(e){return Lo(e)}function Oa(e){const t=/\x1b\[<(\d+);(\d+);(\d+)([mM])/.exec(e);if(!t)return;if(!t[1]||!t[2]||!t[3]||!t[4])throw new Error(`Mouse event: Invalid match for data ${e}`);const c=parseInt(t[1],10),g=parseInt(t[2],10),m=parseInt(t[3],10),k=t[4]==="m";return console.log(`Mouse event: buttonCode=${c}, column=${g}, row=${m}, isRelease=${k}`),e}function zr(e,t){const c=new ds.Terminal({cursorBlink:!1,convertEol:!0,fontSize:13}),g=Er.macchiato.colors;c.options.theme={background:g.base.hex,black:g.crust.hex,brightBlack:g.surface2.hex,blue:g.blue.hex,brightBlue:g.blue.hex,brightCyan:g.sky.hex,brightRed:g.maroon.hex,brightYellow:g.yellow.hex,cursor:g.text.hex,cyan:g.sky.hex,foreground:g.text.hex,green:g.green.hex,magenta:g.lavender.hex,red:g.red.hex,white:g.text.hex,yellow:g.yellow.hex};const m=new ls.FitAddon;return c.loadAddon(m),c.open(e),m.fit(),window.addEventListener("resize",()=>{m.fit()}),c.onData(k=>{if(typeof k!="string")throw new Error(`unexpected onData message type: '${JSON.stringify(k)}'`);const w=Oa(k);w&&t.onMouseEvent(w)}),c.onKey(k=>{t.onKeyPress(k)}),c}function jr(){let e=Zo().safeParse(sessionStorage.getItem("tabId")).data;return e||(e=Math.random().toString(36),sessionStorage.setItem("tabId",e)),{tabId:e}}class Ba{ready;tabId;terminal;trpc;constructor(t){const c=yr({links:[or({condition:k=>k.type==="subscription",true:Cr({url:"/trpc"}),false:Sr({url:"/trpc"})})]});this.trpc=c,this.tabId=jr();const g=this.tabId,m=zr(t,{onMouseEvent(k){c.neovim.sendStdin.mutate({tabId:g,data:k}).catch(w=>{console.error("Error sending mouse event",w)})},onKeyPress(k){c.neovim.sendStdin.mutate({tabId:g,data:k.key})}});this.terminal=m,this.ready=new Promise(k=>{console.log("Subscribing to stdout"),c.neovim.initializeStdout.subscribe({client:g},{onStarted(){k()},onData(w){m.write(w)},onError(w){console.error("Error from the application",w)}})})}async startNeovim(t){return await this.ready,await this.trpc.neovim.start.mutate({startNeovimArguments:{filename:t.filename,additionalEnvironmentVariables:t.additionalEnvironmentVariables,startupScriptModifications:t.startupScriptModifications,NVIM_APPNAME:t.NVIM_APPNAME},terminalDimensions:{cols:this.terminal.cols,rows:this.terminal.rows},tabId:this.tabId})}async runBlockingShellCommand(t){return await this.ready,this.trpc.neovim.runBlockingShellCommand.mutate({...t,tabId:this.tabId})}async runLuaCode(t){return await this.ready,this.trpc.neovim.runLuaCode.mutate({...t,tabId:this.tabId})}async waitForLuaCode(t){await this.ready;try{return await this.trpc.neovim.waitForLuaCode.mutate({...t,tabId:this.tabId})}catch(c){throw c}}async runExCommand(t){return await this.ready,this.trpc.neovim.runExCommand.mutate({...t,tabId:this.tabId})}}function Ia(e,t){e.parser.registerCsiHandler({final:"c"},()=>(t.onKeyPress({key:"\x1B[?1;2c",domEvent:new KeyboardEvent("keydown",{key:"Escape"})}),!0))}class Ma{ready;tabId;terminal;trpc;terminalApi;constructor(t){const c=yr({links:[or({condition:k=>k.type==="subscription",true:Cr({url:"/trpc"}),false:Sr({url:"/trpc"})})]});this.trpc=c,this.tabId=jr();const g=this.tabId;this.terminalApi={onMouseEvent(k){c.terminal.sendStdin.mutate({tabId:g,data:k}).catch(w=>{console.error("Error sending mouse event",w)})},onKeyPress(k){c.terminal.sendStdin.mutate({tabId:g,data:k.key})}};const m=zr(t,this.terminalApi);this.terminal=m,this.ready=new Promise(k=>{console.log("Subscribing to stdout"),c.terminal.onStdout.subscribe({client:g},{onStarted(){k()},onData(w){m.write(w)},onError(w){console.error("Error from the application",w)}})})}async startTerminalApplication(t){return await this.ready,t.browserSettings.configureTerminal?.({terminal:this.terminal,api:this.terminalApi,recipes:{supportDA1:()=>{Ia(this.terminal,this.terminalApi)}}}),await this.trpc.terminal.start.mutate({tabId:this.tabId,startTerminalArguments:{additionalEnvironmentVariables:t.serverSettings.additionalEnvironmentVariables,commandToRun:t.serverSettings.commandToRun,terminalDimensions:{cols:this.terminal.cols,rows:this.terminal.rows}}})}async runBlockingShellCommand(t){return await this.ready,this.trpc.terminal.runBlockingShellCommand.mutate({...t,tabId:this.tabId})}}class $r{constructor(t){this.factory=t}value;get(){return this.value===void 0&&(this.value=this.factory()),this.value}}const Ct=document.querySelector("#app");if(!Ct)throw new Error("No app element found");const Ha=new $r(()=>new Ba(Ct)),Fa=new $r(()=>new Ma(Ct));window.startNeovim=async function(e){const t=Ha.get(),c=await t.startNeovim({additionalEnvironmentVariables:e?.additionalEnvironmentVariables,filename:e?.filename??"initial-file.txt",startupScriptModifications:e?.startupScriptModifications??[],headlessCmd:void 0,NVIM_APPNAME:e?.NVIM_APPNAME});return{runBlockingShellCommand(m){return t.runBlockingShellCommand(m)},runLuaCode(m){return t.runLuaCode(m)},waitForLuaCode(m){return t.waitForLuaCode(m)},runExCommand(m){return t.runExCommand(m)},dir:c}};window.startTerminalApplication=async function(e){const t=Fa.get();return{dir:await t.startTerminalApplication(e),runBlockingShellCommand(m){return t.runBlockingShellCommand(m)}}};
|
|
9
|
+
`,i)}paste(a){this._core.paste(a)}refresh(a,i){this._verifyIntegers(a,i),this._core.refresh(a,i)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(a){this._addonManager.loadAddon(this,a)}static get strings(){return r}_verifyIntegers(...a){for(const i of a)if(i===1/0||isNaN(i)||i%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...a){for(const i of a)if(i&&(i===1/0||isNaN(i)||i%1!=0||i<0))throw new Error("This API only accepts positive integers")}}w.Terminal=u})(),k})())}(lt)),lt.exports}var ds=us();function z(e,t,c){function g(r,s){var l;Object.defineProperty(r,"_zod",{value:r._zod??{},enumerable:!1}),(l=r._zod).traits??(l.traits=new Set),r._zod.traits.add(e),t(r,s);for(const _ in w.prototype)_ in r||Object.defineProperty(r,_,{value:w.prototype[_].bind(r)});r._zod.constr=w,r._zod.def=s}const m=c?.Parent??Object;class k extends m{}Object.defineProperty(k,"name",{value:e});function w(r){var s;const l=c?.Parent?new k:this;g(l,r),(s=l._zod).deferred??(s.deferred=[]);for(const _ of l._zod.deferred)_();return l}return Object.defineProperty(w,"init",{value:g}),Object.defineProperty(w,Symbol.hasInstance,{value:r=>c?.Parent&&r instanceof c.Parent?!0:r?._zod?.traits?.has(e)}),Object.defineProperty(w,"name",{value:e}),w}class Ie extends Error{constructor(){super("Encountered Promise during synchronous parse. Use .parseAsync() instead.")}}const fs={};function ye(e){return fs}function dt(e,t){return typeof t=="bigint"?t.toString():t}function gt(e){return e==null}function mt(e){const t=e.startsWith("^")?1:0,c=e.endsWith("$")?e.length-1:e.length;return e.slice(t,c)}const Ht=Symbol("evaluating");function ee(e,t,c){let g;Object.defineProperty(e,t,{get(){if(g!==Ht)return g===void 0&&(g=Ht,g=c()),g},set(m){Object.defineProperty(e,t,{value:m})},configurable:!0})}const kr="captureStackTrace"in Error?Error.captureStackTrace:(...e)=>{};function Ft(e){return typeof e=="object"&&e!==null&&!Array.isArray(e)}function zt(e){if(Ft(e)===!1)return!1;const t=e.constructor;if(t===void 0)return!0;const c=t.prototype;return!(Ft(c)===!1||Object.prototype.hasOwnProperty.call(c,"isPrototypeOf")===!1)}function bt(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function _s(e,t,c){const g=new e._zod.constr(t??e._zod.def);return(!t||c?.parent)&&(g._zod.parent=e),g}function Y(e){const t=e;if(!t)return{};if(typeof t=="string")return{error:()=>t};if(t?.message!==void 0){if(t?.error!==void 0)throw new Error("Cannot specify both `message` and `error` params");t.error=t.message}return delete t.message,typeof t.error=="string"?{...t,error:()=>t.error}:t}function Te(e,t=0){for(let c=t;c<e.issues.length;c++)if(e.issues[c]?.continue!==!0)return!0;return!1}function ps(e,t){return t.map(c=>{var g;return(g=c).path??(g.path=[]),c.path.unshift(e),c})}function Ve(e){return typeof e=="string"?e:e?.message}function Ce(e,t,c){const g={...e,path:e.path??[]};if(!e.message){const m=Ve(e.inst?._zod.def?.error?.(e))??Ve(t?.error?.(e))??Ve(c.customError?.(e))??Ve(c.localeError?.(e))??"Invalid input";g.message=m}return delete g.inst,delete g.continue,t?.reportInput||delete g.input,g}function St(e){return Array.isArray(e)?"array":typeof e=="string"?"string":"unknown"}function Me(...e){const[t,c,g]=e;return typeof t=="string"?{message:t,code:"custom",input:c,inst:g}:{...t}}const Rr=(e,t)=>{e.name="$ZodError",Object.defineProperty(e,"_zod",{value:e._zod,enumerable:!1}),Object.defineProperty(e,"issues",{value:t,enumerable:!1}),e.message=JSON.stringify(t,dt,2),Object.defineProperty(e,"toString",{value:()=>e.message,enumerable:!1})},Dr=z("$ZodError",Rr),Lr=z("$ZodError",Rr,{Parent:Error});function vs(e,t=c=>c.message){const c={},g=[];for(const m of e.issues)m.path.length>0?(c[m.path[0]]=c[m.path[0]]||[],c[m.path[0]].push(t(m))):g.push(t(m));return{formErrors:g,fieldErrors:c}}function gs(e,t){const c=t||function(k){return k.message},g={_errors:[]},m=k=>{for(const w of k.issues)if(w.code==="invalid_union"&&w.errors.length)w.errors.map(r=>m({issues:r}));else if(w.code==="invalid_key")m({issues:w.issues});else if(w.code==="invalid_element")m({issues:w.issues});else if(w.path.length===0)g._errors.push(c(w));else{let r=g,s=0;for(;s<w.path.length;){const l=w.path[s];s===w.path.length-1?(r[l]=r[l]||{_errors:[]},r[l]._errors.push(c(w))):r[l]=r[l]||{_errors:[]},r=r[l],s++}}};return m(e),g}const ms=e=>(t,c,g,m)=>{const k=g?Object.assign(g,{async:!1}):{async:!1},w=t._zod.run({value:c,issues:[]},k);if(w instanceof Promise)throw new Ie;if(w.issues.length){const r=new(m?.Err??e)(w.issues.map(s=>Ce(s,k,ye())));throw kr(r,m?.callee),r}return w.value},bs=e=>async(t,c,g,m)=>{const k=g?Object.assign(g,{async:!0}):{async:!0};let w=t._zod.run({value:c,issues:[]},k);if(w instanceof Promise&&(w=await w),w.issues.length){const r=new(m?.Err??e)(w.issues.map(s=>Ce(s,k,ye())));throw kr(r,m?.callee),r}return w.value},Ar=e=>(t,c,g)=>{const m=g?{...g,async:!1}:{async:!1},k=t._zod.run({value:c,issues:[]},m);if(k instanceof Promise)throw new Ie;return k.issues.length?{success:!1,error:new(e??Dr)(k.issues.map(w=>Ce(w,m,ye())))}:{success:!0,data:k.value}},Ss=Ar(Lr),Pr=e=>async(t,c,g)=>{const m=g?Object.assign(g,{async:!0}):{async:!0};let k=t._zod.run({value:c,issues:[]},m);return k instanceof Promise&&(k=await k),k.issues.length?{success:!1,error:new e(k.issues.map(w=>Ce(w,m,ye())))}:{success:!0,data:k.value}},ys=Pr(Lr),Cs=/^[cC][^\s-]{8,}$/,ws=/^[0-9a-z]+$/,Es=/^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/,xs=/^[0-9a-vA-V]{20}$/,ks=/^[A-Za-z0-9]{27}$/,Rs=/^[a-zA-Z0-9_-]{21}$/,Ds=/^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/,Ls=/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/,jt=e=>e?new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${e}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`):/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000)$/,As=/^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/,Ps="^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";function Ts(){return new RegExp(Ps,"u")}const Os=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,Bs=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})$/,Is=/^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/,Ms=/^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/,Hs=/^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/,Tr=/^[A-Za-z0-9_-]*$/,Fs=/^(?=.{1,253}\.?$)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[-0-9a-zA-Z]{0,61}[0-9a-zA-Z])?)*\.?$/,zs=/^\+(?:[0-9]){6,14}[0-9]$/,Or="(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))",js=new RegExp(`^${Or}$`);function Br(e){const t="(?:[01]\\d|2[0-3]):[0-5]\\d";return typeof e.precision=="number"?e.precision===-1?`${t}`:e.precision===0?`${t}:[0-5]\\d`:`${t}:[0-5]\\d\\.\\d{${e.precision}}`:`${t}(?::[0-5]\\d(?:\\.\\d+)?)?`}function $s(e){return new RegExp(`^${Br(e)}$`)}function Ws(e){const t=Br({precision:e.precision}),c=["Z"];e.local&&c.push(""),e.offset&&c.push("([+-](?:[01]\\d|2[0-3]):[0-5]\\d)");const g=`${t}(?:${c.join("|")})`;return new RegExp(`^${Or}T(?:${g})$`)}const Ns=e=>{const t=e?`[\\s\\S]{${e?.minimum??0},${e?.maximum??""}}`:"[\\s\\S]*";return new RegExp(`^${t}$`)},Us=/^[^A-Z]*$/,Zs=/^[^a-z]*$/,pe=z("$ZodCheck",(e,t)=>{var c;e._zod??(e._zod={}),e._zod.def=t,(c=e._zod).onattach??(c.onattach=[])}),qs=z("$ZodCheckMaxLength",(e,t)=>{var c;pe.init(e,t),(c=e._zod.def).when??(c.when=g=>{const m=g.value;return!gt(m)&&m.length!==void 0}),e._zod.onattach.push(g=>{const m=g._zod.bag.maximum??Number.POSITIVE_INFINITY;t.maximum<m&&(g._zod.bag.maximum=t.maximum)}),e._zod.check=g=>{const m=g.value;if(m.length<=t.maximum)return;const w=St(m);g.issues.push({origin:w,code:"too_big",maximum:t.maximum,inclusive:!0,input:m,inst:e,continue:!t.abort})}}),Ks=z("$ZodCheckMinLength",(e,t)=>{var c;pe.init(e,t),(c=e._zod.def).when??(c.when=g=>{const m=g.value;return!gt(m)&&m.length!==void 0}),e._zod.onattach.push(g=>{const m=g._zod.bag.minimum??Number.NEGATIVE_INFINITY;t.minimum>m&&(g._zod.bag.minimum=t.minimum)}),e._zod.check=g=>{const m=g.value;if(m.length>=t.minimum)return;const w=St(m);g.issues.push({origin:w,code:"too_small",minimum:t.minimum,inclusive:!0,input:m,inst:e,continue:!t.abort})}}),Vs=z("$ZodCheckLengthEquals",(e,t)=>{var c;pe.init(e,t),(c=e._zod.def).when??(c.when=g=>{const m=g.value;return!gt(m)&&m.length!==void 0}),e._zod.onattach.push(g=>{const m=g._zod.bag;m.minimum=t.length,m.maximum=t.length,m.length=t.length}),e._zod.check=g=>{const m=g.value,k=m.length;if(k===t.length)return;const w=St(m),r=k>t.length;g.issues.push({origin:w,...r?{code:"too_big",maximum:t.length}:{code:"too_small",minimum:t.length},inclusive:!0,exact:!0,input:g.value,inst:e,continue:!t.abort})}}),et=z("$ZodCheckStringFormat",(e,t)=>{var c,g;pe.init(e,t),e._zod.onattach.push(m=>{const k=m._zod.bag;k.format=t.format,t.pattern&&(k.patterns??(k.patterns=new Set),k.patterns.add(t.pattern))}),t.pattern?(c=e._zod).check??(c.check=m=>{t.pattern.lastIndex=0,!t.pattern.test(m.value)&&m.issues.push({origin:"string",code:"invalid_format",format:t.format,input:m.value,...t.pattern?{pattern:t.pattern.toString()}:{},inst:e,continue:!t.abort})}):(g=e._zod).check??(g.check=()=>{})}),Gs=z("$ZodCheckRegex",(e,t)=>{et.init(e,t),e._zod.check=c=>{t.pattern.lastIndex=0,!t.pattern.test(c.value)&&c.issues.push({origin:"string",code:"invalid_format",format:"regex",input:c.value,pattern:t.pattern.toString(),inst:e,continue:!t.abort})}}),Js=z("$ZodCheckLowerCase",(e,t)=>{t.pattern??(t.pattern=Us),et.init(e,t)}),Ys=z("$ZodCheckUpperCase",(e,t)=>{t.pattern??(t.pattern=Zs),et.init(e,t)}),Xs=z("$ZodCheckIncludes",(e,t)=>{pe.init(e,t);const c=bt(t.includes),g=new RegExp(typeof t.position=="number"?`^.{${t.position}}${c}`:c);t.pattern=g,e._zod.onattach.push(m=>{const k=m._zod.bag;k.patterns??(k.patterns=new Set),k.patterns.add(g)}),e._zod.check=m=>{m.value.includes(t.includes,t.position)||m.issues.push({origin:"string",code:"invalid_format",format:"includes",includes:t.includes,input:m.value,inst:e,continue:!t.abort})}}),Qs=z("$ZodCheckStartsWith",(e,t)=>{pe.init(e,t);const c=new RegExp(`^${bt(t.prefix)}.*`);t.pattern??(t.pattern=c),e._zod.onattach.push(g=>{const m=g._zod.bag;m.patterns??(m.patterns=new Set),m.patterns.add(c)}),e._zod.check=g=>{g.value.startsWith(t.prefix)||g.issues.push({origin:"string",code:"invalid_format",format:"starts_with",prefix:t.prefix,input:g.value,inst:e,continue:!t.abort})}}),en=z("$ZodCheckEndsWith",(e,t)=>{pe.init(e,t);const c=new RegExp(`.*${bt(t.suffix)}$`);t.pattern??(t.pattern=c),e._zod.onattach.push(g=>{const m=g._zod.bag;m.patterns??(m.patterns=new Set),m.patterns.add(c)}),e._zod.check=g=>{g.value.endsWith(t.suffix)||g.issues.push({origin:"string",code:"invalid_format",format:"ends_with",suffix:t.suffix,input:g.value,inst:e,continue:!t.abort})}}),tn=z("$ZodCheckOverwrite",(e,t)=>{pe.init(e,t),e._zod.check=c=>{c.value=t.tx(c.value)}}),rn={major:4,minor:0,patch:14},ae=z("$ZodType",(e,t)=>{var c;e??(e={}),e._zod.def=t,e._zod.bag=e._zod.bag||{},e._zod.version=rn;const g=[...e._zod.def.checks??[]];e._zod.traits.has("$ZodCheck")&&g.unshift(e);for(const m of g)for(const k of m._zod.onattach)k(e);if(g.length===0)(c=e._zod).deferred??(c.deferred=[]),e._zod.deferred?.push(()=>{e._zod.run=e._zod.parse});else{const m=(k,w,r)=>{let s=Te(k),l;for(const _ of w){if(_._zod.def.when){if(!_._zod.def.when(k))continue}else if(s)continue;const h=k.issues.length,f=_._zod.check(k);if(f instanceof Promise&&r?.async===!1)throw new Ie;if(l||f instanceof Promise)l=(l??Promise.resolve()).then(async()=>{await f,k.issues.length!==h&&(s||(s=Te(k,h)))});else{if(k.issues.length===h)continue;s||(s=Te(k,h))}}return l?l.then(()=>k):k};e._zod.run=(k,w)=>{const r=e._zod.parse(k,w);if(r instanceof Promise){if(w.async===!1)throw new Ie;return r.then(s=>m(s,g,w))}return m(r,g,w)}}e["~standard"]={validate:m=>{try{const k=Ss(e,m);return k.success?{value:k.data}:{issues:k.error?.issues}}catch{return ys(e,m).then(w=>w.success?{value:w.data}:{issues:w.error?.issues})}},vendor:"zod",version:1}}),yt=z("$ZodString",(e,t)=>{ae.init(e,t),e._zod.pattern=[...e?._zod.bag?.patterns??[]].pop()??Ns(e._zod.bag),e._zod.parse=(c,g)=>{if(t.coerce)try{c.value=String(c.value)}catch{}return typeof c.value=="string"||c.issues.push({expected:"string",code:"invalid_type",input:c.value,inst:e}),c}}),te=z("$ZodStringFormat",(e,t)=>{et.init(e,t),yt.init(e,t)}),sn=z("$ZodGUID",(e,t)=>{t.pattern??(t.pattern=Ls),te.init(e,t)}),nn=z("$ZodUUID",(e,t)=>{if(t.version){const g={v1:1,v2:2,v3:3,v4:4,v5:5,v6:6,v7:7,v8:8}[t.version];if(g===void 0)throw new Error(`Invalid UUID version: "${t.version}"`);t.pattern??(t.pattern=jt(g))}else t.pattern??(t.pattern=jt());te.init(e,t)}),on=z("$ZodEmail",(e,t)=>{t.pattern??(t.pattern=As),te.init(e,t)}),an=z("$ZodURL",(e,t)=>{te.init(e,t),e._zod.check=c=>{try{const g=c.value.trim(),m=new URL(g);t.hostname&&(t.hostname.lastIndex=0,t.hostname.test(m.hostname)||c.issues.push({code:"invalid_format",format:"url",note:"Invalid hostname",pattern:Fs.source,input:c.value,inst:e,continue:!t.abort})),t.protocol&&(t.protocol.lastIndex=0,t.protocol.test(m.protocol.endsWith(":")?m.protocol.slice(0,-1):m.protocol)||c.issues.push({code:"invalid_format",format:"url",note:"Invalid protocol",pattern:t.protocol.source,input:c.value,inst:e,continue:!t.abort})),t.normalize?c.value=m.href:c.value=g;return}catch{c.issues.push({code:"invalid_format",format:"url",input:c.value,inst:e,continue:!t.abort})}}}),cn=z("$ZodEmoji",(e,t)=>{t.pattern??(t.pattern=Ts()),te.init(e,t)}),hn=z("$ZodNanoID",(e,t)=>{t.pattern??(t.pattern=Rs),te.init(e,t)}),ln=z("$ZodCUID",(e,t)=>{t.pattern??(t.pattern=Cs),te.init(e,t)}),un=z("$ZodCUID2",(e,t)=>{t.pattern??(t.pattern=ws),te.init(e,t)}),dn=z("$ZodULID",(e,t)=>{t.pattern??(t.pattern=Es),te.init(e,t)}),fn=z("$ZodXID",(e,t)=>{t.pattern??(t.pattern=xs),te.init(e,t)}),_n=z("$ZodKSUID",(e,t)=>{t.pattern??(t.pattern=ks),te.init(e,t)}),pn=z("$ZodISODateTime",(e,t)=>{t.pattern??(t.pattern=Ws(t)),te.init(e,t)}),vn=z("$ZodISODate",(e,t)=>{t.pattern??(t.pattern=js),te.init(e,t)}),gn=z("$ZodISOTime",(e,t)=>{t.pattern??(t.pattern=$s(t)),te.init(e,t)}),mn=z("$ZodISODuration",(e,t)=>{t.pattern??(t.pattern=Ds),te.init(e,t)}),bn=z("$ZodIPv4",(e,t)=>{t.pattern??(t.pattern=Os),te.init(e,t),e._zod.onattach.push(c=>{const g=c._zod.bag;g.format="ipv4"})}),Sn=z("$ZodIPv6",(e,t)=>{t.pattern??(t.pattern=Bs),te.init(e,t),e._zod.onattach.push(c=>{const g=c._zod.bag;g.format="ipv6"}),e._zod.check=c=>{try{new URL(`http://[${c.value}]`)}catch{c.issues.push({code:"invalid_format",format:"ipv6",input:c.value,inst:e,continue:!t.abort})}}}),yn=z("$ZodCIDRv4",(e,t)=>{t.pattern??(t.pattern=Is),te.init(e,t)}),Cn=z("$ZodCIDRv6",(e,t)=>{t.pattern??(t.pattern=Ms),te.init(e,t),e._zod.check=c=>{const[g,m]=c.value.split("/");try{if(!m)throw new Error;const k=Number(m);if(`${k}`!==m)throw new Error;if(k<0||k>128)throw new Error;new URL(`http://[${g}]`)}catch{c.issues.push({code:"invalid_format",format:"cidrv6",input:c.value,inst:e,continue:!t.abort})}}});function Ir(e){if(e==="")return!0;if(e.length%4!==0)return!1;try{return atob(e),!0}catch{return!1}}const wn=z("$ZodBase64",(e,t)=>{t.pattern??(t.pattern=Hs),te.init(e,t),e._zod.onattach.push(c=>{c._zod.bag.contentEncoding="base64"}),e._zod.check=c=>{Ir(c.value)||c.issues.push({code:"invalid_format",format:"base64",input:c.value,inst:e,continue:!t.abort})}});function En(e){if(!Tr.test(e))return!1;const t=e.replace(/[-_]/g,g=>g==="-"?"+":"/"),c=t.padEnd(Math.ceil(t.length/4)*4,"=");return Ir(c)}const xn=z("$ZodBase64URL",(e,t)=>{t.pattern??(t.pattern=Tr),te.init(e,t),e._zod.onattach.push(c=>{c._zod.bag.contentEncoding="base64url"}),e._zod.check=c=>{En(c.value)||c.issues.push({code:"invalid_format",format:"base64url",input:c.value,inst:e,continue:!t.abort})}}),kn=z("$ZodE164",(e,t)=>{t.pattern??(t.pattern=zs),te.init(e,t)});function Rn(e,t=null){try{const c=e.split(".");if(c.length!==3)return!1;const[g]=c;if(!g)return!1;const m=JSON.parse(atob(g));return!("typ"in m&&m?.typ!=="JWT"||!m.alg||t&&(!("alg"in m)||m.alg!==t))}catch{return!1}}const Dn=z("$ZodJWT",(e,t)=>{te.init(e,t),e._zod.check=c=>{Rn(c.value,t.alg)||c.issues.push({code:"invalid_format",format:"jwt",input:c.value,inst:e,continue:!t.abort})}});function $t(e,t,c){e.issues.length&&t.issues.push(...ps(c,e.issues)),t.value[c]=e.value}const Ln=z("$ZodArray",(e,t)=>{ae.init(e,t),e._zod.parse=(c,g)=>{const m=c.value;if(!Array.isArray(m))return c.issues.push({expected:"array",code:"invalid_type",input:m,inst:e}),c;c.value=Array(m.length);const k=[];for(let w=0;w<m.length;w++){const r=m[w],s=t.element._zod.run({value:r,issues:[]},g);s instanceof Promise?k.push(s.then(l=>$t(l,c,w))):$t(s,c,w)}return k.length?Promise.all(k).then(()=>c):c}});function Wt(e,t,c,g){for(const k of e)if(k.issues.length===0)return t.value=k.value,t;const m=e.filter(k=>!Te(k));return m.length===1?(t.value=m[0].value,m[0]):(t.issues.push({code:"invalid_union",input:t.value,inst:c,errors:e.map(k=>k.issues.map(w=>Ce(w,g,ye())))}),t)}const An=z("$ZodUnion",(e,t)=>{ae.init(e,t),ee(e._zod,"optin",()=>t.options.some(m=>m._zod.optin==="optional")?"optional":void 0),ee(e._zod,"optout",()=>t.options.some(m=>m._zod.optout==="optional")?"optional":void 0),ee(e._zod,"values",()=>{if(t.options.every(m=>m._zod.values))return new Set(t.options.flatMap(m=>Array.from(m._zod.values)))}),ee(e._zod,"pattern",()=>{if(t.options.every(m=>m._zod.pattern)){const m=t.options.map(k=>k._zod.pattern);return new RegExp(`^(${m.map(k=>mt(k.source)).join("|")})$`)}});const c=t.options.length===1,g=t.options[0]._zod.run;e._zod.parse=(m,k)=>{if(c)return g(m,k);let w=!1;const r=[];for(const s of t.options){const l=s._zod.run({value:m.value,issues:[]},k);if(l instanceof Promise)r.push(l),w=!0;else{if(l.issues.length===0)return l;r.push(l)}}return w?Promise.all(r).then(s=>Wt(s,m,e,k)):Wt(r,m,e,k)}}),Pn=z("$ZodIntersection",(e,t)=>{ae.init(e,t),e._zod.parse=(c,g)=>{const m=c.value,k=t.left._zod.run({value:m,issues:[]},g),w=t.right._zod.run({value:m,issues:[]},g);return k instanceof Promise||w instanceof Promise?Promise.all([k,w]).then(([s,l])=>Nt(c,s,l)):Nt(c,k,w)}});function ft(e,t){if(e===t)return{valid:!0,data:e};if(e instanceof Date&&t instanceof Date&&+e==+t)return{valid:!0,data:e};if(zt(e)&&zt(t)){const c=Object.keys(t),g=Object.keys(e).filter(k=>c.indexOf(k)!==-1),m={...e,...t};for(const k of g){const w=ft(e[k],t[k]);if(!w.valid)return{valid:!1,mergeErrorPath:[k,...w.mergeErrorPath]};m[k]=w.data}return{valid:!0,data:m}}if(Array.isArray(e)&&Array.isArray(t)){if(e.length!==t.length)return{valid:!1,mergeErrorPath:[]};const c=[];for(let g=0;g<e.length;g++){const m=e[g],k=t[g],w=ft(m,k);if(!w.valid)return{valid:!1,mergeErrorPath:[g,...w.mergeErrorPath]};c.push(w.data)}return{valid:!0,data:c}}return{valid:!1,mergeErrorPath:[]}}function Nt(e,t,c){if(t.issues.length&&e.issues.push(...t.issues),c.issues.length&&e.issues.push(...c.issues),Te(e))return e;const g=ft(t.value,c.value);if(!g.valid)throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(g.mergeErrorPath)}`);return e.value=g.data,e}const Tn=z("$ZodTransform",(e,t)=>{ae.init(e,t),e._zod.parse=(c,g)=>{const m=t.transform(c.value,c);if(g.async)return(m instanceof Promise?m:Promise.resolve(m)).then(w=>(c.value=w,c));if(m instanceof Promise)throw new Ie;return c.value=m,c}});function Ut(e,t){return e.issues.length&&t===void 0?{issues:[],value:void 0}:e}const On=z("$ZodOptional",(e,t)=>{ae.init(e,t),e._zod.optin="optional",e._zod.optout="optional",ee(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,void 0]):void 0),ee(e._zod,"pattern",()=>{const c=t.innerType._zod.pattern;return c?new RegExp(`^(${mt(c.source)})?$`):void 0}),e._zod.parse=(c,g)=>{if(t.innerType._zod.optin==="optional"){const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>Ut(k,c.value)):Ut(m,c.value)}return c.value===void 0?c:t.innerType._zod.run(c,g)}}),Bn=z("$ZodNullable",(e,t)=>{ae.init(e,t),ee(e._zod,"optin",()=>t.innerType._zod.optin),ee(e._zod,"optout",()=>t.innerType._zod.optout),ee(e._zod,"pattern",()=>{const c=t.innerType._zod.pattern;return c?new RegExp(`^(${mt(c.source)}|null)$`):void 0}),ee(e._zod,"values",()=>t.innerType._zod.values?new Set([...t.innerType._zod.values,null]):void 0),e._zod.parse=(c,g)=>c.value===null?c:t.innerType._zod.run(c,g)}),In=z("$ZodDefault",(e,t)=>{ae.init(e,t),e._zod.optin="optional",ee(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(c,g)=>{if(c.value===void 0)return c.value=t.defaultValue,c;const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>Zt(k,t)):Zt(m,t)}});function Zt(e,t){return e.value===void 0&&(e.value=t.defaultValue),e}const Mn=z("$ZodPrefault",(e,t)=>{ae.init(e,t),e._zod.optin="optional",ee(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(c,g)=>(c.value===void 0&&(c.value=t.defaultValue),t.innerType._zod.run(c,g))}),Hn=z("$ZodNonOptional",(e,t)=>{ae.init(e,t),ee(e._zod,"values",()=>{const c=t.innerType._zod.values;return c?new Set([...c].filter(g=>g!==void 0)):void 0}),e._zod.parse=(c,g)=>{const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>qt(k,e)):qt(m,e)}});function qt(e,t){return!e.issues.length&&e.value===void 0&&e.issues.push({code:"invalid_type",expected:"nonoptional",input:e.value,inst:t}),e}const Fn=z("$ZodCatch",(e,t)=>{ae.init(e,t),ee(e._zod,"optin",()=>t.innerType._zod.optin),ee(e._zod,"optout",()=>t.innerType._zod.optout),ee(e._zod,"values",()=>t.innerType._zod.values),e._zod.parse=(c,g)=>{const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(k=>(c.value=k.value,k.issues.length&&(c.value=t.catchValue({...c,error:{issues:k.issues.map(w=>Ce(w,g,ye()))},input:c.value}),c.issues=[]),c)):(c.value=m.value,m.issues.length&&(c.value=t.catchValue({...c,error:{issues:m.issues.map(k=>Ce(k,g,ye()))},input:c.value}),c.issues=[]),c)}}),zn=z("$ZodPipe",(e,t)=>{ae.init(e,t),ee(e._zod,"values",()=>t.in._zod.values),ee(e._zod,"optin",()=>t.in._zod.optin),ee(e._zod,"optout",()=>t.out._zod.optout),ee(e._zod,"propValues",()=>t.in._zod.propValues),e._zod.parse=(c,g)=>{const m=t.in._zod.run(c,g);return m instanceof Promise?m.then(k=>Kt(k,t,g)):Kt(m,t,g)}});function Kt(e,t,c){return e.issues.length?e:t.out._zod.run({value:e.value,issues:e.issues},c)}const jn=z("$ZodReadonly",(e,t)=>{ae.init(e,t),ee(e._zod,"propValues",()=>t.innerType._zod.propValues),ee(e._zod,"values",()=>t.innerType._zod.values),ee(e._zod,"optin",()=>t.innerType._zod.optin),ee(e._zod,"optout",()=>t.innerType._zod.optout),e._zod.parse=(c,g)=>{const m=t.innerType._zod.run(c,g);return m instanceof Promise?m.then(Vt):Vt(m)}});function Vt(e){return e.value=Object.freeze(e.value),e}const $n=z("$ZodCustom",(e,t)=>{pe.init(e,t),ae.init(e,t),e._zod.parse=(c,g)=>c,e._zod.check=c=>{const g=c.value,m=t.fn(g);if(m instanceof Promise)return m.then(k=>Gt(k,c,g,e));Gt(m,c,g,e)}});function Gt(e,t,c,g){if(!e){const m={code:"custom",input:c,inst:g,path:[...g._zod.def.path??[]],continue:!g._zod.def.abort};g._zod.def.params&&(m.params=g._zod.def.params),t.issues.push(Me(m))}}class Wn{constructor(){this._map=new Map,this._idmap=new Map}add(t,...c){const g=c[0];if(this._map.set(t,g),g&&typeof g=="object"&&"id"in g){if(this._idmap.has(g.id))throw new Error(`ID ${g.id} already exists in the registry`);this._idmap.set(g.id,t)}return this}clear(){return this._map=new Map,this._idmap=new Map,this}remove(t){const c=this._map.get(t);return c&&typeof c=="object"&&"id"in c&&this._idmap.delete(c.id),this._map.delete(t),this}get(t){const c=t._zod.parent;if(c){const g={...this.get(c)??{}};delete g.id;const m={...g,...this._map.get(t)};return Object.keys(m).length?m:void 0}return this._map.get(t)}has(t){return this._map.has(t)}}function Nn(){return new Wn}const Ge=Nn();function Un(e,t){return new e({type:"string",...Y(t)})}function Zn(e,t){return new e({type:"string",format:"email",check:"string_format",abort:!1,...Y(t)})}function Jt(e,t){return new e({type:"string",format:"guid",check:"string_format",abort:!1,...Y(t)})}function qn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,...Y(t)})}function Kn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v4",...Y(t)})}function Vn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v6",...Y(t)})}function Gn(e,t){return new e({type:"string",format:"uuid",check:"string_format",abort:!1,version:"v7",...Y(t)})}function Jn(e,t){return new e({type:"string",format:"url",check:"string_format",abort:!1,...Y(t)})}function Yn(e,t){return new e({type:"string",format:"emoji",check:"string_format",abort:!1,...Y(t)})}function Xn(e,t){return new e({type:"string",format:"nanoid",check:"string_format",abort:!1,...Y(t)})}function Qn(e,t){return new e({type:"string",format:"cuid",check:"string_format",abort:!1,...Y(t)})}function eo(e,t){return new e({type:"string",format:"cuid2",check:"string_format",abort:!1,...Y(t)})}function to(e,t){return new e({type:"string",format:"ulid",check:"string_format",abort:!1,...Y(t)})}function ro(e,t){return new e({type:"string",format:"xid",check:"string_format",abort:!1,...Y(t)})}function io(e,t){return new e({type:"string",format:"ksuid",check:"string_format",abort:!1,...Y(t)})}function so(e,t){return new e({type:"string",format:"ipv4",check:"string_format",abort:!1,...Y(t)})}function no(e,t){return new e({type:"string",format:"ipv6",check:"string_format",abort:!1,...Y(t)})}function oo(e,t){return new e({type:"string",format:"cidrv4",check:"string_format",abort:!1,...Y(t)})}function ao(e,t){return new e({type:"string",format:"cidrv6",check:"string_format",abort:!1,...Y(t)})}function co(e,t){return new e({type:"string",format:"base64",check:"string_format",abort:!1,...Y(t)})}function ho(e,t){return new e({type:"string",format:"base64url",check:"string_format",abort:!1,...Y(t)})}function lo(e,t){return new e({type:"string",format:"e164",check:"string_format",abort:!1,...Y(t)})}function uo(e,t){return new e({type:"string",format:"jwt",check:"string_format",abort:!1,...Y(t)})}function fo(e,t){return new e({type:"string",format:"datetime",check:"string_format",offset:!1,local:!1,precision:null,...Y(t)})}function _o(e,t){return new e({type:"string",format:"date",check:"string_format",...Y(t)})}function po(e,t){return new e({type:"string",format:"time",check:"string_format",precision:null,...Y(t)})}function vo(e,t){return new e({type:"string",format:"duration",check:"string_format",...Y(t)})}function Mr(e,t){return new qs({check:"max_length",...Y(t),maximum:e})}function Qe(e,t){return new Ks({check:"min_length",...Y(t),minimum:e})}function Hr(e,t){return new Vs({check:"length_equals",...Y(t),length:e})}function go(e,t){return new Gs({check:"string_format",format:"regex",...Y(t),pattern:e})}function mo(e){return new Js({check:"string_format",format:"lowercase",...Y(e)})}function bo(e){return new Ys({check:"string_format",format:"uppercase",...Y(e)})}function So(e,t){return new Xs({check:"string_format",format:"includes",...Y(t),includes:e})}function yo(e,t){return new Qs({check:"string_format",format:"starts_with",...Y(t),prefix:e})}function Co(e,t){return new en({check:"string_format",format:"ends_with",...Y(t),suffix:e})}function je(e){return new tn({check:"overwrite",tx:e})}function wo(e){return je(t=>t.normalize(e))}function Eo(){return je(e=>e.trim())}function xo(){return je(e=>e.toLowerCase())}function ko(){return je(e=>e.toUpperCase())}function Ro(e,t,c){return new e({type:"array",element:t,...Y(c)})}function Do(e,t,c){return new e({type:"custom",check:"custom",fn:t,...Y(c)})}function Lo(e){const t=Ao(c=>(c.addIssue=g=>{if(typeof g=="string")c.issues.push(Me(g,c.value,t._zod.def));else{const m=g;m.fatal&&(m.continue=!1),m.code??(m.code="custom"),m.input??(m.input=c.value),m.inst??(m.inst=t),m.continue??(m.continue=!t._zod.def.abort),c.issues.push(Me(m))}},e(c.value,c)));return t}function Ao(e,t){const c=new pe({check:"custom",...Y(t)});return c._zod.check=e,c}const Po=z("ZodISODateTime",(e,t)=>{pn.init(e,t),ie.init(e,t)});function To(e){return fo(Po,e)}const Oo=z("ZodISODate",(e,t)=>{vn.init(e,t),ie.init(e,t)});function Bo(e){return _o(Oo,e)}const Io=z("ZodISOTime",(e,t)=>{gn.init(e,t),ie.init(e,t)});function Mo(e){return po(Io,e)}const Ho=z("ZodISODuration",(e,t)=>{mn.init(e,t),ie.init(e,t)});function Fo(e){return vo(Ho,e)}const zo=(e,t)=>{Dr.init(e,t),e.name="ZodError",Object.defineProperties(e,{format:{value:c=>gs(e,c)},flatten:{value:c=>vs(e,c)},addIssue:{value:c=>{e.issues.push(c),e.message=JSON.stringify(e.issues,dt,2)}},addIssues:{value:c=>{e.issues.push(...c),e.message=JSON.stringify(e.issues,dt,2)}},isEmpty:{get(){return e.issues.length===0}}})},tt=z("ZodError",zo,{Parent:Error}),jo=ms(tt),$o=bs(tt),Wo=Ar(tt),No=Pr(tt),he=z("ZodType",(e,t)=>(ae.init(e,t),e.def=t,Object.defineProperty(e,"_def",{value:t}),e.check=(...c)=>e.clone({...t,checks:[...t.checks??[],...c.map(g=>typeof g=="function"?{_zod:{check:g,def:{check:"custom"},onattach:[]}}:g)]}),e.clone=(c,g)=>_s(e,c,g),e.brand=()=>e,e.register=(c,g)=>(c.add(e,g),e),e.parse=(c,g)=>jo(e,c,g,{callee:e.parse}),e.safeParse=(c,g)=>Wo(e,c,g),e.parseAsync=async(c,g)=>$o(e,c,g,{callee:e.parseAsync}),e.safeParseAsync=async(c,g)=>No(e,c,g),e.spa=e.safeParseAsync,e.refine=(c,g)=>e.check(Pa(c,g)),e.superRefine=c=>e.check(Ta(c)),e.overwrite=c=>e.check(je(c)),e.optional=()=>Xt(e),e.nullable=()=>Qt(e),e.nullish=()=>Xt(Qt(e)),e.nonoptional=c=>Ea(e,c),e.array=()=>la(e),e.or=c=>da([e,c]),e.and=c=>_a(e,c),e.transform=c=>er(e,va(c)),e.default=c=>Sa(e,c),e.prefault=c=>Ca(e,c),e.catch=c=>ka(e,c),e.pipe=c=>er(e,c),e.readonly=()=>La(e),e.describe=c=>{const g=e.clone();return Ge.add(g,{description:c}),g},Object.defineProperty(e,"description",{get(){return Ge.get(e)?.description},configurable:!0}),e.meta=(...c)=>{if(c.length===0)return Ge.get(e);const g=e.clone();return Ge.add(g,c[0]),g},e.isOptional=()=>e.safeParse(void 0).success,e.isNullable=()=>e.safeParse(null).success,e)),Fr=z("_ZodString",(e,t)=>{yt.init(e,t),he.init(e,t);const c=e._zod.bag;e.format=c.format??null,e.minLength=c.minimum??null,e.maxLength=c.maximum??null,e.regex=(...g)=>e.check(go(...g)),e.includes=(...g)=>e.check(So(...g)),e.startsWith=(...g)=>e.check(yo(...g)),e.endsWith=(...g)=>e.check(Co(...g)),e.min=(...g)=>e.check(Qe(...g)),e.max=(...g)=>e.check(Mr(...g)),e.length=(...g)=>e.check(Hr(...g)),e.nonempty=(...g)=>e.check(Qe(1,...g)),e.lowercase=g=>e.check(mo(g)),e.uppercase=g=>e.check(bo(g)),e.trim=()=>e.check(Eo()),e.normalize=(...g)=>e.check(wo(...g)),e.toLowerCase=()=>e.check(xo()),e.toUpperCase=()=>e.check(ko())}),Uo=z("ZodString",(e,t)=>{yt.init(e,t),Fr.init(e,t),e.email=c=>e.check(Zn(qo,c)),e.url=c=>e.check(Jn(Ko,c)),e.jwt=c=>e.check(uo(ca,c)),e.emoji=c=>e.check(Yn(Vo,c)),e.guid=c=>e.check(Jt(Yt,c)),e.uuid=c=>e.check(qn(Je,c)),e.uuidv4=c=>e.check(Kn(Je,c)),e.uuidv6=c=>e.check(Vn(Je,c)),e.uuidv7=c=>e.check(Gn(Je,c)),e.nanoid=c=>e.check(Xn(Go,c)),e.guid=c=>e.check(Jt(Yt,c)),e.cuid=c=>e.check(Qn(Jo,c)),e.cuid2=c=>e.check(eo(Yo,c)),e.ulid=c=>e.check(to(Xo,c)),e.base64=c=>e.check(co(na,c)),e.base64url=c=>e.check(ho(oa,c)),e.xid=c=>e.check(ro(Qo,c)),e.ksuid=c=>e.check(io(ea,c)),e.ipv4=c=>e.check(so(ta,c)),e.ipv6=c=>e.check(no(ra,c)),e.cidrv4=c=>e.check(oo(ia,c)),e.cidrv6=c=>e.check(ao(sa,c)),e.e164=c=>e.check(lo(aa,c)),e.datetime=c=>e.check(To(c)),e.date=c=>e.check(Bo(c)),e.time=c=>e.check(Mo(c)),e.duration=c=>e.check(Fo(c))});function Zo(e){return Un(Uo,e)}const ie=z("ZodStringFormat",(e,t)=>{te.init(e,t),Fr.init(e,t)}),qo=z("ZodEmail",(e,t)=>{on.init(e,t),ie.init(e,t)}),Yt=z("ZodGUID",(e,t)=>{sn.init(e,t),ie.init(e,t)}),Je=z("ZodUUID",(e,t)=>{nn.init(e,t),ie.init(e,t)}),Ko=z("ZodURL",(e,t)=>{an.init(e,t),ie.init(e,t)}),Vo=z("ZodEmoji",(e,t)=>{cn.init(e,t),ie.init(e,t)}),Go=z("ZodNanoID",(e,t)=>{hn.init(e,t),ie.init(e,t)}),Jo=z("ZodCUID",(e,t)=>{ln.init(e,t),ie.init(e,t)}),Yo=z("ZodCUID2",(e,t)=>{un.init(e,t),ie.init(e,t)}),Xo=z("ZodULID",(e,t)=>{dn.init(e,t),ie.init(e,t)}),Qo=z("ZodXID",(e,t)=>{fn.init(e,t),ie.init(e,t)}),ea=z("ZodKSUID",(e,t)=>{_n.init(e,t),ie.init(e,t)}),ta=z("ZodIPv4",(e,t)=>{bn.init(e,t),ie.init(e,t)}),ra=z("ZodIPv6",(e,t)=>{Sn.init(e,t),ie.init(e,t)}),ia=z("ZodCIDRv4",(e,t)=>{yn.init(e,t),ie.init(e,t)}),sa=z("ZodCIDRv6",(e,t)=>{Cn.init(e,t),ie.init(e,t)}),na=z("ZodBase64",(e,t)=>{wn.init(e,t),ie.init(e,t)}),oa=z("ZodBase64URL",(e,t)=>{xn.init(e,t),ie.init(e,t)}),aa=z("ZodE164",(e,t)=>{kn.init(e,t),ie.init(e,t)}),ca=z("ZodJWT",(e,t)=>{Dn.init(e,t),ie.init(e,t)}),ha=z("ZodArray",(e,t)=>{Ln.init(e,t),he.init(e,t),e.element=t.element,e.min=(c,g)=>e.check(Qe(c,g)),e.nonempty=c=>e.check(Qe(1,c)),e.max=(c,g)=>e.check(Mr(c,g)),e.length=(c,g)=>e.check(Hr(c,g)),e.unwrap=()=>e.element});function la(e,t){return Ro(ha,e,t)}const ua=z("ZodUnion",(e,t)=>{An.init(e,t),he.init(e,t),e.options=t.options});function da(e,t){return new ua({type:"union",options:e,...Y(t)})}const fa=z("ZodIntersection",(e,t)=>{Pn.init(e,t),he.init(e,t)});function _a(e,t){return new fa({type:"intersection",left:e,right:t})}const pa=z("ZodTransform",(e,t)=>{Tn.init(e,t),he.init(e,t),e._zod.parse=(c,g)=>{c.addIssue=k=>{if(typeof k=="string")c.issues.push(Me(k,c.value,t));else{const w=k;w.fatal&&(w.continue=!1),w.code??(w.code="custom"),w.input??(w.input=c.value),w.inst??(w.inst=e),c.issues.push(Me(w))}};const m=t.transform(c.value,c);return m instanceof Promise?m.then(k=>(c.value=k,c)):(c.value=m,c)}});function va(e){return new pa({type:"transform",transform:e})}const ga=z("ZodOptional",(e,t)=>{On.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Xt(e){return new ga({type:"optional",innerType:e})}const ma=z("ZodNullable",(e,t)=>{Bn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Qt(e){return new ma({type:"nullable",innerType:e})}const ba=z("ZodDefault",(e,t)=>{In.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeDefault=e.unwrap});function Sa(e,t){return new ba({type:"default",innerType:e,get defaultValue(){return typeof t=="function"?t():t}})}const ya=z("ZodPrefault",(e,t)=>{Mn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Ca(e,t){return new ya({type:"prefault",innerType:e,get defaultValue(){return typeof t=="function"?t():t}})}const wa=z("ZodNonOptional",(e,t)=>{Hn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function Ea(e,t){return new wa({type:"nonoptional",innerType:e,...Y(t)})}const xa=z("ZodCatch",(e,t)=>{Fn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType,e.removeCatch=e.unwrap});function ka(e,t){return new xa({type:"catch",innerType:e,catchValue:typeof t=="function"?t:()=>t})}const Ra=z("ZodPipe",(e,t)=>{zn.init(e,t),he.init(e,t),e.in=t.in,e.out=t.out});function er(e,t){return new Ra({type:"pipe",in:e,out:t})}const Da=z("ZodReadonly",(e,t)=>{jn.init(e,t),he.init(e,t),e.unwrap=()=>e._zod.def.innerType});function La(e){return new Da({type:"readonly",innerType:e})}const Aa=z("ZodCustom",(e,t)=>{$n.init(e,t),he.init(e,t)});function Pa(e,t={}){return Do(Aa,e,t)}function Ta(e){return Lo(e)}function Oa(e){const t=/\x1b\[<(\d+);(\d+);(\d+)([mM])/.exec(e);if(!t)return;if(!t[1]||!t[2]||!t[3]||!t[4])throw new Error(`Mouse event: Invalid match for data ${e}`);const c=parseInt(t[1],10),g=parseInt(t[2],10),m=parseInt(t[3],10),k=t[4]==="m";return console.log(`Mouse event: buttonCode=${c}, column=${g}, row=${m}, isRelease=${k}`),e}function zr(e,t){const c=new ds.Terminal({cursorBlink:!1,convertEol:!0,fontSize:13}),g=Er.macchiato.colors;c.options.theme={background:g.base.hex,black:g.crust.hex,brightBlack:g.surface2.hex,blue:g.blue.hex,brightBlue:g.blue.hex,brightCyan:g.sky.hex,brightRed:g.maroon.hex,brightYellow:g.yellow.hex,cursor:g.text.hex,cyan:g.sky.hex,foreground:g.text.hex,green:g.green.hex,magenta:g.lavender.hex,red:g.red.hex,white:g.text.hex,yellow:g.yellow.hex};const m=new ls.FitAddon;return c.loadAddon(m),c.open(e),m.fit(),window.addEventListener("resize",()=>{m.fit()}),c.onData(k=>{if(typeof k!="string")throw new Error(`unexpected onData message type: '${JSON.stringify(k)}'`);const w=Oa(k);w&&t.onMouseEvent(w)}),c.onKey(k=>{t.onKeyPress(k)}),c}function jr(){let e=Zo().safeParse(sessionStorage.getItem("tabId")).data;return e||(e=Math.random().toString(36),sessionStorage.setItem("tabId",e)),{tabId:e}}class Ba{ready;tabId;terminal;trpc;constructor(t){const c=yr({links:[or({condition:k=>k.type==="subscription",true:Cr({url:"/trpc"}),false:Sr({url:"/trpc"})})]});this.trpc=c,this.tabId=jr();const g=this.tabId,m=zr(t,{onMouseEvent(k){c.neovim.sendStdin.mutate({tabId:g,data:k}).catch(w=>{console.error("Error sending mouse event",w)})},onKeyPress(k){c.neovim.sendStdin.mutate({tabId:g,data:k.key})}});this.terminal=m,this.ready=new Promise(k=>{console.log("Subscribing to stdout"),c.neovim.initializeStdout.subscribe({client:g},{onStarted(){k()},onData(w){m.write(w)},onError(w){console.error("Error from the application",w)}})})}async startNeovim(t){return await this.ready,await this.trpc.neovim.start.mutate({startNeovimArguments:{filename:t.filename,additionalEnvironmentVariables:t.additionalEnvironmentVariables,startupScriptModifications:t.startupScriptModifications,NVIM_APPNAME:t.NVIM_APPNAME},terminalDimensions:{cols:this.terminal.cols,rows:this.terminal.rows},tabId:this.tabId})}async runBlockingShellCommand(t){return await this.ready,this.trpc.neovim.runBlockingShellCommand.mutate({...t,tabId:this.tabId})}async runLuaCode(t){return await this.ready,this.trpc.neovim.runLuaCode.mutate({...t,tabId:this.tabId})}async doFile(t){return await this.ready,this.trpc.neovim.runExCommand.mutate({...t,tabId:this.tabId,command:`lua dofile("${t.luaFile}")`})}async waitForLuaCode(t){await this.ready;try{return await this.trpc.neovim.waitForLuaCode.mutate({...t,tabId:this.tabId})}catch(c){throw c}}async runExCommand(t){return await this.ready,this.trpc.neovim.runExCommand.mutate({...t,tabId:this.tabId})}}function Ia(e,t){e.parser.registerCsiHandler({final:"c"},()=>(t.onKeyPress({key:"\x1B[?1;2c",domEvent:new KeyboardEvent("keydown",{key:"Escape"})}),!0))}class Ma{ready;tabId;terminal;trpc;terminalApi;constructor(t){const c=yr({links:[or({condition:k=>k.type==="subscription",true:Cr({url:"/trpc"}),false:Sr({url:"/trpc"})})]});this.trpc=c,this.tabId=jr();const g=this.tabId;this.terminalApi={onMouseEvent(k){c.terminal.sendStdin.mutate({tabId:g,data:k}).catch(w=>{console.error("Error sending mouse event",w)})},onKeyPress(k){c.terminal.sendStdin.mutate({tabId:g,data:k.key})}};const m=zr(t,this.terminalApi);this.terminal=m,this.ready=new Promise(k=>{console.log("Subscribing to stdout"),c.terminal.onStdout.subscribe({client:g},{onStarted(){k()},onData(w){m.write(w)},onError(w){console.error("Error from the application",w)}})})}async startTerminalApplication(t){return await this.ready,t.browserSettings.configureTerminal?.({terminal:this.terminal,api:this.terminalApi,recipes:{supportDA1:()=>{Ia(this.terminal,this.terminalApi)}}}),await this.trpc.terminal.start.mutate({tabId:this.tabId,startTerminalArguments:{additionalEnvironmentVariables:t.serverSettings.additionalEnvironmentVariables,commandToRun:t.serverSettings.commandToRun,terminalDimensions:{cols:this.terminal.cols,rows:this.terminal.rows}}})}async runBlockingShellCommand(t){return await this.ready,this.trpc.terminal.runBlockingShellCommand.mutate({...t,tabId:this.tabId})}}class $r{constructor(t){this.factory=t}value;get(){return this.value===void 0&&(this.value=this.factory()),this.value}}const Ct=document.querySelector("#app");if(!Ct)throw new Error("No app element found");const Ha=new $r(()=>new Ba(Ct)),Fa=new $r(()=>new Ma(Ct));window.startNeovim=async function(e){const t=Ha.get(),c=await t.startNeovim({additionalEnvironmentVariables:e?.additionalEnvironmentVariables,filename:e?.filename??"initial-file.txt",startupScriptModifications:e?.startupScriptModifications??[],headlessCmd:void 0,NVIM_APPNAME:e?.NVIM_APPNAME});return{runBlockingShellCommand(m){return t.runBlockingShellCommand(m)},runLuaCode(m){return t.runLuaCode(m)},doFile(m){return t.doFile(m)},waitForLuaCode(m){return t.waitForLuaCode(m)},runExCommand(m){return t.runExCommand(m)},dir:c}};window.startTerminalApplication=async function(e){const t=Fa.get();return{dir:await t.startTerminalApplication(e),runBlockingShellCommand(m){return t.runBlockingShellCommand(m)}}};
|