@sapiom/harness 0.2.6 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/CHANGELOG.md +84 -0
  2. package/README.md +3 -1
  3. package/dist/cli/doctor.d.ts.map +1 -1
  4. package/dist/cli/doctor.js +21 -2
  5. package/dist/cli/doctor.js.map +1 -1
  6. package/dist/core/adapters/claude-code.d.ts +46 -0
  7. package/dist/core/adapters/claude-code.d.ts.map +1 -1
  8. package/dist/core/adapters/claude-code.js +76 -1
  9. package/dist/core/adapters/claude-code.js.map +1 -1
  10. package/dist/core/adapters/codex.d.ts +0 -7
  11. package/dist/core/adapters/codex.d.ts.map +1 -1
  12. package/dist/core/adapters/codex.js +1 -23
  13. package/dist/core/adapters/codex.js.map +1 -1
  14. package/dist/core/agent-project-discovery.d.ts +26 -0
  15. package/dist/core/agent-project-discovery.d.ts.map +1 -0
  16. package/dist/core/agent-project-discovery.js +110 -0
  17. package/dist/core/agent-project-discovery.js.map +1 -0
  18. package/dist/core/canvas-body.d.ts.map +1 -1
  19. package/dist/core/canvas-body.js +6 -2
  20. package/dist/core/canvas-body.js.map +1 -1
  21. package/dist/core/canvas-derive.d.ts.map +1 -1
  22. package/dist/core/canvas-derive.js +6 -2
  23. package/dist/core/canvas-derive.js.map +1 -1
  24. package/dist/core/canvas-render.d.ts +1 -0
  25. package/dist/core/canvas-render.d.ts.map +1 -1
  26. package/dist/core/canvas-render.js +9 -1
  27. package/dist/core/canvas-render.js.map +1 -1
  28. package/dist/core/canvas-run-state.d.ts +7 -0
  29. package/dist/core/canvas-run-state.d.ts.map +1 -1
  30. package/dist/core/canvas-run-state.js +41 -3
  31. package/dist/core/canvas-run-state.js.map +1 -1
  32. package/dist/core/canvas-template.d.ts.map +1 -1
  33. package/dist/core/canvas-template.js +10 -5
  34. package/dist/core/canvas-template.js.map +1 -1
  35. package/dist/core/definition-slug-resolver.d.ts +10 -1
  36. package/dist/core/definition-slug-resolver.d.ts.map +1 -1
  37. package/dist/core/definition-slug-resolver.js +41 -26
  38. package/dist/core/definition-slug-resolver.js.map +1 -1
  39. package/dist/core/inject/claude-settings.d.ts.map +1 -1
  40. package/dist/core/inject/claude-settings.js +14 -1
  41. package/dist/core/inject/claude-settings.js.map +1 -1
  42. package/dist/core/macros.d.ts +6 -4
  43. package/dist/core/macros.d.ts.map +1 -1
  44. package/dist/core/macros.js.map +1 -1
  45. package/dist/core/render-local-run.d.ts +2 -2
  46. package/dist/core/render-local-run.js +1 -1
  47. package/dist/core/run-local-bootstrap.d.ts +4 -2
  48. package/dist/core/run-local-bootstrap.d.ts.map +1 -1
  49. package/dist/core/run-local-bootstrap.js +4 -2
  50. package/dist/core/run-local-bootstrap.js.map +1 -1
  51. package/dist/core/session-manager.d.ts +13 -0
  52. package/dist/core/session-manager.d.ts.map +1 -1
  53. package/dist/core/session-manager.js +66 -3
  54. package/dist/core/session-manager.js.map +1 -1
  55. package/dist/core/strip-ansi.d.ts +13 -0
  56. package/dist/core/strip-ansi.d.ts.map +1 -0
  57. package/dist/core/strip-ansi.js +29 -0
  58. package/dist/core/strip-ansi.js.map +1 -0
  59. package/dist/core/template-catalog.d.ts +1 -1
  60. package/dist/core/template-catalog.d.ts.map +1 -1
  61. package/dist/core/template-catalog.js +25 -9
  62. package/dist/core/template-catalog.js.map +1 -1
  63. package/dist/core/workflow-registry.d.ts +6 -1
  64. package/dist/core/workflow-registry.d.ts.map +1 -1
  65. package/dist/core/workflow-registry.js +64 -20
  66. package/dist/core/workflow-registry.js.map +1 -1
  67. package/dist/core/workspace-watcher.d.ts +4 -3
  68. package/dist/core/workspace-watcher.d.ts.map +1 -1
  69. package/dist/core/workspace-watcher.js +52 -32
  70. package/dist/core/workspace-watcher.js.map +1 -1
  71. package/dist/profiles/default.d.ts.map +1 -1
  72. package/dist/profiles/default.js +10 -7
  73. package/dist/profiles/default.js.map +1 -1
  74. package/dist/server/actions.d.ts +11 -8
  75. package/dist/server/actions.d.ts.map +1 -1
  76. package/dist/server/actions.js +22 -13
  77. package/dist/server/actions.js.map +1 -1
  78. package/dist/server/canvas-render.d.ts +3 -2
  79. package/dist/server/canvas-render.d.ts.map +1 -1
  80. package/dist/server/canvas-render.js +2 -1
  81. package/dist/server/canvas-render.js.map +1 -1
  82. package/dist/server/fs.d.ts.map +1 -1
  83. package/dist/server/fs.js +5 -8
  84. package/dist/server/fs.js.map +1 -1
  85. package/dist/server/index.d.ts.map +1 -1
  86. package/dist/server/index.js +61 -24
  87. package/dist/server/index.js.map +1 -1
  88. package/dist/server/templates.js +1 -1
  89. package/dist/shared/types.d.ts +31 -8
  90. package/dist/shared/types.d.ts.map +1 -1
  91. package/dist/shared/types.js +5 -3
  92. package/dist/shared/types.js.map +1 -1
  93. package/dist/web/assets/Geist-Variable-Bj2R_7yk.woff2 +0 -0
  94. package/dist/web/assets/GeistMono-Variable-Dispecij.woff2 +0 -0
  95. package/dist/web/assets/index-055xzwa-.js +458 -0
  96. package/dist/web/assets/index-DUELJTDJ.css +32 -0
  97. package/dist/web/canvas/sess-boot/index.html +6 -3
  98. package/dist/web/index.html +11 -5
  99. package/package.json +5 -5
  100. package/dist/web/assets/index-AAGKe1y6.css +0 -32
  101. package/dist/web/assets/index-B-3_hl8M.js +0 -448
@@ -0,0 +1,458 @@
1
+ var Uw=Object.defineProperty;var Fw=(s,t,n)=>t in s?Uw(s,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):s[t]=n;var _d=(s,t,n)=>Fw(s,typeof t!="symbol"?t+"":t,n);(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const l of document.querySelectorAll('link[rel="modulepreload"]'))a(l);new MutationObserver(l=>{for(const d of l)if(d.type==="childList")for(const p of d.addedNodes)p.tagName==="LINK"&&p.rel==="modulepreload"&&a(p)}).observe(document,{childList:!0,subtree:!0});function n(l){const d={};return l.integrity&&(d.integrity=l.integrity),l.referrerPolicy&&(d.referrerPolicy=l.referrerPolicy),l.crossOrigin==="use-credentials"?d.credentials="include":l.crossOrigin==="anonymous"?d.credentials="omit":d.credentials="same-origin",d}function a(l){if(l.ep)return;l.ep=!0;const d=n(l);fetch(l.href,d)}})();var gd={exports:{}},uo={};/**
2
+ * @license React
3
+ * react-jsx-runtime.production.js
4
+ *
5
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
6
+ *
7
+ * This source code is licensed under the MIT license found in the
8
+ * LICENSE file in the root directory of this source tree.
9
+ */var _m;function qw(){if(_m)return uo;_m=1;var s=Symbol.for("react.transitional.element"),t=Symbol.for("react.fragment");function n(a,l,d){var p=null;if(d!==void 0&&(p=""+d),l.key!==void 0&&(p=""+l.key),"key"in l){d={};for(var c in l)c!=="key"&&(d[c]=l[c])}else d=l;return l=d.ref,{$$typeof:s,type:a,key:p,ref:l!==void 0?l:null,props:d}}return uo.Fragment=t,uo.jsx=n,uo.jsxs=n,uo}var gm;function Ww(){return gm||(gm=1,gd.exports=qw()),gd.exports}var h=Ww(),md={exports:{}},Je={};/**
10
+ * @license React
11
+ * react.production.js
12
+ *
13
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
14
+ *
15
+ * This source code is licensed under the MIT license found in the
16
+ * LICENSE file in the root directory of this source tree.
17
+ */var mm;function Gw(){if(mm)return Je;mm=1;var s=Symbol.for("react.transitional.element"),t=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),l=Symbol.for("react.profiler"),d=Symbol.for("react.consumer"),p=Symbol.for("react.context"),c=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),v=Symbol.for("react.memo"),b=Symbol.for("react.lazy"),f=Symbol.for("react.activity"),x=Symbol.iterator;function C(L){return L===null||typeof L!="object"?null:(L=x&&L[x]||L["@@iterator"],typeof L=="function"?L:null)}var A={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},E=Object.assign,m={};function S(L,B,V){this.props=L,this.context=B,this.refs=m,this.updater=V||A}S.prototype.isReactComponent={},S.prototype.setState=function(L,B){if(typeof L!="object"&&typeof L!="function"&&L!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,L,B,"setState")},S.prototype.forceUpdate=function(L){this.updater.enqueueForceUpdate(this,L,"forceUpdate")};function _(){}_.prototype=S.prototype;function y(L,B,V){this.props=L,this.context=B,this.refs=m,this.updater=V||A}var k=y.prototype=new _;k.constructor=y,E(k,S.prototype),k.isPureReactComponent=!0;var R=Array.isArray;function M(){}var j={H:null,A:null,T:null,S:null},T=Object.prototype.hasOwnProperty;function D(L,B,V){var te=V.ref;return{$$typeof:s,type:L,key:B,ref:te!==void 0?te:null,props:V}}function H(L,B){return D(L.type,B,L.props)}function P(L){return typeof L=="object"&&L!==null&&L.$$typeof===s}function W(L){var B={"=":"=0",":":"=2"};return"$"+L.replace(/[=:]/g,function(V){return B[V]})}var U=/\/+/g;function Y(L,B){return typeof L=="object"&&L!==null&&L.key!=null?W(""+L.key):B.toString(36)}function J(L){switch(L.status){case"fulfilled":return L.value;case"rejected":throw L.reason;default:switch(typeof L.status=="string"?L.then(M,M):(L.status="pending",L.then(function(B){L.status==="pending"&&(L.status="fulfilled",L.value=B)},function(B){L.status==="pending"&&(L.status="rejected",L.reason=B)})),L.status){case"fulfilled":return L.value;case"rejected":throw L.reason}}throw L}function q(L,B,V,te,ce){var de=typeof L;(de==="undefined"||de==="boolean")&&(L=null);var K=!1;if(L===null)K=!0;else switch(de){case"bigint":case"string":case"number":K=!0;break;case"object":switch(L.$$typeof){case s:case t:K=!0;break;case b:return K=L._init,q(K(L._payload),B,V,te,ce)}}if(K)return ce=ce(L),K=te===""?"."+Y(L,0):te,R(ce)?(V="",K!=null&&(V=K.replace(U,"$&/")+"/"),q(ce,B,V,"",function(ie){return ie})):ce!=null&&(P(ce)&&(ce=H(ce,V+(ce.key==null||L&&L.key===ce.key?"":(""+ce.key).replace(U,"$&/")+"/")+K)),B.push(ce)),1;K=0;var I=te===""?".":te+":";if(R(L))for(var ue=0;ue<L.length;ue++)te=L[ue],de=I+Y(te,ue),K+=q(te,B,V,de,ce);else if(ue=C(L),typeof ue=="function")for(L=ue.call(L),ue=0;!(te=L.next()).done;)te=te.value,de=I+Y(te,ue++),K+=q(te,B,V,de,ce);else if(de==="object"){if(typeof L.then=="function")return q(J(L),B,V,te,ce);throw B=String(L),Error("Objects are not valid as a React child (found: "+(B==="[object Object]"?"object with keys {"+Object.keys(L).join(", ")+"}":B)+"). If you meant to render a collection of children, use an array instead.")}return K}function G(L,B,V){if(L==null)return L;var te=[],ce=0;return q(L,te,"","",function(de){return B.call(V,de,ce++)}),te}function ee(L){if(L._status===-1){var B=L._result;B=B(),B.then(function(V){(L._status===0||L._status===-1)&&(L._status=1,L._result=V)},function(V){(L._status===0||L._status===-1)&&(L._status=2,L._result=V)}),L._status===-1&&(L._status=0,L._result=B)}if(L._status===1)return L._result.default;throw L._result}var O=typeof reportError=="function"?reportError:function(L){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var B=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof L=="object"&&L!==null&&typeof L.message=="string"?String(L.message):String(L),error:L});if(!window.dispatchEvent(B))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",L);return}console.error(L)},F={map:G,forEach:function(L,B,V){G(L,function(){B.apply(this,arguments)},V)},count:function(L){var B=0;return G(L,function(){B++}),B},toArray:function(L){return G(L,function(B){return B})||[]},only:function(L){if(!P(L))throw Error("React.Children.only expected to receive a single React element child.");return L}};return Je.Activity=f,Je.Children=F,Je.Component=S,Je.Fragment=n,Je.Profiler=l,Je.PureComponent=y,Je.StrictMode=a,Je.Suspense=u,Je.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=j,Je.__COMPILER_RUNTIME={__proto__:null,c:function(L){return j.H.useMemoCache(L)}},Je.cache=function(L){return function(){return L.apply(null,arguments)}},Je.cacheSignal=function(){return null},Je.cloneElement=function(L,B,V){if(L==null)throw Error("The argument must be a React element, but you passed "+L+".");var te=E({},L.props),ce=L.key;if(B!=null)for(de in B.key!==void 0&&(ce=""+B.key),B)!T.call(B,de)||de==="key"||de==="__self"||de==="__source"||de==="ref"&&B.ref===void 0||(te[de]=B[de]);var de=arguments.length-2;if(de===1)te.children=V;else if(1<de){for(var K=Array(de),I=0;I<de;I++)K[I]=arguments[I+2];te.children=K}return D(L.type,ce,te)},Je.createContext=function(L){return L={$$typeof:p,_currentValue:L,_currentValue2:L,_threadCount:0,Provider:null,Consumer:null},L.Provider=L,L.Consumer={$$typeof:d,_context:L},L},Je.createElement=function(L,B,V){var te,ce={},de=null;if(B!=null)for(te in B.key!==void 0&&(de=""+B.key),B)T.call(B,te)&&te!=="key"&&te!=="__self"&&te!=="__source"&&(ce[te]=B[te]);var K=arguments.length-2;if(K===1)ce.children=V;else if(1<K){for(var I=Array(K),ue=0;ue<K;ue++)I[ue]=arguments[ue+2];ce.children=I}if(L&&L.defaultProps)for(te in K=L.defaultProps,K)ce[te]===void 0&&(ce[te]=K[te]);return D(L,de,ce)},Je.createRef=function(){return{current:null}},Je.forwardRef=function(L){return{$$typeof:c,render:L}},Je.isValidElement=P,Je.lazy=function(L){return{$$typeof:b,_payload:{_status:-1,_result:L},_init:ee}},Je.memo=function(L,B){return{$$typeof:v,type:L,compare:B===void 0?null:B}},Je.startTransition=function(L){var B=j.T,V={};j.T=V;try{var te=L(),ce=j.S;ce!==null&&ce(V,te),typeof te=="object"&&te!==null&&typeof te.then=="function"&&te.then(M,O)}catch(de){O(de)}finally{B!==null&&V.types!==null&&(B.types=V.types),j.T=B}},Je.unstable_useCacheRefresh=function(){return j.H.useCacheRefresh()},Je.use=function(L){return j.H.use(L)},Je.useActionState=function(L,B,V){return j.H.useActionState(L,B,V)},Je.useCallback=function(L,B){return j.H.useCallback(L,B)},Je.useContext=function(L){return j.H.useContext(L)},Je.useDebugValue=function(){},Je.useDeferredValue=function(L,B){return j.H.useDeferredValue(L,B)},Je.useEffect=function(L,B){return j.H.useEffect(L,B)},Je.useEffectEvent=function(L){return j.H.useEffectEvent(L)},Je.useId=function(){return j.H.useId()},Je.useImperativeHandle=function(L,B,V){return j.H.useImperativeHandle(L,B,V)},Je.useInsertionEffect=function(L,B){return j.H.useInsertionEffect(L,B)},Je.useLayoutEffect=function(L,B){return j.H.useLayoutEffect(L,B)},Je.useMemo=function(L,B){return j.H.useMemo(L,B)},Je.useOptimistic=function(L,B){return j.H.useOptimistic(L,B)},Je.useReducer=function(L,B,V){return j.H.useReducer(L,B,V)},Je.useRef=function(L){return j.H.useRef(L)},Je.useState=function(L){return j.H.useState(L)},Je.useSyncExternalStore=function(L,B,V){return j.H.useSyncExternalStore(L,B,V)},Je.useTransition=function(){return j.H.useTransition()},Je.version="19.2.7",Je}var ym;function tp(){return ym||(ym=1,md.exports=Gw()),md.exports}var $=tp(),yd={exports:{}},ho={},bd={exports:{}},Sd={};/**
18
+ * @license React
19
+ * scheduler.production.js
20
+ *
21
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
22
+ *
23
+ * This source code is licensed under the MIT license found in the
24
+ * LICENSE file in the root directory of this source tree.
25
+ */var bm;function Vw(){return bm||(bm=1,(function(s){function t(q,G){var ee=q.length;q.push(G);e:for(;0<ee;){var O=ee-1>>>1,F=q[O];if(0<l(F,G))q[O]=G,q[ee]=F,ee=O;else break e}}function n(q){return q.length===0?null:q[0]}function a(q){if(q.length===0)return null;var G=q[0],ee=q.pop();if(ee!==G){q[0]=ee;e:for(var O=0,F=q.length,L=F>>>1;O<L;){var B=2*(O+1)-1,V=q[B],te=B+1,ce=q[te];if(0>l(V,ee))te<F&&0>l(ce,V)?(q[O]=ce,q[te]=ee,O=te):(q[O]=V,q[B]=ee,O=B);else if(te<F&&0>l(ce,ee))q[O]=ce,q[te]=ee,O=te;else break e}}return G}function l(q,G){var ee=q.sortIndex-G.sortIndex;return ee!==0?ee:q.id-G.id}if(s.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var d=performance;s.unstable_now=function(){return d.now()}}else{var p=Date,c=p.now();s.unstable_now=function(){return p.now()-c}}var u=[],v=[],b=1,f=null,x=3,C=!1,A=!1,E=!1,m=!1,S=typeof setTimeout=="function"?setTimeout:null,_=typeof clearTimeout=="function"?clearTimeout:null,y=typeof setImmediate<"u"?setImmediate:null;function k(q){for(var G=n(v);G!==null;){if(G.callback===null)a(v);else if(G.startTime<=q)a(v),G.sortIndex=G.expirationTime,t(u,G);else break;G=n(v)}}function R(q){if(E=!1,k(q),!A)if(n(u)!==null)A=!0,M||(M=!0,W());else{var G=n(v);G!==null&&J(R,G.startTime-q)}}var M=!1,j=-1,T=5,D=-1;function H(){return m?!0:!(s.unstable_now()-D<T)}function P(){if(m=!1,M){var q=s.unstable_now();D=q;var G=!0;try{e:{A=!1,E&&(E=!1,_(j),j=-1),C=!0;var ee=x;try{t:{for(k(q),f=n(u);f!==null&&!(f.expirationTime>q&&H());){var O=f.callback;if(typeof O=="function"){f.callback=null,x=f.priorityLevel;var F=O(f.expirationTime<=q);if(q=s.unstable_now(),typeof F=="function"){f.callback=F,k(q),G=!0;break t}f===n(u)&&a(u),k(q)}else a(u);f=n(u)}if(f!==null)G=!0;else{var L=n(v);L!==null&&J(R,L.startTime-q),G=!1}}break e}finally{f=null,x=ee,C=!1}G=void 0}}finally{G?W():M=!1}}}var W;if(typeof y=="function")W=function(){y(P)};else if(typeof MessageChannel<"u"){var U=new MessageChannel,Y=U.port2;U.port1.onmessage=P,W=function(){Y.postMessage(null)}}else W=function(){S(P,0)};function J(q,G){j=S(function(){q(s.unstable_now())},G)}s.unstable_IdlePriority=5,s.unstable_ImmediatePriority=1,s.unstable_LowPriority=4,s.unstable_NormalPriority=3,s.unstable_Profiling=null,s.unstable_UserBlockingPriority=2,s.unstable_cancelCallback=function(q){q.callback=null},s.unstable_forceFrameRate=function(q){0>q||125<q?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):T=0<q?Math.floor(1e3/q):5},s.unstable_getCurrentPriorityLevel=function(){return x},s.unstable_next=function(q){switch(x){case 1:case 2:case 3:var G=3;break;default:G=x}var ee=x;x=G;try{return q()}finally{x=ee}},s.unstable_requestPaint=function(){m=!0},s.unstable_runWithPriority=function(q,G){switch(q){case 1:case 2:case 3:case 4:case 5:break;default:q=3}var ee=x;x=q;try{return G()}finally{x=ee}},s.unstable_scheduleCallback=function(q,G,ee){var O=s.unstable_now();switch(typeof ee=="object"&&ee!==null?(ee=ee.delay,ee=typeof ee=="number"&&0<ee?O+ee:O):ee=O,q){case 1:var F=-1;break;case 2:F=250;break;case 5:F=1073741823;break;case 4:F=1e4;break;default:F=5e3}return F=ee+F,q={id:b++,callback:G,priorityLevel:q,startTime:ee,expirationTime:F,sortIndex:-1},ee>O?(q.sortIndex=ee,t(v,q),n(u)===null&&q===n(v)&&(E?(_(j),j=-1):E=!0,J(R,ee-O))):(q.sortIndex=F,t(u,q),A||C||(A=!0,M||(M=!0,W()))),q},s.unstable_shouldYield=H,s.unstable_wrapCallback=function(q){var G=x;return function(){var ee=x;x=G;try{return q.apply(this,arguments)}finally{x=ee}}}})(Sd)),Sd}var Sm;function Yw(){return Sm||(Sm=1,bd.exports=Vw()),bd.exports}var wd={exports:{}},js={};/**
26
+ * @license React
27
+ * react-dom.production.js
28
+ *
29
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
30
+ *
31
+ * This source code is licensed under the MIT license found in the
32
+ * LICENSE file in the root directory of this source tree.
33
+ */var wm;function Kw(){if(wm)return js;wm=1;var s=tp();function t(u){var v="https://react.dev/errors/"+u;if(1<arguments.length){v+="?args[]="+encodeURIComponent(arguments[1]);for(var b=2;b<arguments.length;b++)v+="&args[]="+encodeURIComponent(arguments[b])}return"Minified React error #"+u+"; visit "+v+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function n(){}var a={d:{f:n,r:function(){throw Error(t(522))},D:n,C:n,L:n,m:n,X:n,S:n,M:n},p:0,findDOMNode:null},l=Symbol.for("react.portal");function d(u,v,b){var f=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:l,key:f==null?null:""+f,children:u,containerInfo:v,implementation:b}}var p=s.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;function c(u,v){if(u==="font")return"";if(typeof v=="string")return v==="use-credentials"?v:""}return js.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=a,js.createPortal=function(u,v){var b=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!v||v.nodeType!==1&&v.nodeType!==9&&v.nodeType!==11)throw Error(t(299));return d(u,v,null,b)},js.flushSync=function(u){var v=p.T,b=a.p;try{if(p.T=null,a.p=2,u)return u()}finally{p.T=v,a.p=b,a.d.f()}},js.preconnect=function(u,v){typeof u=="string"&&(v?(v=v.crossOrigin,v=typeof v=="string"?v==="use-credentials"?v:"":void 0):v=null,a.d.C(u,v))},js.prefetchDNS=function(u){typeof u=="string"&&a.d.D(u)},js.preinit=function(u,v){if(typeof u=="string"&&v&&typeof v.as=="string"){var b=v.as,f=c(b,v.crossOrigin),x=typeof v.integrity=="string"?v.integrity:void 0,C=typeof v.fetchPriority=="string"?v.fetchPriority:void 0;b==="style"?a.d.S(u,typeof v.precedence=="string"?v.precedence:void 0,{crossOrigin:f,integrity:x,fetchPriority:C}):b==="script"&&a.d.X(u,{crossOrigin:f,integrity:x,fetchPriority:C,nonce:typeof v.nonce=="string"?v.nonce:void 0})}},js.preinitModule=function(u,v){if(typeof u=="string")if(typeof v=="object"&&v!==null){if(v.as==null||v.as==="script"){var b=c(v.as,v.crossOrigin);a.d.M(u,{crossOrigin:b,integrity:typeof v.integrity=="string"?v.integrity:void 0,nonce:typeof v.nonce=="string"?v.nonce:void 0})}}else v==null&&a.d.M(u)},js.preload=function(u,v){if(typeof u=="string"&&typeof v=="object"&&v!==null&&typeof v.as=="string"){var b=v.as,f=c(b,v.crossOrigin);a.d.L(u,b,{crossOrigin:f,integrity:typeof v.integrity=="string"?v.integrity:void 0,nonce:typeof v.nonce=="string"?v.nonce:void 0,type:typeof v.type=="string"?v.type:void 0,fetchPriority:typeof v.fetchPriority=="string"?v.fetchPriority:void 0,referrerPolicy:typeof v.referrerPolicy=="string"?v.referrerPolicy:void 0,imageSrcSet:typeof v.imageSrcSet=="string"?v.imageSrcSet:void 0,imageSizes:typeof v.imageSizes=="string"?v.imageSizes:void 0,media:typeof v.media=="string"?v.media:void 0})}},js.preloadModule=function(u,v){if(typeof u=="string")if(v){var b=c(v.as,v.crossOrigin);a.d.m(u,{as:typeof v.as=="string"&&v.as!=="script"?v.as:void 0,crossOrigin:b,integrity:typeof v.integrity=="string"?v.integrity:void 0})}else a.d.m(u)},js.requestFormReset=function(u){a.d.r(u)},js.unstable_batchedUpdates=function(u,v){return u(v)},js.useFormState=function(u,v,b){return p.H.useFormState(u,v,b)},js.useFormStatus=function(){return p.H.useHostTransitionStatus()},js.version="19.2.7",js}var xm;function _y(){if(xm)return wd.exports;xm=1;function s(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(s)}catch(t){console.error(t)}}return s(),wd.exports=Kw(),wd.exports}/**
34
+ * @license React
35
+ * react-dom-client.production.js
36
+ *
37
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
38
+ *
39
+ * This source code is licensed under the MIT license found in the
40
+ * LICENSE file in the root directory of this source tree.
41
+ */var Cm;function Xw(){if(Cm)return ho;Cm=1;var s=Yw(),t=tp(),n=_y();function a(e){var i="https://react.dev/errors/"+e;if(1<arguments.length){i+="?args[]="+encodeURIComponent(arguments[1]);for(var r=2;r<arguments.length;r++)i+="&args[]="+encodeURIComponent(arguments[r])}return"Minified React error #"+e+"; visit "+i+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}function l(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function d(e){var i=e,r=e;if(e.alternate)for(;i.return;)i=i.return;else{e=i;do i=e,(i.flags&4098)!==0&&(r=i.return),e=i.return;while(e)}return i.tag===3?r:null}function p(e){if(e.tag===13){var i=e.memoizedState;if(i===null&&(e=e.alternate,e!==null&&(i=e.memoizedState)),i!==null)return i.dehydrated}return null}function c(e){if(e.tag===31){var i=e.memoizedState;if(i===null&&(e=e.alternate,e!==null&&(i=e.memoizedState)),i!==null)return i.dehydrated}return null}function u(e){if(d(e)!==e)throw Error(a(188))}function v(e){var i=e.alternate;if(!i){if(i=d(e),i===null)throw Error(a(188));return i!==e?null:e}for(var r=e,o=i;;){var g=r.return;if(g===null)break;var w=g.alternate;if(w===null){if(o=g.return,o!==null){r=o;continue}break}if(g.child===w.child){for(w=g.child;w;){if(w===r)return u(g),e;if(w===o)return u(g),i;w=w.sibling}throw Error(a(188))}if(r.return!==o.return)r=g,o=w;else{for(var N=!1,z=g.child;z;){if(z===r){N=!0,r=g,o=w;break}if(z===o){N=!0,o=g,r=w;break}z=z.sibling}if(!N){for(z=w.child;z;){if(z===r){N=!0,r=w,o=g;break}if(z===o){N=!0,o=w,r=g;break}z=z.sibling}if(!N)throw Error(a(189))}}if(r.alternate!==o)throw Error(a(190))}if(r.tag!==3)throw Error(a(188));return r.stateNode.current===r?e:i}function b(e){var i=e.tag;if(i===5||i===26||i===27||i===6)return e;for(e=e.child;e!==null;){if(i=b(e),i!==null)return i;e=e.sibling}return null}var f=Object.assign,x=Symbol.for("react.element"),C=Symbol.for("react.transitional.element"),A=Symbol.for("react.portal"),E=Symbol.for("react.fragment"),m=Symbol.for("react.strict_mode"),S=Symbol.for("react.profiler"),_=Symbol.for("react.consumer"),y=Symbol.for("react.context"),k=Symbol.for("react.forward_ref"),R=Symbol.for("react.suspense"),M=Symbol.for("react.suspense_list"),j=Symbol.for("react.memo"),T=Symbol.for("react.lazy"),D=Symbol.for("react.activity"),H=Symbol.for("react.memo_cache_sentinel"),P=Symbol.iterator;function W(e){return e===null||typeof e!="object"?null:(e=P&&e[P]||e["@@iterator"],typeof e=="function"?e:null)}var U=Symbol.for("react.client.reference");function Y(e){if(e==null)return null;if(typeof e=="function")return e.$$typeof===U?null:e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case E:return"Fragment";case S:return"Profiler";case m:return"StrictMode";case R:return"Suspense";case M:return"SuspenseList";case D:return"Activity"}if(typeof e=="object")switch(e.$$typeof){case A:return"Portal";case y:return e.displayName||"Context";case _:return(e._context.displayName||"Context")+".Consumer";case k:var i=e.render;return e=e.displayName,e||(e=i.displayName||i.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case j:return i=e.displayName||null,i!==null?i:Y(e.type)||"Memo";case T:i=e._payload,e=e._init;try{return Y(e(i))}catch{}}return null}var J=Array.isArray,q=t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,G=n.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,ee={pending:!1,data:null,method:null,action:null},O=[],F=-1;function L(e){return{current:e}}function B(e){0>F||(e.current=O[F],O[F]=null,F--)}function V(e,i){F++,O[F]=e.current,e.current=i}var te=L(null),ce=L(null),de=L(null),K=L(null);function I(e,i){switch(V(de,i),V(ce,e),V(te,null),i.nodeType){case 9:case 11:e=(e=i.documentElement)&&(e=e.namespaceURI)?Ig(e):0;break;default:if(e=i.tagName,i=i.namespaceURI)i=Ig(i),e=$g(i,e);else switch(e){case"svg":e=1;break;case"math":e=2;break;default:e=0}}B(te),V(te,e)}function ue(){B(te),B(ce),B(de)}function ie(e){e.memoizedState!==null&&V(K,e);var i=te.current,r=$g(i,e.type);i!==r&&(V(ce,e),V(te,r))}function we(e){ce.current===e&&(B(te),B(ce)),K.current===e&&(B(K),ao._currentValue=ee)}var fe,$e;function De(e){if(fe===void 0)try{throw Error()}catch(r){var i=r.stack.trim().match(/\n( *(at )?)/);fe=i&&i[1]||"",$e=-1<r.stack.indexOf(`
42
+ at`)?" (<anonymous>)":-1<r.stack.indexOf("@")?"@unknown:0:0":""}return`
43
+ `+fe+e+$e}var Ke=!1;function Ie(e,i){if(!e||Ke)return"";Ke=!0;var r=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{var o={DetermineComponentFrameRoot:function(){try{if(i){var ye=function(){throw Error()};if(Object.defineProperty(ye.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(ye,[])}catch(he){var oe=he}Reflect.construct(e,[],ye)}else{try{ye.call()}catch(he){oe=he}e.call(ye.prototype)}}else{try{throw Error()}catch(he){oe=he}(ye=e())&&typeof ye.catch=="function"&&ye.catch(function(){})}}catch(he){if(he&&oe&&typeof he.stack=="string")return[he.stack,oe.stack]}return[null,null]}};o.DetermineComponentFrameRoot.displayName="DetermineComponentFrameRoot";var g=Object.getOwnPropertyDescriptor(o.DetermineComponentFrameRoot,"name");g&&g.configurable&&Object.defineProperty(o.DetermineComponentFrameRoot,"name",{value:"DetermineComponentFrameRoot"});var w=o.DetermineComponentFrameRoot(),N=w[0],z=w[1];if(N&&z){var X=N.split(`
44
+ `),re=z.split(`
45
+ `);for(g=o=0;o<X.length&&!X[o].includes("DetermineComponentFrameRoot");)o++;for(;g<re.length&&!re[g].includes("DetermineComponentFrameRoot");)g++;if(o===X.length||g===re.length)for(o=X.length-1,g=re.length-1;1<=o&&0<=g&&X[o]!==re[g];)g--;for(;1<=o&&0<=g;o--,g--)if(X[o]!==re[g]){if(o!==1||g!==1)do if(o--,g--,0>g||X[o]!==re[g]){var pe=`
46
+ `+X[o].replace(" at new "," at ");return e.displayName&&pe.includes("<anonymous>")&&(pe=pe.replace("<anonymous>",e.displayName)),pe}while(1<=o&&0<=g);break}}}finally{Ke=!1,Error.prepareStackTrace=r}return(r=e?e.displayName||e.name:"")?De(r):""}function Le(e,i){switch(e.tag){case 26:case 27:case 5:return De(e.type);case 16:return De("Lazy");case 13:return e.child!==i&&i!==null?De("Suspense Fallback"):De("Suspense");case 19:return De("SuspenseList");case 0:case 15:return Ie(e.type,!1);case 11:return Ie(e.type.render,!1);case 1:return Ie(e.type,!0);case 31:return De("Activity");default:return""}}function zt(e){try{var i="",r=null;do i+=Le(e,r),r=e,e=e.return;while(e);return i}catch(o){return`
47
+ Error generating stack: `+o.message+`
48
+ `+o.stack}}var Ue=Object.prototype.hasOwnProperty,We=s.unstable_scheduleCallback,vt=s.unstable_cancelCallback,It=s.unstable_shouldYield,rt=s.unstable_requestPaint,ft=s.unstable_now,kt=s.unstable_getCurrentPriorityLevel,es=s.unstable_ImmediatePriority,cs=s.unstable_UserBlockingPriority,St=s.unstable_NormalPriority,us=s.unstable_LowPriority,Lt=s.unstable_IdlePriority,yt=s.log,ct=s.unstable_setDisableYieldValue,ss=null,Gt=null;function Vt(e){if(typeof yt=="function"&&ct(e),Gt&&typeof Gt.setStrictMode=="function")try{Gt.setStrictMode(ss,e)}catch{}}var Yt=Math.clz32?Math.clz32:ke,Os=Math.log,ms=Math.LN2;function ke(e){return e>>>=0,e===0?32:31-(Os(e)/ms|0)|0}var Fe=256,ts=262144,ys=4194304;function Ms(e){var i=e&42;if(i!==0)return i;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function xi(e,i,r){var o=e.pendingLanes;if(o===0)return 0;var g=0,w=e.suspendedLanes,N=e.pingedLanes;e=e.warmLanes;var z=o&134217727;return z!==0?(o=z&~w,o!==0?g=Ms(o):(N&=z,N!==0?g=Ms(N):r||(r=z&~e,r!==0&&(g=Ms(r))))):(z=o&~w,z!==0?g=Ms(z):N!==0?g=Ms(N):r||(r=o&~e,r!==0&&(g=Ms(r)))),g===0?0:i!==0&&i!==g&&(i&w)===0&&(w=g&-g,r=i&-i,w>=r||w===32&&(r&4194048)!==0)?i:g}function Xs(e,i){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&i)===0}function ae(e,i){switch(e){case 1:case 2:case 4:case 8:case 64:return i+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return i+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function me(){var e=ys;return ys<<=1,(ys&62914560)===0&&(ys=4194304),e}function xe(e){for(var i=[],r=0;31>r;r++)i.push(e);return i}function Se(e,i){e.pendingLanes|=i,i!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function Oe(e,i,r,o,g,w){var N=e.pendingLanes;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=r,e.entangledLanes&=r,e.errorRecoveryDisabledLanes&=r,e.shellSuspendCounter=0;var z=e.entanglements,X=e.expirationTimes,re=e.hiddenUpdates;for(r=N&~r;0<r;){var pe=31-Yt(r),ye=1<<pe;z[pe]=0,X[pe]=-1;var oe=re[pe];if(oe!==null)for(re[pe]=null,pe=0;pe<oe.length;pe++){var he=oe[pe];he!==null&&(he.lane&=-536870913)}r&=~ye}o!==0&&tt(e,o,0),w!==0&&g===0&&e.tag!==0&&(e.suspendedLanes|=w&~(N&~i))}function tt(e,i,r){e.pendingLanes|=i,e.suspendedLanes&=~i;var o=31-Yt(i);e.entangledLanes|=i,e.entanglements[o]=e.entanglements[o]|1073741824|r&261930}function st(e,i){var r=e.entangledLanes|=i;for(e=e.entanglements;r;){var o=31-Yt(r),g=1<<o;g&i|e[o]&i&&(e[o]|=i),r&=~g}}function at(e,i){var r=i&-i;return r=(r&42)!==0?1:Kt(r),(r&(e.suspendedLanes|i))!==0?0:r}function Kt(e){switch(e){case 2:e=1;break;case 8:e=4;break;case 32:e=16;break;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:e=128;break;case 268435456:e=134217728;break;default:e=0}return e}function Ps(e){return e&=-e,2<e?8<e?(e&134217727)!==0?32:268435456:8:2}function Ci(){var e=G.p;return e!==0?e:(e=window.event,e===void 0?32:cm(e.type))}function Ds(e,i){var r=G.p;try{return G.p=e,i()}finally{G.p=r}}var Qe=Math.random().toString(36).slice(2),ut="__reactFiber$"+Qe,hs="__reactProps$"+Qe,oi="__reactContainer$"+Qe,_n="__reactEvents$"+Qe,Ei="__reactListeners$"+Qe,qn="__reactHandles$"+Qe,ge="__reactResources$"+Qe,Me="__reactMarker$"+Qe;function qe(e){delete e[ut],delete e[hs],delete e[_n],delete e[Ei],delete e[qn]}function wt(e){var i=e[ut];if(i)return i;for(var r=e.parentNode;r;){if(i=r[oi]||r[ut]){if(r=i.alternate,i.child!==null||r!==null&&r.child!==null)for(e=Vg(e);e!==null;){if(r=e[ut])return r;e=Vg(e)}return i}e=r,r=e.parentNode}return null}function Ge(e){if(e=e[ut]||e[oi]){var i=e.tag;if(i===5||i===6||i===13||i===31||i===26||i===27||i===3)return e}return null}function rs(e){var i=e.tag;if(i===5||i===26||i===27||i===6)return e.stateNode;throw Error(a(33))}function ws(e){var i=e[ge];return i||(i=e[ge]={hoistableStyles:new Map,hoistableScripts:new Map}),i}function Z(e){e[Me]=!0}var Te=new Set,Re={};function He(e,i){Tt(e,i),Tt(e+"Capture",i)}function Tt(e,i){for(Re[e]=i,e=0;e<i.length;e++)Te.add(i[e])}var Xt=RegExp("^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"),ds={},wa={};function Lb(e){return Ue.call(wa,e)?!0:Ue.call(ds,e)?!1:Xt.test(e)?wa[e]=!0:(ds[e]=!0,!1)}function Yo(e,i,r){if(Lb(i))if(r===null)e.removeAttribute(i);else{switch(typeof r){case"undefined":case"function":case"symbol":e.removeAttribute(i);return;case"boolean":var o=i.toLowerCase().slice(0,5);if(o!=="data-"&&o!=="aria-"){e.removeAttribute(i);return}}e.setAttribute(i,""+r)}}function Ko(e,i,r){if(r===null)e.removeAttribute(i);else{switch(typeof r){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(i);return}e.setAttribute(i,""+r)}}function $i(e,i,r,o){if(o===null)e.removeAttribute(r);else{switch(typeof o){case"undefined":case"function":case"symbol":case"boolean":e.removeAttribute(r);return}e.setAttributeNS(i,r,""+o)}}function li(e){switch(typeof e){case"bigint":case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Dp(e){var i=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(i==="checkbox"||i==="radio")}function Ob(e,i,r){var o=Object.getOwnPropertyDescriptor(e.constructor.prototype,i);if(!e.hasOwnProperty(i)&&typeof o<"u"&&typeof o.get=="function"&&typeof o.set=="function"){var g=o.get,w=o.set;return Object.defineProperty(e,i,{configurable:!0,get:function(){return g.call(this)},set:function(N){r=""+N,w.call(this,N)}}),Object.defineProperty(e,i,{enumerable:o.enumerable}),{getValue:function(){return r},setValue:function(N){r=""+N},stopTracking:function(){e._valueTracker=null,delete e[i]}}}}function cu(e){if(!e._valueTracker){var i=Dp(e)?"checked":"value";e._valueTracker=Ob(e,i,""+e[i])}}function jp(e){if(!e)return!1;var i=e._valueTracker;if(!i)return!0;var r=i.getValue(),o="";return e&&(o=Dp(e)?e.checked?"true":"false":e.value),e=o,e!==r?(i.setValue(e),!0):!1}function Xo(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}var Bb=/[\n"\\]/g;function ci(e){return e.replace(Bb,function(i){return"\\"+i.charCodeAt(0).toString(16)+" "})}function uu(e,i,r,o,g,w,N,z){e.name="",N!=null&&typeof N!="function"&&typeof N!="symbol"&&typeof N!="boolean"?e.type=N:e.removeAttribute("type"),i!=null?N==="number"?(i===0&&e.value===""||e.value!=i)&&(e.value=""+li(i)):e.value!==""+li(i)&&(e.value=""+li(i)):N!=="submit"&&N!=="reset"||e.removeAttribute("value"),i!=null?hu(e,N,li(i)):r!=null?hu(e,N,li(r)):o!=null&&e.removeAttribute("value"),g==null&&w!=null&&(e.defaultChecked=!!w),g!=null&&(e.checked=g&&typeof g!="function"&&typeof g!="symbol"),z!=null&&typeof z!="function"&&typeof z!="symbol"&&typeof z!="boolean"?e.name=""+li(z):e.removeAttribute("name")}function Np(e,i,r,o,g,w,N,z){if(w!=null&&typeof w!="function"&&typeof w!="symbol"&&typeof w!="boolean"&&(e.type=w),i!=null||r!=null){if(!(w!=="submit"&&w!=="reset"||i!=null)){cu(e);return}r=r!=null?""+li(r):"",i=i!=null?""+li(i):r,z||i===e.value||(e.value=i),e.defaultValue=i}o=o??g,o=typeof o!="function"&&typeof o!="symbol"&&!!o,e.checked=z?e.checked:!!o,e.defaultChecked=!!o,N!=null&&typeof N!="function"&&typeof N!="symbol"&&typeof N!="boolean"&&(e.name=N),cu(e)}function hu(e,i,r){i==="number"&&Xo(e.ownerDocument)===e||e.defaultValue===""+r||(e.defaultValue=""+r)}function wr(e,i,r,o){if(e=e.options,i){i={};for(var g=0;g<r.length;g++)i["$"+r[g]]=!0;for(r=0;r<e.length;r++)g=i.hasOwnProperty("$"+e[r].value),e[r].selected!==g&&(e[r].selected=g),g&&o&&(e[r].defaultSelected=!0)}else{for(r=""+li(r),i=null,g=0;g<e.length;g++){if(e[g].value===r){e[g].selected=!0,o&&(e[g].defaultSelected=!0);return}i!==null||e[g].disabled||(i=e[g])}i!==null&&(i.selected=!0)}}function Lp(e,i,r){if(i!=null&&(i=""+li(i),i!==e.value&&(e.value=i),r==null)){e.defaultValue!==i&&(e.defaultValue=i);return}e.defaultValue=r!=null?""+li(r):""}function Op(e,i,r,o){if(i==null){if(o!=null){if(r!=null)throw Error(a(92));if(J(o)){if(1<o.length)throw Error(a(93));o=o[0]}r=o}r==null&&(r=""),i=r}r=li(i),e.defaultValue=r,o=e.textContent,o===r&&o!==""&&o!==null&&(e.value=o),cu(e)}function xr(e,i){if(i){var r=e.firstChild;if(r&&r===e.lastChild&&r.nodeType===3){r.nodeValue=i;return}}e.textContent=i}var Hb=new Set("animationIterationCount aspectRatio borderImageOutset borderImageSlice borderImageWidth boxFlex boxFlexGroup boxOrdinalGroup columnCount columns flex flexGrow flexPositive flexShrink flexNegative flexOrder gridArea gridRow gridRowEnd gridRowSpan gridRowStart gridColumn gridColumnEnd gridColumnSpan gridColumnStart fontWeight lineClamp lineHeight opacity order orphans scale tabSize widows zIndex zoom fillOpacity floodOpacity stopOpacity strokeDasharray strokeDashoffset strokeMiterlimit strokeOpacity strokeWidth MozAnimationIterationCount MozBoxFlex MozBoxFlexGroup MozLineClamp msAnimationIterationCount msFlex msZoom msFlexGrow msFlexNegative msFlexOrder msFlexPositive msFlexShrink msGridColumn msGridColumnSpan msGridRow msGridRowSpan WebkitAnimationIterationCount WebkitBoxFlex WebKitBoxFlexGroup WebkitBoxOrdinalGroup WebkitColumnCount WebkitColumns WebkitFlex WebkitFlexGrow WebkitFlexPositive WebkitFlexShrink WebkitLineClamp".split(" "));function Bp(e,i,r){var o=i.indexOf("--")===0;r==null||typeof r=="boolean"||r===""?o?e.setProperty(i,""):i==="float"?e.cssFloat="":e[i]="":o?e.setProperty(i,r):typeof r!="number"||r===0||Hb.has(i)?i==="float"?e.cssFloat=r:e[i]=(""+r).trim():e[i]=r+"px"}function Hp(e,i,r){if(i!=null&&typeof i!="object")throw Error(a(62));if(e=e.style,r!=null){for(var o in r)!r.hasOwnProperty(o)||i!=null&&i.hasOwnProperty(o)||(o.indexOf("--")===0?e.setProperty(o,""):o==="float"?e.cssFloat="":e[o]="");for(var g in i)o=i[g],i.hasOwnProperty(g)&&r[g]!==o&&Bp(e,g,o)}else for(var w in i)i.hasOwnProperty(w)&&Bp(e,w,i[w])}function du(e){if(e.indexOf("-")===-1)return!1;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var zb=new Map([["acceptCharset","accept-charset"],["htmlFor","for"],["httpEquiv","http-equiv"],["crossOrigin","crossorigin"],["accentHeight","accent-height"],["alignmentBaseline","alignment-baseline"],["arabicForm","arabic-form"],["baselineShift","baseline-shift"],["capHeight","cap-height"],["clipPath","clip-path"],["clipRule","clip-rule"],["colorInterpolation","color-interpolation"],["colorInterpolationFilters","color-interpolation-filters"],["colorProfile","color-profile"],["colorRendering","color-rendering"],["dominantBaseline","dominant-baseline"],["enableBackground","enable-background"],["fillOpacity","fill-opacity"],["fillRule","fill-rule"],["floodColor","flood-color"],["floodOpacity","flood-opacity"],["fontFamily","font-family"],["fontSize","font-size"],["fontSizeAdjust","font-size-adjust"],["fontStretch","font-stretch"],["fontStyle","font-style"],["fontVariant","font-variant"],["fontWeight","font-weight"],["glyphName","glyph-name"],["glyphOrientationHorizontal","glyph-orientation-horizontal"],["glyphOrientationVertical","glyph-orientation-vertical"],["horizAdvX","horiz-adv-x"],["horizOriginX","horiz-origin-x"],["imageRendering","image-rendering"],["letterSpacing","letter-spacing"],["lightingColor","lighting-color"],["markerEnd","marker-end"],["markerMid","marker-mid"],["markerStart","marker-start"],["overlinePosition","overline-position"],["overlineThickness","overline-thickness"],["paintOrder","paint-order"],["panose-1","panose-1"],["pointerEvents","pointer-events"],["renderingIntent","rendering-intent"],["shapeRendering","shape-rendering"],["stopColor","stop-color"],["stopOpacity","stop-opacity"],["strikethroughPosition","strikethrough-position"],["strikethroughThickness","strikethrough-thickness"],["strokeDasharray","stroke-dasharray"],["strokeDashoffset","stroke-dashoffset"],["strokeLinecap","stroke-linecap"],["strokeLinejoin","stroke-linejoin"],["strokeMiterlimit","stroke-miterlimit"],["strokeOpacity","stroke-opacity"],["strokeWidth","stroke-width"],["textAnchor","text-anchor"],["textDecoration","text-decoration"],["textRendering","text-rendering"],["transformOrigin","transform-origin"],["underlinePosition","underline-position"],["underlineThickness","underline-thickness"],["unicodeBidi","unicode-bidi"],["unicodeRange","unicode-range"],["unitsPerEm","units-per-em"],["vAlphabetic","v-alphabetic"],["vHanging","v-hanging"],["vIdeographic","v-ideographic"],["vMathematical","v-mathematical"],["vectorEffect","vector-effect"],["vertAdvY","vert-adv-y"],["vertOriginX","vert-origin-x"],["vertOriginY","vert-origin-y"],["wordSpacing","word-spacing"],["writingMode","writing-mode"],["xmlnsXlink","xmlns:xlink"],["xHeight","x-height"]]),Ib=/^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*:/i;function Jo(e){return Ib.test(""+e)?"javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')":e}function Pi(){}var fu=null;function pu(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Cr=null,Er=null;function zp(e){var i=Ge(e);if(i&&(e=i.stateNode)){var r=e[hs]||null;e:switch(e=i.stateNode,i.type){case"input":if(uu(e,r.value,r.defaultValue,r.defaultValue,r.checked,r.defaultChecked,r.type,r.name),i=r.name,r.type==="radio"&&i!=null){for(r=e;r.parentNode;)r=r.parentNode;for(r=r.querySelectorAll('input[name="'+ci(""+i)+'"][type="radio"]'),i=0;i<r.length;i++){var o=r[i];if(o!==e&&o.form===e.form){var g=o[hs]||null;if(!g)throw Error(a(90));uu(o,g.value,g.defaultValue,g.defaultValue,g.checked,g.defaultChecked,g.type,g.name)}}for(i=0;i<r.length;i++)o=r[i],o.form===e.form&&jp(o)}break e;case"textarea":Lp(e,r.value,r.defaultValue);break e;case"select":i=r.value,i!=null&&wr(e,!!r.multiple,i,!1)}}}var vu=!1;function Ip(e,i,r){if(vu)return e(i,r);vu=!0;try{var o=e(i);return o}finally{if(vu=!1,(Cr!==null||Er!==null)&&(zl(),Cr&&(i=Cr,e=Er,Er=Cr=null,zp(i),e)))for(i=0;i<e.length;i++)zp(e[i])}}function xa(e,i){var r=e.stateNode;if(r===null)return null;var o=r[hs]||null;if(o===null)return null;r=o[i];e:switch(i){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(o=!o.disabled)||(e=e.type,o=!(e==="button"||e==="input"||e==="select"||e==="textarea")),e=!o;break e;default:e=!1}if(e)return null;if(r&&typeof r!="function")throw Error(a(231,i,typeof r));return r}var Ui=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),_u=!1;if(Ui)try{var Ca={};Object.defineProperty(Ca,"passive",{get:function(){_u=!0}}),window.addEventListener("test",Ca,Ca),window.removeEventListener("test",Ca,Ca)}catch{_u=!1}var gn=null,gu=null,Zo=null;function $p(){if(Zo)return Zo;var e,i=gu,r=i.length,o,g="value"in gn?gn.value:gn.textContent,w=g.length;for(e=0;e<r&&i[e]===g[e];e++);var N=r-e;for(o=1;o<=N&&i[r-o]===g[w-o];o++);return Zo=g.slice(e,1<o?1-o:void 0)}function Qo(e){var i=e.keyCode;return"charCode"in e?(e=e.charCode,e===0&&i===13&&(e=13)):e=i,e===10&&(e=13),32<=e||e===13?e:0}function el(){return!0}function Pp(){return!1}function Us(e){function i(r,o,g,w,N){this._reactName=r,this._targetInst=g,this.type=o,this.nativeEvent=w,this.target=N,this.currentTarget=null;for(var z in e)e.hasOwnProperty(z)&&(r=e[z],this[z]=r?r(w):w[z]);return this.isDefaultPrevented=(w.defaultPrevented!=null?w.defaultPrevented:w.returnValue===!1)?el:Pp,this.isPropagationStopped=Pp,this}return f(i.prototype,{preventDefault:function(){this.defaultPrevented=!0;var r=this.nativeEvent;r&&(r.preventDefault?r.preventDefault():typeof r.returnValue!="unknown"&&(r.returnValue=!1),this.isDefaultPrevented=el)},stopPropagation:function(){var r=this.nativeEvent;r&&(r.stopPropagation?r.stopPropagation():typeof r.cancelBubble!="unknown"&&(r.cancelBubble=!0),this.isPropagationStopped=el)},persist:function(){},isPersistent:el}),i}var Wn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},tl=Us(Wn),Ea=f({},Wn,{view:0,detail:0}),$b=Us(Ea),mu,yu,ka,sl=f({},Ea,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Su,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==ka&&(ka&&e.type==="mousemove"?(mu=e.screenX-ka.screenX,yu=e.screenY-ka.screenY):yu=mu=0,ka=e),mu)},movementY:function(e){return"movementY"in e?e.movementY:yu}}),Up=Us(sl),Pb=f({},sl,{dataTransfer:0}),Ub=Us(Pb),Fb=f({},Ea,{relatedTarget:0}),bu=Us(Fb),qb=f({},Wn,{animationName:0,elapsedTime:0,pseudoElement:0}),Wb=Us(qb),Gb=f({},Wn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),Vb=Us(Gb),Yb=f({},Wn,{data:0}),Fp=Us(Yb),Kb={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},Xb={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Jb={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function Zb(e){var i=this.nativeEvent;return i.getModifierState?i.getModifierState(e):(e=Jb[e])?!!i[e]:!1}function Su(){return Zb}var Qb=f({},Ea,{key:function(e){if(e.key){var i=Kb[e.key]||e.key;if(i!=="Unidentified")return i}return e.type==="keypress"?(e=Qo(e),e===13?"Enter":String.fromCharCode(e)):e.type==="keydown"||e.type==="keyup"?Xb[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Su,charCode:function(e){return e.type==="keypress"?Qo(e):0},keyCode:function(e){return e.type==="keydown"||e.type==="keyup"?e.keyCode:0},which:function(e){return e.type==="keypress"?Qo(e):e.type==="keydown"||e.type==="keyup"?e.keyCode:0}}),eS=Us(Qb),tS=f({},sl,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),qp=Us(tS),sS=f({},Ea,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Su}),iS=Us(sS),nS=f({},Wn,{propertyName:0,elapsedTime:0,pseudoElement:0}),rS=Us(nS),aS=f({},sl,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),oS=Us(aS),lS=f({},Wn,{newState:0,oldState:0}),cS=Us(lS),uS=[9,13,27,32],wu=Ui&&"CompositionEvent"in window,Ta=null;Ui&&"documentMode"in document&&(Ta=document.documentMode);var hS=Ui&&"TextEvent"in window&&!Ta,Wp=Ui&&(!wu||Ta&&8<Ta&&11>=Ta),Gp=" ",Vp=!1;function Yp(e,i){switch(e){case"keyup":return uS.indexOf(i.keyCode)!==-1;case"keydown":return i.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Kp(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var kr=!1;function dS(e,i){switch(e){case"compositionend":return Kp(i);case"keypress":return i.which!==32?null:(Vp=!0,Gp);case"textInput":return e=i.data,e===Gp&&Vp?null:e;default:return null}}function fS(e,i){if(kr)return e==="compositionend"||!wu&&Yp(e,i)?(e=$p(),Zo=gu=gn=null,kr=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(i.ctrlKey||i.altKey||i.metaKey)||i.ctrlKey&&i.altKey){if(i.char&&1<i.char.length)return i.char;if(i.which)return String.fromCharCode(i.which)}return null;case"compositionend":return Wp&&i.locale!=="ko"?null:i.data;default:return null}}var pS={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Xp(e){var i=e&&e.nodeName&&e.nodeName.toLowerCase();return i==="input"?!!pS[e.type]:i==="textarea"}function Jp(e,i,r,o){Cr?Er?Er.push(o):Er=[o]:Cr=o,i=Wl(i,"onChange"),0<i.length&&(r=new tl("onChange","change",null,r,o),e.push({event:r,listeners:i}))}var Aa=null,Ra=null;function vS(e){Ng(e,0)}function il(e){var i=rs(e);if(jp(i))return e}function Zp(e,i){if(e==="change")return i}var Qp=!1;if(Ui){var xu;if(Ui){var Cu="oninput"in document;if(!Cu){var ev=document.createElement("div");ev.setAttribute("oninput","return;"),Cu=typeof ev.oninput=="function"}xu=Cu}else xu=!1;Qp=xu&&(!document.documentMode||9<document.documentMode)}function tv(){Aa&&(Aa.detachEvent("onpropertychange",sv),Ra=Aa=null)}function sv(e){if(e.propertyName==="value"&&il(Ra)){var i=[];Jp(i,Ra,e,pu(e)),Ip(vS,i)}}function _S(e,i,r){e==="focusin"?(tv(),Aa=i,Ra=r,Aa.attachEvent("onpropertychange",sv)):e==="focusout"&&tv()}function gS(e){if(e==="selectionchange"||e==="keyup"||e==="keydown")return il(Ra)}function mS(e,i){if(e==="click")return il(i)}function yS(e,i){if(e==="input"||e==="change")return il(i)}function bS(e,i){return e===i&&(e!==0||1/e===1/i)||e!==e&&i!==i}var Js=typeof Object.is=="function"?Object.is:bS;function Ma(e,i){if(Js(e,i))return!0;if(typeof e!="object"||e===null||typeof i!="object"||i===null)return!1;var r=Object.keys(e),o=Object.keys(i);if(r.length!==o.length)return!1;for(o=0;o<r.length;o++){var g=r[o];if(!Ue.call(i,g)||!Js(e[g],i[g]))return!1}return!0}function iv(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function nv(e,i){var r=iv(e);e=0;for(var o;r;){if(r.nodeType===3){if(o=e+r.textContent.length,e<=i&&o>=i)return{node:r,offset:i-e};e=o}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=iv(r)}}function rv(e,i){return e&&i?e===i?!0:e&&e.nodeType===3?!1:i&&i.nodeType===3?rv(e,i.parentNode):"contains"in e?e.contains(i):e.compareDocumentPosition?!!(e.compareDocumentPosition(i)&16):!1:!1}function av(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var i=Xo(e.document);i instanceof e.HTMLIFrameElement;){try{var r=typeof i.contentWindow.location.href=="string"}catch{r=!1}if(r)e=i.contentWindow;else break;i=Xo(e.document)}return i}function Eu(e){var i=e&&e.nodeName&&e.nodeName.toLowerCase();return i&&(i==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||i==="textarea"||e.contentEditable==="true")}var SS=Ui&&"documentMode"in document&&11>=document.documentMode,Tr=null,ku=null,Da=null,Tu=!1;function ov(e,i,r){var o=r.window===r?r.document:r.nodeType===9?r:r.ownerDocument;Tu||Tr==null||Tr!==Xo(o)||(o=Tr,"selectionStart"in o&&Eu(o)?o={start:o.selectionStart,end:o.selectionEnd}:(o=(o.ownerDocument&&o.ownerDocument.defaultView||window).getSelection(),o={anchorNode:o.anchorNode,anchorOffset:o.anchorOffset,focusNode:o.focusNode,focusOffset:o.focusOffset}),Da&&Ma(Da,o)||(Da=o,o=Wl(ku,"onSelect"),0<o.length&&(i=new tl("onSelect","select",null,i,r),e.push({event:i,listeners:o}),i.target=Tr)))}function Gn(e,i){var r={};return r[e.toLowerCase()]=i.toLowerCase(),r["Webkit"+e]="webkit"+i,r["Moz"+e]="moz"+i,r}var Ar={animationend:Gn("Animation","AnimationEnd"),animationiteration:Gn("Animation","AnimationIteration"),animationstart:Gn("Animation","AnimationStart"),transitionrun:Gn("Transition","TransitionRun"),transitionstart:Gn("Transition","TransitionStart"),transitioncancel:Gn("Transition","TransitionCancel"),transitionend:Gn("Transition","TransitionEnd")},Au={},lv={};Ui&&(lv=document.createElement("div").style,"AnimationEvent"in window||(delete Ar.animationend.animation,delete Ar.animationiteration.animation,delete Ar.animationstart.animation),"TransitionEvent"in window||delete Ar.transitionend.transition);function Vn(e){if(Au[e])return Au[e];if(!Ar[e])return e;var i=Ar[e],r;for(r in i)if(i.hasOwnProperty(r)&&r in lv)return Au[e]=i[r];return e}var cv=Vn("animationend"),uv=Vn("animationiteration"),hv=Vn("animationstart"),wS=Vn("transitionrun"),xS=Vn("transitionstart"),CS=Vn("transitioncancel"),dv=Vn("transitionend"),fv=new Map,Ru="abort auxClick beforeToggle cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");Ru.push("scrollEnd");function ki(e,i){fv.set(e,i),He(i,[e])}var nl=typeof reportError=="function"?reportError:function(e){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var i=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof e=="object"&&e!==null&&typeof e.message=="string"?String(e.message):String(e),error:e});if(!window.dispatchEvent(i))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",e);return}console.error(e)},ui=[],Rr=0,Mu=0;function rl(){for(var e=Rr,i=Mu=Rr=0;i<e;){var r=ui[i];ui[i++]=null;var o=ui[i];ui[i++]=null;var g=ui[i];ui[i++]=null;var w=ui[i];if(ui[i++]=null,o!==null&&g!==null){var N=o.pending;N===null?g.next=g:(g.next=N.next,N.next=g),o.pending=g}w!==0&&pv(r,g,w)}}function al(e,i,r,o){ui[Rr++]=e,ui[Rr++]=i,ui[Rr++]=r,ui[Rr++]=o,Mu|=o,e.lanes|=o,e=e.alternate,e!==null&&(e.lanes|=o)}function Du(e,i,r,o){return al(e,i,r,o),ol(e)}function Yn(e,i){return al(e,null,null,i),ol(e)}function pv(e,i,r){e.lanes|=r;var o=e.alternate;o!==null&&(o.lanes|=r);for(var g=!1,w=e.return;w!==null;)w.childLanes|=r,o=w.alternate,o!==null&&(o.childLanes|=r),w.tag===22&&(e=w.stateNode,e===null||e._visibility&1||(g=!0)),e=w,w=w.return;return e.tag===3?(w=e.stateNode,g&&i!==null&&(g=31-Yt(r),e=w.hiddenUpdates,o=e[g],o===null?e[g]=[i]:o.push(i),i.lane=r|536870912),w):null}function ol(e){if(50<Qa)throw Qa=0,$h=null,Error(a(185));for(var i=e.return;i!==null;)e=i,i=e.return;return e.tag===3?e.stateNode:null}var Mr={};function ES(e,i,r,o){this.tag=e,this.key=r,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.refCleanup=this.ref=null,this.pendingProps=i,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=o,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Zs(e,i,r,o){return new ES(e,i,r,o)}function ju(e){return e=e.prototype,!(!e||!e.isReactComponent)}function Fi(e,i){var r=e.alternate;return r===null?(r=Zs(e.tag,i,e.key,e.mode),r.elementType=e.elementType,r.type=e.type,r.stateNode=e.stateNode,r.alternate=e,e.alternate=r):(r.pendingProps=i,r.type=e.type,r.flags=0,r.subtreeFlags=0,r.deletions=null),r.flags=e.flags&65011712,r.childLanes=e.childLanes,r.lanes=e.lanes,r.child=e.child,r.memoizedProps=e.memoizedProps,r.memoizedState=e.memoizedState,r.updateQueue=e.updateQueue,i=e.dependencies,r.dependencies=i===null?null:{lanes:i.lanes,firstContext:i.firstContext},r.sibling=e.sibling,r.index=e.index,r.ref=e.ref,r.refCleanup=e.refCleanup,r}function vv(e,i){e.flags&=65011714;var r=e.alternate;return r===null?(e.childLanes=0,e.lanes=i,e.child=null,e.subtreeFlags=0,e.memoizedProps=null,e.memoizedState=null,e.updateQueue=null,e.dependencies=null,e.stateNode=null):(e.childLanes=r.childLanes,e.lanes=r.lanes,e.child=r.child,e.subtreeFlags=0,e.deletions=null,e.memoizedProps=r.memoizedProps,e.memoizedState=r.memoizedState,e.updateQueue=r.updateQueue,e.type=r.type,i=r.dependencies,e.dependencies=i===null?null:{lanes:i.lanes,firstContext:i.firstContext}),e}function ll(e,i,r,o,g,w){var N=0;if(o=e,typeof e=="function")ju(e)&&(N=1);else if(typeof e=="string")N=Mw(e,r,te.current)?26:e==="html"||e==="head"||e==="body"?27:5;else e:switch(e){case D:return e=Zs(31,r,i,g),e.elementType=D,e.lanes=w,e;case E:return Kn(r.children,g,w,i);case m:N=8,g|=24;break;case S:return e=Zs(12,r,i,g|2),e.elementType=S,e.lanes=w,e;case R:return e=Zs(13,r,i,g),e.elementType=R,e.lanes=w,e;case M:return e=Zs(19,r,i,g),e.elementType=M,e.lanes=w,e;default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case y:N=10;break e;case _:N=9;break e;case k:N=11;break e;case j:N=14;break e;case T:N=16,o=null;break e}N=29,r=Error(a(130,e===null?"null":typeof e,"")),o=null}return i=Zs(N,r,i,g),i.elementType=e,i.type=o,i.lanes=w,i}function Kn(e,i,r,o){return e=Zs(7,e,o,i),e.lanes=r,e}function Nu(e,i,r){return e=Zs(6,e,null,i),e.lanes=r,e}function _v(e){var i=Zs(18,null,null,0);return i.stateNode=e,i}function Lu(e,i,r){return i=Zs(4,e.children!==null?e.children:[],e.key,i),i.lanes=r,i.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},i}var gv=new WeakMap;function hi(e,i){if(typeof e=="object"&&e!==null){var r=gv.get(e);return r!==void 0?r:(i={value:e,source:i,stack:zt(i)},gv.set(e,i),i)}return{value:e,source:i,stack:zt(i)}}var Dr=[],jr=0,cl=null,ja=0,di=[],fi=0,mn=null,ji=1,Ni="";function qi(e,i){Dr[jr++]=ja,Dr[jr++]=cl,cl=e,ja=i}function mv(e,i,r){di[fi++]=ji,di[fi++]=Ni,di[fi++]=mn,mn=e;var o=ji;e=Ni;var g=32-Yt(o)-1;o&=~(1<<g),r+=1;var w=32-Yt(i)+g;if(30<w){var N=g-g%5;w=(o&(1<<N)-1).toString(32),o>>=N,g-=N,ji=1<<32-Yt(i)+g|r<<g|o,Ni=w+e}else ji=1<<w|r<<g|o,Ni=e}function Ou(e){e.return!==null&&(qi(e,1),mv(e,1,0))}function Bu(e){for(;e===cl;)cl=Dr[--jr],Dr[jr]=null,ja=Dr[--jr],Dr[jr]=null;for(;e===mn;)mn=di[--fi],di[fi]=null,Ni=di[--fi],di[fi]=null,ji=di[--fi],di[fi]=null}function yv(e,i){di[fi++]=ji,di[fi++]=Ni,di[fi++]=mn,ji=i.id,Ni=i.overflow,mn=e}var xs=null,$t=null,pt=!1,yn=null,pi=!1,Hu=Error(a(519));function bn(e){var i=Error(a(418,1<arguments.length&&arguments[1]!==void 0&&arguments[1]?"text":"HTML",""));throw Na(hi(i,e)),Hu}function bv(e){var i=e.stateNode,r=e.type,o=e.memoizedProps;switch(i[ut]=e,i[hs]=o,r){case"dialog":lt("cancel",i),lt("close",i);break;case"iframe":case"object":case"embed":lt("load",i);break;case"video":case"audio":for(r=0;r<to.length;r++)lt(to[r],i);break;case"source":lt("error",i);break;case"img":case"image":case"link":lt("error",i),lt("load",i);break;case"details":lt("toggle",i);break;case"input":lt("invalid",i),Np(i,o.value,o.defaultValue,o.checked,o.defaultChecked,o.type,o.name,!0);break;case"select":lt("invalid",i);break;case"textarea":lt("invalid",i),Op(i,o.value,o.defaultValue,o.children)}r=o.children,typeof r!="string"&&typeof r!="number"&&typeof r!="bigint"||i.textContent===""+r||o.suppressHydrationWarning===!0||Hg(i.textContent,r)?(o.popover!=null&&(lt("beforetoggle",i),lt("toggle",i)),o.onScroll!=null&&lt("scroll",i),o.onScrollEnd!=null&&lt("scrollend",i),o.onClick!=null&&(i.onclick=Pi),i=!0):i=!1,i||bn(e,!0)}function Sv(e){for(xs=e.return;xs;)switch(xs.tag){case 5:case 31:case 13:pi=!1;return;case 27:case 3:pi=!0;return;default:xs=xs.return}}function Nr(e){if(e!==xs)return!1;if(!pt)return Sv(e),pt=!0,!1;var i=e.tag,r;if((r=i!==3&&i!==27)&&((r=i===5)&&(r=e.type,r=!(r!=="form"&&r!=="button")||td(e.type,e.memoizedProps)),r=!r),r&&$t&&bn(e),Sv(e),i===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(a(317));$t=Gg(e)}else if(i===31){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(a(317));$t=Gg(e)}else i===27?(i=$t,Ln(e.type)?(e=ad,ad=null,$t=e):$t=i):$t=xs?_i(e.stateNode.nextSibling):null;return!0}function Xn(){$t=xs=null,pt=!1}function zu(){var e=yn;return e!==null&&(Gs===null?Gs=e:Gs.push.apply(Gs,e),yn=null),e}function Na(e){yn===null?yn=[e]:yn.push(e)}var Iu=L(null),Jn=null,Wi=null;function Sn(e,i,r){V(Iu,i._currentValue),i._currentValue=r}function Gi(e){e._currentValue=Iu.current,B(Iu)}function $u(e,i,r){for(;e!==null;){var o=e.alternate;if((e.childLanes&i)!==i?(e.childLanes|=i,o!==null&&(o.childLanes|=i)):o!==null&&(o.childLanes&i)!==i&&(o.childLanes|=i),e===r)break;e=e.return}}function Pu(e,i,r,o){var g=e.child;for(g!==null&&(g.return=e);g!==null;){var w=g.dependencies;if(w!==null){var N=g.child;w=w.firstContext;e:for(;w!==null;){var z=w;w=g;for(var X=0;X<i.length;X++)if(z.context===i[X]){w.lanes|=r,z=w.alternate,z!==null&&(z.lanes|=r),$u(w.return,r,e),o||(N=null);break e}w=z.next}}else if(g.tag===18){if(N=g.return,N===null)throw Error(a(341));N.lanes|=r,w=N.alternate,w!==null&&(w.lanes|=r),$u(N,r,e),N=null}else N=g.child;if(N!==null)N.return=g;else for(N=g;N!==null;){if(N===e){N=null;break}if(g=N.sibling,g!==null){g.return=N.return,N=g;break}N=N.return}g=N}}function Lr(e,i,r,o){e=null;for(var g=i,w=!1;g!==null;){if(!w){if((g.flags&524288)!==0)w=!0;else if((g.flags&262144)!==0)break}if(g.tag===10){var N=g.alternate;if(N===null)throw Error(a(387));if(N=N.memoizedProps,N!==null){var z=g.type;Js(g.pendingProps.value,N.value)||(e!==null?e.push(z):e=[z])}}else if(g===K.current){if(N=g.alternate,N===null)throw Error(a(387));N.memoizedState.memoizedState!==g.memoizedState.memoizedState&&(e!==null?e.push(ao):e=[ao])}g=g.return}e!==null&&Pu(i,e,r,o),i.flags|=262144}function ul(e){for(e=e.firstContext;e!==null;){if(!Js(e.context._currentValue,e.memoizedValue))return!0;e=e.next}return!1}function Zn(e){Jn=e,Wi=null,e=e.dependencies,e!==null&&(e.firstContext=null)}function Cs(e){return wv(Jn,e)}function hl(e,i){return Jn===null&&Zn(e),wv(e,i)}function wv(e,i){var r=i._currentValue;if(i={context:i,memoizedValue:r,next:null},Wi===null){if(e===null)throw Error(a(308));Wi=i,e.dependencies={lanes:0,firstContext:i},e.flags|=524288}else Wi=Wi.next=i;return r}var kS=typeof AbortController<"u"?AbortController:function(){var e=[],i=this.signal={aborted:!1,addEventListener:function(r,o){e.push(o)}};this.abort=function(){i.aborted=!0,e.forEach(function(r){return r()})}},TS=s.unstable_scheduleCallback,AS=s.unstable_NormalPriority,fs={$$typeof:y,Consumer:null,Provider:null,_currentValue:null,_currentValue2:null,_threadCount:0};function Uu(){return{controller:new kS,data:new Map,refCount:0}}function La(e){e.refCount--,e.refCount===0&&TS(AS,function(){e.controller.abort()})}var Oa=null,Fu=0,Or=0,Br=null;function RS(e,i){if(Oa===null){var r=Oa=[];Fu=0,Or=Gh(),Br={status:"pending",value:void 0,then:function(o){r.push(o)}}}return Fu++,i.then(xv,xv),i}function xv(){if(--Fu===0&&Oa!==null){Br!==null&&(Br.status="fulfilled");var e=Oa;Oa=null,Or=0,Br=null;for(var i=0;i<e.length;i++)(0,e[i])()}}function MS(e,i){var r=[],o={status:"pending",value:null,reason:null,then:function(g){r.push(g)}};return e.then(function(){o.status="fulfilled",o.value=i;for(var g=0;g<r.length;g++)(0,r[g])(i)},function(g){for(o.status="rejected",o.reason=g,g=0;g<r.length;g++)(0,r[g])(void 0)}),o}var Cv=q.S;q.S=function(e,i){og=ft(),typeof i=="object"&&i!==null&&typeof i.then=="function"&&RS(e,i),Cv!==null&&Cv(e,i)};var Qn=L(null);function qu(){var e=Qn.current;return e!==null?e:Ot.pooledCache}function dl(e,i){i===null?V(Qn,Qn.current):V(Qn,i.pool)}function Ev(){var e=qu();return e===null?null:{parent:fs._currentValue,pool:e}}var Hr=Error(a(460)),Wu=Error(a(474)),fl=Error(a(542)),pl={then:function(){}};function kv(e){return e=e.status,e==="fulfilled"||e==="rejected"}function Tv(e,i,r){switch(r=e[r],r===void 0?e.push(i):r!==i&&(i.then(Pi,Pi),i=r),i.status){case"fulfilled":return i.value;case"rejected":throw e=i.reason,Rv(e),e;default:if(typeof i.status=="string")i.then(Pi,Pi);else{if(e=Ot,e!==null&&100<e.shellSuspendCounter)throw Error(a(482));e=i,e.status="pending",e.then(function(o){if(i.status==="pending"){var g=i;g.status="fulfilled",g.value=o}},function(o){if(i.status==="pending"){var g=i;g.status="rejected",g.reason=o}})}switch(i.status){case"fulfilled":return i.value;case"rejected":throw e=i.reason,Rv(e),e}throw tr=i,Hr}}function er(e){try{var i=e._init;return i(e._payload)}catch(r){throw r!==null&&typeof r=="object"&&typeof r.then=="function"?(tr=r,Hr):r}}var tr=null;function Av(){if(tr===null)throw Error(a(459));var e=tr;return tr=null,e}function Rv(e){if(e===Hr||e===fl)throw Error(a(483))}var zr=null,Ba=0;function vl(e){var i=Ba;return Ba+=1,zr===null&&(zr=[]),Tv(zr,e,i)}function Ha(e,i){i=i.props.ref,e.ref=i!==void 0?i:null}function _l(e,i){throw i.$$typeof===x?Error(a(525)):(e=Object.prototype.toString.call(i),Error(a(31,e==="[object Object]"?"object with keys {"+Object.keys(i).join(", ")+"}":e)))}function Mv(e){function i(se,Q){if(e){var ne=se.deletions;ne===null?(se.deletions=[Q],se.flags|=16):ne.push(Q)}}function r(se,Q){if(!e)return null;for(;Q!==null;)i(se,Q),Q=Q.sibling;return null}function o(se){for(var Q=new Map;se!==null;)se.key!==null?Q.set(se.key,se):Q.set(se.index,se),se=se.sibling;return Q}function g(se,Q){return se=Fi(se,Q),se.index=0,se.sibling=null,se}function w(se,Q,ne){return se.index=ne,e?(ne=se.alternate,ne!==null?(ne=ne.index,ne<Q?(se.flags|=67108866,Q):ne):(se.flags|=67108866,Q)):(se.flags|=1048576,Q)}function N(se){return e&&se.alternate===null&&(se.flags|=67108866),se}function z(se,Q,ne,ve){return Q===null||Q.tag!==6?(Q=Nu(ne,se.mode,ve),Q.return=se,Q):(Q=g(Q,ne),Q.return=se,Q)}function X(se,Q,ne,ve){var Pe=ne.type;return Pe===E?pe(se,Q,ne.props.children,ve,ne.key):Q!==null&&(Q.elementType===Pe||typeof Pe=="object"&&Pe!==null&&Pe.$$typeof===T&&er(Pe)===Q.type)?(Q=g(Q,ne.props),Ha(Q,ne),Q.return=se,Q):(Q=ll(ne.type,ne.key,ne.props,null,se.mode,ve),Ha(Q,ne),Q.return=se,Q)}function re(se,Q,ne,ve){return Q===null||Q.tag!==4||Q.stateNode.containerInfo!==ne.containerInfo||Q.stateNode.implementation!==ne.implementation?(Q=Lu(ne,se.mode,ve),Q.return=se,Q):(Q=g(Q,ne.children||[]),Q.return=se,Q)}function pe(se,Q,ne,ve,Pe){return Q===null||Q.tag!==7?(Q=Kn(ne,se.mode,ve,Pe),Q.return=se,Q):(Q=g(Q,ne),Q.return=se,Q)}function ye(se,Q,ne){if(typeof Q=="string"&&Q!==""||typeof Q=="number"||typeof Q=="bigint")return Q=Nu(""+Q,se.mode,ne),Q.return=se,Q;if(typeof Q=="object"&&Q!==null){switch(Q.$$typeof){case C:return ne=ll(Q.type,Q.key,Q.props,null,se.mode,ne),Ha(ne,Q),ne.return=se,ne;case A:return Q=Lu(Q,se.mode,ne),Q.return=se,Q;case T:return Q=er(Q),ye(se,Q,ne)}if(J(Q)||W(Q))return Q=Kn(Q,se.mode,ne,null),Q.return=se,Q;if(typeof Q.then=="function")return ye(se,vl(Q),ne);if(Q.$$typeof===y)return ye(se,hl(se,Q),ne);_l(se,Q)}return null}function oe(se,Q,ne,ve){var Pe=Q!==null?Q.key:null;if(typeof ne=="string"&&ne!==""||typeof ne=="number"||typeof ne=="bigint")return Pe!==null?null:z(se,Q,""+ne,ve);if(typeof ne=="object"&&ne!==null){switch(ne.$$typeof){case C:return ne.key===Pe?X(se,Q,ne,ve):null;case A:return ne.key===Pe?re(se,Q,ne,ve):null;case T:return ne=er(ne),oe(se,Q,ne,ve)}if(J(ne)||W(ne))return Pe!==null?null:pe(se,Q,ne,ve,null);if(typeof ne.then=="function")return oe(se,Q,vl(ne),ve);if(ne.$$typeof===y)return oe(se,Q,hl(se,ne),ve);_l(se,ne)}return null}function he(se,Q,ne,ve,Pe){if(typeof ve=="string"&&ve!==""||typeof ve=="number"||typeof ve=="bigint")return se=se.get(ne)||null,z(Q,se,""+ve,Pe);if(typeof ve=="object"&&ve!==null){switch(ve.$$typeof){case C:return se=se.get(ve.key===null?ne:ve.key)||null,X(Q,se,ve,Pe);case A:return se=se.get(ve.key===null?ne:ve.key)||null,re(Q,se,ve,Pe);case T:return ve=er(ve),he(se,Q,ne,ve,Pe)}if(J(ve)||W(ve))return se=se.get(ne)||null,pe(Q,se,ve,Pe,null);if(typeof ve.then=="function")return he(se,Q,ne,vl(ve),Pe);if(ve.$$typeof===y)return he(se,Q,ne,hl(Q,ve),Pe);_l(Q,ve)}return null}function je(se,Q,ne,ve){for(var Pe=null,_t=null,Be=Q,it=Q=0,dt=null;Be!==null&&it<ne.length;it++){Be.index>it?(dt=Be,Be=null):dt=Be.sibling;var gt=oe(se,Be,ne[it],ve);if(gt===null){Be===null&&(Be=dt);break}e&&Be&&gt.alternate===null&&i(se,Be),Q=w(gt,Q,it),_t===null?Pe=gt:_t.sibling=gt,_t=gt,Be=dt}if(it===ne.length)return r(se,Be),pt&&qi(se,it),Pe;if(Be===null){for(;it<ne.length;it++)Be=ye(se,ne[it],ve),Be!==null&&(Q=w(Be,Q,it),_t===null?Pe=Be:_t.sibling=Be,_t=Be);return pt&&qi(se,it),Pe}for(Be=o(Be);it<ne.length;it++)dt=he(Be,se,it,ne[it],ve),dt!==null&&(e&&dt.alternate!==null&&Be.delete(dt.key===null?it:dt.key),Q=w(dt,Q,it),_t===null?Pe=dt:_t.sibling=dt,_t=dt);return e&&Be.forEach(function(In){return i(se,In)}),pt&&qi(se,it),Pe}function Ve(se,Q,ne,ve){if(ne==null)throw Error(a(151));for(var Pe=null,_t=null,Be=Q,it=Q=0,dt=null,gt=ne.next();Be!==null&&!gt.done;it++,gt=ne.next()){Be.index>it?(dt=Be,Be=null):dt=Be.sibling;var In=oe(se,Be,gt.value,ve);if(In===null){Be===null&&(Be=dt);break}e&&Be&&In.alternate===null&&i(se,Be),Q=w(In,Q,it),_t===null?Pe=In:_t.sibling=In,_t=In,Be=dt}if(gt.done)return r(se,Be),pt&&qi(se,it),Pe;if(Be===null){for(;!gt.done;it++,gt=ne.next())gt=ye(se,gt.value,ve),gt!==null&&(Q=w(gt,Q,it),_t===null?Pe=gt:_t.sibling=gt,_t=gt);return pt&&qi(se,it),Pe}for(Be=o(Be);!gt.done;it++,gt=ne.next())gt=he(Be,se,it,gt.value,ve),gt!==null&&(e&&gt.alternate!==null&&Be.delete(gt.key===null?it:gt.key),Q=w(gt,Q,it),_t===null?Pe=gt:_t.sibling=gt,_t=gt);return e&&Be.forEach(function(Pw){return i(se,Pw)}),pt&&qi(se,it),Pe}function Mt(se,Q,ne,ve){if(typeof ne=="object"&&ne!==null&&ne.type===E&&ne.key===null&&(ne=ne.props.children),typeof ne=="object"&&ne!==null){switch(ne.$$typeof){case C:e:{for(var Pe=ne.key;Q!==null;){if(Q.key===Pe){if(Pe=ne.type,Pe===E){if(Q.tag===7){r(se,Q.sibling),ve=g(Q,ne.props.children),ve.return=se,se=ve;break e}}else if(Q.elementType===Pe||typeof Pe=="object"&&Pe!==null&&Pe.$$typeof===T&&er(Pe)===Q.type){r(se,Q.sibling),ve=g(Q,ne.props),Ha(ve,ne),ve.return=se,se=ve;break e}r(se,Q);break}else i(se,Q);Q=Q.sibling}ne.type===E?(ve=Kn(ne.props.children,se.mode,ve,ne.key),ve.return=se,se=ve):(ve=ll(ne.type,ne.key,ne.props,null,se.mode,ve),Ha(ve,ne),ve.return=se,se=ve)}return N(se);case A:e:{for(Pe=ne.key;Q!==null;){if(Q.key===Pe)if(Q.tag===4&&Q.stateNode.containerInfo===ne.containerInfo&&Q.stateNode.implementation===ne.implementation){r(se,Q.sibling),ve=g(Q,ne.children||[]),ve.return=se,se=ve;break e}else{r(se,Q);break}else i(se,Q);Q=Q.sibling}ve=Lu(ne,se.mode,ve),ve.return=se,se=ve}return N(se);case T:return ne=er(ne),Mt(se,Q,ne,ve)}if(J(ne))return je(se,Q,ne,ve);if(W(ne)){if(Pe=W(ne),typeof Pe!="function")throw Error(a(150));return ne=Pe.call(ne),Ve(se,Q,ne,ve)}if(typeof ne.then=="function")return Mt(se,Q,vl(ne),ve);if(ne.$$typeof===y)return Mt(se,Q,hl(se,ne),ve);_l(se,ne)}return typeof ne=="string"&&ne!==""||typeof ne=="number"||typeof ne=="bigint"?(ne=""+ne,Q!==null&&Q.tag===6?(r(se,Q.sibling),ve=g(Q,ne),ve.return=se,se=ve):(r(se,Q),ve=Nu(ne,se.mode,ve),ve.return=se,se=ve),N(se)):r(se,Q)}return function(se,Q,ne,ve){try{Ba=0;var Pe=Mt(se,Q,ne,ve);return zr=null,Pe}catch(Be){if(Be===Hr||Be===fl)throw Be;var _t=Zs(29,Be,null,se.mode);return _t.lanes=ve,_t.return=se,_t}finally{}}}var sr=Mv(!0),Dv=Mv(!1),wn=!1;function Gu(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Vu(e,i){e=e.updateQueue,i.updateQueue===e&&(i.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function xn(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Cn(e,i,r){var o=e.updateQueue;if(o===null)return null;if(o=o.shared,(mt&2)!==0){var g=o.pending;return g===null?i.next=i:(i.next=g.next,g.next=i),o.pending=i,i=ol(e),pv(e,null,r),i}return al(e,o,i,r),ol(e)}function za(e,i,r){if(i=i.updateQueue,i!==null&&(i=i.shared,(r&4194048)!==0)){var o=i.lanes;o&=e.pendingLanes,r|=o,i.lanes=r,st(e,r)}}function Yu(e,i){var r=e.updateQueue,o=e.alternate;if(o!==null&&(o=o.updateQueue,r===o)){var g=null,w=null;if(r=r.firstBaseUpdate,r!==null){do{var N={lane:r.lane,tag:r.tag,payload:r.payload,callback:null,next:null};w===null?g=w=N:w=w.next=N,r=r.next}while(r!==null);w===null?g=w=i:w=w.next=i}else g=w=i;r={baseState:o.baseState,firstBaseUpdate:g,lastBaseUpdate:w,shared:o.shared,callbacks:o.callbacks},e.updateQueue=r;return}e=r.lastBaseUpdate,e===null?r.firstBaseUpdate=i:e.next=i,r.lastBaseUpdate=i}var Ku=!1;function Ia(){if(Ku){var e=Br;if(e!==null)throw e}}function $a(e,i,r,o){Ku=!1;var g=e.updateQueue;wn=!1;var w=g.firstBaseUpdate,N=g.lastBaseUpdate,z=g.shared.pending;if(z!==null){g.shared.pending=null;var X=z,re=X.next;X.next=null,N===null?w=re:N.next=re,N=X;var pe=e.alternate;pe!==null&&(pe=pe.updateQueue,z=pe.lastBaseUpdate,z!==N&&(z===null?pe.firstBaseUpdate=re:z.next=re,pe.lastBaseUpdate=X))}if(w!==null){var ye=g.baseState;N=0,pe=re=X=null,z=w;do{var oe=z.lane&-536870913,he=oe!==z.lane;if(he?(ht&oe)===oe:(o&oe)===oe){oe!==0&&oe===Or&&(Ku=!0),pe!==null&&(pe=pe.next={lane:0,tag:z.tag,payload:z.payload,callback:null,next:null});e:{var je=e,Ve=z;oe=i;var Mt=r;switch(Ve.tag){case 1:if(je=Ve.payload,typeof je=="function"){ye=je.call(Mt,ye,oe);break e}ye=je;break e;case 3:je.flags=je.flags&-65537|128;case 0:if(je=Ve.payload,oe=typeof je=="function"?je.call(Mt,ye,oe):je,oe==null)break e;ye=f({},ye,oe);break e;case 2:wn=!0}}oe=z.callback,oe!==null&&(e.flags|=64,he&&(e.flags|=8192),he=g.callbacks,he===null?g.callbacks=[oe]:he.push(oe))}else he={lane:oe,tag:z.tag,payload:z.payload,callback:z.callback,next:null},pe===null?(re=pe=he,X=ye):pe=pe.next=he,N|=oe;if(z=z.next,z===null){if(z=g.shared.pending,z===null)break;he=z,z=he.next,he.next=null,g.lastBaseUpdate=he,g.shared.pending=null}}while(!0);pe===null&&(X=ye),g.baseState=X,g.firstBaseUpdate=re,g.lastBaseUpdate=pe,w===null&&(g.shared.lanes=0),Rn|=N,e.lanes=N,e.memoizedState=ye}}function jv(e,i){if(typeof e!="function")throw Error(a(191,e));e.call(i)}function Nv(e,i){var r=e.callbacks;if(r!==null)for(e.callbacks=null,e=0;e<r.length;e++)jv(r[e],i)}var Ir=L(null),gl=L(0);function Lv(e,i){e=tn,V(gl,e),V(Ir,i),tn=e|i.baseLanes}function Xu(){V(gl,tn),V(Ir,Ir.current)}function Ju(){tn=gl.current,B(Ir),B(gl)}var Qs=L(null),vi=null;function En(e){var i=e.alternate;V(as,as.current&1),V(Qs,e),vi===null&&(i===null||Ir.current!==null||i.memoizedState!==null)&&(vi=e)}function Zu(e){V(as,as.current),V(Qs,e),vi===null&&(vi=e)}function Ov(e){e.tag===22?(V(as,as.current),V(Qs,e),vi===null&&(vi=e)):kn()}function kn(){V(as,as.current),V(Qs,Qs.current)}function ei(e){B(Qs),vi===e&&(vi=null),B(as)}var as=L(0);function ml(e){for(var i=e;i!==null;){if(i.tag===13){var r=i.memoizedState;if(r!==null&&(r=r.dehydrated,r===null||nd(r)||rd(r)))return i}else if(i.tag===19&&(i.memoizedProps.revealOrder==="forwards"||i.memoizedProps.revealOrder==="backwards"||i.memoizedProps.revealOrder==="unstable_legacy-backwards"||i.memoizedProps.revealOrder==="together")){if((i.flags&128)!==0)return i}else if(i.child!==null){i.child.return=i,i=i.child;continue}if(i===e)break;for(;i.sibling===null;){if(i.return===null||i.return===e)return null;i=i.return}i.sibling.return=i.return,i=i.sibling}return null}var Vi=0,et=null,At=null,ps=null,yl=!1,$r=!1,ir=!1,bl=0,Pa=0,Pr=null,DS=0;function is(){throw Error(a(321))}function Qu(e,i){if(i===null)return!1;for(var r=0;r<i.length&&r<e.length;r++)if(!Js(e[r],i[r]))return!1;return!0}function eh(e,i,r,o,g,w){return Vi=w,et=i,i.memoizedState=null,i.updateQueue=null,i.lanes=0,q.H=e===null||e.memoizedState===null?m_:vh,ir=!1,w=r(o,g),ir=!1,$r&&(w=Hv(i,r,o,g)),Bv(e),w}function Bv(e){q.H=qa;var i=At!==null&&At.next!==null;if(Vi=0,ps=At=et=null,yl=!1,Pa=0,Pr=null,i)throw Error(a(300));e===null||vs||(e=e.dependencies,e!==null&&ul(e)&&(vs=!0))}function Hv(e,i,r,o){et=e;var g=0;do{if($r&&(Pr=null),Pa=0,$r=!1,25<=g)throw Error(a(301));if(g+=1,ps=At=null,e.updateQueue!=null){var w=e.updateQueue;w.lastEffect=null,w.events=null,w.stores=null,w.memoCache!=null&&(w.memoCache.index=0)}q.H=y_,w=i(r,o)}while($r);return w}function jS(){var e=q.H,i=e.useState()[0];return i=typeof i.then=="function"?Ua(i):i,e=e.useState()[0],(At!==null?At.memoizedState:null)!==e&&(et.flags|=1024),i}function th(){var e=bl!==0;return bl=0,e}function sh(e,i,r){i.updateQueue=e.updateQueue,i.flags&=-2053,e.lanes&=~r}function ih(e){if(yl){for(e=e.memoizedState;e!==null;){var i=e.queue;i!==null&&(i.pending=null),e=e.next}yl=!1}Vi=0,ps=At=et=null,$r=!1,Pa=bl=0,Pr=null}function Bs(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return ps===null?et.memoizedState=ps=e:ps=ps.next=e,ps}function os(){if(At===null){var e=et.alternate;e=e!==null?e.memoizedState:null}else e=At.next;var i=ps===null?et.memoizedState:ps.next;if(i!==null)ps=i,At=e;else{if(e===null)throw et.alternate===null?Error(a(467)):Error(a(310));At=e,e={memoizedState:At.memoizedState,baseState:At.baseState,baseQueue:At.baseQueue,queue:At.queue,next:null},ps===null?et.memoizedState=ps=e:ps=ps.next=e}return ps}function Sl(){return{lastEffect:null,events:null,stores:null,memoCache:null}}function Ua(e){var i=Pa;return Pa+=1,Pr===null&&(Pr=[]),e=Tv(Pr,e,i),i=et,(ps===null?i.memoizedState:ps.next)===null&&(i=i.alternate,q.H=i===null||i.memoizedState===null?m_:vh),e}function wl(e){if(e!==null&&typeof e=="object"){if(typeof e.then=="function")return Ua(e);if(e.$$typeof===y)return Cs(e)}throw Error(a(438,String(e)))}function nh(e){var i=null,r=et.updateQueue;if(r!==null&&(i=r.memoCache),i==null){var o=et.alternate;o!==null&&(o=o.updateQueue,o!==null&&(o=o.memoCache,o!=null&&(i={data:o.data.map(function(g){return g.slice()}),index:0})))}if(i==null&&(i={data:[],index:0}),r===null&&(r=Sl(),et.updateQueue=r),r.memoCache=i,r=i.data[i.index],r===void 0)for(r=i.data[i.index]=Array(e),o=0;o<e;o++)r[o]=H;return i.index++,r}function Yi(e,i){return typeof i=="function"?i(e):i}function xl(e){var i=os();return rh(i,At,e)}function rh(e,i,r){var o=e.queue;if(o===null)throw Error(a(311));o.lastRenderedReducer=r;var g=e.baseQueue,w=o.pending;if(w!==null){if(g!==null){var N=g.next;g.next=w.next,w.next=N}i.baseQueue=g=w,o.pending=null}if(w=e.baseState,g===null)e.memoizedState=w;else{i=g.next;var z=N=null,X=null,re=i,pe=!1;do{var ye=re.lane&-536870913;if(ye!==re.lane?(ht&ye)===ye:(Vi&ye)===ye){var oe=re.revertLane;if(oe===0)X!==null&&(X=X.next={lane:0,revertLane:0,gesture:null,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null}),ye===Or&&(pe=!0);else if((Vi&oe)===oe){re=re.next,oe===Or&&(pe=!0);continue}else ye={lane:0,revertLane:re.revertLane,gesture:null,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null},X===null?(z=X=ye,N=w):X=X.next=ye,et.lanes|=oe,Rn|=oe;ye=re.action,ir&&r(w,ye),w=re.hasEagerState?re.eagerState:r(w,ye)}else oe={lane:ye,revertLane:re.revertLane,gesture:re.gesture,action:re.action,hasEagerState:re.hasEagerState,eagerState:re.eagerState,next:null},X===null?(z=X=oe,N=w):X=X.next=oe,et.lanes|=ye,Rn|=ye;re=re.next}while(re!==null&&re!==i);if(X===null?N=w:X.next=z,!Js(w,e.memoizedState)&&(vs=!0,pe&&(r=Br,r!==null)))throw r;e.memoizedState=w,e.baseState=N,e.baseQueue=X,o.lastRenderedState=w}return g===null&&(o.lanes=0),[e.memoizedState,o.dispatch]}function ah(e){var i=os(),r=i.queue;if(r===null)throw Error(a(311));r.lastRenderedReducer=e;var o=r.dispatch,g=r.pending,w=i.memoizedState;if(g!==null){r.pending=null;var N=g=g.next;do w=e(w,N.action),N=N.next;while(N!==g);Js(w,i.memoizedState)||(vs=!0),i.memoizedState=w,i.baseQueue===null&&(i.baseState=w),r.lastRenderedState=w}return[w,o]}function zv(e,i,r){var o=et,g=os(),w=pt;if(w){if(r===void 0)throw Error(a(407));r=r()}else r=i();var N=!Js((At||g).memoizedState,r);if(N&&(g.memoizedState=r,vs=!0),g=g.queue,ch(Pv.bind(null,o,g,e),[e]),g.getSnapshot!==i||N||ps!==null&&ps.memoizedState.tag&1){if(o.flags|=2048,Ur(9,{destroy:void 0},$v.bind(null,o,g,r,i),null),Ot===null)throw Error(a(349));w||(Vi&127)!==0||Iv(o,i,r)}return r}function Iv(e,i,r){e.flags|=16384,e={getSnapshot:i,value:r},i=et.updateQueue,i===null?(i=Sl(),et.updateQueue=i,i.stores=[e]):(r=i.stores,r===null?i.stores=[e]:r.push(e))}function $v(e,i,r,o){i.value=r,i.getSnapshot=o,Uv(i)&&Fv(e)}function Pv(e,i,r){return r(function(){Uv(i)&&Fv(e)})}function Uv(e){var i=e.getSnapshot;e=e.value;try{var r=i();return!Js(e,r)}catch{return!0}}function Fv(e){var i=Yn(e,2);i!==null&&Vs(i,e,2)}function oh(e){var i=Bs();if(typeof e=="function"){var r=e;if(e=r(),ir){Vt(!0);try{r()}finally{Vt(!1)}}}return i.memoizedState=i.baseState=e,i.queue={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Yi,lastRenderedState:e},i}function qv(e,i,r,o){return e.baseState=r,rh(e,At,typeof o=="function"?o:Yi)}function NS(e,i,r,o,g){if(kl(e))throw Error(a(485));if(e=i.action,e!==null){var w={payload:g,action:e,next:null,isTransition:!0,status:"pending",value:null,reason:null,listeners:[],then:function(N){w.listeners.push(N)}};q.T!==null?r(!0):w.isTransition=!1,o(w),r=i.pending,r===null?(w.next=i.pending=w,Wv(i,w)):(w.next=r.next,i.pending=r.next=w)}}function Wv(e,i){var r=i.action,o=i.payload,g=e.state;if(i.isTransition){var w=q.T,N={};q.T=N;try{var z=r(g,o),X=q.S;X!==null&&X(N,z),Gv(e,i,z)}catch(re){lh(e,i,re)}finally{w!==null&&N.types!==null&&(w.types=N.types),q.T=w}}else try{w=r(g,o),Gv(e,i,w)}catch(re){lh(e,i,re)}}function Gv(e,i,r){r!==null&&typeof r=="object"&&typeof r.then=="function"?r.then(function(o){Vv(e,i,o)},function(o){return lh(e,i,o)}):Vv(e,i,r)}function Vv(e,i,r){i.status="fulfilled",i.value=r,Yv(i),e.state=r,i=e.pending,i!==null&&(r=i.next,r===i?e.pending=null:(r=r.next,i.next=r,Wv(e,r)))}function lh(e,i,r){var o=e.pending;if(e.pending=null,o!==null){o=o.next;do i.status="rejected",i.reason=r,Yv(i),i=i.next;while(i!==o)}e.action=null}function Yv(e){e=e.listeners;for(var i=0;i<e.length;i++)(0,e[i])()}function Kv(e,i){return i}function Xv(e,i){if(pt){var r=Ot.formState;if(r!==null){e:{var o=et;if(pt){if($t){t:{for(var g=$t,w=pi;g.nodeType!==8;){if(!w){g=null;break t}if(g=_i(g.nextSibling),g===null){g=null;break t}}w=g.data,g=w==="F!"||w==="F"?g:null}if(g){$t=_i(g.nextSibling),o=g.data==="F!";break e}}bn(o)}o=!1}o&&(i=r[0])}}return r=Bs(),r.memoizedState=r.baseState=i,o={pending:null,lanes:0,dispatch:null,lastRenderedReducer:Kv,lastRenderedState:i},r.queue=o,r=v_.bind(null,et,o),o.dispatch=r,o=oh(!1),w=ph.bind(null,et,!1,o.queue),o=Bs(),g={state:i,dispatch:null,action:e,pending:null},o.queue=g,r=NS.bind(null,et,g,w,r),g.dispatch=r,o.memoizedState=e,[i,r,!1]}function Jv(e){var i=os();return Zv(i,At,e)}function Zv(e,i,r){if(i=rh(e,i,Kv)[0],e=xl(Yi)[0],typeof i=="object"&&i!==null&&typeof i.then=="function")try{var o=Ua(i)}catch(N){throw N===Hr?fl:N}else o=i;i=os();var g=i.queue,w=g.dispatch;return r!==i.memoizedState&&(et.flags|=2048,Ur(9,{destroy:void 0},LS.bind(null,g,r),null)),[o,w,e]}function LS(e,i){e.action=i}function Qv(e){var i=os(),r=At;if(r!==null)return Zv(i,r,e);os(),i=i.memoizedState,r=os();var o=r.queue.dispatch;return r.memoizedState=e,[i,o,!1]}function Ur(e,i,r,o){return e={tag:e,create:r,deps:o,inst:i,next:null},i=et.updateQueue,i===null&&(i=Sl(),et.updateQueue=i),r=i.lastEffect,r===null?i.lastEffect=e.next=e:(o=r.next,r.next=e,e.next=o,i.lastEffect=e),e}function e_(){return os().memoizedState}function Cl(e,i,r,o){var g=Bs();et.flags|=e,g.memoizedState=Ur(1|i,{destroy:void 0},r,o===void 0?null:o)}function El(e,i,r,o){var g=os();o=o===void 0?null:o;var w=g.memoizedState.inst;At!==null&&o!==null&&Qu(o,At.memoizedState.deps)?g.memoizedState=Ur(i,w,r,o):(et.flags|=e,g.memoizedState=Ur(1|i,w,r,o))}function t_(e,i){Cl(8390656,8,e,i)}function ch(e,i){El(2048,8,e,i)}function OS(e){et.flags|=4;var i=et.updateQueue;if(i===null)i=Sl(),et.updateQueue=i,i.events=[e];else{var r=i.events;r===null?i.events=[e]:r.push(e)}}function s_(e){var i=os().memoizedState;return OS({ref:i,nextImpl:e}),function(){if((mt&2)!==0)throw Error(a(440));return i.impl.apply(void 0,arguments)}}function i_(e,i){return El(4,2,e,i)}function n_(e,i){return El(4,4,e,i)}function r_(e,i){if(typeof i=="function"){e=e();var r=i(e);return function(){typeof r=="function"?r():i(null)}}if(i!=null)return e=e(),i.current=e,function(){i.current=null}}function a_(e,i,r){r=r!=null?r.concat([e]):null,El(4,4,r_.bind(null,i,e),r)}function uh(){}function o_(e,i){var r=os();i=i===void 0?null:i;var o=r.memoizedState;return i!==null&&Qu(i,o[1])?o[0]:(r.memoizedState=[e,i],e)}function l_(e,i){var r=os();i=i===void 0?null:i;var o=r.memoizedState;if(i!==null&&Qu(i,o[1]))return o[0];if(o=e(),ir){Vt(!0);try{e()}finally{Vt(!1)}}return r.memoizedState=[o,i],o}function hh(e,i,r){return r===void 0||(Vi&1073741824)!==0&&(ht&261930)===0?e.memoizedState=i:(e.memoizedState=r,e=cg(),et.lanes|=e,Rn|=e,r)}function c_(e,i,r,o){return Js(r,i)?r:Ir.current!==null?(e=hh(e,r,o),Js(e,i)||(vs=!0),e):(Vi&42)===0||(Vi&1073741824)!==0&&(ht&261930)===0?(vs=!0,e.memoizedState=r):(e=cg(),et.lanes|=e,Rn|=e,i)}function u_(e,i,r,o,g){var w=G.p;G.p=w!==0&&8>w?w:8;var N=q.T,z={};q.T=z,ph(e,!1,i,r);try{var X=g(),re=q.S;if(re!==null&&re(z,X),X!==null&&typeof X=="object"&&typeof X.then=="function"){var pe=MS(X,o);Fa(e,i,pe,ii(e))}else Fa(e,i,o,ii(e))}catch(ye){Fa(e,i,{then:function(){},status:"rejected",reason:ye},ii())}finally{G.p=w,N!==null&&z.types!==null&&(N.types=z.types),q.T=N}}function BS(){}function dh(e,i,r,o){if(e.tag!==5)throw Error(a(476));var g=h_(e).queue;u_(e,g,i,ee,r===null?BS:function(){return d_(e),r(o)})}function h_(e){var i=e.memoizedState;if(i!==null)return i;i={memoizedState:ee,baseState:ee,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Yi,lastRenderedState:ee},next:null};var r={};return i.next={memoizedState:r,baseState:r,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Yi,lastRenderedState:r},next:null},e.memoizedState=i,e=e.alternate,e!==null&&(e.memoizedState=i),i}function d_(e){var i=h_(e);i.next===null&&(i=e.alternate.memoizedState),Fa(e,i.next.queue,{},ii())}function fh(){return Cs(ao)}function f_(){return os().memoizedState}function p_(){return os().memoizedState}function HS(e){for(var i=e.return;i!==null;){switch(i.tag){case 24:case 3:var r=ii();e=xn(r);var o=Cn(i,e,r);o!==null&&(Vs(o,i,r),za(o,i,r)),i={cache:Uu()},e.payload=i;return}i=i.return}}function zS(e,i,r){var o=ii();r={lane:o,revertLane:0,gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null},kl(e)?__(i,r):(r=Du(e,i,r,o),r!==null&&(Vs(r,e,o),g_(r,i,o)))}function v_(e,i,r){var o=ii();Fa(e,i,r,o)}function Fa(e,i,r,o){var g={lane:o,revertLane:0,gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null};if(kl(e))__(i,g);else{var w=e.alternate;if(e.lanes===0&&(w===null||w.lanes===0)&&(w=i.lastRenderedReducer,w!==null))try{var N=i.lastRenderedState,z=w(N,r);if(g.hasEagerState=!0,g.eagerState=z,Js(z,N))return al(e,i,g,0),Ot===null&&rl(),!1}catch{}finally{}if(r=Du(e,i,g,o),r!==null)return Vs(r,e,o),g_(r,i,o),!0}return!1}function ph(e,i,r,o){if(o={lane:2,revertLane:Gh(),gesture:null,action:o,hasEagerState:!1,eagerState:null,next:null},kl(e)){if(i)throw Error(a(479))}else i=Du(e,r,o,2),i!==null&&Vs(i,e,2)}function kl(e){var i=e.alternate;return e===et||i!==null&&i===et}function __(e,i){$r=yl=!0;var r=e.pending;r===null?i.next=i:(i.next=r.next,r.next=i),e.pending=i}function g_(e,i,r){if((r&4194048)!==0){var o=i.lanes;o&=e.pendingLanes,r|=o,i.lanes=r,st(e,r)}}var qa={readContext:Cs,use:wl,useCallback:is,useContext:is,useEffect:is,useImperativeHandle:is,useLayoutEffect:is,useInsertionEffect:is,useMemo:is,useReducer:is,useRef:is,useState:is,useDebugValue:is,useDeferredValue:is,useTransition:is,useSyncExternalStore:is,useId:is,useHostTransitionStatus:is,useFormState:is,useActionState:is,useOptimistic:is,useMemoCache:is,useCacheRefresh:is};qa.useEffectEvent=is;var m_={readContext:Cs,use:wl,useCallback:function(e,i){return Bs().memoizedState=[e,i===void 0?null:i],e},useContext:Cs,useEffect:t_,useImperativeHandle:function(e,i,r){r=r!=null?r.concat([e]):null,Cl(4194308,4,r_.bind(null,i,e),r)},useLayoutEffect:function(e,i){return Cl(4194308,4,e,i)},useInsertionEffect:function(e,i){Cl(4,2,e,i)},useMemo:function(e,i){var r=Bs();i=i===void 0?null:i;var o=e();if(ir){Vt(!0);try{e()}finally{Vt(!1)}}return r.memoizedState=[o,i],o},useReducer:function(e,i,r){var o=Bs();if(r!==void 0){var g=r(i);if(ir){Vt(!0);try{r(i)}finally{Vt(!1)}}}else g=i;return o.memoizedState=o.baseState=g,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:g},o.queue=e,e=e.dispatch=zS.bind(null,et,e),[o.memoizedState,e]},useRef:function(e){var i=Bs();return e={current:e},i.memoizedState=e},useState:function(e){e=oh(e);var i=e.queue,r=v_.bind(null,et,i);return i.dispatch=r,[e.memoizedState,r]},useDebugValue:uh,useDeferredValue:function(e,i){var r=Bs();return hh(r,e,i)},useTransition:function(){var e=oh(!1);return e=u_.bind(null,et,e.queue,!0,!1),Bs().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,i,r){var o=et,g=Bs();if(pt){if(r===void 0)throw Error(a(407));r=r()}else{if(r=i(),Ot===null)throw Error(a(349));(ht&127)!==0||Iv(o,i,r)}g.memoizedState=r;var w={value:r,getSnapshot:i};return g.queue=w,t_(Pv.bind(null,o,w,e),[e]),o.flags|=2048,Ur(9,{destroy:void 0},$v.bind(null,o,w,r,i),null),r},useId:function(){var e=Bs(),i=Ot.identifierPrefix;if(pt){var r=Ni,o=ji;r=(o&~(1<<32-Yt(o)-1)).toString(32)+r,i="_"+i+"R_"+r,r=bl++,0<r&&(i+="H"+r.toString(32)),i+="_"}else r=DS++,i="_"+i+"r_"+r.toString(32)+"_";return e.memoizedState=i},useHostTransitionStatus:fh,useFormState:Xv,useActionState:Xv,useOptimistic:function(e){var i=Bs();i.memoizedState=i.baseState=e;var r={pending:null,lanes:0,dispatch:null,lastRenderedReducer:null,lastRenderedState:null};return i.queue=r,i=ph.bind(null,et,!0,r),r.dispatch=i,[e,i]},useMemoCache:nh,useCacheRefresh:function(){return Bs().memoizedState=HS.bind(null,et)},useEffectEvent:function(e){var i=Bs(),r={impl:e};return i.memoizedState=r,function(){if((mt&2)!==0)throw Error(a(440));return r.impl.apply(void 0,arguments)}}},vh={readContext:Cs,use:wl,useCallback:o_,useContext:Cs,useEffect:ch,useImperativeHandle:a_,useInsertionEffect:i_,useLayoutEffect:n_,useMemo:l_,useReducer:xl,useRef:e_,useState:function(){return xl(Yi)},useDebugValue:uh,useDeferredValue:function(e,i){var r=os();return c_(r,At.memoizedState,e,i)},useTransition:function(){var e=xl(Yi)[0],i=os().memoizedState;return[typeof e=="boolean"?e:Ua(e),i]},useSyncExternalStore:zv,useId:f_,useHostTransitionStatus:fh,useFormState:Jv,useActionState:Jv,useOptimistic:function(e,i){var r=os();return qv(r,At,e,i)},useMemoCache:nh,useCacheRefresh:p_};vh.useEffectEvent=s_;var y_={readContext:Cs,use:wl,useCallback:o_,useContext:Cs,useEffect:ch,useImperativeHandle:a_,useInsertionEffect:i_,useLayoutEffect:n_,useMemo:l_,useReducer:ah,useRef:e_,useState:function(){return ah(Yi)},useDebugValue:uh,useDeferredValue:function(e,i){var r=os();return At===null?hh(r,e,i):c_(r,At.memoizedState,e,i)},useTransition:function(){var e=ah(Yi)[0],i=os().memoizedState;return[typeof e=="boolean"?e:Ua(e),i]},useSyncExternalStore:zv,useId:f_,useHostTransitionStatus:fh,useFormState:Qv,useActionState:Qv,useOptimistic:function(e,i){var r=os();return At!==null?qv(r,At,e,i):(r.baseState=e,[e,r.queue.dispatch])},useMemoCache:nh,useCacheRefresh:p_};y_.useEffectEvent=s_;function _h(e,i,r,o){i=e.memoizedState,r=r(o,i),r=r==null?i:f({},i,r),e.memoizedState=r,e.lanes===0&&(e.updateQueue.baseState=r)}var gh={enqueueSetState:function(e,i,r){e=e._reactInternals;var o=ii(),g=xn(o);g.payload=i,r!=null&&(g.callback=r),i=Cn(e,g,o),i!==null&&(Vs(i,e,o),za(i,e,o))},enqueueReplaceState:function(e,i,r){e=e._reactInternals;var o=ii(),g=xn(o);g.tag=1,g.payload=i,r!=null&&(g.callback=r),i=Cn(e,g,o),i!==null&&(Vs(i,e,o),za(i,e,o))},enqueueForceUpdate:function(e,i){e=e._reactInternals;var r=ii(),o=xn(r);o.tag=2,i!=null&&(o.callback=i),i=Cn(e,o,r),i!==null&&(Vs(i,e,r),za(i,e,r))}};function b_(e,i,r,o,g,w,N){return e=e.stateNode,typeof e.shouldComponentUpdate=="function"?e.shouldComponentUpdate(o,w,N):i.prototype&&i.prototype.isPureReactComponent?!Ma(r,o)||!Ma(g,w):!0}function S_(e,i,r,o){e=i.state,typeof i.componentWillReceiveProps=="function"&&i.componentWillReceiveProps(r,o),typeof i.UNSAFE_componentWillReceiveProps=="function"&&i.UNSAFE_componentWillReceiveProps(r,o),i.state!==e&&gh.enqueueReplaceState(i,i.state,null)}function nr(e,i){var r=i;if("ref"in i){r={};for(var o in i)o!=="ref"&&(r[o]=i[o])}if(e=e.defaultProps){r===i&&(r=f({},r));for(var g in e)r[g]===void 0&&(r[g]=e[g])}return r}function w_(e){nl(e)}function x_(e){console.error(e)}function C_(e){nl(e)}function Tl(e,i){try{var r=e.onUncaughtError;r(i.value,{componentStack:i.stack})}catch(o){setTimeout(function(){throw o})}}function E_(e,i,r){try{var o=e.onCaughtError;o(r.value,{componentStack:r.stack,errorBoundary:i.tag===1?i.stateNode:null})}catch(g){setTimeout(function(){throw g})}}function mh(e,i,r){return r=xn(r),r.tag=3,r.payload={element:null},r.callback=function(){Tl(e,i)},r}function k_(e){return e=xn(e),e.tag=3,e}function T_(e,i,r,o){var g=r.type.getDerivedStateFromError;if(typeof g=="function"){var w=o.value;e.payload=function(){return g(w)},e.callback=function(){E_(i,r,o)}}var N=r.stateNode;N!==null&&typeof N.componentDidCatch=="function"&&(e.callback=function(){E_(i,r,o),typeof g!="function"&&(Mn===null?Mn=new Set([this]):Mn.add(this));var z=o.stack;this.componentDidCatch(o.value,{componentStack:z!==null?z:""})})}function IS(e,i,r,o,g){if(r.flags|=32768,o!==null&&typeof o=="object"&&typeof o.then=="function"){if(i=r.alternate,i!==null&&Lr(i,r,g,!0),r=Qs.current,r!==null){switch(r.tag){case 31:case 13:return vi===null?Il():r.alternate===null&&ns===0&&(ns=3),r.flags&=-257,r.flags|=65536,r.lanes=g,o===pl?r.flags|=16384:(i=r.updateQueue,i===null?r.updateQueue=new Set([o]):i.add(o),Fh(e,o,g)),!1;case 22:return r.flags|=65536,o===pl?r.flags|=16384:(i=r.updateQueue,i===null?(i={transitions:null,markerInstances:null,retryQueue:new Set([o])},r.updateQueue=i):(r=i.retryQueue,r===null?i.retryQueue=new Set([o]):r.add(o)),Fh(e,o,g)),!1}throw Error(a(435,r.tag))}return Fh(e,o,g),Il(),!1}if(pt)return i=Qs.current,i!==null?((i.flags&65536)===0&&(i.flags|=256),i.flags|=65536,i.lanes=g,o!==Hu&&(e=Error(a(422),{cause:o}),Na(hi(e,r)))):(o!==Hu&&(i=Error(a(423),{cause:o}),Na(hi(i,r))),e=e.current.alternate,e.flags|=65536,g&=-g,e.lanes|=g,o=hi(o,r),g=mh(e.stateNode,o,g),Yu(e,g),ns!==4&&(ns=2)),!1;var w=Error(a(520),{cause:o});if(w=hi(w,r),Za===null?Za=[w]:Za.push(w),ns!==4&&(ns=2),i===null)return!0;o=hi(o,r),r=i;do{switch(r.tag){case 3:return r.flags|=65536,e=g&-g,r.lanes|=e,e=mh(r.stateNode,o,e),Yu(r,e),!1;case 1:if(i=r.type,w=r.stateNode,(r.flags&128)===0&&(typeof i.getDerivedStateFromError=="function"||w!==null&&typeof w.componentDidCatch=="function"&&(Mn===null||!Mn.has(w))))return r.flags|=65536,g&=-g,r.lanes|=g,g=k_(g),T_(g,e,r,o),Yu(r,g),!1}r=r.return}while(r!==null);return!1}var yh=Error(a(461)),vs=!1;function Es(e,i,r,o){i.child=e===null?Dv(i,null,r,o):sr(i,e.child,r,o)}function A_(e,i,r,o,g){r=r.render;var w=i.ref;if("ref"in o){var N={};for(var z in o)z!=="ref"&&(N[z]=o[z])}else N=o;return Zn(i),o=eh(e,i,r,N,w,g),z=th(),e!==null&&!vs?(sh(e,i,g),Ki(e,i,g)):(pt&&z&&Ou(i),i.flags|=1,Es(e,i,o,g),i.child)}function R_(e,i,r,o,g){if(e===null){var w=r.type;return typeof w=="function"&&!ju(w)&&w.defaultProps===void 0&&r.compare===null?(i.tag=15,i.type=w,M_(e,i,w,o,g)):(e=ll(r.type,null,o,i,i.mode,g),e.ref=i.ref,e.return=i,i.child=e)}if(w=e.child,!Th(e,g)){var N=w.memoizedProps;if(r=r.compare,r=r!==null?r:Ma,r(N,o)&&e.ref===i.ref)return Ki(e,i,g)}return i.flags|=1,e=Fi(w,o),e.ref=i.ref,e.return=i,i.child=e}function M_(e,i,r,o,g){if(e!==null){var w=e.memoizedProps;if(Ma(w,o)&&e.ref===i.ref)if(vs=!1,i.pendingProps=o=w,Th(e,g))(e.flags&131072)!==0&&(vs=!0);else return i.lanes=e.lanes,Ki(e,i,g)}return bh(e,i,r,o,g)}function D_(e,i,r,o){var g=o.children,w=e!==null?e.memoizedState:null;if(e===null&&i.stateNode===null&&(i.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),o.mode==="hidden"){if((i.flags&128)!==0){if(w=w!==null?w.baseLanes|r:r,e!==null){for(o=i.child=e.child,g=0;o!==null;)g=g|o.lanes|o.childLanes,o=o.sibling;o=g&~w}else o=0,i.child=null;return j_(e,i,w,r,o)}if((r&536870912)!==0)i.memoizedState={baseLanes:0,cachePool:null},e!==null&&dl(i,w!==null?w.cachePool:null),w!==null?Lv(i,w):Xu(),Ov(i);else return o=i.lanes=536870912,j_(e,i,w!==null?w.baseLanes|r:r,r,o)}else w!==null?(dl(i,w.cachePool),Lv(i,w),kn(),i.memoizedState=null):(e!==null&&dl(i,null),Xu(),kn());return Es(e,i,g,r),i.child}function Wa(e,i){return e!==null&&e.tag===22||i.stateNode!==null||(i.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null}),i.sibling}function j_(e,i,r,o,g){var w=qu();return w=w===null?null:{parent:fs._currentValue,pool:w},i.memoizedState={baseLanes:r,cachePool:w},e!==null&&dl(i,null),Xu(),Ov(i),e!==null&&Lr(e,i,o,!0),i.childLanes=g,null}function Al(e,i){return i=Ml({mode:i.mode,children:i.children},e.mode),i.ref=e.ref,e.child=i,i.return=e,i}function N_(e,i,r){return sr(i,e.child,null,r),e=Al(i,i.pendingProps),e.flags|=2,ei(i),i.memoizedState=null,e}function $S(e,i,r){var o=i.pendingProps,g=(i.flags&128)!==0;if(i.flags&=-129,e===null){if(pt){if(o.mode==="hidden")return e=Al(i,o),i.lanes=536870912,Wa(null,e);if(Zu(i),(e=$t)?(e=Wg(e,pi),e=e!==null&&e.data==="&"?e:null,e!==null&&(i.memoizedState={dehydrated:e,treeContext:mn!==null?{id:ji,overflow:Ni}:null,retryLane:536870912,hydrationErrors:null},r=_v(e),r.return=i,i.child=r,xs=i,$t=null)):e=null,e===null)throw bn(i);return i.lanes=536870912,null}return Al(i,o)}var w=e.memoizedState;if(w!==null){var N=w.dehydrated;if(Zu(i),g)if(i.flags&256)i.flags&=-257,i=N_(e,i,r);else if(i.memoizedState!==null)i.child=e.child,i.flags|=128,i=null;else throw Error(a(558));else if(vs||Lr(e,i,r,!1),g=(r&e.childLanes)!==0,vs||g){if(o=Ot,o!==null&&(N=at(o,r),N!==0&&N!==w.retryLane))throw w.retryLane=N,Yn(e,N),Vs(o,e,N),yh;Il(),i=N_(e,i,r)}else e=w.treeContext,$t=_i(N.nextSibling),xs=i,pt=!0,yn=null,pi=!1,e!==null&&yv(i,e),i=Al(i,o),i.flags|=4096;return i}return e=Fi(e.child,{mode:o.mode,children:o.children}),e.ref=i.ref,i.child=e,e.return=i,e}function Rl(e,i){var r=i.ref;if(r===null)e!==null&&e.ref!==null&&(i.flags|=4194816);else{if(typeof r!="function"&&typeof r!="object")throw Error(a(284));(e===null||e.ref!==r)&&(i.flags|=4194816)}}function bh(e,i,r,o,g){return Zn(i),r=eh(e,i,r,o,void 0,g),o=th(),e!==null&&!vs?(sh(e,i,g),Ki(e,i,g)):(pt&&o&&Ou(i),i.flags|=1,Es(e,i,r,g),i.child)}function L_(e,i,r,o,g,w){return Zn(i),i.updateQueue=null,r=Hv(i,o,r,g),Bv(e),o=th(),e!==null&&!vs?(sh(e,i,w),Ki(e,i,w)):(pt&&o&&Ou(i),i.flags|=1,Es(e,i,r,w),i.child)}function O_(e,i,r,o,g){if(Zn(i),i.stateNode===null){var w=Mr,N=r.contextType;typeof N=="object"&&N!==null&&(w=Cs(N)),w=new r(o,w),i.memoizedState=w.state!==null&&w.state!==void 0?w.state:null,w.updater=gh,i.stateNode=w,w._reactInternals=i,w=i.stateNode,w.props=o,w.state=i.memoizedState,w.refs={},Gu(i),N=r.contextType,w.context=typeof N=="object"&&N!==null?Cs(N):Mr,w.state=i.memoizedState,N=r.getDerivedStateFromProps,typeof N=="function"&&(_h(i,r,N,o),w.state=i.memoizedState),typeof r.getDerivedStateFromProps=="function"||typeof w.getSnapshotBeforeUpdate=="function"||typeof w.UNSAFE_componentWillMount!="function"&&typeof w.componentWillMount!="function"||(N=w.state,typeof w.componentWillMount=="function"&&w.componentWillMount(),typeof w.UNSAFE_componentWillMount=="function"&&w.UNSAFE_componentWillMount(),N!==w.state&&gh.enqueueReplaceState(w,w.state,null),$a(i,o,w,g),Ia(),w.state=i.memoizedState),typeof w.componentDidMount=="function"&&(i.flags|=4194308),o=!0}else if(e===null){w=i.stateNode;var z=i.memoizedProps,X=nr(r,z);w.props=X;var re=w.context,pe=r.contextType;N=Mr,typeof pe=="object"&&pe!==null&&(N=Cs(pe));var ye=r.getDerivedStateFromProps;pe=typeof ye=="function"||typeof w.getSnapshotBeforeUpdate=="function",z=i.pendingProps!==z,pe||typeof w.UNSAFE_componentWillReceiveProps!="function"&&typeof w.componentWillReceiveProps!="function"||(z||re!==N)&&S_(i,w,o,N),wn=!1;var oe=i.memoizedState;w.state=oe,$a(i,o,w,g),Ia(),re=i.memoizedState,z||oe!==re||wn?(typeof ye=="function"&&(_h(i,r,ye,o),re=i.memoizedState),(X=wn||b_(i,r,X,o,oe,re,N))?(pe||typeof w.UNSAFE_componentWillMount!="function"&&typeof w.componentWillMount!="function"||(typeof w.componentWillMount=="function"&&w.componentWillMount(),typeof w.UNSAFE_componentWillMount=="function"&&w.UNSAFE_componentWillMount()),typeof w.componentDidMount=="function"&&(i.flags|=4194308)):(typeof w.componentDidMount=="function"&&(i.flags|=4194308),i.memoizedProps=o,i.memoizedState=re),w.props=o,w.state=re,w.context=N,o=X):(typeof w.componentDidMount=="function"&&(i.flags|=4194308),o=!1)}else{w=i.stateNode,Vu(e,i),N=i.memoizedProps,pe=nr(r,N),w.props=pe,ye=i.pendingProps,oe=w.context,re=r.contextType,X=Mr,typeof re=="object"&&re!==null&&(X=Cs(re)),z=r.getDerivedStateFromProps,(re=typeof z=="function"||typeof w.getSnapshotBeforeUpdate=="function")||typeof w.UNSAFE_componentWillReceiveProps!="function"&&typeof w.componentWillReceiveProps!="function"||(N!==ye||oe!==X)&&S_(i,w,o,X),wn=!1,oe=i.memoizedState,w.state=oe,$a(i,o,w,g),Ia();var he=i.memoizedState;N!==ye||oe!==he||wn||e!==null&&e.dependencies!==null&&ul(e.dependencies)?(typeof z=="function"&&(_h(i,r,z,o),he=i.memoizedState),(pe=wn||b_(i,r,pe,o,oe,he,X)||e!==null&&e.dependencies!==null&&ul(e.dependencies))?(re||typeof w.UNSAFE_componentWillUpdate!="function"&&typeof w.componentWillUpdate!="function"||(typeof w.componentWillUpdate=="function"&&w.componentWillUpdate(o,he,X),typeof w.UNSAFE_componentWillUpdate=="function"&&w.UNSAFE_componentWillUpdate(o,he,X)),typeof w.componentDidUpdate=="function"&&(i.flags|=4),typeof w.getSnapshotBeforeUpdate=="function"&&(i.flags|=1024)):(typeof w.componentDidUpdate!="function"||N===e.memoizedProps&&oe===e.memoizedState||(i.flags|=4),typeof w.getSnapshotBeforeUpdate!="function"||N===e.memoizedProps&&oe===e.memoizedState||(i.flags|=1024),i.memoizedProps=o,i.memoizedState=he),w.props=o,w.state=he,w.context=X,o=pe):(typeof w.componentDidUpdate!="function"||N===e.memoizedProps&&oe===e.memoizedState||(i.flags|=4),typeof w.getSnapshotBeforeUpdate!="function"||N===e.memoizedProps&&oe===e.memoizedState||(i.flags|=1024),o=!1)}return w=o,Rl(e,i),o=(i.flags&128)!==0,w||o?(w=i.stateNode,r=o&&typeof r.getDerivedStateFromError!="function"?null:w.render(),i.flags|=1,e!==null&&o?(i.child=sr(i,e.child,null,g),i.child=sr(i,null,r,g)):Es(e,i,r,g),i.memoizedState=w.state,e=i.child):e=Ki(e,i,g),e}function B_(e,i,r,o){return Xn(),i.flags|=256,Es(e,i,r,o),i.child}var Sh={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function wh(e){return{baseLanes:e,cachePool:Ev()}}function xh(e,i,r){return e=e!==null?e.childLanes&~r:0,i&&(e|=si),e}function H_(e,i,r){var o=i.pendingProps,g=!1,w=(i.flags&128)!==0,N;if((N=w)||(N=e!==null&&e.memoizedState===null?!1:(as.current&2)!==0),N&&(g=!0,i.flags&=-129),N=(i.flags&32)!==0,i.flags&=-33,e===null){if(pt){if(g?En(i):kn(),(e=$t)?(e=Wg(e,pi),e=e!==null&&e.data!=="&"?e:null,e!==null&&(i.memoizedState={dehydrated:e,treeContext:mn!==null?{id:ji,overflow:Ni}:null,retryLane:536870912,hydrationErrors:null},r=_v(e),r.return=i,i.child=r,xs=i,$t=null)):e=null,e===null)throw bn(i);return rd(e)?i.lanes=32:i.lanes=536870912,null}var z=o.children;return o=o.fallback,g?(kn(),g=i.mode,z=Ml({mode:"hidden",children:z},g),o=Kn(o,g,r,null),z.return=i,o.return=i,z.sibling=o,i.child=z,o=i.child,o.memoizedState=wh(r),o.childLanes=xh(e,N,r),i.memoizedState=Sh,Wa(null,o)):(En(i),Ch(i,z))}var X=e.memoizedState;if(X!==null&&(z=X.dehydrated,z!==null)){if(w)i.flags&256?(En(i),i.flags&=-257,i=Eh(e,i,r)):i.memoizedState!==null?(kn(),i.child=e.child,i.flags|=128,i=null):(kn(),z=o.fallback,g=i.mode,o=Ml({mode:"visible",children:o.children},g),z=Kn(z,g,r,null),z.flags|=2,o.return=i,z.return=i,o.sibling=z,i.child=o,sr(i,e.child,null,r),o=i.child,o.memoizedState=wh(r),o.childLanes=xh(e,N,r),i.memoizedState=Sh,i=Wa(null,o));else if(En(i),rd(z)){if(N=z.nextSibling&&z.nextSibling.dataset,N)var re=N.dgst;N=re,o=Error(a(419)),o.stack="",o.digest=N,Na({value:o,source:null,stack:null}),i=Eh(e,i,r)}else if(vs||Lr(e,i,r,!1),N=(r&e.childLanes)!==0,vs||N){if(N=Ot,N!==null&&(o=at(N,r),o!==0&&o!==X.retryLane))throw X.retryLane=o,Yn(e,o),Vs(N,e,o),yh;nd(z)||Il(),i=Eh(e,i,r)}else nd(z)?(i.flags|=192,i.child=e.child,i=null):(e=X.treeContext,$t=_i(z.nextSibling),xs=i,pt=!0,yn=null,pi=!1,e!==null&&yv(i,e),i=Ch(i,o.children),i.flags|=4096);return i}return g?(kn(),z=o.fallback,g=i.mode,X=e.child,re=X.sibling,o=Fi(X,{mode:"hidden",children:o.children}),o.subtreeFlags=X.subtreeFlags&65011712,re!==null?z=Fi(re,z):(z=Kn(z,g,r,null),z.flags|=2),z.return=i,o.return=i,o.sibling=z,i.child=o,Wa(null,o),o=i.child,z=e.child.memoizedState,z===null?z=wh(r):(g=z.cachePool,g!==null?(X=fs._currentValue,g=g.parent!==X?{parent:X,pool:X}:g):g=Ev(),z={baseLanes:z.baseLanes|r,cachePool:g}),o.memoizedState=z,o.childLanes=xh(e,N,r),i.memoizedState=Sh,Wa(e.child,o)):(En(i),r=e.child,e=r.sibling,r=Fi(r,{mode:"visible",children:o.children}),r.return=i,r.sibling=null,e!==null&&(N=i.deletions,N===null?(i.deletions=[e],i.flags|=16):N.push(e)),i.child=r,i.memoizedState=null,r)}function Ch(e,i){return i=Ml({mode:"visible",children:i},e.mode),i.return=e,e.child=i}function Ml(e,i){return e=Zs(22,e,null,i),e.lanes=0,e}function Eh(e,i,r){return sr(i,e.child,null,r),e=Ch(i,i.pendingProps.children),e.flags|=2,i.memoizedState=null,e}function z_(e,i,r){e.lanes|=i;var o=e.alternate;o!==null&&(o.lanes|=i),$u(e.return,i,r)}function kh(e,i,r,o,g,w){var N=e.memoizedState;N===null?e.memoizedState={isBackwards:i,rendering:null,renderingStartTime:0,last:o,tail:r,tailMode:g,treeForkCount:w}:(N.isBackwards=i,N.rendering=null,N.renderingStartTime=0,N.last=o,N.tail=r,N.tailMode=g,N.treeForkCount=w)}function I_(e,i,r){var o=i.pendingProps,g=o.revealOrder,w=o.tail;o=o.children;var N=as.current,z=(N&2)!==0;if(z?(N=N&1|2,i.flags|=128):N&=1,V(as,N),Es(e,i,o,r),o=pt?ja:0,!z&&e!==null&&(e.flags&128)!==0)e:for(e=i.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&z_(e,r,i);else if(e.tag===19)z_(e,r,i);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===i)break e;for(;e.sibling===null;){if(e.return===null||e.return===i)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}switch(g){case"forwards":for(r=i.child,g=null;r!==null;)e=r.alternate,e!==null&&ml(e)===null&&(g=r),r=r.sibling;r=g,r===null?(g=i.child,i.child=null):(g=r.sibling,r.sibling=null),kh(i,!1,g,r,w,o);break;case"backwards":case"unstable_legacy-backwards":for(r=null,g=i.child,i.child=null;g!==null;){if(e=g.alternate,e!==null&&ml(e)===null){i.child=g;break}e=g.sibling,g.sibling=r,r=g,g=e}kh(i,!0,r,null,w,o);break;case"together":kh(i,!1,null,null,void 0,o);break;default:i.memoizedState=null}return i.child}function Ki(e,i,r){if(e!==null&&(i.dependencies=e.dependencies),Rn|=i.lanes,(r&i.childLanes)===0)if(e!==null){if(Lr(e,i,r,!1),(r&i.childLanes)===0)return null}else return null;if(e!==null&&i.child!==e.child)throw Error(a(153));if(i.child!==null){for(e=i.child,r=Fi(e,e.pendingProps),i.child=r,r.return=i;e.sibling!==null;)e=e.sibling,r=r.sibling=Fi(e,e.pendingProps),r.return=i;r.sibling=null}return i.child}function Th(e,i){return(e.lanes&i)!==0?!0:(e=e.dependencies,!!(e!==null&&ul(e)))}function PS(e,i,r){switch(i.tag){case 3:I(i,i.stateNode.containerInfo),Sn(i,fs,e.memoizedState.cache),Xn();break;case 27:case 5:ie(i);break;case 4:I(i,i.stateNode.containerInfo);break;case 10:Sn(i,i.type,i.memoizedProps.value);break;case 31:if(i.memoizedState!==null)return i.flags|=128,Zu(i),null;break;case 13:var o=i.memoizedState;if(o!==null)return o.dehydrated!==null?(En(i),i.flags|=128,null):(r&i.child.childLanes)!==0?H_(e,i,r):(En(i),e=Ki(e,i,r),e!==null?e.sibling:null);En(i);break;case 19:var g=(e.flags&128)!==0;if(o=(r&i.childLanes)!==0,o||(Lr(e,i,r,!1),o=(r&i.childLanes)!==0),g){if(o)return I_(e,i,r);i.flags|=128}if(g=i.memoizedState,g!==null&&(g.rendering=null,g.tail=null,g.lastEffect=null),V(as,as.current),o)break;return null;case 22:return i.lanes=0,D_(e,i,r,i.pendingProps);case 24:Sn(i,fs,e.memoizedState.cache)}return Ki(e,i,r)}function $_(e,i,r){if(e!==null)if(e.memoizedProps!==i.pendingProps)vs=!0;else{if(!Th(e,r)&&(i.flags&128)===0)return vs=!1,PS(e,i,r);vs=(e.flags&131072)!==0}else vs=!1,pt&&(i.flags&1048576)!==0&&mv(i,ja,i.index);switch(i.lanes=0,i.tag){case 16:e:{var o=i.pendingProps;if(e=er(i.elementType),i.type=e,typeof e=="function")ju(e)?(o=nr(e,o),i.tag=1,i=O_(null,i,e,o,r)):(i.tag=0,i=bh(null,i,e,o,r));else{if(e!=null){var g=e.$$typeof;if(g===k){i.tag=11,i=A_(null,i,e,o,r);break e}else if(g===j){i.tag=14,i=R_(null,i,e,o,r);break e}}throw i=Y(e)||e,Error(a(306,i,""))}}return i;case 0:return bh(e,i,i.type,i.pendingProps,r);case 1:return o=i.type,g=nr(o,i.pendingProps),O_(e,i,o,g,r);case 3:e:{if(I(i,i.stateNode.containerInfo),e===null)throw Error(a(387));o=i.pendingProps;var w=i.memoizedState;g=w.element,Vu(e,i),$a(i,o,null,r);var N=i.memoizedState;if(o=N.cache,Sn(i,fs,o),o!==w.cache&&Pu(i,[fs],r,!0),Ia(),o=N.element,w.isDehydrated)if(w={element:o,isDehydrated:!1,cache:N.cache},i.updateQueue.baseState=w,i.memoizedState=w,i.flags&256){i=B_(e,i,o,r);break e}else if(o!==g){g=hi(Error(a(424)),i),Na(g),i=B_(e,i,o,r);break e}else{switch(e=i.stateNode.containerInfo,e.nodeType){case 9:e=e.body;break;default:e=e.nodeName==="HTML"?e.ownerDocument.body:e}for($t=_i(e.firstChild),xs=i,pt=!0,yn=null,pi=!0,r=Dv(i,null,o,r),i.child=r;r;)r.flags=r.flags&-3|4096,r=r.sibling}else{if(Xn(),o===g){i=Ki(e,i,r);break e}Es(e,i,o,r)}i=i.child}return i;case 26:return Rl(e,i),e===null?(r=Jg(i.type,null,i.pendingProps,null))?i.memoizedState=r:pt||(r=i.type,e=i.pendingProps,o=Gl(de.current).createElement(r),o[ut]=i,o[hs]=e,ks(o,r,e),Z(o),i.stateNode=o):i.memoizedState=Jg(i.type,e.memoizedProps,i.pendingProps,e.memoizedState),null;case 27:return ie(i),e===null&&pt&&(o=i.stateNode=Yg(i.type,i.pendingProps,de.current),xs=i,pi=!0,g=$t,Ln(i.type)?(ad=g,$t=_i(o.firstChild)):$t=g),Es(e,i,i.pendingProps.children,r),Rl(e,i),e===null&&(i.flags|=4194304),i.child;case 5:return e===null&&pt&&((g=o=$t)&&(o=gw(o,i.type,i.pendingProps,pi),o!==null?(i.stateNode=o,xs=i,$t=_i(o.firstChild),pi=!1,g=!0):g=!1),g||bn(i)),ie(i),g=i.type,w=i.pendingProps,N=e!==null?e.memoizedProps:null,o=w.children,td(g,w)?o=null:N!==null&&td(g,N)&&(i.flags|=32),i.memoizedState!==null&&(g=eh(e,i,jS,null,null,r),ao._currentValue=g),Rl(e,i),Es(e,i,o,r),i.child;case 6:return e===null&&pt&&((e=r=$t)&&(r=mw(r,i.pendingProps,pi),r!==null?(i.stateNode=r,xs=i,$t=null,e=!0):e=!1),e||bn(i)),null;case 13:return H_(e,i,r);case 4:return I(i,i.stateNode.containerInfo),o=i.pendingProps,e===null?i.child=sr(i,null,o,r):Es(e,i,o,r),i.child;case 11:return A_(e,i,i.type,i.pendingProps,r);case 7:return Es(e,i,i.pendingProps,r),i.child;case 8:return Es(e,i,i.pendingProps.children,r),i.child;case 12:return Es(e,i,i.pendingProps.children,r),i.child;case 10:return o=i.pendingProps,Sn(i,i.type,o.value),Es(e,i,o.children,r),i.child;case 9:return g=i.type._context,o=i.pendingProps.children,Zn(i),g=Cs(g),o=o(g),i.flags|=1,Es(e,i,o,r),i.child;case 14:return R_(e,i,i.type,i.pendingProps,r);case 15:return M_(e,i,i.type,i.pendingProps,r);case 19:return I_(e,i,r);case 31:return $S(e,i,r);case 22:return D_(e,i,r,i.pendingProps);case 24:return Zn(i),o=Cs(fs),e===null?(g=qu(),g===null&&(g=Ot,w=Uu(),g.pooledCache=w,w.refCount++,w!==null&&(g.pooledCacheLanes|=r),g=w),i.memoizedState={parent:o,cache:g},Gu(i),Sn(i,fs,g)):((e.lanes&r)!==0&&(Vu(e,i),$a(i,null,null,r),Ia()),g=e.memoizedState,w=i.memoizedState,g.parent!==o?(g={parent:o,cache:o},i.memoizedState=g,i.lanes===0&&(i.memoizedState=i.updateQueue.baseState=g),Sn(i,fs,o)):(o=w.cache,Sn(i,fs,o),o!==g.cache&&Pu(i,[fs],r,!0))),Es(e,i,i.pendingProps.children,r),i.child;case 29:throw i.pendingProps}throw Error(a(156,i.tag))}function Xi(e){e.flags|=4}function Ah(e,i,r,o,g){if((i=(e.mode&32)!==0)&&(i=!1),i){if(e.flags|=16777216,(g&335544128)===g)if(e.stateNode.complete)e.flags|=8192;else if(fg())e.flags|=8192;else throw tr=pl,Wu}else e.flags&=-16777217}function P_(e,i){if(i.type!=="stylesheet"||(i.state.loading&4)!==0)e.flags&=-16777217;else if(e.flags|=16777216,!sm(i))if(fg())e.flags|=8192;else throw tr=pl,Wu}function Dl(e,i){i!==null&&(e.flags|=4),e.flags&16384&&(i=e.tag!==22?me():536870912,e.lanes|=i,Gr|=i)}function Ga(e,i){if(!pt)switch(e.tailMode){case"hidden":i=e.tail;for(var r=null;i!==null;)i.alternate!==null&&(r=i),i=i.sibling;r===null?e.tail=null:r.sibling=null;break;case"collapsed":r=e.tail;for(var o=null;r!==null;)r.alternate!==null&&(o=r),r=r.sibling;o===null?i||e.tail===null?e.tail=null:e.tail.sibling=null:o.sibling=null}}function Pt(e){var i=e.alternate!==null&&e.alternate.child===e.child,r=0,o=0;if(i)for(var g=e.child;g!==null;)r|=g.lanes|g.childLanes,o|=g.subtreeFlags&65011712,o|=g.flags&65011712,g.return=e,g=g.sibling;else for(g=e.child;g!==null;)r|=g.lanes|g.childLanes,o|=g.subtreeFlags,o|=g.flags,g.return=e,g=g.sibling;return e.subtreeFlags|=o,e.childLanes=r,i}function US(e,i,r){var o=i.pendingProps;switch(Bu(i),i.tag){case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Pt(i),null;case 1:return Pt(i),null;case 3:return r=i.stateNode,o=null,e!==null&&(o=e.memoizedState.cache),i.memoizedState.cache!==o&&(i.flags|=2048),Gi(fs),ue(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),(e===null||e.child===null)&&(Nr(i)?Xi(i):e===null||e.memoizedState.isDehydrated&&(i.flags&256)===0||(i.flags|=1024,zu())),Pt(i),null;case 26:var g=i.type,w=i.memoizedState;return e===null?(Xi(i),w!==null?(Pt(i),P_(i,w)):(Pt(i),Ah(i,g,null,o,r))):w?w!==e.memoizedState?(Xi(i),Pt(i),P_(i,w)):(Pt(i),i.flags&=-16777217):(e=e.memoizedProps,e!==o&&Xi(i),Pt(i),Ah(i,g,e,o,r)),null;case 27:if(we(i),r=de.current,g=i.type,e!==null&&i.stateNode!=null)e.memoizedProps!==o&&Xi(i);else{if(!o){if(i.stateNode===null)throw Error(a(166));return Pt(i),null}e=te.current,Nr(i)?bv(i):(e=Yg(g,o,r),i.stateNode=e,Xi(i))}return Pt(i),null;case 5:if(we(i),g=i.type,e!==null&&i.stateNode!=null)e.memoizedProps!==o&&Xi(i);else{if(!o){if(i.stateNode===null)throw Error(a(166));return Pt(i),null}if(w=te.current,Nr(i))bv(i);else{var N=Gl(de.current);switch(w){case 1:w=N.createElementNS("http://www.w3.org/2000/svg",g);break;case 2:w=N.createElementNS("http://www.w3.org/1998/Math/MathML",g);break;default:switch(g){case"svg":w=N.createElementNS("http://www.w3.org/2000/svg",g);break;case"math":w=N.createElementNS("http://www.w3.org/1998/Math/MathML",g);break;case"script":w=N.createElement("div"),w.innerHTML="<script><\/script>",w=w.removeChild(w.firstChild);break;case"select":w=typeof o.is=="string"?N.createElement("select",{is:o.is}):N.createElement("select"),o.multiple?w.multiple=!0:o.size&&(w.size=o.size);break;default:w=typeof o.is=="string"?N.createElement(g,{is:o.is}):N.createElement(g)}}w[ut]=i,w[hs]=o;e:for(N=i.child;N!==null;){if(N.tag===5||N.tag===6)w.appendChild(N.stateNode);else if(N.tag!==4&&N.tag!==27&&N.child!==null){N.child.return=N,N=N.child;continue}if(N===i)break e;for(;N.sibling===null;){if(N.return===null||N.return===i)break e;N=N.return}N.sibling.return=N.return,N=N.sibling}i.stateNode=w;e:switch(ks(w,g,o),g){case"button":case"input":case"select":case"textarea":o=!!o.autoFocus;break e;case"img":o=!0;break e;default:o=!1}o&&Xi(i)}}return Pt(i),Ah(i,i.type,e===null?null:e.memoizedProps,i.pendingProps,r),null;case 6:if(e&&i.stateNode!=null)e.memoizedProps!==o&&Xi(i);else{if(typeof o!="string"&&i.stateNode===null)throw Error(a(166));if(e=de.current,Nr(i)){if(e=i.stateNode,r=i.memoizedProps,o=null,g=xs,g!==null)switch(g.tag){case 27:case 5:o=g.memoizedProps}e[ut]=i,e=!!(e.nodeValue===r||o!==null&&o.suppressHydrationWarning===!0||Hg(e.nodeValue,r)),e||bn(i,!0)}else e=Gl(e).createTextNode(o),e[ut]=i,i.stateNode=e}return Pt(i),null;case 31:if(r=i.memoizedState,e===null||e.memoizedState!==null){if(o=Nr(i),r!==null){if(e===null){if(!o)throw Error(a(318));if(e=i.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(a(557));e[ut]=i}else Xn(),(i.flags&128)===0&&(i.memoizedState=null),i.flags|=4;Pt(i),e=!1}else r=zu(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=r),e=!0;if(!e)return i.flags&256?(ei(i),i):(ei(i),null);if((i.flags&128)!==0)throw Error(a(558))}return Pt(i),null;case 13:if(o=i.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(g=Nr(i),o!==null&&o.dehydrated!==null){if(e===null){if(!g)throw Error(a(318));if(g=i.memoizedState,g=g!==null?g.dehydrated:null,!g)throw Error(a(317));g[ut]=i}else Xn(),(i.flags&128)===0&&(i.memoizedState=null),i.flags|=4;Pt(i),g=!1}else g=zu(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=g),g=!0;if(!g)return i.flags&256?(ei(i),i):(ei(i),null)}return ei(i),(i.flags&128)!==0?(i.lanes=r,i):(r=o!==null,e=e!==null&&e.memoizedState!==null,r&&(o=i.child,g=null,o.alternate!==null&&o.alternate.memoizedState!==null&&o.alternate.memoizedState.cachePool!==null&&(g=o.alternate.memoizedState.cachePool.pool),w=null,o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(w=o.memoizedState.cachePool.pool),w!==g&&(o.flags|=2048)),r!==e&&r&&(i.child.flags|=8192),Dl(i,i.updateQueue),Pt(i),null);case 4:return ue(),e===null&&Xh(i.stateNode.containerInfo),Pt(i),null;case 10:return Gi(i.type),Pt(i),null;case 19:if(B(as),o=i.memoizedState,o===null)return Pt(i),null;if(g=(i.flags&128)!==0,w=o.rendering,w===null)if(g)Ga(o,!1);else{if(ns!==0||e!==null&&(e.flags&128)!==0)for(e=i.child;e!==null;){if(w=ml(e),w!==null){for(i.flags|=128,Ga(o,!1),e=w.updateQueue,i.updateQueue=e,Dl(i,e),i.subtreeFlags=0,e=r,r=i.child;r!==null;)vv(r,e),r=r.sibling;return V(as,as.current&1|2),pt&&qi(i,o.treeForkCount),i.child}e=e.sibling}o.tail!==null&&ft()>Bl&&(i.flags|=128,g=!0,Ga(o,!1),i.lanes=4194304)}else{if(!g)if(e=ml(w),e!==null){if(i.flags|=128,g=!0,e=e.updateQueue,i.updateQueue=e,Dl(i,e),Ga(o,!0),o.tail===null&&o.tailMode==="hidden"&&!w.alternate&&!pt)return Pt(i),null}else 2*ft()-o.renderingStartTime>Bl&&r!==536870912&&(i.flags|=128,g=!0,Ga(o,!1),i.lanes=4194304);o.isBackwards?(w.sibling=i.child,i.child=w):(e=o.last,e!==null?e.sibling=w:i.child=w,o.last=w)}return o.tail!==null?(e=o.tail,o.rendering=e,o.tail=e.sibling,o.renderingStartTime=ft(),e.sibling=null,r=as.current,V(as,g?r&1|2:r&1),pt&&qi(i,o.treeForkCount),e):(Pt(i),null);case 22:case 23:return ei(i),Ju(),o=i.memoizedState!==null,e!==null?e.memoizedState!==null!==o&&(i.flags|=8192):o&&(i.flags|=8192),o?(r&536870912)!==0&&(i.flags&128)===0&&(Pt(i),i.subtreeFlags&6&&(i.flags|=8192)):Pt(i),r=i.updateQueue,r!==null&&Dl(i,r.retryQueue),r=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(r=e.memoizedState.cachePool.pool),o=null,i.memoizedState!==null&&i.memoizedState.cachePool!==null&&(o=i.memoizedState.cachePool.pool),o!==r&&(i.flags|=2048),e!==null&&B(Qn),null;case 24:return r=null,e!==null&&(r=e.memoizedState.cache),i.memoizedState.cache!==r&&(i.flags|=2048),Gi(fs),Pt(i),null;case 25:return null;case 30:return null}throw Error(a(156,i.tag))}function FS(e,i){switch(Bu(i),i.tag){case 1:return e=i.flags,e&65536?(i.flags=e&-65537|128,i):null;case 3:return Gi(fs),ue(),e=i.flags,(e&65536)!==0&&(e&128)===0?(i.flags=e&-65537|128,i):null;case 26:case 27:case 5:return we(i),null;case 31:if(i.memoizedState!==null){if(ei(i),i.alternate===null)throw Error(a(340));Xn()}return e=i.flags,e&65536?(i.flags=e&-65537|128,i):null;case 13:if(ei(i),e=i.memoizedState,e!==null&&e.dehydrated!==null){if(i.alternate===null)throw Error(a(340));Xn()}return e=i.flags,e&65536?(i.flags=e&-65537|128,i):null;case 19:return B(as),null;case 4:return ue(),null;case 10:return Gi(i.type),null;case 22:case 23:return ei(i),Ju(),e!==null&&B(Qn),e=i.flags,e&65536?(i.flags=e&-65537|128,i):null;case 24:return Gi(fs),null;case 25:return null;default:return null}}function U_(e,i){switch(Bu(i),i.tag){case 3:Gi(fs),ue();break;case 26:case 27:case 5:we(i);break;case 4:ue();break;case 31:i.memoizedState!==null&&ei(i);break;case 13:ei(i);break;case 19:B(as);break;case 10:Gi(i.type);break;case 22:case 23:ei(i),Ju(),e!==null&&B(Qn);break;case 24:Gi(fs)}}function Va(e,i){try{var r=i.updateQueue,o=r!==null?r.lastEffect:null;if(o!==null){var g=o.next;r=g;do{if((r.tag&e)===e){o=void 0;var w=r.create,N=r.inst;o=w(),N.destroy=o}r=r.next}while(r!==g)}}catch(z){Ct(i,i.return,z)}}function Tn(e,i,r){try{var o=i.updateQueue,g=o!==null?o.lastEffect:null;if(g!==null){var w=g.next;o=w;do{if((o.tag&e)===e){var N=o.inst,z=N.destroy;if(z!==void 0){N.destroy=void 0,g=i;var X=r,re=z;try{re()}catch(pe){Ct(g,X,pe)}}}o=o.next}while(o!==w)}}catch(pe){Ct(i,i.return,pe)}}function F_(e){var i=e.updateQueue;if(i!==null){var r=e.stateNode;try{Nv(i,r)}catch(o){Ct(e,e.return,o)}}}function q_(e,i,r){r.props=nr(e.type,e.memoizedProps),r.state=e.memoizedState;try{r.componentWillUnmount()}catch(o){Ct(e,i,o)}}function Ya(e,i){try{var r=e.ref;if(r!==null){switch(e.tag){case 26:case 27:case 5:var o=e.stateNode;break;case 30:o=e.stateNode;break;default:o=e.stateNode}typeof r=="function"?e.refCleanup=r(o):r.current=o}}catch(g){Ct(e,i,g)}}function Li(e,i){var r=e.ref,o=e.refCleanup;if(r!==null)if(typeof o=="function")try{o()}catch(g){Ct(e,i,g)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof r=="function")try{r(null)}catch(g){Ct(e,i,g)}else r.current=null}function W_(e){var i=e.type,r=e.memoizedProps,o=e.stateNode;try{e:switch(i){case"button":case"input":case"select":case"textarea":r.autoFocus&&o.focus();break e;case"img":r.src?o.src=r.src:r.srcSet&&(o.srcset=r.srcSet)}}catch(g){Ct(e,e.return,g)}}function Rh(e,i,r){try{var o=e.stateNode;hw(o,e.type,r,i),o[hs]=i}catch(g){Ct(e,e.return,g)}}function G_(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Ln(e.type)||e.tag===4}function Mh(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||G_(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Ln(e.type)||e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Dh(e,i,r){var o=e.tag;if(o===5||o===6)e=e.stateNode,i?(r.nodeType===9?r.body:r.nodeName==="HTML"?r.ownerDocument.body:r).insertBefore(e,i):(i=r.nodeType===9?r.body:r.nodeName==="HTML"?r.ownerDocument.body:r,i.appendChild(e),r=r._reactRootContainer,r!=null||i.onclick!==null||(i.onclick=Pi));else if(o!==4&&(o===27&&Ln(e.type)&&(r=e.stateNode,i=null),e=e.child,e!==null))for(Dh(e,i,r),e=e.sibling;e!==null;)Dh(e,i,r),e=e.sibling}function jl(e,i,r){var o=e.tag;if(o===5||o===6)e=e.stateNode,i?r.insertBefore(e,i):r.appendChild(e);else if(o!==4&&(o===27&&Ln(e.type)&&(r=e.stateNode),e=e.child,e!==null))for(jl(e,i,r),e=e.sibling;e!==null;)jl(e,i,r),e=e.sibling}function V_(e){var i=e.stateNode,r=e.memoizedProps;try{for(var o=e.type,g=i.attributes;g.length;)i.removeAttributeNode(g[0]);ks(i,o,r),i[ut]=e,i[hs]=r}catch(w){Ct(e,e.return,w)}}var Ji=!1,_s=!1,jh=!1,Y_=typeof WeakSet=="function"?WeakSet:Set,Ss=null;function qS(e,i){if(e=e.containerInfo,Qh=Ql,e=av(e),Eu(e)){if("selectionStart"in e)var r={start:e.selectionStart,end:e.selectionEnd};else e:{r=(r=e.ownerDocument)&&r.defaultView||window;var o=r.getSelection&&r.getSelection();if(o&&o.rangeCount!==0){r=o.anchorNode;var g=o.anchorOffset,w=o.focusNode;o=o.focusOffset;try{r.nodeType,w.nodeType}catch{r=null;break e}var N=0,z=-1,X=-1,re=0,pe=0,ye=e,oe=null;t:for(;;){for(var he;ye!==r||g!==0&&ye.nodeType!==3||(z=N+g),ye!==w||o!==0&&ye.nodeType!==3||(X=N+o),ye.nodeType===3&&(N+=ye.nodeValue.length),(he=ye.firstChild)!==null;)oe=ye,ye=he;for(;;){if(ye===e)break t;if(oe===r&&++re===g&&(z=N),oe===w&&++pe===o&&(X=N),(he=ye.nextSibling)!==null)break;ye=oe,oe=ye.parentNode}ye=he}r=z===-1||X===-1?null:{start:z,end:X}}else r=null}r=r||{start:0,end:0}}else r=null;for(ed={focusedElem:e,selectionRange:r},Ql=!1,Ss=i;Ss!==null;)if(i=Ss,e=i.child,(i.subtreeFlags&1028)!==0&&e!==null)e.return=i,Ss=e;else for(;Ss!==null;){switch(i=Ss,w=i.alternate,e=i.flags,i.tag){case 0:if((e&4)!==0&&(e=i.updateQueue,e=e!==null?e.events:null,e!==null))for(r=0;r<e.length;r++)g=e[r],g.ref.impl=g.nextImpl;break;case 11:case 15:break;case 1:if((e&1024)!==0&&w!==null){e=void 0,r=i,g=w.memoizedProps,w=w.memoizedState,o=r.stateNode;try{var je=nr(r.type,g);e=o.getSnapshotBeforeUpdate(je,w),o.__reactInternalSnapshotBeforeUpdate=e}catch(Ve){Ct(r,r.return,Ve)}}break;case 3:if((e&1024)!==0){if(e=i.stateNode.containerInfo,r=e.nodeType,r===9)id(e);else if(r===1)switch(e.nodeName){case"HEAD":case"HTML":case"BODY":id(e);break;default:e.textContent=""}}break;case 5:case 26:case 27:case 6:case 4:case 17:break;default:if((e&1024)!==0)throw Error(a(163))}if(e=i.sibling,e!==null){e.return=i.return,Ss=e;break}Ss=i.return}}function K_(e,i,r){var o=r.flags;switch(r.tag){case 0:case 11:case 15:Qi(e,r),o&4&&Va(5,r);break;case 1:if(Qi(e,r),o&4)if(e=r.stateNode,i===null)try{e.componentDidMount()}catch(N){Ct(r,r.return,N)}else{var g=nr(r.type,i.memoizedProps);i=i.memoizedState;try{e.componentDidUpdate(g,i,e.__reactInternalSnapshotBeforeUpdate)}catch(N){Ct(r,r.return,N)}}o&64&&F_(r),o&512&&Ya(r,r.return);break;case 3:if(Qi(e,r),o&64&&(e=r.updateQueue,e!==null)){if(i=null,r.child!==null)switch(r.child.tag){case 27:case 5:i=r.child.stateNode;break;case 1:i=r.child.stateNode}try{Nv(e,i)}catch(N){Ct(r,r.return,N)}}break;case 27:i===null&&o&4&&V_(r);case 26:case 5:Qi(e,r),i===null&&o&4&&W_(r),o&512&&Ya(r,r.return);break;case 12:Qi(e,r);break;case 31:Qi(e,r),o&4&&Z_(e,r);break;case 13:Qi(e,r),o&4&&Q_(e,r),o&64&&(e=r.memoizedState,e!==null&&(e=e.dehydrated,e!==null&&(r=QS.bind(null,r),yw(e,r))));break;case 22:if(o=r.memoizedState!==null||Ji,!o){i=i!==null&&i.memoizedState!==null||_s,g=Ji;var w=_s;Ji=o,(_s=i)&&!w?en(e,r,(r.subtreeFlags&8772)!==0):Qi(e,r),Ji=g,_s=w}break;case 30:break;default:Qi(e,r)}}function X_(e){var i=e.alternate;i!==null&&(e.alternate=null,X_(i)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(i=e.stateNode,i!==null&&qe(i)),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}var Jt=null,Fs=!1;function Zi(e,i,r){for(r=r.child;r!==null;)J_(e,i,r),r=r.sibling}function J_(e,i,r){if(Gt&&typeof Gt.onCommitFiberUnmount=="function")try{Gt.onCommitFiberUnmount(ss,r)}catch{}switch(r.tag){case 26:_s||Li(r,i),Zi(e,i,r),r.memoizedState?r.memoizedState.count--:r.stateNode&&(r=r.stateNode,r.parentNode.removeChild(r));break;case 27:_s||Li(r,i);var o=Jt,g=Fs;Ln(r.type)&&(Jt=r.stateNode,Fs=!1),Zi(e,i,r),io(r.stateNode),Jt=o,Fs=g;break;case 5:_s||Li(r,i);case 6:if(o=Jt,g=Fs,Jt=null,Zi(e,i,r),Jt=o,Fs=g,Jt!==null)if(Fs)try{(Jt.nodeType===9?Jt.body:Jt.nodeName==="HTML"?Jt.ownerDocument.body:Jt).removeChild(r.stateNode)}catch(w){Ct(r,i,w)}else try{Jt.removeChild(r.stateNode)}catch(w){Ct(r,i,w)}break;case 18:Jt!==null&&(Fs?(e=Jt,Fg(e.nodeType===9?e.body:e.nodeName==="HTML"?e.ownerDocument.body:e,r.stateNode),ea(e)):Fg(Jt,r.stateNode));break;case 4:o=Jt,g=Fs,Jt=r.stateNode.containerInfo,Fs=!0,Zi(e,i,r),Jt=o,Fs=g;break;case 0:case 11:case 14:case 15:Tn(2,r,i),_s||Tn(4,r,i),Zi(e,i,r);break;case 1:_s||(Li(r,i),o=r.stateNode,typeof o.componentWillUnmount=="function"&&q_(r,i,o)),Zi(e,i,r);break;case 21:Zi(e,i,r);break;case 22:_s=(o=_s)||r.memoizedState!==null,Zi(e,i,r),_s=o;break;default:Zi(e,i,r)}}function Z_(e,i){if(i.memoizedState===null&&(e=i.alternate,e!==null&&(e=e.memoizedState,e!==null))){e=e.dehydrated;try{ea(e)}catch(r){Ct(i,i.return,r)}}}function Q_(e,i){if(i.memoizedState===null&&(e=i.alternate,e!==null&&(e=e.memoizedState,e!==null&&(e=e.dehydrated,e!==null))))try{ea(e)}catch(r){Ct(i,i.return,r)}}function WS(e){switch(e.tag){case 31:case 13:case 19:var i=e.stateNode;return i===null&&(i=e.stateNode=new Y_),i;case 22:return e=e.stateNode,i=e._retryCache,i===null&&(i=e._retryCache=new Y_),i;default:throw Error(a(435,e.tag))}}function Nl(e,i){var r=WS(e);i.forEach(function(o){if(!r.has(o)){r.add(o);var g=ew.bind(null,e,o);o.then(g,g)}})}function qs(e,i){var r=i.deletions;if(r!==null)for(var o=0;o<r.length;o++){var g=r[o],w=e,N=i,z=N;e:for(;z!==null;){switch(z.tag){case 27:if(Ln(z.type)){Jt=z.stateNode,Fs=!1;break e}break;case 5:Jt=z.stateNode,Fs=!1;break e;case 3:case 4:Jt=z.stateNode.containerInfo,Fs=!0;break e}z=z.return}if(Jt===null)throw Error(a(160));J_(w,N,g),Jt=null,Fs=!1,w=g.alternate,w!==null&&(w.return=null),g.return=null}if(i.subtreeFlags&13886)for(i=i.child;i!==null;)eg(i,e),i=i.sibling}var Ti=null;function eg(e,i){var r=e.alternate,o=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:qs(i,e),Ws(e),o&4&&(Tn(3,e,e.return),Va(3,e),Tn(5,e,e.return));break;case 1:qs(i,e),Ws(e),o&512&&(_s||r===null||Li(r,r.return)),o&64&&Ji&&(e=e.updateQueue,e!==null&&(o=e.callbacks,o!==null&&(r=e.shared.hiddenCallbacks,e.shared.hiddenCallbacks=r===null?o:r.concat(o))));break;case 26:var g=Ti;if(qs(i,e),Ws(e),o&512&&(_s||r===null||Li(r,r.return)),o&4){var w=r!==null?r.memoizedState:null;if(o=e.memoizedState,r===null)if(o===null)if(e.stateNode===null){e:{o=e.type,r=e.memoizedProps,g=g.ownerDocument||g;t:switch(o){case"title":w=g.getElementsByTagName("title")[0],(!w||w[Me]||w[ut]||w.namespaceURI==="http://www.w3.org/2000/svg"||w.hasAttribute("itemprop"))&&(w=g.createElement(o),g.head.insertBefore(w,g.querySelector("head > title"))),ks(w,o,r),w[ut]=e,Z(w),o=w;break e;case"link":var N=em("link","href",g).get(o+(r.href||""));if(N){for(var z=0;z<N.length;z++)if(w=N[z],w.getAttribute("href")===(r.href==null||r.href===""?null:r.href)&&w.getAttribute("rel")===(r.rel==null?null:r.rel)&&w.getAttribute("title")===(r.title==null?null:r.title)&&w.getAttribute("crossorigin")===(r.crossOrigin==null?null:r.crossOrigin)){N.splice(z,1);break t}}w=g.createElement(o),ks(w,o,r),g.head.appendChild(w);break;case"meta":if(N=em("meta","content",g).get(o+(r.content||""))){for(z=0;z<N.length;z++)if(w=N[z],w.getAttribute("content")===(r.content==null?null:""+r.content)&&w.getAttribute("name")===(r.name==null?null:r.name)&&w.getAttribute("property")===(r.property==null?null:r.property)&&w.getAttribute("http-equiv")===(r.httpEquiv==null?null:r.httpEquiv)&&w.getAttribute("charset")===(r.charSet==null?null:r.charSet)){N.splice(z,1);break t}}w=g.createElement(o),ks(w,o,r),g.head.appendChild(w);break;default:throw Error(a(468,o))}w[ut]=e,Z(w),o=w}e.stateNode=o}else tm(g,e.type,e.stateNode);else e.stateNode=Qg(g,o,e.memoizedProps);else w!==o?(w===null?r.stateNode!==null&&(r=r.stateNode,r.parentNode.removeChild(r)):w.count--,o===null?tm(g,e.type,e.stateNode):Qg(g,o,e.memoizedProps)):o===null&&e.stateNode!==null&&Rh(e,e.memoizedProps,r.memoizedProps)}break;case 27:qs(i,e),Ws(e),o&512&&(_s||r===null||Li(r,r.return)),r!==null&&o&4&&Rh(e,e.memoizedProps,r.memoizedProps);break;case 5:if(qs(i,e),Ws(e),o&512&&(_s||r===null||Li(r,r.return)),e.flags&32){g=e.stateNode;try{xr(g,"")}catch(je){Ct(e,e.return,je)}}o&4&&e.stateNode!=null&&(g=e.memoizedProps,Rh(e,g,r!==null?r.memoizedProps:g)),o&1024&&(jh=!0);break;case 6:if(qs(i,e),Ws(e),o&4){if(e.stateNode===null)throw Error(a(162));o=e.memoizedProps,r=e.stateNode;try{r.nodeValue=o}catch(je){Ct(e,e.return,je)}}break;case 3:if(Kl=null,g=Ti,Ti=Vl(i.containerInfo),qs(i,e),Ti=g,Ws(e),o&4&&r!==null&&r.memoizedState.isDehydrated)try{ea(i.containerInfo)}catch(je){Ct(e,e.return,je)}jh&&(jh=!1,tg(e));break;case 4:o=Ti,Ti=Vl(e.stateNode.containerInfo),qs(i,e),Ws(e),Ti=o;break;case 12:qs(i,e),Ws(e);break;case 31:qs(i,e),Ws(e),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,Nl(e,o)));break;case 13:qs(i,e),Ws(e),e.child.flags&8192&&e.memoizedState!==null!=(r!==null&&r.memoizedState!==null)&&(Ol=ft()),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,Nl(e,o)));break;case 22:g=e.memoizedState!==null;var X=r!==null&&r.memoizedState!==null,re=Ji,pe=_s;if(Ji=re||g,_s=pe||X,qs(i,e),_s=pe,Ji=re,Ws(e),o&8192)e:for(i=e.stateNode,i._visibility=g?i._visibility&-2:i._visibility|1,g&&(r===null||X||Ji||_s||rr(e)),r=null,i=e;;){if(i.tag===5||i.tag===26){if(r===null){X=r=i;try{if(w=X.stateNode,g)N=w.style,typeof N.setProperty=="function"?N.setProperty("display","none","important"):N.display="none";else{z=X.stateNode;var ye=X.memoizedProps.style,oe=ye!=null&&ye.hasOwnProperty("display")?ye.display:null;z.style.display=oe==null||typeof oe=="boolean"?"":(""+oe).trim()}}catch(je){Ct(X,X.return,je)}}}else if(i.tag===6){if(r===null){X=i;try{X.stateNode.nodeValue=g?"":X.memoizedProps}catch(je){Ct(X,X.return,je)}}}else if(i.tag===18){if(r===null){X=i;try{var he=X.stateNode;g?qg(he,!0):qg(X.stateNode,!1)}catch(je){Ct(X,X.return,je)}}}else if((i.tag!==22&&i.tag!==23||i.memoizedState===null||i===e)&&i.child!==null){i.child.return=i,i=i.child;continue}if(i===e)break e;for(;i.sibling===null;){if(i.return===null||i.return===e)break e;r===i&&(r=null),i=i.return}r===i&&(r=null),i.sibling.return=i.return,i=i.sibling}o&4&&(o=e.updateQueue,o!==null&&(r=o.retryQueue,r!==null&&(o.retryQueue=null,Nl(e,r))));break;case 19:qs(i,e),Ws(e),o&4&&(o=e.updateQueue,o!==null&&(e.updateQueue=null,Nl(e,o)));break;case 30:break;case 21:break;default:qs(i,e),Ws(e)}}function Ws(e){var i=e.flags;if(i&2){try{for(var r,o=e.return;o!==null;){if(G_(o)){r=o;break}o=o.return}if(r==null)throw Error(a(160));switch(r.tag){case 27:var g=r.stateNode,w=Mh(e);jl(e,w,g);break;case 5:var N=r.stateNode;r.flags&32&&(xr(N,""),r.flags&=-33);var z=Mh(e);jl(e,z,N);break;case 3:case 4:var X=r.stateNode.containerInfo,re=Mh(e);Dh(e,re,X);break;default:throw Error(a(161))}}catch(pe){Ct(e,e.return,pe)}e.flags&=-3}i&4096&&(e.flags&=-4097)}function tg(e){if(e.subtreeFlags&1024)for(e=e.child;e!==null;){var i=e;tg(i),i.tag===5&&i.flags&1024&&i.stateNode.reset(),e=e.sibling}}function Qi(e,i){if(i.subtreeFlags&8772)for(i=i.child;i!==null;)K_(e,i.alternate,i),i=i.sibling}function rr(e){for(e=e.child;e!==null;){var i=e;switch(i.tag){case 0:case 11:case 14:case 15:Tn(4,i,i.return),rr(i);break;case 1:Li(i,i.return);var r=i.stateNode;typeof r.componentWillUnmount=="function"&&q_(i,i.return,r),rr(i);break;case 27:io(i.stateNode);case 26:case 5:Li(i,i.return),rr(i);break;case 22:i.memoizedState===null&&rr(i);break;case 30:rr(i);break;default:rr(i)}e=e.sibling}}function en(e,i,r){for(r=r&&(i.subtreeFlags&8772)!==0,i=i.child;i!==null;){var o=i.alternate,g=e,w=i,N=w.flags;switch(w.tag){case 0:case 11:case 15:en(g,w,r),Va(4,w);break;case 1:if(en(g,w,r),o=w,g=o.stateNode,typeof g.componentDidMount=="function")try{g.componentDidMount()}catch(re){Ct(o,o.return,re)}if(o=w,g=o.updateQueue,g!==null){var z=o.stateNode;try{var X=g.shared.hiddenCallbacks;if(X!==null)for(g.shared.hiddenCallbacks=null,g=0;g<X.length;g++)jv(X[g],z)}catch(re){Ct(o,o.return,re)}}r&&N&64&&F_(w),Ya(w,w.return);break;case 27:V_(w);case 26:case 5:en(g,w,r),r&&o===null&&N&4&&W_(w),Ya(w,w.return);break;case 12:en(g,w,r);break;case 31:en(g,w,r),r&&N&4&&Z_(g,w);break;case 13:en(g,w,r),r&&N&4&&Q_(g,w);break;case 22:w.memoizedState===null&&en(g,w,r),Ya(w,w.return);break;case 30:break;default:en(g,w,r)}i=i.sibling}}function Nh(e,i){var r=null;e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(r=e.memoizedState.cachePool.pool),e=null,i.memoizedState!==null&&i.memoizedState.cachePool!==null&&(e=i.memoizedState.cachePool.pool),e!==r&&(e!=null&&e.refCount++,r!=null&&La(r))}function Lh(e,i){e=null,i.alternate!==null&&(e=i.alternate.memoizedState.cache),i=i.memoizedState.cache,i!==e&&(i.refCount++,e!=null&&La(e))}function Ai(e,i,r,o){if(i.subtreeFlags&10256)for(i=i.child;i!==null;)sg(e,i,r,o),i=i.sibling}function sg(e,i,r,o){var g=i.flags;switch(i.tag){case 0:case 11:case 15:Ai(e,i,r,o),g&2048&&Va(9,i);break;case 1:Ai(e,i,r,o);break;case 3:Ai(e,i,r,o),g&2048&&(e=null,i.alternate!==null&&(e=i.alternate.memoizedState.cache),i=i.memoizedState.cache,i!==e&&(i.refCount++,e!=null&&La(e)));break;case 12:if(g&2048){Ai(e,i,r,o),e=i.stateNode;try{var w=i.memoizedProps,N=w.id,z=w.onPostCommit;typeof z=="function"&&z(N,i.alternate===null?"mount":"update",e.passiveEffectDuration,-0)}catch(X){Ct(i,i.return,X)}}else Ai(e,i,r,o);break;case 31:Ai(e,i,r,o);break;case 13:Ai(e,i,r,o);break;case 23:break;case 22:w=i.stateNode,N=i.alternate,i.memoizedState!==null?w._visibility&2?Ai(e,i,r,o):Ka(e,i):w._visibility&2?Ai(e,i,r,o):(w._visibility|=2,Fr(e,i,r,o,(i.subtreeFlags&10256)!==0||!1)),g&2048&&Nh(N,i);break;case 24:Ai(e,i,r,o),g&2048&&Lh(i.alternate,i);break;default:Ai(e,i,r,o)}}function Fr(e,i,r,o,g){for(g=g&&((i.subtreeFlags&10256)!==0||!1),i=i.child;i!==null;){var w=e,N=i,z=r,X=o,re=N.flags;switch(N.tag){case 0:case 11:case 15:Fr(w,N,z,X,g),Va(8,N);break;case 23:break;case 22:var pe=N.stateNode;N.memoizedState!==null?pe._visibility&2?Fr(w,N,z,X,g):Ka(w,N):(pe._visibility|=2,Fr(w,N,z,X,g)),g&&re&2048&&Nh(N.alternate,N);break;case 24:Fr(w,N,z,X,g),g&&re&2048&&Lh(N.alternate,N);break;default:Fr(w,N,z,X,g)}i=i.sibling}}function Ka(e,i){if(i.subtreeFlags&10256)for(i=i.child;i!==null;){var r=e,o=i,g=o.flags;switch(o.tag){case 22:Ka(r,o),g&2048&&Nh(o.alternate,o);break;case 24:Ka(r,o),g&2048&&Lh(o.alternate,o);break;default:Ka(r,o)}i=i.sibling}}var Xa=8192;function qr(e,i,r){if(e.subtreeFlags&Xa)for(e=e.child;e!==null;)ig(e,i,r),e=e.sibling}function ig(e,i,r){switch(e.tag){case 26:qr(e,i,r),e.flags&Xa&&e.memoizedState!==null&&Dw(r,Ti,e.memoizedState,e.memoizedProps);break;case 5:qr(e,i,r);break;case 3:case 4:var o=Ti;Ti=Vl(e.stateNode.containerInfo),qr(e,i,r),Ti=o;break;case 22:e.memoizedState===null&&(o=e.alternate,o!==null&&o.memoizedState!==null?(o=Xa,Xa=16777216,qr(e,i,r),Xa=o):qr(e,i,r));break;default:qr(e,i,r)}}function ng(e){var i=e.alternate;if(i!==null&&(e=i.child,e!==null)){i.child=null;do i=e.sibling,e.sibling=null,e=i;while(e!==null)}}function Ja(e){var i=e.deletions;if((e.flags&16)!==0){if(i!==null)for(var r=0;r<i.length;r++){var o=i[r];Ss=o,ag(o,e)}ng(e)}if(e.subtreeFlags&10256)for(e=e.child;e!==null;)rg(e),e=e.sibling}function rg(e){switch(e.tag){case 0:case 11:case 15:Ja(e),e.flags&2048&&Tn(9,e,e.return);break;case 3:Ja(e);break;case 12:Ja(e);break;case 22:var i=e.stateNode;e.memoizedState!==null&&i._visibility&2&&(e.return===null||e.return.tag!==13)?(i._visibility&=-3,Ll(e)):Ja(e);break;default:Ja(e)}}function Ll(e){var i=e.deletions;if((e.flags&16)!==0){if(i!==null)for(var r=0;r<i.length;r++){var o=i[r];Ss=o,ag(o,e)}ng(e)}for(e=e.child;e!==null;){switch(i=e,i.tag){case 0:case 11:case 15:Tn(8,i,i.return),Ll(i);break;case 22:r=i.stateNode,r._visibility&2&&(r._visibility&=-3,Ll(i));break;default:Ll(i)}e=e.sibling}}function ag(e,i){for(;Ss!==null;){var r=Ss;switch(r.tag){case 0:case 11:case 15:Tn(8,r,i);break;case 23:case 22:if(r.memoizedState!==null&&r.memoizedState.cachePool!==null){var o=r.memoizedState.cachePool.pool;o!=null&&o.refCount++}break;case 24:La(r.memoizedState.cache)}if(o=r.child,o!==null)o.return=r,Ss=o;else e:for(r=e;Ss!==null;){o=Ss;var g=o.sibling,w=o.return;if(X_(o),o===r){Ss=null;break e}if(g!==null){g.return=w,Ss=g;break e}Ss=w}}}var GS={getCacheForType:function(e){var i=Cs(fs),r=i.data.get(e);return r===void 0&&(r=e(),i.data.set(e,r)),r},cacheSignal:function(){return Cs(fs).controller.signal}},VS=typeof WeakMap=="function"?WeakMap:Map,mt=0,Ot=null,ot=null,ht=0,xt=0,ti=null,An=!1,Wr=!1,Oh=!1,tn=0,ns=0,Rn=0,ar=0,Bh=0,si=0,Gr=0,Za=null,Gs=null,Hh=!1,Ol=0,og=0,Bl=1/0,Hl=null,Mn=null,bs=0,Dn=null,Vr=null,sn=0,zh=0,Ih=null,lg=null,Qa=0,$h=null;function ii(){return(mt&2)!==0&&ht!==0?ht&-ht:q.T!==null?Gh():Ci()}function cg(){if(si===0)if((ht&536870912)===0||pt){var e=ts;ts<<=1,(ts&3932160)===0&&(ts=262144),si=e}else si=536870912;return e=Qs.current,e!==null&&(e.flags|=32),si}function Vs(e,i,r){(e===Ot&&(xt===2||xt===9)||e.cancelPendingCommit!==null)&&(Yr(e,0),jn(e,ht,si,!1)),Se(e,r),((mt&2)===0||e!==Ot)&&(e===Ot&&((mt&2)===0&&(ar|=r),ns===4&&jn(e,ht,si,!1)),Oi(e))}function ug(e,i,r){if((mt&6)!==0)throw Error(a(327));var o=!r&&(i&127)===0&&(i&e.expiredLanes)===0||Xs(e,i),g=o?XS(e,i):Uh(e,i,!0),w=o;do{if(g===0){Wr&&!o&&jn(e,i,0,!1);break}else{if(r=e.current.alternate,w&&!YS(r)){g=Uh(e,i,!1),w=!1;continue}if(g===2){if(w=i,e.errorRecoveryDisabledLanes&w)var N=0;else N=e.pendingLanes&-536870913,N=N!==0?N:N&536870912?536870912:0;if(N!==0){i=N;e:{var z=e;g=Za;var X=z.current.memoizedState.isDehydrated;if(X&&(Yr(z,N).flags|=256),N=Uh(z,N,!1),N!==2){if(Oh&&!X){z.errorRecoveryDisabledLanes|=w,ar|=w,g=4;break e}w=Gs,Gs=g,w!==null&&(Gs===null?Gs=w:Gs.push.apply(Gs,w))}g=N}if(w=!1,g!==2)continue}}if(g===1){Yr(e,0),jn(e,i,0,!0);break}e:{switch(o=e,w=g,w){case 0:case 1:throw Error(a(345));case 4:if((i&4194048)!==i)break;case 6:jn(o,i,si,!An);break e;case 2:Gs=null;break;case 3:case 5:break;default:throw Error(a(329))}if((i&62914560)===i&&(g=Ol+300-ft(),10<g)){if(jn(o,i,si,!An),xi(o,0,!0)!==0)break e;sn=i,o.timeoutHandle=Pg(hg.bind(null,o,r,Gs,Hl,Hh,i,si,ar,Gr,An,w,"Throttled",-0,0),g);break e}hg(o,r,Gs,Hl,Hh,i,si,ar,Gr,An,w,null,-0,0)}}break}while(!0);Oi(e)}function hg(e,i,r,o,g,w,N,z,X,re,pe,ye,oe,he){if(e.timeoutHandle=-1,ye=i.subtreeFlags,ye&8192||(ye&16785408)===16785408){ye={stylesheets:null,count:0,imgCount:0,imgBytes:0,suspenseyImages:[],waitingForImages:!0,waitingForViewTransition:!1,unsuspend:Pi},ig(i,w,ye);var je=(w&62914560)===w?Ol-ft():(w&4194048)===w?og-ft():0;if(je=jw(ye,je),je!==null){sn=w,e.cancelPendingCommit=je(yg.bind(null,e,i,w,r,o,g,N,z,X,pe,ye,null,oe,he)),jn(e,w,N,!re);return}}yg(e,i,w,r,o,g,N,z,X)}function YS(e){for(var i=e;;){var r=i.tag;if((r===0||r===11||r===15)&&i.flags&16384&&(r=i.updateQueue,r!==null&&(r=r.stores,r!==null)))for(var o=0;o<r.length;o++){var g=r[o],w=g.getSnapshot;g=g.value;try{if(!Js(w(),g))return!1}catch{return!1}}if(r=i.child,i.subtreeFlags&16384&&r!==null)r.return=i,i=r;else{if(i===e)break;for(;i.sibling===null;){if(i.return===null||i.return===e)return!0;i=i.return}i.sibling.return=i.return,i=i.sibling}}return!0}function jn(e,i,r,o){i&=~Bh,i&=~ar,e.suspendedLanes|=i,e.pingedLanes&=~i,o&&(e.warmLanes|=i),o=e.expirationTimes;for(var g=i;0<g;){var w=31-Yt(g),N=1<<w;o[w]=-1,g&=~N}r!==0&&tt(e,r,i)}function zl(){return(mt&6)===0?(eo(0),!1):!0}function Ph(){if(ot!==null){if(xt===0)var e=ot.return;else e=ot,Wi=Jn=null,ih(e),zr=null,Ba=0,e=ot;for(;e!==null;)U_(e.alternate,e),e=e.return;ot=null}}function Yr(e,i){var r=e.timeoutHandle;r!==-1&&(e.timeoutHandle=-1,pw(r)),r=e.cancelPendingCommit,r!==null&&(e.cancelPendingCommit=null,r()),sn=0,Ph(),Ot=e,ot=r=Fi(e.current,null),ht=i,xt=0,ti=null,An=!1,Wr=Xs(e,i),Oh=!1,Gr=si=Bh=ar=Rn=ns=0,Gs=Za=null,Hh=!1,(i&8)!==0&&(i|=i&32);var o=e.entangledLanes;if(o!==0)for(e=e.entanglements,o&=i;0<o;){var g=31-Yt(o),w=1<<g;i|=e[g],o&=~w}return tn=i,rl(),r}function dg(e,i){et=null,q.H=qa,i===Hr||i===fl?(i=Av(),xt=3):i===Wu?(i=Av(),xt=4):xt=i===yh?8:i!==null&&typeof i=="object"&&typeof i.then=="function"?6:1,ti=i,ot===null&&(ns=1,Tl(e,hi(i,e.current)))}function fg(){var e=Qs.current;return e===null?!0:(ht&4194048)===ht?vi===null:(ht&62914560)===ht||(ht&536870912)!==0?e===vi:!1}function pg(){var e=q.H;return q.H=qa,e===null?qa:e}function vg(){var e=q.A;return q.A=GS,e}function Il(){ns=4,An||(ht&4194048)!==ht&&Qs.current!==null||(Wr=!0),(Rn&134217727)===0&&(ar&134217727)===0||Ot===null||jn(Ot,ht,si,!1)}function Uh(e,i,r){var o=mt;mt|=2;var g=pg(),w=vg();(Ot!==e||ht!==i)&&(Hl=null,Yr(e,i)),i=!1;var N=ns;e:do try{if(xt!==0&&ot!==null){var z=ot,X=ti;switch(xt){case 8:Ph(),N=6;break e;case 3:case 2:case 9:case 6:Qs.current===null&&(i=!0);var re=xt;if(xt=0,ti=null,Kr(e,z,X,re),r&&Wr){N=0;break e}break;default:re=xt,xt=0,ti=null,Kr(e,z,X,re)}}KS(),N=ns;break}catch(pe){dg(e,pe)}while(!0);return i&&e.shellSuspendCounter++,Wi=Jn=null,mt=o,q.H=g,q.A=w,ot===null&&(Ot=null,ht=0,rl()),N}function KS(){for(;ot!==null;)_g(ot)}function XS(e,i){var r=mt;mt|=2;var o=pg(),g=vg();Ot!==e||ht!==i?(Hl=null,Bl=ft()+500,Yr(e,i)):Wr=Xs(e,i);e:do try{if(xt!==0&&ot!==null){i=ot;var w=ti;t:switch(xt){case 1:xt=0,ti=null,Kr(e,i,w,1);break;case 2:case 9:if(kv(w)){xt=0,ti=null,gg(i);break}i=function(){xt!==2&&xt!==9||Ot!==e||(xt=7),Oi(e)},w.then(i,i);break e;case 3:xt=7;break e;case 4:xt=5;break e;case 7:kv(w)?(xt=0,ti=null,gg(i)):(xt=0,ti=null,Kr(e,i,w,7));break;case 5:var N=null;switch(ot.tag){case 26:N=ot.memoizedState;case 5:case 27:var z=ot;if(N?sm(N):z.stateNode.complete){xt=0,ti=null;var X=z.sibling;if(X!==null)ot=X;else{var re=z.return;re!==null?(ot=re,$l(re)):ot=null}break t}}xt=0,ti=null,Kr(e,i,w,5);break;case 6:xt=0,ti=null,Kr(e,i,w,6);break;case 8:Ph(),ns=6;break e;default:throw Error(a(462))}}JS();break}catch(pe){dg(e,pe)}while(!0);return Wi=Jn=null,q.H=o,q.A=g,mt=r,ot!==null?0:(Ot=null,ht=0,rl(),ns)}function JS(){for(;ot!==null&&!It();)_g(ot)}function _g(e){var i=$_(e.alternate,e,tn);e.memoizedProps=e.pendingProps,i===null?$l(e):ot=i}function gg(e){var i=e,r=i.alternate;switch(i.tag){case 15:case 0:i=L_(r,i,i.pendingProps,i.type,void 0,ht);break;case 11:i=L_(r,i,i.pendingProps,i.type.render,i.ref,ht);break;case 5:ih(i);default:U_(r,i),i=ot=vv(i,tn),i=$_(r,i,tn)}e.memoizedProps=e.pendingProps,i===null?$l(e):ot=i}function Kr(e,i,r,o){Wi=Jn=null,ih(i),zr=null,Ba=0;var g=i.return;try{if(IS(e,g,i,r,ht)){ns=1,Tl(e,hi(r,e.current)),ot=null;return}}catch(w){if(g!==null)throw ot=g,w;ns=1,Tl(e,hi(r,e.current)),ot=null;return}i.flags&32768?(pt||o===1?e=!0:Wr||(ht&536870912)!==0?e=!1:(An=e=!0,(o===2||o===9||o===3||o===6)&&(o=Qs.current,o!==null&&o.tag===13&&(o.flags|=16384))),mg(i,e)):$l(i)}function $l(e){var i=e;do{if((i.flags&32768)!==0){mg(i,An);return}e=i.return;var r=US(i.alternate,i,tn);if(r!==null){ot=r;return}if(i=i.sibling,i!==null){ot=i;return}ot=i=e}while(i!==null);ns===0&&(ns=5)}function mg(e,i){do{var r=FS(e.alternate,e);if(r!==null){r.flags&=32767,ot=r;return}if(r=e.return,r!==null&&(r.flags|=32768,r.subtreeFlags=0,r.deletions=null),!i&&(e=e.sibling,e!==null)){ot=e;return}ot=e=r}while(e!==null);ns=6,ot=null}function yg(e,i,r,o,g,w,N,z,X){e.cancelPendingCommit=null;do Pl();while(bs!==0);if((mt&6)!==0)throw Error(a(327));if(i!==null){if(i===e.current)throw Error(a(177));if(w=i.lanes|i.childLanes,w|=Mu,Oe(e,r,w,N,z,X),e===Ot&&(ot=Ot=null,ht=0),Vr=i,Dn=e,sn=r,zh=w,Ih=g,lg=o,(i.subtreeFlags&10256)!==0||(i.flags&10256)!==0?(e.callbackNode=null,e.callbackPriority=0,tw(St,function(){return Cg(),null})):(e.callbackNode=null,e.callbackPriority=0),o=(i.flags&13878)!==0,(i.subtreeFlags&13878)!==0||o){o=q.T,q.T=null,g=G.p,G.p=2,N=mt,mt|=4;try{qS(e,i,r)}finally{mt=N,G.p=g,q.T=o}}bs=1,bg(),Sg(),wg()}}function bg(){if(bs===1){bs=0;var e=Dn,i=Vr,r=(i.flags&13878)!==0;if((i.subtreeFlags&13878)!==0||r){r=q.T,q.T=null;var o=G.p;G.p=2;var g=mt;mt|=4;try{eg(i,e);var w=ed,N=av(e.containerInfo),z=w.focusedElem,X=w.selectionRange;if(N!==z&&z&&z.ownerDocument&&rv(z.ownerDocument.documentElement,z)){if(X!==null&&Eu(z)){var re=X.start,pe=X.end;if(pe===void 0&&(pe=re),"selectionStart"in z)z.selectionStart=re,z.selectionEnd=Math.min(pe,z.value.length);else{var ye=z.ownerDocument||document,oe=ye&&ye.defaultView||window;if(oe.getSelection){var he=oe.getSelection(),je=z.textContent.length,Ve=Math.min(X.start,je),Mt=X.end===void 0?Ve:Math.min(X.end,je);!he.extend&&Ve>Mt&&(N=Mt,Mt=Ve,Ve=N);var se=nv(z,Ve),Q=nv(z,Mt);if(se&&Q&&(he.rangeCount!==1||he.anchorNode!==se.node||he.anchorOffset!==se.offset||he.focusNode!==Q.node||he.focusOffset!==Q.offset)){var ne=ye.createRange();ne.setStart(se.node,se.offset),he.removeAllRanges(),Ve>Mt?(he.addRange(ne),he.extend(Q.node,Q.offset)):(ne.setEnd(Q.node,Q.offset),he.addRange(ne))}}}}for(ye=[],he=z;he=he.parentNode;)he.nodeType===1&&ye.push({element:he,left:he.scrollLeft,top:he.scrollTop});for(typeof z.focus=="function"&&z.focus(),z=0;z<ye.length;z++){var ve=ye[z];ve.element.scrollLeft=ve.left,ve.element.scrollTop=ve.top}}Ql=!!Qh,ed=Qh=null}finally{mt=g,G.p=o,q.T=r}}e.current=i,bs=2}}function Sg(){if(bs===2){bs=0;var e=Dn,i=Vr,r=(i.flags&8772)!==0;if((i.subtreeFlags&8772)!==0||r){r=q.T,q.T=null;var o=G.p;G.p=2;var g=mt;mt|=4;try{K_(e,i.alternate,i)}finally{mt=g,G.p=o,q.T=r}}bs=3}}function wg(){if(bs===4||bs===3){bs=0,rt();var e=Dn,i=Vr,r=sn,o=lg;(i.subtreeFlags&10256)!==0||(i.flags&10256)!==0?bs=5:(bs=0,Vr=Dn=null,xg(e,e.pendingLanes));var g=e.pendingLanes;if(g===0&&(Mn=null),Ps(r),i=i.stateNode,Gt&&typeof Gt.onCommitFiberRoot=="function")try{Gt.onCommitFiberRoot(ss,i,void 0,(i.current.flags&128)===128)}catch{}if(o!==null){i=q.T,g=G.p,G.p=2,q.T=null;try{for(var w=e.onRecoverableError,N=0;N<o.length;N++){var z=o[N];w(z.value,{componentStack:z.stack})}}finally{q.T=i,G.p=g}}(sn&3)!==0&&Pl(),Oi(e),g=e.pendingLanes,(r&261930)!==0&&(g&42)!==0?e===$h?Qa++:(Qa=0,$h=e):Qa=0,eo(0)}}function xg(e,i){(e.pooledCacheLanes&=i)===0&&(i=e.pooledCache,i!=null&&(e.pooledCache=null,La(i)))}function Pl(){return bg(),Sg(),wg(),Cg()}function Cg(){if(bs!==5)return!1;var e=Dn,i=zh;zh=0;var r=Ps(sn),o=q.T,g=G.p;try{G.p=32>r?32:r,q.T=null,r=Ih,Ih=null;var w=Dn,N=sn;if(bs=0,Vr=Dn=null,sn=0,(mt&6)!==0)throw Error(a(331));var z=mt;if(mt|=4,rg(w.current),sg(w,w.current,N,r),mt=z,eo(0,!1),Gt&&typeof Gt.onPostCommitFiberRoot=="function")try{Gt.onPostCommitFiberRoot(ss,w)}catch{}return!0}finally{G.p=g,q.T=o,xg(e,i)}}function Eg(e,i,r){i=hi(r,i),i=mh(e.stateNode,i,2),e=Cn(e,i,2),e!==null&&(Se(e,2),Oi(e))}function Ct(e,i,r){if(e.tag===3)Eg(e,e,r);else for(;i!==null;){if(i.tag===3){Eg(i,e,r);break}else if(i.tag===1){var o=i.stateNode;if(typeof i.type.getDerivedStateFromError=="function"||typeof o.componentDidCatch=="function"&&(Mn===null||!Mn.has(o))){e=hi(r,e),r=k_(2),o=Cn(i,r,2),o!==null&&(T_(r,o,i,e),Se(o,2),Oi(o));break}}i=i.return}}function Fh(e,i,r){var o=e.pingCache;if(o===null){o=e.pingCache=new VS;var g=new Set;o.set(i,g)}else g=o.get(i),g===void 0&&(g=new Set,o.set(i,g));g.has(r)||(Oh=!0,g.add(r),e=ZS.bind(null,e,i,r),i.then(e,e))}function ZS(e,i,r){var o=e.pingCache;o!==null&&o.delete(i),e.pingedLanes|=e.suspendedLanes&r,e.warmLanes&=~r,Ot===e&&(ht&r)===r&&(ns===4||ns===3&&(ht&62914560)===ht&&300>ft()-Ol?(mt&2)===0&&Yr(e,0):Bh|=r,Gr===ht&&(Gr=0)),Oi(e)}function kg(e,i){i===0&&(i=me()),e=Yn(e,i),e!==null&&(Se(e,i),Oi(e))}function QS(e){var i=e.memoizedState,r=0;i!==null&&(r=i.retryLane),kg(e,r)}function ew(e,i){var r=0;switch(e.tag){case 31:case 13:var o=e.stateNode,g=e.memoizedState;g!==null&&(r=g.retryLane);break;case 19:o=e.stateNode;break;case 22:o=e.stateNode._retryCache;break;default:throw Error(a(314))}o!==null&&o.delete(i),kg(e,r)}function tw(e,i){return We(e,i)}var Ul=null,Xr=null,qh=!1,Fl=!1,Wh=!1,Nn=0;function Oi(e){e!==Xr&&e.next===null&&(Xr===null?Ul=Xr=e:Xr=Xr.next=e),Fl=!0,qh||(qh=!0,iw())}function eo(e,i){if(!Wh&&Fl){Wh=!0;do for(var r=!1,o=Ul;o!==null;){if(e!==0){var g=o.pendingLanes;if(g===0)var w=0;else{var N=o.suspendedLanes,z=o.pingedLanes;w=(1<<31-Yt(42|e)+1)-1,w&=g&~(N&~z),w=w&201326741?w&201326741|1:w?w|2:0}w!==0&&(r=!0,Mg(o,w))}else w=ht,w=xi(o,o===Ot?w:0,o.cancelPendingCommit!==null||o.timeoutHandle!==-1),(w&3)===0||Xs(o,w)||(r=!0,Mg(o,w));o=o.next}while(r);Wh=!1}}function sw(){Tg()}function Tg(){Fl=qh=!1;var e=0;Nn!==0&&fw()&&(e=Nn);for(var i=ft(),r=null,o=Ul;o!==null;){var g=o.next,w=Ag(o,i);w===0?(o.next=null,r===null?Ul=g:r.next=g,g===null&&(Xr=r)):(r=o,(e!==0||(w&3)!==0)&&(Fl=!0)),o=g}bs!==0&&bs!==5||eo(e),Nn!==0&&(Nn=0)}function Ag(e,i){for(var r=e.suspendedLanes,o=e.pingedLanes,g=e.expirationTimes,w=e.pendingLanes&-62914561;0<w;){var N=31-Yt(w),z=1<<N,X=g[N];X===-1?((z&r)===0||(z&o)!==0)&&(g[N]=ae(z,i)):X<=i&&(e.expiredLanes|=z),w&=~z}if(i=Ot,r=ht,r=xi(e,e===i?r:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),o=e.callbackNode,r===0||e===i&&(xt===2||xt===9)||e.cancelPendingCommit!==null)return o!==null&&o!==null&&vt(o),e.callbackNode=null,e.callbackPriority=0;if((r&3)===0||Xs(e,r)){if(i=r&-r,i===e.callbackPriority)return i;switch(o!==null&&vt(o),Ps(r)){case 2:case 8:r=cs;break;case 32:r=St;break;case 268435456:r=Lt;break;default:r=St}return o=Rg.bind(null,e),r=We(r,o),e.callbackPriority=i,e.callbackNode=r,i}return o!==null&&o!==null&&vt(o),e.callbackPriority=2,e.callbackNode=null,2}function Rg(e,i){if(bs!==0&&bs!==5)return e.callbackNode=null,e.callbackPriority=0,null;var r=e.callbackNode;if(Pl()&&e.callbackNode!==r)return null;var o=ht;return o=xi(e,e===Ot?o:0,e.cancelPendingCommit!==null||e.timeoutHandle!==-1),o===0?null:(ug(e,o,i),Ag(e,ft()),e.callbackNode!=null&&e.callbackNode===r?Rg.bind(null,e):null)}function Mg(e,i){if(Pl())return null;ug(e,i,!0)}function iw(){vw(function(){(mt&6)!==0?We(es,sw):Tg()})}function Gh(){if(Nn===0){var e=Or;e===0&&(e=Fe,Fe<<=1,(Fe&261888)===0&&(Fe=256)),Nn=e}return Nn}function Dg(e){return e==null||typeof e=="symbol"||typeof e=="boolean"?null:typeof e=="function"?e:Jo(""+e)}function jg(e,i){var r=i.ownerDocument.createElement("input");return r.name=i.name,r.value=i.value,e.id&&r.setAttribute("form",e.id),i.parentNode.insertBefore(r,i),e=new FormData(e),r.parentNode.removeChild(r),e}function nw(e,i,r,o,g){if(i==="submit"&&r&&r.stateNode===g){var w=Dg((g[hs]||null).action),N=o.submitter;N&&(i=(i=N[hs]||null)?Dg(i.formAction):N.getAttribute("formAction"),i!==null&&(w=i,N=null));var z=new tl("action","action",null,o,g);e.push({event:z,listeners:[{instance:null,listener:function(){if(o.defaultPrevented){if(Nn!==0){var X=N?jg(g,N):new FormData(g);dh(r,{pending:!0,data:X,method:g.method,action:w},null,X)}}else typeof w=="function"&&(z.preventDefault(),X=N?jg(g,N):new FormData(g),dh(r,{pending:!0,data:X,method:g.method,action:w},w,X))},currentTarget:g}]})}}for(var Vh=0;Vh<Ru.length;Vh++){var Yh=Ru[Vh],rw=Yh.toLowerCase(),aw=Yh[0].toUpperCase()+Yh.slice(1);ki(rw,"on"+aw)}ki(cv,"onAnimationEnd"),ki(uv,"onAnimationIteration"),ki(hv,"onAnimationStart"),ki("dblclick","onDoubleClick"),ki("focusin","onFocus"),ki("focusout","onBlur"),ki(wS,"onTransitionRun"),ki(xS,"onTransitionStart"),ki(CS,"onTransitionCancel"),ki(dv,"onTransitionEnd"),Tt("onMouseEnter",["mouseout","mouseover"]),Tt("onMouseLeave",["mouseout","mouseover"]),Tt("onPointerEnter",["pointerout","pointerover"]),Tt("onPointerLeave",["pointerout","pointerover"]),He("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),He("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),He("onBeforeInput",["compositionend","keypress","textInput","paste"]),He("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),He("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),He("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var to="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),ow=new Set("beforetoggle cancel close invalid load scroll scrollend toggle".split(" ").concat(to));function Ng(e,i){i=(i&4)!==0;for(var r=0;r<e.length;r++){var o=e[r],g=o.event;o=o.listeners;e:{var w=void 0;if(i)for(var N=o.length-1;0<=N;N--){var z=o[N],X=z.instance,re=z.currentTarget;if(z=z.listener,X!==w&&g.isPropagationStopped())break e;w=z,g.currentTarget=re;try{w(g)}catch(pe){nl(pe)}g.currentTarget=null,w=X}else for(N=0;N<o.length;N++){if(z=o[N],X=z.instance,re=z.currentTarget,z=z.listener,X!==w&&g.isPropagationStopped())break e;w=z,g.currentTarget=re;try{w(g)}catch(pe){nl(pe)}g.currentTarget=null,w=X}}}}function lt(e,i){var r=i[_n];r===void 0&&(r=i[_n]=new Set);var o=e+"__bubble";r.has(o)||(Lg(i,e,2,!1),r.add(o))}function Kh(e,i,r){var o=0;i&&(o|=4),Lg(r,e,o,i)}var ql="_reactListening"+Math.random().toString(36).slice(2);function Xh(e){if(!e[ql]){e[ql]=!0,Te.forEach(function(r){r!=="selectionchange"&&(ow.has(r)||Kh(r,!1,e),Kh(r,!0,e))});var i=e.nodeType===9?e:e.ownerDocument;i===null||i[ql]||(i[ql]=!0,Kh("selectionchange",!1,i))}}function Lg(e,i,r,o){switch(cm(i)){case 2:var g=Ow;break;case 8:g=Bw;break;default:g=hd}r=g.bind(null,i,r,e),g=void 0,!_u||i!=="touchstart"&&i!=="touchmove"&&i!=="wheel"||(g=!0),o?g!==void 0?e.addEventListener(i,r,{capture:!0,passive:g}):e.addEventListener(i,r,!0):g!==void 0?e.addEventListener(i,r,{passive:g}):e.addEventListener(i,r,!1)}function Jh(e,i,r,o,g){var w=o;if((i&1)===0&&(i&2)===0&&o!==null)e:for(;;){if(o===null)return;var N=o.tag;if(N===3||N===4){var z=o.stateNode.containerInfo;if(z===g)break;if(N===4)for(N=o.return;N!==null;){var X=N.tag;if((X===3||X===4)&&N.stateNode.containerInfo===g)return;N=N.return}for(;z!==null;){if(N=wt(z),N===null)return;if(X=N.tag,X===5||X===6||X===26||X===27){o=w=N;continue e}z=z.parentNode}}o=o.return}Ip(function(){var re=w,pe=pu(r),ye=[];e:{var oe=fv.get(e);if(oe!==void 0){var he=tl,je=e;switch(e){case"keypress":if(Qo(r)===0)break e;case"keydown":case"keyup":he=eS;break;case"focusin":je="focus",he=bu;break;case"focusout":je="blur",he=bu;break;case"beforeblur":case"afterblur":he=bu;break;case"click":if(r.button===2)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":he=Up;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":he=Ub;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":he=iS;break;case cv:case uv:case hv:he=Wb;break;case dv:he=rS;break;case"scroll":case"scrollend":he=$b;break;case"wheel":he=oS;break;case"copy":case"cut":case"paste":he=Vb;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":he=qp;break;case"toggle":case"beforetoggle":he=cS}var Ve=(i&4)!==0,Mt=!Ve&&(e==="scroll"||e==="scrollend"),se=Ve?oe!==null?oe+"Capture":null:oe;Ve=[];for(var Q=re,ne;Q!==null;){var ve=Q;if(ne=ve.stateNode,ve=ve.tag,ve!==5&&ve!==26&&ve!==27||ne===null||se===null||(ve=xa(Q,se),ve!=null&&Ve.push(so(Q,ve,ne))),Mt)break;Q=Q.return}0<Ve.length&&(oe=new he(oe,je,null,r,pe),ye.push({event:oe,listeners:Ve}))}}if((i&7)===0){e:{if(oe=e==="mouseover"||e==="pointerover",he=e==="mouseout"||e==="pointerout",oe&&r!==fu&&(je=r.relatedTarget||r.fromElement)&&(wt(je)||je[oi]))break e;if((he||oe)&&(oe=pe.window===pe?pe:(oe=pe.ownerDocument)?oe.defaultView||oe.parentWindow:window,he?(je=r.relatedTarget||r.toElement,he=re,je=je?wt(je):null,je!==null&&(Mt=d(je),Ve=je.tag,je!==Mt||Ve!==5&&Ve!==27&&Ve!==6)&&(je=null)):(he=null,je=re),he!==je)){if(Ve=Up,ve="onMouseLeave",se="onMouseEnter",Q="mouse",(e==="pointerout"||e==="pointerover")&&(Ve=qp,ve="onPointerLeave",se="onPointerEnter",Q="pointer"),Mt=he==null?oe:rs(he),ne=je==null?oe:rs(je),oe=new Ve(ve,Q+"leave",he,r,pe),oe.target=Mt,oe.relatedTarget=ne,ve=null,wt(pe)===re&&(Ve=new Ve(se,Q+"enter",je,r,pe),Ve.target=ne,Ve.relatedTarget=Mt,ve=Ve),Mt=ve,he&&je)t:{for(Ve=lw,se=he,Q=je,ne=0,ve=se;ve;ve=Ve(ve))ne++;ve=0;for(var Pe=Q;Pe;Pe=Ve(Pe))ve++;for(;0<ne-ve;)se=Ve(se),ne--;for(;0<ve-ne;)Q=Ve(Q),ve--;for(;ne--;){if(se===Q||Q!==null&&se===Q.alternate){Ve=se;break t}se=Ve(se),Q=Ve(Q)}Ve=null}else Ve=null;he!==null&&Og(ye,oe,he,Ve,!1),je!==null&&Mt!==null&&Og(ye,Mt,je,Ve,!0)}}e:{if(oe=re?rs(re):window,he=oe.nodeName&&oe.nodeName.toLowerCase(),he==="select"||he==="input"&&oe.type==="file")var _t=Zp;else if(Xp(oe))if(Qp)_t=yS;else{_t=gS;var Be=_S}else he=oe.nodeName,!he||he.toLowerCase()!=="input"||oe.type!=="checkbox"&&oe.type!=="radio"?re&&du(re.elementType)&&(_t=Zp):_t=mS;if(_t&&(_t=_t(e,re))){Jp(ye,_t,r,pe);break e}Be&&Be(e,oe,re),e==="focusout"&&re&&oe.type==="number"&&re.memoizedProps.value!=null&&hu(oe,"number",oe.value)}switch(Be=re?rs(re):window,e){case"focusin":(Xp(Be)||Be.contentEditable==="true")&&(Tr=Be,ku=re,Da=null);break;case"focusout":Da=ku=Tr=null;break;case"mousedown":Tu=!0;break;case"contextmenu":case"mouseup":case"dragend":Tu=!1,ov(ye,r,pe);break;case"selectionchange":if(SS)break;case"keydown":case"keyup":ov(ye,r,pe)}var it;if(wu)e:{switch(e){case"compositionstart":var dt="onCompositionStart";break e;case"compositionend":dt="onCompositionEnd";break e;case"compositionupdate":dt="onCompositionUpdate";break e}dt=void 0}else kr?Yp(e,r)&&(dt="onCompositionEnd"):e==="keydown"&&r.keyCode===229&&(dt="onCompositionStart");dt&&(Wp&&r.locale!=="ko"&&(kr||dt!=="onCompositionStart"?dt==="onCompositionEnd"&&kr&&(it=$p()):(gn=pe,gu="value"in gn?gn.value:gn.textContent,kr=!0)),Be=Wl(re,dt),0<Be.length&&(dt=new Fp(dt,e,null,r,pe),ye.push({event:dt,listeners:Be}),it?dt.data=it:(it=Kp(r),it!==null&&(dt.data=it)))),(it=hS?dS(e,r):fS(e,r))&&(dt=Wl(re,"onBeforeInput"),0<dt.length&&(Be=new Fp("onBeforeInput","beforeinput",null,r,pe),ye.push({event:Be,listeners:dt}),Be.data=it)),nw(ye,e,re,r,pe)}Ng(ye,i)})}function so(e,i,r){return{instance:e,listener:i,currentTarget:r}}function Wl(e,i){for(var r=i+"Capture",o=[];e!==null;){var g=e,w=g.stateNode;if(g=g.tag,g!==5&&g!==26&&g!==27||w===null||(g=xa(e,r),g!=null&&o.unshift(so(e,g,w)),g=xa(e,i),g!=null&&o.push(so(e,g,w))),e.tag===3)return o;e=e.return}return[]}function lw(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5&&e.tag!==27);return e||null}function Og(e,i,r,o,g){for(var w=i._reactName,N=[];r!==null&&r!==o;){var z=r,X=z.alternate,re=z.stateNode;if(z=z.tag,X!==null&&X===o)break;z!==5&&z!==26&&z!==27||re===null||(X=re,g?(re=xa(r,w),re!=null&&N.unshift(so(r,re,X))):g||(re=xa(r,w),re!=null&&N.push(so(r,re,X)))),r=r.return}N.length!==0&&e.push({event:i,listeners:N})}var cw=/\r\n?/g,uw=/\u0000|\uFFFD/g;function Bg(e){return(typeof e=="string"?e:""+e).replace(cw,`
49
+ `).replace(uw,"")}function Hg(e,i){return i=Bg(i),Bg(e)===i}function Rt(e,i,r,o,g,w){switch(r){case"children":typeof o=="string"?i==="body"||i==="textarea"&&o===""||xr(e,o):(typeof o=="number"||typeof o=="bigint")&&i!=="body"&&xr(e,""+o);break;case"className":Ko(e,"class",o);break;case"tabIndex":Ko(e,"tabindex",o);break;case"dir":case"role":case"viewBox":case"width":case"height":Ko(e,r,o);break;case"style":Hp(e,o,w);break;case"data":if(i!=="object"){Ko(e,"data",o);break}case"src":case"href":if(o===""&&(i!=="a"||r!=="href")){e.removeAttribute(r);break}if(o==null||typeof o=="function"||typeof o=="symbol"||typeof o=="boolean"){e.removeAttribute(r);break}o=Jo(""+o),e.setAttribute(r,o);break;case"action":case"formAction":if(typeof o=="function"){e.setAttribute(r,"javascript:throw new Error('A React form was unexpectedly submitted. If you called form.submit() manually, consider using form.requestSubmit() instead. If you\\'re trying to use event.stopPropagation() in a submit event handler, consider also calling event.preventDefault().')");break}else typeof w=="function"&&(r==="formAction"?(i!=="input"&&Rt(e,i,"name",g.name,g,null),Rt(e,i,"formEncType",g.formEncType,g,null),Rt(e,i,"formMethod",g.formMethod,g,null),Rt(e,i,"formTarget",g.formTarget,g,null)):(Rt(e,i,"encType",g.encType,g,null),Rt(e,i,"method",g.method,g,null),Rt(e,i,"target",g.target,g,null)));if(o==null||typeof o=="symbol"||typeof o=="boolean"){e.removeAttribute(r);break}o=Jo(""+o),e.setAttribute(r,o);break;case"onClick":o!=null&&(e.onclick=Pi);break;case"onScroll":o!=null&&lt("scroll",e);break;case"onScrollEnd":o!=null&&lt("scrollend",e);break;case"dangerouslySetInnerHTML":if(o!=null){if(typeof o!="object"||!("__html"in o))throw Error(a(61));if(r=o.__html,r!=null){if(g.children!=null)throw Error(a(60));e.innerHTML=r}}break;case"multiple":e.multiple=o&&typeof o!="function"&&typeof o!="symbol";break;case"muted":e.muted=o&&typeof o!="function"&&typeof o!="symbol";break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"defaultValue":case"defaultChecked":case"innerHTML":case"ref":break;case"autoFocus":break;case"xlinkHref":if(o==null||typeof o=="function"||typeof o=="boolean"||typeof o=="symbol"){e.removeAttribute("xlink:href");break}r=Jo(""+o),e.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href",r);break;case"contentEditable":case"spellCheck":case"draggable":case"value":case"autoReverse":case"externalResourcesRequired":case"focusable":case"preserveAlpha":o!=null&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(r,""+o):e.removeAttribute(r);break;case"inert":case"allowFullScreen":case"async":case"autoPlay":case"controls":case"default":case"defer":case"disabled":case"disablePictureInPicture":case"disableRemotePlayback":case"formNoValidate":case"hidden":case"loop":case"noModule":case"noValidate":case"open":case"playsInline":case"readOnly":case"required":case"reversed":case"scoped":case"seamless":case"itemScope":o&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(r,""):e.removeAttribute(r);break;case"capture":case"download":o===!0?e.setAttribute(r,""):o!==!1&&o!=null&&typeof o!="function"&&typeof o!="symbol"?e.setAttribute(r,o):e.removeAttribute(r);break;case"cols":case"rows":case"size":case"span":o!=null&&typeof o!="function"&&typeof o!="symbol"&&!isNaN(o)&&1<=o?e.setAttribute(r,o):e.removeAttribute(r);break;case"rowSpan":case"start":o==null||typeof o=="function"||typeof o=="symbol"||isNaN(o)?e.removeAttribute(r):e.setAttribute(r,o);break;case"popover":lt("beforetoggle",e),lt("toggle",e),Yo(e,"popover",o);break;case"xlinkActuate":$i(e,"http://www.w3.org/1999/xlink","xlink:actuate",o);break;case"xlinkArcrole":$i(e,"http://www.w3.org/1999/xlink","xlink:arcrole",o);break;case"xlinkRole":$i(e,"http://www.w3.org/1999/xlink","xlink:role",o);break;case"xlinkShow":$i(e,"http://www.w3.org/1999/xlink","xlink:show",o);break;case"xlinkTitle":$i(e,"http://www.w3.org/1999/xlink","xlink:title",o);break;case"xlinkType":$i(e,"http://www.w3.org/1999/xlink","xlink:type",o);break;case"xmlBase":$i(e,"http://www.w3.org/XML/1998/namespace","xml:base",o);break;case"xmlLang":$i(e,"http://www.w3.org/XML/1998/namespace","xml:lang",o);break;case"xmlSpace":$i(e,"http://www.w3.org/XML/1998/namespace","xml:space",o);break;case"is":Yo(e,"is",o);break;case"innerText":case"textContent":break;default:(!(2<r.length)||r[0]!=="o"&&r[0]!=="O"||r[1]!=="n"&&r[1]!=="N")&&(r=zb.get(r)||r,Yo(e,r,o))}}function Zh(e,i,r,o,g,w){switch(r){case"style":Hp(e,o,w);break;case"dangerouslySetInnerHTML":if(o!=null){if(typeof o!="object"||!("__html"in o))throw Error(a(61));if(r=o.__html,r!=null){if(g.children!=null)throw Error(a(60));e.innerHTML=r}}break;case"children":typeof o=="string"?xr(e,o):(typeof o=="number"||typeof o=="bigint")&&xr(e,""+o);break;case"onScroll":o!=null&&lt("scroll",e);break;case"onScrollEnd":o!=null&&lt("scrollend",e);break;case"onClick":o!=null&&(e.onclick=Pi);break;case"suppressContentEditableWarning":case"suppressHydrationWarning":case"innerHTML":case"ref":break;case"innerText":case"textContent":break;default:if(!Re.hasOwnProperty(r))e:{if(r[0]==="o"&&r[1]==="n"&&(g=r.endsWith("Capture"),i=r.slice(2,g?r.length-7:void 0),w=e[hs]||null,w=w!=null?w[r]:null,typeof w=="function"&&e.removeEventListener(i,w,g),typeof o=="function")){typeof w!="function"&&w!==null&&(r in e?e[r]=null:e.hasAttribute(r)&&e.removeAttribute(r)),e.addEventListener(i,o,g);break e}r in e?e[r]=o:o===!0?e.setAttribute(r,""):Yo(e,r,o)}}}function ks(e,i,r){switch(i){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"img":lt("error",e),lt("load",e);var o=!1,g=!1,w;for(w in r)if(r.hasOwnProperty(w)){var N=r[w];if(N!=null)switch(w){case"src":o=!0;break;case"srcSet":g=!0;break;case"children":case"dangerouslySetInnerHTML":throw Error(a(137,i));default:Rt(e,i,w,N,r,null)}}g&&Rt(e,i,"srcSet",r.srcSet,r,null),o&&Rt(e,i,"src",r.src,r,null);return;case"input":lt("invalid",e);var z=w=N=g=null,X=null,re=null;for(o in r)if(r.hasOwnProperty(o)){var pe=r[o];if(pe!=null)switch(o){case"name":g=pe;break;case"type":N=pe;break;case"checked":X=pe;break;case"defaultChecked":re=pe;break;case"value":w=pe;break;case"defaultValue":z=pe;break;case"children":case"dangerouslySetInnerHTML":if(pe!=null)throw Error(a(137,i));break;default:Rt(e,i,o,pe,r,null)}}Np(e,w,z,X,re,N,g,!1);return;case"select":lt("invalid",e),o=N=w=null;for(g in r)if(r.hasOwnProperty(g)&&(z=r[g],z!=null))switch(g){case"value":w=z;break;case"defaultValue":N=z;break;case"multiple":o=z;default:Rt(e,i,g,z,r,null)}i=w,r=N,e.multiple=!!o,i!=null?wr(e,!!o,i,!1):r!=null&&wr(e,!!o,r,!0);return;case"textarea":lt("invalid",e),w=g=o=null;for(N in r)if(r.hasOwnProperty(N)&&(z=r[N],z!=null))switch(N){case"value":o=z;break;case"defaultValue":g=z;break;case"children":w=z;break;case"dangerouslySetInnerHTML":if(z!=null)throw Error(a(91));break;default:Rt(e,i,N,z,r,null)}Op(e,o,g,w);return;case"option":for(X in r)if(r.hasOwnProperty(X)&&(o=r[X],o!=null))switch(X){case"selected":e.selected=o&&typeof o!="function"&&typeof o!="symbol";break;default:Rt(e,i,X,o,r,null)}return;case"dialog":lt("beforetoggle",e),lt("toggle",e),lt("cancel",e),lt("close",e);break;case"iframe":case"object":lt("load",e);break;case"video":case"audio":for(o=0;o<to.length;o++)lt(to[o],e);break;case"image":lt("error",e),lt("load",e);break;case"details":lt("toggle",e);break;case"embed":case"source":case"link":lt("error",e),lt("load",e);case"area":case"base":case"br":case"col":case"hr":case"keygen":case"meta":case"param":case"track":case"wbr":case"menuitem":for(re in r)if(r.hasOwnProperty(re)&&(o=r[re],o!=null))switch(re){case"children":case"dangerouslySetInnerHTML":throw Error(a(137,i));default:Rt(e,i,re,o,r,null)}return;default:if(du(i)){for(pe in r)r.hasOwnProperty(pe)&&(o=r[pe],o!==void 0&&Zh(e,i,pe,o,r,void 0));return}}for(z in r)r.hasOwnProperty(z)&&(o=r[z],o!=null&&Rt(e,i,z,o,r,null))}function hw(e,i,r,o){switch(i){case"div":case"span":case"svg":case"path":case"a":case"g":case"p":case"li":break;case"input":var g=null,w=null,N=null,z=null,X=null,re=null,pe=null;for(he in r){var ye=r[he];if(r.hasOwnProperty(he)&&ye!=null)switch(he){case"checked":break;case"value":break;case"defaultValue":X=ye;default:o.hasOwnProperty(he)||Rt(e,i,he,null,o,ye)}}for(var oe in o){var he=o[oe];if(ye=r[oe],o.hasOwnProperty(oe)&&(he!=null||ye!=null))switch(oe){case"type":w=he;break;case"name":g=he;break;case"checked":re=he;break;case"defaultChecked":pe=he;break;case"value":N=he;break;case"defaultValue":z=he;break;case"children":case"dangerouslySetInnerHTML":if(he!=null)throw Error(a(137,i));break;default:he!==ye&&Rt(e,i,oe,he,o,ye)}}uu(e,N,z,X,re,pe,w,g);return;case"select":he=N=z=oe=null;for(w in r)if(X=r[w],r.hasOwnProperty(w)&&X!=null)switch(w){case"value":break;case"multiple":he=X;default:o.hasOwnProperty(w)||Rt(e,i,w,null,o,X)}for(g in o)if(w=o[g],X=r[g],o.hasOwnProperty(g)&&(w!=null||X!=null))switch(g){case"value":oe=w;break;case"defaultValue":z=w;break;case"multiple":N=w;default:w!==X&&Rt(e,i,g,w,o,X)}i=z,r=N,o=he,oe!=null?wr(e,!!r,oe,!1):!!o!=!!r&&(i!=null?wr(e,!!r,i,!0):wr(e,!!r,r?[]:"",!1));return;case"textarea":he=oe=null;for(z in r)if(g=r[z],r.hasOwnProperty(z)&&g!=null&&!o.hasOwnProperty(z))switch(z){case"value":break;case"children":break;default:Rt(e,i,z,null,o,g)}for(N in o)if(g=o[N],w=r[N],o.hasOwnProperty(N)&&(g!=null||w!=null))switch(N){case"value":oe=g;break;case"defaultValue":he=g;break;case"children":break;case"dangerouslySetInnerHTML":if(g!=null)throw Error(a(91));break;default:g!==w&&Rt(e,i,N,g,o,w)}Lp(e,oe,he);return;case"option":for(var je in r)if(oe=r[je],r.hasOwnProperty(je)&&oe!=null&&!o.hasOwnProperty(je))switch(je){case"selected":e.selected=!1;break;default:Rt(e,i,je,null,o,oe)}for(X in o)if(oe=o[X],he=r[X],o.hasOwnProperty(X)&&oe!==he&&(oe!=null||he!=null))switch(X){case"selected":e.selected=oe&&typeof oe!="function"&&typeof oe!="symbol";break;default:Rt(e,i,X,oe,o,he)}return;case"img":case"link":case"area":case"base":case"br":case"col":case"embed":case"hr":case"keygen":case"meta":case"param":case"source":case"track":case"wbr":case"menuitem":for(var Ve in r)oe=r[Ve],r.hasOwnProperty(Ve)&&oe!=null&&!o.hasOwnProperty(Ve)&&Rt(e,i,Ve,null,o,oe);for(re in o)if(oe=o[re],he=r[re],o.hasOwnProperty(re)&&oe!==he&&(oe!=null||he!=null))switch(re){case"children":case"dangerouslySetInnerHTML":if(oe!=null)throw Error(a(137,i));break;default:Rt(e,i,re,oe,o,he)}return;default:if(du(i)){for(var Mt in r)oe=r[Mt],r.hasOwnProperty(Mt)&&oe!==void 0&&!o.hasOwnProperty(Mt)&&Zh(e,i,Mt,void 0,o,oe);for(pe in o)oe=o[pe],he=r[pe],!o.hasOwnProperty(pe)||oe===he||oe===void 0&&he===void 0||Zh(e,i,pe,oe,o,he);return}}for(var se in r)oe=r[se],r.hasOwnProperty(se)&&oe!=null&&!o.hasOwnProperty(se)&&Rt(e,i,se,null,o,oe);for(ye in o)oe=o[ye],he=r[ye],!o.hasOwnProperty(ye)||oe===he||oe==null&&he==null||Rt(e,i,ye,oe,o,he)}function zg(e){switch(e){case"css":case"script":case"font":case"img":case"image":case"input":case"link":return!0;default:return!1}}function dw(){if(typeof performance.getEntriesByType=="function"){for(var e=0,i=0,r=performance.getEntriesByType("resource"),o=0;o<r.length;o++){var g=r[o],w=g.transferSize,N=g.initiatorType,z=g.duration;if(w&&z&&zg(N)){for(N=0,z=g.responseEnd,o+=1;o<r.length;o++){var X=r[o],re=X.startTime;if(re>z)break;var pe=X.transferSize,ye=X.initiatorType;pe&&zg(ye)&&(X=X.responseEnd,N+=pe*(X<z?1:(z-re)/(X-re)))}if(--o,i+=8*(w+N)/(g.duration/1e3),e++,10<e)break}}if(0<e)return i/e/1e6}return navigator.connection&&(e=navigator.connection.downlink,typeof e=="number")?e:5}var Qh=null,ed=null;function Gl(e){return e.nodeType===9?e:e.ownerDocument}function Ig(e){switch(e){case"http://www.w3.org/2000/svg":return 1;case"http://www.w3.org/1998/Math/MathML":return 2;default:return 0}}function $g(e,i){if(e===0)switch(i){case"svg":return 1;case"math":return 2;default:return 0}return e===1&&i==="foreignObject"?0:e}function td(e,i){return e==="textarea"||e==="noscript"||typeof i.children=="string"||typeof i.children=="number"||typeof i.children=="bigint"||typeof i.dangerouslySetInnerHTML=="object"&&i.dangerouslySetInnerHTML!==null&&i.dangerouslySetInnerHTML.__html!=null}var sd=null;function fw(){var e=window.event;return e&&e.type==="popstate"?e===sd?!1:(sd=e,!0):(sd=null,!1)}var Pg=typeof setTimeout=="function"?setTimeout:void 0,pw=typeof clearTimeout=="function"?clearTimeout:void 0,Ug=typeof Promise=="function"?Promise:void 0,vw=typeof queueMicrotask=="function"?queueMicrotask:typeof Ug<"u"?function(e){return Ug.resolve(null).then(e).catch(_w)}:Pg;function _w(e){setTimeout(function(){throw e})}function Ln(e){return e==="head"}function Fg(e,i){var r=i,o=0;do{var g=r.nextSibling;if(e.removeChild(r),g&&g.nodeType===8)if(r=g.data,r==="/$"||r==="/&"){if(o===0){e.removeChild(g),ea(i);return}o--}else if(r==="$"||r==="$?"||r==="$~"||r==="$!"||r==="&")o++;else if(r==="html")io(e.ownerDocument.documentElement);else if(r==="head"){r=e.ownerDocument.head,io(r);for(var w=r.firstChild;w;){var N=w.nextSibling,z=w.nodeName;w[Me]||z==="SCRIPT"||z==="STYLE"||z==="LINK"&&w.rel.toLowerCase()==="stylesheet"||r.removeChild(w),w=N}}else r==="body"&&io(e.ownerDocument.body);r=g}while(r);ea(i)}function qg(e,i){var r=e;e=0;do{var o=r.nextSibling;if(r.nodeType===1?i?(r._stashedDisplay=r.style.display,r.style.display="none"):(r.style.display=r._stashedDisplay||"",r.getAttribute("style")===""&&r.removeAttribute("style")):r.nodeType===3&&(i?(r._stashedText=r.nodeValue,r.nodeValue=""):r.nodeValue=r._stashedText||""),o&&o.nodeType===8)if(r=o.data,r==="/$"){if(e===0)break;e--}else r!=="$"&&r!=="$?"&&r!=="$~"&&r!=="$!"||e++;r=o}while(r)}function id(e){var i=e.firstChild;for(i&&i.nodeType===10&&(i=i.nextSibling);i;){var r=i;switch(i=i.nextSibling,r.nodeName){case"HTML":case"HEAD":case"BODY":id(r),qe(r);continue;case"SCRIPT":case"STYLE":continue;case"LINK":if(r.rel.toLowerCase()==="stylesheet")continue}e.removeChild(r)}}function gw(e,i,r,o){for(;e.nodeType===1;){var g=r;if(e.nodeName.toLowerCase()!==i.toLowerCase()){if(!o&&(e.nodeName!=="INPUT"||e.type!=="hidden"))break}else if(o){if(!e[Me])switch(i){case"meta":if(!e.hasAttribute("itemprop"))break;return e;case"link":if(w=e.getAttribute("rel"),w==="stylesheet"&&e.hasAttribute("data-precedence"))break;if(w!==g.rel||e.getAttribute("href")!==(g.href==null||g.href===""?null:g.href)||e.getAttribute("crossorigin")!==(g.crossOrigin==null?null:g.crossOrigin)||e.getAttribute("title")!==(g.title==null?null:g.title))break;return e;case"style":if(e.hasAttribute("data-precedence"))break;return e;case"script":if(w=e.getAttribute("src"),(w!==(g.src==null?null:g.src)||e.getAttribute("type")!==(g.type==null?null:g.type)||e.getAttribute("crossorigin")!==(g.crossOrigin==null?null:g.crossOrigin))&&w&&e.hasAttribute("async")&&!e.hasAttribute("itemprop"))break;return e;default:return e}}else if(i==="input"&&e.type==="hidden"){var w=g.name==null?null:""+g.name;if(g.type==="hidden"&&e.getAttribute("name")===w)return e}else return e;if(e=_i(e.nextSibling),e===null)break}return null}function mw(e,i,r){if(i==="")return null;for(;e.nodeType!==3;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!r||(e=_i(e.nextSibling),e===null))return null;return e}function Wg(e,i){for(;e.nodeType!==8;)if((e.nodeType!==1||e.nodeName!=="INPUT"||e.type!=="hidden")&&!i||(e=_i(e.nextSibling),e===null))return null;return e}function nd(e){return e.data==="$?"||e.data==="$~"}function rd(e){return e.data==="$!"||e.data==="$?"&&e.ownerDocument.readyState!=="loading"}function yw(e,i){var r=e.ownerDocument;if(e.data==="$~")e._reactRetry=i;else if(e.data!=="$?"||r.readyState!=="loading")i();else{var o=function(){i(),r.removeEventListener("DOMContentLoaded",o)};r.addEventListener("DOMContentLoaded",o),e._reactRetry=o}}function _i(e){for(;e!=null;e=e.nextSibling){var i=e.nodeType;if(i===1||i===3)break;if(i===8){if(i=e.data,i==="$"||i==="$!"||i==="$?"||i==="$~"||i==="&"||i==="F!"||i==="F")break;if(i==="/$"||i==="/&")return null}}return e}var ad=null;function Gg(e){e=e.nextSibling;for(var i=0;e;){if(e.nodeType===8){var r=e.data;if(r==="/$"||r==="/&"){if(i===0)return _i(e.nextSibling);i--}else r!=="$"&&r!=="$!"&&r!=="$?"&&r!=="$~"&&r!=="&"||i++}e=e.nextSibling}return null}function Vg(e){e=e.previousSibling;for(var i=0;e;){if(e.nodeType===8){var r=e.data;if(r==="$"||r==="$!"||r==="$?"||r==="$~"||r==="&"){if(i===0)return e;i--}else r!=="/$"&&r!=="/&"||i++}e=e.previousSibling}return null}function Yg(e,i,r){switch(i=Gl(r),e){case"html":if(e=i.documentElement,!e)throw Error(a(452));return e;case"head":if(e=i.head,!e)throw Error(a(453));return e;case"body":if(e=i.body,!e)throw Error(a(454));return e;default:throw Error(a(451))}}function io(e){for(var i=e.attributes;i.length;)e.removeAttributeNode(i[0]);qe(e)}var gi=new Map,Kg=new Set;function Vl(e){return typeof e.getRootNode=="function"?e.getRootNode():e.nodeType===9?e:e.ownerDocument}var nn=G.d;G.d={f:bw,r:Sw,D:ww,C:xw,L:Cw,m:Ew,X:Tw,S:kw,M:Aw};function bw(){var e=nn.f(),i=zl();return e||i}function Sw(e){var i=Ge(e);i!==null&&i.tag===5&&i.type==="form"?d_(i):nn.r(e)}var Jr=typeof document>"u"?null:document;function Xg(e,i,r){var o=Jr;if(o&&typeof i=="string"&&i){var g=ci(i);g='link[rel="'+e+'"][href="'+g+'"]',typeof r=="string"&&(g+='[crossorigin="'+r+'"]'),Kg.has(g)||(Kg.add(g),e={rel:e,crossOrigin:r,href:i},o.querySelector(g)===null&&(i=o.createElement("link"),ks(i,"link",e),Z(i),o.head.appendChild(i)))}}function ww(e){nn.D(e),Xg("dns-prefetch",e,null)}function xw(e,i){nn.C(e,i),Xg("preconnect",e,i)}function Cw(e,i,r){nn.L(e,i,r);var o=Jr;if(o&&e&&i){var g='link[rel="preload"][as="'+ci(i)+'"]';i==="image"&&r&&r.imageSrcSet?(g+='[imagesrcset="'+ci(r.imageSrcSet)+'"]',typeof r.imageSizes=="string"&&(g+='[imagesizes="'+ci(r.imageSizes)+'"]')):g+='[href="'+ci(e)+'"]';var w=g;switch(i){case"style":w=Zr(e);break;case"script":w=Qr(e)}gi.has(w)||(e=f({rel:"preload",href:i==="image"&&r&&r.imageSrcSet?void 0:e,as:i},r),gi.set(w,e),o.querySelector(g)!==null||i==="style"&&o.querySelector(no(w))||i==="script"&&o.querySelector(ro(w))||(i=o.createElement("link"),ks(i,"link",e),Z(i),o.head.appendChild(i)))}}function Ew(e,i){nn.m(e,i);var r=Jr;if(r&&e){var o=i&&typeof i.as=="string"?i.as:"script",g='link[rel="modulepreload"][as="'+ci(o)+'"][href="'+ci(e)+'"]',w=g;switch(o){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":w=Qr(e)}if(!gi.has(w)&&(e=f({rel:"modulepreload",href:e},i),gi.set(w,e),r.querySelector(g)===null)){switch(o){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(r.querySelector(ro(w)))return}o=r.createElement("link"),ks(o,"link",e),Z(o),r.head.appendChild(o)}}}function kw(e,i,r){nn.S(e,i,r);var o=Jr;if(o&&e){var g=ws(o).hoistableStyles,w=Zr(e);i=i||"default";var N=g.get(w);if(!N){var z={loading:0,preload:null};if(N=o.querySelector(no(w)))z.loading=5;else{e=f({rel:"stylesheet",href:e,"data-precedence":i},r),(r=gi.get(w))&&od(e,r);var X=N=o.createElement("link");Z(X),ks(X,"link",e),X._p=new Promise(function(re,pe){X.onload=re,X.onerror=pe}),X.addEventListener("load",function(){z.loading|=1}),X.addEventListener("error",function(){z.loading|=2}),z.loading|=4,Yl(N,i,o)}N={type:"stylesheet",instance:N,count:1,state:z},g.set(w,N)}}}function Tw(e,i){nn.X(e,i);var r=Jr;if(r&&e){var o=ws(r).hoistableScripts,g=Qr(e),w=o.get(g);w||(w=r.querySelector(ro(g)),w||(e=f({src:e,async:!0},i),(i=gi.get(g))&&ld(e,i),w=r.createElement("script"),Z(w),ks(w,"link",e),r.head.appendChild(w)),w={type:"script",instance:w,count:1,state:null},o.set(g,w))}}function Aw(e,i){nn.M(e,i);var r=Jr;if(r&&e){var o=ws(r).hoistableScripts,g=Qr(e),w=o.get(g);w||(w=r.querySelector(ro(g)),w||(e=f({src:e,async:!0,type:"module"},i),(i=gi.get(g))&&ld(e,i),w=r.createElement("script"),Z(w),ks(w,"link",e),r.head.appendChild(w)),w={type:"script",instance:w,count:1,state:null},o.set(g,w))}}function Jg(e,i,r,o){var g=(g=de.current)?Vl(g):null;if(!g)throw Error(a(446));switch(e){case"meta":case"title":return null;case"style":return typeof r.precedence=="string"&&typeof r.href=="string"?(i=Zr(r.href),r=ws(g).hoistableStyles,o=r.get(i),o||(o={type:"style",instance:null,count:0,state:null},r.set(i,o)),o):{type:"void",instance:null,count:0,state:null};case"link":if(r.rel==="stylesheet"&&typeof r.href=="string"&&typeof r.precedence=="string"){e=Zr(r.href);var w=ws(g).hoistableStyles,N=w.get(e);if(N||(g=g.ownerDocument||g,N={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},w.set(e,N),(w=g.querySelector(no(e)))&&!w._p&&(N.instance=w,N.state.loading=5),gi.has(e)||(r={rel:"preload",as:"style",href:r.href,crossOrigin:r.crossOrigin,integrity:r.integrity,media:r.media,hrefLang:r.hrefLang,referrerPolicy:r.referrerPolicy},gi.set(e,r),w||Rw(g,e,r,N.state))),i&&o===null)throw Error(a(528,""));return N}if(i&&o!==null)throw Error(a(529,""));return null;case"script":return i=r.async,r=r.src,typeof r=="string"&&i&&typeof i!="function"&&typeof i!="symbol"?(i=Qr(r),r=ws(g).hoistableScripts,o=r.get(i),o||(o={type:"script",instance:null,count:0,state:null},r.set(i,o)),o):{type:"void",instance:null,count:0,state:null};default:throw Error(a(444,e))}}function Zr(e){return'href="'+ci(e)+'"'}function no(e){return'link[rel="stylesheet"]['+e+"]"}function Zg(e){return f({},e,{"data-precedence":e.precedence,precedence:null})}function Rw(e,i,r,o){e.querySelector('link[rel="preload"][as="style"]['+i+"]")?o.loading=1:(i=e.createElement("link"),o.preload=i,i.addEventListener("load",function(){return o.loading|=1}),i.addEventListener("error",function(){return o.loading|=2}),ks(i,"link",r),Z(i),e.head.appendChild(i))}function Qr(e){return'[src="'+ci(e)+'"]'}function ro(e){return"script[async]"+e}function Qg(e,i,r){if(i.count++,i.instance===null)switch(i.type){case"style":var o=e.querySelector('style[data-href~="'+ci(r.href)+'"]');if(o)return i.instance=o,Z(o),o;var g=f({},r,{"data-href":r.href,"data-precedence":r.precedence,href:null,precedence:null});return o=(e.ownerDocument||e).createElement("style"),Z(o),ks(o,"style",g),Yl(o,r.precedence,e),i.instance=o;case"stylesheet":g=Zr(r.href);var w=e.querySelector(no(g));if(w)return i.state.loading|=4,i.instance=w,Z(w),w;o=Zg(r),(g=gi.get(g))&&od(o,g),w=(e.ownerDocument||e).createElement("link"),Z(w);var N=w;return N._p=new Promise(function(z,X){N.onload=z,N.onerror=X}),ks(w,"link",o),i.state.loading|=4,Yl(w,r.precedence,e),i.instance=w;case"script":return w=Qr(r.src),(g=e.querySelector(ro(w)))?(i.instance=g,Z(g),g):(o=r,(g=gi.get(w))&&(o=f({},r),ld(o,g)),e=e.ownerDocument||e,g=e.createElement("script"),Z(g),ks(g,"link",o),e.head.appendChild(g),i.instance=g);case"void":return null;default:throw Error(a(443,i.type))}else i.type==="stylesheet"&&(i.state.loading&4)===0&&(o=i.instance,i.state.loading|=4,Yl(o,r.precedence,e));return i.instance}function Yl(e,i,r){for(var o=r.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),g=o.length?o[o.length-1]:null,w=g,N=0;N<o.length;N++){var z=o[N];if(z.dataset.precedence===i)w=z;else if(w!==g)break}w?w.parentNode.insertBefore(e,w.nextSibling):(i=r.nodeType===9?r.head:r,i.insertBefore(e,i.firstChild))}function od(e,i){e.crossOrigin==null&&(e.crossOrigin=i.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=i.referrerPolicy),e.title==null&&(e.title=i.title)}function ld(e,i){e.crossOrigin==null&&(e.crossOrigin=i.crossOrigin),e.referrerPolicy==null&&(e.referrerPolicy=i.referrerPolicy),e.integrity==null&&(e.integrity=i.integrity)}var Kl=null;function em(e,i,r){if(Kl===null){var o=new Map,g=Kl=new Map;g.set(r,o)}else g=Kl,o=g.get(r),o||(o=new Map,g.set(r,o));if(o.has(e))return o;for(o.set(e,null),r=r.getElementsByTagName(e),g=0;g<r.length;g++){var w=r[g];if(!(w[Me]||w[ut]||e==="link"&&w.getAttribute("rel")==="stylesheet")&&w.namespaceURI!=="http://www.w3.org/2000/svg"){var N=w.getAttribute(i)||"";N=e+N;var z=o.get(N);z?z.push(w):o.set(N,[w])}}return o}function tm(e,i,r){e=e.ownerDocument||e,e.head.insertBefore(r,i==="title"?e.querySelector("head > title"):null)}function Mw(e,i,r){if(r===1||i.itemProp!=null)return!1;switch(e){case"meta":case"title":return!0;case"style":if(typeof i.precedence!="string"||typeof i.href!="string"||i.href==="")break;return!0;case"link":if(typeof i.rel!="string"||typeof i.href!="string"||i.href===""||i.onLoad||i.onError)break;switch(i.rel){case"stylesheet":return e=i.disabled,typeof i.precedence=="string"&&e==null;default:return!0}case"script":if(i.async&&typeof i.async!="function"&&typeof i.async!="symbol"&&!i.onLoad&&!i.onError&&i.src&&typeof i.src=="string")return!0}return!1}function sm(e){return!(e.type==="stylesheet"&&(e.state.loading&3)===0)}function Dw(e,i,r,o){if(r.type==="stylesheet"&&(typeof o.media!="string"||matchMedia(o.media).matches!==!1)&&(r.state.loading&4)===0){if(r.instance===null){var g=Zr(o.href),w=i.querySelector(no(g));if(w){i=w._p,i!==null&&typeof i=="object"&&typeof i.then=="function"&&(e.count++,e=Xl.bind(e),i.then(e,e)),r.state.loading|=4,r.instance=w,Z(w);return}w=i.ownerDocument||i,o=Zg(o),(g=gi.get(g))&&od(o,g),w=w.createElement("link"),Z(w);var N=w;N._p=new Promise(function(z,X){N.onload=z,N.onerror=X}),ks(w,"link",o),r.instance=w}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(r,i),(i=r.state.preload)&&(r.state.loading&3)===0&&(e.count++,r=Xl.bind(e),i.addEventListener("load",r),i.addEventListener("error",r))}}var cd=0;function jw(e,i){return e.stylesheets&&e.count===0&&Zl(e,e.stylesheets),0<e.count||0<e.imgCount?function(r){var o=setTimeout(function(){if(e.stylesheets&&Zl(e,e.stylesheets),e.unsuspend){var w=e.unsuspend;e.unsuspend=null,w()}},6e4+i);0<e.imgBytes&&cd===0&&(cd=62500*dw());var g=setTimeout(function(){if(e.waitingForImages=!1,e.count===0&&(e.stylesheets&&Zl(e,e.stylesheets),e.unsuspend)){var w=e.unsuspend;e.unsuspend=null,w()}},(e.imgBytes>cd?50:800)+i);return e.unsuspend=r,function(){e.unsuspend=null,clearTimeout(o),clearTimeout(g)}}:null}function Xl(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Zl(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var Jl=null;function Zl(e,i){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Jl=new Map,i.forEach(Nw,e),Jl=null,Xl.call(e))}function Nw(e,i){if(!(i.state.loading&4)){var r=Jl.get(e);if(r)var o=r.get(null);else{r=new Map,Jl.set(e,r);for(var g=e.querySelectorAll("link[data-precedence],style[data-precedence]"),w=0;w<g.length;w++){var N=g[w];(N.nodeName==="LINK"||N.getAttribute("media")!=="not all")&&(r.set(N.dataset.precedence,N),o=N)}o&&r.set(null,o)}g=i.instance,N=g.getAttribute("data-precedence"),w=r.get(N)||o,w===o&&r.set(null,g),r.set(N,g),this.count++,o=Xl.bind(this),g.addEventListener("load",o),g.addEventListener("error",o),w?w.parentNode.insertBefore(g,w.nextSibling):(e=e.nodeType===9?e.head:e,e.insertBefore(g,e.firstChild)),i.state.loading|=4}}var ao={$$typeof:y,Provider:null,Consumer:null,_currentValue:ee,_currentValue2:ee,_threadCount:0};function Lw(e,i,r,o,g,w,N,z,X){this.tag=1,this.containerInfo=e,this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.next=this.pendingContext=this.context=this.cancelPendingCommit=null,this.callbackPriority=0,this.expirationTimes=xe(-1),this.entangledLanes=this.shellSuspendCounter=this.errorRecoveryDisabledLanes=this.expiredLanes=this.warmLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=xe(0),this.hiddenUpdates=xe(null),this.identifierPrefix=o,this.onUncaughtError=g,this.onCaughtError=w,this.onRecoverableError=N,this.pooledCache=null,this.pooledCacheLanes=0,this.formState=X,this.incompleteTransitions=new Map}function im(e,i,r,o,g,w,N,z,X,re,pe,ye){return e=new Lw(e,i,r,N,X,re,pe,ye,z),i=1,w===!0&&(i|=24),w=Zs(3,null,null,i),e.current=w,w.stateNode=e,i=Uu(),i.refCount++,e.pooledCache=i,i.refCount++,w.memoizedState={element:o,isDehydrated:r,cache:i},Gu(w),e}function nm(e){return e?(e=Mr,e):Mr}function rm(e,i,r,o,g,w){g=nm(g),o.context===null?o.context=g:o.pendingContext=g,o=xn(i),o.payload={element:r},w=w===void 0?null:w,w!==null&&(o.callback=w),r=Cn(e,o,i),r!==null&&(Vs(r,e,i),za(r,e,i))}function am(e,i){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var r=e.retryLane;e.retryLane=r!==0&&r<i?r:i}}function ud(e,i){am(e,i),(e=e.alternate)&&am(e,i)}function om(e){if(e.tag===13||e.tag===31){var i=Yn(e,67108864);i!==null&&Vs(i,e,67108864),ud(e,67108864)}}function lm(e){if(e.tag===13||e.tag===31){var i=ii();i=Kt(i);var r=Yn(e,i);r!==null&&Vs(r,e,i),ud(e,i)}}var Ql=!0;function Ow(e,i,r,o){var g=q.T;q.T=null;var w=G.p;try{G.p=2,hd(e,i,r,o)}finally{G.p=w,q.T=g}}function Bw(e,i,r,o){var g=q.T;q.T=null;var w=G.p;try{G.p=8,hd(e,i,r,o)}finally{G.p=w,q.T=g}}function hd(e,i,r,o){if(Ql){var g=dd(o);if(g===null)Jh(e,i,o,ec,r),um(e,o);else if(zw(g,e,i,r,o))o.stopPropagation();else if(um(e,o),i&4&&-1<Hw.indexOf(e)){for(;g!==null;){var w=Ge(g);if(w!==null)switch(w.tag){case 3:if(w=w.stateNode,w.current.memoizedState.isDehydrated){var N=Ms(w.pendingLanes);if(N!==0){var z=w;for(z.pendingLanes|=2,z.entangledLanes|=2;N;){var X=1<<31-Yt(N);z.entanglements[1]|=X,N&=~X}Oi(w),(mt&6)===0&&(Bl=ft()+500,eo(0))}}break;case 31:case 13:z=Yn(w,2),z!==null&&Vs(z,w,2),zl(),ud(w,2)}if(w=dd(o),w===null&&Jh(e,i,o,ec,r),w===g)break;g=w}g!==null&&o.stopPropagation()}else Jh(e,i,o,null,r)}}function dd(e){return e=pu(e),fd(e)}var ec=null;function fd(e){if(ec=null,e=wt(e),e!==null){var i=d(e);if(i===null)e=null;else{var r=i.tag;if(r===13){if(e=p(i),e!==null)return e;e=null}else if(r===31){if(e=c(i),e!==null)return e;e=null}else if(r===3){if(i.stateNode.current.memoizedState.isDehydrated)return i.tag===3?i.stateNode.containerInfo:null;e=null}else i!==e&&(e=null)}}return ec=e,null}function cm(e){switch(e){case"beforetoggle":case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"toggle":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 2;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 8;case"message":switch(kt()){case es:return 2;case cs:return 8;case St:case us:return 32;case Lt:return 268435456;default:return 32}default:return 32}}var pd=!1,On=null,Bn=null,Hn=null,oo=new Map,lo=new Map,zn=[],Hw="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset".split(" ");function um(e,i){switch(e){case"focusin":case"focusout":On=null;break;case"dragenter":case"dragleave":Bn=null;break;case"mouseover":case"mouseout":Hn=null;break;case"pointerover":case"pointerout":oo.delete(i.pointerId);break;case"gotpointercapture":case"lostpointercapture":lo.delete(i.pointerId)}}function co(e,i,r,o,g,w){return e===null||e.nativeEvent!==w?(e={blockedOn:i,domEventName:r,eventSystemFlags:o,nativeEvent:w,targetContainers:[g]},i!==null&&(i=Ge(i),i!==null&&om(i)),e):(e.eventSystemFlags|=o,i=e.targetContainers,g!==null&&i.indexOf(g)===-1&&i.push(g),e)}function zw(e,i,r,o,g){switch(i){case"focusin":return On=co(On,e,i,r,o,g),!0;case"dragenter":return Bn=co(Bn,e,i,r,o,g),!0;case"mouseover":return Hn=co(Hn,e,i,r,o,g),!0;case"pointerover":var w=g.pointerId;return oo.set(w,co(oo.get(w)||null,e,i,r,o,g)),!0;case"gotpointercapture":return w=g.pointerId,lo.set(w,co(lo.get(w)||null,e,i,r,o,g)),!0}return!1}function hm(e){var i=wt(e.target);if(i!==null){var r=d(i);if(r!==null){if(i=r.tag,i===13){if(i=p(r),i!==null){e.blockedOn=i,Ds(e.priority,function(){lm(r)});return}}else if(i===31){if(i=c(r),i!==null){e.blockedOn=i,Ds(e.priority,function(){lm(r)});return}}else if(i===3&&r.stateNode.current.memoizedState.isDehydrated){e.blockedOn=r.tag===3?r.stateNode.containerInfo:null;return}}}e.blockedOn=null}function tc(e){if(e.blockedOn!==null)return!1;for(var i=e.targetContainers;0<i.length;){var r=dd(e.nativeEvent);if(r===null){r=e.nativeEvent;var o=new r.constructor(r.type,r);fu=o,r.target.dispatchEvent(o),fu=null}else return i=Ge(r),i!==null&&om(i),e.blockedOn=r,!1;i.shift()}return!0}function dm(e,i,r){tc(e)&&r.delete(i)}function Iw(){pd=!1,On!==null&&tc(On)&&(On=null),Bn!==null&&tc(Bn)&&(Bn=null),Hn!==null&&tc(Hn)&&(Hn=null),oo.forEach(dm),lo.forEach(dm)}function sc(e,i){e.blockedOn===i&&(e.blockedOn=null,pd||(pd=!0,s.unstable_scheduleCallback(s.unstable_NormalPriority,Iw)))}var ic=null;function fm(e){ic!==e&&(ic=e,s.unstable_scheduleCallback(s.unstable_NormalPriority,function(){ic===e&&(ic=null);for(var i=0;i<e.length;i+=3){var r=e[i],o=e[i+1],g=e[i+2];if(typeof o!="function"){if(fd(o||r)===null)continue;break}var w=Ge(r);w!==null&&(e.splice(i,3),i-=3,dh(w,{pending:!0,data:g,method:r.method,action:o},o,g))}}))}function ea(e){function i(X){return sc(X,e)}On!==null&&sc(On,e),Bn!==null&&sc(Bn,e),Hn!==null&&sc(Hn,e),oo.forEach(i),lo.forEach(i);for(var r=0;r<zn.length;r++){var o=zn[r];o.blockedOn===e&&(o.blockedOn=null)}for(;0<zn.length&&(r=zn[0],r.blockedOn===null);)hm(r),r.blockedOn===null&&zn.shift();if(r=(e.ownerDocument||e).$$reactFormReplay,r!=null)for(o=0;o<r.length;o+=3){var g=r[o],w=r[o+1],N=g[hs]||null;if(typeof w=="function")N||fm(r);else if(N){var z=null;if(w&&w.hasAttribute("formAction")){if(g=w,N=w[hs]||null)z=N.formAction;else if(fd(g)!==null)continue}else z=N.action;typeof z=="function"?r[o+1]=z:(r.splice(o,3),o-=3),fm(r)}}}function pm(){function e(w){w.canIntercept&&w.info==="react-transition"&&w.intercept({handler:function(){return new Promise(function(N){return g=N})},focusReset:"manual",scroll:"manual"})}function i(){g!==null&&(g(),g=null),o||setTimeout(r,20)}function r(){if(!o&&!navigation.transition){var w=navigation.currentEntry;w&&w.url!=null&&navigation.navigate(w.url,{state:w.getState(),info:"react-transition",history:"replace"})}}if(typeof navigation=="object"){var o=!1,g=null;return navigation.addEventListener("navigate",e),navigation.addEventListener("navigatesuccess",i),navigation.addEventListener("navigateerror",i),setTimeout(r,100),function(){o=!0,navigation.removeEventListener("navigate",e),navigation.removeEventListener("navigatesuccess",i),navigation.removeEventListener("navigateerror",i),g!==null&&(g(),g=null)}}}function vd(e){this._internalRoot=e}nc.prototype.render=vd.prototype.render=function(e){var i=this._internalRoot;if(i===null)throw Error(a(409));var r=i.current,o=ii();rm(r,o,e,i,null,null)},nc.prototype.unmount=vd.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var i=e.containerInfo;rm(e.current,2,null,e,null,null),zl(),i[oi]=null}};function nc(e){this._internalRoot=e}nc.prototype.unstable_scheduleHydration=function(e){if(e){var i=Ci();e={blockedOn:null,target:e,priority:i};for(var r=0;r<zn.length&&i!==0&&i<zn[r].priority;r++);zn.splice(r,0,e),r===0&&hm(e)}};var vm=t.version;if(vm!=="19.2.7")throw Error(a(527,vm,"19.2.7"));G.findDOMNode=function(e){var i=e._reactInternals;if(i===void 0)throw typeof e.render=="function"?Error(a(188)):(e=Object.keys(e).join(","),Error(a(268,e)));return e=v(i),e=e!==null?b(e):null,e=e===null?null:e.stateNode,e};var $w={bundleType:0,version:"19.2.7",rendererPackageName:"react-dom",currentDispatcherRef:q,reconcilerVersion:"19.2.7"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var rc=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!rc.isDisabled&&rc.supportsFiber)try{ss=rc.inject($w),Gt=rc}catch{}}return ho.createRoot=function(e,i){if(!l(e))throw Error(a(299));var r=!1,o="",g=w_,w=x_,N=C_;return i!=null&&(i.unstable_strictMode===!0&&(r=!0),i.identifierPrefix!==void 0&&(o=i.identifierPrefix),i.onUncaughtError!==void 0&&(g=i.onUncaughtError),i.onCaughtError!==void 0&&(w=i.onCaughtError),i.onRecoverableError!==void 0&&(N=i.onRecoverableError)),i=im(e,1,!1,null,null,r,o,null,g,w,N,pm),e[oi]=i.current,Xh(e),new vd(i)},ho.hydrateRoot=function(e,i,r){if(!l(e))throw Error(a(299));var o=!1,g="",w=w_,N=x_,z=C_,X=null;return r!=null&&(r.unstable_strictMode===!0&&(o=!0),r.identifierPrefix!==void 0&&(g=r.identifierPrefix),r.onUncaughtError!==void 0&&(w=r.onUncaughtError),r.onCaughtError!==void 0&&(N=r.onCaughtError),r.onRecoverableError!==void 0&&(z=r.onRecoverableError),r.formState!==void 0&&(X=r.formState)),i=im(e,1,!0,i,r??null,o,g,X,w,N,z,pm),i.context=nm(null),r=i.current,o=ii(),o=Kt(o),g=xn(o),g.callback=null,Cn(r,g,o),r=o,i.current.lanes=r,Se(i,r),Oi(i),e[oi]=i.current,Xh(e),new nc(i)},ho.version="19.2.7",ho}var Em;function Jw(){if(Em)return yd.exports;Em=1;function s(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(s)}catch(t){console.error(t)}}return s(),yd.exports=Xw(),yd.exports}var Zw=Jw();const gy=Date.now(),Ts=s=>new Date(gy-s*6e4).toISOString(),nt=s=>new Date(gy-s*24*60*6e4).toISOString(),km="/Users/demo/acme-app";Ts(1),Ts(1),Ts(42),Ts(20),nt(2),nt(1),nt(1),nt(1),nt(3),nt(3),Ts(0),Ts(0),Ts(3),Ts(3);Ts(1),nt(1),nt(1),nt(3),nt(6),nt(45),nt(1);Ts(48),Ts(1),Ts(48),Ts(47),Ts(46),Ts(45),Ts(3),Ts(2),nt(1),nt(1),nt(1),nt(1),nt(1),nt(1),nt(1),nt(1),nt(1),nt(3),nt(3),nt(3),nt(3),nt(3),nt(3),nt(3),nt(3),nt(1),nt(1),nt(1),nt(1),nt(45),nt(45),nt(45),nt(45),nt(45),nt(45),nt(45),nt(45);function sp(){return!1}function ua(s){return(s==null?void 0:s.boundWorkflowPath)??null}class Hs extends Error{constructor(n,a,l){super(a);_d(this,"status");_d(this,"reason");this.name="ApiError",this.status=n,this.reason=l}}function ha(){const s=window.__HARNESS__;return s!=null&&s.token?s.token:new URLSearchParams(window.location.search).get("token")??""}class Qw{startAuth(){return this.request("/api/auth/start",{method:"POST"})}disconnect(){return this.request("/api/auth/disconnect",{method:"POST"})}authStatus(){return this.request("/api/auth/status")}async request(t,n){const a=await fetch(t,{...n,headers:{"Content-Type":"application/json","X-Harness-Token":ha(),...n==null?void 0:n.headers}});if(!a.ok){const l=await a.text().catch(()=>"");let d;try{const p=l?JSON.parse(l):void 0;p&&typeof p=="object"&&typeof p.error=="string"&&(d=p.error)}catch{}throw new Hs(a.status,`${(n==null?void 0:n.method)??"GET"} ${t} → ${a.status}${l?`: ${l}`:""}`,d)}if(a.status!==204)return await a.json()}getState(){return this.request("/api/state")}createSession(t){return this.request("/api/sessions",{method:"POST",body:JSON.stringify(t)})}listSessions(){return this.request("/api/sessions")}sessionHistory(t){return this.request(`/api/sessions/history?cwd=${encodeURIComponent(t)}`)}async sessionRecord(t){try{return await this.request(`/api/sessions/${encodeURIComponent(t)}/record`)}catch(n){if(n instanceof Hs&&(n.status===404||n.status===501))return null;throw n}}resumeSession(t){return this.request(`/api/sessions/${encodeURIComponent(t)}/resume`,{method:"POST"})}adoptSession(t){return this.request("/api/sessions/adopt",{method:"POST",body:JSON.stringify(t)})}async killSession(t){await this.request(`/api/sessions/${encodeURIComponent(t)}`,{method:"DELETE"})}async injectInput(t,n){await this.request(`/api/sessions/${encodeURIComponent(t)}/input`,{method:"POST",body:JSON.stringify(n)})}attachImage(t,n){return this.request(`/api/sessions/${encodeURIComponent(t)}/image`,{method:"POST",body:JSON.stringify(n)})}listWorkflows(){return this.request("/api/workflows")}connectWorkflow(t){return this.request("/api/workflows/connect",{method:"POST",body:JSON.stringify({path:t})})}scanWorkflows(t){return this.request("/api/workflows/scan",{method:"POST",body:JSON.stringify({root:t})})}listHarnesses(){return this.request("/api/harnesses")}listMacros(){return this.request("/api/macros")}async runMacro(t,n){await this.request(`/api/macros/${encodeURIComponent(t)}/run`,{method:"POST",body:JSON.stringify(n)})}getSettings(){return this.request("/api/settings")}updateSettings(t){return this.request("/api/settings",{method:"PATCH",body:JSON.stringify(t)})}listDir(t){const n=t?`?path=${encodeURIComponent(t)}`:"";return this.request(`/api/fs/list${n}`)}bindWorkflow(t,n){const a={workflowPath:n};return this.request(`/api/sessions/${encodeURIComponent(t)}/workflow`,{method:"PATCH",body:JSON.stringify(a)})}listTemplates(){return this.request("/api/templates")}getTemplate(t){return this.request(`/api/templates/${encodeURIComponent(t)}`)}getRunState(t){return this.request(`/api/runs/${encodeURIComponent(t)}/state`)}async runLocal(t,n){const a=await fetch("/api/runs/local",{method:"POST",headers:{"Content-Type":"application/json","X-Harness-Token":ha()},body:JSON.stringify(t)});if(!a.ok||!a.body){const u=await a.text().catch(()=>"");throw new Hs(a.status,`POST /api/runs/local → ${a.status}${u?`: ${u}`:""}`,void 0)}const l=a.body.getReader(),d=new TextDecoder;let p="";const c=(u,v)=>{p+=u;const{lines:b,rest:f}=tx(p,v);p=f;for(const x of b){const C=sx(x);C&&n(C)}};for(;;){const{done:u,value:v}=await l.read();if(u)break;c(d.decode(v,{stream:!0}),!1)}c(d.decode(),!0)}async deploy(t,n){const a=await this.streamNdjson(`/api/workflows/${encodeURIComponent(t)}/deploy`,{method:"POST"},n);return ix(a)}async run(t){return this.request("/api/runs",{method:"POST",body:JSON.stringify(t)})}async streamNdjson(t,n,a){const l=await fetch(t,{...n,headers:{"Content-Type":"application/json","X-Harness-Token":ha(),...n.headers}});if(!l.ok||!l.body){const b=await l.text().catch(()=>"");let f;try{const x=b?JSON.parse(b):void 0;x&&typeof x=="object"&&typeof x.error=="string"&&(f=x.error)}catch{}throw new Hs(l.status,`${n.method??"GET"} ${t} → ${l.status}${b?`: ${b}`:""}`,f)}const d=[],p=l.body.getReader(),c=new TextDecoder;let u="";const v=b=>{u+=b;let f=u.indexOf(`
50
+ `);for(;f!==-1;){const x=u.slice(0,f);u=u.slice(f+1);const C=ex(x);C!==void 0&&(d.push(C),a==null||a(C)),f=u.indexOf(`
51
+ `)}};for(;;){const{done:b,value:f}=await p.read();if(b)break;v(c.decode(f,{stream:!0}))}return v(c.decode()+`
52
+ `),d}}function ex(s){const t=s.trim();if(t==="")return;let n;try{n=JSON.parse(t)}catch{return}return n===null?void 0:n}function tx(s,t){const n=s.split(`
53
+ `);if(t)return{lines:n.filter(l=>l.trim()!==""),rest:""};const a=n.pop()??"";return{lines:n.filter(l=>l.trim()!==""),rest:a}}function sx(s){const t=s.trim();if(t==="")return null;let n;try{n=JSON.parse(t)}catch{return null}return typeof n!="object"||n===null||Array.isArray(n)?null:n}function ix(s){for(let t=s.length-1;t>=0;t--){const n=s[t];if(n.phase==="ready"||n.phase==="error")return n}return{phase:"error",code:"NO_OUTPUT",message:"deploy produced no terminal status"}}function nx(){return new Qw}const my="sapiom-harness-theme",uf=new Set;function rx(){var s;return typeof window<"u"&&((s=window.matchMedia)==null?void 0:s.call(window,"(prefers-color-scheme: dark)").matches)===!0}function ax(){const s=typeof window<"u"?window.localStorage.getItem(my):null;return s==="light"||s==="dark"?s:rx()?"dark":"light"}let ip=ax();function np(){return ip}function ox(s){ip=s,document.documentElement.dataset.theme=s,window.localStorage.setItem(my,s),uf.forEach(t=>t(s))}function lx(){ox(ip==="dark"?"light":"dark")}function rp(s){return uf.add(s),()=>uf.delete(s)}function Ro(s){var a,l;const t=(a=s.inputSchema)==null?void 0:a.properties;if(!t)return[];const n=new Set(((l=s.inputSchema)==null?void 0:l.required)??[]);return Object.entries(t).map(([d,p])=>({name:d,type:(p==null?void 0:p.type)??"unknown",required:n.has(d)})).sort((d,p)=>Number(p.required)-Number(d.required))}function br(s){return s<1e3?`${s}ms`:`${Math.round(s/100)/10}s`}function cx(s,t){const n=[],a=Ro(s).length;a>0&&n.push(a===1?"1 input":`${a} inputs`);const l=t.filter(d=>d.from===s.id&&d.kind==="branching").length;return l>1&&n.push(`${l} branches`),s.timeoutMs&&s.timeoutMs>0&&n.push(`${br(s.timeoutMs)} limit`),n}function ux(s){const t=s.nodes.filter(a=>a.kind==="terminal-success"||a.kind==="terminal-warn").length;return{steps:s.nodes.filter(a=>a.kind!=="terminal-success"&&a.kind!=="terminal-warn"&&a.kind!=="launched-workflow").length,exits:t}}function hx(s){const{steps:t,exits:n}=ux(s),a=[`${t} ${t===1?"step":"steps"}`];return n>0&&a.push(`${n} ${n===1?"exit":"exits"}`),a.join(" · ")}function yy(s){switch(s){case"entry":return"Entry step";case"pause":return"Pause";case"terminal-success":return"Terminal · success";case"terminal-warn":return"Terminal · needs attention";case"launched-workflow":return"Launched agent";default:return"Step"}}function dx(s){if(!s||typeof s!="object")return null;const t=s;if(!t.properties||typeof t.properties!="object")return null;const n={};for(const[a,l]of Object.entries(t.properties)){const d=l&&typeof l=="object"?l.type:void 0;n[a]=typeof d=="string"?{type:d}:{}}return Object.keys(n).length===0?null:{properties:n,required:Array.isArray(t.required)?t.required.filter(a=>typeof a=="string"):[]}}function fx(s){if(!s||typeof s!="object")return null;const t=s;if(!Array.isArray(t.nodes)||!Array.isArray(t.edges))return null;const n=a=>typeof a=="string"?a:"";return{name:n(t.name),entry:n(t.entry),nodes:t.nodes.map(a=>({id:n(a.id),kind:n(a.kind),label:n(a.label),role:n(a.role),description:n(a.description),timeoutMs:typeof a.timeoutMs=="number"&&a.timeoutMs>0?a.timeoutMs:null,inputSchema:dx(a.inputSchema),capabilities:Array.isArray(a.capabilities)?a.capabilities.filter(l=>typeof l=="string"):[]})),edges:t.edges.map(a=>({from:n(a.from),to:n(a.to),kind:n(a.kind),label:n(a.label)})),groups:Array.isArray(t.groups)?t.groups.map(a=>({label:n(a.label),nodeIds:Array.isArray(a.nodeIds)?a.nodeIds.filter(l=>typeof l=="string"):[]})):[],warnings:Array.isArray(t.warnings)?t.warnings.filter(a=>typeof a=="string"):[]}}const by="sapiom-harness-ui-prefs";function zi(){if(typeof window>"u")return{};try{const s=window.localStorage.getItem(by);return s?JSON.parse(s):{}}catch{return{}}}function vn(s){if(!(typeof window>"u"))try{window.localStorage.setItem(by,JSON.stringify({...zi(),...s}))}catch{}}function eu(s,t){return!s||s.stubbed!==!0?!1:s.steps.some(n=>n.name===t)}function px(s){if(!s)return null;const t={};return s.unusedStubs&&s.unusedStubs.length>0&&(t.unusedStubs=s.unusedStubs),s.stubWarnings&&s.stubWarnings.length>0&&(t.stubWarnings=s.stubWarnings),t.unusedStubs||t.stubWarnings?t:null}function zo(s){if(typeof s=="string")return s;try{return JSON.stringify(s,null,2)??String(s)}catch{return String(s)}}function tu(s,t){if(!s)return null;for(let n=s.steps.length-1;n>=0;n--)if(s.steps[n].name===t)return s.steps[n];return null}const Tm=3e3,Am=2e3;function vx(s){return s<1e3?`${s}ms`:`${(s/1e3).toFixed(1)}s`}function Rm(s){let t;if(typeof s=="string")t=s;else try{t=JSON.stringify(s,null,2)??String(s)}catch{t=String(s)}return t.length>Am?`${t.slice(0,Am)}
54
+ … (truncated, ${t.length} chars total)`:t}function _x(s,t,n){const a=[];a.push(`Step: ${s.name}`),a.push(`Status: ${s.status}`),s.latencyMs!=null&&a.push(`Latency: ${vx(s.latencyMs)}`),s.status==="failed"&&s.error&&a.push(`Error: ${s.error}`),(t==null?void 0:t.input)!==void 0&&a.push(`
55
+ Input:
56
+ ${Rm(t.input)}`),(t==null?void 0:t.output)!==void 0&&a.push(`
57
+ Output:
58
+ ${Rm(t.output)}`);const l=t==null?void 0:t.calls;if(l!==void 0)if(l.length>0){a.push(`
59
+ Capabilities called:`);for(const d of l){const p=d.stubUsed?" (stubbed)":"";a.push(` - ${d.capability}${p}`)}}else a.push(`
60
+ Capabilities called: none (the step made zero capability calls).`);else if(n!=null&&n.capabilities&&n.capabilities.length>0){a.push(`
61
+ Capabilities declared (no call trace):`);for(const d of n.capabilities)a.push(` - ${d}`)}if(t!=null&&t.unusedStubs&&t.unusedStubs.length>0){a.push(`
62
+ Unused stubs (supplied but matched no call):`);for(const d of t.unusedStubs)a.push(` - ${d}`)}if(t!=null&&t.stubWarnings&&t.stubWarnings.length>0){a.push(`
63
+ Stub warnings:`);for(const d of t.stubWarnings)a.push(` - ${d}`)}if(s.logSlice){const d=s.logSlice.trimEnd(),p=d.length>Tm?d.slice(d.length-Tm):d;a.push(`
64
+ Logs:
65
+ ${p}`)}return a.join(`
66
+ `)}const gx=/\.(png|jpg|jpeg|webp|gif|svg)($|\?)/i,mx=/https?:\/\/[^\s"'<>`\])\]]+/gi,yx=/[.,;:)\]}\s]+$/;function Mm(s){if(typeof s=="string")return s;try{return JSON.stringify(s)??String(s)}catch{return String(s)}}function bx(s){const t=new Set,n=[],a=l=>{const d=l.matchAll(mx);for(const[p]of d){const c=p.replace(yx,"");if(!c||t.has(c))continue;t.add(c);const u=gx.test(c)?"image":"other";n.push({url:c,kind:u})}};if(s.output!==void 0&&a(Mm(s.output)),s.logSlice&&a(s.logSlice),s.calls)for(const l of s.calls)l.result!==void 0&&a(Mm(l.result));return n}/**
67
+ * @license lucide-react v1.23.0 - ISC
68
+ *
69
+ * This source code is licensed under the ISC license.
70
+ * See the LICENSE file in the root directory of this source tree.
71
+ */const Sy=(...s)=>s.filter((t,n,a)=>!!t&&t.trim()!==""&&a.indexOf(t)===n).join(" ").trim();/**
72
+ * @license lucide-react v1.23.0 - ISC
73
+ *
74
+ * This source code is licensed under the ISC license.
75
+ * See the LICENSE file in the root directory of this source tree.
76
+ */const Sx=s=>s.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase();/**
77
+ * @license lucide-react v1.23.0 - ISC
78
+ *
79
+ * This source code is licensed under the ISC license.
80
+ * See the LICENSE file in the root directory of this source tree.
81
+ */const wx=s=>s.replace(/^([A-Z])|[\s-_]+(\w)/g,(t,n,a)=>a?a.toUpperCase():n.toLowerCase());/**
82
+ * @license lucide-react v1.23.0 - ISC
83
+ *
84
+ * This source code is licensed under the ISC license.
85
+ * See the LICENSE file in the root directory of this source tree.
86
+ */const Dm=s=>{const t=wx(s);return t.charAt(0).toUpperCase()+t.slice(1)};/**
87
+ * @license lucide-react v1.23.0 - ISC
88
+ *
89
+ * This source code is licensed under the ISC license.
90
+ * See the LICENSE file in the root directory of this source tree.
91
+ */var xd={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};/**
92
+ * @license lucide-react v1.23.0 - ISC
93
+ *
94
+ * This source code is licensed under the ISC license.
95
+ * See the LICENSE file in the root directory of this source tree.
96
+ */const xx=s=>{for(const t in s)if(t.startsWith("aria-")||t==="role"||t==="title")return!0;return!1},Cx=$.createContext({}),Ex=()=>$.useContext(Cx),kx=$.forwardRef(({color:s,size:t,strokeWidth:n,absoluteStrokeWidth:a,className:l="",children:d,iconNode:p,...c},u)=>{const{size:v=24,strokeWidth:b=2,absoluteStrokeWidth:f=!1,color:x="currentColor",className:C=""}=Ex()??{},A=a??f?Number(n??b)*24/Number(t??v):n??b;return $.createElement("svg",{ref:u,...xd,width:t??v??xd.width,height:t??v??xd.height,stroke:s??x,strokeWidth:A,className:Sy("lucide",C,l),...!d&&!xx(c)&&{"aria-hidden":"true"},...c},[...p.map(([E,m])=>$.createElement(E,m)),...Array.isArray(d)?d:[d]])});/**
97
+ * @license lucide-react v1.23.0 - ISC
98
+ *
99
+ * This source code is licensed under the ISC license.
100
+ * See the LICENSE file in the root directory of this source tree.
101
+ */const Ne=(s,t)=>{const n=$.forwardRef(({className:a,...l},d)=>$.createElement(kx,{ref:d,iconNode:t,className:Sy(`lucide-${Sx(Dm(s))}`,`lucide-${s}`,a),...l}));return n.displayName=Dm(s),n};/**
102
+ * @license lucide-react v1.23.0 - ISC
103
+ *
104
+ * This source code is licensed under the ISC license.
105
+ * See the LICENSE file in the root directory of this source tree.
106
+ */const Tx=[["path",{d:"M12 5v14",key:"s699le"}],["path",{d:"m19 12-7 7-7-7",key:"1idqje"}]],Ax=Ne("arrow-down",Tx);/**
107
+ * @license lucide-react v1.23.0 - ISC
108
+ *
109
+ * This source code is licensed under the ISC license.
110
+ * See the LICENSE file in the root directory of this source tree.
111
+ */const Rx=[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]],Mx=Ne("arrow-left",Rx);/**
112
+ * @license lucide-react v1.23.0 - ISC
113
+ *
114
+ * This source code is licensed under the ISC license.
115
+ * See the LICENSE file in the root directory of this source tree.
116
+ */const Dx=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],jx=Ne("arrow-right",Dx);/**
117
+ * @license lucide-react v1.23.0 - ISC
118
+ *
119
+ * This source code is licensed under the ISC license.
120
+ * See the LICENSE file in the root directory of this source tree.
121
+ */const Nx=[["path",{d:"M7 7h10v10",key:"1tivn9"}],["path",{d:"M7 17 17 7",key:"1vkiza"}]],Lx=Ne("arrow-up-right",Nx);/**
122
+ * @license lucide-react v1.23.0 - ISC
123
+ *
124
+ * This source code is licensed under the ISC license.
125
+ * See the LICENSE file in the root directory of this source tree.
126
+ */const Ox=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],Bx=Ne("arrow-up",Ox);/**
127
+ * @license lucide-react v1.23.0 - ISC
128
+ *
129
+ * This source code is licensed under the ISC license.
130
+ * See the LICENSE file in the root directory of this source tree.
131
+ */const Hx=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]],zx=Ne("book-open",Hx);/**
132
+ * @license lucide-react v1.23.0 - ISC
133
+ *
134
+ * This source code is licensed under the ISC license.
135
+ * See the LICENSE file in the root directory of this source tree.
136
+ */const Ix=[["path",{d:"M12 18V5",key:"adv99a"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4",key:"1e3is1"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5",key:"1gqd8o"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77",key:"iwvgf7"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464",key:"efp6ie"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517",key:"1gq6am"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464",key:"k1g0md"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77",key:"q97ue3"}]],$x=Ne("brain",Ix);/**
137
+ * @license lucide-react v1.23.0 - ISC
138
+ *
139
+ * This source code is licensed under the ISC license.
140
+ * See the LICENSE file in the root directory of this source tree.
141
+ */const Px=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],Ux=Ne("check",Px);/**
142
+ * @license lucide-react v1.23.0 - ISC
143
+ *
144
+ * This source code is licensed under the ISC license.
145
+ * See the LICENSE file in the root directory of this source tree.
146
+ */const Fx=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],qx=Ne("chevron-down",Fx);/**
147
+ * @license lucide-react v1.23.0 - ISC
148
+ *
149
+ * This source code is licensed under the ISC license.
150
+ * See the LICENSE file in the root directory of this source tree.
151
+ */const Wx=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],Gx=Ne("chevron-right",Wx);/**
152
+ * @license lucide-react v1.23.0 - ISC
153
+ *
154
+ * This source code is licensed under the ISC license.
155
+ * See the LICENSE file in the root directory of this source tree.
156
+ */const Vx=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],Yx=Ne("circle-question-mark",Vx);/**
157
+ * @license lucide-react v1.23.0 - ISC
158
+ *
159
+ * This source code is licensed under the ISC license.
160
+ * See the LICENSE file in the root directory of this source tree.
161
+ */const Kx=[["path",{d:"M10.94 5.274A7 7 0 0 1 15.71 10h1.79a4.5 4.5 0 0 1 4.222 6.057",key:"1uxyv8"}],["path",{d:"M18.796 18.81A4.5 4.5 0 0 1 17.5 19H9A7 7 0 0 1 5.79 5.78",key:"99tcn7"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],Xx=Ne("cloud-off",Kx);/**
162
+ * @license lucide-react v1.23.0 - ISC
163
+ *
164
+ * This source code is licensed under the ISC license.
165
+ * See the LICENSE file in the root directory of this source tree.
166
+ */const Jx=[["path",{d:"M12 13v8",key:"1l5pq0"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242",key:"1pljnt"}],["path",{d:"m8 17 4-4 4 4",key:"1quai1"}]],Zx=Ne("cloud-upload",Jx);/**
167
+ * @license lucide-react v1.23.0 - ISC
168
+ *
169
+ * This source code is licensed under the ISC license.
170
+ * See the LICENSE file in the root directory of this source tree.
171
+ */const Qx=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z",key:"p7xjir"}]],eC=Ne("cloud",Qx);/**
172
+ * @license lucide-react v1.23.0 - ISC
173
+ *
174
+ * This source code is licensed under the ISC license.
175
+ * See the LICENSE file in the root directory of this source tree.
176
+ */const tC=[["path",{d:"m16 18 6-6-6-6",key:"eg8j8"}],["path",{d:"m8 6-6 6 6 6",key:"ppft3o"}]],sC=Ne("code",tC);/**
177
+ * @license lucide-react v1.23.0 - ISC
178
+ *
179
+ * This source code is licensed under the ISC license.
180
+ * See the LICENSE file in the root directory of this source tree.
181
+ */const iC=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]],nC=Ne("copy",iC);/**
182
+ * @license lucide-react v1.23.0 - ISC
183
+ *
184
+ * This source code is licensed under the ISC license.
185
+ * See the LICENSE file in the root directory of this source tree.
186
+ */const rC=[["path",{d:"m15 10 5 5-5 5",key:"qqa56n"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12",key:"z08zvw"}]],aC=Ne("corner-down-right",rC);/**
187
+ * @license lucide-react v1.23.0 - ISC
188
+ *
189
+ * This source code is licensed under the ISC license.
190
+ * See the LICENSE file in the root directory of this source tree.
191
+ */const oC=[["path",{d:"M14 9 9 4 4 9",key:"1af5af"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4",key:"1blwi3"}]],lC=Ne("corner-left-up",oC);/**
192
+ * @license lucide-react v1.23.0 - ISC
193
+ *
194
+ * This source code is licensed under the ISC license.
195
+ * See the LICENSE file in the root directory of this source tree.
196
+ */const cC=[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]],uC=Ne("ellipsis",cC);/**
197
+ * @license lucide-react v1.23.0 - ISC
198
+ *
199
+ * This source code is licensed under the ISC license.
200
+ * See the LICENSE file in the root directory of this source tree.
201
+ */const hC=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],dC=Ne("external-link",hC);/**
202
+ * @license lucide-react v1.23.0 - ISC
203
+ *
204
+ * This source code is licensed under the ISC license.
205
+ * See the LICENSE file in the root directory of this source tree.
206
+ */const fC=[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2",key:"18mbvz"}],["path",{d:"M6.453 15h11.094",key:"3shlmq"}],["path",{d:"M8.5 2h7",key:"csnxdl"}]],pC=Ne("flask-conical",fC);/**
207
+ * @license lucide-react v1.23.0 - ISC
208
+ *
209
+ * This source code is licensed under the ISC license.
210
+ * See the LICENSE file in the root directory of this source tree.
211
+ */const vC=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]],_C=Ne("folder-open",vC);/**
212
+ * @license lucide-react v1.23.0 - ISC
213
+ *
214
+ * This source code is licensed under the ISC license.
215
+ * See the LICENSE file in the root directory of this source tree.
216
+ */const gC=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]],mC=Ne("folder",gC);/**
217
+ * @license lucide-react v1.23.0 - ISC
218
+ *
219
+ * This source code is licensed under the ISC license.
220
+ * See the LICENSE file in the root directory of this source tree.
221
+ */const yC=[["line",{x1:"22",x2:"2",y1:"6",y2:"6",key:"15w7dq"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18",key:"1ip48p"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22",key:"a2lnyx"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22",key:"8vb6jd"}]],bC=Ne("frame",yC);/**
222
+ * @license lucide-react v1.23.0 - ISC
223
+ *
224
+ * This source code is licensed under the ISC license.
225
+ * See the LICENSE file in the root directory of this source tree.
226
+ */const SC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]],wC=Ne("globe",SC);/**
227
+ * @license lucide-react v1.23.0 - ISC
228
+ *
229
+ * This source code is licensed under the ISC license.
230
+ * See the LICENSE file in the root directory of this source tree.
231
+ */const xC=[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9",key:"1hayfq"}],["path",{d:"m18 15 4-4",key:"16gjal"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5",key:"15ts47"}]],CC=Ne("hammer",xC);/**
232
+ * @license lucide-react v1.23.0 - ISC
233
+ *
234
+ * This source code is licensed under the ISC license.
235
+ * See the LICENSE file in the root directory of this source tree.
236
+ */const EC=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]],kC=Ne("history",EC);/**
237
+ * @license lucide-react v1.23.0 - ISC
238
+ *
239
+ * This source code is licensed under the ISC license.
240
+ * See the LICENSE file in the root directory of this source tree.
241
+ */const TC=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21",key:"9csbqa"}],["path",{d:"m14 19.5 3-3 3 3",key:"9vmjn0"}],["path",{d:"M17 22v-5.5",key:"1aa6fl"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}]],AC=Ne("image-up",TC);/**
242
+ * @license lucide-react v1.23.0 - ISC
243
+ *
244
+ * This source code is licensed under the ISC license.
245
+ * See the LICENSE file in the root directory of this source tree.
246
+ */const RC=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]],MC=Ne("info",RC);/**
247
+ * @license lucide-react v1.23.0 - ISC
248
+ *
249
+ * This source code is licensed under the ISC license.
250
+ * See the LICENSE file in the root directory of this source tree.
251
+ */const DC=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1",key:"jqznyg"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1",key:"q5h2i8"}]],jC=Ne("layout-template",DC);/**
252
+ * @license lucide-react v1.23.0 - ISC
253
+ *
254
+ * This source code is licensed under the ISC license.
255
+ * See the LICENSE file in the root directory of this source tree.
256
+ */const NC=[["path",{d:"M13 5h8",key:"a7qcls"}],["path",{d:"M13 12h8",key:"h98zly"}],["path",{d:"M13 19h8",key:"c3s6r1"}],["path",{d:"m3 17 2 2 4-4",key:"1jhpwq"}],["path",{d:"m3 7 2 2 4-4",key:"1obspn"}]],LC=Ne("list-checks",NC);/**
257
+ * @license lucide-react v1.23.0 - ISC
258
+ *
259
+ * This source code is licensed under the ISC license.
260
+ * See the LICENSE file in the root directory of this source tree.
261
+ */const OC=[["path",{d:"M3 5h.01",key:"18ugdj"}],["path",{d:"M3 12h.01",key:"nlz23k"}],["path",{d:"M3 19h.01",key:"noohij"}],["path",{d:"M8 5h13",key:"1pao27"}],["path",{d:"M8 12h13",key:"1za7za"}],["path",{d:"M8 19h13",key:"m83p4d"}]],BC=Ne("list",OC);/**
262
+ * @license lucide-react v1.23.0 - ISC
263
+ *
264
+ * This source code is licensed under the ISC license.
265
+ * See the LICENSE file in the root directory of this source tree.
266
+ */const HC=[["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m16.2 7.8 2.9-2.9",key:"r700ao"}],["path",{d:"M18 12h4",key:"wj9ykh"}],["path",{d:"m16.2 16.2 2.9 2.9",key:"1bxg5t"}],["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m4.9 19.1 2.9-2.9",key:"bwix9q"}],["path",{d:"M2 12h4",key:"j09sii"}],["path",{d:"m4.9 4.9 2.9 2.9",key:"giyufr"}]],zC=Ne("loader",HC);/**
267
+ * @license lucide-react v1.23.0 - ISC
268
+ *
269
+ * This source code is licensed under the ISC license.
270
+ * See the LICENSE file in the root directory of this source tree.
271
+ */const IC=[["path",{d:"m16 17 5-5-5-5",key:"1bji2h"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}]],$C=Ne("log-out",IC);/**
272
+ * @license lucide-react v1.23.0 - ISC
273
+ *
274
+ * This source code is licensed under the ISC license.
275
+ * See the LICENSE file in the root directory of this source tree.
276
+ */const PC=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"m21 3-7 7",key:"1l2asr"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M9 21H3v-6",key:"wtvkvv"}]],UC=Ne("maximize-2",PC);/**
277
+ * @license lucide-react v1.23.0 - ISC
278
+ *
279
+ * This source code is licensed under the ISC license.
280
+ * See the LICENSE file in the root directory of this source tree.
281
+ */const FC=[["path",{d:"M4 5h16",key:"1tepv9"}],["path",{d:"M4 12h16",key:"1lakjw"}],["path",{d:"M4 19h16",key:"1djgab"}]],qC=Ne("menu",FC);/**
282
+ * @license lucide-react v1.23.0 - ISC
283
+ *
284
+ * This source code is licensed under the ISC license.
285
+ * See the LICENSE file in the root directory of this source tree.
286
+ */const WC=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z",key:"18887p"}]],GC=Ne("message-square",WC);/**
287
+ * @license lucide-react v1.23.0 - ISC
288
+ *
289
+ * This source code is licensed under the ISC license.
290
+ * See the LICENSE file in the root directory of this source tree.
291
+ */const VC=[["path",{d:"m14 10 7-7",key:"oa77jy"}],["path",{d:"M20 10h-6V4",key:"mjg0md"}],["path",{d:"m3 21 7-7",key:"tjx5ai"}],["path",{d:"M4 14h6v6",key:"rmj7iw"}]],YC=Ne("minimize-2",VC);/**
292
+ * @license lucide-react v1.23.0 - ISC
293
+ *
294
+ * This source code is licensed under the ISC license.
295
+ * See the LICENSE file in the root directory of this source tree.
296
+ */const KC=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401",key:"kfwtm"}]],XC=Ne("moon",KC);/**
297
+ * @license lucide-react v1.23.0 - ISC
298
+ *
299
+ * This source code is licensed under the ISC license.
300
+ * See the LICENSE file in the root directory of this source tree.
301
+ */const JC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]],ZC=Ne("panel-left-close",JC);/**
302
+ * @license lucide-react v1.23.0 - ISC
303
+ *
304
+ * This source code is licensed under the ISC license.
305
+ * See the LICENSE file in the root directory of this source tree.
306
+ */const QC=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]],e2=Ne("panel-left-open",QC);/**
307
+ * @license lucide-react v1.23.0 - ISC
308
+ *
309
+ * This source code is licensed under the ISC license.
310
+ * See the LICENSE file in the root directory of this source tree.
311
+ */const t2=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m8 9 3 3-3 3",key:"12hl5m"}]],s2=Ne("panel-right-close",t2);/**
312
+ * @license lucide-react v1.23.0 - ISC
313
+ *
314
+ * This source code is licensed under the ISC license.
315
+ * See the LICENSE file in the root directory of this source tree.
316
+ */const i2=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M15 3v18",key:"14nvp0"}],["path",{d:"m10 15-3-3 3-3",key:"1pgupc"}]],n2=Ne("panel-right-open",i2);/**
317
+ * @license lucide-react v1.23.0 - ISC
318
+ *
319
+ * This source code is licensed under the ISC license.
320
+ * See the LICENSE file in the root directory of this source tree.
321
+ */const r2=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551",key:"1miecu"}]],a2=Ne("paperclip",r2);/**
322
+ * @license lucide-react v1.23.0 - ISC
323
+ *
324
+ * This source code is licensed under the ISC license.
325
+ * See the LICENSE file in the root directory of this source tree.
326
+ */const o2=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],l2=Ne("pencil",o2);/**
327
+ * @license lucide-react v1.23.0 - ISC
328
+ *
329
+ * This source code is licensed under the ISC license.
330
+ * See the LICENSE file in the root directory of this source tree.
331
+ */const c2=[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z",key:"10ikf1"}]],u2=Ne("play",c2);/**
332
+ * @license lucide-react v1.23.0 - ISC
333
+ *
334
+ * This source code is licensed under the ISC license.
335
+ * See the LICENSE file in the root directory of this source tree.
336
+ */const h2=[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M17 8a1 1 0 0 1 1 1v4a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1z",key:"1xoxul"}],["path",{d:"M9 8V2",key:"14iosj"}]],d2=Ne("plug",h2);/**
337
+ * @license lucide-react v1.23.0 - ISC
338
+ *
339
+ * This source code is licensed under the ISC license.
340
+ * See the LICENSE file in the root directory of this source tree.
341
+ */const f2=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],p2=Ne("plus",f2);/**
342
+ * @license lucide-react v1.23.0 - ISC
343
+ *
344
+ * This source code is licensed under the ISC license.
345
+ * See the LICENSE file in the root directory of this source tree.
346
+ */const v2=[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478",key:"1fwjs5"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134",key:"ehdyv1"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134",key:"1q22gi"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478",key:"r2q7qm"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]],_2=Ne("radio",v2);/**
347
+ * @license lucide-react v1.23.0 - ISC
348
+ *
349
+ * This source code is licensed under the ISC license.
350
+ * See the LICENSE file in the root directory of this source tree.
351
+ */const g2=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]],m2=Ne("refresh-cw",g2);/**
352
+ * @license lucide-react v1.23.0 - ISC
353
+ *
354
+ * This source code is licensed under the ISC license.
355
+ * See the LICENSE file in the root directory of this source tree.
356
+ */const y2=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],b2=Ne("search",y2);/**
357
+ * @license lucide-react v1.23.0 - ISC
358
+ *
359
+ * This source code is licensed under the ISC license.
360
+ * See the LICENSE file in the root directory of this source tree.
361
+ */const S2=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915",key:"1i5ecw"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],w2=Ne("settings",S2);/**
362
+ * @license lucide-react v1.23.0 - ISC
363
+ *
364
+ * This source code is licensed under the ISC license.
365
+ * See the LICENSE file in the root directory of this source tree.
366
+ */const x2=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z",key:"1s2grr"}],["path",{d:"M20 2v4",key:"1rf3ol"}],["path",{d:"M22 4h-4",key:"gwowj6"}],["circle",{cx:"4",cy:"20",r:"2",key:"6kqj1y"}]],C2=Ne("sparkles",x2);/**
367
+ * @license lucide-react v1.23.0 - ISC
368
+ *
369
+ * This source code is licensed under the ISC license.
370
+ * See the LICENSE file in the root directory of this source tree.
371
+ */const E2=[["path",{d:"m7 11 2-2-2-2",key:"1lz0vl"}],["path",{d:"M11 13h4",key:"1p7l4v"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}]],k2=Ne("square-terminal",E2);/**
372
+ * @license lucide-react v1.23.0 - ISC
373
+ *
374
+ * This source code is licensed under the ISC license.
375
+ * See the LICENSE file in the root directory of this source tree.
376
+ */const T2=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],A2=Ne("square",T2);/**
377
+ * @license lucide-react v1.23.0 - ISC
378
+ *
379
+ * This source code is licensed under the ISC license.
380
+ * See the LICENSE file in the root directory of this source tree.
381
+ */const R2=[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]],M2=Ne("sun",R2);/**
382
+ * @license lucide-react v1.23.0 - ISC
383
+ *
384
+ * This source code is licensed under the ISC license.
385
+ * See the LICENSE file in the root directory of this source tree.
386
+ */const D2=[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z",key:"16rjxf"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193",key:"178nd4"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor",key:"12ikhr"}]],j2=Ne("tags",D2);/**
387
+ * @license lucide-react v1.23.0 - ISC
388
+ *
389
+ * This source code is licensed under the ISC license.
390
+ * See the LICENSE file in the root directory of this source tree.
391
+ */const N2=[["path",{d:"M10 11v6",key:"nco0om"}],["path",{d:"M14 11v6",key:"outv1u"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6",key:"miytrc"}],["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2",key:"e791ji"}]],L2=Ne("trash-2",N2);/**
392
+ * @license lucide-react v1.23.0 - ISC
393
+ *
394
+ * This source code is licensed under the ISC license.
395
+ * See the LICENSE file in the root directory of this source tree.
396
+ */const O2=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],B2=Ne("triangle-alert",O2);/**
397
+ * @license lucide-react v1.23.0 - ISC
398
+ *
399
+ * This source code is licensed under the ISC license.
400
+ * See the LICENSE file in the root directory of this source tree.
401
+ */const H2=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72",key:"ul74o6"}],["path",{d:"m14 7 3 3",key:"1r5n42"}],["path",{d:"M5 6v4",key:"ilb8ba"}],["path",{d:"M19 14v4",key:"blhpug"}],["path",{d:"M10 2v2",key:"7u0qdc"}],["path",{d:"M7 8H3",key:"zfb6yr"}],["path",{d:"M21 16h-4",key:"1cnmox"}],["path",{d:"M11 3H9",key:"1obp7u"}]],z2=Ne("wand-sparkles",H2);/**
402
+ * @license lucide-react v1.23.0 - ISC
403
+ *
404
+ * This source code is licensed under the ISC license.
405
+ * See the LICENSE file in the root directory of this source tree.
406
+ */const I2=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2",key:"by2w9f"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4",key:"xkn7yn"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2",key:"1cgmvn"}]],$2=Ne("workflow",I2);/**
407
+ * @license lucide-react v1.23.0 - ISC
408
+ *
409
+ * This source code is licensed under the ISC license.
410
+ * See the LICENSE file in the root directory of this source tree.
411
+ */const P2=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],U2=Ne("x",P2);/**
412
+ * @license lucide-react v1.23.0 - ISC
413
+ *
414
+ * This source code is licensed under the ISC license.
415
+ * See the LICENSE file in the root directory of this source tree.
416
+ */const F2=[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]],q2=Ne("zap",F2);/**
417
+ * @license lucide-react v1.23.0 - ISC
418
+ *
419
+ * This source code is licensed under the ISC license.
420
+ * See the LICENSE file in the root directory of this source tree.
421
+ */const W2=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14",key:"1vmskp"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],G2=Ne("zoom-in",W2);/**
422
+ * @license lucide-react v1.23.0 - ISC
423
+ *
424
+ * This source code is licensed under the ISC license.
425
+ * See the LICENSE file in the root directory of this source tree.
426
+ */const V2=[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65",key:"13gj7c"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11",key:"durymu"}]],Y2=Ne("zoom-out",V2),K2={ArrowDown:Ax,ArrowLeft:Mx,ArrowRight:jx,ArrowUp:Bx,ArrowUpRight:Lx,BookOpen:zx,Brain:$x,Check:Ux,ChevronDown:qx,ChevronRight:Gx,Cloud:eC,CloudOff:Xx,CloudUpload:Zx,Code:sC,Copy:nC,CornerDownRight:aC,CornerLeftUp:lC,ExternalLink:dC,FlaskConical:pC,Folder:mC,FolderOpen:_C,Frame:bC,Globe:wC,Hammer:CC,History:kC,ImageUp:AC,Info:MC,LayoutTemplate:jC,List:BC,ListChecks:LC,Loader:zC,LogOut:$C,Maximize2:UC,Menu:qC,MessageSquare:GC,Minimize2:YC,MoreHorizontal:uC,Moon:XC,PanelLeftClose:ZC,PanelLeftOpen:e2,PanelRightClose:s2,PanelRightOpen:n2,Paperclip:a2,Pencil:l2,Play:u2,Plug:d2,Plus:p2,Radio:_2,RefreshCw:m2,Search:b2,Settings:w2,Sparkles:C2,Square:A2,SquareTerminal:k2,Sun:M2,Tags:j2,Trash2:L2,TriangleAlert:B2,Wand2:z2,Workflow:$2,X:U2,Zap:q2,ZoomIn:G2,ZoomOut:Y2};function _e({name:s,size:t=16}){const n=K2[s]??Yx;return h.jsx(n,{size:t,strokeWidth:1.75,"aria-hidden":"true"})}function su(){return h.jsx("span",{className:"canvas-run-stub-chip","data-testid":"canvas-run-stub-chip","data-tooltip":"Sapiom capability calls in this local run were served by stubs — not real Sapiom calls",children:"stubbed"})}function wy({step:s}){const t=bx(s);return t.length===0?null:h.jsxs("section",{className:"canvas-detail-section","data-testid":"canvas-detail-links",children:[h.jsx("h4",{children:"Links"}),h.jsx("div",{className:"canvas-links-list",children:t.map(({url:n,kind:a})=>a==="image"?h.jsx("a",{href:n,target:"_blank",rel:"noreferrer",className:"canvas-link-thumb-wrap","data-testid":"canvas-link-image",children:h.jsx("img",{src:n,alt:"",className:"canvas-link-thumb",loading:"lazy"})},n):h.jsxs("a",{href:n,target:"_blank",rel:"noreferrer",className:"canvas-link-item","data-testid":"canvas-link-other",children:[h.jsx(_e,{name:"ExternalLink",size:12}),h.jsx("span",{className:"canvas-link-url",children:"Open"})]},n))})]})}function xy({step:s}){return!s.calls||s.calls.length===0?null:h.jsxs("section",{className:"canvas-detail-section","data-testid":"canvas-detail-capability-calls",children:[h.jsx("h4",{children:"Capability calls"}),h.jsx("div",{className:"canvas-capability-calls",children:s.calls.map((t,n)=>h.jsxs("div",{className:"canvas-capability-call",children:[h.jsxs("div",{className:"canvas-capability-call-head",children:[h.jsx("code",{className:"canvas-input-field",children:t.capability}),t.stubUsed&&h.jsx("span",{className:"canvas-run-stub-chip","data-testid":`canvas-call-stub-chip-${t.capability}`,children:"stubbed"})]}),t.result!==void 0&&h.jsxs("details",{className:"canvas-run-logs canvas-capability-call-result","data-testid":`canvas-call-result-${t.capability}`,children:[h.jsx("summary",{children:"Result"}),h.jsx("pre",{children:zo(t.result)})]})]},`${t.capability}-${n}`))})]})}function ap({run:s}){const t=px(s);return t?h.jsxs("section",{className:"canvas-detail-section","data-testid":"canvas-detail-stub-notice",children:[h.jsx("h4",{children:"Stub notices"}),t.unusedStubs&&h.jsxs("div",{className:"canvas-stub-notice","data-testid":"canvas-stub-unused",children:[h.jsx("span",{className:"canvas-input-label",children:"Unused stubs"}),h.jsx("p",{className:"canvas-stub-notice-hint",children:"Supplied but matched no capability call — likely a typo or wrong path."}),h.jsx("ul",{className:"canvas-detail-warnings",children:t.unusedStubs.map(n=>h.jsxs("li",{children:[h.jsx("code",{className:"canvas-input-field",children:n.key})," in ",n.step]},`${n.step} ${n.key}`))})]}),t.stubWarnings&&h.jsxs("div",{className:"canvas-stub-notice","data-testid":"canvas-stub-warnings",children:[h.jsx("span",{className:"canvas-input-label",children:"Stub warnings"}),h.jsx("p",{className:"canvas-stub-notice-hint",children:"Matched a call but had the wrong shape."}),h.jsx("ul",{className:"canvas-detail-warnings",children:t.stubWarnings.map(n=>h.jsx("li",{children:n},n))})]})]}):null}function Cy(s){return s?`${s} run`:"run"}function iu({status:s}){return s==="passed"?h.jsx("span",{className:"canvas-run-status is-passed","data-status":"passed","aria-label":"passed",children:h.jsx(_e,{name:"Check",size:11})}):s==="failed"?h.jsx("span",{className:"canvas-run-status is-failed","data-status":"failed","aria-label":"failed",children:h.jsx(_e,{name:"X",size:11})}):s==="running"?h.jsx("span",{className:"canvas-run-status is-running","data-status":"running","aria-label":"running"}):h.jsx("span",{className:"canvas-run-status is-pending","data-status":"pending","aria-label":"pending"})}function ac(s){return s.kind==="branching"?"branch":s.kind==="cross"?"pause resume":s.kind==="launch"?"launch":null}function Ey({node:s}){const t=Ro(s);return t.length===0?null:h.jsxs("div",{className:"canvas-input-card","data-testid":`canvas-step-input-${s.id}`,children:[h.jsx("span",{className:"canvas-input-label",children:"Input"}),h.jsx("span",{className:"canvas-input-fields",children:t.map(n=>h.jsxs("code",{className:"canvas-input-field"+(n.required?" is-required":""),"aria-label":`${n.name}, ${n.type}${n.required?", required":""}`,children:[n.name,n.required&&h.jsx("span",{"aria-hidden":"true",children:"*"}),h.jsx("span",{className:"canvas-input-type",children:n.type})]},n.name))})]})}function ky({node:s}){return s.capabilities.length===0?null:h.jsxs("div",{className:"canvas-input-card","data-testid":`canvas-step-capabilities-${s.id}`,children:[h.jsx("span",{className:"canvas-input-label",children:"Capabilities"}),h.jsx("span",{className:"canvas-input-fields",children:s.capabilities.map(t=>h.jsx("code",{className:"canvas-input-field","data-tooltip":"Sapiom capability this step calls",children:t},t))})]})}function X2({graph:s,node:t}){const n=s.edges.filter(p=>p.from===t.id),a=s.edges.filter(p=>p.to===t.id);if(n.length===0&&a.length===0)return null;const l=p=>{var c;return((c=s.nodes.find(u=>u.id===p))==null?void 0:c.label)??p},d=(p,c,u)=>{const v=`${u}${p.from}->${p.to}`;return h.jsxs("div",{className:"canvas-step-transition",children:[h.jsx(_e,{name:u,size:12}),h.jsx("span",{className:"canvas-step-transition-target",children:l(c)}),p.label&&h.jsx("span",{className:"canvas-step-transition-cond",children:p.label})]},v)};return h.jsxs(h.Fragment,{children:[n.map(p=>d(p,p.to,"CornerDownRight")),a.map(p=>d(p,p.from,"CornerLeftUp"))]})}function J2(s,t){return s.kind!=="launched-workflow"?null:t.find(n=>n.path===s.label)??t.find(n=>n.name===s.label)??t.find(n=>n.path.endsWith(`/${s.label}`))??null}function op({node:s,workflows:t,onOpenWorkflow:n}){const a=J2(s,t);return a?h.jsxs("button",{className:"canvas-step-open","data-testid":`canvas-open-workflow-${s.id}`,"data-tooltip":`Switch to ${a.name}`,onClick:()=>n(a.path),children:["Open agent ",h.jsx(_e,{name:"ArrowRight",size:12})]}):null}function jm({run:s,target:t}){return h.jsxs("div",{className:"canvas-steps-list","data-testid":"canvas-run-fallback",children:[h.jsxs("div",{className:"canvas-steps-label",children:["Run steps",h.jsx("span",{className:"canvas-steps-run-note","data-testid":"canvas-steps-run-note",children:Cy(t)})]}),s.steps.map((n,a)=>{const l=[n.latencyMs!==void 0?br(n.latencyMs):null].filter(d=>d!==null);return h.jsxs("div",{className:"canvas-step-item",children:[h.jsxs("div",{className:"canvas-step-row is-static","data-testid":`canvas-run-step-${n.name}`,children:[h.jsx("span",{className:"canvas-step-index",children:String(a+1).padStart(2,"0")}),h.jsx(iu,{status:n.status}),h.jsxs("span",{className:"canvas-step-copy",children:[h.jsx("span",{className:"canvas-step-name",children:n.name}),h.jsx("span",{className:"canvas-step-role",children:n.status})]}),eu(s,n.name)&&h.jsx(su,{}),h.jsx("span",{className:"canvas-step-meta",children:l.join(" · ")}),h.jsx("span",{"aria-hidden":"true"})]}),(n.error||n.logSlice)&&h.jsxs("div",{className:"canvas-step-expand",children:[n.error&&h.jsx("pre",{className:"canvas-run-error",children:n.error}),n.logSlice&&h.jsxs("details",{className:"canvas-run-logs",children:[h.jsx("summary",{children:"Logs"}),h.jsx("pre",{children:n.logSlice})]})]})]},n.id)}),h.jsx(ap,{run:s}),h.jsx("p",{className:"canvas-empty-hint",children:"Agent run data only. Open the Canvas tab for the diagram — transitions and contracts come from the agent."})]})}function Z2({graph:s,run:t,runTarget:n,workflows:a,onOpenWorkflow:l,expandedId:d,onToggle:p,onOpenDetail:c}){const u=new Set(s.nodes.map(x=>x.id)),v=s.groups.filter(x=>x.nodeIds.length>0&&x.nodeIds.every(C=>u.has(C))),b=x=>{var C;return((C=v.find(A=>A.nodeIds.includes(x)))==null?void 0:C.label)??null},f=[];return s.nodes.forEach((x,C)=>{const A=b(x.id),E=f[f.length-1];E&&E.group===A?E.nodes.push({node:x,index:C}):f.push({group:A,nodes:[{node:x,index:C}]})}),h.jsxs("div",{className:"canvas-steps-list","data-testid":"canvas-steps-list",children:[h.jsxs("div",{className:"canvas-steps-label",children:["Steps",t&&h.jsx("span",{className:"canvas-steps-run-note","data-testid":"canvas-steps-run-note",children:Cy(n)})]}),f.map((x,C)=>h.jsxs("div",{className:x.group?"canvas-step-band":void 0,children:[x.group&&h.jsx("div",{className:"canvas-step-group",children:x.group}),x.nodes.map(({node:A,index:E})=>{const m=d===A.id,S=cx(A,s.edges),_=tu(t,A.id),y=_?[_.latencyMs!==void 0?br(_.latencyMs):null].filter(k=>k!==null):[];return h.jsxs("div",{className:"canvas-step-item"+(m?" is-open":""),children:[h.jsxs("button",{className:"canvas-step-row","data-testid":`canvas-step-row-${A.id}`,"aria-expanded":m,onClick:()=>p(A.id),children:[h.jsx("span",{className:"canvas-step-index",children:String(E+1).padStart(2,"0")}),_?h.jsx(iu,{status:_.status}):h.jsx("span",{className:"canvas-step-dot dot--"+A.kind,"aria-hidden":"true"}),h.jsxs("span",{className:"canvas-step-copy",children:[h.jsx("span",{className:"canvas-step-name",children:A.label}),h.jsx("span",{className:"canvas-step-role",children:A.role})]}),_&&eu(t,A.id)&&h.jsx(su,{}),h.jsx("span",{className:"canvas-step-meta",children:(y.length>0?y:S).join(" · ")}),h.jsx("span",{className:"canvas-step-caret"+(m?" is-open":""),"aria-hidden":"true",children:h.jsx(_e,{name:"ChevronDown",size:13})})]}),m&&h.jsxs("div",{className:"canvas-step-expand","data-testid":`canvas-step-expand-${A.id}`,children:[A.description&&h.jsx("p",{className:"canvas-step-desc",children:A.description}),h.jsx(Ey,{node:A}),h.jsx(ky,{node:A}),h.jsx(X2,{graph:s,node:A}),h.jsx(op,{node:A,workflows:a,onOpenWorkflow:l}),h.jsxs("button",{className:"canvas-step-open","data-testid":`canvas-step-open-${A.id}`,onClick:()=>c(A.id),children:["Full details ",h.jsx(_e,{name:"ArrowRight",size:12})]})]})]},A.id)})]},`${x.group??"ungrouped"}-${C}`))]})}function Q2({graph:s,node:t,run:n,workflows:a,onOpenWorkflow:l}){const d=tu(n,t.id),p=s.edges.filter(b=>b.from===t.id),c=s.edges.filter(b=>b.to===t.id),u=b=>{var f;return((f=s.nodes.find(x=>x.id===b))==null?void 0:f.label)??b},v=s.groups.filter(b=>b.nodeIds.includes(t.id));return h.jsx("div",{className:"canvas-detail","data-testid":"canvas-step-detail",children:h.jsxs("div",{className:"canvas-detail-body",children:[t.role&&h.jsx("p",{className:"canvas-detail-role",children:t.role}),t.description&&h.jsx("p",{className:"canvas-detail-desc",children:t.description}),v.length>0&&h.jsxs("p",{className:"canvas-detail-groups",children:["Part of ",v.map(b=>b.label).join(", ")]}),h.jsx(op,{node:t,workflows:a,onOpenWorkflow:l}),d&&h.jsxs("section",{className:"canvas-detail-section","data-testid":"canvas-detail-run",children:[h.jsx("h4",{children:"Agent run"}),h.jsxs("div",{className:"canvas-detail-contract",children:[h.jsx("span",{className:"canvas-input-label",children:"Status"}),h.jsxs("span",{className:"canvas-run-text is-"+d.status,children:[h.jsx(iu,{status:d.status}),d.status,eu(n,t.id)&&h.jsx(su,{})]})]}),d.latencyMs!==void 0&&h.jsxs("div",{className:"canvas-detail-contract",children:[h.jsx("span",{className:"canvas-input-label",children:"Duration"}),h.jsx("span",{className:"canvas-detail-timeout",children:br(d.latencyMs)})]}),d.input!==void 0&&h.jsxs("details",{className:"canvas-run-logs","data-testid":`canvas-detail-run-input-${t.id}`,children:[h.jsx("summary",{children:"Input"}),h.jsx("pre",{children:zo(d.input)})]}),d.output!==void 0&&h.jsxs("details",{className:"canvas-run-logs","data-testid":`canvas-detail-run-output-${t.id}`,children:[h.jsx("summary",{children:"Output"}),h.jsx("pre",{children:zo(d.output)})]}),d.error&&h.jsx("pre",{className:"canvas-run-error",children:d.error}),d.logSlice&&h.jsxs("details",{className:"canvas-run-logs",children:[h.jsx("summary",{children:"Logs"}),h.jsx("pre",{children:d.logSlice})]})]}),d&&h.jsx(xy,{step:d}),d&&h.jsx(wy,{step:d}),h.jsx(ap,{run:n}),(Ro(t).length>0||t.timeoutMs!==null||t.capabilities.length>0)&&h.jsxs("section",{className:"canvas-detail-section",children:[h.jsx("h4",{children:"Contract"}),t.capabilities.length>0&&h.jsxs("div",{className:"canvas-detail-contract","data-testid":"canvas-detail-capabilities",children:[h.jsx("span",{className:"canvas-input-label",children:"Capabilities"}),h.jsx("span",{className:"canvas-input-fields",children:t.capabilities.map(b=>h.jsx("code",{className:"canvas-input-field","data-tooltip":"Sapiom capability this step calls",children:b},b))})]}),Ro(t).length>0&&h.jsxs("div",{className:"canvas-detail-contract","data-testid":"canvas-detail-input",children:[h.jsx("span",{className:"canvas-input-label",children:"Input"}),h.jsx("span",{className:"canvas-input-fields",children:Ro(t).map(b=>h.jsxs("code",{className:"canvas-input-field"+(b.required?" is-required":""),"aria-label":`${b.name}, ${b.type}${b.required?", required":""}`,"data-tooltip":b.required?"Required field":"Optional field",children:[b.name,b.required&&h.jsx("span",{"aria-hidden":"true",children:"*"}),h.jsx("span",{className:"canvas-input-type",children:b.type})]},b.name))})]}),t.timeoutMs!==null&&h.jsxs("div",{className:"canvas-detail-contract",children:[h.jsx("span",{className:"canvas-input-label",children:"Timeout"}),h.jsx("span",{className:"canvas-detail-timeout",children:br(t.timeoutMs)})]})]}),h.jsxs("section",{className:"canvas-detail-section",children:[h.jsxs("h4",{children:["Leads to ",h.jsx("span",{className:"canvas-detail-count",children:p.length})]}),p.length===0?h.jsx("p",{className:"canvas-detail-empty",children:"Terminal step: nothing follows."}):h.jsx("ul",{className:"canvas-detail-edges",children:p.map(b=>h.jsx("li",{children:h.jsxs("div",{className:"canvas-detail-edge",children:[h.jsx(_e,{name:"CornerDownRight",size:13}),h.jsx("span",{className:"canvas-detail-edge-target",children:u(b.to)}),ac(b)&&h.jsx("span",{className:"canvas-detail-edge-kind",children:ac(b)}),b.label&&h.jsx("span",{className:"canvas-detail-edge-cond",children:b.label})]})},`${b.from}->${b.to}`))})]}),h.jsxs("section",{className:"canvas-detail-section",children:[h.jsxs("h4",{children:["Reached from ",h.jsx("span",{className:"canvas-detail-count",children:c.length})]}),c.length===0?h.jsx("p",{className:"canvas-detail-empty",children:t.kind==="entry"?"Entry point: the agent starts here.":"No step routes here."}):h.jsx("ul",{className:"canvas-detail-edges",children:c.map(b=>h.jsx("li",{children:h.jsxs("div",{className:"canvas-detail-edge",children:[h.jsx(_e,{name:"CornerLeftUp",size:13}),h.jsx("span",{className:"canvas-detail-edge-target",children:u(b.from)}),ac(b)&&h.jsx("span",{className:"canvas-detail-edge-kind",children:ac(b)}),b.label&&h.jsx("span",{className:"canvas-detail-edge-cond",children:b.label})]})},`${b.from}->${b.to}`))})]}),s.warnings.length>0&&h.jsxs("section",{className:"canvas-detail-section",children:[h.jsxs("h4",{children:["Graph warnings ",h.jsx("span",{className:"canvas-detail-count",children:s.warnings.length})]}),h.jsx("ul",{className:"canvas-detail-warnings",children:s.warnings.map(b=>h.jsx("li",{children:b},b))})]})]})})}function eE({node:s,run:t,workflows:n,onOpenWorkflow:a}){const l=tu(t,s.id);return h.jsxs("div",{className:"canvas-inspector","data-testid":"canvas-step-inspector",children:[s.role&&h.jsx("p",{className:"canvas-detail-role",children:s.role}),s.description&&h.jsx("p",{className:"canvas-step-desc",children:s.description}),h.jsx(Ey,{node:s}),h.jsx(ky,{node:s}),s.timeoutMs!==null&&h.jsxs("div",{className:"canvas-input-card","data-testid":`canvas-inspector-timeout-${s.id}`,children:[h.jsx("span",{className:"canvas-input-label",children:"Timeout"}),h.jsx("span",{className:"canvas-detail-timeout",children:br(s.timeoutMs)})]}),h.jsx(op,{node:s,workflows:n,onOpenWorkflow:a}),l&&h.jsxs("div",{className:"canvas-inspector-run","data-testid":"canvas-inspector-run",children:[h.jsx("span",{className:"canvas-input-label",children:"Agent run"}),h.jsxs("span",{className:"canvas-run-text is-"+l.status,children:[h.jsx(iu,{status:l.status}),l.status,eu(t,s.id)&&h.jsx(su,{})]}),l.latencyMs!==void 0&&h.jsx("span",{className:"canvas-inspector-run-meta",children:br(l.latencyMs)})]}),(l==null?void 0:l.input)!==void 0&&h.jsxs("details",{className:"canvas-run-logs","data-testid":`canvas-inspector-run-input-${s.id}`,children:[h.jsx("summary",{children:"Input"}),h.jsx("pre",{children:zo(l.input)})]}),(l==null?void 0:l.output)!==void 0&&h.jsxs("details",{className:"canvas-run-logs","data-testid":`canvas-inspector-run-output-${s.id}`,children:[h.jsx("summary",{children:"Output"}),h.jsx("pre",{children:zo(l.output)})]}),(l==null?void 0:l.error)&&h.jsx("pre",{className:"canvas-run-error",children:l.error}),(l==null?void 0:l.logSlice)&&h.jsxs("details",{className:"canvas-run-logs","data-testid":`canvas-inspector-run-logs-${s.id}`,children:[h.jsx("summary",{children:"Logs"}),h.jsx("pre",{children:l.logSlice})]}),l&&h.jsx(xy,{step:l}),l&&h.jsx(wy,{step:l}),h.jsx(ap,{run:t})]})}function tE({node:s,run:t,onInjectPrompt:n,onClose:a}){const l=s?tu(t,s.id):null,[d,p]=$.useState("");function c(v){var C;if(!s){n(v);return}const b=l?{input:l.input,output:l.output,calls:l.calls,unusedStubs:(C=t==null?void 0:t.unusedStubs)==null?void 0:C.map(A=>A.key),stubWarnings:t==null?void 0:t.stubWarnings}:void 0,f=s.capabilities.length>0?{capabilities:s.capabilities}:void 0,x=_x(l??{id:s.id,name:s.id,status:"pending"},b,f);n(`${x}
427
+
428
+ ${v}`)}function u(){const v=d.trim();v&&(c(v),p(""))}return h.jsxs("div",{className:"canvas-chat-panel","data-testid":"canvas-chat-panel",children:[h.jsxs("div",{className:"canvas-chat-head",children:[h.jsx("span",{className:"canvas-chat-title","data-testid":"canvas-chat-title",children:s?`Chat · ${s.label}`:"Chat"}),h.jsx("button",{className:"theme-toggle canvas-chat-close","data-testid":"canvas-chat-close","aria-label":"Close chat","data-tooltip":"Close chat",onClick:a,children:h.jsx(_e,{name:"X",size:13})})]}),h.jsxs("div",{className:"canvas-inspector-macros","data-testid":"canvas-inspector-macros",children:[s&&h.jsxs(h.Fragment,{children:[h.jsx("button",{className:"canvas-inspector-macro-btn btn-ghost","data-testid":"canvas-macro-slow",onClick:()=>c("Why is this step slow / stuck?"),children:"Why slow / stuck?"}),h.jsx("button",{className:"canvas-inspector-macro-btn "+((l==null?void 0:l.status)==="failed"?"btn-primary":"btn-ghost"),"data-testid":"canvas-macro-debug",onClick:()=>c("Debug this step"),children:"Debug this step"}),h.jsx("button",{className:"canvas-inspector-macro-btn btn-ghost","data-testid":"canvas-macro-explain",onClick:()=>c("Explain this step"),children:"Explain this step"})]}),h.jsxs("div",{className:"canvas-inspector-freeform",children:[h.jsx("textarea",{className:"canvas-inspector-freeform-input","data-testid":"canvas-freeform-input",placeholder:s?"Ask about this step…":"Ask about this agent…",rows:2,value:d,onChange:v=>p(v.target.value),onKeyDown:v=>{v.key==="Enter"&&(v.metaKey||v.ctrlKey)&&(v.preventDefault(),u())}}),h.jsx("button",{className:"btn-primary canvas-inspector-freeform-ask","data-testid":"canvas-freeform-ask",disabled:!d.trim(),onClick:u,children:"Ask"})]})]})]})}const Nm=24;function sE({overview:s,selectedNode:t,graph:n,run:a,workflows:l,onOpenWorkflow:d,onOpenSteps:p,onDeselect:c,onCollapse:u,onDescribeWithAI:v,describing:b=!1}){const f=$.useRef(null),x=$.useRef(null),C=$.useRef(null),A=$.useRef(null),E=$.useRef(zi().canvasInspectorHeight??null),[m,S]=$.useState(null),[_,y]=$.useState(!1),[k,R]=$.useState(!1),M=k||b;$.useEffect(()=>{b&&R(!1)},[b]),$.useEffect(()=>{if(!k)return;const J=window.setTimeout(()=>R(!1),8e3);return()=>window.clearTimeout(J)},[k]);const j=()=>{var q;const J=(q=f.current)==null?void 0:q.parentElement;return J?Math.round(J.getBoundingClientRect().height*.5):Number.MAX_SAFE_INTEGER},T=()=>{var J;return(((J=x.current)==null?void 0:J.offsetHeight)??40)+1},D=$.useCallback(()=>{const J=x.current,q=C.current,G=A.current;if(!J||!q||!G)return;const ee=j(),O=E.current,F=window.getComputedStyle(q),L=(parseFloat(F.paddingTop)||0)+(parseFloat(F.paddingBottom)||0),B=J.offsetHeight+G.offsetHeight+L+1,V=O!=null?Math.min(Math.max(O,T()),ee):Math.min(B,ee);S(V)},[]);$.useLayoutEffect(D),$.useEffect(()=>{var G;if(typeof ResizeObserver>"u")return;const J=new ResizeObserver(D),q=(G=f.current)==null?void 0:G.parentElement;return q&&J.observe(q),A.current&&J.observe(A.current),()=>J.disconnect()},[D]);const H=J=>{E.current=Math.round(Math.min(Math.max(J,T()),j())),D()},P=()=>{vn({canvasInspectorHeight:E.current})},W=()=>{E.current=null,vn({canvasInspectorHeight:null}),D()},U=J=>{if(J.button!==0)return;const q=J.currentTarget,G=f.current;if(!G)return;try{q.setPointerCapture(J.pointerId)}catch{}y(!0);const ee=J.clientY,O=G.getBoundingClientRect().height,F=B=>{H(O+(ee-B.clientY))},L=()=>{y(!1),P(),window.removeEventListener("pointermove",F),window.removeEventListener("pointerup",L),window.removeEventListener("pointercancel",L)};window.addEventListener("pointermove",F),window.addEventListener("pointerup",L),window.addEventListener("pointercancel",L)},Y=J=>{var G;const q=((G=f.current)==null?void 0:G.getBoundingClientRect().height)??0;J.key==="ArrowUp"?(J.preventDefault(),H(q+Nm),P()):J.key==="ArrowDown"?(J.preventDefault(),H(q-Nm),P()):J.key==="Home"&&(J.preventDefault(),W())};return h.jsxs("div",{ref:f,className:"canvas-overview"+(_?" is-resizing":"")+(t?" is-inspecting":""),"data-testid":"canvas-overview",style:m!=null?{height:m}:void 0,children:[h.jsx("div",{className:"canvas-overview-resize","data-testid":"canvas-overview-resize",role:"separator","aria-orientation":"horizontal","aria-label":"Resize the overview panel",tabIndex:0,onPointerDown:U,onDoubleClick:W,onKeyDown:Y}),h.jsx("div",{ref:x,className:"canvas-overview-head",children:t?h.jsxs(h.Fragment,{children:[h.jsx("span",{className:"canvas-step-dot dot--"+t.kind,"aria-hidden":"true"}),h.jsx("span",{className:"canvas-overview-title","data-testid":"canvas-inspector-title",children:t.label}),h.jsx("span",{className:"canvas-detail-kind node--"+t.kind,children:yy(t.kind)}),h.jsxs("button",{className:"status-tag status-tag-action canvas-inspector-open-steps","data-testid":"canvas-inspector-open-steps","data-tooltip":"Full details in the Steps tab",onClick:p,children:["Open step ",h.jsx(_e,{name:"ArrowRight",size:12})]}),h.jsx("button",{className:"theme-toggle canvas-overview-close","data-testid":"canvas-inspector-close","aria-label":"Back to the agent overview","data-tooltip":"Back to the agent overview (Esc)",onClick:c,children:h.jsx(_e,{name:"X",size:13})})]}):h.jsxs(h.Fragment,{children:[h.jsx(_e,{name:"Radio",size:13}),"Overview",h.jsx("span",{className:"canvas-overview-stats",children:((s==null?void 0:s.stats)??"").split("·").map(J=>{const q=J.trim();if(!q)return null;const G=q.indexOf(" "),ee=G===-1?q:q.slice(0,G),O=G===-1?"":q.slice(G+1);return h.jsxs("span",{className:"canvas-overview-stat",children:[h.jsx("strong",{children:ee})," ",O]},q)})}),h.jsx("button",{className:"theme-toggle canvas-overview-close","data-testid":"canvas-overview-toggle","aria-label":"Collapse agent overview","data-tooltip":"Collapse agent overview",onClick:u,children:h.jsx(_e,{name:"X",size:13})})]})}),h.jsx("div",{ref:C,className:"canvas-overview-body",children:h.jsx("div",{ref:A,className:"canvas-overview-content",children:t&&n?h.jsx(eE,{graph:n,node:t,run:a,workflows:l,onOpenWorkflow:d}):s&&h.jsxs(h.Fragment,{children:[s.description&&h.jsx("p",{className:"canvas-overview-desc",children:s.description}),v&&h.jsx("button",{type:"button",className:"canvas-describe-ai"+(M?" is-loading":""),"data-testid":"canvas-describe-ai",disabled:M,"aria-busy":M,onClick:()=>{s.description&&!window.confirm("Rewrite this agent's descriptions? The coding agent will edit the source and may replace text you wrote by hand.")||(R(!0),v())},"data-tooltip":"Runs a hidden coding-agent session that writes descriptions into the agent source — the canvas updates when it saves",children:M?h.jsxs(h.Fragment,{children:[h.jsx("span",{className:"canvas-describe-spinner","aria-hidden":"true"}),"Describing…"]}):h.jsxs(h.Fragment,{children:[h.jsx(_e,{name:"Sparkles",size:13}),s.description?"Rewrite descriptions with AI":"Describe with AI"]})}),s.notes.length>0&&h.jsx("ul",{className:"canvas-overview-notes",children:s.notes.map(J=>h.jsx("li",{children:J},J))}),h.jsxs("div",{className:"canvas-legend-row","aria-hidden":"true",children:[h.jsxs("span",{children:[h.jsx("span",{className:"dot dot--entry"}),"entry / active step"]}),h.jsxs("span",{children:[h.jsx("span",{className:"dot dot--step"}),"step"]}),h.jsxs("span",{children:[h.jsx("span",{className:"dot dot--terminal"}),"terminal"]})]})]})})})]})}function Mi({eyebrow:s,icon:t,title:n,body:a,cta:l,className:d,testId:p,children:c}){return h.jsxs("div",{className:"empty-state"+(d?` ${d}`:""),"data-empty-state":!0,"data-testid":p,children:[t&&h.jsx("span",{className:"empty-state-icon","aria-hidden":"true",children:h.jsx(_e,{name:t,size:18})}),s&&h.jsx("span",{className:"empty-state-eyebrow",children:s}),h.jsx("span",{className:"empty-state-title",children:n}),a&&h.jsx("span",{className:"empty-state-body",children:a}),l&&h.jsx("span",{className:"empty-state-cta",children:l}),c]})}function iE(s,t=Date.now()){const n=Math.max(0,Math.round((t-s)/1e3));if(n<45)return"just now";const a=Math.round(n/60);if(a<60)return`${a}m ago`;const l=Math.round(a/60);return l<24?`${l}h ago`:`${Math.round(l/24)}d ago`}var nE=_y();function nu(s,{onDismiss:t,containerRef:n,triggerRef:a}){$.useEffect(()=>{if(!s)return;const l=p=>{var u;const c=n.current;!c||!(p.target instanceof Node)||c.contains(p.target)||(u=a==null?void 0:a.current)!=null&&u.contains(p.target)||t()},d=p=>{var c;p.key==="Escape"&&(t(),(c=a==null?void 0:a.current)==null||c.focus())};return document.addEventListener("mousedown",l),document.addEventListener("keydown",d),()=>{document.removeEventListener("mousedown",l),document.removeEventListener("keydown",d)}},[s,t,n,a])}const fo=4,Ri=8;function rE(s,t,n,a,l){const d=s.getBoundingClientRect(),p={position:"fixed",top:"auto",right:"auto",bottom:"auto",left:"auto"};return l&&(p.overflowY="auto"),n&&(p.width=d.width),p.maxWidth=window.innerWidth-2*Ri,t.startsWith("right")?(p.left=(a??s).getBoundingClientRect().right+fo,t.endsWith("start")?(p.top=d.top,l&&(p.maxHeight=window.innerHeight-d.top-Ri)):(p.bottom=window.innerHeight-d.bottom,l&&(p.maxHeight=d.bottom-Ri)),p):(t.startsWith("down")?(p.top=d.bottom+fo,l&&(p.maxHeight=window.innerHeight-d.bottom-fo-Ri)):(p.bottom=window.innerHeight-d.top+fo,l&&(p.maxHeight=d.top-fo-Ri)),t.endsWith("start")?p.left=Math.max(Ri,d.left):p.right=Math.max(Ri,window.innerWidth-d.right),p)}function Pn({open:s,anchorRef:t,onDismiss:n,placement:a,matchWidth:l=!1,besideRef:d,noClip:p=!1,className:c,role:u,testid:v,children:b}){const f=$.useRef(null),[x,C]=$.useState(null);nu(s,{onDismiss:n,containerRef:f,triggerRef:t});const A=$.useCallback(()=>{const E=t.current;E&&C(rE(E,a,l,(d==null?void 0:d.current)??null,!p))},[t,a,l,d,p]);return $.useLayoutEffect(()=>{s?A():C(null)},[s,A]),$.useLayoutEffect(()=>{if(!s||x==null)return;const E=f.current;if(!E)return;const m=E.getBoundingClientRect();let S=0;m.left<Ri?S=Ri-m.left:m.right>window.innerWidth-Ri&&(S=window.innerWidth-Ri-m.right),!(Math.abs(S)<.5)&&C(_=>_==null?_:{..._,left:typeof _.left=="number"?_.left+S:_.left,right:typeof _.right=="number"?_.right-S:_.right})},[s,x]),$.useEffect(()=>{if(s)return window.addEventListener("resize",A),window.addEventListener("scroll",A,!0),()=>{window.removeEventListener("resize",A),window.removeEventListener("scroll",A,!0)}},[s,A]),!s||x==null?null:nE.createPortal(h.jsx("div",{ref:f,className:c,role:u,"data-testid":v,style:x,children:b}),document.body)}function aE(s,t){return`${t?`${t} run`:"run"} ${s.status}`}function oE({workflow:s,detailStep:t,onBack:n,onAskAgent:a,surface:l,stepsSummary:d,run:p,runTarget:c,runs:u,onSelectRun:v}){const[b,f]=$.useState(!1),x=$.useRef(null),C=$.useCallback(()=>f(!1),[]),[A,E]=$.useState(!1),m=$.useRef(null),S=$.useCallback(()=>E(!1),[]);if(t)return h.jsxs("div",{className:"workflow-actions-header","data-testid":"workflow-actions-header",children:[h.jsx("button",{className:"theme-toggle","data-testid":"canvas-detail-back",onClick:n,"aria-label":"Back to the steps list","data-tooltip":"Back to the steps list",children:h.jsx(_e,{name:"ArrowLeft",size:14})}),h.jsx("span",{className:"workflow-actions-name","data-testid":"canvas-detail-title",children:t.label}),h.jsx("span",{className:"canvas-detail-kind node--"+t.kind,children:yy(t.kind)}),h.jsxs("button",{className:"btn-ghost canvas-detail-ask","data-testid":"canvas-detail-ask","aria-label":"Ask coding agent","data-tooltip":"Ask the coding agent in the terminal",onClick:()=>a(`Walk me through the "${t.label}" step of this agent: what it does, its inputs and outputs, and its transitions.`),children:[h.jsx(_e,{name:"MessageSquare",size:13}),h.jsx("span",{className:"canvas-detail-ask-label",children:"Ask coding agent"})]}),h.jsxs("div",{className:"canvas-detail-menu-wrap",children:[h.jsx("button",{ref:x,className:"theme-toggle","data-testid":"canvas-detail-menu","aria-label":`More actions for ${t.label}`,"data-tooltip":"More actions","aria-haspopup":"menu","aria-expanded":b,onClick:()=>f(_=>!_),children:h.jsx(_e,{name:"MoreHorizontal",size:14})}),h.jsxs(Pn,{open:b,anchorRef:x,onDismiss:C,placement:"down-end",className:"canvas-detail-menu",role:"menu",testid:"canvas-detail-menu-popover",children:[h.jsxs("button",{role:"menuitem",className:"profile-menu-item",onClick:()=>{a(`Modify the "${t.label}" step of this agent. Show me the step's code first, then propose the change.`),C()},children:[h.jsx(_e,{name:"Wand2",size:13}),"Ask coding agent to modify"]}),h.jsxs("button",{role:"menuitem",className:"profile-menu-item",onClick:()=>{var _;(_=navigator.clipboard)==null||_.writeText(t.label).catch(()=>{}),C()},children:[h.jsx(_e,{name:"Copy",size:13}),"Copy step name"]})]})]})]});if(l==="steps"){const _=p&&h.jsxs(h.Fragment,{children:[p.status==="running"&&h.jsx("span",{className:"canvas-run-status is-running","aria-hidden":"true"}),aE(p,c)]});return h.jsxs("div",{className:"workflow-actions-header"+(p?" has-run":""),"data-testid":"workflow-actions-header",children:[h.jsx("span",{className:"workflow-actions-name",children:s.name}),h.jsx("span",{className:"workflow-actions-count","data-testid":"canvas-steps-count",children:d??"no steps"}),p&&u.length<=1&&h.jsx("span",{className:"status-tag canvas-run-chip is-"+p.status,"data-testid":"canvas-run-chip",children:_}),p&&u.length>1&&h.jsxs("div",{className:"canvas-run-picker-wrap",children:[h.jsxs("button",{ref:m,className:"status-tag status-tag-action canvas-run-chip canvas-run-chip--picker is-"+p.status,"data-testid":"canvas-run-chip","aria-haspopup":"menu","aria-expanded":A,"aria-label":`Pick a run to inspect (${u.length} observed)`,"data-tooltip":"Pick a run to inspect",onClick:()=>E(y=>!y),children:[_,h.jsx(_e,{name:"ChevronDown",size:12})]}),h.jsx(Pn,{open:A,anchorRef:m,onDismiss:S,placement:"down-end",className:"canvas-run-menu",role:"menu",testid:"canvas-run-menu",children:[...u].reverse().map((y,k)=>{const R=u.length-k,M=y.run.executionId===p.executionId,j=iE(y.observedAt);return h.jsxs("button",{role:"menuitemradio","aria-checked":M,className:"profile-menu-item"+(M?" is-selected":""),"data-testid":`canvas-run-option-${y.run.executionId}`,title:y.run.executionId,onClick:()=>{v(y.run.executionId),S()},children:[h.jsx(_e,{name:M?"Check":"Play",size:13}),h.jsx("span",{children:`run ${R} · ${y.run.status} · ${y.target}`}),h.jsx("span",{className:"canvas-run-option-meta",children:j})]},y.run.executionId)})})]})]})}return null}const lE=4e3;function cE({sessionId:s,lastMessage:t,boundWorkflow:n,noSessionAgent:a=null,overviewActive:l,sessionExited:d,expanded:p,onToggleExpanded:c,macros:u,tasks:v,onRunMacro:b,onInjectPrompt:f,onDescribeWorkflow:x,surface:C,onOpenSteps:A,run:E,runTarget:m,runs:S,onSelectRun:_,workflows:y,onOpenWorkflow:k,onCanvasContent:R}){const[M,j]=$.useState(!1),[T,D]=$.useState(0),[H,P]=$.useState(np()),[W,U]=$.useState(!1),[Y,J]=$.useState(!0),[q,G]=$.useState(!1),ee=$.useRef(null),O=$.useRef(null),F=$.useRef(0),L=$.useCallback(()=>{J(!1),G(!0),ee.current&&clearTimeout(ee.current),ee.current=setTimeout(()=>G(!1),360)},[]),B=()=>{const ge=F.current-Date.now();O.current&&clearTimeout(O.current),ge>0?O.current=setTimeout(L,ge):L()};$.useEffect(()=>()=>{ee.current&&clearTimeout(ee.current),O.current&&clearTimeout(O.current)},[]),$.useEffect(()=>{if(!Y)return;const ge=window.setTimeout(L,lE);return()=>window.clearTimeout(ge)},[Y,L]);const[V,te]=$.useState(1),[ce,de]=$.useState({x:0,y:0}),[K,I]=$.useState(!1),ue=$.useRef(null),ie=$.useRef(null),[we,fe]=$.useState(.25),$e=ge=>Math.min(3,Math.max(we,Math.round(ge*100)/100)),[De,Ke]=$.useState(null),Ie=$.useRef(!1),[Le,zt]=$.useState({zoom:1,x:0,y:0}),Ue=$.useCallback(()=>{const ge=ue.current;if(!De||!ge)return null;const Me=ge.getBoundingClientRect();if(Me.width<80||Me.height<80)return null;const qe=Me.width-De.insetX*2,wt=Me.height-De.insetTop-De.insetBottom;if(qe<=0||wt<=0)return null;const Ge=Math.min(1,qe/De.width,wt/De.height);return{zoom:Math.max(.1,Math.round(Ge*100)/100),x:0,y:0}},[De]),We=$.useCallback(()=>{let ge=12;const Me=()=>{const qe=Ue();if(qe){fe(Math.min(.25,qe.zoom)),Ie.current=!1,te(qe.zoom),de({x:qe.x,y:qe.y}),zt(qe);return}if(De&&ge-- >0){requestAnimationFrame(Me);return}fe(.25),Ie.current=!1,te(1),de({x:0,y:0}),zt({zoom:1,x:0,y:0})};Me()},[Ue,De]);$.useEffect(()=>{!De||Ie.current||We()},[De,We]),$.useEffect(()=>{const ge=ue.current;if(!ge||typeof ResizeObserver>"u")return;const Me=new ResizeObserver(()=>{Ie.current||We()});return Me.observe(ge),()=>Me.disconnect()},[We]),$.useEffect(()=>{var qe,wt,Ge;(wt=(qe=ie.current)==null?void 0:qe.contentWindow)==null||wt.postMessage({type:"sapiom-canvas:view",zoom:V,x:ce.x,y:ce.y},"*");const ge=es.current,Me=ie.current;if(ge&&Me){const rs=Me.getBoundingClientRect();(Ge=Me.contentWindow)==null||Ge.postMessage({type:"sapiom-canvas:hover",x:ge.x-rs.left,y:ge.y-rs.top},"*")}},[V,ce]),$.useEffect(()=>{const ge=ue.current;if(!ge)return;const Me=qe=>{qe.preventDefault(),Ie.current=!0,te(wt=>$e(wt*(qe.deltaY<0?1.1:1/1.1)))};return ge.addEventListener("wheel",Me,{passive:!1}),()=>ge.removeEventListener("wheel",Me)});const vt=ge=>{var wt,Ge;const Me=ie.current;if(!Me)return;const qe=Me.getBoundingClientRect();if(typeof ge.clientX=="number"&&typeof ge.clientY=="number"){const{clientX:rs,clientY:ws,...Z}=ge;(wt=Me.contentWindow)==null||wt.postMessage({...Z,x:rs-qe.left,y:ws-qe.top},"*");return}(Ge=Me.contentWindow)==null||Ge.postMessage(ge,"*")},[It,rt]=$.useState(!1),ft=$.useRef(!1),kt=$.useRef(0),es=$.useRef(null),cs=ge=>{if(es.current={x:ge.clientX,y:ge.clientY},K)return;const{clientX:Me,clientY:qe}=ge;cancelAnimationFrame(kt.current),kt.current=requestAnimationFrame(()=>{vt({type:"sapiom-canvas:hover",clientX:Me,clientY:qe})})},St=()=>{cancelAnimationFrame(kt.current),es.current=null,rt(!1),ft.current=!1,vt({type:"sapiom-canvas:hover",x:-1,y:-1})},us=ge=>{if(ge.button!==0)return;const Me=ge.currentTarget;try{Me.setPointerCapture(ge.pointerId)}catch{}I(!0),vt({type:"sapiom-canvas:press",clientX:ge.clientX,clientY:ge.clientY,down:!0});let qe=!0;const wt=()=>{qe&&(qe=!1,vt({type:"sapiom-canvas:press",down:!1}))};let Ge=ge.clientX,rs=ge.clientY;const ws=ge.clientX,Z=ge.clientY,Te=He=>{const Tt=He.clientX-Ge,Xt=He.clientY-rs;Ge=He.clientX,rs=He.clientY,(Math.abs(He.clientX-ws)>=4||Math.abs(He.clientY-Z)>=4)&&(wt(),Ie.current=!0),de(ds=>({x:ds.x+Tt,y:ds.y+Xt}))},Re=He=>{I(!1),wt(),Me.removeEventListener("pointermove",Te),Me.removeEventListener("pointerup",Re),Me.removeEventListener("pointercancel",Re),Math.abs(He.clientX-ws)<4&&Math.abs(He.clientY-Z)<4&&(vt({type:"sapiom-canvas:pick",clientX:He.clientX,clientY:He.clientY}),ft.current||yt(null))};Me.addEventListener("pointermove",Te),Me.addEventListener("pointerup",Re),Me.addEventListener("pointercancel",Re)},[Lt,yt]=$.useState(null);$.useEffect(()=>{if(!p&&Lt==null)return;const ge=Me=>{Me.key==="Escape"&&(Lt!=null?yt(null):c())};return window.addEventListener("keydown",ge),()=>window.removeEventListener("keydown",ge)},[p,Lt,c]);const[ct,ss]=$.useState(!0),[Gt,Vt]=$.useState(!1),[Yt,Os]=$.useState(null),[ms,ke]=$.useState(null),[Fe,ts]=$.useState(null),[ys,Ms]=$.useState(null),[xi,Xs]=$.useState(null);$.useEffect(()=>{const ge=Me=>{var wt;const qe=Me.data;if(!(!qe||Me.source!==((wt=ie.current)==null?void 0:wt.contentWindow))){if(qe.type==="sapiom-canvas:overview")Os({description:typeof qe.description=="string"?qe.description:"",stats:typeof qe.stats=="string"?qe.stats:"",notes:Array.isArray(qe.notes)?qe.notes.filter(Ge=>typeof Ge=="string"):[]});else if(qe.type==="sapiom-canvas:graph")ts(fx(qe.graph));else if(qe.type==="sapiom-canvas:node"){const Ge=qe.id;typeof Ge=="string"&&yt(Ge)}else if(qe.type==="sapiom:node-click"){const Ge=qe.stepName;typeof Ge=="string"&&ts(rs=>{if(rs){const ws=rs.nodes.find(Z=>Z.label===Ge)??rs.nodes.find(Z=>Z.id===Ge)??null;ws&&yt(ws.id)}return rs})}else if(qe.type==="sapiom-canvas:hit"){const Ge=typeof qe.id=="string";rt(Ge),ft.current=Ge}else if(qe.type==="sapiom-canvas:size"){const Ge=qe;typeof Ge.width=="number"&&Ge.width>0&&typeof Ge.height=="number"&&Ge.height>0&&Ke({width:Ge.width,height:Ge.height,insetTop:typeof Ge.insetTop=="number"&&Ge.insetTop>=0?Ge.insetTop:0,insetBottom:typeof Ge.insetBottom=="number"&&Ge.insetBottom>=0?Ge.insetBottom:0,insetX:typeof Ge.insetX=="number"&&Ge.insetX>=0?Ge.insetX:0})}else if(qe.type==="sapiom-canvas:error"){const Ge=qe;ke({title:typeof Ge.title=="string"?Ge.title:"",reason:typeof Ge.reason=="string"?Ge.reason:""})}}};return window.addEventListener("message",ge),()=>window.removeEventListener("message",ge)},[]),$.useEffect(()=>{Os(null),ke(null),ts(null),Ms(null),yt(null),Xs(null),ss(!0),rt(!1),ft.current=!1,Ke(null),te(1),de({x:0,y:0}),zt({zoom:1,x:0,y:0}),Ie.current=!1},[s,T]);const ae=Fe&&ys?Fe.nodes.find(ge=>ge.id===ys)??null:null,me=$.useRef(null);ae&&(me.current=ae),Fe||(me.current=null);const xe=ae??me.current,Se=Fe&&Lt?Fe.nodes.find(ge=>ge.id===Lt)??null:null;$.useEffect(()=>{var ge,Me;(Me=(ge=ie.current)==null?void 0:ge.contentWindow)==null||Me.postMessage({type:"sapiom-canvas:select",id:ys??Lt},"*")},[ys,Lt]);const Oe=$.useCallback(()=>{var ge,Me;!E||!m||!s||sp()||Y||(Me=(ge=ie.current)==null?void 0:ge.contentWindow)==null||Me.postMessage({type:"sapiom:run-state",steps:E.steps,status:E.status,target:m},"*")},[E,m,s,Y]);$.useEffect(()=>{Oe()},[Oe]);const tt=Yt??void 0,[st,at]=$.useState(new Set);$.useEffect(()=>rp(P),[]),$.useEffect(()=>{if(J(!0),!s){j(!1);return}j(!1);let ge=!1;return U(!0),fetch(`/canvas/${s}/`,{method:"HEAD"}).then(Me=>!ge&&j(Me.ok)).catch(()=>{}).finally(()=>!ge&&U(!1)),()=>{ge=!0}},[s]),$.useEffect(()=>{!t||!s||t.type==="canvas.reload"&&t.harnessSessionId===s&&(j(!0),J(!0),D(ge=>ge+1))},[t,s]);const Kt=(n==null?void 0:n.path)??null;$.useEffect(()=>{J(!0),D(ge=>ge+1),te(1),de({x:0,y:0}),zt({zoom:1,x:0,y:0}),Ie.current=!1},[Kt]);const Ps=v.filter(ge=>ge.harnessSessionId===s&&(ge.workflowPath==null||ge.workflowPath===Kt)),Ci=Ps.some(ge=>ge.status==="running"&&ge.macroId==="describe"),Ds=Ps.find(ge=>ge.status==="running"&&ge.macroId!=="describe")??null,Qe=Ps.filter(ge=>ge.status!=="running"&&ge.macroId!=="describe").sort((ge,Me)=>(Me.endedAt??"").localeCompare(ge.endedAt??""))[0],ut=!Ds&&(Qe==null?void 0:Qe.status)==="failed"&&!st.has(Qe.id)?Qe:null,hs=ut?u.find(ge=>ge.id===ut.macroId)??null:null,oi=u.find(ge=>ge.id==="visualize")??null,_n=s!=null&&!0,Ei=M&&_n,qn=$.useRef(null);return $.useEffect(()=>{Ei&&s&&qn.current!==s&&(qn.current=s,R==null||R())},[Ei,s,R]),h.jsxs("aside",{className:"canvas-pane",children:[n&&!l&&h.jsx(oE,{workflow:n,detailStep:ae,onBack:()=>Ms(null),onAskAgent:f,surface:C,stepsSummary:Fe&&Fe.nodes.length>0?hx(Fe):null,run:E,runTarget:m,runs:S,onSelectRun:_}),a?h.jsx(Mi,{className:"canvas-empty",testId:"canvas-empty-no-session",icon:"Radio",title:`No running session for ${a}`,body:C==="steps"?"Start a session to map this agent's steps here.":"Start a session to map, run, and inspect this agent."}):l||!s?C==="steps"?h.jsx(Mi,{className:"canvas-empty",icon:"Radio",title:"No session",body:"Start a session to see the agent's steps here."}):h.jsx(Mi,{className:"canvas-empty",icon:"Radio",title:"No session",body:"Start a session to see its canvas here."}):ut?h.jsxs("div",{className:"canvas-task-failed","data-testid":"canvas-task-failed",children:[h.jsxs("p",{className:"canvas-task-title",children:[h.jsx(_e,{name:"TriangleAlert",size:14})," ",ut.label," failed."]}),ut.errorTail&&h.jsx("pre",{className:"canvas-task-error",children:ut.errorTail}),h.jsxs("div",{className:"canvas-task-actions",children:[hs&&h.jsx("button",{className:"btn-primary","data-testid":"canvas-task-retry",onClick:()=>b(hs),children:"Retry"}),h.jsx("button",{className:"btn-ghost","data-testid":"canvas-task-dismiss",onClick:()=>at(ge=>{const Me=new Set(ge);return Me.add(ut.id),Me}),children:"Dismiss"})]})]}):Ds&&!Ei?h.jsxs("div",{className:"canvas-task-activity","data-testid":"canvas-task-activity",children:[h.jsx("span",{className:"canvas-task-icon","aria-hidden":"true",children:h.jsx(_e,{name:"Workflow",size:20})}),h.jsx("div",{className:"canvas-task-title",children:h.jsxs("span",{children:[Ds.label," is running…"]})}),Ds.statusLines.length>0&&h.jsx("ul",{className:"canvas-task-lines","data-testid":"canvas-task-lines",children:Ds.statusLines.slice(-8).map((ge,Me)=>h.jsx("li",{children:ge},`${Me}-${ge}`))}),h.jsx("p",{className:"canvas-empty-hint",children:"Running as a background task, so your session stays free. The canvas reloads here when it finishes."})]}):W?h.jsxs("div",{className:"canvas-loading","data-testid":"canvas-loading",children:[h.jsx("span",{className:"canvas-task-spinner","aria-hidden":"true"}),h.jsx("p",{className:"canvas-empty-hint",children:C==="steps"?"Loading steps…":"Loading canvas…"})]}):!Ei&&C==="steps"&&E?h.jsx("div",{className:"canvas-steps-surface","data-testid":"canvas-steps-surface",children:h.jsx(jm,{run:E,target:m})}):!Ei&&d?h.jsx(Mi,{className:"canvas-empty",testId:"canvas-empty-exited",icon:"History",title:"Session ended",body:`Resume the session to see ${C==="steps"?"the agent's steps":"the agent's diagram"} here.`}):Ei?h.jsx("div",{className:"canvas-frame-wrap"+(p?" is-expanded":""),"data-view":C==="board"?"board":ae?"detail":"steps",children:h.jsxs("div",{className:"canvas-slide-track",children:[h.jsxs("div",{className:"canvas-slide-pane",children:[h.jsxs("div",{className:"canvas-visual"+(C==="steps"?" is-offstage":""),children:[h.jsxs("div",{className:"canvas-view-controls","data-testid":"canvas-view-controls",children:[h.jsx("button",{className:"theme-toggle","data-testid":"canvas-zoom-out","aria-label":"Zoom out",title:"Zoom out",disabled:V<=we+.001,onClick:()=>{Ie.current=!0,te(ge=>Math.max(we,Math.round((ge-.25)*100)/100))},children:h.jsx(_e,{name:"ZoomOut",size:14})}),h.jsxs("button",{className:"theme-toggle canvas-zoom-reset","data-testid":"canvas-zoom-reset","aria-label":"Reset zoom",title:"Reset zoom",disabled:V===1,onClick:()=>{Ie.current=!0,te(1)},children:[Math.round(V*100),"%"]}),h.jsx("button",{className:"theme-toggle","data-testid":"canvas-zoom-in","aria-label":"Zoom in",title:"Zoom in",disabled:V>=2,onClick:()=>{Ie.current=!0,te(ge=>Math.min(2,Math.round((ge+.25)*100)/100))},children:h.jsx(_e,{name:"ZoomIn",size:14})}),h.jsx("button",{className:"theme-toggle","data-testid":"canvas-fit","aria-label":"Fit to view",title:"Fit to view",disabled:V===Le.zoom&&ce.x===Le.x&&ce.y===Le.y,onClick:We,children:h.jsx(_e,{name:"Frame",size:14})})]}),p&&h.jsx("button",{className:"macro-icon-btn canvas-expand-exit","data-testid":"canvas-expand-exit","aria-label":"Exit expanded canvas",title:"Exit expanded canvas (Esc)",onClick:c,children:h.jsx(_e,{name:"Minimize2",size:14})}),(Y||q)&&h.jsxs("div",{className:"canvas-skeleton canvas-loading--overlay"+(Y?"":" is-fading"),"data-testid":"canvas-loading",role:"status","aria-label":"Rendering diagram",children:[h.jsx("div",{className:"canvas-skeleton-block canvas-skeleton-title"}),h.jsxs("div",{className:"canvas-skeleton-row",children:[h.jsx("div",{className:"canvas-skeleton-block"}),h.jsx("div",{className:"canvas-skeleton-block"})]}),h.jsxs("div",{className:"canvas-skeleton-row",children:[h.jsx("div",{className:"canvas-skeleton-block"}),h.jsx("div",{className:"canvas-skeleton-block"}),h.jsx("div",{className:"canvas-skeleton-block"})]}),h.jsx("div",{className:"canvas-skeleton-block canvas-skeleton-wide"})]}),ms&&h.jsxs("div",{className:"canvas-render-error","data-testid":"canvas-render-error",children:[h.jsx("span",{className:"canvas-error-icon","aria-hidden":"true",children:h.jsx(_e,{name:"TriangleAlert",size:20})}),h.jsx("div",{className:"canvas-task-title",children:"Render failed"}),h.jsx("p",{className:"canvas-error-summary",children:(()=>{const ge=ms.reason.trim();return ge.length<4?"The agent graph could not be extracted. Open the terminal for details.":ge.includes(": ")?ge.slice(ge.indexOf(": ")+2).split(". ")[0]:ge})()}),h.jsxs("div",{className:"canvas-error-actions",children:[h.jsx("button",{className:"btn-primary","data-testid":"canvas-error-fix",onClick:()=>f(`The canvas render for ${ms.title||"this agent"} failed: ${ms.reason} Fix the project so the agent graph extracts cleanly.`),children:"Ask coding agent to fix"}),h.jsx("button",{className:"btn-ghost","data-testid":"canvas-error-retry",onClick:()=>{oi?b(oi):(F.current=Date.now()+900,J(!0),D(ge=>ge+1))},children:"Retry"})]}),h.jsxs("details",{className:"canvas-error-details",children:[h.jsx("summary",{children:"Details"}),h.jsx("pre",{children:ms.reason.trim().length>=4?ms.reason:"The rendered document reported a failure without details. Re-render the diagram or check the terminal."})]})]}),Ds&&h.jsxs("div",{className:"canvas-task-activity canvas-task-activity--overlay","data-testid":"canvas-task-activity",children:[h.jsx("span",{className:"canvas-task-icon","aria-hidden":"true",children:h.jsx(_e,{name:"Workflow",size:20})}),h.jsx("div",{className:"canvas-task-title",children:h.jsxs("span",{children:[Ds.label," is running…"]})}),Ds.statusLines.length>0&&h.jsx("ul",{className:"canvas-task-lines","data-testid":"canvas-task-lines",children:Ds.statusLines.slice(-8).map((ge,Me)=>h.jsx("li",{children:ge},`${Me}-${ge}`))}),h.jsx("p",{className:"canvas-empty-hint",children:"Running as a background task, so your session stays free. The canvas reloads here when it finishes."})]}),tt&&!ct&&!Se&&h.jsx("button",{className:"theme-toggle canvas-overview-open","data-testid":"canvas-overview-toggle","aria-label":"Show agent overview","data-tooltip":"Show agent overview",onClick:()=>ss(!0),children:"i"}),C==="board"&&h.jsx("button",{className:"theme-toggle canvas-chat-toggle"+(Gt?" is-active":""),"data-testid":"canvas-chat-toggle","aria-label":Gt?"Close chat":"Open chat","data-tooltip":"Chat — ask about this agent or the selected step",onClick:()=>Vt(ge=>!ge),children:h.jsx(_e,{name:"MessageSquare",size:14})}),h.jsx("iframe",{ref:ie,className:"canvas-iframe",src:`/canvas/${s}/?theme=${H}`,sandbox:"allow-scripts",scrolling:"no",onLoad:()=>{var ge,Me,qe,wt;B(),(Me=(ge=ie.current)==null?void 0:ge.contentWindow)==null||Me.postMessage({type:"sapiom-canvas:view",zoom:V,x:ce.x,y:ce.y},"*"),E&&m&&s&&((wt=(qe=ie.current)==null?void 0:qe.contentWindow)==null||wt.postMessage({type:"sapiom:run-state",steps:E.steps,status:E.status,target:m},"*"))},onError:L},`${s}:${T}`),h.jsx("div",{ref:ue,className:"canvas-pan-layer"+(K?" is-panning":""),"data-testid":"canvas-pan-layer","data-over-node":It&&!K?"true":void 0,onPointerDown:us,onPointerMove:cs,onPointerLeave:St,onDoubleClick:We})]}),C==="steps"&&h.jsx("div",{className:"canvas-steps-surface","data-testid":"canvas-steps-surface",children:Fe&&Fe.nodes.length>0?h.jsx(Z2,{graph:Fe,run:E,runTarget:m,workflows:y,onOpenWorkflow:k,expandedId:xi,onToggle:ge=>Xs(Me=>Me===ge?null:ge),onOpenDetail:Ms}):E?h.jsx(jm,{run:E,target:m}):h.jsx(Mi,{className:"canvas-empty",icon:"Workflow",title:"No steps yet",body:"This diagram has no step graph. It regenerates automatically from the bound agent — check the terminal if it never appears."})}),C==="board"&&(tt&&ct||Se)&&h.jsx(sE,{overview:tt??null,selectedNode:Se,graph:Fe,run:E,workflows:y,onOpenWorkflow:k,onOpenSteps:()=>{Lt&&Ms(Lt),A()},onDeselect:()=>yt(null),onCollapse:()=>ss(!1),onDescribeWithAI:n&&s&&!d?()=>x(n):void 0,describing:Ci}),C==="board"&&Gt&&h.jsx(tE,{node:Se,run:E,onInjectPrompt:f,onClose:()=>Vt(!1)})]}),h.jsx("div",{className:"canvas-slide-pane","aria-hidden":ae?void 0:!0,children:xe&&Fe&&h.jsx(Q2,{graph:Fe,node:xe,run:E,workflows:y,onOpenWorkflow:k})})]})}):h.jsx(Mi,{className:"canvas-empty",icon:"Workflow",title:C==="steps"?"No steps yet":"Nothing generated yet",body:C==="steps"?"Steps are read from the bound agent's diagram — generated automatically from its code.":"Generated automatically from the bound agent; it refreshes when the code changes."})]})}const uE="https://tools.sapiom.ai",hE="x-sapiom-api-key",dE="YOUR_SAPIOM_API_KEY";function fE(s){return s==null?"{ /* your input */ }":JSON.stringify(s,null,2).replace(/\n/g,`
429
+ `)}function pE(s){return s==null?"{}":JSON.stringify(s)}function vE(s){return s.replace(/'/g,"'\\''")}function _E(s,t){return`import { agents } from "@sapiom/tools";
430
+
431
+ const result = await agents.run({
432
+ definition: ${JSON.stringify(s)},
433
+ input: ${fE(t)},
434
+ });
435
+
436
+ if (result.status === "completed") {
437
+ console.log(result.output);
438
+ }
439
+ `}function gE(s,t,n){const a=vE(`{ "input": ${pE(t)} }`),l=encodeURIComponent(s);return`curl -X POST ${n}/agents/v1/definitions/${l}/executions \\
440
+ -H "${hE}: ${dE}" \\
441
+ -H "Content-Type: application/json" \\
442
+ -d '${a}'
443
+ `}function mE(s){const{definition:t,inputSample:n,baseUrl:a=uE}=s;return{typescript:_E(t,n),curl:gE(t,n,a)}}const yE=new Set(["pending","queued","building"]),bE=new Set(["failed","cancelled","superseded","stale"]);function va(s,t=null){return s.activeBuildRunStatus==="ready"?"ready":s.activeBuildRunStatus!=null&&yE.has(s.activeBuildRunStatus)?"building":t!=null||s.activeBuildRunStatus!=null&&bE.has(s.activeBuildRunStatus)?"failed":s.definitionId==null?"draft":"linked"}function Ty(s){return(s==null?void 0:s.activeBuildRunStatus)==="ready"}function SE(s,t=null){switch(va(s,t)){case"ready":return null;case"building":return"Build in progress";case"failed":return"Last deploy failed — retry Deploy";case"linked":return"No ready deployment yet";case"draft":return"Not deployed yet"}}const wE="https://app.sapiom.ai/settings?tab=api-keys";function xE({boundWorkflow:s,agentsBaseUrl:t}){return Ty(s)?h.jsx(CE,{boundWorkflow:s,agentsBaseUrl:t}):null}function CE({boundWorkflow:s,agentsBaseUrl:t}){const[n,a]=$.useState("typescript"),[l,d]=$.useState(!1),p=s.definitionSlug==null,c=s.definitionSlug??s.name,{typescript:u,curl:v}=mE({definition:c,baseUrl:t}),b=n==="typescript"?u:v,f=()=>{navigator.clipboard.writeText(b).then(()=>{d(!0),window.setTimeout(()=>d(!1),2e3)}).catch(()=>{})};return h.jsxs("div",{className:"snippet-panel","data-testid":"snippet-panel",children:[h.jsx("div",{className:"snippet-panel-header",children:h.jsx("span",{className:"snippet-panel-title",children:"Trigger from your code"})}),h.jsxs("div",{className:"snippet-slug-row",children:[h.jsx("span",{className:"snippet-slug-label",children:"Agent"}),h.jsx("code",{className:"snippet-slug","data-testid":"snippet-slug",children:c})]}),p&&h.jsx("p",{className:"snippet-slug-inferred","data-testid":"snippet-slug-inferred",children:"Inferred from the project name. Confirm it matches your deployed agent."}),h.jsxs("div",{className:"snippet-tabs",role:"tablist","aria-label":"Snippet language",children:[h.jsx("button",{role:"tab","aria-selected":n==="typescript","aria-controls":"snippet-code-panel",className:"snippet-tab"+(n==="typescript"?" is-active":""),"data-testid":"snippet-tab-ts",onClick:()=>a("typescript"),children:"TypeScript (SDK)"}),h.jsx("button",{role:"tab","aria-selected":n==="curl","aria-controls":"snippet-code-panel",className:"snippet-tab"+(n==="curl"?" is-active":""),"data-testid":"snippet-tab-curl",onClick:()=>a("curl"),children:"cURL (HTTP)"})]}),h.jsxs("div",{className:"snippet-code-wrap",role:"tabpanel",id:"snippet-code-panel",children:[h.jsx("pre",{className:"snippet-code","data-testid":"snippet-code",children:h.jsx("code",{children:b})}),h.jsx("button",{className:"snippet-copy"+(l?" is-copied":""),"data-testid":"snippet-copy","aria-label":l?"Copied":"Copy snippet",onClick:f,children:l?"Copied":"Copy"})]}),h.jsxs("p",{className:"snippet-hint","data-testid":"snippet-hint",children:[n==="typescript"?h.jsxs(h.Fragment,{children:["Install ",h.jsx("code",{children:"@sapiom/tools"}),", set ",h.jsx("code",{children:"SAPIOM_API_KEY"}),", and replace the sample input. The SDK call waits for a terminal run and returns its result."]}):h.jsxs(h.Fragment,{children:["Replace ",h.jsx("code",{children:"YOUR_SAPIOM_API_KEY"})," and the sample input. This request starts a run and returns its execution ID."]})," ","Create or manage the key in your"," ",h.jsx("a",{className:"snippet-link","data-testid":"snippet-api-key-link",href:wE,target:"_blank",rel:"noreferrer",children:"Sapiom dashboard"}),"."]})]})}function EE({boundWorkflow:s,noSessionAgent:t=null,agentsBaseUrl:n,lastDeployError:a=null}){if(!s)return h.jsx(Mi,{className:"code-panel-empty",icon:"Code",title:t?`No running session for ${t}`:"No agent bound",body:t?"Start a session to inspect this agent's integration snippets here.":"Open an agent to see how to trigger it from your code."});const l=va(s,a),d=l==="ready",p=l==="building"?"Building":l==="failed"?"Deploy failed":l==="linked"?"Linked":"Draft",c=l==="building"?"Cloud build in progress":l==="failed"?"Deploy did not produce a ready build":l==="linked"?"No ready deployment yet":"Deploy to trigger from code",u=l==="building"?`${s.name} is linked and building. Integration snippets appear after the cloud build is ready.`:l==="failed"?`Fix ${s.name} and retry Deploy. Studio only shows integration snippets for a ready cloud build.`:l==="linked"?`${s.name} is linked to Sapiom, but Studio cannot confirm a ready cloud build. Deploy it before integrating.`:`${s.name} is a draft. Once it deploys, TypeScript SDK and cURL starter calls appear here.`;return h.jsxs("div",{className:"code-panel",children:[h.jsxs("div",{className:"workflow-actions-header code-panel-header","data-testid":"code-panel-header",children:[h.jsx("span",{className:"workflow-actions-name",children:s.name}),d?h.jsxs("span",{className:"status-tag workflow-deployed-tag","data-testid":"code-panel-status","data-tooltip":"Ready cloud build",children:[h.jsx("span",{className:"workflow-dot workflow-dot-pinned","aria-hidden":"true"}),"Deployed"]}):h.jsxs("span",{className:"status-tag code-panel-draft-tag","data-testid":"code-panel-status","data-tooltip":c,children:[h.jsx(_e,{name:"CloudOff",size:13}),p]})]}),d?h.jsx("div",{className:"code-panel-body","data-testid":"code-panel-body",children:h.jsx(xE,{boundWorkflow:s,agentsBaseUrl:n},s.path)}):h.jsx(Mi,{className:"code-panel-empty",icon:"Code",title:c,body:u})]})}function Lm(s,t){if(!s)return{score:0,indices:[]};const n=s.toLowerCase(),a=t.toLowerCase();let l=0,d=0,p=0;const c=[];for(let u=0;u<n.length;u++){const v=n[u],b=a.indexOf(v,d);if(b===-1)return null;p=b===d?p+1:0,l+=10-Math.min(b-d,8),l+=p*3,b===0&&(l+=5),c.push(b),d=b+1}return{score:l,indices:c}}const kE={command:"LayoutTemplate",session:"Radio",past:"History",workflow:"Workflow",recent:"Folder",path:"Folder"},Cd={command:"Actions",session:"Sessions",past:"Past sessions",workflow:"Agents",recent:"Folders",path:"Folders"},TE=6;function Om(s,t){if(!t||t.length===0)return s;const n=new Set(t),a=[];let l="",d=n.has(0);const p=c=>{l&&(a.push(d?h.jsx("b",{className:"palette-match",children:l},c):l),l="")};for(let c=0;c<s.length;c++){const u=n.has(c);u!==d&&(p(c),d=u),l+=s[c]}return p(s.length),a}function AE(s,t){const n=Lm(s,t.label);if(n)return{item:{...t,labelIndices:n.indices},score:1e3+n.score};const a=Lm(s,t.meta);return a?{item:{...t,metaIndices:a.indices},score:a.score}:null}function RE({sessions:s,workflows:t,recentDirs:n,history:a,listDir:l,onSelectSession:d,onReviewSummary:p,onOpenPath:c,onBrowseTemplates:u,onClose:v}){const[b,f]=$.useState(""),[x,C]=$.useState([]),[A,E]=$.useState(!1),[m,S]=$.useState(!1),[_,y]=$.useState(0),k=$.useRef(null);$.useEffect(()=>{var D;(D=k.current)==null||D.focus()},[]);const R=b.startsWith("/")||b.startsWith("~");$.useEffect(()=>{if(!R){C([]),S(!1);return}let D=!1;E(!0),S(!1);const H=setTimeout(()=>{l(b).then(P=>{D||C(P.dirs)}).catch(()=>{D||(C([]),S(!0))}).finally(()=>!D&&E(!1))},150);return()=>{D=!0,clearTimeout(H)}},[b,R,l]);const M=$.useMemo(()=>{if(R){const G=b.trim(),ee=G?[{id:`confirm:${G}`,kind:"path",label:G,meta:"Open this path",path:G}]:[],O=x.map(F=>({id:`dir:${F.path}`,kind:"path",label:F.name,meta:F.path,path:F.path}));return[...ee,...O]}const D=s.filter(G=>G.status!=="exited").map(G=>({id:`session:${G.id}`,kind:"session",label:G.title,meta:G.cwd,sessionId:G.id})),H=new Set(s.map(G=>G.id)),P=new Set(s.map(G=>G.agentSessionId).filter(G=>G!=null)),W=[...s.filter(G=>G.status==="exited").map(G=>({id:`past:${G.id}`,kind:"past",label:G.title,meta:G.cwd,sessionId:G.id})),...a.filter(G=>!(G.harnessSessionId!=null&&H.has(G.harnessSessionId))&&!P.has(G.agentSessionId)).map(G=>({id:`summary:${G.agentSessionId}`,kind:"past",label:G.title,meta:G.cwd,summary:G}))],U=t.map(G=>({id:`workflow:${G.path}`,kind:"workflow",label:G.name,meta:G.path,path:G.path})),Y=[{id:"command:browse-templates",kind:"command",label:"Browse templates",meta:"Gallery and starters"}],J=new Set(t.map(G=>G.path)),q=n.filter(G=>!J.has(G)).map(G=>({id:`recent:${G}`,kind:"recent",label:G.split("/").filter(Boolean).pop()??G,meta:G,path:G}));return b?[D,W,U,q,Y].flatMap(G=>G.map(ee=>AE(b,ee)).filter(ee=>ee!==null).sort((ee,O)=>O.score-ee.score).map(ee=>ee.item)).slice(0,20):[...D,...W.slice(0,TE),...U,...q].slice(0,20-Y.length).concat(Y)},[b,R,x,s,t,n,a]);$.useEffect(()=>y(0),[M.length,b]);const j=D=>{D.kind==="command"?u():(D.kind==="session"||D.kind==="past")&&D.sessionId?d(D.sessionId):D.kind==="past"&&D.summary?p(D.summary):D.path&&c(D.path),v()},T=D=>{if(D.key==="ArrowDown")D.preventDefault(),y(H=>Math.min(H+1,M.length-1));else if(D.key==="ArrowUp")D.preventDefault(),y(H=>Math.max(H-1,0));else if(D.key==="Enter"){D.preventDefault();const H=M[_];H&&j(H)}else D.key==="Escape"&&v()};return h.jsx("div",{className:"modal-backdrop",onClick:v,children:h.jsxs("div",{className:"modal command-palette",onClick:D=>D.stopPropagation(),children:[h.jsx("input",{ref:k,className:"command-palette-input","data-testid":"command-palette-input",placeholder:"Jump to a session, agent, or path…",value:b,onChange:D=>f(D.target.value),onKeyDown:T}),h.jsxs("div",{className:"command-palette-list","data-testid":"command-palette-list",children:[R&&A&&h.jsx("div",{className:"command-palette-empty",children:"Loading…"}),R&&m&&!A&&h.jsx("div",{className:"command-palette-error","data-testid":"command-palette-error",role:"alert",children:"Couldn't read that path."}),M.length===0&&!A&&!m&&h.jsx("div",{className:"command-palette-empty",children:"No matches"}),M.map((D,H)=>h.jsxs("div",{className:"command-palette-row",children:[!R&&(H===0||Cd[D.kind]!==Cd[M[H-1].kind])&&h.jsx("div",{className:"command-palette-section","data-testid":"command-palette-section",children:Cd[D.kind]}),h.jsxs("button",{type:"button",className:"command-palette-item"+(H===_?" is-selected":""),"data-testid":`command-palette-item-${H}`,onMouseEnter:()=>y(H),onClick:()=>j(D),children:[h.jsx(_e,{name:kE[D.kind],size:14}),h.jsx("span",{className:"command-palette-item-label",children:Om(D.label,D.labelIndices)}),h.jsx("span",{className:"command-palette-item-meta",children:Om(D.meta,D.metaIndices)})]})]},D.id))]})]})})}const ME={offline:{icon:"CloudOff",title:"You're offline",body:"Agent Studio can't reach the network. Check your connection — the moment you're back, retry to pick up right where you left off."},auth:{icon:"Plug",title:"Session needs a refresh",body:"Your credential was rejected — it may have rotated or expired. Retry to reconnect with the current key; you won't lose your place."},error:{icon:"TriangleAlert",title:"Couldn't reach Agent Studio",body:"The server didn't respond as expected. This is usually temporary — retry in a moment."}};function DE({status:s,onRetry:t,retrying:n=!1,detail:a,onStartAuth:l}){const d=ME[s],[p,c]=$.useState({status:"idle"}),u=async()=>{if(l){c({status:"pending"});try{await l(),c({status:"idle"})}catch(v){const b=v instanceof Error?v.message:"Could not start sign-in. Try again.";c({status:"error",message:b})}}};return h.jsx("div",{className:"app-status connectivity-screen","data-testid":"connectivity-screen","data-status":s,role:"alert",children:h.jsxs("div",{className:"connectivity-screen-inner",children:[h.jsx("span",{className:"connectivity-screen-icon","aria-hidden":"true",children:h.jsx(_e,{name:d.icon,size:22})}),h.jsx("span",{className:"connectivity-screen-title",children:d.title}),h.jsx("span",{className:"connectivity-screen-body",children:d.body}),s==="error"&&a&&h.jsx("span",{className:"connectivity-screen-detail","data-testid":"connectivity-screen-detail",children:a}),h.jsx("button",{className:"btn-primary connectivity-screen-retry","data-testid":"connectivity-retry",onClick:t,disabled:n||p.status==="pending",children:n?"Reconnecting…":"Retry"}),s==="auth"&&l&&h.jsxs("div",{className:"connectivity-screen-auth-section",children:[p.status==="pending"?h.jsxs("span",{className:"connectivity-auth-pending","data-testid":"connectivity-auth-pending",children:[h.jsx(_e,{name:"Loader",size:14}),"Opening browser… waiting for sign-in"]}):h.jsxs("button",{className:"btn-secondary connectivity-connect-btn","data-testid":"connectivity-connect-btn",onClick:()=>void u(),children:[h.jsx(_e,{name:"Plug",size:14}),"Connect account"]}),p.status==="error"&&h.jsx("span",{className:"connectivity-auth-error","data-testid":"connectivity-auth-error",children:p.message})]})]})})}function jE({onDismiss:s}){return h.jsxs("div",{className:"connectivity-banner",role:"status","data-testid":"connectivity-banner",children:[h.jsx("span",{className:"connectivity-banner-icon","aria-hidden":"true",children:h.jsx(_e,{name:"CloudOff",size:14})}),h.jsx("span",{className:"connectivity-banner-text",children:"You're offline. Agent Studio stays usable, but live actions (runs, deploys, the terminal) pause until your connection returns."}),s&&h.jsx("button",{className:"connectivity-banner-dismiss","aria-label":"Dismiss offline notice","data-testid":"connectivity-banner-dismiss",onClick:s,children:"×"})]})}function NE(s,t,n){const a=new Map;for(const l of t)a.has(l.agentSessionId)||a.set(l.agentSessionId,l);for(const l of s)n.has(l.cwd)||a.has(l.agentSessionId)||a.set(l.agentSessionId,l);return Array.from(a.values()).sort((l,d)=>d.lastActiveAt.localeCompare(l.lastActiveAt))}const LE=12;function Ay(s,t,n){var d;const a=[],l=p=>{p&&!a.includes(p)&&a.push(p)};return l((d=s.find(p=>p.id===n))==null?void 0:d.cwd),s.forEach(p=>l(p.cwd)),t.forEach(p=>l(p)),a.slice(0,LE)}const Vo={"claude-code":"Claude Code",codex:"Codex"};function lp(s,t=Date.now()){const n=t-new Date(s).getTime(),a=Math.floor(n/6e4);if(a<1)return"just now";if(a<60)return`${a}m ago`;const l=Math.floor(a/60);if(l<24)return`${l}h ago`;const d=Math.floor(l/24);return d<7?`${d}d ago`:new Date(s).toLocaleDateString([],{month:"short",day:"numeric"})}function OE(s,t){const n=new Date(t).getTime()-new Date(s).getTime();if(!Number.isFinite(n)||n<=0)return null;const a=Math.floor(n/6e4);if(a<1)return"under a minute";if(a<60)return`${a}m`;const l=Math.floor(a/60);return l<24?`${l}h ${a%60}m`:`${Math.floor(l/24)}d ${l%24}h`}function Bm(s){return s.resumeMode===void 0?"checking":s.resumeMode==="agent-resume"?"resume":(s.turnCount??s.messageCount??0)>0?"from-summary":"empty"}function BE(s){switch(s){case"resume":return null;case"from-summary":return"from summary";case"empty":return"nothing recorded";case"checking":return"checking…"}}function hf(s,t=Date.now(),n={}){const a=[];n.includeHarness!==!1&&a.push(Vo[s.harness]),s.gitBranch&&a.push(s.gitBranch);const l=s.turnCount??s.messageCount;l!=null&&l>0&&a.push(`${l} ${l===1?"turn":"turns"}`);const d=n.state?BE(n.state):null;return d&&a.push(d),a.push(lp(s.lastActiveAt,t)),a.join(" · ")}function Ry(s,t){const[n,a]=$.useState(s===null?{status:"empty"}:{status:"loading"});return $.useEffect(()=>{if(s===null){a({status:"empty"});return}let l=!1;return a({status:"loading"}),t(s).then(d=>{l||a(d?{status:"ready",record:d}:{status:"empty"})},d=>{l||a({status:"error",message:d instanceof Error?d.message:String(d)})}),()=>{l=!0}},[s,t]),n}function My({text:s}){const t=s.split(`
444
+ `),n=[];let a=0,l=0;function d(){return l++}function p(c){const u=[],v=/(`[^`]+`|\*\*[^*]+\*\*|\*[^*]+\*)/g;let b=0,f;for(;(f=v.exec(c))!==null;){f.index>b&&u.push(c.slice(b,f.index));const x=f[0];x.startsWith("`")&&x.endsWith("`")?u.push(h.jsx("code",{className:"chat-inline-code",children:x.slice(1,-1)},d())):x.startsWith("**")&&x.endsWith("**")?u.push(h.jsx("strong",{children:x.slice(2,-2)},d())):x.startsWith("*")&&x.endsWith("*")?u.push(h.jsx("em",{children:x.slice(1,-1)},d())):u.push(x),b=f.index+x.length}return b<c.length&&u.push(c.slice(b)),u}for(;a<t.length;){const c=t[a];if(c.startsWith("```")){const f=c.slice(3).trim(),x=[];for(a++;a<t.length&&!t[a].startsWith("```");)x.push(t[a]),a++;a++,n.push(h.jsx("pre",{className:"chat-code-block","data-lang":f||void 0,children:h.jsx("code",{className:f?`language-${f}`:void 0,children:x.join(`
445
+ `)})},d()));continue}const u=c.match(/^(#{1,3})\s+(.+)/);if(u){const x=`h${u[1].length}`;n.push(h.jsx(x,{className:"chat-heading",children:p(u[2])},d())),a++;continue}if(c.startsWith("> ")){n.push(h.jsx("blockquote",{className:"chat-blockquote",children:p(c.slice(2))},d())),a++;continue}if(/^- \[[ x]\]/.test(c)){const f=[];for(;a<t.length&&/^- \[[ x]\]/.test(t[a]);){const x=t[a][3]==="x";f.push({text:t[a].replace(/^- \[[ x]\]\s?/,""),checked:x}),a++}n.push(h.jsx("ul",{className:"chat-list chat-checklist",children:f.map((x,C)=>h.jsx("li",{children:p(x.text)},C))},d()));continue}if(/^[-*+]\s+/.test(c)){const f=[];for(;a<t.length&&/^[-*+]\s+/.test(t[a]);){const x=t[a].replace(/^[-*+]\s+/,"");f.push(h.jsx("li",{children:p(x)},d())),a++}n.push(h.jsx("ul",{className:"chat-list",children:f},d()));continue}if(!c.trim()){a++;continue}const v=f=>f.startsWith("```")||/^#{1,3}\s+/.test(f)||f.startsWith("> ")||/^[-*+]\s+/.test(f),b=[c];for(a++;a<t.length&&t[a].trim()&&!v(t[a]);)b.push(t[a]),a++;n.push(h.jsx("p",{className:"chat-paragraph",children:p(b.join(" "))},d()))}return h.jsx(h.Fragment,{children:n})}const Hm={"assistant-narration-gap":"Only each turn's final assistant message was recorded — anything said between tool calls is missing.","truncated-tool-output":"Large tool results were truncated when recorded and can't be shown in full.","missing-assistant-text":"This agent doesn't report assistant text to the harness, so replies aren't shown.","incomplete-final-turn":"The last turn never completed — the session ended while it was still running.","compacted-archive":"Read from this session's archived copy: the conversation is whole, but tool inputs and results were shortened to keep it small enough to keep.","dropped-early-turns":"The archived copy only had room for the most recent turns — earlier ones are gone."},HE=["assistant-narration-gap","truncated-tool-output","missing-assistant-text","incomplete-final-turn","compacted-archive","dropped-early-turns"];function zE(s){const t=new Set(s),n=HE.filter(l=>t.has(l)).map(l=>Hm[l]),a=[...t].filter(l=>!(l in Hm)).map(l=>`Known gap reported by the harness: ${l}.`);return[...n,...a]}function IE(s){if(!s)return null;const t=[];return s.inputTokens!=null&&t.push(`${zm(s.inputTokens)} in`),s.outputTokens!=null&&t.push(`${zm(s.outputTokens)} out`),t.length>0?t.join(" · "):null}function zm(s){if(s<1e3)return String(s);const t=s/1e3;return`${t<100?t.toFixed(1):Math.round(t)}k`}function Dy(s,t=Date.now()){if(!s)return null;const n=new Date(s);if(Number.isNaN(n.getTime()))return null;const a=n.toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"}),l=new Date(t);return n.getFullYear()===l.getFullYear()&&n.getMonth()===l.getMonth()&&n.getDate()===l.getDate()?a:`${n.toLocaleDateString([],{day:"numeric",month:"short"})}, ${a}`}function $E(s,t){const n=s??"unknown tool";if(!t)return n;const a=t.replace(/\s+/g," ").trim();if(!a)return n;const l=a.length>80?`${a.slice(0,80)}…`:a;return`${n} · ${l}`}function PE({record:s}){const t=zE(s.limitations),n=Dy(s.archivedAt);return h.jsxs("div",{className:"transcript","data-testid":"session-transcript",children:[h.jsxs("div",{className:"transcript-notice","data-testid":"transcript-reconstructed",children:[h.jsx("span",{className:"transcript-badge",children:"Reconstructed"}),h.jsxs("div",{className:"transcript-notice-body",children:[h.jsx("p",{className:"transcript-notice-lead",children:"Rebuilt from the harness's own recording of this session, not a replay of your terminal."}),s.archivedAt!==null&&h.jsx("p",{className:"transcript-notice-lead transcript-notice-archived","data-testid":"transcript-archived",children:n?`Archived copy from ${n}, kept after this session's raw events aged out of the local log.`:"Archived copy, kept after this session's raw events aged out of the local log."}),t.length>0&&h.jsx("ul",{className:"transcript-notice-list","data-testid":"transcript-limitations",children:t.map(a=>h.jsx("li",{children:a},a))})]})]}),h.jsx("ol",{className:"transcript-turns",children:s.turns.map(a=>h.jsx(UE,{turn:a},a.index))})]})}function UE({turn:s}){const t=IE(s.usage),n=Dy(s.promptAt);return h.jsxs("li",{className:"transcript-turn","data-testid":"transcript-turn","data-turn":s.index,children:[h.jsxs("div",{className:"transcript-role transcript-role-user",children:[h.jsx("span",{className:"transcript-role-label",children:"You"}),n&&h.jsx("span",{className:"transcript-time",children:n})]}),s.prompt!==null?h.jsx("div",{className:"transcript-prompt","data-testid":"transcript-prompt",children:s.prompt}):h.jsx("div",{className:"transcript-absent","data-testid":"transcript-no-prompt",children:"No prompt recorded for this turn — the harness started recording after it began."}),s.toolCalls.length>0&&h.jsx("ul",{className:"transcript-tools","data-testid":"transcript-tools",children:s.toolCalls.map((a,l)=>h.jsx(FE,{call:a},`${a.at}-${l}`))}),h.jsxs("div",{className:"transcript-role transcript-role-agent",children:[h.jsx("span",{className:"transcript-role-label",children:"Agent"}),s.model&&h.jsx("span",{className:"transcript-model",children:s.model}),t&&h.jsx("span",{className:"transcript-usage",children:t})]}),s.assistantText!==null?h.jsx("div",{className:"transcript-assistant","data-testid":"transcript-assistant",children:h.jsx(My,{text:s.assistantText})}):h.jsx("div",{className:"transcript-absent","data-testid":"transcript-no-assistant",children:s.incomplete?"This turn never completed — no reply was recorded.":"No assistant text was recorded for this turn."}),s.incomplete&&h.jsx("div",{className:"transcript-incomplete","data-testid":"transcript-incomplete",children:"Turn incomplete"})]})}function FE({call:s}){return h.jsx("li",{className:"transcript-tool",children:h.jsxs("details",{"data-testid":"transcript-tool-call",children:[h.jsxs("summary",{className:"transcript-tool-summary",children:[h.jsx("span",{className:"transcript-tool-name",children:$E(s.name,s.input)}),s.responseTruncated&&h.jsx("span",{className:"transcript-tool-truncated","data-testid":"transcript-tool-truncated",children:"truncated"})]}),h.jsxs("div",{className:"transcript-tool-body",children:[s.input&&h.jsxs(h.Fragment,{children:[h.jsx("div",{className:"transcript-tool-heading",children:"Input"}),h.jsx("pre",{className:"transcript-tool-pre",children:s.input})]}),h.jsx("div",{className:"transcript-tool-heading",children:"Result"}),s.responseSummary?h.jsx("pre",{className:"transcript-tool-pre",children:s.responseSummary}):h.jsx("div",{className:"transcript-absent",children:"No result recorded."}),s.responseTruncated&&h.jsx("div",{className:"transcript-absent",children:"The recorded result was truncated at the collector's size cap; the rest isn't recoverable."})]})]})})}function Im(s){return s.agentSessionId==null?"This session can't be resumed: it exited before establishing a session id.":`${Vo[s.harness]} has no saved conversation for this session, so there's nothing to hand back. That happens when a session ends before its first prompt — the coding agent never writes a transcript for those.`}function qE({session:s,resumeMode:t,loadRecord:n,onResume:a,onContinue:l,onClose:d}){const p=s.agentSessionId!=null&&t!=="rehydrate",c=OE(s.createdAt,s.lastActiveAt),u=Ry(s.id,n),v=u.status!=="empty",b=!p&&u.status==="ready";return h.jsxs("div",{className:"dead-session-pane","data-testid":"dead-session-pane","data-has-record":v,children:[h.jsxs("div",{className:"dead-session-summary",children:[h.jsx("span",{className:"empty-state-icon","aria-hidden":"true",children:h.jsx(_e,{name:"SquareTerminal",size:18})}),h.jsx("div",{className:"dead-session-title",children:"Session exited"}),h.jsxs("div",{className:"dead-session-meta",children:[s.cwd,s.exitCode!=null&&` · exit code ${s.exitCode}`]}),h.jsxs("dl",{className:"dead-session-detail","data-testid":"dead-session-detail",children:[s.title&&h.jsxs("div",{className:"dead-session-detail-row",children:[h.jsx("dt",{children:"Session"}),h.jsx("dd",{children:s.title})]}),h.jsxs("div",{className:"dead-session-detail-row",children:[h.jsx("dt",{children:"Coding agent"}),h.jsx("dd",{children:Vo[s.harness]})]}),c&&h.jsxs("div",{className:"dead-session-detail-row",children:[h.jsx("dt",{children:"Ran for"}),h.jsx("dd",{children:c})]}),h.jsxs("div",{className:"dead-session-detail-row",children:[h.jsx("dt",{children:"Ended"}),h.jsx("dd",{children:lp(s.lastActiveAt)})]})]}),h.jsxs("div",{className:"dead-session-actions",children:[b?h.jsx("button",{className:"btn-primary","data-testid":"dead-session-continue",onClick:l,children:"Continue here"}):h.jsx("button",{className:"btn-primary","data-testid":"dead-session-resume",onClick:a,disabled:!p,title:p?void 0:Im(s),children:"Resume"}),h.jsx("button",{className:"btn-ghost","data-testid":"dead-session-close",onClick:d,children:"Close"})]}),!p&&h.jsxs("div",{className:"dead-session-resume-reason","data-testid":"dead-session-resume-reason",children:[Im(s)," ",b?"Continuing opens a fresh session in this directory, seeded with the reconstruction below — a briefing about this session, not its context. The new coding agent will need to check the repository before relying on any of it.":"Start a new session in this directory instead; there is no recording of this one to carry over either."]})]}),s.exitTail&&h.jsxs("div",{className:"dead-session-exit-tail","data-testid":"dead-session-exit-tail",children:[h.jsx("div",{className:"dead-session-exit-tail-label",children:"Last output before exit"}),h.jsx("pre",{className:"dead-session-exit-tail-body",children:s.exitTail})]}),v&&h.jsx("div",{className:"dead-session-record","data-testid":"dead-session-record",children:h.jsx(jy,{state:u})})]})}function WE({summary:s,loadRecord:t,onStart:n,onClose:a}){const l=s.resumeMode==="agent-resume",d=s.harnessSessionId??s.agentSessionId,p=Ry(d,t),c=!l&&p.status==="ready";return h.jsxs("div",{className:"past-session-pane","data-testid":"past-session-pane",children:[h.jsxs("header",{className:"past-session-header",children:[h.jsxs("div",{className:"past-session-heading",children:[h.jsx("div",{className:"dead-session-title",children:s.title}),h.jsxs("div",{className:"dead-session-meta",children:[hf(s)," · ",s.cwd]})]}),h.jsxs("div",{className:"dead-session-actions",children:[h.jsx("button",{className:"btn-primary","data-testid":"past-session-start",onClick:n,children:l?"Resume":c?"Continue here":"New session here"}),h.jsx("button",{className:"btn-ghost","data-testid":"past-session-close",onClick:a,children:"Close"})]})]}),!l&&h.jsxs("div",{className:"dead-session-resume-reason","data-testid":"past-session-reason",children:[Vo[s.harness]," has no saved conversation for this session, so it can't be reattached — sessions that end before their first prompt are never written to the coding agent's history."," ",c?"Continuing opens a fresh session here, seeded with the reconstruction below. The new coding agent gets a briefing about this session, not its context — it will need to check the repository before relying on any of it.":"Starting opens a fresh session in the same directory, with no context from this one."]}),h.jsx("div",{className:"past-session-body",children:h.jsx(jy,{state:p})})]})}function jy({state:s}){return s.status==="loading"?h.jsx("div",{className:"past-session-status","data-testid":"past-session-loading",children:"Rebuilding this session's transcript…"}):s.status==="error"?h.jsxs("div",{className:"past-session-status","data-testid":"past-session-error",children:["Couldn't load this session's transcript: ",s.message]}):s.status==="empty"?h.jsxs("div",{className:"past-session-status","data-testid":"past-session-empty",children:[h.jsx("span",{className:"empty-state-icon","aria-hidden":"true",children:h.jsx(_e,{name:"SquareTerminal",size:18})}),"No transcript for this session: Agent Studio has no recorded events for it. Sessions Agent Studio didn't run — or ones whose events have aged out of the local log — show up here as history rows only."]}):h.jsx(PE,{record:s.record})}const GE="~/.sapiom/harness",VE={events:`${GE}/events.ndjson`},YE=["image/png","image/jpeg","image/gif","image/webp"],$m=10*1024*1024,KE=["claude-code","codex"],XE=$.createContext(null),Ed=s=>s<1024?`${s} B`:s<1024*1024?`${Math.round(s/1024)} KB`:`${(s/(1024*1024)).toFixed(1)} MB`,JE=s=>new Promise((t,n)=>{const a=new FileReader;a.onload=()=>t(String(a.result)),a.onerror=()=>n(a.error??new Error("could not read file")),a.readAsDataURL(s)}),ZE=({sessionId:s,harness:t,api:n,showToast:a,children:l})=>{const[d,p]=$.useState(null),[c,u]=$.useState([]),[v,b]=$.useState(!1),[f,x]=$.useState(!1),C=$.useRef(null),A=$.useRef(0);$.useEffect(()=>{let T=!1;return n.listHarnesses().then(D=>{T||p(D)}).catch(()=>{}),()=>{T=!0}},[n]);const E=$.useMemo(()=>{var T;return d?((T=d.find(D=>D.id===t))==null?void 0:T.imageInput)??!1:!0},[d,t]);$.useEffect(()=>{u([]),A.current=0,b(!1)},[s]);const m=$.useCallback(async T=>{const D=T.filter(P=>P.type.startsWith("image/"));if(D.length===0)return;const H=[];for(const P of D){if(!YE.includes(P.type)){a(`${P.name||"image"}: ${P.type} isn't a supported image type.`);continue}if(P.size>$m){a(`${P.name||"image"} is ${Ed(P.size)}, over the ${Ed($m)} limit.`);continue}try{const W=await JE(P);H.push({id:crypto.randomUUID(),dataUrl:W,filename:P.name||"pasted-image",mediaType:P.type,bytes:P.size})}catch{a(`Could not read ${P.name||"image"}.`)}}H.length>0&&u(P=>[...P,...H])},[a]);$.useEffect(()=>{if(!E)return;const T=D=>{var W;const H=(W=D.clipboardData)==null?void 0:W.items;if(!H)return;const P=[];for(let U=0;U<H.length;U+=1){const Y=H[U];if(Y.kind==="file"&&Y.type.startsWith("image/")){const J=Y.getAsFile();J&&P.push(J)}}P.length!==0&&(D.preventDefault(),m(P))};return window.addEventListener("paste",T),()=>window.removeEventListener("paste",T)},[E,m]);const S=$.useCallback(T=>{u(D=>D.filter(H=>H.id!==T))},[]),_=$.useCallback(async()=>{if(c.length===0||f)return;x(!0);let T=null;for(const D of c)try{await n.attachImage(s,{dataUrl:D.dataUrl,filename:D.filename}),u(H=>H.filter(P=>P.id!==D.id))}catch(H){T=H instanceof Hs&&H.reason?H.reason:H.message;break}x(!1),T&&a(T)},[c,f,n,s,a]),y=$.useCallback(T=>{Array.from(T.dataTransfer.types).includes("Files")&&(A.current+=1,b(!0))},[]),k=$.useCallback(T=>{Array.from(T.dataTransfer.types).includes("Files")&&T.preventDefault()},[]),R=$.useCallback(()=>{A.current=Math.max(0,A.current-1),A.current===0&&b(!1)},[]),M=$.useCallback(T=>{Array.from(T.dataTransfer.types).includes("Files")&&(T.preventDefault(),A.current=0,b(!1),m(Array.from(T.dataTransfer.files)))},[m]),j=$.useCallback(()=>{var T;(T=C.current)==null||T.click()},[]);return E?h.jsxs("div",{className:"image-composer","data-testid":"image-composer",onDragEnter:y,onDragOver:k,onDragLeave:R,onDrop:M,children:[h.jsx(XE.Provider,{value:j,children:h.jsx("div",{className:"image-composer-pane",children:l})}),v&&h.jsxs("div",{className:"image-composer-dropzone","data-testid":"image-composer-dropzone",children:[h.jsx(_e,{name:"ImageUp",size:28}),h.jsx("span",{children:"Drop an image to attach it"})]}),c.length>0&&h.jsxs("div",{className:"image-composer-bar",children:[h.jsx("ul",{className:"image-composer-thumbs","data-testid":"image-composer-thumbs",children:c.map(T=>h.jsxs("li",{className:"image-composer-thumb",title:`${T.filename} · ${Ed(T.bytes)}`,children:[h.jsx("img",{src:T.dataUrl,alt:T.filename}),h.jsx("button",{type:"button",className:"image-composer-thumb-remove",onClick:()=>S(T.id),disabled:f,"aria-label":`Remove ${T.filename}`,"data-tooltip":`Remove ${T.filename}`,"data-testid":"image-composer-thumb-remove",children:h.jsx(_e,{name:"X",size:11})})]},T.id))}),h.jsx("button",{type:"button",className:"image-composer-send btn-primary",onClick:()=>void _(),disabled:f,"data-testid":"image-composer-send",children:f?"Sending…":`Send ${c.length} to agent`})]}),h.jsx("input",{ref:C,type:"file",accept:"image/*",multiple:!0,hidden:!0,"data-testid":"image-composer-file-input",onChange:T=>{const D=T.target.files?Array.from(T.target.files):[];m(D),T.target.value=""}})]}):h.jsx(h.Fragment,{children:l})};function QE({onCancel:s,onConfirm:t,triggerRef:n}){const a=$.useRef(null);return nu(!0,{onDismiss:s,containerRef:a,triggerRef:n}),h.jsx("div",{className:"modal-backdrop",onClick:s,children:h.jsxs("div",{ref:a,className:"modal modal-confirm",role:"alertdialog","aria-label":"End session","data-testid":"end-session-confirm",onClick:l=>l.stopPropagation(),children:[h.jsxs("div",{className:"modal-header",children:["End session?",h.jsx("button",{className:"theme-toggle modal-close","aria-label":"Close",title:"Close",onClick:s,children:h.jsx(_e,{name:"X",size:14})})]}),h.jsx("div",{className:"modal-body",children:h.jsx("p",{className:"modal-copy",children:"This kills the live terminal; anything the agent is doing right now stops. The session stays resumable from history once it has an agent session id."})}),h.jsxs("div",{className:"modal-actions",children:[h.jsx("button",{className:"btn-ghost",autoFocus:!0,onClick:s,children:"Keep session"}),h.jsx("button",{className:"btn-danger","data-testid":"end-session-confirm-btn",onClick:t,children:"End session"})]})]})})}function ek(s){return s.split("/").filter(Boolean).pop()??s}function tk({overviewMode:s=!1,openedAgentName:t=null,reviewTitle:n=null,composing:a=!1,activeSession:l,sessionName:d,onRenameSession:p,boundWorkflowName:c,busy:u,onExpandRail:v,onExpandRight:b,onCloseSession:f,onOpenInEditor:x,onToast:C,actions:A=null,onNewSession:E=null,sessions:m=[],onSelectSession:S=null,labelOf:_}){const[y,k]=$.useState(!1),[R,M]=$.useState(!1),[j,T]=$.useState(!1),[D,H]=$.useState(""),P=$.useRef(null),W=()=>M(!1),U=()=>{l&&p(l.id,D),T(!1)},Y=l?m.filter(q=>q.id!==l.id):[],J=l?[l,...Y]:[];return h.jsxs("div",{className:"session-bar",children:[v&&h.jsx("button",{className:"gear-btn","data-testid":"rail-expand","aria-label":"Expand workspace panel",title:"Expand workspace panel",onClick:v,children:h.jsx(_e,{name:"Menu",size:15})}),h.jsx("div",{className:"session-queue","data-testid":"session-context","data-session-id":(l==null?void 0:l.id)??"",children:s?h.jsxs("div",{className:"session-current session-current-static",children:[h.jsx(_e,{name:"Radio",size:13}),h.jsx("span",{className:"session-context-title","data-testid":"session-context-title",children:"Overview"})]}):t?h.jsxs("div",{className:"session-current session-current-static",children:[h.jsx("span",{className:"session-context-title","data-testid":"session-context-title",children:t}),h.jsx("span",{className:"status-tag session-status-tag","data-testid":"session-status-tag","data-status":"none","data-tooltip":"No running session for this agent. Start one to work on it.",children:"no session"})]}):n?h.jsxs("div",{className:"session-current session-current-static",children:[h.jsx(_e,{name:"History",size:13}),h.jsx("span",{className:"session-context-title","data-testid":"session-context-title",children:n}),h.jsxs("span",{className:"status-tag session-status-tag","data-testid":"session-status-tag","data-status":"exited","data-tooltip":"A past session under review. Resume it from the pane below.",children:[h.jsx("span",{className:"session-dot","data-status":"exited"}),"past"]})]}):a?h.jsxs("div",{className:"session-current session-current-static",children:[h.jsx(_e,{name:"MessageSquare",size:13}),h.jsx("span",{className:"session-context-title","data-testid":"session-context-title",children:"new session"})]}):l?h.jsx(h.Fragment,{children:h.jsxs("div",{className:"session-current-wrap",children:[j?h.jsx("input",{className:"group-name-input session-rename-input session-context-rename","data-testid":"session-rename-input",value:D,autoFocus:!0,onFocus:q=>q.currentTarget.select(),onChange:q=>H(q.target.value),onKeyDown:q=>{q.key==="Enter"&&U(),q.key==="Escape"&&T(!1)},onBlur:U}):h.jsxs("button",{ref:P,className:"session-current session-title-trigger","data-testid":"session-menu","aria-haspopup":"menu","aria-expanded":R,"data-tooltip":`${Vo[l.harness]} · ${ek(l.cwd)} · ${l.cwd}`,onClick:()=>M(q=>!q),children:[u?h.jsx("span",{className:"session-busy","data-testid":"session-busy","aria-hidden":"true"}):h.jsx("span",{className:"session-dot","data-status":l.status}),h.jsx("span",{className:"session-context-title","data-testid":"session-context-title",children:_?_(l):d??l.title}),h.jsx(_e,{name:"ChevronDown",size:13})]}),h.jsxs(Pn,{open:R,anchorRef:P,onDismiss:W,placement:"down-start",className:"session-menu",role:"menu",testid:"session-menu-popover",children:[h.jsx("div",{className:"session-menu-section",children:"Sessions"}),J.map(q=>{const G=q.id===l.id;return h.jsxs("button",{role:"menuitemradio","aria-checked":G,className:"profile-menu-item session-switch-item"+(G?" is-selected":""),"data-testid":`session-switch-${q.id}`,onClick:()=>{G||S==null||S(q.id),W()},children:[h.jsx("span",{className:"session-dot","data-status":q.status}),h.jsx("span",{className:"session-switch-label",children:_?_(q):q.title}),h.jsx("span",{className:"session-switch-meta",children:lp(q.lastActiveAt)}),G&&h.jsx(_e,{name:"Check",size:13})]},q.id)}),E&&h.jsxs("button",{role:"menuitem",className:"profile-menu-item session-menu-new","data-testid":"session-new-menu",onClick:()=>{E(),W()},children:[h.jsx(_e,{name:"Plus",size:13}),"New session"]}),h.jsx("div",{className:"session-menu-divider",role:"separator"}),c&&h.jsxs("div",{className:"session-menu-bound","data-testid":"session-workflow-chip",children:["Bound to ",h.jsx("strong",{children:c})," · shown in Canvas"]}),h.jsxs("button",{role:"menuitem",className:"profile-menu-item",onClick:()=>{var q;(q=navigator.clipboard)==null||q.writeText(l.cwd).then(()=>C("Path copied.")).catch(()=>C("Couldn't copy the path.")),W()},children:[h.jsx(_e,{name:"Copy",size:13}),"Copy path"]}),h.jsxs("button",{role:"menuitem",className:"profile-menu-item","data-testid":"session-rename",onClick:()=>{H(d??l.title),T(!0),W()},children:[h.jsx(_e,{name:"Pencil",size:13}),"Rename session"]}),h.jsxs("button",{role:"menuitem",className:"profile-menu-item","data-testid":"session-open-editor",onClick:()=>{x(l.cwd),W()},children:[h.jsx(_e,{name:"Code",size:13}),"Open in editor"]}),l.status!=="exited"&&h.jsxs("button",{role:"menuitem",className:"profile-menu-item session-menu-danger","data-testid":"session-end-btn",onClick:()=>{W(),k(!0)},children:[h.jsx(_e,{name:"X",size:13}),"End session…"]})]})]})}):h.jsx("span",{className:"session-context-none",children:"No active session"})}),E&&(l||a)&&h.jsx("button",{className:"session-new","data-testid":"session-new","aria-label":"New session","data-tooltip":"New session",onClick:E,children:h.jsx(_e,{name:"Plus",size:15})}),A,b&&h.jsx("button",{className:"gear-btn","data-testid":"right-expand","aria-label":"Expand canvas panel",title:"Expand canvas panel",onClick:b,children:h.jsx(_e,{name:"List",size:15})}),y&&l&&h.jsx(QE,{triggerRef:P,onCancel:()=>k(!1),onConfirm:()=>{k(!1),f(l.id)}})]})}const Pm={deploy:"deploy",prod_run:"prod-run",run_local:"run-local"};function Ny(s){return Object.prototype.hasOwnProperty.call(Pm,s)?Pm[s]:null}function sk(s){return Ny(s.id)===null&&s.action.kind==="inject"}function ik(s,t,n){if(s.requiresWorkflow){if(!t)return"Select an agent first";if(s.action.kind==="open-url"&&s.action.url.includes("{{workflow.definitionId}}")&&t.definitionId==null)return"Not deployed yet"}return s.action.kind!=="open-url"&&!n?"Start a session first":null}function nk(s,t){return s.replace("{{workflow.definitionId}}",String((t==null?void 0:t.definitionId)??""))}function Rc(s,t,n){const a={event:s,...t?{data:t}:{}};fetch("/api/track",{method:"POST",headers:{"Content-Type":"application/json","X-Harness-Token":ha()},body:JSON.stringify(a),keepalive:!0}).catch(()=>{})}const Ly="https://app.sapiom.ai",Oy=`${Ly}/agents`;function By(s){return`${Oy}/${s}`}function rk({workflow:s,activeSessionId:t,sessionReady:n,macros:a,onRunMacro:l,preview:d,lastDeployError:p,authenticated:c,directActionSettleSeq:u}){const v=m=>a.find(S=>S.id===m),b=va(s,p),f=b==="ready",x=s.definitionId!=null?By(s.definitionId):Ly,[C,A]=$.useState(null);$.useEffect(()=>{A(null)},[s.path,b,p,u]);const E=[{id:"local",label:"Test",icon:"FlaskConical",macro:v("run_local"),testId:"session-step-local",hint:"Test locally with Sapiom capability calls stubbed — no real Sapiom capability calls."},{id:"run",label:"Run",icon:"Play",macro:v("prod_run"),testId:"session-step-run",hint:"Run: start a real cloud execution on Sapiom.",needsDeploy:!0,needsAuth:!0,primary:f},{id:"deploy",label:"Deploy",icon:"CloudUpload",macro:v("deploy"),testId:"session-step-deploy",hint:"Deploy: push and build on Sapiom.",needsAuth:!0,primary:!f}].filter(m=>m.macro);return h.jsxs("div",{className:"session-actions","data-testid":"session-steps","aria-label":"Agent actions",children:[d&&h.jsxs("a",{className:"status-tag status-tag-action session-preview-chip","data-testid":"session-preview-chip",href:d.url,target:"_blank",rel:"noreferrer","aria-label":`Preview :${d.port}`,"data-tooltip":`The coding agent is serving an app on port ${d.port}. Opens ${d.url}`,children:[h.jsx(_e,{name:"ExternalLink",size:12}),h.jsx("span",{className:"session-preview-label",children:"Preview "}),":",d.port]}),h.jsx("a",{className:"session-step session-action-prod","data-testid":"session-step-prod",href:x,target:"_blank",rel:"noreferrer","aria-label":"Open this agent in the Sapiom dashboard","data-tooltip":s.definitionId!=null?"Open this linked agent in the Sapiom dashboard":"Open the Sapiom dashboard",children:h.jsx(_e,{name:"Globe",size:14})}),E.map(m=>{const S=m.needsAuth&&!c?"Connect your account first":null,_=m.needsDeploy?SE(s,p):null,y=!n&&m.macro&&sk(m.macro)?"Session is starting":null,k=S??_??y??(m.macro?ik(m.macro,s,t):null);return h.jsxs("button",{className:"session-step"+(m.primary?" session-action-primary":""),"data-testid":m.testId,"data-pending":C===m.id||void 0,disabled:!!k,"data-tooltip":k?`${m.label}: ${k}`:m.hint,"aria-label":k?`${m.label}: ${k}`:m.label,onClick:()=>{m.macro&&(l(m.macro),A(m.id),Rc("macro.invoked",{macroId:m.macro.id}))},children:[h.jsx(_e,{name:m.icon,size:14}),h.jsx("span",{className:"session-step-label",children:m.label})]},m.id)})]})}function ak({onDismiss:s,onOpenSettings:t}){return h.jsxs("div",{className:"telemetry-notice",role:"status","data-testid":"telemetry-notice",children:[h.jsx("div",{className:"telemetry-notice-body",children:h.jsxs("p",{className:"telemetry-notice-text",children:["Sharing session details with Sapiom is ",h.jsx("strong",{children:"off by default"}),". Your prompts and tool calls stay local unless you opt in to help us improve Agent Studio. Turn it on any time in"," ",h.jsx("button",{className:"telemetry-notice-settings-link",onClick:()=>{t(),s()},children:"Settings"}),", or use the indicator in the top bar."]})}),h.jsx("button",{className:"telemetry-notice-dismiss","aria-label":"Dismiss analytics notice","data-testid":"telemetry-notice-dismiss",onClick:s,children:"×"})]})}const ok=/^[a-z0-9][a-z0-9-]{0,213}$/,cp="sapiom-agent",lk=3,Um=32,ck=new Set(["a","an","and","any","are","as","at","be","can","could","do","each","every","for","from","get","i","if","in","into","is","it","its","just","me","my","need","of","on","once","or","our","please","should","so","that","the","their","them","then","there","this","to","us","want","we","when","with","would","you","your","daily","day","hourly","hour","week","weekly","month","monthly","morning","evening","night","always","regularly"]);function Hy(s){return ok.test(s)}function uk(s){var p;const t=s.toLowerCase().replace(/[^a-z0-9]+/g," ").split(" ").filter(Boolean),n=t.filter(c=>!ck.has(c)),a=n.length>0?n:t,l=[];for(const c of a.slice(0,lk)){if((l.length===0?c:`${l.join("-")}-${c}`).length>Um)break;l.push(c)}const d=l.join("-")||((p=a[0])==null?void 0:p.slice(0,Um))||"";return Hy(d)?d:cp}function zy(s,t){const n=(t==null?void 0:t.trim().replace(/\/+$/,""))??"",a=s.trim();return!n||!a?"":`${n}/${a}`}function hk(s){var t,n,a;return((t=s.settingsRoot)==null?void 0:t.trim())||((n=s.defaultProjectRoot)==null?void 0:n.trim())||((a=s.launchDir)==null?void 0:a.trim())||""}function dk(s){const t=s.replace(/\/+$/,""),n=t.lastIndexOf("/");if(n<0)return null;const a=t.slice(0,n);return a===t?null:a||"/"}function fk(s,t){const n=new Set(t);if(!n.has(s))return s;for(let a=2;a<1e3;a+=1){const l=`${s}-${a}`;if(!n.has(l)&&Hy(l))return l}return s}const pk=[{kind:"starter",id:"default",name:"Default starter",description:"A minimal two-step starter."},{kind:"starter",id:"coding-pause",name:"Coding pause",description:"The launch + pauseUntilSignal + resume pattern for a non-blocking coding-agent run."}],vk={starter:"Starter","product-engineering":"Product and engineering","reliability-governance":"Reliability and governance","revenue-marketing":"Revenue and marketing","customer-experience":"Customer experience","data-knowledge":"Data and knowledge","finance-legal-people":"Finance, legal and people"};function _k(s){return s?vk[s]??s.replace(/-/g," ").replace(/^./,t=>t.toUpperCase()):"Uncategorised"}function up(s){return s!=null&&s.label?s.score>0?`${s.label} ${s.score}/5`:s.label:"—"}function Iy(s){const{basis:t}=s,n=[];t.llmSteps>0&&n.push(`${t.llmSteps} model ${t.llmSteps===1?"step":"steps"}`),t.chainedLlmSteps>0&&n.push(`${t.chainedLlmSteps} chained`),t.mediaCapabilities>0&&n.push(`${t.mediaCapabilities} media ${t.mediaCapabilities===1?"generator":"generators"}`),n.push(`${t.stepCount} ${t.stepCount===1?"step":"steps"}`),t.capabilityCount>0&&n.push(`${t.capabilityCount} ${t.capabilityCount===1?"capability":"capabilities"}`);const a=t.llmSteps===0&&t.mediaCapabilities===0?" · deterministic":"";return`${n.join(", ")}${a}`}function gk(s){return`${s.label}: ${Iy(s)}`}function Fm(s,t){const n=t.trim().toLowerCase();return n?[s.name,s.description,s.id,...s.kind==="gallery"?s.tags:[],...s.kind==="gallery"?s.capabilities:[]].join(" ").toLowerCase().includes(n):!0}function mk(s,t){const n="When the project is ready, offer a local test run with no Sapiom capability spend (sapiom_dev_agents_run_local) as the next step.";return s.kind==="gallery"?`Clone the Sapiom gallery template "${s.id}" into this directory: call the sapiom_dev_agents_clone tool with dir "${t}" and templateId "${s.id}". If it reports you are not authenticated, run sapiom_authenticate first and retry. After the clone, read the project's AGENTS.md and run npm install. `+n:`Scaffold the "${s.id}" starter in this directory: ${df(t,s.id)}, then run npm install and read AGENTS.md. Keep the shipped starter unchanged until the user describes what to build. `+n}function df(s,t){return"call the sapiom_dev_agents_scaffold tool with "+JSON.stringify({dir:s,template:t})}function yk(s){var l,d;const t=s.steps.map(p=>({id:p.name,kind:p.kind,label:p.name,role:p.kind.startsWith("terminal")?"terminal":p.kind==="entry"?"entry":"step",description:p.description??"",timeoutMs:null,inputSchema:null,capabilities:p.capabilities})),n=new Map;for(const p of s.transitions)p.kind==="continue"&&n.set(p.from,(n.get(p.from)??0)+1);const a=s.transitions.map(p=>({from:p.from,to:p.to,kind:p.kind==="pause"?"cross":(n.get(p.from)??0)>1?"branching":"sequential",label:p.label??""}));return{name:s.name,entry:((l=s.steps.find(p=>p.kind==="entry"))==null?void 0:l.name)??((d=s.steps[0])==null?void 0:d.name)??"",nodes:t,edges:a,groups:[],warnings:[]}}function bk(s,t){const n=s.kind==="starter"&&s.id==="default"?cp:s.id;return zy(n,t)}const da="(none)",qm={query:"",category:null,cadence:null};function Sk(s){return s.query.trim()!==""||s.category!==null||s.cadence!==null}const wk={"on-demand":"On demand",scheduled:"Scheduled","on-event":"On event","on-webhook":"Webhook"};function $y(s){return s?wk[s]??s.replace(/-/g," ").replace(/^./,t=>t.toUpperCase()):"No trigger declared"}function Py(s,t,n){const a=new Map;for(const l of s){const d=t(l)??da;a.set(d,(a.get(d)??0)+1)}return[...a.entries()].map(([l,d])=>({value:l,label:n(l),count:d})).sort((l,d)=>l.value===da?1:d.value===da?-1:d.count-l.count||l.label.localeCompare(d.label))}function xk(s){return Py(s,t=>t.category,t=>t===da?"Uncategorised":_k(t))}function Ck(s){return Py(s,t=>t.cadence,t=>t===da?"No trigger declared":$y(t))}function Wm(s,t){return t===null?!0:t===da?s===null:s===t}function Ek(s,t,n){return s.filter(a=>n(a,t.query)&&Wm(a.category,t.category)&&Wm(a.cadence,t.cadence))}function bc({children:s,variant:t="tag",title:n}){return h.jsx("span",{className:t==="count"?"pill pill--count":"pill",title:n,children:s})}const Gm=3;function kk({template:s,onPreview:t,onUse:n}){const[a,l]=$.useState(!1),d=$.useRef(null),p=[{term:"Steps",value:String(s.stepCount)},{term:"Trigger",value:s.cadence?$y(s.cadence):"Not declared"},{term:"Complexity",value:up(s.complexity),...s.complexity?{title:gk(s.complexity)}:{title:"This catalog response carried no complexity band."}},{term:"Capabilities",value:s.capabilities.length>0?String(s.capabilities.length):"None"}];return h.jsxs(h.Fragment,{children:[h.jsx("button",{ref:d,type:"button",className:"theme-toggle template-card-info","data-testid":`template-card-info-${s.id}`,"aria-label":`What ${s.name} runs and costs`,"aria-expanded":a,onClick:()=>l(c=>!c),children:h.jsx(_e,{name:"Info",size:14})}),h.jsxs(Pn,{open:a,anchorRef:d,onDismiss:()=>l(!1),placement:"down-end",className:"template-facts",testid:"template-facts",children:[h.jsx("dl",{className:"template-fact-list",children:p.map(c=>h.jsxs("div",{className:"template-fact",children:[h.jsx("dt",{children:c.term}),h.jsx("dd",{title:c.title,children:c.value})]},c.term))}),h.jsxs("div",{className:"template-fact-actions",children:[h.jsx("button",{type:"button",className:"btn-line","data-testid":`template-facts-preview-${s.id}`,onClick:()=>{l(!1),t(s)},children:"Preview"}),h.jsx("button",{type:"button",className:"btn-primary","data-testid":`template-facts-use-${s.id}`,onClick:()=>{l(!1),n(s)},children:"Use"})]})]})]})}function Vm({template:s,onOpen:t,onUse:n}){const a=s.kind==="gallery"?s.tags.slice(0,Gm):[],l=s.kind==="gallery"?s.tags.length-a.length:0;return h.jsxs("article",{className:"template-card","data-testid":`template-card-${s.id}`,children:[h.jsx("button",{type:"button",className:"template-card-hitbox","data-testid":`template-card-open-${s.id}`,onClick:()=>t(s),children:h.jsxs("span",{className:"visually-hidden",children:["Open ",s.name]})}),h.jsxs("div",{className:"template-card-header",children:[h.jsx("h3",{className:"template-card-name",children:s.name}),s.kind==="gallery"&&h.jsx(kk,{template:s,onPreview:t,onUse:n})]}),h.jsx("p",{className:"template-card-desc","data-testid":"template-card-desc",children:s.description}),s.kind==="starter"?h.jsx("div",{className:"template-card-tags",children:h.jsx(bc,{children:"bundled"})}):a.length>0&&h.jsxs("div",{className:"template-card-tags",children:[a.map(d=>h.jsx(bc,{children:d},d)),l>0&&h.jsxs(bc,{variant:"count",title:s.tags.slice(Gm).join(", "),children:["+",l]})]})]})}function Tk({detail:s}){const t=yk(s);return h.jsx("div",{className:"template-graph","data-testid":"template-graph",children:t.nodes.map(n=>{const a=t.edges.filter(l=>l.from===n.id);return h.jsxs("div",{className:"template-graph-item","data-testid":`template-graph-node-${n.id}`,children:[h.jsxs("div",{className:"template-graph-node",children:[h.jsx("span",{className:"canvas-step-dot dot--"+n.kind,"aria-hidden":"true"}),h.jsx("span",{className:"template-graph-name",children:n.label}),n.kind==="terminal-success"&&h.jsx("span",{className:"template-step-exit",children:"exit"}),n.kind==="terminal-warn"&&h.jsx("span",{className:"template-step-exit template-step-exit--warn",children:"fails out"}),n.kind==="pause"&&h.jsx("span",{className:"template-step-pause",children:"pause"}),n.capabilities.map(l=>h.jsx("code",{className:"template-cap",children:l},l))]}),a.map(l=>h.jsxs("div",{className:"canvas-step-transition template-graph-edge",children:[h.jsx(_e,{name:"CornerDownRight",size:12}),h.jsx("span",{className:"canvas-step-transition-target",children:l.to}),l.label&&h.jsx("span",{className:"canvas-step-transition-label",children:l.label})]},`${l.from}->${l.to}`))]},n.id)})})}function Ak({example:s,index:t}){return h.jsxs("details",{className:"template-example",children:[h.jsx("summary",{className:"template-example-summary",children:s.title??`Example ${t+1}`}),h.jsxs("div",{className:"template-example-body",children:[h.jsx("span",{className:"template-example-label",children:"Input"}),h.jsx("pre",{className:"template-example-json",children:JSON.stringify(s.input,null,2)}),s.output!==null&&h.jsxs(h.Fragment,{children:[h.jsx("span",{className:"template-example-label",children:"Output"}),h.jsx("pre",{className:"template-example-json",children:JSON.stringify(s.output,null,2)})]})]})]})}function Rk({detail:s}){return h.jsxs(h.Fragment,{children:[s.whatItDoes&&h.jsx("p",{className:"template-lead",children:s.whatItDoes}),s.steps.length>0&&h.jsxs("section",{className:"template-section",children:[h.jsx("h4",{className:"template-section-title",children:"Steps"}),h.jsx(Tk,{detail:s}),h.jsx("ol",{className:"template-steps",children:s.steps.map((t,n)=>h.jsxs("li",{className:"template-step",children:[h.jsx("span",{className:"template-step-index","aria-hidden":"true",children:n+1}),h.jsxs("span",{className:"template-step-copy",children:[h.jsxs("span",{className:"template-step-name",children:[t.name,h.jsx("span",{className:"template-step-role",children:t.sublabel})]}),t.description&&h.jsx("span",{className:"template-step-desc",children:t.description})]}),t.capabilities.map(a=>h.jsx("code",{className:"template-cap",children:a},a))]},t.name))})]}),h.jsxs("section",{className:"template-section",children:[h.jsx("h4",{className:"template-section-title",children:"Capabilities and complexity"}),s.capabilities.length>0?h.jsx("div",{className:"template-caps",children:s.capabilities.map(t=>h.jsx("code",{className:"template-cap",children:t},t))}):h.jsx("p",{className:"template-note","data-testid":"template-caps-none",children:"Declares no metered capabilities."}),h.jsx("p",{className:"template-note","data-testid":"template-complexity-note",children:s.complexity?h.jsxs(h.Fragment,{children:[h.jsx("strong",{children:up(s.complexity)})," —"," ",Iy(s.complexity),". A rough estimate of how involved this template is, not a price. Local test runs stub every capability and are free."]}):h.jsx(h.Fragment,{children:"This catalog response carried no complexity band, so none is shown. Local test runs stub every capability and are free."})})]}),s.requiredSecrets.length>0&&h.jsxs("section",{className:"template-section",children:[h.jsx("h4",{className:"template-section-title",children:"Credentials you supply"}),h.jsx("ul",{className:"template-usecases",children:s.requiredSecrets.map(t=>h.jsxs("li",{children:[h.jsx("code",{className:"template-cap",children:t.key})," ",t.label,t.description&&h.jsxs(h.Fragment,{children:[" — ",t.description]})]},t.key))})]}),s.useCases.length>0&&h.jsxs("section",{className:"template-section",children:[h.jsx("h4",{className:"template-section-title",children:"Use cases"}),h.jsx("ul",{className:"template-usecases",children:s.useCases.map(t=>h.jsx("li",{children:t},t))})]}),s.examples.length>0&&h.jsxs("section",{className:"template-section",children:[h.jsx("h4",{className:"template-section-title",children:"Examples"}),s.examples.map((t,n)=>h.jsx(Ak,{example:t,index:n},t.title??n))]}),s.notes&&h.jsxs("section",{className:"template-section",children:[h.jsx("h4",{className:"template-section-title",children:"Notes"}),h.jsx("div",{className:"template-notes",children:h.jsx(My,{text:s.notes})})]})]})}function Mk({template:s,getTemplate:t}){const[n,a]=$.useState(null),[l,d]=$.useState(null);return $.useEffect(()=>{if(s.kind!=="gallery"){a(null),d(null);return}let p=!1;return a(null),d(null),t(s.id).then(c=>{p||a(c)}).catch(c=>{p||d(c instanceof Error?c.message:String(c))}),()=>{p=!0}},[s.kind,s.id,t]),h.jsxs("div",{className:"template-detail","data-testid":"template-detail",children:[h.jsxs("div",{className:"template-detail-head",children:[h.jsx("h3",{className:"template-detail-name",children:s.name}),h.jsx("div",{className:"template-tags",children:(s.kind==="gallery"?s.tags:["bundled"]).map(p=>h.jsx("span",{className:"template-tag",children:p},p))})]}),s.kind==="gallery"?h.jsxs(h.Fragment,{children:[(n==null?void 0:n.author)&&h.jsxs("span",{className:"template-byline",children:["By"," ",n.author.url?h.jsx("a",{href:n.author.url,target:"_blank",rel:"noopener noreferrer",children:n.author.name}):n.author.name]}),!n&&!l&&h.jsx("p",{className:"template-lead",children:s.description}),l&&h.jsxs("p",{className:"template-note","data-testid":"template-detail-error",children:["Could not load this template’s details: ",l]}),n&&h.jsx(Rk,{detail:n})]}):h.jsxs(h.Fragment,{children:[h.jsx("p",{className:"template-lead",children:s.description}),h.jsx("p",{className:"template-note",children:"Scaffolds an npm-install-ready TypeScript project with a starter agent in index.ts."})]}),h.jsx("p",{className:"template-handoff","data-testid":"template-handoff",children:s.kind==="gallery"?"Using it forks the template into a repo you own, then clones it here. Needs a signed-in Sapiom account; the coding agent asks you to sign in if it is missing.":"Scaffolds from the template bundled with the CLI. No Sapiom account or capability spend; setup may access npm."})]})}function Ym({title:s,allLabel:t,allCount:n,options:a,value:l,onSelect:d,testIdPrefix:p}){if(a.length<2)return null;const c=[{value:"",label:t,count:n,testId:`${p}-all`,selects:null},...a.map(u=>({...u,testId:`${p}-${u.value}`,selects:u.value}))];return h.jsxs("div",{className:"facet",children:[h.jsx("span",{className:"facet-title",children:s}),h.jsx("div",{className:"facet-rows",role:"radiogroup","aria-label":s,children:c.map(u=>{const v=l===u.selects;return h.jsxs("button",{type:"button",role:"radio","aria-checked":v,className:v?"facet-row is-active":"facet-row","data-testid":u.testId,onClick:()=>d(u.selects),children:[h.jsx("span",{className:"facet-row-label",children:u.label}),h.jsx(bc,{variant:"count",children:u.count})]},u.testId)})})]})}function Dk({catalog:s,filter:t,onChange:n}){return h.jsxs("div",{className:"template-filters","data-testid":"template-filters",children:[h.jsxs("div",{className:"template-search",children:[h.jsx(_e,{name:"Search",size:14}),h.jsx("input",{className:"template-search-input",type:"search",value:t.query,placeholder:"Search templates","aria-label":"Search templates","data-testid":"template-search",onChange:a=>n({...t,query:a.target.value})})]}),h.jsx(Ym,{title:"Category",allLabel:"All templates",allCount:s.length,options:xk(s),value:t.category,onSelect:a=>n({...t,category:a}),testIdPrefix:"templates-category"}),h.jsx(Ym,{title:"Trigger",allLabel:"Any trigger",allCount:s.length,options:Ck(s),value:t.cadence,onSelect:a=>n({...t,cadence:a}),testIdPrefix:"templates-cadence"})]})}function jk(){return typeof window>"u"?void 0:window}function Uy(s=jk()){const t=s==null?void 0:s.sapiomDesktop;if(!t||typeof t!="object")return null;const n=t;return typeof n.checkForUpdates!="function"?null:{appVersion:typeof n.appVersion=="string"?n.appVersion:"",checkForUpdates:n.checkForUpdates,chooseDirectory:typeof n.chooseDirectory=="function"?n.chooseDirectory:void 0}}function Nk(s){switch(s.kind){case"available":return{text:`Downloading ${s.version}…`,tone:"info"};case"downloaded":return{text:`${s.version} is ready to install.`,tone:"action"};case"up-to-date":return{text:`Up to date (${s.version}, ${s.channel}).`,tone:"info"};case"no-release":return{text:`No ${s.channel} release published yet.`,tone:"info"};case"disabled":return{text:`Updates are off: ${s.reason}.`,tone:"error"};case"failed":return{text:`Couldn't check: ${s.message}`,tone:"error"}}}function Lk(s){const t=s.split("/").filter(Boolean);return t.length<=2?s:`/${t[0]}/…/${t[t.length-1]}`}function Fy({value:s,onChange:t,onSubmit:n,recentDirs:a,listDir:l,onNewDirChange:d,onResolve:p}){var L;const[c,u]=$.useState(s),[v,b]=$.useState([]),[f,x]=$.useState(s),[C,A]=$.useState(!1),[E,m]=$.useState(null),[S,_]=$.useState(0),[y,k]=$.useState(!0),[R,M]=$.useState(!1),[j,T]=$.useState(0),D=$.useRef(null),[H,P]=$.useState("none"),W=()=>{const B=D.current;if(!B)return;const V=B.scrollLeft>2,te=B.scrollLeft+B.clientWidth<B.scrollWidth-2;P(V&&te?"both":V?"left":te?"right":"none")};$.useEffect(()=>{W()},[a]),$.useEffect(()=>{let B=!1;A(!0),m(null),M(!1);const V=ce=>{const de=ce.replace(/\/+$/,""),K=de.slice(0,de.lastIndexOf("/"));return!de.includes("/")||K===de?null:K||"/"},te=setTimeout(()=>{l(s||void 0).then(ce=>{B||(u(ce.path),b(ce.dirs),x(ce.parent))}).catch(async()=>{const ce=V(s);if(!ce||B){B||m("Couldn't read that directory.");return}try{const de=await l(ce);if(B)return;u(de.path),b(de.dirs),x(de.parent),M(!0)}catch{B||m("Couldn't read that directory.")}}).finally(()=>!B&&A(!1))},150);return()=>{B=!0,clearTimeout(te)}},[s,j]);const U=s.startsWith(c)?s.slice(c.length).replace(/^\//,""):"",Y=U?v.filter(B=>B.name.toLowerCase().startsWith(U.toLowerCase())):v,J=Math.min(S,Math.max(Y.length-1,0)),q=!C&&!E&&Y.length===0&&(R||U!=="");$.useEffect(()=>{d==null||d(q)},[q]),$.useEffect(()=>{C||E||p==null||p({resolvedPath:c,dirs:v,parent:f,isNew:q})},[c,v,f,q,C,E]);const G=B=>t(B),ee=((L=Uy())==null?void 0:L.chooseDirectory)??null,O=()=>{if(ee){ee(s||c||void 0).then(B=>{B&&t(B)}).catch(()=>{});return}if(!y){k(!0);return}q&&c&&c!==s?G(c):k(!1)},F=B=>{var te;const V=y&&Y.length>0;B.key==="ArrowDown"&&V?(B.preventDefault(),_(Math.min(J+1,Y.length-1))):B.key==="ArrowUp"&&V?(B.preventDefault(),_(Math.max(J-1,0))):B.key==="Enter"&&(V?(G(((te=Y[J])==null?void 0:te.path)??Y[0].path),_(0)):n())};return h.jsxs("div",{className:"dir-picker",children:[h.jsxs("div",{className:"dir-picker-inputrow",children:[h.jsx("button",{type:"button",className:"dir-picker-up","data-testid":"dir-picker-up",disabled:f===c,onClick:()=>G(f),"aria-label":"Up to parent directory","data-tooltip":"Up to parent directory",children:h.jsx(_e,{name:"CornerLeftUp",size:14})}),h.jsx("input",{id:"new-session-cwd",autoFocus:!0,"aria-label":"Workspace folder",className:"modal-input dir-picker-input","data-testid":"dir-picker-input",value:s,placeholder:"/path/to/workspace",onChange:B=>t(B.target.value),onKeyDown:F}),h.jsx("button",{type:"button",className:"dir-picker-up dir-picker-browse"+(!ee&&y?" is-active":""),"data-testid":"dir-picker-browse","aria-pressed":ee?void 0:y,onClick:O,"aria-label":ee?"Choose a folder":"Browse subdirectories","data-tooltip":ee?"Choose a folder…":y?q?"Browse the nearest existing folder":"Hide the directory listing":"Browse subdirectories",children:h.jsx(_e,{name:"Folder",size:14})})]}),a.length>0&&h.jsx("div",{className:"recent-dirs",ref:D,"data-fade":H,onScroll:W,children:a.map(B=>h.jsx("button",{type:"button",className:"recent-dir-chip",title:B,onClick:()=>G(B),children:Lk(B)},B))}),y&&h.jsxs("div",{className:"dir-picker-listing","data-testid":"dir-picker-listing",children:[h.jsx("div",{className:"dir-picker-path",children:c}),C&&h.jsx("div",{className:"dir-picker-empty",children:"Loading…"}),!C&&E&&h.jsxs("div",{className:"dir-picker-error","data-testid":"dir-picker-error",role:"alert",children:[h.jsx(_e,{name:"TriangleAlert",size:14}),h.jsx("span",{children:E}),h.jsx("button",{type:"button",className:"btn-ghost dir-picker-retry","data-testid":"dir-picker-retry",onClick:()=>T(B=>B+1),children:"Retry"})]}),q&&h.jsx("div",{className:"dir-picker-newdir","data-testid":"dir-picker-newdir",children:"New folder. It will be created when you start."}),!C&&!E&&!q&&Y.length===0&&h.jsx("div",{className:"dir-picker-empty",children:"No subdirectories"}),!C&&!E&&Y.map((B,V)=>h.jsxs("button",{type:"button",className:"dir-picker-item"+(V===J?" is-selected":""),"data-testid":`dir-picker-item-${B.name}`,onMouseEnter:()=>_(V),onClick:()=>G(B.path),children:[h.jsx(_e,{name:"Folder",size:13}),h.jsx("span",{className:"dir-picker-item-name",children:B.name}),B.hasAgentProject&&h.jsxs("span",{className:"dir-picker-item-badge","data-testid":`dir-picker-badge-${B.name}`,title:"Contains sapiom.json",children:[h.jsx(_e,{name:"Check",size:11}),"Agent"]})]},B.path))]})]})}function Ok({template:s,initialDest:t,recentDirs:n,listDir:a,onCancel:l,onConfirm:d,triggerRef:p}){const[c,u]=$.useState(t),[v,b]=$.useState(!1),[f,x]=$.useState(null),C=$.useRef(null);nu(!v,{onDismiss:l,containerRef:C,triggerRef:p});const A=async()=>{const E=c.trim();if(!(!E||v)){b(!0),x(null);try{await d(E)}catch(m){x(m.message),b(!1)}}};return h.jsx("div",{className:"modal-backdrop",children:h.jsxs("div",{className:"modal modal-confirm modal-template-use",role:"dialog","aria-label":`Use ${s.name}`,"data-testid":"template-use-dialog",ref:C,children:[h.jsxs("div",{className:"modal-header",children:["Use ",s.name,h.jsx("button",{className:"theme-toggle modal-close","aria-label":"Close",title:"Close",disabled:v,onClick:l,children:h.jsx(_e,{name:"X",size:14})})]}),h.jsxs("div",{className:"modal-body",children:[h.jsx(Fy,{value:c,onChange:u,onSubmit:()=>void A(),recentDirs:n,listDir:a}),f?h.jsx("p",{className:"modal-error","data-testid":"template-use-error",children:f}):h.jsx("p",{className:"modal-field-hint",children:"A session starts here and sets the template up in it. A folder that does not exist yet is created."})]}),h.jsxs("div",{className:"modal-actions",children:[h.jsx("button",{className:"btn-ghost",disabled:v,onClick:l,children:"Cancel"}),h.jsx("button",{className:"btn-primary modal-primary-cta","data-testid":"template-use-confirm",disabled:v||!c.trim(),onClick:()=>void A(),children:v?"Starting…":"Start session"})]})]})})}function Bk({projectRoot:s,recentDirs:t,listDir:n,onExit:a,onUse:l,listTemplates:d,getTemplate:p}){const[c,u]=$.useState(null),[v,b]=$.useState(null),[f,x]=$.useState(qm),[C,A]=$.useState(null),[E,m]=$.useState(null),S=$.useRef(null);$.useEffect(()=>{let j=!1;return d().then(T=>{j||u(T)}).catch(T=>{j||b(T instanceof Error?T.message:String(T))}),()=>{j=!0}},[]);const _=$.useMemo(()=>((c==null?void 0:c.templates)??[]).map(j=>({...j,kind:"gallery"})),[c]),y=$.useMemo(()=>Ek(_,f,Fm),[_,f]),k=$.useMemo(()=>f.category!==null||f.cadence!==null?[]:pk.filter(j=>Fm(j,f.query)),[f]),R=c===null&&v===null,M=v?`Could not load the template gallery: ${v}`:!c||c.source==="live"?null:c.reason==="signed-out"?"Sign in to Sapiom to browse the template gallery. The bundled starters below remain available.":"The template gallery is unreachable right now. The bundled starters below remain available.";return h.jsxs("section",{className:"templates-panel","data-testid":"templates-panel","aria-label":"Templates",children:[h.jsxs("div",{className:"templates-bar",children:[h.jsx("button",{type:"button",className:"theme-toggle templates-back","data-testid":C?"template-detail-back":"templates-exit","aria-label":C?"Back to all templates":"Back to the session",title:C?"All templates":"Back to the session",onClick:()=>C?A(null):a(),children:h.jsx(_e,{name:"ArrowLeft",size:14})}),h.jsx("span",{className:"templates-bar-title",children:C?C.name:"Templates"}),C&&h.jsx("button",{ref:S,type:"button",className:"btn-primary templates-bar-use","data-testid":"template-use-btn",onClick:()=>m(C),children:"Use template"})]}),h.jsx("div",{className:"templates-scroll",children:h.jsx("div",{className:"templates-measure",children:C?h.jsx(Mk,{template:C,getTemplate:p}):h.jsxs(h.Fragment,{children:[h.jsxs("header",{className:"templates-hero",children:[h.jsx("h2",{className:"templates-hero-title",children:"Start from a template"}),h.jsx("p",{className:"templates-hero-copy",children:R?"Loading the catalog…":`${_.length} runnable agents. Open one to read what it does, then use it. A session starts in a new folder and sets it up for you.`})]}),M&&h.jsxs("div",{className:"templates-degraded","data-testid":"templates-degraded",role:"status",children:[h.jsx(_e,{name:"TriangleAlert",size:14}),h.jsx("span",{children:M})]}),h.jsxs("div",{className:"templates-layout",children:[h.jsx(Dk,{catalog:_,filter:f,onChange:x}),h.jsxs("div",{className:"templates-results",children:[y.length>0&&h.jsx("div",{className:"templates-grid","data-testid":"templates-grid",children:y.map(j=>h.jsx(Vm,{template:j,onOpen:A,onUse:m},j.id))}),y.length===0&&!R&&_.length>0&&h.jsx(Mi,{className:"templates-empty",testId:"templates-empty",icon:"Search",title:"No template matches these filters",body:`Search a tag or a capability, or clear the filters to see all ${_.length}.`,cta:Sk(f)?h.jsx("button",{type:"button",className:"btn-line","data-testid":"templates-empty-clear",onClick:()=>x(qm),children:"Clear filters"}):void 0}),k.length>0&&h.jsxs("section",{className:"templates-starters","data-testid":"templates-starters",children:[h.jsx("span",{className:"facet-title",children:"Bundled starters"}),h.jsx("p",{className:"templates-starters-copy",children:"Shipped with the CLI. No Sapiom account or capability spend; setup may access npm."}),h.jsx("div",{className:"templates-grid",children:k.map(j=>h.jsx(Vm,{template:j,onOpen:A,onUse:m},j.id))})]})]})]})]})})}),E&&h.jsx(Ok,{template:E,initialDest:bk(E,s),recentDirs:t,listDir:n,onCancel:()=>m(null),triggerRef:S,onConfirm:async j=>{await l(j,E),a()}})]})}var kd={exports:{}},Km;function Hk(){return Km||(Km=1,(function(s,t){(function(n,a){s.exports=a()})(globalThis,(()=>(()=>{var n={4567:function(p,c,u){var v=this&&this.__decorate||function(_,y,k,R){var M,j=arguments.length,T=j<3?y:R===null?R=Object.getOwnPropertyDescriptor(y,k):R;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")T=Reflect.decorate(_,y,k,R);else for(var D=_.length-1;D>=0;D--)(M=_[D])&&(T=(j<3?M(T):j>3?M(y,k,T):M(y,k))||T);return j>3&&T&&Object.defineProperty(y,k,T),T},b=this&&this.__param||function(_,y){return function(k,R){y(k,R,_)}};Object.defineProperty(c,"__esModule",{value:!0}),c.AccessibilityManager=void 0;const f=u(9042),x=u(9924),C=u(844),A=u(4725),E=u(2585),m=u(3656);let S=c.AccessibilityManager=class extends C.Disposable{constructor(_,y,k,R){super(),this._terminal=_,this._coreBrowserService=k,this._renderService=R,this._rowColumns=new WeakMap,this._liveRegionLineCount=0,this._charsToConsume=[],this._charsToAnnounce="",this._accessibilityContainer=this._coreBrowserService.mainDocument.createElement("div"),this._accessibilityContainer.classList.add("xterm-accessibility"),this._rowContainer=this._coreBrowserService.mainDocument.createElement("div"),this._rowContainer.setAttribute("role","list"),this._rowContainer.classList.add("xterm-accessibility-tree"),this._rowElements=[];for(let M=0;M<this._terminal.rows;M++)this._rowElements[M]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[M]);if(this._topBoundaryFocusListener=M=>this._handleBoundaryFocus(M,0),this._bottomBoundaryFocusListener=M=>this._handleBoundaryFocus(M,1),this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions(),this._accessibilityContainer.appendChild(this._rowContainer),this._liveRegion=this._coreBrowserService.mainDocument.createElement("div"),this._liveRegion.classList.add("live-region"),this._liveRegion.setAttribute("aria-live","assertive"),this._accessibilityContainer.appendChild(this._liveRegion),this._liveRegionDebouncer=this.register(new x.TimeBasedDebouncer(this._renderRows.bind(this))),!this._terminal.element)throw new Error("Cannot enable accessibility before Terminal.open");this._terminal.element.insertAdjacentElement("afterbegin",this._accessibilityContainer),this.register(this._terminal.onResize((M=>this._handleResize(M.rows)))),this.register(this._terminal.onRender((M=>this._refreshRows(M.start,M.end)))),this.register(this._terminal.onScroll((()=>this._refreshRows()))),this.register(this._terminal.onA11yChar((M=>this._handleChar(M)))),this.register(this._terminal.onLineFeed((()=>this._handleChar(`
446
+ `)))),this.register(this._terminal.onA11yTab((M=>this._handleTab(M)))),this.register(this._terminal.onKey((M=>this._handleKey(M.key)))),this.register(this._terminal.onBlur((()=>this._clearLiveRegion()))),this.register(this._renderService.onDimensionsChange((()=>this._refreshRowsDimensions()))),this.register((0,m.addDisposableDomListener)(document,"selectionchange",(()=>this._handleSelectionChange()))),this.register(this._coreBrowserService.onDprChange((()=>this._refreshRowsDimensions()))),this._refreshRows(),this.register((0,C.toDisposable)((()=>{this._accessibilityContainer.remove(),this._rowElements.length=0})))}_handleTab(_){for(let y=0;y<_;y++)this._handleChar(" ")}_handleChar(_){this._liveRegionLineCount<21&&(this._charsToConsume.length>0?this._charsToConsume.shift()!==_&&(this._charsToAnnounce+=_):this._charsToAnnounce+=_,_===`
447
+ `&&(this._liveRegionLineCount++,this._liveRegionLineCount===21&&(this._liveRegion.textContent+=f.tooMuchOutput)))}_clearLiveRegion(){this._liveRegion.textContent="",this._liveRegionLineCount=0}_handleKey(_){this._clearLiveRegion(),new RegExp("\\p{Control}","u").test(_)||this._charsToConsume.push(_)}_refreshRows(_,y){this._liveRegionDebouncer.refresh(_,y,this._terminal.rows)}_renderRows(_,y){const k=this._terminal.buffer,R=k.lines.length.toString();for(let M=_;M<=y;M++){const j=k.lines.get(k.ydisp+M),T=[],D=(j==null?void 0:j.translateToString(!0,void 0,void 0,T))||"",H=(k.ydisp+M+1).toString(),P=this._rowElements[M];P&&(D.length===0?(P.innerText=" ",this._rowColumns.set(P,[0,1])):(P.textContent=D,this._rowColumns.set(P,T)),P.setAttribute("aria-posinset",H),P.setAttribute("aria-setsize",R))}this._announceCharacters()}_announceCharacters(){this._charsToAnnounce.length!==0&&(this._liveRegion.textContent+=this._charsToAnnounce,this._charsToAnnounce="")}_handleBoundaryFocus(_,y){const k=_.target,R=this._rowElements[y===0?1:this._rowElements.length-2];if(k.getAttribute("aria-posinset")===(y===0?"1":`${this._terminal.buffer.lines.length}`)||_.relatedTarget!==R)return;let M,j;if(y===0?(M=k,j=this._rowElements.pop(),this._rowContainer.removeChild(j)):(M=this._rowElements.shift(),j=k,this._rowContainer.removeChild(M)),M.removeEventListener("focus",this._topBoundaryFocusListener),j.removeEventListener("focus",this._bottomBoundaryFocusListener),y===0){const T=this._createAccessibilityTreeNode();this._rowElements.unshift(T),this._rowContainer.insertAdjacentElement("afterbegin",T)}else{const T=this._createAccessibilityTreeNode();this._rowElements.push(T),this._rowContainer.appendChild(T)}this._rowElements[0].addEventListener("focus",this._topBoundaryFocusListener),this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._terminal.scrollLines(y===0?-1:1),this._rowElements[y===0?1:this._rowElements.length-2].focus(),_.preventDefault(),_.stopImmediatePropagation()}_handleSelectionChange(){var D;if(this._rowElements.length===0)return;const _=document.getSelection();if(!_)return;if(_.isCollapsed)return void(this._rowContainer.contains(_.anchorNode)&&this._terminal.clearSelection());if(!_.anchorNode||!_.focusNode)return void console.error("anchorNode and/or focusNode are null");let y={node:_.anchorNode,offset:_.anchorOffset},k={node:_.focusNode,offset:_.focusOffset};if((y.node.compareDocumentPosition(k.node)&Node.DOCUMENT_POSITION_PRECEDING||y.node===k.node&&y.offset>k.offset)&&([y,k]=[k,y]),y.node.compareDocumentPosition(this._rowElements[0])&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_FOLLOWING)&&(y={node:this._rowElements[0].childNodes[0],offset:0}),!this._rowContainer.contains(y.node))return;const R=this._rowElements.slice(-1)[0];if(k.node.compareDocumentPosition(R)&(Node.DOCUMENT_POSITION_CONTAINED_BY|Node.DOCUMENT_POSITION_PRECEDING)&&(k={node:R,offset:((D=R.textContent)==null?void 0:D.length)??0}),!this._rowContainer.contains(k.node))return;const M=({node:H,offset:P})=>{const W=H instanceof Text?H.parentNode:H;let U=parseInt(W==null?void 0:W.getAttribute("aria-posinset"),10)-1;if(isNaN(U))return console.warn("row is invalid. Race condition?"),null;const Y=this._rowColumns.get(W);if(!Y)return console.warn("columns is null. Race condition?"),null;let J=P<Y.length?Y[P]:Y.slice(-1)[0]+1;return J>=this._terminal.cols&&(++U,J=0),{row:U,column:J}},j=M(y),T=M(k);if(j&&T){if(j.row>T.row||j.row===T.row&&j.column>=T.column)throw new Error("invalid range");this._terminal.select(j.column,j.row,(T.row-j.row)*this._terminal.cols-j.column+T.column)}}_handleResize(_){this._rowElements[this._rowElements.length-1].removeEventListener("focus",this._bottomBoundaryFocusListener);for(let y=this._rowContainer.children.length;y<this._terminal.rows;y++)this._rowElements[y]=this._createAccessibilityTreeNode(),this._rowContainer.appendChild(this._rowElements[y]);for(;this._rowElements.length>_;)this._rowContainer.removeChild(this._rowElements.pop());this._rowElements[this._rowElements.length-1].addEventListener("focus",this._bottomBoundaryFocusListener),this._refreshRowsDimensions()}_createAccessibilityTreeNode(){const _=this._coreBrowserService.mainDocument.createElement("div");return _.setAttribute("role","listitem"),_.tabIndex=-1,this._refreshRowDimensions(_),_}_refreshRowsDimensions(){if(this._renderService.dimensions.css.cell.height){this._accessibilityContainer.style.width=`${this._renderService.dimensions.css.canvas.width}px`,this._rowElements.length!==this._terminal.rows&&this._handleResize(this._terminal.rows);for(let _=0;_<this._terminal.rows;_++)this._refreshRowDimensions(this._rowElements[_])}}_refreshRowDimensions(_){_.style.height=`${this._renderService.dimensions.css.cell.height}px`}};c.AccessibilityManager=S=v([b(1,E.IInstantiationService),b(2,A.ICoreBrowserService),b(3,A.IRenderService)],S)},3614:(p,c)=>{function u(x){return x.replace(/\r?\n/g,"\r")}function v(x,C){return C?"\x1B[200~"+x+"\x1B[201~":x}function b(x,C,A,E){x=v(x=u(x),A.decPrivateModes.bracketedPasteMode&&E.rawOptions.ignoreBracketedPasteMode!==!0),A.triggerDataEvent(x,!0),C.value=""}function f(x,C,A){const E=A.getBoundingClientRect(),m=x.clientX-E.left-10,S=x.clientY-E.top-10;C.style.width="20px",C.style.height="20px",C.style.left=`${m}px`,C.style.top=`${S}px`,C.style.zIndex="1000",C.focus()}Object.defineProperty(c,"__esModule",{value:!0}),c.rightClickHandler=c.moveTextAreaUnderMouseCursor=c.paste=c.handlePasteEvent=c.copyHandler=c.bracketTextForPaste=c.prepareTextForTerminal=void 0,c.prepareTextForTerminal=u,c.bracketTextForPaste=v,c.copyHandler=function(x,C){x.clipboardData&&x.clipboardData.setData("text/plain",C.selectionText),x.preventDefault()},c.handlePasteEvent=function(x,C,A,E){x.stopPropagation(),x.clipboardData&&b(x.clipboardData.getData("text/plain"),C,A,E)},c.paste=b,c.moveTextAreaUnderMouseCursor=f,c.rightClickHandler=function(x,C,A,E,m){f(x,C,A),m&&E.rightClickSelect(x),C.value=E.selectionText,C.select()}},7239:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.ColorContrastCache=void 0;const v=u(1505);c.ColorContrastCache=class{constructor(){this._color=new v.TwoKeyMap,this._css=new v.TwoKeyMap}setCss(b,f,x){this._css.set(b,f,x)}getCss(b,f){return this._css.get(b,f)}setColor(b,f,x){this._color.set(b,f,x)}getColor(b,f){return this._color.get(b,f)}clear(){this._color.clear(),this._css.clear()}}},3656:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.addDisposableDomListener=void 0,c.addDisposableDomListener=function(u,v,b,f){u.addEventListener(v,b,f);let x=!1;return{dispose:()=>{x||(x=!0,u.removeEventListener(v,b,f))}}}},3551:function(p,c,u){var v=this&&this.__decorate||function(S,_,y,k){var R,M=arguments.length,j=M<3?_:k===null?k=Object.getOwnPropertyDescriptor(_,y):k;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")j=Reflect.decorate(S,_,y,k);else for(var T=S.length-1;T>=0;T--)(R=S[T])&&(j=(M<3?R(j):M>3?R(_,y,j):R(_,y))||j);return M>3&&j&&Object.defineProperty(_,y,j),j},b=this&&this.__param||function(S,_){return function(y,k){_(y,k,S)}};Object.defineProperty(c,"__esModule",{value:!0}),c.Linkifier=void 0;const f=u(3656),x=u(8460),C=u(844),A=u(2585),E=u(4725);let m=c.Linkifier=class extends C.Disposable{get currentLink(){return this._currentLink}constructor(S,_,y,k,R){super(),this._element=S,this._mouseService=_,this._renderService=y,this._bufferService=k,this._linkProviderService=R,this._linkCacheDisposables=[],this._isMouseOut=!0,this._wasResized=!1,this._activeLine=-1,this._onShowLinkUnderline=this.register(new x.EventEmitter),this.onShowLinkUnderline=this._onShowLinkUnderline.event,this._onHideLinkUnderline=this.register(new x.EventEmitter),this.onHideLinkUnderline=this._onHideLinkUnderline.event,this.register((0,C.getDisposeArrayDisposable)(this._linkCacheDisposables)),this.register((0,C.toDisposable)((()=>{var M;this._lastMouseEvent=void 0,(M=this._activeProviderReplies)==null||M.clear()}))),this.register(this._bufferService.onResize((()=>{this._clearCurrentLink(),this._wasResized=!0}))),this.register((0,f.addDisposableDomListener)(this._element,"mouseleave",(()=>{this._isMouseOut=!0,this._clearCurrentLink()}))),this.register((0,f.addDisposableDomListener)(this._element,"mousemove",this._handleMouseMove.bind(this))),this.register((0,f.addDisposableDomListener)(this._element,"mousedown",this._handleMouseDown.bind(this))),this.register((0,f.addDisposableDomListener)(this._element,"mouseup",this._handleMouseUp.bind(this)))}_handleMouseMove(S){this._lastMouseEvent=S;const _=this._positionFromMouseEvent(S,this._element,this._mouseService);if(!_)return;this._isMouseOut=!1;const y=S.composedPath();for(let k=0;k<y.length;k++){const R=y[k];if(R.classList.contains("xterm"))break;if(R.classList.contains("xterm-hover"))return}this._lastBufferCell&&_.x===this._lastBufferCell.x&&_.y===this._lastBufferCell.y||(this._handleHover(_),this._lastBufferCell=_)}_handleHover(S){if(this._activeLine!==S.y||this._wasResized)return this._clearCurrentLink(),this._askForLink(S,!1),void(this._wasResized=!1);this._currentLink&&this._linkAtPosition(this._currentLink.link,S)||(this._clearCurrentLink(),this._askForLink(S,!0))}_askForLink(S,_){var k,R;this._activeProviderReplies&&_||((k=this._activeProviderReplies)==null||k.forEach((M=>{M==null||M.forEach((j=>{j.link.dispose&&j.link.dispose()}))})),this._activeProviderReplies=new Map,this._activeLine=S.y);let y=!1;for(const[M,j]of this._linkProviderService.linkProviders.entries())_?(R=this._activeProviderReplies)!=null&&R.get(M)&&(y=this._checkLinkProviderResult(M,S,y)):j.provideLinks(S.y,(T=>{var H,P;if(this._isMouseOut)return;const D=T==null?void 0:T.map((W=>({link:W})));(H=this._activeProviderReplies)==null||H.set(M,D),y=this._checkLinkProviderResult(M,S,y),((P=this._activeProviderReplies)==null?void 0:P.size)===this._linkProviderService.linkProviders.length&&this._removeIntersectingLinks(S.y,this._activeProviderReplies)}))}_removeIntersectingLinks(S,_){const y=new Set;for(let k=0;k<_.size;k++){const R=_.get(k);if(R)for(let M=0;M<R.length;M++){const j=R[M],T=j.link.range.start.y<S?0:j.link.range.start.x,D=j.link.range.end.y>S?this._bufferService.cols:j.link.range.end.x;for(let H=T;H<=D;H++){if(y.has(H)){R.splice(M--,1);break}y.add(H)}}}}_checkLinkProviderResult(S,_,y){var M;if(!this._activeProviderReplies)return y;const k=this._activeProviderReplies.get(S);let R=!1;for(let j=0;j<S;j++)this._activeProviderReplies.has(j)&&!this._activeProviderReplies.get(j)||(R=!0);if(!R&&k){const j=k.find((T=>this._linkAtPosition(T.link,_)));j&&(y=!0,this._handleNewLink(j))}if(this._activeProviderReplies.size===this._linkProviderService.linkProviders.length&&!y)for(let j=0;j<this._activeProviderReplies.size;j++){const T=(M=this._activeProviderReplies.get(j))==null?void 0:M.find((D=>this._linkAtPosition(D.link,_)));if(T){y=!0,this._handleNewLink(T);break}}return y}_handleMouseDown(){this._mouseDownLink=this._currentLink}_handleMouseUp(S){if(!this._currentLink)return;const _=this._positionFromMouseEvent(S,this._element,this._mouseService);_&&this._mouseDownLink===this._currentLink&&this._linkAtPosition(this._currentLink.link,_)&&this._currentLink.link.activate(S,this._currentLink.link.text)}_clearCurrentLink(S,_){this._currentLink&&this._lastMouseEvent&&(!S||!_||this._currentLink.link.range.start.y>=S&&this._currentLink.link.range.end.y<=_)&&(this._linkLeave(this._element,this._currentLink.link,this._lastMouseEvent),this._currentLink=void 0,(0,C.disposeArray)(this._linkCacheDisposables))}_handleNewLink(S){if(!this._lastMouseEvent)return;const _=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);_&&this._linkAtPosition(S.link,_)&&(this._currentLink=S,this._currentLink.state={decorations:{underline:S.link.decorations===void 0||S.link.decorations.underline,pointerCursor:S.link.decorations===void 0||S.link.decorations.pointerCursor},isHovered:!0},this._linkHover(this._element,S.link,this._lastMouseEvent),S.link.decorations={},Object.defineProperties(S.link.decorations,{pointerCursor:{get:()=>{var y,k;return(k=(y=this._currentLink)==null?void 0:y.state)==null?void 0:k.decorations.pointerCursor},set:y=>{var k;(k=this._currentLink)!=null&&k.state&&this._currentLink.state.decorations.pointerCursor!==y&&(this._currentLink.state.decorations.pointerCursor=y,this._currentLink.state.isHovered&&this._element.classList.toggle("xterm-cursor-pointer",y))}},underline:{get:()=>{var y,k;return(k=(y=this._currentLink)==null?void 0:y.state)==null?void 0:k.decorations.underline},set:y=>{var k,R,M;(k=this._currentLink)!=null&&k.state&&((M=(R=this._currentLink)==null?void 0:R.state)==null?void 0:M.decorations.underline)!==y&&(this._currentLink.state.decorations.underline=y,this._currentLink.state.isHovered&&this._fireUnderlineEvent(S.link,y))}}}),this._linkCacheDisposables.push(this._renderService.onRenderedViewportChange((y=>{if(!this._currentLink)return;const k=y.start===0?0:y.start+1+this._bufferService.buffer.ydisp,R=this._bufferService.buffer.ydisp+1+y.end;if(this._currentLink.link.range.start.y>=k&&this._currentLink.link.range.end.y<=R&&(this._clearCurrentLink(k,R),this._lastMouseEvent)){const M=this._positionFromMouseEvent(this._lastMouseEvent,this._element,this._mouseService);M&&this._askForLink(M,!1)}}))))}_linkHover(S,_,y){var k;(k=this._currentLink)!=null&&k.state&&(this._currentLink.state.isHovered=!0,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(_,!0),this._currentLink.state.decorations.pointerCursor&&S.classList.add("xterm-cursor-pointer")),_.hover&&_.hover(y,_.text)}_fireUnderlineEvent(S,_){const y=S.range,k=this._bufferService.buffer.ydisp,R=this._createLinkUnderlineEvent(y.start.x-1,y.start.y-k-1,y.end.x,y.end.y-k-1,void 0);(_?this._onShowLinkUnderline:this._onHideLinkUnderline).fire(R)}_linkLeave(S,_,y){var k;(k=this._currentLink)!=null&&k.state&&(this._currentLink.state.isHovered=!1,this._currentLink.state.decorations.underline&&this._fireUnderlineEvent(_,!1),this._currentLink.state.decorations.pointerCursor&&S.classList.remove("xterm-cursor-pointer")),_.leave&&_.leave(y,_.text)}_linkAtPosition(S,_){const y=S.range.start.y*this._bufferService.cols+S.range.start.x,k=S.range.end.y*this._bufferService.cols+S.range.end.x,R=_.y*this._bufferService.cols+_.x;return y<=R&&R<=k}_positionFromMouseEvent(S,_,y){const k=y.getCoords(S,_,this._bufferService.cols,this._bufferService.rows);if(k)return{x:k[0],y:k[1]+this._bufferService.buffer.ydisp}}_createLinkUnderlineEvent(S,_,y,k,R){return{x1:S,y1:_,x2:y,y2:k,cols:this._bufferService.cols,fg:R}}};c.Linkifier=m=v([b(1,E.IMouseService),b(2,E.IRenderService),b(3,A.IBufferService),b(4,E.ILinkProviderService)],m)},9042:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.tooMuchOutput=c.promptLabel=void 0,c.promptLabel="Terminal input",c.tooMuchOutput="Too much output to announce, navigate to rows manually to read"},3730:function(p,c,u){var v=this&&this.__decorate||function(E,m,S,_){var y,k=arguments.length,R=k<3?m:_===null?_=Object.getOwnPropertyDescriptor(m,S):_;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")R=Reflect.decorate(E,m,S,_);else for(var M=E.length-1;M>=0;M--)(y=E[M])&&(R=(k<3?y(R):k>3?y(m,S,R):y(m,S))||R);return k>3&&R&&Object.defineProperty(m,S,R),R},b=this&&this.__param||function(E,m){return function(S,_){m(S,_,E)}};Object.defineProperty(c,"__esModule",{value:!0}),c.OscLinkProvider=void 0;const f=u(511),x=u(2585);let C=c.OscLinkProvider=class{constructor(E,m,S){this._bufferService=E,this._optionsService=m,this._oscLinkService=S}provideLinks(E,m){var D;const S=this._bufferService.buffer.lines.get(E-1);if(!S)return void m(void 0);const _=[],y=this._optionsService.rawOptions.linkHandler,k=new f.CellData,R=S.getTrimmedLength();let M=-1,j=-1,T=!1;for(let H=0;H<R;H++)if(j!==-1||S.hasContent(H)){if(S.loadCell(H,k),k.hasExtendedAttrs()&&k.extended.urlId){if(j===-1){j=H,M=k.extended.urlId;continue}T=k.extended.urlId!==M}else j!==-1&&(T=!0);if(T||j!==-1&&H===R-1){const P=(D=this._oscLinkService.getLinkData(M))==null?void 0:D.uri;if(P){const W={start:{x:j+1,y:E},end:{x:H+(T||H!==R-1?0:1),y:E}};let U=!1;if(!(y!=null&&y.allowNonHttpProtocols))try{const Y=new URL(P);["http:","https:"].includes(Y.protocol)||(U=!0)}catch{U=!0}U||_.push({text:P,range:W,activate:(Y,J)=>y?y.activate(Y,J,W):A(0,J),hover:(Y,J)=>{var q;return(q=y==null?void 0:y.hover)==null?void 0:q.call(y,Y,J,W)},leave:(Y,J)=>{var q;return(q=y==null?void 0:y.leave)==null?void 0:q.call(y,Y,J,W)}})}T=!1,k.hasExtendedAttrs()&&k.extended.urlId?(j=H,M=k.extended.urlId):(j=-1,M=-1)}}m(_)}};function A(E,m){if(confirm(`Do you want to navigate to ${m}?
448
+
449
+ WARNING: This link could potentially be dangerous`)){const S=window.open();if(S){try{S.opener=null}catch{}S.location.href=m}else console.warn("Opening link blocked as opener could not be cleared")}}c.OscLinkProvider=C=v([b(0,x.IBufferService),b(1,x.IOptionsService),b(2,x.IOscLinkService)],C)},6193:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.RenderDebouncer=void 0,c.RenderDebouncer=class{constructor(u,v){this._renderCallback=u,this._coreBrowserService=v,this._refreshCallbacks=[]}dispose(){this._animationFrame&&(this._coreBrowserService.window.cancelAnimationFrame(this._animationFrame),this._animationFrame=void 0)}addRefreshCallback(u){return this._refreshCallbacks.push(u),this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._innerRefresh()))),this._animationFrame}refresh(u,v,b){this._rowCount=b,u=u!==void 0?u:0,v=v!==void 0?v:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,u):u,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,v):v,this._animationFrame||(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._innerRefresh())))}_innerRefresh(){if(this._animationFrame=void 0,this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return void this._runRefreshCallbacks();const u=Math.max(this._rowStart,0),v=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(u,v),this._runRefreshCallbacks()}_runRefreshCallbacks(){for(const u of this._refreshCallbacks)u(0);this._refreshCallbacks=[]}}},3236:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.Terminal=void 0;const v=u(3614),b=u(3656),f=u(3551),x=u(9042),C=u(3730),A=u(1680),E=u(3107),m=u(5744),S=u(2950),_=u(1296),y=u(428),k=u(4269),R=u(5114),M=u(8934),j=u(3230),T=u(9312),D=u(4725),H=u(6731),P=u(8055),W=u(8969),U=u(8460),Y=u(844),J=u(6114),q=u(8437),G=u(2584),ee=u(7399),O=u(5941),F=u(9074),L=u(2585),B=u(5435),V=u(4567),te=u(779);class ce extends W.CoreTerminal{get onFocus(){return this._onFocus.event}get onBlur(){return this._onBlur.event}get onA11yChar(){return this._onA11yCharEmitter.event}get onA11yTab(){return this._onA11yTabEmitter.event}get onWillOpen(){return this._onWillOpen.event}constructor(K={}){super(K),this.browser=J,this._keyDownHandled=!1,this._keyDownSeen=!1,this._keyPressHandled=!1,this._unprocessedDeadKey=!1,this._accessibilityManager=this.register(new Y.MutableDisposable),this._onCursorMove=this.register(new U.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onKey=this.register(new U.EventEmitter),this.onKey=this._onKey.event,this._onRender=this.register(new U.EventEmitter),this.onRender=this._onRender.event,this._onSelectionChange=this.register(new U.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onTitleChange=this.register(new U.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onBell=this.register(new U.EventEmitter),this.onBell=this._onBell.event,this._onFocus=this.register(new U.EventEmitter),this._onBlur=this.register(new U.EventEmitter),this._onA11yCharEmitter=this.register(new U.EventEmitter),this._onA11yTabEmitter=this.register(new U.EventEmitter),this._onWillOpen=this.register(new U.EventEmitter),this._setup(),this._decorationService=this._instantiationService.createInstance(F.DecorationService),this._instantiationService.setService(L.IDecorationService,this._decorationService),this._linkProviderService=this._instantiationService.createInstance(te.LinkProviderService),this._instantiationService.setService(D.ILinkProviderService,this._linkProviderService),this._linkProviderService.registerLinkProvider(this._instantiationService.createInstance(C.OscLinkProvider)),this.register(this._inputHandler.onRequestBell((()=>this._onBell.fire()))),this.register(this._inputHandler.onRequestRefreshRows(((I,ue)=>this.refresh(I,ue)))),this.register(this._inputHandler.onRequestSendFocus((()=>this._reportFocus()))),this.register(this._inputHandler.onRequestReset((()=>this.reset()))),this.register(this._inputHandler.onRequestWindowsOptionsReport((I=>this._reportWindowsOptions(I)))),this.register(this._inputHandler.onColor((I=>this._handleColorEvent(I)))),this.register((0,U.forwardEvent)(this._inputHandler.onCursorMove,this._onCursorMove)),this.register((0,U.forwardEvent)(this._inputHandler.onTitleChange,this._onTitleChange)),this.register((0,U.forwardEvent)(this._inputHandler.onA11yChar,this._onA11yCharEmitter)),this.register((0,U.forwardEvent)(this._inputHandler.onA11yTab,this._onA11yTabEmitter)),this.register(this._bufferService.onResize((I=>this._afterResize(I.cols,I.rows)))),this.register((0,Y.toDisposable)((()=>{var I,ue;this._customKeyEventHandler=void 0,(ue=(I=this.element)==null?void 0:I.parentNode)==null||ue.removeChild(this.element)})))}_handleColorEvent(K){if(this._themeService)for(const I of K){let ue,ie="";switch(I.index){case 256:ue="foreground",ie="10";break;case 257:ue="background",ie="11";break;case 258:ue="cursor",ie="12";break;default:ue="ansi",ie="4;"+I.index}switch(I.type){case 0:const we=P.color.toColorRGB(ue==="ansi"?this._themeService.colors.ansi[I.index]:this._themeService.colors[ue]);this.coreService.triggerDataEvent(`${G.C0.ESC}]${ie};${(0,O.toRgbString)(we)}${G.C1_ESCAPED.ST}`);break;case 1:if(ue==="ansi")this._themeService.modifyColors((fe=>fe.ansi[I.index]=P.channels.toColor(...I.color)));else{const fe=ue;this._themeService.modifyColors(($e=>$e[fe]=P.channels.toColor(...I.color)))}break;case 2:this._themeService.restoreColor(I.index)}}}_setup(){super._setup(),this._customKeyEventHandler=void 0}get buffer(){return this.buffers.active}focus(){this.textarea&&this.textarea.focus({preventScroll:!0})}_handleScreenReaderModeOptionChange(K){K?!this._accessibilityManager.value&&this._renderService&&(this._accessibilityManager.value=this._instantiationService.createInstance(V.AccessibilityManager,this)):this._accessibilityManager.clear()}_handleTextAreaFocus(K){this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(G.C0.ESC+"[I"),this.element.classList.add("focus"),this._showCursor(),this._onFocus.fire()}blur(){var K;return(K=this.textarea)==null?void 0:K.blur()}_handleTextAreaBlur(){this.textarea.value="",this.refresh(this.buffer.y,this.buffer.y),this.coreService.decPrivateModes.sendFocus&&this.coreService.triggerDataEvent(G.C0.ESC+"[O"),this.element.classList.remove("focus"),this._onBlur.fire()}_syncTextArea(){if(!this.textarea||!this.buffer.isCursorInViewport||this._compositionHelper.isComposing||!this._renderService)return;const K=this.buffer.ybase+this.buffer.y,I=this.buffer.lines.get(K);if(!I)return;const ue=Math.min(this.buffer.x,this.cols-1),ie=this._renderService.dimensions.css.cell.height,we=I.getWidth(ue),fe=this._renderService.dimensions.css.cell.width*we,$e=this.buffer.y*this._renderService.dimensions.css.cell.height,De=ue*this._renderService.dimensions.css.cell.width;this.textarea.style.left=De+"px",this.textarea.style.top=$e+"px",this.textarea.style.width=fe+"px",this.textarea.style.height=ie+"px",this.textarea.style.lineHeight=ie+"px",this.textarea.style.zIndex="-5"}_initGlobal(){this._bindKeys(),this.register((0,b.addDisposableDomListener)(this.element,"copy",(I=>{this.hasSelection()&&(0,v.copyHandler)(I,this._selectionService)})));const K=I=>(0,v.handlePasteEvent)(I,this.textarea,this.coreService,this.optionsService);this.register((0,b.addDisposableDomListener)(this.textarea,"paste",K)),this.register((0,b.addDisposableDomListener)(this.element,"paste",K)),J.isFirefox?this.register((0,b.addDisposableDomListener)(this.element,"mousedown",(I=>{I.button===2&&(0,v.rightClickHandler)(I,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)}))):this.register((0,b.addDisposableDomListener)(this.element,"contextmenu",(I=>{(0,v.rightClickHandler)(I,this.textarea,this.screenElement,this._selectionService,this.options.rightClickSelectsWord)}))),J.isLinux&&this.register((0,b.addDisposableDomListener)(this.element,"auxclick",(I=>{I.button===1&&(0,v.moveTextAreaUnderMouseCursor)(I,this.textarea,this.screenElement)})))}_bindKeys(){this.register((0,b.addDisposableDomListener)(this.textarea,"keyup",(K=>this._keyUp(K)),!0)),this.register((0,b.addDisposableDomListener)(this.textarea,"keydown",(K=>this._keyDown(K)),!0)),this.register((0,b.addDisposableDomListener)(this.textarea,"keypress",(K=>this._keyPress(K)),!0)),this.register((0,b.addDisposableDomListener)(this.textarea,"compositionstart",(()=>this._compositionHelper.compositionstart()))),this.register((0,b.addDisposableDomListener)(this.textarea,"compositionupdate",(K=>this._compositionHelper.compositionupdate(K)))),this.register((0,b.addDisposableDomListener)(this.textarea,"compositionend",(()=>this._compositionHelper.compositionend()))),this.register((0,b.addDisposableDomListener)(this.textarea,"input",(K=>this._inputEvent(K)),!0)),this.register(this.onRender((()=>this._compositionHelper.updateCompositionElements())))}open(K){var ue;if(!K)throw new Error("Terminal requires a parent element.");if(K.isConnected||this._logService.debug("Terminal.open was called on an element that was not attached to the DOM"),((ue=this.element)==null?void 0:ue.ownerDocument.defaultView)&&this._coreBrowserService)return void(this.element.ownerDocument.defaultView!==this._coreBrowserService.window&&(this._coreBrowserService.window=this.element.ownerDocument.defaultView));this._document=K.ownerDocument,this.options.documentOverride&&this.options.documentOverride instanceof Document&&(this._document=this.optionsService.rawOptions.documentOverride),this.element=this._document.createElement("div"),this.element.dir="ltr",this.element.classList.add("terminal"),this.element.classList.add("xterm"),K.appendChild(this.element);const I=this._document.createDocumentFragment();this._viewportElement=this._document.createElement("div"),this._viewportElement.classList.add("xterm-viewport"),I.appendChild(this._viewportElement),this._viewportScrollArea=this._document.createElement("div"),this._viewportScrollArea.classList.add("xterm-scroll-area"),this._viewportElement.appendChild(this._viewportScrollArea),this.screenElement=this._document.createElement("div"),this.screenElement.classList.add("xterm-screen"),this.register((0,b.addDisposableDomListener)(this.screenElement,"mousemove",(ie=>this.updateCursorStyle(ie)))),this._helperContainer=this._document.createElement("div"),this._helperContainer.classList.add("xterm-helpers"),this.screenElement.appendChild(this._helperContainer),I.appendChild(this.screenElement),this.textarea=this._document.createElement("textarea"),this.textarea.classList.add("xterm-helper-textarea"),this.textarea.setAttribute("aria-label",x.promptLabel),J.isChromeOS||this.textarea.setAttribute("aria-multiline","false"),this.textarea.setAttribute("autocorrect","off"),this.textarea.setAttribute("autocapitalize","off"),this.textarea.setAttribute("spellcheck","false"),this.textarea.tabIndex=0,this._coreBrowserService=this.register(this._instantiationService.createInstance(R.CoreBrowserService,this.textarea,K.ownerDocument.defaultView??window,this._document??typeof window<"u"?window.document:null)),this._instantiationService.setService(D.ICoreBrowserService,this._coreBrowserService),this.register((0,b.addDisposableDomListener)(this.textarea,"focus",(ie=>this._handleTextAreaFocus(ie)))),this.register((0,b.addDisposableDomListener)(this.textarea,"blur",(()=>this._handleTextAreaBlur()))),this._helperContainer.appendChild(this.textarea),this._charSizeService=this._instantiationService.createInstance(y.CharSizeService,this._document,this._helperContainer),this._instantiationService.setService(D.ICharSizeService,this._charSizeService),this._themeService=this._instantiationService.createInstance(H.ThemeService),this._instantiationService.setService(D.IThemeService,this._themeService),this._characterJoinerService=this._instantiationService.createInstance(k.CharacterJoinerService),this._instantiationService.setService(D.ICharacterJoinerService,this._characterJoinerService),this._renderService=this.register(this._instantiationService.createInstance(j.RenderService,this.rows,this.screenElement)),this._instantiationService.setService(D.IRenderService,this._renderService),this.register(this._renderService.onRenderedViewportChange((ie=>this._onRender.fire(ie)))),this.onResize((ie=>this._renderService.resize(ie.cols,ie.rows))),this._compositionView=this._document.createElement("div"),this._compositionView.classList.add("composition-view"),this._compositionHelper=this._instantiationService.createInstance(S.CompositionHelper,this.textarea,this._compositionView),this._helperContainer.appendChild(this._compositionView),this._mouseService=this._instantiationService.createInstance(M.MouseService),this._instantiationService.setService(D.IMouseService,this._mouseService),this.linkifier=this.register(this._instantiationService.createInstance(f.Linkifier,this.screenElement)),this.element.appendChild(I);try{this._onWillOpen.fire(this.element)}catch{}this._renderService.hasRenderer()||this._renderService.setRenderer(this._createRenderer()),this.viewport=this._instantiationService.createInstance(A.Viewport,this._viewportElement,this._viewportScrollArea),this.viewport.onRequestScrollLines((ie=>this.scrollLines(ie.amount,ie.suppressScrollEvent,1))),this.register(this._inputHandler.onRequestSyncScrollBar((()=>this.viewport.syncScrollArea()))),this.register(this.viewport),this.register(this.onCursorMove((()=>{this._renderService.handleCursorMove(),this._syncTextArea()}))),this.register(this.onResize((()=>this._renderService.handleResize(this.cols,this.rows)))),this.register(this.onBlur((()=>this._renderService.handleBlur()))),this.register(this.onFocus((()=>this._renderService.handleFocus()))),this.register(this._renderService.onDimensionsChange((()=>this.viewport.syncScrollArea()))),this._selectionService=this.register(this._instantiationService.createInstance(T.SelectionService,this.element,this.screenElement,this.linkifier)),this._instantiationService.setService(D.ISelectionService,this._selectionService),this.register(this._selectionService.onRequestScrollLines((ie=>this.scrollLines(ie.amount,ie.suppressScrollEvent)))),this.register(this._selectionService.onSelectionChange((()=>this._onSelectionChange.fire()))),this.register(this._selectionService.onRequestRedraw((ie=>this._renderService.handleSelectionChanged(ie.start,ie.end,ie.columnSelectMode)))),this.register(this._selectionService.onLinuxMouseSelection((ie=>{this.textarea.value=ie,this.textarea.focus(),this.textarea.select()}))),this.register(this._onScroll.event((ie=>{this.viewport.syncScrollArea(),this._selectionService.refresh()}))),this.register((0,b.addDisposableDomListener)(this._viewportElement,"scroll",(()=>this._selectionService.refresh()))),this.register(this._instantiationService.createInstance(E.BufferDecorationRenderer,this.screenElement)),this.register((0,b.addDisposableDomListener)(this.element,"mousedown",(ie=>this._selectionService.handleMouseDown(ie)))),this.coreMouseService.areMouseEventsActive?(this._selectionService.disable(),this.element.classList.add("enable-mouse-events")):this._selectionService.enable(),this.options.screenReaderMode&&(this._accessibilityManager.value=this._instantiationService.createInstance(V.AccessibilityManager,this)),this.register(this.optionsService.onSpecificOptionChange("screenReaderMode",(ie=>this._handleScreenReaderModeOptionChange(ie)))),this.options.overviewRulerWidth&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(m.OverviewRulerRenderer,this._viewportElement,this.screenElement))),this.optionsService.onSpecificOptionChange("overviewRulerWidth",(ie=>{!this._overviewRulerRenderer&&ie&&this._viewportElement&&this.screenElement&&(this._overviewRulerRenderer=this.register(this._instantiationService.createInstance(m.OverviewRulerRenderer,this._viewportElement,this.screenElement)))})),this._charSizeService.measure(),this.refresh(0,this.rows-1),this._initGlobal(),this.bindMouse()}_createRenderer(){return this._instantiationService.createInstance(_.DomRenderer,this,this._document,this.element,this.screenElement,this._viewportElement,this._helperContainer,this.linkifier)}bindMouse(){const K=this,I=this.element;function ue(fe){const $e=K._mouseService.getMouseReportCoords(fe,K.screenElement);if(!$e)return!1;let De,Ke;switch(fe.overrideType||fe.type){case"mousemove":Ke=32,fe.buttons===void 0?(De=3,fe.button!==void 0&&(De=fe.button<3?fe.button:3)):De=1&fe.buttons?0:4&fe.buttons?1:2&fe.buttons?2:3;break;case"mouseup":Ke=0,De=fe.button<3?fe.button:3;break;case"mousedown":Ke=1,De=fe.button<3?fe.button:3;break;case"wheel":if(K._customWheelEventHandler&&K._customWheelEventHandler(fe)===!1||K.viewport.getLinesScrolled(fe)===0)return!1;Ke=fe.deltaY<0?0:1,De=4;break;default:return!1}return!(Ke===void 0||De===void 0||De>4)&&K.coreMouseService.triggerMouseEvent({col:$e.col,row:$e.row,x:$e.x,y:$e.y,button:De,action:Ke,ctrl:fe.ctrlKey,alt:fe.altKey,shift:fe.shiftKey})}const ie={mouseup:null,wheel:null,mousedrag:null,mousemove:null},we={mouseup:fe=>(ue(fe),fe.buttons||(this._document.removeEventListener("mouseup",ie.mouseup),ie.mousedrag&&this._document.removeEventListener("mousemove",ie.mousedrag)),this.cancel(fe)),wheel:fe=>(ue(fe),this.cancel(fe,!0)),mousedrag:fe=>{fe.buttons&&ue(fe)},mousemove:fe=>{fe.buttons||ue(fe)}};this.register(this.coreMouseService.onProtocolChange((fe=>{fe?(this.optionsService.rawOptions.logLevel==="debug"&&this._logService.debug("Binding to mouse events:",this.coreMouseService.explainEvents(fe)),this.element.classList.add("enable-mouse-events"),this._selectionService.disable()):(this._logService.debug("Unbinding from mouse events."),this.element.classList.remove("enable-mouse-events"),this._selectionService.enable()),8&fe?ie.mousemove||(I.addEventListener("mousemove",we.mousemove),ie.mousemove=we.mousemove):(I.removeEventListener("mousemove",ie.mousemove),ie.mousemove=null),16&fe?ie.wheel||(I.addEventListener("wheel",we.wheel,{passive:!1}),ie.wheel=we.wheel):(I.removeEventListener("wheel",ie.wheel),ie.wheel=null),2&fe?ie.mouseup||(ie.mouseup=we.mouseup):(this._document.removeEventListener("mouseup",ie.mouseup),ie.mouseup=null),4&fe?ie.mousedrag||(ie.mousedrag=we.mousedrag):(this._document.removeEventListener("mousemove",ie.mousedrag),ie.mousedrag=null)}))),this.coreMouseService.activeProtocol=this.coreMouseService.activeProtocol,this.register((0,b.addDisposableDomListener)(I,"mousedown",(fe=>{if(fe.preventDefault(),this.focus(),this.coreMouseService.areMouseEventsActive&&!this._selectionService.shouldForceSelection(fe))return ue(fe),ie.mouseup&&this._document.addEventListener("mouseup",ie.mouseup),ie.mousedrag&&this._document.addEventListener("mousemove",ie.mousedrag),this.cancel(fe)}))),this.register((0,b.addDisposableDomListener)(I,"wheel",(fe=>{if(!ie.wheel){if(this._customWheelEventHandler&&this._customWheelEventHandler(fe)===!1)return!1;if(!this.buffer.hasScrollback){const $e=this.viewport.getLinesScrolled(fe);if($e===0)return;const De=G.C0.ESC+(this.coreService.decPrivateModes.applicationCursorKeys?"O":"[")+(fe.deltaY<0?"A":"B");let Ke="";for(let Ie=0;Ie<Math.abs($e);Ie++)Ke+=De;return this.coreService.triggerDataEvent(Ke,!0),this.cancel(fe,!0)}return this.viewport.handleWheel(fe)?this.cancel(fe):void 0}}),{passive:!1})),this.register((0,b.addDisposableDomListener)(I,"touchstart",(fe=>{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchStart(fe),this.cancel(fe)}),{passive:!0})),this.register((0,b.addDisposableDomListener)(I,"touchmove",(fe=>{if(!this.coreMouseService.areMouseEventsActive)return this.viewport.handleTouchMove(fe)?void 0:this.cancel(fe)}),{passive:!1}))}refresh(K,I){var ue;(ue=this._renderService)==null||ue.refreshRows(K,I)}updateCursorStyle(K){var I;(I=this._selectionService)!=null&&I.shouldColumnSelect(K)?this.element.classList.add("column-select"):this.element.classList.remove("column-select")}_showCursor(){this.coreService.isCursorInitialized||(this.coreService.isCursorInitialized=!0,this.refresh(this.buffer.y,this.buffer.y))}scrollLines(K,I,ue=0){var ie;ue===1?(super.scrollLines(K,I,ue),this.refresh(0,this.rows-1)):(ie=this.viewport)==null||ie.scrollLines(K)}paste(K){(0,v.paste)(K,this.textarea,this.coreService,this.optionsService)}attachCustomKeyEventHandler(K){this._customKeyEventHandler=K}attachCustomWheelEventHandler(K){this._customWheelEventHandler=K}registerLinkProvider(K){return this._linkProviderService.registerLinkProvider(K)}registerCharacterJoiner(K){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");const I=this._characterJoinerService.register(K);return this.refresh(0,this.rows-1),I}deregisterCharacterJoiner(K){if(!this._characterJoinerService)throw new Error("Terminal must be opened first");this._characterJoinerService.deregister(K)&&this.refresh(0,this.rows-1)}get markers(){return this.buffer.markers}registerMarker(K){return this.buffer.addMarker(this.buffer.ybase+this.buffer.y+K)}registerDecoration(K){return this._decorationService.registerDecoration(K)}hasSelection(){return!!this._selectionService&&this._selectionService.hasSelection}select(K,I,ue){this._selectionService.setSelection(K,I,ue)}getSelection(){return this._selectionService?this._selectionService.selectionText:""}getSelectionPosition(){if(this._selectionService&&this._selectionService.hasSelection)return{start:{x:this._selectionService.selectionStart[0],y:this._selectionService.selectionStart[1]},end:{x:this._selectionService.selectionEnd[0],y:this._selectionService.selectionEnd[1]}}}clearSelection(){var K;(K=this._selectionService)==null||K.clearSelection()}selectAll(){var K;(K=this._selectionService)==null||K.selectAll()}selectLines(K,I){var ue;(ue=this._selectionService)==null||ue.selectLines(K,I)}_keyDown(K){if(this._keyDownHandled=!1,this._keyDownSeen=!0,this._customKeyEventHandler&&this._customKeyEventHandler(K)===!1)return!1;const I=this.browser.isMac&&this.options.macOptionIsMeta&&K.altKey;if(!I&&!this._compositionHelper.keydown(K))return this.options.scrollOnUserInput&&this.buffer.ybase!==this.buffer.ydisp&&this.scrollToBottom(),!1;I||K.key!=="Dead"&&K.key!=="AltGraph"||(this._unprocessedDeadKey=!0);const ue=(0,ee.evaluateKeyboardEvent)(K,this.coreService.decPrivateModes.applicationCursorKeys,this.browser.isMac,this.options.macOptionIsMeta);if(this.updateCursorStyle(K),ue.type===3||ue.type===2){const ie=this.rows-1;return this.scrollLines(ue.type===2?-ie:ie),this.cancel(K,!0)}return ue.type===1&&this.selectAll(),!!this._isThirdLevelShift(this.browser,K)||(ue.cancel&&this.cancel(K,!0),!ue.key||!!(K.key&&!K.ctrlKey&&!K.altKey&&!K.metaKey&&K.key.length===1&&K.key.charCodeAt(0)>=65&&K.key.charCodeAt(0)<=90)||(this._unprocessedDeadKey?(this._unprocessedDeadKey=!1,!0):(ue.key!==G.C0.ETX&&ue.key!==G.C0.CR||(this.textarea.value=""),this._onKey.fire({key:ue.key,domEvent:K}),this._showCursor(),this.coreService.triggerDataEvent(ue.key,!0),!this.optionsService.rawOptions.screenReaderMode||K.altKey||K.ctrlKey?this.cancel(K,!0):void(this._keyDownHandled=!0))))}_isThirdLevelShift(K,I){const ue=K.isMac&&!this.options.macOptionIsMeta&&I.altKey&&!I.ctrlKey&&!I.metaKey||K.isWindows&&I.altKey&&I.ctrlKey&&!I.metaKey||K.isWindows&&I.getModifierState("AltGraph");return I.type==="keypress"?ue:ue&&(!I.keyCode||I.keyCode>47)}_keyUp(K){this._keyDownSeen=!1,this._customKeyEventHandler&&this._customKeyEventHandler(K)===!1||((function(I){return I.keyCode===16||I.keyCode===17||I.keyCode===18})(K)||this.focus(),this.updateCursorStyle(K),this._keyPressHandled=!1)}_keyPress(K){let I;if(this._keyPressHandled=!1,this._keyDownHandled||this._customKeyEventHandler&&this._customKeyEventHandler(K)===!1)return!1;if(this.cancel(K),K.charCode)I=K.charCode;else if(K.which===null||K.which===void 0)I=K.keyCode;else{if(K.which===0||K.charCode===0)return!1;I=K.which}return!(!I||(K.altKey||K.ctrlKey||K.metaKey)&&!this._isThirdLevelShift(this.browser,K)||(I=String.fromCharCode(I),this._onKey.fire({key:I,domEvent:K}),this._showCursor(),this.coreService.triggerDataEvent(I,!0),this._keyPressHandled=!0,this._unprocessedDeadKey=!1,0))}_inputEvent(K){if(K.data&&K.inputType==="insertText"&&(!K.composed||!this._keyDownSeen)&&!this.optionsService.rawOptions.screenReaderMode){if(this._keyPressHandled)return!1;this._unprocessedDeadKey=!1;const I=K.data;return this.coreService.triggerDataEvent(I,!0),this.cancel(K),!0}return!1}resize(K,I){K!==this.cols||I!==this.rows?super.resize(K,I):this._charSizeService&&!this._charSizeService.hasValidSize&&this._charSizeService.measure()}_afterResize(K,I){var ue,ie;(ue=this._charSizeService)==null||ue.measure(),(ie=this.viewport)==null||ie.syncScrollArea(!0)}clear(){var K;if(this.buffer.ybase!==0||this.buffer.y!==0){this.buffer.clearAllMarkers(),this.buffer.lines.set(0,this.buffer.lines.get(this.buffer.ybase+this.buffer.y)),this.buffer.lines.length=1,this.buffer.ydisp=0,this.buffer.ybase=0,this.buffer.y=0;for(let I=1;I<this.rows;I++)this.buffer.lines.push(this.buffer.getBlankLine(q.DEFAULT_ATTR_DATA));this._onScroll.fire({position:this.buffer.ydisp,source:0}),(K=this.viewport)==null||K.reset(),this.refresh(0,this.rows-1)}}reset(){var I,ue;this.options.rows=this.rows,this.options.cols=this.cols;const K=this._customKeyEventHandler;this._setup(),super.reset(),(I=this._selectionService)==null||I.reset(),this._decorationService.reset(),(ue=this.viewport)==null||ue.reset(),this._customKeyEventHandler=K,this.refresh(0,this.rows-1)}clearTextureAtlas(){var K;(K=this._renderService)==null||K.clearTextureAtlas()}_reportFocus(){var K;(K=this.element)!=null&&K.classList.contains("focus")?this.coreService.triggerDataEvent(G.C0.ESC+"[I"):this.coreService.triggerDataEvent(G.C0.ESC+"[O")}_reportWindowsOptions(K){if(this._renderService)switch(K){case B.WindowsOptionsReportType.GET_WIN_SIZE_PIXELS:const I=this._renderService.dimensions.css.canvas.width.toFixed(0),ue=this._renderService.dimensions.css.canvas.height.toFixed(0);this.coreService.triggerDataEvent(`${G.C0.ESC}[4;${ue};${I}t`);break;case B.WindowsOptionsReportType.GET_CELL_SIZE_PIXELS:const ie=this._renderService.dimensions.css.cell.width.toFixed(0),we=this._renderService.dimensions.css.cell.height.toFixed(0);this.coreService.triggerDataEvent(`${G.C0.ESC}[6;${we};${ie}t`)}}cancel(K,I){if(this.options.cancelEvents||I)return K.preventDefault(),K.stopPropagation(),!1}}c.Terminal=ce},9924:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.TimeBasedDebouncer=void 0,c.TimeBasedDebouncer=class{constructor(u,v=1e3){this._renderCallback=u,this._debounceThresholdMS=v,this._lastRefreshMs=0,this._additionalRefreshRequested=!1}dispose(){this._refreshTimeoutID&&clearTimeout(this._refreshTimeoutID)}refresh(u,v,b){this._rowCount=b,u=u!==void 0?u:0,v=v!==void 0?v:this._rowCount-1,this._rowStart=this._rowStart!==void 0?Math.min(this._rowStart,u):u,this._rowEnd=this._rowEnd!==void 0?Math.max(this._rowEnd,v):v;const f=Date.now();if(f-this._lastRefreshMs>=this._debounceThresholdMS)this._lastRefreshMs=f,this._innerRefresh();else if(!this._additionalRefreshRequested){const x=f-this._lastRefreshMs,C=this._debounceThresholdMS-x;this._additionalRefreshRequested=!0,this._refreshTimeoutID=window.setTimeout((()=>{this._lastRefreshMs=Date.now(),this._innerRefresh(),this._additionalRefreshRequested=!1,this._refreshTimeoutID=void 0}),C)}}_innerRefresh(){if(this._rowStart===void 0||this._rowEnd===void 0||this._rowCount===void 0)return;const u=Math.max(this._rowStart,0),v=Math.min(this._rowEnd,this._rowCount-1);this._rowStart=void 0,this._rowEnd=void 0,this._renderCallback(u,v)}}},1680:function(p,c,u){var v=this&&this.__decorate||function(S,_,y,k){var R,M=arguments.length,j=M<3?_:k===null?k=Object.getOwnPropertyDescriptor(_,y):k;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")j=Reflect.decorate(S,_,y,k);else for(var T=S.length-1;T>=0;T--)(R=S[T])&&(j=(M<3?R(j):M>3?R(_,y,j):R(_,y))||j);return M>3&&j&&Object.defineProperty(_,y,j),j},b=this&&this.__param||function(S,_){return function(y,k){_(y,k,S)}};Object.defineProperty(c,"__esModule",{value:!0}),c.Viewport=void 0;const f=u(3656),x=u(4725),C=u(8460),A=u(844),E=u(2585);let m=c.Viewport=class extends A.Disposable{constructor(S,_,y,k,R,M,j,T){super(),this._viewportElement=S,this._scrollArea=_,this._bufferService=y,this._optionsService=k,this._charSizeService=R,this._renderService=M,this._coreBrowserService=j,this.scrollBarWidth=0,this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._wheelPartialScroll=0,this._refreshAnimationFrame=null,this._ignoreNextScrollEvent=!1,this._smoothScrollState={startTime:0,origin:-1,target:-1},this._onRequestScrollLines=this.register(new C.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this.scrollBarWidth=this._viewportElement.offsetWidth-this._scrollArea.offsetWidth||15,this.register((0,f.addDisposableDomListener)(this._viewportElement,"scroll",this._handleScroll.bind(this))),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate((D=>this._activeBuffer=D.activeBuffer))),this._renderDimensions=this._renderService.dimensions,this.register(this._renderService.onDimensionsChange((D=>this._renderDimensions=D))),this._handleThemeChange(T.colors),this.register(T.onChangeColors((D=>this._handleThemeChange(D)))),this.register(this._optionsService.onSpecificOptionChange("scrollback",(()=>this.syncScrollArea()))),setTimeout((()=>this.syncScrollArea()))}_handleThemeChange(S){this._viewportElement.style.backgroundColor=S.background.css}reset(){this._currentRowHeight=0,this._currentDeviceCellHeight=0,this._lastRecordedBufferLength=0,this._lastRecordedViewportHeight=0,this._lastRecordedBufferHeight=0,this._lastTouchY=0,this._lastScrollTop=0,this._coreBrowserService.window.requestAnimationFrame((()=>this.syncScrollArea()))}_refresh(S){if(S)return this._innerRefresh(),void(this._refreshAnimationFrame!==null&&this._coreBrowserService.window.cancelAnimationFrame(this._refreshAnimationFrame));this._refreshAnimationFrame===null&&(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._innerRefresh())))}_innerRefresh(){if(this._charSizeService.height>0){this._currentRowHeight=this._renderDimensions.device.cell.height/this._coreBrowserService.dpr,this._currentDeviceCellHeight=this._renderDimensions.device.cell.height,this._lastRecordedViewportHeight=this._viewportElement.offsetHeight;const _=Math.round(this._currentRowHeight*this._lastRecordedBufferLength)+(this._lastRecordedViewportHeight-this._renderDimensions.css.canvas.height);this._lastRecordedBufferHeight!==_&&(this._lastRecordedBufferHeight=_,this._scrollArea.style.height=this._lastRecordedBufferHeight+"px")}const S=this._bufferService.buffer.ydisp*this._currentRowHeight;this._viewportElement.scrollTop!==S&&(this._ignoreNextScrollEvent=!0,this._viewportElement.scrollTop=S),this._refreshAnimationFrame=null}syncScrollArea(S=!1){if(this._lastRecordedBufferLength!==this._bufferService.buffer.lines.length)return this._lastRecordedBufferLength=this._bufferService.buffer.lines.length,void this._refresh(S);this._lastRecordedViewportHeight===this._renderService.dimensions.css.canvas.height&&this._lastScrollTop===this._activeBuffer.ydisp*this._currentRowHeight&&this._renderDimensions.device.cell.height===this._currentDeviceCellHeight||this._refresh(S)}_handleScroll(S){if(this._lastScrollTop=this._viewportElement.scrollTop,!this._viewportElement.offsetParent)return;if(this._ignoreNextScrollEvent)return this._ignoreNextScrollEvent=!1,void this._onRequestScrollLines.fire({amount:0,suppressScrollEvent:!0});const _=Math.round(this._lastScrollTop/this._currentRowHeight)-this._bufferService.buffer.ydisp;this._onRequestScrollLines.fire({amount:_,suppressScrollEvent:!0})}_smoothScroll(){if(this._isDisposed||this._smoothScrollState.origin===-1||this._smoothScrollState.target===-1)return;const S=this._smoothScrollPercent();this._viewportElement.scrollTop=this._smoothScrollState.origin+Math.round(S*(this._smoothScrollState.target-this._smoothScrollState.origin)),S<1?this._coreBrowserService.window.requestAnimationFrame((()=>this._smoothScroll())):this._clearSmoothScrollState()}_smoothScrollPercent(){return this._optionsService.rawOptions.smoothScrollDuration&&this._smoothScrollState.startTime?Math.max(Math.min((Date.now()-this._smoothScrollState.startTime)/this._optionsService.rawOptions.smoothScrollDuration,1),0):1}_clearSmoothScrollState(){this._smoothScrollState.startTime=0,this._smoothScrollState.origin=-1,this._smoothScrollState.target=-1}_bubbleScroll(S,_){const y=this._viewportElement.scrollTop+this._lastRecordedViewportHeight;return!(_<0&&this._viewportElement.scrollTop!==0||_>0&&y<this._lastRecordedBufferHeight)||(S.cancelable&&S.preventDefault(),!1)}handleWheel(S){const _=this._getPixelsScrolled(S);return _!==0&&(this._optionsService.rawOptions.smoothScrollDuration?(this._smoothScrollState.startTime=Date.now(),this._smoothScrollPercent()<1?(this._smoothScrollState.origin=this._viewportElement.scrollTop,this._smoothScrollState.target===-1?this._smoothScrollState.target=this._viewportElement.scrollTop+_:this._smoothScrollState.target+=_,this._smoothScrollState.target=Math.max(Math.min(this._smoothScrollState.target,this._viewportElement.scrollHeight),0),this._smoothScroll()):this._clearSmoothScrollState()):this._viewportElement.scrollTop+=_,this._bubbleScroll(S,_))}scrollLines(S){if(S!==0)if(this._optionsService.rawOptions.smoothScrollDuration){const _=S*this._currentRowHeight;this._smoothScrollState.startTime=Date.now(),this._smoothScrollPercent()<1?(this._smoothScrollState.origin=this._viewportElement.scrollTop,this._smoothScrollState.target=this._smoothScrollState.origin+_,this._smoothScrollState.target=Math.max(Math.min(this._smoothScrollState.target,this._viewportElement.scrollHeight),0),this._smoothScroll()):this._clearSmoothScrollState()}else this._onRequestScrollLines.fire({amount:S,suppressScrollEvent:!1})}_getPixelsScrolled(S){if(S.deltaY===0||S.shiftKey)return 0;let _=this._applyScrollModifier(S.deltaY,S);return S.deltaMode===WheelEvent.DOM_DELTA_LINE?_*=this._currentRowHeight:S.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(_*=this._currentRowHeight*this._bufferService.rows),_}getBufferElements(S,_){var T;let y,k="";const R=[],M=_??this._bufferService.buffer.lines.length,j=this._bufferService.buffer.lines;for(let D=S;D<M;D++){const H=j.get(D);if(!H)continue;const P=(T=j.get(D+1))==null?void 0:T.isWrapped;if(k+=H.translateToString(!P),!P||D===j.length-1){const W=document.createElement("div");W.textContent=k,R.push(W),k.length>0&&(y=W),k=""}}return{bufferElements:R,cursorElement:y}}getLinesScrolled(S){if(S.deltaY===0||S.shiftKey)return 0;let _=this._applyScrollModifier(S.deltaY,S);return S.deltaMode===WheelEvent.DOM_DELTA_PIXEL?(_/=this._currentRowHeight+0,this._wheelPartialScroll+=_,_=Math.floor(Math.abs(this._wheelPartialScroll))*(this._wheelPartialScroll>0?1:-1),this._wheelPartialScroll%=1):S.deltaMode===WheelEvent.DOM_DELTA_PAGE&&(_*=this._bufferService.rows),_}_applyScrollModifier(S,_){const y=this._optionsService.rawOptions.fastScrollModifier;return y==="alt"&&_.altKey||y==="ctrl"&&_.ctrlKey||y==="shift"&&_.shiftKey?S*this._optionsService.rawOptions.fastScrollSensitivity*this._optionsService.rawOptions.scrollSensitivity:S*this._optionsService.rawOptions.scrollSensitivity}handleTouchStart(S){this._lastTouchY=S.touches[0].pageY}handleTouchMove(S){const _=this._lastTouchY-S.touches[0].pageY;return this._lastTouchY=S.touches[0].pageY,_!==0&&(this._viewportElement.scrollTop+=_,this._bubbleScroll(S,_))}};c.Viewport=m=v([b(2,E.IBufferService),b(3,E.IOptionsService),b(4,x.ICharSizeService),b(5,x.IRenderService),b(6,x.ICoreBrowserService),b(7,x.IThemeService)],m)},3107:function(p,c,u){var v=this&&this.__decorate||function(E,m,S,_){var y,k=arguments.length,R=k<3?m:_===null?_=Object.getOwnPropertyDescriptor(m,S):_;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")R=Reflect.decorate(E,m,S,_);else for(var M=E.length-1;M>=0;M--)(y=E[M])&&(R=(k<3?y(R):k>3?y(m,S,R):y(m,S))||R);return k>3&&R&&Object.defineProperty(m,S,R),R},b=this&&this.__param||function(E,m){return function(S,_){m(S,_,E)}};Object.defineProperty(c,"__esModule",{value:!0}),c.BufferDecorationRenderer=void 0;const f=u(4725),x=u(844),C=u(2585);let A=c.BufferDecorationRenderer=class extends x.Disposable{constructor(E,m,S,_,y){super(),this._screenElement=E,this._bufferService=m,this._coreBrowserService=S,this._decorationService=_,this._renderService=y,this._decorationElements=new Map,this._altBufferIsActive=!1,this._dimensionsChanged=!1,this._container=document.createElement("div"),this._container.classList.add("xterm-decoration-container"),this._screenElement.appendChild(this._container),this.register(this._renderService.onRenderedViewportChange((()=>this._doRefreshDecorations()))),this.register(this._renderService.onDimensionsChange((()=>{this._dimensionsChanged=!0,this._queueRefresh()}))),this.register(this._coreBrowserService.onDprChange((()=>this._queueRefresh()))),this.register(this._bufferService.buffers.onBufferActivate((()=>{this._altBufferIsActive=this._bufferService.buffer===this._bufferService.buffers.alt}))),this.register(this._decorationService.onDecorationRegistered((()=>this._queueRefresh()))),this.register(this._decorationService.onDecorationRemoved((k=>this._removeDecoration(k)))),this.register((0,x.toDisposable)((()=>{this._container.remove(),this._decorationElements.clear()})))}_queueRefresh(){this._animationFrame===void 0&&(this._animationFrame=this._renderService.addRefreshCallback((()=>{this._doRefreshDecorations(),this._animationFrame=void 0})))}_doRefreshDecorations(){for(const E of this._decorationService.decorations)this._renderDecoration(E);this._dimensionsChanged=!1}_renderDecoration(E){this._refreshStyle(E),this._dimensionsChanged&&this._refreshXPosition(E)}_createElement(E){var _;const m=this._coreBrowserService.mainDocument.createElement("div");m.classList.add("xterm-decoration"),m.classList.toggle("xterm-decoration-top-layer",((_=E==null?void 0:E.options)==null?void 0:_.layer)==="top"),m.style.width=`${Math.round((E.options.width||1)*this._renderService.dimensions.css.cell.width)}px`,m.style.height=(E.options.height||1)*this._renderService.dimensions.css.cell.height+"px",m.style.top=(E.marker.line-this._bufferService.buffers.active.ydisp)*this._renderService.dimensions.css.cell.height+"px",m.style.lineHeight=`${this._renderService.dimensions.css.cell.height}px`;const S=E.options.x??0;return S&&S>this._bufferService.cols&&(m.style.display="none"),this._refreshXPosition(E,m),m}_refreshStyle(E){const m=E.marker.line-this._bufferService.buffers.active.ydisp;if(m<0||m>=this._bufferService.rows)E.element&&(E.element.style.display="none",E.onRenderEmitter.fire(E.element));else{let S=this._decorationElements.get(E);S||(S=this._createElement(E),E.element=S,this._decorationElements.set(E,S),this._container.appendChild(S),E.onDispose((()=>{this._decorationElements.delete(E),S.remove()}))),S.style.top=m*this._renderService.dimensions.css.cell.height+"px",S.style.display=this._altBufferIsActive?"none":"block",E.onRenderEmitter.fire(S)}}_refreshXPosition(E,m=E.element){if(!m)return;const S=E.options.x??0;(E.options.anchor||"left")==="right"?m.style.right=S?S*this._renderService.dimensions.css.cell.width+"px":"":m.style.left=S?S*this._renderService.dimensions.css.cell.width+"px":""}_removeDecoration(E){var m;(m=this._decorationElements.get(E))==null||m.remove(),this._decorationElements.delete(E),E.dispose()}};c.BufferDecorationRenderer=A=v([b(1,C.IBufferService),b(2,f.ICoreBrowserService),b(3,C.IDecorationService),b(4,f.IRenderService)],A)},5871:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.ColorZoneStore=void 0,c.ColorZoneStore=class{constructor(){this._zones=[],this._zonePool=[],this._zonePoolIndex=0,this._linePadding={full:0,left:0,center:0,right:0}}get zones(){return this._zonePool.length=Math.min(this._zonePool.length,this._zones.length),this._zones}clear(){this._zones.length=0,this._zonePoolIndex=0}addDecoration(u){if(u.options.overviewRulerOptions){for(const v of this._zones)if(v.color===u.options.overviewRulerOptions.color&&v.position===u.options.overviewRulerOptions.position){if(this._lineIntersectsZone(v,u.marker.line))return;if(this._lineAdjacentToZone(v,u.marker.line,u.options.overviewRulerOptions.position))return void this._addLineToZone(v,u.marker.line)}if(this._zonePoolIndex<this._zonePool.length)return this._zonePool[this._zonePoolIndex].color=u.options.overviewRulerOptions.color,this._zonePool[this._zonePoolIndex].position=u.options.overviewRulerOptions.position,this._zonePool[this._zonePoolIndex].startBufferLine=u.marker.line,this._zonePool[this._zonePoolIndex].endBufferLine=u.marker.line,void this._zones.push(this._zonePool[this._zonePoolIndex++]);this._zones.push({color:u.options.overviewRulerOptions.color,position:u.options.overviewRulerOptions.position,startBufferLine:u.marker.line,endBufferLine:u.marker.line}),this._zonePool.push(this._zones[this._zones.length-1]),this._zonePoolIndex++}}setPadding(u){this._linePadding=u}_lineIntersectsZone(u,v){return v>=u.startBufferLine&&v<=u.endBufferLine}_lineAdjacentToZone(u,v,b){return v>=u.startBufferLine-this._linePadding[b||"full"]&&v<=u.endBufferLine+this._linePadding[b||"full"]}_addLineToZone(u,v){u.startBufferLine=Math.min(u.startBufferLine,v),u.endBufferLine=Math.max(u.endBufferLine,v)}}},5744:function(p,c,u){var v=this&&this.__decorate||function(y,k,R,M){var j,T=arguments.length,D=T<3?k:M===null?M=Object.getOwnPropertyDescriptor(k,R):M;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")D=Reflect.decorate(y,k,R,M);else for(var H=y.length-1;H>=0;H--)(j=y[H])&&(D=(T<3?j(D):T>3?j(k,R,D):j(k,R))||D);return T>3&&D&&Object.defineProperty(k,R,D),D},b=this&&this.__param||function(y,k){return function(R,M){k(R,M,y)}};Object.defineProperty(c,"__esModule",{value:!0}),c.OverviewRulerRenderer=void 0;const f=u(5871),x=u(4725),C=u(844),A=u(2585),E={full:0,left:0,center:0,right:0},m={full:0,left:0,center:0,right:0},S={full:0,left:0,center:0,right:0};let _=c.OverviewRulerRenderer=class extends C.Disposable{get _width(){return this._optionsService.options.overviewRulerWidth||0}constructor(y,k,R,M,j,T,D){var P;super(),this._viewportElement=y,this._screenElement=k,this._bufferService=R,this._decorationService=M,this._renderService=j,this._optionsService=T,this._coreBrowserService=D,this._colorZoneStore=new f.ColorZoneStore,this._shouldUpdateDimensions=!0,this._shouldUpdateAnchor=!0,this._lastKnownBufferLength=0,this._canvas=this._coreBrowserService.mainDocument.createElement("canvas"),this._canvas.classList.add("xterm-decoration-overview-ruler"),this._refreshCanvasDimensions(),(P=this._viewportElement.parentElement)==null||P.insertBefore(this._canvas,this._viewportElement);const H=this._canvas.getContext("2d");if(!H)throw new Error("Ctx cannot be null");this._ctx=H,this._registerDecorationListeners(),this._registerBufferChangeListeners(),this._registerDimensionChangeListeners(),this.register((0,C.toDisposable)((()=>{var W;(W=this._canvas)==null||W.remove()})))}_registerDecorationListeners(){this.register(this._decorationService.onDecorationRegistered((()=>this._queueRefresh(void 0,!0)))),this.register(this._decorationService.onDecorationRemoved((()=>this._queueRefresh(void 0,!0))))}_registerBufferChangeListeners(){this.register(this._renderService.onRenderedViewportChange((()=>this._queueRefresh()))),this.register(this._bufferService.buffers.onBufferActivate((()=>{this._canvas.style.display=this._bufferService.buffer===this._bufferService.buffers.alt?"none":"block"}))),this.register(this._bufferService.onScroll((()=>{this._lastKnownBufferLength!==this._bufferService.buffers.normal.lines.length&&(this._refreshDrawHeightConstants(),this._refreshColorZonePadding())})))}_registerDimensionChangeListeners(){this.register(this._renderService.onRender((()=>{this._containerHeight&&this._containerHeight===this._screenElement.clientHeight||(this._queueRefresh(!0),this._containerHeight=this._screenElement.clientHeight)}))),this.register(this._optionsService.onSpecificOptionChange("overviewRulerWidth",(()=>this._queueRefresh(!0)))),this.register(this._coreBrowserService.onDprChange((()=>this._queueRefresh(!0)))),this._queueRefresh(!0)}_refreshDrawConstants(){const y=Math.floor(this._canvas.width/3),k=Math.ceil(this._canvas.width/3);m.full=this._canvas.width,m.left=y,m.center=k,m.right=y,this._refreshDrawHeightConstants(),S.full=0,S.left=0,S.center=m.left,S.right=m.left+m.center}_refreshDrawHeightConstants(){E.full=Math.round(2*this._coreBrowserService.dpr);const y=this._canvas.height/this._bufferService.buffer.lines.length,k=Math.round(Math.max(Math.min(y,12),6)*this._coreBrowserService.dpr);E.left=k,E.center=k,E.right=k}_refreshColorZonePadding(){this._colorZoneStore.setPadding({full:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*E.full),left:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*E.left),center:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*E.center),right:Math.floor(this._bufferService.buffers.active.lines.length/(this._canvas.height-1)*E.right)}),this._lastKnownBufferLength=this._bufferService.buffers.normal.lines.length}_refreshCanvasDimensions(){this._canvas.style.width=`${this._width}px`,this._canvas.width=Math.round(this._width*this._coreBrowserService.dpr),this._canvas.style.height=`${this._screenElement.clientHeight}px`,this._canvas.height=Math.round(this._screenElement.clientHeight*this._coreBrowserService.dpr),this._refreshDrawConstants(),this._refreshColorZonePadding()}_refreshDecorations(){this._shouldUpdateDimensions&&this._refreshCanvasDimensions(),this._ctx.clearRect(0,0,this._canvas.width,this._canvas.height),this._colorZoneStore.clear();for(const k of this._decorationService.decorations)this._colorZoneStore.addDecoration(k);this._ctx.lineWidth=1;const y=this._colorZoneStore.zones;for(const k of y)k.position!=="full"&&this._renderColorZone(k);for(const k of y)k.position==="full"&&this._renderColorZone(k);this._shouldUpdateDimensions=!1,this._shouldUpdateAnchor=!1}_renderColorZone(y){this._ctx.fillStyle=y.color,this._ctx.fillRect(S[y.position||"full"],Math.round((this._canvas.height-1)*(y.startBufferLine/this._bufferService.buffers.active.lines.length)-E[y.position||"full"]/2),m[y.position||"full"],Math.round((this._canvas.height-1)*((y.endBufferLine-y.startBufferLine)/this._bufferService.buffers.active.lines.length)+E[y.position||"full"]))}_queueRefresh(y,k){this._shouldUpdateDimensions=y||this._shouldUpdateDimensions,this._shouldUpdateAnchor=k||this._shouldUpdateAnchor,this._animationFrame===void 0&&(this._animationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>{this._refreshDecorations(),this._animationFrame=void 0})))}};c.OverviewRulerRenderer=_=v([b(2,A.IBufferService),b(3,A.IDecorationService),b(4,x.IRenderService),b(5,A.IOptionsService),b(6,x.ICoreBrowserService)],_)},2950:function(p,c,u){var v=this&&this.__decorate||function(E,m,S,_){var y,k=arguments.length,R=k<3?m:_===null?_=Object.getOwnPropertyDescriptor(m,S):_;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")R=Reflect.decorate(E,m,S,_);else for(var M=E.length-1;M>=0;M--)(y=E[M])&&(R=(k<3?y(R):k>3?y(m,S,R):y(m,S))||R);return k>3&&R&&Object.defineProperty(m,S,R),R},b=this&&this.__param||function(E,m){return function(S,_){m(S,_,E)}};Object.defineProperty(c,"__esModule",{value:!0}),c.CompositionHelper=void 0;const f=u(4725),x=u(2585),C=u(2584);let A=c.CompositionHelper=class{get isComposing(){return this._isComposing}constructor(E,m,S,_,y,k){this._textarea=E,this._compositionView=m,this._bufferService=S,this._optionsService=_,this._coreService=y,this._renderService=k,this._isComposing=!1,this._isSendingComposition=!1,this._compositionPosition={start:0,end:0},this._dataAlreadySent=""}compositionstart(){this._isComposing=!0,this._compositionPosition.start=this._textarea.value.length,this._compositionView.textContent="",this._dataAlreadySent="",this._compositionView.classList.add("active")}compositionupdate(E){this._compositionView.textContent=E.data,this.updateCompositionElements(),setTimeout((()=>{this._compositionPosition.end=this._textarea.value.length}),0)}compositionend(){this._finalizeComposition(!0)}keydown(E){if(this._isComposing||this._isSendingComposition){if(E.keyCode===229||E.keyCode===16||E.keyCode===17||E.keyCode===18)return!1;this._finalizeComposition(!1)}return E.keyCode!==229||(this._handleAnyTextareaChanges(),!1)}_finalizeComposition(E){if(this._compositionView.classList.remove("active"),this._isComposing=!1,E){const m={start:this._compositionPosition.start,end:this._compositionPosition.end};this._isSendingComposition=!0,setTimeout((()=>{if(this._isSendingComposition){let S;this._isSendingComposition=!1,m.start+=this._dataAlreadySent.length,S=this._isComposing?this._textarea.value.substring(m.start,m.end):this._textarea.value.substring(m.start),S.length>0&&this._coreService.triggerDataEvent(S,!0)}}),0)}else{this._isSendingComposition=!1;const m=this._textarea.value.substring(this._compositionPosition.start,this._compositionPosition.end);this._coreService.triggerDataEvent(m,!0)}}_handleAnyTextareaChanges(){const E=this._textarea.value;setTimeout((()=>{if(!this._isComposing){const m=this._textarea.value,S=m.replace(E,"");this._dataAlreadySent=S,m.length>E.length?this._coreService.triggerDataEvent(S,!0):m.length<E.length?this._coreService.triggerDataEvent(`${C.C0.DEL}`,!0):m.length===E.length&&m!==E&&this._coreService.triggerDataEvent(m,!0)}}),0)}updateCompositionElements(E){if(this._isComposing){if(this._bufferService.buffer.isCursorInViewport){const m=Math.min(this._bufferService.buffer.x,this._bufferService.cols-1),S=this._renderService.dimensions.css.cell.height,_=this._bufferService.buffer.y*this._renderService.dimensions.css.cell.height,y=m*this._renderService.dimensions.css.cell.width;this._compositionView.style.left=y+"px",this._compositionView.style.top=_+"px",this._compositionView.style.height=S+"px",this._compositionView.style.lineHeight=S+"px",this._compositionView.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._compositionView.style.fontSize=this._optionsService.rawOptions.fontSize+"px";const k=this._compositionView.getBoundingClientRect();this._textarea.style.left=y+"px",this._textarea.style.top=_+"px",this._textarea.style.width=Math.max(k.width,1)+"px",this._textarea.style.height=Math.max(k.height,1)+"px",this._textarea.style.lineHeight=k.height+"px"}E||setTimeout((()=>this.updateCompositionElements(!0)),0)}}};c.CompositionHelper=A=v([b(2,x.IBufferService),b(3,x.IOptionsService),b(4,x.ICoreService),b(5,f.IRenderService)],A)},9806:(p,c)=>{function u(v,b,f){const x=f.getBoundingClientRect(),C=v.getComputedStyle(f),A=parseInt(C.getPropertyValue("padding-left")),E=parseInt(C.getPropertyValue("padding-top"));return[b.clientX-x.left-A,b.clientY-x.top-E]}Object.defineProperty(c,"__esModule",{value:!0}),c.getCoords=c.getCoordsRelativeToElement=void 0,c.getCoordsRelativeToElement=u,c.getCoords=function(v,b,f,x,C,A,E,m,S){if(!A)return;const _=u(v,b,f);return _?(_[0]=Math.ceil((_[0]+(S?E/2:0))/E),_[1]=Math.ceil(_[1]/m),_[0]=Math.min(Math.max(_[0],1),x+(S?1:0)),_[1]=Math.min(Math.max(_[1],1),C),_):void 0}},9504:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.moveToCellSequence=void 0;const v=u(2584);function b(m,S,_,y){const k=m-f(m,_),R=S-f(S,_),M=Math.abs(k-R)-(function(j,T,D){let H=0;const P=j-f(j,D),W=T-f(T,D);for(let U=0;U<Math.abs(P-W);U++){const Y=x(j,T)==="A"?-1:1,J=D.buffer.lines.get(P+Y*U);J!=null&&J.isWrapped&&H++}return H})(m,S,_);return E(M,A(x(m,S),y))}function f(m,S){let _=0,y=S.buffer.lines.get(m),k=y==null?void 0:y.isWrapped;for(;k&&m>=0&&m<S.rows;)_++,y=S.buffer.lines.get(--m),k=y==null?void 0:y.isWrapped;return _}function x(m,S){return m>S?"A":"B"}function C(m,S,_,y,k,R){let M=m,j=S,T="";for(;M!==_||j!==y;)M+=k?1:-1,k&&M>R.cols-1?(T+=R.buffer.translateBufferLineToString(j,!1,m,M),M=0,m=0,j++):!k&&M<0&&(T+=R.buffer.translateBufferLineToString(j,!1,0,m+1),M=R.cols-1,m=M,j--);return T+R.buffer.translateBufferLineToString(j,!1,m,M)}function A(m,S){const _=S?"O":"[";return v.C0.ESC+_+m}function E(m,S){m=Math.floor(m);let _="";for(let y=0;y<m;y++)_+=S;return _}c.moveToCellSequence=function(m,S,_,y){const k=_.buffer.x,R=_.buffer.y;if(!_.buffer.hasScrollback)return(function(T,D,H,P,W,U){return b(D,P,W,U).length===0?"":E(C(T,D,T,D-f(D,W),!1,W).length,A("D",U))})(k,R,0,S,_,y)+b(R,S,_,y)+(function(T,D,H,P,W,U){let Y;Y=b(D,P,W,U).length>0?P-f(P,W):D;const J=P,q=(function(G,ee,O,F,L,B){let V;return V=b(O,F,L,B).length>0?F-f(F,L):ee,G<O&&V<=F||G>=O&&V<F?"C":"D"})(T,D,H,P,W,U);return E(C(T,Y,H,J,q==="C",W).length,A(q,U))})(k,R,m,S,_,y);let M;if(R===S)return M=k>m?"D":"C",E(Math.abs(k-m),A(M,y));M=R>S?"D":"C";const j=Math.abs(R-S);return E((function(T,D){return D.cols-T})(R>S?m:k,_)+(j-1)*_.cols+1+((R>S?k:m)-1),A(M,y))}},1296:function(p,c,u){var v=this&&this.__decorate||function(U,Y,J,q){var G,ee=arguments.length,O=ee<3?Y:q===null?q=Object.getOwnPropertyDescriptor(Y,J):q;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")O=Reflect.decorate(U,Y,J,q);else for(var F=U.length-1;F>=0;F--)(G=U[F])&&(O=(ee<3?G(O):ee>3?G(Y,J,O):G(Y,J))||O);return ee>3&&O&&Object.defineProperty(Y,J,O),O},b=this&&this.__param||function(U,Y){return function(J,q){Y(J,q,U)}};Object.defineProperty(c,"__esModule",{value:!0}),c.DomRenderer=void 0;const f=u(3787),x=u(2550),C=u(2223),A=u(6171),E=u(6052),m=u(4725),S=u(8055),_=u(8460),y=u(844),k=u(2585),R="xterm-dom-renderer-owner-",M="xterm-rows",j="xterm-fg-",T="xterm-bg-",D="xterm-focus",H="xterm-selection";let P=1,W=c.DomRenderer=class extends y.Disposable{constructor(U,Y,J,q,G,ee,O,F,L,B,V,te,ce){super(),this._terminal=U,this._document=Y,this._element=J,this._screenElement=q,this._viewportElement=G,this._helperContainer=ee,this._linkifier2=O,this._charSizeService=L,this._optionsService=B,this._bufferService=V,this._coreBrowserService=te,this._themeService=ce,this._terminalClass=P++,this._rowElements=[],this._selectionRenderModel=(0,E.createSelectionRenderModel)(),this.onRequestRedraw=this.register(new _.EventEmitter).event,this._rowContainer=this._document.createElement("div"),this._rowContainer.classList.add(M),this._rowContainer.style.lineHeight="normal",this._rowContainer.setAttribute("aria-hidden","true"),this._refreshRowElements(this._bufferService.cols,this._bufferService.rows),this._selectionContainer=this._document.createElement("div"),this._selectionContainer.classList.add(H),this._selectionContainer.setAttribute("aria-hidden","true"),this.dimensions=(0,A.createRenderDimensions)(),this._updateDimensions(),this.register(this._optionsService.onOptionChange((()=>this._handleOptionsChanged()))),this.register(this._themeService.onChangeColors((de=>this._injectCss(de)))),this._injectCss(this._themeService.colors),this._rowFactory=F.createInstance(f.DomRendererRowFactory,document),this._element.classList.add(R+this._terminalClass),this._screenElement.appendChild(this._rowContainer),this._screenElement.appendChild(this._selectionContainer),this.register(this._linkifier2.onShowLinkUnderline((de=>this._handleLinkHover(de)))),this.register(this._linkifier2.onHideLinkUnderline((de=>this._handleLinkLeave(de)))),this.register((0,y.toDisposable)((()=>{this._element.classList.remove(R+this._terminalClass),this._rowContainer.remove(),this._selectionContainer.remove(),this._widthCache.dispose(),this._themeStyleElement.remove(),this._dimensionsStyleElement.remove()}))),this._widthCache=new x.WidthCache(this._document,this._helperContainer),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}_updateDimensions(){const U=this._coreBrowserService.dpr;this.dimensions.device.char.width=this._charSizeService.width*U,this.dimensions.device.char.height=Math.ceil(this._charSizeService.height*U),this.dimensions.device.cell.width=this.dimensions.device.char.width+Math.round(this._optionsService.rawOptions.letterSpacing),this.dimensions.device.cell.height=Math.floor(this.dimensions.device.char.height*this._optionsService.rawOptions.lineHeight),this.dimensions.device.char.left=0,this.dimensions.device.char.top=0,this.dimensions.device.canvas.width=this.dimensions.device.cell.width*this._bufferService.cols,this.dimensions.device.canvas.height=this.dimensions.device.cell.height*this._bufferService.rows,this.dimensions.css.canvas.width=Math.round(this.dimensions.device.canvas.width/U),this.dimensions.css.canvas.height=Math.round(this.dimensions.device.canvas.height/U),this.dimensions.css.cell.width=this.dimensions.css.canvas.width/this._bufferService.cols,this.dimensions.css.cell.height=this.dimensions.css.canvas.height/this._bufferService.rows;for(const J of this._rowElements)J.style.width=`${this.dimensions.css.canvas.width}px`,J.style.height=`${this.dimensions.css.cell.height}px`,J.style.lineHeight=`${this.dimensions.css.cell.height}px`,J.style.overflow="hidden";this._dimensionsStyleElement||(this._dimensionsStyleElement=this._document.createElement("style"),this._screenElement.appendChild(this._dimensionsStyleElement));const Y=`${this._terminalSelector} .${M} span { display: inline-block; height: 100%; vertical-align: top;}`;this._dimensionsStyleElement.textContent=Y,this._selectionContainer.style.height=this._viewportElement.style.height,this._screenElement.style.width=`${this.dimensions.css.canvas.width}px`,this._screenElement.style.height=`${this.dimensions.css.canvas.height}px`}_injectCss(U){this._themeStyleElement||(this._themeStyleElement=this._document.createElement("style"),this._screenElement.appendChild(this._themeStyleElement));let Y=`${this._terminalSelector} .${M} { color: ${U.foreground.css}; font-family: ${this._optionsService.rawOptions.fontFamily}; font-size: ${this._optionsService.rawOptions.fontSize}px; font-kerning: none; white-space: pre}`;Y+=`${this._terminalSelector} .${M} .xterm-dim { color: ${S.color.multiplyOpacity(U.foreground,.5).css};}`,Y+=`${this._terminalSelector} span:not(.xterm-bold) { font-weight: ${this._optionsService.rawOptions.fontWeight};}${this._terminalSelector} span.xterm-bold { font-weight: ${this._optionsService.rawOptions.fontWeightBold};}${this._terminalSelector} span.xterm-italic { font-style: italic;}`;const J=`blink_underline_${this._terminalClass}`,q=`blink_bar_${this._terminalClass}`,G=`blink_block_${this._terminalClass}`;Y+=`@keyframes ${J} { 50% { border-bottom-style: hidden; }}`,Y+=`@keyframes ${q} { 50% { box-shadow: none; }}`,Y+=`@keyframes ${G} { 0% { background-color: ${U.cursor.css}; color: ${U.cursorAccent.css}; } 50% { background-color: inherit; color: ${U.cursor.css}; }}`,Y+=`${this._terminalSelector} .${M}.${D} .xterm-cursor.xterm-cursor-blink.xterm-cursor-underline { animation: ${J} 1s step-end infinite;}${this._terminalSelector} .${M}.${D} .xterm-cursor.xterm-cursor-blink.xterm-cursor-bar { animation: ${q} 1s step-end infinite;}${this._terminalSelector} .${M}.${D} .xterm-cursor.xterm-cursor-blink.xterm-cursor-block { animation: ${G} 1s step-end infinite;}${this._terminalSelector} .${M} .xterm-cursor.xterm-cursor-block { background-color: ${U.cursor.css}; color: ${U.cursorAccent.css};}${this._terminalSelector} .${M} .xterm-cursor.xterm-cursor-block:not(.xterm-cursor-blink) { background-color: ${U.cursor.css} !important; color: ${U.cursorAccent.css} !important;}${this._terminalSelector} .${M} .xterm-cursor.xterm-cursor-outline { outline: 1px solid ${U.cursor.css}; outline-offset: -1px;}${this._terminalSelector} .${M} .xterm-cursor.xterm-cursor-bar { box-shadow: ${this._optionsService.rawOptions.cursorWidth}px 0 0 ${U.cursor.css} inset;}${this._terminalSelector} .${M} .xterm-cursor.xterm-cursor-underline { border-bottom: 1px ${U.cursor.css}; border-bottom-style: solid; height: calc(100% - 1px);}`,Y+=`${this._terminalSelector} .${H} { position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none;}${this._terminalSelector}.focus .${H} div { position: absolute; background-color: ${U.selectionBackgroundOpaque.css};}${this._terminalSelector} .${H} div { position: absolute; background-color: ${U.selectionInactiveBackgroundOpaque.css};}`;for(const[ee,O]of U.ansi.entries())Y+=`${this._terminalSelector} .${j}${ee} { color: ${O.css}; }${this._terminalSelector} .${j}${ee}.xterm-dim { color: ${S.color.multiplyOpacity(O,.5).css}; }${this._terminalSelector} .${T}${ee} { background-color: ${O.css}; }`;Y+=`${this._terminalSelector} .${j}${C.INVERTED_DEFAULT_COLOR} { color: ${S.color.opaque(U.background).css}; }${this._terminalSelector} .${j}${C.INVERTED_DEFAULT_COLOR}.xterm-dim { color: ${S.color.multiplyOpacity(S.color.opaque(U.background),.5).css}; }${this._terminalSelector} .${T}${C.INVERTED_DEFAULT_COLOR} { background-color: ${U.foreground.css}; }`,this._themeStyleElement.textContent=Y}_setDefaultSpacing(){const U=this.dimensions.css.cell.width-this._widthCache.get("W",!1,!1);this._rowContainer.style.letterSpacing=`${U}px`,this._rowFactory.defaultSpacing=U}handleDevicePixelRatioChange(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}_refreshRowElements(U,Y){for(let J=this._rowElements.length;J<=Y;J++){const q=this._document.createElement("div");this._rowContainer.appendChild(q),this._rowElements.push(q)}for(;this._rowElements.length>Y;)this._rowContainer.removeChild(this._rowElements.pop())}handleResize(U,Y){this._refreshRowElements(U,Y),this._updateDimensions(),this.handleSelectionChanged(this._selectionRenderModel.selectionStart,this._selectionRenderModel.selectionEnd,this._selectionRenderModel.columnSelectMode)}handleCharSizeChanged(){this._updateDimensions(),this._widthCache.clear(),this._setDefaultSpacing()}handleBlur(){this._rowContainer.classList.remove(D),this.renderRows(0,this._bufferService.rows-1)}handleFocus(){this._rowContainer.classList.add(D),this.renderRows(this._bufferService.buffer.y,this._bufferService.buffer.y)}handleSelectionChanged(U,Y,J){if(this._selectionContainer.replaceChildren(),this._rowFactory.handleSelectionChanged(U,Y,J),this.renderRows(0,this._bufferService.rows-1),!U||!Y)return;this._selectionRenderModel.update(this._terminal,U,Y,J);const q=this._selectionRenderModel.viewportStartRow,G=this._selectionRenderModel.viewportEndRow,ee=this._selectionRenderModel.viewportCappedStartRow,O=this._selectionRenderModel.viewportCappedEndRow;if(ee>=this._bufferService.rows||O<0)return;const F=this._document.createDocumentFragment();if(J){const L=U[0]>Y[0];F.appendChild(this._createSelectionElement(ee,L?Y[0]:U[0],L?U[0]:Y[0],O-ee+1))}else{const L=q===ee?U[0]:0,B=ee===G?Y[0]:this._bufferService.cols;F.appendChild(this._createSelectionElement(ee,L,B));const V=O-ee-1;if(F.appendChild(this._createSelectionElement(ee+1,0,this._bufferService.cols,V)),ee!==O){const te=G===O?Y[0]:this._bufferService.cols;F.appendChild(this._createSelectionElement(O,0,te))}}this._selectionContainer.appendChild(F)}_createSelectionElement(U,Y,J,q=1){const G=this._document.createElement("div"),ee=Y*this.dimensions.css.cell.width;let O=this.dimensions.css.cell.width*(J-Y);return ee+O>this.dimensions.css.canvas.width&&(O=this.dimensions.css.canvas.width-ee),G.style.height=q*this.dimensions.css.cell.height+"px",G.style.top=U*this.dimensions.css.cell.height+"px",G.style.left=`${ee}px`,G.style.width=`${O}px`,G}handleCursorMove(){}_handleOptionsChanged(){this._updateDimensions(),this._injectCss(this._themeService.colors),this._widthCache.setFont(this._optionsService.rawOptions.fontFamily,this._optionsService.rawOptions.fontSize,this._optionsService.rawOptions.fontWeight,this._optionsService.rawOptions.fontWeightBold),this._setDefaultSpacing()}clear(){for(const U of this._rowElements)U.replaceChildren()}renderRows(U,Y){const J=this._bufferService.buffer,q=J.ybase+J.y,G=Math.min(J.x,this._bufferService.cols-1),ee=this._optionsService.rawOptions.cursorBlink,O=this._optionsService.rawOptions.cursorStyle,F=this._optionsService.rawOptions.cursorInactiveStyle;for(let L=U;L<=Y;L++){const B=L+J.ydisp,V=this._rowElements[L],te=J.lines.get(B);if(!V||!te)break;V.replaceChildren(...this._rowFactory.createRow(te,B,B===q,O,F,G,ee,this.dimensions.css.cell.width,this._widthCache,-1,-1))}}get _terminalSelector(){return`.${R}${this._terminalClass}`}_handleLinkHover(U){this._setCellUnderline(U.x1,U.x2,U.y1,U.y2,U.cols,!0)}_handleLinkLeave(U){this._setCellUnderline(U.x1,U.x2,U.y1,U.y2,U.cols,!1)}_setCellUnderline(U,Y,J,q,G,ee){J<0&&(U=0),q<0&&(Y=0);const O=this._bufferService.rows-1;J=Math.max(Math.min(J,O),0),q=Math.max(Math.min(q,O),0),G=Math.min(G,this._bufferService.cols);const F=this._bufferService.buffer,L=F.ybase+F.y,B=Math.min(F.x,G-1),V=this._optionsService.rawOptions.cursorBlink,te=this._optionsService.rawOptions.cursorStyle,ce=this._optionsService.rawOptions.cursorInactiveStyle;for(let de=J;de<=q;++de){const K=de+F.ydisp,I=this._rowElements[de],ue=F.lines.get(K);if(!I||!ue)break;I.replaceChildren(...this._rowFactory.createRow(ue,K,K===L,te,ce,B,V,this.dimensions.css.cell.width,this._widthCache,ee?de===J?U:0:-1,ee?(de===q?Y:G)-1:-1))}}};c.DomRenderer=W=v([b(7,k.IInstantiationService),b(8,m.ICharSizeService),b(9,k.IOptionsService),b(10,k.IBufferService),b(11,m.ICoreBrowserService),b(12,m.IThemeService)],W)},3787:function(p,c,u){var v=this&&this.__decorate||function(M,j,T,D){var H,P=arguments.length,W=P<3?j:D===null?D=Object.getOwnPropertyDescriptor(j,T):D;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")W=Reflect.decorate(M,j,T,D);else for(var U=M.length-1;U>=0;U--)(H=M[U])&&(W=(P<3?H(W):P>3?H(j,T,W):H(j,T))||W);return P>3&&W&&Object.defineProperty(j,T,W),W},b=this&&this.__param||function(M,j){return function(T,D){j(T,D,M)}};Object.defineProperty(c,"__esModule",{value:!0}),c.DomRendererRowFactory=void 0;const f=u(2223),x=u(643),C=u(511),A=u(2585),E=u(8055),m=u(4725),S=u(4269),_=u(6171),y=u(3734);let k=c.DomRendererRowFactory=class{constructor(M,j,T,D,H,P,W){this._document=M,this._characterJoinerService=j,this._optionsService=T,this._coreBrowserService=D,this._coreService=H,this._decorationService=P,this._themeService=W,this._workCell=new C.CellData,this._columnSelectMode=!1,this.defaultSpacing=0}handleSelectionChanged(M,j,T){this._selectionStart=M,this._selectionEnd=j,this._columnSelectMode=T}createRow(M,j,T,D,H,P,W,U,Y,J,q){const G=[],ee=this._characterJoinerService.getJoinedCharacters(j),O=this._themeService.colors;let F,L=M.getNoBgTrimmedLength();T&&L<P+1&&(L=P+1);let B=0,V="",te=0,ce=0,de=0,K=!1,I=0,ue=!1,ie=0;const we=[],fe=J!==-1&&q!==-1;for(let $e=0;$e<L;$e++){M.loadCell($e,this._workCell);let De=this._workCell.getWidth();if(De===0)continue;let Ke=!1,Ie=$e,Le=this._workCell;if(ee.length>0&&$e===ee[0][0]){Ke=!0;const ct=ee.shift();Le=new S.JoinedCellData(this._workCell,M.translateToString(!0,ct[0],ct[1]),ct[1]-ct[0]),Ie=ct[1]-1,De=Le.getWidth()}const zt=this._isCellInSelection($e,j),Ue=T&&$e===P,We=fe&&$e>=J&&$e<=q;let vt=!1;this._decorationService.forEachDecorationAtCell($e,j,void 0,(ct=>{vt=!0}));let It=Le.getChars()||x.WHITESPACE_CELL_CHAR;if(It===" "&&(Le.isUnderline()||Le.isOverline())&&(It=" "),ie=De*U-Y.get(It,Le.isBold(),Le.isItalic()),F){if(B&&(zt&&ue||!zt&&!ue&&Le.bg===te)&&(zt&&ue&&O.selectionForeground||Le.fg===ce)&&Le.extended.ext===de&&We===K&&ie===I&&!Ue&&!Ke&&!vt){Le.isInvisible()?V+=x.WHITESPACE_CELL_CHAR:V+=It,B++;continue}B&&(F.textContent=V),F=this._document.createElement("span"),B=0,V=""}else F=this._document.createElement("span");if(te=Le.bg,ce=Le.fg,de=Le.extended.ext,K=We,I=ie,ue=zt,Ke&&P>=$e&&P<=Ie&&(P=$e),!this._coreService.isCursorHidden&&Ue&&this._coreService.isCursorInitialized){if(we.push("xterm-cursor"),this._coreBrowserService.isFocused)W&&we.push("xterm-cursor-blink"),we.push(D==="bar"?"xterm-cursor-bar":D==="underline"?"xterm-cursor-underline":"xterm-cursor-block");else if(H)switch(H){case"outline":we.push("xterm-cursor-outline");break;case"block":we.push("xterm-cursor-block");break;case"bar":we.push("xterm-cursor-bar");break;case"underline":we.push("xterm-cursor-underline")}}if(Le.isBold()&&we.push("xterm-bold"),Le.isItalic()&&we.push("xterm-italic"),Le.isDim()&&we.push("xterm-dim"),V=Le.isInvisible()?x.WHITESPACE_CELL_CHAR:Le.getChars()||x.WHITESPACE_CELL_CHAR,Le.isUnderline()&&(we.push(`xterm-underline-${Le.extended.underlineStyle}`),V===" "&&(V=" "),!Le.isUnderlineColorDefault()))if(Le.isUnderlineColorRGB())F.style.textDecorationColor=`rgb(${y.AttributeData.toColorRGB(Le.getUnderlineColor()).join(",")})`;else{let ct=Le.getUnderlineColor();this._optionsService.rawOptions.drawBoldTextInBrightColors&&Le.isBold()&&ct<8&&(ct+=8),F.style.textDecorationColor=O.ansi[ct].css}Le.isOverline()&&(we.push("xterm-overline"),V===" "&&(V=" ")),Le.isStrikethrough()&&we.push("xterm-strikethrough"),We&&(F.style.textDecoration="underline");let rt=Le.getFgColor(),ft=Le.getFgColorMode(),kt=Le.getBgColor(),es=Le.getBgColorMode();const cs=!!Le.isInverse();if(cs){const ct=rt;rt=kt,kt=ct;const ss=ft;ft=es,es=ss}let St,us,Lt,yt=!1;switch(this._decorationService.forEachDecorationAtCell($e,j,void 0,(ct=>{ct.options.layer!=="top"&&yt||(ct.backgroundColorRGB&&(es=50331648,kt=ct.backgroundColorRGB.rgba>>8&16777215,St=ct.backgroundColorRGB),ct.foregroundColorRGB&&(ft=50331648,rt=ct.foregroundColorRGB.rgba>>8&16777215,us=ct.foregroundColorRGB),yt=ct.options.layer==="top")})),!yt&&zt&&(St=this._coreBrowserService.isFocused?O.selectionBackgroundOpaque:O.selectionInactiveBackgroundOpaque,kt=St.rgba>>8&16777215,es=50331648,yt=!0,O.selectionForeground&&(ft=50331648,rt=O.selectionForeground.rgba>>8&16777215,us=O.selectionForeground)),yt&&we.push("xterm-decoration-top"),es){case 16777216:case 33554432:Lt=O.ansi[kt],we.push(`xterm-bg-${kt}`);break;case 50331648:Lt=E.channels.toColor(kt>>16,kt>>8&255,255&kt),this._addStyle(F,`background-color:#${R((kt>>>0).toString(16),"0",6)}`);break;default:cs?(Lt=O.foreground,we.push(`xterm-bg-${f.INVERTED_DEFAULT_COLOR}`)):Lt=O.background}switch(St||Le.isDim()&&(St=E.color.multiplyOpacity(Lt,.5)),ft){case 16777216:case 33554432:Le.isBold()&&rt<8&&this._optionsService.rawOptions.drawBoldTextInBrightColors&&(rt+=8),this._applyMinimumContrast(F,Lt,O.ansi[rt],Le,St,void 0)||we.push(`xterm-fg-${rt}`);break;case 50331648:const ct=E.channels.toColor(rt>>16&255,rt>>8&255,255&rt);this._applyMinimumContrast(F,Lt,ct,Le,St,us)||this._addStyle(F,`color:#${R(rt.toString(16),"0",6)}`);break;default:this._applyMinimumContrast(F,Lt,O.foreground,Le,St,us)||cs&&we.push(`xterm-fg-${f.INVERTED_DEFAULT_COLOR}`)}we.length&&(F.className=we.join(" "),we.length=0),Ue||Ke||vt?F.textContent=V:B++,ie!==this.defaultSpacing&&(F.style.letterSpacing=`${ie}px`),G.push(F),$e=Ie}return F&&B&&(F.textContent=V),G}_applyMinimumContrast(M,j,T,D,H,P){if(this._optionsService.rawOptions.minimumContrastRatio===1||(0,_.treatGlyphAsBackgroundColor)(D.getCode()))return!1;const W=this._getContrastCache(D);let U;if(H||P||(U=W.getColor(j.rgba,T.rgba)),U===void 0){const Y=this._optionsService.rawOptions.minimumContrastRatio/(D.isDim()?2:1);U=E.color.ensureContrastRatio(H||j,P||T,Y),W.setColor((H||j).rgba,(P||T).rgba,U??null)}return!!U&&(this._addStyle(M,`color:${U.css}`),!0)}_getContrastCache(M){return M.isDim()?this._themeService.colors.halfContrastCache:this._themeService.colors.contrastCache}_addStyle(M,j){M.setAttribute("style",`${M.getAttribute("style")||""}${j};`)}_isCellInSelection(M,j){const T=this._selectionStart,D=this._selectionEnd;return!(!T||!D)&&(this._columnSelectMode?T[0]<=D[0]?M>=T[0]&&j>=T[1]&&M<D[0]&&j<=D[1]:M<T[0]&&j>=T[1]&&M>=D[0]&&j<=D[1]:j>T[1]&&j<D[1]||T[1]===D[1]&&j===T[1]&&M>=T[0]&&M<D[0]||T[1]<D[1]&&j===D[1]&&M<D[0]||T[1]<D[1]&&j===T[1]&&M>=T[0])}};function R(M,j,T){for(;M.length<T;)M=j+M;return M}c.DomRendererRowFactory=k=v([b(1,m.ICharacterJoinerService),b(2,A.IOptionsService),b(3,m.ICoreBrowserService),b(4,A.ICoreService),b(5,A.IDecorationService),b(6,m.IThemeService)],k)},2550:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.WidthCache=void 0,c.WidthCache=class{constructor(u,v){this._flat=new Float32Array(256),this._font="",this._fontSize=0,this._weight="normal",this._weightBold="bold",this._measureElements=[],this._container=u.createElement("div"),this._container.classList.add("xterm-width-cache-measure-container"),this._container.setAttribute("aria-hidden","true"),this._container.style.whiteSpace="pre",this._container.style.fontKerning="none";const b=u.createElement("span");b.classList.add("xterm-char-measure-element");const f=u.createElement("span");f.classList.add("xterm-char-measure-element"),f.style.fontWeight="bold";const x=u.createElement("span");x.classList.add("xterm-char-measure-element"),x.style.fontStyle="italic";const C=u.createElement("span");C.classList.add("xterm-char-measure-element"),C.style.fontWeight="bold",C.style.fontStyle="italic",this._measureElements=[b,f,x,C],this._container.appendChild(b),this._container.appendChild(f),this._container.appendChild(x),this._container.appendChild(C),v.appendChild(this._container),this.clear()}dispose(){this._container.remove(),this._measureElements.length=0,this._holey=void 0}clear(){this._flat.fill(-9999),this._holey=new Map}setFont(u,v,b,f){u===this._font&&v===this._fontSize&&b===this._weight&&f===this._weightBold||(this._font=u,this._fontSize=v,this._weight=b,this._weightBold=f,this._container.style.fontFamily=this._font,this._container.style.fontSize=`${this._fontSize}px`,this._measureElements[0].style.fontWeight=`${b}`,this._measureElements[1].style.fontWeight=`${f}`,this._measureElements[2].style.fontWeight=`${b}`,this._measureElements[3].style.fontWeight=`${f}`,this.clear())}get(u,v,b){let f=0;if(!v&&!b&&u.length===1&&(f=u.charCodeAt(0))<256){if(this._flat[f]!==-9999)return this._flat[f];const A=this._measure(u,0);return A>0&&(this._flat[f]=A),A}let x=u;v&&(x+="B"),b&&(x+="I");let C=this._holey.get(x);if(C===void 0){let A=0;v&&(A|=1),b&&(A|=2),C=this._measure(u,A),C>0&&this._holey.set(x,C)}return C}_measure(u,v){const b=this._measureElements[v];return b.textContent=u.repeat(32),b.offsetWidth/32}}},2223:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.TEXT_BASELINE=c.DIM_OPACITY=c.INVERTED_DEFAULT_COLOR=void 0;const v=u(6114);c.INVERTED_DEFAULT_COLOR=257,c.DIM_OPACITY=.5,c.TEXT_BASELINE=v.isFirefox||v.isLegacyEdge?"bottom":"ideographic"},6171:(p,c)=>{function u(b){return 57508<=b&&b<=57558}function v(b){return b>=128512&&b<=128591||b>=127744&&b<=128511||b>=128640&&b<=128767||b>=9728&&b<=9983||b>=9984&&b<=10175||b>=65024&&b<=65039||b>=129280&&b<=129535||b>=127462&&b<=127487}Object.defineProperty(c,"__esModule",{value:!0}),c.computeNextVariantOffset=c.createRenderDimensions=c.treatGlyphAsBackgroundColor=c.allowRescaling=c.isEmoji=c.isRestrictedPowerlineGlyph=c.isPowerlineGlyph=c.throwIfFalsy=void 0,c.throwIfFalsy=function(b){if(!b)throw new Error("value must not be falsy");return b},c.isPowerlineGlyph=u,c.isRestrictedPowerlineGlyph=function(b){return 57520<=b&&b<=57527},c.isEmoji=v,c.allowRescaling=function(b,f,x,C){return f===1&&x>Math.ceil(1.5*C)&&b!==void 0&&b>255&&!v(b)&&!u(b)&&!(function(A){return 57344<=A&&A<=63743})(b)},c.treatGlyphAsBackgroundColor=function(b){return u(b)||(function(f){return 9472<=f&&f<=9631})(b)},c.createRenderDimensions=function(){return{css:{canvas:{width:0,height:0},cell:{width:0,height:0}},device:{canvas:{width:0,height:0},cell:{width:0,height:0},char:{width:0,height:0,left:0,top:0}}}},c.computeNextVariantOffset=function(b,f,x=0){return(b-(2*Math.round(f)-x))%(2*Math.round(f))}},6052:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.createSelectionRenderModel=void 0;class u{constructor(){this.clear()}clear(){this.hasSelection=!1,this.columnSelectMode=!1,this.viewportStartRow=0,this.viewportEndRow=0,this.viewportCappedStartRow=0,this.viewportCappedEndRow=0,this.startCol=0,this.endCol=0,this.selectionStart=void 0,this.selectionEnd=void 0}update(b,f,x,C=!1){if(this.selectionStart=f,this.selectionEnd=x,!f||!x||f[0]===x[0]&&f[1]===x[1])return void this.clear();const A=b.buffers.active.ydisp,E=f[1]-A,m=x[1]-A,S=Math.max(E,0),_=Math.min(m,b.rows-1);S>=b.rows||_<0?this.clear():(this.hasSelection=!0,this.columnSelectMode=C,this.viewportStartRow=E,this.viewportEndRow=m,this.viewportCappedStartRow=S,this.viewportCappedEndRow=_,this.startCol=f[0],this.endCol=x[0])}isCellSelected(b,f,x){return!!this.hasSelection&&(x-=b.buffer.active.viewportY,this.columnSelectMode?this.startCol<=this.endCol?f>=this.startCol&&x>=this.viewportCappedStartRow&&f<this.endCol&&x<=this.viewportCappedEndRow:f<this.startCol&&x>=this.viewportCappedStartRow&&f>=this.endCol&&x<=this.viewportCappedEndRow:x>this.viewportStartRow&&x<this.viewportEndRow||this.viewportStartRow===this.viewportEndRow&&x===this.viewportStartRow&&f>=this.startCol&&f<this.endCol||this.viewportStartRow<this.viewportEndRow&&x===this.viewportEndRow&&f<this.endCol||this.viewportStartRow<this.viewportEndRow&&x===this.viewportStartRow&&f>=this.startCol)}}c.createSelectionRenderModel=function(){return new u}},456:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.SelectionModel=void 0,c.SelectionModel=class{constructor(u){this._bufferService=u,this.isSelectAllActive=!1,this.selectionStartLength=0}clearSelection(){this.selectionStart=void 0,this.selectionEnd=void 0,this.isSelectAllActive=!1,this.selectionStartLength=0}get finalSelectionStart(){return this.isSelectAllActive?[0,0]:this.selectionEnd&&this.selectionStart&&this.areSelectionValuesReversed()?this.selectionEnd:this.selectionStart}get finalSelectionEnd(){if(this.isSelectAllActive)return[this._bufferService.cols,this._bufferService.buffer.ybase+this._bufferService.rows-1];if(this.selectionStart){if(!this.selectionEnd||this.areSelectionValuesReversed()){const u=this.selectionStart[0]+this.selectionStartLength;return u>this._bufferService.cols?u%this._bufferService.cols==0?[this._bufferService.cols,this.selectionStart[1]+Math.floor(u/this._bufferService.cols)-1]:[u%this._bufferService.cols,this.selectionStart[1]+Math.floor(u/this._bufferService.cols)]:[u,this.selectionStart[1]]}if(this.selectionStartLength&&this.selectionEnd[1]===this.selectionStart[1]){const u=this.selectionStart[0]+this.selectionStartLength;return u>this._bufferService.cols?[u%this._bufferService.cols,this.selectionStart[1]+Math.floor(u/this._bufferService.cols)]:[Math.max(u,this.selectionEnd[0]),this.selectionEnd[1]]}return this.selectionEnd}}areSelectionValuesReversed(){const u=this.selectionStart,v=this.selectionEnd;return!(!u||!v)&&(u[1]>v[1]||u[1]===v[1]&&u[0]>v[0])}handleTrim(u){return this.selectionStart&&(this.selectionStart[1]-=u),this.selectionEnd&&(this.selectionEnd[1]-=u),this.selectionEnd&&this.selectionEnd[1]<0?(this.clearSelection(),!0):(this.selectionStart&&this.selectionStart[1]<0&&(this.selectionStart[1]=0),!1)}}},428:function(p,c,u){var v=this&&this.__decorate||function(_,y,k,R){var M,j=arguments.length,T=j<3?y:R===null?R=Object.getOwnPropertyDescriptor(y,k):R;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")T=Reflect.decorate(_,y,k,R);else for(var D=_.length-1;D>=0;D--)(M=_[D])&&(T=(j<3?M(T):j>3?M(y,k,T):M(y,k))||T);return j>3&&T&&Object.defineProperty(y,k,T),T},b=this&&this.__param||function(_,y){return function(k,R){y(k,R,_)}};Object.defineProperty(c,"__esModule",{value:!0}),c.CharSizeService=void 0;const f=u(2585),x=u(8460),C=u(844);let A=c.CharSizeService=class extends C.Disposable{get hasValidSize(){return this.width>0&&this.height>0}constructor(_,y,k){super(),this._optionsService=k,this.width=0,this.height=0,this._onCharSizeChange=this.register(new x.EventEmitter),this.onCharSizeChange=this._onCharSizeChange.event;try{this._measureStrategy=this.register(new S(this._optionsService))}catch{this._measureStrategy=this.register(new m(_,y,this._optionsService))}this.register(this._optionsService.onMultipleOptionChange(["fontFamily","fontSize"],(()=>this.measure())))}measure(){const _=this._measureStrategy.measure();_.width===this.width&&_.height===this.height||(this.width=_.width,this.height=_.height,this._onCharSizeChange.fire())}};c.CharSizeService=A=v([b(2,f.IOptionsService)],A);class E extends C.Disposable{constructor(){super(...arguments),this._result={width:0,height:0}}_validateAndSet(y,k){y!==void 0&&y>0&&k!==void 0&&k>0&&(this._result.width=y,this._result.height=k)}}class m extends E{constructor(y,k,R){super(),this._document=y,this._parentElement=k,this._optionsService=R,this._measureElement=this._document.createElement("span"),this._measureElement.classList.add("xterm-char-measure-element"),this._measureElement.textContent="W".repeat(32),this._measureElement.setAttribute("aria-hidden","true"),this._measureElement.style.whiteSpace="pre",this._measureElement.style.fontKerning="none",this._parentElement.appendChild(this._measureElement)}measure(){return this._measureElement.style.fontFamily=this._optionsService.rawOptions.fontFamily,this._measureElement.style.fontSize=`${this._optionsService.rawOptions.fontSize}px`,this._validateAndSet(Number(this._measureElement.offsetWidth)/32,Number(this._measureElement.offsetHeight)),this._result}}class S extends E{constructor(y){super(),this._optionsService=y,this._canvas=new OffscreenCanvas(100,100),this._ctx=this._canvas.getContext("2d");const k=this._ctx.measureText("W");if(!("width"in k&&"fontBoundingBoxAscent"in k&&"fontBoundingBoxDescent"in k))throw new Error("Required font metrics not supported")}measure(){this._ctx.font=`${this._optionsService.rawOptions.fontSize}px ${this._optionsService.rawOptions.fontFamily}`;const y=this._ctx.measureText("W");return this._validateAndSet(y.width,y.fontBoundingBoxAscent+y.fontBoundingBoxDescent),this._result}}},4269:function(p,c,u){var v=this&&this.__decorate||function(S,_,y,k){var R,M=arguments.length,j=M<3?_:k===null?k=Object.getOwnPropertyDescriptor(_,y):k;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")j=Reflect.decorate(S,_,y,k);else for(var T=S.length-1;T>=0;T--)(R=S[T])&&(j=(M<3?R(j):M>3?R(_,y,j):R(_,y))||j);return M>3&&j&&Object.defineProperty(_,y,j),j},b=this&&this.__param||function(S,_){return function(y,k){_(y,k,S)}};Object.defineProperty(c,"__esModule",{value:!0}),c.CharacterJoinerService=c.JoinedCellData=void 0;const f=u(3734),x=u(643),C=u(511),A=u(2585);class E extends f.AttributeData{constructor(_,y,k){super(),this.content=0,this.combinedData="",this.fg=_.fg,this.bg=_.bg,this.combinedData=y,this._width=k}isCombined(){return 2097152}getWidth(){return this._width}getChars(){return this.combinedData}getCode(){return 2097151}setFromCharData(_){throw new Error("not implemented")}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}c.JoinedCellData=E;let m=c.CharacterJoinerService=class qy{constructor(_){this._bufferService=_,this._characterJoiners=[],this._nextCharacterJoinerId=0,this._workCell=new C.CellData}register(_){const y={id:this._nextCharacterJoinerId++,handler:_};return this._characterJoiners.push(y),y.id}deregister(_){for(let y=0;y<this._characterJoiners.length;y++)if(this._characterJoiners[y].id===_)return this._characterJoiners.splice(y,1),!0;return!1}getJoinedCharacters(_){if(this._characterJoiners.length===0)return[];const y=this._bufferService.buffer.lines.get(_);if(!y||y.length===0)return[];const k=[],R=y.translateToString(!0);let M=0,j=0,T=0,D=y.getFg(0),H=y.getBg(0);for(let P=0;P<y.getTrimmedLength();P++)if(y.loadCell(P,this._workCell),this._workCell.getWidth()!==0){if(this._workCell.fg!==D||this._workCell.bg!==H){if(P-M>1){const W=this._getJoinedRanges(R,T,j,y,M);for(let U=0;U<W.length;U++)k.push(W[U])}M=P,T=j,D=this._workCell.fg,H=this._workCell.bg}j+=this._workCell.getChars().length||x.WHITESPACE_CELL_CHAR.length}if(this._bufferService.cols-M>1){const P=this._getJoinedRanges(R,T,j,y,M);for(let W=0;W<P.length;W++)k.push(P[W])}return k}_getJoinedRanges(_,y,k,R,M){const j=_.substring(y,k);let T=[];try{T=this._characterJoiners[0].handler(j)}catch(D){console.error(D)}for(let D=1;D<this._characterJoiners.length;D++)try{const H=this._characterJoiners[D].handler(j);for(let P=0;P<H.length;P++)qy._mergeRanges(T,H[P])}catch(H){console.error(H)}return this._stringRangesToCellRanges(T,R,M),T}_stringRangesToCellRanges(_,y,k){let R=0,M=!1,j=0,T=_[R];if(T){for(let D=k;D<this._bufferService.cols;D++){const H=y.getWidth(D),P=y.getString(D).length||x.WHITESPACE_CELL_CHAR.length;if(H!==0){if(!M&&T[0]<=j&&(T[0]=D,M=!0),T[1]<=j){if(T[1]=D,T=_[++R],!T)break;T[0]<=j?(T[0]=D,M=!0):M=!1}j+=P}}T&&(T[1]=this._bufferService.cols)}}static _mergeRanges(_,y){let k=!1;for(let R=0;R<_.length;R++){const M=_[R];if(k){if(y[1]<=M[0])return _[R-1][1]=y[1],_;if(y[1]<=M[1])return _[R-1][1]=Math.max(y[1],M[1]),_.splice(R,1),_;_.splice(R,1),R--}else{if(y[1]<=M[0])return _.splice(R,0,y),_;if(y[1]<=M[1])return M[0]=Math.min(y[0],M[0]),_;y[0]<M[1]&&(M[0]=Math.min(y[0],M[0]),k=!0)}}return k?_[_.length-1][1]=y[1]:_.push(y),_}};c.CharacterJoinerService=m=v([b(0,A.IBufferService)],m)},5114:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.CoreBrowserService=void 0;const v=u(844),b=u(8460),f=u(3656);class x extends v.Disposable{constructor(E,m,S){super(),this._textarea=E,this._window=m,this.mainDocument=S,this._isFocused=!1,this._cachedIsFocused=void 0,this._screenDprMonitor=new C(this._window),this._onDprChange=this.register(new b.EventEmitter),this.onDprChange=this._onDprChange.event,this._onWindowChange=this.register(new b.EventEmitter),this.onWindowChange=this._onWindowChange.event,this.register(this.onWindowChange((_=>this._screenDprMonitor.setWindow(_)))),this.register((0,b.forwardEvent)(this._screenDprMonitor.onDprChange,this._onDprChange)),this._textarea.addEventListener("focus",(()=>this._isFocused=!0)),this._textarea.addEventListener("blur",(()=>this._isFocused=!1))}get window(){return this._window}set window(E){this._window!==E&&(this._window=E,this._onWindowChange.fire(this._window))}get dpr(){return this.window.devicePixelRatio}get isFocused(){return this._cachedIsFocused===void 0&&(this._cachedIsFocused=this._isFocused&&this._textarea.ownerDocument.hasFocus(),queueMicrotask((()=>this._cachedIsFocused=void 0))),this._cachedIsFocused}}c.CoreBrowserService=x;class C extends v.Disposable{constructor(E){super(),this._parentWindow=E,this._windowResizeListener=this.register(new v.MutableDisposable),this._onDprChange=this.register(new b.EventEmitter),this.onDprChange=this._onDprChange.event,this._outerListener=()=>this._setDprAndFireIfDiffers(),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._updateDpr(),this._setWindowResizeListener(),this.register((0,v.toDisposable)((()=>this.clearListener())))}setWindow(E){this._parentWindow=E,this._setWindowResizeListener(),this._setDprAndFireIfDiffers()}_setWindowResizeListener(){this._windowResizeListener.value=(0,f.addDisposableDomListener)(this._parentWindow,"resize",(()=>this._setDprAndFireIfDiffers()))}_setDprAndFireIfDiffers(){this._parentWindow.devicePixelRatio!==this._currentDevicePixelRatio&&this._onDprChange.fire(this._parentWindow.devicePixelRatio),this._updateDpr()}_updateDpr(){var E;this._outerListener&&((E=this._resolutionMediaMatchList)==null||E.removeListener(this._outerListener),this._currentDevicePixelRatio=this._parentWindow.devicePixelRatio,this._resolutionMediaMatchList=this._parentWindow.matchMedia(`screen and (resolution: ${this._parentWindow.devicePixelRatio}dppx)`),this._resolutionMediaMatchList.addListener(this._outerListener))}clearListener(){this._resolutionMediaMatchList&&this._outerListener&&(this._resolutionMediaMatchList.removeListener(this._outerListener),this._resolutionMediaMatchList=void 0,this._outerListener=void 0)}}},779:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.LinkProviderService=void 0;const v=u(844);class b extends v.Disposable{constructor(){super(),this.linkProviders=[],this.register((0,v.toDisposable)((()=>this.linkProviders.length=0)))}registerLinkProvider(x){return this.linkProviders.push(x),{dispose:()=>{const C=this.linkProviders.indexOf(x);C!==-1&&this.linkProviders.splice(C,1)}}}}c.LinkProviderService=b},8934:function(p,c,u){var v=this&&this.__decorate||function(A,E,m,S){var _,y=arguments.length,k=y<3?E:S===null?S=Object.getOwnPropertyDescriptor(E,m):S;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")k=Reflect.decorate(A,E,m,S);else for(var R=A.length-1;R>=0;R--)(_=A[R])&&(k=(y<3?_(k):y>3?_(E,m,k):_(E,m))||k);return y>3&&k&&Object.defineProperty(E,m,k),k},b=this&&this.__param||function(A,E){return function(m,S){E(m,S,A)}};Object.defineProperty(c,"__esModule",{value:!0}),c.MouseService=void 0;const f=u(4725),x=u(9806);let C=c.MouseService=class{constructor(A,E){this._renderService=A,this._charSizeService=E}getCoords(A,E,m,S,_){return(0,x.getCoords)(window,A,E,m,S,this._charSizeService.hasValidSize,this._renderService.dimensions.css.cell.width,this._renderService.dimensions.css.cell.height,_)}getMouseReportCoords(A,E){const m=(0,x.getCoordsRelativeToElement)(window,A,E);if(this._charSizeService.hasValidSize)return m[0]=Math.min(Math.max(m[0],0),this._renderService.dimensions.css.canvas.width-1),m[1]=Math.min(Math.max(m[1],0),this._renderService.dimensions.css.canvas.height-1),{col:Math.floor(m[0]/this._renderService.dimensions.css.cell.width),row:Math.floor(m[1]/this._renderService.dimensions.css.cell.height),x:Math.floor(m[0]),y:Math.floor(m[1])}}};c.MouseService=C=v([b(0,f.IRenderService),b(1,f.ICharSizeService)],C)},3230:function(p,c,u){var v=this&&this.__decorate||function(_,y,k,R){var M,j=arguments.length,T=j<3?y:R===null?R=Object.getOwnPropertyDescriptor(y,k):R;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")T=Reflect.decorate(_,y,k,R);else for(var D=_.length-1;D>=0;D--)(M=_[D])&&(T=(j<3?M(T):j>3?M(y,k,T):M(y,k))||T);return j>3&&T&&Object.defineProperty(y,k,T),T},b=this&&this.__param||function(_,y){return function(k,R){y(k,R,_)}};Object.defineProperty(c,"__esModule",{value:!0}),c.RenderService=void 0;const f=u(6193),x=u(4725),C=u(8460),A=u(844),E=u(7226),m=u(2585);let S=c.RenderService=class extends A.Disposable{get dimensions(){return this._renderer.value.dimensions}constructor(_,y,k,R,M,j,T,D){super(),this._rowCount=_,this._charSizeService=R,this._renderer=this.register(new A.MutableDisposable),this._pausedResizeTask=new E.DebouncedIdleTask,this._observerDisposable=this.register(new A.MutableDisposable),this._isPaused=!1,this._needsFullRefresh=!1,this._isNextRenderRedrawOnly=!0,this._needsSelectionRefresh=!1,this._canvasWidth=0,this._canvasHeight=0,this._selectionState={start:void 0,end:void 0,columnSelectMode:!1},this._onDimensionsChange=this.register(new C.EventEmitter),this.onDimensionsChange=this._onDimensionsChange.event,this._onRenderedViewportChange=this.register(new C.EventEmitter),this.onRenderedViewportChange=this._onRenderedViewportChange.event,this._onRender=this.register(new C.EventEmitter),this.onRender=this._onRender.event,this._onRefreshRequest=this.register(new C.EventEmitter),this.onRefreshRequest=this._onRefreshRequest.event,this._renderDebouncer=new f.RenderDebouncer(((H,P)=>this._renderRows(H,P)),T),this.register(this._renderDebouncer),this.register(T.onDprChange((()=>this.handleDevicePixelRatioChange()))),this.register(j.onResize((()=>this._fullRefresh()))),this.register(j.buffers.onBufferActivate((()=>{var H;return(H=this._renderer.value)==null?void 0:H.clear()}))),this.register(k.onOptionChange((()=>this._handleOptionsChanged()))),this.register(this._charSizeService.onCharSizeChange((()=>this.handleCharSizeChanged()))),this.register(M.onDecorationRegistered((()=>this._fullRefresh()))),this.register(M.onDecorationRemoved((()=>this._fullRefresh()))),this.register(k.onMultipleOptionChange(["customGlyphs","drawBoldTextInBrightColors","letterSpacing","lineHeight","fontFamily","fontSize","fontWeight","fontWeightBold","minimumContrastRatio","rescaleOverlappingGlyphs"],(()=>{this.clear(),this.handleResize(j.cols,j.rows),this._fullRefresh()}))),this.register(k.onMultipleOptionChange(["cursorBlink","cursorStyle"],(()=>this.refreshRows(j.buffer.y,j.buffer.y,!0)))),this.register(D.onChangeColors((()=>this._fullRefresh()))),this._registerIntersectionObserver(T.window,y),this.register(T.onWindowChange((H=>this._registerIntersectionObserver(H,y))))}_registerIntersectionObserver(_,y){if("IntersectionObserver"in _){const k=new _.IntersectionObserver((R=>this._handleIntersectionChange(R[R.length-1])),{threshold:0});k.observe(y),this._observerDisposable.value=(0,A.toDisposable)((()=>k.disconnect()))}}_handleIntersectionChange(_){this._isPaused=_.isIntersecting===void 0?_.intersectionRatio===0:!_.isIntersecting,this._isPaused||this._charSizeService.hasValidSize||this._charSizeService.measure(),!this._isPaused&&this._needsFullRefresh&&(this._pausedResizeTask.flush(),this.refreshRows(0,this._rowCount-1),this._needsFullRefresh=!1)}refreshRows(_,y,k=!1){this._isPaused?this._needsFullRefresh=!0:(k||(this._isNextRenderRedrawOnly=!1),this._renderDebouncer.refresh(_,y,this._rowCount))}_renderRows(_,y){this._renderer.value&&(_=Math.min(_,this._rowCount-1),y=Math.min(y,this._rowCount-1),this._renderer.value.renderRows(_,y),this._needsSelectionRefresh&&(this._renderer.value.handleSelectionChanged(this._selectionState.start,this._selectionState.end,this._selectionState.columnSelectMode),this._needsSelectionRefresh=!1),this._isNextRenderRedrawOnly||this._onRenderedViewportChange.fire({start:_,end:y}),this._onRender.fire({start:_,end:y}),this._isNextRenderRedrawOnly=!0)}resize(_,y){this._rowCount=y,this._fireOnCanvasResize()}_handleOptionsChanged(){this._renderer.value&&(this.refreshRows(0,this._rowCount-1),this._fireOnCanvasResize())}_fireOnCanvasResize(){this._renderer.value&&(this._renderer.value.dimensions.css.canvas.width===this._canvasWidth&&this._renderer.value.dimensions.css.canvas.height===this._canvasHeight||this._onDimensionsChange.fire(this._renderer.value.dimensions))}hasRenderer(){return!!this._renderer.value}setRenderer(_){this._renderer.value=_,this._renderer.value&&(this._renderer.value.onRequestRedraw((y=>this.refreshRows(y.start,y.end,!0))),this._needsSelectionRefresh=!0,this._fullRefresh())}addRefreshCallback(_){return this._renderDebouncer.addRefreshCallback(_)}_fullRefresh(){this._isPaused?this._needsFullRefresh=!0:this.refreshRows(0,this._rowCount-1)}clearTextureAtlas(){var _,y;this._renderer.value&&((y=(_=this._renderer.value).clearTextureAtlas)==null||y.call(_),this._fullRefresh())}handleDevicePixelRatioChange(){this._charSizeService.measure(),this._renderer.value&&(this._renderer.value.handleDevicePixelRatioChange(),this.refreshRows(0,this._rowCount-1))}handleResize(_,y){this._renderer.value&&(this._isPaused?this._pausedResizeTask.set((()=>{var k;return(k=this._renderer.value)==null?void 0:k.handleResize(_,y)})):this._renderer.value.handleResize(_,y),this._fullRefresh())}handleCharSizeChanged(){var _;(_=this._renderer.value)==null||_.handleCharSizeChanged()}handleBlur(){var _;(_=this._renderer.value)==null||_.handleBlur()}handleFocus(){var _;(_=this._renderer.value)==null||_.handleFocus()}handleSelectionChanged(_,y,k){var R;this._selectionState.start=_,this._selectionState.end=y,this._selectionState.columnSelectMode=k,(R=this._renderer.value)==null||R.handleSelectionChanged(_,y,k)}handleCursorMove(){var _;(_=this._renderer.value)==null||_.handleCursorMove()}clear(){var _;(_=this._renderer.value)==null||_.clear()}};c.RenderService=S=v([b(2,m.IOptionsService),b(3,x.ICharSizeService),b(4,m.IDecorationService),b(5,m.IBufferService),b(6,x.ICoreBrowserService),b(7,x.IThemeService)],S)},9312:function(p,c,u){var v=this&&this.__decorate||function(T,D,H,P){var W,U=arguments.length,Y=U<3?D:P===null?P=Object.getOwnPropertyDescriptor(D,H):P;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")Y=Reflect.decorate(T,D,H,P);else for(var J=T.length-1;J>=0;J--)(W=T[J])&&(Y=(U<3?W(Y):U>3?W(D,H,Y):W(D,H))||Y);return U>3&&Y&&Object.defineProperty(D,H,Y),Y},b=this&&this.__param||function(T,D){return function(H,P){D(H,P,T)}};Object.defineProperty(c,"__esModule",{value:!0}),c.SelectionService=void 0;const f=u(9806),x=u(9504),C=u(456),A=u(4725),E=u(8460),m=u(844),S=u(6114),_=u(4841),y=u(511),k=u(2585),R=" ",M=new RegExp(R,"g");let j=c.SelectionService=class extends m.Disposable{constructor(T,D,H,P,W,U,Y,J,q){super(),this._element=T,this._screenElement=D,this._linkifier=H,this._bufferService=P,this._coreService=W,this._mouseService=U,this._optionsService=Y,this._renderService=J,this._coreBrowserService=q,this._dragScrollAmount=0,this._enabled=!0,this._workCell=new y.CellData,this._mouseDownTimeStamp=0,this._oldHasSelection=!1,this._oldSelectionStart=void 0,this._oldSelectionEnd=void 0,this._onLinuxMouseSelection=this.register(new E.EventEmitter),this.onLinuxMouseSelection=this._onLinuxMouseSelection.event,this._onRedrawRequest=this.register(new E.EventEmitter),this.onRequestRedraw=this._onRedrawRequest.event,this._onSelectionChange=this.register(new E.EventEmitter),this.onSelectionChange=this._onSelectionChange.event,this._onRequestScrollLines=this.register(new E.EventEmitter),this.onRequestScrollLines=this._onRequestScrollLines.event,this._mouseMoveListener=G=>this._handleMouseMove(G),this._mouseUpListener=G=>this._handleMouseUp(G),this._coreService.onUserInput((()=>{this.hasSelection&&this.clearSelection()})),this._trimListener=this._bufferService.buffer.lines.onTrim((G=>this._handleTrim(G))),this.register(this._bufferService.buffers.onBufferActivate((G=>this._handleBufferActivate(G)))),this.enable(),this._model=new C.SelectionModel(this._bufferService),this._activeSelectionMode=0,this.register((0,m.toDisposable)((()=>{this._removeMouseDownListeners()})))}reset(){this.clearSelection()}disable(){this.clearSelection(),this._enabled=!1}enable(){this._enabled=!0}get selectionStart(){return this._model.finalSelectionStart}get selectionEnd(){return this._model.finalSelectionEnd}get hasSelection(){const T=this._model.finalSelectionStart,D=this._model.finalSelectionEnd;return!(!T||!D||T[0]===D[0]&&T[1]===D[1])}get selectionText(){const T=this._model.finalSelectionStart,D=this._model.finalSelectionEnd;if(!T||!D)return"";const H=this._bufferService.buffer,P=[];if(this._activeSelectionMode===3){if(T[0]===D[0])return"";const W=T[0]<D[0]?T[0]:D[0],U=T[0]<D[0]?D[0]:T[0];for(let Y=T[1];Y<=D[1];Y++){const J=H.translateBufferLineToString(Y,!0,W,U);P.push(J)}}else{const W=T[1]===D[1]?D[0]:void 0;P.push(H.translateBufferLineToString(T[1],!0,T[0],W));for(let U=T[1]+1;U<=D[1]-1;U++){const Y=H.lines.get(U),J=H.translateBufferLineToString(U,!0);Y!=null&&Y.isWrapped?P[P.length-1]+=J:P.push(J)}if(T[1]!==D[1]){const U=H.lines.get(D[1]),Y=H.translateBufferLineToString(D[1],!0,0,D[0]);U&&U.isWrapped?P[P.length-1]+=Y:P.push(Y)}}return P.map((W=>W.replace(M," "))).join(S.isWindows?`\r
450
+ `:`
451
+ `)}clearSelection(){this._model.clearSelection(),this._removeMouseDownListeners(),this.refresh(),this._onSelectionChange.fire()}refresh(T){this._refreshAnimationFrame||(this._refreshAnimationFrame=this._coreBrowserService.window.requestAnimationFrame((()=>this._refresh()))),S.isLinux&&T&&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(T){const D=this._getMouseBufferCoords(T),H=this._model.finalSelectionStart,P=this._model.finalSelectionEnd;return!!(H&&P&&D)&&this._areCoordsInSelection(D,H,P)}isCellInSelection(T,D){const H=this._model.finalSelectionStart,P=this._model.finalSelectionEnd;return!(!H||!P)&&this._areCoordsInSelection([T,D],H,P)}_areCoordsInSelection(T,D,H){return T[1]>D[1]&&T[1]<H[1]||D[1]===H[1]&&T[1]===D[1]&&T[0]>=D[0]&&T[0]<H[0]||D[1]<H[1]&&T[1]===H[1]&&T[0]<H[0]||D[1]<H[1]&&T[1]===D[1]&&T[0]>=D[0]}_selectWordAtCursor(T,D){var W,U;const H=(U=(W=this._linkifier.currentLink)==null?void 0:W.link)==null?void 0:U.range;if(H)return this._model.selectionStart=[H.start.x-1,H.start.y-1],this._model.selectionStartLength=(0,_.getRangeLength)(H,this._bufferService.cols),this._model.selectionEnd=void 0,!0;const P=this._getMouseBufferCoords(T);return!!P&&(this._selectWordAt(P,D),this._model.selectionEnd=void 0,!0)}selectAll(){this._model.isSelectAllActive=!0,this.refresh(),this._onSelectionChange.fire()}selectLines(T,D){this._model.clearSelection(),T=Math.max(T,0),D=Math.min(D,this._bufferService.buffer.lines.length-1),this._model.selectionStart=[0,T],this._model.selectionEnd=[this._bufferService.cols,D],this.refresh(),this._onSelectionChange.fire()}_handleTrim(T){this._model.handleTrim(T)&&this.refresh()}_getMouseBufferCoords(T){const D=this._mouseService.getCoords(T,this._screenElement,this._bufferService.cols,this._bufferService.rows,!0);if(D)return D[0]--,D[1]--,D[1]+=this._bufferService.buffer.ydisp,D}_getMouseEventScrollAmount(T){let D=(0,f.getCoordsRelativeToElement)(this._coreBrowserService.window,T,this._screenElement)[1];const H=this._renderService.dimensions.css.canvas.height;return D>=0&&D<=H?0:(D>H&&(D-=H),D=Math.min(Math.max(D,-50),50),D/=50,D/Math.abs(D)+Math.round(14*D))}shouldForceSelection(T){return S.isMac?T.altKey&&this._optionsService.rawOptions.macOptionClickForcesSelection:T.shiftKey}handleMouseDown(T){if(this._mouseDownTimeStamp=T.timeStamp,(T.button!==2||!this.hasSelection)&&T.button===0){if(!this._enabled){if(!this.shouldForceSelection(T))return;T.stopPropagation()}T.preventDefault(),this._dragScrollAmount=0,this._enabled&&T.shiftKey?this._handleIncrementalClick(T):T.detail===1?this._handleSingleClick(T):T.detail===2?this._handleDoubleClick(T):T.detail===3&&this._handleTripleClick(T),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(T){this._model.selectionStart&&(this._model.selectionEnd=this._getMouseBufferCoords(T))}_handleSingleClick(T){if(this._model.selectionStartLength=0,this._model.isSelectAllActive=!1,this._activeSelectionMode=this.shouldColumnSelect(T)?3:0,this._model.selectionStart=this._getMouseBufferCoords(T),!this._model.selectionStart)return;this._model.selectionEnd=void 0;const D=this._bufferService.buffer.lines.get(this._model.selectionStart[1]);D&&D.length!==this._model.selectionStart[0]&&D.hasWidth(this._model.selectionStart[0])===0&&this._model.selectionStart[0]++}_handleDoubleClick(T){this._selectWordAtCursor(T,!0)&&(this._activeSelectionMode=1)}_handleTripleClick(T){const D=this._getMouseBufferCoords(T);D&&(this._activeSelectionMode=2,this._selectLineAt(D[1]))}shouldColumnSelect(T){return T.altKey&&!(S.isMac&&this._optionsService.rawOptions.macOptionClickForcesSelection)}_handleMouseMove(T){if(T.stopImmediatePropagation(),!this._model.selectionStart)return;const D=this._model.selectionEnd?[this._model.selectionEnd[0],this._model.selectionEnd[1]]:null;if(this._model.selectionEnd=this._getMouseBufferCoords(T),!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(T),this._activeSelectionMode!==3&&(this._dragScrollAmount>0?this._model.selectionEnd[0]=this._bufferService.cols:this._dragScrollAmount<0&&(this._model.selectionEnd[0]=0));const H=this._bufferService.buffer;if(this._model.selectionEnd[1]<H.lines.length){const P=H.lines.get(this._model.selectionEnd[1]);P&&P.hasWidth(this._model.selectionEnd[0])===0&&this._model.selectionEnd[0]<this._bufferService.cols&&this._model.selectionEnd[0]++}D&&D[0]===this._model.selectionEnd[0]&&D[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 T=this._bufferService.buffer;this._dragScrollAmount>0?(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=this._bufferService.cols),this._model.selectionEnd[1]=Math.min(T.ydisp+this._bufferService.rows,T.lines.length-1)):(this._activeSelectionMode!==3&&(this._model.selectionEnd[0]=0),this._model.selectionEnd[1]=T.ydisp),this.refresh()}}_handleMouseUp(T){const D=T.timeStamp-this._mouseDownTimeStamp;if(this._removeMouseDownListeners(),this.selectionText.length<=1&&D<500&&T.altKey&&this._optionsService.rawOptions.altClickMovesCursor){if(this._bufferService.buffer.ybase===this._bufferService.buffer.ydisp){const H=this._mouseService.getCoords(T,this._element,this._bufferService.cols,this._bufferService.rows,!1);if(H&&H[0]!==void 0&&H[1]!==void 0){const P=(0,x.moveToCellSequence)(H[0]-1,H[1]-1,this._bufferService,this._coreService.decPrivateModes.applicationCursorKeys);this._coreService.triggerDataEvent(P,!0)}}}else this._fireEventIfSelectionChanged()}_fireEventIfSelectionChanged(){const T=this._model.finalSelectionStart,D=this._model.finalSelectionEnd,H=!(!T||!D||T[0]===D[0]&&T[1]===D[1]);H?T&&D&&(this._oldSelectionStart&&this._oldSelectionEnd&&T[0]===this._oldSelectionStart[0]&&T[1]===this._oldSelectionStart[1]&&D[0]===this._oldSelectionEnd[0]&&D[1]===this._oldSelectionEnd[1]||this._fireOnSelectionChange(T,D,H)):this._oldHasSelection&&this._fireOnSelectionChange(T,D,H)}_fireOnSelectionChange(T,D,H){this._oldSelectionStart=T,this._oldSelectionEnd=D,this._oldHasSelection=H,this._onSelectionChange.fire()}_handleBufferActivate(T){this.clearSelection(),this._trimListener.dispose(),this._trimListener=T.activeBuffer.lines.onTrim((D=>this._handleTrim(D)))}_convertViewportColToCharacterIndex(T,D){let H=D;for(let P=0;D>=P;P++){const W=T.loadCell(P,this._workCell).getChars().length;this._workCell.getWidth()===0?H--:W>1&&D!==P&&(H+=W-1)}return H}setSelection(T,D,H){this._model.clearSelection(),this._removeMouseDownListeners(),this._model.selectionStart=[T,D],this._model.selectionStartLength=H,this.refresh(),this._fireEventIfSelectionChanged()}rightClickSelect(T){this._isClickInSelection(T)||(this._selectWordAtCursor(T,!1)&&this.refresh(!0),this._fireEventIfSelectionChanged())}_getWordAt(T,D,H=!0,P=!0){if(T[0]>=this._bufferService.cols)return;const W=this._bufferService.buffer,U=W.lines.get(T[1]);if(!U)return;const Y=W.translateBufferLineToString(T[1],!1);let J=this._convertViewportColToCharacterIndex(U,T[0]),q=J;const G=T[0]-J;let ee=0,O=0,F=0,L=0;if(Y.charAt(J)===" "){for(;J>0&&Y.charAt(J-1)===" ";)J--;for(;q<Y.length&&Y.charAt(q+1)===" ";)q++}else{let te=T[0],ce=T[0];U.getWidth(te)===0&&(ee++,te--),U.getWidth(ce)===2&&(O++,ce++);const de=U.getString(ce).length;for(de>1&&(L+=de-1,q+=de-1);te>0&&J>0&&!this._isCharWordSeparator(U.loadCell(te-1,this._workCell));){U.loadCell(te-1,this._workCell);const K=this._workCell.getChars().length;this._workCell.getWidth()===0?(ee++,te--):K>1&&(F+=K-1,J-=K-1),J--,te--}for(;ce<U.length&&q+1<Y.length&&!this._isCharWordSeparator(U.loadCell(ce+1,this._workCell));){U.loadCell(ce+1,this._workCell);const K=this._workCell.getChars().length;this._workCell.getWidth()===2?(O++,ce++):K>1&&(L+=K-1,q+=K-1),q++,ce++}}q++;let B=J+G-ee+F,V=Math.min(this._bufferService.cols,q-J+ee+O-F-L);if(D||Y.slice(J,q).trim()!==""){if(H&&B===0&&U.getCodePoint(0)!==32){const te=W.lines.get(T[1]-1);if(te&&U.isWrapped&&te.getCodePoint(this._bufferService.cols-1)!==32){const ce=this._getWordAt([this._bufferService.cols-1,T[1]-1],!1,!0,!1);if(ce){const de=this._bufferService.cols-ce.start;B-=de,V+=de}}}if(P&&B+V===this._bufferService.cols&&U.getCodePoint(this._bufferService.cols-1)!==32){const te=W.lines.get(T[1]+1);if(te!=null&&te.isWrapped&&te.getCodePoint(0)!==32){const ce=this._getWordAt([0,T[1]+1],!1,!1,!0);ce&&(V+=ce.length)}}return{start:B,length:V}}}_selectWordAt(T,D){const H=this._getWordAt(T,D);if(H){for(;H.start<0;)H.start+=this._bufferService.cols,T[1]--;this._model.selectionStart=[H.start,T[1]],this._model.selectionStartLength=H.length}}_selectToWordAt(T){const D=this._getWordAt(T,!0);if(D){let H=T[1];for(;D.start<0;)D.start+=this._bufferService.cols,H--;if(!this._model.areSelectionValuesReversed())for(;D.start+D.length>this._bufferService.cols;)D.length-=this._bufferService.cols,H++;this._model.selectionEnd=[this._model.areSelectionValuesReversed()?D.start:D.start+D.length,H]}}_isCharWordSeparator(T){return T.getWidth()!==0&&this._optionsService.rawOptions.wordSeparator.indexOf(T.getChars())>=0}_selectLineAt(T){const D=this._bufferService.buffer.getWrappedRangeForLine(T),H={start:{x:0,y:D.first},end:{x:this._bufferService.cols-1,y:D.last}};this._model.selectionStart=[0,D.first],this._model.selectionEnd=void 0,this._model.selectionStartLength=(0,_.getRangeLength)(H,this._bufferService.cols)}};c.SelectionService=j=v([b(3,k.IBufferService),b(4,k.ICoreService),b(5,A.IMouseService),b(6,k.IOptionsService),b(7,A.IRenderService),b(8,A.ICoreBrowserService)],j)},4725:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.ILinkProviderService=c.IThemeService=c.ICharacterJoinerService=c.ISelectionService=c.IRenderService=c.IMouseService=c.ICoreBrowserService=c.ICharSizeService=void 0;const v=u(8343);c.ICharSizeService=(0,v.createDecorator)("CharSizeService"),c.ICoreBrowserService=(0,v.createDecorator)("CoreBrowserService"),c.IMouseService=(0,v.createDecorator)("MouseService"),c.IRenderService=(0,v.createDecorator)("RenderService"),c.ISelectionService=(0,v.createDecorator)("SelectionService"),c.ICharacterJoinerService=(0,v.createDecorator)("CharacterJoinerService"),c.IThemeService=(0,v.createDecorator)("ThemeService"),c.ILinkProviderService=(0,v.createDecorator)("LinkProviderService")},6731:function(p,c,u){var v=this&&this.__decorate||function(j,T,D,H){var P,W=arguments.length,U=W<3?T:H===null?H=Object.getOwnPropertyDescriptor(T,D):H;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")U=Reflect.decorate(j,T,D,H);else for(var Y=j.length-1;Y>=0;Y--)(P=j[Y])&&(U=(W<3?P(U):W>3?P(T,D,U):P(T,D))||U);return W>3&&U&&Object.defineProperty(T,D,U),U},b=this&&this.__param||function(j,T){return function(D,H){T(D,H,j)}};Object.defineProperty(c,"__esModule",{value:!0}),c.ThemeService=c.DEFAULT_ANSI_COLORS=void 0;const f=u(7239),x=u(8055),C=u(8460),A=u(844),E=u(2585),m=x.css.toColor("#ffffff"),S=x.css.toColor("#000000"),_=x.css.toColor("#ffffff"),y=x.css.toColor("#000000"),k={css:"rgba(255, 255, 255, 0.3)",rgba:4294967117};c.DEFAULT_ANSI_COLORS=Object.freeze((()=>{const j=[x.css.toColor("#2e3436"),x.css.toColor("#cc0000"),x.css.toColor("#4e9a06"),x.css.toColor("#c4a000"),x.css.toColor("#3465a4"),x.css.toColor("#75507b"),x.css.toColor("#06989a"),x.css.toColor("#d3d7cf"),x.css.toColor("#555753"),x.css.toColor("#ef2929"),x.css.toColor("#8ae234"),x.css.toColor("#fce94f"),x.css.toColor("#729fcf"),x.css.toColor("#ad7fa8"),x.css.toColor("#34e2e2"),x.css.toColor("#eeeeec")],T=[0,95,135,175,215,255];for(let D=0;D<216;D++){const H=T[D/36%6|0],P=T[D/6%6|0],W=T[D%6];j.push({css:x.channels.toCss(H,P,W),rgba:x.channels.toRgba(H,P,W)})}for(let D=0;D<24;D++){const H=8+10*D;j.push({css:x.channels.toCss(H,H,H),rgba:x.channels.toRgba(H,H,H)})}return j})());let R=c.ThemeService=class extends A.Disposable{get colors(){return this._colors}constructor(j){super(),this._optionsService=j,this._contrastCache=new f.ColorContrastCache,this._halfContrastCache=new f.ColorContrastCache,this._onChangeColors=this.register(new C.EventEmitter),this.onChangeColors=this._onChangeColors.event,this._colors={foreground:m,background:S,cursor:_,cursorAccent:y,selectionForeground:void 0,selectionBackgroundTransparent:k,selectionBackgroundOpaque:x.color.blend(S,k),selectionInactiveBackgroundTransparent:k,selectionInactiveBackgroundOpaque:x.color.blend(S,k),ansi:c.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(j={}){const T=this._colors;if(T.foreground=M(j.foreground,m),T.background=M(j.background,S),T.cursor=M(j.cursor,_),T.cursorAccent=M(j.cursorAccent,y),T.selectionBackgroundTransparent=M(j.selectionBackground,k),T.selectionBackgroundOpaque=x.color.blend(T.background,T.selectionBackgroundTransparent),T.selectionInactiveBackgroundTransparent=M(j.selectionInactiveBackground,T.selectionBackgroundTransparent),T.selectionInactiveBackgroundOpaque=x.color.blend(T.background,T.selectionInactiveBackgroundTransparent),T.selectionForeground=j.selectionForeground?M(j.selectionForeground,x.NULL_COLOR):void 0,T.selectionForeground===x.NULL_COLOR&&(T.selectionForeground=void 0),x.color.isOpaque(T.selectionBackgroundTransparent)&&(T.selectionBackgroundTransparent=x.color.opacity(T.selectionBackgroundTransparent,.3)),x.color.isOpaque(T.selectionInactiveBackgroundTransparent)&&(T.selectionInactiveBackgroundTransparent=x.color.opacity(T.selectionInactiveBackgroundTransparent,.3)),T.ansi=c.DEFAULT_ANSI_COLORS.slice(),T.ansi[0]=M(j.black,c.DEFAULT_ANSI_COLORS[0]),T.ansi[1]=M(j.red,c.DEFAULT_ANSI_COLORS[1]),T.ansi[2]=M(j.green,c.DEFAULT_ANSI_COLORS[2]),T.ansi[3]=M(j.yellow,c.DEFAULT_ANSI_COLORS[3]),T.ansi[4]=M(j.blue,c.DEFAULT_ANSI_COLORS[4]),T.ansi[5]=M(j.magenta,c.DEFAULT_ANSI_COLORS[5]),T.ansi[6]=M(j.cyan,c.DEFAULT_ANSI_COLORS[6]),T.ansi[7]=M(j.white,c.DEFAULT_ANSI_COLORS[7]),T.ansi[8]=M(j.brightBlack,c.DEFAULT_ANSI_COLORS[8]),T.ansi[9]=M(j.brightRed,c.DEFAULT_ANSI_COLORS[9]),T.ansi[10]=M(j.brightGreen,c.DEFAULT_ANSI_COLORS[10]),T.ansi[11]=M(j.brightYellow,c.DEFAULT_ANSI_COLORS[11]),T.ansi[12]=M(j.brightBlue,c.DEFAULT_ANSI_COLORS[12]),T.ansi[13]=M(j.brightMagenta,c.DEFAULT_ANSI_COLORS[13]),T.ansi[14]=M(j.brightCyan,c.DEFAULT_ANSI_COLORS[14]),T.ansi[15]=M(j.brightWhite,c.DEFAULT_ANSI_COLORS[15]),j.extendedAnsi){const D=Math.min(T.ansi.length-16,j.extendedAnsi.length);for(let H=0;H<D;H++)T.ansi[H+16]=M(j.extendedAnsi[H],c.DEFAULT_ANSI_COLORS[H+16])}this._contrastCache.clear(),this._halfContrastCache.clear(),this._updateRestoreColors(),this._onChangeColors.fire(this.colors)}restoreColor(j){this._restoreColor(j),this._onChangeColors.fire(this.colors)}_restoreColor(j){if(j!==void 0)switch(j){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[j]=this._restoreColors.ansi[j]}else for(let T=0;T<this._restoreColors.ansi.length;++T)this._colors.ansi[T]=this._restoreColors.ansi[T]}modifyColors(j){j(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 M(j,T){if(j!==void 0)try{return x.css.toColor(j)}catch{}return T}c.ThemeService=R=v([b(0,E.IOptionsService)],R)},6349:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.CircularList=void 0;const v=u(8460),b=u(844);class f extends b.Disposable{constructor(C){super(),this._maxLength=C,this.onDeleteEmitter=this.register(new v.EventEmitter),this.onDelete=this.onDeleteEmitter.event,this.onInsertEmitter=this.register(new v.EventEmitter),this.onInsert=this.onInsertEmitter.event,this.onTrimEmitter=this.register(new v.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(C){if(this._maxLength===C)return;const A=new Array(C);for(let E=0;E<Math.min(C,this.length);E++)A[E]=this._array[this._getCyclicIndex(E)];this._array=A,this._maxLength=C,this._startIndex=0}get length(){return this._length}set length(C){if(C>this._length)for(let A=this._length;A<C;A++)this._array[A]=void 0;this._length=C}get(C){return this._array[this._getCyclicIndex(C)]}set(C,A){this._array[this._getCyclicIndex(C)]=A}push(C){this._array[this._getCyclicIndex(this._length)]=C,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(C,A,...E){if(A){for(let m=C;m<this._length-A;m++)this._array[this._getCyclicIndex(m)]=this._array[this._getCyclicIndex(m+A)];this._length-=A,this.onDeleteEmitter.fire({index:C,amount:A})}for(let m=this._length-1;m>=C;m--)this._array[this._getCyclicIndex(m+E.length)]=this._array[this._getCyclicIndex(m)];for(let m=0;m<E.length;m++)this._array[this._getCyclicIndex(C+m)]=E[m];if(E.length&&this.onInsertEmitter.fire({index:C,amount:E.length}),this._length+E.length>this._maxLength){const m=this._length+E.length-this._maxLength;this._startIndex+=m,this._length=this._maxLength,this.onTrimEmitter.fire(m)}else this._length+=E.length}trimStart(C){C>this._length&&(C=this._length),this._startIndex+=C,this._length-=C,this.onTrimEmitter.fire(C)}shiftElements(C,A,E){if(!(A<=0)){if(C<0||C>=this._length)throw new Error("start argument out of range");if(C+E<0)throw new Error("Cannot shift elements in list beyond index 0");if(E>0){for(let S=A-1;S>=0;S--)this.set(C+S+E,this.get(C+S));const m=C+A+E-this._length;if(m>0)for(this._length+=m;this._length>this._maxLength;)this._length--,this._startIndex++,this.onTrimEmitter.fire(1)}else for(let m=0;m<A;m++)this.set(C+m+E,this.get(C+m))}}_getCyclicIndex(C){return(this._startIndex+C)%this._maxLength}}c.CircularList=f},1439:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.clone=void 0,c.clone=function u(v,b=5){if(typeof v!="object")return v;const f=Array.isArray(v)?[]:{};for(const x in v)f[x]=b<=1?v[x]:v[x]&&u(v[x],b-1);return f}},8055:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.contrastRatio=c.toPaddedHex=c.rgba=c.rgb=c.css=c.color=c.channels=c.NULL_COLOR=void 0;let u=0,v=0,b=0,f=0;var x,C,A,E,m;function S(y){const k=y.toString(16);return k.length<2?"0"+k:k}function _(y,k){return y<k?(k+.05)/(y+.05):(y+.05)/(k+.05)}c.NULL_COLOR={css:"#00000000",rgba:0},(function(y){y.toCss=function(k,R,M,j){return j!==void 0?`#${S(k)}${S(R)}${S(M)}${S(j)}`:`#${S(k)}${S(R)}${S(M)}`},y.toRgba=function(k,R,M,j=255){return(k<<24|R<<16|M<<8|j)>>>0},y.toColor=function(k,R,M,j){return{css:y.toCss(k,R,M,j),rgba:y.toRgba(k,R,M,j)}}})(x||(c.channels=x={})),(function(y){function k(R,M){return f=Math.round(255*M),[u,v,b]=m.toChannels(R.rgba),{css:x.toCss(u,v,b,f),rgba:x.toRgba(u,v,b,f)}}y.blend=function(R,M){if(f=(255&M.rgba)/255,f===1)return{css:M.css,rgba:M.rgba};const j=M.rgba>>24&255,T=M.rgba>>16&255,D=M.rgba>>8&255,H=R.rgba>>24&255,P=R.rgba>>16&255,W=R.rgba>>8&255;return u=H+Math.round((j-H)*f),v=P+Math.round((T-P)*f),b=W+Math.round((D-W)*f),{css:x.toCss(u,v,b),rgba:x.toRgba(u,v,b)}},y.isOpaque=function(R){return(255&R.rgba)==255},y.ensureContrastRatio=function(R,M,j){const T=m.ensureContrastRatio(R.rgba,M.rgba,j);if(T)return x.toColor(T>>24&255,T>>16&255,T>>8&255)},y.opaque=function(R){const M=(255|R.rgba)>>>0;return[u,v,b]=m.toChannels(M),{css:x.toCss(u,v,b),rgba:M}},y.opacity=k,y.multiplyOpacity=function(R,M){return f=255&R.rgba,k(R,f*M/255)},y.toColorRGB=function(R){return[R.rgba>>24&255,R.rgba>>16&255,R.rgba>>8&255]}})(C||(c.color=C={})),(function(y){let k,R;try{const M=document.createElement("canvas");M.width=1,M.height=1;const j=M.getContext("2d",{willReadFrequently:!0});j&&(k=j,k.globalCompositeOperation="copy",R=k.createLinearGradient(0,0,1,1))}catch{}y.toColor=function(M){if(M.match(/#[\da-f]{3,8}/i))switch(M.length){case 4:return u=parseInt(M.slice(1,2).repeat(2),16),v=parseInt(M.slice(2,3).repeat(2),16),b=parseInt(M.slice(3,4).repeat(2),16),x.toColor(u,v,b);case 5:return u=parseInt(M.slice(1,2).repeat(2),16),v=parseInt(M.slice(2,3).repeat(2),16),b=parseInt(M.slice(3,4).repeat(2),16),f=parseInt(M.slice(4,5).repeat(2),16),x.toColor(u,v,b,f);case 7:return{css:M,rgba:(parseInt(M.slice(1),16)<<8|255)>>>0};case 9:return{css:M,rgba:parseInt(M.slice(1),16)>>>0}}const j=M.match(/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*(0|1|\d?\.(\d+))\s*)?\)/);if(j)return u=parseInt(j[1]),v=parseInt(j[2]),b=parseInt(j[3]),f=Math.round(255*(j[5]===void 0?1:parseFloat(j[5]))),x.toColor(u,v,b,f);if(!k||!R)throw new Error("css.toColor: Unsupported css format");if(k.fillStyle=R,k.fillStyle=M,typeof k.fillStyle!="string")throw new Error("css.toColor: Unsupported css format");if(k.fillRect(0,0,1,1),[u,v,b,f]=k.getImageData(0,0,1,1).data,f!==255)throw new Error("css.toColor: Unsupported css format");return{rgba:x.toRgba(u,v,b,f),css:M}}})(A||(c.css=A={})),(function(y){function k(R,M,j){const T=R/255,D=M/255,H=j/255;return .2126*(T<=.03928?T/12.92:Math.pow((T+.055)/1.055,2.4))+.7152*(D<=.03928?D/12.92:Math.pow((D+.055)/1.055,2.4))+.0722*(H<=.03928?H/12.92:Math.pow((H+.055)/1.055,2.4))}y.relativeLuminance=function(R){return k(R>>16&255,R>>8&255,255&R)},y.relativeLuminance2=k})(E||(c.rgb=E={})),(function(y){function k(M,j,T){const D=M>>24&255,H=M>>16&255,P=M>>8&255;let W=j>>24&255,U=j>>16&255,Y=j>>8&255,J=_(E.relativeLuminance2(W,U,Y),E.relativeLuminance2(D,H,P));for(;J<T&&(W>0||U>0||Y>0);)W-=Math.max(0,Math.ceil(.1*W)),U-=Math.max(0,Math.ceil(.1*U)),Y-=Math.max(0,Math.ceil(.1*Y)),J=_(E.relativeLuminance2(W,U,Y),E.relativeLuminance2(D,H,P));return(W<<24|U<<16|Y<<8|255)>>>0}function R(M,j,T){const D=M>>24&255,H=M>>16&255,P=M>>8&255;let W=j>>24&255,U=j>>16&255,Y=j>>8&255,J=_(E.relativeLuminance2(W,U,Y),E.relativeLuminance2(D,H,P));for(;J<T&&(W<255||U<255||Y<255);)W=Math.min(255,W+Math.ceil(.1*(255-W))),U=Math.min(255,U+Math.ceil(.1*(255-U))),Y=Math.min(255,Y+Math.ceil(.1*(255-Y))),J=_(E.relativeLuminance2(W,U,Y),E.relativeLuminance2(D,H,P));return(W<<24|U<<16|Y<<8|255)>>>0}y.blend=function(M,j){if(f=(255&j)/255,f===1)return j;const T=j>>24&255,D=j>>16&255,H=j>>8&255,P=M>>24&255,W=M>>16&255,U=M>>8&255;return u=P+Math.round((T-P)*f),v=W+Math.round((D-W)*f),b=U+Math.round((H-U)*f),x.toRgba(u,v,b)},y.ensureContrastRatio=function(M,j,T){const D=E.relativeLuminance(M>>8),H=E.relativeLuminance(j>>8);if(_(D,H)<T){if(H<D){const U=k(M,j,T),Y=_(D,E.relativeLuminance(U>>8));if(Y<T){const J=R(M,j,T);return Y>_(D,E.relativeLuminance(J>>8))?U:J}return U}const P=R(M,j,T),W=_(D,E.relativeLuminance(P>>8));if(W<T){const U=k(M,j,T);return W>_(D,E.relativeLuminance(U>>8))?P:U}return P}},y.reduceLuminance=k,y.increaseLuminance=R,y.toChannels=function(M){return[M>>24&255,M>>16&255,M>>8&255,255&M]}})(m||(c.rgba=m={})),c.toPaddedHex=S,c.contrastRatio=_},8969:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.CoreTerminal=void 0;const v=u(844),b=u(2585),f=u(4348),x=u(7866),C=u(744),A=u(7302),E=u(6975),m=u(8460),S=u(1753),_=u(1480),y=u(7994),k=u(9282),R=u(5435),M=u(5981),j=u(2660);let T=!1;class D extends v.Disposable{get onScroll(){return this._onScrollApi||(this._onScrollApi=this.register(new m.EventEmitter),this._onScroll.event((P=>{var W;(W=this._onScrollApi)==null||W.fire(P.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(P){for(const W in P)this.optionsService.options[W]=P[W]}constructor(P){super(),this._windowsWrappingHeuristics=this.register(new v.MutableDisposable),this._onBinary=this.register(new m.EventEmitter),this.onBinary=this._onBinary.event,this._onData=this.register(new m.EventEmitter),this.onData=this._onData.event,this._onLineFeed=this.register(new m.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onResize=this.register(new m.EventEmitter),this.onResize=this._onResize.event,this._onWriteParsed=this.register(new m.EventEmitter),this.onWriteParsed=this._onWriteParsed.event,this._onScroll=this.register(new m.EventEmitter),this._instantiationService=new f.InstantiationService,this.optionsService=this.register(new A.OptionsService(P)),this._instantiationService.setService(b.IOptionsService,this.optionsService),this._bufferService=this.register(this._instantiationService.createInstance(C.BufferService)),this._instantiationService.setService(b.IBufferService,this._bufferService),this._logService=this.register(this._instantiationService.createInstance(x.LogService)),this._instantiationService.setService(b.ILogService,this._logService),this.coreService=this.register(this._instantiationService.createInstance(E.CoreService)),this._instantiationService.setService(b.ICoreService,this.coreService),this.coreMouseService=this.register(this._instantiationService.createInstance(S.CoreMouseService)),this._instantiationService.setService(b.ICoreMouseService,this.coreMouseService),this.unicodeService=this.register(this._instantiationService.createInstance(_.UnicodeService)),this._instantiationService.setService(b.IUnicodeService,this.unicodeService),this._charsetService=this._instantiationService.createInstance(y.CharsetService),this._instantiationService.setService(b.ICharsetService,this._charsetService),this._oscLinkService=this._instantiationService.createInstance(j.OscLinkService),this._instantiationService.setService(b.IOscLinkService,this._oscLinkService),this._inputHandler=this.register(new R.InputHandler(this._bufferService,this._charsetService,this.coreService,this._logService,this.optionsService,this._oscLinkService,this.coreMouseService,this.unicodeService)),this.register((0,m.forwardEvent)(this._inputHandler.onLineFeed,this._onLineFeed)),this.register(this._inputHandler),this.register((0,m.forwardEvent)(this._bufferService.onResize,this._onResize)),this.register((0,m.forwardEvent)(this.coreService.onData,this._onData)),this.register((0,m.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((W=>{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((W=>{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 M.WriteBuffer(((W,U)=>this._inputHandler.parse(W,U)))),this.register((0,m.forwardEvent)(this._writeBuffer.onWriteParsed,this._onWriteParsed))}write(P,W){this._writeBuffer.write(P,W)}writeSync(P,W){this._logService.logLevel<=b.LogLevelEnum.WARN&&!T&&(this._logService.warn("writeSync is unreliable and will be removed soon."),T=!0),this._writeBuffer.writeSync(P,W)}input(P,W=!0){this.coreService.triggerDataEvent(P,W)}resize(P,W){isNaN(P)||isNaN(W)||(P=Math.max(P,C.MINIMUM_COLS),W=Math.max(W,C.MINIMUM_ROWS),this._bufferService.resize(P,W))}scroll(P,W=!1){this._bufferService.scroll(P,W)}scrollLines(P,W,U){this._bufferService.scrollLines(P,W,U)}scrollPages(P){this.scrollLines(P*(this.rows-1))}scrollToTop(){this.scrollLines(-this._bufferService.buffer.ydisp)}scrollToBottom(){this.scrollLines(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp)}scrollToLine(P){const W=P-this._bufferService.buffer.ydisp;W!==0&&this.scrollLines(W)}registerEscHandler(P,W){return this._inputHandler.registerEscHandler(P,W)}registerDcsHandler(P,W){return this._inputHandler.registerDcsHandler(P,W)}registerCsiHandler(P,W){return this._inputHandler.registerCsiHandler(P,W)}registerOscHandler(P,W){return this._inputHandler.registerOscHandler(P,W)}_setup(){this._handleWindowsPtyOptionChange()}reset(){this._inputHandler.reset(),this._bufferService.reset(),this._charsetService.reset(),this.coreService.reset(),this.coreMouseService.reset()}_handleWindowsPtyOptionChange(){let P=!1;const W=this.optionsService.rawOptions.windowsPty;W&&W.buildNumber!==void 0&&W.buildNumber!==void 0?P=W.backend==="conpty"&&W.buildNumber<21376:this.optionsService.rawOptions.windowsMode&&(P=!0),P?this._enableWindowsWrappingHeuristics():this._windowsWrappingHeuristics.clear()}_enableWindowsWrappingHeuristics(){if(!this._windowsWrappingHeuristics.value){const P=[];P.push(this.onLineFeed(k.updateWindowsModeWrappedState.bind(null,this._bufferService))),P.push(this.registerCsiHandler({final:"H"},(()=>((0,k.updateWindowsModeWrappedState)(this._bufferService),!1)))),this._windowsWrappingHeuristics.value=(0,v.toDisposable)((()=>{for(const W of P)W.dispose()}))}}}c.CoreTerminal=D},8460:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.runAndSubscribe=c.forwardEvent=c.EventEmitter=void 0,c.EventEmitter=class{constructor(){this._listeners=[],this._disposed=!1}get event(){return this._event||(this._event=u=>(this._listeners.push(u),{dispose:()=>{if(!this._disposed){for(let v=0;v<this._listeners.length;v++)if(this._listeners[v]===u)return void this._listeners.splice(v,1)}}})),this._event}fire(u,v){const b=[];for(let f=0;f<this._listeners.length;f++)b.push(this._listeners[f]);for(let f=0;f<b.length;f++)b[f].call(void 0,u,v)}dispose(){this.clearListeners(),this._disposed=!0}clearListeners(){this._listeners&&(this._listeners.length=0)}},c.forwardEvent=function(u,v){return u((b=>v.fire(b)))},c.runAndSubscribe=function(u,v){return v(void 0),u((b=>v(b)))}},5435:function(p,c,u){var v=this&&this.__decorate||function(ee,O,F,L){var B,V=arguments.length,te=V<3?O:L===null?L=Object.getOwnPropertyDescriptor(O,F):L;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")te=Reflect.decorate(ee,O,F,L);else for(var ce=ee.length-1;ce>=0;ce--)(B=ee[ce])&&(te=(V<3?B(te):V>3?B(O,F,te):B(O,F))||te);return V>3&&te&&Object.defineProperty(O,F,te),te},b=this&&this.__param||function(ee,O){return function(F,L){O(F,L,ee)}};Object.defineProperty(c,"__esModule",{value:!0}),c.InputHandler=c.WindowsOptionsReportType=void 0;const f=u(2584),x=u(7116),C=u(2015),A=u(844),E=u(482),m=u(8437),S=u(8460),_=u(643),y=u(511),k=u(3734),R=u(2585),M=u(1480),j=u(6242),T=u(6351),D=u(5941),H={"(":0,")":1,"*":2,"+":3,"-":1,".":2},P=131072;function W(ee,O){if(ee>24)return O.setWinLines||!1;switch(ee){case 1:return!!O.restoreWin;case 2:return!!O.minimizeWin;case 3:return!!O.setWinPosition;case 4:return!!O.setWinSizePixels;case 5:return!!O.raiseWin;case 6:return!!O.lowerWin;case 7:return!!O.refreshWin;case 8:return!!O.setWinSizeChars;case 9:return!!O.maximizeWin;case 10:return!!O.fullscreenWin;case 11:return!!O.getWinState;case 13:return!!O.getWinPosition;case 14:return!!O.getWinSizePixels;case 15:return!!O.getScreenSizePixels;case 16:return!!O.getCellSizePixels;case 18:return!!O.getWinSizeChars;case 19:return!!O.getScreenSizeChars;case 20:return!!O.getIconTitle;case 21:return!!O.getWinTitle;case 22:return!!O.pushTitle;case 23:return!!O.popTitle;case 24:return!!O.setWinLines}return!1}var U;(function(ee){ee[ee.GET_WIN_SIZE_PIXELS=0]="GET_WIN_SIZE_PIXELS",ee[ee.GET_CELL_SIZE_PIXELS=1]="GET_CELL_SIZE_PIXELS"})(U||(c.WindowsOptionsReportType=U={}));let Y=0;class J extends A.Disposable{getAttrData(){return this._curAttrData}constructor(O,F,L,B,V,te,ce,de,K=new C.EscapeSequenceParser){super(),this._bufferService=O,this._charsetService=F,this._coreService=L,this._logService=B,this._optionsService=V,this._oscLinkService=te,this._coreMouseService=ce,this._unicodeService=de,this._parser=K,this._parseBuffer=new Uint32Array(4096),this._stringDecoder=new E.StringToUtf32,this._utf8Decoder=new E.Utf8ToUtf32,this._workCell=new y.CellData,this._windowTitle="",this._iconName="",this._windowTitleStack=[],this._iconNameStack=[],this._curAttrData=m.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=m.DEFAULT_ATTR_DATA.clone(),this._onRequestBell=this.register(new S.EventEmitter),this.onRequestBell=this._onRequestBell.event,this._onRequestRefreshRows=this.register(new S.EventEmitter),this.onRequestRefreshRows=this._onRequestRefreshRows.event,this._onRequestReset=this.register(new S.EventEmitter),this.onRequestReset=this._onRequestReset.event,this._onRequestSendFocus=this.register(new S.EventEmitter),this.onRequestSendFocus=this._onRequestSendFocus.event,this._onRequestSyncScrollBar=this.register(new S.EventEmitter),this.onRequestSyncScrollBar=this._onRequestSyncScrollBar.event,this._onRequestWindowsOptionsReport=this.register(new S.EventEmitter),this.onRequestWindowsOptionsReport=this._onRequestWindowsOptionsReport.event,this._onA11yChar=this.register(new S.EventEmitter),this.onA11yChar=this._onA11yChar.event,this._onA11yTab=this.register(new S.EventEmitter),this.onA11yTab=this._onA11yTab.event,this._onCursorMove=this.register(new S.EventEmitter),this.onCursorMove=this._onCursorMove.event,this._onLineFeed=this.register(new S.EventEmitter),this.onLineFeed=this._onLineFeed.event,this._onScroll=this.register(new S.EventEmitter),this.onScroll=this._onScroll.event,this._onTitleChange=this.register(new S.EventEmitter),this.onTitleChange=this._onTitleChange.event,this._onColor=this.register(new S.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 q(this._bufferService),this._activeBuffer=this._bufferService.buffer,this.register(this._bufferService.buffers.onBufferActivate((I=>this._activeBuffer=I.activeBuffer))),this._parser.setCsiHandlerFallback(((I,ue)=>{this._logService.debug("Unknown CSI code: ",{identifier:this._parser.identToString(I),params:ue.toArray()})})),this._parser.setEscHandlerFallback((I=>{this._logService.debug("Unknown ESC code: ",{identifier:this._parser.identToString(I)})})),this._parser.setExecuteHandlerFallback((I=>{this._logService.debug("Unknown EXECUTE code: ",{code:I})})),this._parser.setOscHandlerFallback(((I,ue,ie)=>{this._logService.debug("Unknown OSC code: ",{identifier:I,action:ue,data:ie})})),this._parser.setDcsHandlerFallback(((I,ue,ie)=>{ue==="HOOK"&&(ie=ie.toArray()),this._logService.debug("Unknown DCS code: ",{identifier:this._parser.identToString(I),action:ue,payload:ie})})),this._parser.setPrintHandler(((I,ue,ie)=>this.print(I,ue,ie))),this._parser.registerCsiHandler({final:"@"},(I=>this.insertChars(I))),this._parser.registerCsiHandler({intermediates:" ",final:"@"},(I=>this.scrollLeft(I))),this._parser.registerCsiHandler({final:"A"},(I=>this.cursorUp(I))),this._parser.registerCsiHandler({intermediates:" ",final:"A"},(I=>this.scrollRight(I))),this._parser.registerCsiHandler({final:"B"},(I=>this.cursorDown(I))),this._parser.registerCsiHandler({final:"C"},(I=>this.cursorForward(I))),this._parser.registerCsiHandler({final:"D"},(I=>this.cursorBackward(I))),this._parser.registerCsiHandler({final:"E"},(I=>this.cursorNextLine(I))),this._parser.registerCsiHandler({final:"F"},(I=>this.cursorPrecedingLine(I))),this._parser.registerCsiHandler({final:"G"},(I=>this.cursorCharAbsolute(I))),this._parser.registerCsiHandler({final:"H"},(I=>this.cursorPosition(I))),this._parser.registerCsiHandler({final:"I"},(I=>this.cursorForwardTab(I))),this._parser.registerCsiHandler({final:"J"},(I=>this.eraseInDisplay(I,!1))),this._parser.registerCsiHandler({prefix:"?",final:"J"},(I=>this.eraseInDisplay(I,!0))),this._parser.registerCsiHandler({final:"K"},(I=>this.eraseInLine(I,!1))),this._parser.registerCsiHandler({prefix:"?",final:"K"},(I=>this.eraseInLine(I,!0))),this._parser.registerCsiHandler({final:"L"},(I=>this.insertLines(I))),this._parser.registerCsiHandler({final:"M"},(I=>this.deleteLines(I))),this._parser.registerCsiHandler({final:"P"},(I=>this.deleteChars(I))),this._parser.registerCsiHandler({final:"S"},(I=>this.scrollUp(I))),this._parser.registerCsiHandler({final:"T"},(I=>this.scrollDown(I))),this._parser.registerCsiHandler({final:"X"},(I=>this.eraseChars(I))),this._parser.registerCsiHandler({final:"Z"},(I=>this.cursorBackwardTab(I))),this._parser.registerCsiHandler({final:"`"},(I=>this.charPosAbsolute(I))),this._parser.registerCsiHandler({final:"a"},(I=>this.hPositionRelative(I))),this._parser.registerCsiHandler({final:"b"},(I=>this.repeatPrecedingCharacter(I))),this._parser.registerCsiHandler({final:"c"},(I=>this.sendDeviceAttributesPrimary(I))),this._parser.registerCsiHandler({prefix:">",final:"c"},(I=>this.sendDeviceAttributesSecondary(I))),this._parser.registerCsiHandler({final:"d"},(I=>this.linePosAbsolute(I))),this._parser.registerCsiHandler({final:"e"},(I=>this.vPositionRelative(I))),this._parser.registerCsiHandler({final:"f"},(I=>this.hVPosition(I))),this._parser.registerCsiHandler({final:"g"},(I=>this.tabClear(I))),this._parser.registerCsiHandler({final:"h"},(I=>this.setMode(I))),this._parser.registerCsiHandler({prefix:"?",final:"h"},(I=>this.setModePrivate(I))),this._parser.registerCsiHandler({final:"l"},(I=>this.resetMode(I))),this._parser.registerCsiHandler({prefix:"?",final:"l"},(I=>this.resetModePrivate(I))),this._parser.registerCsiHandler({final:"m"},(I=>this.charAttributes(I))),this._parser.registerCsiHandler({final:"n"},(I=>this.deviceStatus(I))),this._parser.registerCsiHandler({prefix:"?",final:"n"},(I=>this.deviceStatusPrivate(I))),this._parser.registerCsiHandler({intermediates:"!",final:"p"},(I=>this.softReset(I))),this._parser.registerCsiHandler({intermediates:" ",final:"q"},(I=>this.setCursorStyle(I))),this._parser.registerCsiHandler({final:"r"},(I=>this.setScrollRegion(I))),this._parser.registerCsiHandler({final:"s"},(I=>this.saveCursor(I))),this._parser.registerCsiHandler({final:"t"},(I=>this.windowOptions(I))),this._parser.registerCsiHandler({final:"u"},(I=>this.restoreCursor(I))),this._parser.registerCsiHandler({intermediates:"'",final:"}"},(I=>this.insertColumns(I))),this._parser.registerCsiHandler({intermediates:"'",final:"~"},(I=>this.deleteColumns(I))),this._parser.registerCsiHandler({intermediates:'"',final:"q"},(I=>this.selectProtected(I))),this._parser.registerCsiHandler({intermediates:"$",final:"p"},(I=>this.requestMode(I,!0))),this._parser.registerCsiHandler({prefix:"?",intermediates:"$",final:"p"},(I=>this.requestMode(I,!1))),this._parser.setExecuteHandler(f.C0.BEL,(()=>this.bell())),this._parser.setExecuteHandler(f.C0.LF,(()=>this.lineFeed())),this._parser.setExecuteHandler(f.C0.VT,(()=>this.lineFeed())),this._parser.setExecuteHandler(f.C0.FF,(()=>this.lineFeed())),this._parser.setExecuteHandler(f.C0.CR,(()=>this.carriageReturn())),this._parser.setExecuteHandler(f.C0.BS,(()=>this.backspace())),this._parser.setExecuteHandler(f.C0.HT,(()=>this.tab())),this._parser.setExecuteHandler(f.C0.SO,(()=>this.shiftOut())),this._parser.setExecuteHandler(f.C0.SI,(()=>this.shiftIn())),this._parser.setExecuteHandler(f.C1.IND,(()=>this.index())),this._parser.setExecuteHandler(f.C1.NEL,(()=>this.nextLine())),this._parser.setExecuteHandler(f.C1.HTS,(()=>this.tabSet())),this._parser.registerOscHandler(0,new j.OscHandler((I=>(this.setTitle(I),this.setIconName(I),!0)))),this._parser.registerOscHandler(1,new j.OscHandler((I=>this.setIconName(I)))),this._parser.registerOscHandler(2,new j.OscHandler((I=>this.setTitle(I)))),this._parser.registerOscHandler(4,new j.OscHandler((I=>this.setOrReportIndexedColor(I)))),this._parser.registerOscHandler(8,new j.OscHandler((I=>this.setHyperlink(I)))),this._parser.registerOscHandler(10,new j.OscHandler((I=>this.setOrReportFgColor(I)))),this._parser.registerOscHandler(11,new j.OscHandler((I=>this.setOrReportBgColor(I)))),this._parser.registerOscHandler(12,new j.OscHandler((I=>this.setOrReportCursorColor(I)))),this._parser.registerOscHandler(104,new j.OscHandler((I=>this.restoreIndexedColor(I)))),this._parser.registerOscHandler(110,new j.OscHandler((I=>this.restoreFgColor(I)))),this._parser.registerOscHandler(111,new j.OscHandler((I=>this.restoreBgColor(I)))),this._parser.registerOscHandler(112,new j.OscHandler((I=>this.restoreCursorColor(I)))),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 I in x.CHARSETS)this._parser.registerEscHandler({intermediates:"(",final:I},(()=>this.selectCharset("("+I))),this._parser.registerEscHandler({intermediates:")",final:I},(()=>this.selectCharset(")"+I))),this._parser.registerEscHandler({intermediates:"*",final:I},(()=>this.selectCharset("*"+I))),this._parser.registerEscHandler({intermediates:"+",final:I},(()=>this.selectCharset("+"+I))),this._parser.registerEscHandler({intermediates:"-",final:I},(()=>this.selectCharset("-"+I))),this._parser.registerEscHandler({intermediates:".",final:I},(()=>this.selectCharset("."+I))),this._parser.registerEscHandler({intermediates:"/",final:I},(()=>this.selectCharset("/"+I)));this._parser.registerEscHandler({intermediates:"#",final:"8"},(()=>this.screenAlignmentPattern())),this._parser.setErrorHandler((I=>(this._logService.error("Parsing error: ",I),I))),this._parser.registerDcsHandler({intermediates:"$",final:"q"},new T.DcsHandler(((I,ue)=>this.requestStatusString(I,ue))))}_preserveStack(O,F,L,B){this._parseStack.paused=!0,this._parseStack.cursorStartX=O,this._parseStack.cursorStartY=F,this._parseStack.decodedLength=L,this._parseStack.position=B}_logSlowResolvingAsync(O){this._logService.logLevel<=R.LogLevelEnum.WARN&&Promise.race([O,new Promise(((F,L)=>setTimeout((()=>L("#SLOW_TIMEOUT")),5e3)))]).catch((F=>{if(F!=="#SLOW_TIMEOUT")throw F;console.warn("async parser handler taking longer than 5000 ms")}))}_getCurrentLinkId(){return this._curAttrData.extended.urlId}parse(O,F){let L,B=this._activeBuffer.x,V=this._activeBuffer.y,te=0;const ce=this._parseStack.paused;if(ce){if(L=this._parser.parse(this._parseBuffer,this._parseStack.decodedLength,F))return this._logSlowResolvingAsync(L),L;B=this._parseStack.cursorStartX,V=this._parseStack.cursorStartY,this._parseStack.paused=!1,O.length>P&&(te=this._parseStack.position+P)}if(this._logService.logLevel<=R.LogLevelEnum.DEBUG&&this._logService.debug("parsing data"+(typeof O=="string"?` "${O}"`:` "${Array.prototype.map.call(O,(I=>String.fromCharCode(I))).join("")}"`),typeof O=="string"?O.split("").map((I=>I.charCodeAt(0))):O),this._parseBuffer.length<O.length&&this._parseBuffer.length<P&&(this._parseBuffer=new Uint32Array(Math.min(O.length,P))),ce||this._dirtyRowTracker.clearRange(),O.length>P)for(let I=te;I<O.length;I+=P){const ue=I+P<O.length?I+P:O.length,ie=typeof O=="string"?this._stringDecoder.decode(O.substring(I,ue),this._parseBuffer):this._utf8Decoder.decode(O.subarray(I,ue),this._parseBuffer);if(L=this._parser.parse(this._parseBuffer,ie))return this._preserveStack(B,V,ie,I),this._logSlowResolvingAsync(L),L}else if(!ce){const I=typeof O=="string"?this._stringDecoder.decode(O,this._parseBuffer):this._utf8Decoder.decode(O,this._parseBuffer);if(L=this._parser.parse(this._parseBuffer,I))return this._preserveStack(B,V,I,0),this._logSlowResolvingAsync(L),L}this._activeBuffer.x===B&&this._activeBuffer.y===V||this._onCursorMove.fire();const de=this._dirtyRowTracker.end+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp),K=this._dirtyRowTracker.start+(this._bufferService.buffer.ybase-this._bufferService.buffer.ydisp);K<this._bufferService.rows&&this._onRequestRefreshRows.fire(Math.min(K,this._bufferService.rows-1),Math.min(de,this._bufferService.rows-1))}print(O,F,L){let B,V;const te=this._charsetService.charset,ce=this._optionsService.rawOptions.screenReaderMode,de=this._bufferService.cols,K=this._coreService.decPrivateModes.wraparound,I=this._coreService.modes.insertMode,ue=this._curAttrData;let ie=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._activeBuffer.x&&L-F>0&&ie.getWidth(this._activeBuffer.x-1)===2&&ie.setCellFromCodepoint(this._activeBuffer.x-1,0,1,ue);let we=this._parser.precedingJoinState;for(let fe=F;fe<L;++fe){if(B=O[fe],B<127&&te){const Ie=te[String.fromCharCode(B)];Ie&&(B=Ie.charCodeAt(0))}const $e=this._unicodeService.charProperties(B,we);V=M.UnicodeService.extractWidth($e);const De=M.UnicodeService.extractShouldJoin($e),Ke=De?M.UnicodeService.extractWidth(we):0;if(we=$e,ce&&this._onA11yChar.fire((0,E.stringFromCodePoint)(B)),this._getCurrentLinkId()&&this._oscLinkService.addLineToLink(this._getCurrentLinkId(),this._activeBuffer.ybase+this._activeBuffer.y),this._activeBuffer.x+V-Ke>de){if(K){const Ie=ie;let Le=this._activeBuffer.x-Ke;for(this._activeBuffer.x=Ke,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),ie=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y),Ke>0&&ie instanceof m.BufferLine&&ie.copyCellsFrom(Ie,Le,0,Ke,!1);Le<de;)Ie.setCellFromCodepoint(Le++,0,1,ue)}else if(this._activeBuffer.x=de-1,V===2)continue}if(De&&this._activeBuffer.x){const Ie=ie.getWidth(this._activeBuffer.x-1)?1:2;ie.addCodepointToCell(this._activeBuffer.x-Ie,B,V);for(let Le=V-Ke;--Le>=0;)ie.setCellFromCodepoint(this._activeBuffer.x++,0,0,ue)}else if(I&&(ie.insertCells(this._activeBuffer.x,V-Ke,this._activeBuffer.getNullCell(ue)),ie.getWidth(de-1)===2&&ie.setCellFromCodepoint(de-1,_.NULL_CELL_CODE,_.NULL_CELL_WIDTH,ue)),ie.setCellFromCodepoint(this._activeBuffer.x++,B,V,ue),V>0)for(;--V;)ie.setCellFromCodepoint(this._activeBuffer.x++,0,0,ue)}this._parser.precedingJoinState=we,this._activeBuffer.x<de&&L-F>0&&ie.getWidth(this._activeBuffer.x)===0&&!ie.hasContent(this._activeBuffer.x)&&ie.setCellFromCodepoint(this._activeBuffer.x,0,1,ue),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}registerCsiHandler(O,F){return O.final!=="t"||O.prefix||O.intermediates?this._parser.registerCsiHandler(O,F):this._parser.registerCsiHandler(O,(L=>!W(L.params[0],this._optionsService.rawOptions.windowOptions)||F(L)))}registerDcsHandler(O,F){return this._parser.registerDcsHandler(O,new T.DcsHandler(F))}registerEscHandler(O,F){return this._parser.registerEscHandler(O,F)}registerOscHandler(O,F){return this._parser.registerOscHandler(O,new j.OscHandler(F))}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(){var O;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&&((O=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y))!=null&&O.isWrapped)){this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).isWrapped=!1,this._activeBuffer.y--,this._activeBuffer.x=this._bufferService.cols-1;const F=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);F.hasWidth(this._activeBuffer.x)&&!F.hasContent(this._activeBuffer.x)&&this._activeBuffer.x--}return this._restrictCursor(),!0}tab(){if(this._activeBuffer.x>=this._bufferService.cols)return!0;const O=this._activeBuffer.x;return this._activeBuffer.x=this._activeBuffer.nextStop(),this._optionsService.rawOptions.screenReaderMode&&this._onA11yTab.fire(this._activeBuffer.x-O),!0}shiftOut(){return this._charsetService.setgLevel(1),!0}shiftIn(){return this._charsetService.setgLevel(0),!0}_restrictCursor(O=this._bufferService.cols-1){this._activeBuffer.x=Math.min(O,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(O,F){this._dirtyRowTracker.markDirty(this._activeBuffer.y),this._coreService.decPrivateModes.origin?(this._activeBuffer.x=O,this._activeBuffer.y=this._activeBuffer.scrollTop+F):(this._activeBuffer.x=O,this._activeBuffer.y=F),this._restrictCursor(),this._dirtyRowTracker.markDirty(this._activeBuffer.y)}_moveCursor(O,F){this._restrictCursor(),this._setCursor(this._activeBuffer.x+O,this._activeBuffer.y+F)}cursorUp(O){const F=this._activeBuffer.y-this._activeBuffer.scrollTop;return F>=0?this._moveCursor(0,-Math.min(F,O.params[0]||1)):this._moveCursor(0,-(O.params[0]||1)),!0}cursorDown(O){const F=this._activeBuffer.scrollBottom-this._activeBuffer.y;return F>=0?this._moveCursor(0,Math.min(F,O.params[0]||1)):this._moveCursor(0,O.params[0]||1),!0}cursorForward(O){return this._moveCursor(O.params[0]||1,0),!0}cursorBackward(O){return this._moveCursor(-(O.params[0]||1),0),!0}cursorNextLine(O){return this.cursorDown(O),this._activeBuffer.x=0,!0}cursorPrecedingLine(O){return this.cursorUp(O),this._activeBuffer.x=0,!0}cursorCharAbsolute(O){return this._setCursor((O.params[0]||1)-1,this._activeBuffer.y),!0}cursorPosition(O){return this._setCursor(O.length>=2?(O.params[1]||1)-1:0,(O.params[0]||1)-1),!0}charPosAbsolute(O){return this._setCursor((O.params[0]||1)-1,this._activeBuffer.y),!0}hPositionRelative(O){return this._moveCursor(O.params[0]||1,0),!0}linePosAbsolute(O){return this._setCursor(this._activeBuffer.x,(O.params[0]||1)-1),!0}vPositionRelative(O){return this._moveCursor(0,O.params[0]||1),!0}hVPosition(O){return this.cursorPosition(O),!0}tabClear(O){const F=O.params[0];return F===0?delete this._activeBuffer.tabs[this._activeBuffer.x]:F===3&&(this._activeBuffer.tabs={}),!0}cursorForwardTab(O){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let F=O.params[0]||1;for(;F--;)this._activeBuffer.x=this._activeBuffer.nextStop();return!0}cursorBackwardTab(O){if(this._activeBuffer.x>=this._bufferService.cols)return!0;let F=O.params[0]||1;for(;F--;)this._activeBuffer.x=this._activeBuffer.prevStop();return!0}selectProtected(O){const F=O.params[0];return F===1&&(this._curAttrData.bg|=536870912),F!==2&&F!==0||(this._curAttrData.bg&=-536870913),!0}_eraseInBufferLine(O,F,L,B=!1,V=!1){const te=this._activeBuffer.lines.get(this._activeBuffer.ybase+O);te.replaceCells(F,L,this._activeBuffer.getNullCell(this._eraseAttrData()),V),B&&(te.isWrapped=!1)}_resetBufferLine(O,F=!1){const L=this._activeBuffer.lines.get(this._activeBuffer.ybase+O);L&&(L.fill(this._activeBuffer.getNullCell(this._eraseAttrData()),F),this._bufferService.buffer.clearMarkers(this._activeBuffer.ybase+O),L.isWrapped=!1)}eraseInDisplay(O,F=!1){let L;switch(this._restrictCursor(this._bufferService.cols),O.params[0]){case 0:for(L=this._activeBuffer.y,this._dirtyRowTracker.markDirty(L),this._eraseInBufferLine(L++,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,F);L<this._bufferService.rows;L++)this._resetBufferLine(L,F);this._dirtyRowTracker.markDirty(L);break;case 1:for(L=this._activeBuffer.y,this._dirtyRowTracker.markDirty(L),this._eraseInBufferLine(L,0,this._activeBuffer.x+1,!0,F),this._activeBuffer.x+1>=this._bufferService.cols&&(this._activeBuffer.lines.get(L+1).isWrapped=!1);L--;)this._resetBufferLine(L,F);this._dirtyRowTracker.markDirty(0);break;case 2:for(L=this._bufferService.rows,this._dirtyRowTracker.markDirty(L-1);L--;)this._resetBufferLine(L,F);this._dirtyRowTracker.markDirty(0);break;case 3:const B=this._activeBuffer.lines.length-this._bufferService.rows;B>0&&(this._activeBuffer.lines.trimStart(B),this._activeBuffer.ybase=Math.max(this._activeBuffer.ybase-B,0),this._activeBuffer.ydisp=Math.max(this._activeBuffer.ydisp-B,0),this._onScroll.fire(0))}return!0}eraseInLine(O,F=!1){switch(this._restrictCursor(this._bufferService.cols),O.params[0]){case 0:this._eraseInBufferLine(this._activeBuffer.y,this._activeBuffer.x,this._bufferService.cols,this._activeBuffer.x===0,F);break;case 1:this._eraseInBufferLine(this._activeBuffer.y,0,this._activeBuffer.x+1,!1,F);break;case 2:this._eraseInBufferLine(this._activeBuffer.y,0,this._bufferService.cols,!0,F)}return this._dirtyRowTracker.markDirty(this._activeBuffer.y),!0}insertLines(O){this._restrictCursor();let F=O.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const L=this._activeBuffer.ybase+this._activeBuffer.y,B=this._bufferService.rows-1-this._activeBuffer.scrollBottom,V=this._bufferService.rows-1+this._activeBuffer.ybase-B+1;for(;F--;)this._activeBuffer.lines.splice(V-1,1),this._activeBuffer.lines.splice(L,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}deleteLines(O){this._restrictCursor();let F=O.params[0]||1;if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const L=this._activeBuffer.ybase+this._activeBuffer.y;let B;for(B=this._bufferService.rows-1-this._activeBuffer.scrollBottom,B=this._bufferService.rows-1+this._activeBuffer.ybase-B;F--;)this._activeBuffer.lines.splice(L,1),this._activeBuffer.lines.splice(B,0,this._activeBuffer.getBlankLine(this._eraseAttrData()));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.y,this._activeBuffer.scrollBottom),this._activeBuffer.x=0,!0}insertChars(O){this._restrictCursor();const F=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return F&&(F.insertCells(this._activeBuffer.x,O.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}deleteChars(O){this._restrictCursor();const F=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return F&&(F.deleteCells(this._activeBuffer.x,O.params[0]||1,this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}scrollUp(O){let F=O.params[0]||1;for(;F--;)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(O){let F=O.params[0]||1;for(;F--;)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(m.DEFAULT_ATTR_DATA));return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollLeft(O){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const F=O.params[0]||1;for(let L=this._activeBuffer.scrollTop;L<=this._activeBuffer.scrollBottom;++L){const B=this._activeBuffer.lines.get(this._activeBuffer.ybase+L);B.deleteCells(0,F,this._activeBuffer.getNullCell(this._eraseAttrData())),B.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}scrollRight(O){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const F=O.params[0]||1;for(let L=this._activeBuffer.scrollTop;L<=this._activeBuffer.scrollBottom;++L){const B=this._activeBuffer.lines.get(this._activeBuffer.ybase+L);B.insertCells(0,F,this._activeBuffer.getNullCell(this._eraseAttrData())),B.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}insertColumns(O){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const F=O.params[0]||1;for(let L=this._activeBuffer.scrollTop;L<=this._activeBuffer.scrollBottom;++L){const B=this._activeBuffer.lines.get(this._activeBuffer.ybase+L);B.insertCells(this._activeBuffer.x,F,this._activeBuffer.getNullCell(this._eraseAttrData())),B.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}deleteColumns(O){if(this._activeBuffer.y>this._activeBuffer.scrollBottom||this._activeBuffer.y<this._activeBuffer.scrollTop)return!0;const F=O.params[0]||1;for(let L=this._activeBuffer.scrollTop;L<=this._activeBuffer.scrollBottom;++L){const B=this._activeBuffer.lines.get(this._activeBuffer.ybase+L);B.deleteCells(this._activeBuffer.x,F,this._activeBuffer.getNullCell(this._eraseAttrData())),B.isWrapped=!1}return this._dirtyRowTracker.markRangeDirty(this._activeBuffer.scrollTop,this._activeBuffer.scrollBottom),!0}eraseChars(O){this._restrictCursor();const F=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y);return F&&(F.replaceCells(this._activeBuffer.x,this._activeBuffer.x+(O.params[0]||1),this._activeBuffer.getNullCell(this._eraseAttrData())),this._dirtyRowTracker.markDirty(this._activeBuffer.y)),!0}repeatPrecedingCharacter(O){const F=this._parser.precedingJoinState;if(!F)return!0;const L=O.params[0]||1,B=M.UnicodeService.extractWidth(F),V=this._activeBuffer.x-B,te=this._activeBuffer.lines.get(this._activeBuffer.ybase+this._activeBuffer.y).getString(V),ce=new Uint32Array(te.length*L);let de=0;for(let I=0;I<te.length;){const ue=te.codePointAt(I)||0;ce[de++]=ue,I+=ue>65535?2:1}let K=de;for(let I=1;I<L;++I)ce.copyWithin(K,0,de),K+=de;return this.print(ce,0,K),!0}sendDeviceAttributesPrimary(O){return O.params[0]>0||(this._is("xterm")||this._is("rxvt-unicode")||this._is("screen")?this._coreService.triggerDataEvent(f.C0.ESC+"[?1;2c"):this._is("linux")&&this._coreService.triggerDataEvent(f.C0.ESC+"[?6c")),!0}sendDeviceAttributesSecondary(O){return O.params[0]>0||(this._is("xterm")?this._coreService.triggerDataEvent(f.C0.ESC+"[>0;276;0c"):this._is("rxvt-unicode")?this._coreService.triggerDataEvent(f.C0.ESC+"[>85;95;0c"):this._is("linux")?this._coreService.triggerDataEvent(O.params[0]+"c"):this._is("screen")&&this._coreService.triggerDataEvent(f.C0.ESC+"[>83;40003;0c")),!0}_is(O){return(this._optionsService.rawOptions.termName+"").indexOf(O)===0}setMode(O){for(let F=0;F<O.length;F++)switch(O.params[F]){case 4:this._coreService.modes.insertMode=!0;break;case 20:this._optionsService.options.convertEol=!0}return!0}setModePrivate(O){for(let F=0;F<O.length;F++)switch(O.params[F]){case 1:this._coreService.decPrivateModes.applicationCursorKeys=!0;break;case 2:this._charsetService.setgCharset(0,x.DEFAULT_CHARSET),this._charsetService.setgCharset(1,x.DEFAULT_CHARSET),this._charsetService.setgCharset(2,x.DEFAULT_CHARSET),this._charsetService.setgCharset(3,x.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(O){for(let F=0;F<O.length;F++)switch(O.params[F]){case 4:this._coreService.modes.insertMode=!1;break;case 20:this._optionsService.options.convertEol=!1}return!0}resetModePrivate(O){for(let F=0;F<O.length;F++)switch(O.params[F]){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(),O.params[F]===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(O,F){const L=this._coreService.decPrivateModes,{activeProtocol:B,activeEncoding:V}=this._coreMouseService,te=this._coreService,{buffers:ce,cols:de}=this._bufferService,{active:K,alt:I}=ce,ue=this._optionsService.rawOptions,ie=De=>De?1:2,we=O.params[0];return fe=we,$e=F?we===2?4:we===4?ie(te.modes.insertMode):we===12?3:we===20?ie(ue.convertEol):0:we===1?ie(L.applicationCursorKeys):we===3?ue.windowOptions.setWinLines?de===80?2:de===132?1:0:0:we===6?ie(L.origin):we===7?ie(L.wraparound):we===8?3:we===9?ie(B==="X10"):we===12?ie(ue.cursorBlink):we===25?ie(!te.isCursorHidden):we===45?ie(L.reverseWraparound):we===66?ie(L.applicationKeypad):we===67?4:we===1e3?ie(B==="VT200"):we===1002?ie(B==="DRAG"):we===1003?ie(B==="ANY"):we===1004?ie(L.sendFocus):we===1005?4:we===1006?ie(V==="SGR"):we===1015?4:we===1016?ie(V==="SGR_PIXELS"):we===1048?1:we===47||we===1047||we===1049?ie(K===I):we===2004?ie(L.bracketedPasteMode):0,te.triggerDataEvent(`${f.C0.ESC}[${F?"":"?"}${fe};${$e}$y`),!0;var fe,$e}_updateAttrColor(O,F,L,B,V){return F===2?(O|=50331648,O&=-16777216,O|=k.AttributeData.fromColorRGB([L,B,V])):F===5&&(O&=-50331904,O|=33554432|255&L),O}_extractColor(O,F,L){const B=[0,0,-1,0,0,0];let V=0,te=0;do{if(B[te+V]=O.params[F+te],O.hasSubParams(F+te)){const ce=O.getSubParams(F+te);let de=0;do B[1]===5&&(V=1),B[te+de+1+V]=ce[de];while(++de<ce.length&&de+te+1+V<B.length);break}if(B[1]===5&&te+V>=2||B[1]===2&&te+V>=5)break;B[1]&&(V=1)}while(++te+F<O.length&&te+V<B.length);for(let ce=2;ce<B.length;++ce)B[ce]===-1&&(B[ce]=0);switch(B[0]){case 38:L.fg=this._updateAttrColor(L.fg,B[1],B[3],B[4],B[5]);break;case 48:L.bg=this._updateAttrColor(L.bg,B[1],B[3],B[4],B[5]);break;case 58:L.extended=L.extended.clone(),L.extended.underlineColor=this._updateAttrColor(L.extended.underlineColor,B[1],B[3],B[4],B[5])}return te}_processUnderline(O,F){F.extended=F.extended.clone(),(!~O||O>5)&&(O=1),F.extended.underlineStyle=O,F.fg|=268435456,O===0&&(F.fg&=-268435457),F.updateExtended()}_processSGR0(O){O.fg=m.DEFAULT_ATTR_DATA.fg,O.bg=m.DEFAULT_ATTR_DATA.bg,O.extended=O.extended.clone(),O.extended.underlineStyle=0,O.extended.underlineColor&=-67108864,O.updateExtended()}charAttributes(O){if(O.length===1&&O.params[0]===0)return this._processSGR0(this._curAttrData),!0;const F=O.length;let L;const B=this._curAttrData;for(let V=0;V<F;V++)L=O.params[V],L>=30&&L<=37?(B.fg&=-50331904,B.fg|=16777216|L-30):L>=40&&L<=47?(B.bg&=-50331904,B.bg|=16777216|L-40):L>=90&&L<=97?(B.fg&=-50331904,B.fg|=16777224|L-90):L>=100&&L<=107?(B.bg&=-50331904,B.bg|=16777224|L-100):L===0?this._processSGR0(B):L===1?B.fg|=134217728:L===3?B.bg|=67108864:L===4?(B.fg|=268435456,this._processUnderline(O.hasSubParams(V)?O.getSubParams(V)[0]:1,B)):L===5?B.fg|=536870912:L===7?B.fg|=67108864:L===8?B.fg|=1073741824:L===9?B.fg|=2147483648:L===2?B.bg|=134217728:L===21?this._processUnderline(2,B):L===22?(B.fg&=-134217729,B.bg&=-134217729):L===23?B.bg&=-67108865:L===24?(B.fg&=-268435457,this._processUnderline(0,B)):L===25?B.fg&=-536870913:L===27?B.fg&=-67108865:L===28?B.fg&=-1073741825:L===29?B.fg&=2147483647:L===39?(B.fg&=-67108864,B.fg|=16777215&m.DEFAULT_ATTR_DATA.fg):L===49?(B.bg&=-67108864,B.bg|=16777215&m.DEFAULT_ATTR_DATA.bg):L===38||L===48||L===58?V+=this._extractColor(O,V,B):L===53?B.bg|=1073741824:L===55?B.bg&=-1073741825:L===59?(B.extended=B.extended.clone(),B.extended.underlineColor=-1,B.updateExtended()):L===100?(B.fg&=-67108864,B.fg|=16777215&m.DEFAULT_ATTR_DATA.fg,B.bg&=-67108864,B.bg|=16777215&m.DEFAULT_ATTR_DATA.bg):this._logService.debug("Unknown SGR attribute: %d.",L);return!0}deviceStatus(O){switch(O.params[0]){case 5:this._coreService.triggerDataEvent(`${f.C0.ESC}[0n`);break;case 6:const F=this._activeBuffer.y+1,L=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${f.C0.ESC}[${F};${L}R`)}return!0}deviceStatusPrivate(O){if(O.params[0]===6){const F=this._activeBuffer.y+1,L=this._activeBuffer.x+1;this._coreService.triggerDataEvent(`${f.C0.ESC}[?${F};${L}R`)}return!0}softReset(O){return this._coreService.isCursorHidden=!1,this._onRequestSyncScrollBar.fire(),this._activeBuffer.scrollTop=0,this._activeBuffer.scrollBottom=this._bufferService.rows-1,this._curAttrData=m.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(O){const F=O.params[0]||1;switch(F){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 L=F%2==1;return this._optionsService.options.cursorBlink=L,!0}setScrollRegion(O){const F=O.params[0]||1;let L;return(O.length<2||(L=O.params[1])>this._bufferService.rows||L===0)&&(L=this._bufferService.rows),L>F&&(this._activeBuffer.scrollTop=F-1,this._activeBuffer.scrollBottom=L-1,this._setCursor(0,0)),!0}windowOptions(O){if(!W(O.params[0],this._optionsService.rawOptions.windowOptions))return!0;const F=O.length>1?O.params[1]:0;switch(O.params[0]){case 14:F!==2&&this._onRequestWindowsOptionsReport.fire(U.GET_WIN_SIZE_PIXELS);break;case 16:this._onRequestWindowsOptionsReport.fire(U.GET_CELL_SIZE_PIXELS);break;case 18:this._bufferService&&this._coreService.triggerDataEvent(`${f.C0.ESC}[8;${this._bufferService.rows};${this._bufferService.cols}t`);break;case 22:F!==0&&F!==2||(this._windowTitleStack.push(this._windowTitle),this._windowTitleStack.length>10&&this._windowTitleStack.shift()),F!==0&&F!==1||(this._iconNameStack.push(this._iconName),this._iconNameStack.length>10&&this._iconNameStack.shift());break;case 23:F!==0&&F!==2||this._windowTitleStack.length&&this.setTitle(this._windowTitleStack.pop()),F!==0&&F!==1||this._iconNameStack.length&&this.setIconName(this._iconNameStack.pop())}return!0}saveCursor(O){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(O){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(O){return this._windowTitle=O,this._onTitleChange.fire(O),!0}setIconName(O){return this._iconName=O,!0}setOrReportIndexedColor(O){const F=[],L=O.split(";");for(;L.length>1;){const B=L.shift(),V=L.shift();if(/^\d+$/.exec(B)){const te=parseInt(B);if(G(te))if(V==="?")F.push({type:0,index:te});else{const ce=(0,D.parseColor)(V);ce&&F.push({type:1,index:te,color:ce})}}}return F.length&&this._onColor.fire(F),!0}setHyperlink(O){const F=O.split(";");return!(F.length<2)&&(F[1]?this._createHyperlink(F[0],F[1]):!F[0]&&this._finishHyperlink())}_createHyperlink(O,F){this._getCurrentLinkId()&&this._finishHyperlink();const L=O.split(":");let B;const V=L.findIndex((te=>te.startsWith("id=")));return V!==-1&&(B=L[V].slice(3)||void 0),this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=this._oscLinkService.registerLink({id:B,uri:F}),this._curAttrData.updateExtended(),!0}_finishHyperlink(){return this._curAttrData.extended=this._curAttrData.extended.clone(),this._curAttrData.extended.urlId=0,this._curAttrData.updateExtended(),!0}_setOrReportSpecialColor(O,F){const L=O.split(";");for(let B=0;B<L.length&&!(F>=this._specialColors.length);++B,++F)if(L[B]==="?")this._onColor.fire([{type:0,index:this._specialColors[F]}]);else{const V=(0,D.parseColor)(L[B]);V&&this._onColor.fire([{type:1,index:this._specialColors[F],color:V}])}return!0}setOrReportFgColor(O){return this._setOrReportSpecialColor(O,0)}setOrReportBgColor(O){return this._setOrReportSpecialColor(O,1)}setOrReportCursorColor(O){return this._setOrReportSpecialColor(O,2)}restoreIndexedColor(O){if(!O)return this._onColor.fire([{type:2}]),!0;const F=[],L=O.split(";");for(let B=0;B<L.length;++B)if(/^\d+$/.exec(L[B])){const V=parseInt(L[B]);G(V)&&F.push({type:2,index:V})}return F.length&&this._onColor.fire(F),!0}restoreFgColor(O){return this._onColor.fire([{type:2,index:256}]),!0}restoreBgColor(O){return this._onColor.fire([{type:2,index:257}]),!0}restoreCursorColor(O){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,x.DEFAULT_CHARSET),!0}selectCharset(O){return O.length!==2?(this.selectDefaultCharset(),!0):(O[0]==="/"||this._charsetService.setgCharset(H[O[0]],x.CHARSETS[O[1]]||x.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 O=this._activeBuffer.scrollBottom-this._activeBuffer.scrollTop;this._activeBuffer.lines.shiftElements(this._activeBuffer.ybase+this._activeBuffer.y,O,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=m.DEFAULT_ATTR_DATA.clone(),this._eraseAttrDataInternal=m.DEFAULT_ATTR_DATA.clone()}_eraseAttrData(){return this._eraseAttrDataInternal.bg&=-67108864,this._eraseAttrDataInternal.bg|=67108863&this._curAttrData.bg,this._eraseAttrDataInternal}setgLevel(O){return this._charsetService.setgLevel(O),!0}screenAlignmentPattern(){const O=new y.CellData;O.content=4194373,O.fg=this._curAttrData.fg,O.bg=this._curAttrData.bg,this._setCursor(0,0);for(let F=0;F<this._bufferService.rows;++F){const L=this._activeBuffer.ybase+this._activeBuffer.y+F,B=this._activeBuffer.lines.get(L);B&&(B.fill(O),B.isWrapped=!1)}return this._dirtyRowTracker.markAllDirty(),this._setCursor(0,0),!0}requestStatusString(O,F){const L=this._bufferService.buffer,B=this._optionsService.rawOptions;return(V=>(this._coreService.triggerDataEvent(`${f.C0.ESC}${V}${f.C0.ESC}\\`),!0))(O==='"q'?`P1$r${this._curAttrData.isProtected()?1:0}"q`:O==='"p'?'P1$r61;1"p':O==="r"?`P1$r${L.scrollTop+1};${L.scrollBottom+1}r`:O==="m"?"P1$r0m":O===" q"?`P1$r${{block:2,underline:4,bar:6}[B.cursorStyle]-(B.cursorBlink?1:0)} q`:"P0$r")}markRangeDirty(O,F){this._dirtyRowTracker.markRangeDirty(O,F)}}c.InputHandler=J;let q=class{constructor(ee){this._bufferService=ee,this.clearRange()}clearRange(){this.start=this._bufferService.buffer.y,this.end=this._bufferService.buffer.y}markDirty(ee){ee<this.start?this.start=ee:ee>this.end&&(this.end=ee)}markRangeDirty(ee,O){ee>O&&(Y=ee,ee=O,O=Y),ee<this.start&&(this.start=ee),O>this.end&&(this.end=O)}markAllDirty(){this.markRangeDirty(0,this._bufferService.rows-1)}};function G(ee){return 0<=ee&&ee<256}q=v([b(0,R.IBufferService)],q)},844:(p,c)=>{function u(v){for(const b of v)b.dispose();v.length=0}Object.defineProperty(c,"__esModule",{value:!0}),c.getDisposeArrayDisposable=c.disposeArray=c.toDisposable=c.MutableDisposable=c.Disposable=void 0,c.Disposable=class{constructor(){this._disposables=[],this._isDisposed=!1}dispose(){this._isDisposed=!0;for(const v of this._disposables)v.dispose();this._disposables.length=0}register(v){return this._disposables.push(v),v}unregister(v){const b=this._disposables.indexOf(v);b!==-1&&this._disposables.splice(b,1)}},c.MutableDisposable=class{constructor(){this._isDisposed=!1}get value(){return this._isDisposed?void 0:this._value}set value(v){var b;this._isDisposed||v===this._value||((b=this._value)==null||b.dispose(),this._value=v)}clear(){this.value=void 0}dispose(){var v;this._isDisposed=!0,(v=this._value)==null||v.dispose(),this._value=void 0}},c.toDisposable=function(v){return{dispose:v}},c.disposeArray=u,c.getDisposeArrayDisposable=function(v){return{dispose:()=>u(v)}}},1505:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.FourKeyMap=c.TwoKeyMap=void 0;class u{constructor(){this._data={}}set(b,f,x){this._data[b]||(this._data[b]={}),this._data[b][f]=x}get(b,f){return this._data[b]?this._data[b][f]:void 0}clear(){this._data={}}}c.TwoKeyMap=u,c.FourKeyMap=class{constructor(){this._data=new u}set(v,b,f,x,C){this._data.get(v,b)||this._data.set(v,b,new u),this._data.get(v,b).set(f,x,C)}get(v,b,f,x){var C;return(C=this._data.get(v,b))==null?void 0:C.get(f,x)}clear(){this._data.clear()}}},6114:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.isChromeOS=c.isLinux=c.isWindows=c.isIphone=c.isIpad=c.isMac=c.getSafariVersion=c.isSafari=c.isLegacyEdge=c.isFirefox=c.isNode=void 0,c.isNode=typeof process<"u"&&"title"in process;const u=c.isNode?"node":navigator.userAgent,v=c.isNode?"node":navigator.platform;c.isFirefox=u.includes("Firefox"),c.isLegacyEdge=u.includes("Edge"),c.isSafari=/^((?!chrome|android).)*safari/i.test(u),c.getSafariVersion=function(){if(!c.isSafari)return 0;const b=u.match(/Version\/(\d+)/);return b===null||b.length<2?0:parseInt(b[1])},c.isMac=["Macintosh","MacIntel","MacPPC","Mac68K"].includes(v),c.isIpad=v==="iPad",c.isIphone=v==="iPhone",c.isWindows=["Windows","Win16","Win32","WinCE"].includes(v),c.isLinux=v.indexOf("Linux")>=0,c.isChromeOS=/\bCrOS\b/.test(u)},6106:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.SortedList=void 0;let u=0;c.SortedList=class{constructor(v){this._getKey=v,this._array=[]}clear(){this._array.length=0}insert(v){this._array.length!==0?(u=this._search(this._getKey(v)),this._array.splice(u,0,v)):this._array.push(v)}delete(v){if(this._array.length===0)return!1;const b=this._getKey(v);if(b===void 0||(u=this._search(b),u===-1)||this._getKey(this._array[u])!==b)return!1;do if(this._array[u]===v)return this._array.splice(u,1),!0;while(++u<this._array.length&&this._getKey(this._array[u])===b);return!1}*getKeyIterator(v){if(this._array.length!==0&&(u=this._search(v),!(u<0||u>=this._array.length)&&this._getKey(this._array[u])===v))do yield this._array[u];while(++u<this._array.length&&this._getKey(this._array[u])===v)}forEachByKey(v,b){if(this._array.length!==0&&(u=this._search(v),!(u<0||u>=this._array.length)&&this._getKey(this._array[u])===v))do b(this._array[u]);while(++u<this._array.length&&this._getKey(this._array[u])===v)}values(){return[...this._array].values()}_search(v){let b=0,f=this._array.length-1;for(;f>=b;){let x=b+f>>1;const C=this._getKey(this._array[x]);if(C>v)f=x-1;else{if(!(C<v)){for(;x>0&&this._getKey(this._array[x-1])===v;)x--;return x}b=x+1}}return b}}},7226:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.DebouncedIdleTask=c.IdleTaskQueue=c.PriorityTaskQueue=void 0;const v=u(6114);class b{constructor(){this._tasks=[],this._i=0}enqueue(C){this._tasks.push(C),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(C){this._idleCallback=void 0;let A=0,E=0,m=C.timeRemaining(),S=0;for(;this._i<this._tasks.length;){if(A=Date.now(),this._tasks[this._i]()||this._i++,A=Math.max(1,Date.now()-A),E=Math.max(A,E),S=C.timeRemaining(),1.5*E>S)return m-A<-20&&console.warn(`task queue exceeded allotted deadline by ${Math.abs(Math.round(m-A))}ms`),void this._start();m=S}this.clear()}}class f extends b{_requestCallback(C){return setTimeout((()=>C(this._createDeadline(16))))}_cancelCallback(C){clearTimeout(C)}_createDeadline(C){const A=Date.now()+C;return{timeRemaining:()=>Math.max(0,A-Date.now())}}}c.PriorityTaskQueue=f,c.IdleTaskQueue=!v.isNode&&"requestIdleCallback"in window?class extends b{_requestCallback(x){return requestIdleCallback(x)}_cancelCallback(x){cancelIdleCallback(x)}}:f,c.DebouncedIdleTask=class{constructor(){this._queue=new c.IdleTaskQueue}set(x){this._queue.clear(),this._queue.enqueue(x)}flush(){this._queue.flush()}}},9282:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.updateWindowsModeWrappedState=void 0;const v=u(643);c.updateWindowsModeWrappedState=function(b){const f=b.buffer.lines.get(b.buffer.ybase+b.buffer.y-1),x=f==null?void 0:f.get(b.cols-1),C=b.buffer.lines.get(b.buffer.ybase+b.buffer.y);C&&x&&(C.isWrapped=x[v.CHAR_DATA_CODE_INDEX]!==v.NULL_CELL_CODE&&x[v.CHAR_DATA_CODE_INDEX]!==v.WHITESPACE_CELL_CODE)}},3734:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.ExtendedAttrs=c.AttributeData=void 0;class u{constructor(){this.fg=0,this.bg=0,this.extended=new v}static toColorRGB(f){return[f>>>16&255,f>>>8&255,255&f]}static fromColorRGB(f){return(255&f[0])<<16|(255&f[1])<<8|255&f[2]}clone(){const f=new u;return f.fg=this.fg,f.bg=this.bg,f.extended=this.extended.clone(),f}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}}c.AttributeData=u;class v{get ext(){return this._urlId?-469762049&this._ext|this.underlineStyle<<26:this._ext}set ext(f){this._ext=f}get underlineStyle(){return this._urlId?5:(469762048&this._ext)>>26}set underlineStyle(f){this._ext&=-469762049,this._ext|=f<<26&469762048}get underlineColor(){return 67108863&this._ext}set underlineColor(f){this._ext&=-67108864,this._ext|=67108863&f}get urlId(){return this._urlId}set urlId(f){this._urlId=f}get underlineVariantOffset(){const f=(3758096384&this._ext)>>29;return f<0?4294967288^f:f}set underlineVariantOffset(f){this._ext&=536870911,this._ext|=f<<29&3758096384}constructor(f=0,x=0){this._ext=0,this._urlId=0,this._ext=f,this._urlId=x}clone(){return new v(this._ext,this._urlId)}isEmpty(){return this.underlineStyle===0&&this._urlId===0}}c.ExtendedAttrs=v},9092:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.Buffer=c.MAX_BUFFER_SIZE=void 0;const v=u(6349),b=u(7226),f=u(3734),x=u(8437),C=u(4634),A=u(511),E=u(643),m=u(4863),S=u(7116);c.MAX_BUFFER_SIZE=4294967295,c.Buffer=class{constructor(_,y,k){this._hasScrollback=_,this._optionsService=y,this._bufferService=k,this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.tabs={},this.savedY=0,this.savedX=0,this.savedCurAttrData=x.DEFAULT_ATTR_DATA.clone(),this.savedCharset=S.DEFAULT_CHARSET,this.markers=[],this._nullCell=A.CellData.fromCharData([0,E.NULL_CELL_CHAR,E.NULL_CELL_WIDTH,E.NULL_CELL_CODE]),this._whitespaceCell=A.CellData.fromCharData([0,E.WHITESPACE_CELL_CHAR,E.WHITESPACE_CELL_WIDTH,E.WHITESPACE_CELL_CODE]),this._isClearing=!1,this._memoryCleanupQueue=new b.IdleTaskQueue,this._memoryCleanupPosition=0,this._cols=this._bufferService.cols,this._rows=this._bufferService.rows,this.lines=new v.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}getNullCell(_){return _?(this._nullCell.fg=_.fg,this._nullCell.bg=_.bg,this._nullCell.extended=_.extended):(this._nullCell.fg=0,this._nullCell.bg=0,this._nullCell.extended=new f.ExtendedAttrs),this._nullCell}getWhitespaceCell(_){return _?(this._whitespaceCell.fg=_.fg,this._whitespaceCell.bg=_.bg,this._whitespaceCell.extended=_.extended):(this._whitespaceCell.fg=0,this._whitespaceCell.bg=0,this._whitespaceCell.extended=new f.ExtendedAttrs),this._whitespaceCell}getBlankLine(_,y){return new x.BufferLine(this._bufferService.cols,this.getNullCell(_),y)}get hasScrollback(){return this._hasScrollback&&this.lines.maxLength>this._rows}get isCursorInViewport(){const _=this.ybase+this.y-this.ydisp;return _>=0&&_<this._rows}_getCorrectBufferLength(_){if(!this._hasScrollback)return _;const y=_+this._optionsService.rawOptions.scrollback;return y>c.MAX_BUFFER_SIZE?c.MAX_BUFFER_SIZE:y}fillViewportRows(_){if(this.lines.length===0){_===void 0&&(_=x.DEFAULT_ATTR_DATA);let y=this._rows;for(;y--;)this.lines.push(this.getBlankLine(_))}}clear(){this.ydisp=0,this.ybase=0,this.y=0,this.x=0,this.lines=new v.CircularList(this._getCorrectBufferLength(this._rows)),this.scrollTop=0,this.scrollBottom=this._rows-1,this.setupTabStops()}resize(_,y){const k=this.getNullCell(x.DEFAULT_ATTR_DATA);let R=0;const M=this._getCorrectBufferLength(y);if(M>this.lines.maxLength&&(this.lines.maxLength=M),this.lines.length>0){if(this._cols<_)for(let T=0;T<this.lines.length;T++)R+=+this.lines.get(T).resize(_,k);let j=0;if(this._rows<y)for(let T=this._rows;T<y;T++)this.lines.length<y+this.ybase&&(this._optionsService.rawOptions.windowsMode||this._optionsService.rawOptions.windowsPty.backend!==void 0||this._optionsService.rawOptions.windowsPty.buildNumber!==void 0?this.lines.push(new x.BufferLine(_,k)):this.ybase>0&&this.lines.length<=this.ybase+this.y+j+1?(this.ybase--,j++,this.ydisp>0&&this.ydisp--):this.lines.push(new x.BufferLine(_,k)));else for(let T=this._rows;T>y;T--)this.lines.length>y+this.ybase&&(this.lines.length>this.ybase+this.y+1?this.lines.pop():(this.ybase++,this.ydisp++));if(M<this.lines.maxLength){const T=this.lines.length-M;T>0&&(this.lines.trimStart(T),this.ybase=Math.max(this.ybase-T,0),this.ydisp=Math.max(this.ydisp-T,0),this.savedY=Math.max(this.savedY-T,0)),this.lines.maxLength=M}this.x=Math.min(this.x,_-1),this.y=Math.min(this.y,y-1),j&&(this.y+=j),this.savedX=Math.min(this.savedX,_-1),this.scrollTop=0}if(this.scrollBottom=y-1,this._isReflowEnabled&&(this._reflow(_,y),this._cols>_))for(let j=0;j<this.lines.length;j++)R+=+this.lines.get(j).resize(_,k);this._cols=_,this._rows=y,this._memoryCleanupQueue.clear(),R>.1*this.lines.length&&(this._memoryCleanupPosition=0,this._memoryCleanupQueue.enqueue((()=>this._batchedMemoryCleanup())))}_batchedMemoryCleanup(){let _=!0;this._memoryCleanupPosition>=this.lines.length&&(this._memoryCleanupPosition=0,_=!1);let y=0;for(;this._memoryCleanupPosition<this.lines.length;)if(y+=this.lines.get(this._memoryCleanupPosition++).cleanupMemory(),y>100)return!0;return _}get _isReflowEnabled(){const _=this._optionsService.rawOptions.windowsPty;return _&&_.buildNumber?this._hasScrollback&&_.backend==="conpty"&&_.buildNumber>=21376:this._hasScrollback&&!this._optionsService.rawOptions.windowsMode}_reflow(_,y){this._cols!==_&&(_>this._cols?this._reflowLarger(_,y):this._reflowSmaller(_,y))}_reflowLarger(_,y){const k=(0,C.reflowLargerGetLinesToRemove)(this.lines,this._cols,_,this.ybase+this.y,this.getNullCell(x.DEFAULT_ATTR_DATA));if(k.length>0){const R=(0,C.reflowLargerCreateNewLayout)(this.lines,k);(0,C.reflowLargerApplyNewLayout)(this.lines,R.layout),this._reflowLargerAdjustViewport(_,y,R.countRemoved)}}_reflowLargerAdjustViewport(_,y,k){const R=this.getNullCell(x.DEFAULT_ATTR_DATA);let M=k;for(;M-- >0;)this.ybase===0?(this.y>0&&this.y--,this.lines.length<y&&this.lines.push(new x.BufferLine(_,R))):(this.ydisp===this.ybase&&this.ydisp--,this.ybase--);this.savedY=Math.max(this.savedY-k,0)}_reflowSmaller(_,y){const k=this.getNullCell(x.DEFAULT_ATTR_DATA),R=[];let M=0;for(let j=this.lines.length-1;j>=0;j--){let T=this.lines.get(j);if(!T||!T.isWrapped&&T.getTrimmedLength()<=_)continue;const D=[T];for(;T.isWrapped&&j>0;)T=this.lines.get(--j),D.unshift(T);const H=this.ybase+this.y;if(H>=j&&H<j+D.length)continue;const P=D[D.length-1].getTrimmedLength(),W=(0,C.reflowSmallerGetNewLineLengths)(D,this._cols,_),U=W.length-D.length;let Y;Y=this.ybase===0&&this.y!==this.lines.length-1?Math.max(0,this.y-this.lines.maxLength+U):Math.max(0,this.lines.length-this.lines.maxLength+U);const J=[];for(let L=0;L<U;L++){const B=this.getBlankLine(x.DEFAULT_ATTR_DATA,!0);J.push(B)}J.length>0&&(R.push({start:j+D.length+M,newLines:J}),M+=J.length),D.push(...J);let q=W.length-1,G=W[q];G===0&&(q--,G=W[q]);let ee=D.length-U-1,O=P;for(;ee>=0;){const L=Math.min(O,G);if(D[q]===void 0)break;if(D[q].copyCellsFrom(D[ee],O-L,G-L,L,!0),G-=L,G===0&&(q--,G=W[q]),O-=L,O===0){ee--;const B=Math.max(ee,0);O=(0,C.getWrappedLineTrimmedLength)(D,B,this._cols)}}for(let L=0;L<D.length;L++)W[L]<_&&D[L].setCell(W[L],k);let F=U-Y;for(;F-- >0;)this.ybase===0?this.y<y-1?(this.y++,this.lines.pop()):(this.ybase++,this.ydisp++):this.ybase<Math.min(this.lines.maxLength,this.lines.length+M)-y&&(this.ybase===this.ydisp&&this.ydisp++,this.ybase++);this.savedY=Math.min(this.savedY+U,this.ybase+y-1)}if(R.length>0){const j=[],T=[];for(let q=0;q<this.lines.length;q++)T.push(this.lines.get(q));const D=this.lines.length;let H=D-1,P=0,W=R[P];this.lines.length=Math.min(this.lines.maxLength,this.lines.length+M);let U=0;for(let q=Math.min(this.lines.maxLength-1,D+M-1);q>=0;q--)if(W&&W.start>H+U){for(let G=W.newLines.length-1;G>=0;G--)this.lines.set(q--,W.newLines[G]);q++,j.push({index:H+1,amount:W.newLines.length}),U+=W.newLines.length,W=R[++P]}else this.lines.set(q,T[H--]);let Y=0;for(let q=j.length-1;q>=0;q--)j[q].index+=Y,this.lines.onInsertEmitter.fire(j[q]),Y+=j[q].amount;const J=Math.max(0,D+M-this.lines.maxLength);J>0&&this.lines.onTrimEmitter.fire(J)}}translateBufferLineToString(_,y,k=0,R){const M=this.lines.get(_);return M?M.translateToString(y,k,R):""}getWrappedRangeForLine(_){let y=_,k=_;for(;y>0&&this.lines.get(y).isWrapped;)y--;for(;k+1<this.lines.length&&this.lines.get(k+1).isWrapped;)k++;return{first:y,last:k}}setupTabStops(_){for(_!=null?this.tabs[_]||(_=this.prevStop(_)):(this.tabs={},_=0);_<this._cols;_+=this._optionsService.rawOptions.tabStopWidth)this.tabs[_]=!0}prevStop(_){for(_==null&&(_=this.x);!this.tabs[--_]&&_>0;);return _>=this._cols?this._cols-1:_<0?0:_}nextStop(_){for(_==null&&(_=this.x);!this.tabs[++_]&&_<this._cols;);return _>=this._cols?this._cols-1:_<0?0:_}clearMarkers(_){this._isClearing=!0;for(let y=0;y<this.markers.length;y++)this.markers[y].line===_&&(this.markers[y].dispose(),this.markers.splice(y--,1));this._isClearing=!1}clearAllMarkers(){this._isClearing=!0;for(let _=0;_<this.markers.length;_++)this.markers[_].dispose(),this.markers.splice(_--,1);this._isClearing=!1}addMarker(_){const y=new m.Marker(_);return this.markers.push(y),y.register(this.lines.onTrim((k=>{y.line-=k,y.line<0&&y.dispose()}))),y.register(this.lines.onInsert((k=>{y.line>=k.index&&(y.line+=k.amount)}))),y.register(this.lines.onDelete((k=>{y.line>=k.index&&y.line<k.index+k.amount&&y.dispose(),y.line>k.index&&(y.line-=k.amount)}))),y.register(y.onDispose((()=>this._removeMarker(y)))),y}_removeMarker(_){this._isClearing||this.markers.splice(this.markers.indexOf(_),1)}}},8437:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.BufferLine=c.DEFAULT_ATTR_DATA=void 0;const v=u(3734),b=u(511),f=u(643),x=u(482);c.DEFAULT_ATTR_DATA=Object.freeze(new v.AttributeData);let C=0;class A{constructor(m,S,_=!1){this.isWrapped=_,this._combined={},this._extendedAttrs={},this._data=new Uint32Array(3*m);const y=S||b.CellData.fromCharData([0,f.NULL_CELL_CHAR,f.NULL_CELL_WIDTH,f.NULL_CELL_CODE]);for(let k=0;k<m;++k)this.setCell(k,y);this.length=m}get(m){const S=this._data[3*m+0],_=2097151&S;return[this._data[3*m+1],2097152&S?this._combined[m]:_?(0,x.stringFromCodePoint)(_):"",S>>22,2097152&S?this._combined[m].charCodeAt(this._combined[m].length-1):_]}set(m,S){this._data[3*m+1]=S[f.CHAR_DATA_ATTR_INDEX],S[f.CHAR_DATA_CHAR_INDEX].length>1?(this._combined[m]=S[1],this._data[3*m+0]=2097152|m|S[f.CHAR_DATA_WIDTH_INDEX]<<22):this._data[3*m+0]=S[f.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|S[f.CHAR_DATA_WIDTH_INDEX]<<22}getWidth(m){return this._data[3*m+0]>>22}hasWidth(m){return 12582912&this._data[3*m+0]}getFg(m){return this._data[3*m+1]}getBg(m){return this._data[3*m+2]}hasContent(m){return 4194303&this._data[3*m+0]}getCodePoint(m){const S=this._data[3*m+0];return 2097152&S?this._combined[m].charCodeAt(this._combined[m].length-1):2097151&S}isCombined(m){return 2097152&this._data[3*m+0]}getString(m){const S=this._data[3*m+0];return 2097152&S?this._combined[m]:2097151&S?(0,x.stringFromCodePoint)(2097151&S):""}isProtected(m){return 536870912&this._data[3*m+2]}loadCell(m,S){return C=3*m,S.content=this._data[C+0],S.fg=this._data[C+1],S.bg=this._data[C+2],2097152&S.content&&(S.combinedData=this._combined[m]),268435456&S.bg&&(S.extended=this._extendedAttrs[m]),S}setCell(m,S){2097152&S.content&&(this._combined[m]=S.combinedData),268435456&S.bg&&(this._extendedAttrs[m]=S.extended),this._data[3*m+0]=S.content,this._data[3*m+1]=S.fg,this._data[3*m+2]=S.bg}setCellFromCodepoint(m,S,_,y){268435456&y.bg&&(this._extendedAttrs[m]=y.extended),this._data[3*m+0]=S|_<<22,this._data[3*m+1]=y.fg,this._data[3*m+2]=y.bg}addCodepointToCell(m,S,_){let y=this._data[3*m+0];2097152&y?this._combined[m]+=(0,x.stringFromCodePoint)(S):2097151&y?(this._combined[m]=(0,x.stringFromCodePoint)(2097151&y)+(0,x.stringFromCodePoint)(S),y&=-2097152,y|=2097152):y=S|4194304,_&&(y&=-12582913,y|=_<<22),this._data[3*m+0]=y}insertCells(m,S,_){if((m%=this.length)&&this.getWidth(m-1)===2&&this.setCellFromCodepoint(m-1,0,1,_),S<this.length-m){const y=new b.CellData;for(let k=this.length-m-S-1;k>=0;--k)this.setCell(m+S+k,this.loadCell(m+k,y));for(let k=0;k<S;++k)this.setCell(m+k,_)}else for(let y=m;y<this.length;++y)this.setCell(y,_);this.getWidth(this.length-1)===2&&this.setCellFromCodepoint(this.length-1,0,1,_)}deleteCells(m,S,_){if(m%=this.length,S<this.length-m){const y=new b.CellData;for(let k=0;k<this.length-m-S;++k)this.setCell(m+k,this.loadCell(m+S+k,y));for(let k=this.length-S;k<this.length;++k)this.setCell(k,_)}else for(let y=m;y<this.length;++y)this.setCell(y,_);m&&this.getWidth(m-1)===2&&this.setCellFromCodepoint(m-1,0,1,_),this.getWidth(m)!==0||this.hasContent(m)||this.setCellFromCodepoint(m,0,1,_)}replaceCells(m,S,_,y=!1){if(y)for(m&&this.getWidth(m-1)===2&&!this.isProtected(m-1)&&this.setCellFromCodepoint(m-1,0,1,_),S<this.length&&this.getWidth(S-1)===2&&!this.isProtected(S)&&this.setCellFromCodepoint(S,0,1,_);m<S&&m<this.length;)this.isProtected(m)||this.setCell(m,_),m++;else for(m&&this.getWidth(m-1)===2&&this.setCellFromCodepoint(m-1,0,1,_),S<this.length&&this.getWidth(S-1)===2&&this.setCellFromCodepoint(S,0,1,_);m<S&&m<this.length;)this.setCell(m++,_)}resize(m,S){if(m===this.length)return 4*this._data.length*2<this._data.buffer.byteLength;const _=3*m;if(m>this.length){if(this._data.buffer.byteLength>=4*_)this._data=new Uint32Array(this._data.buffer,0,_);else{const y=new Uint32Array(_);y.set(this._data),this._data=y}for(let y=this.length;y<m;++y)this.setCell(y,S)}else{this._data=this._data.subarray(0,_);const y=Object.keys(this._combined);for(let R=0;R<y.length;R++){const M=parseInt(y[R],10);M>=m&&delete this._combined[M]}const k=Object.keys(this._extendedAttrs);for(let R=0;R<k.length;R++){const M=parseInt(k[R],10);M>=m&&delete this._extendedAttrs[M]}}return this.length=m,4*_*2<this._data.buffer.byteLength}cleanupMemory(){if(4*this._data.length*2<this._data.buffer.byteLength){const m=new Uint32Array(this._data.length);return m.set(this._data),this._data=m,1}return 0}fill(m,S=!1){if(S)for(let _=0;_<this.length;++_)this.isProtected(_)||this.setCell(_,m);else{this._combined={},this._extendedAttrs={};for(let _=0;_<this.length;++_)this.setCell(_,m)}}copyFrom(m){this.length!==m.length?this._data=new Uint32Array(m._data):this._data.set(m._data),this.length=m.length,this._combined={};for(const S in m._combined)this._combined[S]=m._combined[S];this._extendedAttrs={};for(const S in m._extendedAttrs)this._extendedAttrs[S]=m._extendedAttrs[S];this.isWrapped=m.isWrapped}clone(){const m=new A(0);m._data=new Uint32Array(this._data),m.length=this.length;for(const S in this._combined)m._combined[S]=this._combined[S];for(const S in this._extendedAttrs)m._extendedAttrs[S]=this._extendedAttrs[S];return m.isWrapped=this.isWrapped,m}getTrimmedLength(){for(let m=this.length-1;m>=0;--m)if(4194303&this._data[3*m+0])return m+(this._data[3*m+0]>>22);return 0}getNoBgTrimmedLength(){for(let m=this.length-1;m>=0;--m)if(4194303&this._data[3*m+0]||50331648&this._data[3*m+2])return m+(this._data[3*m+0]>>22);return 0}copyCellsFrom(m,S,_,y,k){const R=m._data;if(k)for(let j=y-1;j>=0;j--){for(let T=0;T<3;T++)this._data[3*(_+j)+T]=R[3*(S+j)+T];268435456&R[3*(S+j)+2]&&(this._extendedAttrs[_+j]=m._extendedAttrs[S+j])}else for(let j=0;j<y;j++){for(let T=0;T<3;T++)this._data[3*(_+j)+T]=R[3*(S+j)+T];268435456&R[3*(S+j)+2]&&(this._extendedAttrs[_+j]=m._extendedAttrs[S+j])}const M=Object.keys(m._combined);for(let j=0;j<M.length;j++){const T=parseInt(M[j],10);T>=S&&(this._combined[T-S+_]=m._combined[T])}}translateToString(m,S,_,y){S=S??0,_=_??this.length,m&&(_=Math.min(_,this.getTrimmedLength())),y&&(y.length=0);let k="";for(;S<_;){const R=this._data[3*S+0],M=2097151&R,j=2097152&R?this._combined[S]:M?(0,x.stringFromCodePoint)(M):f.WHITESPACE_CELL_CHAR;if(k+=j,y)for(let T=0;T<j.length;++T)y.push(S);S+=R>>22||1}return y&&y.push(S),k}}c.BufferLine=A},4841:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.getRangeLength=void 0,c.getRangeLength=function(u,v){if(u.start.y>u.end.y)throw new Error(`Buffer range end (${u.end.x}, ${u.end.y}) cannot be before start (${u.start.x}, ${u.start.y})`);return v*(u.end.y-u.start.y)+(u.end.x-u.start.x+1)}},4634:(p,c)=>{function u(v,b,f){if(b===v.length-1)return v[b].getTrimmedLength();const x=!v[b].hasContent(f-1)&&v[b].getWidth(f-1)===1,C=v[b+1].getWidth(0)===2;return x&&C?f-1:f}Object.defineProperty(c,"__esModule",{value:!0}),c.getWrappedLineTrimmedLength=c.reflowSmallerGetNewLineLengths=c.reflowLargerApplyNewLayout=c.reflowLargerCreateNewLayout=c.reflowLargerGetLinesToRemove=void 0,c.reflowLargerGetLinesToRemove=function(v,b,f,x,C){const A=[];for(let E=0;E<v.length-1;E++){let m=E,S=v.get(++m);if(!S.isWrapped)continue;const _=[v.get(E)];for(;m<v.length&&S.isWrapped;)_.push(S),S=v.get(++m);if(x>=E&&x<m){E+=_.length-1;continue}let y=0,k=u(_,y,b),R=1,M=0;for(;R<_.length;){const T=u(_,R,b),D=T-M,H=f-k,P=Math.min(D,H);_[y].copyCellsFrom(_[R],M,k,P,!1),k+=P,k===f&&(y++,k=0),M+=P,M===T&&(R++,M=0),k===0&&y!==0&&_[y-1].getWidth(f-1)===2&&(_[y].copyCellsFrom(_[y-1],f-1,k++,1,!1),_[y-1].setCell(f-1,C))}_[y].replaceCells(k,f,C);let j=0;for(let T=_.length-1;T>0&&(T>y||_[T].getTrimmedLength()===0);T--)j++;j>0&&(A.push(E+_.length-j),A.push(j)),E+=_.length-1}return A},c.reflowLargerCreateNewLayout=function(v,b){const f=[];let x=0,C=b[x],A=0;for(let E=0;E<v.length;E++)if(C===E){const m=b[++x];v.onDeleteEmitter.fire({index:E-A,amount:m}),E+=m-1,A+=m,C=b[++x]}else f.push(E);return{layout:f,countRemoved:A}},c.reflowLargerApplyNewLayout=function(v,b){const f=[];for(let x=0;x<b.length;x++)f.push(v.get(b[x]));for(let x=0;x<f.length;x++)v.set(x,f[x]);v.length=b.length},c.reflowSmallerGetNewLineLengths=function(v,b,f){const x=[],C=v.map(((S,_)=>u(v,_,b))).reduce(((S,_)=>S+_));let A=0,E=0,m=0;for(;m<C;){if(C-m<f){x.push(C-m);break}A+=f;const S=u(v,E,b);A>S&&(A-=S,E++);const _=v[E].getWidth(A-1)===2;_&&A--;const y=_?f-1:f;x.push(y),m+=y}return x},c.getWrappedLineTrimmedLength=u},5295:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.BufferSet=void 0;const v=u(8460),b=u(844),f=u(9092);class x extends b.Disposable{constructor(A,E){super(),this._optionsService=A,this._bufferService=E,this._onBufferActivate=this.register(new v.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 f.Buffer(!0,this._optionsService,this._bufferService),this._normal.fillViewportRows(),this._alt=new f.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(A){this._activeBuffer!==this._alt&&(this._alt.fillViewportRows(A),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(A,E){this._normal.resize(A,E),this._alt.resize(A,E),this.setupTabStops(A)}setupTabStops(A){this._normal.setupTabStops(A),this._alt.setupTabStops(A)}}c.BufferSet=x},511:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.CellData=void 0;const v=u(482),b=u(643),f=u(3734);class x extends f.AttributeData{constructor(){super(...arguments),this.content=0,this.fg=0,this.bg=0,this.extended=new f.ExtendedAttrs,this.combinedData=""}static fromCharData(A){const E=new x;return E.setFromCharData(A),E}isCombined(){return 2097152&this.content}getWidth(){return this.content>>22}getChars(){return 2097152&this.content?this.combinedData:2097151&this.content?(0,v.stringFromCodePoint)(2097151&this.content):""}getCode(){return this.isCombined()?this.combinedData.charCodeAt(this.combinedData.length-1):2097151&this.content}setFromCharData(A){this.fg=A[b.CHAR_DATA_ATTR_INDEX],this.bg=0;let E=!1;if(A[b.CHAR_DATA_CHAR_INDEX].length>2)E=!0;else if(A[b.CHAR_DATA_CHAR_INDEX].length===2){const m=A[b.CHAR_DATA_CHAR_INDEX].charCodeAt(0);if(55296<=m&&m<=56319){const S=A[b.CHAR_DATA_CHAR_INDEX].charCodeAt(1);56320<=S&&S<=57343?this.content=1024*(m-55296)+S-56320+65536|A[b.CHAR_DATA_WIDTH_INDEX]<<22:E=!0}else E=!0}else this.content=A[b.CHAR_DATA_CHAR_INDEX].charCodeAt(0)|A[b.CHAR_DATA_WIDTH_INDEX]<<22;E&&(this.combinedData=A[b.CHAR_DATA_CHAR_INDEX],this.content=2097152|A[b.CHAR_DATA_WIDTH_INDEX]<<22)}getAsCharData(){return[this.fg,this.getChars(),this.getWidth(),this.getCode()]}}c.CellData=x},643:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.WHITESPACE_CELL_CODE=c.WHITESPACE_CELL_WIDTH=c.WHITESPACE_CELL_CHAR=c.NULL_CELL_CODE=c.NULL_CELL_WIDTH=c.NULL_CELL_CHAR=c.CHAR_DATA_CODE_INDEX=c.CHAR_DATA_WIDTH_INDEX=c.CHAR_DATA_CHAR_INDEX=c.CHAR_DATA_ATTR_INDEX=c.DEFAULT_EXT=c.DEFAULT_ATTR=c.DEFAULT_COLOR=void 0,c.DEFAULT_COLOR=0,c.DEFAULT_ATTR=256|c.DEFAULT_COLOR<<9,c.DEFAULT_EXT=0,c.CHAR_DATA_ATTR_INDEX=0,c.CHAR_DATA_CHAR_INDEX=1,c.CHAR_DATA_WIDTH_INDEX=2,c.CHAR_DATA_CODE_INDEX=3,c.NULL_CELL_CHAR="",c.NULL_CELL_WIDTH=1,c.NULL_CELL_CODE=0,c.WHITESPACE_CELL_CHAR=" ",c.WHITESPACE_CELL_WIDTH=1,c.WHITESPACE_CELL_CODE=32},4863:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.Marker=void 0;const v=u(8460),b=u(844);class f{get id(){return this._id}constructor(C){this.line=C,this.isDisposed=!1,this._disposables=[],this._id=f._nextId++,this._onDispose=this.register(new v.EventEmitter),this.onDispose=this._onDispose.event}dispose(){this.isDisposed||(this.isDisposed=!0,this.line=-1,this._onDispose.fire(),(0,b.disposeArray)(this._disposables),this._disposables.length=0)}register(C){return this._disposables.push(C),C}}c.Marker=f,f._nextId=1},7116:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.DEFAULT_CHARSET=c.CHARSETS=void 0,c.CHARSETS={},c.DEFAULT_CHARSET=c.CHARSETS.B,c.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:"≥","{":"π","|":"≠","}":"£","~":"·"},c.CHARSETS.A={"#":"£"},c.CHARSETS.B=void 0,c.CHARSETS[4]={"#":"£","@":"¾","[":"ij","\\":"½","]":"|","{":"¨","|":"f","}":"¼","~":"´"},c.CHARSETS.C=c.CHARSETS[5]={"[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},c.CHARSETS.R={"#":"£","@":"à","[":"°","\\":"ç","]":"§","{":"é","|":"ù","}":"è","~":"¨"},c.CHARSETS.Q={"@":"à","[":"â","\\":"ç","]":"ê","^":"î","`":"ô","{":"é","|":"ù","}":"è","~":"û"},c.CHARSETS.K={"@":"§","[":"Ä","\\":"Ö","]":"Ü","{":"ä","|":"ö","}":"ü","~":"ß"},c.CHARSETS.Y={"#":"£","@":"§","[":"°","\\":"ç","]":"é","`":"ù","{":"à","|":"ò","}":"è","~":"ì"},c.CHARSETS.E=c.CHARSETS[6]={"@":"Ä","[":"Æ","\\":"Ø","]":"Å","^":"Ü","`":"ä","{":"æ","|":"ø","}":"å","~":"ü"},c.CHARSETS.Z={"#":"£","@":"§","[":"¡","\\":"Ñ","]":"¿","{":"°","|":"ñ","}":"ç"},c.CHARSETS.H=c.CHARSETS[7]={"@":"É","[":"Ä","\\":"Ö","]":"Å","^":"Ü","`":"é","{":"ä","|":"ö","}":"å","~":"ü"},c.CHARSETS["="]={"#":"ù","@":"à","[":"é","\\":"ç","]":"ê","^":"î",_:"è","`":"ô","{":"ä","|":"ö","}":"ü","~":"û"}},2584:(p,c)=>{var u,v,b;Object.defineProperty(c,"__esModule",{value:!0}),c.C1_ESCAPED=c.C1=c.C0=void 0,(function(f){f.NUL="\0",f.SOH="",f.STX="",f.ETX="",f.EOT="",f.ENQ="",f.ACK="",f.BEL="\x07",f.BS="\b",f.HT=" ",f.LF=`
452
+ `,f.VT="\v",f.FF="\f",f.CR="\r",f.SO="",f.SI="",f.DLE="",f.DC1="",f.DC2="",f.DC3="",f.DC4="",f.NAK="",f.SYN="",f.ETB="",f.CAN="",f.EM="",f.SUB="",f.ESC="\x1B",f.FS="",f.GS="",f.RS="",f.US="",f.SP=" ",f.DEL=""})(u||(c.C0=u={})),(function(f){f.PAD="€",f.HOP="",f.BPH="‚",f.NBH="ƒ",f.IND="„",f.NEL="…",f.SSA="†",f.ESA="‡",f.HTS="ˆ",f.HTJ="‰",f.VTS="Š",f.PLD="‹",f.PLU="Œ",f.RI="",f.SS2="Ž",f.SS3="",f.DCS="",f.PU1="‘",f.PU2="’",f.STS="“",f.CCH="”",f.MW="•",f.SPA="–",f.EPA="—",f.SOS="˜",f.SGCI="™",f.SCI="š",f.CSI="›",f.ST="œ",f.OSC="",f.PM="ž",f.APC="Ÿ"})(v||(c.C1=v={})),(function(f){f.ST=`${u.ESC}\\`})(b||(c.C1_ESCAPED=b={}))},7399:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.evaluateKeyboardEvent=void 0;const v=u(2584),b={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:["'",'"']};c.evaluateKeyboardEvent=function(f,x,C,A){const E={type:0,cancel:!1,key:void 0},m=(f.shiftKey?1:0)|(f.altKey?2:0)|(f.ctrlKey?4:0)|(f.metaKey?8:0);switch(f.keyCode){case 0:f.key==="UIKeyInputUpArrow"?E.key=x?v.C0.ESC+"OA":v.C0.ESC+"[A":f.key==="UIKeyInputLeftArrow"?E.key=x?v.C0.ESC+"OD":v.C0.ESC+"[D":f.key==="UIKeyInputRightArrow"?E.key=x?v.C0.ESC+"OC":v.C0.ESC+"[C":f.key==="UIKeyInputDownArrow"&&(E.key=x?v.C0.ESC+"OB":v.C0.ESC+"[B");break;case 8:E.key=f.ctrlKey?"\b":v.C0.DEL,f.altKey&&(E.key=v.C0.ESC+E.key);break;case 9:if(f.shiftKey){E.key=v.C0.ESC+"[Z";break}E.key=v.C0.HT,E.cancel=!0;break;case 13:E.key=f.altKey?v.C0.ESC+v.C0.CR:v.C0.CR,E.cancel=!0;break;case 27:E.key=v.C0.ESC,f.altKey&&(E.key=v.C0.ESC+v.C0.ESC),E.cancel=!0;break;case 37:if(f.metaKey)break;m?(E.key=v.C0.ESC+"[1;"+(m+1)+"D",E.key===v.C0.ESC+"[1;3D"&&(E.key=v.C0.ESC+(C?"b":"[1;5D"))):E.key=x?v.C0.ESC+"OD":v.C0.ESC+"[D";break;case 39:if(f.metaKey)break;m?(E.key=v.C0.ESC+"[1;"+(m+1)+"C",E.key===v.C0.ESC+"[1;3C"&&(E.key=v.C0.ESC+(C?"f":"[1;5C"))):E.key=x?v.C0.ESC+"OC":v.C0.ESC+"[C";break;case 38:if(f.metaKey)break;m?(E.key=v.C0.ESC+"[1;"+(m+1)+"A",C||E.key!==v.C0.ESC+"[1;3A"||(E.key=v.C0.ESC+"[1;5A")):E.key=x?v.C0.ESC+"OA":v.C0.ESC+"[A";break;case 40:if(f.metaKey)break;m?(E.key=v.C0.ESC+"[1;"+(m+1)+"B",C||E.key!==v.C0.ESC+"[1;3B"||(E.key=v.C0.ESC+"[1;5B")):E.key=x?v.C0.ESC+"OB":v.C0.ESC+"[B";break;case 45:f.shiftKey||f.ctrlKey||(E.key=v.C0.ESC+"[2~");break;case 46:E.key=m?v.C0.ESC+"[3;"+(m+1)+"~":v.C0.ESC+"[3~";break;case 36:E.key=m?v.C0.ESC+"[1;"+(m+1)+"H":x?v.C0.ESC+"OH":v.C0.ESC+"[H";break;case 35:E.key=m?v.C0.ESC+"[1;"+(m+1)+"F":x?v.C0.ESC+"OF":v.C0.ESC+"[F";break;case 33:f.shiftKey?E.type=2:f.ctrlKey?E.key=v.C0.ESC+"[5;"+(m+1)+"~":E.key=v.C0.ESC+"[5~";break;case 34:f.shiftKey?E.type=3:f.ctrlKey?E.key=v.C0.ESC+"[6;"+(m+1)+"~":E.key=v.C0.ESC+"[6~";break;case 112:E.key=m?v.C0.ESC+"[1;"+(m+1)+"P":v.C0.ESC+"OP";break;case 113:E.key=m?v.C0.ESC+"[1;"+(m+1)+"Q":v.C0.ESC+"OQ";break;case 114:E.key=m?v.C0.ESC+"[1;"+(m+1)+"R":v.C0.ESC+"OR";break;case 115:E.key=m?v.C0.ESC+"[1;"+(m+1)+"S":v.C0.ESC+"OS";break;case 116:E.key=m?v.C0.ESC+"[15;"+(m+1)+"~":v.C0.ESC+"[15~";break;case 117:E.key=m?v.C0.ESC+"[17;"+(m+1)+"~":v.C0.ESC+"[17~";break;case 118:E.key=m?v.C0.ESC+"[18;"+(m+1)+"~":v.C0.ESC+"[18~";break;case 119:E.key=m?v.C0.ESC+"[19;"+(m+1)+"~":v.C0.ESC+"[19~";break;case 120:E.key=m?v.C0.ESC+"[20;"+(m+1)+"~":v.C0.ESC+"[20~";break;case 121:E.key=m?v.C0.ESC+"[21;"+(m+1)+"~":v.C0.ESC+"[21~";break;case 122:E.key=m?v.C0.ESC+"[23;"+(m+1)+"~":v.C0.ESC+"[23~";break;case 123:E.key=m?v.C0.ESC+"[24;"+(m+1)+"~":v.C0.ESC+"[24~";break;default:if(!f.ctrlKey||f.shiftKey||f.altKey||f.metaKey)if(C&&!A||!f.altKey||f.metaKey)!C||f.altKey||f.ctrlKey||f.shiftKey||!f.metaKey?f.key&&!f.ctrlKey&&!f.altKey&&!f.metaKey&&f.keyCode>=48&&f.key.length===1?E.key=f.key:f.key&&f.ctrlKey&&(f.key==="_"&&(E.key=v.C0.US),f.key==="@"&&(E.key=v.C0.NUL)):f.keyCode===65&&(E.type=1);else{const S=b[f.keyCode],_=S==null?void 0:S[f.shiftKey?1:0];if(_)E.key=v.C0.ESC+_;else if(f.keyCode>=65&&f.keyCode<=90){const y=f.ctrlKey?f.keyCode-64:f.keyCode+32;let k=String.fromCharCode(y);f.shiftKey&&(k=k.toUpperCase()),E.key=v.C0.ESC+k}else if(f.keyCode===32)E.key=v.C0.ESC+(f.ctrlKey?v.C0.NUL:" ");else if(f.key==="Dead"&&f.code.startsWith("Key")){let y=f.code.slice(3,4);f.shiftKey||(y=y.toLowerCase()),E.key=v.C0.ESC+y,E.cancel=!0}}else f.keyCode>=65&&f.keyCode<=90?E.key=String.fromCharCode(f.keyCode-64):f.keyCode===32?E.key=v.C0.NUL:f.keyCode>=51&&f.keyCode<=55?E.key=String.fromCharCode(f.keyCode-51+27):f.keyCode===56?E.key=v.C0.DEL:f.keyCode===219?E.key=v.C0.ESC:f.keyCode===220?E.key=v.C0.FS:f.keyCode===221&&(E.key=v.C0.GS)}return E}},482:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.Utf8ToUtf32=c.StringToUtf32=c.utf32ToString=c.stringFromCodePoint=void 0,c.stringFromCodePoint=function(u){return u>65535?(u-=65536,String.fromCharCode(55296+(u>>10))+String.fromCharCode(u%1024+56320)):String.fromCharCode(u)},c.utf32ToString=function(u,v=0,b=u.length){let f="";for(let x=v;x<b;++x){let C=u[x];C>65535?(C-=65536,f+=String.fromCharCode(55296+(C>>10))+String.fromCharCode(C%1024+56320)):f+=String.fromCharCode(C)}return f},c.StringToUtf32=class{constructor(){this._interim=0}clear(){this._interim=0}decode(u,v){const b=u.length;if(!b)return 0;let f=0,x=0;if(this._interim){const C=u.charCodeAt(x++);56320<=C&&C<=57343?v[f++]=1024*(this._interim-55296)+C-56320+65536:(v[f++]=this._interim,v[f++]=C),this._interim=0}for(let C=x;C<b;++C){const A=u.charCodeAt(C);if(55296<=A&&A<=56319){if(++C>=b)return this._interim=A,f;const E=u.charCodeAt(C);56320<=E&&E<=57343?v[f++]=1024*(A-55296)+E-56320+65536:(v[f++]=A,v[f++]=E)}else A!==65279&&(v[f++]=A)}return f}},c.Utf8ToUtf32=class{constructor(){this.interim=new Uint8Array(3)}clear(){this.interim.fill(0)}decode(u,v){const b=u.length;if(!b)return 0;let f,x,C,A,E=0,m=0,S=0;if(this.interim[0]){let k=!1,R=this.interim[0];R&=(224&R)==192?31:(240&R)==224?15:7;let M,j=0;for(;(M=63&this.interim[++j])&&j<4;)R<<=6,R|=M;const T=(224&this.interim[0])==192?2:(240&this.interim[0])==224?3:4,D=T-j;for(;S<D;){if(S>=b)return 0;if(M=u[S++],(192&M)!=128){S--,k=!0;break}this.interim[j++]=M,R<<=6,R|=63&M}k||(T===2?R<128?S--:v[E++]=R:T===3?R<2048||R>=55296&&R<=57343||R===65279||(v[E++]=R):R<65536||R>1114111||(v[E++]=R)),this.interim.fill(0)}const _=b-4;let y=S;for(;y<b;){for(;!(!(y<_)||128&(f=u[y])||128&(x=u[y+1])||128&(C=u[y+2])||128&(A=u[y+3]));)v[E++]=f,v[E++]=x,v[E++]=C,v[E++]=A,y+=4;if(f=u[y++],f<128)v[E++]=f;else if((224&f)==192){if(y>=b)return this.interim[0]=f,E;if(x=u[y++],(192&x)!=128){y--;continue}if(m=(31&f)<<6|63&x,m<128){y--;continue}v[E++]=m}else if((240&f)==224){if(y>=b)return this.interim[0]=f,E;if(x=u[y++],(192&x)!=128){y--;continue}if(y>=b)return this.interim[0]=f,this.interim[1]=x,E;if(C=u[y++],(192&C)!=128){y--;continue}if(m=(15&f)<<12|(63&x)<<6|63&C,m<2048||m>=55296&&m<=57343||m===65279)continue;v[E++]=m}else if((248&f)==240){if(y>=b)return this.interim[0]=f,E;if(x=u[y++],(192&x)!=128){y--;continue}if(y>=b)return this.interim[0]=f,this.interim[1]=x,E;if(C=u[y++],(192&C)!=128){y--;continue}if(y>=b)return this.interim[0]=f,this.interim[1]=x,this.interim[2]=C,E;if(A=u[y++],(192&A)!=128){y--;continue}if(m=(7&f)<<18|(63&x)<<12|(63&C)<<6|63&A,m<65536||m>1114111)continue;v[E++]=m}}return E}}},225:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.UnicodeV6=void 0;const v=u(1480),b=[[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]],f=[[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 x;c.UnicodeV6=class{constructor(){if(this.version="6",!x){x=new Uint8Array(65536),x.fill(1),x[0]=0,x.fill(0,1,32),x.fill(0,127,160),x.fill(2,4352,4448),x[9001]=2,x[9002]=2,x.fill(2,11904,42192),x[12351]=1,x.fill(2,44032,55204),x.fill(2,63744,64256),x.fill(2,65040,65050),x.fill(2,65072,65136),x.fill(2,65280,65377),x.fill(2,65504,65511);for(let C=0;C<b.length;++C)x.fill(0,b[C][0],b[C][1]+1)}}wcwidth(C){return C<32?0:C<127?1:C<65536?x[C]:(function(A,E){let m,S=0,_=E.length-1;if(A<E[0][0]||A>E[_][1])return!1;for(;_>=S;)if(m=S+_>>1,A>E[m][1])S=m+1;else{if(!(A<E[m][0]))return!0;_=m-1}return!1})(C,f)?0:C>=131072&&C<=196605||C>=196608&&C<=262141?2:1}charProperties(C,A){let E=this.wcwidth(C),m=E===0&&A!==0;if(m){const S=v.UnicodeService.extractWidth(A);S===0?m=!1:S>E&&(E=S)}return v.UnicodeService.createPropertyValue(0,E,m)}}},5981:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.WriteBuffer=void 0;const v=u(8460),b=u(844);class f extends b.Disposable{constructor(C){super(),this._action=C,this._writeBuffer=[],this._callbacks=[],this._pendingData=0,this._bufferOffset=0,this._isSyncWriting=!1,this._syncCalls=0,this._didUserInput=!1,this._onWriteParsed=this.register(new v.EventEmitter),this.onWriteParsed=this._onWriteParsed.event}handleUserInput(){this._didUserInput=!0}writeSync(C,A){if(A!==void 0&&this._syncCalls>A)return void(this._syncCalls=0);if(this._pendingData+=C.length,this._writeBuffer.push(C),this._callbacks.push(void 0),this._syncCalls++,this._isSyncWriting)return;let E;for(this._isSyncWriting=!0;E=this._writeBuffer.shift();){this._action(E);const m=this._callbacks.shift();m&&m()}this._pendingData=0,this._bufferOffset=2147483647,this._isSyncWriting=!1,this._syncCalls=0}write(C,A){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+=C.length,this._writeBuffer.push(C),this._callbacks.push(A),void this._innerWrite();setTimeout((()=>this._innerWrite()))}this._pendingData+=C.length,this._writeBuffer.push(C),this._callbacks.push(A)}_innerWrite(C=0,A=!0){const E=C||Date.now();for(;this._writeBuffer.length>this._bufferOffset;){const m=this._writeBuffer[this._bufferOffset],S=this._action(m,A);if(S){const y=k=>Date.now()-E>=12?setTimeout((()=>this._innerWrite(0,k))):this._innerWrite(E,k);return void S.catch((k=>(queueMicrotask((()=>{throw k})),Promise.resolve(!1)))).then(y)}const _=this._callbacks[this._bufferOffset];if(_&&_(),this._bufferOffset++,this._pendingData-=m.length,Date.now()-E>=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()}}c.WriteBuffer=f},5941:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.toRgbString=c.parseColor=void 0;const u=/^([\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})$/,v=/^[\da-f]+$/;function b(f,x){const C=f.toString(16),A=C.length<2?"0"+C:C;switch(x){case 4:return C[0];case 8:return A;case 12:return(A+A).slice(0,3);default:return A+A}}c.parseColor=function(f){if(!f)return;let x=f.toLowerCase();if(x.indexOf("rgb:")===0){x=x.slice(4);const C=u.exec(x);if(C){const A=C[1]?15:C[4]?255:C[7]?4095:65535;return[Math.round(parseInt(C[1]||C[4]||C[7]||C[10],16)/A*255),Math.round(parseInt(C[2]||C[5]||C[8]||C[11],16)/A*255),Math.round(parseInt(C[3]||C[6]||C[9]||C[12],16)/A*255)]}}else if(x.indexOf("#")===0&&(x=x.slice(1),v.exec(x)&&[3,6,9,12].includes(x.length))){const C=x.length/3,A=[0,0,0];for(let E=0;E<3;++E){const m=parseInt(x.slice(C*E,C*E+C),16);A[E]=C===1?m<<4:C===2?m:C===3?m>>4:m>>8}return A}},c.toRgbString=function(f,x=16){const[C,A,E]=f;return`rgb:${b(C,x)}/${b(A,x)}/${b(E,x)}`}},5770:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.PAYLOAD_LIMIT=void 0,c.PAYLOAD_LIMIT=1e7},6351:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.DcsHandler=c.DcsParser=void 0;const v=u(482),b=u(8742),f=u(5770),x=[];c.DcsParser=class{constructor(){this._handlers=Object.create(null),this._active=x,this._ident=0,this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=x}registerHandler(A,E){this._handlers[A]===void 0&&(this._handlers[A]=[]);const m=this._handlers[A];return m.push(E),{dispose:()=>{const S=m.indexOf(E);S!==-1&&m.splice(S,1)}}}clearHandler(A){this._handlers[A]&&delete this._handlers[A]}setHandlerFallback(A){this._handlerFb=A}reset(){if(this._active.length)for(let A=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;A>=0;--A)this._active[A].unhook(!1);this._stack.paused=!1,this._active=x,this._ident=0}hook(A,E){if(this.reset(),this._ident=A,this._active=this._handlers[A]||x,this._active.length)for(let m=this._active.length-1;m>=0;m--)this._active[m].hook(E);else this._handlerFb(this._ident,"HOOK",E)}put(A,E,m){if(this._active.length)for(let S=this._active.length-1;S>=0;S--)this._active[S].put(A,E,m);else this._handlerFb(this._ident,"PUT",(0,v.utf32ToString)(A,E,m))}unhook(A,E=!0){if(this._active.length){let m=!1,S=this._active.length-1,_=!1;if(this._stack.paused&&(S=this._stack.loopPosition-1,m=E,_=this._stack.fallThrough,this._stack.paused=!1),!_&&m===!1){for(;S>=0&&(m=this._active[S].unhook(A),m!==!0);S--)if(m instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=S,this._stack.fallThrough=!1,m;S--}for(;S>=0;S--)if(m=this._active[S].unhook(!1),m instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=S,this._stack.fallThrough=!0,m}else this._handlerFb(this._ident,"UNHOOK",A);this._active=x,this._ident=0}};const C=new b.Params;C.addParam(0),c.DcsHandler=class{constructor(A){this._handler=A,this._data="",this._params=C,this._hitLimit=!1}hook(A){this._params=A.length>1||A.params[0]?A.clone():C,this._data="",this._hitLimit=!1}put(A,E,m){this._hitLimit||(this._data+=(0,v.utf32ToString)(A,E,m),this._data.length>f.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}unhook(A){let E=!1;if(this._hitLimit)E=!1;else if(A&&(E=this._handler(this._data,this._params),E instanceof Promise))return E.then((m=>(this._params=C,this._data="",this._hitLimit=!1,m)));return this._params=C,this._data="",this._hitLimit=!1,E}}},2015:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.EscapeSequenceParser=c.VT500_TRANSITION_TABLE=c.TransitionTable=void 0;const v=u(844),b=u(8742),f=u(6242),x=u(6351);class C{constructor(S){this.table=new Uint8Array(S)}setDefault(S,_){this.table.fill(S<<4|_)}add(S,_,y,k){this.table[_<<8|S]=y<<4|k}addMany(S,_,y,k){for(let R=0;R<S.length;R++)this.table[_<<8|S[R]]=y<<4|k}}c.TransitionTable=C;const A=160;c.VT500_TRANSITION_TABLE=(function(){const m=new C(4095),S=Array.apply(null,Array(256)).map(((j,T)=>T)),_=(j,T)=>S.slice(j,T),y=_(32,127),k=_(0,24);k.push(25),k.push.apply(k,_(28,32));const R=_(0,14);let M;for(M in m.setDefault(1,0),m.addMany(y,0,2,0),R)m.addMany([24,26,153,154],M,3,0),m.addMany(_(128,144),M,3,0),m.addMany(_(144,152),M,3,0),m.add(156,M,0,0),m.add(27,M,11,1),m.add(157,M,4,8),m.addMany([152,158,159],M,0,7),m.add(155,M,11,3),m.add(144,M,11,9);return m.addMany(k,0,3,0),m.addMany(k,1,3,1),m.add(127,1,0,1),m.addMany(k,8,0,8),m.addMany(k,3,3,3),m.add(127,3,0,3),m.addMany(k,4,3,4),m.add(127,4,0,4),m.addMany(k,6,3,6),m.addMany(k,5,3,5),m.add(127,5,0,5),m.addMany(k,2,3,2),m.add(127,2,0,2),m.add(93,1,4,8),m.addMany(y,8,5,8),m.add(127,8,5,8),m.addMany([156,27,24,26,7],8,6,0),m.addMany(_(28,32),8,0,8),m.addMany([88,94,95],1,0,7),m.addMany(y,7,0,7),m.addMany(k,7,0,7),m.add(156,7,0,0),m.add(127,7,0,7),m.add(91,1,11,3),m.addMany(_(64,127),3,7,0),m.addMany(_(48,60),3,8,4),m.addMany([60,61,62,63],3,9,4),m.addMany(_(48,60),4,8,4),m.addMany(_(64,127),4,7,0),m.addMany([60,61,62,63],4,0,6),m.addMany(_(32,64),6,0,6),m.add(127,6,0,6),m.addMany(_(64,127),6,0,0),m.addMany(_(32,48),3,9,5),m.addMany(_(32,48),5,9,5),m.addMany(_(48,64),5,0,6),m.addMany(_(64,127),5,7,0),m.addMany(_(32,48),4,9,5),m.addMany(_(32,48),1,9,2),m.addMany(_(32,48),2,9,2),m.addMany(_(48,127),2,10,0),m.addMany(_(48,80),1,10,0),m.addMany(_(81,88),1,10,0),m.addMany([89,90,92],1,10,0),m.addMany(_(96,127),1,10,0),m.add(80,1,11,9),m.addMany(k,9,0,9),m.add(127,9,0,9),m.addMany(_(28,32),9,0,9),m.addMany(_(32,48),9,9,12),m.addMany(_(48,60),9,8,10),m.addMany([60,61,62,63],9,9,10),m.addMany(k,11,0,11),m.addMany(_(32,128),11,0,11),m.addMany(_(28,32),11,0,11),m.addMany(k,10,0,10),m.add(127,10,0,10),m.addMany(_(28,32),10,0,10),m.addMany(_(48,60),10,8,10),m.addMany([60,61,62,63],10,0,11),m.addMany(_(32,48),10,9,12),m.addMany(k,12,0,12),m.add(127,12,0,12),m.addMany(_(28,32),12,0,12),m.addMany(_(32,48),12,9,12),m.addMany(_(48,64),12,0,11),m.addMany(_(64,127),12,12,13),m.addMany(_(64,127),10,12,13),m.addMany(_(64,127),9,12,13),m.addMany(k,13,13,13),m.addMany(y,13,13,13),m.add(127,13,0,13),m.addMany([27,156,24,26],13,14,0),m.add(A,0,2,0),m.add(A,8,5,8),m.add(A,6,0,6),m.add(A,11,0,11),m.add(A,13,13,13),m})();class E extends v.Disposable{constructor(S=c.VT500_TRANSITION_TABLE){super(),this._transitions=S,this._parseStack={state:0,handlers:[],handlerPos:0,transition:0,chunkPos:0},this.initialState=0,this.currentState=this.initialState,this._params=new b.Params,this._params.addParam(0),this._collect=0,this.precedingJoinState=0,this._printHandlerFb=(_,y,k)=>{},this._executeHandlerFb=_=>{},this._csiHandlerFb=(_,y)=>{},this._escHandlerFb=_=>{},this._errorHandlerFb=_=>_,this._printHandler=this._printHandlerFb,this._executeHandlers=Object.create(null),this._csiHandlers=Object.create(null),this._escHandlers=Object.create(null),this.register((0,v.toDisposable)((()=>{this._csiHandlers=Object.create(null),this._executeHandlers=Object.create(null),this._escHandlers=Object.create(null)}))),this._oscParser=this.register(new f.OscParser),this._dcsParser=this.register(new x.DcsParser),this._errorHandler=this._errorHandlerFb,this.registerEscHandler({final:"\\"},(()=>!0))}_identifier(S,_=[64,126]){let y=0;if(S.prefix){if(S.prefix.length>1)throw new Error("only one byte as prefix supported");if(y=S.prefix.charCodeAt(0),y&&60>y||y>63)throw new Error("prefix must be in range 0x3c .. 0x3f")}if(S.intermediates){if(S.intermediates.length>2)throw new Error("only two bytes as intermediates are supported");for(let R=0;R<S.intermediates.length;++R){const M=S.intermediates.charCodeAt(R);if(32>M||M>47)throw new Error("intermediate must be in range 0x20 .. 0x2f");y<<=8,y|=M}}if(S.final.length!==1)throw new Error("final must be a single byte");const k=S.final.charCodeAt(0);if(_[0]>k||k>_[1])throw new Error(`final must be in range ${_[0]} .. ${_[1]}`);return y<<=8,y|=k,y}identToString(S){const _=[];for(;S;)_.push(String.fromCharCode(255&S)),S>>=8;return _.reverse().join("")}setPrintHandler(S){this._printHandler=S}clearPrintHandler(){this._printHandler=this._printHandlerFb}registerEscHandler(S,_){const y=this._identifier(S,[48,126]);this._escHandlers[y]===void 0&&(this._escHandlers[y]=[]);const k=this._escHandlers[y];return k.push(_),{dispose:()=>{const R=k.indexOf(_);R!==-1&&k.splice(R,1)}}}clearEscHandler(S){this._escHandlers[this._identifier(S,[48,126])]&&delete this._escHandlers[this._identifier(S,[48,126])]}setEscHandlerFallback(S){this._escHandlerFb=S}setExecuteHandler(S,_){this._executeHandlers[S.charCodeAt(0)]=_}clearExecuteHandler(S){this._executeHandlers[S.charCodeAt(0)]&&delete this._executeHandlers[S.charCodeAt(0)]}setExecuteHandlerFallback(S){this._executeHandlerFb=S}registerCsiHandler(S,_){const y=this._identifier(S);this._csiHandlers[y]===void 0&&(this._csiHandlers[y]=[]);const k=this._csiHandlers[y];return k.push(_),{dispose:()=>{const R=k.indexOf(_);R!==-1&&k.splice(R,1)}}}clearCsiHandler(S){this._csiHandlers[this._identifier(S)]&&delete this._csiHandlers[this._identifier(S)]}setCsiHandlerFallback(S){this._csiHandlerFb=S}registerDcsHandler(S,_){return this._dcsParser.registerHandler(this._identifier(S),_)}clearDcsHandler(S){this._dcsParser.clearHandler(this._identifier(S))}setDcsHandlerFallback(S){this._dcsParser.setHandlerFallback(S)}registerOscHandler(S,_){return this._oscParser.registerHandler(S,_)}clearOscHandler(S){this._oscParser.clearHandler(S)}setOscHandlerFallback(S){this._oscParser.setHandlerFallback(S)}setErrorHandler(S){this._errorHandler=S}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(S,_,y,k,R){this._parseStack.state=S,this._parseStack.handlers=_,this._parseStack.handlerPos=y,this._parseStack.transition=k,this._parseStack.chunkPos=R}parse(S,_,y){let k,R=0,M=0,j=0;if(this._parseStack.state)if(this._parseStack.state===2)this._parseStack.state=0,j=this._parseStack.chunkPos+1;else{if(y===void 0||this._parseStack.state===1)throw this._parseStack.state=1,new Error("improper continuation due to previous async handler, giving up parsing");const T=this._parseStack.handlers;let D=this._parseStack.handlerPos-1;switch(this._parseStack.state){case 3:if(y===!1&&D>-1){for(;D>=0&&(k=T[D](this._params),k!==!0);D--)if(k instanceof Promise)return this._parseStack.handlerPos=D,k}this._parseStack.handlers=[];break;case 4:if(y===!1&&D>-1){for(;D>=0&&(k=T[D](),k!==!0);D--)if(k instanceof Promise)return this._parseStack.handlerPos=D,k}this._parseStack.handlers=[];break;case 6:if(R=S[this._parseStack.chunkPos],k=this._dcsParser.unhook(R!==24&&R!==26,y),k)return k;R===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0;break;case 5:if(R=S[this._parseStack.chunkPos],k=this._oscParser.end(R!==24&&R!==26,y),k)return k;R===27&&(this._parseStack.transition|=1),this._params.reset(),this._params.addParam(0),this._collect=0}this._parseStack.state=0,j=this._parseStack.chunkPos+1,this.precedingJoinState=0,this.currentState=15&this._parseStack.transition}for(let T=j;T<_;++T){switch(R=S[T],M=this._transitions.table[this.currentState<<8|(R<160?R:A)],M>>4){case 2:for(let U=T+1;;++U){if(U>=_||(R=S[U])<32||R>126&&R<A){this._printHandler(S,T,U),T=U-1;break}if(++U>=_||(R=S[U])<32||R>126&&R<A){this._printHandler(S,T,U),T=U-1;break}if(++U>=_||(R=S[U])<32||R>126&&R<A){this._printHandler(S,T,U),T=U-1;break}if(++U>=_||(R=S[U])<32||R>126&&R<A){this._printHandler(S,T,U),T=U-1;break}}break;case 3:this._executeHandlers[R]?this._executeHandlers[R]():this._executeHandlerFb(R),this.precedingJoinState=0;break;case 0:break;case 1:if(this._errorHandler({position:T,code:R,currentState:this.currentState,collect:this._collect,params:this._params,abort:!1}).abort)return;break;case 7:const D=this._csiHandlers[this._collect<<8|R];let H=D?D.length-1:-1;for(;H>=0&&(k=D[H](this._params),k!==!0);H--)if(k instanceof Promise)return this._preserveStack(3,D,H,M,T),k;H<0&&this._csiHandlerFb(this._collect<<8|R,this._params),this.precedingJoinState=0;break;case 8:do switch(R){case 59:this._params.addParam(0);break;case 58:this._params.addSubParam(-1);break;default:this._params.addDigit(R-48)}while(++T<_&&(R=S[T])>47&&R<60);T--;break;case 9:this._collect<<=8,this._collect|=R;break;case 10:const P=this._escHandlers[this._collect<<8|R];let W=P?P.length-1:-1;for(;W>=0&&(k=P[W](),k!==!0);W--)if(k instanceof Promise)return this._preserveStack(4,P,W,M,T),k;W<0&&this._escHandlerFb(this._collect<<8|R),this.precedingJoinState=0;break;case 11:this._params.reset(),this._params.addParam(0),this._collect=0;break;case 12:this._dcsParser.hook(this._collect<<8|R,this._params);break;case 13:for(let U=T+1;;++U)if(U>=_||(R=S[U])===24||R===26||R===27||R>127&&R<A){this._dcsParser.put(S,T,U),T=U-1;break}break;case 14:if(k=this._dcsParser.unhook(R!==24&&R!==26),k)return this._preserveStack(6,[],0,M,T),k;R===27&&(M|=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 U=T+1;;U++)if(U>=_||(R=S[U])<32||R>127&&R<A){this._oscParser.put(S,T,U),T=U-1;break}break;case 6:if(k=this._oscParser.end(R!==24&&R!==26),k)return this._preserveStack(5,[],0,M,T),k;R===27&&(M|=1),this._params.reset(),this._params.addParam(0),this._collect=0,this.precedingJoinState=0}this.currentState=15&M}}}c.EscapeSequenceParser=E},6242:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.OscHandler=c.OscParser=void 0;const v=u(5770),b=u(482),f=[];c.OscParser=class{constructor(){this._state=0,this._active=f,this._id=-1,this._handlers=Object.create(null),this._handlerFb=()=>{},this._stack={paused:!1,loopPosition:0,fallThrough:!1}}registerHandler(x,C){this._handlers[x]===void 0&&(this._handlers[x]=[]);const A=this._handlers[x];return A.push(C),{dispose:()=>{const E=A.indexOf(C);E!==-1&&A.splice(E,1)}}}clearHandler(x){this._handlers[x]&&delete this._handlers[x]}setHandlerFallback(x){this._handlerFb=x}dispose(){this._handlers=Object.create(null),this._handlerFb=()=>{},this._active=f}reset(){if(this._state===2)for(let x=this._stack.paused?this._stack.loopPosition-1:this._active.length-1;x>=0;--x)this._active[x].end(!1);this._stack.paused=!1,this._active=f,this._id=-1,this._state=0}_start(){if(this._active=this._handlers[this._id]||f,this._active.length)for(let x=this._active.length-1;x>=0;x--)this._active[x].start();else this._handlerFb(this._id,"START")}_put(x,C,A){if(this._active.length)for(let E=this._active.length-1;E>=0;E--)this._active[E].put(x,C,A);else this._handlerFb(this._id,"PUT",(0,b.utf32ToString)(x,C,A))}start(){this.reset(),this._state=1}put(x,C,A){if(this._state!==3){if(this._state===1)for(;C<A;){const E=x[C++];if(E===59){this._state=2,this._start();break}if(E<48||57<E)return void(this._state=3);this._id===-1&&(this._id=0),this._id=10*this._id+E-48}this._state===2&&A-C>0&&this._put(x,C,A)}}end(x,C=!0){if(this._state!==0){if(this._state!==3)if(this._state===1&&this._start(),this._active.length){let A=!1,E=this._active.length-1,m=!1;if(this._stack.paused&&(E=this._stack.loopPosition-1,A=C,m=this._stack.fallThrough,this._stack.paused=!1),!m&&A===!1){for(;E>=0&&(A=this._active[E].end(x),A!==!0);E--)if(A instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=E,this._stack.fallThrough=!1,A;E--}for(;E>=0;E--)if(A=this._active[E].end(!1),A instanceof Promise)return this._stack.paused=!0,this._stack.loopPosition=E,this._stack.fallThrough=!0,A}else this._handlerFb(this._id,"END",x);this._active=f,this._id=-1,this._state=0}}},c.OscHandler=class{constructor(x){this._handler=x,this._data="",this._hitLimit=!1}start(){this._data="",this._hitLimit=!1}put(x,C,A){this._hitLimit||(this._data+=(0,b.utf32ToString)(x,C,A),this._data.length>v.PAYLOAD_LIMIT&&(this._data="",this._hitLimit=!0))}end(x){let C=!1;if(this._hitLimit)C=!1;else if(x&&(C=this._handler(this._data),C instanceof Promise))return C.then((A=>(this._data="",this._hitLimit=!1,A)));return this._data="",this._hitLimit=!1,C}}},8742:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.Params=void 0;const u=2147483647;class v{static fromArray(f){const x=new v;if(!f.length)return x;for(let C=Array.isArray(f[0])?1:0;C<f.length;++C){const A=f[C];if(Array.isArray(A))for(let E=0;E<A.length;++E)x.addSubParam(A[E]);else x.addParam(A)}return x}constructor(f=32,x=32){if(this.maxLength=f,this.maxSubParamsLength=x,x>256)throw new Error("maxSubParamsLength must not be greater than 256");this.params=new Int32Array(f),this.length=0,this._subParams=new Int32Array(x),this._subParamsLength=0,this._subParamsIdx=new Uint16Array(f),this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}clone(){const f=new v(this.maxLength,this.maxSubParamsLength);return f.params.set(this.params),f.length=this.length,f._subParams.set(this._subParams),f._subParamsLength=this._subParamsLength,f._subParamsIdx.set(this._subParamsIdx),f._rejectDigits=this._rejectDigits,f._rejectSubDigits=this._rejectSubDigits,f._digitIsSub=this._digitIsSub,f}toArray(){const f=[];for(let x=0;x<this.length;++x){f.push(this.params[x]);const C=this._subParamsIdx[x]>>8,A=255&this._subParamsIdx[x];A-C>0&&f.push(Array.prototype.slice.call(this._subParams,C,A))}return f}reset(){this.length=0,this._subParamsLength=0,this._rejectDigits=!1,this._rejectSubDigits=!1,this._digitIsSub=!1}addParam(f){if(this._digitIsSub=!1,this.length>=this.maxLength)this._rejectDigits=!0;else{if(f<-1)throw new Error("values lesser than -1 are not allowed");this._subParamsIdx[this.length]=this._subParamsLength<<8|this._subParamsLength,this.params[this.length++]=f>u?u:f}}addSubParam(f){if(this._digitIsSub=!0,this.length)if(this._rejectDigits||this._subParamsLength>=this.maxSubParamsLength)this._rejectSubDigits=!0;else{if(f<-1)throw new Error("values lesser than -1 are not allowed");this._subParams[this._subParamsLength++]=f>u?u:f,this._subParamsIdx[this.length-1]++}}hasSubParams(f){return(255&this._subParamsIdx[f])-(this._subParamsIdx[f]>>8)>0}getSubParams(f){const x=this._subParamsIdx[f]>>8,C=255&this._subParamsIdx[f];return C-x>0?this._subParams.subarray(x,C):null}getSubParamsAll(){const f={};for(let x=0;x<this.length;++x){const C=this._subParamsIdx[x]>>8,A=255&this._subParamsIdx[x];A-C>0&&(f[x]=this._subParams.slice(C,A))}return f}addDigit(f){let x;if(this._rejectDigits||!(x=this._digitIsSub?this._subParamsLength:this.length)||this._digitIsSub&&this._rejectSubDigits)return;const C=this._digitIsSub?this._subParams:this.params,A=C[x-1];C[x-1]=~A?Math.min(10*A+f,u):f}}c.Params=v},5741:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.AddonManager=void 0,c.AddonManager=class{constructor(){this._addons=[]}dispose(){for(let u=this._addons.length-1;u>=0;u--)this._addons[u].instance.dispose()}loadAddon(u,v){const b={instance:v,dispose:v.dispose,isDisposed:!1};this._addons.push(b),v.dispose=()=>this._wrappedAddonDispose(b),v.activate(u)}_wrappedAddonDispose(u){if(u.isDisposed)return;let v=-1;for(let b=0;b<this._addons.length;b++)if(this._addons[b]===u){v=b;break}if(v===-1)throw new Error("Could not dispose an addon that has not been loaded");u.isDisposed=!0,u.dispose.apply(u.instance),this._addons.splice(v,1)}}},8771:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.BufferApiView=void 0;const v=u(3785),b=u(511);c.BufferApiView=class{constructor(f,x){this._buffer=f,this.type=x}init(f){return this._buffer=f,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(f){const x=this._buffer.lines.get(f);if(x)return new v.BufferLineApiView(x)}getNullCell(){return new b.CellData}}},3785:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.BufferLineApiView=void 0;const v=u(511);c.BufferLineApiView=class{constructor(b){this._line=b}get isWrapped(){return this._line.isWrapped}get length(){return this._line.length}getCell(b,f){if(!(b<0||b>=this._line.length))return f?(this._line.loadCell(b,f),f):this._line.loadCell(b,new v.CellData)}translateToString(b,f,x){return this._line.translateToString(b,f,x)}}},8285:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.BufferNamespaceApi=void 0;const v=u(8771),b=u(8460),f=u(844);class x extends f.Disposable{constructor(A){super(),this._core=A,this._onBufferChange=this.register(new b.EventEmitter),this.onBufferChange=this._onBufferChange.event,this._normal=new v.BufferApiView(this._core.buffers.normal,"normal"),this._alternate=new v.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)}}c.BufferNamespaceApi=x},7975:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.ParserApi=void 0,c.ParserApi=class{constructor(u){this._core=u}registerCsiHandler(u,v){return this._core.registerCsiHandler(u,(b=>v(b.toArray())))}addCsiHandler(u,v){return this.registerCsiHandler(u,v)}registerDcsHandler(u,v){return this._core.registerDcsHandler(u,((b,f)=>v(b,f.toArray())))}addDcsHandler(u,v){return this.registerDcsHandler(u,v)}registerEscHandler(u,v){return this._core.registerEscHandler(u,v)}addEscHandler(u,v){return this.registerEscHandler(u,v)}registerOscHandler(u,v){return this._core.registerOscHandler(u,v)}addOscHandler(u,v){return this.registerOscHandler(u,v)}}},7090:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.UnicodeApi=void 0,c.UnicodeApi=class{constructor(u){this._core=u}register(u){this._core.unicodeService.register(u)}get versions(){return this._core.unicodeService.versions}get activeVersion(){return this._core.unicodeService.activeVersion}set activeVersion(u){this._core.unicodeService.activeVersion=u}}},744:function(p,c,u){var v=this&&this.__decorate||function(m,S,_,y){var k,R=arguments.length,M=R<3?S:y===null?y=Object.getOwnPropertyDescriptor(S,_):y;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")M=Reflect.decorate(m,S,_,y);else for(var j=m.length-1;j>=0;j--)(k=m[j])&&(M=(R<3?k(M):R>3?k(S,_,M):k(S,_))||M);return R>3&&M&&Object.defineProperty(S,_,M),M},b=this&&this.__param||function(m,S){return function(_,y){S(_,y,m)}};Object.defineProperty(c,"__esModule",{value:!0}),c.BufferService=c.MINIMUM_ROWS=c.MINIMUM_COLS=void 0;const f=u(8460),x=u(844),C=u(5295),A=u(2585);c.MINIMUM_COLS=2,c.MINIMUM_ROWS=1;let E=c.BufferService=class extends x.Disposable{get buffer(){return this.buffers.active}constructor(m){super(),this.isUserScrolling=!1,this._onResize=this.register(new f.EventEmitter),this.onResize=this._onResize.event,this._onScroll=this.register(new f.EventEmitter),this.onScroll=this._onScroll.event,this.cols=Math.max(m.rawOptions.cols||0,c.MINIMUM_COLS),this.rows=Math.max(m.rawOptions.rows||0,c.MINIMUM_ROWS),this.buffers=this.register(new C.BufferSet(m,this))}resize(m,S){this.cols=m,this.rows=S,this.buffers.resize(m,S),this._onResize.fire({cols:m,rows:S})}reset(){this.buffers.reset(),this.isUserScrolling=!1}scroll(m,S=!1){const _=this.buffer;let y;y=this._cachedBlankLine,y&&y.length===this.cols&&y.getFg(0)===m.fg&&y.getBg(0)===m.bg||(y=_.getBlankLine(m,S),this._cachedBlankLine=y),y.isWrapped=S;const k=_.ybase+_.scrollTop,R=_.ybase+_.scrollBottom;if(_.scrollTop===0){const M=_.lines.isFull;R===_.lines.length-1?M?_.lines.recycle().copyFrom(y):_.lines.push(y.clone()):_.lines.splice(R+1,0,y.clone()),M?this.isUserScrolling&&(_.ydisp=Math.max(_.ydisp-1,0)):(_.ybase++,this.isUserScrolling||_.ydisp++)}else{const M=R-k+1;_.lines.shiftElements(k+1,M-1,-1),_.lines.set(R,y.clone())}this.isUserScrolling||(_.ydisp=_.ybase),this._onScroll.fire(_.ydisp)}scrollLines(m,S,_){const y=this.buffer;if(m<0){if(y.ydisp===0)return;this.isUserScrolling=!0}else m+y.ydisp>=y.ybase&&(this.isUserScrolling=!1);const k=y.ydisp;y.ydisp=Math.max(Math.min(y.ydisp+m,y.ybase),0),k!==y.ydisp&&(S||this._onScroll.fire(y.ydisp))}};c.BufferService=E=v([b(0,A.IOptionsService)],E)},7994:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.CharsetService=void 0,c.CharsetService=class{constructor(){this.glevel=0,this._charsets=[]}reset(){this.charset=void 0,this._charsets=[],this.glevel=0}setgLevel(u){this.glevel=u,this.charset=this._charsets[u]}setgCharset(u,v){this._charsets[u]=v,this.glevel===u&&(this.charset=v)}}},1753:function(p,c,u){var v=this&&this.__decorate||function(y,k,R,M){var j,T=arguments.length,D=T<3?k:M===null?M=Object.getOwnPropertyDescriptor(k,R):M;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")D=Reflect.decorate(y,k,R,M);else for(var H=y.length-1;H>=0;H--)(j=y[H])&&(D=(T<3?j(D):T>3?j(k,R,D):j(k,R))||D);return T>3&&D&&Object.defineProperty(k,R,D),D},b=this&&this.__param||function(y,k){return function(R,M){k(R,M,y)}};Object.defineProperty(c,"__esModule",{value:!0}),c.CoreMouseService=void 0;const f=u(2585),x=u(8460),C=u(844),A={NONE:{events:0,restrict:()=>!1},X10:{events:1,restrict:y=>y.button!==4&&y.action===1&&(y.ctrl=!1,y.alt=!1,y.shift=!1,!0)},VT200:{events:19,restrict:y=>y.action!==32},DRAG:{events:23,restrict:y=>y.action!==32||y.button!==3},ANY:{events:31,restrict:y=>!0}};function E(y,k){let R=(y.ctrl?16:0)|(y.shift?4:0)|(y.alt?8:0);return y.button===4?(R|=64,R|=y.action):(R|=3&y.button,4&y.button&&(R|=64),8&y.button&&(R|=128),y.action===32?R|=32:y.action!==0||k||(R|=3)),R}const m=String.fromCharCode,S={DEFAULT:y=>{const k=[E(y,!1)+32,y.col+32,y.row+32];return k[0]>255||k[1]>255||k[2]>255?"":`\x1B[M${m(k[0])}${m(k[1])}${m(k[2])}`},SGR:y=>{const k=y.action===0&&y.button!==4?"m":"M";return`\x1B[<${E(y,!0)};${y.col};${y.row}${k}`},SGR_PIXELS:y=>{const k=y.action===0&&y.button!==4?"m":"M";return`\x1B[<${E(y,!0)};${y.x};${y.y}${k}`}};let _=c.CoreMouseService=class extends C.Disposable{constructor(y,k){super(),this._bufferService=y,this._coreService=k,this._protocols={},this._encodings={},this._activeProtocol="",this._activeEncoding="",this._lastEvent=null,this._onProtocolChange=this.register(new x.EventEmitter),this.onProtocolChange=this._onProtocolChange.event;for(const R of Object.keys(A))this.addProtocol(R,A[R]);for(const R of Object.keys(S))this.addEncoding(R,S[R]);this.reset()}addProtocol(y,k){this._protocols[y]=k}addEncoding(y,k){this._encodings[y]=k}get activeProtocol(){return this._activeProtocol}get areMouseEventsActive(){return this._protocols[this._activeProtocol].events!==0}set activeProtocol(y){if(!this._protocols[y])throw new Error(`unknown protocol "${y}"`);this._activeProtocol=y,this._onProtocolChange.fire(this._protocols[y].events)}get activeEncoding(){return this._activeEncoding}set activeEncoding(y){if(!this._encodings[y])throw new Error(`unknown encoding "${y}"`);this._activeEncoding=y}reset(){this.activeProtocol="NONE",this.activeEncoding="DEFAULT",this._lastEvent=null}triggerMouseEvent(y){if(y.col<0||y.col>=this._bufferService.cols||y.row<0||y.row>=this._bufferService.rows||y.button===4&&y.action===32||y.button===3&&y.action!==32||y.button!==4&&(y.action===2||y.action===3)||(y.col++,y.row++,y.action===32&&this._lastEvent&&this._equalEvents(this._lastEvent,y,this._activeEncoding==="SGR_PIXELS"))||!this._protocols[this._activeProtocol].restrict(y))return!1;const k=this._encodings[this._activeEncoding](y);return k&&(this._activeEncoding==="DEFAULT"?this._coreService.triggerBinaryEvent(k):this._coreService.triggerDataEvent(k,!0)),this._lastEvent=y,!0}explainEvents(y){return{down:!!(1&y),up:!!(2&y),drag:!!(4&y),move:!!(8&y),wheel:!!(16&y)}}_equalEvents(y,k,R){if(R){if(y.x!==k.x||y.y!==k.y)return!1}else if(y.col!==k.col||y.row!==k.row)return!1;return y.button===k.button&&y.action===k.action&&y.ctrl===k.ctrl&&y.alt===k.alt&&y.shift===k.shift}};c.CoreMouseService=_=v([b(0,f.IBufferService),b(1,f.ICoreService)],_)},6975:function(p,c,u){var v=this&&this.__decorate||function(_,y,k,R){var M,j=arguments.length,T=j<3?y:R===null?R=Object.getOwnPropertyDescriptor(y,k):R;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")T=Reflect.decorate(_,y,k,R);else for(var D=_.length-1;D>=0;D--)(M=_[D])&&(T=(j<3?M(T):j>3?M(y,k,T):M(y,k))||T);return j>3&&T&&Object.defineProperty(y,k,T),T},b=this&&this.__param||function(_,y){return function(k,R){y(k,R,_)}};Object.defineProperty(c,"__esModule",{value:!0}),c.CoreService=void 0;const f=u(1439),x=u(8460),C=u(844),A=u(2585),E=Object.freeze({insertMode:!1}),m=Object.freeze({applicationCursorKeys:!1,applicationKeypad:!1,bracketedPasteMode:!1,origin:!1,reverseWraparound:!1,sendFocus:!1,wraparound:!0});let S=c.CoreService=class extends C.Disposable{constructor(_,y,k){super(),this._bufferService=_,this._logService=y,this._optionsService=k,this.isCursorInitialized=!1,this.isCursorHidden=!1,this._onData=this.register(new x.EventEmitter),this.onData=this._onData.event,this._onUserInput=this.register(new x.EventEmitter),this.onUserInput=this._onUserInput.event,this._onBinary=this.register(new x.EventEmitter),this.onBinary=this._onBinary.event,this._onRequestScrollToBottom=this.register(new x.EventEmitter),this.onRequestScrollToBottom=this._onRequestScrollToBottom.event,this.modes=(0,f.clone)(E),this.decPrivateModes=(0,f.clone)(m)}reset(){this.modes=(0,f.clone)(E),this.decPrivateModes=(0,f.clone)(m)}triggerDataEvent(_,y=!1){if(this._optionsService.rawOptions.disableStdin)return;const k=this._bufferService.buffer;y&&this._optionsService.rawOptions.scrollOnUserInput&&k.ybase!==k.ydisp&&this._onRequestScrollToBottom.fire(),y&&this._onUserInput.fire(),this._logService.debug(`sending data "${_}"`,(()=>_.split("").map((R=>R.charCodeAt(0))))),this._onData.fire(_)}triggerBinaryEvent(_){this._optionsService.rawOptions.disableStdin||(this._logService.debug(`sending binary "${_}"`,(()=>_.split("").map((y=>y.charCodeAt(0))))),this._onBinary.fire(_))}};c.CoreService=S=v([b(0,A.IBufferService),b(1,A.ILogService),b(2,A.IOptionsService)],S)},9074:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.DecorationService=void 0;const v=u(8055),b=u(8460),f=u(844),x=u(6106);let C=0,A=0;class E extends f.Disposable{get decorations(){return this._decorations.values()}constructor(){super(),this._decorations=new x.SortedList((_=>_==null?void 0:_.marker.line)),this._onDecorationRegistered=this.register(new b.EventEmitter),this.onDecorationRegistered=this._onDecorationRegistered.event,this._onDecorationRemoved=this.register(new b.EventEmitter),this.onDecorationRemoved=this._onDecorationRemoved.event,this.register((0,f.toDisposable)((()=>this.reset())))}registerDecoration(_){if(_.marker.isDisposed)return;const y=new m(_);if(y){const k=y.marker.onDispose((()=>y.dispose()));y.onDispose((()=>{y&&(this._decorations.delete(y)&&this._onDecorationRemoved.fire(y),k.dispose())})),this._decorations.insert(y),this._onDecorationRegistered.fire(y)}return y}reset(){for(const _ of this._decorations.values())_.dispose();this._decorations.clear()}*getDecorationsAtCell(_,y,k){let R=0,M=0;for(const j of this._decorations.getKeyIterator(y))R=j.options.x??0,M=R+(j.options.width??1),_>=R&&_<M&&(!k||(j.options.layer??"bottom")===k)&&(yield j)}forEachDecorationAtCell(_,y,k,R){this._decorations.forEachByKey(y,(M=>{C=M.options.x??0,A=C+(M.options.width??1),_>=C&&_<A&&(!k||(M.options.layer??"bottom")===k)&&R(M)}))}}c.DecorationService=E;class m extends f.Disposable{get isDisposed(){return this._isDisposed}get backgroundColorRGB(){return this._cachedBg===null&&(this.options.backgroundColor?this._cachedBg=v.css.toColor(this.options.backgroundColor):this._cachedBg=void 0),this._cachedBg}get foregroundColorRGB(){return this._cachedFg===null&&(this.options.foregroundColor?this._cachedFg=v.css.toColor(this.options.foregroundColor):this._cachedFg=void 0),this._cachedFg}constructor(_){super(),this.options=_,this.onRenderEmitter=this.register(new b.EventEmitter),this.onRender=this.onRenderEmitter.event,this._onDispose=this.register(new b.EventEmitter),this.onDispose=this._onDispose.event,this._cachedBg=null,this._cachedFg=null,this.marker=_.marker,this.options.overviewRulerOptions&&!this.options.overviewRulerOptions.position&&(this.options.overviewRulerOptions.position="full")}dispose(){this._onDispose.fire(),super.dispose()}}},4348:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.InstantiationService=c.ServiceCollection=void 0;const v=u(2585),b=u(8343);class f{constructor(...C){this._entries=new Map;for(const[A,E]of C)this.set(A,E)}set(C,A){const E=this._entries.get(C);return this._entries.set(C,A),E}forEach(C){for(const[A,E]of this._entries.entries())C(A,E)}has(C){return this._entries.has(C)}get(C){return this._entries.get(C)}}c.ServiceCollection=f,c.InstantiationService=class{constructor(){this._services=new f,this._services.set(v.IInstantiationService,this)}setService(x,C){this._services.set(x,C)}getService(x){return this._services.get(x)}createInstance(x,...C){const A=(0,b.getServiceDependencies)(x).sort(((S,_)=>S.index-_.index)),E=[];for(const S of A){const _=this._services.get(S.id);if(!_)throw new Error(`[createInstance] ${x.name} depends on UNKNOWN service ${S.id}.`);E.push(_)}const m=A.length>0?A[0].index:C.length;if(C.length!==m)throw new Error(`[createInstance] First service dependency of ${x.name} at position ${m+1} conflicts with ${C.length} static arguments`);return new x(...C,...E)}}},7866:function(p,c,u){var v=this&&this.__decorate||function(m,S,_,y){var k,R=arguments.length,M=R<3?S:y===null?y=Object.getOwnPropertyDescriptor(S,_):y;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")M=Reflect.decorate(m,S,_,y);else for(var j=m.length-1;j>=0;j--)(k=m[j])&&(M=(R<3?k(M):R>3?k(S,_,M):k(S,_))||M);return R>3&&M&&Object.defineProperty(S,_,M),M},b=this&&this.__param||function(m,S){return function(_,y){S(_,y,m)}};Object.defineProperty(c,"__esModule",{value:!0}),c.traceCall=c.setTraceLogger=c.LogService=void 0;const f=u(844),x=u(2585),C={trace:x.LogLevelEnum.TRACE,debug:x.LogLevelEnum.DEBUG,info:x.LogLevelEnum.INFO,warn:x.LogLevelEnum.WARN,error:x.LogLevelEnum.ERROR,off:x.LogLevelEnum.OFF};let A,E=c.LogService=class extends f.Disposable{get logLevel(){return this._logLevel}constructor(m){super(),this._optionsService=m,this._logLevel=x.LogLevelEnum.OFF,this._updateLogLevel(),this.register(this._optionsService.onSpecificOptionChange("logLevel",(()=>this._updateLogLevel()))),A=this}_updateLogLevel(){this._logLevel=C[this._optionsService.rawOptions.logLevel]}_evalLazyOptionalParams(m){for(let S=0;S<m.length;S++)typeof m[S]=="function"&&(m[S]=m[S]())}_log(m,S,_){this._evalLazyOptionalParams(_),m.call(console,(this._optionsService.options.logger?"":"xterm.js: ")+S,..._)}trace(m,...S){var _;this._logLevel<=x.LogLevelEnum.TRACE&&this._log(((_=this._optionsService.options.logger)==null?void 0:_.trace.bind(this._optionsService.options.logger))??console.log,m,S)}debug(m,...S){var _;this._logLevel<=x.LogLevelEnum.DEBUG&&this._log(((_=this._optionsService.options.logger)==null?void 0:_.debug.bind(this._optionsService.options.logger))??console.log,m,S)}info(m,...S){var _;this._logLevel<=x.LogLevelEnum.INFO&&this._log(((_=this._optionsService.options.logger)==null?void 0:_.info.bind(this._optionsService.options.logger))??console.info,m,S)}warn(m,...S){var _;this._logLevel<=x.LogLevelEnum.WARN&&this._log(((_=this._optionsService.options.logger)==null?void 0:_.warn.bind(this._optionsService.options.logger))??console.warn,m,S)}error(m,...S){var _;this._logLevel<=x.LogLevelEnum.ERROR&&this._log(((_=this._optionsService.options.logger)==null?void 0:_.error.bind(this._optionsService.options.logger))??console.error,m,S)}};c.LogService=E=v([b(0,x.IOptionsService)],E),c.setTraceLogger=function(m){A=m},c.traceCall=function(m,S,_){if(typeof _.value!="function")throw new Error("not supported");const y=_.value;_.value=function(...k){if(A.logLevel!==x.LogLevelEnum.TRACE)return y.apply(this,k);A.trace(`GlyphRenderer#${y.name}(${k.map((M=>JSON.stringify(M))).join(", ")})`);const R=y.apply(this,k);return A.trace(`GlyphRenderer#${y.name} return`,R),R}}},7302:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.OptionsService=c.DEFAULT_OPTIONS=void 0;const v=u(8460),b=u(844),f=u(6114);c.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:f.isMac,windowOptions:{},windowsMode:!1,windowsPty:{},wordSeparator:" ()[]{}',\"`",altClickMovesCursor:!0,convertEol:!1,termName:"xterm",cancelEvents:!1,overviewRulerWidth:0};const x=["normal","bold","100","200","300","400","500","600","700","800","900"];class C extends b.Disposable{constructor(E){super(),this._onOptionChange=this.register(new v.EventEmitter),this.onOptionChange=this._onOptionChange.event;const m={...c.DEFAULT_OPTIONS};for(const S in E)if(S in m)try{const _=E[S];m[S]=this._sanitizeAndValidateOption(S,_)}catch(_){console.error(_)}this.rawOptions=m,this.options={...m},this._setupOptions(),this.register((0,b.toDisposable)((()=>{this.rawOptions.linkHandler=null,this.rawOptions.documentOverride=null})))}onSpecificOptionChange(E,m){return this.onOptionChange((S=>{S===E&&m(this.rawOptions[E])}))}onMultipleOptionChange(E,m){return this.onOptionChange((S=>{E.indexOf(S)!==-1&&m()}))}_setupOptions(){const E=S=>{if(!(S in c.DEFAULT_OPTIONS))throw new Error(`No option with key "${S}"`);return this.rawOptions[S]},m=(S,_)=>{if(!(S in c.DEFAULT_OPTIONS))throw new Error(`No option with key "${S}"`);_=this._sanitizeAndValidateOption(S,_),this.rawOptions[S]!==_&&(this.rawOptions[S]=_,this._onOptionChange.fire(S))};for(const S in this.rawOptions){const _={get:E.bind(this,S),set:m.bind(this,S)};Object.defineProperty(this.options,S,_)}}_sanitizeAndValidateOption(E,m){switch(E){case"cursorStyle":if(m||(m=c.DEFAULT_OPTIONS[E]),!(function(S){return S==="block"||S==="underline"||S==="bar"})(m))throw new Error(`"${m}" is not a valid value for ${E}`);break;case"wordSeparator":m||(m=c.DEFAULT_OPTIONS[E]);break;case"fontWeight":case"fontWeightBold":if(typeof m=="number"&&1<=m&&m<=1e3)break;m=x.includes(m)?m:c.DEFAULT_OPTIONS[E];break;case"cursorWidth":m=Math.floor(m);case"lineHeight":case"tabStopWidth":if(m<1)throw new Error(`${E} cannot be less than 1, value: ${m}`);break;case"minimumContrastRatio":m=Math.max(1,Math.min(21,Math.round(10*m)/10));break;case"scrollback":if((m=Math.min(m,4294967295))<0)throw new Error(`${E} cannot be less than 0, value: ${m}`);break;case"fastScrollSensitivity":case"scrollSensitivity":if(m<=0)throw new Error(`${E} cannot be less than or equal to 0, value: ${m}`);break;case"rows":case"cols":if(!m&&m!==0)throw new Error(`${E} must be numeric, value: ${m}`);break;case"windowsPty":m=m??{}}return m}}c.OptionsService=C},2660:function(p,c,u){var v=this&&this.__decorate||function(C,A,E,m){var S,_=arguments.length,y=_<3?A:m===null?m=Object.getOwnPropertyDescriptor(A,E):m;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")y=Reflect.decorate(C,A,E,m);else for(var k=C.length-1;k>=0;k--)(S=C[k])&&(y=(_<3?S(y):_>3?S(A,E,y):S(A,E))||y);return _>3&&y&&Object.defineProperty(A,E,y),y},b=this&&this.__param||function(C,A){return function(E,m){A(E,m,C)}};Object.defineProperty(c,"__esModule",{value:!0}),c.OscLinkService=void 0;const f=u(2585);let x=c.OscLinkService=class{constructor(C){this._bufferService=C,this._nextId=1,this._entriesWithId=new Map,this._dataByLinkId=new Map}registerLink(C){const A=this._bufferService.buffer;if(C.id===void 0){const k=A.addMarker(A.ybase+A.y),R={data:C,id:this._nextId++,lines:[k]};return k.onDispose((()=>this._removeMarkerFromLink(R,k))),this._dataByLinkId.set(R.id,R),R.id}const E=C,m=this._getEntryIdKey(E),S=this._entriesWithId.get(m);if(S)return this.addLineToLink(S.id,A.ybase+A.y),S.id;const _=A.addMarker(A.ybase+A.y),y={id:this._nextId++,key:this._getEntryIdKey(E),data:E,lines:[_]};return _.onDispose((()=>this._removeMarkerFromLink(y,_))),this._entriesWithId.set(y.key,y),this._dataByLinkId.set(y.id,y),y.id}addLineToLink(C,A){const E=this._dataByLinkId.get(C);if(E&&E.lines.every((m=>m.line!==A))){const m=this._bufferService.buffer.addMarker(A);E.lines.push(m),m.onDispose((()=>this._removeMarkerFromLink(E,m)))}}getLinkData(C){var A;return(A=this._dataByLinkId.get(C))==null?void 0:A.data}_getEntryIdKey(C){return`${C.id};;${C.uri}`}_removeMarkerFromLink(C,A){const E=C.lines.indexOf(A);E!==-1&&(C.lines.splice(E,1),C.lines.length===0&&(C.data.id!==void 0&&this._entriesWithId.delete(C.key),this._dataByLinkId.delete(C.id)))}};c.OscLinkService=x=v([b(0,f.IBufferService)],x)},8343:(p,c)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.createDecorator=c.getServiceDependencies=c.serviceRegistry=void 0;const u="di$target",v="di$dependencies";c.serviceRegistry=new Map,c.getServiceDependencies=function(b){return b[v]||[]},c.createDecorator=function(b){if(c.serviceRegistry.has(b))return c.serviceRegistry.get(b);const f=function(x,C,A){if(arguments.length!==3)throw new Error("@IServiceName-decorator can only be used to decorate a parameter");(function(E,m,S){m[u]===m?m[v].push({id:E,index:S}):(m[v]=[{id:E,index:S}],m[u]=m)})(f,x,A)};return f.toString=()=>b,c.serviceRegistry.set(b,f),f}},2585:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.IDecorationService=c.IUnicodeService=c.IOscLinkService=c.IOptionsService=c.ILogService=c.LogLevelEnum=c.IInstantiationService=c.ICharsetService=c.ICoreService=c.ICoreMouseService=c.IBufferService=void 0;const v=u(8343);var b;c.IBufferService=(0,v.createDecorator)("BufferService"),c.ICoreMouseService=(0,v.createDecorator)("CoreMouseService"),c.ICoreService=(0,v.createDecorator)("CoreService"),c.ICharsetService=(0,v.createDecorator)("CharsetService"),c.IInstantiationService=(0,v.createDecorator)("InstantiationService"),(function(f){f[f.TRACE=0]="TRACE",f[f.DEBUG=1]="DEBUG",f[f.INFO=2]="INFO",f[f.WARN=3]="WARN",f[f.ERROR=4]="ERROR",f[f.OFF=5]="OFF"})(b||(c.LogLevelEnum=b={})),c.ILogService=(0,v.createDecorator)("LogService"),c.IOptionsService=(0,v.createDecorator)("OptionsService"),c.IOscLinkService=(0,v.createDecorator)("OscLinkService"),c.IUnicodeService=(0,v.createDecorator)("UnicodeService"),c.IDecorationService=(0,v.createDecorator)("DecorationService")},1480:(p,c,u)=>{Object.defineProperty(c,"__esModule",{value:!0}),c.UnicodeService=void 0;const v=u(8460),b=u(225);class f{static extractShouldJoin(C){return(1&C)!=0}static extractWidth(C){return C>>1&3}static extractCharKind(C){return C>>3}static createPropertyValue(C,A,E=!1){return(16777215&C)<<3|(3&A)<<1|(E?1:0)}constructor(){this._providers=Object.create(null),this._active="",this._onChange=new v.EventEmitter,this.onChange=this._onChange.event;const C=new b.UnicodeV6;this.register(C),this._active=C.version,this._activeProvider=C}dispose(){this._onChange.dispose()}get versions(){return Object.keys(this._providers)}get activeVersion(){return this._active}set activeVersion(C){if(!this._providers[C])throw new Error(`unknown Unicode version "${C}"`);this._active=C,this._activeProvider=this._providers[C],this._onChange.fire(C)}register(C){this._providers[C.version]=C}wcwidth(C){return this._activeProvider.wcwidth(C)}getStringCellWidth(C){let A=0,E=0;const m=C.length;for(let S=0;S<m;++S){let _=C.charCodeAt(S);if(55296<=_&&_<=56319){if(++S>=m)return A+this.wcwidth(_);const R=C.charCodeAt(S);56320<=R&&R<=57343?_=1024*(_-55296)+R-56320+65536:A+=this.wcwidth(R)}const y=this.charProperties(_,E);let k=f.extractWidth(y);f.extractShouldJoin(y)&&(k-=f.extractWidth(E)),A+=k,E=y}return A}charProperties(C,A){return this._activeProvider.charProperties(C,A)}}c.UnicodeService=f}},a={};function l(p){var c=a[p];if(c!==void 0)return c.exports;var u=a[p]={exports:{}};return n[p].call(u.exports,u,u.exports,l),u.exports}var d={};return(()=>{var p=d;Object.defineProperty(p,"__esModule",{value:!0}),p.Terminal=void 0;const c=l(9042),u=l(3236),v=l(844),b=l(5741),f=l(8285),x=l(7975),C=l(7090),A=["cols","rows"];class E extends v.Disposable{constructor(S){super(),this._core=this.register(new u.Terminal(S)),this._addonManager=this.register(new b.AddonManager),this._publicOptions={...this._core.options};const _=k=>this._core.options[k],y=(k,R)=>{this._checkReadonlyOptions(k),this._core.options[k]=R};for(const k in this._core.options){const R={get:_.bind(this,k),set:y.bind(this,k)};Object.defineProperty(this._publicOptions,k,R)}}_checkReadonlyOptions(S){if(A.includes(S))throw new Error(`Option "${S}" 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 x.ParserApi(this._core)),this._parser}get unicode(){return this._checkProposedApi(),new C.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 f.BufferNamespaceApi(this._core))),this._buffer}get markers(){return this._checkProposedApi(),this._core.markers}get modes(){const S=this._core.coreService.decPrivateModes;let _="none";switch(this._core.coreMouseService.activeProtocol){case"X10":_="x10";break;case"VT200":_="vt200";break;case"DRAG":_="drag";break;case"ANY":_="any"}return{applicationCursorKeysMode:S.applicationCursorKeys,applicationKeypadMode:S.applicationKeypad,bracketedPasteMode:S.bracketedPasteMode,insertMode:this._core.coreService.modes.insertMode,mouseTrackingMode:_,originMode:S.origin,reverseWraparoundMode:S.reverseWraparound,sendFocusMode:S.sendFocus,wraparoundMode:S.wraparound}}get options(){return this._publicOptions}set options(S){for(const _ in S)this._publicOptions[_]=S[_]}blur(){this._core.blur()}focus(){this._core.focus()}input(S,_=!0){this._core.input(S,_)}resize(S,_){this._verifyIntegers(S,_),this._core.resize(S,_)}open(S){this._core.open(S)}attachCustomKeyEventHandler(S){this._core.attachCustomKeyEventHandler(S)}attachCustomWheelEventHandler(S){this._core.attachCustomWheelEventHandler(S)}registerLinkProvider(S){return this._core.registerLinkProvider(S)}registerCharacterJoiner(S){return this._checkProposedApi(),this._core.registerCharacterJoiner(S)}deregisterCharacterJoiner(S){this._checkProposedApi(),this._core.deregisterCharacterJoiner(S)}registerMarker(S=0){return this._verifyIntegers(S),this._core.registerMarker(S)}registerDecoration(S){return this._checkProposedApi(),this._verifyPositiveIntegers(S.x??0,S.width??0,S.height??0),this._core.registerDecoration(S)}hasSelection(){return this._core.hasSelection()}select(S,_,y){this._verifyIntegers(S,_,y),this._core.select(S,_,y)}getSelection(){return this._core.getSelection()}getSelectionPosition(){return this._core.getSelectionPosition()}clearSelection(){this._core.clearSelection()}selectAll(){this._core.selectAll()}selectLines(S,_){this._verifyIntegers(S,_),this._core.selectLines(S,_)}dispose(){super.dispose()}scrollLines(S){this._verifyIntegers(S),this._core.scrollLines(S)}scrollPages(S){this._verifyIntegers(S),this._core.scrollPages(S)}scrollToTop(){this._core.scrollToTop()}scrollToBottom(){this._core.scrollToBottom()}scrollToLine(S){this._verifyIntegers(S),this._core.scrollToLine(S)}clear(){this._core.clear()}write(S,_){this._core.write(S,_)}writeln(S,_){this._core.write(S),this._core.write(`\r
453
+ `,_)}paste(S){this._core.paste(S)}refresh(S,_){this._verifyIntegers(S,_),this._core.refresh(S,_)}reset(){this._core.reset()}clearTextureAtlas(){this._core.clearTextureAtlas()}loadAddon(S){this._addonManager.loadAddon(this,S)}static get strings(){return c}_verifyIntegers(...S){for(const _ of S)if(_===1/0||isNaN(_)||_%1!=0)throw new Error("This API only accepts integers")}_verifyPositiveIntegers(...S){for(const _ of S)if(_&&(_===1/0||isNaN(_)||_%1!=0||_<0))throw new Error("This API only accepts positive integers")}}p.Terminal=E})(),d})()))})(kd)),kd.exports}var zk=Hk(),Td={exports:{}},Xm;function Ik(){return Xm||(Xm=1,(function(s,t){(function(n,a){s.exports=a()})(self,(()=>(()=>{var n={};return(()=>{var a=n;Object.defineProperty(a,"__esModule",{value:!0}),a.FitAddon=void 0,a.FitAddon=class{activate(l){this._terminal=l}dispose(){}fit(){const l=this.proposeDimensions();if(!l||!this._terminal||isNaN(l.cols)||isNaN(l.rows))return;const d=this._terminal._core;this._terminal.rows===l.rows&&this._terminal.cols===l.cols||(d._renderService.clear(),this._terminal.resize(l.cols,l.rows))}proposeDimensions(){if(!this._terminal||!this._terminal.element||!this._terminal.element.parentElement)return;const l=this._terminal._core,d=l._renderService.dimensions;if(d.css.cell.width===0||d.css.cell.height===0)return;const p=this._terminal.options.scrollback===0?0:l.viewport.scrollBarWidth,c=window.getComputedStyle(this._terminal.element.parentElement),u=parseInt(c.getPropertyValue("height")),v=Math.max(0,parseInt(c.getPropertyValue("width"))),b=window.getComputedStyle(this._terminal.element),f=u-(parseInt(b.getPropertyValue("padding-top"))+parseInt(b.getPropertyValue("padding-bottom"))),x=v-(parseInt(b.getPropertyValue("padding-right"))+parseInt(b.getPropertyValue("padding-left")))-p;return{cols:Math.max(2,Math.floor(x/d.css.cell.width)),rows:Math.max(1,Math.floor(f/d.css.cell.height))}}}})(),n})()))})(Td)),Td.exports}var $k=Ik(),Ad={exports:{}},Jm;function Pk(){return Jm||(Jm=1,(function(s,t){(function(n,a){s.exports=a()})(self,(()=>(()=>{var n={6:(p,c)=>{function u(b){try{const f=new URL(b),x=f.password&&f.username?`${f.protocol}//${f.username}:${f.password}@${f.host}`:f.username?`${f.protocol}//${f.username}@${f.host}`:`${f.protocol}//${f.host}`;return b.toLocaleLowerCase().startsWith(x.toLocaleLowerCase())}catch{return!1}}Object.defineProperty(c,"__esModule",{value:!0}),c.LinkComputer=c.WebLinkProvider=void 0,c.WebLinkProvider=class{constructor(b,f,x,C={}){this._terminal=b,this._regex=f,this._handler=x,this._options=C}provideLinks(b,f){const x=v.computeLink(b,this._regex,this._terminal,this._handler);f(this._addCallbacks(x))}_addCallbacks(b){return b.map((f=>(f.leave=this._options.leave,f.hover=(x,C)=>{if(this._options.hover){const{range:A}=f;this._options.hover(x,C,A)}},f)))}};class v{static computeLink(f,x,C,A){const E=new RegExp(x.source,(x.flags||"")+"g"),[m,S]=v._getWindowedLineStrings(f-1,C),_=m.join("");let y;const k=[];for(;y=E.exec(_);){const R=y[0];if(!u(R))continue;const[M,j]=v._mapStrIdx(C,S,0,y.index),[T,D]=v._mapStrIdx(C,M,j,R.length);if(M===-1||j===-1||T===-1||D===-1)continue;const H={start:{x:j+1,y:M+1},end:{x:D,y:T+1}};k.push({range:H,text:R,activate:A})}return k}static _getWindowedLineStrings(f,x){let C,A=f,E=f,m=0,S="";const _=[];if(C=x.buffer.active.getLine(f)){const y=C.translateToString(!0);if(C.isWrapped&&y[0]!==" "){for(m=0;(C=x.buffer.active.getLine(--A))&&m<2048&&(S=C.translateToString(!0),m+=S.length,_.push(S),C.isWrapped&&S.indexOf(" ")===-1););_.reverse()}for(_.push(y),m=0;(C=x.buffer.active.getLine(++E))&&C.isWrapped&&m<2048&&(S=C.translateToString(!0),m+=S.length,_.push(S),S.indexOf(" ")===-1););}return[_,A]}static _mapStrIdx(f,x,C,A){const E=f.buffer.active,m=E.getNullCell();let S=C;for(;A;){const _=E.getLine(x);if(!_)return[-1,-1];for(let y=S;y<_.length;++y){_.getCell(y,m);const k=m.getChars();if(m.getWidth()&&(A-=k.length||1,y===_.length-1&&k==="")){const R=E.getLine(x+1);R&&R.isWrapped&&(R.getCell(0,m),m.getWidth()===2&&(A+=1))}if(A<0)return[x,y]}x++,S=0}return[x,S]}}c.LinkComputer=v}},a={};function l(p){var c=a[p];if(c!==void 0)return c.exports;var u=a[p]={exports:{}};return n[p](u,u.exports,l),u.exports}var d={};return(()=>{var p=d;Object.defineProperty(p,"__esModule",{value:!0}),p.WebLinksAddon=void 0;const c=l(6),u=/(https?|HTTPS?):[/]{2}[^\s"'!*(){}|\\\^<>`]*[^\s"':,.!?{}|\\\^~\[\]`()<>]/;function v(b,f){const x=window.open();if(x){try{x.opener=null}catch{}x.location.href=f}else console.warn("Opening link blocked as opener could not be cleared")}p.WebLinksAddon=class{constructor(b=v,f={}){this._handler=b,this._options=f}activate(b){this._terminal=b;const f=this._options,x=f.urlRegex||u;this._linkProvider=this._terminal.registerLinkProvider(new c.WebLinkProvider(this._terminal,x,this._handler,f))}dispose(){var b;(b=this._linkProvider)==null||b.dispose()}}})(),d})()))})(Ad)),Ad.exports}var Uk=Pk();function Fk(s,t){return`${window.location.protocol==="https:"?"wss:":"ws:"}//${window.location.host}/ws/terminal?session=${encodeURIComponent(s)}&token=${encodeURIComponent(t)}`}const qk=15e3,Wk=new Set([4001,4004]),Gk='"Geist Mono", ui-monospace, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace';function Sc(s,t){return typeof document>"u"?t:getComputedStyle(document.documentElement).getPropertyValue(s).trim()||t}const Vk={black:"#1a1a1e",red:"#f87171",green:"#4ade80",yellow:"#f59e0b",blue:"#3b82f6",magenta:"#9b8fc4",cyan:"#22d3ee",white:"#f3f3f5",brightBlack:"#404046",brightRed:"#ff9b96",brightGreen:"#86efac",brightYellow:"#ffd966",brightBlue:"#60a5fa",brightMagenta:"#c4b5fd",brightCyan:"#67e8f9",brightWhite:"#ffffff"},Yk={black:"#3a3a3e",red:"#dc2626",green:"#16a34a",yellow:"#b45309",blue:"#2563eb",magenta:"#7c3aed",cyan:"#0891b2",white:"#d4d4d8",brightBlack:"#6b6b75",brightRed:"#ef4444",brightGreen:"#22c55e",brightYellow:"#f59e0b",brightBlue:"#3b82f6",brightMagenta:"#9b8fc4",brightCyan:"#22d3ee",brightWhite:"#ffffff"};function Zm(s){const t=Sc("--bg",s==="dark"?"#0b0e13":"#f8f9fa"),n=Sc("--ink",s==="dark"?"#f3f3f5":"#16161a"),a=Sc("--brand",s==="dark"?"#6be195":"#167e3a");return{...s==="dark"?Vk:Yk,background:t,foreground:n,cursor:a,cursorAccent:t,selectionBackground:`${a}40`}}const Kk=({sessionId:s,token:t})=>{const n=$.useRef(null),a=$.useRef(null),[l,d]=$.useState("connecting"),[p,c]=$.useState(null);return $.useEffect(()=>rp(u=>{a.current&&(a.current.options.theme=Zm(u))}),[]),$.useEffect(()=>{var y;const u=n.current;if(!u)return;let v=!1,b=0,f=null,x=null;const C=new zk.Terminal({cursorBlink:!0,fontSize:13,fontFamily:Sc("--mono",Gk),theme:Zm(np()),scrollback:1e4,allowProposedApi:!0});a.current=C;const A=new $k.FitAddon;C.loadAddon(A),C.loadAddon(new Uk.WebLinksAddon),C.parser.registerCsiHandler({prefix:">",final:"q"},()=>(C.write("\x1BP>|XTerm(370)\x1B\\"),!0)),C.parser.registerOscHandler(52,k=>{var j;const R=k.split(";");if(R.length<2)return!1;const M=R[R.length-1];try{const T=atob(M),D=Uint8Array.from(T,P=>P.charCodeAt(0)),H=new TextDecoder().decode(D);(j=navigator.clipboard)==null||j.writeText(H).catch(()=>{})}catch{}return!0}),C.open(u),A.fit(),(y=document.fonts)==null||y.ready.then(()=>{v||(A.fit(),m())});const E=C.onData(k=>{(x==null?void 0:x.readyState)===WebSocket.OPEN&&x.send(k)}),m=()=>{(x==null?void 0:x.readyState)===WebSocket.OPEN&&x.send(JSON.stringify({type:"resize",cols:C.cols,rows:C.rows}))},S=new ResizeObserver(()=>{A.fit(),m()});S.observe(u);function _(){if(v)return;const k=new WebSocket(Fk(s,t));x=k,k.onopen=()=>{b=0,d("connected"),c(null),A.fit(),m()},k.onmessage=R=>{const M=typeof R.data=="string"?R.data:new TextDecoder().decode(R.data);C.write(M)},k.onclose=R=>{if(v)return;if(Wk.has(R.code)){d("error"),c(R.reason||`Connection refused (${R.code})`);return}const M=Math.min(1e3*2**b,qk);b+=1,d("connecting"),f=setTimeout(_,M)}}return _(),()=>{v=!0,f&&clearTimeout(f),S.disconnect(),E.dispose(),x==null||x.close(),C.dispose(),a.current=null}},[s,t]),h.jsx("div",{className:"harness-terminal",children:h.jsx("div",{ref:n,className:"terminal-screen"})})},Xk=8e3;function Jk({message:s,onDismiss:t}){return $.useEffect(()=>{const n=window.setTimeout(t,Xk);return()=>window.clearTimeout(n)},[s,t]),h.jsxs("div",{className:"toast",role:"alert","data-testid":"toast",children:[h.jsx("span",{className:"toast-message",children:s}),h.jsx("button",{className:"toast-dismiss","aria-label":"Dismiss",onClick:t,children:"×"})]})}function Zk(){const s=$.useRef(null);return $.useEffect(()=>{const t=s.current;if(!t)return;let n=null;const a=()=>{n=null,t.dataset.show="false",t.textContent=""},l=c=>{const u=c.closest("[data-tooltip], [title], [data-tip-stash]");if(!u||u===n)return;const v=u;v.title&&(v.dataset.tipStash=v.title,v.removeAttribute("title"));const b=v.dataset.tooltip||v.dataset.tipStash;if(!b)return;n=u,t.textContent=b,t.dataset.show="true";const f=u.getBoundingClientRect(),{offsetWidth:x,offsetHeight:C}=t,A=u.closest(".rail-workflows");if(A&&A.getBoundingClientRect().right+x+14<=window.innerWidth){const S=A.getBoundingClientRect().right+8,_=Math.min(Math.max(f.top+f.height/2-C/2,6),window.innerHeight-C-6);t.style.transform=`translate(${Math.round(S)}px, ${Math.round(_)}px)`;return}const E=Math.min(Math.max(f.left+f.width/2-x/2,6),window.innerWidth-x-6),m=f.top-C-7>=4?f.top-C-7:f.bottom+7;t.style.transform=`translate(${Math.round(E)}px, ${Math.round(m)}px)`},d=c=>l(c.target),p=c=>{n&&!n.contains(c.relatedTarget)&&a()};return document.addEventListener("pointerover",d,!0),document.addEventListener("pointerout",p,!0),document.addEventListener("pointerdown",a,!0),document.addEventListener("keydown",a,!0),document.addEventListener("scroll",a,!0),window.addEventListener("blur",a),()=>{document.removeEventListener("pointerover",d,!0),document.removeEventListener("pointerout",p,!0),document.removeEventListener("pointerdown",a,!0),document.removeEventListener("keydown",a,!0),document.removeEventListener("scroll",a,!0),window.removeEventListener("blur",a)}},[]),h.jsx("div",{ref:s,className:"app-tooltip","data-show":"false",role:"tooltip","aria-hidden":"true"})}const Qk=[{id:"claude-code",label:"Claude Code",mode:"embedded",experimental:!1,installed:!0,installMcpPrompt:"",imageInput:!1},{id:"codex",label:"Codex CLI",mode:"embedded",experimental:!1,installed:!0,installMcpPrompt:"",imageInput:!1}];function e3(s){const t=s.filter(n=>n.id==="sapiom");return t.length===0?s:[...t,...s.filter(n=>n.id!=="sapiom")]}function hp(s){return s.mode==="embedded"&&s.installed&&KE.includes(s.id)}function t3(s){if(hp(s))return null;if(s.mode==="external")return`${s.label} runs in its own app. Agent Studio can't launch it yet.`;if(!s.installed){const t=s.installMcpPrompt.trim();return t.length>0?t:`${s.label} isn't on this machine's PATH. Install its CLI, then restart the Agent Studio server.`}return`This Agent Studio build can't launch ${s.label} yet.`}function s3(s,t){var n;return((n=s.find(a=>a.id===t))==null?void 0:n.label)??t}function Rd(s){return s.length>1?s.replace(/\/+$/,""):s}async function i3(s,t,n){const a=Rd(s.trim());if(!a)return{kind:"new"};if(t)return{kind:"new"};const l=dk(a);try{const d=l?await n(l):null;if(!!(d!=null&&d.dirs.some(v=>Rd(v.path)===a&&v.hasAgentProject)))return{kind:"project"};const c=await n(a);if(Rd(c.path)!==a)return{kind:"new"};const u=c.dirs.filter(v=>v.hasAgentProject).length;return u>0?{kind:"multi",found:u}:{kind:"plain"}}catch{if(l)try{return await n(l),{kind:"new"}}catch{throw new Error("Couldn't read that directory.")}throw new Error("Couldn't read that directory.")}}function Wy({recentDirs:s,launchDir:t,projectRoot:n,listDir:a,onClose:l,onConnect:d,onScan:p,triggerRef:c}){const[u,v]=$.useState(t??s[0]??n??""),[b,f]=$.useState(null),[x,C]=$.useState(!0),[A,E]=$.useState(!1),[m,S]=$.useState(null),_=$.useRef(null);nu(!0,{onDismiss:l,containerRef:_,triggerRef:c}),$.useEffect(()=>{C(!0)},[u]);const y=$.useRef(u);y.current=u;const k=$.useRef(0),R=$.useCallback(U=>{const Y=y.current.trim(),J=++k.current;if(!Y){f(null),C(!1);return}i3(Y,U.isNew,a).then(q=>{J===k.current&&(f(q),S(null))}).catch(q=>{J===k.current&&(f(null),S(q.message))}).finally(()=>{J===k.current&&C(!1)})},[a]),M=async U=>{E(!0),S(null);try{await U(),l()}catch(Y){S(Y.message)}finally{E(!1)}},j=u.trim(),T=(b==null?void 0:b.kind)==="project"||(b==null?void 0:b.kind)==="multi",D=()=>void M(()=>d(j)),H=()=>void M(async()=>{if(await p(j)===0)throw new Error("No agent projects found under this folder.")}),P=()=>{A||x||!b||!j||!T||(b.kind==="project"?D():b.kind==="multi"&&H())},W=U=>{U.key==="Enter"&&(U.metaKey||U.ctrlKey)&&(U.preventDefault(),P())};return h.jsx("div",{className:"modal-backdrop",children:h.jsxs("div",{className:"modal modal-start",role:"dialog","aria-label":"Add existing agents",ref:_,onKeyDown:W,children:[h.jsxs("div",{className:"modal-header modal-start-header",children:[h.jsx("span",{className:"modal-start-title",children:"Add existing agents"}),h.jsx("button",{className:"theme-toggle modal-close","aria-label":"Close",title:"Close",onClick:l,children:h.jsx(_e,{name:"X",size:14})})]}),h.jsxs("div",{className:"modal-body",children:[h.jsx("p",{className:"modal-field-hint modal-start-sub",children:"Add a folder that already holds an agent project."}),h.jsx("section",{className:"modal-section",children:h.jsx(Fy,{value:u,onChange:v,onSubmit:P,recentDirs:[],listDir:a,onResolve:R})}),b&&h.jsx(n3,{outcome:b,path:j}),m&&h.jsx("div",{className:"modal-error",children:m})]}),h.jsxs("div",{className:"modal-actions modal-start-actions",children:[h.jsx("button",{className:"btn-ghost",onClick:l,disabled:A,children:"Cancel"}),h.jsx(r3,{outcome:b,checking:x,busy:A,onConnect:D,onScan:H})]})]})})}function n3({outcome:s,path:t}){const n=s.kind==="project"||s.kind==="multi";return h.jsx("div",{className:"aw-result","data-tone":n?"good":"todo","data-testid":"aw-result","aria-live":"polite",children:h.jsxs("div",{className:"aw-result-head",children:[h.jsx("span",{className:"aw-result-glyph","aria-hidden":"true",children:h.jsx(_e,{name:n?"Check":"TriangleAlert",size:14})}),h.jsxs("span",{className:"aw-result-text",children:[h.jsxs("span",{className:"aw-result-title",children:[s.kind==="project"&&"This is an agent project",s.kind==="multi"&&`${s.found} agent ${s.found===1?"project":"projects"} under this folder`,(s.kind==="plain"||s.kind==="new")&&"No agent in this folder"]}),h.jsx("span",{className:"aw-result-path",title:t,children:t})]})]})})}function r3({outcome:s,checking:t,busy:n,onConnect:a,onScan:l}){if(t||!s)return h.jsx("button",{className:"btn-primary modal-primary-cta","data-testid":"start-primary",disabled:!0,children:"Checking…"});switch(s.kind){case"project":return h.jsx("button",{className:"btn-primary modal-primary-cta","data-testid":"aw-add",onClick:a,disabled:n,children:n?"Adding…":"Add workspace"});case"multi":return h.jsx("button",{className:"btn-primary modal-primary-cta","data-testid":"aw-add-all",onClick:l,disabled:n,children:n?"Adding…":`Add all ${s.found}`});case"plain":case"new":return h.jsx("button",{className:"btn-primary modal-primary-cta","data-testid":"start-primary",disabled:!0,children:"Add workspace"})}}const a3="m4.7144 15.9555 4.7174-2.6471.079-.2307-.079-.1275h-.2307l-.7893-.0486-2.6956-.0729-2.3375-.0971-2.2646-.1214-.5707-.1215-.5343-.7042.0546-.3522.4797-.3218.686.0608 1.5179.1032 2.2767.1578 1.6514.0972 2.4468.255h.3886l.0546-.1579-.1336-.0971-.1032-.0972L6.973 9.8356l-2.55-1.6879-1.3356-.9714-.7225-.4918-.3643-.4614-.1578-1.0078.6557-.7225.8803.0607.2246.0607.8925.686 1.9064 1.4754 2.4893 1.8336.3643.3035.1457-.1032.0182-.0728-.164-.2733-1.3539-2.4467-1.445-2.4893-.6435-1.032-.17-.6194c-.0607-.255-.1032-.4674-.1032-.7285L6.287.1335 6.6997 0l.9957.1336.419.3642.6192 1.4147 1.0018 2.2282 1.5543 3.0296.4553.8985.2429.8318.091.255h.1579v-.1457l.1275-1.706.2368-2.0947.2307-2.6957.0789-.7589.3764-.9107.7468-.4918.5828.2793.4797.686-.0668.4433-.2853 1.8517-.5586 2.9021-.3643 1.9429h.2125l.2429-.2429.9835-1.3053 1.6514-2.0643.7286-.8196.85-.9046.5464-.4311h1.0321l.759 1.1293-.34 1.1657-1.0625 1.3478-.8804 1.1414-1.2628 1.7-.7893 1.36.0729.1093.1882-.0183 2.8535-.607 1.5421-.2794 1.8396-.3157.8318.3886.091.3946-.3278.8075-1.967.4857-2.3072.4614-3.4364.8136-.0425.0304.0486.0607 1.5482.1457.6618.0364h1.621l3.0175.2247.7892.522.4736.6376-.079.4857-1.2142.6193-1.6393-.3886-3.825-.9107-1.3113-.3279h-.1822v.1093l1.0929 1.0686 2.0035 1.8092 2.5075 2.3314.1275.5768-.3218.4554-.34-.0486-2.2039-1.6575-.85-.7468-1.9246-1.621h-.1275v.17l.4432.6496 2.3436 3.5214.1214 1.0807-.17.3521-.6071.2125-.6679-.1214-1.3721-1.9246L14.38 17.959l-1.1414-1.9428-.1397.079-.674 7.2552-.3156.3703-.7286.2793-.6071-.4614-.3218-.7468.3218-1.4753.3886-1.9246.3157-1.53.2853-1.9004.17-.6314-.0121-.0425-.1397.0182-1.4328 1.9672-2.1796 2.9446-1.7243 1.8456-.4128.164-.7164-.3704.0667-.6618.4008-.5889 2.386-3.0357 1.4389-1.882.929-1.0868-.0062-.1579h-.0546l-6.3385 4.1164-1.1293.1457-.4857-.4554.0608-.7467.2307-.2429 1.9064-1.3114Z",o3="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z",l3={"claude-code":a3,codex:o3},c3=["M105.267 60.7219L98.8902 71.7648L92.1353 83.4669L83.3114 98.7521L70.18 121.491H0L13.1249 98.7521H57.042L72.6274 71.7648L79.0038 60.7219L72.2619 49.0459H98.5247L105.267 60.7219Z","M114.072 0L100.954 22.7189H57.0694L57.0498 22.6928L57.0368 22.7189L41.8365 49.047L35.0945 60.723L41.471 71.7659H15.2016L8.8252 60.723L15.5671 49.047L21.9631 37.978L30.774 22.7189L43.8923 0H114.072Z"];function dp({kind:s,size:t=16}){if(s==="sapiom")return h.jsx("svg",{viewBox:"0 0 115 122",width:t,height:t,fill:"currentColor","aria-hidden":"true",focusable:"false",children:c3.map(a=>h.jsx("path",{d:a},a.slice(0,16)))});const n=l3[s];return n?h.jsx("svg",{viewBox:"0 0 24 24",width:t,height:t,fill:"currentColor","aria-hidden":"true",focusable:"false",children:h.jsx("path",{d:n})}):h.jsx(_e,{name:"SquareTerminal",size:t})}function u3({entries:s,activeId:t,testidPrefix:n,onPick:a}){return h.jsx(h.Fragment,{children:s.map(l=>{const d=hp(l),p=l.id===t,c=t3(l);return h.jsxs("button",{type:"button",role:"menuitemradio","aria-checked":p,"aria-disabled":!d||void 0,className:"profile-menu-item provider-item"+(d?"":" is-unavailable"),"data-testid":`${n}-${l.id}`,"data-tooltip":c??void 0,onClick:()=>{d&&a(l.id)},children:[h.jsx("span",{className:"provider-item-check","aria-hidden":"true",children:p&&h.jsx(_e,{name:"Check",size:13})}),h.jsx(dp,{kind:l.id,size:13}),l.label]},l.id)})})}const h3=[{label:"sales outreach",prompt:"Enrich a list of leads, then write a personalized first line for each prospect and draft an outreach email."},{label:"support triage",prompt:"Triage incoming support tickets: classify each by urgency and topic, draft a first reply, and flag anything critical."},{label:"research digest",prompt:"Search the web for the latest on a topic I give you, then publish a dated digest of what changed."},{label:"code review",prompt:"When a pull request opens, review the diff for bugs and style issues and post the findings as a review comment."}],d3=3;function f3(s){const t=s.getHours();return t<12?"Good morning.":t<18?"Good afternoon.":"Good evening."}function p3(s){return s.replace(/\s+/g,"-")}function v3({firstRun:s,onBack:t,onSubmitIdea:n,onUseTemplate:a,onBrowseTemplates:l,listHarnesses:d,listTemplates:p,telemetryOptIn:c,onToggleTelemetry:u,recentDirs:v,projectRoot:b,listDir:f,onConnect:x,onScan:C,onScaffold:A,onSaveProjectRoot:E}){const[m,S]=$.useState(""),[_,y]=$.useState(()=>zi().preferredHarness??"claude-code"),[k,R]=$.useState(Qk),[M,j]=$.useState(!1),[T,D]=$.useState([]),[H,P]=$.useState(!1),[W,U]=$.useState(!1),Y=$.useRef(null),J=$.useRef(null),q=$.useRef(null),G=$.useCallback(()=>j(!1),[]);$.useEffect(()=>{let L=!1;return d().then(B=>{if(L||B.length===0)return;R(e3(B));const V=B.filter(hp);y(te=>{var ce;return V.some(de=>de.id===te)?te:((ce=V[0])==null?void 0:ce.id)??te})}).catch(()=>{}),()=>{L=!0}},[d]),$.useEffect(()=>{let L=!1;return p().then(B=>{L||D(B.templates.map(V=>({...V,kind:"gallery"})).slice(0,d3))}).catch(()=>{}),()=>{L=!0}},[p]);const ee=L=>{y(L),vn({preferredHarness:L==="codex"?"codex":"claude-code"}),G()},O=L=>{W||(U(!0),window.setTimeout(L,170))},F=()=>O(()=>n(m.trim(),_));return h.jsxs("div",{className:"composer-home"+(W?" is-leaving":""),"data-testid":"new-session-composer",children:[t&&h.jsxs("button",{type:"button",className:"composer-back","data-testid":"composer-back",onClick:t,children:[h.jsx(_e,{name:"ArrowLeft",size:14})," Back"]}),h.jsxs("div",{className:"composer-hero",children:[h.jsxs("p",{className:"composer-greeting","data-testid":"composer-greeting",children:[f3(new Date)," ",s?"Let's build your first agent.":"Let's build a new agent."]}),h.jsx("h1",{className:"composer-heading",children:"What should your agent do?"}),h.jsx("div",{className:"composer-chips",role:"list",children:h3.map(L=>h.jsx("button",{type:"button",role:"listitem",className:"composer-chip","data-testid":`composer-chip-${p3(L.label)}`,onClick:()=>{var B;S(L.prompt),(B=Y.current)==null||B.focus()},children:L.label},L.label))}),h.jsxs("div",{className:"composer-box",children:[h.jsx("textarea",{ref:Y,className:"composer-input","data-testid":"composer-input",placeholder:"Describe the outcome you want",value:m,rows:2,autoFocus:!0,onChange:L=>S(L.target.value),onKeyDown:L=>{L.key==="Enter"&&!L.shiftKey&&(L.preventDefault(),F())}}),h.jsxs("div",{className:"composer-box-actions",children:[h.jsx("button",{ref:q,type:"button",className:"composer-attach","data-testid":"composer-open-folder","aria-label":"Open a folder or connect a workspace","data-tooltip":"Open a folder or connect a workspace",onClick:()=>P(!0),children:h.jsx(_e,{name:"Plus",size:16})}),h.jsxs("div",{className:"composer-box-right",children:[h.jsxs("button",{ref:J,type:"button",className:"harness-select composer-harness","data-testid":"composer-harness-select","aria-haspopup":"menu","aria-expanded":M,"aria-label":"Coding agent for this session","data-tooltip":"Which coding agent runs this session",onClick:()=>j(L=>!L),children:[h.jsx(dp,{kind:_,size:14}),h.jsx("span",{className:"harness-select-label",children:s3(k,_)}),h.jsx("span",{className:"disclosure-caret"+(M?" is-open":""),"aria-hidden":"true",children:h.jsx(_e,{name:"ChevronDown",size:12})})]}),h.jsx(Pn,{open:M,anchorRef:J,onDismiss:G,placement:"up-end",className:"session-menu harness-select-menu",role:"menu",testid:"composer-harness-menu",children:h.jsx(u3,{entries:k,activeId:_,testidPrefix:"composer-harness-option",onPick:ee})}),h.jsx("button",{type:"button",className:"composer-send","data-testid":"composer-send","aria-label":"Start session",title:"Start session",onClick:F,children:h.jsx(_e,{name:"ArrowUp",size:16})})]})]})]})]}),T.length>0&&h.jsxs("div",{className:"composer-templates",children:[h.jsxs("div",{className:"composer-templates-head",children:[h.jsx("span",{className:"composer-templates-title",children:"Start from a template"}),h.jsxs("button",{type:"button",className:"composer-templates-all","data-testid":"composer-browse-templates",onClick:l,children:["Browse all templates ",h.jsx(_e,{name:"ChevronRight",size:13})]})]}),h.jsx("div",{className:"composer-template-grid",children:T.map((L,B)=>h.jsxs("button",{type:"button",className:"composer-template-card","data-testid":`composer-template-${L.id}`,onClick:()=>O(()=>a(L)),children:[h.jsxs("span",{className:"composer-template-cardhead",children:[h.jsx("span",{className:"composer-template-name",children:L.name}),B===0&&h.jsx("span",{className:"composer-template-suggested",children:"Suggested"})]}),h.jsx("span",{className:"composer-template-desc",children:L.description}),h.jsxs("span",{className:"composer-template-meta",children:[L.stepCount," ",L.stepCount===1?"step":"steps"," ·"," ",up(L.complexity),L.capabilities.length>0&&` · ${L.capabilities.length} ${L.capabilities.length===1?"capability":"capabilities"}`]})]},L.id))})]}),s&&h.jsxs("div",{className:"composer-footer",children:[h.jsxs("label",{className:"composer-consent","data-testid":"welcome-consent",children:[h.jsx("button",{type:"button",role:"switch","aria-checked":c,"data-testid":"welcome-telemetry-toggle",className:"toggle-switch"+(c?" is-on":""),onClick:()=>void u(!c),children:h.jsx("span",{className:"toggle-knob"})}),h.jsx("span",{className:"composer-consent-copy",children:"Help us improve Agent Studio — share your session details with Sapiom. Off by default; change it anytime in Settings."})]}),h.jsxs("a",{className:"composer-docs","data-testid":"welcome-docs",href:"https://docs.sapiom.ai/agents/quick-start",target:"_blank",rel:"noopener noreferrer",children:["Read documentation ",h.jsx(_e,{name:"ArrowUpRight",size:12})]})]}),H&&h.jsx(Wy,{recentDirs:v,projectRoot:b,listDir:f,onClose:()=>P(!1),onConnect:x,onScan:C,triggerRef:q})]})}const _3="M32.1834 7.36578L34.4714 5.81493H36.5941C39.3219 5.81493 41.5567 8.05816 41.5567 10.7996V14.9539C41.5567 17.7234 39.3247 19.9385 36.5941 19.9385H34.4714L32.1834 18.3877V24H29.4277V5.81493H32.1834V7.36578ZM23.7454 7.36578V5.81493H26.5012V19.9385H23.7454V18.3877L21.4574 19.9385H19.3347C16.6069 19.9385 14.3722 17.6953 14.3722 14.9539V10.7996C14.3722 8.03001 16.6041 5.81493 19.3347 5.81493H21.4574L23.7454 7.36578ZM50.2802 17.169H54.0945V19.9385H43.7074V17.169H47.5245V8.58449H43.7074V5.81493H50.2802V17.169ZM73.2556 7.36296L75.5436 5.81212H76.9774C78.4645 5.81212 79.7667 6.60584 80.492 7.79359L81.1557 7.36296L83.4466 5.81212H84.8805C87.1516 5.81212 89 7.66975 89 9.94957V19.9385H86.3199V10.0284C86.3199 9.21495 85.6898 8.58168 84.8805 8.58168H84.3008L81.1585 10.7151V19.9357H78.4001V9.79195C78.2909 9.09675 77.7084 8.58449 76.9802 8.58449H76.4005L73.2556 10.718V19.9385H70.4998V5.81212H73.2556V7.36296ZM64.4479 5.73331C66.3944 5.73331 67.9682 7.31511 67.9682 9.27125V16.2571L64.0923 19.8456L64.0783 19.8569H59.5807C57.6372 19.8569 56.0605 18.2751 56.0605 16.319V9.33316L59.9363 5.74457L59.9504 5.73331H64.4479ZM9.23606 5.81493L11.5549 7.38829V10.7405L8.3539 8.5676H3.91231C2.66607 8.61545 2.63808 10.079 3.62665 10.4618L9.69534 12.3926C11.0284 12.8176 11.9385 14.0616 11.9385 15.4662V16.4907C11.9385 17.5968 11.3925 18.6297 10.4795 19.249L9.65053 19.8119H2.28801L0 18.261V14.9088L3.29339 17.1436H7.53336C7.55015 17.1436 9.29767 17.1859 9.36488 16.0741C9.38729 15.5928 9.12683 15.1059 8.62835 14.9005L2.88732 13.0738C1.16781 12.5249 -0.0476086 10.9515 0.210037 9.16429C0.33886 7.88365 1.34424 5.80931 4.19515 5.83183H4.20356L9.23606 5.82056V5.81493ZM32.1834 10.718V15.0383L35.3284 17.1717H36.5969C37.8096 17.1717 38.8009 16.1754 38.8009 14.9567V10.8024C38.8009 9.58367 37.8096 8.5873 36.5969 8.5873H35.3284L32.1834 10.7208V10.718ZM19.3347 8.58449C18.122 8.58449 17.1307 9.58086 17.1307 10.7996V14.9539C17.1307 16.1726 18.122 17.169 19.3347 17.169H20.6033L23.7454 15.0383V10.718L20.6033 8.58449H19.3347ZM58.7881 10.5378V16.1642C58.7881 16.6764 59.1999 17.0902 59.7096 17.0902H63.0421L65.2377 15.058V9.43168C65.2377 8.91942 64.8261 8.50568 64.3164 8.50568H60.9837L58.7881 10.5378ZM50.283 2.76956H47.2501V0H50.283V2.76956Z",Qm=89,Mc=24,g3=19.9385,m3=(Mc-g3)/Mc;function y3({height:s=16,className:t,style:n,...a}){const l=!!a["aria-label"];return h.jsx("svg",{...a,className:["brand-logotype",t].filter(Boolean).join(" "),style:{"--brand-logotype-descender":`${m3*s}px`,...n},width:Qm/Mc*s,height:s,viewBox:`0 0 ${Qm} ${Mc}`,fill:"none",focusable:"false",role:l?"img":void 0,"aria-hidden":l?void 0:!0,children:h.jsx("path",{d:_3,fill:"currentColor"})})}function b3({onCollapse:s}){const[t,n]=$.useState(np());return $.useEffect(()=>rp(n),[]),h.jsxs("header",{className:"brand-header",children:[h.jsxs("h1",{className:"brand-lockup",children:[h.jsxs("span",{className:"brand-mark",children:[h.jsx(y3,{height:13,"aria-hidden":!0}),h.jsx("span",{className:"visually-hidden",children:"Sapiom "})]}),h.jsx("span",{className:"brand-product",children:"agent.studio"})]}),h.jsxs("div",{className:"brand-header-tools",children:[h.jsx("button",{className:"theme-toggle","data-testid":"theme-toggle","aria-label":t==="dark"?"Switch to light mode":"Switch to dark mode",title:t==="dark"?"Switch to light mode":"Switch to dark mode",onClick:lx,children:h.jsx(_e,{name:t==="dark"?"Sun":"Moon",size:15})}),h.jsx("button",{className:"theme-toggle","data-testid":"rail-collapse","aria-label":"Collapse workspace panel",title:"Collapse workspace panel",onClick:s,children:h.jsx(_e,{name:"PanelLeftClose",size:15})})]})]})}function S3({plan:s}){if(!s)return null;const t=h.jsxs(h.Fragment,{children:[h.jsxs("span",{className:"rail-profile-copy",children:[h.jsx("span",{className:"rail-profile-name",children:s.name}),s.statusLabel&&h.jsx("span",{className:"rail-profile-meta",children:s.statusLabel})]}),s.cta&&h.jsx("span",{className:"pill",children:s.cta.label}),s.cta&&h.jsx(_e,{name:"ArrowUpRight",size:14})]});return h.jsx("div",{className:"rail-footer-row plan-row","data-testid":"plan-card",children:s.cta?h.jsx("a",{className:"rail-plan-card",href:s.cta.href,target:"_blank",rel:"noreferrer","data-testid":"plan-upgrade",children:t}):h.jsx("div",{className:"rail-plan-card",children:t})})}function oc({testid:s,icon:t,label:n,checked:a,onPick:l}){return h.jsxs("button",{type:"button",role:"menuitemradio","aria-checked":a,"data-testid":s,className:"session-dropdown-item menu-choice"+(a?" is-checked":""),onClick:l,children:[h.jsx("span",{className:"session-item-icon",children:h.jsx(_e,{name:t,size:13})}),h.jsx("span",{className:"session-item-copy",children:h.jsx("span",{className:"session-item-title",children:n})}),h.jsx("span",{className:"menu-choice-mark","aria-hidden":"true",children:a&&h.jsx(_e,{name:"Check",size:13})})]})}function w3({authenticated:s,organizationName:t,telemetryOptIn:n,productAnalyticsOptIn:a,consentSource:l,consentEnvReason:d,onToggleTelemetry:p,onToggleProductAnalytics:c,rollingSummary:u,onToggleRollingSummary:v,onStartAuth:b,onDisconnect:f}){const[x,C]=$.useState(!1),[A,E]=$.useState({status:"idle"}),m=l==="env-forced-off",S=m?!1:n,_=m?!1:a,y=async()=>{const T=!n;C(!0);try{await p(T),Rc("consent.changed",{optIn:T})}finally{C(!1)}},k=async()=>{const T=!a;C(!0);try{await c(T),Rc("consent.changed",{productAnalytics:T})}finally{C(!1)}},R=async()=>{C(!0);try{await v(!u)}finally{C(!1)}},M=async()=>{E({status:"pending"});try{await b()}catch(T){const D=T instanceof Error?T.message:"Could not start sign-in. Try again.";E({status:"error",message:D})}},j=async()=>{C(!0);try{await f()}finally{C(!1)}};return s&&A.status==="pending"&&E({status:"idle"}),h.jsxs(h.Fragment,{children:[h.jsx("div",{className:"settings-identity",children:s?t??"Signed in":"Not signed in"}),!s&&h.jsx("div",{className:"settings-auth-row",children:A.status==="pending"?h.jsxs("span",{className:"settings-auth-pending","data-testid":"settings-auth-pending",children:[h.jsx(_e,{name:"Loader",size:13}),"Opening browser… waiting for sign-in"]}):h.jsxs(h.Fragment,{children:[h.jsx("button",{type:"button",className:"btn-primary settings-connect-btn","data-testid":"settings-connect-btn",onClick:()=>void M(),children:"Connect account"}),A.status==="error"&&h.jsx("p",{className:"settings-note settings-auth-error","data-testid":"settings-auth-error",children:A.message})]})}),s&&h.jsx("div",{className:"settings-auth-row",children:h.jsxs("button",{type:"button",className:"settings-disconnect-btn","data-testid":"settings-disconnect-btn",disabled:x,onClick:()=>void j(),children:[h.jsx(_e,{name:"LogOut",size:13}),x?"Signing out…":"Disconnect"]})}),h.jsxs("label",{className:"settings-toggle-row",children:[h.jsx("span",{children:"Share session details with Sapiom"}),h.jsx("button",{type:"button",role:"switch","aria-checked":S,"data-testid":"telemetry-toggle",className:"toggle-switch"+(S?" is-on":""),disabled:x||m,onClick:()=>void y(),children:h.jsx("span",{className:"toggle-knob"})})]}),h.jsxs("p",{className:"settings-note",children:["Help us optimize your experience: with this on, your prompts, tool calls, and session lifecycle events are shared with Sapiom so we can see where Agent Studio gets in your way. Off by default. Always written locally to ",h.jsx("code",{children:VE.events})," either way."]}),h.jsxs("label",{className:"settings-toggle-row",children:[h.jsx("span",{children:"Product analytics (clicks & usage)"}),h.jsx("button",{type:"button",role:"switch","aria-checked":_,"data-testid":"product-analytics-toggle",className:"toggle-switch"+(_?" is-on":""),disabled:x||m,onClick:()=>void k(),children:h.jsx("span",{className:"toggle-knob"})})]}),h.jsx("p",{className:"settings-note",children:"Anonymous-by-default usage: which buttons and screens you use, and how you move through the Agent Studio. No prompt text, no file contents, and never a screen recording. On by default; turn it off here anytime."}),m&&h.jsxs("p",{className:"settings-note settings-env-note","data-testid":"telemetry-env-note",children:["All telemetry is turned off by ",d?`$${d}`:"an environment variable",". Unset it and restart the Agent Studio server to manage consent here."]}),h.jsxs("label",{className:"settings-toggle-row",children:[h.jsx("span",{children:"Summarize sessions in the background"}),h.jsx("button",{type:"button",role:"switch","aria-checked":u,"data-testid":"rolling-summary-toggle",className:"toggle-switch"+(u?" is-on":""),disabled:x,onClick:()=>void R(),children:h.jsx("span",{className:"toggle-knob"})})]}),h.jsxs("p",{className:"settings-note",children:["Off by default, because it uses tokens you didn’t ask to use: every 10 turns, and once at the end, a cheap one-shot coding-agent pass folds the session into a short summary. Continuing a session the coding agent can no longer reattach to then explains what the work was"," ",h.jsx("em",{children:"for"}),", not just what it last did. With this off, continuing still works — it carries the last few turns instead."]})]})}function e0({workflow:s,isFocused:t,onFocus:n}){const a=va(s),l=a==="ready",d=a==="ready"?"Deployed to Sapiom with a ready build.":a==="building"?"Cloud build in progress.":a==="failed"?"Cloud build failed.":a==="linked"?"Linked to Sapiom; no ready build confirmed.":"Draft. Not deployed to Sapiom yet.";return h.jsx("div",{className:"workflow-item"+(t?" is-focused":""),"data-testid":`workflow-${s.name}`,children:h.jsxs("button",{className:"tree-row workflow-item-trigger",onClick:()=>n(s.path),"aria-pressed":t,"data-tooltip":t?"Focused agent":"Focus this agent",children:[h.jsx("span",{className:"tree-row-label",children:s.name}),h.jsx("span",{className:"workflow-status","data-deployed":l,"data-deployment-state":a,"data-testid":`workflow-status-${s.name}`,title:d,children:h.jsx(_e,{name:l?"Cloud":"CloudOff",size:13})})]})})}const Md=s=>s.split("/").filter(Boolean).pop()??s,x3=(s,t)=>s===t||s.startsWith(`${t}/`),ff=s=>(t,n)=>s==="name"?t.name.localeCompare(n.name):t.path.localeCompare(n.path);function C3(s,t,n="workspace",a="recent",l=[]){return n==="deployment"?E3(s,a):k3(s,t,a,l)}function E3(s,t){const n=ff(t),a=(d,p,c)=>({cwd:`deployment:${p}`,label:d,isDirectory:!1,agents:s.filter(c).sort(n).map(u=>({workflow:u})),bareSessions:[]});return{workspaces:[a("Deployed","live",d=>d.definitionId!=null),a("Draft","draft",d=>d.definitionId==null)].filter(d=>d.agents.length>0),orphanAgents:[]}}function k3(s,t,n,a){const l=t.filter(C=>C.status!=="exited"),d=new Set(s),p=new Map;for(const C of t){const A=p.get(C.cwd);(!A||C.createdAt>A)&&p.set(C.cwd,C.createdAt)}const c=new Set([...p.keys(),...a]),u=(C,A)=>{const E=a.indexOf(C),m=a.indexOf(A);return E>=0&&m>=0?E-m:E>=0||m>=0?E>=0?-1:1:(p.get(A)??"").localeCompare(p.get(C)??"")},v=Array.from(c).sort((C,A)=>n==="name"?Md(C).localeCompare(Md(A))||C.localeCompare(A):u(C,A)||C.localeCompare(A)),b=C=>{let A=null;for(const E of v)x3(C,E)&&(A===null||E.length>A.length)&&(A=E);return A},f=[];for(const C of v){const A=s.filter(m=>d.has(m)&&b(m.path)===C).sort(ff(n)).map(m=>(d.delete(m),{workflow:m})),E=l.filter(m=>m.boundWorkflowPath==null&&b(m.cwd)===C).sort((m,S)=>S.createdAt.localeCompare(m.createdAt)||m.id.localeCompare(S.id));A.length===0&&E.length===0||f.push({cwd:C,label:Md(C),isDirectory:!0,agents:A,bareSessions:E})}const x=Array.from(d).sort(ff(n)).map(C=>({workflow:C}));return{workspaces:f,orphanAgents:x}}const T3=typeof navigator<"u"&&navigator.platform.toUpperCase().includes("MAC"),A3=T3?"⌘K":"Ctrl+K";function R3({label:s,cwd:t,isDirectory:n=!0,collapsed:a,onToggleCollapsed:l,onCopyPath:d}){return h.jsxs("div",{className:"workspace-row","data-testid":`workspace-group-${s}`,children:[h.jsxs("button",{className:"workspace-row-main",onClick:l,title:n?t:s,"aria-expanded":!a,children:[n&&h.jsx(_e,{name:a?"Folder":"FolderOpen",size:13}),h.jsx("span",{className:"tree-row-label",children:s}),h.jsx("span",{className:"workspace-caret"+(a?"":" is-open"),"aria-hidden":"true",children:h.jsx(_e,{name:"ChevronDown",size:13})})]}),n&&h.jsx("button",{className:"workspace-row-action","aria-label":`Copy path for ${s}`,"data-tooltip":"Copy path",onClick:()=>d(t),children:h.jsx(_e,{name:"Copy",size:13})})]})}function M3({label:s,cwd:t,sessionId:n,isFocused:a,onFocus:l,onScaffold:d,onCopyPath:p}){return h.jsxs("div",{className:"workspace-row"+(a?" is-selected":""),"data-testid":`workspace-group-${s}`,children:[h.jsxs("button",{className:"workspace-row-main","data-testid":`workspace-focus-${s}`,"aria-label":`Focus ${s}`,"aria-pressed":a,"data-tooltip":"Folder with sessions, no agent yet. Focus to work in it.",onClick:()=>l(t),children:[h.jsx(_e,{name:"Folder",size:13}),h.jsx("span",{className:"tree-row-label",children:s})]}),h.jsx("button",{className:"workspace-row-action","data-testid":`workspace-scaffold-${s}`,"aria-label":`Scaffold an agent in ${s}`,"data-tooltip":"Scaffold an agent here",onClick:()=>d(n),children:h.jsx(_e,{name:"Sparkles",size:13})}),h.jsx("button",{className:"workspace-row-action","aria-label":`Copy path for ${s}`,"data-tooltip":"Copy path",onClick:()=>p(t),children:h.jsx(_e,{name:"Copy",size:13})})]})}function t0({testid:s,harness:t,title:n,meta:a,cwd:l,resumeMode:d,isSelected:p,onOpen:c}){const u=d==="agent-resume"?"true":d==="rehydrate"?"false":"unknown";return h.jsxs("button",{"data-testid":s,className:"session-dropdown-item"+(p?" is-selected":""),"data-resumable":u,title:l,onClick:c,children:[h.jsx("span",{className:"session-item-icon",children:h.jsx(dp,{kind:t,size:13})}),h.jsxs("span",{className:"session-item-copy",children:[h.jsx("span",{className:"session-item-title",children:n}),h.jsx("span",{className:"session-item-meta",children:a})]})]})}function D3({width:s,minWidth:t,workflows:n,sessions:a,activeSessionId:l,focusedAgentPath:d,onFocusAgent:p,onOpenPalette:c,onConnect:u,onCollapse:v,onSelectSession:b,overviewSelected:f,onSelectOverview:x,onNewSession:C,onReviewSummary:A,history:E,historyLoading:m,onOpenHistory:S,recentDirs:_,launchDir:y,listDir:k,onCreateSession:R,listHarnesses:M,onScaffoldSession:j,onScaffoldInSession:T,projectRoot:D,onSaveProjectRoot:H,onBrowseTemplates:P,templatesActive:W,onScanWorkflows:U,onToast:Y,telemetryOptIn:J,productAnalyticsOptIn:q,rollingSummary:G,consentSource:ee,consentEnvReason:O,authenticated:F,organizationName:L,onToggleTelemetry:B,onToggleProductAnalytics:V,onToggleRollingSummary:te,onStartAuth:ce,onDisconnect:de,settingsOpen:K,onSetSettingsOpen:I}){const[ue,ie]=$.useState(!1),we=$.useRef(null),fe=$.useRef(null),[$e,De]=$.useState(!1),[Ke,Ie]=$.useState(!1),[Le,zt]=$.useState(()=>zi().railGrouping??"workspace"),[Ue,We]=$.useState(()=>zi().railSort??"recent"),vt=ke=>{zt(ke),vn({railGrouping:ke})},It=ke=>{We(ke),vn({railSort:ke})},rt=$.useRef(null),ft=$.useCallback(()=>{De(!1),Ie(!1)},[]),[kt,es]=$.useState(()=>new Set(zi().collapsedCwds??[])),cs=ke=>{es(Fe=>{const ts=new Set(Fe);return ts.has(ke)?ts.delete(ke):ts.add(ke),ts})};$.useEffect(()=>{vn({collapsedCwds:Array.from(kt)})},[kt]);const St=a.filter(ke=>ke.status==="exited"),us=()=>{const ke=!$e;if(Ie(!1),De(ke),ke){const Fe=Ay(a,_,l);Fe.length>0&&S(Fe)}},Lt=new Set(a.map(ke=>ke.id)),yt=new Set(a.map(ke=>ke.agentSessionId).filter(ke=>ke!=null)),ct=E.filter(ke=>!(ke.harnessSessionId!=null&&Lt.has(ke.harnessSessionId))&&!yt.has(ke.agentSessionId)),ss=[...St.map(ke=>({kind:"exited",at:ke.lastActiveAt,session:ke})),...ct.map(ke=>({kind:"summary",at:ke.lastActiveAt,summary:ke}))].sort((ke,Fe)=>Fe.at.localeCompare(ke.at)),Gt=new Map(E.map(ke=>[ke.agentSessionId,ke])),{workspaces:Vt,orphanAgents:Yt}=C3(n,a,Le,Ue,_),Os=Vt.length===0&&Yt.length===0,ms=ke=>{var Fe;(Fe=navigator.clipboard)==null||Fe.writeText(ke).then(()=>Y("Path copied.")).catch(()=>Y("Couldn't copy the path."))};return h.jsxs("aside",{ref:fe,className:"rail rail-workflows",style:{width:s,minWidth:t},children:[h.jsx(b3,{onCollapse:v}),h.jsxs("nav",{className:"rail-nav","aria-label":"Primary",children:[h.jsxs("button",{type:"button",className:"rail-nav-row","data-testid":"palette-trigger","aria-label":"Search sessions, agents, and paths",onClick:c,children:[h.jsx(_e,{name:"Search",size:14}),h.jsx("span",{children:"Search"}),h.jsx("span",{className:"rail-nav-kbd",children:A3})]}),h.jsxs("button",{type:"button",className:"rail-nav-cta"+(Os?" is-empty":""),"data-testid":"rail-create-new","aria-label":"Create a new agent",onClick:()=>{De(!1),C()},children:[h.jsx(_e,{name:"Plus",size:14}),h.jsx("span",{children:"Create new"})]}),h.jsxs("button",{type:"button",className:"rail-nav-row"+(W?" is-selected":""),"data-testid":"rail-templates","aria-current":W?"page":void 0,onClick:P,children:[h.jsx(_e,{name:"LayoutTemplate",size:14}),h.jsx("span",{children:"Templates"})]}),h.jsxs("button",{type:"button",ref:we,className:"rail-nav-row","data-testid":"add-existing-agents","aria-haspopup":"dialog","aria-expanded":ue,onClick:()=>{De(!1),ie(!0)},children:[h.jsx(_e,{name:"FolderOpen",size:14}),h.jsx("span",{children:"Add existing agents"})]})]}),h.jsxs("div",{className:"rail-header",children:[h.jsx(_e,{name:"Folder",size:14}),h.jsx("span",{className:"rail-header-label",children:"Workspaces"}),h.jsx("div",{className:"rail-header-actions",children:h.jsx("button",{ref:rt,className:"theme-toggle rail-header-btn","data-testid":"history-trigger","aria-label":"Workspace options","aria-haspopup":"menu","aria-expanded":$e,"data-tooltip":"Grouping, sorting and past sessions",onClick:us,children:h.jsx(_e,{name:"MoreHorizontal",size:14})})})]}),h.jsxs("div",{className:"rail-tree",children:[h.jsx(Pn,{open:$e,anchorRef:rt,onDismiss:ft,placement:"right-start",besideRef:fe,noClip:!0,className:"menu-flyer",testid:"history-menu",children:h.jsxs("div",{className:"menu-flyer-track",children:[h.jsxs("div",{className:"connect-card history-card",children:[h.jsxs("div",{className:"connect-card-header",children:[h.jsx("span",{children:"Workspaces"}),h.jsx("button",{className:"theme-toggle connect-card-close",onClick:ft,"aria-label":"Close",title:"Close",children:h.jsx(_e,{name:"X",size:13})})]}),h.jsxs("div",{className:"connect-card-body",role:"menu",children:[h.jsxs("div",{className:"menu-choice-group",onMouseEnter:()=>Ie(!1),children:[h.jsx("div",{className:"session-dropdown-section",children:"Group by"}),h.jsx(oc,{testid:"group-workspace",icon:"FolderOpen",label:"Workspace",checked:Le==="workspace",onPick:()=>vt("workspace")}),h.jsx(oc,{testid:"group-deployment",icon:"Cloud",label:"Deployment",checked:Le==="deployment",onPick:()=>vt("deployment")}),h.jsx("div",{className:"session-dropdown-section",children:"Sort"}),h.jsx(oc,{testid:"sort-recent",icon:"History",label:"Recent activity",checked:Ue==="recent",onPick:()=>It("recent")}),h.jsx(oc,{testid:"sort-name",icon:"ArrowDown",label:"Name",checked:Ue==="name",onPick:()=>It("name")})]}),h.jsxs("button",{type:"button",className:"session-dropdown-item nested-trigger"+(Ke?" is-open":""),"data-testid":"past-sessions-trigger","aria-haspopup":"menu","aria-expanded":Ke,onMouseEnter:()=>Ie(!0),onClick:()=>Ie(ke=>!ke),children:[h.jsx("span",{className:"session-item-icon",children:h.jsx(_e,{name:"History",size:13})}),h.jsx("span",{className:"session-item-copy",children:h.jsx("span",{className:"session-item-title",children:"Past sessions"})}),St.length>0&&h.jsx("span",{className:"session-history-badge","data-testid":"session-history-badge",children:St.length}),h.jsx(_e,{name:"ChevronRight",size:13})]})]})]}),Ke&&h.jsxs(h.Fragment,{children:[h.jsx("div",{className:"menu-flyer-bridge","aria-hidden":"true"}),h.jsxs("div",{className:"connect-card menu-flyer-nested",children:[h.jsxs("div",{className:"connect-card-header",children:[h.jsx("span",{children:"Past sessions"}),h.jsx("button",{className:"theme-toggle connect-card-close",onClick:()=>Ie(!1),"aria-label":"Back",title:"Back",children:h.jsx(_e,{name:"X",size:13})})]}),h.jsxs("div",{className:"connect-card-body past-sessions-list","data-testid":"past-sessions-card",children:[ss.map(ke=>{if(ke.kind==="exited"){const Fe=ke.session.agentSessionId==null?void 0:Gt.get(ke.session.agentSessionId),ts=ke.session.agentSessionId==null?"rehydrate":Fe==null?void 0:Fe.resumeMode;return h.jsx(t0,{testid:`exited-session-${ke.session.id}`,harness:ke.session.harness,title:ke.session.title,meta:hf({...ke.session,gitBranch:Fe==null?void 0:Fe.gitBranch,turnCount:Fe==null?void 0:Fe.turnCount,messageCount:Fe==null?void 0:Fe.messageCount},void 0,{includeHarness:!1,state:Bm({resumeMode:ts,turnCount:Fe==null?void 0:Fe.turnCount})}),cwd:ke.session.cwd,resumeMode:ts,isSelected:ke.session.id===l,onOpen:()=>{b(ke.session.id),ft()}},ke.session.id)}return h.jsx(t0,{testid:`history-${ke.summary.agentSessionId}`,harness:ke.summary.harness,title:ke.summary.title,meta:hf(ke.summary,void 0,{includeHarness:!1,state:Bm(ke.summary)}),cwd:ke.summary.cwd,resumeMode:ke.summary.resumeMode,isSelected:!1,onOpen:()=>{A(ke.summary),ft()}},ke.summary.agentSessionId)}),m&&h.jsx("div",{className:"session-dropdown-empty",children:"Loading…"}),!m&&ss.length===0&&h.jsx("div",{className:"session-dropdown-empty",children:"No past sessions yet"})]})]})]})]})}),h.jsxs("div",{className:"rail-list",children:[Vt.length===0&&Yt.length===0&&h.jsx(Mi,{className:"rail-empty",icon:"Folder",title:"No agents yet",body:"Open a workspace folder to start a session, or add one. Agents (sapiom.json) appear here automatically."}),Vt.map(ke=>{const Fe=kt.has(ke.cwd);if(ke.agents.length===0&&ke.bareSessions.length>0){const ys=ke.bareSessions[0];return h.jsx("div",{className:"workspace-group",children:h.jsx(M3,{label:ke.label,cwd:ke.cwd,sessionId:ys.id,isFocused:ke.cwd===d,onFocus:p,onScaffold:T,onCopyPath:ms})},ke.cwd)}return h.jsxs("div",{className:"workspace-group",children:[h.jsx(R3,{label:ke.label,cwd:ke.cwd,isDirectory:ke.isDirectory,collapsed:Fe,onToggleCollapsed:()=>cs(ke.cwd),onCopyPath:ms}),!Fe&&ke.agents.map(ys=>h.jsx(e0,{workflow:ys.workflow,isFocused:ys.workflow.path===d,onFocus:p},ys.workflow.path))]},ke.cwd)}),Yt.length>0&&h.jsxs("div",{className:"workspace-group",children:[h.jsx("div",{className:"workspace-row",children:h.jsxs("div",{className:"workspace-row-main workspace-row-static","data-tooltip":"Agents that live outside any session folder. Focus one to start a session in its own folder.",children:[h.jsx(_e,{name:"Folder",size:13}),h.jsx("span",{className:"tree-row-label",children:"No workspace"})]})}),Yt.map(ke=>h.jsx(e0,{workflow:ke.workflow,isFocused:ke.workflow.path===d,onFocus:p},ke.workflow.path))]})]})]}),h.jsxs("div",{className:"rail-footer",children:[h.jsx(S3,{plan:null}),h.jsx(j3,{onToast:Y,authenticated:F,organizationName:L,telemetryOptIn:J,productAnalyticsOptIn:q,rollingSummary:G,consentSource:ee,consentEnvReason:O,onToggleTelemetry:B,onToggleProductAnalytics:V,onToggleRollingSummary:te,onStartAuth:ce,onDisconnect:de,settingsOpen:K,onSetSettingsOpen:I,overviewSelected:f,onSelectOverview:x})]}),ue&&h.jsx(Wy,{recentDirs:_,launchDir:y,projectRoot:D,listDir:k,onClose:()=>ie(!1),onConnect:u,onScan:U,triggerRef:we})]})}function j3({authenticated:s,organizationName:t,telemetryOptIn:n,productAnalyticsOptIn:a,rollingSummary:l,consentSource:d,consentEnvReason:p,onToggleTelemetry:c,onToggleProductAnalytics:u,onToggleRollingSummary:v,onStartAuth:b,onDisconnect:f,settingsOpen:x,onSetSettingsOpen:C,overviewSelected:A,onSelectOverview:E,onToast:m}){const[S,_]=$.useState(!1),[y,k]=$.useState({status:"idle"}),R=$.useRef(null),M=$.useCallback(()=>_(!1),[]),j=$.useCallback(()=>C(!1),[C]),T=sp(),D=y.status==="pending",H=Uy(),[P,W]=$.useState(!1),U=async()=>{if(!(!H||P)){W(!0),M();try{m(Nk(await H.checkForUpdates()).text)}catch{m("Couldn't check for updates.")}finally{W(!1)}}};s&&y.status==="pending"&&k({status:"idle"});const Y=D?"Connecting…":s?t??"Signed in":"Not signed in",J=D?"opening browser":s?"Sapiom account":"connect to get started",q=(t??"S").charAt(0).toUpperCase(),G=async()=>{M(),k({status:"pending"});try{await b()}catch(ee){const O=ee instanceof Error?ee.message:"Could not start sign-in. Try again.";k({status:"error",message:O})}};return h.jsxs("div",{className:"rail-footer-row rail-profile-wrap",children:[h.jsxs("button",{ref:R,className:"rail-profile","data-testid":"brand-identity","aria-haspopup":"menu","aria-expanded":S,title:"Account",onClick:()=>_(ee=>!ee),children:[h.jsx("span",{className:"rail-profile-avatar","aria-hidden":"true",children:q}),h.jsxs("span",{className:"rail-profile-copy",children:[h.jsx("span",{className:"rail-profile-name",children:Y}),h.jsxs("span",{className:"rail-profile-meta",children:[h.jsx("span",{className:"identity-dot","data-authenticated":s,"data-pending":D}),J]})]}),h.jsx(_e,{name:"ChevronDown",size:13})]}),h.jsx(Pn,{open:x,anchorRef:R,onDismiss:j,placement:"up-start",matchWidth:!0,className:"settings-popover",testid:"settings-popover",children:h.jsx(w3,{authenticated:s,organizationName:t,telemetryOptIn:n,productAnalyticsOptIn:a,rollingSummary:l,consentSource:d,consentEnvReason:p,onToggleTelemetry:c,onToggleProductAnalytics:u,onToggleRollingSummary:v,onStartAuth:b,onDisconnect:f})}),h.jsxs(Pn,{open:S,anchorRef:R,onDismiss:M,placement:"up-start",matchWidth:!0,className:"profile-menu",role:"menu",testid:"profile-menu",children:[h.jsxs("button",{role:"menuitem",className:"profile-menu-item"+(A?" is-selected":""),"data-testid":"rail-overview",onClick:()=>{E(),M()},children:[h.jsx(_e,{name:"Info",size:13}),"Overview"]}),h.jsxs("button",{role:"menuitem",className:"profile-menu-item","data-testid":"profile-open-dashboard",onClick:()=>{window.open(Oy,"_blank","noopener,noreferrer"),M()},children:[h.jsx(_e,{name:"ExternalLink",size:13}),"Open Sapiom dashboard"]}),h.jsxs("button",{role:"menuitem",className:"profile-menu-item","data-testid":"settings-trigger",onClick:()=>{C(!0),M()},children:[h.jsx(_e,{name:"Settings",size:13}),"Settings"]}),H&&h.jsxs("button",{role:"menuitem",className:"profile-menu-item","data-testid":"profile-check-updates",disabled:P,onClick:()=>void U(),children:[h.jsx(_e,{name:P?"Loader":"RefreshCw",size:13}),P?"Checking…":"Check for updates",H.appVersion&&h.jsxs("span",{className:"profile-menu-version","data-testid":"app-version",children:["v",H.appVersion]})]}),!s&&h.jsxs("button",{role:"menuitem",className:"profile-menu-item","data-testid":"profile-connect-account",disabled:D,onClick:()=>void G(),children:[h.jsx(_e,{name:"Plug",size:13}),D?"Connecting…":"Connect account"]}),s&&h.jsxs("button",{role:"menuitem",className:"profile-menu-item","data-testid":"profile-disconnect-account",onClick:()=>{f(),M()},children:[h.jsx(_e,{name:"LogOut",size:13}),"Disconnect"]}),T,y.status==="error"&&h.jsx("p",{className:"profile-menu-auth-error","data-testid":"profile-auth-error",children:y.message})]})]})}const N3=new Set([401,403]);function L3(s){return s?s.networkError===!0||s.status===void 0:!1}function O3(s){return(s==null?void 0:s.status)!==void 0&&N3.has(s.status)}function B3(s){const{online:t,error:n}=s;return!t||L3(n)?"offline":O3(n)?"auth":n?"error":"online"}function s0(){return typeof navigator>"u"?!0:navigator.onLine!==!1}function H3(){const[s,t]=$.useState(s0);return $.useEffect(()=>{const n=()=>t(s0());return window.addEventListener("online",n),window.addEventListener("offline",n),n(),()=>{window.removeEventListener("online",n),window.removeEventListener("offline",n)}},[]),s}function i0(s,t){return s!=null&&s.workflowPath===t}var le=typeof window<"u"?window:void 0,Ls=typeof globalThis<"u"?globalThis:le,Is=Ls==null?void 0:Ls.navigator,Ae=Ls==null?void 0:Ls.document,ls=Ls==null?void 0:Ls.location,fp=Ls==null?void 0:Ls.fetch,pf=Ls!=null&&Ls.XMLHttpRequest&&"withCredentials"in new Ls.XMLHttpRequest?Ls.XMLHttpRequest:void 0,n0=Ls==null?void 0:Ls.AbortController,z3=Ls==null?void 0:Ls.CompressionStream,Ys=Is==null?void 0:Is.userAgent;function Gy(){return!(!le||le.navigator.onLine===!1)}var po=typeof globalThis<"u"?globalThis:le;po&&typeof self>"u"&&(po.self=po),po&&typeof File>"u"&&(po.File=function(){});var ze=le??{},bt={DEBUG:!1,LIB_VERSION:"0.3.1",LIB_NAME:"browser-common"};function r0(s,t,n,a,l,d,p){try{var c=s[d](p),u=c.value}catch(v){return void n(v)}c.done?t(u):Promise.resolve(u).then(a,l)}function Ft(s){return function(){var t=this,n=arguments;return new Promise((function(a,l){var d=s.apply(t,n);function p(u){r0(d,a,l,p,c,"next",u)}function c(u){r0(d,a,l,p,c,"throw",u)}p(void 0)}))}}function be(){return be=Object.assign?Object.assign.bind():function(s){for(var t=1;arguments.length>t;t++){var n=arguments[t];for(var a in n)({}).hasOwnProperty.call(n,a)&&(s[a]=n[a])}return s},be.apply(null,arguments)}function Vy(s,t){if(s==null)return{};var n={};for(var a in s)if({}.hasOwnProperty.call(s,a)){if(t.indexOf(a)!==-1)continue;n[a]=s[a]}return n}var a0=s=>{if(typeof s!="string")return s;try{return JSON.parse(s)}catch{return s}};function o0(s){return typeof s=="string"||s}function l0(s){return typeof s=="string"?s:void 0}var vo,I3=["$feature_flag","$feature_flag_response","$feature_flag_has_experiment","$feature_flag_id","$feature_flag_version","$feature_flag_reason","$feature_flag_request_id","$feature_flag_evaluated_at","$feature_flag_error","locally_evaluated","$groups","$process_person_profile","$geoip_disable","$current_url","$pathname","$session_id","$window_id","$lib","$lib_version","$device_id","$is_server"],cn=(function(s){return s.AnonymousId="anonymous_id",s.DistinctId="distinct_id",s.Props="props",s.EnablePersonProcessing="enable_person_processing",s.PersonMode="person_mode",s.FeatureFlagDetails="feature_flag_details",s.FeatureFlags="feature_flags",s.FeatureFlagPayloads="feature_flag_payloads",s.BootstrapFeatureFlagDetails="bootstrap_feature_flag_details",s.BootstrapFeatureFlags="bootstrap_feature_flags",s.BootstrapFeatureFlagPayloads="bootstrap_feature_flag_payloads",s.OverrideFeatureFlags="override_feature_flags",s.Queue="queue",s.AiQueue="ai_queue",s.LogsQueue="logs_queue",s.OptedOut="opted_out",s.SessionId="session_id",s.SessionStartTimestamp="session_start_timestamp",s.SessionLastTimestamp="session_timestamp",s.PersonProperties="person_properties",s.GroupProperties="group_properties",s.InstalledAppBuild="installed_app_build",s.InstalledAppVersion="installed_app_version",s.SessionReplay="session_replay",s.SessionReplayEventTriggerActivatedSession="session_replay_event_trigger_activated_session",s.SurveyLastSeenDate="survey_last_seen_date",s.SurveysSeen="surveys_seen",s.Surveys="surveys",s.RemoteConfig="remote_config",s.FlagsEndpointWasHit="flags_endpoint_was_hit",s.DeviceId="device_id",s})({}),c0=(function(s){return s.GZipJS="gzip-js",s.Base64="base64",s})({}),$3=["$snapshot","$pageview","$pageleave","$set","survey dismissed","survey sent","survey shown","$identify","$groupidentify","$create_alias","$$client_ingestion_warning","$web_experiment_applied","$feature_enrollment_update","$feature_flag_called"],P3=["token"],Yy="NativeGzipValidationError",vf=s=>s.length>=2&&s[0]===31&&s[1]===139,u0=(s,t)=>s===c0.GZipJS||t===c0.GZipJS||t==="gzip",h0=s=>!(!s||typeof s!="object")&&("name"in s?String(s.name):"")==="NotReadableError",lc=s=>{var t=new Error("Native gzip produced invalid output: "+s);throw t.name=Yy,t},U3=(function(){var s=Ft((function*(t,n){18>t.size&&lc("too-short");var a=new Uint8Array(yield t.slice(0,10).arrayBuffer());vf(a)&&a[2]===8||lc("invalid-header");var l=new DataView(yield t.slice(t.size-8).arrayBuffer());l.getUint32(0,!0)!==(p=>{for(var c=(()=>{if(vo)return vo;vo=[];for(var b=0;256>b;b++){for(var f=b,x=0;8>x;x++)f=1&f?3988292384^f>>>1:f>>>1;vo[b]=f>>>0}return vo})(),u=4294967295,v=0;p.length>v;v++)u=c[255&(u^p[v])]^u>>>8;return(4294967295^u)>>>0})(n)&&lc("invalid-crc");var d=n.length>>>0;l.getUint32(4,!0)!==d&&lc("invalid-size")}));return function(t,n){return s.apply(this,arguments)}})();function _f(){return _f=Ft((function*(s,t,n){t===void 0&&(t=!0);try{var a=new TextEncoder().encode(s),l=new globalThis.CompressionStream("gzip"),d=l.writable.getWriter(),p=d.write(a).then((()=>d.close())).catch((function(){var v=Ft((function*(b){try{yield d.abort(b)}catch{}throw b}));return function(b){return v.apply(this,arguments)}})()),c=new Response(l.readable).blob(),u=(yield Promise.all([c,p]))[0];return yield U3(u,a),u}catch(v){if(n!=null&&n.rethrow)throw v;return t&&console.error("Failed to gzip compress data",v),null}})),_f.apply(this,arguments)}var F3=["amazonbot","amazonproductbot","app.hypefactors.com","applebot","archive.org_bot","awariobot","backlinksextendedbot","baiduspider","bingbot","bingpreview","chrome-lighthouse","dataforseobot","deepscan","duckduckbot","facebookexternal","facebookcatalog","http://yandex.com/bots","hubspot","ia_archiver","leikibot","linkedinbot","meta-externalagent","mj12bot","msnbot","nessus","petalbot","pinterest","prerender","rogerbot","screaming frog","sebot-wa","sitebulb","slackbot","slurp","trendictionbot","turnitin","twitterbot","vercel-screenshot","vercelbot","yahoo! slurp","yandexbot","zoombot","bot.htm","bot.php","(bot;","bot/","crawler","ahrefsbot","ahrefssiteaudit","semrushbot","siteauditbot","splitsignalbot","gptbot","oai-searchbot","chatgpt-user","perplexitybot","better uptime bot","sentryuptimebot","uptimerobot","headlesschrome","cypress","google-hoteladsverifier","adsbot-google","apis-google","duplexweb-google","feedfetcher-google","google favicon","google web preview","google-read-aloud","googlebot","googleother","google-cloudvertexbot","googleweblight","mediapartners-google","storebot-google","google-inspectiontool","bytespider"],d0=function(s,t){if(t===void 0&&(t=[]),!s)return!1;var n=s.toLowerCase();return F3.concat(t).some((a=>{var l=a.toLowerCase();return n.indexOf(l)!==-1}))};function Ye(s,t){return s.indexOf(t)!==-1}var ru=function(s){return s.trim()},gf=function(s){return s.replace(/^\$/,"")};function Ky(s){var t,n=[];return(t=JSON.stringify(s,(function(a,l){if(typeof l=="bigint")return l.toString();if(typeof l!="function"&&typeof l!="symbol"){if(l instanceof Error)return{name:l.name,message:l.message,stack:l.stack};if(l&&typeof l=="object"){for(;n.length>0&&n[n.length-1]!==this;)n.pop();if(n.includes(l))return"[Circular]";n.push(l)}return l}})))!==null&&t!==void 0?t:"null"}var Xy=Object.prototype,Jy=Xy.hasOwnProperty,au=Xy.toString,Xe=Array.isArray||function(s){return au.call(s)==="[object Array]"},ni=s=>typeof s=="function",Ut=s=>s===Object(s)&&!Xe(s),$n=s=>{if(Ut(s)){for(var t in s)if(Jy.call(s,t))return!1;return!0}return!1},Ce=s=>s===void 0,jt=s=>au.call(s)=="[object String]",mf=s=>jt(s)&&s.trim().length===0,$s=s=>s===null,Ze=s=>Ce(s)||$s(s),Rs=s=>au.call(s)=="[object Number]"&&s==s,on=s=>Rs(s)&&s>0,Di=s=>au.call(s)==="[object Boolean]",q3=s=>s instanceof FormData,W3=s=>Ye($3,s),G3=s=>Ye(P3,s);function Zy(s){return s===null||typeof s!="object"}function Dc(s,t){return{}.toString.call(s)==="[object "+t+"]"}function pp(s){return typeof Event<"u"&&(function(t,n){try{return t instanceof n}catch{return!1}})(s,Event)}var V3=[!0,"true",1,"1","yes"],Dd=s=>Ye(V3,s),Y3=[!1,"false",0,"0","no"];function Ii(s,t,n,a,l){return t>n&&(a.warn("min cannot be greater than max."),t=n),Rs(s)?s>n?(a.warn(" cannot be greater than max: "+n+". Using max value instead."),n):t>s?(a.warn(" cannot be less than min: "+t+". Using min value instead."),t):s:(a.warn(" must be a number. using max or fallback. max: "+n+", fallback: "+l),Ii(l||n,t,n,a))}class K3{constructor(t){this.tt={},this.et=t.et,this.rt=Ii(t.bucketSize,0,100,t.it),this.nt=Ii(t.refillRate,0,this.rt,t.it),this.st=Ii(t.refillInterval,0,864e5,t.it)}ot(t,n){var a=Math.floor((n-t.lastAccess)/this.st);a>0&&(t.tokens=Math.min(t.tokens+a*this.nt,this.rt),t.lastAccess=t.lastAccess+a*this.st)}consumeRateLimit(t){var n,a=Date.now(),l=String(t),d=this.tt[l];return d?this.ot(d,a):this.tt[l]=d={tokens:this.rt,lastAccess:a},d.tokens===0||(d.tokens--,d.tokens===0&&((n=this.et)==null||n.call(this,t)),d.tokens===0)}stop(){this.tt={}}}var ai="Mobile",jc="iOS",pn="Android",_a="Tablet",Qy=pn+" "+_a,e1="iPad",t1="Apple",s1=t1+" Watch",Mo="Safari",ga="BlackBerry",i1="Samsung",n1=i1+"Browser",r1=i1+" Internet",yr="Chrome",X3=yr+" OS",a1=yr+" "+jc,vp="Internet Explorer",o1=vp+" "+ai,_p="Opera",J3=_p+" Mini",gp="Edge",l1="Microsoft "+gp,fa="Firefox",c1=fa+" "+jc,Io="Nintendo",$o="PlayStation",pa="Xbox",u1=pn+" "+ai,h1=ai+" "+Mo,Co="Windows",yf=Co+" Phone",f0="Nokia",bf="Ouya",d1="Generic",Z3=d1+" "+ai.toLowerCase(),f1=d1+" "+_a.toLowerCase(),Sf="Konqueror",p1="Oculus Browser",Nc="Vivaldi",v1="Yandex",Lc="Whale",wf="DuckDuckGo",_1="Pale Moon",Oc="Waterfox",Do="Brave",g1="Google Search App",Zt="(\\d+(\\.\\d+)?)",jd=new RegExp("Version/"+Zt),Q3=new RegExp(pa,"i"),e4=new RegExp($o+" \\w+","i"),t4=new RegExp(Io+" \\w+","i"),mp=new RegExp(ga+"|PlayBook|BB10","i"),s4={"NT3.51":"NT 3.11","NT4.0":"NT 4.0","5.0":"2000",5.1:"XP",5.2:"XP","6.0":"Vista",6.1:"7",6.2:"8",6.3:"8.1",6.4:"10","10.0":"10"},m1=function(s,t,n,a){t=t||"";var l=(function(d){return d!=null&&d.brave?Do:null})(n);return l||(a!=null&&a.detectGoogleSearchApp&&Ye(s,"GSA/")?g1:Ye(s," OPR/")&&Ye(s,"Mini")?J3:Ye(s," OPR/")?_p:mp.test(s)?ga:Ye(s,"IE"+ai)||Ye(s,"WPDesktop")?o1:Ye(s,"OculusBrowser")?p1:Ye(s,n1)?r1:Ye(s,gp)||Ye(s,"Edg/")?l1:Ye(s,Nc+"/")?Nc:Ye(s,"YaBrowser/")?v1:Ye(s,Lc+"/")?Lc:Ye(s,wf+"/")||Ye(s,"Ddg/")?wf:Ye(s,"FBIOS")?"Facebook "+ai:Ye(s,"UCWEB")||Ye(s,"UCBrowser")?"UC Browser":Ye(s,"CriOS")?a1:Ye(s,"CrMo")||Ye(s,yr)?yr:Ye(s,pn)&&Ye(s,Mo)?u1:Ye(s,"FxiOS")?c1:Ye(s.toLowerCase(),Sf.toLowerCase())?Sf:Ye(s,Do+"/")?Do:((d,p)=>p&&Ye(p,t1)||(function(c){return Ye(c,Mo)&&!Ye(c,yr)&&!Ye(c,pn)})(d))(s,t)?Ye(s,ai)?h1:Mo:Ye(s,"PaleMoon/")?_1:Ye(s,Oc+"/")?Oc:Ye(s,fa)?fa:Ye(s,"MSIE")||Ye(s,"Trident/")?vp:Ye(s,"Gecko")?fa:"")},i4={[o1]:[new RegExp("rv:"+Zt)],[l1]:[new RegExp(gp+"?\\/"+Zt)],[yr]:[new RegExp("("+yr+"|CrMo)\\/"+Zt)],[a1]:[new RegExp("CriOS\\/"+Zt)],"UC Browser":[new RegExp("(UCBrowser|UCWEB)\\/"+Zt)],[Mo]:[jd],[h1]:[jd],[_p]:[new RegExp("(Opera|OPR)\\/"+Zt)],[fa]:[new RegExp(fa+"\\/"+Zt)],[c1]:[new RegExp("FxiOS\\/"+Zt)],[Sf]:[new RegExp("Konqueror[:/]?"+Zt,"i")],[ga]:[new RegExp(ga+" "+Zt),jd],[u1]:[new RegExp("android\\s"+Zt,"i")],[r1]:[new RegExp(n1+"\\/"+Zt)],[p1]:[new RegExp("OculusBrowser\\/"+Zt)],[Nc]:[new RegExp(Nc+"\\/"+Zt)],[v1]:[new RegExp("YaBrowser\\/"+Zt)],[Lc]:[new RegExp(Lc+"\\/"+Zt)],[Do]:[new RegExp(Do+"\\/"+Zt)],[wf]:[new RegExp("(DuckDuckGo|Ddg)\\/"+Zt)],[_1]:[new RegExp("PaleMoon\\/"+Zt)],[Oc]:[new RegExp(Oc+"\\/"+Zt)],[g1]:[new RegExp("GSA\\/"+Zt)],[vp]:[new RegExp("(rv:|MSIE )"+Zt)],Mozilla:[new RegExp("rv:"+Zt)]},n4=function(s,t,n,a){var l=m1(s,t,n,a),d=i4[l];if(Ce(d))return null;for(var p=0;d.length>p;p++){var c=s.match(d[p]);if(c)return parseFloat(c[c.length-2])}return null},p0=[[new RegExp(pa+"; "+pa+" (.*?)[);]","i"),s=>[pa,s&&s[1]||""]],[new RegExp(Io,"i"),[Io,""]],[new RegExp($o,"i"),[$o,""]],[mp,[ga,""]],[new RegExp(Co,"i"),(s,t)=>{if(/Phone/.test(t)||/WPDesktop/.test(t))return[yf,""];if(new RegExp(ai).test(t)&&!/IEMobile\b/.test(t))return[Co+" "+ai,""];var n=/Windows NT ([0-9.]+)/i.exec(t);if(n&&n[1]){var a=s4[n[1]]||"";return/arm/i.test(t)&&(a="RT"),[Co,a]}return[Co,""]}],[/((iPhone|iPad|iPod).*?OS (\d+)_(\d+)_?(\d+)?|iPhone)/,s=>s&&s[3]?[jc,[s[3],s[4],s[5]||"0"].join(".")]:[jc,""]],[/(watch.*\/(\d+\.\d+\.\d+)|watch os,(\d+\.\d+),)/i,s=>{var t="";return s&&s.length>=3&&(t=Ce(s[2])?s[3]:s[2]),["watchOS",t]}],[new RegExp("("+pn+" (\\d+)\\.(\\d+)\\.?(\\d+)?|"+pn+")","i"),s=>s&&s[2]?[pn,[s[2],s[3],s[4]||"0"].join(".")]:[pn,""]],[/Mac OS X (\d+)[_.](\d+)[_.]?(\d+)?/i,s=>{var t=["Mac OS X",""];return s&&s[1]&&(t[1]=[s[1],s[2],s[3]||"0"].join(".")),t}],[/Mac/i,["Mac OS X",""]],[/CrOS/,[X3,""]],[/Linux|debian/i,["Linux",""]]],v0=function(s){return t4.test(s)?Io:e4.test(s)?$o:Q3.test(s)?pa:new RegExp(bf,"i").test(s)?bf:new RegExp("("+yf+"|WPDesktop)","i").test(s)?yf:/iPad/.test(s)?e1:/iPod/.test(s)?"iPod Touch":/iPhone/.test(s)?"iPhone":/(watch)(?: ?os[,/]|\d,\d\/)[\d.]+/i.test(s)?s1:mp.test(s)?ga:/(kobo)\s(ereader|touch)/i.test(s)?"Kobo":new RegExp(f0,"i").test(s)?f0:/(kf[a-z]{2}wi|aeo[c-r]{2})( bui|\))/i.test(s)||/(kf[a-z]+)( bui|\)).+silk\//i.test(s)?"Kindle Fire":/(Android|ZTE)/i.test(s)?new RegExp(ai).test(s)&&!/(9138B|TB782B|Nexus [97]|pixel c|HUAWEISHT|BTV|noble nook|smart ultra 6)/i.test(s)||/pixel[\daxl ]{1,6}/i.test(s)&&!/pixel c/i.test(s)||/(huaweimed-al00|tah-|APA|SM-G92|i980|zte|U304AA)/i.test(s)||/lmy47v/i.test(s)&&!/QTAQZ3/i.test(s)?pn:Qy:new RegExp("(pda|"+ai+")","i").test(s)?Z3:new RegExp(_a,"i").test(s)&&!new RegExp(_a+" pc","i").test(s)?f1:""},r4=/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i;function _0(s,t){return typeof(n=s)=="string"&&r4.test(n)?s:t();var n}function Un(s){return s&&s.split("#")[0]}function wc(s,t){var n=setTimeout(s,t);return n!=null&&n.unref&&(n==null||n.unref()),n}var a4=s=>s instanceof Error,y1={trace:{text:"TRACE",number:1},debug:{text:"DEBUG",number:5},info:{text:"INFO",number:9},warn:{text:"WARN",number:13},error:{text:"ERROR",number:17},fatal:{text:"FATAL",number:21}},o4=y1.info;function b1(s){if(Di(s))return{boolValue:s};if(typeof s=="number")return Number.isFinite(s)?Number.isInteger(s)?{intValue:s}:{doubleValue:s}:{stringValue:String(s)};if(typeof s=="string")return{stringValue:s};if(Xe(s))return{arrayValue:{values:s.map((t=>b1(t)))}};try{return{stringValue:JSON.stringify(s)}}catch{return{stringValue:String(s)}}}function Bc(s){var t=[];for(var n in s){var a=s[n];$s(a)||Ce(a)||t.push({key:n,value:b1(a)})}return t}function l4(s,t){var n=y1[s.level||"info"]||o4,a=n.text,l=n.number,d=String(Date.now())+"000000",p={};t.distinctId&&(p.posthogDistinctId=t.distinctId),t.sessionId&&(p.sessionId=t.sessionId),t.windowId&&(p["window.id"]=t.windowId),Ze(t.sessionStartTimestamp)||(p.sessionStartTimestamp=String(t.sessionStartTimestamp)),Ze(t.lastActivityTimestamp)||(p.lastActivityTimestamp=String(t.lastActivityTimestamp)),t.currentUrl&&(p["url.full"]=t.currentUrl),t.screenName&&(p["screen.name"]=t.screenName),t.appState&&(p["app.state"]=t.appState),t.activeFeatureFlags&&t.activeFeatureFlags.length>0&&(p.feature_flags=t.activeFeatureFlags);var c=be({},p,s.attributes||{}),u={timeUnixNano:d,observedTimeUnixNano:d,severityNumber:l,severityText:a,body:{stringValue:s.body},attributes:Bc(c)};return s.trace_id&&(u.traceId=s.trace_id),s.span_id&&(u.spanId=s.span_id),Ce(s.trace_flags)||(u.flags=s.trace_flags),u}function S1(s,t,n){return be({},s.resourceAttributes,{"service.name":s.serviceName||"unknown_service"},s.environment&&{"deployment.environment":s.environment},s.serviceVersion&&{"service.version":s.serviceVersion},{"telemetry.sdk.name":t,"telemetry.sdk.version":n})}function w1(s,t,n,a){return{resourceLogs:[{resource:{attributes:Bc(t)},scopeLogs:[{scope:{name:n,version:a},logRecords:s}]}]}}let c4=class{constructor(s,t,n,a,l,d,p){var c;d===void 0&&(d=()=>Promise.resolve()),this._instance=s,this.Te=t,this.it=n,this.ut=a,this.ht=l,this.dt=d,this.ct=p,this.vt=null,this.ft=0,this.yt=0,this.bt=0,this._t=0,this.wt=!1,this.xt=t.maxBufferSize,this.kt=Math.max((c=t.maxQueueSize)!==null&&c!==void 0?c:t.maxBufferSize,t.maxBufferSize),this.St=t.flushIntervalMs,this.Ct=t.maxBatchRecordsPerPost,this.Mt=t.rateCapWindowMs,this.It=t.maxLogsPerInterval}reset(){this.Tt(),this.vt=null,this.bt=0,this._t=0,this.wt=!1,this.ft=0,this.yt=0,this.Ct=this.Te.maxBatchRecordsPerPost}onReconnect(){this.yt=0,this.Et()}captureLog(s){if(!this._instance.isDisabled&&!this._instance.optedOut&&s!=null&&s.body){var t=this.Rt(s);if(t!==null)if(t.body){if(this.Pt()){var n={record:l4(t,this.ut())};this.ht((()=>this.Ot(n)))}}else this.it.info("Log was rejected in beforeSend function")}}Rt(s){var t=this.Te.beforeSend;if(!t)return s;var n=Xe(t)?t:[t],a=s;for(var l of n)try{var d=l(a);if(!d)return this.it.info("Log was rejected in beforeSend function"),null;a=d}catch(p){return this.it.error("Error in beforeSend function for log:",p),null}return a}Pt(){if(this.It===void 0)return!0;var s=Date.now(),t=s-this.bt;return this.Mt>t&&t>=0||(this.bt=s,this._t=0,this.wt=!1),this.It>this._t?(this._t++,!0):(this.wt||(this.it.warn("captureLog dropping logs: exceeded "+this.It+" logs per "+this.Mt+"ms"),this.wt=!0),!1)}flush(){var s=this;return Ft((function*(){if(!s._instance.isDisabled)return s.vt||(s.vt=s.Ft().finally((()=>{s.vt=null}))),s.vt}))()}Ft(){var s=this;return Ft((function*(){var t;s.Tt();var n=(t=s._instance.getPersistedProperty(cn.LogsQueue))!==null&&t!==void 0?t:[];if(n.length!==0)for(var a=n.length,l=0;n.length>0&&a>l;){var d,p;s.ft=0;var c=Math.min(n.length,s.Ct),u=n.slice(0,c),v=w1(u.map((f=>f.record)),s.At(),(d=s.ct)!==null&&d!==void 0?d:s._instance.getLibraryId(),s._instance.getLibraryVersion()),b=yield s._instance.$t(v);if(b.kind==="too-large"&&u.length>1)s.Ct=Math.max(1,Math.floor(u.length/2)),s.it.warn("Received 413 when sending logs batch of size "+u.length+", reducing batch size to "+s.Ct);else if(b.kind==="retry-later"||(b.kind==="too-large"?s.it.warn("Dropping a single log record after 413 with batch size 1 — the record is larger than the server cap and cannot be split further."):b.kind==="ok"&&s.Te.maxBatchRecordsPerPost>s.Ct&&(s.Ct=Math.min(s.Te.maxBatchRecordsPerPost,s.Ct+1)),yield s.Lt(u.length),n=(p=s._instance.getPersistedProperty(cn.LogsQueue))!==null&&p!==void 0?p:[],l+=u.length,b.kind==="fatal"))throw b.error}}))()}Lt(s){var t=this;return Ft((function*(){var n,a=Math.max(0,s-t.ft),l=(n=t._instance.getPersistedProperty(cn.LogsQueue))!==null&&n!==void 0?n:[];t._instance.setPersistedProperty(cn.LogsQueue,l.slice(a)),yield t.dt()}))()}At(){return S1(this.Te,this._instance.getLibraryId(),this._instance.getLibraryVersion())}Ot(s){var t;if(!this._instance.optedOut){var n=(t=this._instance.getPersistedProperty(cn.LogsQueue))!==null&&t!==void 0?t:[];this.kt>n.length||(n.shift(),this.ft++,this.it.info("Logs queue is full, dropping oldest record.")),n.push(s),this._instance.setPersistedProperty(cn.LogsQueue,n),this.xt>n.length?this.Dt():this.Et()}}Dt(s){s===void 0&&(s=this.St),this.Nt||(this.Nt=wc((()=>{this.Nt=void 0,this.Et()}),s))}qt(){var s=Math.min(Math.max(0,this.yt-1),6);return this.St*Math.pow(2,s)}jt(){var s=this._instance.getPersistedProperty(cn.LogsQueue);return!!s&&s.length>0}shutdown(s){var t=this;return Ft((function*(){t.Tt();var n=t.flush().catch((()=>{}));s!==void 0?yield Promise.race([n,new Promise((a=>wc(a,s)))]):yield n}))()}flushWithTimeout(s){var t=this;return Ft((function*(){var n=!1,a=t.flush(),l=new Promise((d=>wc((()=>{n=!0,d()}),s)));try{yield Promise.race([a,l])}finally{n&&a.catch((()=>{}))}}))()}Et(){this.flush().then((()=>{this.yt=0}),(s=>{this.yt++,this.it.error("PostHog logs flush failed:",s)})).finally((()=>{!this._instance.isDisabled&&this.jt()&&this.Dt(this.qt())}))}Tt(){this.Nt&&(clearTimeout(this.Nt),this.Nt=void 0)}};var Nd=[0,5,10,25,50,75,100,250,500,750,1e3,2500,5e3,7500,1e4];function g0(s){return String(s)+"000000"}function m0(s,t,n,a){var l="";return a&&(l=Object.keys(a).sort().map((d=>JSON.stringify(d)+":"+JSON.stringify(a[d]))).join(",")),s+"\0"+t+"\0"+(n??"")+"\0"+l}let u4=class{constructor(s,t,n){this._instance=s,this.Te=t,this.it=n,this.Bt=new Map,this.vt=null,this.Ht=!1,this.Ut=new Map,this.zt=new Set,this.Vt=0}count(s,t,n){t===void 0&&(t=1),this.Wt({name:s,type:"count",value:t,unit:n==null?void 0:n.unit,attributes:n==null?void 0:n.attributes})}gauge(s,t,n){this.Wt({name:s,type:"gauge",value:t,unit:n==null?void 0:n.unit,attributes:n==null?void 0:n.attributes})}histogram(s,t,n){this.Wt({name:s,type:"histogram",value:t,unit:n==null?void 0:n.unit,attributes:n==null?void 0:n.attributes})}flush(){var s=this,t=this.vt,n=(function(){var l=Ft((function*(){t&&(yield t.catch((()=>{}))),yield s.Zt()}));return function(){return l.apply(this,arguments)}})(),a=n().finally((()=>{this.vt===a&&(this.vt=null)}));return this.vt=a,a}drainWindow(){if(this.Bt.size===0)return null;var s=this.Bt;return this.Bt=new Map,this.Ht=!1,this.Ut=new Map,this.zt=new Set,this.Gt(s)}reset(){this.Vt++,this.Tt(),this.Bt=new Map,this.vt=null,this.Ht=!1,this.Ut=new Map,this.zt=new Set}Wt(s){if(!this._instance.isDisabled&&!this._instance.optedOut){var t=this.Rt(s);if(t!==null)if(t.name&&typeof t.name=="string")if(typeof t.value=="number"&&Number.isFinite(t.value))if(t.type==="count"&&0>t.value)this.it.warn("Dropping count '"+t.name+"': counters are monotonic, value must be >= 0");else{var n,a;try{n=t.attributes?be({},t.attributes):void 0,a=m0(t.type,t.name,t.unit,n)}catch(p){return void this.it.warn("Dropping metric '"+t.name+"': attributes could not be serialized",p)}var l=this.Bt.get(a);if(!l){if(!this.Qt())return;l={name:t.name,type:t.type,unit:t.unit,attributes:n,windowStartMs:Date.now()},this.Bt.set(a,l)}var d=this.Ut.get(t.name);d===void 0?this.Ut.set(t.name,t.type):d===t.type||this.zt.has(t.name)||(this.zt.add(t.name),this.it.warn("Metric name '"+t.name+"' is already used as a "+d+"; recording it as a "+t.type+" too will blend both series in charts. Use a distinct name.")),this.Jt(l,t.value),this.Dt()}else this.it.warn("Dropping metric '"+t.name+"': value must be a finite number");else this.it.warn("Dropping metric with empty name")}}Qt(){return this.Te.maxSeriesPerFlush>this.Bt.size||(this.Ht||(this.Ht=!0,this.it.warn("Metric series cap reached ("+this.Te.maxSeriesPerFlush+" per flush window); dropping new series until the next flush. Reduce attribute cardinality.")),!1)}Jt(s,t){var n;switch(s.type){case"count":s.total=((n=s.total)!==null&&n!==void 0?n:0)+t;break;case"gauge":s.last=t;break;case"histogram":s.hist||(s.hist={count:0,sum:0,min:t,max:t,bucketCounts:new Array(Nd.length+1).fill(0)});var a=s.hist;a.count+=1,a.sum+=t,a.min=Math.min(a.min,t),a.max=Math.max(a.max,t),a.bucketCounts[(function(l,d){for(var p=0;d.length>p;p++)if(d[p]>=l)return p;return d.length})(t,Nd)]+=1}}Rt(s){var t=this.Te.beforeSend;if(!t)return s;var n=Xe(t)?t:[t],a=s;for(var l of n)try{var d=l(a);if(!d)return this.it.info("Metric was rejected in beforeSend function"),null;a=d}catch(p){return this.it.error("Error in beforeSend function for metric:",p),null}return a}Dt(){this.Nt||(this.Nt=wc((()=>{this.Nt=void 0,this.flush().catch((s=>{this.it.error("Metrics flush failed:",s)}))}),this.Te.flushIntervalMs))}Tt(){this.Nt&&(clearTimeout(this.Nt),this.Nt=void 0)}Zt(){var s=this;return Ft((function*(){if(s.Bt.size!==0){var t=s.Bt;s.Bt=new Map,s.Ht=!1,s.Ut=new Map,s.zt=new Set;var n=s.Vt,a=yield s._instance.Kt(s.Gt(t));if(n===s.Vt)switch(a.kind){case"ok":return;case"retry-later":return s.Yt(t),void s.Dt();case"too-large":return void s.it.warn("Metrics batch exceeded the server size limit and was dropped");case"fatal":return void s.it.error("Failed to send metrics batch:",a.error)}}}))()}Gt(s){return t=this.Xt(s),n=(function(d,p,c){return be({},d.resourceAttributes,{"service.name":d.serviceName||"unknown_service"},d.environment&&{"deployment.environment":d.environment},d.serviceVersion&&{"service.version":d.serviceVersion},{"telemetry.sdk.name":p,"telemetry.sdk.version":c})})(this.Te,this._instance.getLibraryId(),this._instance.getLibraryVersion()),a=this._instance.getLibraryId(),l=this._instance.getLibraryVersion(),{resourceMetrics:[{resource:{attributes:Bc(n)},scopeMetrics:[{scope:{name:a,version:l},metrics:t}]}]};var t,n,a,l}Xt(s){var t=g0(Date.now()),n=new Map;for(var a of s.values()){var l,d=m0(a.type,a.name,a.unit,void 0),p=n.get(d);p||(p=be({name:a.name},a.unit&&{unit:a.unit}),a.type==="count"?p.sum={aggregationTemporality:1,isMonotonic:!0,dataPoints:[]}:a.type==="gauge"?p.gauge={dataPoints:[]}:p.histogram={aggregationTemporality:1,dataPoints:[]},n.set(d,p));var c=Bc((l=a.attributes)!==null&&l!==void 0?l:{}),u=g0(a.windowStartMs);if(a.type==="count"){var v,b={attributes:c,startTimeUnixNano:u,timeUnixNano:t,asDouble:(v=a.total)!==null&&v!==void 0?v:0};p.sum.dataPoints.push(b)}else if(a.type==="gauge"){var f,x={attributes:c,timeUnixNano:t,asDouble:(f=a.last)!==null&&f!==void 0?f:0};p.gauge.dataPoints.push(x)}else a.hist&&p.histogram.dataPoints.push({attributes:c,startTimeUnixNano:u,timeUnixNano:t,count:a.hist.count,sum:a.hist.sum,min:a.hist.min,max:a.hist.max,bucketCounts:a.hist.bucketCounts,explicitBounds:Nd})}return Array.from(n.values())}Yt(s){var t,n;for(var a of s){var l=a[0],d=a[1],p=this.Bt.get(l);if(p)switch(p.windowStartMs=Math.min(p.windowStartMs,d.windowStartMs),p.type){case"count":p.total=((t=p.total)!==null&&t!==void 0?t:0)+((n=d.total)!==null&&n!==void 0?n:0);break;case"gauge":break;case"histogram":if(d.hist)if(p.hist){p.hist.count+=d.hist.count,p.hist.sum+=d.hist.sum,p.hist.min=Math.min(p.hist.min,d.hist.min),p.hist.max=Math.max(p.hist.max,d.hist.max);for(var c=0;p.hist.bucketCounts.length>c;c++)p.hist.bucketCounts[c]+=d.hist.bucketCounts[c]}else p.hist=d.hist}else this.Qt()&&this.Bt.set(l,d)}}};var cc,y0,Ld;function h4(s){var t=globalThis._posthogChunkIds;if(t){var n=Object.keys(t);return Ld&&n.length===y0||(y0=n.length,Ld=n.reduce(((a,l)=>{cc||(cc={});var d=cc[l];if(d)a[d[0]]=d[1];else for(var p=s(l),c=p.length-1;c>=0;c--){var u=p[c],v=u==null?void 0:u.filename,b=t[l];if(v&&b){a[v]=b,cc[l]=[v,b];break}}return a}),{})),Ld}}class d4{constructor(t,n,a){a===void 0&&(a=[]),this.coercers=t,this.stackParser=n,this.modifiers=a}buildFromUnknown(t,n){n===void 0&&(n={});var a=n&&n.mechanism||{handled:!0,type:"generic"},l=this.buildCoercingContext(a,n,0).apply(t),d=this.buildParsingContext(n),p=this.parseStacktrace(l,d);return{$exception_list:this.convertToExceptionList(p,a),$exception_level:"error"}}modifyFrames(t){var n=this;return Ft((function*(){for(var a of t)a.stacktrace&&a.stacktrace.frames&&Xe(a.stacktrace.frames)&&(a.stacktrace.frames=yield n.applyModifiers(a.stacktrace.frames));return t}))()}coerceFallback(t){var n;return{type:"Error",value:"Unknown error",stack:(n=t.syntheticException)==null?void 0:n.stack,synthetic:!0}}parseStacktrace(t,n){var a,l;return t.cause!=null&&(a=this.parseStacktrace(t.cause,n)),t.stack!=""&&t.stack!=null&&(l=this.applyChunkIds(this.stackParser(t.stack,t.synthetic?n.skipFirstLines:0),n.chunkIdMap)),be({},t,{cause:a,stack:l})}applyChunkIds(t,n){return t.map((a=>(a.filename&&n&&(a.chunk_id=n[a.filename]),a)))}applyCoercers(t,n){for(var a of this.coercers)if(a.match(t))return a.coerce(t,n);return this.coerceFallback(n)}applyModifiers(t){var n=this;return Ft((function*(){var a=t;for(var l of n.modifiers)a=yield l(a);return a}))()}convertToExceptionList(t,n){var a,l,d,p={type:t.type,value:t.value,mechanism:{type:(a=n.type)!==null&&a!==void 0?a:"generic",handled:(l=n.handled)===null||l===void 0||l,synthetic:(d=t.synthetic)!==null&&d!==void 0&&d}};t.stack&&(p.stacktrace={type:"raw",frames:t.stack});var c=[p];return t.cause!=null&&c.push(...this.convertToExceptionList(t.cause,be({},n,{handled:!0}))),c}buildParsingContext(t){var n;return{chunkIdMap:h4(this.stackParser),skipFirstLines:(n=t.skipFirstLines)!==null&&n!==void 0?n:1}}buildCoercingContext(t,n,a){a===void 0&&(a=0);var l=(d,p)=>{if(4>=p){var c=this.buildCoercingContext(t,n,p);return this.applyCoercers(d,c)}};return be({},n,{syntheticException:a==0?n.syntheticException:void 0,mechanism:t,apply:d=>l(d,a),next:d=>l(d,a+1)})}}var ma="?";function xf(s,t,n,a,l){var d={platform:s,filename:t,function:n==="<anonymous>"?ma:n,in_app:!0};return Ce(a)||(d.lineno=a),Ce(l)||(d.colno=l),d}var x1=(s,t)=>{var n=s.indexOf("safari-extension")!==-1,a=s.indexOf("safari-web-extension")!==-1;return n||a?[s.indexOf("@")!==-1?s.split("@")[0]:ma,n?"safari-extension:"+t:"safari-web-extension:"+t]:[s,t]},f4=/^\s*at (\S+?)(?::(\d+))(?::(\d+))\s*$/i,p4=/^\s*at (?:(.+?\)(?: \[.+\])?|.*?) ?\((?:address at )?)?(?:async )?((?:<anonymous>|[-a-z]+:|.*bundle|\/)?.*?)(?::(\d+))?(?::(\d+))?\)?\s*$/i,v4=/\((\S*)(?::(\d+))(?::(\d+))\)/,_4=(s,t)=>{var n=f4.exec(s);if(n)return xf(t,n[1],ma,+n[2],+n[3]);var a=p4.exec(s);if(a){if(a[2]&&a[2].indexOf("eval")===0){var l=v4.exec(a[2]);l&&(a[2]=l[1],a[3]=l[2],a[4]=l[3])}var d=x1(a[1]||ma,a[2]);return xf(t,d[1],d[0],a[3]?+a[3]:void 0,a[4]?+a[4]:void 0)}},g4=/^\s*(.*?)(?:\((.*?)\))?(?:^|@)?((?:[-a-z]+)?:\/.*?|\[native code\]|[^@]*(?:bundle|\d+\.js)|\/[\w\-. /=]+)(?::(\d+))?(?::(\d+))?\s*$/i,m4=/(\S+) line (\d+)(?: > eval line \d+)* > eval/i,y4=(s,t)=>{var n=g4.exec(s);if(n){if(n[3]&&n[3].indexOf(" > eval")>-1){var a=m4.exec(n[3]);a&&(n[1]=n[1]||"eval",n[3]=a[1],n[4]=a[2],n[5]="")}var l=n[3],d=n[1]||ma,p=x1(d,l);return xf(t,l=p[1],d=p[0],n[4]?+n[4]:void 0,n[5]?+n[5]:void 0)}},b0=/\(error: (.*)\)/;class b4{match(t){return this.isDOMException(t)||this.isDOMError(t)}coerce(t,n){var a=jt(t.stack);return{type:this.getType(t),value:this.getValue(t),stack:a?t.stack:void 0,cause:t.cause?n.next(t.cause):void 0,synthetic:!1}}getType(t){return this.isDOMError(t)?"DOMError":"DOMException"}getValue(t){var n=t.name||(this.isDOMError(t)?"DOMError":"DOMException");return t.message?n+": "+t.message:n}isDOMException(t){return Dc(t,"DOMException")}isDOMError(t){return Dc(t,"DOMError")}}class S4{match(t){return(n=>n instanceof Error)(t)}coerce(t,n){return{type:this.getType(t),value:this.getMessage(t,n),stack:this.getStack(t),cause:t.cause?n.next(t.cause):void 0,synthetic:!1}}getType(t){return t.name||t.constructor.name}getMessage(t,n){var a=t.message;return String(a.error&&typeof a.error.message=="string"?a.error.message:a)}getStack(t){return t.stacktrace||t.stack||void 0}}class w4{constructor(){}match(t){return Dc(t,"ErrorEvent")&&t.error!=null}coerce(t,n){var a;return n.apply(t.error)||{type:"ErrorEvent",value:t.message,stack:(a=n.syntheticException)==null?void 0:a.stack,synthetic:!0}}}var x4=/^(?:[Uu]ncaught (?:exception: )?)?(?:((?:Eval|Internal|Range|Reference|Syntax|Type|URI|)Error): )?(.*)$/i;class C4{match(t){return typeof t=="string"}coerce(t,n){var a,l=this.getInfos(t),d=l[0],p=l[1];return{type:d??"Error",value:p??t,stack:(a=n.syntheticException)==null?void 0:a.stack,synthetic:!0}}getInfos(t){var n="Error",a=t,l=t.match(x4);return l&&(n=l[1],a=l[2]),[n,a]}}var E4=["fatal","error","warning","log","info","debug"];function C1(s,t){t===void 0&&(t=40);var n=Object.keys(s);if(n.sort(),!n.length)return"[object has no keys]";for(var a=n.length;a>0;a--){var l=n.slice(0,a).join(", ");if(t>=l.length)return a===n.length?l:l.length>t?l.slice(0,t)+"...":l}return""}class k4{match(t){return typeof t=="object"&&t!==null}coerce(t,n){var a,l=this.getErrorPropertyFromObject(t);return l?n.apply(l):{type:this.getType(t),value:this.getValue(t),stack:(a=n.syntheticException)==null?void 0:a.stack,level:this.isSeverityLevel(t.level)?t.level:"error",synthetic:!0}}getType(t){return pp(t)?t.constructor.name:"Error"}getValue(t){if("name"in t&&typeof t.name=="string"){var n="'"+t.name+"' captured as exception";return"message"in t&&typeof t.message=="string"&&(n+=" with message: '"+t.message+"'"),n}if("message"in t&&typeof t.message=="string")return t.message;var a=this.getObjectClassName(t);return(a&&a!=="Object"?"'"+a+"'":"Object")+" captured as exception with keys: "+C1(t)}isSeverityLevel(t){return jt(t)&&!mf(t)&&E4.indexOf(t)>=0}getErrorPropertyFromObject(t){for(var n in t)if({}.hasOwnProperty.call(t,n)){var a=t[n];if(a4(a))return a}}getObjectClassName(t){try{var n=Object.getPrototypeOf(t);return n?n.constructor.name:void 0}catch{return}}}class T4{match(t){return pp(t)}coerce(t,n){var a,l=t.constructor.name;return{type:l,value:l+" captured as exception with keys: "+C1(t),stack:(a=n.syntheticException)==null?void 0:a.stack,synthetic:!0}}}class A4{match(t){return Zy(t)}coerce(t,n){var a;return{type:"Error",value:"Primitive value captured as exception: "+String(t),stack:(a=n.syntheticException)==null?void 0:a.stack,synthetic:!0}}}class R4{match(t){return Dc(t,"PromiseRejectionEvent")||this.isCustomEventWrappingRejection(t)}isCustomEventWrappingRejection(t){if(!pp(t))return!1;try{var n=t.detail;return n!=null&&typeof n=="object"&&"reason"in n}catch{return!1}}coerce(t,n){var a,l=this.getUnhandledRejectionReason(t);return Zy(l)?{type:"UnhandledRejection",value:"Non-Error promise rejection captured with value: "+String(l),stack:(a=n.syntheticException)==null?void 0:a.stack,synthetic:!0}:n.apply(l)}getUnhandledRejectionReason(t){try{if("reason"in t)return t.reason;if("detail"in t&&t.detail!=null&&typeof t.detail=="object"&&"reason"in t.detail)return t.detail.reason}catch{}return t}}var Hc="$message",zc="$timestamp",M4=new Set([Hc,zc]),Od={enabled:!0,max_bytes:32768};function Ic(s){var t;return s?{enabled:(t=s.enabled)!==null&&t!==void 0?t:Od.enabled,max_bytes:j4(s.max_bytes,Od.max_bytes)}:be({},Od)}class D4{constructor(t){this.$e=[],this.ze=0,this.Te=Ic(t)}setConfig(t){this.Te=Ic(t),this.Ze()}add(t){var n=(function(l){var d;try{d=Ky(l)}catch{return}try{var p=JSON.parse(d);if(!Ut(p))return;var c=p,u=c[Hc],v=c[zc];return!jt(u)||u.trim().length===0||!jt(v)&&!Rs(v)?void 0:{step:c,json:d}}catch{return}})(t);if(n){var a=(function(l){if(typeof TextEncoder<"u")return new TextEncoder().encode(l).length;for(var d=encodeURIComponent(l),p=0,c=0;d.length>c;c++)d[c]==="%"?(p+=1,c+=2):p+=1;return p})(n.json);a>this.Te.max_bytes||(this.$e.push({step:n.step,bytes:a}),this.ze+=a,this.Ze())}}getAttachable(){return this.$e.map((t=>t.step))}clear(){this.$e=[],this.ze=0}size(){return this.$e.length}Ze(){for(;this.ze>this.Te.max_bytes&&this.$e.length>0;){var t=this.$e.shift();t&&(this.ze-=t.bytes)}}}function j4(s,t){if(!Rs(s)||s===1/0||s===-1/0)return t;var n=Math.floor(s);return 0>n?t:n}var E1=function(s,t){var n=(t===void 0?{}:t).debugEnabled,a={k(l){if(le&&(bt.DEBUG||le.POSTHOG_DEBUG||n)&&!Ce(le.console)&&le.console){for(var d=("__rrweb_original__"in le.console[l])?le.console[l].__rrweb_original__:le.console[l],p=arguments.length,c=new Array(p>1?p-1:0),u=1;p>u;u++)c[u-1]=arguments[u];d(s,...c)}},debug(){for(var l=arguments.length,d=new Array(l),p=0;l>p;p++)d[p]=arguments[p];a.k("debug",...d)},info(){for(var l=arguments.length,d=new Array(l),p=0;l>p;p++)d[p]=arguments[p];a.k("log",...d)},warn(){for(var l=arguments.length,d=new Array(l),p=0;l>p;p++)d[p]=arguments[p];a.k("warn",...d)},error(){for(var l=arguments.length,d=new Array(l),p=0;l>p;p++)d[p]=arguments[p];a.k("error",...d)},critical(){for(var l=arguments.length,d=new Array(l),p=0;l>p;p++)d[p]=arguments[p];console.error(s,...d)},uninitializedWarning(l){a.error("You must initialize PostHog before calling "+l)},createLogger:(l,d)=>E1(s+" "+l,d)};return a},Ee=E1("[PostHog.js]"),Wt=Ee.createLogger,N4=Wt("[ExternalScriptsLoader]"),Bd=(s,t,n)=>{if(s.config.disable_external_dependency_loading)return N4.warn(t+" was requested but loading of external scripts is disabled."),n("Loading of external scripts is disabled");var a=Ae==null?void 0:Ae.querySelectorAll("script");if(a){for(var l,d=function(){if(a[p].src===t){var u=a[p];return u.__posthog_loading_callback_fired?{v:n()}:(u.addEventListener("load",(v=>{u.__posthog_loading_callback_fired=!0,n(void 0,v)})),u.onerror=v=>n(v),{v:void 0})}},p=0;a.length>p;p++)if(l=d())return l.v}var c=()=>{if(!Ae)return n("document not found");var u=Ae.createElement("script");if(u.type="text/javascript",u.crossOrigin="anonymous",u.src=t,u.onload=f=>{u.__posthog_loading_callback_fired=!0,n(void 0,f)},u.onerror=f=>n(f),s.config.prepare_external_dependency_script&&(u=s.config.prepare_external_dependency_script(u)),!u)return n("prepare_external_dependency_script returned null");if(s.config.external_scripts_inject_target==="head")Ae.head.appendChild(u);else{var v,b=Ae.querySelectorAll("body > script");b.length>0?(v=b[0].parentNode)==null||v.insertBefore(u,b[0]):Ae.body.appendChild(u)}};Ae!=null&&Ae.body?c():Ae==null||Ae.addEventListener("DOMContentLoaded",c)};ze.__PosthogExtensions__=ze.__PosthogExtensions__||{},ze.__PosthogExtensions__.loadExternalDependency=(s,t,n)=>{if(t!=="remote-config"){var a;if(s.config.strict_script_versioning)a=s.requestRouter.endpointFor("assets","/static/"+s.version+"/"+t+".js");else{var l="/static/"+t+".js?v="+s.version;if(t==="toolbar"){var d=3e5;l=l+"&t="+Math.floor(Date.now()/d)*d}a=s.requestRouter.endpointFor("assets",l)}Bd(s,a,n)}else{var p=s.requestRouter.endpointFor("assets","/array/"+s.config.token+"/config.js");Bd(s,p,n)}},ze.__PosthogExtensions__.loadSiteApp=(s,t,n)=>{var a=s.requestRouter.endpointFor("api",t);Bd(s,a,n)};bt.DEBUG=!1,bt.LIB_VERSION="1.409.5",bt.LIB_NAME="web";var k1="$people_distinct_id",Po="$device_id",Hd="$device_model",Eo="__alias",ko="__timers",Cf="$autocapture_disabled_server_side",Ef="$heatmaps_enabled_server_side",kf="$exception_capture_enabled_server_side",Tf="$error_tracking_suppression_rules",Af="$error_tracking_capture_extension_exceptions",Rf="$web_vitals_enabled_server_side",yp="$dead_clicks_enabled_server_side",bp="$product_tours_enabled_server_side",Mf="$web_vitals_allowed_metrics",mr="$session_recording_remote_config",T1="$replay_sample_rate",A1="$replay_override_sampling",R1="$replay_override_linked_flag",M1="$replay_override_url_trigger",D1="$replay_override_event_trigger",la="$sesid",Sp="$session_is_sampled",gr="$enabled_feature_flags",xc="$active_feature_flags",To="$early_access_features",Df="$feature_flag_details",Cc="$feature_flag_payloads",jf="$feature_flag_request_id",$c="$minimal_flag_called_events",ln="$override_feature_flags",ra="$override_feature_flag_payloads",pr="$stored_person_properties",vr="$stored_group_properties",Nf="$surveys",Pc="$surveys_loaded_at",Lf="$surveys_activated",Ec="$surveys_activated_session",Ao="ph_product_tours",jo="$flag_call_reported",Of="$flag_call_reported_session_id",Bf="$feature_flag_errors",Uo="$feature_flag_evaluated_at",yi="$user_state",Hf="$client_session_props",zf="$capture_rate_limit",If="$initial_campaign_params",$f="$initial_referrer_info",Uc="$initial_person_info",Fc="$epp",uc="$posthog_cookieless",j1="$cookieless_mode",N1="$sdk_debug_extensions_init_method",L1="$sdk_debug_extensions_init_time_ms",O1="$sdk_debug_recording_script_not_loaded",wp="PostHog loadExternalDependency extension not found.",_r="on_reject",hn="always",ta="anonymous",or="identified",Pf="identified_only",qc="visibilitychange",Wc="beforeunload",aa="$pageview",zd="$pageleave",Id="$identify",S0="$groupidentify";function hc(s,t){Xe(s)&&s.forEach(t)}function Nt(s,t){if(!Ze(s))if(Xe(s))s.forEach(t);else if(q3(s))s.forEach(((a,l)=>t(a,l)));else for(var n in s)Jy.call(s,n)&&t(s[n],n)}var Ht=function(s){for(var t=arguments.length,n=new Array(t>1?t-1:0),a=1;t>a;a++)n[a-1]=arguments[a];for(var l of n)for(var d in l)l[d]!==void 0&&(s[d]=l[d]);return s};function kc(s){for(var t=Object.keys(s),n=t.length,a=new Array(n);n--;)a[n]=[t[n],s[t[n]]];return a}var w0=function(s){try{return s()}catch{return}},L4=function(s){return function(){try{for(var t=arguments.length,n=new Array(t),a=0;t>a;a++)n[a]=arguments[a];return s.apply(this,n)}catch(l){Ee.critical("Implementation error. Please turn on debug mode and open a ticket on https://app.posthog.com/home#panel=support%3Asupport%3A."),Ee.critical(l)}}},xp=function(s){var t={};return Nt(s,(function(n,a){(jt(n)&&n.length>0||Rs(n))&&(t[a]=n)})),t},O4=["herokuapp.com","vercel.app","netlify.app"];function B4(s){var t=s==null?void 0:s.hostname;if(!jt(t))return!1;var n=t.split(".").slice(-2).join(".");for(var a of O4)if(n===a)return!1;return!0}function Qt(s,t,n,a){var l=a??{},d=l.capture,p=l.passive;s==null||s.addEventListener(t,n,{capture:d!==void 0&&d,passive:p===void 0||p})}function B1(s){return s.name==="ph_toolbar_internal"}var H1=s=>{if(Ae){try{for(var t=s+"=",n=Ae.cookie.split(";").filter((d=>d.length)),a=0;n.length>a;a++){for(var l=n[a];l.charAt(0)==" ";)l=l.substring(1,l.length);if(l.indexOf(t)===0)return decodeURIComponent(l.substring(t.length,l.length))}}catch{}return null}};Math.trunc||(Math.trunc=function(s){return 0>s?Math.ceil(s):Math.floor(s)}),Number.isInteger||(Number.isInteger=function(s){return Rs(s)&&isFinite(s)&&Math.floor(s)===s});class Gc{constructor(t){if(this.bytes=t,t.length!==16)throw new TypeError("not 128-bit length")}static fromFieldsV7(t,n,a,l){if(!Number.isInteger(t)||!Number.isInteger(n)||!Number.isInteger(a)||!Number.isInteger(l)||0>t||0>n||0>a||0>l||t>0xffffffffffff||n>4095||a>1073741823||l>4294967295)throw new RangeError("invalid field value");var d=new Uint8Array(16);return d[0]=t/Math.pow(2,40),d[1]=t/Math.pow(2,32),d[2]=t/Math.pow(2,24),d[3]=t/Math.pow(2,16),d[4]=t/256,d[5]=t,d[6]=112|n>>>8,d[7]=n,d[8]=128|a>>>24,d[9]=a>>>16,d[10]=a>>>8,d[11]=a,d[12]=l>>>24,d[13]=l>>>16,d[14]=l>>>8,d[15]=l,new Gc(d)}toString(){for(var t="",n=0;this.bytes.length>n;n++)t=t+(this.bytes[n]>>>4).toString(16)+(15&this.bytes[n]).toString(16),n!==3&&n!==5&&n!==7&&n!==9||(t+="-");if(t.length!==36)throw new Error("Invalid UUIDv7 was generated");return t}clone(){return new Gc(this.bytes.slice(0))}equals(t){return this.compareTo(t)===0}compareTo(t){for(var n=0;16>n;n++){var a=this.bytes[n]-t.bytes[n];if(a!==0)return Math.sign(a)}return 0}}class H4{generate(){var t=this.generateOrAbort();if(!Ce(t))return t;this.S=0;var n=this.generateOrAbort();if(Ce(n))throw new Error("Could not generate UUID after timestamp reset");return n}generateOrAbort(){var t=Date.now();if(t>this.S)this.S=t,this.C();else{if(this.S>=t+1e4)return;this.M++,this.M>4398046511103&&(this.S++,this.C())}return Gc.fromFieldsV7(this.S,Math.trunc(this.M/Math.pow(2,30)),this.M&Math.pow(2,30)-1,this.I.nextUint32())}C(){this.M=1024*this.I.nextUint32()+(1023&this.I.nextUint32())}constructor(){this.S=0,this.M=0,this.I=new z4}}var x0,z1=s=>{if(typeof UUIDV7_DENY_WEAK_RNG<"u"&&UUIDV7_DENY_WEAK_RNG)throw new Error("no cryptographically strong RNG available");for(var t=0;s.length>t;t++)s[t]=65536*Math.trunc(65536*Math.random())+Math.trunc(65536*Math.random());return s};le&&!Ce(le.crypto)&&crypto.getRandomValues&&(z1=s=>crypto.getRandomValues(s));class z4{nextUint32(){return this.R.length>this.O||(z1(this.R),this.O=0),this.R[this.O++]}constructor(){this.R=new Uint32Array(8),this.O=1/0}}var un=()=>I4().toString(),I4=()=>(x0||(x0=new H4)).generate(),_o="",$4=/[a-z0-9][a-z0-9-]+\.[a-z]{2,}$/i,dn={N:()=>!!Ae,P(s){Ee.error("cookieStore error: "+s)},q:H1,F(s){var t;try{t=JSON.parse(dn.q(s))||{}}catch{}return t},A(s,t,n,a,l){if(!Ae)return!1;try{var d="",p="",c=(function(b,f){if(f){var x=(function(A,E){if(E===void 0&&(E=Ae),_o)return _o;if(!E||["localhost","127.0.0.1"].includes(A))return"";for(var m=A.split("."),S=Math.min(m.length,8),_="dmn_chk_"+un();!_o&&S--;){var y=m.slice(S).join("."),k=_+"=1;domain=."+y+";path=/";E.cookie=k+";max-age=3",E.cookie.includes(_)&&(E.cookie=k+";max-age=0",_o=y)}return _o})(b);if(!x){var C=(A=>{var E=A.match($4);return E?E[0]:""})(b);C!==x&&Ee.info("Warning: cookie subdomain discovery mismatch",C,x),x=C}return x?"; domain=."+x:""}return""})(Ae.location.hostname,a);if(n){var u=new Date;u.setTime(u.getTime()+864e5*n),d="; expires="+u.toUTCString()}l&&(p="; secure");var v=s+"="+encodeURIComponent(JSON.stringify(t))+d+"; SameSite=Lax; path=/"+c+p;return v.length>3686.4&&Ee.warn("cookieStore warning: large cookie, len="+v.length),Ae.cookie=v,!0}catch{return!1}},D(s,t){if(Ae!=null&&Ae.cookie)try{dn.A(s,"",-1,t)}catch{return}}},$d=null,Bt={N(){if(!$s($d))return $d;var s=!0;if(Ce(le))s=!1;else try{var t="__mplssupport__";Bt.A(t,"xyz"),Bt.q(t)!=='"xyz"'&&(s=!1),Bt.D(t)}catch{s=!1}return s||Ee.error("localStorage unsupported; falling back to cookie store"),$d=s,s},P(s){Ee.error("localStorage error: "+s)},q(s){try{return le==null?void 0:le.localStorage.getItem(s)}catch(t){Bt.P(t)}return null},F(s){try{return JSON.parse(Bt.q(s))||{}}catch{}return null},A(s,t){try{return le==null||le.localStorage.setItem(s,JSON.stringify(t)),!0}catch(n){Bt.P(n)}return!1},D(s){try{le==null||le.localStorage.removeItem(s)}catch(t){Bt.P(t)}}},P4=[Po,"distinct_id",la,Sp,Fc,Uc,yi],dc={},U4={N:()=>!0,P(s){Ee.error("memoryStorage error: "+s)},q:s=>dc[s]||null,F:s=>dc[s]||null,A:(s,t)=>(dc[s]=t,!0),D(s){delete dc[s]}},lr=null,As={N(){if(!$s(lr))return lr;if(lr=!0,Ce(le))lr=!1;else try{var s="__support__";As.A(s,"xyz"),As.q(s)!=='"xyz"'&&(lr=!1),As.D(s)}catch{lr=!1}return lr},P(s){Ee.error("sessionStorage error: ",s)},q(s){try{return le==null?void 0:le.sessionStorage.getItem(s)}catch(t){As.P(t)}return null},F(s){try{return JSON.parse(As.q(s))||null}catch{}return null},A(s,t){try{return le==null||le.sessionStorage.setItem(s,JSON.stringify(t)),!0}catch(n){As.P(n)}return!1},D(s){try{le==null||le.sessionStorage.removeItem(s)}catch(t){As.P(t)}}};class F4{constructor(t){this._instance=t}get Te(){return this._instance.config}get consent(){return this.Ge()?0:this.Qe}isOptedOut(){return this.Te.cookieless_mode===hn||this.isRejected()||this.consent===-1&&this.Te.cookieless_mode===_r}isOptedIn(){return!this.isOptedOut()}isExplicitlyOptedOut(){return this.consent===0}isRejected(){return this.consent===0||this.consent===-1&&this.Te.opt_out_capturing_by_default}optInOut(t){this.Je.A(this.Ke,t?1:0,this.Te.cookie_expiration,this.Te.cross_subdomain_cookie,this.Te.secure_cookie)}reset(){this.Je.D(this.Ke,this.Te.cross_subdomain_cookie)}get Ke(){var t=this._instance.config,n=t.token,a=t.opt_out_capturing_cookie_prefix;return t.consent_persistence_name||(a?a+n:"__ph_opt_in_out_"+n)}get Qe(){var t=this.Je.q(this.Ke);return Dd(t)?1:Ye(Y3,t)?0:-1}get Je(){var t=this.Te.opt_out_capturing_persistence_type,n=t==="localStorage"?Bt:dn;if(!this.Ye||this.Ye!==n){this.Ye=n;var a=t==="localStorage"?dn:Bt;a.q(this.Ke)&&(this.Ye.q(this.Ke)||this.optInOut(Dd(a.q(this.Ke))),a.D(this.Ke,this.Te.cross_subdomain_cookie))}return this.Ye}Ge(){return!!this.Te.respect_dnt&&[Is==null?void 0:Is.doNotTrack,Is==null?void 0:Is.msDoNotTrack,ze.doNotTrack].some((t=>Dd(t)))}}function I1(s,t){var n,a=s==null||(n=s.config)==null?void 0:n.get_current_url;if(!ni(a))return t;try{var l=a(t);return jt(l)&&l?l:t}catch(d){return Ee.error("Error in get_current_url, falling back to window.location.href",d),t}}var $1="__POSTHOG_TOOLBAR__",q4=1,W4=3,G4=11;function C0(s){return s instanceof Element&&(s.id===$1||!(s.closest==null||!s.closest(".toolbar-global-fade-container")))}function Fn(s){return!!s&&s.nodeType===q4}function ri(s,t){return!!s&&!!s.tagName&&s.tagName.toLowerCase()===t.toLowerCase()}function P1(s){return!!s&&s.nodeType===W4}function U1(s){return!!s&&s.nodeType===G4&&Fn(s.host)}var F1=1e3;function Cp(s){return s?ru(s).split(/\s+/):[]}function E0(s,t){var n=(function(a){var l,d=le==null||(l=le.location)==null?void 0:l.href;return Ce(d)?void 0:I1(a,d)})(t);return!!(n&&s&&s.some((a=>n.match(a))))}function Vc(s){var t="";switch(typeof s.className){case"string":t=s.className;break;case"object":t=(s.className&&"baseVal"in s.className?s.className.baseVal:null)||s.getAttribute("class")||"";break;default:t=""}return Cp(t)}function q1(s){return Ze(s)?null:ru(s).split(/(\s+)/).filter((t=>No(t))).join("").replace(/[\r\n]/g," ").replace(/[ ]+/g," ").substring(0,255)}function Fo(s){var t="";return Ff(s)&&!Y1(s)&&s.childNodes&&s.childNodes.length&&Nt(s.childNodes,(function(n){var a;P1(n)&&n.textContent&&(t+=(a=q1(n.textContent))!==null&&a!==void 0?a:"")})),ru(t)}function Pd(s){var t;return Ce(s.target)?s.srcElement||null:(t=s.target)!=null&&t.shadowRoot?s.composedPath()[0]||null:s.target||null}var Ep=["a","button","form","input","select","textarea","label"];function Uf(s,t){if(Ce(t))return!0;var n,a=function(d){if(t.some((p=>(function(c,u){var v=c.matches||c.matchesSelector||c.msMatchesSelector||c.mozMatchesSelector||c.webkitMatchesSelector||c.oMatchesSelector;try{return!!v&&v.call(c,u)}catch{return!1}})(d,p))))return{v:!0}};for(var l of s)if(n=a(l))return n.v;return!1}function W1(s){var t=s.parentNode;return!(!t||!Fn(t))&&t}var V4=[".ph-no-autocapture","[data-ph-no-autocapture]"],G1=["next","previous","prev",">","<"],Y4=[...G1,"+","-","−","–"],k0=(s,t)=>/[a-z0-9]/i.test(t)?s.includes(t):s===t,T0=[".ph-no-rageclick",".ph-no-capture"],K4=["","text","search","email","password","url","tel","number"];function A0(s,t){if(!le||kp(s))return!1;var n,a,l,d,p;if(Di(t)?(n=!!t&&T0,a=void 0,l=!1):(n=(d=t==null?void 0:t.css_selector_ignorelist)!==null&&d!==void 0?d:T0,a=t==null?void 0:t.content_ignorelist,l=(p=t==null?void 0:t.ignore_text_selection)!==null&&p!==void 0&&p),n===!1||l&&(function(u){return!(!u||!Fn(u))&&(!!ri(u,"textarea")||(ri(u,"input")?Ye(K4,(u.getAttribute("type")||"").toLowerCase()):(function(v){if(v.isContentEditable)return!0;var b=v.getAttribute==null?void 0:v.getAttribute("contenteditable");return b==="true"||b===""})(u)))})(s))return!1;var c=V1(s,!1).targetElementList;return!(function(u,v){if(u===!1||Ce(u))return!1;var b;if(u===!0)b=G1;else{if(!Xe(u))return!1;if(u.length>10)return Ee.error("[PostHog] content_ignorelist array cannot exceed 10 items. Use css_selector_ignorelist for more complex matching."),!1;b=u.map((f=>f.toLowerCase()))}return v.some((f=>{var x=f.safeText,C=f.ariaLabel;return b.some((A=>k0(x,A)||k0(C,A)))}))})(a,c.map((u=>{var v;return{safeText:Fo(u).toLowerCase(),ariaLabel:((v=u.getAttribute("aria-label"))==null?void 0:v.toLowerCase().trim())||""}})))&&!Uf(c,n)}var kp=s=>!s||ri(s,"html")||!Fn(s),V1=(s,t)=>{if(!le||kp(s))return{parentIsUsefulElement:!1,targetElementList:[]};for(var n=!1,a=[s],l=s;l.parentNode&&!ri(l,"body");)if(U1(l.parentNode))a.push(l.parentNode.host),l=l.parentNode.host;else{var d=W1(l);if(!d)break;if(t||Ep.indexOf(d.tagName.toLowerCase())>-1)n=!0;else try{var p=le.getComputedStyle(d);p&&p.getPropertyValue("cursor")==="pointer"&&(n=!0)}catch{}a.push(d),l=d}return{parentIsUsefulElement:n,targetElementList:a}};function Ff(s){for(var t=new Set,n=0,a=s;a.parentNode&&!ri(a,"body");a=a.parentNode){if(n++>=F1||t.has(a))return!1;t.add(a);var l=Vc(a);if(Ye(l,"ph-sensitive")||Ye(l,"ph-no-capture"))return!1}if(Ye(Vc(s),"ph-include"))return!0;var d=s.type||"";if(jt(d))switch(d.toLowerCase()){case"hidden":case"password":return!1}var p=s.name||s.id||"";return!jt(p)||!/^cc|cardnum|ccnum|creditcard|csc|cvc|cvv|exp|pass|pwd|routing|seccode|securitycode|securitynum|socialsec|socsec|ssn/i.test(p.replace(/[^a-zA-Z0-9]/g,""))}function Y1(s){return!!(ri(s,"input")&&!["button","checkbox","submit","reset"].includes(s.type)||ri(s,"select")||ri(s,"textarea")||s.getAttribute("contenteditable")==="true")}var R0=new RegExp("^(?:(4[0-9]{12}(?:[0-9]{3})?)|(5[1-5][0-9]{14})|(6(?:011|5[0-9]{2})[0-9]{12})|(3[47][0-9]{13})|(3(?:0[0-5]|[68][0-9])[0-9]{11})|((?:2131|1800|35[0-9]{3})[0-9]{11}))$"),M0=/(^|[^0-9A-Za-z_])([0-9][0-9 -]*[0-9])(?=$|[^0-9A-Za-z_])/g,X4=[16,15,14,13],J4=new RegExp("^(\\d{3}-?\\d{2}-?\\d{4})$"),D0=new RegExp("(^|[^0-9])((?!000|666)[0-9]{3}-?(?!00)[0-9]{2}-?(?!0000)[0-9]{4})(?=$|([^0-9]))","g"),j0=/[0-9A-Za-z_]/;function Z4(s){for(var t=0,n=!1,a=s.length-1;a>=0;a--){var l=s.charCodeAt(a)-48;n&&(l*=2)>9&&(l-=9),t+=l,n=!n}return t%10==0}function No(s,t){if(t===void 0&&(t=!0),Ze(s))return!1;if(jt(s)){s=ru(s);var n=t?R0.test((s||"").replace(/[- ]/g,"")):(function(l){var d;for(M0.lastIndex=0;d=M0.exec(l);){var p=d[2];if(p)for(var c=p.replace(/[- ]/g,""),u=0;c.length>u;u++)for(var v of X4){var b=u+v;if(c.length>=b){var f=c.slice(u,b);if(R0.test(f)&&Z4(f))return!0}}}return!1})(s);if(n)return!1;var a=t?J4.test(s):(function(l){var d;for(D0.lastIndex=0;d=D0.exec(l);){var p=d[1],c=d[3];if(!(p&&c&&j0.test(p)&&j0.test(c)))return!0}return!1})(s);if(a)return!1}return!0}function N0(s){var t=Fo(s);return No(t=(t+" "+K1(s)).trim())?t:""}function K1(s){var t="";return s&&s.childNodes&&s.childNodes.length&&Nt(s.childNodes,(function(n){var a;if(n&&((a=n.tagName)==null?void 0:a.toLowerCase())==="span")try{var l=Fo(n);t=(t+" "+l).trim(),n.childNodes&&n.childNodes.length&&(t=(t+" "+K1(n)).trim())}catch(d){Ee.error("[AutoCapture]",d)}})),t}function L0(s){return s.replace(/"|\\"/g,'\\"')}function Q4(s){var t=s.attr__class;if(t)return Xe(t)?t:Cp(t)}var fc=Wt("[Dead Clicks]"),e5=()=>!0,t5=s=>{var t,n=!((t=s.instance.persistence)==null||!t.get_property(yp)),a=s.instance.config.capture_dead_clicks;return Di(a)?a:!!Ut(a)||n};class O0{get lazyLoadedDeadClicksAutocapture(){return this.Xe}constructor(t,n,a){this.instance=t,this.isEnabled=n,this.onCapture=a,this.startIfEnabledOrStop()}onRemoteConfig(t){if(t.ok){var n=t.config;"captureDeadClicks"in n&&(this.instance.persistence&&this.instance.persistence.register({[yp]:n.captureDeadClicks}),this.startIfEnabledOrStop())}}startIfEnabledOrStop(){this.isEnabled(this)?this.tr((()=>{this.er()})):this.stop()}tr(t){var n,a;(n=ze.__PosthogExtensions__)!=null&&n.initDeadClicksAutocapture?t():(a=ze.__PosthogExtensions__)==null||a.loadExternalDependency==null||a.loadExternalDependency(this.instance,"dead-clicks-autocapture",(l=>{l?fc.error("failed to load script",l):t()}))}er(){var t;if(Ae){if(!this.Xe&&(t=ze.__PosthogExtensions__)!=null&&t.initDeadClicksAutocapture){var n=Ut(this.instance.config.capture_dead_clicks)?be({},this.instance.config.capture_dead_clicks):{};n.__onCapture=this.onCapture,this.onCapture&&(n.capture_dead_swipes=!1),this.Xe=ze.__PosthogExtensions__.initDeadClicksAutocapture(this.instance,n),this.Xe.start(Ae),fc.info("starting...")}}else fc.error("`document` not found. Cannot start.")}stop(){this.Xe&&(this.Xe.stop(),this.Xe=void 0,fc.info("stopping..."))}}var Ud=Wt("[SegmentIntegration]"),X1="posthog-js";function J1(s,t){var n=t===void 0?{}:t,a=n.organization,l=n.projectId,d=n.prefix,p=n.severityAllowList,c=p===void 0?["error"]:p,u=n.sendExceptionsToPostHog,v=u===void 0||u;return b=>{var f,x,C,A,E;if(c!=="*"&&!c.includes(b.level)||!s.__loaded)return b;b.tags||(b.tags={});var m=s.requestRouter.endpointFor("ui","/project/"+s.config.token+"/person/"+s.get_distinct_id());b.tags["PostHog Person URL"]=m,s.sessionRecordingStarted()&&(b.tags["PostHog Recording URL"]=s.get_session_replay_url({withTimestamp:!0}));var S,_=((f=b.exception)==null?void 0:f.values)||[],y=_.map((R=>be({},R,{stacktrace:R.stacktrace?be({},R.stacktrace,{type:"raw",frames:(R.stacktrace.frames||[]).map((M=>be({},M,{platform:"web:javascript"})))}):void 0}))),k={$exception_message:((x=_[0])==null?void 0:x.value)||b.message,$exception_type:(C=_[0])==null?void 0:C.type,$exception_level:b.level,$exception_list:y,$sentry_event_id:b.event_id,$sentry_exception:b.exception,$sentry_exception_message:((A=_[0])==null?void 0:A.value)||b.message,$sentry_exception_type:(E=_[0])==null?void 0:E.type,$sentry_tags:b.tags};return a&&l&&(k.$sentry_url=(d||"https://sentry.io/organizations/")+a+"/issues/?project="+l+"&query="+b.event_id),v&&((S=s.exceptions)==null||S.sendExceptionEvent(k)),b}}class s5{constructor(t,n,a,l,d,p){this.name=X1,this.setupOnce=function(c){c(J1(t,{organization:n,projectId:a,prefix:l,severityAllowList:d,sendExceptionsToPostHog:p==null||p}))}}}class B0{constructor(t){this.rr=(n,a,l)=>{l&&(l.noSessionId||l.activityTimeout||l.sessionPastMaximumLength||l.crossTabAdoption)&&(Ee.info("[PageViewManager] Session rotated, clearing pageview state",{sessionId:n,changeReason:l}),this.ir=void 0,this._instance.scrollManager.resetContext())},this._instance=t,this.nr()}nr(){var t;this.sr=(t=this._instance.sessionManager)==null?void 0:t.onSessionId(this.rr)}destroy(){var t;(t=this.sr)==null||t.call(this),this.sr=void 0}doPageView(t,n){var a,l=this.ar(t,n);return this.ir={pathname:(a=le==null?void 0:le.location.pathname)!==null&&a!==void 0?a:"",pageViewId:n,timestamp:t},this._instance.scrollManager.resetContext(),l}doPageLeave(t){var n;return this.ar(t,(n=this.ir)==null?void 0:n.pageViewId)}doEvent(){var t;return{$pageview_id:(t=this.ir)==null?void 0:t.pageViewId}}ar(t,n){var a=this.ir;if(!a)return{$pageview_id:n};var l={$pageview_id:n,$prev_pageview_id:a.pageViewId},d=this._instance.scrollManager.getContext();if(d&&!this._instance.config.disable_scroll_properties){var p=d.maxScrollHeight,c=d.lastScrollY,u=d.maxScrollY,v=d.maxContentHeight,b=d.lastContentY,f=d.maxContentY;if(!(Ce(p)||Ce(c)||Ce(u)||Ce(v)||Ce(b)||Ce(f))){p=Math.ceil(p),c=Math.ceil(c),u=Math.ceil(u),v=Math.ceil(v),b=Math.ceil(b),f=Math.ceil(f);var x=p>1?Ii(c/p,0,1,Ee):1,C=p>1?Ii(u/p,0,1,Ee):1,A=v>1?Ii(b/v,0,1,Ee):1,E=v>1?Ii(f/v,0,1,Ee):1;l=Ht(l,{$prev_pageview_last_scroll:c,$prev_pageview_last_scroll_percentage:x,$prev_pageview_max_scroll:u,$prev_pageview_max_scroll_percentage:C,$prev_pageview_last_content:b,$prev_pageview_last_content_percentage:A,$prev_pageview_max_content:f,$prev_pageview_max_content_percentage:E})}}return a.pathname&&(l.$prev_pageview_pathname=a.pathname),a.timestamp&&(l.$prev_pageview_duration=(t.getTime()-a.timestamp.getTime())/1e3),l}}var Fd=["flags","surveys"],i5={[k1]:{exposure:"hidden"},[Eo]:{exposure:"hidden"},__cmpns:{exposure:"hidden"},[ko]:{exposure:"hidden"},[Cf]:{exposure:"event"},[Ef]:{exposure:"hidden"},[kf]:{exposure:"event"},[Tf]:{exposure:"hidden"},[Af]:{exposure:"event"},[Rf]:{exposure:"event"},[yp]:{exposure:"event"},[bp]:{exposure:"hidden"},[Mf]:{exposure:"event"},[mr]:{exposure:"hidden"},$session_recording_enabled_server_side:{exposure:"hidden"},[la]:{exposure:"hidden"},[Sp]:{exposure:"event"},[T1]:{exposure:"event",shouldSkipFromEventProperties:s=>$s(s)},$session_past_minimum_duration:{exposure:"event"},$session_recording_url_trigger_activated_session:{exposure:"event"},$session_recording_event_trigger_activated_session:{exposure:"event"},$debug_first_full_snapshot_timestamp:{exposure:"event"},$sess_rec_flush_size:{exposure:"hidden"},[gr]:{exposure:"derived",storageGroup:"flags",shouldSkipFromEventProperties:(s,t)=>t(),transformToEventProperties(s){if(!Ut(s))return{};for(var t={},n=Object.keys(s),a=0;n.length>a;a++)t["$feature/"+n[a]]=s[n[a]];return t}},[xc]:{exposure:"event",storageGroup:"flags"},[To]:{exposure:"hidden"},[Df]:{exposure:"hidden",storageGroup:"flags"},[Cc]:{exposure:"event",storageGroup:"flags"},[jf]:{exposure:"event",storageGroup:"flags",volatile:!0},[$c]:{exposure:"hidden",storageGroup:"flags"},[ln]:{exposure:"event"},[ra]:{exposure:"hidden"},[pr]:{exposure:"hidden"},[vr]:{exposure:"hidden"},[Nf]:{exposure:"hidden",storageGroup:"surveys"},[Pc]:{exposure:"hidden",storageGroup:"surveys",volatile:!0},[Lf]:{exposure:"event"},[Ec]:{exposure:"hidden"},[Ao]:{exposure:"hidden"},$product_tours_activated:{exposure:"hidden"},$product_tours_activated_session:{exposure:"hidden"},$conversations_widget_session_id:{exposure:"event"},$conversations_ticket_id:{exposure:"event"},$conversations_widget_state:{exposure:"event"},$conversations_user_traits:{exposure:"event"},[jo]:{exposure:"hidden"},[Of]:{exposure:"hidden"},[Bf]:{exposure:"hidden"},[Uo]:{exposure:"hidden",storageGroup:"flags",volatile:!0},[yi]:{exposure:"hidden"},[Hf]:{exposure:"hidden"},[zf]:{exposure:"hidden"},[If]:{exposure:"hidden"},[$f]:{exposure:"hidden"},[Uc]:{exposure:"hidden"},[Fc]:{exposure:"hidden"},[A1]:{exposure:"event"},[R1]:{exposure:"event"},[M1]:{exposure:"event"},[D1]:{exposure:"event"},[N1]:{exposure:"event"},[L1]:{exposure:"event"},[O1]:{exposure:"event"},$sdk_debug_replay_event_trigger_status:{exposure:"event"},$sdk_debug_replay_linked_flag_trigger_status:{exposure:"event"},$sdk_debug_replay_matched_recording_trigger_groups:{exposure:"event"},$sdk_debug_replay_remote_trigger_matching_config:{exposure:"event"},$sdk_debug_replay_trigger_groups_count:{exposure:"event"},$sdk_debug_replay_url_trigger_status:{exposure:"event"},$session_recording_start_reason:{exposure:"event"}},n5=[["$posthog_sr_group_event_trigger_",{exposure:"hidden"}],["$posthog_sr_group_url_trigger_",{exposure:"hidden"}],["$posthog_sr_group_sampling_",{exposure:"hidden"}]],cr=s=>{var t=i5[s];if(t)return t;for(var n of n5){var a=n[1];if(s.indexOf(n[0])===0)return a}},ca=(s,t)=>{try{return JSON.stringify(s,((n,a)=>typeof a=="bigint"?a.toString():a),t)}catch{return Ky(s)}},Yc=s=>{var t=Ae==null?void 0:Ae.createElement("a");return Ce(t)?null:(t.href=s,t)},ya=function(s,t){for(var n,a=((s.split("#")[0]||"").split(/\?(.*)/)[1]||"").replace(/^\?+/g,"").split("&"),l=0;a.length>l;l++){var d=a[l].split("=");if(d[0]===t){n=d;break}}if(!Xe(n)||2>n.length)return"";var p=n[1];try{p=decodeURIComponent(p)}catch{Ee.error("Skipping decoding for malformed query param: "+p)}return p.replace(/\+/g," ")},qo=function(s,t,n){if(!s||!t||!t.length)return s;for(var a=s.split("#"),l=a[1],d=(a[0]||"").split("?"),p=d[1],c=d[0],u=(p||"").split("&"),v=[],b=0;u.length>b;b++){var f=u[b].split("=");Xe(f)&&(t.includes(f[0])?v.push(f[0]+"="+n):v.push(u[b]))}var x=c;return p!=null&&(x+="?"+v.join("&")),l!=null&&(x+="#"+l),x},Kc=function(s,t){var n=s.match(new RegExp(t+"=([^&]*)"));return n?n[1]:null},Z1=(s,t)=>s>=t&&Gy(),Q1=(s,t,n,a)=>{if(s===0){if(Gy()){var l=t+1;return l===n&&a(),l}return t}return 0},pc="https?://(.*)",ba=["gclid","gclsrc","dclid","gbraid","wbraid","fbclid","msclkid","twclid","li_fat_id","igshid","ttclid","rdt_cid","epik","qclid","sccid","irclid","_kx"],r5=["utm_source","utm_medium","utm_campaign","utm_content","utm_term","gad_source","mc_cid",...ba],Wo="<masked>",a5=["li_fat_id"];function eb(s,t,n){if(!Ae)return{};var a,l=t?[...ba,...n||[]]:[],d=tb(qo(Ae.URL,l,Wo),s),p=(a={},Nt(a5,(function(c){var u=H1(c);a[c]=u||null})),a);return Ht(p,d)}function tb(s,t){var n=r5.concat(t||[]),a={};return Nt(n,(function(l){var d=ya(s,l);a[l]=d||null})),a}function sb(s){var t=(function(d){return d?d.search(pc+"google.([^/?]*)")===0?"google":d.search(pc+"bing.com")===0?"bing":d.search(pc+"yahoo.com")===0?"yahoo":d.search(pc+"duckduckgo.com")===0?"duckduckgo":null:null})(s),n=t!="yahoo"?"q":"p",a={};if(!$s(t)){a.$search_engine=t;var l=Ae?ya(Ae.referrer,n):"";l.length&&(a.ph_keyword=l)}return a}function H0(){return navigator.language||navigator.userLanguage}var Xc="$direct";function ib(){return(Ae==null?void 0:Ae.referrer)||Xc}function nb(s,t,n){n===void 0&&(n=!1);var a=s?[...ba,...t||[]]:[],l=n?Un(ls==null?void 0:ls.href):ls==null?void 0:ls.href,d=l==null?void 0:l.substring(0,1e3);return{r:ib().substring(0,1e3),u:d?qo(d,a,Wo):void 0}}function rb(s,t){var n;t===void 0&&(t=!1);var a=s.r,l=s.u,d=t?Un(l):l,p={$referrer:a,$referring_domain:a==null?void 0:a==Xc?Xc:(n=Yc(a))==null?void 0:n.host};if(d){p.$current_url=d;var c=Yc(d);p.$host=c==null?void 0:c.host,p.$pathname=c==null?void 0:c.pathname;var u=tb(d);Ht(p,u)}if(a){var v=sb(a);Ht(p,v)}return p}function ab(){try{return Intl.DateTimeFormat().resolvedOptions().timeZone}catch{return}}function o5(){try{return new Date().getTimezoneOffset()}catch{return}}var l5={flags:Uo,surveys:Pc},c5=["cookie","localstorage","localstorage+cookie","sessionstorage","memory"],sa="main";class qd{constructor(t,n,a){if(a===void 0&&(a=!0),this.lr={},this.ur=!1,this.hr=!1,this.Te=t,this.dr=a,this.props={},this.cr=void 0,this.vr=(d=>{var p="";return d.token&&(p=d.token.replace(/\+/g,"PL").replace(/\//g,"SL").replace(/=/g,"EQ")),d.persistence_name?"ph_"+d.persistence_name:"ph_"+p+"_posthog"})(t),this.Je=this.pr(t),this.hr=this.gr(t),this.load(),t.debug&&Ee.info("Persistence loaded",t.persistence,be({},this.props)),this.update_config(t,t,n),this.save(),le){var l=()=>this.flush();Qt(le,"beforeunload",l,{capture:!1}),Qt(le,"pagehide",l,{capture:!1})}}mr(){var t,n=(t=this.Te)==null?void 0:t.persistence_save_debounce_ms;return Rs(n)&&n>0?n:0}isDisabled(){return!!this.yr}pr(t){c5.indexOf(t.persistence.toLowerCase())===-1&&(Ee.critical("Unknown persistence type "+t.persistence+"; falling back to localStorage+cookie"),t.persistence="localStorage+cookie");var n,a=(function(p,c){p===void 0&&(p=[]),c===void 0&&(c=!1);var u=[...P4,...p];return be({},Bt,{F(v){try{var b={};try{b=dn.F(v)||{}}catch{}var f,x=JSON.parse(Bt.q(v)||"{}");if(c){var C={};for(var A in b){var E=b[A];$s(E)||E===""||(C[A]=E)}f=Ht(x,C)}else f=Ht(b,x);return Bt.A(v,f),f}catch{}return null},A(v,b,f,x,C,A){var E=Bt.A(v,b,void 0,void 0,A);try{var m={};u.forEach((S=>{b[S]&&(m[S]=b[S])})),Object.keys(m).length&&dn.A(v,m,f,x,C,A)}catch(S){Bt.P(S)}return E},D(v,b){try{le==null||le.localStorage.removeItem(v),dn.D(v,b)}catch(f){Bt.P(f)}}})})(t.cookie_persisted_properties||[],t.__preview_cookie_wins_on_conflict||!1),l=!1,d=t.persistence.toLowerCase();return d==="localstorage"&&Bt.N()?(n=Bt,l=!0):d==="localstorage+cookie"&&a.N()?(n=a,l=!0):d==="sessionstorage"&&As.N()?n=As:d==="memory"?n=U4:d==="cookie"?n=dn:a.N()?(n=a,l=!0):n=dn,this.ur=l,n}br(t){return this.vr+"__"+t}gr(t){return this.ur&&!!t.split_storage}_r(t){var n=t??this.Te.feature_flag_cache_ttl_ms;if(!n||0>=n)return!1;var a=this.props[Uo];return!a||typeof a!="number"||Date.now()-a>n}properties(){var t={};return Nt(this.props,((n,a)=>{var l=cr(a);if((l==null?void 0:l.exposure)==="derived"){if(l.shouldSkipFromEventProperties!=null&&l.shouldSkipFromEventProperties(n,a===gr?()=>this._r():()=>!1))return;l.transformToEventProperties&&Ht(t,l.transformToEventProperties(n))}else if(!l||l.exposure==="event"){if(l!=null&&l.shouldSkipFromEventProperties!=null&&l.shouldSkipFromEventProperties(n,(()=>!1)))return;t[a]=n}})),t}load(){if(!this.yr){var t=this.Je.F(this.vr);t&&(this.props=Ht({},t)),this.hr&&this.wr()}}wr(){for(var t of Fd){var n=Bt.F(this.br(t));if(n&&!$n(n)){var a=this.kr(t);a.persisted=!0,this.Sr(t)||(a.fingerprint=this.Cr(n,t)),this.Mr(t,n)||Ht(this.props,n)}}}Sr(t){return Object.keys(this.props).some((n=>{var a;return((a=cr(n))==null?void 0:a.storageGroup)===t}))}Mr(t,n){var a=l5[t];if(!a)return!1;var l=n[a],d=this.props[a];return Rs(l)&&Rs(d)&&d>l}refreshKey(t){var n;if(!this.yr){var a=this.hr?(n=cr(t))==null?void 0:n.storageGroup:void 0,l=a?Bt.F(this.br(a)):this.Je.F(this.vr);if(l&&t in l)this.Ir(t,l[t]);else{if(a){var d=this.Je.F(this.vr);if(d&&t in d)return void this.Ir(t,d[t])}this.Tr(t)}}}save(){if(!this.yr){var t=this.mr();t>0?Ce(this.Er)&&(this.Er=setTimeout((()=>{this.Er=void 0,this.Rr()}),t)):this.Rr()}}flush(){Ce(this.Er)||(clearTimeout(this.Er),this.Er=void 0,this.Rr())}Rr(){this.yr||(this.hr?this.Pr():this.Or(this.Je,this.vr,this.props,sa))}Pr(){var t=this.Fr(),n=t.main,a=t.groups;for(var l of(this.Or(this.Je,this.vr,n,sa),Fd)){var d,p=a[l];(!$n(p)||(d=this.lr[l])!=null&&d.persisted)&&this.Or(Bt,this.br(l),p,l)}}Fr(){var t={},n={flags:{},surveys:{}};return Nt(this.props,((a,l)=>{var d,p=(d=cr(l))==null?void 0:d.storageGroup;p?n[p][l]=a:t[l]=a})),{main:t,groups:n}}Cr(t,n){if(n===sa)return JSON.stringify(t)+"|"+this.Ar+"|"+this.$r+"|"+this.Lr;var a={};return Nt(t,((l,d)=>{var p;a[d]=(p=cr(d))!=null&&p.volatile?"__volatile__":l})),JSON.stringify(a)}Or(t,n,a,l){var d=this.kr(l);if(l===sa||d.dirty||Ce(d.fingerprint)){var p;try{if((p=this.Cr(a,l))===d.fingerprint)return void(d.dirty=!1)}catch{p=void 0}t.A(n,a,this.Ar,this.$r,this.Lr,this.Te.debug)?(d.dirty=!1,l!==sa&&(d.persisted=!0),Ce(p)||(d.fingerprint=p)):this.Te.debug&&Ee.warn('failed to persist storage entry "'+n+'"; will retry on next save')}}remove(t){var n=(t===void 0?{}:t).keepGroupEntries,a=n!==void 0&&n;if(Ce(this.Er)||(clearTimeout(this.Er),this.Er=void 0),this.Je.D(this.vr,!1),this.Je.D(this.vr,!0),!a&&this.dr)for(var l of Fd)Bt.D(this.br(l));a?delete this.lr[sa]:this.lr={}}clear(){this.remove(),this.props={}}register_once(t,n,a){if(Ut(t)){Ce(n)&&(n="None"),this.Ar=Ce(a)?this.Dr:a;var l=!1;if(Nt(t,((d,p)=>{this.props.hasOwnProperty(p)&&this.props[p]!==n||(this.Ir(p,d),l=!0)})),l)return this.save(),!0}return!1}register(t,n){if(Ut(t)){this.Ar=Ce(n)?this.Dr:n;var a=!1;if(Nt(t,((l,d)=>{t.hasOwnProperty(d)&&this.props[d]!==l&&(this.Ir(d,l),a=!0)})),a)return this.save(),!0}return!1}unregister(t){t in this.props&&(this.Tr(t),this.save())}update_campaign_params(){var t=Ae==null?void 0:Ae.URL;if(t!==this.cr){var n=eb(this.Te.custom_campaign_params,this.Te.mask_personal_data_properties,this.Te.custom_personal_data_properties);$n(xp(n))||this.register(n),this.cr=t}}update_search_keyword(){var t;this.register((t=Ae==null?void 0:Ae.referrer)?sb(t):{})}update_referrer_info(){var t;this.register_once({$referrer:ib(),$referring_domain:Ae!=null&&Ae.referrer&&((t=Yc(Ae.referrer))==null?void 0:t.host)||Xc},void 0)}set_initial_person_info(){this.props[If]||this.props[$f]||this.register_once({[Uc]:nb(this.Te.mask_personal_data_properties,this.Te.custom_personal_data_properties,this.Te.disable_capture_url_hashes)},void 0)}get_initial_props(){var t={};Nt([$f,If],(l=>{var d=this.props[l];d&&Nt(d,(function(p,c){t["$initial_"+gf(c)]=p}))}));var n=this.props[Uc];if(n){var a=(function(l,d){d===void 0&&(d=!1);var p=rb(l,d),c={};return Nt(p,(function(u,v){c["$initial_"+gf(v)]=u})),c})(n,this.Te.disable_capture_url_hashes);Ht(t,a)}return t}safe_merge(t){return Nt(this.props,(function(n,a){a in t||(t[a]=n)})),t}update_config(t,n,a){this.Dr=this.Ar=t.cookie_expiration,this.set_disabled(t.disable_persistence||!!a),this.set_cross_subdomain(t.cross_subdomain_cookie),this.set_secure(t.secure_cookie);var l=t.persistence!==n.persistence||!((u,v)=>{if(u.length!==v.length)return!1;var b=[...u].sort(),f=[...v].sort();return b.every(((x,C)=>x===f[C]))})(t.cookie_persisted_properties||[],n.cookie_persisted_properties||[]),d=l?this.pr(t):this.Je,p=this.gr(t);if(l||p!==this.hr){var c=this.props;this.clear(),this.Je=d,this.hr=p,this.props=c,this.save()}}set_disabled(t){this.yr=t,this.yr?this.remove():this.save()}set_cross_subdomain(t){t!==this.$r&&(this.$r=t,this.remove({keepGroupEntries:!0}),this.save())}set_secure(t){t!==this.Lr&&(this.Lr=t,this.remove({keepGroupEntries:!0}),this.save())}set_event_timer(t,n){var a=this.props[ko]||{};a[t]=n,this.Ir(ko,a),this.save()}remove_event_timer(t){var n=this.props[ko]||{},a=n[t];return Ce(a)||(delete n[t],this.Ir(ko,n),this.save()),a}get_property(t){return this.props[t]}set_property(t,n){this.Ir(t,n),this.save()}Ir(t,n){var a;this.props[t]=n,(a=cr(t))!=null&&a.volatile||this.Nr(t)}Tr(t){delete this.props[t],this.Nr(t)}Nr(t){var n,a=(n=cr(t))==null?void 0:n.storageGroup;a&&(this.kr(a).dirty=!0)}kr(t){return this.lr[t]||(this.lr[t]={})}}function vc(s){var t=!0;return{dispose(){if(t){t=!1;var n=s();n&&ni(n.then)&&n.then(void 0,(()=>{}))}}}}var zs={GZipJS:"gzip-js",Base64:"base64"},go={Activation:"events",Cancellation:"cancelEvents"},Wd={Popover:"popover",API:"api",Widget:"widget"},fn={SHOWN:"survey shown",DISMISSED:"survey dismissed",SENT:"survey sent"},Gd={SURVEY_ID:"$survey_id",SURVEY_ITERATION:"$survey_iteration",SURVEY_LAST_SEEN_DATE:"$survey_last_seen_date"},qf={Popover:"popover",Inline:"inline"},u5={SHOWN:"product tour shown"},z0={TOUR_LAST_SEEN_DATE:"$product_tour_last_seen_date",TOUR_TYPE:"$product_tour_type"},I0=Wt("[RateLimiter]");class h5{constructor(t){this.serverLimits={},this.lastEventRateLimited=!1,this.checkForLimiting=n=>{var a=n.text;if(a&&a.length)try{(JSON.parse(a).quota_limited||[]).forEach((l=>{I0.info((l||"events")+" is quota limited."),this.serverLimits[l]=new Date().getTime()+6e4}))}catch(l){return void I0.warn('could not rate limit - continuing. Error: "'+(l==null?void 0:l.message)+'"',{text:a})}},this.instance=t,this.lastEventRateLimited=this.clientRateLimitContext(!0).isRateLimited}get captureEventsPerSecond(){var t;return((t=this.instance.config.rate_limiting)==null?void 0:t.events_per_second)||10}get captureEventsBurstLimit(){var t;return Math.max(((t=this.instance.config.rate_limiting)==null?void 0:t.events_burst_limit)||10*this.captureEventsPerSecond,this.captureEventsPerSecond)}clientRateLimitContext(t){var n,a,l;t===void 0&&(t=!1);var d=this.captureEventsBurstLimit,p=this.captureEventsPerSecond,c=new Date().getTime(),u=(n=(a=this.instance.persistence)==null?void 0:a.get_property(zf))!==null&&n!==void 0?n:{tokens:d,last:c};u.tokens+=(c-u.last)/1e3*p,u.last=c,u.tokens>d&&(u.tokens=d);var v=1>u.tokens;return v||t||(u.tokens=Math.max(0,u.tokens-1)),!v||this.lastEventRateLimited||t||this.instance.capture("$$client_ingestion_warning",{$$client_ingestion_warning_message:"posthog-js client rate limited. Config is set to "+p+" events per second and "+d+" events burst limit."},{skip_client_rate_limiting:!0}),this.lastEventRateLimited=v,(l=this.instance.persistence)==null||l.set_property(zf,u),{isRateLimited:v,remainingTokens:u.tokens}}isServerRateLimited(t){var n=this.serverLimits[t||"events"]||!1;return n!==!1&&new Date().getTime()<n}}var ur=Wt("[RemoteConfig]");class ob{constructor(t){this._instance=t}get remoteConfig(){var t;return(t=ze._POSTHOG_REMOTE_CONFIG)==null||(t=t[this._instance.config.token])==null?void 0:t.config}qr(t){var n,a;(n=ze.__PosthogExtensions__)!=null&&n.loadExternalDependency?(a=ze.__PosthogExtensions__)==null||a.loadExternalDependency==null||a.loadExternalDependency(this._instance,"remote-config",(()=>t(this.remoteConfig))):t()}jr(t){this._instance._send_request({method:"GET",url:this._instance.requestRouter.endpointFor("assets","/array/"+this._instance.config.token+"/config"),callback(n){t(n.json)}})}load(){try{if(this.remoteConfig)return ur.info("Using preloaded remote config",this.remoteConfig),this.Br(this.remoteConfig),void this.Hr();if(this._instance.Ur())return void ur.warn("Remote config is disabled. Falling back to local config.");this.qr((t=>{if(!t)return ur.info("No config found after loading remote JS config. Falling back to JSON."),void this.jr((n=>{this.Br(n),this.Hr()}));this.Br(t),this.Hr()}))}catch(t){ur.error("Error loading remote config",t),this.Br()}}stop(){this.zr&&(clearInterval(this.zr),this.zr=void 0)}refresh(){!this._instance.Ur()&&Ae&&Ae.visibilityState!=="hidden"&&this._instance.reloadFeatureFlags()}Hr(){var t;if(!this.zr){var n=(t=this._instance.config.remote_config_refresh_interval_ms)!==null&&t!==void 0?t:3e5;n!==0&&(this.zr=setInterval((()=>{this.refresh()}),n))}}Br(t){t||ur.error("Failed to fetch remote config from PostHog.");try{this._instance.Br(t?{ok:!0,config:t}:{ok:!1})}catch(a){ur.error("Error applying remote config",a)}if((t==null?void 0:t.hasFeatureFlags)!==!1&&!this._instance.config.advanced_disable_feature_flags_on_first_load)try{var n;(n=this._instance.featureFlags)==null||n.ensureFlagsLoaded()}catch(a){ur.error("Error loading feature flags",a)}}}var wi=Uint8Array,Ks=Uint16Array,Sa=Uint32Array,Tp=new wi([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0,0]),Ap=new wi([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,0,0]),$0=new wi([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),lb=function(s,t){for(var n=new Ks(31),a=0;31>a;++a)n[a]=t+=1<<s[a-1];var l=new Sa(n[30]);for(a=1;30>a;++a)for(var d=n[a];n[a+1]>d;++d)l[d]=d-n[a]<<5|a;return[n,l]},cb=lb(Tp,2),Wf=cb[1];cb[0][28]=258,Wf[258]=28;for(var P0=lb(Ap,0)[1],ub=new Ks(32768),qt=0;32768>qt;++qt){var ia=(43690&qt)>>>1|(21845&qt)<<1;ub[qt]=((65280&(ia=(61680&(ia=(52428&ia)>>>2|(13107&ia)<<2))>>>4|(3855&ia)<<4))>>>8|(255&ia)<<8)>>>1}var Lo=function(s,t,n){for(var a=s.length,l=0,d=new Ks(t);a>l;++l)++d[s[l]-1];var p,c=new Ks(t);for(l=0;t>l;++l)c[l]=c[l-1]+d[l-1]<<1;for(p=new Ks(a),l=0;a>l;++l)p[l]=ub[c[s[l]-1]++]>>>15-s[l];return p},Sr=new wi(288);for(qt=0;144>qt;++qt)Sr[qt]=8;for(qt=144;256>qt;++qt)Sr[qt]=9;for(qt=256;280>qt;++qt)Sr[qt]=7;for(qt=280;288>qt;++qt)Sr[qt]=8;var Jc=new wi(32);for(qt=0;32>qt;++qt)Jc[qt]=5;var d5=Lo(Sr,9),f5=Lo(Jc,5),hb=function(s){return(s/8>>0)+(7&s&&1)},db=function(s,t,n){(n==null||n>s.length)&&(n=s.length);var a=new(s instanceof Ks?Ks:s instanceof Sa?Sa:wi)(n-t);return a.set(s.subarray(t,n)),a},rn=function(s,t,n){var a=t/8>>0;s[a]|=n<<=7&t,s[a+1]|=n>>>8},mo=function(s,t,n){var a=t/8>>0;s[a]|=n<<=7&t,s[a+1]|=n>>>8,s[a+2]|=n>>>16},Vd=function(s,t){for(var n=[],a=0;s.length>a;++a)s[a]&&n.push({s:a,f:s[a]});var l=n.length,d=n.slice();if(!l)return[new wi(0),0];if(l==1){var p=new wi(n[0].s+1);return p[n[0].s]=1,[p,1]}n.sort((function(R,M){return R.f-M.f})),n.push({s:-1,f:25001});var c=n[0],u=n[1],v=0,b=1,f=2;for(n[0]={s:-1,f:c.f+u.f,l:c,r:u};b!=l-1;)c=n[n[f].f>n[v].f?v++:f++],u=n[v!=b&&n[f].f>n[v].f?v++:f++],n[b++]={s:-1,f:c.f+u.f,l:c,r:u};var x=d[0].s;for(a=1;l>a;++a)d[a].s>x&&(x=d[a].s);var C=new Ks(x+1),A=Gf(n[b-1],C,0);if(A>t){a=0;var E=0,m=A-t,S=1<<m;for(d.sort((function(R,M){return C[M.s]-C[R.s]||R.f-M.f}));l>a;++a){var _=d[a].s;if(t>=C[_])break;E+=S-(1<<A-C[_]),C[_]=t}for(E>>>=m;E>0;){var y=d[a].s;t>C[y]?E-=1<<t-C[y]++-1:++a}for(;a>=0&&E;--a){var k=d[a].s;C[k]==t&&(--C[k],++E)}A=t}return[new wi(C),A]},Gf=function(s,t,n){return s.s==-1?Math.max(Gf(s.l,t,n+1),Gf(s.r,t,n+1)):t[s.s]=n},U0=function(s){for(var t=s.length;t&&!s[--t];);for(var n=new Ks(++t),a=0,l=s[0],d=1,p=function(u){n[a++]=u},c=1;t>=c;++c)if(s[c]==l&&c!=t)++d;else{if(!l&&d>2){for(;d>138;d-=138)p(32754);d>2&&(p(d>10?d-11<<5|28690:d-3<<5|12305),d=0)}else if(d>3){for(p(l),--d;d>6;d-=6)p(8304);d>2&&(p(d-3<<5|8208),d=0)}for(;d--;)p(l);d=1,l=s[c]}return[n.subarray(0,a),t]},yo=function(s,t){for(var n=0,a=0;t.length>a;++a)n+=s[a]*t[a];return n},Vf=function(s,t,n){var a=n.length,l=hb(t+2);s[l]=255&a,s[l+1]=a>>>8,s[l+2]=255^s[l],s[l+3]=255^s[l+1];for(var d=0;a>d;++d)s[l+d+4]=n[d];return 8*(l+4+a)},F0=function(s,t,n,a,l,d,p,c,u,v,b){rn(t,b++,n),++l[256];for(var f=Vd(l,15),x=f[0],C=f[1],A=Vd(d,15),E=A[0],m=A[1],S=U0(x),_=S[0],y=S[1],k=U0(E),R=k[0],M=k[1],j=new Ks(19),T=0;_.length>T;++T)j[31&_[T]]++;for(T=0;R.length>T;++T)j[31&R[T]]++;for(var D=Vd(j,7),H=D[0],P=D[1],W=19;W>4&&!H[$0[W-1]];--W);var U,Y,J,q,G=v+5<<3,ee=yo(l,Sr)+yo(d,Jc)+p,O=yo(l,x)+yo(d,E)+p+14+3*W+yo(j,H)+(2*j[16]+3*j[17]+7*j[18]);if(ee>=G&&O>=G)return Vf(t,b,s.subarray(u,u+v));if(rn(t,b,1+(ee>O)),b+=2,ee>O){U=Lo(x,C),Y=x,J=Lo(E,m),q=E;var F=Lo(H,P);for(rn(t,b,y-257),rn(t,b+5,M-1),rn(t,b+10,W-4),b+=14,T=0;W>T;++T)rn(t,b+3*T,H[$0[T]]);b+=3*W;for(var L=[_,R],B=0;2>B;++B){var V=L[B];for(T=0;V.length>T;++T)rn(t,b,F[te=31&V[T]]),b+=H[te],te>15&&(rn(t,b,V[T]>>>5&127),b+=V[T]>>>12)}}else U=d5,Y=Sr,J=f5,q=Jc;for(T=0;c>T;++T)if(a[T]>255){var te;mo(t,b,U[257+(te=a[T]>>>18&31)]),b+=Y[te+257],te>7&&(rn(t,b,a[T]>>>23&31),b+=Tp[te]);var ce=31&a[T];mo(t,b,J[ce]),b+=q[ce],ce>3&&(mo(t,b,a[T]>>>5&8191),b+=Ap[ce])}else mo(t,b,U[a[T]]),b+=Y[a[T]];return mo(t,b,U[256]),b+Y[256]},p5=new Sa([65540,131080,131088,131104,262176,1048704,1048832,2114560,2117632]),v5=(function(){for(var s=new Sa(256),t=0;256>t;++t){for(var n=t,a=9;--a;)n=(1&n&&3988292384)^n>>>1;s[t]=n}return s})(),Yd=function(s,t,n){for(;n;++t)s[t]=n,n>>>=8};function _5(s,t){t===void 0&&(t={});var n=(function(){var f=4294967295;return{p(x){for(var C=f,A=0;x.length>A;++A)C=v5[255&C^x[A]]^C>>>8;f=C},d(){return 4294967295^f}}})(),a=s.length;n.p(s);var l,d,p,c,u,v=(c=10+((l=t).filename&&l.filename.length+1||0),u=8,(function(f,x,C,A,E,m){var S=f.length,_=new wi(A+S+5*(1+Math.floor(S/7e3))+E),y=_.subarray(A,_.length-E),k=0;if(!x||8>S)for(var R=0;S>=R;R+=65535){var M=R+65535;S>M?k=Vf(y,k,f.subarray(R,M)):(y[R]=!0,k=Vf(y,k,f.subarray(R,S)))}else{for(var j=p5[x-1],T=j>>>13,D=8191&j,H=(1<<C)-1,P=new Ks(32768),W=new Ks(H+1),U=Math.ceil(C/3),Y=2*U,J=function(rt){return(f[rt]^f[rt+1]<<U^f[rt+2]<<Y)&H},q=new Sa(25e3),G=new Ks(288),ee=new Ks(32),O=0,F=0,L=(R=0,0),B=0,V=0;S>R;++R){var te=J(R),ce=32767&R,de=W[te];if(P[ce]=de,W[te]=ce,R>=B){var K=S-R;if((O>7e3||L>24576)&&K>423){k=F0(f,y,0,q,G,ee,F,L,V,R-V,k),L=O=F=0,V=R;for(var I=0;286>I;++I)G[I]=0;for(I=0;30>I;++I)ee[I]=0}var ue=2,ie=0,we=D,fe=ce-de&32767;if(K>2&&te==J(R-fe))for(var $e=Math.min(T,K)-1,De=Math.min(32767,R),Ke=Math.min(258,K);De>=fe&&--we&&ce!=de;){if(f[R+ue]==f[R+ue-fe]){for(var Ie=0;Ke>Ie&&f[R+Ie]==f[R+Ie-fe];++Ie);if(Ie>ue){if(ue=Ie,ie=fe,Ie>$e)break;var Le=Math.min(fe,Ie-2),zt=0;for(I=0;Le>I;++I){var Ue=R-fe+I+32768&32767,We=Ue-P[Ue]+32768&32767;We>zt&&(zt=We,de=Ue)}}}fe+=(ce=de)-(de=P[ce])+32768&32767}if(ie){q[L++]=268435456|Wf[ue]<<18|P0[ie];var vt=31&Wf[ue],It=31&P0[ie];F+=Tp[vt]+Ap[It],++G[257+vt],++ee[It],B=R+ue,++O}else q[L++]=f[R],++G[f[R]]}}k=F0(f,y,!0,q,G,ee,F,L,V,R-V,k)}return db(_,0,A+hb(k)+E)})(d=s,(p=t).level==null?6:p.level,p.mem==null?Math.ceil(1.5*Math.max(8,Math.min(13,Math.log(d.length)))):12+p.mem,c,u)),b=v.length;return(function(f,x){var C=x.filename;if(f[0]=31,f[1]=139,f[2]=8,f[8]=2>x.level?4:x.level==9?2:0,f[9]=3,x.mtime!=0&&Yd(f,4,Math.floor(new Date(x.mtime||Date.now())/1e3)),C){f[3]=8;for(var A=0;C.length>=A;++A)f[A+10]=C.charCodeAt(A)}})(v,t),Yd(v,b-8,n.d()),Yd(v,b-4,a),v}var g5=!!pf||!!fp,fb="text/plain",Tc=!1,pb=(s,t)=>{var n=s.split("#"),a=n[1],l=n[0].split("?"),d=l[0],p=l[1];if(!p)return s;var c=p.split("&").filter((u=>u.split("=")[0]!==t)).join("&");return d+(c?"?"+c:"")+(a?"#"+a:"")},ou=function(s,t,n){var a;n===void 0&&(n=!0);var l=s.split("?"),d=l[0],p=l[1],c=be({},t),u=(a=p==null?void 0:p.split("&").map((b=>{var f,x=b.split("="),C=x[0],A=n&&(f=c[C])!==null&&f!==void 0?f:x[1];return delete c[C],C+"="+A})))!==null&&a!==void 0?a:[],v=(function(b,f){var x,C;f===void 0&&(f="&");var A=[];return Nt(b,(function(E,m){Ce(E)||Ce(m)||m==="undefined"||(x=encodeURIComponent((S=>S instanceof File)(E)?E.name:E.toString()),C=encodeURIComponent(m),A[A.length]=C+"="+x)})),A.join(f)})(c);return v&&u.push(v),u.length>0?d+"?"+u.join("&"):d},Kd=s=>{if(s.Vr)return s.Vr;var t=s.data,n=s.compression;if(t){if(n===zs.GZipJS){var a=_5((function(c,u){var v=c.length;if(typeof TextEncoder<"u")return new TextEncoder().encode(c);for(var b=new wi(c.length+(c.length>>>1)),f=0,x=function(m){b[f++]=m},C=0;v>C;++C){if(f+5>b.length){var A=new wi(f+8+(v-C<<1));A.set(b),b=A}var E=c.charCodeAt(C);128>E?x(E):2048>E?(x(192|E>>>6),x(128|63&E)):E>55295&&57344>E?(x(240|(E=65536+(1047552&E)|1023&c.charCodeAt(++C))>>>18),x(128|E>>>12&63),x(128|E>>>6&63),x(128|63&E)):(x(224|E>>>12),x(128|E>>>6&63),x(128|63&E))}return db(b,0,f)})(ca(t)),{mtime:0});return{contentType:fb,body:a.buffer.slice(a.byteOffset,a.byteOffset+a.byteLength),estimatedSize:a.byteLength}}if(n===zs.Base64){var l=(function(c){return c&&btoa(encodeURIComponent(c).replace(/%([0-9A-F]{2})/g,((u,v)=>String.fromCharCode(parseInt(v,16)))))})(ca(t)),d=(c=>"data="+encodeURIComponent(typeof c=="string"?c:ca(c)))(l);return{contentType:"application/x-www-form-urlencoded",body:d,estimatedSize:new Blob([d]).size}}var p=ca(t);return{contentType:"application/json",body:p,estimatedSize:new Blob([p]).size}}},vb=s=>{var t,n,a=()=>s.transport==="sendBeacon"?{url:ou(s.url,{compression:zs.Base64}),encodedBody:Kd(be({},s,{compression:zs.Base64,Vr:void 0}))}:{url:pb(s.url,"compression"),encodedBody:Kd(be({},s,{compression:void 0,Vr:void 0}))};try{t=Kd(s)}catch(l){if(u0(s.compression,ya(s.url,"compression")))return Ee.error("Failed to gzip request body, sending uncompressed payload",l),a();throw l}return t&&u0(s.compression,ya(s.url,"compression"))&&!((n=t.body)instanceof ArrayBuffer?vf(new Uint8Array(n)):ArrayBuffer.isView(n)&&vf(new Uint8Array(n.buffer,n.byteOffset,n.byteLength)))?(Tc=!0,a()):{url:s.url,encodedBody:t}},_b=s=>{try{return vb(s)}catch(t){return Ee.error(t),void(s.callback==null||s.callback({statusCode:0,error:t}))}},m5=(function(){var s=Ft((function*(t){var n=ca(t.data),a=yield(function(d,p,c){return _f.apply(this,arguments)})(n,bt.DEBUG,{rethrow:!0});if(!a)return t;var l=yield a.arrayBuffer();return be({},t,{Vr:{contentType:fb,body:l,estimatedSize:l.byteLength}})}));return function(t){return s.apply(this,arguments)}})(),y5=/Failed to fetch|NetworkError|Load failed/i,gb=s=>{var t=_b(s);if(t){var n=t.url,a=t.encodedBody,l=a??{},d=l.contentType,p=l.body,c=l.estimatedSize,u=new Headers;Nt(s.headers,(function(A,E){u.append(E,A)})),d&&u.append("Content-Type",d);var v=null,b=!1;if(n0){var f=new n0;v={signal:f.signal,timeout:setTimeout((()=>{var A,E;b=!0,f.abort((A=s.timeout,(E=new Error("PostHog request timed out"+(A?" after "+A+"ms":""))).name="AbortError",E))}),s.timeout)}}var x=A=>{b&&(A==null?void 0:A.name)==="AbortError"||(E=>(E==null?void 0:E.name)==="TypeError"&&y5.test((E==null?void 0:E.message)||""))(A)?Ee.warn(A):Ee.error(A),s.callback==null||s.callback({statusCode:0,error:A})};try{var C;fp(n,be({method:(s==null?void 0:s.method)||"GET",headers:u,keepalive:s.method==="POST"&&!s.Wr&&52428.8>(c||0),body:p,signal:(C=v)==null?void 0:C.signal},s.fetchOptions)).then((A=>A.text().then((E=>{var m={statusCode:A.status,text:E};if(A.status===200)try{m.json=JSON.parse(E)}catch(S){Ee.error(S)}s.callback==null||s.callback(m)})))).catch(x).finally((()=>v?clearTimeout(v.timeout):null))}catch(A){v&&clearTimeout(v.timeout),x(A)}}},Yf=s=>{try{var t,n=vb(s),a=n.url,l=n.encodedBody,d=l??{},p=d.body,c=d.estimatedSize;if(!p)return;var u=p instanceof Blob?p:new Blob([p],{type:d.contentType});if(Is.sendBeacon(a,u))return;var v=Xe(s.data)?s.data:(t=s.data)==null?void 0:t.batch;if(Xe(v)&&v.length>1&&(c??0)>16384){var b=Math.ceil(v.length/2),f=x=>Xe(s.data)?x:be({},s.data,{batch:x});return Yf(be({},s,{data:f(v.slice(0,b))})),void Yf(be({},s,{data:f(v.slice(b))}))}Ee.warn("Beacon of ~"+(c??0)+" bytes was rejected by the browser, falling back to fetch"),gb(be({},s,{Wr:!0}))}catch(x){Ee.warn("Beacon send failed",x)}},q0=(s,t,n,a)=>{var l=a==="query"?t==="POST"?"sent_at":"_":void 0;return ou(n===zs.GZipJS?pb(s,"compression"):s,be({},l?{[l]:Date.now().toString()}:{},n===zs.GZipJS?{}:{compression:n}))},Ac=[];fp&&Ac.push({transport:"fetch",method:gb}),pf&&Ac.push({transport:"XHR",method(s){var t=_b(s);if(t){var n=new pf,a=t.encodedBody;n.open(s.method||"GET",t.url,!0);var l=a??{},d=l.contentType,p=l.body;Nt(s.headers,(function(c,u){n.setRequestHeader(u,c)})),d&&n.setRequestHeader("Content-Type",d),s.timeout&&(n.timeout=s.timeout),n.onreadystatechange=()=>{if(n.readyState===4){var c={statusCode:n.status,text:n.responseText};if(n.status===200)try{c.json=JSON.parse(n.responseText)}catch{}s.callback==null||s.callback(c)}},n.send(p)}}}),Is!=null&&Is.sendBeacon&&Ac.push({transport:"sendBeacon",method:Yf});var Kf=3e3;class b5{constructor(t,n){this.Zr=!0,this.Gr=[],this.Qr=Ii((n==null?void 0:n.flush_interval_ms)||Kf,250,5e3,Ee.createLogger("flush interval"),Kf),this.Jr=t}enqueue(t){this.Gr.push(t),this.Kr||this.Yr()}unload(){this.Xr();var t=this.Gr.length>0?this.ti():{},n=Object.values(t);[...n.filter((a=>a.url.indexOf("/e")===0)),...n.filter((a=>a.url.indexOf("/e")!==0))].map((a=>{this.ei(be({},a,{transport:"sendBeacon"}))}))}enable(){this.Zr=!1,this.Yr()}Yr(){var t=this;this.Zr||(this.Kr=setTimeout((()=>{if(this.Xr(),this.Gr.length>0){var n=this.ti(),a=function(){var d=n[l],p=new Date().getTime();d.data&&Xe(d.data)&&Nt(d.data,(c=>{c.offset=Math.abs(c.timestamp-p),delete c.timestamp})),t.ei(d)};for(var l in n)a()}}),this.Qr))}ei(t){try{this.Jr(t)}catch(n){Ee.error(n)}}Xr(){clearTimeout(this.Kr),this.Kr=void 0}ti(){var t={};return Nt(this.Gr,(n=>{var a,l=n,d=(l?l.batchKey:null)||l.url;Ce(t[d])&&(t[d]=be({},l,{data:[]})),(a=t[d].data)==null||a.push(l.data)})),this.Gr=[],t}}var S5=["retriesPerformedSoFar"];class w5{constructor(t){this.ri=!1,this.ii=3e3,this.Gr=[],this._instance=t,this.Gr=[],this.ni=!0,!Ce(le)&&"onLine"in le.navigator&&(this.ni=le.navigator.onLine,this.si=()=>{this.ni=!0,this.oi()},this.ai=()=>{this.ni=!1},Qt(le,"online",this.si),Qt(le,"offline",this.ai))}get length(){return this.Gr.length}retriableRequest(t){var n=t.retriesPerformedSoFar,a=Vy(t,S5);on(n)&&(a.url=ou(a.url,{retry_count:n})),this._instance._send_request(be({},a,{callback:l=>{if(l.statusCode!==200&&(400>l.statusCode||l.statusCode>=500)){if((l.statusCode===0?3:10)>(n??0))return void this.Ot(be({retriesPerformedSoFar:n},a));l.statusCode===0&&Ee.warn("Request failed before receiving an HTTP response; this can happen due to network issues, CORS, browser blocking, or ad blockers. Stopped retrying after "+(n??0)+" retries.")}a.callback==null||a.callback(l)}}))}Ot(t){var n=t.retriesPerformedSoFar||0;t.retriesPerformedSoFar=n+1;var a=(function(p){var c=3e3*Math.pow(2,p),u=c/2,v=Math.min(18e5,c),b=Math.random()-.5;return Math.ceil(v+b*(v-u))})(n),l=Date.now()+a;this.Gr.push({retryAt:l,requestOptions:t});var d="Enqueued failed request for retry in "+a;navigator.onLine||(d+=" (Browser is offline)"),Ee.warn(d),this.ri||(this.ri=!0,this.li())}li(){if(this.ui&&clearTimeout(this.ui),this.Gr.length===0)return this.ri=!1,void(this.ui=void 0);this.ui=setTimeout((()=>{this.ni&&this.Gr.length>0&&this.oi(),this.li()}),this.ii)}oi(){var t=Date.now(),n=[],a=this.Gr.filter((d=>t>d.retryAt||(n.push(d),!1)));if(this.Gr=n,a.length>0)for(var l of a)this.retriableRequest(l.requestOptions)}unload(){for(var t of(this.ui&&(clearTimeout(this.ui),this.ui=void 0),this.ri=!1,Ce(le)||(this.si&&(le.removeEventListener("online",this.si),this.si=void 0),this.ai&&(le.removeEventListener("offline",this.ai),this.ai=void 0)),this.Gr)){var n=t.requestOptions;try{this._instance._send_request(be({},n,{transport:"sendBeacon"}))}catch(a){Ee.error(a)}}this.Gr=[]}}class x5{constructor(t){this.hi=()=>{var n,a,l,d;this.di||(this.di={});var p=this.scrollElement(),c=this.scrollY(),u=p?Math.max(0,p.scrollHeight-p.clientHeight):0,v=c+((p==null?void 0:p.clientHeight)||0),b=(p==null?void 0:p.scrollHeight)||0;this.di.lastScrollY=Math.ceil(c),this.di.maxScrollY=Math.max(c,(n=this.di.maxScrollY)!==null&&n!==void 0?n:0),this.di.maxScrollHeight=Math.max(u,(a=this.di.maxScrollHeight)!==null&&a!==void 0?a:0),this.di.lastContentY=v,this.di.maxContentY=Math.max(v,(l=this.di.maxContentY)!==null&&l!==void 0?l:0),this.di.maxContentHeight=Math.max(b,(d=this.di.maxContentHeight)!==null&&d!==void 0?d:0)},this._instance=t}get ci(){return this._instance.config.scroll_root_selector}getContext(){return this.di}resetContext(){var t=this.di;return setTimeout(this.hi,0),t}startMeasuringScrollPosition(){Qt(le,"scroll",this.hi,{capture:!0}),Qt(le,"scrollend",this.hi,{capture:!0}),Qt(le,"resize",this.hi)}scrollElement(){if(!this.ci)return le==null?void 0:le.document.documentElement;var t=Xe(this.ci)?this.ci:[this.ci];for(var n of t){var a=le==null?void 0:le.document.querySelector(n);if(a)return a}}vi(t){var n=t==="y"?"scrollTop":"scrollLeft";if(this.ci){var a=this.scrollElement();return a&&a[n]||0}return le?t==="y"?le.scrollY||le.pageYOffset||le.document.documentElement.scrollTop||0:le.scrollX||le.pageXOffset||le.document.documentElement.scrollLeft||0:0}scrollY(){return this.vi("y")}scrollX(){return this.vi("x")}}var C5=s=>nb(s==null?void 0:s.config.mask_personal_data_properties,s==null?void 0:s.config.custom_personal_data_properties,s==null?void 0:s.config.disable_capture_url_hashes);class W0{constructor(t,n,a,l){this.fi=d=>{var p=this.pi();if(!p||p.sessionId!==d){var c={sessionId:d,props:this.gi(this._instance)};this.mi.register({[Hf]:c})}},this._instance=t,this.yi=n,this.mi=a,this.gi=l||C5,this.yi.onSessionId(this.fi)}pi(){return this.mi.props[Hf]}getSetOnceProps(){var t,n=(t=this.pi())==null?void 0:t.props;return n?"r"in n?rb(n,this._instance.config.disable_capture_url_hashes):{$referring_domain:n.referringDomain,$pathname:n.initialPathName,utm_source:n.utm_source,utm_campaign:n.utm_campaign,utm_medium:n.utm_medium,utm_content:n.utm_content,utm_term:n.utm_term}:{}}getSessionProps(){var t={};return Nt(xp(this.getSetOnceProps()),((n,a)=>{a==="$current_url"&&(a="url"),t["$session_entry_"+gf(a)]=n})),t}}class Rp{on(t,n){return this.bi[t]||(this.bi[t]=[]),this.bi[t].push(n),()=>{this.bi[t]=this.bi[t].filter((a=>a!==n))}}emit(t,n){for(var a of this.bi[t]||[])a(n);for(var l of this.bi["*"]||[])l(t,n)}constructor(){this.bi={}}}var bo=Wt("[SessionId]");class G0{on(t,n){return this.wi.on(t,n)}constructor(t,n,a){var l;if(this.xi=null,this.ki=[],this.Si=void 0,this.Ci=!1,this.wi=new Rp,this.Mi=(v,b)=>!(!on(v)||!on(b))&&Math.abs(v-b)>this.sessionTimeoutMs,!t.persistence)throw new Error("SessionIdManager requires a PostHogPersistence instance");if(t.config.cookieless_mode===hn)throw new Error('SessionIdManager cannot be used with cookieless_mode="always"');this.Te=t.config,this.mi=t.persistence,this.Ii=void 0,this.Ti=void 0,this._sessionStartTimestamp=null,this._sessionActivityTimestamp=null,this.Ei=n||un,this.Ri=a||un;var d=this.Te.persistence_name||this.Te.token;if(this._sessionTimeoutMs=1e3*Ii(this.Te.session_idle_timeout_seconds||1800,60,36e3,bo.createLogger("session_idle_timeout_seconds"),1800),t.register({$configured_session_timeout_ms:this._sessionTimeoutMs}),this.Pi(),this.Oi="ph_"+d+"_window_id",this.Fi="ph_"+d+"_primary_window_exists",this.Ai()){var p=As.F(this.Oi),c=As.F(this.Fi);p&&!c?this.Ii=p:As.D(this.Oi),As.A(this.Fi,!0)}if((l=this.Te.bootstrap)!=null&&l.sessionID)try{var u=(v=>{var b=this.Te.bootstrap.sessionID.replace(/-/g,"");if(b.length!==32)throw new Error("Not a valid UUID");if(b[12]!=="7")throw new Error("Not a UUIDv7");return parseInt(b.substring(0,12),16)})();this.$i(this.Te.bootstrap.sessionID,new Date().getTime(),u)}catch(v){bo.error("Invalid sessionID in bootstrap",v)}this.Li()}get sessionTimeoutMs(){return this._sessionTimeoutMs}onSessionId(t){return Ce(this.ki)&&(this.ki=[]),this.ki.push(t),this.Ti&&t(this.Ti,this.Ii),()=>{this.ki=this.ki.filter((n=>n!==t))}}Ai(){return this.Te.persistence!=="memory"&&!this.mi.yr&&As.N()}Di(t){t!==this.Ii&&(this.Ii=t,this.Ai()&&As.A(this.Oi,t))}Ni(){return this.Ii?this.Ii:this.Ai()?As.F(this.Oi):null}qi(t){var n=this.xi;return!$s(n)&&!$s(t)&&5e3>Math.abs(t-n)}$i(t,n,a){var l=n!==this._sessionActivityTimestamp,d=!(t!==this.Ti||a!==this._sessionStartTimestamp);this._sessionStartTimestamp=a,this._sessionActivityTimestamp=n,this.Ti=t,d&&!l||d&&this.qi(n)||(this.xi=n,this.mi.register({[la]:[n,t,a]}))}ji(){var t,n=(t=this.Te)==null?void 0:t.persistence_save_debounce_ms;return on(n)&&n>0}Bi(){this.ji()?this.mi.refreshKey(la):(this.mi.flush(),this.mi.load())}Hi(){var t;if(!$s(this._sessionActivityTimestamp)&&this._sessionActivityTimestamp!==this.xi){this.Bi();var n=this.Ui();n[1]===this.Ti&&n[2]===this._sessionStartTimestamp&&(this.xi=this._sessionActivityTimestamp,this.mi.register({[la]:[this._sessionActivityTimestamp,(t=this.Ti)!==null&&t!==void 0?t:null,this._sessionStartTimestamp]}),this.mi.flush())}}zi(){var t=this.Ui()[0],n=on(t)?t:0,a=on(this._sessionActivityTimestamp)?this._sessionActivityTimestamp:0;return Math.max(n,a)}Vi(t){return this.Bi(),this.Mi(t,this.zi())}Ui(){var t=this.mi.props[la];return Xe(t)&&t.length===2&&t.push(t[0]),t||[0,null,0]}resetSessionId(){this.xi=null,clearTimeout(this.Wi),this.Wi=void 0,this.$i(null,null,null)}destroy(){this.Ci=!0,this.Hi(),clearTimeout(this.Wi),this.Wi=void 0,this.Si&&le&&(le.removeEventListener(Wc,this.Si,{capture:!1}),this.Si=void 0),this.ki=[]}Li(){this.Si=()=>{this.Hi(),this.Ai()&&As.D(this.Fi)},Qt(le,Wc,this.Si,{capture:!1})}checkAndGetSessionAndWindowId(t,n){if(t===void 0&&(t=!1),n===void 0&&(n=null),this.Te.cookieless_mode===hn)throw new Error('checkAndGetSessionAndWindowId should not be called with cookieless_mode="always"');var a=n||new Date().getTime(),l=this.Ui(),d=l[1],p=l[2],c=this.zi(),u=this.Ni(),v=on(p)&&Math.abs(a-p)>864e5,b=!1,f=!1,x=!d,C=d,A=!x&&!t&&this.Mi(a,c);if(A){(A=this.Vi(a))||bo.info("cross-tab refresh kept the session alive",{sessionId:d});var E=this.Ui();d=E[1],p=E[2]}x||A||v?(d=this.Ei(),u=this.Ri(),bo.info("new session ID generated",{sessionId:d,windowId:u,changeReason:{noSessionId:x,activityTimeout:A,sessionPastMaximumLength:v}}),p=a,b=!0):(u||(u=this.Ri(),b=!0),(f=d!==C)&&(bo.info("adopted cross-tab session id",{sessionId:d,windowId:u}),b=!0));var m=on(c)&&t&&!v?c:a,S=on(p)?p:new Date().getTime();this.Di(u),this.$i(d,m,S),t||this.Pi();var _={noSessionId:x,activityTimeout:A,sessionPastMaximumLength:v,crossTabAdoption:f};return b&&this.ki.forEach((y=>y(d,u,_))),{sessionId:d,windowId:u,sessionStartTimestamp:S,changeReason:b?_:void 0,lastActivityTimestamp:c}}Pi(){this.Ci||(clearTimeout(this.Wi),this.Wi=setTimeout((()=>{if(!this.Ci)if(this.Vi(new Date().getTime())){var t=this.Ti;this.resetSessionId(),this.wi.emit("forcedIdleReset",{idleSessionId:t})}else this.Pi()}),1.1*this.sessionTimeoutMs))}}var mb=function(s,t){if(!s)return!1;var n=s.userAgent;if(n&&d0(n,t))return!0;try{var a=s==null?void 0:s.userAgentData;if(a!=null&&a.brands&&a.brands.some((l=>d0(l==null?void 0:l.brand,t))))return!0}catch{}return!!s.webdriver};function yb(){return(yb=Ft((function*(){var s=Is==null?void 0:Is.userAgentData;if(s!=null&&s.getHighEntropyValues)try{var t=yield s.getHighEntropyValues(["model"]),n=t==null?void 0:t.model;return jt(n)&&n.length>0?n:void 0}catch(a){return void Ee.info("Unable to resolve $device_model from userAgentData.getHighEntropyValues",a)}}))).apply(this,arguments)}var Zc=function(s,t){if(!(function(n){try{new RegExp(n)}catch{return!1}return!0})(t))return!1;try{return new RegExp(t).test(s)}catch{return!1}};function Xd(s,t,n){return ca({distinct_id:s,userPropertiesToSet:t,userPropertiesToSetOnce:n})}var bb={exact:(s,t)=>t.some((n=>s.some((a=>n===a)))),is_not:(s,t)=>t.every((n=>s.every((a=>n!==a)))),regex:(s,t)=>t.some((n=>s.some((a=>Zc(n,a))))),not_regex:(s,t)=>t.every((n=>s.every((a=>!Zc(n,a))))),icontains:(s,t)=>t.map(_c).some((n=>s.map(_c).some((a=>n.includes(a))))),not_icontains:(s,t)=>t.map(_c).every((n=>s.map(_c).every((a=>!n.includes(a))))),gt:(s,t)=>t.some((n=>{var a=parseFloat(n);return!isNaN(a)&&s.some((l=>a>parseFloat(l)))})),lt:(s,t)=>t.some((n=>{var a=parseFloat(n);return!isNaN(a)&&s.some((l=>a<parseFloat(l)))}))},_c=s=>s.toLowerCase();function Sb(s,t){return!s||Object.entries(s).every((n=>{var a=n[1],l=t==null?void 0:t[n[0]];if(Ce(l)||$s(l))return!1;var d=[String(l)],p=bb[a.operator];return!!p&&p(a.values,d)}))}var Xf="custom",V0="i.posthog.com",E5=/^\/static\//;class k5{constructor(t){this.Zi={},this.instance=t}get apiHost(){var t=this.instance.config.api_host.trim().replace(/\/$/,"");return t==="https://app.posthog.com"?"https://us.i.posthog.com":t}get flagsApiHost(){var t=this.instance.config.flags_api_host;return t?t.trim().replace(/\/$/,""):this.apiHost}get uiHost(){var t,n=(t=this.instance.config.ui_host)==null?void 0:t.replace(/\/$/,"");return n||(n=this.apiHost.replace("."+V0,".posthog.com")),n==="https://app.posthog.com"?"https://us.posthog.com":n}get region(){return this.Zi[this.apiHost]||(this.Zi[this.apiHost]=/https:\/\/(app|us|us-assets)(\.i)?\.posthog\.com/i.test(this.apiHost)?"us":/https:\/\/(eu|eu-assets)(\.i)?\.posthog\.com/i.test(this.apiHost)?"eu":Xf),this.Zi[this.apiHost]}Gi(t){if(E5.test(t)){var n=this.instance.config.asset_host;if(typeof n=="string")return n.trim().replace(/\/$/,"")||void 0}}endpointFor(t,n){if(n===void 0&&(n=""),n&&(n=n[0]==="/"?n:"/"+n),t==="ui")return this.uiHost+n;if(t==="flags")return this.flagsApiHost+n;if(t==="assets"){var a=this.Gi(n);if(a)return""+a+n}if(this.region===Xf)return this.apiHost+n;var l=V0+n;switch(t){case"assets":return"https://"+this.region+"-assets."+l;case"api":return"https://"+this.region+"."+l}}}function wb(s){var t;return!((t=s.conditions)==null||(t=t.events)==null||(t=t.values)==null||!t.length)}var Et=Wt("[Surveys]"),xb="seenSurvey_",Cb=s=>{try{var t=(n=>((a,l)=>""+xb+(function(d){return d.current_iteration&&d.current_iteration>0?d.id+"_"+d.current_iteration:d.id})(l))(0,n))(s);if(localStorage.getItem(t))return;localStorage.setItem(t,"true")}catch(n){Et.error("Failed to persist survey seen state",n)}},T5=[Wd.Popover,Wd.Widget,Wd.API],A5={ignoreConditions:!1,ignoreDelay:!1,displayType:qf.Popover},R5=Wt("[PostHog ExternalIntegrations]"),M5={intercom:"intercom-integration",crispChat:"crisp-chat-integration"};class D5{constructor(t){this._instance=t}tr(t,n){var a;(a=ze.__PosthogExtensions__)==null||a.loadExternalDependency==null||a.loadExternalDependency(this._instance,t,(l=>{if(l)return R5.error("failed to load script",l);n()}))}startIfEnabledOrStop(){var t=this,n=function(){var d,p,c,u=a[0],v=a[1];!v||(d=ze.__PosthogExtensions__)!=null&&(d=d.integrations)!=null&&d[u]||t.tr(M5[u],(()=>{var b;(b=ze.__PosthogExtensions__)==null||(b=b.integrations)==null||(b=b[u])==null||b.start(t._instance)})),!v&&(p=ze.__PosthogExtensions__)!=null&&(p=p.integrations)!=null&&p[u]&&((c=ze.__PosthogExtensions__)==null||(c=c.integrations)==null||(c=c[u])==null||c.stop())};for(var a of Object.entries((l=this._instance.config.integrations)!==null&&l!==void 0?l:{})){var l;n()}}}class j5{constructor(t,n){this.it=t,this.Qi=n,this.Ji=new Map,this.Ki=!1}add(t){var n=this;return Ft((function*(){if(n.Ki)throw new Error("Cannot add an extension to a disposed ExtensionRuntime");if(n.Ji.has(t.name))throw new Error('Browser extension "'+t.name+'" is already registered');n.Ji.set(t.name,t);try{var a=t.setup(n.Qi);a&&(yield a)}catch(d){var l=n.Ji.get(t.name)===t;l&&n.Ji.delete(t.name),n.it.error('Failed to set up browser extension "'+t.name+'"',d),l&&n.Yi(t)}}))()}dispose(){if(!this.Ki){this.Ki=!0;var t=Array.from(this.Ji.values()).reverse();for(var n of(this.Ji.clear(),t))this.Yi(n)}}Yi(t){try{var n=t.dispose==null?void 0:t.dispose();n&&ni(n.then)&&n.then(void 0,(a=>{this.it.error('Failed to dispose browser extension "'+t.name+'"',a)}))}catch(a){this.it.error('Failed to dispose browser extension "'+t.name+'"',a)}}}class N5{constructor(t){this._instance=t}get(t){var n;return(n=this._instance.persistence)==null?void 0:n.get_property(t)}set(t,n){var a;(a=this._instance.persistence)==null||a.set_property(t,n)}remove(t){var n;(n=this._instance.persistence)==null||n.unregister(t)}}var Y0="extensionsRemoteConfig";class L5{constructor(t){this.Ki=!1,this.instance=t,this.it=Ee.createLogger("[BrowserExtensions]"),this.Xi=t.tn,this.kv=new N5(t),this.onEvent=n=>vc(this.instance.on("eventCaptured",(a=>{try{n({event:a.event,properties:a.properties})}catch(l){this.it.error("Browser extension event listener failed",l)}}))),this.onRemoteConfig=n=>{if(this.Ki)return vc((()=>{}));var a=d=>{try{n(d)}catch(p){this.it.error("Browser extension remote config listener failed",p)}},l=this.instance.en.on(Y0,a);return this.Xi&&a(this.Xi),vc(l)},this.rn=new j5(this.it,this)}get logger(){return this.it}get distinctId(){return this.instance.get_distinct_id()}get anonymousId(){var t;return(t=this.instance.get_property(Po))!==null&&t!==void 0?t:this.distinctId}get groups(){return this.instance.getGroups()}get session(){try{var t,n,a,l,d=(t=this.instance.sessionManager)==null?void 0:t.checkAndGetSessionAndWindowId(!0);return{sessionId:(n=d==null?void 0:d.sessionId)!==null&&n!==void 0?n:"",windowId:(a=d==null?void 0:d.windowId)!==null&&a!==void 0?a:"",sessionStartTimestamp:(l=d==null?void 0:d.sessionStartTimestamp)!==null&&l!==void 0?l:0}}catch{return{sessionId:"",windowId:"",sessionStartTimestamp:0}}}get projectToken(){return this.instance.config.token}add(t){return this.rn.add(t)}capture(t,n,a){var l=this;return Ft((function*(){a?l.instance.capture(t,n,{timestamp:a.timestamp,uuid:a.uuid,$set:a.set,$set_once:a.setOnce}):l.instance.capture(t,n)}))()}registerDynamicEventProperties(t){return vc(this.instance.nn(t))}handleRemoteConfig(t){this.Ki||(this.Xi=t,this.instance.en.emit(Y0,t))}sendRequest(t,n){var a=this;return Ft((function*(){var l;n===void 0&&(n={});var d=a.instance.requestRouter.endpointFor((l=n.target)!==null&&l!==void 0?l:"api",t),p={method:n.method,url:n.query?ou(d,n.query):d,data:n.body,headers:n.headers,timeout:n.timeoutMs,fireCallbackOnDrop:!0,transport:n.transport};return n.transport==="sendBeacon"?(a.instance._send_request(p),{statusCode:202}):new Promise((c=>{p.callback=c,a.instance._send_request(p)}))}))()}dispose(){this.Ki||(this.Ki=!0,this.rn.dispose())}}var Oo={},Jd=0,Qc=()=>{},K0='Consent opt in/out is not valid with cookieless_mode="always" and will be ignored',So="Surveys module not available",X0="sanitize_properties is deprecated. Use before_send instead",Eb="Invalid value for property_denylist config: ",O5=["token","distinct_id",j1],oa="posthog",kb=!g5&&(Ys==null?void 0:Ys.indexOf("MSIE"))===-1&&(Ys==null?void 0:Ys.indexOf("Mozilla"))===-1,Zd=s=>{var t;return be({api_host:"https://us.i.posthog.com",flags_api_host:null,ui_host:null,asset_host:null,token:"",autocapture:!0,cross_subdomain_cookie:B4(Ae==null?void 0:Ae.location),persistence:"localStorage+cookie",persistence_name:"",cookie_persisted_properties:[],loaded:Qc,save_campaign_params:!0,custom_campaign_params:[],custom_blocked_useragents:[],save_referrer:!0,capture_pageleave:"if_capture_pageview",defaults:s??"unset",__preview_deferred_init_extensions:!1,__preview_external_dependency_versioned_paths:!1,__preview_cookie_wins_on_conflict:!1,debug:ls&&jt(ls==null?void 0:ls.search)&&ls.search.indexOf("__posthog_debug=true")!==-1||!1,cookie_expiration:365,upgrade:!1,disable_session_recording:!1,disable_persistence:!1,disable_web_experiments:!0,disable_surveys:!1,disable_surveys_automatic_display:!1,disable_conversations:!1,disable_product_tours:!1,disableDeviceModel:!1,disable_external_dependency_loading:!1,strict_script_versioning:!1,enable_recording_console_log:void 0,secure_cookie:(le==null||(t=le.location)==null?void 0:t.protocol)==="https:",ip:!1,opt_out_capturing_by_default:!1,opt_out_persistence_by_default:!1,opt_out_useragent_filter:!1,opt_out_capturing_persistence_type:"localStorage",consent_persistence_name:null,opt_out_capturing_cookie_prefix:null,opt_in_site_apps:!1,property_denylist:[],respect_dnt:!1,sanitize_properties:null,request_headers:{},request_batching:!0,properties_string_max_length:65535,mask_all_element_attributes:!1,mask_all_text:!1,mask_personal_data_properties:!1,custom_personal_data_properties:[],advanced_disable_flags:!1,advanced_disable_decide:!1,advanced_disable_feature_flags:!1,advanced_disable_feature_flags_on_first_load:!1,advanced_only_evaluate_survey_feature_flags:!1,advanced_feature_flags_dedup_per_session:!1,advanced_enable_surveys:!1,advanced_disable_toolbar_metrics:!1,feature_flag_request_timeout_ms:3e3,surveys_request_timeout_ms:1e4,on_request_error(n){Ee.error("Bad HTTP status: "+n.statusCode+" "+n.text)},get_device_id:n=>n,capture_performance:void 0,name:"posthog",bootstrap:{},disable_compression:!1,session_idle_timeout_seconds:1800,person_profiles:Pf,before_send:void 0,get_current_url:void 0,request_queue_config:{flush_interval_ms:Kf},error_tracking:{},_onCapture:Qc},(n=>({rageclick:n&&n>="2026-05-30"?{content_ignorelist:Y4,ignore_text_selection:!0}:!n||"2025-11-30">n||{content_ignorelist:!0},capture_pageview:!n||"2025-05-24">n||"history_change",session_recording:n&&n>="2026-06-25"?{strictMinimumDuration:!0,canvasCapture:{resolutionScale:.6},streamNetworkBody:!0}:n&&n>="2026-05-30"?{strictMinimumDuration:!0,canvasCapture:{resolutionScale:.6}}:n&&n>="2025-11-30"?{strictMinimumDuration:!0}:{},external_scripts_inject_target:n&&n>="2026-01-30"?"head":"body",internal_or_test_user_hostname:n&&n>="2026-01-30"?/^(localhost|127\.0\.0\.1)$/:void 0,persistence_save_debounce_ms:n&&n>="2026-05-30"?250:0,split_storage:!(!n||"2026-05-30">n),detect_google_search_app:!(!n||"2026-05-30">n),disable_capture_url_hashes:!(!n||"2026-06-25">n)}))(s))},B5=[["process_person","person_profiles"],["xhr_headers","request_headers"],["cookie_name","persistence_name"],["disable_cookie","disable_persistence"],["__preview_disable_beacon","disable_beacon"],["store_google","save_campaign_params"],["verbose","debug"]],J0=s=>{var t={};for(var n of B5){var a=n[0],l=n[1];Ce(s[a])||(t[l]=s[a])}var d=Ht({},t,s),p=s.__preview_external_dependency_versioned_paths;return Ce(p)||(Ce(s.strict_script_versioning)&&(d.strict_script_versioning=!!p),jt(p)&&Ce(s.asset_host)&&(d.asset_host=p)),Xe(s.property_blacklist)&&(Ce(s.property_denylist)?d.property_denylist=s.property_blacklist:Xe(s.property_denylist)?d.property_denylist=[...s.property_blacklist,...s.property_denylist]:Ee.error(Eb+s.property_denylist)),d};class H5{constructor(){this.__forceAllowLocalhost=!1}get sn(){return this.__forceAllowLocalhost}set sn(t){Ee.error("WebPerformanceObserver is deprecated and has no impact on network capture. Use `_forceAllowLocalhostNetworkCapture` on `posthog.sessionRecording`"),this.__forceAllowLocalhost=t}}class bi{an(t,n){if(t){var a=this.Ji.indexOf(t);a!==-1&&this.Ji.splice(a,1)}return this.Ji.push(n),n.initialize==null||n.initialize(),n}ln(){return this.config.cookieless_mode===hn||this.config.cookieless_mode===_r&&this.consent.isRejected()}get decideEndpointWasHit(){var t,n;return(t=(n=this.featureFlags)==null?void 0:n.hasLoadedFlags)!==null&&t!==void 0&&t}get flagsEndpointWasHit(){var t,n;return(t=(n=this.featureFlags)==null?void 0:n.hasLoadedFlags)!==null&&t!==void 0&&t}constructor(){var t;this.webPerformance=new H5,this.un=!1,this.version=bt.LIB_VERSION,this.en=new Rp,this.Ji=[],this.hn=[],this._calculate_event_properties=this.calculateEventProperties.bind(this),this.config=Zd(),this.SentryIntegration=s5,this.sentryIntegration=a=>(function(l,d){var p=J1(l,d);return{name:X1,processEvent:c=>p(c)}})(this,a),this.__request_queue=[],this.__loaded=!1,this.analyticsDefaultEndpoint="/e/",this.dn=!1,this.cn=null,this.vn=null,this.fn=null,this.scrollManager=new x5(this),this.pageViewManager=new B0(this),this.rateLimiter=new h5(this),this.requestRouter=new k5(this),this.consent=new F4(this),this.externalIntegrations=new D5(this);var n=(t=bi.__defaultExtensionClasses)!==null&&t!==void 0?t:{};this.featureFlags=n.featureFlags&&new n.featureFlags(this),this.toolbar=n.toolbar&&new n.toolbar(this),this.surveys=n.surveys&&new n.surveys(this),this.conversations=n.conversations&&new n.conversations(this),this.logs=n.logs&&new n.logs(this),this.metrics=n.metrics&&new n.metrics(this),this.experiments=n.experiments&&new n.experiments(this),this.exceptions=n.exceptions&&new n.exceptions(this),this.people={set:(a,l,d)=>{var p=jt(a)?{[a]:l}:a;this.setPersonProperties(p),d==null||d({})},set_once:(a,l,d)=>{var p=jt(a)?{[a]:l}:a;this.setPersonProperties(void 0,p),d==null||d({})}},this.on("eventCaptured",(a=>Ee.info('send "'+(a==null?void 0:a.event)+'"',a)))}init(t,n,a){if(a&&a!==oa){var l,d=(l=Oo[a])!==null&&l!==void 0?l:new bi;return d._init(t,n,a),Oo[a]=d,Oo[oa][a]=d,d}return this._init(t,n,a)}_init(t,n,a){var l,d;n===void 0&&(n={});var p=jt(t)?t.trim():"";if(!p)return Ee.critical("PostHog was initialized without a token. This likely indicates a misconfiguration. Please check the first argument passed to posthog.init()"),this;if(this.__loaded)return console.warn("[PostHog.js]","You have already initialized PostHog! Re-initializing is a no-op"),this;this.__loaded=!0,this.config=Zd(n.defaults),n.debug=this.pn(n.debug),this.gn=n,this.mn=[],n.person_profiles?this.vn=n.person_profiles:n.process_person&&(this.vn=n.process_person);var c=Zd(n.defaults),u=J0(n),v=Ht({},c,u,{name:a,token:p});Ut(c.rageclick)&&Ut(u.rageclick)&&(v.rageclick=Ht({},c.rageclick,u.rageclick)),Ut(c.session_recording)&&Ut(u.session_recording)&&(v.session_recording=Ht({},c.session_recording,u.session_recording)),this.set_config(v),this.config.on_xhr_error&&Ee.error("on_xhr_error is deprecated. Use on_request_error instead"),this.compression=n.disable_compression?void 0:zs.GZipJS;var b=this.yn();this.persistence=new qd(this.config,b),this.sessionPersistence=this.config.persistence==="sessionStorage"||this.config.persistence==="memory"?this.persistence:new qd(be({},this.config,{persistence:"sessionStorage"}),b,!1);var f=be({},this.persistence.props),x=be({},this.sessionPersistence.props);this.register({$initialization_time:new Date().toISOString()}),this.bn=new b5((k=>this._n(k)),this.config.request_queue_config),this.wn=new w5(this),this.__request_queue=[];var C=this.ln();if(C||(this.sessionManager=new G0(this),this.sessionPropsManager=new W0(this,this.sessionManager,this.persistence)),this.config.__preview_deferred_init_extensions?(Ee.info("Deferring extension initialization to improve startup performance"),setTimeout((()=>{this.xn(C)}),0)):(Ee.info("Initializing extensions synchronously"),this.xn(C)),bt.DEBUG=bt.DEBUG||this.config.debug,bt.DEBUG&&Ee.info("Starting in debug mode",{this:this,config:n,thisC:be({},this.config),p:f,s:x}),!this.config.identity_distinct_id||(l=n.bootstrap)!=null&&l.distinctID||(n.bootstrap=be({},n.bootstrap,{distinctID:this.config.identity_distinct_id,isIdentifiedID:!0})),((d=n.bootstrap)==null?void 0:d.distinctID)!==void 0){var A=n.bootstrap.distinctID,E=this.get_distinct_id(),m=this.persistence.get_property(yi);if(n.bootstrap.isIdentifiedID&&E!=null&&E!==A&&m===ta)this.identify(A);else if(n.bootstrap.isIdentifiedID&&E!=null&&E!==A&&m===or)Ee.warn("Bootstrap distinctID differs from an already-identified user. The existing identity is preserved. Call reset() before reinitializing if you intend to switch users.");else{var S=this.config.get_device_id(un()),_=n.bootstrap.isIdentifiedID?S:A;this.persistence.set_property(yi,n.bootstrap.isIdentifiedID?or:ta),this.register({distinct_id:A,$device_id:_})}}if(C)this.register_once({distinct_id:uc,$device_id:null},"");else if(!this.get_distinct_id()){var y=this.config.get_device_id(un());this.register_once({distinct_id:y,$device_id:y},""),this.persistence.set_property(yi,ta)}return Qt(le,"onpagehide"in self?"pagehide":"unload",this._handle_unload.bind(this),{passive:!1}),n.segment?(function(k,R){var M=k.config.segment;if(!M)return R();(function(j,T){var D=j.config.segment;if(!D)return T();var H=W=>{var U=()=>W.anonymousId()||un();j.config.get_device_id=U,W.id()&&(j.register({distinct_id:W.id(),$device_id:U()}),j.persistence.set_property(yi,or)),T()},P=D.user();"then"in P&&ni(P.then)?P.then(H):H(P)})(k,(()=>{M.register((j=>{typeof Promise<"u"&&Promise.resolve||Ud.warn("This browser does not have Promise support, and can not use the segment integration");var T=(D,H)=>{if(!H)return D;D.event.userId||D.event.anonymousId===j.get_distinct_id()||(Ud.info("No userId set, resetting PostHog"),j.reset()),D.event.userId&&D.event.userId!==j.get_distinct_id()&&(Ud.info("UserId set, identifying with PostHog"),j.identify(D.event.userId));var P=j.calculateEventProperties(H,D.event.properties);return D.event.properties=Object.assign({},P,D.event.properties),D};return{name:"PostHog JS",type:"enrichment",version:"1.0.0",isLoaded:()=>!0,load:()=>Promise.resolve(),track:D=>T(D,D.event.event),page:D=>T(D,aa),identify:D=>T(D,Id),screen:D=>T(D,"$screen")}})(k)).then((()=>{R()}))}))})(this,(()=>this.kn())):this.kn(),ni(this.config._onCapture)&&this.config._onCapture!==Qc&&(Ee.warn("onCapture is deprecated. Please use `before_send` instead"),this.on("eventCaptured",(k=>this.config._onCapture(k.event,k)))),this.config.ip&&Ee.warn('The `ip` config option has NO EFFECT AT ALL and has been deprecated. Use a custom transformation or "Discard IP data" project setting instead. See https://posthog.com/tutorials/web-redact-properties#hiding-customer-ip-address for more information.'),this.config.disableDeviceModel||(function(){return yb.apply(this,arguments)})().then((k=>{k&&this.register({[Hd]:k})})).catch(Qc),this}xn(t){var n,a,l,d,p,c,u,v,b=performance.now(),f=be({},bi.__defaultExtensionClasses,this.config.__extensionClasses),x=[];f.featureFlags&&this.Ji.push(this.featureFlags=(n=this.featureFlags)!==null&&n!==void 0?n:new f.featureFlags(this)),f.exceptions&&this.Ji.push(this.exceptions=(a=this.exceptions)!==null&&a!==void 0?a:new f.exceptions(this)),f.historyAutocapture&&this.Ji.push(this.historyAutocapture=new f.historyAutocapture(this)),f.tracingHeaders&&this.Ji.push(this.tracingHeaders=new f.tracingHeaders(this)),f.siteApps&&this.Ji.push(this.siteApps=new f.siteApps(this)),f.sessionRecording&&!t&&this.Ji.push(this.sessionRecording=new f.sessionRecording(this)),this.config.disable_scroll_properties||x.push((()=>{this.scrollManager.startMeasuringScrollPosition()})),f.autocapture&&this.Ji.push(this.autocapture=new f.autocapture(this)),f.surveys&&this.Ji.push(this.surveys=(l=this.surveys)!==null&&l!==void 0?l:new f.surveys(this)),f.logs&&this.Ji.push(this.logs=(d=this.logs)!==null&&d!==void 0?d:new f.logs(this)),f.metrics&&this.Ji.push(this.metrics=(p=this.metrics)!==null&&p!==void 0?p:new f.metrics(this)),f.conversations&&this.Ji.push(this.conversations=(c=this.conversations)!==null&&c!==void 0?c:new f.conversations(this)),f.productTours&&this.Ji.push(this.productTours=new f.productTours(this)),f.heatmaps&&this.Ji.push(this.heatmaps=new f.heatmaps(this)),f.webVitalsAutocapture&&this.Ji.push(this.webVitalsAutocapture=new f.webVitalsAutocapture(this)),f.exceptionObserver&&this.Ji.push(this.exceptionObserver=new f.exceptionObserver(this)),f.deadClicksAutocapture&&this.Ji.push(this.deadClicksAutocapture=new f.deadClicksAutocapture(this,t5)),f.toolbar&&this.Ji.push(this.toolbar=(u=this.toolbar)!==null&&u!==void 0?u:new f.toolbar(this)),f.experiments&&this.Ji.push(this.experiments=(v=this.experiments)!==null&&v!==void 0?v:new f.experiments(this)),this.Ji.forEach((C=>{C.initialize&&x.push((()=>{C.initialize==null||C.initialize()}))})),x.push((()=>{if(this.Sn){var C=this.Sn;this.Sn=void 0,this.Ji.forEach((A=>A.onRemoteConfig==null?void 0:A.onRemoteConfig(C)))}})),this.Cn(x,b)}Cn(t,n){for(;t.length>0;){if(this.config.__preview_deferred_init_extensions&&performance.now()-n>=30&&t.length>0)return void setTimeout((()=>{this.Cn(t,n)}),0);var a=t.shift();if(a)try{a()}catch(d){Ee.error("Error initializing extension:",d)}}var l=Math.round(performance.now()-n);this.register_for_session({[N1]:this.config.__preview_deferred_init_extensions?"deferred":"synchronous",[L1]:l}),this.config.__preview_deferred_init_extensions&&Ee.info("PostHog extensions initialized ("+l+"ms)")}Br(t){var n;if(!Ae||!Ae.body)return Ee.info("document not ready yet, trying again in 500 milliseconds..."),void setTimeout((()=>{this.Br(t)}),500);if(this.config.__preview_deferred_init_extensions&&(this.Sn=t),this.tn=t,this.compression=void 0,t.ok){var a,l=t.config;l.supportedCompression&&!this.config.disable_compression&&(this.compression=Ye(l.supportedCompression,zs.GZipJS)?zs.GZipJS:Ye(l.supportedCompression,zs.Base64)?zs.Base64:void 0),(a=l.analytics)!=null&&a.endpoint&&(this.analyticsDefaultEndpoint=l.analytics.endpoint)}this.set_config({person_profiles:this.vn?this.vn:Pf}),(n=this.Mn)==null||n.handleRemoteConfig(t),this.Ji.forEach((d=>d.onRemoteConfig==null?void 0:d.onRemoteConfig(t)))}kn(){try{this.config.loaded(this)}catch(a){Ee.critical("`loaded` function failed",a)}if(this.In(),this.config.internal_or_test_user_hostname&&ls!=null&&ls.hostname){var t=ls.hostname,n=this.config.internal_or_test_user_hostname;(typeof n=="string"?t===n:n.test(t))&&this.setInternalOrTestUser()}this.config.capture_pageview&&setTimeout((()=>{(this.consent.isOptedIn()||this.ln())&&this.Tn()}),1),this.En=new ob(this),this.En.load()}In(){var t;this.is_capturing()&&this.config.request_batching&&((t=this.bn)==null||t.enable())}_dom_loaded(){this.is_capturing()&&hc(this.__request_queue,(t=>this._n(t))),this.__request_queue=[],this.In()}_handle_unload(){var t,n,a,l,d;(t=this.surveys)==null||t.handlePageUnload==null||t.handlePageUnload(),(n=this.metrics)==null||n.flush("sendBeacon"),this.config.request_batching?(this.Rn()&&this.capture(zd),(a=this.logs)==null||a.flushLogs("sendBeacon"),(l=this.bn)==null||l.unload(),(d=this.wn)==null||d.unload()):this.Rn()&&this.capture(zd,null,{transport:"sendBeacon"})}_send_request(t){this.__loaded?kb?this.__request_queue.push(t):this.rateLimiter.isServerRateLimited(t.batchKey)?t.fireCallbackOnDrop&&(t.callback==null||t.callback({statusCode:429})):(t.transport=t.transport||this.config.api_transport,t.headers=be({},this.config.request_headers,t.headers),t.compression=t.compression==="best-available"?this.compression:t.compression,(Ce(this.config.disable_beacon)?this.config.__preview_disable_beacon:this.config.disable_beacon)&&(t.disableTransport=["sendBeacon"]),t.fetchOptions=t.fetchOptions||this.config.fetch_options,(n=>{var a,l,d,p=be({},n);p.timeout=p.timeout||6e4;var c,u,v,b,f,x=(a=p.transport)!==null&&a!==void 0?a:"fetch";x==="sendBeacon"&&Ce(p.compression)&&p.data&&(p.compression=zs.Base64),p.method==="POST"&&p.data&&(p.timestampMode==="capture-body"?p.data={api_key:(u=(f=(b=Xe(c=p.data)?c:[c])[0])==null||(v=f.properties)==null?void 0:v.token)!==null&&u!==void 0?u:f==null?void 0:f.token,batch:b,sent_at:new Date().toISOString()}:p.timestampMode==="body"&&(p.data=(function(E,m){return m===void 0&&(m=new Date().toISOString()),Xe(E)?E.map((S=>be({},S,{sent_at:m}))):be({},E,{sent_at:m})})(p.data))),p.url=q0(p.url,p.method,p.compression,p.timestampMode);var C=Ac.filter((E=>!p.disableTransport||!E.transport||!p.disableTransport.includes(E.transport))),A=(l=(d=(function(E,m){for(var S=0;E.length>S;S++)if(E[S].transport===x)return E[S]})(C))==null?void 0:d.method)!==null&&l!==void 0?l:C[0].method;if(!A)throw new Error("No available transport method");x!=="sendBeacon"&&p.data&&p.compression===zs.GZipJS&&z3&&typeof Promise<"u"&&!Tc?m5(p).then((E=>{A(E)})).catch((E=>{if(h0(E))return Tc=!0,void A(be({},p,{compression:void 0,url:q0(n.url,n.method,void 0,n.timestampMode)}));(m=>{if(!m||typeof m!="object")return!1;var S="name"in m?String(m.name):"";return h0(m)||S===Yy})(E)&&(Tc=!0),A(p)})):A(p)})(be({},t,{callback:n=>{var a,l;this.rateLimiter.checkForLimiting(n),400>n.statusCode||(a=(l=this.config).on_request_error)==null||a.call(l,n),t.callback==null||t.callback(n)}}))):t.fireCallbackOnDrop&&(t.callback==null||t.callback({statusCode:0}))}_n(t){this.wn?this.wn.retriableRequest(t):this._send_request(t)}_execute_array(t){Jd++;try{var n,a=[],l=[],d=[];hc(t,(c=>{if(c)if(Xe(n=c[0]))d.push(c);else if(ni(c))try{c.call(this)}catch(u){Ee.error("Error executing queued PostHog call",c,u)}else Xe(c)&&n==="alias"?a.push(c):Xe(c)&&n.indexOf("capture")!==-1&&ni(this[n])?d.push(c):l.push(c)}));var p=function(c,u){hc(c,(function(v){try{if(Xe(v[0])){var b=u;Nt(v,(function(f){b=b[f[0]].apply(b,f.slice(1))}))}else u[v[0]].apply(u,v.slice(1))}catch(f){Ee.error("Error executing queued PostHog call",v,f)}}))};p(a,this),p(l,this),p(d,this)}finally{Jd--}}push(t){if(Jd>0&&Xe(t)&&jt(t[0])){var n=bi.prototype[t[0]];ni(n)&&n.apply(this,t.slice(1))}else this._execute_array([t])}capture(t,n,a){var l,d,p,c,u,v,b;if(this.__loaded&&this.persistence&&this.sessionPersistence&&this.bn){if(this.is_capturing())if(!Ce(t)&&jt(t)){var f=!this.config.opt_out_useragent_filter&&this._is_bot();if(!f||this.config.__preview_capture_bot_pageviews){var x=a!=null&&a.skip_client_rate_limiting?void 0:this.rateLimiter.clientRateLimitContext();if(x==null||!x.isRateLimited){if(this.hn.length>0){var C={};for(var A of this.hn.slice())try{Ht(C,A())}catch(F){Ee.error("Failed to produce browser extension event properties",F)}n=be({},C,n??{})}var E;(l=n)!=null&&l.$current_url&&!jt((d=n)==null?void 0:d.$current_url)&&(Ee.error("Invalid `$current_url` property provided to `posthog.capture`. Input must be a string. Ignoring provided value."),(E=n)==null||delete E.$current_url),t!=="$exception"||a!=null&&a.Pn||Ee.warn("Using `posthog.capture('$exception')` is unreliable because it does not attach required metadata. Use `posthog.captureException(error)` instead, which attaches required metadata automatically."),this.sessionPersistence.update_search_keyword(),this.config.save_campaign_params&&this.sessionPersistence.update_campaign_params(),this.config.save_referrer&&this.sessionPersistence.update_referrer_info(),(this.config.save_campaign_params||this.config.save_referrer)&&this.persistence.set_initial_person_info();var m=new Date,S=(a==null?void 0:a.timestamp)||m,_=_0(a==null?void 0:a.uuid,un),y={uuid:_,event:t,properties:this.calculateEventProperties(t,n||{},S,_)};t===aa&&this.config.__preview_capture_bot_pageviews&&f&&(y.event="$bot_pageview",y.properties.$browser_type="bot"),x&&(y.properties.$lib_rate_limit_remaining_tokens=x.remainingTokens);var k=t==="$feature_flag_called"&&y.properties.$feature_flag_has_experiment===!1&&this.get_property($c)===!0;a!=null&&a.$set&&!k&&(y.$set=a==null?void 0:a.$set);var R=a==null?void 0:a.$unset;R&&(y.$unset=R);var M,j,T,D=k?void 0:this.On(a==null?void 0:a.$set_once,t!==S0,t===Id);if(D&&(y.$set_once=D),a!=null&&a._noTruncate||(c=this.config.properties_string_max_length,u=y,v=F=>jt(F)?F.slice(0,c):F,b=new Set,y=(function F(L,B){if(L!==Object(L))return v?v(L):L;if(!b.has(L)){var V;if(b.add(L),Xe(L))V=[],hc(L,(ce=>{V.push(F(ce))}));else{var te={};Nt(L,((ce,de)=>{b.has(ce)||(te[de]=F(ce))})),V=te}return V}})(u)),y.timestamp=S,Ce(a==null?void 0:a.timestamp)||(y.properties.$event_time_override_provided=!0,y.properties.$event_time_override_system_time=m),k&&(y.properties=(function(F,L){L===void 0&&(L=[]);var B={},V=te=>{F[te]!==void 0&&(B[te]=F[te])};return I3.forEach(V),L.forEach(V),B})(y.properties,O5)),t===fn.DISMISSED||t===fn.SENT){var H,P,W=(H=n)==null?void 0:H[Gd.SURVEY_ID],U=(P=n)==null?void 0:P[Gd.SURVEY_ITERATION];Cb({id:W,current_iteration:U}),y.$set=be({},y.$set,{[(M={id:W,current_iteration:U},j=t===fn.SENT?"responded":"dismissed",T="$survey_"+j+"/"+M.id,M.current_iteration&&M.current_iteration>0&&(T="$survey_"+j+"/"+M.id+"/"+M.current_iteration),T)]:!0})}else t===fn.SHOWN&&(y.$set=be({},y.$set,{[Gd.SURVEY_LAST_SEEN_DATE]:new Date().toISOString()}));if(t===u5.SHOWN){var Y,J=(Y=n)==null?void 0:Y[z0.TOUR_TYPE];J&&(y.$set=be({},y.$set,{[z0.TOUR_LAST_SEEN_DATE+"/"+J]:new Date().toISOString()}))}var q=be({},y.properties.$set,y.$set);if($n(q)||this.setPersonPropertiesForFlags(q),!Ze(this.config.before_send)){var G=this.Rt(y);if(!G)return;(y=G).uuid=_0(y.uuid,un)}this.en.emit("eventCaptured",y);var ee=(p=a==null?void 0:a._url)!==null&&p!==void 0?p:this.requestRouter.endpointFor("api",this.analyticsDefaultEndpoint),O={method:"POST",url:ee,data:y,compression:"best-available",timestampMode:(a==null?void 0:a._batchKey)==="recordings"||/\/s\/(?:\?|$)/.test(ee)?"body":"capture-body",batchKey:a==null?void 0:a._batchKey,transport:a==null?void 0:a.transport};return!this.config.request_batching||a&&(a==null||!a._batchKey)||a!=null&&a.send_instantly?this._n(O):this.bn.enqueue(O),y}Ee.critical("This capture call is ignored due to client rate limiting.")}}else Ee.error("No event name provided to posthog.capture")}else Ee.uninitializedWarning("posthog.capture")}_addCaptureHook(t){return this.on("eventCaptured",(n=>t(n.event,n)))}Fn(){var t;return(t=this.Mn)!==null&&t!==void 0?t:this.Mn=new L5(this)}nn(t){this.hn.push(t);var n=!0;return()=>{if(n){n=!1;var a=this.hn.indexOf(t);a!==-1&&this.hn.splice(a,1)}}}calculateEventProperties(t,n,a,l,d){if(a=a||new Date,!this.persistence||!this.sessionPersistence)return n;var p=d?void 0:this.persistence.remove_event_timer(t),c=be({},n);if(c.token=this.config.token,c.$config_defaults=this.config.defaults,this.ln()&&(c[j1]=!0),t==="$snapshot"){var u=be({},this.persistence.properties(),this.sessionPersistence.properties());return c.distinct_id=u.distinct_id,(!jt(c.distinct_id)&&!Rs(c.distinct_id)||mf(c.distinct_id))&&Ee.error("Invalid distinct_id for replay event. This indicates a bug in your implementation"),c}var v,b=(function(y,k,R,M){var j,T,D,H;if(M===void 0&&(M=!1),!Ys)return{};var P,W=y?[...ba,...k||[]]:[],U=(function($e){for(var De=0;p0.length>De;De++){var Ke=p0[De],Ie=Ke[1],Le=Ke[0].exec($e),zt=Le&&(ni(Ie)?Ie(Le,$e):Ie);if(zt)return zt}return["",""]})(Ys),Y=U[0],J=U[1],q=(P=typeof navigator<"u"?navigator:void 0)!=null&&P.brave?{brave:!0}:{},G={};Ce(R)||(G.detectGoogleSearchApp=R);var ee={},O=(j=navigator)==null||(j=j.userAgentData)==null?void 0:j.platform,F=(T=navigator)==null?void 0:T.maxTouchPoints,L=le==null||(D=le.screen)==null?void 0:D.width,B=le==null||(H=le.screen)==null?void 0:H.height,V=le==null?void 0:le.devicePixelRatio;Ce(O)||(ee.userAgentDataPlatform=O),Ce(F)||(ee.maxTouchPoints=F),Ce(L)||(ee.screenWidth=L),Ce(B)||(ee.screenHeight=B),Ce(V)||(ee.devicePixelRatio=V);var te,ce,de,K,I,ue,ie,we,fe=Ht(xp({$os:Y,$os_version:J,$browser:m1(Ys,navigator.vendor,q,G),$device:v0(Ys),$device_type:(ce=Ys,de=ee,we=v0(ce),we===e1||we===Qy||we==="Kobo"||we==="Kindle Fire"||we===f1?_a:we===Io||we===pa||we===$o||we===bf?"Console":we===s1?"Wearable":we?ai:(de==null?void 0:de.userAgentDataPlatform)==="Android"&&((K=de==null?void 0:de.maxTouchPoints)!==null&&K!==void 0?K:0)>0?600>Math.min((I=de==null?void 0:de.screenWidth)!==null&&I!==void 0?I:0,(ue=de==null?void 0:de.screenHeight)!==null&&ue!==void 0?ue:0)/((ie=de==null?void 0:de.devicePixelRatio)!==null&&ie!==void 0?ie:1)?ai:_a:"Desktop"),$timezone:ab(),$timezone_offset:o5()}),{$current_url:qo(M?Un(ls==null?void 0:ls.href):ls==null?void 0:ls.href,W,Wo),$host:ls==null?void 0:ls.host,$pathname:ls==null?void 0:ls.pathname,$raw_user_agent:Ys.length>1e3?Ys.substring(0,997)+"...":Ys,$browser_version:n4(Ys,navigator.vendor,q,G),$browser_language:H0(),$browser_language_prefix:(te=H0(),typeof te=="string"?te.split("-")[0]:void 0),$screen_height:le==null?void 0:le.screen.height,$screen_width:le==null?void 0:le.screen.width,$viewport_height:le==null?void 0:le.innerHeight,$viewport_width:le==null?void 0:le.innerWidth,$lib:bt.LIB_NAME,$lib_version:bt.LIB_VERSION,$insert_id:Math.random().toString(36).substring(2,10)+Math.random().toString(36).substring(2,10),$time:Date.now()/1e3});return bt.SDK_DIST_CHANNEL&&(fe.$sdk_dist_channel=bt.SDK_DIST_CHANNEL),fe})(this.config.mask_personal_data_properties,this.config.custom_personal_data_properties,this.config.detect_google_search_app,this.config.disable_capture_url_hashes);if(this.sessionManager){var f=this.sessionManager.checkAndGetSessionAndWindowId(d,a.getTime()),x=f.windowId;c.$session_id=f.sessionId,c.$window_id=x}this.sessionPropsManager&&Ht(c,this.sessionPropsManager.getSessionProps());try{var C;this.sessionRecording&&Ht(c,this.sessionRecording.sdkDebugProperties),c.$sdk_debug_retry_queue_size=(C=this.wn)==null?void 0:C.length}catch(y){c.$sdk_debug_error_capturing_properties=String(y)}if(this.requestRouter.region===Xf&&(c.$lib_custom_api_host=this.config.api_host),v=t!==aa||d?t!==zd||d?this.pageViewManager.doEvent():this.pageViewManager.doPageLeave(a):this.pageViewManager.doPageView(a,l),c=Ht(c,v),t===aa&&Ae&&(c.title=Ae.title),!Ce(p)){var A=a.getTime()-p;c.$duration=parseFloat((A/1e3).toFixed(3))}Ys&&this.config.opt_out_useragent_filter&&(c.$browser_type=this._is_bot()?"bot":"browser");var E=this.persistence.properties(),m=this.sessionPersistence.properties();Nt(["$referrer","$referring_domain"],(y=>{y in E&&delete m[y]})),(c=Ht({},b,E,m,c)).$is_identified=this._isIdentified(),Xe(this.config.property_denylist)?Nt(this.config.property_denylist,(function(y){delete c[y]})):Ee.error(Eb+this.config.property_denylist+" or property_blacklist config: "+this.config.property_blacklist);var S=this.config.sanitize_properties;S&&(Ee.error(X0),c=S(c,t));var _=this.An();return c.$process_person_profile=_,_&&!d&&this.$n("_calculate_event_properties"),c}On(t,n,a){var l;if(n===void 0&&(n=!0),a===void 0&&(a=!1),!this.persistence||!this.An()||this.un&&!a)return t;var d=this.persistence.get_initial_props(),p=(l=this.sessionPropsManager)==null?void 0:l.getSetOnceProps(),c=Ht({},d,p||{},t||{}),u=this.config.sanitize_properties;return u&&(Ee.error(X0),c=u(c,"$set_once")),n&&(this.un=!0),$n(c)?void 0:c}register(t,n){var a;(a=this.persistence)==null||a.register(t,n)}register_once(t,n,a){var l;(l=this.persistence)==null||l.register_once(t,n,a)}register_for_session(t){var n;(n=this.sessionPersistence)==null||n.register(t)}unregister(t){var n;(n=this.persistence)==null||n.unregister(t)}unregister_for_session(t){var n;(n=this.sessionPersistence)==null||n.unregister(t)}Ln(t,n){this.register({[t]:n})}getFeatureFlag(t,n){var a;return(a=this.featureFlags)==null?void 0:a.getFeatureFlag(t,n)}getFeatureFlagPayload(t){var n;return(n=this.featureFlags)==null?void 0:n.getFeatureFlagPayload(t)}getFeatureFlagResult(t,n){var a;return(a=this.featureFlags)==null?void 0:a.getFeatureFlagResult(t,n)}getAllFeatureFlags(){var t,n;return(t=(n=this.featureFlags)==null?void 0:n.getAllFeatureFlags())!==null&&t!==void 0?t:[]}isFeatureEnabled(t,n){var a,l;return(a=(l=this.featureFlags)==null?void 0:l.isFeatureEnabled(t,n))!==null&&a!==void 0?a:n==null?void 0:n.defaultValue}reloadFeatureFlags(){var t;(t=this.featureFlags)==null||t.reloadFeatureFlags()}updateFlags(t,n,a){var l;(l=this.featureFlags)==null||l.updateFlags(t,n,a)}updateEarlyAccessFeatureEnrollment(t,n,a){var l;(l=this.featureFlags)==null||l.updateEarlyAccessFeatureEnrollment(t,n,a)}getEarlyAccessFeatures(t,n,a){var l;return n===void 0&&(n=!1),(l=this.featureFlags)==null?void 0:l.getEarlyAccessFeatures(t,n,a)}on(t,n){return this.en.on(t,n)}onFeatureFlags(t){return this.featureFlags?this.featureFlags.onFeatureFlags(t):(t([],{},{errorsLoading:!0}),()=>{})}onSurveysLoaded(t){return this.surveys?this.surveys.onSurveysLoaded(t):(t([],{isLoaded:!1,error:So}),()=>{})}onSessionId(t){var n,a;return(n=(a=this.sessionManager)==null?void 0:a.onSessionId(t))!==null&&n!==void 0?n:()=>{}}getSurveys(t,n){n===void 0&&(n=!1),this.surveys?this.surveys.getSurveys(t,n):t([],{isLoaded:!1,error:So})}getActiveMatchingSurveys(t,n){n===void 0&&(n=!1),this.surveys?this.surveys.getActiveMatchingSurveys(t,n):t([],{isLoaded:!1,error:So})}renderSurvey(t,n){var a;(a=this.surveys)==null||a.renderSurvey(t,n)}displaySurvey(t,n){var a;n===void 0&&(n=A5),(a=this.surveys)==null||a.displaySurvey(t,n)}cancelPendingSurvey(t){var n;(n=this.surveys)==null||n.cancelPendingSurvey(t)}canRenderSurvey(t){var n,a;return(n=(a=this.surveys)==null?void 0:a.canRenderSurvey(t))!==null&&n!==void 0?n:{visible:!1,disabledReason:So}}canRenderSurveyAsync(t,n){var a,l;return n===void 0&&(n=!1),(a=(l=this.surveys)==null?void 0:l.canRenderSurveyAsync(t,n))!==null&&a!==void 0?a:Promise.resolve({visible:!1,disabledReason:So})}Dn(t){return!t||mf(t)?(Ee.critical("Unique user id has not been set in posthog.identify"),!1):t===uc?(Ee.critical('The string "'+t+'" was set in posthog.identify which indicates an error. This ID is only used as a sentinel value.'),!1):!["distinct_id","distinctid"].includes(t.toLowerCase())&&!["undefined","null"].includes(t.toLowerCase())||(Ee.critical('The string "'+t+'" was set in posthog.identify which indicates an error. This ID should be unique to the user and not a hardcoded string.'),!1)}identify(t,n,a){if(!this.__loaded||!this.persistence)return Ee.uninitializedWarning("posthog.identify");if(Rs(t)&&(t=t.toString(),Ee.warn("The first argument to posthog.identify was a number, but it should be a string. It has been converted to a string.")),this.Dn(t)&&this.$n("posthog.identify")){var l=this.get_distinct_id();this.register({$user_id:t}),this.get_property(Po)||this.register_once({$had_persisted_distinct_id:!0,$device_id:l},""),t!==l&&t!==this.get_property(Eo)&&(this.unregister(Eo),this.register({distinct_id:t}));var d,p=(this.persistence.get_property(yi)||ta)===ta,c=t!==l,u=!c&&p;if(c&&p)this.persistence.set_property(yi,or),this.setPersonPropertiesForFlags({$set:n||{},$set_once:a||{}},!1),this.capture(Id,{distinct_id:t,$anon_distinct_id:l},{$set:n||{},$set_once:a||{}}),this.fn=Xd(t,n,a),(d=this.featureFlags)==null||d.setAnonymousDistinctId(l);else if(u){this.persistence.set_property(yi,or);var v=n||{},b=a||{};this.setPersonPropertiesForFlags({$set:v,$set_once:b},!1),this.capture("$set",{$set:v,$set_once:b}),this.fn=Xd(t,n,a)}else(n||a)&&this.setPersonProperties(n,a);c?(this.reloadFeatureFlags(),this.unregister(jo)):u&&(n||a)&&this.reloadFeatureFlags()}}setPersonProperties(t,n){if((t||n)&&this.$n("posthog.setPersonProperties")){var a=Xd(this.get_distinct_id(),t,n);this.fn!==a?(this.setPersonPropertiesForFlags({$set:t||{},$set_once:n||{}},!0),this.capture("$set",{$set:t||{},$set_once:n||{}}),this.fn=a):Ee.info("A duplicate setPersonProperties call was made with the same properties. It has been ignored.")}}unsetPersonProperties(t){var n,a=(Xe(t)?t:[t]).filter((l=>jt(l)&&l.length>0));a.length!==0&&this.$n("posthog.unsetPersonProperties")&&((n=this.featureFlags)==null||n.unsetPersonPropertiesForFlags(a,!0),this.capture("$set",{$unset:a}),this.fn=null)}group(t,n,a){if(t&&n){var l=this.getGroups(),d=l[t]!==n;if(d&&this.resetGroupPropertiesForFlags(t),this.register({$groups:be({},l,{[t]:n})}),d||a){var p={$group_type:t,$group_key:n};a&&(p.$group_set=a),this.capture(S0,p)}a&&this.setGroupPropertiesForFlags({[t]:a}),d&&!a&&this.reloadFeatureFlags()}else Ee.error("posthog.group requires a group type and group key")}resetGroups(){this.register({$groups:{}}),this.resetGroupPropertiesForFlags(),this.reloadFeatureFlags()}setPersonPropertiesForFlags(t,n){var a;n===void 0&&(n=!0),(a=this.featureFlags)==null||a.setPersonPropertiesForFlags(t,n)}resetPersonPropertiesForFlags(t){var n;t===void 0&&(t=!0),(n=this.featureFlags)==null||n.resetPersonPropertiesForFlags(t)}setGroupPropertiesForFlags(t,n){var a;n===void 0&&(n=!0),this.$n("posthog.setGroupPropertiesForFlags")&&((a=this.featureFlags)==null||a.setGroupPropertiesForFlags(t,n))}resetGroupPropertiesForFlags(t){var n;(n=this.featureFlags)==null||n.resetGroupPropertiesForFlags(t)}reset(t){var n,a,l,d,p,c,u,v,b,f;if(Ee.info("reset"),!this.__loaded)return Ee.uninitializedWarning("posthog.reset");var x,C=this.get_property(Po),A=this.get_property(Hd),E=this.get_property(mr);if(this.consent.reset(),(n=this.persistence)==null||n.clear(),(a=this.sessionPersistence)==null||a.clear(),Ce(E)||(x=this.persistence)==null||x.register({[mr]:E}),(l=this.surveys)==null||l.reset(),(d=this.En)==null||d.stop(),(p=this.featureFlags)==null||p.reset(),(c=this.conversations)==null||c.reset(),(u=this.logs)==null||u.reset(),(v=this.metrics)==null||v.reset(),(b=this.persistence)==null||b.set_property(yi,ta),(f=this.sessionManager)==null||f.resetSessionId(),this.fn=null,this.config.cookieless_mode===hn)this.register_once({distinct_id:uc,$device_id:null},"");else{var m=this.config.get_device_id(un());this.register_once({distinct_id:m,$device_id:t?m:C},""),t||Ce(A)||this.register({[Hd]:A})}this.register({$last_posthog_reset:new Date().toISOString()},1),delete this.config.identity_distinct_id,delete this.config.identity_hash,this.reloadFeatureFlags()}shutdown(t){var n=this;return Ft((function*(){var a,l,d,p,c,u,v;n.__loaded?((a=n.En)==null||a.stop(),(l=n.Mn)==null||l.dispose(),(d=n.logs)==null||d.flushLogs("sendBeacon"),(p=n.metrics)==null||p.flush("sendBeacon"),(c=n.bn)==null||c.unload(),(u=n.wn)==null||u.unload(),(v=n.featureFlags)==null||v.destroy()):Ee.uninitializedWarning("posthog.shutdown")}))()}setIdentity(t,n){var a;this.config.identity_distinct_id=t,this.config.identity_hash=n,this.alias(t),(a=this.conversations)==null||a.Nn()}clearIdentity(){var t;delete this.config.identity_distinct_id,delete this.config.identity_hash,(t=this.conversations)==null||t.qn()}get_distinct_id(){return this.get_property("distinct_id")}getGroups(){return this.get_property("$groups")||{}}get_session_id(){var t,n;return(t=(n=this.sessionManager)==null?void 0:n.checkAndGetSessionAndWindowId(!0).sessionId)!==null&&t!==void 0?t:""}get_session_replay_url(t){if(!this.sessionManager)return"";var n=this.sessionManager.checkAndGetSessionAndWindowId(!0),a=n.sessionStartTimestamp,l=this.requestRouter.endpointFor("ui","/project/"+this.config.token+"/replay/"+n.sessionId);if(t!=null&&t.withTimestamp&&a){var d,p=(d=t.timestampLookBack)!==null&&d!==void 0?d:10;if(!a)return l;l+="?t="+Math.max(Math.floor((new Date().getTime()-a)/1e3)-p,0)}return l}alias(t,n){return t===this.get_property(k1)?(Ee.critical("Attempting to create alias for existing People user - aborting."),-2):this.$n("posthog.alias")?(Ce(n)&&(n=this.get_distinct_id()),t!==n?(this.Ln(Eo,t),this.capture("$create_alias",{alias:t,distinct_id:n})):(Ee.warn("alias matches current distinct_id - skipping api call."),this.identify(t),-1)):void 0}set_config(t){var n=be({},this.config);if(Ut(t)){var a,l,d,p,c,u,v,b,f,x,C;Ht(this.config,J0(t));var A=this.yn();(a=this.persistence)==null||a.update_config(this.config,n,A),this.sessionPersistence=this.config.persistence==="sessionStorage"||this.config.persistence==="memory"?this.persistence:new qd(be({},this.config,{persistence:"sessionStorage"}),A,!1);var E=this.pn(this.config.debug);Di(E)&&(this.config.debug=E),Di(this.config.debug)&&(this.config.debug?(bt.DEBUG=!0,Bt.N()&&Bt.A("ph_debug",!0),Ee.info("set_config",{config:t,oldConfig:n,newConfig:be({},this.config)})):(bt.DEBUG=!1,Bt.N()&&Bt.D("ph_debug"))),(l=this.exceptionObserver)==null||l.onConfigChange(),(d=this.exceptions)==null||d.onConfigChange(),(p=this.sessionRecording)==null||p.startIfEnabledOrStop(),(c=this.tracingHeaders)==null||c.startIfEnabledOrStop(),(u=this.autocapture)==null||u.startIfEnabled(),(v=this.heatmaps)==null||v.startIfEnabled(),(b=this.exceptionObserver)==null||b.startIfEnabledOrStop(),(f=this.deadClicksAutocapture)==null||f.startIfEnabledOrStop(),(x=this.surveys)==null||x.loadIfEnabled(),this.jn(),(C=this.externalIntegrations)==null||C.startIfEnabledOrStop()}}_overrideSDKInfo(t,n){bt.LIB_NAME=t,bt.LIB_VERSION=n}startSessionRecording(t){var n,a,l,d,p,c=t===!0,u={sampling:c||!(t==null||!t.sampling),linked_flag:c||!(t==null||!t.linked_flag),url_trigger:c||!(t==null||!t.url_trigger),event_trigger:c||!(t==null||!t.event_trigger)};Object.values(u).some(Boolean)&&((n=this.sessionManager)==null||n.checkAndGetSessionAndWindowId(),u.sampling&&((a=this.sessionRecording)==null||a.overrideSampling()),u.linked_flag&&((l=this.sessionRecording)==null||l.overrideLinkedFlag()),u.url_trigger&&((d=this.sessionRecording)==null||d.overrideTrigger("url")),u.event_trigger&&((p=this.sessionRecording)==null||p.overrideTrigger("event"))),this.set_config({disable_session_recording:!1})}stopSessionRecording(){this.set_config({disable_session_recording:!0})}sessionRecordingStarted(){var t;return!((t=this.sessionRecording)==null||!t.started)}captureException(t,n){if(this.exceptions){var a=new Error("PostHog syntheticException"),l=this.exceptions.buildProperties(t,{handled:!0,syntheticException:a});return this.exceptions.sendExceptionEvent(be({},l,n))}}addExceptionStep(t,n){var a;(a=this.exceptions)==null||a.addExceptionStep(t,n)}captureLog(t){var n;(n=this.logs)==null||n.captureLog(t)}get logger(){var t,n;return(t=(n=this.logs)==null?void 0:n.logger)!==null&&t!==void 0?t:bi.Bn}startExceptionAutocapture(t){this.set_config({capture_exceptions:t==null||t})}stopExceptionAutocapture(){this.set_config({capture_exceptions:!1})}loadToolbar(t){var n,a;return(n=(a=this.toolbar)==null?void 0:a.loadToolbar(t))!==null&&n!==void 0&&n}get_property(t){var n;return(n=this.persistence)==null?void 0:n.props[t]}getSessionProperty(t){var n;return(n=this.sessionPersistence)==null?void 0:n.props[t]}toString(){var t,n=(t=this.config.name)!==null&&t!==void 0?t:oa;return n!==oa&&(n=oa+"."+n),n}_isIdentified(){var t,n;return((t=this.persistence)==null?void 0:t.get_property(yi))===or||((n=this.sessionPersistence)==null?void 0:n.get_property(yi))===or}An(){var t,n;return!(this.config.person_profiles==="never"||this.config.person_profiles===Pf&&!this._isIdentified()&&$n(this.getGroups())&&((t=this.persistence)==null||(t=t.props)==null||!t[Eo])&&((n=this.persistence)==null||(n=n.props)==null||!n[Fc]))}Rn(){return this.config.capture_pageleave===!0||this.config.capture_pageleave==="if_capture_pageview"&&(this.config.capture_pageview===!0||this.config.capture_pageview==="history_change")}createPersonProfile(){this.An()||this.$n("posthog.createPersonProfile")&&this.setPersonProperties({},{})}setInternalOrTestUser(){this.$n("posthog.setInternalOrTestUser")&&this.setPersonProperties({$internal_or_test_user:!0})}$n(t){return this.config.person_profiles==="never"?(Ee.error(t+' was called, but process_person is set to "never". This call will be ignored.'),!1):(this.Ln(Fc,!0),!0)}yn(){if(this.config.cookieless_mode==="always")return!0;var t=this.consent.isOptedOut();return this.config.disable_persistence||t&&!(!this.config.opt_out_persistence_by_default&&this.config.cookieless_mode!==_r)}jn(){var t,n,a,l,d=this.yn();return((t=this.persistence)==null?void 0:t.yr)!==d&&((a=this.persistence)==null||a.set_disabled(d)),((n=this.sessionPersistence)==null?void 0:n.yr)!==d&&((l=this.sessionPersistence)==null||l.set_disabled(d)),d}opt_in_capturing(t){var n;if(this.config.cookieless_mode!==hn){if(this.ln()){var a,l,d,p,c;this.reset(!0),(a=this.sessionManager)==null||a.destroy(),(l=this.pageViewManager)==null||l.destroy(),this.sessionManager=new G0(this),this.pageViewManager=new B0(this),this.persistence&&(this.sessionPropsManager=new W0(this,this.sessionManager,this.persistence));var u,v=(d=(p=this.config.__extensionClasses)==null?void 0:p.sessionRecording)!==null&&d!==void 0?d:(c=bi.__defaultExtensionClasses)==null?void 0:c.sessionRecording;v&&(this.sessionRecording=this.an(this.sessionRecording,new v(this)),this.tn&&((u=this.sessionRecording)==null||u.onRemoteConfig==null||u.onRemoteConfig(this.tn)))}var b,f;this.consent.optInOut(!0),this.jn(),this.In(),(n=this.sessionRecording)==null||n.startIfEnabledOrStop(),this.config.cookieless_mode==_r&&((b=this.surveys)==null||b.loadIfEnabled()),(Ce(t==null?void 0:t.captureEventName)||t!=null&&t.captureEventName)&&this.capture((f=t==null?void 0:t.captureEventName)!==null&&f!==void 0?f:"$opt_in",t==null?void 0:t.captureProperties,{send_instantly:!0}),this.config.capture_pageview&&this.Tn()}else Ee.warn(K0)}opt_out_capturing(){var t,n,a;this.config.cookieless_mode!==hn?(this.config.cookieless_mode===_r&&this.consent.isOptedIn()&&this.reset(!0),this.consent.optInOut(!1),this.jn(),this.config.cookieless_mode===_r&&(this.register({distinct_id:uc,$device_id:null}),(t=this.sessionRecording)==null||t.stopRecording(),this.sessionRecording=void 0,(n=this.sessionManager)==null||n.destroy(),(a=this.pageViewManager)==null||a.destroy(),this.sessionManager=void 0,this.sessionPropsManager=void 0,this.config.capture_pageview&&this.Tn(),this.In())):Ee.warn(K0)}has_opted_in_capturing(){return this.consent.isOptedIn()}has_opted_out_capturing(){return this.consent.isOptedOut()}get_explicit_consent_status(){var t=this.consent.consent;return t===1?"granted":t===0?"denied":"pending"}is_capturing(){return this.config.cookieless_mode===hn||(this.config.cookieless_mode===_r?this.consent.isRejected()||this.consent.isOptedIn():!this.has_opted_out_capturing())}clear_opt_in_out_capturing(){this.consent.reset(),this.jn()}_is_bot(){return Is?mb(Is,this.config.custom_blocked_useragents):void 0}Tn(){Ae&&(Ae.visibilityState==="visible"?this.dn||(this.dn=!0,this.capture(aa,{title:Ae.title},{send_instantly:!0}),this.cn&&(Ae.removeEventListener(qc,this.cn),this.cn=null)):this.cn||(this.cn=this.Tn.bind(this),Qt(Ae,qc,this.cn)))}debug(t){t===!1?(le==null||le.console.log("You've disabled debug mode."),this.set_config({debug:!1})):(le==null||le.console.log("You're now in debug mode. All calls to PostHog will be logged in your console.\nYou can disable this with `posthog.debug(false)`."),this.set_config({debug:!0}))}Ur(){var t=this.gn||{};return"advanced_disable_flags"in t?!!t.advanced_disable_flags:this.config.advanced_disable_flags!==!1?!!this.config.advanced_disable_flags:this.config.advanced_disable_decide===!0?(Ee.warn("Config field 'advanced_disable_decide' is deprecated. Please use 'advanced_disable_flags' instead. The old field will be removed in a future major version."),!0):(function(n,a,l,d,p){var c=a in n&&!Ze(n[a]),u=l in n&&!Ze(n[l]);return c?n[a]:!!u&&(p&&p.warn("Config field '"+l+"' is deprecated. Please use '"+a+"' instead. The old field will be removed in a future major version."),n[l])})(t,"advanced_disable_flags","advanced_disable_decide",0,Ee)}Rt(t){var n;if(Ze(this.config.before_send))return t;var a=Object.keys((n=t.properties)!==null&&n!==void 0?n:{}).filter(G3),l=Xe(this.config.before_send)?this.config.before_send:[this.config.before_send],d=t;for(var p of l){if(d=p(d),Ze(d)){var c="Event '"+t.event+"' was rejected in beforeSend function";return W3(t.event)?Ee.warn(c+". This can cause unexpected behavior."):Ee.info(c),null}d.properties&&!$n(d.properties)||Ee.warn("Event '"+t.event+"' has no properties after beforeSend function, this is likely an error.")}for(var u of a)if(d.properties&&Ze(d.properties[u]))return Ee.warn("Event '"+t.event+"' had its '"+u+"' property removed in a beforeSend function. This property is required for ingestion, so the event will be dropped."),null;return d}getPageViewId(){var t;return(t=this.pageViewManager.ir)==null?void 0:t.pageViewId}captureTraceFeedback(t,n){this.capture("$ai_feedback",{$ai_trace_id:String(t),$ai_feedback_text:n})}captureTraceMetric(t,n,a){this.capture("$ai_metric",{$ai_trace_id:String(t),$ai_metric_name:n,$ai_metric_value:String(a)})}pn(t){var n=Di(t)&&!t,a=Bt.N()&&Bt.q("ph_debug")==="true";return!n&&(!!a||t)}}bi.__defaultExtensionClasses={},bi.Bn=(()=>{var s=()=>{};return{trace:s,debug:s,info:s,warn:s,error:s,fatal:s}})(),(function(s,t){for(var n=0;t.length>n;n++)s.prototype[t[n]]=L4(s.prototype[t[n]])})(bi,["identify"]);class Z0{constructor(t){this.disabled=t===!1;var n=Ut(t)?t:{};this.thresholdPx=n.threshold_px||30,this.timeoutMs=n.timeout_ms||1e3,this.clickCount=n.click_count||3,this.clicks=[]}isRageClick(t,n,a){if(this.disabled)return!1;var l=this.clicks[this.clicks.length-1];if(l&&Math.abs(t-l.x)+Math.abs(n-l.y)<this.thresholdPx&&this.timeoutMs>a-l.timestamp){if(this.clicks.push({x:t,y:n,timestamp:a}),this.clicks.length===this.clickCount)return!0}else this.clicks=[{x:t,y:n,timestamp:a}];return!1}}var Qd="$copy_autocapture",ef=Wt("[AutoCapture]");function tf(s,t){return t.length>s?t.slice(0,s)+"...":t}function z5(s){if(s.previousElementSibling)return s.previousElementSibling;var t=s;do t=t.previousSibling;while(t&&!Fn(t));return t}function I5(s,t){var n,a,l=t.e,d=t.maskAllElementAttributes,p=t.maskAllText,c=t.elementAttributeIgnoreList,u=t.elementsChainAsString,v=t.disableCaptureUrlHashes;if(!Fn(s))return{props:{}};for(var b=[s],f=new Set([s]),x=s;x.parentNode&&!ri(x,"body")&&F1>b.length;)if(U1(x.parentNode)){var C=x.parentNode.host;if(f.has(C))break;f.add(C),b.push(C),x=C}else{if(!Fn(x.parentNode)||f.has(x.parentNode))break;f.add(x.parentNode),b.push(x.parentNode),x=x.parentNode}var A,E,m=[],S={},_=!1,y=!1;if(Nt(b,(T=>{var D=Ff(T);if(ri(T,"a")){var H=T.getAttribute("href");_=!!(D&&H&&No(H))&&(v?Un(H):H)}Ye(Vc(T),"ph-no-capture")&&(y=!0),m.push((function(W,U,Y,J,q){q===void 0&&(q=!1);var G=W.tagName.toLowerCase(),ee={tag_name:G};Ep.indexOf(G)>-1&&!Y&&(ee.$el_text=G.toLowerCase()==="a"||G.toLowerCase()==="button"?tf(1024,N0(W)):tf(1024,Fo(W)));var O=Vc(W);O.length>0&&(ee.classes=O.filter((function(V){return V!==""}))),Nt(W.attributes,(function(V){var te;if((!Y1(W)||["name","id","class","aria-label"].indexOf(V.name)!==-1)&&(J==null||!J.includes(V.name))&&!U&&No(V.value)&&(!jt(te=V.name)||te.substring(0,10)!=="_ngcontent"&&te.substring(0,7)!=="_nghost")){var ce=V.value;V.name==="class"&&(ce=Cp(ce).join(" ")),ee["attr__"+V.name]=tf(1024,V.name==="href"&&q?Un(ce):ce)}}));for(var F=1,L=1,B=W;B=z5(B);)F++,B.tagName===W.tagName&&L++;return ee.nth_child=F,ee.nth_of_type=L,ee})(T,d,p,c,v));var P=(function(W){if(!Ff(W))return{};var U={};return Nt(W.attributes,(function(Y){if(Y.name&&Y.name.indexOf("data-ph-capture-attribute")===0){var J=Y.name.replace("data-ph-capture-attribute-",""),q=Y.value;J&&q&&No(q)&&(U[J]=q)}})),U})(T);Ht(S,P)})),y)return{props:{},explicitNoCapture:y};if(p||(m[0].$el_text=ri(s,"a")||ri(s,"button")?N0(s):Fo(s)),_){var k,R;m[0].attr__href=_;var M=(k=Yc(_))==null?void 0:k.host,j=le==null||(R=le.location)==null?void 0:R.host;M&&j&&M!==j&&(A=_)}return{props:Ht({$event_type:l.type,$ce_version:1},u?{}:{$elements:m},{$elements_chain:(E=m,(function(T){return T.map((D=>{var H,P,W="";if(D.tag_name&&(W+=D.tag_name),D.attr_class)for(var U of(D.attr_class.sort(),D.attr_class))W+="."+U.replace(/"/g,"");var Y=be({},D.text?{text:D.text}:{},{"nth-child":(H=D.nth_child)!==null&&H!==void 0?H:0,"nth-of-type":(P=D.nth_of_type)!==null&&P!==void 0?P:0},D.href?{href:D.href}:{},D.attr_id?{attr_id:D.attr_id}:{},D.attributes),J={};return kc(Y).sort(((q,G)=>q[0].localeCompare(G[0]))).forEach((q=>{var G=q[1];return J[L0(q[0].toString())]=L0(G.toString())})),(W+=":")+kc(J).map((q=>q[0]+'="'+q[1]+'"')).join("")})).join(";")})((function(T){return T.map((D=>{var H,P,W={text:(H=D.$el_text)==null?void 0:H.slice(0,400),tag_name:D.tag_name,href:(P=D.attr__href)==null?void 0:P.slice(0,2048),attr_class:Q4(D),attr_id:D.attr__id,nth_child:D.nth_child,nth_of_type:D.nth_of_type,attributes:{}};return kc(D).filter((U=>U[0].indexOf("attr__")===0)).forEach((U=>W.attributes[U[0]]=U[1])),W}))})(E)))},(n=m[0])!=null&&n.$el_text?{$el_text:(a=m[0])==null?void 0:a.$el_text}:{},A&&l.type==="click"?{$external_click_url:A}:{},S)}}var wo=Wt("[ExceptionAutocapture]"),Q0=()=>{},$5=Wt("[TracingHeaders]"),hr=Wt("[Web Vitals]"),ey=9e5,ty="disabled",sy="lazy_loading",xo="awaiting_config",gc="missing_config";Wt("[SessionRecording]"),Wt("[SessionRecording]");var Jf="[SessionRecording]",an=Wt(Jf),P5=Wt("[Heatmaps]");function sf(s){return Ut(s)&&"clientX"in s&&"clientY"in s&&Rs(s.clientX)&&Rs(s.clientY)}var nf=Wt("[Product Tours]"),rf=s=>{var t;return!s.config.disable_product_tours&&!((t=s.persistence)==null||!t.get_property(bp))},U5=["$set_once","$set"],Bi=Wt("[SiteApps]"),iy="Error while initializing PostHog app with config id ";function na(s,t,n){if(Ze(s))return!1;switch(n){case"exact":return s===t;case"contains":var a=t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/_/g,".").replace(/%/g,".*");return new RegExp(a,"i").test(s);case"regex":try{return new RegExp(t).test(s)}catch{return!1}default:return!1}}class F5{constructor(t){this.Hn=new Rp,this.Un=(n,a)=>this.zn(n,a)&&this.Vn(n,a)&&this.Wn(n,a)&&this.Zn(n,a),this.zn=(n,a)=>a==null||!a.event||(n==null?void 0:n.event)===(a==null?void 0:a.event),this._instance=t,this.Gn=new Set,this.Qn=new Set}init(){var t,n;Ce((t=this._instance)==null?void 0:t._addCaptureHook)||(n=this._instance)==null||n._addCaptureHook(((a,l)=>{this.on(a,l)}))}register(t){var n,a;if(!Ce((n=this._instance)==null?void 0:n._addCaptureHook)&&(t.forEach((p=>{var c,u;(c=this.Qn)==null||c.add(p),(u=p.steps)==null||u.forEach((v=>{var b;(b=this.Gn)==null||b.add((v==null?void 0:v.event)||"")}))})),(a=this._instance)!=null&&a.autocapture)){var l,d=new Set;t.forEach((p=>{var c;(c=p.steps)==null||c.forEach((u=>{u!=null&&u.selector&&d.add(u==null?void 0:u.selector)}))})),(l=this._instance)==null||l.autocapture.setElementSelectors(d)}}on(t,n){var a;n!=null&&t.length!=0&&(this.Gn.has(t)||this.Gn.has(n.event))&&this.Qn&&((a=this.Qn)==null?void 0:a.size)>0&&this.Qn.forEach((l=>{this.Jn(n,l)&&this.Hn.emit("actionCaptured",l.name)}))}Kn(t){this.onAction("actionCaptured",(n=>t(n)))}Jn(t,n){if((n==null?void 0:n.steps)==null)return!1;for(var a of n.steps)if(this.Un(t,a))return!0;return!1}onAction(t,n){return this.Hn.on(t,n)}Vn(t,n){if(n!=null&&n.url){var a,l=t==null||(a=t.properties)==null?void 0:a.$current_url;if(!l||typeof l!="string"||!na(l,n.url,n.url_matching||"contains"))return!1}return!0}Wn(t,n){return!!this.Yn(t,n)&&!!this.Xn(t,n)&&!!this.ts(t,n)}Yn(t,n){var a;if(n==null||!n.href)return!0;var l=this.es(t);if(l.length>0)return l.some((c=>na(c.href,n.href,n.href_matching||"exact")));var d,p=(t==null||(a=t.properties)==null?void 0:a.$elements_chain)||"";return!!p&&na((d=p.match(/(?::|")href="(.*?)"/))?d[1]:"",n.href,n.href_matching||"exact")}Xn(t,n){var a;if(n==null||!n.text)return!0;var l=this.es(t);if(l.length>0)return l.some((v=>na(v.text,n.text,n.text_matching||"exact")||na(v.$el_text,n.text,n.text_matching||"exact")));var d,p,c,u=(t==null||(a=t.properties)==null?void 0:a.$elements_chain)||"";return!!u&&(d=(function(v){for(var b,f=[],x=/(?::|")text="(.*?)"/g;!Ze(b=x.exec(v));)f.includes(b[1])||f.push(b[1]);return f})(u),p=n.text,c=n.text_matching||"exact",d.some((v=>na(v,p,c))))}ts(t,n){var a,l;if(n==null||!n.selector)return!0;var d=t==null||(a=t.properties)==null?void 0:a.$element_selectors;if(d!=null&&d.includes(n.selector))return!0;var p=(t==null||(l=t.properties)==null?void 0:l.$elements_chain)||"";if(n.selector_regex&&p)try{return new RegExp(n.selector_regex).test(p)}catch{return!1}return!1}es(t){var n;return(t==null||(n=t.properties)==null?void 0:n.$elements)==null?[]:t==null?void 0:t.properties.$elements}Zn(t,n){return n==null||!n.properties||n.properties.length===0||Sb(n.properties.reduce(((a,l)=>{var d=Xe(l.value)?l.value.map(String):l.value!=null?[String(l.value)]:[];return a[l.key]={values:d,operator:l.operator||"exact"},a}),{}),t==null?void 0:t.properties)}}class q5{constructor(t){var n;this.rs=[],this._instance=t,this.ns=new Map,this.ss=new Map,this.os=new Map,(n=this._instance)==null||n.onSessionId==null||n.onSessionId((a=>this.ls(a)))}us(t,n){return!!t&&Sb(t.propertyFilters,n==null?void 0:n.properties)}hs(t,n){var a=new Map;return t.forEach((l=>{var d;(d=l.conditions)==null||(d=d[n])==null||(d=d.values)==null||d.forEach((p=>{if(p!=null&&p.name){var c=a.get(p.name)||[];c.push(l.id),a.set(p.name,c)}}))})),a}ds(t,n,a){var l=(a===go.Activation?this.ns:this.ss).get(t),d=[];return this.cs((p=>{d=p.filter((c=>l==null?void 0:l.includes(c.id)))})),d.filter((p=>{var c,u=(c=p.conditions)==null||(c=c[a])==null||(c=c.values)==null?void 0:c.find((v=>v.name===t));return this.us(u,n)}))}register(t){var n;Ce((n=this._instance)==null?void 0:n._addCaptureHook)||(this.vs(t),this.fs(t))}fs(t){var n=t.filter((a=>{var l,d;return((l=a.conditions)==null?void 0:l.actions)&&((d=a.conditions)==null||(d=d.actions)==null||(d=d.values)==null?void 0:d.length)>0}));n.length!==0&&(this.ps==null&&(this.ps=new F5(this._instance),this.ps.init(),this.ps.Kn((a=>{this.onAction(a)}))),n.forEach((a=>{var l,d,p,c,u;a.conditions&&(l=a.conditions)!=null&&l.actions&&(d=a.conditions)!=null&&(d=d.actions)!=null&&d.values&&((p=a.conditions)==null||(p=p.actions)==null||(p=p.values)==null?void 0:p.length)>0&&((c=this.ps)==null||c.register(a.conditions.actions.values),(u=a.conditions)==null||(u=u.actions)==null||(u=u.values)==null||u.forEach((v=>{if(v&&v.name){var b=this.os.get(v.name);b&&b.push(a.id),this.os.set(v.name,b||[a.id])}})))})))}vs(t){var n,a=t.filter((d=>{var p,c;return((p=d.conditions)==null?void 0:p.events)&&((c=d.conditions)==null||(c=c.events)==null||(c=c.values)==null?void 0:c.length)>0})),l=t.filter((d=>{var p,c;return((p=d.conditions)==null?void 0:p.cancelEvents)&&((c=d.conditions)==null||(c=c.cancelEvents)==null||(c=c.values)==null?void 0:c.length)>0}));a.length===0&&l.length===0||((n=this._instance)==null||n._addCaptureHook(((d,p)=>{this.onEvent(d,p)})),this.ns=this.hs(t,go.Activation),this.ss=this.hs(t,go.Cancellation))}onEvent(t,n){var a,l,d=this.gs(),p=(n==null||(a=n.properties)==null?void 0:a.$survey_id)||(n==null||(l=n.properties)==null?void 0:l.$product_tour_id);if(p&&this.getActivatedIds().includes(p)){var c=this.ys(t,p);if(c==="consume")return d.info("event consumed activated item, removing it",{event:t,itemId:p}),void this.bs([p]);if(c==="persist")return d.info("shown item promoted to persisted activation",{event:t,itemId:p}),void this._s(p)}if(this.ss.has(t)){var u=this.ds(t,n,go.Cancellation);u.length>0&&(d.info("cancel event matched, cancelling items",{event:t,itemsToCancel:u.map((b=>b.id))}),this.bs(u.map((b=>b.id))),u.forEach((b=>this.ws(b.id))))}if(this.ns.has(t)){d.info("event name matched",{event:t,eventPayload:n,items:this.ns.get(t)});var v=this.ds(t,n,go.Activation);this.xs(v.map((b=>b.id)))}}onAction(t){this.os.has(t)&&this.xs(this.os.get(t)||[])}xs(t){t.length!==0&&(this.rs=[...new Set([...this.rs,...t])],this.gs().info("updating activated items",{activatedItems:this.getActivatedIds()}))}_s(t){this.rs=this.rs.filter((a=>a!==t));var n=this.ks();n.includes(t)||(this.Ss([...n,t]),this.Cs())}bs(t){var n=new Set(t);this.rs=this.rs.filter((d=>!n.has(d)));var a=this.Ms(),l=a.filter((d=>!n.has(d)));l.length!==a.length&&(this.Ss(l),l.length===0&&this.Is())}Ms(){var t,n=this.Ts();return((t=this._instance)==null||(t=t.persistence)==null?void 0:t.props[n])||[]}ks(){var t,n,a=this.Ms();if(a.length===0)return[];var l=(t=this._instance)==null||(t=t.persistence)==null?void 0:t.props[this.Es()],d=(n=this._instance)==null||n.get_session_id==null?void 0:n.get_session_id();return d&&l===d?a:[]}Cs(){var t,n=(t=this._instance)==null||t.get_session_id==null?void 0:t.get_session_id();n&&this.Rs(n)}Is(){this.Ps()}ls(t){var n,a=(n=this._instance)==null||(n=n.persistence)==null?void 0:n.props[this.Es()];a&&a!==t&&(this.Ms().length>0&&this.Ss([]),this.Is())}getActivatedIds(){return[...new Set([...this.ks(),...this.rs])].filter((t=>!this.Os(t)))}reset(){this.rs=[],this.Ms().length>0&&this.Ss([]),this.Is()}getEventToItemsMap(){return this.ns}Fs(){return this.ps}}class W5 extends q5{constructor(t){super(t)}Ts(){return Lf}Es(){return Ec}As(){return fn.SHOWN}cs(t){var n;(n=this._instance)==null||n.getSurveys(t)}ws(t){var n;(n=this._instance)==null||n.cancelPendingSurvey(t)}gs(){return Et}Ss(t){var n;(n=this._instance)==null||(n=n.persistence)==null||n.register({[Lf]:t})}Rs(t){var n;(n=this._instance)==null||(n=n.persistence)==null||n.register({[Ec]:t})}Ps(){var t;(t=this._instance)==null||(t=t.persistence)==null||t.unregister(Ec)}Os(){return!1}ys(t,n){var a;this.cs((d=>{a=d.find((p=>p.id===n))}));var l=!a||(function(d){var p;return wb(d)&&!((p=d.conditions)==null||(p=p.events)==null||!p.repeatedActivation)||d.schedule==="always"})(a);return l?t===fn.SHOWN?"consume":"ignore":t===fn.SHOWN?"persist":t===fn.DISMISSED||t===fn.SENT?"consume":"ignore"}getSurveys(){return this.getActivatedIds()}getEventToSurveys(){return this.getEventToItemsMap()}}var mc="SDK is not enabled or survey functionality is not yet loaded",ny="Disabled. Not loading surveys.",G5=le!=null&&le.location?Kc(le.location.hash,"__posthog")||Kc(location.hash,"state"):null,ry="_postHogToolbarParams",ay=Wt("[Toolbar]"),gs=Wt("[FeatureFlags]"),dr=Wt("[FeatureFlags]",{debugEnabled:!0}),af=`" failed. Feature flags didn't load in time.`,oy=s=>{for(var t={},n=0;s.length>n;n++)t[s[n]]=!0;return t},ly=s=>{var t={};for(var n of kc(s||{})){var a=n[1];a&&(t[n[0]]=a)}return t},Hi=Wt("[Error tracking]"),cy="Refusing to render web experiment since the viewer is a likely bot",V5={icontains:(s,t)=>t.toLowerCase().indexOf(s.toLowerCase())>-1,not_icontains:(s,t)=>t.toLowerCase().indexOf(s.toLowerCase())===-1,regex:(s,t)=>Zc(t,s),not_regex:(s,t)=>!Zc(t,s),exact:(s,t)=>t===s,is_not:(s,t)=>t!==s};class Ns{get Te(){return this._instance.config}constructor(t){var n=this;this.getWebExperimentsAndEvaluateDisplayLogic=function(a){a===void 0&&(a=!1),n.getWebExperiments((l=>{Ns.$s("retrieved web experiments from the server"),n.Ls=new Map,l.forEach((d=>{if(d.feature_flag_key){var p;n.Ls&&(Ns.$s("setting flag key ",d.feature_flag_key," to web experiment ",d),(p=n.Ls)==null||p.set(d.feature_flag_key,d));var c=n._instance.getFeatureFlag(d.feature_flag_key);jt(c)&&d.variants[c]&&n.Ds(d.name,c,d.variants[c].transforms)}else if(d.variants)for(var u in d.variants){var v=d.variants[u];Ns.Ns(v,n._instance)&&n.Ds(d.name,u,v.transforms)}}))}),a)},this._instance=t,this._instance.onFeatureFlags((a=>{this.onFeatureFlags(a)}))}initialize(){}onFeatureFlags(t){if(this._is_bot())Ns.$s(cy);else if(!this.Te.disable_web_experiments){if(Ze(this.Ls))return this.Ls=new Map,this.loadIfEnabled(),void this.previewWebExperiment();Ns.$s("applying feature flags",t),t.forEach((n=>{var a;if(this.Ls&&(a=this.Ls)!=null&&a.has(n)){var l,d=this._instance.getFeatureFlag(n),p=(l=this.Ls)==null?void 0:l.get(n);d&&p!=null&&p.variants[d]&&this.Ds(p.name,d,p.variants[d].transforms)}}))}}previewWebExperiment(){var t=Ns.getWindowLocation();if(t!=null&&t.search){var n=ya(t==null?void 0:t.search,"__experiment_id"),a=ya(t==null?void 0:t.search,"__experiment_variant");n&&a&&(Ns.$s("previewing web experiments "+n+" && "+a),this.getWebExperiments((l=>{this.qs(parseInt(n),a,l)}),!1,!0))}}loadIfEnabled(){this.Te.disable_web_experiments||this.getWebExperimentsAndEvaluateDisplayLogic()}getWebExperiments(t,n,a){if(this.Te.disable_web_experiments&&!a)return t([]);var l=this._instance.get_property("$web_experiments");if(l&&!n)return t(l);this._instance._send_request({url:this._instance.requestRouter.endpointFor("api","/api/web_experiments/?token="+this.Te.token),method:"GET",timestampMode:"query",callback:d=>t(d.statusCode===200&&d.json&&d.json.experiments||[])})}qs(t,n,a){var l=a.filter((d=>d.id===t));l&&l.length>0&&(Ns.$s("Previewing web experiment ["+l[0].name+"] with variant ["+n+"]"),this.Ds(l[0].name,n,l[0].variants[n].transforms))}static Ns(t,n){return!Ze(t.conditions)&&Ns.js(t,n)&&Ns.Bs(t)}static js(t,n){var a;if(Ze(t.conditions)||Ze((a=t.conditions)==null?void 0:a.url))return!0;var l=Ns.getWindowLocation();if(l){var d,p,c,u=I1(n,l.href);return(d=t.conditions)==null||!d.url||V5[(p=(c=t.conditions)==null?void 0:c.urlMatchType)!==null&&p!==void 0?p:"icontains"](t.conditions.url,u)}return!1}static getWindowLocation(){return le==null?void 0:le.location}static Bs(t){var n;if(Ze(t.conditions)||Ze((n=t.conditions)==null?void 0:n.utm))return!0;var a=eb();if(a.utm_source){var l,d,p,c,u,v,b,f,x=(l=t.conditions)==null||(l=l.utm)==null||!l.utm_campaign||((d=t.conditions)==null||(d=d.utm)==null?void 0:d.utm_campaign)==a.utm_campaign,C=(p=t.conditions)==null||(p=p.utm)==null||!p.utm_source||((c=t.conditions)==null||(c=c.utm)==null?void 0:c.utm_source)==a.utm_source,A=(u=t.conditions)==null||(u=u.utm)==null||!u.utm_medium||((v=t.conditions)==null||(v=v.utm)==null?void 0:v.utm_medium)==a.utm_medium,E=(b=t.conditions)==null||(b=b.utm)==null||!b.utm_term||((f=t.conditions)==null||(f=f.utm)==null?void 0:f.utm_term)==a.utm_term;return x&&A&&E&&C}return!1}static $s(t){for(var n=arguments.length,a=new Array(n>1?n-1:0),l=1;n>l;l++)a[l-1]=arguments[l];Ee.info("[WebExperiments] "+t,a)}Ds(t,n,a){this._is_bot()?Ns.$s(cy):n!=="control"?a.forEach((l=>{if(l.selector){var d;Ns.$s("applying transform of variant "+n+" for experiment "+t+" ",l);var p=(d=document)==null?void 0:d.querySelectorAll(l.selector);p==null||p.forEach((c=>{var u=c;l.html&&(u.innerHTML=l.html),l.css&&u.setAttribute("style",l.css)}))}})):Ns.$s("Control variants leave the page unmodified.")}_is_bot(){return Is&&this._instance?mb(Is,this.Te.custom_blocked_useragents):void 0}}var mi=Wt("[Conversations]"),fr="Conversations not available yet.",uy="console",lu={featureFlags:class{constructor(s){this.Hs=!1,this.Us=!1,this.zs=!1,this.Vs=!1,this.Ws=!1,this.Zs=!1,this.Gs=!1,this.Qs=!1,this.Js=0,this.Ks=()=>{var t=this.Ys();this.Js=0,t&&this.reloadFeatureFlags()},this._instance=s,this.featureFlagEventHandlers=[],le&&Qt(le,"online",this.Ks)}destroy(){le==null||le.removeEventListener("online",this.Ks)}get Te(){return this._instance.config}get mi(){return this._instance.persistence}Xs(s){return this._instance.get_property(s)}eo(){var s,t;return(s=(t=this.mi)==null?void 0:t._r(this.Te.feature_flag_cache_ttl_ms))!==null&&s!==void 0&&s}ro(){return!!this.eo()&&(this.Qs||this.zs||(this.Qs=!0,gs.warn("Feature flag cache is stale, triggering refresh..."),this.reloadFeatureFlags()),!0)}io(){var s,t=(s=this.Te.evaluation_contexts)!==null&&s!==void 0?s:this.Te.evaluation_environments;return!this.Te.evaluation_environments||this.Te.evaluation_contexts||this.Gs||(gs.warn("evaluation_environments is deprecated. Use evaluation_contexts instead. evaluation_environments will be removed in a future version."),this.Gs=!0),t!=null&&t.length?t.filter((n=>{var a=n&&typeof n=="string"&&n.trim().length>0;return a||gs.error("Invalid evaluation context found:",n,"Expected non-empty string"),a})):[]}no(){return this.io().length>0}so(){var s=this.Te.flag_keys;if(!Ce(s)){if(Xe(s))return s.filter((t=>{var n=t&&typeof t=="string"&&t.trim().length>0;return n||gs.error("Invalid flag key found:",t,"Expected non-empty string"),n}));gs.error("Invalid flag_keys found:",s,"Expected array of non-empty strings")}}initialize(){var s,t,n=this._instance.config,a=(s=(t=n.bootstrap)==null?void 0:t.featureFlags)!==null&&s!==void 0?s:{};if(Object.keys(a).length){var l,d,p=(l=(d=n.bootstrap)==null?void 0:d.featureFlagPayloads)!==null&&l!==void 0?l:{},c=Object.keys(a).filter((v=>!!a[v])).reduce(((v,b)=>(v[b]=a[b]||!1,v)),{}),u=Object.keys(p).filter((v=>c[v])).reduce(((v,b)=>(p[b]&&(v[b]=p[b]),v)),{});this.receivedFeatureFlags({featureFlags:c,featureFlagPayloads:u})}}updateFlags(s,t,n){var a,l,d=n!=null&&n.merge&&(a=this.Xs(gr))!==null&&a!==void 0?a:{},p=n!=null&&n.merge&&(l=this.Xs(Cc))!==null&&l!==void 0?l:{},c=be({},d,s),u=be({},p,t),v={};for(var b of Object.entries(c)){var f=b[0],x=b[1];v[f]={key:f,enabled:o0(x),variant:l0(x),reason:void 0,metadata:Ce(u==null?void 0:u[f])?void 0:{id:0,version:void 0,description:void 0,payload:u[f]}}}this.receivedFeatureFlags({flags:v})}get hasLoadedFlags(){return this.Us}getFlags(){return Object.keys(this.getFlagVariants())}getFlagsWithDetails(){var s=this.Xs(Df),t=this.Xs(ln),n=this.Xs(ra);if(!n&&!t)return s||{};var a=Ht({},s||{}),l=[...new Set([...Object.keys(n||{}),...Object.keys(t||{})])];for(var d of l){var p,c,u=a[d],v=t==null?void 0:t[d],b=Ce(v)?(p=u==null?void 0:u.enabled)!==null&&p!==void 0&&p:!!v,f=Ce(v)?u.variant:typeof v=="string"?v:void 0,x=n==null?void 0:n[d],C=be({},u,{enabled:b,variant:b?f??(u==null?void 0:u.variant):void 0});b!==(u==null?void 0:u.enabled)&&(C.original_enabled=u==null?void 0:u.enabled),f!==(u==null?void 0:u.variant)&&(C.original_variant=u==null?void 0:u.variant),x&&(C.metadata=be({},u==null?void 0:u.metadata,{payload:x,original_payload:u==null||(c=u.metadata)==null?void 0:c.payload})),a[d]=C}return this.Hs||(gs.warn(" Overriding feature flag details!",{flagDetails:s,overriddenPayloads:n,finalDetails:a}),this.Hs=!0),a}getAllFeatureFlags(){var s=this.getFlagVariants(),t=this.getFlagPayloads();return Object.keys(s).map((n=>{var a=s[n];return{key:n,enabled:o0(a),variant:l0(a),payload:a0(t[n])}}))}getFlagVariants(){var s=this.Xs(gr),t=this.Xs(ln);if(!t)return s||{};for(var n=Ht({},s),a=Object.keys(t),l=0;a.length>l;l++)n[a[l]]=t[a[l]];return this.Hs||(gs.warn(" Overriding feature flags!",{enabledFlags:s,overriddenFlags:t,finalFlags:n}),this.Hs=!0),n}getFlagPayloads(){var s=this.Xs(Cc),t=this.Xs(ra);if(!t)return s||{};for(var n=Ht({},s||{}),a=Object.keys(t),l=0;a.length>l;l++)n[a[l]]=t[a[l]];return this.Hs||(gs.warn(" Overriding feature flag payloads!",{flagPayloads:s,overriddenPayloads:t,finalPayloads:n}),this.Hs=!0),n}reloadFeatureFlags(){this.Vs||this.Te.advanced_disable_feature_flags||this.Ys()||this.oo||(this._instance.en.emit("featureFlagsReloading",!0),this.oo=setTimeout((()=>{this.ao()}),5))}lo(){clearTimeout(this.oo),this.oo=void 0}ensureFlagsLoaded(){this.Us||this.zs||this.oo||this.reloadFeatureFlags()}setAnonymousDistinctId(s){this.$anon_distinct_id=s}setReloadingPaused(s){this.Vs=s}ao(s){var t;if(this.lo(),!this._instance.Ur()&&!this.Ys())if(this.zs)this.Ws=!0;else{var n=this.Te.token,a=this.Xs(Po),l={token:n,distinct_id:this._instance.get_distinct_id(),groups:this._instance.getGroups(),$anon_distinct_id:this.$anon_distinct_id,person_properties:be({},((t=this.mi)==null?void 0:t.get_initial_props())||{},this.Xs(pr)||{},{$lib:bt.LIB_NAME,$lib_version:bt.LIB_VERSION}),group_properties:this.Xs(vr),timezone:ab()};$s(a)||Ce(a)||(l.$device_id=a),(s!=null&&s.disableFlags||this.Te.advanced_disable_feature_flags)&&(l.disable_flags=!0),this.no()&&(l.evaluation_contexts=this.io());var d=this.so();Ce(d)||(l.flag_keys=d);var p=!!this.Te.advanced_only_evaluate_survey_feature_flags,c=this._instance.requestRouter.endpointFor("flags","/flags/?v=2"+(this.Te.advanced_only_evaluate_survey_feature_flags?"&only_evaluate_survey_feature_flags=true":""));this.zs=!0,this._instance._send_request({method:"POST",url:c,data:l,compression:this.Te.disable_compression?void 0:zs.Base64,timestampMode:"body",timeout:this.Te.feature_flag_request_timeout_ms,callback:u=>{var v,b,f,x=!0;if(this.uo(u.statusCode),u.statusCode===200&&(this.Ws||(this.$anon_distinct_id=void 0),x=!1),this.zs=!1,!l.disable_flags||this.Ws){this.Zs=!x;var C=[];u.error?u.error instanceof Error?C.push(u.error.name==="AbortError"?"timeout":"connection_error"):C.push("unknown_error"):u.statusCode!==200&&C.push("api_error_"+u.statusCode),(v=u.json)!=null&&v.errorsWhileComputingFlags&&C.push("errors_while_computing_flags");var A,E=!((b=u.json)==null||(b=b.quotaLimited)==null||!b.includes("feature_flags"));E&&C.push("quota_limited"),(f=this.mi)==null||f.register({[Bf]:C}),E?gs.warn("You have hit your feature flags quota limit, and will not be able to load feature flags until the quota is reset. Please visit https://posthog.com/docs/billing/limits-alerts to learn more."):(l.disable_flags||this.receivedFeatureFlags((A=u.json)!==null&&A!==void 0?A:{},x,{partialResponse:p}),this.Ws&&(this.Ws=!1,this.ao()))}}})}}Ys(){return Z1(this.Js,3)}uo(s){this.Js=Q1(s,this.Js,3,(()=>gs.warn("Feature flag requests are failing before receiving an HTTP response; this can happen due to network issues, CORS, browser blocking, or ad blockers. Stopped refreshing feature flags; will try again when connectivity changes.")))}getFeatureFlag(s,t){var n;if(t===void 0&&(t={}),!t.fresh||this.Zs)if(this.Us||this.getFlags()&&this.getFlags().length>0){if(!this.ro()){var a=this.getFeatureFlagResult(s,t);return(n=a==null?void 0:a.variant)!==null&&n!==void 0?n:a==null?void 0:a.enabled}}else gs.warn('getFeatureFlag for key "'+s+af)}getFeatureFlagDetails(s){return this.getFlagsWithDetails()[s]}getFeatureFlagPayload(s){var t=this.getFeatureFlagResult(s,{send_event:!1});return t==null?void 0:t.payload}getFeatureFlagResult(s,t){if(t===void 0&&(t={}),!t.fresh||this.Zs)if(this.Us||this.getFlags()&&this.getFlags().length>0){if(!this.ro()){var n=this.getFlagVariants(),a=s in n,l=n[s],d=this.getFlagPayloads()[s],p=String(l),c=this.Xs(jf)||void 0,u=this.Xs(Uo)||void 0,v=this.Xs(jo)||{};if(this.Te.advanced_feature_flags_dedup_per_session){var b,f=this._instance.get_session_id(),x=this.Xs(Of);f&&f!==x&&(v={},(b=this.mi)==null||b.register({[jo]:v,[Of]:f}))}if((t.send_event||!("send_event"in t))&&(!(s in v)||!v[s].includes(p))){var C,A,E,m,S,_,y,k,R,M,j;Xe(v[s])?v[s].push(p):v[s]=[p],(C=this.mi)==null||C.register({[jo]:v});var T=this.getFeatureFlagDetails(s),D=[...(A=this.Xs(Bf))!==null&&A!==void 0?A:[]];Ce(l)&&D.push("flag_missing");var H={$feature_flag:s,$feature_flag_response:l,$feature_flag_payload:d||null,$feature_flag_request_id:c,$feature_flag_evaluated_at:u,$feature_flag_bootstrapped_response:((E=this.Te.bootstrap)==null||(E=E.featureFlags)==null?void 0:E[s])||null,$feature_flag_bootstrapped_payload:((m=this.Te.bootstrap)==null||(m=m.featureFlagPayloads)==null?void 0:m[s])||null,$used_bootstrap_value:!this.Zs};Ce(T==null||(S=T.metadata)==null?void 0:S.has_experiment)||(H.$feature_flag_has_experiment=T.metadata.has_experiment),Ce(T==null||(_=T.metadata)==null?void 0:_.version)||(H.$feature_flag_version=T.metadata.version);var P,W=(y=T==null||(k=T.reason)==null?void 0:k.description)!==null&&y!==void 0?y:T==null||(R=T.reason)==null?void 0:R.code;W&&(H.$feature_flag_reason=W),T!=null&&(M=T.metadata)!=null&&M.id&&(H.$feature_flag_id=T.metadata.id),Ce(T==null?void 0:T.original_variant)&&Ce(T==null?void 0:T.original_enabled)||(H.$feature_flag_original_response=Ce(T.original_variant)?T.original_enabled:T.original_variant),T!=null&&(j=T.metadata)!=null&&j.original_payload&&(H.$feature_flag_original_payload=T==null||(P=T.metadata)==null?void 0:P.original_payload),D.length&&(H.$feature_flag_error=D.join(",")),this._instance.capture("$feature_flag_called",H)}if(a)return{key:s,enabled:!!l,variant:typeof l=="string"?l:void 0,payload:a0(d)}}}else gs.warn('getFeatureFlagResult for key "'+s+af)}getRemoteConfigPayload(s,t){var n=this.Te.token,a={distinct_id:this._instance.get_distinct_id(),token:n,person_properties:{$lib:bt.LIB_NAME,$lib_version:bt.LIB_VERSION}};this.no()&&(a.evaluation_contexts=this.io());var l=this.so();Ce(l)||(a.flag_keys=l),this._instance._send_request({method:"POST",url:this._instance.requestRouter.endpointFor("flags","/flags/?v=2"),data:a,compression:this.Te.disable_compression?void 0:zs.Base64,timestampMode:"body",timeout:this.Te.feature_flag_request_timeout_ms,callback(d){var p,c=(p=d.json)==null?void 0:p.featureFlagPayloads;t((c==null?void 0:c[s])||void 0)}})}isFeatureEnabled(s,t){if(t===void 0&&(t={}),t.fresh&&!this.Zs)return t.defaultValue;if(!(this.Us||this.getFlags()&&this.getFlags().length>0))return gs.warn('isFeatureEnabled for key "'+s+af),t.defaultValue;var n=this.getFeatureFlag(s,t);return Ce(n)?t.defaultValue:!!n}addFeatureFlagsHandler(s){this.featureFlagEventHandlers.push(s)}removeFeatureFlagsHandler(s){this.featureFlagEventHandlers=this.featureFlagEventHandlers.filter((t=>t!==s))}receivedFeatureFlags(s,t,n){if(this.mi){this.Us=!0;var a=this.getFlagVariants(),l=this.getFlagPayloads(),d=this.getFlagsWithDetails();(function(p,c,u,v,b,f){u===void 0&&(u={}),v===void 0&&(v={}),b===void 0&&(b={});var x=(T=>{var D=T.flags;return D?(T.featureFlags=Object.fromEntries(Object.keys(D).map((H=>{var P;return[H,(P=D[H].variant)!==null&&P!==void 0?P:D[H].enabled]}))),T.featureFlagPayloads=Object.fromEntries(Object.keys(D).filter((H=>D[H].enabled)).filter((H=>{var P;return(P=D[H].metadata)==null?void 0:P.payload})).map((H=>{var P;return[H,(P=D[H].metadata)==null?void 0:P.payload]})))):T.featureFlags&&gs.warn("Using an older version of the feature flags endpoint. Please upgrade your PostHog server to the latest version"),T})(p),C=x.flags,A=x.featureFlags,E=x.featureFlagPayloads;if(A){var m=p.requestId,S=p.evaluatedAt;if(Xe(A)){gs.warn("v1 of the feature flags endpoint is deprecated. Please use the latest version.");var _={};if(A)for(var y=0;A.length>y;y++)_[A[y]]=!0;c&&c.register({[xc]:A,[gr]:_,[$c]:!1})}else{var k=A,R=E,M=C;if(f!=null&&f.partialResponse)k=be({},u,k),R=be({},v,R),M=be({},b,M);else if(p.errorsWhileComputingFlags)if(C){var j=new Set(Object.keys(C).filter((T=>{var D;return!((D=C[T])!=null&&D.failed)})));k=be({},u,Object.fromEntries(Object.entries(k).filter((T=>j.has(T[0]))))),R=be({},v,Object.fromEntries(Object.entries(R||{}).filter((T=>j.has(T[0]))))),M=be({},b,Object.fromEntries(Object.entries(M||{}).filter((T=>j.has(T[0])))))}else k=be({},u,k),R=be({},v,R),M=be({},b,M);c&&c.register(be({[xc]:Object.keys(ly(k)),[gr]:k||{},[Cc]:R||{},[Df]:M||{},[$c]:p.minimalFlagCalledEvents===!0},m?{[jf]:m}:{},S?{[Uo]:S}:{}))}}})(s,this.mi,a,l,d,n),t||(this.Qs=!1),this.ho(t)}}override(s,t){t===void 0&&(t=!1),gs.warn("override is deprecated. Please use overrideFeatureFlags instead."),this.overrideFeatureFlags({flags:s,suppressWarning:t})}overrideFeatureFlags(s){if(!this._instance.__loaded||!this.mi)return gs.uninitializedWarning("posthog.featureFlags.overrideFeatureFlags");if(s===!1)return this.mi.unregister(ln),this.mi.unregister(ra),this.ho(),dr.info("All overrides cleared");if(Xe(s)){var t=oy(s);return this.mi.register({[ln]:t}),this.ho(),dr.info("Flag overrides set",{flags:s})}if(s&&typeof s=="object"&&("flags"in s||"payloads"in s)){var n,a=s;if(this.Hs=!!((n=a.suppressWarning)!==null&&n!==void 0&&n),"flags"in a){if(a.flags===!1)this.mi.unregister(ln),dr.info("Flag overrides cleared");else if(a.flags){if(Xe(a.flags)){var l=oy(a.flags);this.mi.register({[ln]:l})}else this.mi.register({[ln]:a.flags});dr.info("Flag overrides set",{flags:a.flags})}}return"payloads"in a&&(a.payloads===!1?(this.mi.unregister(ra),dr.info("Payload overrides cleared")):a.payloads&&(this.mi.register({[ra]:a.payloads}),dr.info("Payload overrides set",{payloads:a.payloads}))),void this.ho()}if(s&&typeof s=="object")return this.mi.register({[ln]:s}),this.ho(),dr.info("Flag overrides set",{flags:s});gs.warn("Invalid overrideOptions provided to overrideFeatureFlags",{overrideOptions:s})}onFeatureFlags(s){if(this.addFeatureFlagsHandler(s),this.Us){var t=this.do(),n=t.flags,a=t.flagVariants;try{s(n,a)}catch(l){gs.error("Error while running feature flags callback",l)}}return()=>this.removeFeatureFlagsHandler(s)}updateEarlyAccessFeatureEnrollment(s,t,n){var a,l=(this.Xs(To)||[]).find((u=>u.flagKey===s)),d={["$feature_enrollment/"+s]:t},p={$feature_flag:s,$feature_enrollment:t,$set:d};l&&(p.$early_access_feature_name=l.name),n&&(p.$feature_enrollment_stage=n),this._instance.capture("$feature_enrollment_update",p),this.setPersonPropertiesForFlags(d,!1);var c=be({},this.getFlagVariants(),{[s]:t});(a=this.mi)==null||a.register({[xc]:Object.keys(ly(c)),[gr]:c}),this.ho()}getEarlyAccessFeatures(s,t,n){t===void 0&&(t=!1);var a=this.Xs(To),l=n?"&"+n.map((d=>"stage="+d)).join("&"):"";if(a&&!t)return s(a);this._instance._send_request({url:this._instance.requestRouter.endpointFor("api","/api/early_access_features/?token="+this.Te.token+l),method:"GET",timestampMode:"query",callback:d=>{var p,c;if(d.json){var u=d.json.earlyAccessFeatures;return(p=this.mi)==null||p.unregister(To),(c=this.mi)==null||c.register({[To]:u}),s(u)}}})}do(){var s=this.getFlags(),t=this.getFlagVariants();return{flags:s.filter((n=>t[n])),flagVariants:Object.keys(t).filter((n=>t[n])).reduce(((n,a)=>(n[a]=t[a],n)),{})}}ho(s){var t=this.do(),n=t.flags,a=t.flagVariants;this.featureFlagEventHandlers.forEach((l=>{try{l(n,a,{errorsLoading:s})}catch(d){gs.error("Error while running feature flags callback",d)}}))}setPersonPropertiesForFlags(s,t){t===void 0&&(t=!0);var n=this.Xs(pr)||{},a=(s==null?void 0:s.$set)||(s!=null&&s.$set_once?{}:s),l=s==null?void 0:s.$set_once,d={};if(l)for(var p in l)({}).hasOwnProperty.call(l,p)&&(p in n||(d[p]=l[p]));this._instance.register({[pr]:be({},n,d,a)}),t&&this._instance.reloadFeatureFlags()}unsetPersonPropertiesForFlags(s,t){t===void 0&&(t=!0);var n=be({},this.Xs(pr)||{});s.forEach((a=>{delete n[a]})),this._instance.register({[pr]:n}),t&&this._instance.reloadFeatureFlags()}resetPersonPropertiesForFlags(s){s===void 0&&(s=!0),this._instance.unregister(pr),s&&this._instance.reloadFeatureFlags()}setGroupPropertiesForFlags(s,t){t===void 0&&(t=!0);var n=this.Xs(vr)||{};Object.keys(n).length!==0&&Object.keys(n).forEach((a=>{n[a]=be({},n[a],s[a]),delete s[a]})),this._instance.register({[vr]:be({},n,s)}),t&&this._instance.reloadFeatureFlags()}resetGroupPropertiesForFlags(s){if(s){var t=this.Xs(vr)||{};this._instance.register({[vr]:be({},t,{[s]:{}})})}else this._instance.unregister(vr)}reset(){this.Us=!1,this.zs=!1,this.Vs=!1,this.Ws=!1,this.Zs=!1,this.$anon_distinct_id=void 0,this.lo(),this.Hs=!1,this.Js=0}}},Y5={sessionRecording:class{get Te(){return this._instance.config}get mi(){return this._instance.persistence}get started(){var s;return!((s=this.co)==null||!s.isStarted)}get status(){var s,t;return this.vo===xo||this.vo===gc?this.vo:(s=(t=this.co)==null?void 0:t.status)!==null&&s!==void 0?s:this.vo}constructor(s){if(this._forceAllowLocalhostNetworkCapture=!1,this.vo=ty,this.fo=void 0,this._instance=s,!this._instance.sessionManager)throw an.error("started without valid sessionManager"),new Error(Jf+" started without valid sessionManager. This is a bug.");if(this.Te.cookieless_mode===hn)throw new Error(Jf+' cannot be used with cookieless_mode="always"')}initialize(){this.startIfEnabledOrStop()}get po(){var s,t=!((s=this._instance.get_property(mr))==null||!s.enabled),n=!this.Te.disable_session_recording,a=this.Te.disable_session_recording||this._instance.consent.isOptedOut();return le&&t&&n&&!a}startIfEnabledOrStop(s){var t;if(!this.po||(t=this.co)==null||!t.isStarted){var n=!Ce(Object.assign)&&!Ce(Array.from);this.po&&n?(this.mo(s),an.info("starting")):(this.vo=ty,this.stopRecording())}}mo(s){var t,n,a;this.po&&(this.vo!==xo&&this.vo!==gc&&(this.vo=sy),ze!=null&&(t=ze.__PosthogExtensions__)!=null&&(t=t.rrweb)!=null&&t.record&&(n=ze.__PosthogExtensions__)!=null&&n.initSessionRecording?this.yo(s):(a=ze.__PosthogExtensions__)==null||a.loadExternalDependency==null||a.loadExternalDependency(this._instance,this.bo,(l=>{if(l)return an.error("could not load recorder",l);this.yo(s)})))}stopRecording(){var s,t;(s=this.fo)==null||s.call(this),this.fo=void 0,(t=this.co)==null||t.stop()}_o(){var s,t;(s=this.fo)==null||s.call(this),this.fo=void 0,(t=this.co)==null||t.discard()}wo(){var s,t;(s=this.mi)==null||s.unregister(Sp),(t=this.mi)==null||t.unregister(T1)}xo(s,t){if(Ze(s))return null;var n,a=Rs(s)?s:parseFloat(s);return typeof(n=a)!="number"||!Number.isFinite(n)||0>n||n>1?(an.warn(t+" must be between 0 and 1. Ignoring invalid value:",s),null):a}ko(s){if(this.mi){var t,n,a=this.mi,l=()=>{var d,p=s.sessionRecording===!1?void 0:s.sessionRecording,c=this.xo((d=this.Te.session_recording)==null?void 0:d.sampleRate,"session_recording.sampleRate"),u=this.xo(p==null?void 0:p.sampleRate,"remote config sampleRate"),v=c??u;Ze(v)&&this.wo();var b=p==null?void 0:p.minimumDurationMilliseconds;a.register({[mr]:be({cache_timestamp:Date.now(),enabled:!!p},p,{networkPayloadCapture:be({capturePerformance:s.capturePerformance},p==null?void 0:p.networkPayloadCapture),canvasRecording:{enabled:p==null?void 0:p.recordCanvas,fps:p==null?void 0:p.canvasFps,quality:p==null?void 0:p.canvasQuality},sampleRate:v,minimumDurationMilliseconds:Ce(b)?null:b,endpoint:p==null?void 0:p.endpoint,triggerMatchType:p==null?void 0:p.triggerMatchType,masking:p==null?void 0:p.masking,urlTriggers:p==null?void 0:p.urlTriggers,version:p==null?void 0:p.version,triggerGroups:p==null?void 0:p.triggerGroups})})};l(),(t=this.fo)==null||t.call(this),this.fo=(n=this._instance.sessionManager)==null?void 0:n.onSessionId(l)}}onRemoteConfig(s){var t=s.ok?s.config:void 0;return t&&"sessionRecording"in t?t.sessionRecording===!1?(this.ko(t),void this._o()):(this.ko(t),void this.startIfEnabledOrStop()):(this.vo===xo&&(this.vo=gc,an.warn("config refresh failed, recording will not start until page reload")),void this.startIfEnabledOrStop())}log(s,t){var n;t===void 0&&(t="log"),(n=this.co)!=null&&n.log?this.co.log(s,t):an.warn("log called before recorder was ready")}get bo(){var s,t,n=(s=this._instance)==null||(s=s.persistence)==null?void 0:s.get_property(mr);return(n==null||(t=n.scriptConfig)==null?void 0:t.script)||"lazy-recorder"}So(){var s,t,n=this._instance.get_property(mr);if(!n)return!1;try{t=typeof n=="object"?n:JSON.parse(n)}catch(l){return an.warn("persisted remote config for session recording is invalid and will be ignored",l),!1}var a=(s=t.cache_timestamp)!==null&&s!==void 0?s:Date.now();return 36e5>=Date.now()-a}yo(s){var t,n;if((t=ze.__PosthogExtensions__)==null||!t.initSessionRecording)return an.warn("Called on script loaded before session recording is available. This can be caused by adblockers."),void this._instance.register_for_session({[O1]:!0});if(this.co||(this.co=(n=ze.__PosthogExtensions__)==null?void 0:n.initSessionRecording(this._instance),this.co._forceAllowLocalhostNetworkCapture=this._forceAllowLocalhostNetworkCapture),!this.So())return this.vo===gc||this.vo===xo?void 0:(this.vo=xo,an.info("persisted remote config is stale, requesting fresh config before starting"),void new ob(this._instance).load());this.vo=sy,this.co.start(s)}onRRwebEmit(s){var t;(t=this.co)==null||t.onRRwebEmit==null||t.onRRwebEmit(s)}overrideLinkedFlag(){var s,t;this.co||(t=this.mi)==null||t.register({[R1]:!0}),(s=this.co)==null||s.overrideLinkedFlag()}overrideSampling(){var s,t;this.co||(t=this.mi)==null||t.register({[A1]:!0}),(s=this.co)==null||s.overrideSampling()}overrideTrigger(s){var t,n;this.co||(n=this.mi)==null||n.register({[s==="url"?M1:D1]:!0}),(t=this.co)==null||t.overrideTrigger(s)}get sdkDebugProperties(){var s;return((s=this.co)==null?void 0:s.sdkDebugProperties)||{$recording_status:this.status}}tryAddCustomEvent(s,t){var n;return!((n=this.co)==null||!n.tryAddCustomEvent(s,t))}}},K5={autocapture:class{constructor(s){this.Co=!1,this.Mo=null,this.Io=!1,this.To=!1,this.instance=s,this.rageclicks=new Z0(s.config.rageclick),this.Eo=null}initialize(){this.startIfEnabled()}get Te(){var s,t,n=Ut(this.instance.config.autocapture)?this.instance.config.autocapture:{};return n.url_allowlist=(s=n.url_allowlist)==null?void 0:s.map((a=>new RegExp(a))),n.url_ignorelist=(t=n.url_ignorelist)==null?void 0:t.map((a=>new RegExp(a))),n}Ro(){if(this.isBrowserSupported()){if(le&&Ae){var s=n=>{n=n||(le==null?void 0:le.event);try{this.Po(n)}catch(a){ef.error("Failed to capture event",a)}};if(Qt(Ae,"submit",s,{capture:!0}),Qt(Ae,"change",s,{capture:!0}),Qt(Ae,"click",s,{capture:!0}),this.Te.capture_copied_text){var t=n=>{n=n||(le==null?void 0:le.event);try{this.Po(n,Qd)}catch(a){ef.error("Failed to capture copy/cut event",a)}};Qt(Ae,"copy",t,{capture:!0}),Qt(Ae,"cut",t,{capture:!0})}}}else ef.info("Disabling Automatic Event Collection because this browser is not supported")}startIfEnabled(){this.isEnabled&&!this.Co&&(this.Ro(),this.Co=!0)}onRemoteConfig(s){if(this.Io=!0,s.ok){var t=s.config;t.elementsChainAsString&&(this.To=t.elementsChainAsString);var n=t.autocapture_opt_out;Di(n)&&(this.instance.persistence&&this.instance.persistence.register({[Cf]:n}),this.Mo=n),this.startIfEnabled()}else this.startIfEnabled()}setElementSelectors(s){this.Eo=s}getElementSelectors(s){var t,n=[];return(t=this.Eo)==null||t.forEach((a=>{var l=Ae==null?void 0:Ae.querySelectorAll(a);l==null||l.forEach((d=>{s===d&&n.push(a)}))})),n}get isEnabled(){var s,t,n=(s=this.instance.persistence)==null?void 0:s.props[Cf],a=this.Mo,l=this.instance.Ur()&&!this.Io;if($s(a)&&!Di(n)&&!l)return!1;var d=(t=this.Mo)!==null&&t!==void 0?t:!!n;return!!this.instance.config.autocapture&&!d}Po(s,t){if(t===void 0&&(t="$autocapture"),this.isEnabled){var n,a=Pd(s);P1(a)&&(a=a.parentNode||null),t==="$autocapture"&&s.type==="click"&&s instanceof MouseEvent&&this.instance.config.rageclick&&(n=this.rageclicks)!=null&&n.isRageClick(s.clientX,s.clientY,s.timeStamp||new Date().getTime())&&A0(a,this.instance.config.rageclick)&&this.Po(s,"$rageclick");var l=t===Qd;if(a&&(function(f,x,C,A,E,m){var S;if(!le||kp(f)||C!=null&&C.url_allowlist&&!E0(C.url_allowlist,m)||C!=null&&C.url_ignorelist&&E0(C.url_ignorelist,m))return!1;if(C!=null&&C.dom_event_allowlist){var _=C.dom_event_allowlist;if(_&&!_.some((T=>x.type===T)))return!1}var y=V1(f,A),k=y.parentIsUsefulElement,R=y.targetElementList;if(!(function(T,D){var H=D==null?void 0:D.element_allowlist;if(Ce(H))return!0;var P,W=function(Y){if(H.some((J=>Y.tagName.toLowerCase()===J)))return{v:!0}};for(var U of T)if(P=W(U))return P.v;return!1})(R,C)||!Uf(R,C==null?void 0:C.css_selector_allowlist)||Uf(R,(S=C==null?void 0:C.css_selector_ignorelist)!==null&&S!==void 0?S:V4))return!1;try{var M=le.getComputedStyle(f);if(M&&M.getPropertyValue("cursor")==="pointer"&&x.type==="click")return!0}catch{}var j=f.tagName.toLowerCase();switch(j){case"html":return!1;case"form":return(E||["submit"]).indexOf(x.type)>=0;case"input":case"select":case"textarea":return(E||["change","click"]).indexOf(x.type)>=0;default:return k?(E||["click"]).indexOf(x.type)>=0:(E||["click"]).indexOf(x.type)>=0&&(Ep.indexOf(j)>-1||f.getAttribute("contenteditable")==="true")}})(a,s,this.Te,l,l?["copy","cut"]:void 0,this.instance)){var d=I5(a,{e:s,maskAllElementAttributes:this.instance.config.mask_all_element_attributes,maskAllText:this.instance.config.mask_all_text,elementAttributeIgnoreList:this.Te.element_attribute_ignorelist,elementsChainAsString:this.To,disableCaptureUrlHashes:this.instance.config.disable_capture_url_hashes}),p=d.props;if(d.explicitNoCapture)return!1;var c=this.getElementSelectors(a);if(c&&c.length>0&&(p.$element_selectors=c),t===Qd){var u,v=q1(le==null||(u=le.getSelection())==null?void 0:u.toString()),b=s.type||"clipboard";if(!v)return!1;p.$selected_content=v,p.$copy_type=b}return this.instance.capture(t,p),!0}}}isBrowserSupported(){return ni(Ae==null?void 0:Ae.querySelectorAll)}},historyAutocapture:class{constructor(s){var t;this._instance=s,this.Oo=(le==null||(t=le.location)==null?void 0:t.pathname)||""}initialize(){this.startIfEnabled()}get isEnabled(){return this._instance.config.capture_pageview==="history_change"}startIfEnabled(){this.isEnabled&&(Ee.info("History API monitoring enabled, starting..."),this.monitorHistoryChanges())}stop(){this.Fo&&this.Fo(),this.Fo=void 0,Ee.info("History API monitoring stopped")}monitorHistoryChanges(){le&&le.history&&(this.Ao("pushState"),this.Ao("replaceState"),this.$o())}Ao(s){var t;if(le&&((t=le.history[s])==null||!t.__posthog_wrapped__)){var n=this;(function(a,l,d){try{if(!(l in a))return Q0;var p={next:a[l]},c=d((function(){for(var u=arguments.length,v=new Array(u),b=0;u>b;b++)v[b]=arguments[b];return p.next.apply(this,v)}));return ni(c)&&(c.prototype=c.prototype||{},Object.defineProperties(c,{__posthog_wrapped__:{enumerable:!1,value:!0},__posthog_layer__:{enumerable:!1,value:p}})),a[l]=c,()=>{if(a[l]!==c)for(var u=a[l];ni(u)&&u.__posthog_layer__;){var v=u.__posthog_layer__;if(v.next===c)return void(v.next=p.next);u=v.next}else a[l]=p.next}}catch{return Q0}})(le.history,s,(a=>function(l,d,p){a.call(this,l,d,p),n.Lo(s)}))}}Lo(s){try{var t,n=le==null||(t=le.location)==null?void 0:t.pathname;if(!n)return;n!==this.Oo&&this.isEnabled&&this._instance.capture(aa,{navigation_type:s}),this.Oo=n}catch(a){Ee.error("Error capturing "+s+" pageview",a)}}$o(){if(!this.Fo){var s=()=>{this.Lo("popstate")};Qt(le,"popstate",s),this.Fo=()=>{le&&le.removeEventListener("popstate",s)}}}},heatmaps:class{get Te(){return this.instance.config}constructor(s){var t;this.Do=!1,this.Co=!1,this.No=null,this.instance=s,this.Do=!((t=this.instance.persistence)==null||!t.props[Ef]),this.rageclicks=new Z0(s.config.rageclick)}initialize(){this.startIfEnabled()}get flushIntervalMilliseconds(){var s=5e3;return Ut(this.Te.capture_heatmaps)&&this.Te.capture_heatmaps.flush_interval_milliseconds&&(s=this.Te.capture_heatmaps.flush_interval_milliseconds),s}get isEnabled(){return Ze(this.Te.capture_heatmaps)?Ze(this.Te.enable_heatmaps)?this.Do:this.Te.enable_heatmaps:this.Te.capture_heatmaps!==!1}startIfEnabled(){if(this.isEnabled){if(this.Co)return;P5.info("starting..."),this.qo(),this.xe()}else{var s;clearInterval((s=this.No)!==null&&s!==void 0?s:void 0),this.jo(),this.getAndClearBuffer()}}onRemoteConfig(s){if(s.ok){var t=s.config;if("heatmaps"in t){var n=!!t.heatmaps;this.instance.persistence&&this.instance.persistence.register({[Ef]:n}),this.Do=n,this.startIfEnabled()}}}getAndClearBuffer(){var s=this.R;return this.R=void 0,s}Bo(s){sf(s.originalEvent)&&this.pe(s.originalEvent,"deadclick")}xe(){this.No&&clearInterval(this.No),this.No=(Ae==null?void 0:Ae.visibilityState)==="visible"?setInterval(this.oi.bind(this),this.flushIntervalMilliseconds):null}qo(){le&&Ae&&(this.Ho=this.oi.bind(this),Qt(le,Wc,this.Ho),this.Uo=s=>this.pe(s||(le==null?void 0:le.event)),Qt(Ae,"click",this.Uo,{capture:!0}),this.zo=s=>this.Vo(s||(le==null?void 0:le.event)),Qt(Ae,"mousemove",this.zo,{capture:!0}),this.Wo=new O0(this.instance,e5,this.Bo.bind(this)),this.Wo.startIfEnabledOrStop(),this.Zo=this.xe.bind(this),Qt(Ae,qc,this.Zo),this.Co=!0)}jo(){var s;le&&Ae&&(this.Ho&&le.removeEventListener(Wc,this.Ho),this.Uo&&Ae.removeEventListener("click",this.Uo,{capture:!0}),this.zo&&Ae.removeEventListener("mousemove",this.zo,{capture:!0}),this.Zo&&Ae.removeEventListener(qc,this.Zo),clearTimeout(this.Go),(s=this.Wo)==null||s.stop(),this.Co=!1)}Qo(s,t){var n=this.instance.scrollManager.scrollY(),a=this.instance.scrollManager.scrollX(),l=this.instance.scrollManager.scrollElement(),d=(function(p,c,u){for(var v=p;v&&Fn(v)&&!ri(v,"body");){if(v===u)return!1;var b=void 0;try{var f,x,C;b=(f=(x=(C=v.ownerDocument)==null?void 0:C.defaultView)!==null&&x!==void 0?x:le)==null?void 0:f.getComputedStyle(v).position}catch{return!1}if(Ye(c,b))return!0;v=W1(v)}return!1})(Pd(s),["fixed","sticky"],l);return{x:s.clientX+(d?0:a),y:s.clientY+(d?0:n),target_fixed:d,type:t}}pe(s,t){var n;if(t===void 0&&(t="click"),!C0(s.target)&&sf(s)){var a=this.Qo(s,t);(n=this.rageclicks)!=null&&n.isRageClick(s.clientX,s.clientY,new Date().getTime())&&A0(Pd(s),this.instance.config.rageclick)&&this.Wt(be({},a,{type:"rageclick"})),this.Wt(a)}}Vo(s){!C0(s.target)&&sf(s)&&(clearTimeout(this.Go),this.Go=setTimeout((()=>{this.Wt(this.Qo(s,"mousemove"))}),500))}Wt(s){if(le){var t=this.Te.disable_capture_url_hashes?Un(le.location.href):le.location.href,n=this.Te.custom_personal_data_properties,a=this.Te.mask_personal_data_properties?[...ba,...n||[]]:[],l=qo(t,a,Wo);this.R=this.R||{},this.R[l]||(this.R[l]=[]),this.R[l].push(s)}}oi(){this.R&&!$n(this.R)&&this.instance.capture("$$heatmap",{$heatmap_data:this.getAndClearBuffer()})}},deadClicksAutocapture:O0,webVitalsAutocapture:class{constructor(s){var t;this.Do=!1,this.Co=!1,this.R={url:void 0,metrics:[],firstMetricTimestamp:void 0},this.Jo=()=>{clearTimeout(this.Ko),this.R.metrics.length!==0&&(this._instance.capture("$web_vitals",this.R.metrics.reduce(((n,a)=>be({},n,{["$web_vitals_"+a.name+"_event"]:be({},a),["$web_vitals_"+a.name+"_value"]:a.value})),{})),this.R={url:void 0,metrics:[],firstMetricTimestamp:void 0})},this.Yo=n=>{var a;this.R=this.R||{url:void 0,metrics:[],firstMetricTimestamp:void 0};var l=this.Xo();if(!Ce(l))if(Ze(n==null?void 0:n.name)||Ze(n==null?void 0:n.value))hr.error("Invalid metric received",n);else if(!this.ta||this.ta>n.value){this.R.url!==l&&(this.Jo(),this.Ko=setTimeout(this.Jo,this.flushToCaptureTimeoutMs)),Ce(this.R.url)&&(this.R.url=l),this.R.firstMetricTimestamp=Ce(this.R.firstMetricTimestamp)?Date.now():this.R.firstMetricTimestamp,n.attribution&&n.attribution.interactionTargetElement&&(n.attribution.interactionTargetElement=void 0);var d=(a=this._instance.sessionManager)==null?void 0:a.checkAndGetSessionAndWindowId(!0),p=be({},n,{$current_url:l,timestamp:Date.now()});Ce(d)||(p.$session_id=d.sessionId,p.$window_id=d.windowId),this.R.metrics.push(p),this.R.metrics.length===this.allowedMetrics.length&&this.Jo()}else hr.error("Ignoring metric with value >= "+this.ta,n)},this.ea=()=>{if(!this.Co){var n,a,l,d,p=ze.__PosthogExtensions__;if(!Ce(p)&&!Ce(p.postHogWebVitalsCallbacks)){var c=p.postHogWebVitalsCallbacks;n=c.onLCP,a=c.onCLS,l=c.onFCP,d=c.onINP}n&&a&&l&&d?(this.allowedMetrics.indexOf("LCP")>-1&&n(this.Yo.bind(this)),this.allowedMetrics.indexOf("CLS")>-1&&a(this.Yo.bind(this)),this.allowedMetrics.indexOf("FCP")>-1&&l(this.Yo.bind(this)),this.allowedMetrics.indexOf("INP")>-1&&d(this.Yo.bind(this)),this.Co=!0):hr.error("web vitals callbacks not loaded - not starting")}},this._instance=s,this.Do=!((t=this._instance.persistence)==null||!t.props[Rf]),this.startIfEnabled()}get ra(){return this._instance.config.capture_performance}get allowedMetrics(){var s,t,n=Ut(this.ra)?(s=this.ra)==null?void 0:s.web_vitals_allowed_metrics:void 0;return Ze(n)?((t=this._instance.persistence)==null?void 0:t.props[Mf])||["CLS","FCP","INP","LCP"]:n}get flushToCaptureTimeoutMs(){return(Ut(this.ra)?this.ra.web_vitals_delayed_flush_ms:void 0)||5e3}get useAttribution(){var s=Ut(this.ra)?this.ra.web_vitals_attribution:void 0;return s!=null&&s}get ta(){var s=Ut(this.ra)&&Rs(this.ra.__web_vitals_max_value)?this.ra.__web_vitals_max_value:ey;return s>0&&6e4>=s?ey:s}get isEnabled(){var s=ls==null?void 0:ls.protocol;if(s!=="http:"&&s!=="https:")return hr.info("Web Vitals are disabled on non-http/https protocols"),!1;var t=Ut(this.ra)?this.ra.web_vitals:Di(this.ra)?this.ra:void 0;return Di(t)?t:this.Do}startIfEnabled(){this.isEnabled&&!this.Co&&(hr.info("enabled, starting..."),this.tr(this.ea))}onRemoteConfig(s){if(s.ok){var t=s.config;if("capturePerformance"in t){var n=Ut(t.capturePerformance)&&!!t.capturePerformance.web_vitals,a=Ut(t.capturePerformance)?t.capturePerformance.web_vitals_allowed_metrics:void 0;this._instance.persistence&&(this._instance.persistence.register({[Rf]:n}),this._instance.persistence.register({[Mf]:a})),this.Do=n,this.startIfEnabled()}}}tr(s){var t,n;(t=ze.__PosthogExtensions__)!=null&&t.postHogWebVitalsCallbacks?s():(n=ze.__PosthogExtensions__)==null||n.loadExternalDependency==null||n.loadExternalDependency(this._instance,this.useAttribution?"web-vitals-with-attribution":"web-vitals",(a=>{a?hr.error("failed to load script",a):s()}))}Xo(){var s=le?this._instance.config.disable_capture_url_hashes?Un(le.location.href):le.location.href:void 0;if(s){var t=this._instance.config.custom_personal_data_properties,n=this._instance.config.mask_personal_data_properties?[...ba,...t||[]]:[];return qo(s,n,Wo)}hr.error("Could not determine current URL")}}},X5={exceptionObserver:class{constructor(s){var t;this.ea=()=>{var n;if(le&&this.isEnabled&&(n=ze.__PosthogExtensions__)!=null&&n.errorWrappingFunctions){var a=ze.__PosthogExtensions__.errorWrappingFunctions.wrapOnError,l=ze.__PosthogExtensions__.errorWrappingFunctions.wrapUnhandledRejection,d=ze.__PosthogExtensions__.errorWrappingFunctions.wrapConsoleError;try{!this.ia&&this.Te.capture_unhandled_errors&&(this.ia=a(this.captureException.bind(this))),!this.na&&this.Te.capture_unhandled_rejections&&(this.na=l(this.captureException.bind(this))),!this.sa&&this.Te.capture_console_errors&&(this.sa=d(this.captureException.bind(this)))}catch(p){wo.error("failed to start",p),this.oa()}}},this._instance=s,this.aa=!((t=this._instance.persistence)==null||!t.props[kf]),this.la=new K3(be({},(function(n){var a,l,d,p;return n===void 0&&(n={}),{refillRate:(a=(l=n.exceptionRateLimiterRefillRate)!==null&&l!==void 0?l:n.__exceptionRateLimiterRefillRate)!==null&&a!==void 0?a:1,bucketSize:(d=(p=n.exceptionRateLimiterBucketSize)!==null&&p!==void 0?p:n.__exceptionRateLimiterBucketSize)!==null&&d!==void 0?d:10}})(this._instance.config.error_tracking),{refillInterval:1e4,it:wo})),this.Te=this.ua(),this.startIfEnabledOrStop()}ua(){var s=this._instance.config.capture_exceptions,t={capture_unhandled_errors:!1,capture_unhandled_rejections:!1,capture_console_errors:!1};return Ut(s)?t=be({},t,s):(Ce(s)?this.aa:s)&&(t=be({},t,{capture_unhandled_errors:!0,capture_unhandled_rejections:!0})),t}get isEnabled(){return this.Te.capture_console_errors||this.Te.capture_unhandled_errors||this.Te.capture_unhandled_rejections}startIfEnabledOrStop(){this.isEnabled?(wo.info("enabled"),this.oa(),this.tr(this.ea)):this.oa()}tr(s){var t,n;(t=ze.__PosthogExtensions__)!=null&&t.errorWrappingFunctions?s():(n=ze.__PosthogExtensions__)==null||n.loadExternalDependency==null||n.loadExternalDependency(this._instance,"exception-autocapture",(a=>{if(a)return wo.error("failed to load script",a);s()}))}oa(){var s,t,n;(s=this.ia)==null||s.call(this),this.ia=void 0,(t=this.na)==null||t.call(this),this.na=void 0,(n=this.sa)==null||n.call(this),this.sa=void 0}onRemoteConfig(s){if(s.ok){var t=s.config;"autocaptureExceptions"in t&&(this.aa=!!t.autocaptureExceptions||!1,this._instance.persistence&&this._instance.persistence.register({[kf]:this.aa}),this.Te=this.ua(),this.startIfEnabledOrStop())}}onConfigChange(){this.Te=this.ua()}captureException(s){var t,n,a,l=(t=s==null||(n=s.$exception_list)==null||(n=n[0])==null?void 0:n.type)!==null&&t!==void 0?t:"Exception";this.la.consumeRateLimit(l)?wo.info("Skipping exception capture because of client rate limiting.",{exception:l}):(a=this._instance.exceptions)==null||a.sendExceptionEvent(s)}},exceptions:class{constructor(s){var t,n;this.ha=[],this.da=new d4([new b4,new R4,new w4,new S4,new T4,new k4,new C4,new A4],(function(a){for(var l=arguments.length,d=new Array(l>1?l-1:0),p=1;l>p;p++)d[p-1]=arguments[p];return function(c,u){u===void 0&&(u=0);for(var v=[],b=c.split(`
454
+ `),f=u;b.length>f;f++){var x=b[f];if(1024>=x.length){var C=b0.test(x)?x.replace(b0,"$1"):x;if(!C.match(/\S*Error: /)){for(var A of d){var E=A(C,a);if(E){v.push(E);break}}if(v.length>=50)break}}}return(function(m){if(!m.length)return[];var S=Array.from(m);return S.reverse(),S.slice(0,50).map((_=>{return be({},_,{filename:_.filename||(y=S,y[y.length-1]||{}).filename,function:_.function||ma});var y}))})(v)}})("web:javascript",_4,y4)),this._instance=s,this.ha=(t=(n=this._instance.persistence)==null?void 0:n.get_property(Tf))!==null&&t!==void 0?t:[],this.ca=Ic(this.va()),this.fa=new D4(this.ca)}onConfigChange(){this.ca=Ic(this.va()),this.fa.setConfig(this.ca)}onRemoteConfig(s){var t,n,a;if(s.ok){var l=s.config;if("errorTracking"in l){var d=(t=(n=l.errorTracking)==null?void 0:n.suppressionRules)!==null&&t!==void 0?t:[],p=(a=l.errorTracking)==null?void 0:a.captureExtensionExceptions;this.ha=d,this._instance.persistence&&this._instance.persistence.register({[Tf]:this.ha,[Af]:p})}}}get pa(){var s,t=!!this._instance.get_property(Af),n=this._instance.config.error_tracking.captureExtensionExceptions;return(s=n??t)!==null&&s!==void 0&&s}buildProperties(s,t){return this.da.buildFromUnknown(s,{syntheticException:t==null?void 0:t.syntheticException,mechanism:{handled:t==null?void 0:t.handled}})}addExceptionStep(s,t){if(this.ca.enabled)try{if(!jt(s)||s.trim().length===0)return void Hi.warn("Ignoring exception step because message must be a non-empty string");var n=(function(d){if(!d)return{sanitizedProperties:{},droppedKeys:[]};var p=[];return{sanitizedProperties:Object.keys(d).reduce(((c,u)=>M4.has(u)?(p.push(u),c):(c[u]=d[u],c)),{}),droppedKeys:p}})(this.ga(t)),a=n.sanitizedProperties,l=n.droppedKeys;l.length>0&&Hi.warn("Ignoring reserved exception step fields",{droppedKeys:l}),this.fa.add(be({[Hc]:s,[zc]:new Date().toISOString()},a))}catch(d){Hi.error("Failed to add exception step. Ignoring breadcrumb.",d)}}sendExceptionEvent(s){try{var t=s.$exception_list;if(this.ma(t)){if(this.ya(t))return this.ba("Exception dropped: matched a suppression rule"),void Hi.info("Skipping exception capture because a suppression rule matched");if(!this.pa&&this._a(t))return this.ba("Exception dropped: thrown by a browser extension"),void Hi.info("Skipping exception capture because it was thrown by an extension");if(!this._instance.config.error_tracking.__capturePostHogExceptions&&this.wa(t))return this.ba("Exception dropped: thrown by the PostHog SDK"),void Hi.info("Skipping exception capture because it was thrown by the PostHog SDK")}var n=this.ca.enabled&&Ze(s.$exception_steps)?this.xa(s):s,a=typeof(d=globalThis._posthogReleaseId)=="string"&&d.length>0?d:void 0;a&&(n.$release_id=a);try{var l=this._instance.capture("$exception",n,{_noTruncate:!0,_batchKey:"exceptionEvent",Pn:!0});return l&&this.fa.clear(),l}catch(p){return Hi.error("Failed to capture exception event. Dropping this exception.",p),void this.fa.clear()}}catch(p){return void Hi.error("Failed to process exception event. Ignoring this exception.",p)}var d}xa(s){try{var t=this.fa.getAttachable();return t.length===0?s:be({},s,{$exception_steps:t})}catch(n){return Hi.error("Failed to read buffered exception steps. Capturing exception without steps.",n),s}}ba(s){this.ca.enabled&&this.fa.add({[Hc]:s,[zc]:new Date().toISOString()})}ga(s){return Ut(s)?be({},s):{}}va(){var s,t;return(s=(t=this._instance.config.error_tracking)==null?void 0:t.exception_steps)!==null&&s!==void 0?s:{}}ya(s){if(s.length===0)return!1;try{var t=s.reduce(((n,a)=>{var l=a.type,d=a.value;return jt(l)&&l.length>0&&n.$exception_types.push(l),jt(d)&&d.length>0&&n.$exception_values.push(d),n}),{$exception_types:[],$exception_values:[]});return this.ha.some((n=>{var a=n.values.map((l=>{var d=bb[l.operator],p=t[l.key];if(!d||!p)return!1;var c=Xe(l.value)?l.value:[l.value];return c.length>0&&d(c,p)}));return n.type==="OR"?a.some(Boolean):a.every(Boolean)}))}catch(n){return Hi.warn("Failed to evaluate suppression rules. Capturing the exception.",n),!1}}_a(s){return s.flatMap((t=>{var n,a;return(n=(a=t.stacktrace)==null?void 0:a.frames)!==null&&n!==void 0?n:[]})).some((t=>t.filename&&t.filename.startsWith("chrome-extension://")))}wa(s){if(s.length>0){var t,n,a,l,d=(t=(n=s[0].stacktrace)==null?void 0:n.frames)!==null&&t!==void 0?t:[],p=d[d.length-1];return(a=p==null||(l=p.filename)==null?void 0:l.includes("posthog.com/static"))!==null&&a!==void 0&&a}return!1}ma(s){return!Ze(s)&&Xe(s)}}},J5=be({productTours:class{get mi(){return this._instance.persistence}constructor(s){this.ka=null,this.Sa=null,this._instance=s}initialize(){this.loadIfEnabled()}onRemoteConfig(s){if(s.ok){var t=s.config;if("productTours"in t){var n,a;if(this.mi&&this.mi.register({[bp]:!!t.productTours}),!rf(this._instance))return!this.ka&&Ze((n=this.mi)==null?void 0:n.props[Ao])||nf.info("product tours disabled; stopping and clearing cached tours"),(a=this.ka)==null||a.stop(),this.ka=null,void this.clearCache();this.loadIfEnabled()}}}loadIfEnabled(){!this.ka&&rf(this._instance)&&this.tr((()=>this.Ca()))}tr(s){var t,n;(t=ze.__PosthogExtensions__)!=null&&t.generateProductTours?s():(n=ze.__PosthogExtensions__)==null||n.loadExternalDependency==null||n.loadExternalDependency(this._instance,"product-tours",(a=>{a?nf.error("Could not load product tours script",a):s()}))}Ca(){var s;!this.ka&&(s=ze.__PosthogExtensions__)!=null&&s.generateProductTours&&(this.ka=ze.__PosthogExtensions__.generateProductTours(this._instance,!0))}getProductTours(s,t){if(t===void 0&&(t=!1),!Xe(this.Sa)||t){var n=this.mi;if(n){var a=n.props[Ao];if(Xe(a)&&!t)return this.Sa=a,void s(a,{isLoaded:!0})}this._instance._send_request({url:this._instance.requestRouter.endpointFor("api","/api/product_tours/?token="+this._instance.config.token),method:"GET",timestampMode:"query",callback:l=>{if(rf(this._instance)){var d=l.statusCode;if(d!==200||!l.json){var p="Product Tours API could not be loaded, status: "+d;return nf.error(p),void s([],{isLoaded:!1,error:p})}var c=Xe(l.json.product_tours)?l.json.product_tours:[];this.Sa=c,n&&n.register({[Ao]:c}),s(c,{isLoaded:!0})}else s([],{isLoaded:!0})}})}else s(this.Sa,{isLoaded:!0})}getActiveProductTours(s){Ze(this.ka)?s([],{isLoaded:!1,error:"Product tours not loaded"}):this.ka.getActiveProductTours(s)}showProductTour(s){var t;(t=this.ka)==null||t.showTourById(s)}previewTour(s){this.ka?this.ka.previewTour(s):this.tr((()=>{var t;this.Ca(),(t=this.ka)==null||t.previewTour(s)}))}dismissProductTour(){var s;(s=this.ka)==null||s.dismissTour("user_clicked_skip")}nextStep(){var s;(s=this.ka)==null||s.nextStep()}previousStep(){var s;(s=this.ka)==null||s.previousStep()}clearCache(){var s;this.Sa=null,(s=this.mi)==null||s.unregister(Ao)}resetTour(s){var t;(t=this.ka)==null||t.resetTour(s)}resetAllTours(){var s;(s=this.ka)==null||s.resetAllTours()}cancelPendingTour(s){var t;(t=this.ka)==null||t.cancelPendingTour(s)}}},lu),Z5={siteApps:class{constructor(s){this.Ma=0,this._instance=s,this.Ia=[],this.apps={}}get isEnabled(){return!!this._instance.config.opt_in_site_apps}Ta(s,t){if(t){var n=this.globalsForEvent(t);this.Ia.push(n),this.Ia.length>1e3&&(this.Ia=this.Ia.slice(10))}}get siteAppLoaders(){var s;return(s=ze._POSTHOG_REMOTE_CONFIG)==null||(s=s[this._instance.config.token])==null?void 0:s.siteApps}initialize(){if(this.isEnabled){var s=this._instance._addCaptureHook(this.Ta.bind(this));this.Ea=()=>{s(),this.Ia=[],this.Ea=void 0}}}globalsForEvent(s){var t,n,a,l,d,p,c;if(!s)throw new Error("Event payload is required");var u={},v=this._instance.get_property("$groups")||[],b=this._instance.get_property("$stored_group_properties")||{};for(var f of Object.entries(b)){var x=f[0];u[x]={id:v[x],type:x,properties:f[1]}}var C=s.$set_once,A=s.$set;return{event:be({},Vy(s,U5),{properties:be({},s.properties,A?{$set:be({},(t=(n=s.properties)==null?void 0:n.$set)!==null&&t!==void 0?t:{},A)}:{},C?{$set_once:be({},(a=(l=s.properties)==null?void 0:l.$set_once)!==null&&a!==void 0?a:{},C)}:{}),elements_chain:(d=(p=s.properties)==null?void 0:p.$elements_chain)!==null&&d!==void 0?d:"",distinct_id:(c=s.properties)==null?void 0:c.distinct_id}),person:{properties:this._instance.get_property("$stored_person_properties")},groups:u}}Ra(s){var t,n=(t=s.tagName)==null?void 0:t.toLowerCase();return n==="style"&&this._instance.config.prepare_external_dependency_stylesheet?this._instance.config.prepare_external_dependency_stylesheet(s)||(Bi.error("prepare_external_dependency_stylesheet returned null"),null):n==="script"&&this._instance.config.prepare_external_dependency_script?this._instance.config.prepare_external_dependency_script(s)||(Bi.error("prepare_external_dependency_script returned null"),null):s}Pa(){var s,t,n,a,l,d,p,c;if(!this._instance.config.prepare_external_dependency_stylesheet&&!this._instance.config.prepare_external_dependency_script)return()=>{};var u=Ae==null?void 0:Ae.defaultView,v=u==null||(s=u.Node)==null?void 0:s.prototype;if(!u||!v)return()=>{};if(this.Ma++,this.Oa)return this.Fa();var b=[],f=this,x=new WeakSet,C=(m,S,_)=>{if(m!=null&&m[S]){var y=m[S];m[S]=_(y),b.push((()=>{m[S]=y}))}},A=m=>{if(x.has(m))return m;var S=f.Ra(m);return S&&x.add(S),S},E=m=>m.map((S=>typeof S=="string"?S:A(S))).filter((S=>!$s(S)));return C(v,"appendChild",(m=>function(S){var _=A(S);return _?m.call(this,_):S})),C(v,"insertBefore",(m=>function(S,_){var y=A(S);return y?m.call(this,y,_):S})),C(v,"replaceChild",(m=>function(S,_){var y=A(S);return y?m.call(this,y,_):_})),[(t=u.Element)==null?void 0:t.prototype,(n=u.Document)==null?void 0:n.prototype,(a=u.DocumentFragment)==null?void 0:a.prototype].forEach((m=>{C(m,"append",(S=>function(){for(var _=arguments.length,y=new Array(_),k=0;_>k;k++)y[k]=arguments[k];return S.apply(this,E(y))})),C(m,"prepend",(S=>function(){for(var _=arguments.length,y=new Array(_),k=0;_>k;k++)y[k]=arguments[k];return S.apply(this,E(y))}))})),[(l=u.Element)==null?void 0:l.prototype,(d=u.CharacterData)==null?void 0:d.prototype,(p=u.DocumentType)==null?void 0:p.prototype].forEach((m=>{C(m,"before",(S=>function(){for(var _=arguments.length,y=new Array(_),k=0;_>k;k++)y[k]=arguments[k];return S.apply(this,E(y))})),C(m,"after",(S=>function(){for(var _=arguments.length,y=new Array(_),k=0;_>k;k++)y[k]=arguments[k];return S.apply(this,E(y))})),C(m,"replaceWith",(S=>function(){for(var _=arguments.length,y=new Array(_),k=0;_>k;k++)y[k]=arguments[k];var R=E(y);return y.length&&!R.length?void 0:S.apply(this,R)}))})),C((c=u.Element)==null?void 0:c.prototype,"insertAdjacentElement",(m=>function(S,_){var y=A(_);return y?m.call(this,S,y):null})),this.Oa=()=>{b.forEach((m=>m())),this.Oa=void 0},this.Fa()}Fa(){var s=!1;return()=>{var t;s||(s=!0,this.Ma--,this.Ma===0&&((t=this.Oa)==null||t.call(this)))}}Aa(s,t){t===void 0&&(t=!0);var n=this.Pa();try{var a=s(n);return t&&n(),a}catch(l){throw n(),l}}setupSiteApp(s){var t=this.apps[s.id],n=()=>{var p;!t.errored&&this.Ia.length&&(Bi.info("Processing "+this.Ia.length+" events for site app with id "+s.id),this.Ia.forEach((c=>this.Aa((()=>t.processEvent==null?void 0:t.processEvent(c))))),t.processedBuffer=!0),Object.values(this.apps).every((c=>c.processedBuffer||c.errored))&&((p=this.Ea)==null||p.call(this))},a=!1,l=p=>{t.errored=!p,t.loaded=!0,Bi.info("Site app with id "+s.id+" "+(p?"loaded":"errored")),a&&n()};try{var d=this.Aa((p=>s.init({posthog:this._instance,callback(c){p(),l(c)}})),!1).processEvent;d&&(t.processEvent=d),a=!0}catch(p){Bi.error(iy+s.id,p),l(!1)}if(a&&t.loaded)try{n()}catch(p){Bi.error("Error while processing buffered events PostHog app with config id "+s.id,p),t.errored=!0}}$a(){var s=this.siteAppLoaders||[];for(var t of s)this.apps[t.id]={id:t.id,loaded:!1,errored:!1,processedBuffer:!1};for(var n of s)this.setupSiteApp(n)}La(s){var t=this;if(Object.keys(this.apps).length!==0){var n=this.globalsForEvent(s),a=function(d){try{t.Aa((()=>d.processEvent==null?void 0:d.processEvent(n)))}catch(p){Bi.error("Error while processing event "+s.event+" for site app "+d.id,p)}};for(var l of Object.values(this.apps))a(l)}}onRemoteConfig(s){var t,n,a,l=this;if((t=this.siteAppLoaders)!=null&&t.length)return this.isEnabled?(this.$a(),void this._instance.on("eventCaptured",(u=>this.La(u)))):void Bi.error('PostHog site apps are disabled. Enable the "opt_in_site_apps" config to proceed.');if((n=this.Ea)==null||n.call(this),s.ok){var d=s.config;if((a=d.siteApps)!=null&&a.length)if(this.isEnabled){var p=function(){var u,v=c.id,b=c.url;ze["__$$ph_site_app_"+v]=l._instance,(u=ze.__PosthogExtensions__)==null||u.loadSiteApp==null||u.loadSiteApp(l._instance,b,(f=>{if(f)return Bi.error(iy+v,f)}))};for(var c of d.siteApps)p()}else Bi.error('PostHog site apps are disabled. Enable the "opt_in_site_apps" config to proceed.')}}}},Q5={tracingHeaders:class{constructor(s){this.Da=void 0,this.Na=void 0,this.qa=void 0,this.ea=()=>{var t,n,a=this.ja();a?(Ce(this.Da)&&(this.Da=(t=ze.__PosthogExtensions__)==null||(t=t.tracingHeadersPatchFns)==null?void 0:t._patchXHR(a,(()=>this._instance.get_distinct_id()),this._instance.sessionManager)),Ce(this.Na)&&(this.Na=(n=ze.__PosthogExtensions__)==null||(n=n.tracingHeadersPatchFns)==null?void 0:n._patchFetch(a,(()=>this._instance.get_distinct_id()),this._instance.sessionManager))):this.oa()},this._instance=s}initialize(){this.startIfEnabledOrStop()}tr(s){var t,n;(t=ze.__PosthogExtensions__)!=null&&t.tracingHeadersPatchFns?s():(n=ze.__PosthogExtensions__)==null||n.loadExternalDependency==null||n.loadExternalDependency(this._instance,"tracing-headers",(a=>{if(a)return $5.error("failed to load script",a);s()}))}Ba(){var s,t;return(s=(t=this._instance.config.tracing_headers)!==null&&t!==void 0?t:this._instance.config.addTracingHeaders)!==null&&s!==void 0?s:this._instance.config.__add_tracing_headers}ja(){var s=this.Ba();return Xe(s)?(Xe(this.qa)?this.qa.splice(0,this.qa.length,...s):this.qa=[...s],s.length>0?this.qa:void 0):(Xe(this.qa)&&this.qa.splice(0),this.qa=s||void 0,this.qa)}oa(){var s,t;(s=this.Da)==null||s.call(this),(t=this.Na)==null||t.call(this),this.Da=void 0,this.Na=void 0}startIfEnabledOrStop(){this.ja()?this.tr(this.ea):this.oa()}}},eT=be({surveys:class{get Te(){return this._instance.config}constructor(s){this.Ha=void 0,this._surveyManager=null,this.Ua=!1,this.za=[],this.Va=null,this.Wa=null,this._instance=s,this._surveyEventReceiver=null}initialize(){this.loadIfEnabled()}onRemoteConfig(s){if(!this.Te.disable_surveys){if(!s.ok)return Et.warn("Remote config unavailable. Not loading surveys.");var t=s.config.surveys;if(Ze(t))return Et.warn("Flags not loaded yet. Not loading surveys.");var n=Xe(t);this.Ha=n?t.length>0:t,Et.info("flags response received, isSurveysEnabled: "+this.Ha),this.loadIfEnabled()}}reset(){try{var s;(s=this._surveyEventReceiver)==null||s.reset(),localStorage.removeItem("lastSeenSurveyDate");for(var t=[],n=0;n<localStorage.length;n++){var a=localStorage.key(n);(a!=null&&a.startsWith(xb)||a!=null&&a.startsWith("inProgressSurvey_"))&&t.push(a)}t.forEach((l=>localStorage.removeItem(l)))}catch{}}loadIfEnabled(){if(!this._surveyManager)if(this.Ua)Et.info("Already initializing surveys, skipping...");else if(this.Te.disable_surveys)Et.info(ny);else if(this.Te.cookieless_mode&&this._instance.consent.isOptedOut())Et.info("Not loading surveys in cookieless mode without consent.");else{var s=ze==null?void 0:ze.__PosthogExtensions__;if(s){if(!Ce(this.Ha)||this.Te.advanced_enable_surveys){var t=this.Ha||this.Te.advanced_enable_surveys;this.Ua=!0;try{var n=s.generateSurveys;if(n)return void this.Za(n,t);var a=s.loadExternalDependency;if(!a)return void this.Ga(wp);a(this._instance,"surveys",(l=>{l||!s.generateSurveys?this.Ga("Could not load surveys script",l):this.Za(s.generateSurveys,t)}))}catch(l){throw this.Ga("Error initializing surveys",l),l}finally{this.Ua=!1}}}else Et.error("PostHog Extensions not found.")}}Za(s,t){this._surveyManager=s(this._instance,t),this._surveyEventReceiver=new W5(this._instance),Et.info("Surveys loaded successfully"),this.Qa({isLoaded:!0})}Ga(s,t){Et.error(s,t),this.Qa({isLoaded:!1,error:s})}onSurveysLoaded(s){return this.za.push(s),this._surveyManager&&this.Qa({isLoaded:!0}),()=>{this.za=this.za.filter((t=>t!==s))}}getSurveys(s,t){if(t===void 0&&(t=!1),this.Te.disable_surveys)return Et.info(ny),s([]);var n,a=this._instance.get_property(Nf);if(a&&!t)return s(a,{isLoaded:!0}),void(this.Ja()&&this.getSurveys((()=>{}),!0));typeof Promise<"u"&&this.Va?this.Va.then((l=>s(l.surveys,l.context))):(typeof Promise<"u"&&(this.Va=new Promise((l=>{n=l}))),this._instance._send_request({url:this._instance.requestRouter.endpointFor("api","/api/surveys/?token="+this.Te.token),method:"GET",timestampMode:"query",timeout:this.Te.surveys_request_timeout_ms,callback:l=>{var d;this.Va=null;var p=l.statusCode;if(p!==200||!l.json){var c="Surveys API could not be loaded, status: "+p;Et.error(c),this.Wa=Date.now();var u={isLoaded:!1,error:c};return s([],u),void(n==null||n({surveys:[],context:u}))}this.Wa=null;var v,b=l.json.surveys||[],f=b.filter((C=>(function(A){return!(!A.start_date||A.end_date)})(C)&&(wb(C)||(function(A){var E;return!((E=A.conditions)==null||(E=E.actions)==null||(E=E.values)==null||!E.length)})(C))));f.length>0&&((v=this._surveyEventReceiver)==null||v.register(f)),(d=this._instance.persistence)==null||d.register({[Nf]:b,[Pc]:Date.now()});var x={isLoaded:!0};s(b,x),n==null||n({surveys:b,context:x})}}))}Ja(){return this.Ka()&&!this.Va&&!this.Ya()}Ka(){var s=this._instance.get_property(Pc);return Rs(s)&&Date.now()-s>3e5}Ya(){return Rs(this.Wa)&&3e5>Date.now()-this.Wa}markSurveyAsSeen(s,t){var n,a={id:s,current_iteration:(n=t==null?void 0:t.iteration)!==null&&n!==void 0?n:null};Cb(a);try{localStorage.setItem("lastSeenSurveyDate",new Date().toISOString())}catch{}}Qa(s){for(var t of this.za)try{if(!s.isLoaded)return t([],s);this.getSurveys(t)}catch(n){Et.error("Error in survey callback",n)}}getActiveMatchingSurveys(s,t){if(t===void 0&&(t=!1),!Ze(this._surveyManager))return this._surveyManager.getActiveMatchingSurveys(s,t);Et.warn("init was not called")}Xa(s){var t=null;return this.getSurveys((n=>{var a;t=(a=n.find((l=>l.id===s)))!==null&&a!==void 0?a:null})),t}tl(s){if(Ze(this._surveyManager))return{eligible:!1,reason:mc};var t=typeof s=="string"?this.Xa(s):s;return t?this._surveyManager.checkSurveyEligibility(t):{eligible:!1,reason:"Survey not found"}}el(s){if(Ze(this._surveyManager))return{eligible:!1,reason:mc};var t=typeof s=="string"?this.Xa(s):s;return t?this._surveyManager.checkSurveyRenderability(t):{eligible:!1,reason:"Survey not found"}}canRenderSurvey(s){if(Ze(this._surveyManager))return Et.warn("init was not called"),{visible:!1,disabledReason:mc};var t=this.el(s);return{visible:t.eligible,disabledReason:t.reason}}canRenderSurveyAsync(s,t){return Ze(this._surveyManager)?(Et.warn("init was not called"),Promise.resolve({visible:!1,disabledReason:mc})):new Promise((n=>{this.getSurveys((a=>{var l,d=(l=a.find((c=>c.id===s)))!==null&&l!==void 0?l:null;if(d){var p=this.el(d);n({visible:p.eligible,disabledReason:p.reason})}else n({visible:!1,disabledReason:"Survey not found"})}),t)}))}renderSurvey(s,t,n){var a;if(Ze(this._surveyManager))Et.warn("init was not called");else{var l=typeof s=="string"?this.Xa(s):s;if(l!=null&&l.id)if(T5.includes(l.type)){var d=Ae==null?void 0:Ae.querySelector(t);if(d)return(a=l.appearance)!=null&&a.surveyPopupDelaySeconds?(Et.info("Rendering survey "+l.id+" with delay of "+l.appearance.surveyPopupDelaySeconds+" seconds"),void setTimeout((()=>{var p,c;Et.info("Rendering survey "+l.id+" with delay of "+((p=l.appearance)==null?void 0:p.surveyPopupDelaySeconds)+" seconds"),(c=this._surveyManager)==null||c.renderSurvey(l,d,n),Et.info("Survey "+l.id+" rendered")}),1e3*l.appearance.surveyPopupDelaySeconds)):void this._surveyManager.renderSurvey(l,d,n);Et.warn("Survey element not found")}else Et.warn("Surveys of type "+l.type+" cannot be rendered in the app");else Et.warn("Survey not found")}}displaySurvey(s,t){var n;if(Ze(this._surveyManager))Et.warn("init was not called");else{var a=this.Xa(s);if(a){var l=a;if((n=a.appearance)!=null&&n.surveyPopupDelaySeconds&&t.ignoreDelay&&(l=be({},a,{appearance:be({},a.appearance,{surveyPopupDelaySeconds:0})})),t.displayType!==qf.Popover&&t.initialResponses&&Et.warn("initialResponses is only supported for popover surveys. prefill will not be applied."),t.ignoreConditions===!1){var d=this.tl(a);if(!d.eligible)return void Et.warn("Survey is not eligible to be displayed: ",d.reason)}t.displayType!==qf.Inline?this._surveyManager.handlePopoverSurvey(l,t):this.renderSurvey(l,t.selector,t.properties)}else Et.warn("Survey not found")}}cancelPendingSurvey(s){Ze(this._surveyManager)?Et.warn("init was not called"):this._surveyManager.cancelSurvey(s)}handlePageUnload(){var s;(s=this._surveyManager)==null||s.handlePageUnload==null||s.handlePageUnload()}}},lu),tT={toolbar:class{constructor(s){this.instance=s}rl(s){ze.ph_toolbar_state=s}il(){var s;return(s=ze.ph_toolbar_state)!==null&&s!==void 0?s:0}initialize(){return this.maybeLoadToolbar()}maybeLoadToolbar(s,t,n){if(s===void 0&&(s=void 0),t===void 0&&(t=void 0),n===void 0&&(n=void 0),B1(this.instance.config)||!le||!Ae)return!1;s=s??le.location,n=n??le.history;try{if(!t){try{le.localStorage.setItem("test","test"),le.localStorage.removeItem("test")}catch{return!1}t=le==null?void 0:le.localStorage}var a,l=G5||Kc(s.hash,"__posthog")||Kc(s.hash,"state"),d=l?w0((()=>JSON.parse(atob(decodeURIComponent(l)))))||w0((()=>JSON.parse(decodeURIComponent(l)))):null;return d&&d.action==="ph_authorize"?((a=d).source="url",a&&Object.keys(a).length>0&&(d.desiredHash?s.hash=d.desiredHash:n?n.replaceState(n.state,"",s.pathname+s.search):s.hash="")):((a=JSON.parse(t.getItem(ry)||"{}")).source="localstorage",delete a.userIntent),!(!a.token||this.instance.config.token!==a.token||(this.loadToolbar(a),0))}catch{return!1}}nl(s){var t=ze.ph_load_toolbar||ze.ph_load_editor;!Ze(t)&&ni(t)?t(s,this.instance):ay.warn("No toolbar load function found")}loadToolbar(s){var t=!(Ae==null||!Ae.getElementById($1));if(!le||t)return!1;var n=this.instance.requestRouter.region==="custom"&&this.instance.config.advanced_disable_toolbar_metrics,a=be({token:this.instance.config.token},s,{apiURL:this.instance.requestRouter.endpointFor("ui")},n?{instrument:!1}:{});if(le.localStorage.setItem(ry,JSON.stringify(be({},a,{source:void 0}))),this.il()===2)this.nl(a);else if(this.il()===0){var l;this.rl(1),(l=ze.__PosthogExtensions__)==null||l.loadExternalDependency==null||l.loadExternalDependency(this.instance,"toolbar",(d=>{if(d)return ay.error("[Toolbar] Failed to load",d),void this.rl(0);this.rl(2),this.nl(a)})),Qt(le,"turbolinks:load",(()=>{this.rl(0),this.loadToolbar(a)}))}return!0}sl(s){return this.loadToolbar(s)}maybeLoadEditor(s,t,n){return s===void 0&&(s=void 0),t===void 0&&(t=void 0),n===void 0&&(n=void 0),this.maybeLoadToolbar(s,t,n)}}},sT=be({experiments:Ns},lu),iT={conversations:class{constructor(s){this.ol=void 0,this._conversationsManager=null,this.al=!1,this.ll=null,this._instance=s}initialize(){this.loadIfEnabled()}onRemoteConfig(s){if(!this._instance.config.disable_conversations&&s.ok){var t=s.config.conversations;Ze(t)||(Di(t)?this.ol=t:(this.ol=t.enabled,this.ll=t),this.loadIfEnabled())}}reset(){var s;(s=this._conversationsManager)==null||s.reset(),this._conversationsManager=null,this.ol=void 0,this.ll=null}loadIfEnabled(){if(!(this._conversationsManager||this.al||this._instance.config.disable_conversations||B1(this._instance.config)||this._instance.config.cookieless_mode&&this._instance.consent.isOptedOut())){var s=ze==null?void 0:ze.__PosthogExtensions__;if(s&&!Ce(this.ol)&&this.ol)if(this.ll&&this.ll.token){this.al=!0;try{var t=s.initConversations;if(t)return this.ul(t),void(this.al=!1);var n=s.loadExternalDependency;if(!n)return void this.hl(wp);n(this._instance,"conversations",(a=>{a||!s.initConversations?this.hl("Could not load conversations script",a):this.ul(s.initConversations),this.al=!1}))}catch(a){this.hl("Error initializing conversations",a),this.al=!1}}else mi.error("Conversations enabled but missing token in remote config.")}}ul(s){if(this.ll)try{this._conversationsManager=s(this.ll,this._instance),mi.info("Conversations loaded successfully")}catch(t){this.hl("Error completing conversations initialization",t)}else mi.error("Cannot complete initialization: remote config is null")}hl(s,t){mi.error(s,t),this._conversationsManager=null,this.al=!1}show(){this._conversationsManager?this._conversationsManager.show():mi.warn("Conversations not loaded yet.")}hide(){this._conversationsManager&&this._conversationsManager.hide()}isAvailable(){return this.ol===!0&&!$s(this._conversationsManager)}isVisible(){var s,t;return(s=(t=this._conversationsManager)==null?void 0:t.isVisible())!==null&&s!==void 0&&s}sendMessage(s,t,n){var a=this;return Ft((function*(){return a._conversationsManager?a._conversationsManager.sendMessage(s,t,n):(mi.warn(fr),null)}))()}getMessages(s,t){var n=this;return Ft((function*(){return n._conversationsManager?n._conversationsManager.getMessages(s,t):(mi.warn(fr),null)}))()}markAsRead(s){var t=this;return Ft((function*(){return t._conversationsManager?t._conversationsManager.markAsRead(s):(mi.warn(fr),null)}))()}getTickets(s){var t=this;return Ft((function*(){return t._conversationsManager?t._conversationsManager.getTickets(s):(mi.warn(fr),null)}))()}requestRestoreLink(s){var t=this;return Ft((function*(){return t._conversationsManager?t._conversationsManager.requestRestoreLink(s):(mi.warn(fr),null)}))()}restoreFromToken(s){var t=this;return Ft((function*(){return t._conversationsManager?t._conversationsManager.restoreFromToken(s):(mi.warn(fr),null)}))()}restoreFromUrlToken(){var s=this;return Ft((function*(){return s._conversationsManager?s._conversationsManager.restoreFromUrlToken():(mi.warn(fr),null)}))()}getCurrentTicketId(){var s,t;return(s=(t=this._conversationsManager)==null?void 0:t.getCurrentTicketId())!==null&&s!==void 0?s:null}getWidgetSessionId(){var s,t;return(s=(t=this._conversationsManager)==null?void 0:t.getWidgetSessionId())!==null&&s!==void 0?s:null}Nn(){var s;(s=this._conversationsManager)==null||s.setIdentity()}qn(){var s;(s=this._conversationsManager)==null||s.clearIdentity()}}},nT={logs:class{constructor(s){var t;this.dl=!1,this.cl=!1,this.it=Wt("[logs]"),this.Gr=[],this.vl=[],this.Js=0,this.fl=()=>{var n,a;this.Js=0,(n=this.pl)==null||n.onReconnect(),(a=this.gl)==null||a.onReconnect()},this._instance=s,this._instance&&(t=this._instance.config.logs)!=null&&t.captureConsoleLogs&&(this.dl=!0),le&&Qt(le,"online",this.fl)}ml(s,t,n,a){var l,d=(function(p,c){var u,v,b,f,x,C,A,E=(u=p==null?void 0:p.flushIntervalMs)!==null&&u!==void 0?u:3e3,m=(v=p==null?void 0:p.maxBufferSize)!==null&&v!==void 0?v:100,S=c!=null&&c.consoleCapture?void 0:(b=p==null?void 0:p.maxLogsPerInterval)!==null&&b!==void 0?b:1e3,_=Ce(S)?Math.max(m,2048):Math.max(m,S),y=p==null?void 0:p.resourceAttributes;return{serviceName:(f=(x=y==null?void 0:y["service.name"])!==null&&x!==void 0?x:p==null?void 0:p.serviceName)!==null&&f!==void 0?f:c==null?void 0:c.serviceNameDefault,serviceVersion:(C=y==null?void 0:y["service.version"])!==null&&C!==void 0?C:p==null?void 0:p.serviceVersion,environment:(A=y==null?void 0:y["deployment.environment"])!==null&&A!==void 0?A:p==null?void 0:p.environment,resourceAttributes:y,beforeSend:p==null?void 0:p.beforeSend,flushIntervalMs:E,maxBufferSize:m,maxQueueSize:_,maxBatchRecordsPerPost:100,rateCapWindowMs:E,maxLogsPerInterval:S,backgroundFlushBudgetMs:0,terminationFlushBudgetMs:0}})((l=this._instance)==null||(l=l.config)==null?void 0:l.logs,n);return[new c4(this.yl(s,t),d,this.it,(()=>this.bl()),(p=>p()),void 0,a),d]}_l(){var s,t=(s=this._instance)==null||(s=s.config)==null?void 0:s.logs;if(!this.pl||this.wl!==t){var n;(n=this.pl)==null||n.reset(),this.wl=t;var a=this.ml((()=>this.Gr),(l=>{this.Gr=l}));this.pl=a[0],this.xl=a[1]}return this.pl}kl(){var s,t=(s=this._instance)==null||(s=s.config)==null?void 0:s.logs;if(!this.gl||this.Sl!==t){var n;(n=this.gl)==null||n.reset(),this.Sl=t;var a=this.ml((()=>this.vl),(l=>{this.vl=l}),{serviceNameDefault:"posthog-browser-logs",consoleCapture:!0},uy);this.gl=a[0],this.Cl=a[1]}return this.gl}initialize(){this.loadIfEnabled()}onRemoteConfig(s){var t;if(s.ok){var n=(t=s.config.logs)==null?void 0:t.captureConsoleLogs;!Ze(n)&&n&&(this.dl=!0,this.loadIfEnabled())}}reset(){var s,t;this.Gr=[],(s=this.pl)==null||s.reset(),this.vl=[],(t=this.gl)==null||t.reset(),this.Js=0}captureLog(s){this._l().captureLog(s)}le(s){this.kl().captureLog(s)}get logger(){return this.Ml||(this.Ml={trace:(s,t)=>this.captureLog({body:s,level:"trace",attributes:t}),debug:(s,t)=>this.captureLog({body:s,level:"debug",attributes:t}),info:(s,t)=>this.captureLog({body:s,level:"info",attributes:t}),warn:(s,t)=>this.captureLog({body:s,level:"warn",attributes:t}),error:(s,t)=>this.captureLog({body:s,level:"error",attributes:t}),fatal:(s,t)=>this.captureLog({body:s,level:"fatal",attributes:t})}),this.Ml}flushLogs(s){s?this.Il(s):(this.pl&&this.pl.flush().catch((t=>this.it.error("PostHog logs flush failed:",t))),this.gl&&this.gl.flush().catch((t=>this.it.error("PostHog logs flush failed:",t))))}loadIfEnabled(){if(this.dl&&!this.cl){var s=ze==null?void 0:ze.__PosthogExtensions__;if(s){var t=s.loadExternalDependency;t?t(this._instance,"logs",(n=>{var a;n||(a=s.logs)==null||!a.initializeLogs?this.it.error("Could not load logs script",n):(s.logs.initializeLogs(this._instance),this.cl=!0)})):this.it.error(wp)}else this.it.error("PostHog Extensions not found.")}}yl(s,t){var n=this._instance;return{get isDisabled(){return!1},get optedOut(){return!n.is_capturing()},getPersistedProperty:a=>a===cn.LogsQueue?s():void 0,setPersistedProperty(a,l){var d;a===cn.LogsQueue&&t((d=l)!==null&&d!==void 0?d:[])},$t:a=>this.$t(a),getLibraryId:()=>bt.LIB_NAME,getLibraryVersion:()=>bt.LIB_VERSION}}$t(s){return new Promise((t=>{if(Z1(this.Js,3))t({kind:"fatal",error:new Error("logs endpoint is unreachable, dropping batch")});else{var n=!1,a=d=>{n||(n=!0,clearTimeout(l),t(d))},l=setTimeout((()=>a({kind:"retry-later",error:new Error("logs request timed out")})),9e4);this._instance._send_request({method:"POST",url:this.Tl(),data:s,compression:"best-available",batchKey:"logs",fireCallbackOnDrop:!0,callback:d=>{var p=d.statusCode;if(this.El(p),p>=200&&300>p)a({kind:"ok"});else if(p===413)a({kind:"too-large"});else if(p!==0&&p!==429&&500>p)a({kind:"fatal",error:new Error("logs request failed with status "+p)});else{var c;a({kind:"retry-later",error:(c=d.error)!==null&&c!==void 0?c:new Error("logs request failed with status "+p)})}}})}}))}El(s){(s!==0||this._instance.__loaded)&&(this.Js=Q1(s,this.Js,3,(()=>this.it.warn("Log requests are failing before receiving an HTTP response; this can happen due to network issues, CORS, browser blocking, or ad blockers. Stopped sending logs; will try again when connectivity changes."))))}Il(s){this.Gr.length>0&&this.Rl(s,this.Gr,this.xl,bt.LIB_NAME,(t=>{this.Gr=t})),this.vl.length>0&&this.Rl(s,this.vl,this.Cl,uy,(t=>{this.vl=t}))}Rl(s,t,n,a,l){if(t.length!==0){var d=t.map((c=>c.record));l([]);var p=w1(d,S1(n,bt.LIB_NAME,bt.LIB_VERSION),a,bt.LIB_VERSION);this._instance._send_request({method:"POST",url:this.Tl(),data:p,compression:"best-available",batchKey:"logs",transport:s})}}Tl(){return this._instance.requestRouter.endpointFor("api","/i/v1/logs")+"?token="+encodeURIComponent(this._instance.config.token)}bl(){var s,t={};if(t.distinctId=this._instance.get_distinct_id(),this._instance.sessionManager){var n=this._instance.sessionManager.checkAndGetSessionAndWindowId(!0),a=n.windowId,l=n.sessionStartTimestamp,d=n.lastActivityTimestamp;t.sessionId=n.sessionId,t.windowId=a,Ze(l)||(t.sessionStartTimestamp=l),Ze(d)||(t.lastActivityTimestamp=d)}if(ze!=null&&(s=ze.location)!=null&&s.href&&(t.currentUrl=this._instance.config.disable_capture_url_hashes?Un(ze.location.href):ze.location.href),this._instance.featureFlags){var p=this._instance.featureFlags.getFlags();p&&p.length>0&&(t.activeFeatureFlags=p)}return t}}},rT={metrics:class{constructor(s){this.it=Wt("[metrics]"),this._instance=s}initialize(){}_l(){var s,t,n=(s=this._instance)==null||(s=s.config)==null?void 0:s.metrics;return this.pl&&this.wl===n||((t=this.pl)==null||t.reset(),this.wl=n,this.pl=new u4(this.yl(),(function(a){var l,d,p,c,u,v=a==null?void 0:a.resourceAttributes;return{serviceName:(l=v==null?void 0:v["service.name"])!==null&&l!==void 0?l:a==null?void 0:a.serviceName,serviceVersion:(d=v==null?void 0:v["service.version"])!==null&&d!==void 0?d:a==null?void 0:a.serviceVersion,environment:(p=v==null?void 0:v["deployment.environment"])!==null&&p!==void 0?p:a==null?void 0:a.environment,resourceAttributes:v,beforeSend:a==null?void 0:a.beforeSend,flushIntervalMs:(c=a==null?void 0:a.flushIntervalMs)!==null&&c!==void 0?c:1e4,maxSeriesPerFlush:(u=a==null?void 0:a.maxSeriesPerFlush)!==null&&u!==void 0?u:1e3}})(n),this.it)),this.pl}count(s,t,n){t===void 0&&(t=1),this._l().count(s,t,n)}gauge(s,t,n){this._l().gauge(s,t,n)}histogram(s,t,n){this._l().histogram(s,t,n)}flush(s){if(!this.pl)return Promise.resolve();if(s){var t=this.pl.drainWindow();return t&&this.Kt(t,s),Promise.resolve()}return this.pl.flush().catch((n=>this.it.error("PostHog metrics flush failed:",n)))}reset(){var s;(s=this.pl)==null||s.reset()}yl(){var s=this._instance,t=this;return{get isDisabled(){return!1},get optedOut(){return!s.is_capturing()},Kt:n=>t.Kt(n),getLibraryId:()=>bt.LIB_NAME,getLibraryVersion:()=>bt.LIB_VERSION}}Kt(s,t){return new Promise((n=>{var a=!1,l=p=>{a||(a=!0,clearTimeout(d),n(p))},d=setTimeout((()=>l({kind:"retry-later",error:new Error("metrics request timed out")})),9e4);this._instance._send_request(be({method:"POST",url:this.Pl(),data:s,compression:"best-available",batchKey:"metrics"},t&&{transport:t},{fireCallbackOnDrop:!0,callback(p){var c=p.statusCode;if(c>=200&&300>c)l({kind:"ok"});else if(c===413)l({kind:"too-large"});else if(c!==0&&c!==429&&500>c)l({kind:"fatal",error:new Error("metrics request failed with status "+c)});else{var u;l({kind:"retry-later",error:(u=p.error)!==null&&u!==void 0?u:new Error("metrics request failed with status "+c)})}}}))}))}Pl(){return this._instance.requestRouter.endpointFor("api","/i/v1/metrics")+"?token="+encodeURIComponent(this._instance.config.token)}}},aT=be({},lu,Y5,K5,X5,J5,Z5,eT,Q5,tT,sT,iT,nT,rT);bi.__defaultExtensionClasses=be({},aT);var Si=(function(){bt.SDK_DIST_CHANNEL="npm";var s=Oo[oa]=new bi;return(function(){function t(){t.done||(t.done=!0,kb=!1,Nt(Oo,(function(n){n._dom_loaded()})))}Ae!=null&&Ae.addEventListener?Ae.readyState==="complete"?t():Qt(Ae,"DOMContentLoaded",t,{capture:!1}):le&&Ee.error("Browser doesn't support `document.addEventListener` so PostHog couldn't be initialized")})(),s})();const hy=120,oT=new Set(["attr__class","attr__id"]),lT=/attr__href="([^"]*)"/gi,cT=/(?:current_url|referrer|pathname)$/;function uT(s){const t=typeof s.surface=="string"?s.surface.toLowerCase():"",n=typeof s.object=="string"?s.object.toLowerCase():"";return/secret|vault|credential/.test(t)||/secret|vault|credential/.test(n)}function Bo(s){if(typeof s!="string"||s.length===0)return s;let t;try{t=new URL(s)}catch{return s}return`${t.origin}${t.pathname}`}function Tb(s){return s.length>hy?`${s.slice(0,hy)}…`:s}function hT(s,t){if(t){delete s.$el_text;for(const n of Object.keys(s))n.startsWith("attr__")&&!oT.has(n)&&delete s[n];return}typeof s.$el_text=="string"&&(s.$el_text=Tb(s.$el_text)),typeof s.attr__href=="string"&&(s.attr__href=Bo(s.attr__href))}function dT(s,t){const n=s.$elements;if(Array.isArray(n))for(const a of n)a&&typeof a=="object"&&hT(a,t);if(typeof s.$elements_chain=="string"){if(t){delete s.$elements_chain;return}s.$elements_chain=s.$elements_chain.replace(lT,(a,l)=>{const d=Bo(l);return typeof d=="string"?`attr__href="${d}"`:a})}}function fT(s,t){t.$current_url=Bo(t.$current_url),t.$referrer=Bo(t.$referrer);for(const n of[s.$set,s.$set_once]){if(!n)continue;const a=n;for(const l of Object.keys(a))cT.test(l)&&(a[l]=Bo(a[l]))}}function pT(s,t){typeof s.$el_text=="string"&&(t?delete s.$el_text:s.$el_text=Tb(s.$el_text)),dT(s,t)}function vT(s){if(!s)return s;try{const t=s.properties??{},n=uT(t);return fT(s,t),pT(t,n),s.properties=t,s}catch{return s}}function _T(s){if(!s)return"unknown";if(s.settingsOpen)return"account";if(s.firstRun&&!s.hasLiveSession)return"onboarding";if(s.templatesOpen)return"agent_build";if(s.hasLiveSession){const t=s.rightTab??"";return t==="logs"||t==="diff"?"agent_observe":t==="canvas"||t==="preview"?"agent_operate":"agent_build"}return s.inspectingDeadSession?"agent_observe":"unknown"}function gT(s,t){try{Si.capture(s,t)}catch{}}function mT(s){try{const t={};for(const[n,a]of Object.entries(s))a!=null&&a!==""&&(t[n]=a);Si.register(t)}catch{}}function yT(s){try{const t=_T(s);Si.register({journey:t,view:bT(s)})}catch{}}function bT(s){return s.settingsOpen?"settings":s.firstRun&&!s.hasLiveSession?"welcome":s.templatesOpen?"templates":s.hasLiveSession?`workbench:${s.rightTab??"chat"}`:s.inspectingDeadSession?"session_history":"unknown"}function ST(){if(typeof window>"u")return null;const s=window.__HARNESS__,t=s==null?void 0:s.posthog;return t!=null&&t.key?t:null}function wT(s){return s.consentSource==="env-forced-off"}function Ab(s){return!wT(s)&&s.productAnalyticsOptIn}let Ho=!1;function xT(s){if(Ho){of(s),cf(s);return}const t=ST();if(t&&Ab(s)){if(Si.__loaded){Ho=!0,of(s),cf(s);return}Si.init(t.key,{api_host:t.apiHost,ui_host:t.uiHost,capture_pageview:!0,capture_pageleave:!0,autocapture:!0,enable_heatmaps:!0,capture_dead_clicks:!0,before_send:vT,persistence:"localStorage",disable_session_recording:!0}),Ho=!0,of(s),cf(s)}}function of(s){if(Ho)try{Ab(s)?Si.has_opted_out_capturing()&&Si.opt_in_capturing():Si.has_opted_out_capturing()||Si.opt_out_capturing()}catch{}}let lf=null;function cf(s){if(Ho)try{if(s.authenticated&&s.userId){lf=s.userId,Si.identify(s.userId),s.tenantId&&Si.group("organization",s.tenantId,{...s.organizationName?{name:s.organizationName}:{}}),mT({active_organization_id:s.tenantId??void 0,app_version:s.version});return}lf&&(lf=null,Si.reset())}catch{}}function CT(s){return[`Add human-readable descriptions to the "${s.name}" agent so its Sapiom canvas explains what each part does.`,"",`Edit the agent definition file(s) under ${s.path} (the entry is usually index.ts):`,"1. Give the defineAgent({ ... }) call a one-line `description` summarizing what the whole agent does.","2. Give every defineStep({ ... }) a one-line `description` of what that step does — infer it from the step's own code: its input, the Sapiom services it calls, and where it transitions.","","Rules:","- One sentence each, at most ~120 characters, present tense, plain language — don't just restate the step's name.","- Edit the source ONLY: add or refine `description` fields and nothing else. Do not change logic, control flow, imports, or other fields.","- Run NO commands — no npm/pnpm, no build, no tests, no git. Just make the edits and save. (The `description` field is supported by @sapiom/agent 0.7.0+, which this project already uses.)","- When the edits are saved you're done — the Sapiom canvas re-renders automatically, with no further step."].join(`
455
+ `)}const Rb=s=>s.split("/").filter(Boolean).pop()??s;function dy(s,t){var n;return(n=t[s.id])!=null&&n.trim()?!1:!s.title||s.title===Rb(s.cwd)}function fy(s,t,n){var c;const a=(c=n[s.id])==null?void 0:c.trim();if(a)return a;if(!dy(s,n))return s.title;const l=Rb(s.cwd),p=t.filter(u=>u.cwd===s.cwd&&(u.status!=="exited"||u.id===s.id)&&dy(u,n)).sort((u,v)=>u.createdAt.localeCompare(v.createdAt)||u.id.localeCompare(v.id)).findIndex(u=>u.id===s.id);return p>0?`${l} ${p+1}`:l}const Mb="(max-width: 768px)";function Zf(){return typeof window<"u"&&window.matchMedia(Mb).matches}function ET(s){const t=window.matchMedia(Mb);return t.addEventListener("change",s),()=>t.removeEventListener("change",s)}function kT(){return $.useSyncExternalStore(ET,Zf,()=>!1)}const Db="sapiom-harness-pane-widths",Mp=180,jb=480,Qf=320,Go=320,Nb=720;function ep(s,t,n){return Math.min(Math.max(s,t),n)}function TT(){const s={rail:Qf,canvas:null};if(typeof window>"u")return s;try{const t=window.localStorage.getItem(Db);if(!t)return s;const n=JSON.parse(t);return{rail:ep(typeof n.rail=="number"?n.rail:Qf,Mp,jb),canvas:typeof n.canvas=="number"?ep(n.canvas,Go,Nb):null}}catch{return s}}function py(s){window.localStorage.setItem(Db,JSON.stringify(s))}function AT(){const[s,t]=$.useState(TT),[n,a]=$.useState(!1),l=(p,c,u,v,b,f)=>x=>{const C=x.currentTarget;C.setPointerCapture(x.pointerId),f==null||f(!0);const A=x.clientX,E=b(),m=_=>{const y=ep(E+(_.clientX-A)*c,u,v);t(k=>k[p]===y?k:{...k,[p]:y})},S=()=>{C.removeEventListener("pointermove",m),C.removeEventListener("pointerup",S),f==null||f(!1),t(_=>(py(_),_))};C.addEventListener("pointermove",m),C.addEventListener("pointerup",S)},d=(p,c)=>{t(u=>{const v={...u,[p]:c};return py(v),v})};return{widths:s,canvasResizing:n,startRailDrag:l("rail",1,Mp,jb,()=>s.rail),startCanvasDrag:l("canvas",-1,Go,Nb,()=>{if(s.canvas!=null)return s.canvas;const p=document.querySelector(".canvas-pane");return p?p.getBoundingClientRect().width:Go},a),resetRail:()=>d("rail",Qf),resetCanvas:()=>{a(!0),d("canvas",null),window.setTimeout(()=>a(!1),0)}}}const RT=2e3;function MT(s){const t=new URL("/ws/events",window.location.href);t.protocol=t.protocol==="https:"?"wss:":"ws:",t.searchParams.set("token",ha());let n=null,a=null,l=!1;const d=()=>{n=new WebSocket(t),n.addEventListener("message",p=>{try{s(JSON.parse(p.data))}catch{}}),n.addEventListener("close",()=>{l||(a=setTimeout(d,RT))})};return d(),()=>{l=!0,a&&clearTimeout(a),n==null||n.close()}}const vy=4e3;function DT(s){if(typeof s=="string")return s;if(s!==null&&typeof s=="object"){const t=s,n=[t.ts,t.level,t.msg??t.message].filter(a=>typeof a=="string"||typeof a=="number");if(n.length>0)return n.map(String).join(" ")}return String(s)}function jT(s){if(!Array.isArray(s)||s.length===0)return;const t=s.map(DT).join(`
456
+ `).trim();if(t!=="")return t.length>vy?t.slice(t.length-vy):t}function NT(s){return s==="succeeded"?"passed":s==="threw"?"failed":"pending"}function LT(s){return s==="completed"?"completed":s==="failed"?"failed":"running"}function OT(s){var a;const t={id:`${s.step}-${s.attempt}`,name:s.step,status:NT(s.status)};s.input!==void 0&&(t.input=s.input),s.output!==void 0&&(t.output=s.output),(a=s.error)!=null&&a.message&&(t.error=s.error.message);const n=jT(s.logs);return n!==void 0&&(t.logSlice=n),s.calls&&s.calls.length>0&&(t.calls=s.calls.map(l=>({capability:l.capability,stubUsed:l.stubUsed,args:l.args,result:l.result}))),t}function BT(s,t={}){const n={executionId:t.executionId??"",status:LT(t.outcome),steps:s.map(OT),stubbed:!0};return t.unusedStubs&&t.unusedStubs.length>0&&(n.unusedStubs=t.unusedStubs),t.stubWarnings&&t.stubWarnings.length>0&&(n.stubWarnings=t.stubWarnings),n}const Dt=nx(),HT=3e3,zT=8;function IT(){const[s,t]=$.useState(null),[n,a]=$.useState(null),l=$.useRef(null);l.current=n;const[d,p]=$.useState(!0),[c,u]=$.useState(null),[v,b]=$.useState(null),[f,x]=$.useState(0),[C,A]=$.useState(null),[E,m]=$.useState(null),[S,_]=$.useState([]),[y,k]=$.useState(null),[R,M]=$.useState(!1),j=$.useRef(new Map),T=$.useRef(0),D=$.useRef(new Map),[H,P]=$.useState(null),[W,U]=$.useState(new Set),[Y,J]=$.useState([]),q=$.useRef(new Map),[G,ee]=$.useState(new Map),[O,F]=$.useState(new Map),[L,B]=$.useState(new Map),V=$.useRef(new Map),[te,ce]=$.useState(new Map),[de,K]=$.useState(new Map),[I,ue]=$.useState(0),ie=$.useCallback(()=>{ue(ae=>ae+1)},[]),we=$.useRef(0),fe=$.useCallback(ae=>{we.current+=1,m(ae)},[]),$e=$.useRef([]),De=$.useCallback(ae=>{Dt.getRunState(ae).then(me=>ee(xe=>{const Se=xe.get(ae);return Se?new Map(xe).set(ae,{...Se,run:me}):xe})).catch(()=>{})},[]),Ke=$.useCallback((ae,me,xe)=>{const Se=V.current.get(ae);Se&&clearInterval(Se);const Oe=ua($e.current.find(at=>at.id===ae)),tt=Date.now();F(at=>{const Kt=at.get(ae)??[];return Kt.includes(me)?at:new Map(at).set(ae,[...Kt,me])}),B(at=>{if(!at.has(ae))return at;const Kt=new Map(at);return Kt.delete(ae),Kt});const st=async()=>{try{const at=await Dt.getRunState(me);if(ee(Kt=>new Map(Kt).set(me,{run:at,target:xe,workflowPath:Oe,observedAt:tt})),at.status!=="running"){const Kt=V.current.get(ae);Kt&&clearInterval(Kt),V.current.delete(ae)}}catch{const at=V.current.get(ae);at&&clearInterval(at),V.current.delete(ae)}};st(),V.current.set(ae,setInterval(()=>void st(),2e3))},[]),Ie=$.useRef(0),Le=$.useCallback(async(ae,me,xe)=>{Ie.current+=1;const Se=`local-${Date.now()}-${Ie.current}`,Oe=ua($e.current.find(Qe=>Qe.id===ae)),tt=Date.now(),st=[];let at,Kt,Ps;F(Qe=>{const ut=Qe.get(ae)??[];return ut.includes(Se)?Qe:new Map(Qe).set(ae,[...ut,Se])}),B(Qe=>{if(!Qe.has(ae))return Qe;const ut=new Map(Qe);return ut.delete(ae),ut});const Ci=()=>{const Qe=BT(st,{executionId:Se,outcome:at,unusedStubs:Kt,stubWarnings:Ps});ee(ut=>new Map(ut).set(Se,{run:Qe,target:"local",workflowPath:Oe,observedAt:tt}))};Ci();const Ds=Qe=>{Qe.kind==="summary"?(at=Qe.outcome,Kt=Qe.unusedStubs,Ps=Qe.stubWarnings):Qe.kind==="error"?(at="failed",st.push({step:"run-local",attempt:1,input:xe,status:"threw",error:{name:"RunLocalError",message:Qe.error},logs:[]})):st.push(Qe),Ci()};try{await Dt.runLocal({sourceDir:me,input:xe},Ds)}catch(Qe){at="failed",Ci(),k(Qe instanceof Hs&&Qe.reason?Qe.reason:Qe.message)}finally{ie()}},[ie]),zt=$.useCallback((ae,me)=>{B(xe=>new Map(xe).set(ae,me)),De(me)},[De]),Ue=$.useMemo(()=>{const ae=new Map;return O.forEach((me,xe)=>{const Se=L.get(xe),Oe=Se&&me.includes(Se)?Se:me[me.length-1],tt=Oe?G.get(Oe):void 0;tt&&ae.set(xe,tt)}),ae},[O,L,G]);$.useEffect(()=>{$e.current=(s==null?void 0:s.sessions)??[]},[s]),$.useEffect(()=>{const ae=V.current;return()=>{ae.forEach(me=>clearInterval(me)),ae.clear()}},[]),$.useEffect(()=>{const ae=q.current;return()=>{ae.forEach(me=>clearTimeout(me)),ae.clear()}},[]),$.useEffect(()=>{let ae=!1;return f>0&&(p(!0),u(null),b(null)),Promise.all([Dt.getState(),Dt.getSettings()]).then(([me,xe])=>{if(ae)return;t(me),a(xe),b(null),me.tasks&&J(me.tasks);const Se=me.sessions.find(Oe=>Oe.status!=="exited");Se&&m(Se.id),me.workflows[0]&&A(me.workflows[0].path)}).catch(me=>{ae||(u(me.message),b(me instanceof Hs?{status:me.status}:{networkError:!0}))}).finally(()=>!ae&&p(!1)),()=>{ae=!0}},[f]);const We=$.useCallback(()=>x(ae=>ae+1),[]);$.useEffect(()=>{if(!E)return;const ae=s==null?void 0:s.sessions.find(me=>me.id===E);A(ua(ae)??null)},[E]);const vt=$.useCallback(async()=>{const ae=await Dt.listWorkflows();t(me=>me&&{...me,workflows:ae})},[]);$.useEffect(()=>MT(ae=>{if(P(ae),ae.type==="session.status"){if(t(me=>{if(!me)return me;const Se=me.sessions.some(Oe=>Oe.id===ae.session.id)?me.sessions.map(Oe=>Oe.id===ae.session.id?ae.session:Oe):[...me.sessions,ae.session];return{...me,sessions:Se}}),ae.session.status==="exited"){const me=ae.session.id,xe=q.current.get(me);xe&&(clearTimeout(xe),q.current.delete(me)),U(Se=>{if(!Se.has(me))return Se;const Oe=new Set(Se);return Oe.delete(me),Oe})}}else if(ae.type==="workflows.changed")vt();else if(ae.type==="execution.started")Ke(ae.harnessSessionId,ae.executionId,ae.target);else if(ae.type==="port.detected")ce(me=>new Map(me).set(ae.harnessSessionId,{port:ae.port,url:ae.url}));else if(ae.type==="task.status")J(me=>me.some(Se=>Se.id===ae.task.id)?me.map(Se=>Se.id===ae.task.id?ae.task:Se):[...me,ae.task]);else if(ae.type==="session.activity"){const me=ae.harnessSessionId;U(Se=>Se.has(me)?Se:new Set(Se).add(me));const xe=q.current.get(me);xe&&clearTimeout(xe),q.current.set(me,setTimeout(()=>{q.current.delete(me),U(Se=>{if(!Se.has(me))return Se;const Oe=new Set(Se);return Oe.delete(me),Oe})},HT))}else ae.type==="auth.changed"&&(t(me=>me&&{...me,authenticated:ae.authenticated,organizationName:ae.organizationName}),vt())}),[vt,Ke]);const It=$.useCallback(async ae=>{const me=Array.from(new Set(ae)),xe=me.map(Se=>{const Oe=j.current.get(Se);if(Oe)return Oe;const tt=Dt.sessionHistory(Se).finally(()=>{j.current.delete(Se)});return j.current.set(Se,tt),tt});T.current+=1,M(!0);try{const Se=await Promise.allSettled(xe),Oe=[],tt=new Set;Se.forEach((st,at)=>{st.status==="fulfilled"&&(tt.add(me[at]),Oe.push(...st.value))}),_(st=>NE(st,Oe,tt))}finally{T.current-=1,T.current===0&&M(!1)}},[]),rt=$.useCallback(async ae=>{var Se;const me=await Dt.createSession(ae);t(Oe=>Oe&&!Oe.sessions.some(tt=>tt.id===me.id)?{...Oe,sessions:[...Oe.sessions,me]}:Oe),fe(me.id);const xe=[ae.cwd,...(((Se=l.current)==null?void 0:Se.recentDirs)??[]).filter(Oe=>Oe!==ae.cwd)].slice(0,zT);a(Oe=>Oe&&{...Oe,recentDirs:xe});try{const Oe=await Dt.updateSettings({recentDirs:xe});a(tt=>tt&&{...tt,recentDirs:Oe.recentDirs})}catch{}return me},[fe]),ft=$.useCallback(()=>Dt.listTemplates(),[]),kt=$.useCallback(ae=>Dt.getTemplate(ae),[]),es=$.useCallback(ae=>Dt.sessionRecord(ae),[]),cs=$.useCallback(async ae=>{const me=we.current;try{const xe=await Dt.resumeSession(ae);return t(Se=>Se&&{...Se,sessions:Se.sessions.map(Oe=>Oe.id===xe.id?xe:Oe)}),we.current===me&&fe(xe.id),xe}catch(xe){throw k(xe instanceof Hs&&xe.reason?xe.reason:xe.message),xe}},[fe]),St=$.useCallback(async({cwd:ae,harness:me,from:xe})=>{const Se=await rt({cwd:ae,harness:me,rehydrateFrom:xe});return Se.rehydratedFrom||k("Nothing was recorded for that session, so this one starts fresh."),Se},[rt]),us=$.useCallback(async ae=>{var xe;const me=ae.harnessSessionId??((xe=s==null?void 0:s.sessions.find(Se=>Se.agentSessionId===ae.agentSessionId))==null?void 0:xe.id);if(ae.resumeMode==="rehydrate")return St({cwd:ae.cwd,harness:ae.harness,from:me??ae.agentSessionId});if(me)return cs(me);try{const Se=await Dt.adoptSession({agentSessionId:ae.agentSessionId,harness:ae.harness,cwd:ae.cwd,title:ae.title,lastActiveAt:ae.lastActiveAt});return t(Oe=>{if(!Oe)return Oe;const tt=Oe.sessions.some(st=>st.id===Se.id)?Oe.sessions.map(st=>st.id===Se.id?Se:st):[...Oe.sessions,Se];return{...Oe,sessions:tt}}),fe(Se.id),Se}catch(Se){throw k(Se instanceof Hs&&Se.reason?Se.reason:Se.message),Se}},[s,cs,St,fe]),Lt=$.useCallback(async ae=>{try{await Dt.killSession(ae)}catch(xe){throw k(xe instanceof Hs&&xe.reason?xe.reason:xe.message),xe}const me=((s==null?void 0:s.sessions)??[]).filter(xe=>xe.id!==ae);if(t(xe=>xe&&{...xe,sessions:me}),E===ae){const xe=me.find(Se=>Se.status!=="exited");fe(xe?xe.id:null)}},[s,E,fe]),yt=$.useCallback(async ae=>{const me=await Dt.connectWorkflow(ae);return t(xe=>xe&&{...xe,workflows:[...xe.workflows.filter(Se=>Se.path!==me.path),me]}),me},[]),ct=$.useCallback(async ae=>{const me=await Dt.scanWorkflows(ae);return await vt(),me},[vt]),ss=$.useCallback(()=>Dt.listHarnesses(),[]),Gt=$.useCallback(async(ae,me)=>{const xe=await Dt.bindWorkflow(ae,me);t(Se=>Se&&{...Se,sessions:Se.sessions.map(Oe=>Oe.id===xe.id?xe:Oe)})},[]),Vt=$.useCallback(async ae=>{const me=await Dt.updateSettings(ae);return a(me),ae.telemetryOptIn!==void 0&&t(xe=>xe&&{...xe,telemetryOptIn:me.telemetryOptIn}),ae.productAnalyticsOptIn!==void 0&&t(xe=>xe&&{...xe,productAnalyticsOptIn:me.productAnalyticsOptIn!==!1}),me},[]),Yt=$.useCallback(async(ae,me)=>{try{await Dt.runMacro(ae,me)}catch(xe){k(xe instanceof Hs&&xe.reason?xe.reason:xe.message)}},[]),Os=$.useCallback(ae=>{const me=D.current.get(ae);if(me)return me;const xe=(async()=>{k("Deploying…");let Se=null,Oe=null;try{const tt=await Dt.deploy(ae,st=>{st.phase==="linking"?(Se="linking",k(`Deploying — creating the agent "${st.name}" on Sapiom…`)):st.phase==="warning"?(Oe=st.message,k(st.message)):st.phase==="building"&&(Se="building",k("Deploying — building on Sapiom…"),vt())});if(tt.phase==="ready")k(Oe?`Deployed to Sapiom. ${Oe}`:"Deployed to Sapiom."),K(st=>{if(!st.has(ae))return st;const at=new Map(st);return at.delete(ae),at}),await vt();else if(tt.phase==="error"){const st=Se==="linking"?"Couldn't create the agent":"Deploy failed",at=tt.hint?`${st}: ${tt.message} (${tt.hint})`:`${st}: ${tt.message}`;k(at),K(Kt=>new Map(Kt).set(ae,at)),await vt()}}catch(tt){const st=tt instanceof Hs&&tt.reason?tt.reason:tt.message;k(st),K(at=>new Map(at).set(ae,st))}finally{ie(),D.current.delete(ae)}})();return D.current.set(ae,xe),xe},[vt,ie]),ms=$.useCallback(async(ae,me,xe)=>{try{const{executionId:Se}=await Dt.run({definitionId:me,input:xe});Ke(ae,Se,"prod")}catch(Se){k(Se instanceof Hs&&Se.reason?Se.reason:Se.message)}finally{ie()}},[Ke,ie]),ke=$.useCallback(async()=>Dt.startAuth(),[]),Fe=$.useCallback(async()=>{try{await Dt.disconnect()}catch(ae){k(ae instanceof Hs&&ae.reason?ae.reason:ae.message)}},[]),ts=$.useCallback(()=>k(null),[]),ys=$.useCallback(async(ae,me)=>{await Dt.injectInput(ae,{text:me,submit:!0})},[]),Ms=$.useCallback(ae=>{k(ae)},[]),xi=$.useCallback(ae=>de.get(ae)??null,[de]),Xs=$.useCallback(ae=>Dt.listDir(ae),[]);return{state:s,loading:d,error:c,errorKind:v,reload:We,settings:n,bootToken:ha(),selectedWorkflowPath:C,setSelectedWorkflowPath:A,activeSessionId:E,setActiveSessionId:fe,history:S,historyLoading:R,loadHistory:It,createSession:rt,listTemplates:ft,getTemplate:kt,sessionRecord:es,resumeSession:cs,rehydrateSession:St,resumeFromHistory:us,closeSession:Lt,connectWorkflow:yt,scanWorkflows:ct,listHarnesses:ss,bindWorkflow:Gt,updateSettings:Vt,runMacro:Yt,deploy:Os,startProdRun:ms,runLocal:Le,injectInput:ys,showToast:Ms,lastDeployErrorFor:xi,directActionSettleSeq:I,listDir:Xs,lastMessage:H,runsBySession:Ue,runsByExecution:G,runIdsBySession:O,selectRun:zt,previewBySession:te,toast:y,dismissToast:ts,busySessionIds:W,tasks:Y,api:Dt,startAuth:ke,disconnect:Fe}}function yc(s,t){return t?s.filter(n=>n.status!=="exited"&&(n.boundWorkflowPath===t||n.boundWorkflowPath==null&&n.cwd===t)).sort((n,a)=>n.createdAt.localeCompare(a.createdAt)||n.id.localeCompare(a.id)):[]}const $T=()=>{var Qe,ut,hs,oi,_n,Ei,qn,ge,Me,qe,wt,Ge,rs,ws;const s=IT(),t=H3(),[n,a]=$.useState(!1),[l,d]=$.useState(!1),p=$.useRef(new Set),c=$.useRef(new Set),u=$.useRef(new Set),[v,b]=$.useState(null),[f,x]=$.useState(!1),[C,A]=$.useState(()=>{const Z=zi().rightTab;return Z==="canvas"||Z==="steps"||Z==="code"?Z:"canvas"}),[E,m]=$.useState(C==="code"),[S,_]=$.useState(null),[y,k]=$.useState(!1),[R,M]=$.useState(()=>zi().sessionNames??{}),j=(Z,Te)=>{M(Re=>{const He={...Re},Tt=Te.trim();return Tt?He[Z]=Tt:delete He[Z],vn({sessionNames:He}),He})},[T,D]=$.useState(()=>Zf()||(zi().railCollapsed??!1)),[H,P]=$.useState(()=>Zf()||(zi().rightCollapsed??!1)),[W,U]=$.useState(!1),Y=kT(),{widths:J,canvasResizing:q,startRailDrag:G,startCanvasDrag:ee,resetRail:O,resetCanvas:F}=AT(),[L,B]=$.useState(!1),V=$.useRef(!1),te=$.useRef(!1),ce=$.useRef(null),de=$.useRef(null),K=$.useCallback(Z=>{Z&&!V.current&&Z.style.setProperty("--rp-w",`${Z.offsetWidth}px`)},[]),I=$.useCallback(Z=>{var Re;if((Re=de.current)==null||Re.disconnect(),ce.current=Z,!Z){de.current=null;return}const Te=new ResizeObserver(()=>{te.current||K(Z)});Te.observe(Z),de.current=Te},[K]);V.current=H,te.current=L,$.useLayoutEffect(()=>{if(Y)return;B(!0);const Z=window.setTimeout(()=>{B(!1),K(ce.current)},260);return()=>window.clearTimeout(Z)},[H,Y,K]),$.useEffect(()=>{const Z=Te=>{var He;const Re=Te.key.toLowerCase();if((Te.metaKey||Te.ctrlKey)&&(Re==="k"||Re==="p")){Te.preventDefault(),a(!0);return}if((Te.metaKey||Te.ctrlKey)&&/^[1-9]$/.test(Te.key)){const Xt=yc(((He=s.state)==null?void 0:He.sessions)??[],v)[Number(Te.key)-1];Xt&&(Te.preventDefault(),d(!1),_(null),s.setActiveSessionId(Xt.id))}};return window.addEventListener("keydown",Z),()=>window.removeEventListener("keydown",Z)},[(Qe=s.state)==null?void 0:Qe.sessions,v]);const ue=hk({settingsRoot:(ut=s.settings)==null?void 0:ut.projectRoot,defaultProjectRoot:(hs=s.state)==null?void 0:hs.defaultProjectRoot,launchDir:(oi=s.state)==null?void 0:oi.launchDir}),ie=async Z=>{await s.updateSettings({projectRoot:Z})};$.useEffect(()=>{var Te;if(!n||!s.state)return;const Z=Ay(s.state.sessions,((Te=s.settings)==null?void 0:Te.recentDirs)??[],s.activeSessionId);Z.length>0&&s.loadHistory(Z)},[n]);const we=$.useRef(!1);$.useEffect(()=>{var Te;if(we.current||!s.state)return;we.current=!0;const Z=s.state.sessions.find(Re=>Re.id===s.activeSessionId);b(ua(Z)??((Te=s.state.workflows[0])==null?void 0:Te.path)??null)},[s.state,s.activeSessionId]);const fe=s.state;$.useEffect(()=>{fe&&xT(fe)},[fe,fe==null?void 0:fe.authenticated,fe==null?void 0:fe.userId,fe==null?void 0:fe.tenantId,fe==null?void 0:fe.consentSource,fe==null?void 0:fe.productAnalyticsOptIn,fe==null?void 0:fe.version]),$.useEffect(()=>{if(!fe)return;const Z=fe.sessions.find(Re=>Re.id===s.activeSessionId),Te={firstRun:fe.firstRun===!0,settingsOpen:f,templatesOpen:y,hasLiveSession:fe.sessions.some(Re=>Re.status!=="exited"),inspectingDeadSession:(Z==null?void 0:Z.status)==="exited",rightTab:C};yT(Te)},[fe,s.activeSessionId,f,y,C]);const $e=$.useRef(Y);$.useEffect(()=>{$e.current!==Y&&($e.current=Y,D(Y),P(Y))},[Y]),$.useEffect(()=>{Y||vn({railCollapsed:T,rightCollapsed:H})},[T,H,Y]),$.useEffect(()=>{vn({rightTab:C})},[C]);const De=((_n=s.state)==null?void 0:_n.sessions.find(Z=>Z.id===s.activeSessionId&&Z.status==="exited"))??null,Ke=De!=null&&De.agentSessionId?(Ei=s.history.find(Z=>Z.agentSessionId===De.agentSessionId))==null?void 0:Ei.resumeMode:"rehydrate",Ie=(De==null?void 0:De.agentSessionId)!=null&&Ke===void 0?De.cwd:null,Le=s.loadHistory;$.useEffect(()=>{Ie&&Le([Ie])},[Ie,Le]);const zt=$.useRef(new Map);if($.useEffect(()=>{for(const Z of s.tasks){if(Z.macroId!=="describe")continue;zt.current.get(Z.id)==="running"&&Z.status!=="running"&&s.showToast(Z.status==="failed"?"Couldn't generate descriptions — check the agent terminal for details.":"Describe run finished — the canvas updates if the agent changed the source."),zt.current.set(Z.id,Z.status)}},[s.tasks,s.showToast]),s.loading)return h.jsx("div",{className:"app-status",children:"Loading Agent Studio…"});if(s.error||!s.state){const Z=B3({online:t,error:s.errorKind});return h.jsx(DE,{status:Z==="online"?"error":Z,onRetry:s.reload,detail:s.error,onStartAuth:Z==="auth"?s.startAuth:void 0})}const{state:Ue}=s,We=Ue.sessions.find(Z=>Z.id===s.activeSessionId)??null,vt=ua(We),It=Ue.workflows.find(Z=>Z.path===vt)??null,rt=Ue.workflows.find(Z=>Z.path===v)??null,ft=yc(Ue.sessions,v),kt=S!=null,es=!kt&&(We==null?void 0:We.status)==="exited",cs=!kt&&!es&&!l&&rt!=null&&ft.length===0,St=!kt&&!es&&!l&&!cs&&We!=null&&We.status!=="exited",us=!kt&&!es&&(l||!cs&&!St),Lt=l&&We!=null&&We.status!=="exited",yt=cs?null:It,ct=cs?(rt==null?void 0:rt.name)??null:null,ss=yt?va(yt,s.lastDeployErrorFor(yt.path)):null,Gt=s.activeSessionId?s.runsBySession.get(s.activeSessionId)??null:null,Vt=i0(Gt,vt)?Gt:null,Yt=s.activeSessionId?(s.runIdsBySession.get(s.activeSessionId)??[]).map(Z=>s.runsByExecution.get(Z)).filter(Z=>Z!==void 0).filter(Z=>i0(Z,vt)):[],Os=()=>{Y&&D(!0)},ms=async(Z,Te)=>{d(!1),_(null),b(Z),Os();const Re=await s.createSession({cwd:Z,harness:Te});return Y||p.current.add(Re.id),Rc("session.created"),gT("session.started",{harness_kind:Te,origin:"user"}),Re},ke=async(Z,Te)=>{await ms(Z,Te)},Fe=(Z,Te,Re)=>{const He=async Tt=>{try{await s.injectInput(Z,Te)}catch(Xt){if(Tt<6&&Xt instanceof Hs&&Xt.status===409){window.setTimeout(()=>void He(Tt+1),1500);return}s.showToast(Re)}};He(0)},ts=async(Z,Te,Re)=>{const He=await ms(Z,Te),Tt=`Scaffold a new Sapiom agent project in this directory: ${df(Z,"default")}, then run npm install, read AGENTS.md, and use the sapiom-agent-authoring skill to`,Xt=Re==null?void 0:Re.trim();Fe(He.id,Xt?`${Tt} build this:
457
+
458
+ ${Xt}`:`${Tt} define the first agent.`,"Couldn't send the scaffold prompt. Ask the coding agent to call sapiom_dev_agents_scaffold.")},ys=Z=>{(async()=>{const Te=yc(Ue.sessions,Z.path)[0],Re=(Te==null?void 0:Te.cwd)??Z.path;try{const He=await ms(Re,"claude-code");await s.bindWorkflow(He.id,Z.path),b(Z.path)}catch(He){s.showToast(He.message||"Couldn't start the session.")}})()},Ms=Z=>{var Re;const Te=((Re=Ue.sessions.find(He=>He.id===Z))==null?void 0:Re.cwd)??".";Fe(Z,`Scaffold a new Sapiom agent project in this directory: ${df(Te,"default")}, then run npm install, read AGENTS.md, and use the sapiom-agent-authoring skill to define the first agent.`,"Couldn't send the scaffold prompt. Ask the coding agent to call sapiom_dev_agents_scaffold.")},xi=async(Z,Te)=>{const Re=await ms(Z,"claude-code");Fe(Re.id,mk(Te,Z),Te.kind==="gallery"?"Couldn't send the clone prompt. Ask the coding agent to run sapiom_dev_agents_clone.":"Couldn't send the starter prompt. Ask the coding agent to call sapiom_dev_agents_scaffold.")},Xs=Z=>{const Te=new Set;for(const Re of Ue.sessions){const He=Re.cwd.split("/").filter(Boolean).pop();He&&Te.add(He)}for(const Re of Ue.workflows){const He=Re.path.split("/").filter(Boolean).pop();He&&Te.add(He)}return zy(fk(Z,Te),ue||null)},ae=(Z,Te)=>{const Re=Xs(Z.trim()?uk(Z):cp);if(!Re){s.showToast("Set a project folder first — use the + to open one.");return}P(!0),ts(Re,Te,Z.trim()||void 0)},me=Z=>{const Te=Xs(Z.id);if(!Te){s.showToast("Set a project folder first — use the + to open one.");return}P(!0),xi(Te,Z)},xe=async Z=>{const Te=await s.scanWorkflows(Z);return s.showToast(Te.length===0?"No agent projects found under this folder.":Te.length===1?"Found 1 agent project.":`Found ${Te.length} agent projects.`),Te.length},Se=Z=>{var Re;if(Y)return;if(Z==null){P(!0);return}if(((Re=Ue.sessions.find(He=>He.id===Z))==null?void 0:Re.status)==="exited")return;u.current.has(Z)||sp()?P(!1):(P(!0),p.current.add(Z))},Oe=Z=>{d(!1),_(null),Os();const Te=Ue.sessions.find(Re=>Re.id===Z);Te&&b(ua(Te)??Te.cwd),s.setActiveSessionId(Z),Se(Z)},tt=Z=>{d(!1),_(null),s.setActiveSessionId(Z),Se(Z)},st=Z=>{d(!1),_(Z),Os()},at=Z=>{var Re;const Te=((Re=s.settings)==null?void 0:Re.editorUrlTemplate)??"vscode://file{path}";window.location.href=Te.replace("{path}",encodeURI(Z))},Kt=Z=>{var He;d(!1),_(null),b(Z),Os();const Te=yc(Ue.sessions,Z),Re=Te.some(Tt=>Tt.id===s.activeSessionId)?s.activeSessionId:((He=Te[Te.length-1])==null?void 0:He.id)??null;Re!==s.activeSessionId&&s.setActiveSessionId(Re),Se(Re)},Ps=async Z=>{Os();const Te=Ue.sessions.filter(ds=>ds.status!=="exited"),Re=ds=>ds.boundWorkflowPath===Z||Z===ds.cwd||Z.startsWith(`${ds.cwd}/`),He=Te.find(ds=>ds.id===s.activeSessionId),Tt=He&&Re(He)?He:Te.filter(Re).sort((ds,wa)=>wa.cwd.length-ds.cwd.length||wa.createdAt.localeCompare(ds.createdAt))[0];let Xt;if(Tt)d(!1),_(null),Tt.id!==s.activeSessionId&&s.setActiveSessionId(Tt.id),Xt=Tt.id;else try{Xt=(await ms(Z,"claude-code")).id}catch(ds){return s.showToast(ds.message||"Couldn't start a session in this folder."),null}return await s.bindWorkflow(Xt,Z),b(Z),Xt},Ci=(Z,Te)=>{(async()=>{let Re=s.activeSessionId;if(Z&&(Re=await Ps(Z.path)??Re),Te.action.kind==="open-url"){window.open(nk(Te.action.url,Z),"_blank","noopener,noreferrer");return}if(!Re)return;const He=Ny(Te.id);if(He!==null){if(He==="deploy")Z?s.deploy(Z.path):s.showToast("Select an agent first.");else if(He==="prod-run")if((Z==null?void 0:Z.definitionId)!=null&&Ty(Z))s.startProdRun(Re,String(Z.definitionId));else{const Tt=Z?s.lastDeployErrorFor(Z.path):null,Xt=Z?va(Z,Tt):"draft";s.showToast(Xt==="failed"?"Last deploy failed — retry Deploy.":Xt==="building"?"The cloud build is still in progress.":Xt==="linked"?"No ready deployment yet — deploy it first.":"This agent isn't deployed yet — deploy it first.")}else He==="run-local"&&(Z?s.runLocal(Re,Z.path):s.showToast("Select an agent first."));return}s.runMacro(Te.id,{harnessSessionId:Re,workflowPath:Z==null?void 0:Z.path})})()},Ds=Z=>{(async()=>{const Te=await Ps(Z.path)??s.activeSessionId;Te&&s.runMacro("describe",{harnessSessionId:Te,workflowPath:Z.path,subject:CT(Z)})})()};return h.jsxs("div",{className:"app-shell","data-rail-collapsed":T||void 0,children:[Y&&!T&&h.jsx("div",{className:"shell-scrim","data-testid":"rail-drawer-scrim","aria-hidden":"true",onClick:()=>D(!0)}),!T&&h.jsx(D3,{projectRoot:ue||null,onSaveProjectRoot:ie,width:J.rail,minWidth:Mp,workflows:Ue.workflows,sessions:Ue.sessions,activeSessionId:s.activeSessionId,focusedAgentPath:v,onFocusAgent:Kt,onOpenPalette:()=>a(!0),onConnect:async Z=>{await s.connectWorkflow(Z)},onCollapse:()=>D(!0),onSelectSession:Oe,overviewSelected:us,onSelectOverview:()=>{d(!0),_(null),Os()},onNewSession:()=>d(!0),onReviewSummary:st,history:s.history,historyLoading:s.historyLoading,onOpenHistory:Z=>void s.loadHistory(Z),recentDirs:((qn=s.settings)==null?void 0:qn.recentDirs)??[],launchDir:Ue.launchDir??null,listDir:s.listDir,onCreateSession:ke,listHarnesses:s.listHarnesses,onScaffoldSession:ts,onScaffoldInSession:Ms,onBrowseTemplates:()=>k(!0),templatesActive:y,onScanWorkflows:xe,onToast:s.showToast,telemetryOptIn:((ge=s.settings)==null?void 0:ge.telemetryOptIn)??Ue.telemetryOptIn,consentSource:Ue.consentSource,consentEnvReason:Ue.consentEnvReason,authenticated:Ue.authenticated,organizationName:Ue.organizationName,onToggleTelemetry:async Z=>{await s.updateSettings({telemetryOptIn:Z})},productAnalyticsOptIn:Ue.productAnalyticsOptIn,onToggleProductAnalytics:async Z=>{await s.updateSettings({productAnalyticsOptIn:Z})},rollingSummary:((Me=s.settings)==null?void 0:Me.rollingSummary)===!0,onToggleRollingSummary:async Z=>{await s.updateSettings({rollingSummary:Z})},onStartAuth:s.startAuth,onDisconnect:s.disconnect,settingsOpen:f,onSetSettingsOpen:x}),!T&&!Y&&h.jsx("div",{className:"pane-resize-handle pane-resize-handle-rail",style:{left:J.rail},onPointerDown:G,onDoubleClick:O,role:"separator","aria-orientation":"vertical","aria-label":"Resize workspace rail","data-testid":"resize-handle-rail"}),h.jsxs("div",{className:"workspace-main",children:[!t&&h.jsx(jE,{}),Ue.consentSource==="default-silent"&&!((qe=s.settings)!=null&&qe.telemetryNoticeDismissed)&&h.jsx(ak,{onDismiss:()=>{s.updateSettings({telemetryNoticeDismissed:!0})},onOpenSettings:()=>x(!0)}),h.jsxs("div",{className:"app"+(y?" is-browsing":"")+(!y&&!Y&&!us?" canvas-animated":"")+(L?" canvas-sliding":"")+(q?" canvas-dragging":""),style:{gridTemplateColumns:y||Y||us?"minmax(0, 1fr)":`minmax(${Go}px, 1fr) ${H?J.canvas==null?"0fr":"0px":J.canvas==null?"1fr":`${J.canvas}px`}`},children:[y&&h.jsx(Bk,{projectRoot:ue||null,recentDirs:((wt=s.settings)==null?void 0:wt.recentDirs)??[],listDir:s.listDir,onExit:()=>k(!1),onUse:xi,listTemplates:s.listTemplates,getTemplate:s.getTemplate}),h.jsxs("div",{className:"center-pane",children:[h.jsx(tk,{openedAgentName:ct,reviewTitle:S?S.title:null,composing:us,activeSession:St||es?We:null,sessionName:We?fy(We,Ue.sessions,R):null,onRenameSession:j,boundWorkflowName:(It==null?void 0:It.name)??null,sessions:St?ft:[],onSelectSession:tt,labelOf:Z=>{const Te=fy(Z,Ue.sessions,R),Re=Z.cwd.split("/").filter(Boolean).pop()??"",He=Te.startsWith(`${Re} `)?Te.slice(Re.length+1):"";if(!(Te===Re||/^\d+$/.test(He))||!rt)return Te;const Xt=ft.findIndex(ds=>ds.id===Z.id);return Xt>0?`${rt.name} ${Xt+1}`:rt.name},busy:We!=null&&s.busySessionIds.has(We.id),onCloseSession:Z=>void s.closeSession(Z),onOpenInEditor:at,onToast:s.showToast,onExpandRail:T?()=>D(!1):null,onExpandRight:H?()=>P(!1):null,onNewSession:()=>d(!0),actions:St&&We&&It?h.jsx(rk,{workflow:It,activeSessionId:s.activeSessionId,sessionReady:We.ready===!0&&We.status!=="exited",macros:Ue.macros,onRunMacro:Z=>Ci(It,Z),preview:s.previewBySession.get(We.id)??null,lastDeployError:s.lastDeployErrorFor(It.path),authenticated:Ue.authenticated,directActionSettleSeq:s.directActionSettleSeq}):null}),h.jsx("div",{className:"terminal-slot",children:kt&&S?h.jsx(WE,{summary:S,loadRecord:s.sessionRecord,onStart:()=>{const Z=S;_(null),s.resumeFromHistory(Z)},onClose:()=>_(null)}):es&&We?h.jsx(qE,{session:We,resumeMode:Ke,loadRecord:s.sessionRecord,onResume:()=>void s.resumeSession(We.id),onContinue:()=>void s.rehydrateSession({cwd:We.cwd,harness:We.harness,from:We.id}),onClose:()=>void s.closeSession(We.id)}):cs&&rt?h.jsx(Mi,{className:"terminal-empty",testId:"open-agent-empty",icon:"Radio",title:`No running session for ${rt.name}`,body:"Start a session to map, run, and inspect this agent.",cta:h.jsxs("button",{className:"btn-primary","data-testid":"open-agent-start-session",onClick:()=>ys(rt),children:[h.jsx(_e,{name:"Plus",size:14})," Start session"]})}):St&&s.activeSessionId?h.jsx(ZE,{sessionId:s.activeSessionId,harness:(We==null?void 0:We.harness)??"claude-code",api:s.api,showToast:s.showToast,children:h.jsx("div",{className:"agent-view","data-testid":"agent-view",children:h.jsx("div",{className:"agent-view-panel",id:"agent-panel-terminal",children:h.jsx(Kk,{sessionId:s.activeSessionId,token:s.bootToken,cwd:(We==null?void 0:We.cwd)??null})})})}):h.jsx(v3,{firstRun:Ue.firstRun===!0,onBack:Lt?()=>d(!1):null,onSubmitIdea:ae,onUseTemplate:me,onBrowseTemplates:()=>k(!0),listHarnesses:s.listHarnesses,listTemplates:s.listTemplates,telemetryOptIn:((Ge=s.settings)==null?void 0:Ge.telemetryOptIn)??Ue.telemetryOptIn,onToggleTelemetry:async Z=>{await s.updateSettings({telemetryOptIn:Z})},recentDirs:((rs=s.settings)==null?void 0:rs.recentDirs)??[],projectRoot:ue||null,listDir:s.listDir,onConnect:async Z=>{await s.connectWorkflow(Z)},onScan:xe,onScaffold:ts,onSaveProjectRoot:ie})})]}),!H&&!Y&&!us&&h.jsx("div",{className:"pane-resize-handle pane-resize-handle-canvas",style:{right:J.canvas==null?"50%":`min(${J.canvas}px, calc(100% - ${Go}px))`},onPointerDown:ee,onDoubleClick:F,role:"separator","aria-orientation":"vertical","aria-label":"Resize canvas pane","data-testid":"resize-handle-canvas"}),Y&&!H&&h.jsx("div",{className:"shell-scrim","data-testid":"right-sheet-scrim","aria-hidden":"true",onClick:()=>P(!0)}),h.jsxs("div",{ref:I,className:"right-pane"+(H||us?" is-collapsed":""),children:[h.jsxs("div",{className:"right-pane-tabs",role:"tablist","aria-label":"Right pane",children:[h.jsxs("button",{role:"tab","aria-selected":C==="canvas",className:"right-pane-tab"+(C==="canvas"?" is-active":""),onClick:()=>A("canvas"),"data-testid":"right-tab-canvas",children:[h.jsx(_e,{name:"Workflow",size:14}),"Canvas"]}),h.jsxs("button",{role:"tab","aria-selected":C==="steps",className:"right-pane-tab"+(C==="steps"?" is-active":""),onClick:()=>A("steps"),"data-testid":"right-tab-steps",children:[h.jsx(_e,{name:"List",size:14}),"Steps"]}),h.jsxs("button",{role:"tab","aria-selected":C==="code",className:"right-pane-tab"+(C==="code"?" is-active":""),onClick:()=>{A("code"),m(!0)},"data-testid":"right-tab-code",children:[h.jsx(_e,{name:"Code",size:14}),"Code"]}),h.jsxs("div",{className:"right-pane-corner",children:[C==="canvas"&&(yt==null?void 0:yt.definitionId)!=null&&h.jsxs("a",{className:"status-tag status-tag-action workflow-deployed-tag right-pane-deployed","data-testid":"workflow-dashboard-link","data-deployment-state":ss??void 0,href:By(yt.definitionId),target:"_blank",rel:"noreferrer","aria-label":`${ss} — open in the Sapiom dashboard`,"data-tooltip":"Open this agent in the Sapiom dashboard",children:[h.jsx(_e,{name:"Cloud",size:12}),ss==="ready"?"deployed":ss==="building"?"building":ss==="failed"?"deploy failed":"linked"]}),C==="canvas"&&h.jsx("button",{className:"theme-toggle","data-testid":"canvas-expand","aria-label":W?"Exit expanded canvas":"Expand canvas",title:W?"Exit expanded canvas":"Expand canvas",onClick:()=>U(Z=>!Z),children:h.jsx(_e,{name:W?"Minimize2":"Maximize2",size:15})}),h.jsx("button",{className:"theme-toggle right-pane-collapse","data-testid":"right-collapse","aria-label":"Collapse canvas panel",title:"Collapse canvas panel",onClick:()=>P(!0),children:h.jsx(_e,{name:"PanelRightClose",size:15})})]})]}),h.jsx("div",{className:"right-pane-panel"+(C==="canvas"||C==="steps"?"":" is-hidden"),"data-testid":"right-panel-canvas",children:h.jsx(cE,{sessionId:s.activeSessionId,lastMessage:s.lastMessage,boundWorkflow:yt,noSessionAgent:ct,overviewActive:us,sessionExited:es,onCanvasContent:()=>{const Z=s.activeSessionId;Z&&(u.current.add(Z),!(Y||!p.current.has(Z)||c.current.has(Z))&&(c.current.add(Z),p.current.delete(Z),P(!1)))},expanded:W,onToggleExpanded:()=>U(Z=>!Z),macros:Ue.macros,tasks:s.tasks,surface:C==="steps"?"steps":"board",onOpenSteps:()=>A("steps"),run:(Vt==null?void 0:Vt.run)??null,runTarget:(Vt==null?void 0:Vt.target)??null,runs:Yt,onSelectRun:Z=>{s.activeSessionId&&s.selectRun(s.activeSessionId,Z)},workflows:Ue.workflows,onOpenWorkflow:Z=>void Ps(Z),onRunMacro:Z=>Ci(It,Z),onInjectPrompt:Z=>{s.activeSessionId&&s.injectInput(s.activeSessionId,Z)},onDescribeWorkflow:Ds})}),(C==="code"||E)&&h.jsx("div",{className:"right-pane-panel"+(C==="code"?"":" is-hidden"),"data-testid":"right-panel-code",children:h.jsx(EE,{boundWorkflow:yt,noSessionAgent:ct,agentsBaseUrl:Ue.agentsBaseUrl,lastDeployError:yt?s.lastDeployErrorFor(yt.path):null})})]})]})]}),n&&h.jsx(RE,{sessions:Ue.sessions,workflows:Ue.workflows,recentDirs:((ws=s.settings)==null?void 0:ws.recentDirs)??[],history:s.history,listDir:s.listDir,onSelectSession:Oe,onReviewSummary:st,onOpenPath:Z=>void ke(Z,"claude-code"),onBrowseTemplates:()=>k(!0),onClose:()=>a(!1)}),s.toast&&h.jsx(Jk,{message:s.toast,onDismiss:s.dismissToast}),h.jsx(Zk,{})]})};function PT(s=typeof window>"u"?"":window.location.search){return new URLSearchParams(s).get("frame")==="macos"?"macos":"web"}document.documentElement.dataset.windowFrame=PT();window.addEventListener("scroll",()=>{(window.scrollX!==0||window.scrollY!==0)&&window.scrollTo(0,0)},{passive:!0});Zw.createRoot(document.getElementById("root")).render(h.jsx($.StrictMode,{children:h.jsx($T,{})}));