@gct-paas/render 0.1.4-dev.9 → 0.1.5-dev.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 (106) hide show
  1. package/dist/index.min.css +2 -0
  2. package/dist/loader.esm.min.js +1 -0
  3. package/es/Event/Dependency/controller.d.ts +1 -1
  4. package/es/Event/Dependency/controller.mjs +81 -94
  5. package/es/Event/Dependency/displayRule.mjs +130 -68
  6. package/es/Event/Dependency/useDependency.mjs +117 -0
  7. package/es/Event/Dependency/useDependencyToShow.d.ts +1 -1
  8. package/es/Event/Dependency/useDependencyToShow.mjs +100 -96
  9. package/es/Event/baseEvent.d.ts +28 -32
  10. package/es/Event/baseEvent.mjs +383 -439
  11. package/es/Event/bizServiceRequest.d.ts +1 -1
  12. package/es/Event/bizServiceRequest.mjs +29 -41
  13. package/es/Event/eventType.d.ts +1 -1
  14. package/es/Event/eventType.mjs +1 -0
  15. package/es/Event/index.d.ts +6 -3
  16. package/es/Event/index.mjs +7 -0
  17. package/es/Event/utils/appRedis.mjs +39 -49
  18. package/es/Event/utils/globalLoading.d.ts +13 -0
  19. package/es/Event/utils/globalLoading.mjs +104 -0
  20. package/es/Event/utils/processRovedInfo.mjs +228 -294
  21. package/es/Event/utils/runGlobalByPage.d.ts +4 -1
  22. package/es/Event/utils/runGlobalByPage.mjs +297 -301
  23. package/es/Event/utils/verificationVar.mjs +32 -38
  24. package/es/_virtual/_plugin-vue_export-helper.mjs +8 -0
  25. package/es/_virtual/_rolldown/runtime.mjs +13 -0
  26. package/es/components/HandwritingPad.vue.d.ts +27 -0
  27. package/es/components/HandwritingPad.vue.mjs +7 -0
  28. package/es/components/HandwritingPad.vue_vue_type_script_setup_true_name_HandwritingPad_lang.mjs +109 -0
  29. package/es/components/HandwritingPad.vue_vue_type_style_index_0_scoped_d5b980b7_lang.css +9 -0
  30. package/es/components/index.d.ts +2 -0
  31. package/es/components/index.mjs +1 -0
  32. package/es/constant/data-format.d.ts +52 -0
  33. package/es/constant/data-format.mjs +66 -0
  34. package/es/constant/date-time.d.ts +99 -0
  35. package/es/constant/date-time.mjs +187 -0
  36. package/es/constant/index.d.ts +94 -0
  37. package/es/constant/index.mjs +100 -0
  38. package/es/controller/design-render/design-render.controller.d.ts +18 -0
  39. package/es/controller/design-render/design-render.controller.mjs +78 -0
  40. package/es/controller/design-render-base/design-render-base.controller.d.ts +9 -0
  41. package/es/controller/design-render-base/design-render-base.controller.mjs +12 -0
  42. package/es/controller/design-render-container/design-render-container.controller.d.ts +4 -0
  43. package/es/controller/design-render-container/design-render-container.controller.mjs +5 -0
  44. package/es/controller/design-render-item/design-render-item.controller.d.ts +4 -0
  45. package/es/controller/design-render-item/design-render-item.controller.mjs +5 -0
  46. package/es/controller/index.d.ts +4 -0
  47. package/es/controller/index.mjs +4 -0
  48. package/es/enums/index.mjs +17 -5
  49. package/es/hooks/index.d.ts +2 -0
  50. package/es/hooks/index.mjs +2 -0
  51. package/es/hooks/use-design-render-controller/use-design-render-controller.d.ts +11 -0
  52. package/es/hooks/use-design-render-controller/use-design-render-controller.mjs +32 -0
  53. package/es/hooks/useStorageRef.mjs +35 -31
  54. package/es/index.d.ts +4 -0
  55. package/es/index.mjs +34 -21
  56. package/es/interface/controller/i-design-render-base.controller.d.ts +43 -0
  57. package/es/interface/controller/i-design-render-container.controller.d.ts +7 -0
  58. package/es/interface/controller/i-design-render-item.controller.d.ts +7 -0
  59. package/es/interface/controller/i-design-render.controller.d.ts +93 -0
  60. package/es/interface/index.d.ts +12 -0
  61. package/es/interface/provider/i-render-base-node.provider.d.ts +45 -0
  62. package/es/interface/provider/i-render-container-node.provider.d.ts +30 -0
  63. package/es/interface/provider/i-render-editor-node.provider.d.ts +29 -0
  64. package/es/interface/provider/i-render-item-node.provider.d.ts +30 -0
  65. package/es/interface/state/i-design-render-base.state.d.ts +19 -0
  66. package/es/interface/state/i-design-render-container.state.d.ts +11 -0
  67. package/es/interface/state/i-design-render-item.state.d.ts +11 -0
  68. package/es/interface/state/i-design-render.state.d.ts +18 -0
  69. package/es/loader.d.ts +1 -0
  70. package/es/register/index.d.ts +1 -0
  71. package/es/register/index.mjs +2 -0
  72. package/es/register/node/node.register.d.ts +92 -0
  73. package/es/register/node/node.register.mjs +116 -0
  74. package/es/register/render-register/render-register.mjs +63 -58
  75. package/es/state/design-render/design-render.state.d.ts +13 -0
  76. package/es/state/design-render/design-render.state.mjs +15 -0
  77. package/es/state/design-render-base/design-render-base.state.d.ts +4 -0
  78. package/es/state/design-render-base/design-render-base.state.mjs +6 -0
  79. package/es/state/design-render-container/design-render-container.state.d.ts +4 -0
  80. package/es/state/design-render-item/design-render-item.state.d.ts +4 -0
  81. package/es/state/index.d.ts +4 -0
  82. package/es/utils/cacheAdapter.mjs +62 -54
  83. package/es/utils/expression/index.d.ts +1 -1
  84. package/es/utils/expression/index.mjs +105 -122
  85. package/es/utils/expression/regularExpression/methods.mjs +426 -567
  86. package/es/utils/field-attrs/basicAttrs.mjs +56 -80
  87. package/es/utils/field-attrs/index.mjs +16 -13
  88. package/es/utils/get-ref-data.mjs +41 -59
  89. package/es/utils/getFieldSchema.mjs +66 -80
  90. package/es/utils/index.d.ts +6 -3
  91. package/es/utils/index.mjs +11 -0
  92. package/es/utils/model-transformer.mjs +74 -64
  93. package/es/utils/render-plugin-pkg-util/render-plugin-pkg-util.d.ts +43 -0
  94. package/es/utils/render-plugin-pkg-util/render-plugin-pkg-util.mjs +65 -0
  95. package/es/utils/search/index.d.ts +2 -0
  96. package/es/utils/search/index.mjs +2 -0
  97. package/es/utils/search/search-default-value.d.ts +7 -0
  98. package/es/utils/search/search-default-value.mjs +244 -0
  99. package/es/utils/search/search-hooks.d.ts +6 -0
  100. package/es/utils/search/search-hooks.mjs +67 -0
  101. package/es/utils/useStyle.d.ts +2 -2
  102. package/es/utils/useStyle.mjs +20 -15
  103. package/package.json +20 -17
  104. package/dist/index.esm.min.mjs +0 -7758
  105. package/dist/index.min.cjs +0 -9
  106. package/dist/index.system.min.js +0 -9
@@ -1,9 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const g=require("@gct-paas/core"),Z=require("lodash-es"),Y=require("dayjs"),_=require("vue"),Di=require("qs");class xi{map=new Map;register(e,t){this.map.set(e,t)}unregister(e){this.map.delete(e)}get(e){return this.map.get(e)}keys(){return Array.from(this.map.keys())}}const Ei={[g.FIELD_TYPE.TEXT]:{attrsTransform:[{from:"specificConfig.minValue",to:"minlength"},{from:"specificConfig.maxValue",to:"maxlength"}]},[g.FIELD_TYPE.LONG_TEXT]:{attrsTransform:[{from:"specificConfig.minValue",to:"minlength"},{from:"specificConfig.maxValue",to:"maxlength"}]},[g.FIELD_TYPE.INTEGER]:{attrsTransform:[{from:"specificConfig.minValue",to:"minValue"},{from:"specificConfig.maxValue",to:"maxValue"}]},[g.FIELD_TYPE.LONG]:{attrsTransform:[{from:"specificConfig.minValue",to:"minValue"},{from:"specificConfig.maxValue",to:"maxValue"}]},[g.FIELD_TYPE.DOUBLE]:{attrsTransform:[{from:"specificConfig.minValue",to:"minValue"},{from:"specificConfig.maxValue",to:"maxValue"}]},[g.FIELD_TYPE.DECIMAL]:{attrsTransform:[{from:"specificConfig.digits",to:"precision"},{from:"specificConfig.minValue",to:"minValue"},{from:"specificConfig.maxValue",to:"maxValue"}]}},gi=(s,e)=>{const{attrsTransform:t=[]}=Ei[s]??{};return t.reduce((n,r)=>{const o=Z.get(e,r.from);return n[r.to]=o,n},{})};g.BuiltinType.MODAL_BODY;g.BuiltinType.MODAL_FOOTER;g.Platform.WEB,g.BuiltinType.MODAL;g.PropGroup.BASIC,g.PropGroup.MODAL,g.PropGroup.MODAL,g.PropGroup.MODALTITLECONFIG,g.PropGroup.MODALTITLECONFIG,g.PropGroup.MODAL,g.PropGroup.BUTTON;g.StyleGroup.BACKGROUND,g.StyleGroup.MARGIN;function Fe(s){return Object.prototype.hasOwnProperty.call(s.props,"model")?!s.props.model:Object.prototype.hasOwnProperty.call(s.props,"refForm")?!s.props.refForm:!1}g.TextDecoration.NONE,g.TextDecoration.NONE,g.TagTypeEnum.RADIUS,g.BorderStyle.NONE,g.BorderStyle.NONE,g.BorderStyle.NONE,g.BorderStyle.NONE,g.BorderStyle.NONE;const yi=[g.FIELD_TYPE.TEXT,g.FIELD_TYPE.LONG_TEXT,g.FIELD_TYPE.INTEGER,g.FIELD_TYPE.LONG,g.FIELD_TYPE.DOUBLE,g.FIELD_TYPE.DECIMAL,g.FIELD_TYPE.BOOLEAN,g.FIELD_TYPE.DATE,g.FIELD_TYPE.TIME,g.FIELD_TYPE.DATE_TIME,g.FIELD_TYPE.USER,g.FIELD_TYPE.USER_MULTI,g.FIELD_TYPE.SERIAL];g.Dependency_ENUM.HIDDEN+"",g.Dependency_ENUM.READONLY+"",g.Dependency_ENUM.DISABLED+"",g.Dependency_ENUM.REQUIRED+"",g.Dependency_ENUM.ASSIGNMENT+"",g.ASSIGNMENTSTRATEGY_ENUM.alwaysCover;const Ci=[g.FIELD_TYPE.TEXT,g.FIELD_TYPE.LONG_TEXT,g.FIELD_TYPE.INTEGER,g.FIELD_TYPE.LONG,g.FIELD_TYPE.DOUBLE,g.FIELD_TYPE.DECIMAL,g.FIELD_TYPE.BOOLEAN,g.FIELD_TYPE.DATE,g.FIELD_TYPE.DATE_TIME,g.FIELD_TYPE.MASTERSLAVE];g.PropGroup.COMPONENTDEPENDENCY,g.PropGroup.FIELD_CONFIG,g.PropGroup.FIELD_CONFIG;g.ButtonStyle.ORDINARY,g.ButtonType.PRIMARY,g.ButtonSize.DEFAULT;g.PropGroup.BASIC,g.PropGroup.BUTTON,g.PropGroup.BUTTON,g.PropGroup.BUTTON,Object.values(g.ButtonSize).map(s=>({value:s,label:"sys.pageDesigner."+s}));g.PropGroup.PERMISSION;g.ButtonColorTheme.DEFAULT,g.ButtonColorType.DEFAULT,g.ButtonStyle.ORDINARY;g.PropGroup.ButtonStyle,g.PropGroup.ButtonStyle,g.PropGroup.ButtonStyle,g.PropGroup.ButtonStyle,g.PropGroup.ButtonStyle,g.PropGroup.ButtonStyle,Object.values(g.ButtonSize).map(s=>({value:s,label:"sys.pageDesigner."+s})),g.PropGroup.ButtonStyle,g.PropGroup.ButtonStyle;g.StyleGroup.LAYOUT,g.StyleGroup.MARGIN;function Ai(s){return s+"px"}function ie(s){return Z.isEmpty(s)?"":`${s}px !important`}function Zt(s){return Z.isEmpty(s)?"":`${s} !important`}function ze(s){return!s||Z.isEmpty(s.borderWidth)?"":`${s.borderWidth}px ${s.borderStyle||"solid"} ${s.borderColor||"transparent"} !important`}const Fi={fontAttrs:["fontWeight","fontSize","color","textDecorationLine","textAlign"],mapAttrs:{bold:{attr:"fontWeight",callback:s=>s?700:400},italic:{attr:"fontStyle",callback:s=>s?"italic":"normal"},textDecoration:{attr:"textDecorationLine"},fontSize:{attr:"fontSize",callback:s=>s?Ai(s):""},align:{attr:"textAlign"}}};function St(s,e=Fi){if(!s)return{};const t={};return Object.assign(t,Z.pick(s,e.fontAttrs)),typeof e.mapAttrs=="object"&&Object.keys(e.mapAttrs).forEach(i=>{const{attr:n,callback:r}=e.mapAttrs[i];t[n]=typeof r=="function"?r(s[i]):s[i]}),t}function Si(s={}){const e={};for(const t in s)e[t]=bi(t,s[t]);return e}const wi=["opacity","zIndex","fontWeight","lineHeight","letterSpacing","wordSpacing","textAlign","textDecoration","textTransform","fontStyle","textDecorationLine"];function bi(s,e){return Z.isNil(e)||Z.isEmpty(e)?"":wi.includes(s)?e+" !important":e+"px !important"}function ki(s){return{position:Zt(s.position),top:ie(s.top),left:ie(s.left),right:ie(s.right),bottom:ie(s.bottom),width:ie(s.width),height:ie(s.height)}}function vi(s){return{backgroundColor:Zt(s.backgroundColor),marginTop:ie(s.marginTop),marginRight:ie(s.marginRight),marginBottom:ie(s.marginBottom),marginLeft:ie(s.marginLeft),paddingTop:ie(s.paddingTop),paddingRight:ie(s.paddingRight),paddingBottom:ie(s.paddingBottom),paddingLeft:ie(s.paddingLeft)}}function Ti(s){return{borderLeft:ze(s.borderLeft),borderRight:ze(s.borderRight),borderBottom:ze(s.borderBottom),borderTop:ze(s.borderTop),borderTopRightRadius:ie(s.borderTopRightRadius),borderTopLeftRadius:ie(s.borderTopLeftRadius),borderBottomRightRadius:ie(s.borderBottomRightRadius),borderBottomLeftRadius:ie(s.borderBottomLeftRadius)}}function Bi(s,e=[]){const t={...ki(s),...vi(s),...Ti(s)};return e.forEach(i=>{delete t[i]}),Object.keys(t).forEach(i=>{const n=t[i];(Z.isNil(n)||Z.isEmpty(n))&&delete t[i]}),t}function Ii(s){const{style:e={},ignoringStyle:t=[]}=s||{},i=Si(e),n=Bi(e,t),r=St(e.labelFont),o=St(e.contentFont);return{wrapperStyle:n,wStyle:i,labelFont:r,contentFont:o}}class ei{static modelData=new Map;static FiledData=new Map;static responsePromise=new Map;static silent=!1;static async getMap(e,t=!0){if(!e)return Promise.reject();if(!this.responsePromise.has(e)||!t){const i=(async()=>{const n=await _gct.api.apaas.modelMeta.getDetail({modelKey:e});this.modelData.set(e,n);const r=!!n?.fieldMetaList&&n.fieldMetaList.reduce((o,c)=>(c.key&&(o[c.key]=c),o),{});r&&this.FiledData.set(e,r)})();this.responsePromise.set(e,i)}return this.responsePromise.get(e)}static async getConfigByField(e,t,i=!0){return await this.getMap(e,i),this.FiledData.get(e)[t]}static async getConfigByModel(e){return await this.getMap(e),this.modelData.get(e)}static clearCacheMap(e=!1){e&&this.responsePromise.clear(),this.modelData.clear(),this.FiledData.clear()}}async function Ni(s,e=!1){const{modelKey:t,field:i,isCustomField:n,fieldName:r,readonly:o,fieldType:c}=s.props;if(!s.isField&&!e||i==="table_name_")return{};let h;if(n?h={name:r,type:""}:t&&(h=await ei.getConfigByField(t,i)),!n&&(!h||h.type!==c))throw new Error("该字段可能已经被删除");if(!h)return{};const{required:E,specificConfig:C}=h;return s.props.fieldRequired=!!E,E&&!o&&(s.props.required=!0),C?.digits!==void 0&&(s.props.precision=C.digits),h}function ti(s,e){return s?.map(i=>Ie(i,e))||[]}function Ie(s={},e={}){const t=Z.cloneDeep(s);t._X_ROW_KEY=void 0;const i=Object.keys(e??{})?.length?Object.keys(t).reduce((n,r)=>{const o=e[r],c=t[r];if(o&&c)try{const h=(c+"").split(",").map(E=>o[E]);n[r]={[c+""]:h}}catch{}return n},{}):t._DICT||{};return{...t,_DICT:i,_OPCT:t.__FOREIGN__&&typeof t.__FOREIGN__=="object"?Ie(t.__FOREIGN__,e):{}}}function Pi(s,e,t){if(typeof e!="object")return;const i=Ie(e,t);Z.merge(s,i)}function Mi(s,e,t){if(typeof e!="object")return;for(const n in s)n!=="_OPCT"&&n!=="_NOSUBMIT"&&delete s[n];const i=Ie(e,t);i._X_ROW_KEY=e._X_ROW_KEY,Z.merge(s,i)}function ii(s,e={},t={}){const i=Z.cloneDeep(e.__FOREIGN__||e),n={_DICT:{}};return Object.keys(i).forEach(r=>{const o=`${s}.${r}`,c=t[r],h=i[r];if(c&&h)try{const E=(h+"").split(",").map(C=>c[C]);n._DICT[o]={[h+""]:E}}catch{}n[o]=h}),{...i,_OPCT:n}}function Oi(s={},e={}){const t=Z.cloneDeep(s);return Object.keys(e??{})?.length?Object.keys(t).reduce((i,n)=>{const r=e[n]||{},o=t[n];try{i[n]=(o+"").split(",").map(c=>r[c]).join(",")}catch{i[n]=o}return i},{}):t}function Ne(s){return s&&s.__esModule&&Object.prototype.hasOwnProperty.call(s,"default")?s.default:s}var qe={exports:{}},Li=qe.exports,wt;function Ri(){return wt||(wt=1,(function(s,e){(function(t,i){s.exports=i()})(Li,(function(){var t="minute",i=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,o,c){var h=o.prototype;c.utc=function(T){var O={date:T,utc:!0,args:arguments};return new o(O)},h.utc=function(T){var O=c(this.toDate(),{locale:this.$L,utc:!0});return T?O.add(this.utcOffset(),t):O},h.local=function(){return c(this.toDate(),{locale:this.$L,utc:!1})};var E=h.parse;h.parse=function(T){T.utc&&(this.$u=!0),this.$utils().u(T.$offset)||(this.$offset=T.$offset),E.call(this,T)};var C=h.init;h.init=function(){if(this.$u){var T=this.$d;this.$y=T.getUTCFullYear(),this.$M=T.getUTCMonth(),this.$D=T.getUTCDate(),this.$W=T.getUTCDay(),this.$H=T.getUTCHours(),this.$m=T.getUTCMinutes(),this.$s=T.getUTCSeconds(),this.$ms=T.getUTCMilliseconds()}else C.call(this)};var F=h.utcOffset;h.utcOffset=function(T,O){var b=this.$utils().u;if(b(T))return this.$u?0:b(this.$offset)?F.call(this):this.$offset;if(typeof T=="string"&&(T=(function(N){N===void 0&&(N="");var I=N.match(i);if(!I)return null;var P=(""+I[0]).match(n)||["-",0,0],a=P[0],u=60*+P[1]+ +P[2];return u===0?0:a==="+"?u:-u})(T),T===null))return this;var J=Math.abs(T)<=16?60*T:T;if(J===0)return this.utc(O);var $=this.clone();if(O)return $.$offset=J,$.$u=!1,$;var ee=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return($=this.local().add(J+ee,t)).$offset=J,$.$x.$localOffset=ee,$};var S=h.format;h.format=function(T){var O=T||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return S.call(this,O)},h.valueOf=function(){var T=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*T},h.isUTC=function(){return!!this.$u},h.toISOString=function(){return this.toDate().toISOString()},h.toString=function(){return this.toDate().toUTCString()};var B=h.toDate;h.toDate=function(T){return T==="s"&&this.$offset?c(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():B.call(this)};var M=h.diff;h.diff=function(T,O,b){if(T&&this.$u===T.$u)return M.call(this,T,O,b);var J=this.local(),$=c(T).local();return M.call(J,$,O,b)}}}))})(qe)),qe.exports}var _i=Ri();const Ui=Ne(_i);var je={exports:{}},zi=je.exports,bt;function Yi(){return bt||(bt=1,(function(s,e){(function(t,i){s.exports=i()})(zi,(function(){var t={year:0,month:1,day:2,hour:3,minute:4,second:5},i={};return function(n,r,o){var c,h=function(S,B,M){M===void 0&&(M={});var T=new Date(S),O=(function(b,J){J===void 0&&(J={});var $=J.timeZoneName||"short",ee=b+"|"+$,N=i[ee];return N||(N=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:b,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:$}),i[ee]=N),N})(B,M);return O.formatToParts(T)},E=function(S,B){for(var M=h(S,B),T=[],O=0;O<M.length;O+=1){var b=M[O],J=b.type,$=b.value,ee=t[J];ee>=0&&(T[ee]=parseInt($,10))}var N=T[3],I=N===24?0:N,P=T[0]+"-"+T[1]+"-"+T[2]+" "+I+":"+T[4]+":"+T[5]+":000",a=+S;return(o.utc(P).valueOf()-(a-=a%1e3))/6e4},C=r.prototype;C.tz=function(S,B){S===void 0&&(S=c);var M,T=this.utcOffset(),O=this.toDate(),b=O.toLocaleString("en-US",{timeZone:S}),J=Math.round((O-new Date(b))/1e3/60),$=15*-Math.round(O.getTimezoneOffset()/15)-J;if(!Number($))M=this.utcOffset(0,B);else if(M=o(b,{locale:this.$L}).$set("millisecond",this.$ms).utcOffset($,!0),B){var ee=M.utcOffset();M=M.add(T-ee,"minute")}return M.$x.$timezone=S,M},C.offsetName=function(S){var B=this.$x.$timezone||o.tz.guess(),M=h(this.valueOf(),B,{timeZoneName:S}).find((function(T){return T.type.toLowerCase()==="timezonename"}));return M&&M.value};var F=C.startOf;C.startOf=function(S,B){if(!this.$x||!this.$x.$timezone)return F.call(this,S,B);var M=o(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L});return F.call(M,S,B).tz(this.$x.$timezone,!0)},o.tz=function(S,B,M){var T=M&&B,O=M||B||c,b=E(+o(),O);if(typeof S!="string")return o(S).tz(O);var J=(function(I,P,a){var u=I-60*P*1e3,l=E(u,a);if(P===l)return[u,P];var x=E(u-=60*(l-P)*1e3,a);return l===x?[u,l]:[I-60*Math.min(l,x)*1e3,Math.max(l,x)]})(o.utc(S,T).valueOf(),b,O),$=J[0],ee=J[1],N=o($).utcOffset(ee);return N.$x.$timezone=O,N},o.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},o.tz.setDefault=function(S){c=S}}}))})(je)),je.exports}var Xi=Yi();const Gi=Ne(Xi);var Qe={exports:{}},Ji=Qe.exports,kt;function $i(){return kt||(kt=1,(function(s,e){(function(t,i){s.exports=i()})(Ji,(function(){var t="month",i="quarter";return function(n,r){var o=r.prototype;o.quarter=function(E){return this.$utils().u(E)?Math.ceil((this.month()+1)/3):this.month(this.month()%3+3*(E-1))};var c=o.add;o.add=function(E,C){return E=Number(E),this.$utils().p(C)===i?this.add(3*E,t):c.bind(this)(E,C)};var h=o.startOf;o.startOf=function(E,C){var F=this.$utils(),S=!!F.u(C)||C;if(F.p(E)===i){var B=this.quarter()-1;return S?this.month(3*B).startOf(t).startOf("day"):this.month(3*B+2).endOf(t).endOf("day")}return h.bind(this)(E,C)}}}))})(Qe)),Qe.exports}var Vi=$i();const Ki=Ne(Vi);var Ze={exports:{}},Wi=Ze.exports,vt;function Hi(){return vt||(vt=1,(function(s,e){(function(t,i){s.exports=i()})(Wi,(function(){return function(t,i){i.prototype.toArray=function(){return[this.$y,this.$M,this.$D,this.$H,this.$m,this.$s,this.$ms]}}}))})(Ze)),Ze.exports}var qi=Hi();const ji=Ne(qi);var et={exports:{}},Qi=et.exports,Tt;function Zi(){return Tt||(Tt=1,(function(s,e){(function(t,i){s.exports=i()})(Qi,(function(){var t="day";return function(i,n,r){var o=function(E){return E.add(4-E.isoWeekday(),t)},c=n.prototype;c.isoWeekYear=function(){return o(this).year()},c.isoWeek=function(E){if(!this.$utils().u(E))return this.add(7*(E-this.isoWeek()),t);var C,F,S,B,M=o(this),T=(C=this.isoWeekYear(),F=this.$u,S=(F?r.utc:r)().year(C).startOf("year"),B=4-S.isoWeekday(),S.isoWeekday()>4&&(B+=7),S.add(B,t));return M.diff(T,"week")+1},c.isoWeekday=function(E){return this.$utils().u(E)?this.day()||7:this.day(this.day()%7?E:E-7)};var h=c.startOf;c.startOf=function(E,C){var F=this.$utils(),S=!!F.u(C)||C;return F.p(E)==="isoweek"?S?this.date(this.date()-(this.isoWeekday()-1)).startOf("day"):this.date(this.date()-1-(this.isoWeekday()-1)+7).endOf("day"):h.bind(this)(E,C)}}}))})(et)),et.exports}var es=Zi();const ts=Ne(es);var W=si(),is=/^-?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?$/i,nt=Math.ceil,me=Math.floor,ae="[BigNumber Error] ",pe=1e14,z=14,Bt=9007199254740991,rt=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8,1e9,1e10,1e11,1e12,1e13],ye=1e7,te=1e9;function si(s){var e,t,i,n=b.prototype={constructor:b,toString:null,valueOf:null},r=new b(1),o=20,c=4,h=-7,E=21,C=-1e7,F=1e7,S=!1,B=1,M=0,T={prefix:"",groupSize:3,secondaryGroupSize:0,groupSeparator:",",decimalSeparator:".",fractionGroupSize:0,fractionGroupSeparator:" ",suffix:""},O="0123456789abcdefghijklmnopqrstuvwxyz";function b(a,u){var l,x,d,m,D,f,p,w,y=this;if(!(y instanceof b))return new b(a,u);if(w=typeof a,u==null){if($(a)){y.s=a.s,!a.c||a.e>F?y.c=y.e=null:a.e<C?y.c=[y.e=0]:(y.e=a.e,y.c=a.c.slice());return}if(w=="number"){if(a*0!=0){y.s=isNaN(a)?null:a<0?-1:1,y.c=y.e=null;return}if(y.s=1/a<0?(a=-a,-1):1,a===~~a){for(m=0,D=a;D>=10;D/=10,m++);m>F?y.c=y.e=null:(y.e=m,y.c=[a]);return}p=String(a)}else{if(w=="string"){if(p=a,!is.test(p))return i(y,p)}else if(w=="bigint")p=String(a);else throw Error(ae+"Invalid argument: "+a);y.s=p.charCodeAt(0)==45?(p=p.slice(1),-1):1}(m=p.indexOf("."))>-1&&(p=p.replace(".","")),(D=p.search(/e/i))>0?(m<0&&(m=D),m+=+p.slice(D+1),p=p.substring(0,D)):m<0&&(m=p.length)}else{if(w!="string")throw Error(ae+"String expected: "+a);for(H(u,2,O.length,"Base"),p=a,y.s=p.charCodeAt(0)===45?(p=p.slice(1),-1):1,l=O.slice(0,u),m=D=0,f=p.length;D<f;D++)if(l.indexOf(x=p.charAt(D))<0){if(x=="."){if(D>m){m=f;continue}}else if(!d&&(p==p.toUpperCase()&&(p=p.toLowerCase())||p==p.toLowerCase()&&(p=p.toUpperCase()))){d=!0,D=-1,m=0;continue}return i(y,a,u)}p=t(p,u,10,y.s),(m=p.indexOf("."))>-1?p=p.replace(".",""):m=p.length}for(D=0;p.charCodeAt(D)===48;D++);for(f=p.length;p.charCodeAt(--f)===48;);if(p=p.slice(D,++f))if(f-=D,m=m-D-1,m>F)y.c=y.e=null;else if(m<C)y.c=[y.e=0];else{if(y.e=m,y.c=[],D=(m+1)%z,m<0&&(D+=z),D<f){for(D&&y.c.push(+p.slice(0,D)),f-=z;D<f;)y.c.push(+p.slice(D,D+=z));D=z-(p=p.slice(D)).length}else D-=f;for(;D--;p+="0");y.c.push(+p)}else y.c=[y.e=0]}b.clone=si,b.ROUND_UP=0,b.ROUND_DOWN=1,b.ROUND_CEIL=2,b.ROUND_FLOOR=3,b.ROUND_HALF_UP=4,b.ROUND_HALF_DOWN=5,b.ROUND_HALF_EVEN=6,b.ROUND_HALF_CEIL=7,b.ROUND_HALF_FLOOR=8,b.EUCLID=9,b.config=b.set=function(a){var u,l;if(a!=null)if(typeof a=="object"){if(a.hasOwnProperty(u="DECIMAL_PLACES")&&(l=a[u],H(l,0,te,u),o=l),a.hasOwnProperty(u="ROUNDING_MODE")&&(l=a[u],H(l,0,8,u),c=l),a.hasOwnProperty(u="EXPONENTIAL_AT")&&(l=a[u],l&&l.pop?(H(l[0],-te,0,u),H(l[1],0,te,u),h=l[0],E=l[1]):(H(l,-te,te,u),h=-(E=l<0?-l:l))),a.hasOwnProperty(u="RANGE"))if(l=a[u],l&&l.pop)H(l[0],-te,-1,u),H(l[1],1,te,u),C=l[0],F=l[1];else if(H(l,-te,te,u),l)C=-(F=l<0?-l:l);else throw Error(ae+u+" cannot be zero: "+l);if(a.hasOwnProperty(u="CRYPTO"))if(l=a[u],l===!!l)if(l)if(typeof crypto<"u"&&crypto&&(crypto.getRandomValues||crypto.randomBytes))S=l;else throw S=!l,Error(ae+"crypto unavailable");else S=l;else throw Error(ae+u+" not true or false: "+l);if(a.hasOwnProperty(u="MODULO_MODE")&&(l=a[u],H(l,0,9,u),B=l),a.hasOwnProperty(u="POW_PRECISION")&&(l=a[u],H(l,0,te,u),M=l),a.hasOwnProperty(u="FORMAT"))if(l=a[u],typeof l=="object")T=l;else throw Error(ae+u+" not an object: "+l);if(a.hasOwnProperty(u="ALPHABET"))if(l=a[u],typeof l=="string"&&!/^.?$|[+\-.\s]|(.).*\1/.test(l))O=l;else throw Error(ae+u+" invalid: "+l)}else throw Error(ae+"Object expected: "+a);return{DECIMAL_PLACES:o,ROUNDING_MODE:c,EXPONENTIAL_AT:[h,E],RANGE:[C,F],CRYPTO:S,MODULO_MODE:B,POW_PRECISION:M,FORMAT:T,ALPHABET:O}},b.isBigNumber=function(a){if(!$(a))return!1;var u,l,x=a.c,d=a.e,m=a.s;if({}.toString.call(x)!="[object Array]")return x===null&&d===null&&(m===null||m===1||m===-1);if(m!==1&&m!==-1||d<-te||d>te||d!==me(d))return!1;if(x[0]===0)return d===0&&x.length===1;if(u=(d+1)%z,u<1&&(u+=z),String(x[0]).length!==u)return!1;for(u=0;u<x.length;u++)if(l=x[u],l<0||l>=pe||l!==me(l))return!1;return l!==0},b.maximum=b.max=function(){return ee(arguments,-1)},b.minimum=b.min=function(){return ee(arguments,1)},b.random=(function(){var a=9007199254740992,u=Math.random()*a&2097151?function(){return me(Math.random()*a)}:function(){return(Math.random()*1073741824|0)*8388608+(Math.random()*8388608|0)};return function(l){var x,d,m,D,f,p=0,w=[],y=new b(r);if(l==null?l=o:H(l,0,te),D=nt(l/z),S)if(crypto.getRandomValues){for(x=crypto.getRandomValues(new Uint32Array(D*=2));p<D;)f=x[p]*131072+(x[p+1]>>>11),f>=9e15?(d=crypto.getRandomValues(new Uint32Array(2)),x[p]=d[0],x[p+1]=d[1]):(w.push(f%1e14),p+=2);p=D/2}else if(crypto.randomBytes){for(x=crypto.randomBytes(D*=7);p<D;)f=(x[p]&31)*281474976710656+x[p+1]*1099511627776+x[p+2]*4294967296+x[p+3]*16777216+(x[p+4]<<16)+(x[p+5]<<8)+x[p+6],f>=9e15?crypto.randomBytes(7).copy(x,p):(w.push(f%1e14),p+=7);p=D/7}else throw S=!1,Error(ae+"crypto unavailable");if(!S)for(;p<D;)f=u(),f<9e15&&(w[p++]=f%1e14);for(D=w[--p],l%=z,D&&l&&(f=rt[z-l],w[p]=me(D/f)*f);w[p]===0;w.pop(),p--);if(p<0)w=[m=0];else{for(m=-1;w[0]===0;w.splice(0,1),m-=z);for(p=1,f=w[0];f>=10;f/=10,p++);p<z&&(m-=z-p)}return y.e=m,y.c=w,y}})(),b.sum=function(){for(var a=1,u=arguments,l=new b(u[0]);a<u.length;)l=l.plus(u[a++]);return l},t=(function(){var a="0123456789";function u(l,x,d,m){for(var D,f=[0],p,w=0,y=l.length;w<y;){for(p=f.length;p--;f[p]*=x);for(f[0]+=m.indexOf(l.charAt(w++)),D=0;D<f.length;D++)f[D]>d-1&&(f[D+1]==null&&(f[D+1]=0),f[D+1]+=f[D]/d|0,f[D]%=d)}return f.reverse()}return function(l,x,d,m,D){var f,p,w,y,v,L,U,G,K=l.indexOf("."),q=o,X=c;for(K>=0&&(y=M,M=0,l=l.replace(".",""),G=new b(x),L=G.pow(l.length-K),M=y,G.c=u(Ce(fe(L.c),L.e,"0"),10,d,a),G.e=G.c.length),U=u(l,x,d,D?(f=O,a):(f=a,O)),w=y=U.length;U[--y]==0;U.pop());if(!U[0])return f.charAt(0);if(K<0?--w:(L.c=U,L.e=w,L.s=m,L=e(L,G,q,X,d),U=L.c,v=L.r,w=L.e),p=w+q+1,K=U[p],y=d/2,v=v||p<0||U[p+1]!=null,v=X<4?(K!=null||v)&&(X==0||X==(L.s<0?3:2)):K>y||K==y&&(X==4||v||X==6&&U[p-1]&1||X==(L.s<0?8:7)),p<1||!U[0])l=v?Ce(f.charAt(1),-q,f.charAt(0)):f.charAt(0);else{if(U.length=p,v)for(--d;++U[--p]>d;)U[p]=0,p||(++w,U=[1].concat(U));for(y=U.length;!U[--y];);for(K=0,l="";K<=y;l+=f.charAt(U[K++]));l=Ce(l,w,f.charAt(0))}return l}})(),e=(function(){function a(x,d,m){var D,f,p,w,y=0,v=x.length,L=d%ye,U=d/ye|0;for(x=x.slice();v--;)p=x[v]%ye,w=x[v]/ye|0,D=U*p+w*L,f=L*p+D%ye*ye+y,y=(f/m|0)+(D/ye|0)+U*w,x[v]=f%m;return y&&(x=[y].concat(x)),x}function u(x,d,m,D){var f,p;if(m!=D)p=m>D?1:-1;else for(f=p=0;f<m;f++)if(x[f]!=d[f]){p=x[f]>d[f]?1:-1;break}return p}function l(x,d,m,D){for(var f=0;m--;)x[m]-=f,f=x[m]<d[m]?1:0,x[m]=f*D+x[m]-d[m];for(;!x[0]&&x.length>1;x.splice(0,1));}return function(x,d,m,D,f){var p,w,y,v,L,U,G,K,q,X,V,se,Ue,it,st,De,Me,ce=x.s==d.s?1:-1,re=x.c,j=d.c;if(!re||!re[0]||!j||!j[0])return new b(!x.s||!d.s||(re?j&&re[0]==j[0]:!j)?NaN:re&&re[0]==0||!j?ce*0:ce/0);for(K=new b(ce),q=K.c=[],w=x.e-d.e,ce=m+w+1,f||(f=pe,w=le(x.e/z)-le(d.e/z),ce=ce/z|0),y=0;j[y]==(re[y]||0);y++);if(j[y]>(re[y]||0)&&w--,ce<0)q.push(1),v=!0;else{for(it=re.length,De=j.length,y=0,ce+=2,L=me(f/(j[0]+1)),L>1&&(j=a(j,L,f),re=a(re,L,f),De=j.length,it=re.length),Ue=De,X=re.slice(0,De),V=X.length;V<De;X[V++]=0);Me=j.slice(),Me=[0].concat(Me),st=j[0],j[1]>=f/2&&st++;do{if(L=0,p=u(j,X,De,V),p<0){if(se=X[0],De!=V&&(se=se*f+(X[1]||0)),L=me(se/st),L>1)for(L>=f&&(L=f-1),U=a(j,L,f),G=U.length,V=X.length;u(U,X,G,V)==1;)L--,l(U,De<G?Me:j,G,f),G=U.length,p=1;else L==0&&(p=L=1),U=j.slice(),G=U.length;if(G<V&&(U=[0].concat(U)),l(X,U,V,f),V=X.length,p==-1)for(;u(j,X,De,V)<1;)L++,l(X,De<V?Me:j,V,f),V=X.length}else p===0&&(L++,X=[0]);q[y++]=L,X[0]?X[V++]=re[Ue]||0:(X=[re[Ue]],V=1)}while((Ue++<it||X[0]!=null)&&ce--);v=X[0]!=null,q[0]||q.splice(0,1)}if(f==pe){for(y=1,ce=q[0];ce>=10;ce/=10,y++);I(K,m+(K.e=y+w*z-1)+1,D,v)}else K.e=w,K.r=+v;return K}})();function J(a,u,l,x){var d,m,D,f,p;if(l==null?l=c:H(l,0,8),!a.c)return a.toString();if(d=a.c[0],D=a.e,u==null)p=fe(a.c),p=x==1||x==2&&(D<=h||D>=E)?Xe(p,D):Ce(p,D,"0");else if(a=I(new b(a),u,l),m=a.e,p=fe(a.c),f=p.length,x==1||x==2&&(u<=m||m<=h)){for(;f<u;p+="0",f++);p=Xe(p,m)}else if(u-=D+(x===2&&m>D),p=Ce(p,m,"0"),m+1>f){if(--u>0)for(p+=".";u--;p+="0");}else if(u+=m-f,u>0)for(m+1==f&&(p+=".");u--;p+="0");return a.s<0&&d?"-"+p:p}function $(a){return a instanceof b||!!a&&a._isBigNumber===!0}function ee(a,u){for(var l,x,d=1,m=new b(a[0]);d<a.length;d++)x=new b(a[d]),(!x.s||(l=Se(m,x))===u||l===0&&m.s===u)&&(m=x);return m}function N(a,u,l){for(var x=1,d=u.length;!u[--d];u.pop());for(d=u[0];d>=10;d/=10,x++);return(l=x+l*z-1)>F?a.c=a.e=null:l<C?a.c=[a.e=0]:(a.e=l,a.c=u),a}i=(function(){var a=/^(-?)0([xbo])(?=\w[\w.]*$)/i,u=/^([^.]+)\.$/,l=/^\.([^.]+)$/,x=/^-?(Infinity|NaN)$/,d=/^\s*\+(?=[\w.])|^\s+|\s+$/g;return function(m,D,f){var p,w=D.replace(d,"");if(x.test(w)){m.s=isNaN(w)?null:w<0?-1:1,m.c=m.e=null;return}if(w=w.replace(a,function(y,v,L){return p=(L=L.toLowerCase())=="x"?16:L=="b"?2:8,!f||f==p?v:y}),f&&(p=f,w=w.replace(u,"$1").replace(l,"0.$1")),D!=w)return new b(w,p);throw Error(ae+"Not a"+(f?" base "+f:"")+" number: "+D)}})();function I(a,u,l,x){var d,m,D,f,p,w,y,v=a.c,L=rt;if(v){e:{for(d=1,f=v[0];f>=10;f/=10,d++);if(m=u-d,m<0)m+=z,D=u,p=v[w=0],y=me(p/L[d-D-1]%10);else if(w=nt((m+1)/z),w>=v.length)if(x){for(;v.length<=w;v.push(0));p=y=0,d=1,m%=z,D=m-z+1}else break e;else{for(p=f=v[w],d=1;f>=10;f/=10,d++);m%=z,D=m-z+d,y=D<0?0:me(p/L[d-D-1]%10)}if(x=x||u<0||v[w+1]!=null||(D<0?p:p%L[d-D-1]),x=l<4?(y||x)&&(l==0||l==(a.s<0?3:2)):y>5||y==5&&(l==4||x||l==6&&(m>0?D>0?p/L[d-D]:0:v[w-1])%10&1||l==(a.s<0?8:7)),u<1||!v[0])return v.length=0,x?(u-=a.e+1,v[0]=L[(z-u%z)%z],a.e=-u||0):v[0]=a.e=0,a;if(m==0?(v.length=w,f=1,w--):(v.length=w+1,f=L[z-m],v[w]=D>0?me(p/L[d-D]%L[D])*f:0),x)for(;;)if(w==0){for(m=1,D=v[0];D>=10;D/=10,m++);for(D=v[0]+=f,f=1;D>=10;D/=10,f++);m!=f&&(a.e++,v[0]==pe&&(v[0]=1));break}else{if(v[w]+=f,v[w]!=pe)break;v[w--]=0,f=1}for(m=v.length;v[--m]===0;v.pop());}a.e>F?a.c=a.e=null:a.e<C&&(a.c=[a.e=0])}return a}function P(a){var u,l=a.e;return l===null?a.toString():(u=fe(a.c),u=l<=h||l>=E?Xe(u,l):Ce(u,l,"0"),a.s<0?"-"+u:u)}return n.absoluteValue=n.abs=function(){var a=new b(this);return a.s<0&&(a.s=1),a},n.comparedTo=function(a,u){return Se(this,new b(a,u))},n.decimalPlaces=n.dp=function(a,u){var l,x,d,m=this;if(a!=null)return H(a,0,te),u==null?u=c:H(u,0,8),I(new b(m),a+m.e+1,u);if(!(l=m.c))return null;if(x=((d=l.length-1)-le(this.e/z))*z,d=l[d])for(;d%10==0;d/=10,x--);return x<0&&(x=0),x},n.dividedBy=n.div=function(a,u){return e(this,new b(a,u),o,c)},n.dividedToIntegerBy=n.idiv=function(a,u){return e(this,new b(a,u),0,1)},n.exponentiatedBy=n.pow=function(a,u){var l,x,d,m,D,f,p,w,y,v=this;if(a=new b(a),a.c&&!a.isInteger())throw Error(ae+"Exponent not an integer: "+P(a));if(u!=null&&(u=new b(u)),f=a.e>14,!v.c||!v.c[0]||v.c[0]==1&&!v.e&&v.c.length==1||!a.c||!a.c[0])return y=new b(Math.pow(+P(v),f?a.s*(2-Ye(a)):+P(a))),u?y.mod(u):y;if(p=a.s<0,u){if(u.c?!u.c[0]:!u.s)return new b(NaN);x=!p&&v.isInteger()&&u.isInteger(),x&&(v=v.mod(u))}else{if(a.e>9&&(v.e>0||v.e<-1||(v.e==0?v.c[0]>1||f&&v.c[1]>=24e7:v.c[0]<8e13||f&&v.c[0]<=9999975e7)))return m=v.s<0&&Ye(a)?-0:0,v.e>-1&&(m=1/m),new b(p?1/m:m);M&&(m=nt(M/z+2))}for(f?(l=new b(.5),p&&(a.s=1),w=Ye(a)):(d=Math.abs(+P(a)),w=d%2),y=new b(r);;){if(w){if(y=y.times(v),!y.c)break;m?y.c.length>m&&(y.c.length=m):x&&(y=y.mod(u))}if(d){if(d=me(d/2),d===0)break;w=d%2}else if(a=a.times(l),I(a,a.e+1,1),a.e>14)w=Ye(a);else{if(d=+P(a),d===0)break;w=d%2}v=v.times(v),m?v.c&&v.c.length>m&&(v.c.length=m):x&&(v=v.mod(u))}return x?y:(p&&(y=r.div(y)),u?y.mod(u):m?I(y,M,c,D):y)},n.integerValue=function(a){var u=new b(this);return a==null?a=c:H(a,0,8),I(u,u.e+1,a)},n.isEqualTo=n.eq=function(a,u){return Se(this,new b(a,u))===0},n.isFinite=function(){return!!this.c},n.isGreaterThan=n.gt=function(a,u){return Se(this,new b(a,u))>0},n.isGreaterThanOrEqualTo=n.gte=function(a,u){return(u=Se(this,new b(a,u)))===1||u===0},n.isInteger=function(){return!!this.c&&le(this.e/z)>this.c.length-2},n.isLessThan=n.lt=function(a,u){return Se(this,new b(a,u))<0},n.isLessThanOrEqualTo=n.lte=function(a,u){return(u=Se(this,new b(a,u)))===-1||u===0},n.isNaN=function(){return!this.s},n.isNegative=function(){return this.s<0},n.isPositive=function(){return this.s>0},n.isZero=function(){return!!this.c&&this.c[0]==0},n.minus=function(a,u){var l,x,d,m,D=this,f=D.s;if(a=new b(a,u),u=a.s,!f||!u)return new b(NaN);if(f!=u)return a.s=-u,D.plus(a);var p=D.e/z,w=a.e/z,y=D.c,v=a.c;if(!p||!w){if(!y||!v)return y?(a.s=-u,a):new b(v?D:NaN);if(!y[0]||!v[0])return v[0]?(a.s=-u,a):new b(y[0]?D:c==3?-0:0)}if(p=le(p),w=le(w),y=y.slice(),f=p-w){for((m=f<0)?(f=-f,d=y):(w=p,d=v),d.reverse(),u=f;u--;d.push(0));d.reverse()}else for(x=(m=(f=y.length)<(u=v.length))?f:u,f=u=0;u<x;u++)if(y[u]!=v[u]){m=y[u]<v[u];break}if(m&&(d=y,y=v,v=d,a.s=-a.s),u=(x=v.length)-(l=y.length),u>0)for(;u--;y[l++]=0);for(u=pe-1;x>f;){if(y[--x]<v[x]){for(l=x;l&&!y[--l];y[l]=u);--y[l],y[x]+=pe}y[x]-=v[x]}for(;y[0]==0;y.splice(0,1),--w);return y[0]?N(a,y,w):(a.s=c==3?-1:1,a.c=[a.e=0],a)},n.modulo=n.mod=function(a,u){var l,x,d=this;return a=new b(a,u),!d.c||!a.s||a.c&&!a.c[0]?new b(NaN):!a.c||d.c&&!d.c[0]?new b(d):(B==9?(x=a.s,a.s=1,l=e(d,a,0,3),a.s=x,l.s*=x):l=e(d,a,0,B),a=d.minus(l.times(a)),!a.c[0]&&B==1&&(a.s=d.s),a)},n.multipliedBy=n.times=function(a,u){var l,x,d,m,D,f,p,w,y,v,L,U,G,K,q,X=this,V=X.c,se=(a=new b(a,u)).c;if(!V||!se||!V[0]||!se[0])return!X.s||!a.s||V&&!V[0]&&!se||se&&!se[0]&&!V?a.c=a.e=a.s=null:(a.s*=X.s,!V||!se?a.c=a.e=null:(a.c=[0],a.e=0)),a;for(x=le(X.e/z)+le(a.e/z),a.s*=X.s,p=V.length,v=se.length,p<v&&(G=V,V=se,se=G,d=p,p=v,v=d),d=p+v,G=[];d--;G.push(0));for(K=pe,q=ye,d=v;--d>=0;){for(l=0,L=se[d]%q,U=se[d]/q|0,D=p,m=d+D;m>d;)w=V[--D]%q,y=V[D]/q|0,f=U*w+y*L,w=L*w+f%q*q+G[m]+l,l=(w/K|0)+(f/q|0)+U*y,G[m--]=w%K;G[m]=l}return l?++x:G.splice(0,1),N(a,G,x)},n.negated=function(){var a=new b(this);return a.s=-a.s||null,a},n.plus=function(a,u){var l,x=this,d=x.s;if(a=new b(a,u),u=a.s,!d||!u)return new b(NaN);if(d!=u)return a.s=-u,x.minus(a);var m=x.e/z,D=a.e/z,f=x.c,p=a.c;if(!m||!D){if(!f||!p)return new b(d/0);if(!f[0]||!p[0])return p[0]?a:new b(f[0]?x:d*0)}if(m=le(m),D=le(D),f=f.slice(),d=m-D){for(d>0?(D=m,l=p):(d=-d,l=f),l.reverse();d--;l.push(0));l.reverse()}for(d=f.length,u=p.length,d-u<0&&(l=p,p=f,f=l,u=d),d=0;u;)d=(f[--u]=f[u]+p[u]+d)/pe|0,f[u]=pe===f[u]?0:f[u]%pe;return d&&(f=[d].concat(f),++D),N(a,f,D)},n.precision=n.sd=function(a,u){var l,x,d,m=this;if(a!=null&&a!==!!a)return H(a,1,te),u==null?u=c:H(u,0,8),I(new b(m),a,u);if(!(l=m.c))return null;if(d=l.length-1,x=d*z+1,d=l[d]){for(;d%10==0;d/=10,x--);for(d=l[0];d>=10;d/=10,x++);}return a&&m.e+1>x&&(x=m.e+1),x},n.shiftedBy=function(a){return H(a,-Bt,Bt),this.times("1e"+a)},n.squareRoot=n.sqrt=function(){var a,u,l,x,d,m=this,D=m.c,f=m.s,p=m.e,w=o+4,y=new b("0.5");if(f!==1||!D||!D[0])return new b(!f||f<0&&(!D||D[0])?NaN:D?m:1/0);if(f=Math.sqrt(+P(m)),f==0||f==1/0?(u=fe(D),(u.length+p)%2==0&&(u+="0"),f=Math.sqrt(+u),p=le((p+1)/2)-(p<0||p%2),f==1/0?u="5e"+p:(u=f.toExponential(),u=u.slice(0,u.indexOf("e")+1)+p),l=new b(u)):l=new b(f+""),l.c[0]){for(p=l.e,f=p+w,f<3&&(f=0);;)if(d=l,l=y.times(d.plus(e(m,d,w,1))),fe(d.c).slice(0,f)===(u=fe(l.c)).slice(0,f))if(l.e<p&&--f,u=u.slice(f-3,f+1),u=="9999"||!x&&u=="4999"){if(!x&&(I(d,d.e+o+2,0),d.times(d).eq(m))){l=d;break}w+=4,f+=4,x=1}else{(!+u||!+u.slice(1)&&u.charAt(0)=="5")&&(I(l,l.e+o+2,1),a=!l.times(l).eq(m));break}}return I(l,l.e+o+1,c,a)},n.toExponential=function(a,u){return a!=null&&(H(a,0,te),a++),J(this,a,u,1)},n.toFixed=function(a,u){return a!=null&&(H(a,0,te),a=a+this.e+1),J(this,a,u)},n.toFormat=function(a,u,l){var x,d=this;if(l==null)a!=null&&u&&typeof u=="object"?(l=u,u=null):a&&typeof a=="object"?(l=a,a=u=null):l=T;else if(typeof l!="object")throw Error(ae+"Argument not an object: "+l);if(x=d.toFixed(a,u),d.c){var m,D=x.split("."),f=+l.groupSize,p=+l.secondaryGroupSize,w=l.groupSeparator||"",y=D[0],v=D[1],L=d.s<0,U=L?y.slice(1):y,G=U.length;if(p&&(m=f,f=p,p=m,G-=m),f>0&&G>0){for(m=G%f||f,y=U.substr(0,m);m<G;m+=f)y+=w+U.substr(m,f);p>0&&(y+=w+U.slice(m)),L&&(y="-"+y)}x=v?y+(l.decimalSeparator||"")+((p=+l.fractionGroupSize)?v.replace(new RegExp("\\d{"+p+"}\\B","g"),"$&"+(l.fractionGroupSeparator||"")):v):y}return(l.prefix||"")+x+(l.suffix||"")},n.toFraction=function(a){var u,l,x,d,m,D,f,p,w,y,v,L,U=this,G=U.c;if(a!=null&&(f=new b(a),!f.isInteger()&&(f.c||f.s!==1)||f.lt(r)))throw Error(ae+"Argument "+(f.isInteger()?"out of range: ":"not an integer: ")+P(f));if(!G)return new b(U);for(u=new b(r),w=l=new b(r),x=p=new b(r),L=fe(G),m=u.e=L.length-U.e-1,u.c[0]=rt[(D=m%z)<0?z+D:D],a=!a||f.comparedTo(u)>0?m>0?u:w:f,D=F,F=1/0,f=new b(L),p.c[0]=0;y=e(f,u,0,1),d=l.plus(y.times(x)),d.comparedTo(a)!=1;)l=x,x=d,w=p.plus(y.times(d=w)),p=d,u=f.minus(y.times(d=u)),f=d;return d=e(a.minus(l),x,0,1),p=p.plus(d.times(w)),l=l.plus(d.times(x)),p.s=w.s=U.s,m=m*2,v=e(w,x,m,c).minus(U).abs().comparedTo(e(p,l,m,c).minus(U).abs())<1?[w,x]:[p,l],F=D,v},n.toNumber=function(){return+P(this)},n.toObject=function(){var a=this;return{c:a.c?a.c.slice():null,e:a.e,s:a.s}},n.toPrecision=function(a,u){return a!=null&&H(a,1,te),J(this,a,u,2)},n.toString=function(a){var u,l=this,x=l.s,d=l.e;return d===null?x?(u="Infinity",x<0&&(u="-"+u)):u="NaN":(a==null?u=d<=h||d>=E?Xe(fe(l.c),d):Ce(fe(l.c),d,"0"):(H(a,2,O.length,"Base"),u=t(Ce(fe(l.c),d,"0"),10,a,x,!0)),x<0&&l.c[0]&&(u="-"+u)),u},n.valueOf=n.toJSON=function(){return P(this)},n._isBigNumber=!0,s!=null&&b.set(s),b}function le(s){var e=s|0;return s>0||s===e?e:e-1}function fe(s){for(var e,t,i=1,n=s.length,r=s[0]+"";i<n;){for(e=s[i++]+"",t=z-e.length;t--;e="0"+e);r+=e}for(n=r.length;r.charCodeAt(--n)===48;);return r.slice(0,n+1||1)}function Se(s,e){var t,i,n=s.c,r=e.c,o=s.s,c=e.s,h=s.e,E=e.e;if(!o||!c)return null;if(t=n&&!n[0],i=r&&!r[0],t||i)return t?i?0:-c:o;if(o!=c)return o;if(t=o<0,i=h==E,!n||!r)return i?0:!n^t?1:-1;if(!i)return h>E^t?1:-1;for(c=(h=n.length)<(E=r.length)?h:E,o=0;o<c;o++)if(n[o]!=r[o])return n[o]>r[o]^t?1:-1;return h==E?0:h>E^t?1:-1}function H(s,e,t,i){if(s<e||s>t||s!==me(s))throw Error(ae+(i||"Argument")+(typeof s=="number"?s<e||s>t?" out of range: ":" not an integer: ":" not a primitive number: ")+String(s))}function Ye(s){var e=s.c.length-1;return le(s.e/z)==e&&s.c[e]%2!=0}function Xe(s,e){return(s.length>1?s.charAt(0)+"."+s.slice(1):s)+(e<0?"e":"e+")+e}function Ce(s,e,t){var i,n;if(e<0){for(n=t+".";++e;n+=t);s=n+s}else if(i=s.length,++e>i){for(n=t,e-=i;--e;n+=t);s+=n}else e<i&&(s=s.slice(0,e)+"."+s.slice(e));return s}Y.extend(Ui);Y.extend(Gi);Y.extend(Ki);Y.extend(ji);Y.extend(ts);function ss(s,e,t){return s?e:t}function ns(s){return s==null||s===""||s===0}function rs(s){return Z.isNull(s)}function os(s){return Z.isUndefined(s)}function as(...s){return(()=>{for(const i of s)if(!i)return!1;return!0})()}function us(...s){return s.some(i=>i)}function cs(s,e){return Z.isEqual(s,e)}function ls(s,e){return s!==e}function hs(s,e){return typeof s=="number"&&typeof e=="number"||typeof s=="string"&&typeof e=="string"||s instanceof Date&&e instanceof Date?s<=e:!1}function ps(s,e){return typeof s=="number"&&typeof e=="number"||typeof s=="string"&&typeof e=="string"||s instanceof Date&&e instanceof Date?s<e:!1}function fs(s,e){return typeof s=="number"&&typeof e=="number"||typeof s=="string"&&typeof e=="string"||s instanceof Date&&e instanceof Date?s>=e:!1}function ds(s,e){return typeof s=="number"&&typeof e=="number"||typeof s=="string"&&typeof e=="string"||s instanceof Date&&e instanceof Date?s>e:!1}function ms(s){return s?.length||0}function Ds(...s){return s.join("")}function xs(s="",e,t){return(()=>{const r=(e<0?[...s].reverse().join(""):s).slice(Math.abs(e+ +(e<0)),Math.abs(t)+ +(e>=0));return e<0?[...r].reverse().join(""):r})()}function Es(s="",e,t){return(()=>{const r=(e<0?[...s].reverse().join(""):s).slice(Math.abs(e+ +(e<0)),Math.abs(e+ +(e<0))+Math.abs(t));return e<0?[...r].reverse().join(""):r})()}function gs(s=""){return s.toUpperCase()}function ys(s=""){return s.toLowerCase()}function Cs(s=""){return s.trim()}function As(s=""){return s.replace(/^\s\s*/,"")}function Fs(s=""){return s.replace(/\s\s*$/,"")}function Ss(s="",e=""){return s.match(new RegExp(e,"g"))?.length||null}function ws(s="",e="",t=""){return s.replace(new RegExp(e,"g"),t)}function bs(s="",e=""){return s.includes(e)}function ks(s="",e=""){return(()=>{const n=s.match(new RegExp(e,"g"))?.length;return n||0})()}function vs(s=""){return(()=>{const i=parseFloat(s);return isNaN(i)?null:i})()}function Ts(s="",e=""){return s.split(e)}function Bs(...s){const e=s.flat().filter(n=>n!==""&&n!==null&&n!==void 0);return e.length?e.reduce(Ct,0):""}function Is(...s){return s.flat().reduce(Ct,0)}function Ns(s,...e){return e.reduce(Fn,s)}function Ps(s,...e){const t=e.flat().filter(r=>r!==""&&r!==null&&r!==void 0);return t.length?t.reduce(ni,s):""}function Ms(s,...e){return e.reduce(Sn,s)}function Os(s,e){return(()=>{if(e<0)throw new Error("Decimal places should be non-negative.");const n=s.toString().split("."),[r,o=""]=n;if(e==0)return r;let c=o.split("");if(c.length>e)c=c.slice(0,e);else{const h=c.length;for(let E=0;E<e-h;E++)c.push("0")}return`${r}.${c.join("")}`})()}function Ls(s,e){return(()=>{if(s===null||s===""||s===void 0)return"";if(e<0)throw new Error("Decimal places should be non-negative.");const n=Math.trunc(e),r=Number(s);if(isNaN(r))return"";const o=r>0?(+(Math.round(+(r+`e${n}`))+`e-${n}`)).toFixed(n):-(+(Math.round(+(-r+`e${n}`))+`e-${n}`)).toFixed(n);return parseFloat(o+"")})()}function Rs(s,e){if(s===null||s===""||s===void 0)return"";if(e<0)throw new Error("Decimal places should be non-negative.");return e=e?parseInt(e+""):0,new W(s).decimalPlaces(e,W.ROUND_UP).toNumber()}function _s(...s){const e=s.flat().filter(n=>n!==""&&n!==null&&n!==void 0);return e.length?Math.max.apply(null,e):""}function Us(s,e){return(()=>{if(e<1||e>s.length)throw new Error("Invalid value of n. It should be between 1 and the array length.");return s.sort((r,o)=>o-r)[e-1]})()}function zs(...s){const e=s.flat().filter(n=>n!==""&&n!==null&&n!==void 0);return e.length?Math.min.apply(null,e):""}function Ys(s,e){return(()=>{if(e<1||e>s.length)throw new Error("Invalid value of n. It should be between 1 and the array length.");return s.sort((r,o)=>r-o)[e-1]})()}function Xs(...s){const e=s.flat().filter(n=>n!==""&&n!==null&&n!==void 0),t=e.length;if(!t)return"";let i=new W(0);for(const n of e)i=i.plus(n);return i.dividedBy(t).toNumber()}function Gs(s){return Math.abs.call(null,s)}function Js(s,e){return(()=>{if(s===0)throw new Error("The second value should not be zero.");const n=new W(s).mod(e).toNumber();return isNaN(n)?"":n})()}function Et(s){if(typeof s=="number")return Number.isFinite(s)?s:null;if(typeof s=="string"){const e=s.trim();if(e==="")return null;const t=Number(e);return Number.isFinite(t)?t:null}if(typeof s=="bigint"){const e=Number(s);return Number.isFinite(e)?e:null}return null}function $s(s,e){return(()=>{const n=Et(s),r=Et(e);return n===null||r===null?NaN:Math.abs(r)>1e9?r>0?1/0:0:Math.pow(n,r)})()}function Vs(s){return(()=>{const i=Et(s);return i===null?NaN:Math.sqrt(i)})()}function Ks(s,e){return(()=>{if(Array.isArray(s)){if(typeof e=="number")return s[e];throw new Error("For arrays, the second argument should be a number.")}else if(typeof s=="object"){if(typeof e=="string")return s[e];throw new Error("For objects, the second argument (b) should be a string.")}else throw new Error("Unsupported data type. The first argument (a) should be an array or an object.")})()}function Ws(s,e,t){return(()=>{if(Array.isArray(s))if(typeof e=="number"&&e>=0&&e<s.length)s[e]=t;else throw new Error("For arrays, the second argument (b) should be a number.");else if(typeof s=="object")if(typeof e=="string"&&s)s[e]=t;else throw new Error("For objects, the second argument (b) should be a string.");else throw new Error("Unsupported data type. The first argument (a) should be an array or an object.");return s})()}function Hs(s,e){return(()=>{if(!e)throw new Error("For arrays, the second argument should not be null or undefined");return s.push(e),s})()}function qs(s,e){return(()=>{if(!e)throw new Error("For arrays, the second argument should not be null or undefined");return s.unshift(e),s})()}function js(s){return s?(()=>{if(!s)throw new Error("the frist argument should not be null");const i=new Date(s*1e3),n=i.getFullYear(),r=String(i.getMonth()+1).padStart(2,"0"),o=String(i.getDate()).padStart(2,"0"),c=String(i.getHours()).padStart(2,"0"),h=String(i.getMinutes()).padStart(2,"0"),E=String(i.getSeconds()).padStart(2,"0");return`${n}-${r}-${o} ${c}:${h}:${E}`})():void 0}function Qs(s){return s?Y(s).unix():void 0}function Zs(s,e){return s?Y(s).format(e):void 0}function en(){return Y().format("YYYY-MM-DD HH:MM:ss")}function tn(){return Y().format("YYYY-MM-DD")}function sn(s){return Y(s).year()}function nn(s){return Y(s).month()}function rn(s){return Y(s).day()}function on(s){return Y(s).hour()}function an(s){return Y(s).minute()}function un(){return(()=>{const t=ne(Y().startOf("week").toDate()),i=ne(Y().endOf("week").toDate());return[t,i]})()}function cn(){return(()=>{const t=ne(Y().subtract(1,"week").startOf("week").toDate()),i=ne(Y().subtract(1,"week").endOf("week").toDate());return[t,i]})()}function ln(){return(()=>{const t=ne(Y().startOf("month").toDate()),i=ne(Y().endOf("month").toDate());return[t,i]})()}function hn(){return(()=>{const t=ne(Y().subtract(1,"month").startOf("month").toDate()),i=ne(Y().subtract(1,"month").endOf("month").toDate());return[t,i]})()}function pn(){return(()=>{const t=ne(Y().startOf("year").toDate()),i=ne(Y().endOf("year").toDate());return[t,i]})()}function fn(){return(()=>{const t=ne(Y().subtract(1,"year").startOf("year").toDate()),i=ne(Y().subtract(1,"year").endOf("year").toDate());return[t,i]})()}function dn(){return(()=>{const t=Math.floor((Y().month()+3)/3),i=ne(Y().quarter(t).startOf("quarter").toDate()),n=ne(Y().quarter(t).endOf("quarter").toDate());return[i,n]})()}function mn(){return(()=>{const t=Math.floor((Y().month()+3)/3),i=ne(Y().quarter(t-1).startOf("quarter").toDate()),n=ne(Y().quarter(t-1).endOf("quarter").toDate());return[i,n]})()}function Dn(s,e){return(()=>{const[n,r]=e;return s>=n&&s<=r})()}function xn(s,e){return(()=>{const[n,r]=e,o=Y(s,"HH:mm");if(n>r){const c=Y(n,"HH:mm"),h=Y(r,"HH:mm").add(1,"day");return o>=c||o<=h}else return o>=Y(n,"HH:mm")&&o<=Y(r,"HH:mm")})()}function ne(s){return Y(s).tz("America/Chicago").format("YYYY-MM-DD HH:mm:ss.SSSSSSSSS ZZ")}function En(...s){return[...s]}function gn(...s){const e=(s.length-s.length%2)/2,t={};return Array(e).forEach(i=>{const n=s[i*2],r=s[i*2+1];t[n]=r}),t}function yn(...s){return s=s.flat().filter(t=>t!==""&&t!==null&&t!==void 0),s.length===0?"":s.map(t=>{const i=ni(t,t);return i!==""?i:new W(0).toNumber()}).reduce((t,i)=>Ct(t,i)||W(0).toNumber(),new W(0).toNumber())}function Cn(s){return Array.isArray(s)?s.length:""}function An(...s){const e=s.flat().map(n=>Number(n)).filter(n=>Number.isFinite(n));if(e.length<2)return"";const t=e.reduce((n,r)=>n+r,0)/e.length,i=e.reduce((n,r)=>{const o=r-t;return n+o*o},0)/(e.length-1);return Math.sqrt(i)}function Ct(s,e){const t=new W(s).plus(new W(e)).toNumber();return isNaN(t)?"":t}function Fn(s,e){const t=new W(s).minus(new W(e)).toNumber();return isNaN(t)?"":t}function ni(s,e){const t=new W(s).multipliedBy(new W(e)).toNumber();return isNaN(t)?"":t}function Sn(s,e){const t=new W(s).div(new W(e)).toNumber();return isNaN(t)?"":t}const ri=Object.freeze(Object.defineProperty({__proto__:null,ABS:Gs,ADD:Is,AND:as,AVERAGE:Xs,CONCAT:Ds,COUNT:Cn,DATE2TIMESTAMP:Qs,DATEFORMAT:Zs,DAY:rn,DIVISION:Ms,EQ:cs,FINDSTR:bs,FIXED:Os,GE:fs,GET:Ks,GT:ds,HEADPUSH:qs,HOUR:on,IF:ss,ISDATERANGE:Dn,ISEMPTY:ns,ISNULL:rs,ISTIMERANGE:xn,ISUNDEFINED:os,LARGE:Us,LASTMONTHRANGE:hn,LASTQUARTER:mn,LASTWEEKRANGE:cn,LASTYEARRANGE:fn,LE:hs,LEN:ms,LOWER:ys,LT:ps,LTRIM:As,MAX:_s,MIN:zs,MINUTE:an,MOD:Js,MONTH:nn,MONTHRANGE:ln,MULTIPLICATION:Ps,NE:ls,NOW:en,OR:us,PARSENUMBER:vs,POWER:$s,PUSH:Hs,PUT:Ws,QUARTER:dn,REDUCE:Ns,REPEAT:Ss,REPLACE:ws,ROUND:Ls,ROUNDUP:Rs,RTRIM:Fs,SEARCHSTR:ks,SEQMAP:gn,SMALL:Ys,SPLIT:Ts,SQRT:Vs,STDEV:An,SUBSTR:Es,SUBSTRING:xs,SUM:Bs,SUMSQ:yn,TIMESTAMP2DATE:js,TODAY:tn,TRIM:Cs,TUPLE:En,UPPER:gs,WEEKRANGE:un,YEAR:sn,YEARRANGE:pn},Symbol.toStringTag,{value:"Module"}));var A;(function(s){s.AssignmentExpression="AssignmentExpression",s.AssignmentPattern="AssignmentPattern",s.ArrayExpression="ArrayExpression",s.ArrayPattern="ArrayPattern",s.ArrowFunctionExpression="ArrowFunctionExpression",s.AwaitExpression="AwaitExpression",s.BlockStatement="BlockStatement",s.BinaryExpression="BinaryExpression",s.BreakStatement="BreakStatement",s.CallExpression="CallExpression",s.CatchClause="CatchClause",s.ChainExpression="ChainExpression",s.ClassBody="ClassBody",s.ClassDeclaration="ClassDeclaration",s.ClassExpression="ClassExpression",s.ConditionalExpression="ConditionalExpression",s.ContinueStatement="ContinueStatement",s.Decorator="Decorator",s.DoWhileStatement="DoWhileStatement",s.DebuggerStatement="DebuggerStatement",s.EmptyStatement="EmptyStatement",s.ExportAllDeclaration="ExportAllDeclaration",s.ExportDefaultDeclaration="ExportDefaultDeclaration",s.ExportNamedDeclaration="ExportNamedDeclaration",s.ExportSpecifier="ExportSpecifier",s.ExpressionStatement="ExpressionStatement",s.ForStatement="ForStatement",s.ForOfStatement="ForOfStatement",s.ForInStatement="ForInStatement",s.FunctionDeclaration="FunctionDeclaration",s.FunctionExpression="FunctionExpression",s.Identifier="Identifier",s.IfStatement="IfStatement",s.ImportAttribute="ImportAttribute",s.ImportExpression="ImportExpression",s.ImportDeclaration="ImportDeclaration",s.ImportDefaultSpecifier="ImportDefaultSpecifier",s.ImportNamespaceSpecifier="ImportNamespaceSpecifier",s.ImportSpecifier="ImportSpecifier",s.Literal="Literal",s.LabeledStatement="LabeledStatement",s.LogicalExpression="LogicalExpression",s.MemberExpression="MemberExpression",s.MetaProperty="MetaProperty",s.MethodDefinition="MethodDefinition",s.NewExpression="NewExpression",s.ObjectExpression="ObjectExpression",s.ObjectPattern="ObjectPattern",s.Program="Program",s.Property="Property",s.PrivateIdentifier="PrivateIdentifier",s.RestElement="RestElement",s.ReturnStatement="ReturnStatement",s.SequenceExpression="SequenceExpression",s.SpreadElement="SpreadElement",s.StaticBlock="StaticBlock",s.Super="Super",s.SwitchCase="SwitchCase",s.SwitchStatement="SwitchStatement",s.TaggedTemplateExpression="TaggedTemplateExpression",s.TemplateElement="TemplateElement",s.TemplateLiteral="TemplateLiteral",s.ThisExpression="ThisExpression",s.ThrowStatement="ThrowStatement",s.TryStatement="TryStatement",s.UnaryExpression="UnaryExpression",s.UpdateExpression="UpdateExpression",s.VariableDeclaration="VariableDeclaration",s.VariableDeclarator="VariableDeclarator",s.WhileStatement="WhileStatement",s.WithStatement="WithStatement",s.YieldExpression="YieldExpression"})(A||(A={}));class wn{constructor(){this.attach=!1,this.comments=[],this.stack=[],this.leading=[],this.trailing=[]}insertInnerComments(e,t){if(e.type===A.BlockStatement&&e.body.length===0){const i=[];for(let n=this.leading.length-1;n>=0;--n){const r=this.leading[n];t.end.offset>=r.start&&(i.unshift(r.comment),this.leading.splice(n,1),this.trailing.splice(n,1))}i.length&&(e.innerComments=i)}}findTrailingComments(e){let t=[];if(this.trailing.length>0){for(let n=this.trailing.length-1;n>=0;--n){const r=this.trailing[n];r.start>=e.end.offset&&t.unshift(r.comment)}return this.trailing.length=0,t}const i=this.stack[this.stack.length-1];if(i&&i.node.trailingComments){const n=i.node.trailingComments[0];n&&n.range[0]>=e.end.offset&&(t=i.node.trailingComments,delete i.node.trailingComments)}return t}findLeadingComments(e){const t=[];let i;for(;this.stack.length>0;){const n=this.stack[this.stack.length-1];if(n&&n.start>=e.start.offset)i=n.node,this.stack.pop();else break}if(i){const n=i.leadingComments?i.leadingComments.length:0;for(let r=n-1;r>=0;--r){const o=i.leadingComments[r];o.range[1]<=e.start.offset&&(t.unshift(o),i.leadingComments.splice(r,1))}return i.leadingComments&&i.leadingComments.length===0&&delete i.leadingComments,t}for(let n=this.leading.length-1;n>=0;--n){const r=this.leading[n];r.start<=e.start.offset&&(t.unshift(r.comment),this.leading.splice(n,1))}return t}visitNode(e,t){if(e.type===A.Program&&e.body.length>0)return;this.insertInnerComments(e,t);const i=this.findTrailingComments(t),n=this.findLeadingComments(t);n.length>0&&(e.leadingComments=n),i.length>0&&(e.trailingComments=i),this.stack.push({node:e,start:t.start.offset})}visitComment(e,t){const i=e.type[0]==="L"?"Line":"Block",n={type:i,value:e.value};if(e.range&&(n.range=e.range),e.loc&&(n.loc=e.loc),this.comments.push(n),this.attach){const r={comment:{type:i,value:e.value,range:[t.start.offset,t.end.offset]},start:t.start.offset};e.loc&&(r.comment.loc=e.loc),e.type=i,this.leading.push(r),this.trailing.push(r)}}visit(e,t){e.type==="LineComment"?this.visitComment(e,t):e.type==="BlockComment"?this.visitComment(e,t):this.attach&&this.visitNode(e,t)}}const It={NonAsciiIdentifierStart:/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEF\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7BF\uA7C2-\uA7C6\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB67\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDEC0-\uDEEB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/,NonAsciiIdentifierPart:/[\xAA\xB5\xB7\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05EF-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u07FD\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D3-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u09FE\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1369-\u1371\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1878\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CD0-\u1CD2\u1CD4-\u1CFA\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEF\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7BF\uA7C2-\uA7C6\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB67\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD27\uDD30-\uDD39\uDF00-\uDF1C\uDF27\uDF30-\uDF50\uDFE0-\uDFF6]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD44-\uDD46\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDC9-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3B-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC5E\uDC5F\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDC00-\uDC3A\uDCA0-\uDCE9\uDCFF\uDDA0-\uDDA7\uDDAA-\uDDD7\uDDDA-\uDDE1\uDDE3\uDDE4\uDE00-\uDE3E\uDE47\uDE50-\uDE99\uDE9D\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD8E\uDD90\uDD91\uDD93-\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF6]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF4F-\uDF87\uDF8F-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A\uDD00-\uDD2C\uDD30-\uDD3D\uDD40-\uDD49\uDD4E\uDEC0-\uDEF9]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4B\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/},R={fromCodePoint(s){return s<65536?String.fromCharCode(s):String.fromCharCode(55296+(s-65536>>10))+String.fromCharCode(56320+(s-65536&1023))},isStringWellFormedUnicode(s){for(let e=0;e<s.length;e++){let t=s.charCodeAt(e);if(t>=55296&&t<=56319){if(e===s.length-1||(e++,t=s.charCodeAt(e),t<56320&&t>57343))return!1}else if(t>=56320&&t<=57343)return!1}return!0},isWhiteSpace(s){return s===32||s===9||s===11||s===12||s===160||s>=5760&&[5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8239,8287,12288,65279].indexOf(s)>=0},isLineTerminator(s){return s===10||s===13||s===8232||s===8233},isIdentifierStart(s){return s===36||s===95||s>=65&&s<=90||s>=97&&s<=122||s===92||s>=128&&It.NonAsciiIdentifierStart.test(R.fromCodePoint(s))},isIdentifierPart(s){return s===36||s===95||s>=65&&s<=90||s>=97&&s<=122||s>=48&&s<=57||s===92||s>=128&&It.NonAsciiIdentifierPart.test(R.fromCodePoint(s))},isDecimalDigit(s){return s>=48&&s<=57},isDecimalDigitChar(s){return s.length===1&&R.isDecimalDigit(s.charCodeAt(0))},isHexDigit(s){return s>=48&&s<=57||s>=65&&s<=70||s>=97&&s<=102},isHexDigitChar(s){return s.length===1&&R.isHexDigit(s.charCodeAt(0))},isOctalDigit(s){return s>=48&&s<=55},isOctalDigitChar(s){return s.length===1&&R.isOctalDigit(s.charCodeAt(0))}};var Q;(function(s){s.JSXAttribute="JSXAttribute",s.JSXClosingElement="JSXClosingElement",s.JSXClosingFragment="JSXClosingFragment",s.JSXElement="JSXElement",s.JSXEmptyExpression="JSXEmptyExpression",s.JSXExpressionContainer="JSXExpressionContainer",s.JSXIdentifier="JSXIdentifier",s.JSXMemberExpression="JSXMemberExpression",s.JSXNamespacedName="JSXNamespacedName",s.JSXOpeningElement="JSXOpeningElement",s.JSXOpeningFragment="JSXOpeningFragment",s.JSXSpreadAttribute="JSXSpreadAttribute",s.JSXText="JSXText"})(Q||(Q={}));class bn{constructor(e){this.type=Q.JSXClosingElement,this.name=e}}class kn{constructor(){this.type=Q.JSXClosingFragment}}class ot{constructor(e,t,i){this.type=Q.JSXElement,this.openingElement=e,this.children=t,this.closingElement=i}}class vn{constructor(){this.type=Q.JSXEmptyExpression}}class Nt{constructor(e){this.type=Q.JSXExpressionContainer,this.expression=e}}class Tn{constructor(e){this.type=Q.JSXIdentifier,this.name=e}}class Bn{constructor(e,t){this.type=Q.JSXMemberExpression,this.object=e,this.property=t}}class In{constructor(e,t){this.type=Q.JSXAttribute,this.name=e,this.value=t}}class Pt{constructor(e,t){this.type=Q.JSXNamespacedName,this.namespace=e,this.name=t}}class Mt{constructor(e,t,i){this.type=Q.JSXOpeningElement,this.name=e,this.selfClosing=t,this.attributes=i}}class Nn{constructor(e){this.type=Q.JSXOpeningFragment,this.selfClosing=e}}class Pn{constructor(e){this.type=Q.JSXSpreadAttribute,this.argument=e}}class Mn{constructor(e,t){this.type=Q.JSXText,this.value=e,this.raw=t}}class On{constructor(e){this.type=A.ArrayExpression,this.elements=e}}class Ln{constructor(e){this.type=A.ArrayPattern,this.elements=e}}class Rn{constructor(e,t,i,n){this.type=A.ArrowFunctionExpression,this.id=null,this.params=e,this.body=t,this.generator=!1,this.expression=i,this.async=n}}class _n{constructor(e,t,i){this.type=A.AssignmentExpression,this.operator=e,this.left=t,this.right=i}}class at{constructor(e,t){this.type=A.AssignmentPattern,this.left=e,this.right=t}}class Un{constructor(e,t,i,n){this.type=A.FunctionDeclaration,this.id=e,this.params=t,this.body=i,this.generator=n,this.expression=!1,this.async=!0}}class zn{constructor(e){this.type=A.AwaitExpression,this.argument=e}}class Ot{constructor(e,t,i){this.type=A.Literal,this.value=e,this.raw=t,this.bigint=i}}class ut{constructor(e,t,i){this.type=A.BinaryExpression,this.operator=e,this.left=t,this.right=i}}class Lt{constructor(e){this.type=A.BlockStatement,this.body=e}}class Yn{constructor(e){this.type=A.BreakStatement,this.label=e}}class Xn{constructor(e,t,i){this.type=A.CallExpression,this.callee=e,this.arguments=t,this.optional=i}}class Gn{constructor(e,t){this.type=A.CatchClause,this.param=e,this.body=t}}class Rt{constructor(e){this.type=A.ChainExpression,this.expression=e}}class Jn{constructor(e){this.type=A.ClassBody,this.body=e}}class $n{constructor(e,t,i,n){this.type=A.ClassDeclaration,this.id=e,this.superClass=t,this.body=i,this.decorators=n}}class Vn{constructor(e,t,i,n){this.type=A.ClassExpression,this.id=e,this.superClass=t,this.body=i,this.decorators=n}}class Kn{constructor(e,t,i){this.type=A.ConditionalExpression,this.test=e,this.consequent=t,this.alternate=i}}class Wn{constructor(e){this.type=A.ContinueStatement,this.label=e}}class Hn{constructor(){this.type=A.DebuggerStatement}}class qn{constructor(e){this.type=A.Decorator,this.expression=e}}class jn{constructor(e,t){this.type=A.ExpressionStatement,this.expression=e,this.directive=t}}class Qn{constructor(e,t){this.type=A.DoWhileStatement,this.body=e,this.test=t}}class Oe{constructor(){this.type=A.EmptyStatement}}class Zn{constructor(e,t,i){this.type=A.ExportAllDeclaration,this.source=e,this.exported=t,this.assertions=i}}class Ge{constructor(e){this.type=A.ExportDefaultDeclaration,this.declaration=e}}class ct{constructor(e,t,i,n){this.type=A.ExportNamedDeclaration,this.declaration=e,this.specifiers=t,this.source=i,this.assertions=n}}class er{constructor(e,t){this.type=A.ExportSpecifier,this.exported=t,this.local=e}}class lt{constructor(e){this.type=A.ExpressionStatement,this.expression=e}}class tr{constructor(e,t,i){this.type=A.ForInStatement,this.left=e,this.right=t,this.body=i,this.each=!1}}class ir{constructor(e,t,i,n){this.type=A.ForOfStatement,this.await=n,this.left=e,this.right=t,this.body=i}}class sr{constructor(e,t,i,n){this.type=A.ForStatement,this.init=e,this.test=t,this.update=i,this.body=n}}class nr{constructor(e,t,i,n){this.type=A.FunctionDeclaration,this.id=e,this.params=t,this.body=i,this.generator=n,this.expression=!1,this.async=!1}}class be{constructor(e,t,i,n,r){this.type=A.FunctionExpression,this.id=e,this.params=t,this.body=i,this.generator=n,this.expression=!1,this.async=r}}class de{constructor(e){this.type=A.Identifier,this.name=e}}class rr{constructor(e,t,i){this.type=A.IfStatement,this.test=e,this.consequent=t,this.alternate=i}}class or{constructor(e,t){this.type=A.ImportAttribute,this.key=e,this.value=t}}class ar{constructor(e,t){this.type=A.ImportExpression,this.source=e,this.attributes=t}}class ur{constructor(e,t,i){this.type=A.ImportDeclaration,this.specifiers=e,this.source=t,this.assertions=i}}class cr{constructor(e){this.type=A.ImportDefaultSpecifier,this.local=e}}class lr{constructor(e){this.type=A.ImportNamespaceSpecifier,this.local=e}}class hr{constructor(e,t){this.type=A.ImportSpecifier,this.local=e,this.imported=t}}class pr{constructor(e,t){this.type=A.LabeledStatement,this.label=e,this.body=t}}class we{constructor(e,t){this.type=A.Literal,this.value=e,this.raw=t}}class _t{constructor(e,t,i){this.type=A.LogicalExpression,this.operator=e,this.left=t,this.right=i}}class Je{constructor(e,t,i,n){this.type=A.MemberExpression,this.computed=e,this.object=t,this.property=i,this.optional=n}}class Ut{constructor(e,t){this.type=A.MetaProperty,this.meta=e,this.property=t}}class fr{constructor(e,t,i,n,r,o){this.type=A.MethodDefinition,this.key=e,this.computed=t,this.value=i,this.kind=n,this.static=r,this.decorators=o}}class dr{constructor(e){this.type=A.Program,this.body=e,this.sourceType="module"}}class mr{constructor(e,t){this.type=A.NewExpression,this.callee=e,this.arguments=t}}class Dr{constructor(e){this.type=A.ObjectExpression,this.properties=e}}class xr{constructor(e){this.type=A.ObjectPattern,this.properties=e}}class $e{constructor(e){this.type=A.PrivateIdentifier,this.name=e}}class zt{constructor(e,t,i,n,r,o){this.type=A.Property,this.key=t,this.computed=i,this.value=n,this.kind=e,this.method=r,this.shorthand=o}}class Er{constructor(e,t,i,n,r){this.type=A.Property,this.key=e,this.computed=t,this.value=i,this.static=n,this.decorators=r}}class gr{constructor(e,t,i,n){this.type=A.Literal,this.value=e,this.raw=t,this.regex={pattern:i,flags:n}}}class Ve{constructor(e){this.type=A.RestElement,this.argument=e}}class yr{constructor(e){this.type=A.ReturnStatement,this.argument=e}}class Cr{constructor(e){this.type=A.Program,this.body=e,this.sourceType="script"}}class ht{constructor(e){this.type=A.SequenceExpression,this.expressions=e}}class Ar{constructor(e){this.type=A.SpreadElement,this.argument=e}}class Fr{constructor(e){this.type=A.StaticBlock,this.body=e}}class Yt{constructor(){this.type=A.Super}}class Sr{constructor(e,t){this.type=A.SwitchCase,this.test=e,this.consequent=t}}class wr{constructor(e,t){this.type=A.SwitchStatement,this.discriminant=e,this.cases=t}}class Xt{constructor(e,t){this.type=A.TaggedTemplateExpression,this.tag=e,this.quasi=t}}class Gt{constructor(e,t){this.type=A.TemplateElement,this.value=e,this.tail=t}}class br{constructor(e,t){this.type=A.TemplateLiteral,this.quasis=e,this.expressions=t}}class kr{constructor(){this.type=A.ThisExpression}}class vr{constructor(e){this.type=A.ThrowStatement,this.argument=e}}class Tr{constructor(e,t,i){this.type=A.TryStatement,this.block=e,this.handler=t,this.finalizer=i}}class Br{constructor(e,t){this.type=A.UnaryExpression,this.operator=e,this.argument=t,this.prefix=!0}}class Jt{constructor(e,t,i){this.type=A.UpdateExpression,this.operator=e,this.argument=t,this.prefix=i}}class Ae{constructor(e,t){this.type=A.VariableDeclaration,this.declarations=e,this.kind=t}}class $t{constructor(e,t){this.type=A.VariableDeclarator,this.id=e,this.init=t}}class Ir{constructor(e,t){this.type=A.WhileStatement,this.test=e,this.body=t}}class Nr{constructor(e,t){this.type=A.WithStatement,this.object=e,this.body=t}}class Pr{constructor(e,t){this.type=A.YieldExpression,this.argument=e,this.delegate=t}}function ge(s,e){if(!s)throw new Error("ASSERT: "+e)}class Mr{constructor(){this.errors=[],this.tolerant=!1}recordError(e){this.errors.push(e)}tolerate(e){if(this.tolerant)this.recordError(e);else throw e}constructError(e,t){let i=new Error(e);try{throw i}catch(n){Object.create&&Object.defineProperty&&(i=Object.create(n),Object.defineProperty(i,"column",{value:t}))}return i}createError(e,t,i,n){const r="Line "+t+": "+n,o=this.constructError(r,i);return o.index=e,o.lineNumber=t,o.description=n,o}throwError(e,t,i,n){throw this.createError(e,t,i,n)}tolerateError(e,t,i,n){const r=this.createError(e,t,i,n);if(this.tolerant)this.recordError(r);else throw r}}const k={AsyncFunctionInSingleStatementContext:"Async functions can only be declared at the top level or inside a block.",BadImportCallArity:"Unexpected token",BadGetterArity:"Getter must not have any formal parameters",BadSetterArity:"Setter must have exactly one formal parameter",BadSetterRestParameter:"Setter function argument must not be a rest parameter",CannotUseImportMetaOutsideAModule:"Cannot use 'import.meta' outside a module",ConstructorIsAsync:"Class constructor may not be an async method",ConstructorIsPrivate:"Class constructor may not be a private method",ConstructorSpecialMethod:"Class constructor may not be an accessor",DeclarationMissingInitializer:"Missing initializer in %0 declaration",DefaultRestParameter:"Unexpected token =",DefaultRestProperty:"Unexpected token =",DuplicateBinding:"Duplicate binding %0",DuplicateConstructor:"A class may only have one constructor",DuplicateParameter:"Duplicate parameter name not allowed in this context",DuplicateProtoProperty:"Duplicate __proto__ fields are not allowed in object literals",ForInOfLoopInitializer:"%0 loop variable declaration may not have an initializer",GeneratorInLegacyContext:"Generator declarations are not allowed in legacy contexts",IllegalBreak:"Illegal break statement",IllegalContinue:"Illegal continue statement",IllegalExportDeclaration:"Unexpected token",IllegalImportDeclaration:"Unexpected token",IllegalLanguageModeDirective:"Illegal 'use strict' directive in function with non-simple parameter list",IllegalReturn:"Illegal return statement",InvalidEscapedReservedWord:"Keyword must not contain escaped characters",InvalidHexEscapeSequence:"Invalid hexadecimal escape sequence",InvalidLHSInAssignment:"Invalid left-hand side in assignment",InvalidLHSInForIn:"Invalid left-hand side in for-in",InvalidLHSInForLoop:"Invalid left-hand side in for-loop",InvalidModuleSpecifier:"Unexpected token",InvalidRegExp:"Invalid regular expression",InvalidTaggedTemplateOnOptionalChain:"Invalid tagged template on optional chain",InvalidUnicodeEscapeSequence:"Invalid Unicode escape sequence",LetInLexicalBinding:"let is disallowed as a lexically bound name",MissingFromClause:"Unexpected token",MultipleDefaultsInSwitch:"More than one default clause in switch statement",NewlineAfterThrow:"Illegal newline after throw",NoAsAfterImportNamespace:"Unexpected token",NoAsAndFromEscapeSequences:"The `as` and `from` contextual keywords must not contain Unicode escape sequences.",NoCatchOrFinally:"Missing catch or finally after try",NoSemicolonAfterDecorator:"Decorators must not be followed by a semicolon.",NumericSeperatorOneUnderscore:"Numeric separator must be exactly one underscore",NumericSeperatorNotAllowedHere:"Numeric separator is not allowed here",ParameterAfterRestParameter:"Rest parameter must be last formal parameter",PropertyAfterRestProperty:"Unexpected token",Redeclaration:"%0 '%1' has already been declared",StaticPrototype:"Classes may not have static property named prototype",StrictCatchVariable:"Catch variable may not be eval or arguments in strict mode",StrictDelete:"Delete of an unqualified identifier in strict mode.",StrictFunction:"In strict mode code, functions can only be declared at top level or inside a block",StrictFunctionName:"Function name may not be eval or arguments in strict mode",StrictLHSAssignment:"Assignment to eval or arguments is not allowed in strict mode",StrictLHSPostfix:"Postfix increment/decrement may not have eval or arguments operand in strict mode",StrictLHSPrefix:"Prefix increment/decrement may not have eval or arguments operand in strict mode",StrictModeWith:"Strict mode code may not include a with statement",StrictOctalLiteral:"Octal literals are not allowed in strict mode.",StrictParamName:"Parameter name eval or arguments is not allowed in strict mode",StrictReservedWord:"Use of future reserved word in strict mode",StrictVarName:"Variable name may not be eval or arguments in strict mode",TemplateOctalLiteral:"Octal literals are not allowed in template strings.",TemplateEscape89:"\\8 and \\9 are not allowed in template strings.",UnexpectedEOS:"Unexpected end of input",UnexpectedIdentifier:"Unexpected identifier",UnexpectedNumber:"Unexpected number",UnexpectedReserved:"Unexpected reserved word",UnexpectedString:"Unexpected string",UnexpectedSuper:"'super' keyword unexpected here",UnexpectedTemplate:"Unexpected quasi %0",UnexpectedToken:"Unexpected token %0",UnexpectedTokenIllegal:"Unexpected token ILLEGAL",UnknownLabel:"Undefined label '%0'",UnterminatedRegExp:"Invalid regular expression: missing /"};function Vt(s){return"0123456789abcdef".indexOf(s.toLowerCase())}function pt(s){return"01234567".indexOf(s)}class Or{constructor(e,t){this.source=e,this.errorHandler=t,this.trackComment=!1,this.isModule=!1,this.length=e.length,this.index=0,this.lineNumber=e.length>0?1:0,this.lineStart=0,this.curlyStack=[]}saveState(){return{index:this.index,lineNumber:this.lineNumber,lineStart:this.lineStart,curlyStack:this.curlyStack.slice()}}restoreState(e){this.index=e.index,this.lineNumber=e.lineNumber,this.lineStart=e.lineStart,this.curlyStack=e.curlyStack}eof(){return this.index>=this.length}throwUnexpectedToken(e=k.UnexpectedTokenIllegal){return this.errorHandler.throwError(this.index,this.lineNumber,this.index-this.lineStart+1,e)}tolerateUnexpectedToken(e=k.UnexpectedTokenIllegal){this.errorHandler.tolerateError(this.index,this.lineNumber,this.index-this.lineStart+1,e)}skipSingleLineComment(e){let t=[],i,n;for(this.trackComment&&(t=[],i=this.index-e,n={start:{line:this.lineNumber,column:this.index-this.lineStart-e},end:{}});!this.eof();){const r=this.source.charCodeAt(this.index);if(++this.index,R.isLineTerminator(r)){if(this.trackComment){n.end={line:this.lineNumber,column:this.index-this.lineStart-1};const o={multiLine:!1,slice:[i+e,this.index-1],range:[i,this.index-1],loc:n};t.push(o)}return r===13&&this.source.charCodeAt(this.index)===10&&++this.index,++this.lineNumber,this.lineStart=this.index,t}}if(this.trackComment){n.end={line:this.lineNumber,column:this.index-this.lineStart};const r={multiLine:!1,slice:[i+e,this.index],range:[i,this.index],loc:n};t.push(r)}return t}skipMultiLineComment(){let e=[],t,i;for(this.trackComment&&(e=[],t=this.index-2,i={start:{line:this.lineNumber,column:this.index-this.lineStart-2},end:{}});!this.eof();){const n=this.source.charCodeAt(this.index);if(R.isLineTerminator(n))n===13&&this.source.charCodeAt(this.index+1)===10&&++this.index,++this.lineNumber,++this.index,this.lineStart=this.index;else if(n===42){if(this.source.charCodeAt(this.index+1)===47){if(this.index+=2,this.trackComment){i.end={line:this.lineNumber,column:this.index-this.lineStart};const r={multiLine:!0,slice:[t+2,this.index-2],range:[t,this.index],loc:i};e.push(r)}return e}++this.index}else++this.index}if(this.trackComment){i.end={line:this.lineNumber,column:this.index-this.lineStart};const n={multiLine:!0,slice:[t+2,this.index],range:[t,this.index],loc:i};e.push(n)}return this.tolerateUnexpectedToken(),e}scanComments(){let e;this.trackComment&&(e=[]);let t=this.index===0;for(;!this.eof();){let i=this.source.charCodeAt(this.index);if(R.isWhiteSpace(i))++this.index;else if(R.isLineTerminator(i))++this.index,i===13&&this.source.charCodeAt(this.index)===10&&++this.index,++this.lineNumber,this.lineStart=this.index,t=!0;else if(i===47)if(i=this.source.charCodeAt(this.index+1),i===47){this.index+=2;const n=this.skipSingleLineComment(2);this.trackComment&&(e=e.concat(n)),t=!0}else if(i===42){this.index+=2;const n=this.skipMultiLineComment();this.trackComment&&(e=e.concat(n))}else break;else if(t&&i===45)if(this.source.charCodeAt(this.index+1)===45&&this.source.charCodeAt(this.index+2)===62){this.index+=3;const n=this.skipSingleLineComment(3);this.trackComment&&(e=e.concat(n))}else break;else if(i===60&&!this.isModule)if(this.source.slice(this.index+1,this.index+4)==="!--"){this.index+=4;const n=this.skipSingleLineComment(4);this.trackComment&&(e=e.concat(n))}else break;else break}return e}isFutureReservedWord(e){switch(e){case"enum":case"export":case"import":case"super":return!0;default:return!1}}isStrictModeReservedWord(e){switch(e){case"implements":case"interface":case"package":case"private":case"protected":case"public":case"static":case"yield":case"let":return!0;default:return!1}}isRestrictedWord(e){return e==="eval"||e==="arguments"}isKeyword(e){switch(e.length){case 2:return e==="if"||e==="in"||e==="do";case 3:return e==="var"||e==="for"||e==="new"||e==="try"||e==="let";case 4:return e==="this"||e==="else"||e==="case"||e==="void"||e==="with"||e==="enum";case 5:return e==="while"||e==="break"||e==="catch"||e==="throw"||e==="const"||e==="yield"||e==="class"||e==="super";case 6:return e==="return"||e==="typeof"||e==="delete"||e==="switch"||e==="export"||e==="import";case 7:return e==="default"||e==="finally"||e==="extends";case 8:return e==="function"||e==="continue"||e==="debugger";case 10:return e==="instanceof";default:return!1}}codePointAt(e){let t=this.source.charCodeAt(e);if(t>=55296&&t<=56319){const i=this.source.charCodeAt(e+1);i>=56320&&i<=57343&&(t=(t-55296)*1024+i-56320+65536)}return t}scanHexEscape(e){const t=e==="u"?4:2;let i=0;for(let n=0;n<t;++n)if(!this.eof()&&R.isHexDigit(this.source.charCodeAt(this.index)))i=i*16+Vt(this.source[this.index++]);else return null;return String.fromCharCode(i)}tryToScanUnicodeCodePointEscape(){let e=this.source[this.index],t=0;if(e==="}")return null;for(;!this.eof()&&(e=this.source[this.index++],!!R.isHexDigit(e.charCodeAt(0)));)t=t*16+Vt(e);return t>1114111||e!=="}"?null:R.fromCodePoint(t)}scanUnicodeCodePointEscape(){const e=this.tryToScanUnicodeCodePointEscape();return e===null?this.throwUnexpectedToken():e}getIdentifier(){const e=this.index++;for(;!this.eof();){const t=this.source.charCodeAt(this.index);if(t===92)return this.index=e,this.getComplexIdentifier();if(t>=55296&&t<57343)return this.index=e,this.getComplexIdentifier();if(R.isIdentifierPart(t))++this.index;else break}return this.source.slice(e,this.index)}getComplexIdentifier(){let e=this.codePointAt(this.index),t=R.fromCodePoint(e);this.index+=t.length;let i;for(e===92&&(this.source.charCodeAt(this.index)!==117&&this.throwUnexpectedToken(),++this.index,this.source[this.index]==="{"?(++this.index,i=this.scanUnicodeCodePointEscape()):(i=this.scanHexEscape("u"),(i===null||i==="\\"||!R.isIdentifierStart(i.charCodeAt(0)))&&this.throwUnexpectedToken()),t=i);!this.eof()&&(e=this.codePointAt(this.index),!!R.isIdentifierPart(e));)i=R.fromCodePoint(e),t+=i,this.index+=i.length,e===92&&(t=t.substr(0,t.length-1),this.source.charCodeAt(this.index)!==117&&this.throwUnexpectedToken(),++this.index,this.source[this.index]==="{"?(++this.index,i=this.scanUnicodeCodePointEscape()):(i=this.scanHexEscape("u"),(i===null||i==="\\"||!R.isIdentifierPart(i.charCodeAt(0)))&&this.throwUnexpectedToken()),t+=i);return t}octalToDecimal(e){let t=e!=="0",i=pt(e);return!this.eof()&&R.isOctalDigit(this.source.charCodeAt(this.index))&&(t=!0,i=i*8+pt(this.source[this.index++]),"0123".indexOf(e)>=0&&!this.eof()&&R.isOctalDigit(this.source.charCodeAt(this.index))&&(i=i*8+pt(this.source[this.index++]))),{code:i,octal:t}}scanIdentifier(){let e;const t=this.index,i=this.source.charCodeAt(t)===92,n=i?this.getComplexIdentifier():this.getIdentifier();if(n.length===1?e=3:this.isKeyword(n)?e=4:n==="null"?e=5:n==="true"||n==="false"?e=1:e=3,e!==3&&t+n.length!==this.index){const r=this.index;this.index=t,this.tolerateUnexpectedToken(k.InvalidEscapedReservedWord),this.index=r}return{type:e,value:n,lineNumber:this.lineNumber,lineStart:this.lineStart,start:t,end:this.index,escaped:i}}scanPunctuator(){const e=this.index;let t=this.source[this.index];switch(t){case"(":case"{":t==="{"&&this.curlyStack.push("{"),++this.index;break;case".":++this.index,this.source[this.index]==="."&&this.source[this.index+1]==="."&&(this.index+=2,t="...");break;case"}":++this.index,this.curlyStack.pop();break;case"?":++this.index,this.source[this.index]==="?"&&(++this.index,this.source[this.index]==="="?(++this.index,t="??="):t="??"),this.source[this.index]==="."&&!/^\d$/.test(this.source[this.index+1])&&(++this.index,t="?.");break;case"#":case")":case";":case",":case"[":case"]":case":":case"~":case"@":++this.index;break;default:t=this.source.substr(this.index,4),t===">>>="?this.index+=4:(t=t.substr(0,3),t==="==="||t==="!=="||t===">>>"||t==="<<="||t===">>="||t==="**="||t==="&&="||t==="||="?this.index+=3:(t=t.substr(0,2),t==="&&"||t==="||"||t==="=="||t==="!="||t==="+="||t==="-="||t==="*="||t==="/="||t==="++"||t==="--"||t==="<<"||t===">>"||t==="&="||t==="|="||t==="^="||t==="%="||t==="<="||t===">="||t==="=>"||t==="**"?this.index+=2:(t=this.source[this.index],"<>=!+-*%&|^/".indexOf(t)>=0&&++this.index)))}return this.index===e&&this.throwUnexpectedToken(),{type:7,value:t,lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index}}scanHexLiteral(e){let t=this.scanLiteralPart(R.isHexDigitChar);return t.length===0&&this.throwUnexpectedToken(),this.source[this.index]==="n"?(this.index++,{type:6,value:BigInt("0x"+t),lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index}):(R.isIdentifierStart(this.source.charCodeAt(this.index))&&this.throwUnexpectedToken(),{type:6,value:parseInt("0x"+t,16),lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index})}scanBinaryLiteral(e){let t,i=this.scanLiteralPart(n=>n==="0"||n==="1");return i.length===0&&this.throwUnexpectedToken(),this.source[this.index]==="n"?(this.index++,{type:6,value:BigInt("0b"+i),lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index}):(this.eof()||(t=this.source.charCodeAt(this.index),(R.isIdentifierStart(t)||R.isDecimalDigit(t))&&this.throwUnexpectedToken()),{type:6,value:parseInt(i,2),lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index})}scanOctalLiteral(e,t){let i="",n=!1;return R.isOctalDigit(e.charCodeAt(0))?(n=!0,i="0"+this.source[this.index++]):++this.index,i+=this.scanLiteralPart(R.isOctalDigitChar),!n&&i.length===0&&this.throwUnexpectedToken(),this.source[this.index]==="n"?(this.index++,{type:6,value:BigInt("0o"+i),lineNumber:this.lineNumber,lineStart:this.lineStart,start:t,end:this.index}):((R.isIdentifierStart(this.source.charCodeAt(this.index))||R.isDecimalDigit(this.source.charCodeAt(this.index)))&&this.throwUnexpectedToken(),{type:6,value:parseInt(i,8),octal:n,lineNumber:this.lineNumber,lineStart:this.lineStart,start:t,end:this.index})}isImplicitOctalLiteral(){for(let e=this.index+1;e<this.length;++e){const t=this.source[e];if(t==="8"||t==="9"||t==="n")return!1;if(!R.isOctalDigit(t.charCodeAt(0)))return!0}return!0}scanLiteralPart(e){let t="";for(this.source[this.index]==="_"&&this.throwUnexpectedToken(k.NumericSeperatorNotAllowedHere);this.source[this.index]&&(e(this.source[this.index])||this.source[this.index]==="_");)this.source[this.index]!=="_"&&(t+=this.source[this.index]),this.index++,this.source[this.index-1]==="_"&&this.source[this.index]==="_"&&this.throwUnexpectedToken(k.NumericSeperatorOneUnderscore);return this.source[this.index-1]==="_"&&this.throwUnexpectedToken(k.NumericSeperatorNotAllowedHere),t}scanNumericLiteral(){const e=this.index;let t=this.source[e];ge(R.isDecimalDigit(t.charCodeAt(0))||t===".","Numeric literal must start with a decimal digit or a decimal point");let i="";if(t!=="."){if(i=this.source[this.index++],t=this.source[this.index],i==="0"){if(t==="x"||t==="X")return++this.index,this.scanHexLiteral(e);if(t==="b"||t==="B")return++this.index,this.scanBinaryLiteral(e);if(t==="o"||t==="O")return this.scanOctalLiteral(t,e);if(t&&R.isOctalDigit(t.charCodeAt(0))&&this.isImplicitOctalLiteral())return this.scanOctalLiteral(t,e)}this.index--,i=this.scanLiteralPart(R.isDecimalDigitChar),t=this.source[this.index]}if(t==="."&&(i+=this.source[this.index++],i+=this.scanLiteralPart(R.isDecimalDigitChar),t=this.source[this.index]),t==="e"||t==="E")i+=this.source[this.index++],t=this.source[this.index],(t==="+"||t==="-")&&(i+=this.source[this.index++]),R.isDecimalDigit(this.source.charCodeAt(this.index))?i+=this.scanLiteralPart(R.isDecimalDigitChar):this.throwUnexpectedToken();else if(t==="n")return i.length>1&&i[0]==="0"&&this.throwUnexpectedToken(),this.index++,{type:6,value:BigInt(i),lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index};return R.isIdentifierStart(this.source.charCodeAt(this.index))&&this.throwUnexpectedToken(),{type:6,value:parseFloat(i),lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index}}scanStringLiteral(){const e=this.index;let t=this.source[e];ge(t==="'"||t==='"',"String literal must starts with a quote"),++this.index;let i=!1,n="";for(;!this.eof();){let r=this.source[this.index++];if(r===t){t="";break}else if(r==="\\")if(r=this.source[this.index++],!r||!R.isLineTerminator(r.charCodeAt(0)))switch(r){case"u":if(this.source[this.index]==="{")++this.index,n+=this.scanUnicodeCodePointEscape();else{const c=this.scanHexEscape(r);c===null&&this.throwUnexpectedToken(),n+=c}break;case"x":const o=this.scanHexEscape(r);o===null&&this.throwUnexpectedToken(k.InvalidHexEscapeSequence),n+=o;break;case"n":n+=`
2
- `;break;case"r":n+="\r";break;case"t":n+=" ";break;case"b":n+="\b";break;case"f":n+="\f";break;case"v":n+="\v";break;case"8":case"9":n+=r,this.tolerateUnexpectedToken();break;default:if(r&&R.isOctalDigit(r.charCodeAt(0))){const c=this.octalToDecimal(r);i=c.octal||i,n+=String.fromCharCode(c.code)}else n+=r;break}else++this.lineNumber,r==="\r"&&this.source[this.index]===`
3
- `&&++this.index,this.lineStart=this.index;else{if(R.isLineTerminator(r.charCodeAt(0)))break;n+=r}}return t!==""&&(this.index=e,this.throwUnexpectedToken()),{type:8,value:n,octal:i,lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index}}scanTemplate(){let e="",t=!1;const i=this.index,n=this.source[i]==="`";let r=!1,o=null,c=2;for(++this.index;!this.eof();){let h=this.source[this.index++];if(h==="`"){c=1,r=!0,t=!0;break}else if(h==="$"){if(this.source[this.index]==="{"){this.curlyStack.push("${"),++this.index,t=!0;break}e+=h}else{if(o!==null)continue;if(h==="\\")if(h=this.source[this.index++],R.isLineTerminator(h.charCodeAt(0)))++this.lineNumber,h==="\r"&&this.source[this.index]===`
4
- `&&++this.index,this.lineStart=this.index;else switch(h){case"n":e+=`
5
- `;break;case"r":e+="\r";break;case"t":e+=" ";break;case"u":if(this.source[this.index]==="{"){++this.index;const C=this.tryToScanUnicodeCodePointEscape();C===null?o="u":e+=C}else{const C=this.scanHexEscape(h);C===null?o="u":e+=C}break;case"x":const E=this.scanHexEscape(h);E===null?o="x":e+=E;break;case"b":e+="\b";break;case"f":e+="\f";break;case"v":e+="\v";break;default:h==="0"?R.isDecimalDigit(this.source.charCodeAt(this.index))?o="0":e+="\0":R.isDecimalDigitChar(h)?o=h:e+=h;break}else R.isLineTerminator(h.charCodeAt(0))?(++this.lineNumber,h==="\r"&&this.source[this.index]===`
6
- `&&++this.index,this.lineStart=this.index,e+=`
7
- `):e+=h}}return t||this.throwUnexpectedToken(),n||this.curlyStack.pop(),{type:10,value:this.source.slice(i+1,this.index-c),cooked:o===null?e:null,head:n,tail:r,notEscapeSequenceHead:o,lineNumber:this.lineNumber,lineStart:this.lineStart,start:i,end:this.index}}testRegExp(e,t){let n=e;t.indexOf("u")>=0&&(n=n.replace(/\\u\{([0-9a-fA-F]+)\}|\\u([a-fA-F0-9]{4})/g,(r,o,c)=>{const h=parseInt(o||c,16);return h>1114111&&this.throwUnexpectedToken(k.InvalidRegExp),h<=65535?String.fromCharCode(h):"￿"}).replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"￿"));try{RegExp(n)}catch{this.throwUnexpectedToken(k.InvalidRegExp)}try{return new RegExp(e,t)}catch{return null}}scanRegExpBody(){let e=this.source[this.index];ge(e==="/","Regular expression literal must start with a slash");let t=this.source[this.index++],i=!1,n=!1;for(;!this.eof();)if(e=this.source[this.index++],t+=e,e==="\\")e=this.source[this.index++],R.isLineTerminator(e.charCodeAt(0))&&this.throwUnexpectedToken(k.UnterminatedRegExp),t+=e;else if(R.isLineTerminator(e.charCodeAt(0)))this.throwUnexpectedToken(k.UnterminatedRegExp);else if(i)e==="]"&&(i=!1);else if(e==="/"){n=!0;break}else e==="["&&(i=!0);return n||this.throwUnexpectedToken(k.UnterminatedRegExp),t.substr(1,t.length-2)}scanRegExpFlags(){let e="",t="";for(;!this.eof();){let i=this.source[this.index];if(!R.isIdentifierPart(i.charCodeAt(0)))break;if(++this.index,i==="\\"&&!this.eof())if(i=this.source[this.index],i==="u"){++this.index;let n=this.index;const r=this.scanHexEscape("u");if(r!==null)for(t+=r,e+="\\u";n<this.index;++n)e+=this.source[n];else this.index=n,t+="u",e+="\\u";this.tolerateUnexpectedToken()}else e+="\\",this.tolerateUnexpectedToken();else t+=i,e+=i}return t}scanRegExp(){const e=this.index,t=this.scanRegExpBody(),i=this.scanRegExpFlags(),n=this.testRegExp(t,i);return{type:9,value:"",pattern:t,flags:i,regex:n,lineNumber:this.lineNumber,lineStart:this.lineStart,start:e,end:this.index}}lex(){if(this.eof())return{type:2,value:"",lineNumber:this.lineNumber,lineStart:this.lineStart,start:this.index,end:this.index};const e=this.source.charCodeAt(this.index);return R.isIdentifierStart(e)?this.scanIdentifier():e===40||e===41||e===59?this.scanPunctuator():e===39||e===34?this.scanStringLiteral():e===46?R.isDecimalDigit(this.source.charCodeAt(this.index+1))?this.scanNumericLiteral():this.scanPunctuator():R.isDecimalDigit(e)?this.scanNumericLiteral():e===96||e===125&&this.curlyStack[this.curlyStack.length-1]==="${"?this.scanTemplate():e>=55296&&e<57343&&R.isIdentifierStart(this.codePointAt(this.index))?this.scanIdentifier():this.scanPunctuator()}}const ue={};ue[1]="Boolean";ue[2]="<end>";ue[3]="Identifier";ue[4]="Keyword";ue[5]="Null";ue[6]="Numeric";ue[7]="Punctuator";ue[8]="String";ue[9]="RegularExpression";ue[10]="Template";const xe="ArrowParameterPlaceHolder";class oi{constructor(e,t={},i){this.config={range:typeof t.range=="boolean"&&t.range,loc:typeof t.loc=="boolean"&&t.loc,source:null,tokens:typeof t.tokens=="boolean"&&t.tokens,comment:typeof t.comment=="boolean"&&t.comment,tolerant:typeof t.tolerant=="boolean"&&t.tolerant},this.config.loc&&t.source&&t.source!==null&&(this.config.source=String(t.source)),this.delegate=i,this.errorHandler=new Mr,this.errorHandler.tolerant=this.config.tolerant==!0,this.scanner=new Or(e,this.errorHandler),this.scanner.trackComment=this.config.comment==!0,this.operatorPrecedence={")":0,";":0,",":0,"=":0,"]":0,"??":5,"||":6,"&&":7,"|":8,"^":9,"&":10,"==":11,"!=":11,"===":11,"!==":11,"<":12,">":12,"<=":12,">=":12,"<<":13,">>":13,">>>":13,"+":14,"-":14,"*":15,"/":15,"%":15},this.lookahead={type:2,value:"",lineNumber:this.scanner.lineNumber,lineStart:0,start:0,end:0},this.hasLineTerminator=!1,this.context={isModule:!1,isAsync:!1,allowIn:!0,allowStrictDirective:!0,allowSuper:!1,allowYield:!0,firstCoverInitializedNameError:null,isAssignmentTarget:!1,isBindingElement:!1,inConstructor:!1,inFunctionBody:!1,inIteration:!1,inSwitch:!1,inClassConstructor:!1,labelSet:{},strict:!1,decorators:null},this.tokens=[],this.startMarker={index:0,line:this.scanner.lineNumber,column:0},this.lastMarker={index:0,line:this.scanner.lineNumber,column:0},this.nextToken(),this.lastMarker={index:this.scanner.index,line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}}throwError(e,...t){const i=t.slice(),n=e.replace(/%(\d)/g,(h,E)=>(ge(E<i.length,"Message reference must be in range"),i[E])),r=this.lastMarker.index,o=this.lastMarker.line,c=this.lastMarker.column+1;throw this.errorHandler.createError(r,o,c,n)}tolerateError(e,...t){const i=t.slice(),n=e.replace(/%(\d)/g,(h,E)=>(ge(E<i.length,"Message reference must be in range"),i[E])),r=this.lastMarker.index,o=this.scanner.lineNumber,c=this.lastMarker.column+1;this.errorHandler.tolerateError(r,o,c,n)}unexpectedTokenError(e,t){let i=t||k.UnexpectedToken,n;if(e?(t||(i=e.type===2?k.UnexpectedEOS:e.type===3?k.UnexpectedIdentifier:e.type===6?k.UnexpectedNumber:e.type===8?k.UnexpectedString:e.type===10?k.UnexpectedTemplate:k.UnexpectedToken,e.type===4&&(this.scanner.isFutureReservedWord(e.value)?i=k.UnexpectedReserved:this.context.strict&&this.scanner.isStrictModeReservedWord(e.value)&&(i=k.StrictReservedWord))),n=e.value):n="ILLEGAL",i=i.replace("%0",n),e&&typeof e.lineNumber=="number"){const r=e.start,o=e.lineNumber,c=this.lastMarker.index-this.lastMarker.column,h=e.start-c+1;return this.errorHandler.createError(r,o,h,i)}else{const r=this.lastMarker.index,o=this.lastMarker.line,c=this.lastMarker.column+1;return this.errorHandler.createError(r,o,c,i)}}throwUnexpectedToken(e,t){throw this.unexpectedTokenError(e,t)}tolerateUnexpectedToken(e,t){this.errorHandler.tolerate(this.unexpectedTokenError(e,t))}tolerateInvalidLoopStatement(){(this.matchKeyword("class")||this.matchKeyword("function"))&&this.tolerateError(k.UnexpectedToken,this.lookahead)}collectComments(){if(!this.config.comment)this.scanner.scanComments();else{const e=this.scanner.scanComments();if(e.length>0&&this.delegate)for(let t=0;t<e.length;++t){const i=e[t],n={type:i.multiLine?"BlockComment":"LineComment",value:this.scanner.source.slice(i.slice[0],i.slice[1])};this.config.range&&(n.range=i.range),this.config.loc&&(n.loc=i.loc);const r={start:{line:i.loc.start.line,column:i.loc.start.column,offset:i.range[0]},end:{line:i.loc.end.line,column:i.loc.end.column,offset:i.range[1]}};this.delegate(n,r)}}}getTokenRaw(e){return this.scanner.source.slice(e.start,e.end)}convertToken(e){const t={type:ue[e.type],value:this.getTokenRaw(e)};if(this.config.range&&(t.range=[e.start,e.end]),this.config.loc&&(t.loc={start:{line:this.startMarker.line,column:this.startMarker.column},end:{line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}}),e.type===9){const i=e.pattern,n=e.flags;t.regex={pattern:i,flags:n}}return t}nextToken(){const e=this.lookahead;this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart,this.collectComments(),this.scanner.index!==this.startMarker.index&&(this.startMarker.index=this.scanner.index,this.startMarker.line=this.scanner.lineNumber,this.startMarker.column=this.scanner.index-this.scanner.lineStart);const t=this.scanner.lex();return this.hasLineTerminator=e.lineNumber!==t.lineNumber,t&&this.context.strict&&t.type===3&&this.scanner.isStrictModeReservedWord(t.value)&&(t.type=4),this.lookahead=t,this.config.tokens&&t.type!==2&&this.tokens.push(this.convertToken(t)),e}nextRegexToken(){this.collectComments();const e=this.scanner.scanRegExp();return this.config.tokens&&(this.tokens.pop(),this.tokens.push(this.convertToken(e))),this.lookahead=e,this.nextToken(),e}createNode(){return{index:this.startMarker.index,line:this.startMarker.line,column:this.startMarker.column}}startNode(e,t=0){let i=e.start-e.lineStart,n=e.lineNumber;return i<0&&(i+=t,n--),{index:e.start,line:n,column:i}}finalize(e,t){if(this.config.range&&(t.range=[e.index,this.lastMarker.index]),this.config.loc&&(t.loc={start:{line:e.line,column:e.column},end:{line:this.lastMarker.line,column:this.lastMarker.column}},this.config.source&&(t.loc.source=this.config.source)),this.delegate){const i={start:{line:e.line,column:e.column,offset:e.index},end:{line:this.lastMarker.line,column:this.lastMarker.column,offset:this.lastMarker.index}};this.delegate(t,i)}return t}expect(e){const t=this.nextToken();(t.type!==7||t.value!==e)&&this.throwUnexpectedToken(t)}expectCommaSeparator(){if(this.config.tolerant){const e=this.lookahead;e.type===7&&e.value===","?this.nextToken():e.type===7&&e.value===";"?(this.nextToken(),this.tolerateUnexpectedToken(e)):this.tolerateUnexpectedToken(e,k.UnexpectedToken)}else this.expect(",")}expectKeyword(e){const t=this.nextToken();(t.type!==4||t.value!==e)&&this.throwUnexpectedToken(t)}match(e){return this.lookahead.type===7&&this.lookahead.value===e}matchKeyword(e){return this.lookahead.type===4&&this.lookahead.value===e}matchContextualKeyword(e){return this.lookahead.type===3&&this.lookahead.value===e}matchAssign(){if(this.lookahead.type!==7)return!1;const e=this.lookahead.value;return e==="="||e==="*="||e==="**="||e==="/="||e==="%="||e==="+="||e==="-="||e==="<<="||e===">>="||e===">>>="||e==="&="||e==="^="||e==="|="||e==="&&="||e==="||="||e==="??="}isolateCoverGrammar(e){const t=this.context.isBindingElement,i=this.context.isAssignmentTarget,n=this.context.firstCoverInitializedNameError;this.context.isBindingElement=!0,this.context.isAssignmentTarget=!0,this.context.firstCoverInitializedNameError=null;const r=e.call(this);return this.context.firstCoverInitializedNameError!==null&&this.throwUnexpectedToken(this.context.firstCoverInitializedNameError),this.context.isBindingElement=t,this.context.isAssignmentTarget=i,this.context.firstCoverInitializedNameError=n,r}inheritCoverGrammar(e){const t=this.context.isBindingElement,i=this.context.isAssignmentTarget,n=this.context.firstCoverInitializedNameError;this.context.isBindingElement=!0,this.context.isAssignmentTarget=!0,this.context.firstCoverInitializedNameError=null;const r=e.call(this);return this.context.isBindingElement=this.context.isBindingElement&&t,this.context.isAssignmentTarget=this.context.isAssignmentTarget&&i,this.context.firstCoverInitializedNameError=n||this.context.firstCoverInitializedNameError,r}consumeSemicolon(){this.match(";")?this.nextToken():this.hasLineTerminator||(this.lookahead.type!==2&&!this.match("}")&&this.throwUnexpectedToken(this.lookahead),this.lastMarker.index=this.startMarker.index,this.lastMarker.line=this.startMarker.line,this.lastMarker.column=this.startMarker.column)}parsePrimaryExpression(){const e=this.createNode();let t,i,n;switch(this.lookahead.type){case 3:(this.context.isModule||this.context.isAsync)&&this.lookahead.value==="await"&&this.tolerateUnexpectedToken(this.lookahead),t=this.matchAsyncFunction()?this.parseFunctionExpression():this.finalize(e,new de(this.nextToken().value));break;case 6:case 8:this.context.strict&&this.lookahead.octal&&this.tolerateUnexpectedToken(this.lookahead,k.StrictOctalLiteral),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,i=this.nextToken(),n=this.getTokenRaw(i),typeof i.value=="bigint"?t=this.finalize(e,new Ot(i.value,n,i.value.toString())):t=this.finalize(e,new we(i.value,n));break;case 1:this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,i=this.nextToken(),n=this.getTokenRaw(i),t=this.finalize(e,new we(i.value==="true",n));break;case 5:this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,i=this.nextToken(),n=this.getTokenRaw(i),t=this.finalize(e,new we(null,n));break;case 10:t=this.parseTemplateLiteral({isTagged:!1});break;case 7:switch(this.lookahead.value){case"(":this.context.isBindingElement=!1,t=this.inheritCoverGrammar(this.parseGroupExpression);break;case"[":t=this.inheritCoverGrammar(this.parseArrayInitializer);break;case"{":t=this.inheritCoverGrammar(this.parseObjectInitializer);break;case"/":case"/=":this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,this.scanner.index=this.startMarker.index,i=this.nextRegexToken(),n=this.getTokenRaw(i),t=this.finalize(e,new gr(i.regex,n,i.pattern,i.flags));break;case"#":this.nextToken(),t=this.finalize(e,new $e(this.nextToken().value));break;case"@":let r=this.parseDecorators();this.context.decorators=r,this.parsePrimaryExpression(),this.context.decorators=null,t=this.finalize(e,new $e(this.nextToken().value));break;default:t=this.throwUnexpectedToken(this.nextToken())}break;case 4:!this.context.strict&&this.context.allowYield&&this.matchKeyword("yield")?t=this.parseIdentifierName():!this.context.strict&&this.matchKeyword("let")?t=this.finalize(e,new de(this.nextToken().value)):(this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,this.matchKeyword("function")?t=this.parseFunctionExpression():this.matchKeyword("this")?(this.nextToken(),t=this.finalize(e,new kr)):this.matchKeyword("class")?t=this.parseClassExpression():this.matchKeyword("new")?t=this.parseNewExpression():this.matchImportCall()?t=this.parseImportCall():this.matchImportMeta()?(this.context.isModule||this.tolerateUnexpectedToken(this.lookahead,k.CannotUseImportMetaOutsideAModule),t=this.parseImportMeta()):t=this.throwUnexpectedToken(this.nextToken()));break;default:t=this.throwUnexpectedToken(this.nextToken())}return t}parseSpreadElement(){const e=this.createNode();this.expect("...");const t=this.inheritCoverGrammar(this.parseAssignmentExpression);return this.finalize(e,new Ar(t))}parseArrayInitializer(){const e=this.createNode(),t=[];for(this.expect("[");!this.match("]");)if(this.match(","))this.nextToken(),t.push(null);else if(this.match("...")){const i=this.parseSpreadElement();this.match("]")||(this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1,this.expect(",")),t.push(i)}else t.push(this.inheritCoverGrammar(this.parseAssignmentExpression)),this.match("]")||this.expect(",");return this.expect("]"),this.finalize(e,new On(t))}parsePropertyMethod(e){this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;const t=this.context.strict,i=this.context.allowStrictDirective;this.context.allowStrictDirective=e.simple;const n=this.isolateCoverGrammar(this.parseFunctionSourceElements);return this.context.strict&&e.firstRestricted&&this.tolerateUnexpectedToken(e.firstRestricted,e.message),this.context.strict&&e.stricted&&this.tolerateUnexpectedToken(e.stricted,e.message),this.context.strict=t,this.context.allowStrictDirective=i,n}parsePropertyMethodFunction(e){const t=this.createNode(),i=this.context.allowYield;this.context.allowYield=!0;const n=this.parseFormalParameters(),r=this.parsePropertyMethod(n);return this.context.allowYield=i,this.finalize(t,new be(null,n.params,r,e,!1))}parsePropertyMethodAsyncFunction(e){const t=this.createNode(),i=this.context.allowYield,n=this.context.isAsync;this.context.allowYield=!1,this.context.isAsync=!0;const r=this.parseFormalParameters(),o=this.parsePropertyMethod(r);return this.context.allowYield=i,this.context.isAsync=n,this.finalize(t,new be(null,r.params,o,e,!0))}parseObjectPropertyKey(e=!1){const t=this.createNode(),i=this.nextToken();let n;switch(i.type){case 8:case 6:this.context.strict&&i.octal&&this.tolerateUnexpectedToken(i,k.StrictOctalLiteral);const r=this.getTokenRaw(i);typeof i.value=="bigint"?n=this.finalize(t,new Ot(i.value,r,i.value.toString())):n=this.finalize(t,new we(i.value,r));break;case 3:case 1:case 5:case 4:n=this.finalize(t,e?new $e(i.value):new de(i.value));break;case 7:i.value==="["?(n=this.isolateCoverGrammar(this.parseAssignmentExpression),this.expect("]")):n=this.throwUnexpectedToken(i);break;default:n=this.throwUnexpectedToken(i)}return n}isPropertyKey(e,t){return e.type===A.Identifier&&e.name===t||e.type===A.Literal&&e.value===t}parseObjectProperty(e){const t=this.createNode(),i=this.lookahead;let n,r=null,o=null,c=!1,h=!1,E=!1,C=!1,F=!1;if(i.type===3){const B=i.value;this.nextToken(),c=this.match("["),C=!this.hasLineTerminator&&B==="async"&&!this.match(":")&&!this.match("(")&&!this.match(","),F=this.match("*"),F&&this.nextToken(),r=C?this.parseObjectPropertyKey():this.finalize(t,new de(B))}else this.match("*")?this.nextToken():(c=this.match("["),r=this.parseObjectPropertyKey());const S=this.qualifiedPropertyName(this.lookahead);if(i.type===3&&!C&&i.value==="get"&&S)n="get",c=this.match("["),r=this.parseObjectPropertyKey(),this.context.allowYield=!1,o=this.parseGetterMethod();else if(i.type===3&&!C&&i.value==="set"&&S)n="set",c=this.match("["),r=this.parseObjectPropertyKey(),o=this.parseSetterMethod();else if(i.type===7&&i.value==="*"&&S)n="init",c=this.match("["),r=this.parseObjectPropertyKey(),o=this.parseGeneratorMethod(!1),h=!0;else if(r||this.throwUnexpectedToken(this.lookahead),n="init",this.match(":")&&!C)!c&&this.isPropertyKey(r,"__proto__")&&(e.value&&this.tolerateError(k.DuplicateProtoProperty),e.value=!0),this.nextToken(),o=this.inheritCoverGrammar(this.parseAssignmentExpression);else if(this.match("("))o=C?this.parsePropertyMethodAsyncFunction(F):this.parsePropertyMethodFunction(F),h=!0;else if(i.type===3){const B=this.finalize(t,new de(i.value));if(this.match("=")){this.context.firstCoverInitializedNameError=this.lookahead,this.nextToken(),E=!0;const M=this.isolateCoverGrammar(this.parseAssignmentExpression);o=this.finalize(t,new at(B,M))}else E=!0,o=B}else this.throwUnexpectedToken(this.nextToken());return this.finalize(t,new zt(n,r,c,o,h,E))}parseObjectInitializer(){const e=this.createNode();this.expect("{");const t=[],i={value:!1};for(;!this.match("}");){const n=this.match("...")?this.parseSpreadElement():this.parseObjectProperty(i);t.push(n),!this.match("}")&&(!n.method||this.match(","))&&this.expectCommaSeparator()}return this.expect("}"),this.finalize(e,new Dr(t))}throwTemplateLiteralEarlyErrors(e){switch(e.notEscapeSequenceHead){case"u":return this.throwUnexpectedToken(e,k.InvalidUnicodeEscapeSequence);case"x":return this.throwUnexpectedToken(e,k.InvalidHexEscapeSequence);case"8":case"9":return this.throwUnexpectedToken(e,k.TemplateEscape89);default:return this.throwUnexpectedToken(e,k.TemplateOctalLiteral)}}parseTemplateHead(e){ge(this.lookahead.head,"Template literal must start with a template head");const t=this.createNode(),i=this.nextToken();!e.isTagged&&i.notEscapeSequenceHead!==null&&this.throwTemplateLiteralEarlyErrors(i);const n=i.value,r=i.cooked;return this.finalize(t,new Gt({raw:n,cooked:r},i.tail))}parseTemplateElement(e){this.lookahead.type!==10&&this.throwUnexpectedToken();const t=this.createNode(),i=this.nextToken();!e.isTagged&&i.notEscapeSequenceHead!==null&&this.throwTemplateLiteralEarlyErrors(i);const n=i.value,r=i.cooked;return this.finalize(t,new Gt({raw:n,cooked:r},i.tail))}parseTemplateLiteral(e){const t=this.createNode(),i=[],n=[];let r=this.parseTemplateHead(e);for(n.push(r);!r.tail;)i.push(this.parseExpression()),r=this.parseTemplateElement(e),n.push(r);return this.finalize(t,new br(n,i))}reinterpretExpressionAsPattern(e){switch(e.type){case A.Identifier:case A.MemberExpression:case A.RestElement:case A.AssignmentPattern:break;case A.SpreadElement:e.type=A.RestElement,this.reinterpretExpressionAsPattern(e.argument);break;case A.ArrayExpression:e.type=A.ArrayPattern;for(let t=0;t<e.elements.length;t++)e.elements[t]!==null&&this.reinterpretExpressionAsPattern(e.elements[t]);break;case A.ObjectExpression:e.type=A.ObjectPattern;for(let t=0;t<e.properties.length;t++){const i=e.properties[t];this.reinterpretExpressionAsPattern(i.type===A.SpreadElement?i:i.value)}break;case A.AssignmentExpression:e.type=A.AssignmentPattern,delete e.operator,this.reinterpretExpressionAsPattern(e.left);break}}parseGroupExpression(){let e;if(this.expect("("),this.match(")"))this.nextToken(),this.match("=>")||this.expect("=>"),e={type:xe,params:[],async:!1};else{const t=this.lookahead,i=[];if(this.match("..."))e=this.parseRestElement(i),this.expect(")"),this.match("=>")||this.expect("=>"),e={type:xe,params:[e],async:!1};else{let n=!1;if(this.context.isBindingElement=!0,e=this.inheritCoverGrammar(this.parseAssignmentExpression),this.match(",")){const r=[];for(this.context.isAssignmentTarget=!1,r.push(e);this.lookahead.type!==2&&this.match(",");){if(this.nextToken(),this.match(")")){this.nextToken();for(let o=0;o<r.length;o++)this.reinterpretExpressionAsPattern(r[o]);n=!0,e={type:xe,params:r,async:!1}}else if(this.match("...")){this.context.isBindingElement||this.throwUnexpectedToken(this.lookahead),r.push(this.parseRestElement(i)),this.expect(")"),this.match("=>")||this.expect("=>"),this.context.isBindingElement=!1;for(let o=0;o<r.length;o++)this.reinterpretExpressionAsPattern(r[o]);n=!0,e={type:xe,params:r,async:!1}}else r.push(this.inheritCoverGrammar(this.parseAssignmentExpression));if(n)break}n||(e=this.finalize(this.startNode(t),new ht(r)))}if(!n){if(this.expect(")"),this.match("=>")&&(e.type===A.Identifier&&e.name==="yield"&&(n=!0,e={type:xe,params:[e],async:!1}),!n)){if(this.context.isBindingElement||this.throwUnexpectedToken(this.lookahead),e.type===A.SequenceExpression)for(let o=0;o<e.expressions.length;o++)this.reinterpretExpressionAsPattern(e.expressions[o]);else this.reinterpretExpressionAsPattern(e);const r=e.type===A.SequenceExpression?e.expressions:[e];e={type:xe,params:r,async:!1}}this.context.isBindingElement=!1}}}return e}parseArguments(){this.expect("(");const e=[];if(!this.match(")"))for(;;){const t=this.match("...")?this.parseSpreadElement():this.isolateCoverGrammar(this.parseAssignmentExpression);if(e.push(t),this.match(")")||(this.expectCommaSeparator(),this.match(")")))break}return this.expect(")"),e}isIdentifierName(e){return e.type===3||e.type===4||e.type===1||e.type===5}parseIdentifierName(e=!1){let t=!1,i=this.createNode(),n=this.nextToken();return n.value==="#"&&e&&(n=this.nextToken(),t=!0),this.isIdentifierName(n)||this.throwUnexpectedToken(n),this.finalize(i,t?new $e(n.value):new de(n.value))}parseNewExpression(){const e=this.createNode(),t=this.parseIdentifierName();ge(t.name==="new","New expression must start with `new`");let i;if(this.match("."))if(this.nextToken(),this.lookahead.type===3&&this.context.inFunctionBody&&this.lookahead.value==="target"){const n=this.parseIdentifierName();i=new Ut(t,n)}else this.throwUnexpectedToken(this.lookahead);else if(this.matchKeyword("import"))this.throwUnexpectedToken(this.lookahead);else{const n=this.isolateCoverGrammar(this.parseLeftHandSideExpression),r=this.match("(")?this.parseArguments():[];i=new mr(n,r),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}return this.finalize(e,i)}parseAsyncArgument(){const e=this.parseAssignmentExpression();return this.context.firstCoverInitializedNameError=null,e}parseAsyncArguments(){this.expect("(");const e=[];if(!this.match(")"))for(;;){const t=this.match("...")?this.parseSpreadElement():this.isolateCoverGrammar(this.parseAsyncArgument);if(e.push(t),this.match(")")||(this.expectCommaSeparator(),this.match(")")))break}return this.expect(")"),e}matchImportCall(){let e=this.matchKeyword("import");if(e){const t=this.scanner.saveState();this.scanner.scanComments();const i=this.scanner.lex();this.scanner.restoreState(t),e=i.type===7&&i.value==="("}return e}parseImportCall(){const e=this.createNode();this.expectKeyword("import"),this.expect("(");const t=this.parseAssignmentExpression();let i=null;return this.match(",")&&(this.nextToken(),i=this.parseObjectInitializer()),!this.match(")")&&this.config.tolerant?this.tolerateUnexpectedToken(this.nextToken()):(this.expect(")"),this.match(";")&&this.nextToken()),this.finalize(e,new ar(t,i))}matchImportMeta(){let e=this.matchKeyword("import");if(e){const t=this.scanner.saveState();this.scanner.scanComments();const i=this.scanner.lex();if(i.type===7&&i.value==="."){this.scanner.scanComments();const n=this.scanner.lex();e=n.type===3&&n.value==="meta",e&&n.end-n.start!==4&&this.tolerateUnexpectedToken(n,k.InvalidEscapedReservedWord)}else e=!1;this.scanner.restoreState(t)}return e}parseImportMeta(){const e=this.createNode(),t=this.parseIdentifierName();this.expect(".");const i=this.parseIdentifierName();return this.context.isAssignmentTarget=!1,this.finalize(e,new Ut(t,i))}parseLeftHandSideExpressionAllowCall(){const e=this.lookahead,t=this.matchContextualKeyword("async"),i=this.context.allowIn;this.context.allowIn=!0;let n;const r=this.matchKeyword("super");r&&this.context.inFunctionBody?(n=this.createNode(),this.nextToken(),n=this.finalize(n,new Yt),!this.match("(")&&!this.match(".")&&!this.match("[")&&this.throwUnexpectedToken(this.lookahead)):n=this.inheritCoverGrammar(this.matchKeyword("new")?this.parseNewExpression:this.parsePrimaryExpression),r&&this.match("(")&&(!this.context.inClassConstructor||!this.context.allowSuper)&&this.tolerateError(k.UnexpectedSuper);let o=!1;for(;;){let c=!1;if(this.match("?.")&&(c=!0,o=!0,this.expect("?.")),this.match("(")){const h=t&&e.lineNumber===this.lookahead.lineNumber;this.context.isBindingElement=!1,this.context.isAssignmentTarget=!1;const E=h?this.parseAsyncArguments():this.parseArguments();if(n.type===A.ImportExpression&&E.length!==1&&this.tolerateError(k.BadImportCallArity),n=this.finalize(this.startNode(e),new Xn(n,E,c)),h&&this.match("=>")){for(let C=0;C<E.length;++C)this.reinterpretExpressionAsPattern(E[C]);n={type:xe,params:E,async:!0}}}else if(this.match("[")){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!c,this.expect("[");const h=this.isolateCoverGrammar(this.parseExpression);this.expect("]"),n=this.finalize(this.startNode(e),new Je(!0,n,h,c))}else if(this.lookahead.type===10&&this.lookahead.head){c&&this.throwUnexpectedToken(this.lookahead),o&&this.throwError(k.InvalidTaggedTemplateOnOptionalChain);const h=this.parseTemplateLiteral({isTagged:!0});n=this.finalize(this.startNode(e),new Xt(n,h))}else if(this.match(".")||c){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!c,c||this.expect(".");const h=this.parseIdentifierName(!0);n=this.finalize(this.startNode(e),new Je(!1,n,h,c))}else break}return this.context.allowIn=i,o?new Rt(n):n}parseSuper(){const e=this.createNode();return this.expectKeyword("super"),!this.match("[")&&!this.match(".")&&this.throwUnexpectedToken(this.lookahead),this.finalize(e,new Yt)}parseLeftHandSideExpression(){ge(this.context.allowIn,"callee of new expression always allow in keyword.");const e=this.startNode(this.lookahead);let t=this.matchKeyword("super")&&this.context.inFunctionBody?this.parseSuper():this.inheritCoverGrammar(this.matchKeyword("new")?this.parseNewExpression:this.parsePrimaryExpression),i=!1;for(;;){let n=!1;if(this.match("?.")&&(n=!0,i=!0,this.expect("?.")),this.match("[")){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!n,this.expect("[");const r=this.isolateCoverGrammar(this.parseExpression);this.expect("]"),t=this.finalize(e,new Je(!0,t,r,n))}else if(this.lookahead.type===10&&this.lookahead.head){n&&this.throwUnexpectedToken(this.lookahead),i&&this.throwError(k.InvalidTaggedTemplateOnOptionalChain);const r=this.parseTemplateLiteral({isTagged:!0});t=this.finalize(e,new Xt(t,r))}else if(this.match(".")||n){this.context.isBindingElement=!1,this.context.isAssignmentTarget=!n,n||this.expect(".");const r=this.parseIdentifierName();t=this.finalize(e,new Je(!1,t,r,n))}else break}return i?new Rt(t):t}parseUpdateExpression(){let e;const t=this.lookahead;if(this.match("++")||this.match("--")){const i=this.startNode(t),n=this.nextToken();e=this.inheritCoverGrammar(this.parseUnaryExpression),this.context.strict&&e.type===A.Identifier&&this.scanner.isRestrictedWord(e.name)&&this.tolerateError(k.StrictLHSPrefix),this.context.isAssignmentTarget||this.tolerateError(k.InvalidLHSInAssignment);const r=!0;e=this.finalize(i,new Jt(n.value,e,r)),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}else if(e=this.inheritCoverGrammar(this.parseLeftHandSideExpressionAllowCall),!this.hasLineTerminator&&this.lookahead.type===7&&(this.match("++")||this.match("--"))){this.context.strict&&e.type===A.Identifier&&this.scanner.isRestrictedWord(e.name)&&this.tolerateError(k.StrictLHSPostfix),this.context.isAssignmentTarget||this.tolerateError(k.InvalidLHSInAssignment),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;const i=this.nextToken().value,n=!1;e=this.finalize(this.startNode(t),new Jt(i,e,n))}return e}parseAwaitExpression(){const e=this.createNode();this.nextToken();const t=this.parseUnaryExpression();return this.finalize(e,new zn(t))}parseUnaryExpression(){let e;if(this.match("+")||this.match("-")||this.match("~")||this.match("!")||this.matchKeyword("delete")||this.matchKeyword("void")||this.matchKeyword("typeof")){const t=this.startNode(this.lookahead),i=this.nextToken();e=this.inheritCoverGrammar(this.parseUnaryExpression),e=this.finalize(t,new Br(i.value,e)),this.context.strict&&e.operator==="delete"&&e.argument.type===A.Identifier&&this.tolerateError(k.StrictDelete),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}else(this.context.isModule&&!this.context.inFunctionBody||this.context.isAsync)&&this.matchContextualKeyword("await")?e=this.parseAwaitExpression():e=this.parseUpdateExpression();return e}parseExponentiationExpression(){const e=this.lookahead,t=this.match("(");let i=this.inheritCoverGrammar(this.parseUnaryExpression);if((i.type!==A.UnaryExpression||t)&&this.match("**")){this.nextToken(),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;const r=i,o=this.isolateCoverGrammar(this.parseExponentiationExpression);i=this.finalize(this.startNode(e),new ut("**",r,o))}return i}binaryPrecedence(e){const t=e.value;let i;return e.type===7?i=this.operatorPrecedence[t]||0:e.type===4?i=t==="instanceof"||this.context.allowIn&&t==="in"?12:0:i=0,i}parseBinaryExpression(){const e=this.lookahead;let t=this.inheritCoverGrammar(this.parseExponentiationExpression),i=!0,n=!0;const r=h=>{(h.value==="&&"||h.value==="||")&&(n=!1),h.value==="??"&&(i=!1)},o=this.lookahead;let c=this.binaryPrecedence(o);if(c>0){r(o),this.nextToken(),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;const h=[e,this.lookahead];let E=t,C=this.isolateCoverGrammar(this.parseExponentiationExpression);const F=[E,o.value,C],S=[c];for(;c=this.binaryPrecedence(this.lookahead),!(c<=0);){for((!i&&(this.lookahead.value==="&&"||this.lookahead.value==="||")||!n&&this.lookahead.value==="??")&&this.throwUnexpectedToken(this.lookahead),r(this.lookahead);F.length>2&&c<=S[S.length-1];){C=F.pop();const T=F.pop();S.pop(),E=F.pop(),h.pop();const O=h[h.length-1],b=this.startNode(O,O.lineStart),J=T==="||"||T==="&&"||T==="??";F.push(this.finalize(b,J?new _t(T,E,C):new ut(T,E,C)))}F.push(this.nextToken().value),S.push(c),h.push(this.lookahead),F.push(this.isolateCoverGrammar(this.parseExponentiationExpression))}let B=F.length-1;t=F[B];let M=h.pop();for(;B>1;){const T=h.pop(),O=M&&M.lineStart,b=this.startNode(T,O),J=F[B-1],$=J==="||"||J==="&&"||J==="??";t=this.finalize(b,$?new _t(J,F[B-2],t):new ut(J,F[B-2],t)),B-=2,M=T}}return t}parseConditionalExpression(){const e=this.lookahead;let t=this.inheritCoverGrammar(this.parseBinaryExpression);if(this.match("?")){this.nextToken();const i=this.context.allowIn;this.context.allowIn=!0;const n=this.isolateCoverGrammar(this.parseAssignmentExpression);this.context.allowIn=i,this.expect(":");const r=this.isolateCoverGrammar(this.parseAssignmentExpression);t=this.finalize(this.startNode(e),new Kn(t,n,r)),this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1}return t}checkPatternParam(e,t){switch(t.type){case A.Identifier:this.validateParam(e,t,t.name);break;case A.RestElement:this.checkPatternParam(e,t.argument);break;case A.AssignmentPattern:this.checkPatternParam(e,t.left);break;case A.ArrayPattern:for(let i=0;i<t.elements.length;i++)t.elements[i]!==null&&this.checkPatternParam(e,t.elements[i]);break;case A.ObjectPattern:for(let i=0;i<t.properties.length;i++){const n=t.properties[i];this.checkPatternParam(e,n.type===A.RestElement?n:n.value)}break}e.simple=e.simple&&t instanceof de}reinterpretAsCoverFormalsList(e){let t=[e];const i={simple:!0,paramSet:{}};let n=!1;switch(e.type){case A.Identifier:break;case xe:t=e.params,n=e.async;break;default:return null}for(let r=0;r<t.length;++r){const o=t[r];o.type===A.AssignmentPattern?o.right.type===A.YieldExpression&&(o.right.argument&&this.throwUnexpectedToken(this.lookahead),o.right.type=A.Identifier,o.right.name="yield",delete o.right.argument,delete o.right.delegate):n&&o.type===A.Identifier&&o.name==="await"&&this.throwUnexpectedToken(this.lookahead),this.checkPatternParam(i,o),t[r]=o}if(this.context.strict||!this.context.allowYield)for(let r=0;r<t.length;++r)t[r].type===A.YieldExpression&&this.throwUnexpectedToken(this.lookahead);if(i.hasDuplicateParameterNames){const r=this.context.strict?i.stricted:i.firstRestricted;this.throwUnexpectedToken(r,k.DuplicateParameter)}return{simple:i.simple,params:t,stricted:i.stricted,firstRestricted:i.firstRestricted,message:i.message}}parseAssignmentExpression(){let e;if(!this.context.allowYield&&this.matchKeyword("yield"))e=this.parseYieldExpression();else{const t=this.lookahead;let i=t;if(e=this.parseConditionalExpression(),i.type===3&&i.lineNumber===this.lookahead.lineNumber&&i.value==="async"&&(this.lookahead.type===3||this.matchKeyword("yield"))){const n=this.parsePrimaryExpression();this.reinterpretExpressionAsPattern(n),e={type:xe,params:[n],async:!0}}if(e.type===xe||this.match("=>")){this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1;const n=e.async,r=this.reinterpretAsCoverFormalsList(e);if(r){this.hasLineTerminator&&this.tolerateUnexpectedToken(this.lookahead),this.context.firstCoverInitializedNameError=null;const o=this.context.strict,c=this.context.allowStrictDirective;this.context.allowStrictDirective=r.simple;const h=this.context.allowYield,E=this.context.isAsync;this.context.allowYield=!0,this.context.isAsync=n;const C=this.startNode(t);this.expect("=>");let F;if(this.match("{")){const B=this.context.allowIn;this.context.allowIn=!0,F=this.parseFunctionSourceElements(),this.context.allowIn=B}else F=this.isolateCoverGrammar(this.parseAssignmentExpression);const S=F.type!==A.BlockStatement;this.context.strict&&r.firstRestricted&&this.throwUnexpectedToken(r.firstRestricted,r.message),this.context.strict&&r.stricted&&this.tolerateUnexpectedToken(r.stricted,r.message),e=this.finalize(C,new Rn(r.params,F,S,n)),this.context.strict=o,this.context.allowStrictDirective=c,this.context.allowYield=h,this.context.isAsync=E}}else if(this.matchAssign()){if(this.context.isAssignmentTarget||this.tolerateError(k.InvalidLHSInAssignment),this.context.strict&&e.type===A.Identifier){const o=e;this.scanner.isRestrictedWord(o.name)&&this.tolerateUnexpectedToken(i,k.StrictLHSAssignment),this.scanner.isStrictModeReservedWord(o.name)&&this.tolerateUnexpectedToken(i,k.StrictReservedWord)}this.match("=")?this.reinterpretExpressionAsPattern(e):(this.context.isAssignmentTarget=!1,this.context.isBindingElement=!1),i=this.nextToken();const n=i.value,r=this.isolateCoverGrammar(this.parseAssignmentExpression);e=this.finalize(this.startNode(t),new _n(n,e,r)),this.context.firstCoverInitializedNameError=null}}return e}parseExpression(){const e=this.lookahead;let t=this.isolateCoverGrammar(this.parseAssignmentExpression);if(this.match(",")){const i=[];for(i.push(t);this.lookahead.type!==2&&this.match(",");)this.nextToken(),i.push(this.isolateCoverGrammar(this.parseAssignmentExpression));t=this.finalize(this.startNode(e),new ht(i))}return t}parseStatementListItem(){let e;if(this.context.isAssignmentTarget=!0,this.context.isBindingElement=!0,this.lookahead.type===4)switch(this.lookahead.value){case"export":this.context.isModule||this.tolerateUnexpectedToken(this.lookahead,k.IllegalExportDeclaration),e=this.parseExportDeclaration();break;case"import":this.matchImportCall()?e=this.parseExpressionStatement():this.matchImportMeta()?e=this.parseStatement():(this.context.isModule||this.tolerateUnexpectedToken(this.lookahead,k.IllegalImportDeclaration),e=this.parseImportDeclaration());break;case"const":e=this.parseLexicalDeclaration({inFor:!1});break;case"function":e=this.parseFunctionDeclaration();break;case"class":e=this.parseClassDeclaration();break;case"let":e=this.isLexicalDeclaration()?this.parseLexicalDeclaration({inFor:!1}):this.parseStatement();break;default:e=this.parseStatement();break}else e=this.parseStatement();return e}parseBlock(){const e=this.createNode();this.expect("{");const t=[];for(;!this.match("}");)t.push(this.parseStatementListItem());return this.expect("}"),this.finalize(e,new Lt(t))}parseLexicalBinding(e,t){const i=this.createNode(),n=[],r=this.parsePattern(n,e);this.context.strict&&r.type===A.Identifier&&this.scanner.isRestrictedWord(r.name)&&this.tolerateError(k.StrictVarName);let o=null;return e==="const"?!this.matchKeyword("in")&&!this.matchContextualKeyword("of")&&(this.match("=")?(this.nextToken(),o=this.isolateCoverGrammar(this.parseAssignmentExpression)):this.throwError(k.DeclarationMissingInitializer,"const")):(!t.inFor&&r.type!==A.Identifier||this.match("="))&&(this.expect("="),o=this.isolateCoverGrammar(this.parseAssignmentExpression)),this.finalize(i,new $t(r,o))}parseBindingList(e,t){const i=[this.parseLexicalBinding(e,t)];for(;this.match(",");)this.nextToken(),i.push(this.parseLexicalBinding(e,t));return i}isLexicalDeclaration(){const e=this.scanner.saveState();this.scanner.scanComments();const t=this.scanner.lex();return this.scanner.restoreState(e),t.type===3||t.type===7&&t.value==="["||t.type===7&&t.value==="{"||t.type===4&&t.value==="let"||t.type===4&&t.value==="yield"}parseLexicalDeclaration(e){const t=this.createNode(),i=this.nextToken().value;ge(i==="let"||i==="const","Lexical declaration must be either let or const");const n=this.parseBindingList(i,e);return this.consumeSemicolon(),this.finalize(t,new Ae(n,i))}isInitializedProperty(){let e=this.scanner.saveState();this.scanner.scanComments();let t=this.scanner.lex();return this.scanner.restoreState(e),this.lookahead.type===3&&t.value==="="}isDeclaredProperty(){let e=this.scanner.saveState();this.scanner.scanComments();let t=this.scanner.lex();return this.scanner.restoreState(e),this.lookahead.type===3&&t.value===";"||this.lookahead.type===3&&t.lineNumber!==this.startMarker.line}parseBindingRestElement(e,t){const i=this.createNode();this.expect("...");const n=this.parsePattern(e,t);return this.finalize(i,new Ve(n))}parseArrayPattern(e,t){const i=this.createNode();this.expect("[");const n=[];for(;!this.match("]");)if(this.match(","))this.nextToken(),n.push(null);else{if(this.match("...")){n.push(this.parseBindingRestElement(e,t));break}else n.push(this.parsePatternWithDefault(e,t));this.match("]")||this.expect(",")}return this.expect("]"),this.finalize(i,new Ln(n))}parsePropertyPattern(e,t){const i=this.createNode();let n=!1,r=!1;const o=!1;let c,h;if(this.lookahead.type===3){const E=this.lookahead;c=this.parseVariableIdentifier();const C=this.finalize(i,new de(E.value));if(this.match("=")){e.push(E),r=!0,this.nextToken();const F=this.parseAssignmentExpression();h=this.finalize(this.startNode(E),new at(C,F))}else this.match(":")?(this.expect(":"),h=this.parsePatternWithDefault(e,t)):(e.push(E),r=!0,h=C)}else n=this.match("["),c=this.parseObjectPropertyKey(),this.expect(":"),h=this.parsePatternWithDefault(e,t);return this.finalize(i,new zt("init",c,n,h,o,r))}parseRestProperty(e){const t=this.createNode();this.expect("...");const i=this.parsePattern(e);return this.match("=")&&this.throwError(k.DefaultRestProperty),this.match("}")||this.throwError(k.PropertyAfterRestProperty),this.finalize(t,new Ve(i))}parseObjectPattern(e,t){const i=this.createNode(),n=[];for(this.expect("{");!this.match("}");)n.push(this.match("...")?this.parseRestProperty(e):this.parsePropertyPattern(e,t)),this.match("}")||this.expect(",");return this.expect("}"),this.finalize(i,new xr(n))}parsePattern(e,t){let i;return this.match("[")?i=this.parseArrayPattern(e,t):this.match("{")?i=this.parseObjectPattern(e,t):(this.matchKeyword("let")&&(t==="const"||t==="let")&&this.tolerateUnexpectedToken(this.lookahead,k.LetInLexicalBinding),e.push(this.lookahead),i=this.parseVariableIdentifier(t)),i}parsePatternWithDefault(e,t){const i=this.lookahead;let n=this.parsePattern(e,t);if(this.match("=")){this.nextToken();const r=this.context.allowYield;this.context.allowYield=!0;const o=this.isolateCoverGrammar(this.parseAssignmentExpression);this.context.allowYield=r,n=this.finalize(this.startNode(i),new at(n,o))}return n}parseVariableIdentifier(e){const t=this.createNode(),i=this.nextToken();return i.type===4&&i.value==="yield"?this.context.strict?this.tolerateUnexpectedToken(i,k.StrictReservedWord):this.context.allowYield||this.throwUnexpectedToken(i):i.type!==3?this.context.strict&&i.type===4&&this.scanner.isStrictModeReservedWord(i.value)?this.tolerateUnexpectedToken(i,k.StrictReservedWord):(this.context.strict||i.value!=="let"||e!=="var")&&this.throwUnexpectedToken(i):(this.context.isModule||this.context.isAsync)&&i.type===3&&i.value==="await"&&this.tolerateUnexpectedToken(i),this.finalize(t,new de(i.value))}parseVariableDeclaration(e){const t=this.createNode(),i=[],n=this.parsePattern(i,"var");this.context.strict&&n.type===A.Identifier&&this.scanner.isRestrictedWord(n.name)&&this.tolerateError(k.StrictVarName);let r=null;return this.match("=")?(this.nextToken(),r=this.isolateCoverGrammar(this.parseAssignmentExpression)):n.type!==A.Identifier&&!e.inFor&&this.expect("="),this.finalize(t,new $t(n,r))}parseVariableDeclarationList(e){const t={inFor:e.inFor},i=[];for(i.push(this.parseVariableDeclaration(t));this.match(",");)this.nextToken(),i.push(this.parseVariableDeclaration(t));return i}parseVariableStatement(){const e=this.createNode();this.expectKeyword("var");const t=this.parseVariableDeclarationList({inFor:!1});return this.consumeSemicolon(),this.finalize(e,new Ae(t,"var"))}parseEmptyStatement(){const e=this.createNode();return this.expect(";"),this.finalize(e,new Oe)}parseExpressionStatement(){const e=this.createNode(),t=this.parseExpression();return this.consumeSemicolon(),this.finalize(e,new lt(t))}parseIfClause(){return this.context.strict&&this.matchKeyword("function")&&this.tolerateError(k.StrictFunction),this.parseStatement()}parseIfStatement(){const e=this.createNode();let t,i=null;this.expectKeyword("if"),this.expect("(");const n=this.parseExpression();return!this.match(")")&&this.config.tolerant?(this.tolerateUnexpectedToken(this.nextToken()),t=this.finalize(this.createNode(),new Oe)):(this.expect(")"),t=this.parseIfClause(),this.matchKeyword("else")&&(this.nextToken(),i=this.parseIfClause())),this.finalize(e,new rr(n,t,i))}parseDoWhileStatement(){const e=this.createNode();this.expectKeyword("do"),this.tolerateInvalidLoopStatement();const t=this.context.inIteration;this.context.inIteration=!0;const i=this.parseStatement();this.context.inIteration=t,this.expectKeyword("while"),this.expect("(");const n=this.parseExpression();return!this.match(")")&&this.config.tolerant?this.tolerateUnexpectedToken(this.nextToken()):(this.expect(")"),this.match(";")&&this.nextToken()),this.finalize(e,new Qn(i,n))}parseWhileStatement(){const e=this.createNode();let t;this.expectKeyword("while"),this.expect("(");const i=this.parseExpression();if(!this.match(")")&&this.config.tolerant)this.tolerateUnexpectedToken(this.nextToken()),t=this.finalize(this.createNode(),new Oe);else{this.expect(")");const n=this.context.inIteration;this.context.inIteration=!0,t=this.parseStatement(),this.context.inIteration=n}return this.finalize(e,new Ir(i,t))}parseForStatement(){let e=null,t=null,i=null,n=!0,r,o,c=!1;const h=this.createNode();if(this.expectKeyword("for"),this.matchContextualKeyword("await")&&(this.context.isAsync||this.tolerateUnexpectedToken(this.lookahead),c=!0,this.nextToken()),this.expect("("),this.match(";"))this.nextToken();else if(this.matchKeyword("var")){e=this.createNode(),this.nextToken();const C=this.context.allowIn;this.context.allowIn=!1;const F=this.parseVariableDeclarationList({inFor:!0});if(this.context.allowIn=C,!c&&F.length===1&&this.matchKeyword("in")){const S=F[0];S.init&&(S.id.type===A.ArrayPattern||S.id.type===A.ObjectPattern||this.context.strict)&&this.tolerateError(k.ForInOfLoopInitializer,"for-in"),e=this.finalize(e,new Ae(F,"var")),this.nextToken(),r=e,o=this.parseExpression(),e=null}else F.length===1&&F[0].init===null&&this.matchContextualKeyword("of")?(e=this.finalize(e,new Ae(F,"var")),this.nextToken(),r=e,o=this.parseAssignmentExpression(),e=null,n=!1):(e=this.finalize(e,new Ae(F,"var")),this.expect(";"))}else if(this.matchKeyword("const")||this.matchKeyword("let")){e=this.createNode();const C=this.nextToken().value;if(!this.context.strict&&this.lookahead.value==="in")e=this.finalize(e,new de(C)),this.nextToken(),r=e,o=this.parseExpression(),e=null;else{const F=this.context.allowIn;this.context.allowIn=!1;const S=this.parseBindingList(C,{inFor:!0});this.context.allowIn=F,S.length===1&&S[0].init===null&&this.matchKeyword("in")?(e=this.finalize(e,new Ae(S,C)),this.nextToken(),r=e,o=this.parseExpression(),e=null):S.length===1&&S[0].init===null&&this.matchContextualKeyword("of")?(e=this.finalize(e,new Ae(S,C)),this.nextToken(),r=e,o=this.parseAssignmentExpression(),e=null,n=!1):(this.consumeSemicolon(),e=this.finalize(e,new Ae(S,C)))}}else{const C=this.lookahead,F=this.context.isBindingElement,S=this.context.isAssignmentTarget,B=this.context.firstCoverInitializedNameError,M=this.context.allowIn;if(this.context.allowIn=!1,e=this.inheritCoverGrammar(this.parseAssignmentExpression),this.context.allowIn=M,this.matchKeyword("in"))(!this.context.isAssignmentTarget||e.type===A.AssignmentExpression)&&this.tolerateError(k.InvalidLHSInForIn),this.nextToken(),this.reinterpretExpressionAsPattern(e),r=e,o=this.parseExpression(),e=null;else if(this.matchContextualKeyword("of"))(!this.context.isAssignmentTarget||e.type===A.AssignmentExpression)&&this.tolerateError(k.InvalidLHSInForLoop),this.nextToken(),this.reinterpretExpressionAsPattern(e),r=e,o=this.parseAssignmentExpression(),e=null,n=!1;else{if(this.context.isBindingElement=F,this.context.isAssignmentTarget=S,this.context.firstCoverInitializedNameError=B,this.match(",")){const T=[e];for(;this.match(",");)this.nextToken(),T.push(this.isolateCoverGrammar(this.parseAssignmentExpression));e=this.finalize(this.startNode(C),new ht(T))}this.expect(";")}}typeof r>"u"&&(this.match(";")||(t=this.isolateCoverGrammar(this.parseExpression)),this.expect(";"),this.match(")")||(i=this.isolateCoverGrammar(this.parseExpression)));let E;if(!this.match(")")&&this.config.tolerant)this.tolerateUnexpectedToken(this.nextToken()),E=this.finalize(this.createNode(),new Oe);else{this.expect(")"),this.tolerateInvalidLoopStatement();const C=this.context.inIteration;this.context.inIteration=!0,E=this.isolateCoverGrammar(this.parseStatement),this.context.inIteration=C}return typeof r>"u"?this.finalize(h,new sr(e,t,i,E)):n?this.finalize(h,new tr(r,o,E)):this.finalize(h,new ir(r,o,E,c))}parseContinueStatement(){const e=this.createNode();this.expectKeyword("continue");let t=null;if(this.lookahead.type===3&&!this.hasLineTerminator){const i=this.parseVariableIdentifier();t=i;const n="$"+i.name;Object.prototype.hasOwnProperty.call(this.context.labelSet,n)||this.throwError(k.UnknownLabel,i.name)}return this.consumeSemicolon(),t===null&&!this.context.inIteration&&this.throwError(k.IllegalContinue),this.finalize(e,new Wn(t))}parseBreakStatement(){const e=this.createNode();this.expectKeyword("break");let t=null;if(this.lookahead.type===3&&!this.hasLineTerminator){const i=this.parseVariableIdentifier(),n="$"+i.name;Object.prototype.hasOwnProperty.call(this.context.labelSet,n)||this.throwError(k.UnknownLabel,i.name),t=i}return this.consumeSemicolon(),t===null&&!this.context.inIteration&&!this.context.inSwitch&&this.throwError(k.IllegalBreak),this.finalize(e,new Yn(t))}parseReturnStatement(){this.context.inFunctionBody||this.tolerateError(k.IllegalReturn);const e=this.createNode();this.expectKeyword("return");const i=!this.match(";")&&!this.match("}")&&!this.hasLineTerminator&&this.lookahead.type!==2||this.lookahead.type===8||this.lookahead.type===10?this.parseExpression():null;return this.consumeSemicolon(),this.finalize(e,new yr(i))}parseWithStatement(){this.context.strict&&this.tolerateError(k.StrictModeWith);const e=this.createNode();let t;this.expectKeyword("with"),this.expect("(");const i=this.parseExpression();return!this.match(")")&&this.config.tolerant?(this.tolerateUnexpectedToken(this.nextToken()),t=this.finalize(this.createNode(),new Oe)):(this.expect(")"),t=this.parseStatement()),this.finalize(e,new Nr(i,t))}parseSwitchCase(){const e=this.createNode();let t;this.matchKeyword("default")?(this.nextToken(),t=null):(this.expectKeyword("case"),t=this.parseExpression()),this.expect(":");const i=[];for(;!(this.match("}")||this.matchKeyword("default")||this.matchKeyword("case"));)i.push(this.parseStatementListItem());return this.finalize(e,new Sr(t,i))}parseSwitchStatement(){const e=this.createNode();this.expectKeyword("switch"),this.expect("(");const t=this.parseExpression();this.expect(")");const i=this.context.inSwitch;this.context.inSwitch=!0;const n=[];let r=!1;for(this.expect("{");!this.match("}");){const o=this.parseSwitchCase();o.test===null&&(r&&this.throwError(k.MultipleDefaultsInSwitch),r=!0),n.push(o)}return this.expect("}"),this.context.inSwitch=i,this.finalize(e,new wr(t,n))}parseLabelledStatement(){const e=this.createNode(),t=this.parseExpression();let i;if(t.type===A.Identifier&&this.match(":")){this.nextToken();const n=t,r="$"+n.name;Object.prototype.hasOwnProperty.call(this.context.labelSet,r)&&this.throwError(k.Redeclaration,"Label",n.name),this.context.labelSet[r]=!0;let o;if(this.matchKeyword("class"))this.tolerateUnexpectedToken(this.lookahead),o=this.parseClassDeclaration();else if(this.matchKeyword("function")){const c=this.lookahead,h=this.parseFunctionDeclaration();this.context.strict?this.tolerateUnexpectedToken(c,k.StrictFunction):h.generator&&this.tolerateUnexpectedToken(c,k.GeneratorInLegacyContext),o=h}else o=this.parseStatement();delete this.context.labelSet[r],i=new pr(n,o)}else this.consumeSemicolon(),i=new lt(t);return this.finalize(e,i)}parseThrowStatement(){const e=this.createNode();this.expectKeyword("throw"),this.hasLineTerminator&&this.throwError(k.NewlineAfterThrow);const t=this.parseExpression();return this.consumeSemicolon(),this.finalize(e,new vr(t))}parseCatchClause(){const e=this.createNode();this.expectKeyword("catch");let t=null;if(this.match("(")){this.expect("("),this.match(")")&&this.throwUnexpectedToken(this.lookahead);const n=[];t=this.parsePattern(n);const r={};for(let o=0;o<n.length;o++){const c="$"+n[o].value;Object.prototype.hasOwnProperty.call(r,c)&&this.tolerateError(k.DuplicateBinding,n[o].value),r[c]=!0}this.context.strict&&t.type===A.Identifier&&this.scanner.isRestrictedWord(t.name)&&this.tolerateError(k.StrictCatchVariable),this.expect(")")}const i=this.parseBlock();return this.finalize(e,new Gn(t,i))}parseFinallyClause(){return this.expectKeyword("finally"),this.parseBlock()}parseTryStatement(){const e=this.createNode();this.expectKeyword("try");const t=this.parseBlock(),i=this.matchKeyword("catch")?this.parseCatchClause():null,n=this.matchKeyword("finally")?this.parseFinallyClause():null;return!i&&!n&&this.throwError(k.NoCatchOrFinally),this.finalize(e,new Tr(t,i,n))}parseDebuggerStatement(){const e=this.createNode();return this.expectKeyword("debugger"),this.consumeSemicolon(),this.finalize(e,new Hn)}parseStatement(){let e;switch(this.lookahead.type){case 1:case 5:case 6:case 8:case 10:case 9:e=this.parseExpressionStatement();break;case 7:const t=this.lookahead.value;t==="{"?e=this.parseBlock():t==="("?e=this.parseExpressionStatement():t===";"?e=this.parseEmptyStatement():e=this.parseExpressionStatement();break;case 3:e=this.matchAsyncFunction()?this.parseFunctionDeclaration():this.parseLabelledStatement();break;case 4:switch(this.lookahead.value){case"break":e=this.parseBreakStatement();break;case"continue":e=this.parseContinueStatement();break;case"debugger":e=this.parseDebuggerStatement();break;case"do":e=this.parseDoWhileStatement();break;case"for":e=this.parseForStatement();break;case"function":e=this.parseFunctionDeclaration();break;case"if":e=this.parseIfStatement();break;case"return":e=this.parseReturnStatement();break;case"switch":e=this.parseSwitchStatement();break;case"throw":e=this.parseThrowStatement();break;case"try":e=this.parseTryStatement();break;case"var":e=this.parseVariableStatement();break;case"while":e=this.parseWhileStatement();break;case"with":e=this.parseWithStatement();break;default:e=this.parseExpressionStatement();break}break;default:e=this.throwUnexpectedToken(this.lookahead)}return e}parseFunctionSourceElements(){const e=this.createNode();this.expect("{");const t=this.parseDirectivePrologues(),i=this.context.labelSet,n=this.context.inIteration,r=this.context.inSwitch,o=this.context.inFunctionBody;for(this.context.labelSet={},this.context.inIteration=!1,this.context.inSwitch=!1,this.context.inFunctionBody=!0;this.lookahead.type!==2&&!this.match("}");)t.push(this.parseStatementListItem());return this.expect("}"),this.context.labelSet=i,this.context.inIteration=n,this.context.inSwitch=r,this.context.inFunctionBody=o,this.finalize(e,new Lt(t))}validateParam(e,t,i){const n="$"+i;this.context.strict?(this.scanner.isRestrictedWord(i)&&(e.stricted=t,e.message=k.StrictParamName),Object.prototype.hasOwnProperty.call(e.paramSet,n)&&(e.stricted=t,e.hasDuplicateParameterNames=!0)):e.firstRestricted||(this.scanner.isRestrictedWord(i)?(e.firstRestricted=t,e.message=k.StrictParamName):this.scanner.isStrictModeReservedWord(i)?(e.firstRestricted=t,e.message=k.StrictReservedWord):Object.prototype.hasOwnProperty.call(e.paramSet,n)&&(e.stricted=t,e.hasDuplicateParameterNames=!0)),typeof Object.defineProperty=="function"?Object.defineProperty(e.paramSet,n,{value:!0,enumerable:!0,writable:!0,configurable:!0}):e.paramSet[n]=!0}parseRestElement(e){const t=this.createNode();this.expect("...");const i=this.parsePattern(e);return this.match("=")&&this.throwError(k.DefaultRestParameter),this.match(")")||this.throwError(k.ParameterAfterRestParameter),this.finalize(t,new Ve(i))}parseFormalParameter(e){const t=[],i=this.match("...")?this.parseRestElement(t):this.parsePatternWithDefault(t);for(let n=0;n<t.length;n++)this.validateParam(e,t[n],t[n].value);e.simple=e.simple&&i instanceof de,e.params.push(i)}parseFormalParameters(e){const t={simple:!0,hasDuplicateParameterNames:!1,params:[],firstRestricted:e};if(this.expect("("),!this.match(")"))for(t.paramSet={};this.lookahead.type!==2&&(this.parseFormalParameter(t),!(this.match(")")||(this.expect(","),this.match(")")))););return this.expect(")"),t.hasDuplicateParameterNames&&(this.context.strict||this.context.isAsync||!t.simple)&&this.throwError(k.DuplicateParameter),{simple:t.simple,params:t.params,stricted:t.stricted,firstRestricted:t.firstRestricted,message:t.message}}matchAsyncFunction(){let e=this.matchContextualKeyword("async");if(e){const t=this.scanner.saveState();this.scanner.scanComments();const i=this.scanner.lex();this.scanner.restoreState(t),e=t.lineNumber===i.lineNumber&&i.type===4&&i.value==="function"}return e}parseFunctionDeclaration(e){const t=this.createNode(),i=this.matchContextualKeyword("async");i&&(this.context.inIteration&&this.tolerateError(k.AsyncFunctionInSingleStatementContext),this.nextToken()),this.expectKeyword("function");const n=this.match("*");n&&this.nextToken();let r,o=null,c=null;if(!e||!this.match("(")){const O=this.lookahead;o=this.parseVariableIdentifier(),this.context.strict?this.scanner.isRestrictedWord(O.value)&&this.tolerateUnexpectedToken(O,k.StrictFunctionName):this.scanner.isRestrictedWord(O.value)?(c=O,r=k.StrictFunctionName):this.scanner.isStrictModeReservedWord(O.value)&&(c=O,r=k.StrictReservedWord)}const h=this.context.isAsync,E=this.context.allowYield;this.context.isAsync=i,this.context.allowYield=!n;const C=this.parseFormalParameters(c),F=C.params,S=C.stricted;c=C.firstRestricted,C.message&&(r=C.message);const B=this.context.strict,M=this.context.allowStrictDirective;this.context.allowStrictDirective=C.simple;const T=this.parseFunctionSourceElements();return this.context.strict&&c&&this.throwUnexpectedToken(c,r),this.context.strict&&S&&this.tolerateUnexpectedToken(S,r),this.context.strict=B,this.context.allowStrictDirective=M,this.context.isAsync=h,this.context.allowYield=E,i?this.finalize(t,new Un(o,F,T,n)):this.finalize(t,new nr(o,F,T,n))}parseFunctionExpression(){const e=this.createNode(),t=this.matchContextualKeyword("async");t&&this.nextToken(),this.expectKeyword("function");const i=this.match("*");i&&this.nextToken();let n,r=null,o;const c=this.context.isAsync,h=this.context.allowYield;if(this.context.isAsync=t,this.context.allowYield=!i,!this.match("(")){const T=this.lookahead;r=!this.context.strict&&!i&&this.matchKeyword("yield")?this.parseIdentifierName():this.parseVariableIdentifier(),this.context.strict?this.scanner.isRestrictedWord(T.value)&&this.tolerateUnexpectedToken(T,k.StrictFunctionName):this.scanner.isRestrictedWord(T.value)?(o=T,n=k.StrictFunctionName):this.scanner.isStrictModeReservedWord(T.value)&&(o=T,n=k.StrictReservedWord)}const E=this.parseFormalParameters(o),C=E.params,F=E.stricted;o=E.firstRestricted,E.message&&(n=E.message);const S=this.context.strict,B=this.context.allowStrictDirective;this.context.allowStrictDirective=E.simple;const M=this.parseFunctionSourceElements();return this.context.strict&&o&&this.throwUnexpectedToken(o,n),this.context.strict&&F&&this.tolerateUnexpectedToken(F,n),this.context.strict=S,this.context.allowStrictDirective=B,this.context.isAsync=c,this.context.allowYield=h,this.finalize(e,new be(r,C,M,i,t))}parseDirective(){const e=this.lookahead,t=this.createNode(),i=this.parseExpression(),n=i.type===A.Literal?this.getTokenRaw(e).slice(1,-1):null;return this.consumeSemicolon(),this.finalize(t,n?new jn(i,n):new lt(i))}parseDirectivePrologues(){let e=null;const t=[];for(;;){const i=this.lookahead;if(i.type!==8)break;const n=this.parseDirective();t.push(n);const r=n.directive;if(typeof r!="string")break;r==="use strict"?(this.context.strict=!0,e&&this.tolerateUnexpectedToken(e,k.StrictOctalLiteral),this.context.allowStrictDirective||this.tolerateUnexpectedToken(i,k.IllegalLanguageModeDirective)):!e&&i.octal&&(e=i)}return t}qualifiedPropertyName(e){switch(e.type){case 3:case 8:case 1:case 5:case 6:case 4:return!0;case 7:return e.value==="["||e.value==="#"}return!1}parseGetterMethod(){const e=this.createNode(),t=!1,i=this.context.allowYield;this.context.allowYield=!t;const n=this.parseFormalParameters();n.params.length>0&&this.tolerateError(k.BadGetterArity);const r=this.parsePropertyMethod(n);return this.context.allowYield=i,this.finalize(e,new be(null,n.params,r,t,!1))}parseSetterMethod(){const e=this.createNode(),t=!1,i=this.context.allowYield;this.context.allowYield=!t;const n=this.parseFormalParameters();n.params.length!==1?this.tolerateError(k.BadSetterArity):n.params[0]instanceof Ve&&this.tolerateError(k.BadSetterRestParameter);const r=this.parsePropertyMethod(n);return this.context.allowYield=i,this.finalize(e,new be(null,n.params,r,t,!1))}parseGeneratorMethod(e){const t=this.createNode(),i=!0,n=this.context.allowYield;this.context.allowYield=!0;const r=this.parseFormalParameters();this.context.allowYield=!1;const o=this.parsePropertyMethod(r);return this.context.allowYield=n,this.finalize(t,new be(null,r.params,o,i,e))}isStartOfExpression(){let e=!0;const t=this.lookahead.value;switch(this.lookahead.type){case 7:e=t==="["||t==="("||t==="{"||t==="+"||t==="-"||t==="!"||t==="~"||t==="++"||t==="--"||t==="/"||t==="/=";break;case 4:e=t==="class"||t==="delete"||t==="function"||t==="let"||t==="new"||t==="super"||t==="this"||t==="typeof"||t==="void"||t==="yield";break}return e}parseYieldExpression(){const e=this.createNode();this.expectKeyword("yield");let t=null,i=!1;if(!this.hasLineTerminator){const n=this.context.allowYield;this.context.allowYield=!1,i=this.match("*"),i?(this.nextToken(),t=this.parseAssignmentExpression()):this.isStartOfExpression()&&(t=this.parseAssignmentExpression()),this.context.allowYield=n}return this.finalize(e,new Pr(t,i))}parseStaticBlock(){const e=this.createNode();this.expect("{");const t=[];for(;!this.match("}");)t.push(this.parseStatementListItem());return this.expect("}"),this.finalize(e,new Fr(t))}parseDecorator(){const e=this.createNode();this.expect("@");const t=this.context.strict,i=this.context.allowYield,n=this.context.isAsync;this.context.strict=!1,this.context.allowYield=!0,this.context.isAsync=!1;const r=this.isolateCoverGrammar(this.parseLeftHandSideExpressionAllowCall);return this.context.strict=t,this.context.allowYield=i,this.context.isAsync=n,this.match(";")&&this.throwError(k.NoSemicolonAfterDecorator),this.finalize(e,new qn(r))}parseDecorators(){let e=null;for(;this.match("@");)e==null&&(e=[]),e.push(this.parseDecorator());return e}parseClassElement(e){let t=this.lookahead;const i=this.createNode(),n=this.context.inConstructor;let r="",o=null,c=null,h=!1,E=!1,C=!1,F=!1,S=!1,B=!1;const M=this.parseDecorators();if(M&&(t=this.lookahead),this.match("*"))this.nextToken();else{h=this.match("["),this.match("#")&&(B=!0,this.nextToken(),t=this.lookahead),o=this.parseObjectPropertyKey(B);const O=o;if(this.context.inConstructor=t.type===3&&t.value==="constructor",O.name==="static"&&(this.qualifiedPropertyName(this.lookahead)||this.match("*"))&&(t=this.lookahead,C=!0,h=this.match("["),this.match("*")?(this.nextToken(),this.match("#")&&(B=!0,this.nextToken(),t=this.lookahead)):(this.match("#")&&(B=!0,this.nextToken(),t=this.lookahead),o=this.parseObjectPropertyKey(B))),O.name==="static"&&this.match("{"))return this.parseStaticBlock();if(t.type===3&&!this.hasLineTerminator&&t.value==="async"){const b=this.lookahead.value;b!==":"&&b!=="("&&(F=!0,S=this.match("*"),S&&this.nextToken(),t=this.lookahead,h=this.match("["),this.match("*")?(this.nextToken(),this.match("#")&&(B=!0,this.nextToken())):(this.match("#")&&(B=!0,this.nextToken(),t=this.lookahead),o=this.parseObjectPropertyKey(B)),t.type===3&&t.value==="constructor"&&!C&&this.tolerateUnexpectedToken(t,k.ConstructorIsAsync))}}t.type===3&&t.value==="constructor"&&B&&this.tolerateUnexpectedToken(t,k.ConstructorIsPrivate);const T=this.qualifiedPropertyName(this.lookahead);if(t.type===3||t.type===8?t.value==="get"&&T?(r="get",this.match("#")&&(B=!0,this.nextToken(),t=this.lookahead),h=this.match("["),o=this.parseObjectPropertyKey(B),this.context.allowYield=!1,c=this.parseGetterMethod()):t.value==="set"&&T?(r="set",this.match("#")&&(B=!0,this.nextToken(),t=this.lookahead),h=this.match("["),o=this.parseObjectPropertyKey(B),c=this.parseSetterMethod()):this.match("(")||(r="property",h=!1,this.match("=")&&(this.nextToken(),c=this.isolateCoverGrammar(this.parseAssignmentExpression))):t.type===7&&t.value==="*"&&T?(r="init",h=this.match("["),o=this.parseObjectPropertyKey(B),c=this.parseGeneratorMethod(F),E=!0):t.type===7&&t.value==="["&&!this.match("(")&&(r="property",h=!0,this.match("=")&&(this.nextToken(),c=this.isolateCoverGrammar(this.parseAssignmentExpression))),!r&&o&&this.match("(")){const O=this.context.inClassConstructor;this.context.inClassConstructor=t.value==="constructor",r="init",c=F?this.parsePropertyMethodAsyncFunction(S):this.parsePropertyMethodFunction(S),this.context.inClassConstructor=O,E=!0}return r||this.throwUnexpectedToken(this.lookahead),r==="init"&&(r="method"),h||(C&&this.isPropertyKey(o,"prototype")&&this.throwUnexpectedToken(t,k.StaticPrototype),!C&&this.isPropertyKey(o,"constructor")&&((r!=="method"||!E||c&&c.generator)&&this.throwUnexpectedToken(t,k.ConstructorSpecialMethod),e.value?this.throwUnexpectedToken(t,k.DuplicateConstructor):e.value=!0,r="constructor")),this.context.inConstructor=n,r==="property"?(this.consumeSemicolon(),this.finalize(i,new Er(o,h,c,C,M))):this.finalize(i,new fr(o,h,c,r,C,M))}parseClassElementList(){const e=[],t={value:!1};for(this.expect("{");!this.match("}");)this.match(";")?this.nextToken():e.push(this.parseClassElement(t));return this.expect("}"),e}parseClassBody(){const e=this.createNode(),t=this.parseClassElementList();return this.finalize(e,new Jn(t))}parseClassDeclaration(e){const t=this.createNode(),i=this.context.strict,n=this.context.allowSuper;this.context.strict=!0,this.expectKeyword("class");const r=e&&this.lookahead.type!==3?null:this.parseVariableIdentifier();let o=null;this.matchKeyword("extends")&&(this.nextToken(),o=this.isolateCoverGrammar(this.parseLeftHandSideExpressionAllowCall),this.context.allowSuper=!0);const c=this.parseClassBody();return this.context.allowSuper=n,this.context.strict=i,this.finalize(t,new $n(r,o,c,this.context.decorators))}parseClassExpression(){const e=this.createNode(),t=this.context.strict;this.context.strict=!0,this.expectKeyword("class");const i=this.lookahead.type===3?this.parseVariableIdentifier():null;let n=null;this.matchKeyword("extends")&&(this.nextToken(),n=this.isolateCoverGrammar(this.parseLeftHandSideExpressionAllowCall),this.context.allowSuper=!0);const r=this.parseClassBody();return this.context.strict=t,this.finalize(e,new Vn(i,n,r,this.context.decorators))}parseModule(){this.context.strict=!0,this.context.isModule=!0,this.scanner.isModule=!0;const e=this.createNode(),t=this.parseDirectivePrologues();for(;this.lookahead.type!==2;)t.push(this.parseStatementListItem());return this.finalize(e,new dr(t))}parseScript(){const e=this.createNode(),t=this.parseDirectivePrologues();for(;this.lookahead.type!==2;)t.push(this.parseStatementListItem());return this.finalize(e,new Cr(t))}parseImportAttributes(){if(this.lookahead.value==="assert"){this.nextToken(),this.expect("{");const e=[];for(;!this.match("}");)e.push(this.parseImportAttribute()),this.match("}")||this.expectCommaSeparator();return this.expect("}"),e}return null}parseImportAttribute(){const e=this.createNode();this.lookahead.type!==3&&this.throwUnexpectedToken(this.nextToken());const t=this.parseIdentifierName();this.match(":")||this.throwUnexpectedToken(this.nextToken()),this.nextToken();const i=this.nextToken(),n=this.getTokenRaw(i),r=this.finalize(e,new we(i.value,n));return this.finalize(e,new or(t,r))}parseModuleSpecifier(){const e=this.createNode();this.lookahead.type!==8&&this.throwError(k.InvalidModuleSpecifier);const t=this.nextToken(),i=this.getTokenRaw(t);return R.isStringWellFormedUnicode(t.value)||this.throwError(k.InvalidModuleSpecifier),this.finalize(e,new we(t.value,i))}parseImportSpecifier(){const e=this.createNode();let t,i;return this.lookahead.type===3?(t=this.parseVariableIdentifier(),i=t,this.matchContextualKeyword("as")&&(this.nextToken(),i=this.parseVariableIdentifier())):(t=this.lookahead.type==8?this.parseModuleSpecifier():this.parseIdentifierName(),i=t,this.matchContextualKeyword("as")?(this.nextToken(),i=this.parseVariableIdentifier()):this.throwUnexpectedToken(this.nextToken())),this.finalize(e,new hr(i,t))}parseNamedImports(){this.expect("{");const e=[];for(;!this.match("}");)e.push(this.parseImportSpecifier()),this.match("}")||this.expect(",");return this.expect("}"),e}parseImportDefaultSpecifier(){const e=this.createNode(),t=this.parseIdentifierName();return this.finalize(e,new cr(t))}parseImportNamespaceSpecifier(){const e=this.createNode();this.expect("*"),this.matchContextualKeyword("as")||this.throwError(k.NoAsAfterImportNamespace),this.lookahead.escaped&&this.throwError(k.NoAsAndFromEscapeSequences),this.nextToken();const t=this.parseIdentifierName();return this.finalize(e,new lr(t))}parseImportDeclaration(){this.context.inFunctionBody&&this.throwError(k.IllegalImportDeclaration);const e=this.createNode();this.expectKeyword("import");let t,i=[];if(this.lookahead.type===8)t=this.parseModuleSpecifier();else{if(this.match("{")?i=i.concat(this.parseNamedImports()):this.match("*")?i.push(this.parseImportNamespaceSpecifier()):this.isIdentifierName(this.lookahead)&&!this.matchKeyword("default")?(i.push(this.parseImportDefaultSpecifier()),this.match(",")&&(this.nextToken(),this.match("*")?i.push(this.parseImportNamespaceSpecifier()):this.match("{")?i=i.concat(this.parseNamedImports()):this.throwUnexpectedToken(this.lookahead))):this.throwUnexpectedToken(this.nextToken()),!this.matchContextualKeyword("from")){const r=this.lookahead.value?k.UnexpectedToken:k.MissingFromClause;this.throwError(r,this.lookahead.value)}this.nextToken(),t=this.parseModuleSpecifier()}const n=this.parseImportAttributes();return this.consumeSemicolon(),this.finalize(e,new ur(i,t,n))}parseExportSpecifier(){const e=this.createNode(),t=this.lookahead.type==8?this.parseModuleSpecifier():this.parseIdentifierName();let i=t;return this.matchContextualKeyword("as")&&(this.lookahead.escaped&&this.throwError(k.NoAsAndFromEscapeSequences),this.nextToken(),i=this.lookahead.type==8?this.parseModuleSpecifier():this.parseIdentifierName()),this.finalize(e,new er(t,i))}parseExportDeclaration(){this.context.inFunctionBody&&this.throwError(k.IllegalExportDeclaration);const e=this.createNode();this.expectKeyword("export");let t;if(this.matchKeyword("default"))if(this.nextToken(),this.matchKeyword("function")){const i=this.parseFunctionDeclaration(!0);t=this.finalize(e,new Ge(i))}else if(this.matchKeyword("class")){const i=this.parseClassDeclaration(!0);t=this.finalize(e,new Ge(i))}else if(this.matchContextualKeyword("async")){const i=this.matchAsyncFunction()?this.parseFunctionDeclaration(!0):this.parseAssignmentExpression();t=this.finalize(e,new Ge(i))}else{this.matchContextualKeyword("from")&&this.throwError(k.UnexpectedToken,this.lookahead.value);const i=this.match("{")?this.parseObjectInitializer():this.match("[")?this.parseArrayInitializer():this.parseAssignmentExpression();this.consumeSemicolon(),t=this.finalize(e,new Ge(i))}else if(this.match("*")){this.nextToken();let i=null;if(this.matchContextualKeyword("as")&&(this.lookahead.escaped&&this.throwError(k.NoAsAndFromEscapeSequences),this.nextToken(),i=this.lookahead.type==8?this.parseModuleSpecifier():this.parseIdentifierName()),!this.matchContextualKeyword("from")){const o=this.lookahead.value?k.UnexpectedToken:k.MissingFromClause;this.throwError(o,this.lookahead.value)}this.lookahead.escaped&&this.throwError(k.NoAsAndFromEscapeSequences),this.nextToken();const n=this.parseModuleSpecifier(),r=this.parseImportAttributes();this.consumeSemicolon(),t=this.finalize(e,new Zn(n,i,r))}else if(this.lookahead.type===4){let i;switch(this.lookahead.value){case"let":case"const":i=this.parseLexicalDeclaration({inFor:!1});break;case"var":case"class":case"function":i=this.parseStatementListItem();break;default:this.throwUnexpectedToken(this.lookahead)}t=this.finalize(e,new ct(i,[],null,null))}else if(this.matchAsyncFunction()){const i=this.parseFunctionDeclaration();t=this.finalize(e,new ct(i,[],null,null))}else{const i=[];let n=null,r=!1,o=null;for(this.expect("{");!this.match("}");)r=r||this.matchKeyword("default"),i.push(this.parseExportSpecifier()),this.match("}")||this.expect(",");if(this.expect("}"),this.matchContextualKeyword("from"))this.lookahead.escaped&&this.throwError(k.NoAsAndFromEscapeSequences),this.nextToken(),n=this.parseModuleSpecifier(),o=this.parseImportAttributes(),this.consumeSemicolon();else if(r){const c=this.lookahead.value?k.UnexpectedToken:k.MissingFromClause;this.throwError(c,this.lookahead.value)}else o=this.parseImportAttributes(),this.consumeSemicolon();t=this.finalize(e,new ct(null,i,n,o))}return t}}const Kt={quot:'"',amp:"&",apos:"'",gt:">",nbsp:" ",iexcl:"¡",cent:"¢",pound:"£",curren:"¤",yen:"¥",brvbar:"¦",sect:"§",uml:"¨",copy:"©",ordf:"ª",laquo:"«",not:"¬",shy:"­",reg:"®",macr:"¯",deg:"°",plusmn:"±",sup2:"²",sup3:"³",acute:"´",micro:"µ",para:"¶",middot:"·",cedil:"¸",sup1:"¹",ordm:"º",raquo:"»",frac14:"¼",frac12:"½",frac34:"¾",iquest:"¿",Agrave:"À",Aacute:"Á",Acirc:"Â",Atilde:"Ã",Auml:"Ä",Aring:"Å",AElig:"Æ",Ccedil:"Ç",Egrave:"È",Eacute:"É",Ecirc:"Ê",Euml:"Ë",Igrave:"Ì",Iacute:"Í",Icirc:"Î",Iuml:"Ï",ETH:"Ð",Ntilde:"Ñ",Ograve:"Ò",Oacute:"Ó",Ocirc:"Ô",Otilde:"Õ",Ouml:"Ö",times:"×",Oslash:"Ø",Ugrave:"Ù",Uacute:"Ú",Ucirc:"Û",Uuml:"Ü",Yacute:"Ý",THORN:"Þ",szlig:"ß",agrave:"à",aacute:"á",acirc:"â",atilde:"ã",auml:"ä",aring:"å",aelig:"æ",ccedil:"ç",egrave:"è",eacute:"é",ecirc:"ê",euml:"ë",igrave:"ì",iacute:"í",icirc:"î",iuml:"ï",eth:"ð",ntilde:"ñ",ograve:"ò",oacute:"ó",ocirc:"ô",otilde:"õ",ouml:"ö",divide:"÷",oslash:"ø",ugrave:"ù",uacute:"ú",ucirc:"û",uuml:"ü",yacute:"ý",thorn:"þ",yuml:"ÿ",OElig:"Œ",oelig:"œ",Scaron:"Š",scaron:"š",Yuml:"Ÿ",fnof:"ƒ",circ:"ˆ",tilde:"˜",Alpha:"Α",Beta:"Β",Gamma:"Γ",Delta:"Δ",Epsilon:"Ε",Zeta:"Ζ",Eta:"Η",Theta:"Θ",Iota:"Ι",Kappa:"Κ",Lambda:"Λ",Mu:"Μ",Nu:"Ν",Xi:"Ξ",Omicron:"Ο",Pi:"Π",Rho:"Ρ",Sigma:"Σ",Tau:"Τ",Upsilon:"Υ",Phi:"Φ",Chi:"Χ",Psi:"Ψ",Omega:"Ω",alpha:"α",beta:"β",gamma:"γ",delta:"δ",epsilon:"ε",zeta:"ζ",eta:"η",theta:"θ",iota:"ι",kappa:"κ",lambda:"λ",mu:"μ",nu:"ν",xi:"ξ",omicron:"ο",pi:"π",rho:"ρ",sigmaf:"ς",sigma:"σ",tau:"τ",upsilon:"υ",phi:"φ",chi:"χ",psi:"ψ",omega:"ω",thetasym:"ϑ",upsih:"ϒ",piv:"ϖ",ensp:" ",emsp:" ",thinsp:" ",zwnj:"‌",zwj:"‍",lrm:"‎",rlm:"‏",ndash:"–",mdash:"—",lsquo:"‘",rsquo:"’",sbquo:"‚",ldquo:"“",rdquo:"”",bdquo:"„",dagger:"†",Dagger:"‡",bull:"•",hellip:"…",permil:"‰",prime:"′",Prime:"″",lsaquo:"‹",rsaquo:"›",oline:"‾",frasl:"⁄",euro:"€",image:"ℑ",weierp:"℘",real:"ℜ",trade:"™",alefsym:"ℵ",larr:"←",uarr:"↑",rarr:"→",darr:"↓",harr:"↔",crarr:"↵",lArr:"⇐",uArr:"⇑",rArr:"⇒",dArr:"⇓",hArr:"⇔",forall:"∀",part:"∂",exist:"∃",empty:"∅",nabla:"∇",isin:"∈",notin:"∉",ni:"∋",prod:"∏",sum:"∑",minus:"−",lowast:"∗",radic:"√",prop:"∝",infin:"∞",ang:"∠",and:"∧",or:"∨",cap:"∩",cup:"∪",int:"∫",there4:"∴",sim:"∼",cong:"≅",asymp:"≈",ne:"≠",equiv:"≡",le:"≤",ge:"≥",sub:"⊂",sup:"⊃",nsub:"⊄",sube:"⊆",supe:"⊇",oplus:"⊕",otimes:"⊗",perp:"⊥",sdot:"⋅",lceil:"⌈",rceil:"⌉",lfloor:"⌊",rfloor:"⌋",loz:"◊",spades:"♠",clubs:"♣",hearts:"♥",diams:"♦",lang:"⟨",rang:"⟩"};ue[100]="JSXIdentifier";ue[101]="JSXText";function ke(s){let e;switch(s.type){case Q.JSXIdentifier:e=s.name;break;case Q.JSXNamespacedName:const i=s;e=ke(i.namespace)+":"+ke(i.name);break;case Q.JSXMemberExpression:const n=s;e=ke(n.object)+"."+ke(n.property);break}return e}class Lr extends oi{constructor(e,t,i){super(e,t,i)}parsePrimaryExpression(){return this.match("<")?this.parseJSXRoot():super.parsePrimaryExpression()}startJSX(){this.scanner.index=this.startMarker.index,this.scanner.lineNumber=this.startMarker.line,this.scanner.lineStart=this.startMarker.index-this.startMarker.column}finishJSX(){this.nextToken()}reenterJSX(){this.startJSX(),this.expectJSX("}"),this.config.tokens&&this.tokens.pop()}createJSXNode(){return this.collectComments(),{index:this.scanner.index,line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}}createJSXChildNode(){return{index:this.scanner.index,line:this.scanner.lineNumber,column:this.scanner.index-this.scanner.lineStart}}scanXHTMLEntity(e){let t="&",i=!0,n=!1,r=!1,o=!1;for(;!this.scanner.eof()&&i&&!n;){const c=this.scanner.source[this.scanner.index];if(c===e)break;if(n=c===";",t+=c,++this.scanner.index,!n)switch(t.length){case 2:r=c==="#";break;case 3:r&&(o=c==="x",i=o||R.isDecimalDigit(c.charCodeAt(0)),r=r&&!o);break;default:i=i&&!(r&&!R.isDecimalDigit(c.charCodeAt(0))),i=i&&!(o&&!R.isHexDigit(c.charCodeAt(0)));break}}if(i&&n&&t.length>2){const c=t.substr(1,t.length-2);r&&c.length>1?t=String.fromCharCode(parseInt(c.substr(1),10)):o&&c.length>2?t=String.fromCharCode(parseInt("0"+c.substr(1),16)):!r&&!o&&Kt[c]&&(t=Kt[c])}return t}lexJSX(){const e=this.scanner.source.charCodeAt(this.scanner.index);if(e===60||e===62||e===47||e===58||e===61||e===123||e===125)return{type:7,value:this.scanner.source[this.scanner.index++],lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:this.scanner.index-1,end:this.scanner.index};if(e===34||e===39){const t=this.scanner.index,i=this.scanner.source[this.scanner.index++];let n="";for(;!this.scanner.eof();){const r=this.scanner.source[this.scanner.index++];if(r===i)break;r==="&"?n+=this.scanXHTMLEntity(i):n+=r}return{type:8,value:n,lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:t,end:this.scanner.index}}if(e===46){const t=this.scanner.source.charCodeAt(this.scanner.index+1),i=this.scanner.source.charCodeAt(this.scanner.index+2),n=t===46&&i===46?"...":".",r=this.scanner.index;return this.scanner.index+=n.length,{type:7,value:n,lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:r,end:this.scanner.index}}if(e===96)return{type:10,value:"",lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:this.scanner.index,end:this.scanner.index};if(R.isIdentifierStart(e)&&e!==92){const t=this.scanner.index;for(++this.scanner.index;!this.scanner.eof();){const n=this.scanner.source.charCodeAt(this.scanner.index);if(R.isIdentifierPart(n)&&n!==92)++this.scanner.index;else if(n===45)++this.scanner.index;else break}return{type:100,value:this.scanner.source.slice(t,this.scanner.index),lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:t,end:this.scanner.index}}return this.scanner.lex()}nextJSXToken(){this.collectComments(),this.startMarker.index=this.scanner.index,this.startMarker.line=this.scanner.lineNumber,this.startMarker.column=this.scanner.index-this.scanner.lineStart;const e=this.lexJSX();return this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart,this.config.tokens&&this.tokens.push(this.convertToken(e)),e}nextJSXText(){this.startMarker.index=this.scanner.index,this.startMarker.line=this.scanner.lineNumber,this.startMarker.column=this.scanner.index-this.scanner.lineStart;const e=this.scanner.index;let t="";for(;!this.scanner.eof();){const n=this.scanner.source[this.scanner.index];if(n==="{"||n==="<")break;++this.scanner.index,t+=n,R.isLineTerminator(n.charCodeAt(0))&&(++this.scanner.lineNumber,n==="\r"&&this.scanner.source[this.scanner.index]===`
8
- `&&++this.scanner.index,this.scanner.lineStart=this.scanner.index)}this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart;const i={type:101,value:t,lineNumber:this.scanner.lineNumber,lineStart:this.scanner.lineStart,start:e,end:this.scanner.index};return t.length>0&&this.config.tokens&&this.tokens.push(this.convertToken(i)),i}peekJSXToken(){const e=this.scanner.saveState();this.scanner.scanComments();const t=this.lexJSX();return this.scanner.restoreState(e),t}expectJSX(e){const t=this.nextJSXToken();(t.type!==7||t.value!==e)&&this.throwUnexpectedToken(t)}matchJSX(e){const t=this.peekJSXToken();return t.type===7&&t.value===e}parseJSXIdentifier(){const e=this.createJSXNode(),t=this.nextJSXToken();return t.type!==100&&this.throwUnexpectedToken(t),this.finalize(e,new Tn(t.value))}parseJSXElementName(){const e=this.createJSXNode();let t=this.parseJSXIdentifier();if(this.matchJSX(":")){const i=t;this.expectJSX(":");const n=this.parseJSXIdentifier();t=this.finalize(e,new Pt(i,n))}else if(this.matchJSX("."))for(;this.matchJSX(".");){const i=t;this.expectJSX(".");const n=this.parseJSXIdentifier();t=this.finalize(e,new Bn(i,n))}return t}parseJSXAttributeName(){const e=this.createJSXNode();let t;const i=this.parseJSXIdentifier();if(this.matchJSX(":")){const n=i;this.expectJSX(":");const r=this.parseJSXIdentifier();t=this.finalize(e,new Pt(n,r))}else t=i;return t}parseJSXStringLiteralAttribute(){const e=this.createJSXNode(),t=this.nextJSXToken();t.type!==8&&this.throwUnexpectedToken(t);const i=this.getTokenRaw(t);return this.finalize(e,new we(t.value,i))}parseJSXExpressionAttribute(){const e=this.createJSXNode();this.expectJSX("{"),this.finishJSX(),this.match("}")&&this.tolerateError("JSX attributes must only be assigned a non-empty expression");const t=this.parseAssignmentExpression();return this.reenterJSX(),this.finalize(e,new Nt(t))}parseJSXAttributeValue(){return this.matchJSX("{")?this.parseJSXExpressionAttribute():this.matchJSX("<")?this.parseJSXElement():this.parseJSXStringLiteralAttribute()}parseJSXNameValueAttribute(){const e=this.createJSXNode(),t=this.parseJSXAttributeName();let i=null;return this.matchJSX("=")&&(this.expectJSX("="),i=this.parseJSXAttributeValue()),this.finalize(e,new In(t,i))}parseJSXSpreadAttribute(){const e=this.createJSXNode();this.expectJSX("{"),this.expectJSX("..."),this.finishJSX();const t=this.parseAssignmentExpression();return this.reenterJSX(),this.finalize(e,new Pn(t))}parseJSXAttributes(){const e=[];for(;!this.matchJSX("/")&&!this.matchJSX(">");){const t=this.matchJSX("{")?this.parseJSXSpreadAttribute():this.parseJSXNameValueAttribute();e.push(t)}return e}parseJSXOpeningElement(){const e=this.createJSXNode();if(this.expectJSX("<"),this.matchJSX(">"))return this.expectJSX(">"),this.finalize(e,new Nn(!1));const t=this.parseJSXElementName(),i=this.parseJSXAttributes(),n=this.matchJSX("/");return n&&this.expectJSX("/"),this.expectJSX(">"),this.finalize(e,new Mt(t,n,i))}parseJSXBoundaryElement(){const e=this.createJSXNode();if(this.expectJSX("<"),this.matchJSX("/")){if(this.expectJSX("/"),this.matchJSX(">"))return this.expectJSX(">"),this.finalize(e,new kn);const r=this.parseJSXElementName();return this.expectJSX(">"),this.finalize(e,new bn(r))}const t=this.parseJSXElementName(),i=this.parseJSXAttributes(),n=this.matchJSX("/");return n&&this.expectJSX("/"),this.expectJSX(">"),this.finalize(e,new Mt(t,n,i))}parseJSXEmptyExpression(){const e=this.createJSXChildNode();return this.collectComments(),this.lastMarker.index=this.scanner.index,this.lastMarker.line=this.scanner.lineNumber,this.lastMarker.column=this.scanner.index-this.scanner.lineStart,this.finalize(e,new vn)}parseJSXExpressionContainer(){const e=this.createJSXNode();this.expectJSX("{");let t;return this.matchJSX("}")?(t=this.parseJSXEmptyExpression(),this.expectJSX("}")):(this.finishJSX(),t=this.parseAssignmentExpression(),this.reenterJSX()),this.finalize(e,new Nt(t))}parseJSXChildren(){const e=[];for(;!this.scanner.eof();){const t=this.createJSXChildNode(),i=this.nextJSXText();if(i.start<i.end){const n=this.getTokenRaw(i),r=this.finalize(t,new Mn(i.value,n));e.push(r)}if(this.scanner.source[this.scanner.index]==="{"){const n=this.parseJSXExpressionContainer();e.push(n)}else break}return e}parseComplexJSXElement(e){const t=[];for(;!this.scanner.eof();){e.children=e.children.concat(this.parseJSXChildren());const i=this.createJSXChildNode(),n=this.parseJSXBoundaryElement();if(n.type===Q.JSXOpeningElement){const r=n;if(r.selfClosing){const o=this.finalize(i,new ot(r,[],null));e.children.push(o)}else t.push(e),e={node:i,opening:r,closing:null,children:[]}}if(n.type===Q.JSXClosingElement){e.closing=n;const r=ke(e.opening.name),o=ke(e.closing.name);if(r!==o&&this.tolerateError("Expected corresponding JSX closing tag for %0",r),t.length>0){const c=this.finalize(e.node,new ot(e.opening,e.children,e.closing));e=t[t.length-1],e.children.push(c),t.pop()}else break}if(n.type===Q.JSXClosingFragment)if(e.closing=n,e.opening.type!==Q.JSXOpeningFragment)this.tolerateError("Expected corresponding JSX closing tag for jsx fragment");else break}return e}parseJSXElement(){const e=this.createJSXNode(),t=this.parseJSXOpeningElement();let i=[],n=null;if(!t.selfClosing){const r=this.parseComplexJSXElement({node:e,opening:t,closing:n,children:i});i=r.children,n=r.closing}return this.finalize(e,new ot(t,i,n))}parseJSXRoot(){this.config.tokens&&this.tokens.pop(),this.startJSX();const e=this.parseJSXElement();return this.finishJSX(),e}isStartOfExpression(){return super.isStartOfExpression()||this.match("<")}}function ai(s,e,t){let i=null;const n=(F,S)=>{t&&t(F,S),i&&i.visit(F,S)};let r=typeof t=="function"?n:null,o=!1;if(e){o=typeof e.comment=="boolean"&&e.comment;const F=typeof e.attachComment=="boolean"&&e.attachComment;(o||F)&&(i=new wn,i.attach=F,e.comment=!0,r=n)}let c=!1;e&&typeof e.sourceType=="string"&&(c=e.sourceType==="module");let h;e&&typeof e.jsx=="boolean"&&e.jsx?h=new Lr(s,e,r):h=new oi(s,e,r);const C=c?h.parseModule():h.parseScript();return o&&i&&(C.comments=i.comments),h.config.tokens&&(C.tokens=h.tokens),h.config.tolerant&&(C.errors=h.errorHandler.errors),C}var ft={},Wt;function Rr(){return Wt||(Wt=1,(function(s){(function e(t){var i,n,r,o,c,h;function E(N){var I={},P,a;for(P in N)N.hasOwnProperty(P)&&(a=N[P],typeof a=="object"&&a!==null?I[P]=E(a):I[P]=a);return I}function C(N,I){var P,a,u,l;for(a=N.length,u=0;a;)P=a>>>1,l=u+P,I(N[l])?a=P:(u=l+1,a-=P+1);return u}i={AssignmentExpression:"AssignmentExpression",AssignmentPattern:"AssignmentPattern",ArrayExpression:"ArrayExpression",ArrayPattern:"ArrayPattern",ArrowFunctionExpression:"ArrowFunctionExpression",AwaitExpression:"AwaitExpression",BlockStatement:"BlockStatement",BinaryExpression:"BinaryExpression",BreakStatement:"BreakStatement",CallExpression:"CallExpression",CatchClause:"CatchClause",ChainExpression:"ChainExpression",ClassBody:"ClassBody",ClassDeclaration:"ClassDeclaration",ClassExpression:"ClassExpression",ComprehensionBlock:"ComprehensionBlock",ComprehensionExpression:"ComprehensionExpression",ConditionalExpression:"ConditionalExpression",ContinueStatement:"ContinueStatement",DebuggerStatement:"DebuggerStatement",DirectiveStatement:"DirectiveStatement",DoWhileStatement:"DoWhileStatement",EmptyStatement:"EmptyStatement",ExportAllDeclaration:"ExportAllDeclaration",ExportDefaultDeclaration:"ExportDefaultDeclaration",ExportNamedDeclaration:"ExportNamedDeclaration",ExportSpecifier:"ExportSpecifier",ExpressionStatement:"ExpressionStatement",ForStatement:"ForStatement",ForInStatement:"ForInStatement",ForOfStatement:"ForOfStatement",FunctionDeclaration:"FunctionDeclaration",FunctionExpression:"FunctionExpression",GeneratorExpression:"GeneratorExpression",Identifier:"Identifier",IfStatement:"IfStatement",ImportExpression:"ImportExpression",ImportDeclaration:"ImportDeclaration",ImportDefaultSpecifier:"ImportDefaultSpecifier",ImportNamespaceSpecifier:"ImportNamespaceSpecifier",ImportSpecifier:"ImportSpecifier",Literal:"Literal",LabeledStatement:"LabeledStatement",LogicalExpression:"LogicalExpression",MemberExpression:"MemberExpression",MetaProperty:"MetaProperty",MethodDefinition:"MethodDefinition",ModuleSpecifier:"ModuleSpecifier",NewExpression:"NewExpression",ObjectExpression:"ObjectExpression",ObjectPattern:"ObjectPattern",PrivateIdentifier:"PrivateIdentifier",Program:"Program",Property:"Property",PropertyDefinition:"PropertyDefinition",RestElement:"RestElement",ReturnStatement:"ReturnStatement",SequenceExpression:"SequenceExpression",SpreadElement:"SpreadElement",Super:"Super",SwitchStatement:"SwitchStatement",SwitchCase:"SwitchCase",TaggedTemplateExpression:"TaggedTemplateExpression",TemplateElement:"TemplateElement",TemplateLiteral:"TemplateLiteral",ThisExpression:"ThisExpression",ThrowStatement:"ThrowStatement",TryStatement:"TryStatement",UnaryExpression:"UnaryExpression",UpdateExpression:"UpdateExpression",VariableDeclaration:"VariableDeclaration",VariableDeclarator:"VariableDeclarator",WhileStatement:"WhileStatement",WithStatement:"WithStatement",YieldExpression:"YieldExpression"},r={AssignmentExpression:["left","right"],AssignmentPattern:["left","right"],ArrayExpression:["elements"],ArrayPattern:["elements"],ArrowFunctionExpression:["params","body"],AwaitExpression:["argument"],BlockStatement:["body"],BinaryExpression:["left","right"],BreakStatement:["label"],CallExpression:["callee","arguments"],CatchClause:["param","body"],ChainExpression:["expression"],ClassBody:["body"],ClassDeclaration:["id","superClass","body"],ClassExpression:["id","superClass","body"],ComprehensionBlock:["left","right"],ComprehensionExpression:["blocks","filter","body"],ConditionalExpression:["test","consequent","alternate"],ContinueStatement:["label"],DebuggerStatement:[],DirectiveStatement:[],DoWhileStatement:["body","test"],EmptyStatement:[],ExportAllDeclaration:["source"],ExportDefaultDeclaration:["declaration"],ExportNamedDeclaration:["declaration","specifiers","source"],ExportSpecifier:["exported","local"],ExpressionStatement:["expression"],ForStatement:["init","test","update","body"],ForInStatement:["left","right","body"],ForOfStatement:["left","right","body"],FunctionDeclaration:["id","params","body"],FunctionExpression:["id","params","body"],GeneratorExpression:["blocks","filter","body"],Identifier:[],IfStatement:["test","consequent","alternate"],ImportExpression:["source"],ImportDeclaration:["specifiers","source"],ImportDefaultSpecifier:["local"],ImportNamespaceSpecifier:["local"],ImportSpecifier:["imported","local"],Literal:[],LabeledStatement:["label","body"],LogicalExpression:["left","right"],MemberExpression:["object","property"],MetaProperty:["meta","property"],MethodDefinition:["key","value"],ModuleSpecifier:[],NewExpression:["callee","arguments"],ObjectExpression:["properties"],ObjectPattern:["properties"],PrivateIdentifier:[],Program:["body"],Property:["key","value"],PropertyDefinition:["key","value"],RestElement:["argument"],ReturnStatement:["argument"],SequenceExpression:["expressions"],SpreadElement:["argument"],Super:[],SwitchStatement:["discriminant","cases"],SwitchCase:["test","consequent"],TaggedTemplateExpression:["tag","quasi"],TemplateElement:[],TemplateLiteral:["quasis","expressions"],ThisExpression:[],ThrowStatement:["argument"],TryStatement:["block","handler","finalizer"],UnaryExpression:["argument"],UpdateExpression:["argument"],VariableDeclaration:["declarations"],VariableDeclarator:["id","init"],WhileStatement:["test","body"],WithStatement:["object","body"],YieldExpression:["argument"]},o={},c={},h={},n={Break:o,Skip:c,Remove:h};function F(N,I){this.parent=N,this.key=I}F.prototype.replace=function(I){this.parent[this.key]=I},F.prototype.remove=function(){return Array.isArray(this.parent)?(this.parent.splice(this.key,1),!0):(this.replace(null),!1)};function S(N,I,P,a){this.node=N,this.path=I,this.wrap=P,this.ref=a}function B(){}B.prototype.path=function(){var I,P,a,u,l,x;function d(m,D){if(Array.isArray(D))for(a=0,u=D.length;a<u;++a)m.push(D[a]);else m.push(D)}if(!this.__current.path)return null;for(l=[],I=2,P=this.__leavelist.length;I<P;++I)x=this.__leavelist[I],d(l,x.path);return d(l,this.__current.path),l},B.prototype.type=function(){var N=this.current();return N.type||this.__current.wrap},B.prototype.parents=function(){var I,P,a;for(a=[],I=1,P=this.__leavelist.length;I<P;++I)a.push(this.__leavelist[I].node);return a},B.prototype.current=function(){return this.__current.node},B.prototype.__execute=function(I,P){var a,u;return u=void 0,a=this.__current,this.__current=P,this.__state=null,I&&(u=I.call(this,P.node,this.__leavelist[this.__leavelist.length-1].node)),this.__current=a,u},B.prototype.notify=function(I){this.__state=I},B.prototype.skip=function(){this.notify(c)},B.prototype.break=function(){this.notify(o)},B.prototype.remove=function(){this.notify(h)},B.prototype.__initialize=function(N,I){this.visitor=I,this.root=N,this.__worklist=[],this.__leavelist=[],this.__current=null,this.__state=null,this.__fallback=null,I.fallback==="iteration"?this.__fallback=Object.keys:typeof I.fallback=="function"&&(this.__fallback=I.fallback),this.__keys=r,I.keys&&(this.__keys=Object.assign(Object.create(this.__keys),I.keys))};function M(N){return N==null?!1:typeof N=="object"&&typeof N.type=="string"}function T(N,I){return(N===i.ObjectExpression||N===i.ObjectPattern)&&I==="properties"}function O(N,I){for(var P=N.length-1;P>=0;--P)if(N[P].node===I)return!0;return!1}B.prototype.traverse=function(I,P){var a,u,l,x,d,m,D,f,p,w,y,v;for(this.__initialize(I,P),v={},a=this.__worklist,u=this.__leavelist,a.push(new S(I,null,null,null)),u.push(new S(null,null,null,null));a.length;){if(l=a.pop(),l===v){if(l=u.pop(),m=this.__execute(P.leave,l),this.__state===o||m===o)return;continue}if(l.node){if(m=this.__execute(P.enter,l),this.__state===o||m===o)return;if(a.push(v),u.push(l),this.__state===c||m===c)continue;if(x=l.node,d=x.type||l.wrap,w=this.__keys[d],!w)if(this.__fallback)w=this.__fallback(x);else throw new Error("Unknown node type "+d+".");for(f=w.length;(f-=1)>=0;)if(D=w[f],y=x[D],!!y){if(Array.isArray(y)){for(p=y.length;(p-=1)>=0;)if(y[p]&&!O(u,y[p])){if(T(d,w[f]))l=new S(y[p],[D,p],"Property",null);else if(M(y[p]))l=new S(y[p],[D,p],null,null);else continue;a.push(l)}}else if(M(y)){if(O(u,y))continue;a.push(new S(y,D,null,null))}}}}},B.prototype.replace=function(I,P){var a,u,l,x,d,m,D,f,p,w,y,v,L;function U(G){var K,q,X,V;if(G.ref.remove()){for(q=G.ref.key,V=G.ref.parent,K=a.length;K--;)if(X=a[K],X.ref&&X.ref.parent===V){if(X.ref.key<q)break;--X.ref.key}}}for(this.__initialize(I,P),y={},a=this.__worklist,u=this.__leavelist,v={root:I},m=new S(I,null,null,new F(v,"root")),a.push(m),u.push(m);a.length;){if(m=a.pop(),m===y){if(m=u.pop(),d=this.__execute(P.leave,m),d!==void 0&&d!==o&&d!==c&&d!==h&&m.ref.replace(d),(this.__state===h||d===h)&&U(m),this.__state===o||d===o)return v.root;continue}if(d=this.__execute(P.enter,m),d!==void 0&&d!==o&&d!==c&&d!==h&&(m.ref.replace(d),m.node=d),(this.__state===h||d===h)&&(U(m),m.node=null),this.__state===o||d===o)return v.root;if(l=m.node,!!l&&(a.push(y),u.push(m),!(this.__state===c||d===c))){if(x=l.type||m.wrap,p=this.__keys[x],!p)if(this.__fallback)p=this.__fallback(l);else throw new Error("Unknown node type "+x+".");for(D=p.length;(D-=1)>=0;)if(L=p[D],w=l[L],!!w)if(Array.isArray(w)){for(f=w.length;(f-=1)>=0;)if(w[f]){if(T(x,p[D]))m=new S(w[f],[L,f],"Property",new F(w,f));else if(M(w[f]))m=new S(w[f],[L,f],null,new F(w,f));else continue;a.push(m)}}else M(w)&&a.push(new S(w,L,null,new F(l,L)))}}return v.root};function b(N,I){var P=new B;return P.traverse(N,I)}function J(N,I){var P=new B;return P.replace(N,I)}function $(N,I){var P;return P=C(I,function(u){return u.range[0]>N.range[0]}),N.extendedRange=[N.range[0],N.range[1]],P!==I.length&&(N.extendedRange[1]=I[P].range[0]),P-=1,P>=0&&(N.extendedRange[0]=I[P].range[1]),N}function ee(N,I,P){var a=[],u,l,x,d;if(!N.range)throw new Error("attachComments needs range information");if(!P.length){if(I.length){for(x=0,l=I.length;x<l;x+=1)u=E(I[x]),u.extendedRange=[0,N.range[0]],a.push(u);N.leadingComments=a}return N}for(x=0,l=I.length;x<l;x+=1)a.push($(E(I[x]),P));return d=0,b(N,{enter:function(m){for(var D;d<a.length&&(D=a[d],!(D.extendedRange[1]>m.range[0]));)D.extendedRange[1]===m.range[0]?(m.leadingComments||(m.leadingComments=[]),m.leadingComments.push(D),a.splice(d,1)):d+=1;if(d===a.length)return n.Break;if(a[d].extendedRange[0]>m.range[1])return n.Skip}}),d=0,b(N,{leave:function(m){for(var D;d<a.length&&(D=a[d],!(m.range[1]<D.extendedRange[0]));)m.range[1]===D.extendedRange[0]?(m.trailingComments||(m.trailingComments=[]),m.trailingComments.push(D),a.splice(d,1)):d+=1;if(d===a.length)return n.Break;if(a[d].extendedRange[0]>m.range[1])return n.Skip}}),N}return t.Syntax=i,t.traverse=b,t.replace=J,t.attachComments=ee,t.VisitorKeys=r,t.VisitorOption=n,t.Controller=B,t.cloneEnvironment=function(){return e({})},t})(s)})(ft)),ft}var _r=Rr();const gt=Ne(_r);function Ur(s,e){return _.getCurrentScope()?(_.onScopeDispose(s,e),!0):!1}const ui=typeof window<"u"&&typeof document<"u";typeof WorkerGlobalScope<"u"&&globalThis instanceof WorkerGlobalScope;const zr=Object.prototype.toString,Yr=s=>zr.call(s)==="[object Object]",yt=()=>{};function Xr(...s){if(s.length!==1)return _.toRef(...s);const e=s[0];return typeof e=="function"?_.readonly(_.customRef(()=>({get:e,set:yt}))):_.ref(e)}function Gr(s,e){function t(...i){return new Promise((n,r)=>{Promise.resolve(s(()=>e.apply(this,i),{fn:e,thisArg:this,args:i})).then(n).catch(r)})}return t}const ci=s=>s();function Jr(s,e={}){let t,i,n=yt;const r=h=>{clearTimeout(h),n(),n=yt};let o;return h=>{const E=_.toValue(s),C=_.toValue(e.maxWait);return t&&r(t),E<=0||C!==void 0&&C<=0?(i&&(r(i),i=void 0),Promise.resolve(h())):new Promise((F,S)=>{n=e.rejectOnCancel?S:F,o=h,C&&!i&&(i=setTimeout(()=>{t&&r(t),i=void 0,F(o())},C)),t=setTimeout(()=>{i&&r(i),i=void 0,F(h())},E)})}}function $r(s=ci,e={}){const{initialState:t="active"}=e,i=Xr(t==="active");function n(){i.value=!1}function r(){i.value=!0}const o=(...c)=>{i.value&&s(...c)};return{isActive:_.readonly(i),pause:n,resume:r,eventFilter:o}}function dt(s){return Array.isArray(s)?s:[s]}function Vr(s){return _.getCurrentInstance()}function li(s,e,t={}){const{eventFilter:i=ci,...n}=t;return _.watch(s,Gr(i,e),n)}function Kr(s,e,t={}){const{eventFilter:i,initialState:n="active",...r}=t,{eventFilter:o,pause:c,resume:h,isActive:E}=$r(i,{initialState:n});return{stop:li(s,e,{...r,eventFilter:o}),pause:c,resume:h,isActive:E}}const Wr=Kr;function hi(s,e=!0,t){Vr()?_.onMounted(s,t):e?s():_.nextTick(s)}function pi(s,e,t={}){const{debounce:i=0,maxWait:n=void 0,...r}=t;return li(s,e,{...r,eventFilter:Jr(i,{maxWait:n})})}function Hr(s,e,t){return _.watch(s,e,{...t,immediate:!0})}const ve=ui?window:void 0,qr=ui?window.document:void 0;function jr(s){var e;const t=_.toValue(s);return(e=t?.$el)!==null&&e!==void 0?e:t}function Ht(...s){const e=(i,n,r,o)=>(i.addEventListener(n,r,o),()=>i.removeEventListener(n,r,o)),t=_.computed(()=>{const i=dt(_.toValue(s[0])).filter(n=>n!=null);return i.every(n=>typeof n!="string")?i:void 0});return Hr(()=>{var i,n;return[(i=(n=t.value)===null||n===void 0?void 0:n.map(r=>jr(r)))!==null&&i!==void 0?i:[ve].filter(r=>r!=null),dt(_.toValue(t.value?s[1]:s[0])),dt(_.unref(t.value?s[2]:s[1])),_.toValue(t.value?s[3]:s[2])]},([i,n,r,o],c,h)=>{if(!i?.length||!n?.length||!r?.length)return;const E=Yr(o)?{...o}:o,C=i.flatMap(F=>n.flatMap(S=>r.map(B=>e(F,S,B,E))));h(()=>{C.forEach(F=>F())})},{flush:"post"})}const Ke=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},We="__vueuse_ssr_handlers__",Qr=Zr();function Zr(){return We in Ke||(Ke[We]=Ke[We]||{}),Ke[We]}function eo(s,e){return Qr[s]||e}function to(s){return s==null?"any":s instanceof Set?"set":s instanceof Map?"map":s instanceof Date?"date":typeof s=="boolean"?"boolean":typeof s=="string"?"string":typeof s=="object"?"object":Number.isNaN(s)?"any":"number"}const io={boolean:{read:s=>s==="true",write:s=>String(s)},object:{read:s=>JSON.parse(s),write:s=>JSON.stringify(s)},number:{read:s=>Number.parseFloat(s),write:s=>String(s)},any:{read:s=>s,write:s=>String(s)},string:{read:s=>s,write:s=>String(s)},map:{read:s=>new Map(JSON.parse(s)),write:s=>JSON.stringify(Array.from(s.entries()))},set:{read:s=>new Set(JSON.parse(s)),write:s=>JSON.stringify(Array.from(s))},date:{read:s=>new Date(s),write:s=>s.toISOString()}},qt="vueuse-storage";function so(s,e,t,i={}){var n;const{flush:r="pre",deep:o=!0,listenToStorageChanges:c=!0,writeDefaults:h=!0,mergeDefaults:E=!1,shallow:C,window:F=ve,eventFilter:S,onError:B=D=>{console.error(D)},initOnMounted:M}=i,T=(C?_.shallowRef:_.ref)(typeof e=="function"?e():e),O=_.computed(()=>_.toValue(s));if(!t)try{t=eo("getDefaultStorage",()=>ve?.localStorage)()}catch(D){B(D)}if(!t)return T;const b=_.toValue(e),J=to(b),$=(n=i.serializer)!==null&&n!==void 0?n:io[J],{pause:ee,resume:N}=Wr(T,D=>l(D),{flush:r,deep:o,eventFilter:S});_.watch(O,()=>d(),{flush:r});let I=!1;const P=D=>{M&&!I||d(D)},a=D=>{M&&!I||m(D)};F&&c&&(t instanceof Storage?Ht(F,"storage",P,{passive:!0}):Ht(F,qt,a)),M?hi(()=>{I=!0,d()}):d();function u(D,f){if(F){const p={key:O.value,oldValue:D,newValue:f,storageArea:t};F.dispatchEvent(t instanceof Storage?new StorageEvent("storage",p):new CustomEvent(qt,{detail:p}))}}function l(D){try{const f=t.getItem(O.value);if(D==null)u(f,null),t.removeItem(O.value);else{const p=$.write(D);f!==p&&(t.setItem(O.value,p),u(f,p))}}catch(f){B(f)}}function x(D){const f=D?D.newValue:t.getItem(O.value);if(f==null)return h&&b!=null&&t.setItem(O.value,$.write(b)),b;if(!D&&E){const p=$.read(f);return typeof E=="function"?E(p,b):J==="object"&&!Array.isArray(p)?{...b,...p}:p}else return typeof f!="string"?f:$.read(f)}function d(D){if(!(D&&D.storageArea!==t)){if(D&&D.key==null){T.value=b;return}if(!(D&&D.key!==O.value)){ee();try{const f=$.write(T.value);(D===void 0||D?.newValue!==f)&&(T.value=x(D))}catch(f){B(f)}finally{D?_.nextTick(N):N()}}}}function m(D){d(D.detail)}return T}function no(s,e,t={}){const{window:i=ve}=t;return so(s,e,i?.localStorage,t)}function At(s,e){const i=_.shallowReactive(new Map),n=(...C)=>JSON.stringify(C),r=(C,...F)=>(i.set(C,s(...F)),i.get(C)),o=(...C)=>r(n(...C),...C),c=(...C)=>{i.delete(n(...C))},h=()=>{i.clear()},E=(...C)=>{const F=n(...C);return i.has(F)?i.get(F):r(F,...C)};return E.load=o,E.delete=c,E.clear=h,E.generateKey=n,E.cache=i,E}let ro=0;function oo(s,e={}){const t=_.shallowRef(!1),{document:i=qr,immediate:n=!0,manual:r=!1,id:o=`vueuse_styletag_${++ro}`}=e,c=_.shallowRef(s);let h=()=>{};const E=()=>{if(!i)return;const F=i.getElementById(o)||i.createElement("style");F.isConnected||(F.id=o,e.nonce&&(F.nonce=e.nonce),e.media&&(F.media=e.media),i.head.appendChild(F)),!t.value&&(h=_.watch(c,S=>{F.textContent=S},{immediate:!0}),t.value=!0)},C=()=>{!i||!t.value||(h(),i.head.removeChild(i.getElementById(o)),t.value=!1)};return n&&!r&&hi(E),r||Ur(C),{id:o,css:c,unload:C,load:E,isLoaded:_.readonly(t)}}window._METHOD_DEBUG_=ri;const Pe=At(ho),_e=At(lo);function fi(s){return s.type===A.MemberExpression?`${s.object.type===A.MemberExpression?fi(s.object):s.object.name}.${s.property.name}`:s.type===A.Identifier?s.name:""}const ao=Object.getPrototypeOf(async function(){}).constructor;async function uo(s){let e=[];return s.length>0&&(e=await _gct.api.apaas.systemVar.getGetVarByKeys({keys:s.join(",")})),e}const co=At(uo);async function lo(s,e){const t=Pe(s,!0),i=t.filter(S=>g.innerVarIds.includes(S)).sort(),n=t.filter(S=>S.startsWith(g.SYSTEM_VAR_PREFIX)).sort(),r=await co([...i,...n]),o=ai(s);gt.replace(o,{enter(S){if(S.type===A.BinaryExpression){const{operator:B}=S,M=g.operator2FuncMap[B];return M?{type:A.CallExpression,arguments:[S.left,S.right],callee:{type:A.Identifier,name:M},optional:!1}:S}return S}}),gt.traverse(o,{enter:function(S){S.type===A.CallExpression&&S.callee.type===A.Identifier&&(S.callee.name=`await Methods.${S.callee.name}`)}});const c="",h={},E=[];r.forEach(S=>{E.push(`const ${S.key} = ${JSON.stringify(S.value)};`)}),Object.keys(e).map(S=>{if(S.includes(".")){const[B="",M]=S.split(".");h[B]||(E.push(`const ${B} = {};`),h[B]=!0),E.push(`${B}.${M} = ${JSON.stringify(e[S])};`)}else E.push(`const ${S} = ${JSON.stringify(e[S])};`)});const C=new ao("Methods",[...E,"return new Promise(async(resolve)=>{",`const res = ${c};`,"resolve(res);","})"].join(`
9
- `)),F=await C(ri);return console.info("【表达式】",s),console.info("【参数】",e),console.info("【执行语句】",C.toString()),console.info("【执行结果】",F),F}function ho(s,e=!1){const t=ai(s);let i=[];return gt.traverse(t,{enter:function(n){if(n.type===A.MemberExpression){const r=fi(n);i.push(r),Object.assign(n,{name:r,type:A.Identifier})}else n.type===A.Identifier&&i.push(n.name);e?i=i.filter(r=>!g.functionMap[r]&&r!=="undefined"):i=i.filter(r=>!g.functionMap[r]&&r!=="undefined"&&!g.innerVarIds.includes(r)&&!r.startsWith(g.SYSTEM_VAR_PREFIX)&&!r.startsWith("undefined."))}}),[...new Set(i)]}window.gct_expression={execute:_e,identify:Pe};function po(s,e,t=!1){if(t||s?.customApi?.value)return e(s);const i=5e3,n=typeof s=="object"?Di.stringify({...s,customApi:null}):s;let r=mt.get(n);return r||(r=(async()=>{try{return await e(s)}catch(o){throw mt.delete(n),o}})(),mt.set(n,r,i),r)}class mt{static cachedata={};static set(e,t,i){this.cachedata[e]={maxAge:i||0,value:t,now:Date.now()}}static get(e){this.reset();const t=this.cachedata[e];return t?t.value:null}static delete(e){return delete this.cachedata[e]}static clear(){this.cachedata={}}static reset(){for(const e in this.cachedata){const t=this.cachedata[e];t&&Date.now()-t.now>t.maxAge&&this.delete(e)}}}async function fo({ids:s,refOriginField:e,refOriginFieldType:t,model:i,foreignFields:n}){if(!s)return Promise.reject();const r=await mo({refOriginFieldType:t,modelKey:i,foreignFields:n,ids:s});if(r?.data)return ii(e,r.data,r.dict)}async function mo({refOriginFieldType:s,modelKey:e,foreignFields:t,ids:i}){if(s===g.FIELD_TYPE.RDO_REF){const{data:n={},dict:r={}}=await _gct.api.apaas.modelComprehensive.postBizServiceModelCategoryModelKeyBsKey({modelKey:e,bsKey:"rdoGetVersionByRefId",modelCategory:g.EntityModelCategoryEnum.ENTITY},{foreignFields:t},{refId:i});return{data:n,dict:r}}else{const{data:n={},dict:r={}}=await _gct.api.apaas.modelComprehensive.postBizServiceModelCategoryModelKeyBsKey({modelKey:e,bsKey:"getOne",modelCategory:g.EntityModelCategoryEnum.ENTITY},{query:{"id_.eq":i},foreignFields:t},{});return{data:n,dict:r}}}const Do=s=>po(s,fo),xo={[g.GLOBAL_VAR_TYPE.DATE]:{callback(s){return Y(s,["YYYY-MM-DD","YYYY/MM/DD"],!0).isValid()},message:"日期变量格式为YYYY-MM-DD,YYYY/MM/DD"},[g.GLOBAL_VAR_TYPE.TIME]:{callback(s){return Y(s,"HH:mm:ss",!0).isValid()},message:"时间变量格式HH:mm:ss"},[g.GLOBAL_VAR_TYPE.DATETIME]:{callback(s){return Y(s,["YYYY-MM-DD HH:mm:ss","YYYY/MM/DD HH:mm:ss"]).isValid()},message:"日期时间变量格式为YYYY-MM-DD HH:mm:ss,YYYY/MM/DD HH:mm:ss"}};function Eo(s,e){if(e===g.GLOBAL_VAR_TYPE.NULL)return!0;const{callback:t,message:i}=xo[e]||{callback(n){return Object.prototype.toString.call(n).slice(8,-1).toLowerCase()===e}};return t(s)?Promise.resolve():Promise.reject(i)}var Le=(s=>(s.SELECT_ID="$VAR_GCT_SELECT_ID",s))(Le||{});const jt=no("GCT_APP_GlobalCache",{}),go=s=>{const e=_.computed({get(){return jt.value[s]||{}},set(i){jt.value[s]=i}});return{selectID:_.computed({get(){return e.value[Le.SELECT_ID]},set(i){e.value[Le.SELECT_ID]?e.value[Le.SELECT_ID]=i:e.value={...e.value,[Le.SELECT_ID]:i}}}),cacheMap:e}};class Dt{static ENV;static AID;static userInfo;static runApp({userInfo:e,env:t,aid:i}){this.ENV=t,this.AID=i,this.userInfo=e}}const yo=({value:s,appredis:e,key:t,type:i})=>{const n=Dt.ENV!=="dev"?e:!1,r=`${Dt.AID}_${Dt.userInfo?.userId}`,{cacheMap:o}=go(r);return new Proxy({value:s,type:i},{get(h,E){return n&&E==="value"?o.value[t]:Reflect.get(h,E)},set(h,E,C,F){return n&&E==="value"&&(o.value[t]?o.value[t]=C:o.value={...o.value,[t]:C}),Reflect.set(h,E,C,F)}})},Co={web_module:{getPageInfo:_gct.api.apaas.webpage.getInfo},mobile_module:{getPageInfo:_gct.api.apaas.mobilePage.getInfo},pad_module:{getPageInfo:_gct.api.apaas.padPage.getInfo}},he=_.ref({}),Te=_.ref({}),Be=_.ref({});function Ao(s,e){Be.value[s]=e}const Ee=_.ref({pageStyle:{},pageConfig:{},pageName:""}),Fo=_.toRef(()=>{const{title:s}=Ee.value.pageConfig||{};return s});class oe{static modalsCache={};static pageID="";static permissions={};static ContextCache={};static startRuning=!1;static globalHookCaches={pageMounted:[],pageActivated:[],pageDestroyed:[]};static setModals(e){this.modalsCache={},e?.forEach(t=>{this.modalsCache[t.id]=t})}static async getModalById(e){if(!e)return Promise.reject();if(/^i?g_modal_/.test(e)&&!this.modalsCache[e]){const[i]=await _api.apaas.appGlobalSettings.getInfo({keys:e,fullInfo:!0})||[];if(i?.configJson){const n=JSON.parse(i.configJson);this.modalsCache[e]=n}}const t=this.modalsCache[e];return t||(console.error(`模态框${e}不存在`),Promise.reject())}static getPremission(e){if(!e)return!0;const t=this.permissions[e];return t?g.usePermissionStore().getPermissionByKey(this.pageID,t):!0}static setPremission(e,t){this.permissions[t]=e}static setContextByKey(e,t){t?this.ContextCache[t]=e:this.ContextCache={page:e}}static getContextByKey(e){return this.ContextCache[e||"page"]}static async initvars(){(await _gct.api.apaas.appGlobalSettings.getList({type:"var",fullInfo:!0})||[]).forEach(t=>{if(t.configJson)try{const i=JSON.parse(t.configJson);Te.value[i.key]=yo({value:i.defaultValue,appredis:i.appredis,key:i.key,type:i.type})}catch(i){console.error("initvars",i)}})}static async inithooks(){(await _gct.api.apaas.appGlobalSettings.getList({type:"event",fullInfo:!0})||[]).forEach(t=>{if(t.configJson)try{const i=new Function(JSON.parse(t.configJson).runJs),n=this.globalHookCaches[t.key];n&&n.push(i)}catch(i){console.error("inithooks",i)}})}static async initPermission(e){this.permissions=e||{}}static async initGlobalS(e){if(this.setModals(e.modals),e.pageVars?.forEach(t=>{he.value[t.key]={value:t.varInfo?.defaultValue,type:t.varInfo.type}}),!this.startRuning){this.startRuning=!0;try{await Promise.all([this.initvars(),this.inithooks()])}catch(t){console.log(t)}}}static getGlobalVar(e){const t=Te.value[e];return t?t.value:console.warn("变量key不存在")}static async setGlobalVar(e,t){const i=Te.value[e];if(!i)return console.warn("变量key不存在");i.value=t}static getPageVar(e){const t=he.value[e];return t?t.value:console.warn("变量key不存在")}static async setPageVar(e,t){const i=he.value[e];if(!i)return console.warn("变量key不存在");await Eo(t,i.type),he.value[e]&&(he.value[e].value=t)}static getPageGlobalVar(e){return he.value[e]?.value}static setPageGlobalVar(e,t){he.value[e]?he.value[e].value=t:he.value[e]={value:t,type:"string"}}static async initPageByid(e,t="web_module"){this.pageID=e;const i=Co[t].getPageInfo,n=await i({id:e}),{runtimeJson:r,name:o}=n||{};if(Ee.value.pageName=o,!r)return Promise.reject();const c=JSON.parse(r);return c.widgets.filter(h=>h.type!=="bottom-button-container").length?(await this.initGlobalS(c),Ee.value.pageConfig=c.pageConfig||{},Ee.value.pageStyle=c.pageStyle||{},{res:n,data:c,name:o}):Promise.reject()}static async initHistoryByid(e){this.pageID=e;const t=await _gct.api.apaas.pageDesignerLog.getInfo({id:e}),{runtimeJson:i,name:n}=t||{};if(!i)return Promise.reject();Ee.value.pageName=n;const r=JSON.parse(i);return await this.initGlobalS(r),Ee.value.pageConfig=r.pageConfig||{},Ee.value.pageStyle=r.pageStyle||{},{res:t,data:r,name:n}}static usePageHooks(e,t,i,n){const r=_.ref(!1);return _.onMounted(async()=>{await _.nextTick();const o=t?.pageBeforeMount;if(o?.name&&await e.runExportByName(o.name,o.extraParams),n&&await n(e),r.value=!0,i.pageMounted)for(const E of this.globalHookCaches.pageMounted)await E();const{extraParams:c,name:h}=t?.pageMounted||{};h&&e.runAsyncExportByName(h,c)}),_.onBeforeUnmount(async()=>{Ee.value={};const{extraParams:o,name:c}=t?.pageDestroyed||{};if(c&&e.runExportByName(c,o),i.pageDestroyed)for(const h of this.globalHookCaches.pageDestroyed)await h()}),_.onActivated(async()=>{if(oe.setContextByKey(e.context),i.pageActivated)for(const h of this.globalHookCaches.pageActivated)await h();const{extraParams:o,name:c}=t?.pageActivated||{};c&&e.runAsyncExportByName(c,o)}),{pageload:r}}}const tt=oe.getPremission.bind(oe);class So{isHandle=!1;buttonConfig={};fieldConfig={};processId="";dataId="";taskId;processInstanceId;refFormId;examineAndApproveState=g.ExamineAndApproveStateEnum.MY_CUSTOM;fieldStatus="";viewPageKey;isviewPage;isAPPviewPage;nonRelatedPerson=!1;constructor({taskId:e,processInstanceId:t,examineAndApproveState:i=g.ExamineAndApproveStateEnum.MY_CUSTOM,refFormId:n}){this.taskId=e,this.processInstanceId=t,this.examineAndApproveState=i,this.refFormId=n}async readyProcess(){const{taskId:e,processInstanceId:t}=this;if(this.examineAndApproveState===g.ExamineAndApproveStateEnum.MY_AGENT){await this.getDataInfo();const{node:i,processDefId:n,webViewPageKey:r,mobileViewPageKey:o}=await _gct.api.apaas.pmProcessEngine.getTaskExtension({taskId:e});this.transformByNode(i),this.processId=n;for(const c in this.buttonConfig)c===g.ButtonTypeEnum.Withdraw&&(this.buttonConfig[c].show=!1);this.viewPageKey=i?.webViewPageKey||r,this.isAPPviewPage=!!i?.mobileViewPageKey||!!o}if(this.examineAndApproveState===g.ExamineAndApproveStateEnum.MY_APPLICATION){await this.getDataInfo();const{node:i,processDefId:n,withdrawOp:r}=await _gct.api.apaas.pmProcessEngine.getInitialTaskExtension({processInstanceId:t})||{};this.transformByNode(i),this.processId=n;for(const o in this.buttonConfig)o===g.ButtonTypeEnum.End&&(this.buttonConfig[o].show=!1),o===g.ButtonTypeEnum.Withdraw&&(this.buttonConfig[o].show=!!r),o===g.ButtonTypeEnum.Resubmit&&(this.buttonConfig[o].show=!1)}if(this.examineAndApproveState===g.ExamineAndApproveStateEnum.MY_DONE){await this.getDataInfo();const{node:i,processDefId:n}=await _gct.api.apaas.pmProcessEngine.getHiTaskExtension({taskId:e});this.transformByNode(i),this.processId=n}if(this.examineAndApproveState===g.ExamineAndApproveStateEnum.MY_CUSTOM){await this.getDataInfo();const{node:i,processDefId:n,btnList:r,webViewPageKey:o,taskId:c,initiatorNode:h}=await _gct.api.apaas.pmProcessEngine.getProcInstExtension({procInstId:t}),E=r||[];this.withdrawByNode(h),this.transformByNode(i),this.processId=n;for(const C in this.buttonConfig){const F=C;this.buttonConfig[F].show&&(this.buttonConfig[F].show=E.includes(C))}if(!i){this.nonRelatedPerson=!0;return}!E.length||i?.key==="__initiator__"&&!c?this.isviewPage=!0:this.viewPageKey=i?.webViewPageKey||o}if(this.examineAndApproveState===g.ExamineAndApproveStateEnum.MY_CUSTOM_Modal){await this.getDataInfo();const{node:i,btnList:n,taskId:r,processDefId:o,initiatorNode:c}=await _gct.api.apaas.pmProcessEngine.getProcInstExtension({procInstId:t}),h=n||[];this.withdrawByNode(c),this.transformByNode(i),this.processId=o;for(const E in this.buttonConfig){const C=E;this.buttonConfig[C].show&&(this.buttonConfig[C].show=h.includes(E))}if(!i){this.nonRelatedPerson=!0;return}(!h.length||i?.key==="__initiator__"&&!r)&&(this.isviewPage=!0)}}withdrawByNode(e){if(!e)return;const{buttonConfig:t}=e;JSON.parse(t+"").forEach(n=>{const r=g.t(`sys.process.paasBpmnButtonEvent.${n.type}`);this.buttonConfig[n.type]={showModel:!1,title:g.t("sys.process.element.approval")+r,success:r+g.t("sys.success")+"!",show:n.enable,alias:n.alias,signature:!!n.signature,opinion:{},user:{}}})}transformByNode(e){if(e)try{const{opinionConfig:t,buttonConfig:i,fieldConfig:n}=e,r=JSON.parse(i||"[]"),o=JSON.parse(t||'{"enabled":false,"opinionType":[]}');r.forEach(c=>{const h=g.t(`sys.process.paasBpmnButtonEvent.${c.type}`);this.buttonConfig[c.type]={showModel:![g.ButtonTypeEnum.Resubmit,g.ButtonTypeEnum.Withdraw,g.ButtonTypeEnum.End].includes(c.type),title:g.t("sys.process.element.approval")+h,success:h+g.t("sys.success")+"!",show:c.enable,alias:c.alias,signature:!!c.signature,opinion:{show:o.enabled,required:wo(o.opinionType,c.type)},user:{show:[g.ButtonTypeEnum.Reassign,g.ButtonTypeEnum.Countersign].includes(c.type),multiple:g.ButtonTypeEnum.Countersign===c.type,label:g.t(`sys.process.user.${c.type}`)}}}),this.fieldConfig=JSON.parse(n+"")}catch(t){console.log("流程信息解析失败",t)}}async getDataInfo(){const{dataId:e}=await _gct.api.apaas.pmProcessEngine.getModel({processInstanceId:this.processInstanceId});this.dataId=e}filterButton(e){return this.nonRelatedPerson?[]:this.examineAndApproveState===g.ExamineAndApproveStateEnum.MY_DONE?[]:e.filter(t=>{if(t.type===g.FormComponents.ProcessApproveButton){const i=this.buttonConfig[t.props.action],n=!!i?.show;return n&&(t.props.title=i.alias),n}return!0})}useFieldWidget(e){if(this.nonRelatedPerson)return;const t=e.props.field,{fieldConfig:i,examineAndApproveState:n}=this;if(i&&i[t]){const{permission:r}=i[t];switch(r){case"disabled":e.props.disabled=!0,e.props.readonly=!1;break;case"editable":e.props.disabled=!1,e.props.readonly=!1;break;case"readonly":e.props.readonly=!0;break}}else e.props.readonly=!0;!e.props.disabled&&([g.ExamineAndApproveStateEnum.MY_APPLICATION,g.ExamineAndApproveStateEnum.MY_DONE].includes(n)||this.isviewPage)&&(e.props.readonly=!0)}useFieldToShow(e){const t=e.props.field,{fieldConfig:i}=this;if(i&&i[t]){const{permission:n}=i[t];n==="hidden"&&(e.props.hidden=!0)}}}function wo(s,e){if(s.includes(g.OpinionTypeEnum.Required))return!0;if(s.includes(g.OpinionTypeEnum.Optional))return!1;if(s.includes(g.OpinionTypeEnum.ApproveRequired)||s.includes(g.OpinionTypeEnum.ApproveRequired))return e===g.ButtonTypeEnum.Approve;if(s.includes(g.OpinionTypeEnum.CountersignRequired))return e===g.ButtonTypeEnum.Countersign;if(s.includes(g.OpinionTypeEnum.ReassignRequired))return e===g.ButtonTypeEnum.Reassign;if(s.includes(g.OpinionTypeEnum.RejectRequired))return e===g.ButtonTypeEnum.Reject;if(s.includes(g.OpinionTypeEnum.RefuseRequired))return e===g.ButtonTypeEnum.Refuse}const He=s=>(e,t={},i={},n={})=>s({modelKey:e.key,bsKey:e.action,modelCategory:e.modelCategory??g.EntityModelCategoryEnum.ENTITY},t,i,n),di={post:He(_gct.api.apaas.modelComprehensive.postBizServiceModelCategoryModelKeyBsKey),get:He(_gct.api.apaas.modelComprehensive.getBizServiceModelCategoryModelKeyBsKey),put:He(_gct.api.apaas.modelComprehensive.putBizServiceModelCategoryModelKeyBsKey),delete:He(_gct.api.apaas.modelComprehensive.deleteBizServiceModelCategoryModelKeyBsKey)};async function bo(s,e,t={}){const i=g.BizServiceEnum[s.action];return di[i](s,e,t)}async function ko(s,e,{body:t={},query:i={}}={},n={}){return await _gct.api.apaas.modelComprehensive.postBizServiceGeneralModelCategoryModelKeyBsKey({bsKey:e,modelKey:s,modelCategory:g.EntityModelCategoryEnum.ENTITY},i,t,n)}class vo{context;searchVNodes;cssData;pageKey;exports;#e;#t;ProcessAppRoved;pageLayoutMode;constructor({js:e,css:t,pageKey:i,ContextPc:n}){this.cssData=this.#i(t),this.searchVNodes={},this.exports={},this.#t={},this.#e={},this.context=new n({$ref:this.getComponent.bind(this),$asyncRef:this.getSyncComponent.bind(this)}),this.#s(e),oe.setContextByKey(this.context,i),this.pageKey=i}async runProcessBySaskId({taskId:e,processInstanceId:t,examineAndApproveState:i,refFormId:n}){this.ProcessAppRoved=new So({taskId:e,processInstanceId:t,examineAndApproveState:i,refFormId:n}),await this.ProcessAppRoved.readyProcess()}#i(e,t={}){if(!e)return;const{css:i,load:n,unload:r}=oo(e,t);return{css:i,load:n,unload:r}}runContext(e,t){this.context.gctWidgets[e]=t}async runEventByName(e,t={},...i){const n=t[e];let r;if(n){if(Array.isArray(n))r=await Bo(n,this.context,i);else{const o=this.exports[n.name];if(!o)throw`函数${n.name}不存在`;r=await o(...i,_.toRaw(n.extraParams))}return r}}async runExportByName(e,...t){try{const i=this.exports[e];if(!i)throw`函数${e}不存在`;return i(...t)}catch(i){console.error(i)}}async runAsyncExportByName(e,...t){try{const i=this.exports[e];if(!i)throw`函数${e}不存在`;return await this.getReadyByFun(i),i(...t)}catch(i){console.error(i)}}#s(e){if(e)try{new Function("exports","CTX",e)(this.exports,this.context)}catch(t){console.error(t,"createFunction")}}initNode(e,t){e&&(this.#t[e]=t,this.#r(e,t))}destroyNode(e){delete this.#t[e],delete this.#e[e]}initSearchs(e,t,i){if(e)if(this.searchVNodes[e]){const n=this.searchVNodes[e].find(r=>r.comId===i);n?n.callback=t:this.searchVNodes[e].push({callback:t,comId:i})}else this.searchVNodes[e]=[{callback:t,comId:i}]}cancelInitSearchs(e,t){!e||!this.searchVNodes[e]||(this.searchVNodes[e]=this.searchVNodes[e].filter(i=>i.comId!==t),this.searchVNodes[e].length===0&&delete this.searchVNodes[e])}runTableBySearch(e,t){(this.searchVNodes[e]||[]).forEach(({callback:n})=>n(t))}#n(e,t){const i=this.#t[e];i?t(e,i):this.#e[e]?this.#e[e].push(t):this.#e[e]=[t]}#r(e,t){this.#e[e]&&this.#e[e].forEach(i=>{i(t)})}getComponent(e){const t=this.#t[e];if(t)return new xt(e,t);console.error(e+"组件不存在或者未初始化")}getSyncComponent(e){if(!e)return Promise.reject("标识不能为空");const t=this.#t[e];return t?Promise.resolve(new xt(e,t)):new Promise((i,n)=>{const r=setTimeout(()=>{n(e+"不存在或者被隐藏")},3e4);this.#n(e,o=>{clearTimeout(r),i(new xt(e,o))})})}async getReadyByFun(e){if(typeof e!="function")return Promise.reject("参数必须是函数");const i=String(e).match(/\$ref\((["'A-Za-z0-9_-]+)\)/g)?.map(n=>{const r=n.match(/\$ref\(['|"]([A-Za-z0-9_-]+)['|"]\)/)?.[1];return this.getSyncComponent(r)})||[];await Promise.all(i)}async processHandle(e,{opinion:t,reassignId:i,signature:n,countersignUserIds:r,button:o}){const{taskId:c,processInstanceId:h}=this.ProcessAppRoved,E={procInstId:h,data:e,opinion:t,button:o,countersignUserIds:r,taskId:c,signature:n,reassignId:i};await _gct.api.apaas.pmProcessEngine.postProcExecute(E)}async checkedProcess(e){const{processId:t}=this.ProcessAppRoved||{};if(!t)return Promise.reject(g.t("sys.process.pleaseInitiateTheProcessFirst"));if(e!==t)return Promise.reject(g.t("sys.process.processInstanceMismatch"))}}class To{$ref;$asyncRef;$getModal;$closeModal;$push;$customBizService=di;$modelingTraceability;$modelingElectronicSignature;$documentPrint;$onlineFormModal;$eDHRFillFullScreenModal;$openDocumentFillingModal;$modelingSignatureConfirm;$routeQuery;gctWidgets={};$utility={_:Z,cloneDeep:Z.cloneDeep,differenceBy:Z.differenceBy,dayjs:Y,BigNumber:W,plus(e,t){return new W(e).plus(new W(t)).toNumber()},minus(e,t){return new W(e).minus(new W(t)).toNumber()},multipliedBy(e,t){return new W(e).multipliedBy(new W(t)).toNumber()},div(e,t){return new W(e).div(new W(t)).toNumber()},transformSourceData:ti,transformData:Ie};$httpBizService=bo;$request=ko;constructor({$ref:e,$asyncRef:t}){this.$asyncRef=t,this.$ref=e}$getPremission(e){return oe.getPremission(e)}$setPremission(e,t){oe.setPremission(e,t)}$getAppGlobalVar(e){return oe.getGlobalVar(e)}$setAppGlobalVar(e,t){oe.setGlobalVar(e,t)}$getPageGlobalVar(e){return oe.getPageGlobalVar(e)}$setPageGlobalVar(e,t){oe.setPageGlobalVar(e,t)}$getPageVar(e){return oe.getPageVar(e)}$setPageVar(e,t){oe.setPageVar(e,t)}$getCtxById(e){return oe.getContextByKey(e)}$setPropsByKey(e,t){const i=this.gctWidgets[e]?.props;if(i)for(const n in t)i[n]=t[n]}$getPropsByKey(e,t=[],i){const n=this.gctWidgets[e];if(!n)return{};const r=i||!n.props?n:n.props;return typeof t=="string"&&(t=[t]),t.reduce((o,c)=>(o[c]=r[c],o),{})}$loading}class xt{modelKey;getValue;setValue;submit;reload;key;constructor(e,t){this.key=e;const i=t.elRef;Object.keys(i).forEach(n=>{this[n]=i[n]})}}async function Bo(s,e,t){const i=s.map(Io.bind(e,t));await Promise.all(i)}async function Io(s,e){const{name:t,refId:i,scopeId:n,modalTitle:r}=e,o=r?.split(".")||[];let c;if(o.length>1){const h=this.gctWidgets?.[o[0]]||{},E=[];mi(E,h),c=E.find(C=>C.id===o[1])||{}}else o.length&&(c=this.gctWidgets?.[o[0]]);t===g.INNER_EVENT.OPEN_MODAL&&await this.$getModal(i).open({title:c?.props?.title}),t===g.INNER_EVENT.CLOSE_MODAL&&(i?await this.$getModal(i).close():await this.$closeModal()),t===g.INNER_EVENT.REFRESH_TABLE&&await(await this.$getCtxById(n).$asyncRef(i)).reload(s?s[0]:null)}function mi(s,e){const t=e.children||[];for(const i of t)i.type&&i.type==g.FormComponents.CustomButton?s.push(i):i.children?.length&&mi(s,i)}function Re({expression:s="",rowData:e=null},t){if(!s||s==="true"){t(!0);return}const i=Pe(s),n=i.reduce((c,h)=>{const E=h.split(".");return c[h]={formKey:E[0],itemKey:E[1]},c},{}),r=_.computed(()=>i.reduce((c,h)=>{const E=h.split("."),C=E[0]+"",F=E[1];if(F){const S=(e?e[F]:Be.value[C]?.[F])??"";c[C]?c[C][F]=S:c[C]={[F]:S}}else C.startsWith("$VAR_")||C.startsWith("$IVAR_")?c[C]=Te.value[C]?.value??"":(C.startsWith("$PAGERVAR_")||C.startsWith("$IPAGERVAR_"))&&(c[C]=he.value[C]?.value??"");return c},{}));function o(c){const h={};Object.keys(n).forEach(E=>{const{formKey:C,itemKey:F}=n[E],S=F?c[C]?.[F]:c[C];h[E]=S}),_e(s,h).then(t)}e&&o(r.value),pi(r,()=>{o(r.value)},{debounce:200,immediate:!e})}async function Qt({expression:s="",rowData:e=null}){if(!s||s==="true")return!0;const i=Pe(s).reduce((r,o)=>{const c=o.split(".");return r[o]={formKey:c[0],itemKey:c[1]},r},{}),n={};return Object.keys(i).forEach(r=>{const{formKey:o,itemKey:c}=i[r];let h="";o.startsWith("$VAR_")?h=Te.value[o]?.value??"":o.startsWith("$PAGERVAR_")?h=he.value[o]?.value??"":c?h=(e?e[c]:Be.value[o]?.[c])??"":h=(e?e[o]:Be.value[o])??"",n[r]=h}),_e(s,n)}function No(s,e){return tt(e)?s.displayType===g.DisplayType.CONFIG?_.toRef(()=>!s.hidden):Po(s):!1}function Po(s){const e=_.ref(!1);return Mo(s,t=>{e.value=!!t}),e}function Mo({displayRule:s,tableForm:e},t){if(!s)t(!0);else{const i=Pe(s),n=i.reduce((o,c)=>{const h=c.split(".");return o[c]={formKey:h[0],itemKey:h[1]},o},{}),r=_.toRef(()=>i.reduce((o,c)=>{const h=c.split("."),E=h[0]+"",C=h[1]+"",F={...e,...Be.value}[E]?.[C];return o[E]?o[E][C]=F:o[E]={[C]:F},o},{}));pi(r,()=>{Oo(r.value,n,s,o=>{t(o)})},{immediate:!0,debounce:300})}}function Oo(s,e,t,i){const n={};Object.keys(e).forEach(r=>{const{formKey:o,itemKey:c}=e[r],h=s?.[o]?.[c];n[r]=h}),_e(t,n).then(i)}function Lo(s){return s.props?.displayRule&&s.props?.displayType===g.DisplayType.RULE?No(s.props,s.id):Ft(s)}function Ft(s,e){if(!s.id)return!1;if(!tt(s.id))return s.props.hidden=!0,!1;const t=_.inject("useProcessFieldEvent",void 0);if(t)return t.useFieldToShow(s),!s.props.hidden;const{displayType:i,displayRule:n}=s.props||{},r=s.props.componentDependency?.configDependency||{},{value:o,expression:c}=r[g.Dependency_ENUM.HIDDEN]||{};return o&&c?(s.props.hidden=!0,Re({expression:c,rowData:e},h=>{s.props.hidden=!!h})):o?s.props.hidden=!0:i===g.DisplayType.RULE&&n&&(s.props.hidden=!0,Re({expression:n,rowData:e},h=>{s.props.hidden=!h})),_.toRef(()=>!s.props.hidden)}async function Ro(s,e){if(!s.id)return!1;if(!tt(s.id))return s.props.hidden=!0,!1;const t=_.inject("useProcessFieldEvent",void 0);if(t)return t.useFieldToShow(s),!s.props.hidden;const{displayType:i,displayRule:n}=s.props||{},r=s.props.componentDependency?.configDependency||{},{value:o,expression:c}=r[g.Dependency_ENUM.HIDDEN]||{};return o&&c?(s.props.hidden=!0,s.props.hidden=!!await Qt({expression:c,rowData:e})):o?s.props.hidden=!0:i===g.DisplayType.RULE&&n&&(s.props.hidden=!0,s.props.hidden=!!await Qt({expression:n,rowData:e})),!s.props.hidden}function _o(s,e){return s.forEach(t=>{Ft(t,e)}),_.toRef(()=>s.filter(t=>!t.props.hidden))}function Uo(s,e){const t=s.props.componentDependency?.configDependency||{},{value:i,expression:n}=t[g.Dependency_ENUM.HIDDEN]||{};i&&n&&Re({expression:n},r=>{e(r)}),e(s.props.hidden)}function zo(s){const e=s.props.componentDependency?.configDependency||{},{value:t,expression:i}=e[g.Dependency_ENUM.HIDDEN]||{};t&&i&&Re({expression:i},o=>{s.props.hidden=!!o});const{value:n,expression:r}=e[g.Dependency_ENUM.REQUIRED]||{};n&&r&&Re({expression:r},o=>{s.props.required=!!o})}function Yo(){_gct.register.render?console.warn("渲染注册已存在,可能存在重复注册问题,请检查是否有重复引入渲染包的情况"):_gct.register.render=new xi}exports.Context=To;exports.Events=vo;exports.FieldSchema=ei;exports.Globals=oe;exports.addDataByForm=Pi;exports.calculate=_e;exports.dependencyToShow=Ft;exports.dependencyToShowSync=Ro;exports.formMap=Be;exports.getPageTitle=Fo;exports.getPremission=tt;exports.getRefInfoId=Do;exports.globalVarCaches=Te;exports.identify=Pe;exports.initFieldWidgetRuntime=Ni;exports.onInit=Yo;exports.pageDataforJson=Ee;exports.pageGlobaVariables=he;exports.setDataByForm=Mi;exports.setFormData=Ao;exports.tableWidgetByDept=zo;exports.tableWidgetToShow=Uo;exports.transSelectData=ii;exports.transformData=Ie;exports.transformDataToDict=Oi;exports.transformPropsField=gi;exports.transformSourceData=ti;exports.useDependencyToShow=Lo;exports.useDependencyToShowList=_o;exports.useStyle=Ii;