@swagger-api/apidom-ast 0.78.0 → 0.80.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.
- package/CHANGELOG.md +8 -0
- package/cjs/traversal/visitor.cjs +6 -2
- package/cjs/yaml/errors/YamlTagError.cjs +1 -0
- package/cjs/yaml/schemas/failsafe/index.cjs +4 -2
- package/dist/apidom-ast.browser.js +12 -5
- package/dist/apidom-ast.browser.min.js +1 -1
- package/es/traversal/visitor.mjs +7 -3
- package/es/yaml/errors/YamlTagError.mjs +1 -0
- package/es/yaml/schemas/failsafe/index.mjs +4 -2
- package/package.json +3 -3
- package/types/dist.d.ts +3 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [0.80.0](https://github.com/swagger-api/apidom/compare/v0.79.0...v0.80.0) (2023-10-26)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @swagger-api/apidom-ast
|
9
|
+
|
10
|
+
# [0.79.0](https://github.com/swagger-api/apidom/compare/v0.78.0...v0.79.0) (2023-10-24)
|
11
|
+
|
12
|
+
**Note:** Version bump only for package @swagger-api/apidom-ast
|
13
|
+
|
6
14
|
# [0.78.0](https://github.com/swagger-api/apidom/compare/v0.77.0...v0.78.0) (2023-10-17)
|
7
15
|
|
8
16
|
### Bug Fixes
|
@@ -276,7 +276,9 @@ visitor, {
|
|
276
276
|
let result;
|
277
277
|
if (!Array.isArray(node)) {
|
278
278
|
if (!nodePredicate(node)) {
|
279
|
-
throw new _apidomError.
|
279
|
+
throw new _apidomError.ApiDOMStructuredError(`Invalid AST Node: ${String(node)}`, {
|
280
|
+
node
|
281
|
+
});
|
280
282
|
}
|
281
283
|
|
282
284
|
// cycle detected; skipping over a sub-tree to avoid recursion
|
@@ -426,7 +428,9 @@ visitor, {
|
|
426
428
|
let result;
|
427
429
|
if (!Array.isArray(node)) {
|
428
430
|
if (!nodePredicate(node)) {
|
429
|
-
throw new _apidomError.
|
431
|
+
throw new _apidomError.ApiDOMStructuredError(`Invalid AST Node: ${String(node)}`, {
|
432
|
+
node
|
433
|
+
});
|
430
434
|
}
|
431
435
|
|
432
436
|
// cycle detected; skipping over a sub-tree to avoid recursion
|
@@ -13,6 +13,7 @@ class YamlTagError extends _YamlSchemaError.default {
|
|
13
13
|
this.tagKind = structuredOptions.tagKind;
|
14
14
|
this.tagPosition = structuredOptions.tagPosition;
|
15
15
|
this.nodeCanonicalContent = structuredOptions.nodeCanonicalContent;
|
16
|
+
this.node = structuredOptions.node;
|
16
17
|
}
|
17
18
|
}
|
18
19
|
}
|
@@ -87,7 +87,8 @@ const FailsafeSchema = (0, _stampit.default)({
|
|
87
87
|
specificTagName,
|
88
88
|
explicitTagName: node.tag.explicitName,
|
89
89
|
tagKind: node.tag.kind,
|
90
|
-
tagPosition: (0, _ramda.clone)(node.tag.position)
|
90
|
+
tagPosition: (0, _ramda.clone)(node.tag.position),
|
91
|
+
node: node.clone()
|
91
92
|
});
|
92
93
|
}
|
93
94
|
|
@@ -98,7 +99,8 @@ const FailsafeSchema = (0, _stampit.default)({
|
|
98
99
|
explicitTagName: node.tag.explicitName,
|
99
100
|
tagKind: node.tag.kind,
|
100
101
|
tagPosition: (0, _ramda.clone)(node.tag.position),
|
101
|
-
nodeCanonicalContent: canonicalNode.content
|
102
|
+
nodeCanonicalContent: canonicalNode.content,
|
103
|
+
node: node.clone()
|
102
104
|
});
|
103
105
|
}
|
104
106
|
return tag.resolve(canonicalNode);
|
@@ -646,7 +646,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
646
646
|
/* harmony export */ mergeAll: () => (/* binding */ mergeAll),
|
647
647
|
/* harmony export */ visit: () => (/* binding */ visit)
|
648
648
|
/* harmony export */ });
|
649
|
-
/* harmony import */ var _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
649
|
+
/* harmony import */ var _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9985);
|
650
650
|
|
651
651
|
|
652
652
|
/**
|
@@ -917,7 +917,9 @@ visitor, {
|
|
917
917
|
let result;
|
918
918
|
if (!Array.isArray(node)) {
|
919
919
|
if (!nodePredicate(node)) {
|
920
|
-
throw new _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__["default"](`Invalid AST Node: ${
|
920
|
+
throw new _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__["default"](`Invalid AST Node: ${String(node)}`, {
|
921
|
+
node
|
922
|
+
});
|
921
923
|
}
|
922
924
|
|
923
925
|
// cycle detected; skipping over a sub-tree to avoid recursion
|
@@ -1065,7 +1067,9 @@ visitor, {
|
|
1065
1067
|
let result;
|
1066
1068
|
if (!Array.isArray(node)) {
|
1067
1069
|
if (!nodePredicate(node)) {
|
1068
|
-
throw new _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__["default"](`Invalid AST Node:
|
1070
|
+
throw new _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__["default"](`Invalid AST Node: ${String(node)}`, {
|
1071
|
+
node
|
1072
|
+
});
|
1069
1073
|
}
|
1070
1074
|
|
1071
1075
|
// cycle detected; skipping over a sub-tree to avoid recursion
|
@@ -1170,6 +1174,7 @@ class YamlTagError extends _YamlSchemaError__WEBPACK_IMPORTED_MODULE_0__["defaul
|
|
1170
1174
|
this.tagKind = structuredOptions.tagKind;
|
1171
1175
|
this.tagPosition = structuredOptions.tagPosition;
|
1172
1176
|
this.nodeCanonicalContent = structuredOptions.nodeCanonicalContent;
|
1177
|
+
this.node = structuredOptions.node;
|
1173
1178
|
}
|
1174
1179
|
}
|
1175
1180
|
}
|
@@ -2119,7 +2124,8 @@ const FailsafeSchema = stampit__WEBPACK_IMPORTED_MODULE_0___default()({
|
|
2119
2124
|
specificTagName,
|
2120
2125
|
explicitTagName: node.tag.explicitName,
|
2121
2126
|
tagKind: node.tag.kind,
|
2122
|
-
tagPosition: (0,ramda__WEBPACK_IMPORTED_MODULE_7__["default"])(node.tag.position)
|
2127
|
+
tagPosition: (0,ramda__WEBPACK_IMPORTED_MODULE_7__["default"])(node.tag.position),
|
2128
|
+
node: node.clone()
|
2123
2129
|
});
|
2124
2130
|
}
|
2125
2131
|
|
@@ -2130,7 +2136,8 @@ const FailsafeSchema = stampit__WEBPACK_IMPORTED_MODULE_0___default()({
|
|
2130
2136
|
explicitTagName: node.tag.explicitName,
|
2131
2137
|
tagKind: node.tag.kind,
|
2132
2138
|
tagPosition: (0,ramda__WEBPACK_IMPORTED_MODULE_7__["default"])(node.tag.position),
|
2133
|
-
nodeCanonicalContent: canonicalNode.content
|
2139
|
+
nodeCanonicalContent: canonicalNode.content,
|
2140
|
+
node: node.clone()
|
2134
2141
|
});
|
2135
2142
|
}
|
2136
2143
|
return tag.resolve(canonicalNode);
|
@@ -1 +1 @@
|
|
1
|
-
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.apidomAST=e():t.apidomAST=e()}(self,(()=>(()=>{var t={42:(t,e,r)=>{"use strict";var n=r(5846);t.exports=n},6791:(t,e,r)=>{"use strict";r(4339),r(4242),r(4016),r(8939),r(5454);var n=r(7545);t.exports=n.AggregateError},6762:(t,e,r)=>{"use strict";t.exports=r(3028)},3028:(t,e,r)=>{"use strict";r(2752);var n=r(42);t.exports=n},6235:(t,e,r)=>{"use strict";var n=r(6447),o=r(9288),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},7757:(t,e,r)=>{"use strict";var n=r(6447),o=String,i=TypeError;t.exports=function(t){if("object"==typeof t||n(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},7423:t=>{"use strict";t.exports=function(){}},1138:(t,e,r)=>{"use strict";var n=r(5744),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},8180:(t,e,r)=>{"use strict";var n=r(101),o=r(7739),i=r(4104),s=function(t){return function(e,r,s){var c,u=n(e),a=i(u),l=o(s,a);if(t&&r!=r){for(;a>l;)if((c=u[l++])!=c)return!0}else for(;a>l;l++)if((t||l in u)&&u[l]===r)return t||l||0;return!t&&-1}};t.exports={includes:s(!0),indexOf:s(!1)}},9272:(t,e,r)=>{"use strict";var n=r(4120),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},4696:(t,e,r)=>{"use strict";var n=r(3471),o=r(6447),i=r(9272),s=r(8182)("toStringTag"),c=Object,u="Arguments"===i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=c(t),s))?r:u?i(e):"Object"===(n=i(e))&&o(e.callee)?"Arguments":n}},7987:(t,e,r)=>{"use strict";var n=r(4500),o=r(3011),i=r(5141),s=r(2760);t.exports=function(t,e,r){for(var c=o(e),u=s.f,a=i.f,l=0;l<c.length;l++){var f=c[l];n(t,f)||r&&n(r,f)||u(t,f,a(e,f))}}},4635:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},7271:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},8711:(t,e,r)=>{"use strict";var n=r(69),o=r(2760),i=r(774);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},774:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},9362:(t,e,r)=>{"use strict";var n=r(8711);t.exports=function(t,e,r,o){return o&&o.enumerable?t[e]=r:n(t,e,r),t}},5098:(t,e,r)=>{"use strict";var n=r(8576),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},69:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},8382:t=>{"use strict";var e="object"==typeof document&&document.all,r=void 0===e&&void 0!==e;t.exports={all:e,IS_HTMLDDA:r}},7449:(t,e,r)=>{"use strict";var n=r(8576),o=r(5744),i=n.document,s=o(i)&&o(i.createElement);t.exports=function(t){return s?i.createElement(t):{}}},7365:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8989:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4218:(t,e,r)=>{"use strict";var n,o,i=r(8576),s=r(8989),c=i.process,u=i.Deno,a=c&&c.versions||u&&u.version,l=a&&a.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&s&&(!(n=s.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=s.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},2952:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},4503:(t,e,r)=>{"use strict";var n=r(4120),o=Error,i=n("".replace),s=String(new o("zxcasd").stack),c=/\n\s*at [^:]*:[^\n]*/,u=c.test(s);t.exports=function(t,e){if(u&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,c,"");return t}},8266:(t,e,r)=>{"use strict";var n=r(8711),o=r(4503),i=r(274),s=Error.captureStackTrace;t.exports=function(t,e,r,c){i&&(s?s(t,e):n(t,"stack",o(r,c)))}},274:(t,e,r)=>{"use strict";var n=r(6192),o=r(774);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},3085:(t,e,r)=>{"use strict";var n=r(8576),o=r(6298),i=r(4914),s=r(6447),c=r(5141).f,u=r(9245),a=r(7545),l=r(8043),f=r(8711),p=r(4500),y=function(t){var e=function(r,n,i){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,n)}return new t(r,n,i)}return o(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var r,o,h,g,d,v,m,b,S,x=t.target,w=t.global,O=t.stat,j=t.proto,A=w?n:O?n[x]:(n[x]||{}).prototype,E=w?a:a[x]||f(a,x,{})[x],T=E.prototype;for(g in e)o=!(r=u(w?g:x+(O?".":"#")+g,t.forced))&&A&&p(A,g),v=E[g],o&&(m=t.dontCallGetSet?(S=c(A,g))&&S.value:A[g]),d=o&&m?m:e[g],o&&typeof v==typeof d||(b=t.bind&&o?l(d,n):t.wrap&&o?y(d):j&&s(d)?i(d):d,(t.sham||d&&d.sham||v&&v.sham)&&f(b,"sham",!0),f(E,g,b),j&&(p(a,h=x+"Prototype")||f(a,h,{}),f(a[h],g,d),t.real&&T&&(r||!T[g])&&f(T,g,d)))}},6192:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},6298:(t,e,r)=>{"use strict";var n=r(2784),o=Function.prototype,i=o.apply,s=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?s.bind(i):function(){return s.apply(i,arguments)})},8043:(t,e,r)=>{"use strict";var n=r(4914),o=r(6235),i=r(2784),s=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?s(t,e):function(){return t.apply(e,arguments)}}},2784:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},8922:(t,e,r)=>{"use strict";var n=r(2784),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},2282:(t,e,r)=>{"use strict";var n=r(69),o=r(4500),i=Function.prototype,s=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),u=c&&"something"===function(){}.name,a=c&&(!n||n&&s(i,"name").configurable);t.exports={EXISTS:c,PROPER:u,CONFIGURABLE:a}},6419:(t,e,r)=>{"use strict";var n=r(4120),o=r(6235);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},4914:(t,e,r)=>{"use strict";var n=r(9272),o=r(4120);t.exports=function(t){if("Function"===n(t))return o(t)}},4120:(t,e,r)=>{"use strict";var n=r(2784),o=Function.prototype,i=o.call,s=n&&o.bind.bind(i,i);t.exports=n?s:function(t){return function(){return i.apply(t,arguments)}}},150:(t,e,r)=>{"use strict";var n=r(7545),o=r(8576),i=r(6447),s=function(t){return i(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?s(n[t])||s(o[t]):n[t]&&n[t][e]||o[t]&&o[t][e]}},8703:(t,e,r)=>{"use strict";var n=r(4696),o=r(5037),i=r(5646),s=r(7771),c=r(8182)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||s[n(t)]}},1669:(t,e,r)=>{"use strict";var n=r(8922),o=r(6235),i=r(1138),s=r(9288),c=r(8703),u=TypeError;t.exports=function(t,e){var r=arguments.length<2?c(t):e;if(o(r))return i(n(r,t));throw new u(s(t)+" is not iterable")}},5037:(t,e,r)=>{"use strict";var n=r(6235),o=r(5646);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},8576:function(t,e,r){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||function(){return this}()||this||Function("return this")()},4500:(t,e,r)=>{"use strict";var n=r(4120),o=r(1795),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},4535:t=>{"use strict";t.exports={}},7403:(t,e,r)=>{"use strict";var n=r(150);t.exports=n("document","documentElement")},188:(t,e,r)=>{"use strict";var n=r(69),o=r(6192),i=r(7449);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},2202:(t,e,r)=>{"use strict";var n=r(4120),o=r(6192),i=r(9272),s=Object,c=n("".split);t.exports=o((function(){return!s("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?c(t,""):s(t)}:s},2643:(t,e,r)=>{"use strict";var n=r(6447),o=r(5744),i=r(4469);t.exports=function(t,e,r){var s,c;return i&&n(s=e.constructor)&&s!==r&&o(c=s.prototype)&&c!==r.prototype&&i(t,c),t}},273:(t,e,r)=>{"use strict";var n=r(5744),o=r(8711);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},3326:(t,e,r)=>{"use strict";var n,o,i,s=r(5278),c=r(8576),u=r(5744),a=r(8711),l=r(4500),f=r(6434),p=r(9766),y=r(4535),h="Object already initialized",g=c.TypeError,d=c.WeakMap;if(s||f.state){var v=f.state||(f.state=new d);v.get=v.get,v.has=v.has,v.set=v.set,n=function(t,e){if(v.has(t))throw new g(h);return e.facade=t,v.set(t,e),e},o=function(t){return v.get(t)||{}},i=function(t){return v.has(t)}}else{var m=p("state");y[m]=!0,n=function(t,e){if(l(t,m))throw new g(h);return e.facade=t,a(t,m,e),e},o=function(t){return l(t,m)?t[m]:{}},i=function(t){return l(t,m)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!u(e)||(r=o(e)).type!==t)throw new g("Incompatible receiver, "+t+" required");return r}}}},6109:(t,e,r)=>{"use strict";var n=r(8182),o=r(7771),i=n("iterator"),s=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||s[i]===t)}},6447:(t,e,r)=>{"use strict";var n=r(8382),o=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===o}:function(t){return"function"==typeof t}},9245:(t,e,r)=>{"use strict";var n=r(6192),o=r(6447),i=/#|\.prototype\./,s=function(t,e){var r=u[c(t)];return r===l||r!==a&&(o(e)?n(e):!!e)},c=s.normalize=function(t){return String(t).replace(i,".").toLowerCase()},u=s.data={},a=s.NATIVE="N",l=s.POLYFILL="P";t.exports=s},5646:t=>{"use strict";t.exports=function(t){return null==t}},5744:(t,e,r)=>{"use strict";var n=r(6447),o=r(8382),i=o.all;t.exports=o.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:n(t)||t===i}:function(t){return"object"==typeof t?null!==t:n(t)}},5546:t=>{"use strict";t.exports=!0},3236:(t,e,r)=>{"use strict";var n=r(150),o=r(6447),i=r(8902),s=r(615),c=Object;t.exports=s?function(t){return"symbol"==typeof t}:function(t){var e=n("Symbol");return o(e)&&i(e.prototype,c(t))}},3442:(t,e,r)=>{"use strict";var n=r(8043),o=r(8922),i=r(1138),s=r(9288),c=r(6109),u=r(4104),a=r(8902),l=r(1669),f=r(8703),p=r(6639),y=TypeError,h=function(t,e){this.stopped=t,this.result=e},g=h.prototype;t.exports=function(t,e,r){var d,v,m,b,S,x,w,O=r&&r.that,j=!(!r||!r.AS_ENTRIES),A=!(!r||!r.IS_RECORD),E=!(!r||!r.IS_ITERATOR),T=!(!r||!r.INTERRUPTED),P=n(e,O),k=function(t){return d&&p(d,"normal",t),new h(!0,t)},N=function(t){return j?(i(t),T?P(t[0],t[1],k):P(t[0],t[1])):T?P(t,k):P(t)};if(A)d=t.iterator;else if(E)d=t;else{if(!(v=f(t)))throw new y(s(t)+" is not iterable");if(c(v)){for(m=0,b=u(t);b>m;m++)if((S=N(t[m]))&&a(g,S))return S;return new h(!1)}d=l(t,v)}for(x=A?t.next:d.next;!(w=o(x,d)).done;){try{S=N(w.value)}catch(t){p(d,"throw",t)}if("object"==typeof S&&S&&a(g,S))return S}return new h(!1)}},6639:(t,e,r)=>{"use strict";var n=r(8922),o=r(1138),i=r(5037);t.exports=function(t,e,r){var s,c;o(t);try{if(!(s=i(t,"return"))){if("throw"===e)throw r;return r}s=n(s,t)}catch(t){c=!0,s=t}if("throw"===e)throw r;if(c)throw s;return o(s),r}},5695:(t,e,r)=>{"use strict";var n=r(4413).IteratorPrototype,o=r(2853),i=r(774),s=r(1284),c=r(7771),u=function(){return this};t.exports=function(t,e,r,a){var l=e+" Iterator";return t.prototype=o(n,{next:i(+!a,r)}),s(t,l,!1,!0),c[l]=u,t}},5297:(t,e,r)=>{"use strict";var n=r(3085),o=r(8922),i=r(5546),s=r(2282),c=r(6447),u=r(5695),a=r(9341),l=r(4469),f=r(1284),p=r(8711),y=r(9362),h=r(8182),g=r(7771),d=r(4413),v=s.PROPER,m=s.CONFIGURABLE,b=d.IteratorPrototype,S=d.BUGGY_SAFARI_ITERATORS,x=h("iterator"),w="keys",O="values",j="entries",A=function(){return this};t.exports=function(t,e,r,s,h,d,E){u(r,e,s);var T,P,k,N=function(t){if(t===h&&D)return D;if(!S&&t&&t in F)return F[t];switch(t){case w:case O:case j:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",C=!1,F=t.prototype,I=F[x]||F["@@iterator"]||h&&F[h],D=!S&&I||N(h),L="Array"===e&&F.entries||I;if(L&&(T=a(L.call(new t)))!==Object.prototype&&T.next&&(i||a(T)===b||(l?l(T,b):c(T[x])||y(T,x,A)),f(T,M,!0,!0),i&&(g[M]=A)),v&&h===O&&I&&I.name!==O&&(!i&&m?p(F,"name",O):(C=!0,D=function(){return o(I,this)})),h)if(P={values:N(O),keys:d?D:N(w),entries:N(j)},E)for(k in P)(S||C||!(k in F))&&y(F,k,P[k]);else n({target:e,proto:!0,forced:S||C},P);return i&&!E||F[x]===D||y(F,x,D,{name:h}),g[e]=D,P}},4413:(t,e,r)=>{"use strict";var n,o,i,s=r(6192),c=r(6447),u=r(5744),a=r(2853),l=r(9341),f=r(9362),p=r(8182),y=r(5546),h=p("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=l(l(i)))!==Object.prototype&&(n=o):g=!0),!u(n)||s((function(){var t={};return n[h].call(t)!==t}))?n={}:y&&(n=a(n)),c(n[h])||f(n,h,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:g}},7771:t=>{"use strict";t.exports={}},4104:(t,e,r)=>{"use strict";var n=r(8445);t.exports=function(t){return n(t.length)}},7679:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},6016:(t,e,r)=>{"use strict";var n=r(4845);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},2853:(t,e,r)=>{"use strict";var n,o=r(1138),i=r(1187),s=r(2952),c=r(4535),u=r(7403),a=r(7449),l=r(9766),f="prototype",p="script",y=l("IE_PROTO"),h=function(){},g=function(t){return"<"+p+">"+t+"</"+p+">"},d=function(t){t.write(g("")),t.close();var e=t.parentWindow.Object;return t=null,e},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;v="undefined"!=typeof document?document.domain&&n?d(n):(e=a("iframe"),r="java"+p+":",e.style.display="none",u.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(g("document.F=Object")),t.close(),t.F):d(n);for(var o=s.length;o--;)delete v[f][s[o]];return v()};c[y]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(h[f]=o(t),r=new h,h[f]=null,r[y]=t):r=v(),void 0===e?r:i.f(r,e)}},1187:(t,e,r)=>{"use strict";var n=r(69),o=r(9600),i=r(2760),s=r(1138),c=r(101),u=r(7653);e.f=n&&!o?Object.defineProperties:function(t,e){s(t);for(var r,n=c(e),o=u(e),a=o.length,l=0;a>l;)i.f(t,r=o[l++],n[r]);return t}},2760:(t,e,r)=>{"use strict";var n=r(69),o=r(188),i=r(9600),s=r(1138),c=r(77),u=TypeError,a=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",y="writable";e.f=n?i?function(t,e,r){if(s(t),e=c(e),s(r),"function"==typeof t&&"prototype"===e&&"value"in r&&y in r&&!r[y]){var n=l(t,e);n&&n[y]&&(t[e]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return a(t,e,r)}:a:function(t,e,r){if(s(t),e=c(e),s(r),o)try{return a(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new u("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},5141:(t,e,r)=>{"use strict";var n=r(69),o=r(8922),i=r(6007),s=r(774),c=r(101),u=r(77),a=r(4500),l=r(188),f=Object.getOwnPropertyDescriptor;e.f=n?f:function(t,e){if(t=c(t),e=u(e),l)try{return f(t,e)}catch(t){}if(a(t,e))return s(!o(i.f,t,e),t[e])}},2092:(t,e,r)=>{"use strict";var n=r(7934),o=r(2952).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},4750:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},9341:(t,e,r)=>{"use strict";var n=r(4500),o=r(6447),i=r(1795),s=r(9766),c=r(4635),u=s("IE_PROTO"),a=Object,l=a.prototype;t.exports=c?a.getPrototypeOf:function(t){var e=i(t);if(n(e,u))return e[u];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof a?l:null}},8902:(t,e,r)=>{"use strict";var n=r(4120);t.exports=n({}.isPrototypeOf)},7934:(t,e,r)=>{"use strict";var n=r(4120),o=r(4500),i=r(101),s=r(8180).indexOf,c=r(4535),u=n([].push);t.exports=function(t,e){var r,n=i(t),a=0,l=[];for(r in n)!o(c,r)&&o(n,r)&&u(l,r);for(;e.length>a;)o(n,r=e[a++])&&(~s(l,r)||u(l,r));return l}},7653:(t,e,r)=>{"use strict";var n=r(7934),o=r(2952);t.exports=Object.keys||function(t){return n(t,o)}},6007:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},4469:(t,e,r)=>{"use strict";var n=r(6419),o=r(1138),i=r(7757);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return o(r),i(n),e?t(r,n):r.__proto__=n,r}}():void 0)},158:(t,e,r)=>{"use strict";var n=r(3471),o=r(4696);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},380:(t,e,r)=>{"use strict";var n=r(8922),o=r(6447),i=r(5744),s=TypeError;t.exports=function(t,e){var r,c;if("string"===e&&o(r=t.toString)&&!i(c=n(r,t)))return c;if(o(r=t.valueOf)&&!i(c=n(r,t)))return c;if("string"!==e&&o(r=t.toString)&&!i(c=n(r,t)))return c;throw new s("Can't convert object to primitive value")}},3011:(t,e,r)=>{"use strict";var n=r(150),o=r(4120),i=r(2092),s=r(4750),c=r(1138),u=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(c(t)),r=s.f;return r?u(e,r(t)):e}},7545:t=>{"use strict";t.exports={}},7656:(t,e,r)=>{"use strict";var n=r(2760).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},3209:(t,e,r)=>{"use strict";var n=r(5646),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},1284:(t,e,r)=>{"use strict";var n=r(3471),o=r(2760).f,i=r(8711),s=r(4500),c=r(158),u=r(8182)("toStringTag");t.exports=function(t,e,r,a){if(t){var l=r?t:t.prototype;s(l,u)||o(l,u,{configurable:!0,value:e}),a&&!n&&i(l,"toString",c)}}},9766:(t,e,r)=>{"use strict";var n=r(8717),o=r(2759),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},6434:(t,e,r)=>{"use strict";var n=r(8576),o=r(5098),i="__core-js_shared__",s=n[i]||o(i,{});t.exports=s},8717:(t,e,r)=>{"use strict";var n=r(5546),o=r(6434);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.33.0",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.33.0/LICENSE",source:"https://github.com/zloirock/core-js"})},863:(t,e,r)=>{"use strict";var n=r(4120),o=r(1941),i=r(4845),s=r(3209),c=n("".charAt),u=n("".charCodeAt),a=n("".slice),l=function(t){return function(e,r){var n,l,f=i(s(e)),p=o(r),y=f.length;return p<0||p>=y?t?"":void 0:(n=u(f,p))<55296||n>56319||p+1===y||(l=u(f,p+1))<56320||l>57343?t?c(f,p):n:t?a(f,p,p+2):l-56320+(n-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},6770:(t,e,r)=>{"use strict";var n=r(4218),o=r(6192),i=r(8576).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},7739:(t,e,r)=>{"use strict";var n=r(1941),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},101:(t,e,r)=>{"use strict";var n=r(2202),o=r(3209);t.exports=function(t){return n(o(t))}},1941:(t,e,r)=>{"use strict";var n=r(7679);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},8445:(t,e,r)=>{"use strict";var n=r(1941),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},1795:(t,e,r)=>{"use strict";var n=r(3209),o=Object;t.exports=function(t){return o(n(t))}},7888:(t,e,r)=>{"use strict";var n=r(8922),o=r(5744),i=r(3236),s=r(5037),c=r(380),u=r(8182),a=TypeError,l=u("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,u=s(t,l);if(u){if(void 0===e&&(e="default"),r=n(u,t,e),!o(r)||i(r))return r;throw new a("Can't convert object to primitive value")}return void 0===e&&(e="number"),c(t,e)}},77:(t,e,r)=>{"use strict";var n=r(7888),o=r(3236);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},3471:(t,e,r)=>{"use strict";var n={};n[r(8182)("toStringTag")]="z",t.exports="[object z]"===String(n)},4845:(t,e,r)=>{"use strict";var n=r(4696),o=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},9288:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},2759:(t,e,r)=>{"use strict";var n=r(4120),o=0,i=Math.random(),s=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+s(++o+i,36)}},615:(t,e,r)=>{"use strict";var n=r(6770);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},9600:(t,e,r)=>{"use strict";var n=r(69),o=r(6192);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5278:(t,e,r)=>{"use strict";var n=r(8576),o=r(6447),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},8182:(t,e,r)=>{"use strict";var n=r(8576),o=r(8717),i=r(4500),s=r(2759),c=r(6770),u=r(615),a=n.Symbol,l=o("wks"),f=u?a.for||a:a&&a.withoutSetter||s;t.exports=function(t){return i(l,t)||(l[t]=c&&i(a,t)?a[t]:f("Symbol."+t)),l[t]}},426:(t,e,r)=>{"use strict";var n=r(150),o=r(4500),i=r(8711),s=r(8902),c=r(4469),u=r(7987),a=r(7656),l=r(2643),f=r(6016),p=r(273),y=r(8266),h=r(69),g=r(5546);t.exports=function(t,e,r,d){var v="stackTraceLimit",m=d?2:1,b=t.split("."),S=b[b.length-1],x=n.apply(null,b);if(x){var w=x.prototype;if(!g&&o(w,"cause")&&delete w.cause,!r)return x;var O=n("Error"),j=e((function(t,e){var r=f(d?e:t,void 0),n=d?new x(t):new x;return void 0!==r&&i(n,"message",r),y(n,j,n.stack,2),this&&s(w,this)&&l(n,this,j),arguments.length>m&&p(n,arguments[m]),n}));if(j.prototype=w,"Error"!==S?c?c(j,O):u(j,O,{name:!0}):h&&v in x&&(a(j,x,v),a(j,x,"prepareStackTrace")),u(j,x),!g)try{w.name!==S&&i(w,"name",S),w.constructor=j}catch(t){}return j}}},4016:(t,e,r)=>{"use strict";var n=r(3085),o=r(150),i=r(6298),s=r(6192),c=r(426),u="AggregateError",a=o(u),l=!s((function(){return 1!==a([1]).errors[0]}))&&s((function(){return 7!==a([1],u,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:c(u,(function(t){return function(e,r){return i(t,this,arguments)}}),l,!0)})},3820:(t,e,r)=>{"use strict";var n=r(3085),o=r(8902),i=r(9341),s=r(4469),c=r(7987),u=r(2853),a=r(8711),l=r(774),f=r(273),p=r(8266),y=r(3442),h=r(6016),g=r(8182)("toStringTag"),d=Error,v=[].push,m=function(t,e){var r,n=o(b,this);s?r=s(new d,n?i(this):b):(r=n?this:u(b),a(r,g,"Error")),void 0!==e&&a(r,"message",h(e)),p(r,m,r.stack,1),arguments.length>2&&f(r,arguments[2]);var c=[];return y(t,v,{that:c}),a(r,"errors",c),r};s?s(m,d):c(m,d,{name:!0});var b=m.prototype=u(d.prototype,{constructor:l(1,m),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:m})},4242:(t,e,r)=>{"use strict";r(3820)},8939:(t,e,r)=>{"use strict";var n=r(101),o=r(7423),i=r(7771),s=r(3326),c=r(2760).f,u=r(5297),a=r(7271),l=r(5546),f=r(69),p="Array Iterator",y=s.set,h=s.getterFor(p);t.exports=u(Array,"Array",(function(t,e){y(this,{type:p,target:n(t),index:0,kind:e})}),(function(){var t=h(this),e=t.target,r=t.kind,n=t.index++;if(!e||n>=e.length)return t.target=void 0,a(void 0,!0);switch(r){case"keys":return a(n,!1);case"values":return a(e[n],!1)}return a([n,e[n]],!1)}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!l&&f&&"values"!==g.name)try{c(g,"name",{value:"values"})}catch(t){}},4339:(t,e,r)=>{"use strict";var n=r(3085),o=r(8576),i=r(6298),s=r(426),c="WebAssembly",u=o[c],a=7!==new Error("e",{cause:7}).cause,l=function(t,e){var r={};r[t]=s(t,e,a),n({global:!0,constructor:!0,arity:1,forced:a},r)},f=function(t,e){if(u&&u[t]){var r={};r[t]=s(c+"."+t,e,a),n({target:c,stat:!0,constructor:!0,arity:1,forced:a},r)}};l("Error",(function(t){return function(e){return i(t,this,arguments)}})),l("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),l("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),l("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),l("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),l("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),l("URIError",(function(t){return function(e){return i(t,this,arguments)}})),f("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),f("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),f("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},5454:(t,e,r)=>{"use strict";var n=r(863).charAt,o=r(4845),i=r(3326),s=r(5297),c=r(7271),u="String Iterator",a=i.set,l=i.getterFor(u);s(String,"String",(function(t){a(this,{type:u,string:o(t),index:0})}),(function(){var t,e=l(this),r=e.string,o=e.index;return o>=r.length?c(void 0,!0):(t=n(r,o),e.index+=t.length,c(t,!1))}))},2752:(t,e,r)=>{"use strict";r(4242)},162:(t,e,r)=>{"use strict";r(8939);var n=r(7365),o=r(8576),i=r(4696),s=r(8711),c=r(7771),u=r(8182)("toStringTag");for(var a in n){var l=o[a],f=l&&l.prototype;f&&i(f)!==u&&s(f,u,a),c[a]=c.Array}},5846:(t,e,r)=>{"use strict";r(2752);var n=r(6791);r(162),t.exports=n},6591:t=>{!function(){"use strict";var e,r,n,o,i,s="properties",c="deepProperties",u="propertyDescriptors",a="staticProperties",l="staticDeepProperties",f="staticPropertyDescriptors",p="configuration",y="deepConfiguration",h="deepProps",g="deepStatics",d="deepConf",v="initializers",m="methods",b="composers",S="compose";function x(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t):[])}function w(t,e){return Array.prototype.slice.call(arguments,2).reduce(t,e)}var O=w.bind(0,(function(t,e){if(e)for(var r=x(e),n=0;n<r.length;n+=1)Object.defineProperty(t,r[n],Object.getOwnPropertyDescriptor(e,r[n]));return t}));function j(t){return"function"==typeof t}function A(t){return t&&"object"==typeof t||j(t)}function E(t){return t&&"object"==typeof t&&t.__proto__==Object.prototype}var T=w.bind(0,(function t(r,n){if(n===e)return r;if(Array.isArray(n))return(Array.isArray(r)?r:[]).concat(n);if(!E(n))return n;for(var o,i,s=x(n),c=0;c<s.length;)o=s[c++],(i=Object.getOwnPropertyDescriptor(n,o)).hasOwnProperty("value")?i.value!==e&&(r[o]=t(E(r[o])||Array.isArray(n[o])?r[o]:{},n[o])):Object.defineProperty(r,o,i);return r}));function P(){return(r=Array.prototype.concat.apply([],arguments).filter((function(t,e,r){return j(t)&&r.indexOf(t)===e}))).length?r:e}function k(t,e){function n(r,n){A(e[r])&&(A(t[r])||(t[r]={}),(n||O)(t[r],e[r]))}function o(n){(r=P(t[n],e[n]))&&(t[n]=r)}return e&&A(e=e[S]||e)&&(n(m),n(s),n(c,T),n(u),n(a),n(l,T),n(f),n(p),n(y,T),o(v),o(b)),t}function N(){return function(t){return r=function t(r){var n,o,i=t[S]||{},a={__proto__:i[m]},l=i[v],f=Array.prototype.slice.apply(arguments),p=i[c];if(p&&T(a,p),(p=i[s])&&O(a,p),(p=i[u])&&Object.defineProperties(a,p),!l||!l.length)return a;for(r===e&&(r={}),i=0;i<l.length;)j(n=l[i++])&&(a=(o=n.call(a,r,{instance:a,stamp:t,args:f}))===e?a:o);return a},(n=t[l])&&T(r,n),(n=t[a])&&O(r,n),(n=t[f])&&Object.defineProperties(r,n),n=j(r[S])?r[S]:N,O(r[S]=function(){return n.apply(this,arguments)},t),r}(Array.prototype.concat.apply([this],arguments).reduce(k,{}))}function M(t){return j(t)&&j(t[S])}var C={};function F(t,i){return function(){return(o={})[t]=i.apply(e,Array.prototype.concat.apply([{}],arguments)),((r=this)&&r[S]||n).call(r,o)}}C[m]=F(m,O),C[s]=C.props=F(s,O),C[v]=C.init=F(v,P),C[b]=F(b,P),C[c]=C[h]=F(c,T),C[a]=C.statics=F(a,O),C[l]=C[g]=F(l,T),C[p]=C.conf=F(p,O),C[y]=C[d]=F(y,T),C[u]=F(u,O),C[f]=F(f,O),n=C[S]=O((function(){for(var t,x,w=0,j=[],E=arguments,k=this;w<E.length;)A(t=E[w++])&&j.push(M(t)?t:((o={})[m]=(x=t)[m]||e,n=x.props,o[s]=A((r=x[s])||n)?O({},n,r):e,o[v]=P(x.init,x[v]),o[b]=P(x[b]),n=x[h],o[c]=A((r=x[c])||n)?T({},n,r):e,o[u]=x[u],n=x.statics,o[a]=A((r=x[a])||n)?O({},n,r):e,n=x[g],o[l]=A((r=x[l])||n)?T({},n,r):e,r=x[f],o[f]=A((n=x.name&&{name:{value:x.name}})||r)?O({},r,n):e,n=x.conf,o[p]=A((r=x[p])||n)?O({},n,r):e,n=x[d],o[y]=A((r=x[y])||n)?T({},n,r):e,o));if(t=N.apply(k||i,j),k&&j.unshift(k),Array.isArray(E=t[S][b]))for(w=0;w<E.length;)t=M(k=E[w++]({stamp:t,composables:j}))?k:t;return t}),C),C.create=function(){return this.apply(e,arguments)},(o={})[a]=C,i=N(o),n[S]=n.bind(),n.version="4.3.2","object"!=typeof e?t.exports=n:self.stampit=n}()},2396:(t,e)=>{"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),e.errorMessages=e.ErrorType=void 0,function(t){t.MalformedUnicode="MALFORMED_UNICODE",t.MalformedHexadecimal="MALFORMED_HEXADECIMAL",t.CodePointLimit="CODE_POINT_LIMIT",t.OctalDeprecation="OCTAL_DEPRECATION",t.EndOfString="END_OF_STRING"}(r=e.ErrorType||(e.ErrorType={})),e.errorMessages=new Map([[r.MalformedUnicode,"malformed Unicode character escape sequence"],[r.MalformedHexadecimal,"malformed hexadecimal character escape sequence"],[r.CodePointLimit,"Unicode codepoint must not be greater than 0x10FFFF in escape sequence"],[r.OctalDeprecation,'"0"-prefixed octal literals and octal escape sequences are deprecated; for octal literals use the "0o" prefix instead'],[r.EndOfString,"malformed escape sequence at end of string"]])},2770:(t,e,r)=>{"use strict";e.S6=void 0;const n=r(2396);function o(t,e,r){const o=function(t){return t.match(/[^a-f0-9]/i)?NaN:parseInt(t,16)}(t);if(Number.isNaN(o)||void 0!==r&&r!==t.length)throw new SyntaxError(n.errorMessages.get(e));return o}function i(t,e){const r=o(t,n.ErrorType.MalformedUnicode,4);if(void 0!==e){const t=o(e,n.ErrorType.MalformedUnicode,4);return String.fromCharCode(r,t)}return String.fromCharCode(r)}const s=new Map([["b","\b"],["f","\f"],["n","\n"],["r","\r"],["t","\t"],["v","\v"],["0","\0"]]);const c=/\\(?:(\\)|x([\s\S]{0,2})|u(\{[^}]*\}?)|u([\s\S]{4})\\u([^{][\s\S]{0,3})|u([\s\S]{0,4})|([0-3]?[0-7]{1,2})|([\s\S])|$)/g;function u(t,e=!1){return t.replace(c,(function(t,r,c,u,a,l,f,p,y){if(void 0!==r)return"\\";if(void 0!==c)return function(t){const e=o(t,n.ErrorType.MalformedHexadecimal,2);return String.fromCharCode(e)}(c);if(void 0!==u)return function(t){if("{"!==(e=t).charAt(0)||"}"!==e.charAt(e.length-1))throw new SyntaxError(n.errorMessages.get(n.ErrorType.MalformedUnicode));var e;const r=o(t.slice(1,-1),n.ErrorType.MalformedUnicode);try{return String.fromCodePoint(r)}catch(t){throw t instanceof RangeError?new SyntaxError(n.errorMessages.get(n.ErrorType.CodePointLimit)):t}}(u);if(void 0!==a)return i(a,l);if(void 0!==f)return i(f);if("0"===p)return"\0";if(void 0!==p)return function(t,e=!1){if(e)throw new SyntaxError(n.errorMessages.get(n.ErrorType.OctalDeprecation));const r=parseInt(t,8);return String.fromCharCode(r)}(p,!e);if(void 0!==y)return h=y,s.get(h)||h;var h;throw new SyntaxError(n.errorMessages.get(n.ErrorType.EndOfString))}))}e.S6=u},1427:(t,e,r)=>{t.exports=r(6762)}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n].call(i.exports,i,i.exports,r),i.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};return(()=>{"use strict";r.r(n),r.d(n,{BREAK:()=>Pn,Error:()=>An,JsonArray:()=>C,JsonDocument:()=>p,JsonEscapeSequence:()=>R,JsonFalse:()=>q,JsonKey:()=>D,JsonNode:()=>i,JsonNull:()=>Y,JsonNumber:()=>_,JsonObject:()=>N,JsonProperty:()=>M,JsonString:()=>I,JsonStringContent:()=>L,JsonTrue:()=>U,JsonValue:()=>F,Literal:()=>wn,ParseResult:()=>En,Point:()=>On,Position:()=>jn,YamlAlias:()=>J,YamlAnchor:()=>vt,YamlCollection:()=>$,YamlComment:()=>V,YamlDirective:()=>K,YamlDocument:()=>W,YamlFailsafeSchema:()=>dn,YamlJsonSchema:()=>xn,YamlKeyValuePair:()=>lt,YamlMapping:()=>ft,YamlNode:()=>G,YamlNodeKind:()=>gt,YamlScalar:()=>pt,YamlSchemaError:()=>cr,YamlSequence:()=>yt,YamlStream:()=>ht,YamlStyle:()=>Q,YamlStyleGroup:()=>X,YamlTag:()=>dt,YamlTagError:()=>ur,cloneNode:()=>Mn,getNodeType:()=>kn,getVisitFn:()=>Tn,isJsonArray:()=>j,isJsonDocument:()=>m,isJsonEscapeSequence:()=>T,isJsonFalse:()=>S,isJsonKey:()=>k,isJsonNull:()=>w,isJsonNumber:()=>O,isJsonObject:()=>A,isJsonProperty:()=>P,isJsonString:()=>b,isJsonStringContent:()=>E,isJsonTrue:()=>x,isLiteral:()=>h,isNode:()=>Nn,isParseResult:()=>v,isPoint:()=>d,isPosition:()=>g,isYamlAlias:()=>ct,isYamlDirective:()=>ut,isYamlDocument:()=>et,isYamlKeyValuePair:()=>ot,isYamlMapping:()=>rt,isYamlScalar:()=>st,isYamlSequence:()=>nt,isYamlStream:()=>tt,isYamlTag:()=>it,mergeAllVisitors:()=>Cn,visit:()=>Fn});var t=r(6591),e=r.n(t);const o=e()({props:{type:null,position:null,children:[]},init({children:t=[],position:e=null,isMissing:r=!1}={},{stamp:n={}}){this.type=n.type,this.isMissing=r,this.children=t,this.position=e},methods:{clone(){const t=Object.create(Object.getPrototypeOf(this));return Object.getOwnPropertyNames(this).forEach((e=>{const r=Object.getOwnPropertyDescriptor(this,e);Object.defineProperty(t,e,r)})),t}}}),i=e()(o);function s(t){return null!=t&&"object"==typeof t&&!0===t["@@functional/placeholder"]}function c(t){return function e(r){return 0===arguments.length||s(r)?e:t.apply(this,arguments)}}function u(t){return function e(r,n){switch(arguments.length){case 0:return e;case 1:return s(r)?e:c((function(e){return t(r,e)}));default:return s(r)&&s(n)?e:s(r)?c((function(e){return t(e,n)})):s(n)?c((function(e){return t(r,e)})):t(r,n)}}}function a(t){return"[object String]"===Object.prototype.toString.call(t)}const l=u((function(t,e){var r=t<0?e.length+t:t;return a(e)?e.charAt(r):e[r]}));const f=l(0),p=e()(i,{statics:{type:"document"},methods:{get child(){return f(this.children)}}}),y=(t,e)=>e?.type===t,h=y.bind(void 0,"literal"),g=y.bind(void 0,"position"),d=y.bind(void 0,"point"),v=y.bind(void 0,"parseResult"),m=y.bind(void 0,"document"),b=y.bind(void 0,"string"),S=y.bind(void 0,"false"),x=y.bind(void 0,"true"),w=y.bind(void 0,"null"),O=y.bind(void 0,"number"),j=y.bind(void 0,"array"),A=y.bind(void 0,"object"),E=y.bind(void 0,"stringContent"),T=y.bind(void 0,"escapeSequence"),P=y.bind(void 0,"property"),k=y.bind(void 0,"key"),N=e()(i,{statics:{type:"object"},methods:{get properties(){return this.children.filter(P)}}}),M=e()(i,{statics:{type:"property"},methods:{get key(){return this.children.find(k)},get value(){return this.children.find((t=>S(t)||x(t)||w(t)||O(t)||b(t)||j(t)||A(t)))}}}),C=e()(i,{statics:{type:"array"},methods:{get items(){return this.children.filter((t=>S(t)||x(t)||w(t)||O(t)||b(t)||j(t)||A))}}}),F=e()(i,{statics:{type:"value"},props:{value:null},init({value:t=null}={}){this.value=t}}),I=e()(i,{statics:{type:"string"},methods:{get value(){return 1===this.children.length?this.children[0].value:this.children.filter((t=>E(t)||T(t))).reduce(((t,e)=>t+e.value),"")}}}),D=e()(I,{statics:{type:"key"}}),L=e()(F,{statics:{type:"stringContent"}}),R=e()(F,{statics:{type:"escapeSequence"}}),_=e()(F,{statics:{type:"number"}}),U=e()(F,{statics:{type:"true"}}),q=e()(F,{statics:{type:"false"}}),Y=e()(F,{statics:{type:"null"}}),J=e()(o,{statics:{type:"alias"},props:{content:null},init({content:t=null}={}){this.content=t}}),G=e()(o,{props:{anchor:null,tag:null,style:null,styleGroup:null},init({anchor:t=null,tag:e=null,style:r=null,styleGroup:n=null}={}){this.anchor=t,this.tag=e,this.style=r,this.styleGroup=n}}),$=e()(G,{}),V=e()(o,{statics:{type:"comment"},props:{content:null},init({content:t=null}={}){this.content=t}});function z(t,e){return Object.prototype.hasOwnProperty.call(e,t)}const B="function"==typeof Object.assign?Object.assign:function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1,n=arguments.length;r<n;){var o=arguments[r];if(null!=o)for(var i in o)z(i,o)&&(e[i]=o[i]);r+=1}return e};const H=u((function(t,e){return B({},t,e)})),K=e()(o,{statics:{type:"directive"},props:{name:null,parameters:null},init({name:t=null,parameters:e={}}={}){this.name=t,this.parameters=H({version:null,handle:null,prefix:null},e)}}),W=e()(o,{statics:{type:"document"}});let Q=function(t){return t.Plain="Plain",t.SingleQuoted="SingleQuoted",t.DoubleQuoted="DoubleQuoted",t.Literal="Literal",t.Folded="Folded",t.Explicit="Explicit",t.SinglePair="SinglePair",t.NextLine="NextLine",t.InLine="InLine",t}({}),X=function(t){return t.Flow="Flow",t.Block="Block",t}({});const Z=e()({props:{styleGroup:null,style:null}}),tt=y.bind(void 0,"stream"),et=y.bind(void 0,"document"),rt=y.bind(void 0,"mapping"),nt=y.bind(void 0,"sequence"),ot=y.bind(void 0,"keyValuePair"),it=y.bind(void 0,"tag"),st=y.bind(void 0,"scalar"),ct=y.bind(void 0,"alias"),ut=y.bind(void 0,"directive"),at=y.bind(void 0,"comment"),lt=e()(o,Z,{statics:{type:"keyValuePair"},propertyDescriptors:{key:{get(){return this.children.filter((t=>st(t)||rt(t)||nt(t)))[0]},enumerable:!0},value:{get(){const{key:t,children:e}=this;return e.filter((e=>(e=>e!==t)(e)&&(t=>st(t)||rt(t)||nt(t)||ct(t))(e)))[0]},enumerable:!0}}}),ft=e()($,{statics:{type:"mapping"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter(ot):[]},enumerable:!0}}}),pt=e()(G,{statics:{type:"scalar"},props:{content:""},init({content:t}={}){this.content=t}}),yt=e()($,{statics:{type:"sequence"},propertyDescriptors:{content:{get(){const{children:t}=this;return Array.isArray(t)?t.filter((t=>nt(t)||rt(t)||st(t)||ct(t))):[]},enumerable:!0}}}),ht=e()(o,{statics:{type:"stream"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter((t=>et(t)||at(t))):[]},enumerable:!0}}});let gt=function(t){return t.Scalar="Scalar",t.Sequence="Sequence",t.Mapping="Mapping",t}({});const dt=e()(o,{statics:{type:"tag"},props:{explicitName:"",kind:null},init({explicitName:t,kind:e}={}){this.explicitName=t,this.kind=e}}),vt=e()(o,{statics:{type:"anchor"},props:{name:null},init({name:t=null}={}){this.name=t}});const mt=c((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));function bt(t,e,r){if(r||(r=new St),function(t){var e=typeof t;return null==t||"object"!=e&&"function"!=e}(t))return t;var n,o=function(n){var o=r.get(t);if(o)return o;for(var i in r.set(t,n),t)Object.prototype.hasOwnProperty.call(t,i)&&(n[i]=e?bt(t[i],!0,r):t[i]);return n};switch(mt(t)){case"Object":return o(Object.create(Object.getPrototypeOf(t)));case"Array":return o([]);case"Date":return new Date(t.valueOf());case"RegExp":return n=t,new RegExp(n.source,n.flags?n.flags:(n.global?"g":"")+(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.sticky?"y":"")+(n.unicode?"u":"")+(n.dotAll?"s":""));case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":return t.slice();default:return t}}var St=function(){function t(){this.map={},this.length=0}return t.prototype.set=function(t,e){const r=this.hash(t);let n=this.map[r];n||(this.map[r]=n=[]),n.push([t,e]),this.length+=1},t.prototype.hash=function(t){let e=[];for(var r in t)e.push(Object.prototype.toString.call(t[r]));return e.join()},t.prototype.get=function(t){if(this.length<=180){for(const e in this.map){const r=this.map[e];for(let e=0;e<r.length;e+=1){const n=r[e];if(n[0]===t)return n[1]}}return}const e=this.hash(t),r=this.map[e];if(r)for(let e=0;e<r.length;e+=1){const n=r[e];if(n[0]===t)return n[1]}},t}();const xt=c((function(t){return null!=t&&"function"==typeof t.clone?t.clone():bt(t,!0)}));var wt=u((function(t,e){for(var r={},n={},o=0,i=t.length;o<i;)n[t[o]]=1,o+=1;for(var s in e)n.hasOwnProperty(s)||(r[s]=e[s]);return r}));const Ot=wt;const jt=c((function(t){return null==t}));var At=u((function(t,e){return!jt(e)&&t in e}));const Et=At;function Tt(t,e){switch(t){case 0:return function(){return e.apply(this,arguments)};case 1:return function(t){return e.apply(this,arguments)};case 2:return function(t,r){return e.apply(this,arguments)};case 3:return function(t,r,n){return e.apply(this,arguments)};case 4:return function(t,r,n,o){return e.apply(this,arguments)};case 5:return function(t,r,n,o,i){return e.apply(this,arguments)};case 6:return function(t,r,n,o,i,s){return e.apply(this,arguments)};case 7:return function(t,r,n,o,i,s,c){return e.apply(this,arguments)};case 8:return function(t,r,n,o,i,s,c,u){return e.apply(this,arguments)};case 9:return function(t,r,n,o,i,s,c,u,a){return e.apply(this,arguments)};case 10:return function(t,r,n,o,i,s,c,u,a,l){return e.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function Pt(t,e){return function(){return e.call(this,t.apply(this,arguments))}}function kt(t){return function e(r,n,o){switch(arguments.length){case 0:return e;case 1:return s(r)?e:u((function(e,n){return t(r,e,n)}));case 2:return s(r)&&s(n)?e:s(r)?u((function(e,r){return t(e,n,r)})):s(n)?u((function(e,n){return t(r,e,n)})):c((function(e){return t(r,n,e)}));default:return s(r)&&s(n)&&s(o)?e:s(r)&&s(n)?u((function(e,r){return t(e,r,o)})):s(r)&&s(o)?u((function(e,r){return t(e,n,r)})):s(n)&&s(o)?u((function(e,n){return t(r,e,n)})):s(r)?c((function(e){return t(e,n,o)})):s(n)?c((function(e){return t(r,e,o)})):s(o)?c((function(e){return t(r,n,e)})):t(r,n,o)}}}const Nt=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};const Mt=c((function(t){return!!Nt(t)||!!t&&("object"==typeof t&&(!a(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var Ct="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Ft(t,e,r){return function(n,o,i){if(Mt(i))return t(n,o,i);if(null==i)return o;if("function"==typeof i["fantasy-land/reduce"])return e(n,o,i,"fantasy-land/reduce");if(null!=i[Ct])return r(n,o,i[Ct]());if("function"==typeof i.next)return r(n,o,i);if("function"==typeof i.reduce)return e(n,o,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function It(t,e,r){for(var n=0,o=r.length;n<o;){if((e=t["@@transducer/step"](e,r[n]))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n+=1}return t["@@transducer/result"](e)}const Dt=u((function(t,e){return Tt(t.length,(function(){return t.apply(e,arguments)}))}));function Lt(t,e,r){for(var n=r.next();!n.done;){if((e=t["@@transducer/step"](e,n.value))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n=r.next()}return t["@@transducer/result"](e)}function Rt(t,e,r,n){return t["@@transducer/result"](r[n](Dt(t["@@transducer/step"],t),e))}const _t=Ft(It,Rt,Lt);var Ut=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,e){return this.f(t,e)},t}();function qt(t){return new Ut(t)}const Yt=kt((function(t,e,r){return _t("function"==typeof t?qt(t):t,e,r)}));function Jt(t,e){return function(){var r=arguments.length;if(0===r)return e();var n=arguments[r-1];return Nt(n)||"function"!=typeof n[t]?e.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,r-1))}}const Gt=kt(Jt("slice",(function(t,e,r){return Array.prototype.slice.call(r,t,e)})));const $t=c(Jt("tail",Gt(1,1/0)));function Vt(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return Tt(arguments[0].length,Yt(Pt,arguments[0],$t(arguments)))}const zt="function"==typeof Object.is?Object.is:function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};var Bt=function(t,e){switch(arguments.length){case 0:return Bt;case 1:return function e(r){return 0===arguments.length?e:zt(t,r)};default:return zt(t,e)}};const Ht=Bt;function Kt(t){for(var e,r=[];!(e=t.next()).done;)r.push(e.value);return r}function Wt(t,e,r){for(var n=0,o=r.length;n<o;){if(t(e,r[n]))return!0;n+=1}return!1}var Qt=Object.prototype.toString;const Xt=function(){return"[object Arguments]"===Qt.call(arguments)?function(t){return"[object Arguments]"===Qt.call(t)}:function(t){return z("callee",t)}}();var Zt=!{toString:null}.propertyIsEnumerable("toString"),te=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],ee=function(){return arguments.propertyIsEnumerable("length")}(),re=function(t,e){for(var r=0;r<t.length;){if(t[r]===e)return!0;r+=1}return!1},ne="function"!=typeof Object.keys||ee?c((function(t){if(Object(t)!==t)return[];var e,r,n=[],o=ee&&Xt(t);for(e in t)!z(e,t)||o&&"length"===e||(n[n.length]=e);if(Zt)for(r=te.length-1;r>=0;)z(e=te[r],t)&&!re(n,e)&&(n[n.length]=e),r-=1;return n})):c((function(t){return Object(t)!==t?[]:Object.keys(t)}));const oe=ne;function ie(t,e,r,n){var o=Kt(t);function i(t,e){return se(t,e,r.slice(),n.slice())}return!Wt((function(t,e){return!Wt(i,e,t)}),Kt(e),o)}function se(t,e,r,n){if(zt(t,e))return!0;var o,i,s=mt(t);if(s!==mt(e))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof e["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e)&&"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof e.equals)return"function"==typeof t.equals&&t.equals(e)&&"function"==typeof e.equals&&e.equals(t);switch(s){case"Arguments":case"Array":case"Object":if("function"==typeof t.constructor&&"Promise"===(o=t.constructor,null==(i=String(o).match(/^function (\w*)/))?"":i[1]))return t===e;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof e||!zt(t.valueOf(),e.valueOf()))return!1;break;case"Date":if(!zt(t.valueOf(),e.valueOf()))return!1;break;case"Error":return t.name===e.name&&t.message===e.message;case"RegExp":if(t.source!==e.source||t.global!==e.global||t.ignoreCase!==e.ignoreCase||t.multiline!==e.multiline||t.sticky!==e.sticky||t.unicode!==e.unicode)return!1}for(var c=r.length-1;c>=0;){if(r[c]===t)return n[c]===e;c-=1}switch(s){case"Map":return t.size===e.size&&ie(t.entries(),e.entries(),r.concat([t]),n.concat([e]));case"Set":return t.size===e.size&&ie(t.values(),e.values(),r.concat([t]),n.concat([e]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var u=oe(t);if(u.length!==oe(e).length)return!1;var a=r.concat([t]),l=n.concat([e]);for(c=u.length-1;c>=0;){var f=u[c];if(!z(f,e)||!se(e[f],t[f],a,l))return!1;c-=1}return!0}const ce=u((function(t,e){return se(t,e,[],[])}));function ue(t,e){return function(t,e,r){var n,o;if("function"==typeof t.indexOf)switch(typeof e){case"number":if(0===e){for(n=1/e;r<t.length;){if(0===(o=t[r])&&1/o===n)return r;r+=1}return-1}if(e!=e){for(;r<t.length;){if("number"==typeof(o=t[r])&&o!=o)return r;r+=1}return-1}return t.indexOf(e,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(e,r);case"object":if(null===e)return t.indexOf(e,r)}for(;r<t.length;){if(ce(t[r],e))return r;r+=1}return-1}(e,t,0)>=0}function ae(t,e){for(var r=0,n=e.length,o=Array(n);r<n;)o[r]=t(e[r]),r+=1;return o}function le(t){return'"'+t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var fe=function(t){return(t<10?"0":"")+t};const pe="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+fe(t.getUTCMonth()+1)+"-"+fe(t.getUTCDate())+"T"+fe(t.getUTCHours())+":"+fe(t.getUTCMinutes())+":"+fe(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function ye(t,e,r){for(var n=0,o=r.length;n<o;)e=t(e,r[n]),n+=1;return e}function he(t,e,r){return function(){if(0===arguments.length)return r();var n=arguments[arguments.length-1];if(!Nt(n)){for(var o=0;o<t.length;){if("function"==typeof n[t[o]])return n[t[o]].apply(n,Array.prototype.slice.call(arguments,0,-1));o+=1}if(function(t){return null!=t&&"function"==typeof t["@@transducer/step"]}(n))return e.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return r.apply(this,arguments)}}const ge=function(){return this.xf["@@transducer/init"]()},de=function(t){return this.xf["@@transducer/result"](t)};var ve=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=ge,t.prototype["@@transducer/result"]=de,t.prototype["@@transducer/step"]=function(t,e){return this.f(e)?this.xf["@@transducer/step"](t,e):t},t}();function me(t){return function(e){return new ve(t,e)}}const be=u(he(["fantasy-land/filter","filter"],me,(function(t,e){return r=e,"[object Object]"===Object.prototype.toString.call(r)?ye((function(r,n){return t(e[n])&&(r[n]=e[n]),r}),{},oe(e)):function(t,e){for(var r=0,n=e.length,o=[];r<n;)t(e[r])&&(o[o.length]=e[r]),r+=1;return o}(t,e);var r})));const Se=u((function(t,e){return be((r=t,function(){return!r.apply(this,arguments)}),e);var r}));function xe(t,e){var r=function(r){var n=e.concat([t]);return ue(r,n)?"<Circular>":xe(r,n)},n=function(t,e){return ae((function(e){return le(e)+": "+r(t[e])}),e.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+ae(r,t).join(", ")+"))";case"[object Array]":return"["+ae(r,t).concat(n(t,Se((function(t){return/^\d+$/.test(t)}),oe(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+r(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?r(NaN):le(pe(t)))+")";case"[object Map]":return"new Map("+r(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+r(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+r(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+r(t.valueOf())+")":le(t);case"[object Undefined]":return"undefined";default:if("function"==typeof t.toString){var o=t.toString();if("[object Object]"!==o)return o}return"{"+n(t,oe(t)).join(", ")+"}"}}const we=c((function(t){return xe(t,[])})),Oe=Number.isInteger||function(t){return t<<0===t};const je=u((function(t,e){return t.map((function(t){for(var r,n=e,o=0;o<t.length;){if(null==n)return;r=t[o],n=Oe(r)?l(r,n):n[r],o+=1}return n}))}));const Ae=u((function(t,e){return je([t],e)[0]}));const Ee=kt((function(t,e,r){return t(Ae(e,r))}));function Te(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e||"[object AsyncFunction]"===e||"[object GeneratorFunction]"===e||"[object AsyncGeneratorFunction]"===e}const Pe=u((function(t,e){return t&&e}));function ke(t,e,r){for(var n=r.next();!n.done;)e=t(e,n.value),n=r.next();return e}function Ne(t,e,r,n){return r[n](t,e)}const Me=Ft(ye,Ne,ke);var Ce=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=ge,t.prototype["@@transducer/result"]=de,t.prototype["@@transducer/step"]=function(t,e){return this.xf["@@transducer/step"](t,this.f(e))},t}();const Fe=function(t){return function(e){return new Ce(t,e)}};function Ie(t,e,r){return function(){for(var n=[],o=0,i=t,c=0,u=!1;c<e.length||o<arguments.length;){var a;c<e.length&&(!s(e[c])||o>=arguments.length)?a=e[c]:(a=arguments[o],o+=1),n[c]=a,s(a)?u=!0:i-=1,c+=1}return!u&&i<=0?r.apply(this,n):Tt(Math.max(0,i),Ie(t,n,r))}}const De=u((function(t,e){return 1===t?c(e):Tt(t,Ie(t,[],e))}));const Le=u(he(["fantasy-land/map","map"],Fe,(function(t,e){switch(Object.prototype.toString.call(e)){case"[object Function]":return De(e.length,(function(){return t.call(this,e.apply(this,arguments))}));case"[object Object]":return ye((function(r,n){return r[n]=t(e[n]),r}),{},oe(e));default:return ae(t,e)}})));const Re=u((function(t,e){return"function"==typeof e["fantasy-land/ap"]?e["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(e):"function"==typeof t?function(r){return t(r)(e(r))}:Me((function(t,r){return function(t,e){var r;e=e||[];var n=(t=t||[]).length,o=e.length,i=[];for(r=0;r<n;)i[i.length]=t[r],r+=1;for(r=0;r<o;)i[i.length]=e[r],r+=1;return i}(t,Le(r,e))}),[],t)}));const _e=u((function(t,e){var r=De(t,e);return De(t,(function(){return ye(Re,Le(r,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const Ue=c((function(t){return _e(t.length,t)}));const qe=u((function(t,e){return Te(t)?function(){return t.apply(this,arguments)&&e.apply(this,arguments)}:Ue(Pe)(t,e)}));const Ye=ce(null);const Je=Ue(c((function(t){return!t})));var Ge=Je(Ye);function $e(t){return $e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},$e(t)}const Ve=De(1,qe(Ge,(function(t){return"object"===$e(t)})));const ze=u((function(t,e){if(t===e)return e;function r(t,e){if(t>e!=e>t)return e>t?e:t}var n=r(t,e);if(void 0!==n)return n;var o=r(typeof t,typeof e);if(void 0!==o)return o===typeof t?t:e;var i=we(t),s=r(i,we(e));return void 0!==s&&s===i?t:e}));const Be=u((function(t,e){if(null!=e)return Oe(t)?l(t,e):e[t]}));const He=u((function(t,e){return Le(Be(t),e)}));const Ke=c((function(t){return De(Yt(ze,0,He("length",t)),(function(){for(var e=0,r=t.length;e<r;){if(t[e].apply(this,arguments))return!0;e+=1}return!1}))}));const We=De(1,Vt(mt,Ht("GeneratorFunction")));const Qe=De(1,Vt(mt,Ht("AsyncFunction")));const Xe=Ke([Vt(mt,Ht("Function")),We,Qe]);var Ze=Vt(mt,Ht("Object")),tr=Ee(qe(Xe,Vt(we,ce(we(Object)))),["constructor"]);const er=De(1,(function(t){if(!Ve(t)||!Ze(t))return!1;var e=Object.getPrototypeOf(t);return!!Ye(e)||tr(e)}));var rr=r(1427);const nr=class extends rr{constructor(t,e,r){if(super(t,e,r),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,er(r)&&Et("cause",r)&&!Et("cause",this)){const{cause:t}=r;this.cause=t,t instanceof Error&&Et("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}};class or extends Error{static[Symbol.hasInstance](t){return super[Symbol.hasInstance](t)||Function.prototype[Symbol.hasInstance].call(nr,t)}constructor(t,e){if(super(t,e),this.name=this.constructor.name,"string"==typeof t&&(this.message=t),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(t).stack,er(e)&&Et("cause",e)&&!Et("cause",this)){const{cause:t}=e;this.cause=t,t instanceof Error&&Et("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}}const ir=or;const sr=class extends ir{constructor(t,e){super(t,e),void 0!==e&&Object.assign(this,Ot(["cause"],e))}};const cr=class extends sr{};const ur=class extends cr{constructor(t,e){super(t,e),void 0!==e&&(this.specificTagName=e.specificTagName,this.explicitTagName=e.explicitTagName,this.tagKind=e.tagKind,this.tagPosition=e.tagPosition,this.nodeCanonicalContent=e.nodeCanonicalContent)}};const ar=u((function(t,e){return null==e||e!=e?t:e}));const lr=kt((function(t,e,r){return ar(t,Ae(e,r))}));const fr=c((function(t){return De(t.length,t)}));var pr="\t\n\v\f\r \u2028\u2029\ufeff";const yr=c("function"==typeof String.prototype.trim&&!pr.trim()&&"".trim()?function(t){return t.trim()}:function(t){var e=new RegExp("^["+pr+"]["+pr+"]*"),r=new RegExp("["+pr+"]["+pr+"]*$");return t.replace(e,"").replace(r,"")});const hr=u((function(t,e){return De(t+1,(function(){var r=arguments[t];if(null!=r&&Te(r[e]))return r[e].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(we(r)+' does not have a method named "'+e+'"')}))}));const gr=hr(1,"split");const dr=hr(1,"join");const vr=c((function(t){return a(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()}));function mr(){if(0===arguments.length)throw new Error("compose requires at least one argument");return Vt.apply(this,vr(arguments))}const br=De(4,(function(t,e,r,n){return _t(t("function"==typeof e?qt(e):e),r,n)}));const Sr=u((function(t,e){if(Nt(t)){if(Nt(e))return t.concat(e);throw new TypeError(we(e)+" is not an array")}if(a(t)){if(a(e))return t+e;throw new TypeError(we(e)+" is not a string")}if(null!=t&&Te(t["fantasy-land/concat"]))return t["fantasy-land/concat"](e);if(null!=t&&Te(t.concat))return t.concat(e);throw new TypeError(we(t)+' does not have a method named "concat" or "fantasy-land/concat"')}));const xr=ce("");const wr=u((function(t,e){return De(Yt(ze,0,He("length",e)),(function(){var r=arguments,n=this;return t.apply(n,ae((function(t){return t.apply(n,r)}),e))}))}));function Or(t){return t}const jr=c(Or);const Ar=De(1,Vt(mt,Ht("Number")));var Er=qe(Ar,isFinite);var Tr=De(1,Er);const Pr=Xe(Number.isFinite)?De(1,Dt(Number.isFinite,Number)):Tr;var kr=qe(Pr,wr(ce,[Math.floor,jr]));var Nr=De(1,kr);const Mr=Xe(Number.isInteger)?De(1,Dt(Number.isInteger,Number)):Nr;const Cr=c((function(t){return De(t.length,(function(e,r){var n=Array.prototype.slice.call(arguments,0);return n[0]=r,n[1]=e,t.apply(this,n)}))}));const Fr=Je(Pr);const Ir=De(1,qe(Ar,u((function(t,e){return t>e}))(0)));var Dr=fr((function(t,e){var r=Number(e);if(r!==e&&(r=0),Ir(r))throw new RangeError("repeat count must be non-negative");if(Fr(r))throw new RangeError("repeat count must be less than infinity");if(r=Math.floor(r),0===t.length||0===r)return"";if(t.length*r>=1<<28)throw new RangeError("repeat count must not overflow maximum string size");var n=t.length*r;r=Math.floor(Math.log(r)/Math.log(2));for(var o=t;r;)o+=t,r-=1;return o+=o.substring(0,n-o.length)})),Lr=Cr(hr(1,"repeat"));const Rr=Xe(String.prototype.repeat)?Lr:Dr;var _r=c((function(t){return function(){return t}}))(void 0);const Ur=ce(_r());const qr=kt((function(t,e,r){return r.replace(t,e)}));var Yr=qr(/[\s\uFEFF\xA0]+$/,""),Jr=hr(0,"trimEnd");const Gr=Xe(String.prototype.trimEnd)?Jr:Yr;var $r=qr(/^[\s\uFEFF\xA0]+/,""),Vr=hr(0,"trimStart");const zr=Xe(String.prototype.trimStart)?Vr:$r;var Br=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=ge,t.prototype["@@transducer/result"]=de,t.prototype["@@transducer/step"]=function(t,e){if(this.f){if(this.f(e))return t;this.f=null}return this.xf["@@transducer/step"](t,e)},t}();function Hr(t){return function(e){return new Br(t,e)}}const Kr=u(he(["dropWhile"],Hr,(function(t,e){for(var r=0,n=e.length;r<n&&t(e[r]);)r+=1;return Gt(r,1/0,e)})));const Wr=Cr(u(ue));const Qr=fr((function(t,e){return Vt(gr(""),Kr(Wr(t)),dr(""))(e)}));const Xr=Cr(Sr);var Zr=r(2770);const tn=/^(?<style>[|>])(?<chomping>[+-]?)(?<indentation>[0-9]*)\s/,en=t=>{const e=(t=>{const e=t.match(tn),r=lr("",["groups","indentation"],e);return xr(r)?void 0:parseInt(r,10)})(t);if(Mr(e))return Rr(" ",e);const r=lr("",[1],t.split("\n")),n=lr(0,["groups","indentation","length"],r.match(/^(?<indentation>[ ]*)/));return Rr(" ",n)},rn=t=>{const e=t.match(tn),r=lr("",["groups","chomping"],e);return xr(r)?void 0:r},nn=(t,e)=>Ur(t)?`${Gr(e)}\n`:"-"===t?Gr(e):e,on=t=>t.replace(/\r\n/g,"\n"),sn=t=>t.replace(/(\n)?\n([^\n]+)/g,((t,e,r)=>e?t:` ${r.trimStart()}`)).replace(/[\n]{2}/g,"\n"),cn=fr(((t,e)=>e.replace(new RegExp(`^${t}`),"").replace(new RegExp(`${t}$`),""))),un=Vt(on,yr,sn,gr("\n"),Le(zr),dr("\n")),an=Vt(on,yr,cn("'"),sn,gr("\n"),Le(zr),dr("\n")),ln=Vt(on,yr,cn('"'),(t=>t.replace(/\\\n\s*/g,"")),sn,Zr.S6,gr("\n"),Le(zr),dr("\n")),fn=e()({methods:{test:t=>t.tag.kind===gt.Scalar&&"string"==typeof t.content,canonicalFormat(t){let e=t.content;const r=t.clone();return t.style===Q.Plain?e=un(t.content):t.style===Q.SingleQuoted?e=an(t.content):t.style===Q.DoubleQuoted?e=ln(t.content):t.style===Q.Literal?e=(t=>{const e=en(t),r=rn(t),n=on(t),o=$t(n.split("\n")),i=mr(Le(Qr(e)),Le(Xr("\n"))),s=br(i,Sr,"",o);return nn(r,s)})(t.content):t.style===Q.Folded&&(e=(t=>{const e=en(t),r=rn(t),n=on(t),o=$t(n.split("\n")),i=mr(Le(Qr(e)),Le(Xr("\n"))),s=br(i,Sr,"",o),c=sn(s);return nn(r,c)})(t.content)),r.content=e,r},resolve:t=>t}}),pn=e()(fn,{props:{tag:""}}),yn=e()(pn,{statics:{uri:"tag:yaml.org,2002:map"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>t.tag.kind===gt.Mapping,resolve:t=>t}}),hn=e()(pn,{statics:{uri:"tag:yaml.org,2002:seq"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>t.tag.kind===gt.Sequence,resolve:t=>t}}),gn=e()(pn,{statics:{uri:"tag:yaml.org,2002:str"},init(t,{stamp:e}){this.tag=e.uri},methods:{resolve:t=>t}}),dn=e()({props:{tags:[],tagDirectives:[]},init(){this.tags=[],this.tagDirectives=[],this.registerTag(yn()),this.registerTag(hn()),this.registerTag(gn())},methods:{toSpecificTagName(t){let e=t.tag.explicitName;return"!"===t.tag.explicitName?t.tag.kind===gt.Scalar?e=gn.uri:t.tag.kind===gt.Sequence?e=hn.uri:t.tag.kind===gt.Mapping&&(e=yn.uri):t.tag.explicitName.startsWith("!<")?e=t.tag.explicitName.replace(/^!</,"").replace(/>$/,""):t.tag.explicitName.startsWith("!!")&&(e=`tag:yaml.org,2002:${t.tag.explicitName.replace(/^!!/,"")}`),e},registerTagDirective(t){this.tagDirectives.push({handle:t.parameters.handle,prefix:t.parameters.prefix})},registerTag(t,e=!1){return e?this.tags.unshift(t):this.tags.push(t),this},overrideTag(t){return this.tags=this.tags.filter((e=>e.tag===t.tag)),this.tags.push(t),this},resolve(t){const e=this.toSpecificTagName(t);if("?"===e)return t;let r=t;t.tag.kind===gt.Scalar&&(r=fn().canonicalFormat(t));const n=this.tags.find((t=>t?.tag===e));if(void 0===n)throw new ur(`Tag "${e}" was not recognized.`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:xt(t.tag.position)});if(!n.test(r))throw new ur(`Node couldn't be resolved against the tag "${e}"`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:xt(t.tag.position),nodeCanonicalContent:r.content});return n.resolve(r)}}}),vn=e()(pn,{statics:{uri:"tag:yaml.org,2002:bool"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^(true|false)$/.test(t.content),resolve(t){const e="true"===t.content,r=t.clone();return r.content=e,r}}}),mn=e()(pn,{statics:{uri:"tag:yaml.org,2002:float"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?$/.test(t.content),resolve(t){const e=parseFloat(t.content),r=t.clone();return r.content=e,r}}}),bn=e()(pn,{statics:{uri:"tag:yaml.org,2002:int"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)$/.test(t.content),resolve(t){const e=parseInt(t.content,10),r=t.clone();return r.content=e,r}}}),Sn=e()(pn,{statics:{uri:"tag:yaml.org,2002:null"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^null$/.test(t.content),resolve(t){const e=t.clone();return e.content=null,e}}}),xn=e()(dn,{init(){this.registerTag(vn(),!0),this.registerTag(mn(),!0),this.registerTag(bn(),!0),this.registerTag(Sn(),!0)},methods:{toSpecificTagName(t){let e=dn.compose.methods.toSpecificTagName.call(this,t);if("?"===e)if(t.tag.vkind===gt.Sequence)e=hn.uri;else if(t.tag.kind===gt.Mapping)e=yn.uri;else if(t.tag.kind===gt.Scalar){const r=this.tags.find((e=>e.test(t)));e=r?.tag||"?"}return e}}}),wn=e()(o,{statics:{type:"literal"},props:{value:null},init({value:t=null}={}){this.value=t}}),On=e()({statics:{type:"point"},props:{type:"point",row:null,column:null,char:null},init({row:t=null,column:e=null,char:r=null}={}){this.row=t,this.column=e,this.char=r}}),jn=e()({statics:{type:"position"},props:{type:"position",start:null,end:null},init({start:t=null,end:e=null}={}){this.start=t,this.end=e}}),An=e()(o,{statics:{type:"error"},props:{value:null,isUnexpected:!1},init({value:t=null,isUnexpected:e=!1}={}){this.value=t,this.isUnexpected=e}}),En=e()(o,{statics:{type:"parseResult"},methods:{get rootNode(){return f(this.children)}}}),Tn=(t,e,r)=>{const n=t[e];if(null!=n){if(!r&&"function"==typeof n)return n;const t=r?n.leave:n.enter;if("function"==typeof t)return t}else{const n=r?t.leave:t.enter;if(null!=n){if("function"==typeof n)return n;const t=n[e];if("function"==typeof t)return t}}return null},Pn={},kn=t=>t?.type,Nn=t=>"string"==typeof kn(t),Mn=t=>Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),Cn=(t,{visitFnGetter:e=Tn,nodeTypeGetter:r=kn}={})=>{const n=new Array(t.length).fill(null);return{enter(o,...i){for(let s=0;s<t.length;s+=1)if(null===n[s]){const c=e(t[s],r(o),!1);if("function"==typeof c){const e=c.call(t[s],o,...i);if(!1===e)n[s]=o;else if(e===Pn)n[s]=Pn;else if(void 0!==e)return e}}},leave(o,...i){for(let s=0;s<t.length;s+=1)if(null===n[s]){const c=e(t[s],r(o),!0);if("function"==typeof c){const e=c.call(t[s],o,...i);if(e===Pn)n[s]=Pn;else if(void 0!==e&&!1!==e)return e}}else n[s]===o&&(n[s]=null)}}},Fn=(t,e,{keyMap:r=null,state:n={},breakSymbol:o=Pn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=Tn,nodeTypeGetter:u=kn,nodePredicate:a=Nn,nodeCloneFn:l=Mn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const S=[],x=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===x.length?void 0:S.pop(),b=h,h=x.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;S.push(r)}if(x.includes(b))continue;let O;if(!Array.isArray(b)){if(!a(b))throw new ir(`Invalid AST Node: ${JSON.stringify(b)}`);if(f&&x.includes(b)){S.pop();continue}const i=c(e,u(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;O=i.call(e,b,r,h,S,x)}if(O===o)break;if(O===s){if(!t){S.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!a(O)){S.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[u(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&x.push(h),h=b)}while(void 0!==y);return 0!==m.length?m.at(-1)[1]:t};Fn[Symbol.for("nodejs.util.promisify.custom")]=async(t,e,{keyMap:r=null,state:n={},breakSymbol:o=Pn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=Tn,nodeTypeGetter:u=kn,nodePredicate:a=Nn,nodeCloneFn:l=Mn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const S=[],x=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===x.length?void 0:S.pop(),b=h,h=x.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;S.push(r)}let O;if(!Array.isArray(b)){if(!a(b))throw new ir(`Invalid AST Node: ${JSON.stringify(b)}`);if(f&&x.includes(b)){S.pop();continue}const i=c(e,u(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;O=await i.call(e,b,r,h,S,x)}if(O===o)break;if(O===s){if(!t){S.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!a(O)){S.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[u(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&x.push(h),h=b)}while(void 0!==y);return 0!==m.length?m.at(-1)[1]:t}})(),n})()));
|
1
|
+
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.apidomAST=e():t.apidomAST=e()}(self,(()=>(()=>{var t={42:(t,e,r)=>{"use strict";var n=r(5846);t.exports=n},6791:(t,e,r)=>{"use strict";r(4339),r(4242),r(4016),r(8939),r(5454);var n=r(7545);t.exports=n.AggregateError},6762:(t,e,r)=>{"use strict";t.exports=r(3028)},3028:(t,e,r)=>{"use strict";r(2752);var n=r(42);t.exports=n},6235:(t,e,r)=>{"use strict";var n=r(6447),o=r(9288),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},7757:(t,e,r)=>{"use strict";var n=r(6447),o=String,i=TypeError;t.exports=function(t){if("object"==typeof t||n(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},7423:t=>{"use strict";t.exports=function(){}},1138:(t,e,r)=>{"use strict";var n=r(5744),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},8180:(t,e,r)=>{"use strict";var n=r(101),o=r(7739),i=r(4104),s=function(t){return function(e,r,s){var c,u=n(e),a=i(u),l=o(s,a);if(t&&r!=r){for(;a>l;)if((c=u[l++])!=c)return!0}else for(;a>l;l++)if((t||l in u)&&u[l]===r)return t||l||0;return!t&&-1}};t.exports={includes:s(!0),indexOf:s(!1)}},9272:(t,e,r)=>{"use strict";var n=r(4120),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},4696:(t,e,r)=>{"use strict";var n=r(3471),o=r(6447),i=r(9272),s=r(8182)("toStringTag"),c=Object,u="Arguments"===i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=c(t),s))?r:u?i(e):"Object"===(n=i(e))&&o(e.callee)?"Arguments":n}},7987:(t,e,r)=>{"use strict";var n=r(4500),o=r(3011),i=r(5141),s=r(2760);t.exports=function(t,e,r){for(var c=o(e),u=s.f,a=i.f,l=0;l<c.length;l++){var f=c[l];n(t,f)||r&&n(r,f)||u(t,f,a(e,f))}}},4635:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},7271:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},8711:(t,e,r)=>{"use strict";var n=r(69),o=r(2760),i=r(774);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},774:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},9362:(t,e,r)=>{"use strict";var n=r(8711);t.exports=function(t,e,r,o){return o&&o.enumerable?t[e]=r:n(t,e,r),t}},5098:(t,e,r)=>{"use strict";var n=r(8576),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},69:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},8382:t=>{"use strict";var e="object"==typeof document&&document.all,r=void 0===e&&void 0!==e;t.exports={all:e,IS_HTMLDDA:r}},7449:(t,e,r)=>{"use strict";var n=r(8576),o=r(5744),i=n.document,s=o(i)&&o(i.createElement);t.exports=function(t){return s?i.createElement(t):{}}},7365:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8989:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4218:(t,e,r)=>{"use strict";var n,o,i=r(8576),s=r(8989),c=i.process,u=i.Deno,a=c&&c.versions||u&&u.version,l=a&&a.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&s&&(!(n=s.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=s.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},2952:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},4503:(t,e,r)=>{"use strict";var n=r(4120),o=Error,i=n("".replace),s=String(new o("zxcasd").stack),c=/\n\s*at [^:]*:[^\n]*/,u=c.test(s);t.exports=function(t,e){if(u&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,c,"");return t}},8266:(t,e,r)=>{"use strict";var n=r(8711),o=r(4503),i=r(274),s=Error.captureStackTrace;t.exports=function(t,e,r,c){i&&(s?s(t,e):n(t,"stack",o(r,c)))}},274:(t,e,r)=>{"use strict";var n=r(6192),o=r(774);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},3085:(t,e,r)=>{"use strict";var n=r(8576),o=r(6298),i=r(4914),s=r(6447),c=r(5141).f,u=r(9245),a=r(7545),l=r(8043),f=r(8711),p=r(4500),y=function(t){var e=function(r,n,i){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,n)}return new t(r,n,i)}return o(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var r,o,h,g,d,v,m,b,S,x=t.target,w=t.global,O=t.stat,j=t.proto,A=w?n:O?n[x]:(n[x]||{}).prototype,E=w?a:a[x]||f(a,x,{})[x],T=E.prototype;for(g in e)o=!(r=u(w?g:x+(O?".":"#")+g,t.forced))&&A&&p(A,g),v=E[g],o&&(m=t.dontCallGetSet?(S=c(A,g))&&S.value:A[g]),d=o&&m?m:e[g],o&&typeof v==typeof d||(b=t.bind&&o?l(d,n):t.wrap&&o?y(d):j&&s(d)?i(d):d,(t.sham||d&&d.sham||v&&v.sham)&&f(b,"sham",!0),f(E,g,b),j&&(p(a,h=x+"Prototype")||f(a,h,{}),f(a[h],g,d),t.real&&T&&(r||!T[g])&&f(T,g,d)))}},6192:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},6298:(t,e,r)=>{"use strict";var n=r(2784),o=Function.prototype,i=o.apply,s=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?s.bind(i):function(){return s.apply(i,arguments)})},8043:(t,e,r)=>{"use strict";var n=r(4914),o=r(6235),i=r(2784),s=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?s(t,e):function(){return t.apply(e,arguments)}}},2784:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},8922:(t,e,r)=>{"use strict";var n=r(2784),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},2282:(t,e,r)=>{"use strict";var n=r(69),o=r(4500),i=Function.prototype,s=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),u=c&&"something"===function(){}.name,a=c&&(!n||n&&s(i,"name").configurable);t.exports={EXISTS:c,PROPER:u,CONFIGURABLE:a}},6419:(t,e,r)=>{"use strict";var n=r(4120),o=r(6235);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},4914:(t,e,r)=>{"use strict";var n=r(9272),o=r(4120);t.exports=function(t){if("Function"===n(t))return o(t)}},4120:(t,e,r)=>{"use strict";var n=r(2784),o=Function.prototype,i=o.call,s=n&&o.bind.bind(i,i);t.exports=n?s:function(t){return function(){return i.apply(t,arguments)}}},150:(t,e,r)=>{"use strict";var n=r(7545),o=r(8576),i=r(6447),s=function(t){return i(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?s(n[t])||s(o[t]):n[t]&&n[t][e]||o[t]&&o[t][e]}},8703:(t,e,r)=>{"use strict";var n=r(4696),o=r(5037),i=r(5646),s=r(7771),c=r(8182)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||s[n(t)]}},1669:(t,e,r)=>{"use strict";var n=r(8922),o=r(6235),i=r(1138),s=r(9288),c=r(8703),u=TypeError;t.exports=function(t,e){var r=arguments.length<2?c(t):e;if(o(r))return i(n(r,t));throw new u(s(t)+" is not iterable")}},5037:(t,e,r)=>{"use strict";var n=r(6235),o=r(5646);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},8576:function(t,e,r){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||function(){return this}()||this||Function("return this")()},4500:(t,e,r)=>{"use strict";var n=r(4120),o=r(1795),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},4535:t=>{"use strict";t.exports={}},7403:(t,e,r)=>{"use strict";var n=r(150);t.exports=n("document","documentElement")},188:(t,e,r)=>{"use strict";var n=r(69),o=r(6192),i=r(7449);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},2202:(t,e,r)=>{"use strict";var n=r(4120),o=r(6192),i=r(9272),s=Object,c=n("".split);t.exports=o((function(){return!s("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?c(t,""):s(t)}:s},2643:(t,e,r)=>{"use strict";var n=r(6447),o=r(5744),i=r(4469);t.exports=function(t,e,r){var s,c;return i&&n(s=e.constructor)&&s!==r&&o(c=s.prototype)&&c!==r.prototype&&i(t,c),t}},273:(t,e,r)=>{"use strict";var n=r(5744),o=r(8711);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},3326:(t,e,r)=>{"use strict";var n,o,i,s=r(5278),c=r(8576),u=r(5744),a=r(8711),l=r(4500),f=r(6434),p=r(9766),y=r(4535),h="Object already initialized",g=c.TypeError,d=c.WeakMap;if(s||f.state){var v=f.state||(f.state=new d);v.get=v.get,v.has=v.has,v.set=v.set,n=function(t,e){if(v.has(t))throw new g(h);return e.facade=t,v.set(t,e),e},o=function(t){return v.get(t)||{}},i=function(t){return v.has(t)}}else{var m=p("state");y[m]=!0,n=function(t,e){if(l(t,m))throw new g(h);return e.facade=t,a(t,m,e),e},o=function(t){return l(t,m)?t[m]:{}},i=function(t){return l(t,m)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!u(e)||(r=o(e)).type!==t)throw new g("Incompatible receiver, "+t+" required");return r}}}},6109:(t,e,r)=>{"use strict";var n=r(8182),o=r(7771),i=n("iterator"),s=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||s[i]===t)}},6447:(t,e,r)=>{"use strict";var n=r(8382),o=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===o}:function(t){return"function"==typeof t}},9245:(t,e,r)=>{"use strict";var n=r(6192),o=r(6447),i=/#|\.prototype\./,s=function(t,e){var r=u[c(t)];return r===l||r!==a&&(o(e)?n(e):!!e)},c=s.normalize=function(t){return String(t).replace(i,".").toLowerCase()},u=s.data={},a=s.NATIVE="N",l=s.POLYFILL="P";t.exports=s},5646:t=>{"use strict";t.exports=function(t){return null==t}},5744:(t,e,r)=>{"use strict";var n=r(6447),o=r(8382),i=o.all;t.exports=o.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:n(t)||t===i}:function(t){return"object"==typeof t?null!==t:n(t)}},5546:t=>{"use strict";t.exports=!0},3236:(t,e,r)=>{"use strict";var n=r(150),o=r(6447),i=r(8902),s=r(615),c=Object;t.exports=s?function(t){return"symbol"==typeof t}:function(t){var e=n("Symbol");return o(e)&&i(e.prototype,c(t))}},3442:(t,e,r)=>{"use strict";var n=r(8043),o=r(8922),i=r(1138),s=r(9288),c=r(6109),u=r(4104),a=r(8902),l=r(1669),f=r(8703),p=r(6639),y=TypeError,h=function(t,e){this.stopped=t,this.result=e},g=h.prototype;t.exports=function(t,e,r){var d,v,m,b,S,x,w,O=r&&r.that,j=!(!r||!r.AS_ENTRIES),A=!(!r||!r.IS_RECORD),E=!(!r||!r.IS_ITERATOR),T=!(!r||!r.INTERRUPTED),P=n(e,O),k=function(t){return d&&p(d,"normal",t),new h(!0,t)},N=function(t){return j?(i(t),T?P(t[0],t[1],k):P(t[0],t[1])):T?P(t,k):P(t)};if(A)d=t.iterator;else if(E)d=t;else{if(!(v=f(t)))throw new y(s(t)+" is not iterable");if(c(v)){for(m=0,b=u(t);b>m;m++)if((S=N(t[m]))&&a(g,S))return S;return new h(!1)}d=l(t,v)}for(x=A?t.next:d.next;!(w=o(x,d)).done;){try{S=N(w.value)}catch(t){p(d,"throw",t)}if("object"==typeof S&&S&&a(g,S))return S}return new h(!1)}},6639:(t,e,r)=>{"use strict";var n=r(8922),o=r(1138),i=r(5037);t.exports=function(t,e,r){var s,c;o(t);try{if(!(s=i(t,"return"))){if("throw"===e)throw r;return r}s=n(s,t)}catch(t){c=!0,s=t}if("throw"===e)throw r;if(c)throw s;return o(s),r}},5695:(t,e,r)=>{"use strict";var n=r(4413).IteratorPrototype,o=r(2853),i=r(774),s=r(1284),c=r(7771),u=function(){return this};t.exports=function(t,e,r,a){var l=e+" Iterator";return t.prototype=o(n,{next:i(+!a,r)}),s(t,l,!1,!0),c[l]=u,t}},5297:(t,e,r)=>{"use strict";var n=r(3085),o=r(8922),i=r(5546),s=r(2282),c=r(6447),u=r(5695),a=r(9341),l=r(4469),f=r(1284),p=r(8711),y=r(9362),h=r(8182),g=r(7771),d=r(4413),v=s.PROPER,m=s.CONFIGURABLE,b=d.IteratorPrototype,S=d.BUGGY_SAFARI_ITERATORS,x=h("iterator"),w="keys",O="values",j="entries",A=function(){return this};t.exports=function(t,e,r,s,h,d,E){u(r,e,s);var T,P,k,N=function(t){if(t===h&&D)return D;if(!S&&t&&t in F)return F[t];switch(t){case w:case O:case j:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",C=!1,F=t.prototype,I=F[x]||F["@@iterator"]||h&&F[h],D=!S&&I||N(h),L="Array"===e&&F.entries||I;if(L&&(T=a(L.call(new t)))!==Object.prototype&&T.next&&(i||a(T)===b||(l?l(T,b):c(T[x])||y(T,x,A)),f(T,M,!0,!0),i&&(g[M]=A)),v&&h===O&&I&&I.name!==O&&(!i&&m?p(F,"name",O):(C=!0,D=function(){return o(I,this)})),h)if(P={values:N(O),keys:d?D:N(w),entries:N(j)},E)for(k in P)(S||C||!(k in F))&&y(F,k,P[k]);else n({target:e,proto:!0,forced:S||C},P);return i&&!E||F[x]===D||y(F,x,D,{name:h}),g[e]=D,P}},4413:(t,e,r)=>{"use strict";var n,o,i,s=r(6192),c=r(6447),u=r(5744),a=r(2853),l=r(9341),f=r(9362),p=r(8182),y=r(5546),h=p("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=l(l(i)))!==Object.prototype&&(n=o):g=!0),!u(n)||s((function(){var t={};return n[h].call(t)!==t}))?n={}:y&&(n=a(n)),c(n[h])||f(n,h,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:g}},7771:t=>{"use strict";t.exports={}},4104:(t,e,r)=>{"use strict";var n=r(8445);t.exports=function(t){return n(t.length)}},7679:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},6016:(t,e,r)=>{"use strict";var n=r(4845);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},2853:(t,e,r)=>{"use strict";var n,o=r(1138),i=r(1187),s=r(2952),c=r(4535),u=r(7403),a=r(7449),l=r(9766),f="prototype",p="script",y=l("IE_PROTO"),h=function(){},g=function(t){return"<"+p+">"+t+"</"+p+">"},d=function(t){t.write(g("")),t.close();var e=t.parentWindow.Object;return t=null,e},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;v="undefined"!=typeof document?document.domain&&n?d(n):(e=a("iframe"),r="java"+p+":",e.style.display="none",u.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(g("document.F=Object")),t.close(),t.F):d(n);for(var o=s.length;o--;)delete v[f][s[o]];return v()};c[y]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(h[f]=o(t),r=new h,h[f]=null,r[y]=t):r=v(),void 0===e?r:i.f(r,e)}},1187:(t,e,r)=>{"use strict";var n=r(69),o=r(9600),i=r(2760),s=r(1138),c=r(101),u=r(7653);e.f=n&&!o?Object.defineProperties:function(t,e){s(t);for(var r,n=c(e),o=u(e),a=o.length,l=0;a>l;)i.f(t,r=o[l++],n[r]);return t}},2760:(t,e,r)=>{"use strict";var n=r(69),o=r(188),i=r(9600),s=r(1138),c=r(77),u=TypeError,a=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",y="writable";e.f=n?i?function(t,e,r){if(s(t),e=c(e),s(r),"function"==typeof t&&"prototype"===e&&"value"in r&&y in r&&!r[y]){var n=l(t,e);n&&n[y]&&(t[e]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return a(t,e,r)}:a:function(t,e,r){if(s(t),e=c(e),s(r),o)try{return a(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new u("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},5141:(t,e,r)=>{"use strict";var n=r(69),o=r(8922),i=r(6007),s=r(774),c=r(101),u=r(77),a=r(4500),l=r(188),f=Object.getOwnPropertyDescriptor;e.f=n?f:function(t,e){if(t=c(t),e=u(e),l)try{return f(t,e)}catch(t){}if(a(t,e))return s(!o(i.f,t,e),t[e])}},2092:(t,e,r)=>{"use strict";var n=r(7934),o=r(2952).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},4750:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},9341:(t,e,r)=>{"use strict";var n=r(4500),o=r(6447),i=r(1795),s=r(9766),c=r(4635),u=s("IE_PROTO"),a=Object,l=a.prototype;t.exports=c?a.getPrototypeOf:function(t){var e=i(t);if(n(e,u))return e[u];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof a?l:null}},8902:(t,e,r)=>{"use strict";var n=r(4120);t.exports=n({}.isPrototypeOf)},7934:(t,e,r)=>{"use strict";var n=r(4120),o=r(4500),i=r(101),s=r(8180).indexOf,c=r(4535),u=n([].push);t.exports=function(t,e){var r,n=i(t),a=0,l=[];for(r in n)!o(c,r)&&o(n,r)&&u(l,r);for(;e.length>a;)o(n,r=e[a++])&&(~s(l,r)||u(l,r));return l}},7653:(t,e,r)=>{"use strict";var n=r(7934),o=r(2952);t.exports=Object.keys||function(t){return n(t,o)}},6007:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},4469:(t,e,r)=>{"use strict";var n=r(6419),o=r(1138),i=r(7757);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return o(r),i(n),e?t(r,n):r.__proto__=n,r}}():void 0)},158:(t,e,r)=>{"use strict";var n=r(3471),o=r(4696);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},380:(t,e,r)=>{"use strict";var n=r(8922),o=r(6447),i=r(5744),s=TypeError;t.exports=function(t,e){var r,c;if("string"===e&&o(r=t.toString)&&!i(c=n(r,t)))return c;if(o(r=t.valueOf)&&!i(c=n(r,t)))return c;if("string"!==e&&o(r=t.toString)&&!i(c=n(r,t)))return c;throw new s("Can't convert object to primitive value")}},3011:(t,e,r)=>{"use strict";var n=r(150),o=r(4120),i=r(2092),s=r(4750),c=r(1138),u=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(c(t)),r=s.f;return r?u(e,r(t)):e}},7545:t=>{"use strict";t.exports={}},7656:(t,e,r)=>{"use strict";var n=r(2760).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},3209:(t,e,r)=>{"use strict";var n=r(5646),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},1284:(t,e,r)=>{"use strict";var n=r(3471),o=r(2760).f,i=r(8711),s=r(4500),c=r(158),u=r(8182)("toStringTag");t.exports=function(t,e,r,a){if(t){var l=r?t:t.prototype;s(l,u)||o(l,u,{configurable:!0,value:e}),a&&!n&&i(l,"toString",c)}}},9766:(t,e,r)=>{"use strict";var n=r(8717),o=r(2759),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},6434:(t,e,r)=>{"use strict";var n=r(8576),o=r(5098),i="__core-js_shared__",s=n[i]||o(i,{});t.exports=s},8717:(t,e,r)=>{"use strict";var n=r(5546),o=r(6434);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.33.0",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.33.0/LICENSE",source:"https://github.com/zloirock/core-js"})},863:(t,e,r)=>{"use strict";var n=r(4120),o=r(1941),i=r(4845),s=r(3209),c=n("".charAt),u=n("".charCodeAt),a=n("".slice),l=function(t){return function(e,r){var n,l,f=i(s(e)),p=o(r),y=f.length;return p<0||p>=y?t?"":void 0:(n=u(f,p))<55296||n>56319||p+1===y||(l=u(f,p+1))<56320||l>57343?t?c(f,p):n:t?a(f,p,p+2):l-56320+(n-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},6770:(t,e,r)=>{"use strict";var n=r(4218),o=r(6192),i=r(8576).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},7739:(t,e,r)=>{"use strict";var n=r(1941),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},101:(t,e,r)=>{"use strict";var n=r(2202),o=r(3209);t.exports=function(t){return n(o(t))}},1941:(t,e,r)=>{"use strict";var n=r(7679);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},8445:(t,e,r)=>{"use strict";var n=r(1941),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},1795:(t,e,r)=>{"use strict";var n=r(3209),o=Object;t.exports=function(t){return o(n(t))}},7888:(t,e,r)=>{"use strict";var n=r(8922),o=r(5744),i=r(3236),s=r(5037),c=r(380),u=r(8182),a=TypeError,l=u("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,u=s(t,l);if(u){if(void 0===e&&(e="default"),r=n(u,t,e),!o(r)||i(r))return r;throw new a("Can't convert object to primitive value")}return void 0===e&&(e="number"),c(t,e)}},77:(t,e,r)=>{"use strict";var n=r(7888),o=r(3236);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},3471:(t,e,r)=>{"use strict";var n={};n[r(8182)("toStringTag")]="z",t.exports="[object z]"===String(n)},4845:(t,e,r)=>{"use strict";var n=r(4696),o=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},9288:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},2759:(t,e,r)=>{"use strict";var n=r(4120),o=0,i=Math.random(),s=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+s(++o+i,36)}},615:(t,e,r)=>{"use strict";var n=r(6770);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},9600:(t,e,r)=>{"use strict";var n=r(69),o=r(6192);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5278:(t,e,r)=>{"use strict";var n=r(8576),o=r(6447),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},8182:(t,e,r)=>{"use strict";var n=r(8576),o=r(8717),i=r(4500),s=r(2759),c=r(6770),u=r(615),a=n.Symbol,l=o("wks"),f=u?a.for||a:a&&a.withoutSetter||s;t.exports=function(t){return i(l,t)||(l[t]=c&&i(a,t)?a[t]:f("Symbol."+t)),l[t]}},426:(t,e,r)=>{"use strict";var n=r(150),o=r(4500),i=r(8711),s=r(8902),c=r(4469),u=r(7987),a=r(7656),l=r(2643),f=r(6016),p=r(273),y=r(8266),h=r(69),g=r(5546);t.exports=function(t,e,r,d){var v="stackTraceLimit",m=d?2:1,b=t.split("."),S=b[b.length-1],x=n.apply(null,b);if(x){var w=x.prototype;if(!g&&o(w,"cause")&&delete w.cause,!r)return x;var O=n("Error"),j=e((function(t,e){var r=f(d?e:t,void 0),n=d?new x(t):new x;return void 0!==r&&i(n,"message",r),y(n,j,n.stack,2),this&&s(w,this)&&l(n,this,j),arguments.length>m&&p(n,arguments[m]),n}));if(j.prototype=w,"Error"!==S?c?c(j,O):u(j,O,{name:!0}):h&&v in x&&(a(j,x,v),a(j,x,"prepareStackTrace")),u(j,x),!g)try{w.name!==S&&i(w,"name",S),w.constructor=j}catch(t){}return j}}},4016:(t,e,r)=>{"use strict";var n=r(3085),o=r(150),i=r(6298),s=r(6192),c=r(426),u="AggregateError",a=o(u),l=!s((function(){return 1!==a([1]).errors[0]}))&&s((function(){return 7!==a([1],u,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:c(u,(function(t){return function(e,r){return i(t,this,arguments)}}),l,!0)})},3820:(t,e,r)=>{"use strict";var n=r(3085),o=r(8902),i=r(9341),s=r(4469),c=r(7987),u=r(2853),a=r(8711),l=r(774),f=r(273),p=r(8266),y=r(3442),h=r(6016),g=r(8182)("toStringTag"),d=Error,v=[].push,m=function(t,e){var r,n=o(b,this);s?r=s(new d,n?i(this):b):(r=n?this:u(b),a(r,g,"Error")),void 0!==e&&a(r,"message",h(e)),p(r,m,r.stack,1),arguments.length>2&&f(r,arguments[2]);var c=[];return y(t,v,{that:c}),a(r,"errors",c),r};s?s(m,d):c(m,d,{name:!0});var b=m.prototype=u(d.prototype,{constructor:l(1,m),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:m})},4242:(t,e,r)=>{"use strict";r(3820)},8939:(t,e,r)=>{"use strict";var n=r(101),o=r(7423),i=r(7771),s=r(3326),c=r(2760).f,u=r(5297),a=r(7271),l=r(5546),f=r(69),p="Array Iterator",y=s.set,h=s.getterFor(p);t.exports=u(Array,"Array",(function(t,e){y(this,{type:p,target:n(t),index:0,kind:e})}),(function(){var t=h(this),e=t.target,r=t.kind,n=t.index++;if(!e||n>=e.length)return t.target=void 0,a(void 0,!0);switch(r){case"keys":return a(n,!1);case"values":return a(e[n],!1)}return a([n,e[n]],!1)}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!l&&f&&"values"!==g.name)try{c(g,"name",{value:"values"})}catch(t){}},4339:(t,e,r)=>{"use strict";var n=r(3085),o=r(8576),i=r(6298),s=r(426),c="WebAssembly",u=o[c],a=7!==new Error("e",{cause:7}).cause,l=function(t,e){var r={};r[t]=s(t,e,a),n({global:!0,constructor:!0,arity:1,forced:a},r)},f=function(t,e){if(u&&u[t]){var r={};r[t]=s(c+"."+t,e,a),n({target:c,stat:!0,constructor:!0,arity:1,forced:a},r)}};l("Error",(function(t){return function(e){return i(t,this,arguments)}})),l("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),l("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),l("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),l("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),l("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),l("URIError",(function(t){return function(e){return i(t,this,arguments)}})),f("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),f("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),f("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},5454:(t,e,r)=>{"use strict";var n=r(863).charAt,o=r(4845),i=r(3326),s=r(5297),c=r(7271),u="String Iterator",a=i.set,l=i.getterFor(u);s(String,"String",(function(t){a(this,{type:u,string:o(t),index:0})}),(function(){var t,e=l(this),r=e.string,o=e.index;return o>=r.length?c(void 0,!0):(t=n(r,o),e.index+=t.length,c(t,!1))}))},2752:(t,e,r)=>{"use strict";r(4242)},162:(t,e,r)=>{"use strict";r(8939);var n=r(7365),o=r(8576),i=r(4696),s=r(8711),c=r(7771),u=r(8182)("toStringTag");for(var a in n){var l=o[a],f=l&&l.prototype;f&&i(f)!==u&&s(f,u,a),c[a]=c.Array}},5846:(t,e,r)=>{"use strict";r(2752);var n=r(6791);r(162),t.exports=n},6591:t=>{!function(){"use strict";var e,r,n,o,i,s="properties",c="deepProperties",u="propertyDescriptors",a="staticProperties",l="staticDeepProperties",f="staticPropertyDescriptors",p="configuration",y="deepConfiguration",h="deepProps",g="deepStatics",d="deepConf",v="initializers",m="methods",b="composers",S="compose";function x(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t):[])}function w(t,e){return Array.prototype.slice.call(arguments,2).reduce(t,e)}var O=w.bind(0,(function(t,e){if(e)for(var r=x(e),n=0;n<r.length;n+=1)Object.defineProperty(t,r[n],Object.getOwnPropertyDescriptor(e,r[n]));return t}));function j(t){return"function"==typeof t}function A(t){return t&&"object"==typeof t||j(t)}function E(t){return t&&"object"==typeof t&&t.__proto__==Object.prototype}var T=w.bind(0,(function t(r,n){if(n===e)return r;if(Array.isArray(n))return(Array.isArray(r)?r:[]).concat(n);if(!E(n))return n;for(var o,i,s=x(n),c=0;c<s.length;)o=s[c++],(i=Object.getOwnPropertyDescriptor(n,o)).hasOwnProperty("value")?i.value!==e&&(r[o]=t(E(r[o])||Array.isArray(n[o])?r[o]:{},n[o])):Object.defineProperty(r,o,i);return r}));function P(){return(r=Array.prototype.concat.apply([],arguments).filter((function(t,e,r){return j(t)&&r.indexOf(t)===e}))).length?r:e}function k(t,e){function n(r,n){A(e[r])&&(A(t[r])||(t[r]={}),(n||O)(t[r],e[r]))}function o(n){(r=P(t[n],e[n]))&&(t[n]=r)}return e&&A(e=e[S]||e)&&(n(m),n(s),n(c,T),n(u),n(a),n(l,T),n(f),n(p),n(y,T),o(v),o(b)),t}function N(){return function(t){return r=function t(r){var n,o,i=t[S]||{},a={__proto__:i[m]},l=i[v],f=Array.prototype.slice.apply(arguments),p=i[c];if(p&&T(a,p),(p=i[s])&&O(a,p),(p=i[u])&&Object.defineProperties(a,p),!l||!l.length)return a;for(r===e&&(r={}),i=0;i<l.length;)j(n=l[i++])&&(a=(o=n.call(a,r,{instance:a,stamp:t,args:f}))===e?a:o);return a},(n=t[l])&&T(r,n),(n=t[a])&&O(r,n),(n=t[f])&&Object.defineProperties(r,n),n=j(r[S])?r[S]:N,O(r[S]=function(){return n.apply(this,arguments)},t),r}(Array.prototype.concat.apply([this],arguments).reduce(k,{}))}function M(t){return j(t)&&j(t[S])}var C={};function F(t,i){return function(){return(o={})[t]=i.apply(e,Array.prototype.concat.apply([{}],arguments)),((r=this)&&r[S]||n).call(r,o)}}C[m]=F(m,O),C[s]=C.props=F(s,O),C[v]=C.init=F(v,P),C[b]=F(b,P),C[c]=C[h]=F(c,T),C[a]=C.statics=F(a,O),C[l]=C[g]=F(l,T),C[p]=C.conf=F(p,O),C[y]=C[d]=F(y,T),C[u]=F(u,O),C[f]=F(f,O),n=C[S]=O((function(){for(var t,x,w=0,j=[],E=arguments,k=this;w<E.length;)A(t=E[w++])&&j.push(M(t)?t:((o={})[m]=(x=t)[m]||e,n=x.props,o[s]=A((r=x[s])||n)?O({},n,r):e,o[v]=P(x.init,x[v]),o[b]=P(x[b]),n=x[h],o[c]=A((r=x[c])||n)?T({},n,r):e,o[u]=x[u],n=x.statics,o[a]=A((r=x[a])||n)?O({},n,r):e,n=x[g],o[l]=A((r=x[l])||n)?T({},n,r):e,r=x[f],o[f]=A((n=x.name&&{name:{value:x.name}})||r)?O({},r,n):e,n=x.conf,o[p]=A((r=x[p])||n)?O({},n,r):e,n=x[d],o[y]=A((r=x[y])||n)?T({},n,r):e,o));if(t=N.apply(k||i,j),k&&j.unshift(k),Array.isArray(E=t[S][b]))for(w=0;w<E.length;)t=M(k=E[w++]({stamp:t,composables:j}))?k:t;return t}),C),C.create=function(){return this.apply(e,arguments)},(o={})[a]=C,i=N(o),n[S]=n.bind(),n.version="4.3.2","object"!=typeof e?t.exports=n:self.stampit=n}()},2396:(t,e)=>{"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),e.errorMessages=e.ErrorType=void 0,function(t){t.MalformedUnicode="MALFORMED_UNICODE",t.MalformedHexadecimal="MALFORMED_HEXADECIMAL",t.CodePointLimit="CODE_POINT_LIMIT",t.OctalDeprecation="OCTAL_DEPRECATION",t.EndOfString="END_OF_STRING"}(r=e.ErrorType||(e.ErrorType={})),e.errorMessages=new Map([[r.MalformedUnicode,"malformed Unicode character escape sequence"],[r.MalformedHexadecimal,"malformed hexadecimal character escape sequence"],[r.CodePointLimit,"Unicode codepoint must not be greater than 0x10FFFF in escape sequence"],[r.OctalDeprecation,'"0"-prefixed octal literals and octal escape sequences are deprecated; for octal literals use the "0o" prefix instead'],[r.EndOfString,"malformed escape sequence at end of string"]])},2770:(t,e,r)=>{"use strict";e.S6=void 0;const n=r(2396);function o(t,e,r){const o=function(t){return t.match(/[^a-f0-9]/i)?NaN:parseInt(t,16)}(t);if(Number.isNaN(o)||void 0!==r&&r!==t.length)throw new SyntaxError(n.errorMessages.get(e));return o}function i(t,e){const r=o(t,n.ErrorType.MalformedUnicode,4);if(void 0!==e){const t=o(e,n.ErrorType.MalformedUnicode,4);return String.fromCharCode(r,t)}return String.fromCharCode(r)}const s=new Map([["b","\b"],["f","\f"],["n","\n"],["r","\r"],["t","\t"],["v","\v"],["0","\0"]]);const c=/\\(?:(\\)|x([\s\S]{0,2})|u(\{[^}]*\}?)|u([\s\S]{4})\\u([^{][\s\S]{0,3})|u([\s\S]{0,4})|([0-3]?[0-7]{1,2})|([\s\S])|$)/g;function u(t,e=!1){return t.replace(c,(function(t,r,c,u,a,l,f,p,y){if(void 0!==r)return"\\";if(void 0!==c)return function(t){const e=o(t,n.ErrorType.MalformedHexadecimal,2);return String.fromCharCode(e)}(c);if(void 0!==u)return function(t){if("{"!==(e=t).charAt(0)||"}"!==e.charAt(e.length-1))throw new SyntaxError(n.errorMessages.get(n.ErrorType.MalformedUnicode));var e;const r=o(t.slice(1,-1),n.ErrorType.MalformedUnicode);try{return String.fromCodePoint(r)}catch(t){throw t instanceof RangeError?new SyntaxError(n.errorMessages.get(n.ErrorType.CodePointLimit)):t}}(u);if(void 0!==a)return i(a,l);if(void 0!==f)return i(f);if("0"===p)return"\0";if(void 0!==p)return function(t,e=!1){if(e)throw new SyntaxError(n.errorMessages.get(n.ErrorType.OctalDeprecation));const r=parseInt(t,8);return String.fromCharCode(r)}(p,!e);if(void 0!==y)return h=y,s.get(h)||h;var h;throw new SyntaxError(n.errorMessages.get(n.ErrorType.EndOfString))}))}e.S6=u},1427:(t,e,r)=>{t.exports=r(6762)}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n].call(i.exports,i,i.exports,r),i.exports}r.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return r.d(e,{a:e}),e},r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};return(()=>{"use strict";r.r(n),r.d(n,{BREAK:()=>Pn,Error:()=>An,JsonArray:()=>C,JsonDocument:()=>p,JsonEscapeSequence:()=>R,JsonFalse:()=>q,JsonKey:()=>D,JsonNode:()=>i,JsonNull:()=>Y,JsonNumber:()=>_,JsonObject:()=>N,JsonProperty:()=>M,JsonString:()=>I,JsonStringContent:()=>L,JsonTrue:()=>U,JsonValue:()=>F,Literal:()=>wn,ParseResult:()=>En,Point:()=>On,Position:()=>jn,YamlAlias:()=>G,YamlAnchor:()=>vt,YamlCollection:()=>$,YamlComment:()=>V,YamlDirective:()=>K,YamlDocument:()=>W,YamlFailsafeSchema:()=>dn,YamlJsonSchema:()=>xn,YamlKeyValuePair:()=>lt,YamlMapping:()=>ft,YamlNode:()=>J,YamlNodeKind:()=>gt,YamlScalar:()=>pt,YamlSchemaError:()=>cr,YamlSequence:()=>yt,YamlStream:()=>ht,YamlStyle:()=>Q,YamlStyleGroup:()=>X,YamlTag:()=>dt,YamlTagError:()=>ur,cloneNode:()=>Mn,getNodeType:()=>kn,getVisitFn:()=>Tn,isJsonArray:()=>j,isJsonDocument:()=>m,isJsonEscapeSequence:()=>T,isJsonFalse:()=>S,isJsonKey:()=>k,isJsonNull:()=>w,isJsonNumber:()=>O,isJsonObject:()=>A,isJsonProperty:()=>P,isJsonString:()=>b,isJsonStringContent:()=>E,isJsonTrue:()=>x,isLiteral:()=>h,isNode:()=>Nn,isParseResult:()=>v,isPoint:()=>d,isPosition:()=>g,isYamlAlias:()=>ct,isYamlDirective:()=>ut,isYamlDocument:()=>et,isYamlKeyValuePair:()=>ot,isYamlMapping:()=>rt,isYamlScalar:()=>st,isYamlSequence:()=>nt,isYamlStream:()=>tt,isYamlTag:()=>it,mergeAllVisitors:()=>Cn,visit:()=>Fn});var t=r(6591),e=r.n(t);const o=e()({props:{type:null,position:null,children:[]},init({children:t=[],position:e=null,isMissing:r=!1}={},{stamp:n={}}){this.type=n.type,this.isMissing=r,this.children=t,this.position=e},methods:{clone(){const t=Object.create(Object.getPrototypeOf(this));return Object.getOwnPropertyNames(this).forEach((e=>{const r=Object.getOwnPropertyDescriptor(this,e);Object.defineProperty(t,e,r)})),t}}}),i=e()(o);function s(t){return null!=t&&"object"==typeof t&&!0===t["@@functional/placeholder"]}function c(t){return function e(r){return 0===arguments.length||s(r)?e:t.apply(this,arguments)}}function u(t){return function e(r,n){switch(arguments.length){case 0:return e;case 1:return s(r)?e:c((function(e){return t(r,e)}));default:return s(r)&&s(n)?e:s(r)?c((function(e){return t(e,n)})):s(n)?c((function(e){return t(r,e)})):t(r,n)}}}function a(t){return"[object String]"===Object.prototype.toString.call(t)}const l=u((function(t,e){var r=t<0?e.length+t:t;return a(e)?e.charAt(r):e[r]}));const f=l(0),p=e()(i,{statics:{type:"document"},methods:{get child(){return f(this.children)}}}),y=(t,e)=>e?.type===t,h=y.bind(void 0,"literal"),g=y.bind(void 0,"position"),d=y.bind(void 0,"point"),v=y.bind(void 0,"parseResult"),m=y.bind(void 0,"document"),b=y.bind(void 0,"string"),S=y.bind(void 0,"false"),x=y.bind(void 0,"true"),w=y.bind(void 0,"null"),O=y.bind(void 0,"number"),j=y.bind(void 0,"array"),A=y.bind(void 0,"object"),E=y.bind(void 0,"stringContent"),T=y.bind(void 0,"escapeSequence"),P=y.bind(void 0,"property"),k=y.bind(void 0,"key"),N=e()(i,{statics:{type:"object"},methods:{get properties(){return this.children.filter(P)}}}),M=e()(i,{statics:{type:"property"},methods:{get key(){return this.children.find(k)},get value(){return this.children.find((t=>S(t)||x(t)||w(t)||O(t)||b(t)||j(t)||A(t)))}}}),C=e()(i,{statics:{type:"array"},methods:{get items(){return this.children.filter((t=>S(t)||x(t)||w(t)||O(t)||b(t)||j(t)||A))}}}),F=e()(i,{statics:{type:"value"},props:{value:null},init({value:t=null}={}){this.value=t}}),I=e()(i,{statics:{type:"string"},methods:{get value(){return 1===this.children.length?this.children[0].value:this.children.filter((t=>E(t)||T(t))).reduce(((t,e)=>t+e.value),"")}}}),D=e()(I,{statics:{type:"key"}}),L=e()(F,{statics:{type:"stringContent"}}),R=e()(F,{statics:{type:"escapeSequence"}}),_=e()(F,{statics:{type:"number"}}),U=e()(F,{statics:{type:"true"}}),q=e()(F,{statics:{type:"false"}}),Y=e()(F,{statics:{type:"null"}}),G=e()(o,{statics:{type:"alias"},props:{content:null},init({content:t=null}={}){this.content=t}}),J=e()(o,{props:{anchor:null,tag:null,style:null,styleGroup:null},init({anchor:t=null,tag:e=null,style:r=null,styleGroup:n=null}={}){this.anchor=t,this.tag=e,this.style=r,this.styleGroup=n}}),$=e()(J,{}),V=e()(o,{statics:{type:"comment"},props:{content:null},init({content:t=null}={}){this.content=t}});function z(t,e){return Object.prototype.hasOwnProperty.call(e,t)}const B="function"==typeof Object.assign?Object.assign:function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1,n=arguments.length;r<n;){var o=arguments[r];if(null!=o)for(var i in o)z(i,o)&&(e[i]=o[i]);r+=1}return e};const H=u((function(t,e){return B({},t,e)})),K=e()(o,{statics:{type:"directive"},props:{name:null,parameters:null},init({name:t=null,parameters:e={}}={}){this.name=t,this.parameters=H({version:null,handle:null,prefix:null},e)}}),W=e()(o,{statics:{type:"document"}});let Q=function(t){return t.Plain="Plain",t.SingleQuoted="SingleQuoted",t.DoubleQuoted="DoubleQuoted",t.Literal="Literal",t.Folded="Folded",t.Explicit="Explicit",t.SinglePair="SinglePair",t.NextLine="NextLine",t.InLine="InLine",t}({}),X=function(t){return t.Flow="Flow",t.Block="Block",t}({});const Z=e()({props:{styleGroup:null,style:null}}),tt=y.bind(void 0,"stream"),et=y.bind(void 0,"document"),rt=y.bind(void 0,"mapping"),nt=y.bind(void 0,"sequence"),ot=y.bind(void 0,"keyValuePair"),it=y.bind(void 0,"tag"),st=y.bind(void 0,"scalar"),ct=y.bind(void 0,"alias"),ut=y.bind(void 0,"directive"),at=y.bind(void 0,"comment"),lt=e()(o,Z,{statics:{type:"keyValuePair"},propertyDescriptors:{key:{get(){return this.children.filter((t=>st(t)||rt(t)||nt(t)))[0]},enumerable:!0},value:{get(){const{key:t,children:e}=this;return e.filter((e=>(e=>e!==t)(e)&&(t=>st(t)||rt(t)||nt(t)||ct(t))(e)))[0]},enumerable:!0}}}),ft=e()($,{statics:{type:"mapping"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter(ot):[]},enumerable:!0}}}),pt=e()(J,{statics:{type:"scalar"},props:{content:""},init({content:t}={}){this.content=t}}),yt=e()($,{statics:{type:"sequence"},propertyDescriptors:{content:{get(){const{children:t}=this;return Array.isArray(t)?t.filter((t=>nt(t)||rt(t)||st(t)||ct(t))):[]},enumerable:!0}}}),ht=e()(o,{statics:{type:"stream"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter((t=>et(t)||at(t))):[]},enumerable:!0}}});let gt=function(t){return t.Scalar="Scalar",t.Sequence="Sequence",t.Mapping="Mapping",t}({});const dt=e()(o,{statics:{type:"tag"},props:{explicitName:"",kind:null},init({explicitName:t,kind:e}={}){this.explicitName=t,this.kind=e}}),vt=e()(o,{statics:{type:"anchor"},props:{name:null},init({name:t=null}={}){this.name=t}});const mt=c((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));function bt(t,e,r){if(r||(r=new St),function(t){var e=typeof t;return null==t||"object"!=e&&"function"!=e}(t))return t;var n,o=function(n){var o=r.get(t);if(o)return o;for(var i in r.set(t,n),t)Object.prototype.hasOwnProperty.call(t,i)&&(n[i]=e?bt(t[i],!0,r):t[i]);return n};switch(mt(t)){case"Object":return o(Object.create(Object.getPrototypeOf(t)));case"Array":return o([]);case"Date":return new Date(t.valueOf());case"RegExp":return n=t,new RegExp(n.source,n.flags?n.flags:(n.global?"g":"")+(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.sticky?"y":"")+(n.unicode?"u":"")+(n.dotAll?"s":""));case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":return t.slice();default:return t}}var St=function(){function t(){this.map={},this.length=0}return t.prototype.set=function(t,e){const r=this.hash(t);let n=this.map[r];n||(this.map[r]=n=[]),n.push([t,e]),this.length+=1},t.prototype.hash=function(t){let e=[];for(var r in t)e.push(Object.prototype.toString.call(t[r]));return e.join()},t.prototype.get=function(t){if(this.length<=180){for(const e in this.map){const r=this.map[e];for(let e=0;e<r.length;e+=1){const n=r[e];if(n[0]===t)return n[1]}}return}const e=this.hash(t),r=this.map[e];if(r)for(let e=0;e<r.length;e+=1){const n=r[e];if(n[0]===t)return n[1]}},t}();const xt=c((function(t){return null!=t&&"function"==typeof t.clone?t.clone():bt(t,!0)}));var wt=u((function(t,e){for(var r={},n={},o=0,i=t.length;o<i;)n[t[o]]=1,o+=1;for(var s in e)n.hasOwnProperty(s)||(r[s]=e[s]);return r}));const Ot=wt;const jt=c((function(t){return null==t}));var At=u((function(t,e){return!jt(e)&&t in e}));const Et=At;function Tt(t,e){switch(t){case 0:return function(){return e.apply(this,arguments)};case 1:return function(t){return e.apply(this,arguments)};case 2:return function(t,r){return e.apply(this,arguments)};case 3:return function(t,r,n){return e.apply(this,arguments)};case 4:return function(t,r,n,o){return e.apply(this,arguments)};case 5:return function(t,r,n,o,i){return e.apply(this,arguments)};case 6:return function(t,r,n,o,i,s){return e.apply(this,arguments)};case 7:return function(t,r,n,o,i,s,c){return e.apply(this,arguments)};case 8:return function(t,r,n,o,i,s,c,u){return e.apply(this,arguments)};case 9:return function(t,r,n,o,i,s,c,u,a){return e.apply(this,arguments)};case 10:return function(t,r,n,o,i,s,c,u,a,l){return e.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function Pt(t,e){return function(){return e.call(this,t.apply(this,arguments))}}function kt(t){return function e(r,n,o){switch(arguments.length){case 0:return e;case 1:return s(r)?e:u((function(e,n){return t(r,e,n)}));case 2:return s(r)&&s(n)?e:s(r)?u((function(e,r){return t(e,n,r)})):s(n)?u((function(e,n){return t(r,e,n)})):c((function(e){return t(r,n,e)}));default:return s(r)&&s(n)&&s(o)?e:s(r)&&s(n)?u((function(e,r){return t(e,r,o)})):s(r)&&s(o)?u((function(e,r){return t(e,n,r)})):s(n)&&s(o)?u((function(e,n){return t(r,e,n)})):s(r)?c((function(e){return t(e,n,o)})):s(n)?c((function(e){return t(r,e,o)})):s(o)?c((function(e){return t(r,n,e)})):t(r,n,o)}}}const Nt=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};const Mt=c((function(t){return!!Nt(t)||!!t&&("object"==typeof t&&(!a(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var Ct="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Ft(t,e,r){return function(n,o,i){if(Mt(i))return t(n,o,i);if(null==i)return o;if("function"==typeof i["fantasy-land/reduce"])return e(n,o,i,"fantasy-land/reduce");if(null!=i[Ct])return r(n,o,i[Ct]());if("function"==typeof i.next)return r(n,o,i);if("function"==typeof i.reduce)return e(n,o,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function It(t,e,r){for(var n=0,o=r.length;n<o;){if((e=t["@@transducer/step"](e,r[n]))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n+=1}return t["@@transducer/result"](e)}const Dt=u((function(t,e){return Tt(t.length,(function(){return t.apply(e,arguments)}))}));function Lt(t,e,r){for(var n=r.next();!n.done;){if((e=t["@@transducer/step"](e,n.value))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n=r.next()}return t["@@transducer/result"](e)}function Rt(t,e,r,n){return t["@@transducer/result"](r[n](Dt(t["@@transducer/step"],t),e))}const _t=Ft(It,Rt,Lt);var Ut=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,e){return this.f(t,e)},t}();function qt(t){return new Ut(t)}const Yt=kt((function(t,e,r){return _t("function"==typeof t?qt(t):t,e,r)}));function Gt(t,e){return function(){var r=arguments.length;if(0===r)return e();var n=arguments[r-1];return Nt(n)||"function"!=typeof n[t]?e.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,r-1))}}const Jt=kt(Gt("slice",(function(t,e,r){return Array.prototype.slice.call(r,t,e)})));const $t=c(Gt("tail",Jt(1,1/0)));function Vt(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return Tt(arguments[0].length,Yt(Pt,arguments[0],$t(arguments)))}const zt="function"==typeof Object.is?Object.is:function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};var Bt=function(t,e){switch(arguments.length){case 0:return Bt;case 1:return function e(r){return 0===arguments.length?e:zt(t,r)};default:return zt(t,e)}};const Ht=Bt;function Kt(t){for(var e,r=[];!(e=t.next()).done;)r.push(e.value);return r}function Wt(t,e,r){for(var n=0,o=r.length;n<o;){if(t(e,r[n]))return!0;n+=1}return!1}var Qt=Object.prototype.toString;const Xt=function(){return"[object Arguments]"===Qt.call(arguments)?function(t){return"[object Arguments]"===Qt.call(t)}:function(t){return z("callee",t)}}();var Zt=!{toString:null}.propertyIsEnumerable("toString"),te=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],ee=function(){return arguments.propertyIsEnumerable("length")}(),re=function(t,e){for(var r=0;r<t.length;){if(t[r]===e)return!0;r+=1}return!1},ne="function"!=typeof Object.keys||ee?c((function(t){if(Object(t)!==t)return[];var e,r,n=[],o=ee&&Xt(t);for(e in t)!z(e,t)||o&&"length"===e||(n[n.length]=e);if(Zt)for(r=te.length-1;r>=0;)z(e=te[r],t)&&!re(n,e)&&(n[n.length]=e),r-=1;return n})):c((function(t){return Object(t)!==t?[]:Object.keys(t)}));const oe=ne;function ie(t,e,r,n){var o=Kt(t);function i(t,e){return se(t,e,r.slice(),n.slice())}return!Wt((function(t,e){return!Wt(i,e,t)}),Kt(e),o)}function se(t,e,r,n){if(zt(t,e))return!0;var o,i,s=mt(t);if(s!==mt(e))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof e["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e)&&"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof e.equals)return"function"==typeof t.equals&&t.equals(e)&&"function"==typeof e.equals&&e.equals(t);switch(s){case"Arguments":case"Array":case"Object":if("function"==typeof t.constructor&&"Promise"===(o=t.constructor,null==(i=String(o).match(/^function (\w*)/))?"":i[1]))return t===e;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof e||!zt(t.valueOf(),e.valueOf()))return!1;break;case"Date":if(!zt(t.valueOf(),e.valueOf()))return!1;break;case"Error":return t.name===e.name&&t.message===e.message;case"RegExp":if(t.source!==e.source||t.global!==e.global||t.ignoreCase!==e.ignoreCase||t.multiline!==e.multiline||t.sticky!==e.sticky||t.unicode!==e.unicode)return!1}for(var c=r.length-1;c>=0;){if(r[c]===t)return n[c]===e;c-=1}switch(s){case"Map":return t.size===e.size&&ie(t.entries(),e.entries(),r.concat([t]),n.concat([e]));case"Set":return t.size===e.size&&ie(t.values(),e.values(),r.concat([t]),n.concat([e]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var u=oe(t);if(u.length!==oe(e).length)return!1;var a=r.concat([t]),l=n.concat([e]);for(c=u.length-1;c>=0;){var f=u[c];if(!z(f,e)||!se(e[f],t[f],a,l))return!1;c-=1}return!0}const ce=u((function(t,e){return se(t,e,[],[])}));function ue(t,e){return function(t,e,r){var n,o;if("function"==typeof t.indexOf)switch(typeof e){case"number":if(0===e){for(n=1/e;r<t.length;){if(0===(o=t[r])&&1/o===n)return r;r+=1}return-1}if(e!=e){for(;r<t.length;){if("number"==typeof(o=t[r])&&o!=o)return r;r+=1}return-1}return t.indexOf(e,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(e,r);case"object":if(null===e)return t.indexOf(e,r)}for(;r<t.length;){if(ce(t[r],e))return r;r+=1}return-1}(e,t,0)>=0}function ae(t,e){for(var r=0,n=e.length,o=Array(n);r<n;)o[r]=t(e[r]),r+=1;return o}function le(t){return'"'+t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var fe=function(t){return(t<10?"0":"")+t};const pe="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+fe(t.getUTCMonth()+1)+"-"+fe(t.getUTCDate())+"T"+fe(t.getUTCHours())+":"+fe(t.getUTCMinutes())+":"+fe(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function ye(t,e,r){for(var n=0,o=r.length;n<o;)e=t(e,r[n]),n+=1;return e}function he(t,e,r){return function(){if(0===arguments.length)return r();var n=arguments[arguments.length-1];if(!Nt(n)){for(var o=0;o<t.length;){if("function"==typeof n[t[o]])return n[t[o]].apply(n,Array.prototype.slice.call(arguments,0,-1));o+=1}if(function(t){return null!=t&&"function"==typeof t["@@transducer/step"]}(n))return e.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return r.apply(this,arguments)}}const ge=function(){return this.xf["@@transducer/init"]()},de=function(t){return this.xf["@@transducer/result"](t)};var ve=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=ge,t.prototype["@@transducer/result"]=de,t.prototype["@@transducer/step"]=function(t,e){return this.f(e)?this.xf["@@transducer/step"](t,e):t},t}();function me(t){return function(e){return new ve(t,e)}}const be=u(he(["fantasy-land/filter","filter"],me,(function(t,e){return r=e,"[object Object]"===Object.prototype.toString.call(r)?ye((function(r,n){return t(e[n])&&(r[n]=e[n]),r}),{},oe(e)):function(t,e){for(var r=0,n=e.length,o=[];r<n;)t(e[r])&&(o[o.length]=e[r]),r+=1;return o}(t,e);var r})));const Se=u((function(t,e){return be((r=t,function(){return!r.apply(this,arguments)}),e);var r}));function xe(t,e){var r=function(r){var n=e.concat([t]);return ue(r,n)?"<Circular>":xe(r,n)},n=function(t,e){return ae((function(e){return le(e)+": "+r(t[e])}),e.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+ae(r,t).join(", ")+"))";case"[object Array]":return"["+ae(r,t).concat(n(t,Se((function(t){return/^\d+$/.test(t)}),oe(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+r(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?r(NaN):le(pe(t)))+")";case"[object Map]":return"new Map("+r(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+r(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+r(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+r(t.valueOf())+")":le(t);case"[object Undefined]":return"undefined";default:if("function"==typeof t.toString){var o=t.toString();if("[object Object]"!==o)return o}return"{"+n(t,oe(t)).join(", ")+"}"}}const we=c((function(t){return xe(t,[])})),Oe=Number.isInteger||function(t){return t<<0===t};const je=u((function(t,e){return t.map((function(t){for(var r,n=e,o=0;o<t.length;){if(null==n)return;r=t[o],n=Oe(r)?l(r,n):n[r],o+=1}return n}))}));const Ae=u((function(t,e){return je([t],e)[0]}));const Ee=kt((function(t,e,r){return t(Ae(e,r))}));function Te(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e||"[object AsyncFunction]"===e||"[object GeneratorFunction]"===e||"[object AsyncGeneratorFunction]"===e}const Pe=u((function(t,e){return t&&e}));function ke(t,e,r){for(var n=r.next();!n.done;)e=t(e,n.value),n=r.next();return e}function Ne(t,e,r,n){return r[n](t,e)}const Me=Ft(ye,Ne,ke);var Ce=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=ge,t.prototype["@@transducer/result"]=de,t.prototype["@@transducer/step"]=function(t,e){return this.xf["@@transducer/step"](t,this.f(e))},t}();const Fe=function(t){return function(e){return new Ce(t,e)}};function Ie(t,e,r){return function(){for(var n=[],o=0,i=t,c=0,u=!1;c<e.length||o<arguments.length;){var a;c<e.length&&(!s(e[c])||o>=arguments.length)?a=e[c]:(a=arguments[o],o+=1),n[c]=a,s(a)?u=!0:i-=1,c+=1}return!u&&i<=0?r.apply(this,n):Tt(Math.max(0,i),Ie(t,n,r))}}const De=u((function(t,e){return 1===t?c(e):Tt(t,Ie(t,[],e))}));const Le=u(he(["fantasy-land/map","map"],Fe,(function(t,e){switch(Object.prototype.toString.call(e)){case"[object Function]":return De(e.length,(function(){return t.call(this,e.apply(this,arguments))}));case"[object Object]":return ye((function(r,n){return r[n]=t(e[n]),r}),{},oe(e));default:return ae(t,e)}})));const Re=u((function(t,e){return"function"==typeof e["fantasy-land/ap"]?e["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(e):"function"==typeof t?function(r){return t(r)(e(r))}:Me((function(t,r){return function(t,e){var r;e=e||[];var n=(t=t||[]).length,o=e.length,i=[];for(r=0;r<n;)i[i.length]=t[r],r+=1;for(r=0;r<o;)i[i.length]=e[r],r+=1;return i}(t,Le(r,e))}),[],t)}));const _e=u((function(t,e){var r=De(t,e);return De(t,(function(){return ye(Re,Le(r,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const Ue=c((function(t){return _e(t.length,t)}));const qe=u((function(t,e){return Te(t)?function(){return t.apply(this,arguments)&&e.apply(this,arguments)}:Ue(Pe)(t,e)}));const Ye=ce(null);const Ge=Ue(c((function(t){return!t})));var Je=Ge(Ye);function $e(t){return $e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},$e(t)}const Ve=De(1,qe(Je,(function(t){return"object"===$e(t)})));const ze=u((function(t,e){if(t===e)return e;function r(t,e){if(t>e!=e>t)return e>t?e:t}var n=r(t,e);if(void 0!==n)return n;var o=r(typeof t,typeof e);if(void 0!==o)return o===typeof t?t:e;var i=we(t),s=r(i,we(e));return void 0!==s&&s===i?t:e}));const Be=u((function(t,e){if(null!=e)return Oe(t)?l(t,e):e[t]}));const He=u((function(t,e){return Le(Be(t),e)}));const Ke=c((function(t){return De(Yt(ze,0,He("length",t)),(function(){for(var e=0,r=t.length;e<r;){if(t[e].apply(this,arguments))return!0;e+=1}return!1}))}));const We=De(1,Vt(mt,Ht("GeneratorFunction")));const Qe=De(1,Vt(mt,Ht("AsyncFunction")));const Xe=Ke([Vt(mt,Ht("Function")),We,Qe]);var Ze=Vt(mt,Ht("Object")),tr=Ee(qe(Xe,Vt(we,ce(we(Object)))),["constructor"]);const er=De(1,(function(t){if(!Ve(t)||!Ze(t))return!1;var e=Object.getPrototypeOf(t);return!!Ye(e)||tr(e)}));var rr=r(1427);const nr=class extends rr{constructor(t,e,r){if(super(t,e,r),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,er(r)&&Et("cause",r)&&!Et("cause",this)){const{cause:t}=r;this.cause=t,t instanceof Error&&Et("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}};class or extends Error{static[Symbol.hasInstance](t){return super[Symbol.hasInstance](t)||Function.prototype[Symbol.hasInstance].call(nr,t)}constructor(t,e){if(super(t,e),this.name=this.constructor.name,"string"==typeof t&&(this.message=t),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(t).stack,er(e)&&Et("cause",e)&&!Et("cause",this)){const{cause:t}=e;this.cause=t,t instanceof Error&&Et("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}}const ir=or;const sr=class extends ir{constructor(t,e){super(t,e),void 0!==e&&Object.assign(this,Ot(["cause"],e))}};const cr=class extends sr{};const ur=class extends cr{constructor(t,e){super(t,e),void 0!==e&&(this.specificTagName=e.specificTagName,this.explicitTagName=e.explicitTagName,this.tagKind=e.tagKind,this.tagPosition=e.tagPosition,this.nodeCanonicalContent=e.nodeCanonicalContent,this.node=e.node)}};const ar=u((function(t,e){return null==e||e!=e?t:e}));const lr=kt((function(t,e,r){return ar(t,Ae(e,r))}));const fr=c((function(t){return De(t.length,t)}));var pr="\t\n\v\f\r \u2028\u2029\ufeff";const yr=c("function"==typeof String.prototype.trim&&!pr.trim()&&"".trim()?function(t){return t.trim()}:function(t){var e=new RegExp("^["+pr+"]["+pr+"]*"),r=new RegExp("["+pr+"]["+pr+"]*$");return t.replace(e,"").replace(r,"")});const hr=u((function(t,e){return De(t+1,(function(){var r=arguments[t];if(null!=r&&Te(r[e]))return r[e].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(we(r)+' does not have a method named "'+e+'"')}))}));const gr=hr(1,"split");const dr=hr(1,"join");const vr=c((function(t){return a(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()}));function mr(){if(0===arguments.length)throw new Error("compose requires at least one argument");return Vt.apply(this,vr(arguments))}const br=De(4,(function(t,e,r,n){return _t(t("function"==typeof e?qt(e):e),r,n)}));const Sr=u((function(t,e){if(Nt(t)){if(Nt(e))return t.concat(e);throw new TypeError(we(e)+" is not an array")}if(a(t)){if(a(e))return t+e;throw new TypeError(we(e)+" is not a string")}if(null!=t&&Te(t["fantasy-land/concat"]))return t["fantasy-land/concat"](e);if(null!=t&&Te(t.concat))return t.concat(e);throw new TypeError(we(t)+' does not have a method named "concat" or "fantasy-land/concat"')}));const xr=ce("");const wr=u((function(t,e){return De(Yt(ze,0,He("length",e)),(function(){var r=arguments,n=this;return t.apply(n,ae((function(t){return t.apply(n,r)}),e))}))}));function Or(t){return t}const jr=c(Or);const Ar=De(1,Vt(mt,Ht("Number")));var Er=qe(Ar,isFinite);var Tr=De(1,Er);const Pr=Xe(Number.isFinite)?De(1,Dt(Number.isFinite,Number)):Tr;var kr=qe(Pr,wr(ce,[Math.floor,jr]));var Nr=De(1,kr);const Mr=Xe(Number.isInteger)?De(1,Dt(Number.isInteger,Number)):Nr;const Cr=c((function(t){return De(t.length,(function(e,r){var n=Array.prototype.slice.call(arguments,0);return n[0]=r,n[1]=e,t.apply(this,n)}))}));const Fr=Ge(Pr);const Ir=De(1,qe(Ar,u((function(t,e){return t>e}))(0)));var Dr=fr((function(t,e){var r=Number(e);if(r!==e&&(r=0),Ir(r))throw new RangeError("repeat count must be non-negative");if(Fr(r))throw new RangeError("repeat count must be less than infinity");if(r=Math.floor(r),0===t.length||0===r)return"";if(t.length*r>=1<<28)throw new RangeError("repeat count must not overflow maximum string size");var n=t.length*r;r=Math.floor(Math.log(r)/Math.log(2));for(var o=t;r;)o+=t,r-=1;return o+=o.substring(0,n-o.length)})),Lr=Cr(hr(1,"repeat"));const Rr=Xe(String.prototype.repeat)?Lr:Dr;var _r=c((function(t){return function(){return t}}))(void 0);const Ur=ce(_r());const qr=kt((function(t,e,r){return r.replace(t,e)}));var Yr=qr(/[\s\uFEFF\xA0]+$/,""),Gr=hr(0,"trimEnd");const Jr=Xe(String.prototype.trimEnd)?Gr:Yr;var $r=qr(/^[\s\uFEFF\xA0]+/,""),Vr=hr(0,"trimStart");const zr=Xe(String.prototype.trimStart)?Vr:$r;var Br=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=ge,t.prototype["@@transducer/result"]=de,t.prototype["@@transducer/step"]=function(t,e){if(this.f){if(this.f(e))return t;this.f=null}return this.xf["@@transducer/step"](t,e)},t}();function Hr(t){return function(e){return new Br(t,e)}}const Kr=u(he(["dropWhile"],Hr,(function(t,e){for(var r=0,n=e.length;r<n&&t(e[r]);)r+=1;return Jt(r,1/0,e)})));const Wr=Cr(u(ue));const Qr=fr((function(t,e){return Vt(gr(""),Kr(Wr(t)),dr(""))(e)}));const Xr=Cr(Sr);var Zr=r(2770);const tn=/^(?<style>[|>])(?<chomping>[+-]?)(?<indentation>[0-9]*)\s/,en=t=>{const e=(t=>{const e=t.match(tn),r=lr("",["groups","indentation"],e);return xr(r)?void 0:parseInt(r,10)})(t);if(Mr(e))return Rr(" ",e);const r=lr("",[1],t.split("\n")),n=lr(0,["groups","indentation","length"],r.match(/^(?<indentation>[ ]*)/));return Rr(" ",n)},rn=t=>{const e=t.match(tn),r=lr("",["groups","chomping"],e);return xr(r)?void 0:r},nn=(t,e)=>Ur(t)?`${Jr(e)}\n`:"-"===t?Jr(e):e,on=t=>t.replace(/\r\n/g,"\n"),sn=t=>t.replace(/(\n)?\n([^\n]+)/g,((t,e,r)=>e?t:` ${r.trimStart()}`)).replace(/[\n]{2}/g,"\n"),cn=fr(((t,e)=>e.replace(new RegExp(`^${t}`),"").replace(new RegExp(`${t}$`),""))),un=Vt(on,yr,sn,gr("\n"),Le(zr),dr("\n")),an=Vt(on,yr,cn("'"),sn,gr("\n"),Le(zr),dr("\n")),ln=Vt(on,yr,cn('"'),(t=>t.replace(/\\\n\s*/g,"")),sn,Zr.S6,gr("\n"),Le(zr),dr("\n")),fn=e()({methods:{test:t=>t.tag.kind===gt.Scalar&&"string"==typeof t.content,canonicalFormat(t){let e=t.content;const r=t.clone();return t.style===Q.Plain?e=un(t.content):t.style===Q.SingleQuoted?e=an(t.content):t.style===Q.DoubleQuoted?e=ln(t.content):t.style===Q.Literal?e=(t=>{const e=en(t),r=rn(t),n=on(t),o=$t(n.split("\n")),i=mr(Le(Qr(e)),Le(Xr("\n"))),s=br(i,Sr,"",o);return nn(r,s)})(t.content):t.style===Q.Folded&&(e=(t=>{const e=en(t),r=rn(t),n=on(t),o=$t(n.split("\n")),i=mr(Le(Qr(e)),Le(Xr("\n"))),s=br(i,Sr,"",o),c=sn(s);return nn(r,c)})(t.content)),r.content=e,r},resolve:t=>t}}),pn=e()(fn,{props:{tag:""}}),yn=e()(pn,{statics:{uri:"tag:yaml.org,2002:map"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>t.tag.kind===gt.Mapping,resolve:t=>t}}),hn=e()(pn,{statics:{uri:"tag:yaml.org,2002:seq"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>t.tag.kind===gt.Sequence,resolve:t=>t}}),gn=e()(pn,{statics:{uri:"tag:yaml.org,2002:str"},init(t,{stamp:e}){this.tag=e.uri},methods:{resolve:t=>t}}),dn=e()({props:{tags:[],tagDirectives:[]},init(){this.tags=[],this.tagDirectives=[],this.registerTag(yn()),this.registerTag(hn()),this.registerTag(gn())},methods:{toSpecificTagName(t){let e=t.tag.explicitName;return"!"===t.tag.explicitName?t.tag.kind===gt.Scalar?e=gn.uri:t.tag.kind===gt.Sequence?e=hn.uri:t.tag.kind===gt.Mapping&&(e=yn.uri):t.tag.explicitName.startsWith("!<")?e=t.tag.explicitName.replace(/^!</,"").replace(/>$/,""):t.tag.explicitName.startsWith("!!")&&(e=`tag:yaml.org,2002:${t.tag.explicitName.replace(/^!!/,"")}`),e},registerTagDirective(t){this.tagDirectives.push({handle:t.parameters.handle,prefix:t.parameters.prefix})},registerTag(t,e=!1){return e?this.tags.unshift(t):this.tags.push(t),this},overrideTag(t){return this.tags=this.tags.filter((e=>e.tag===t.tag)),this.tags.push(t),this},resolve(t){const e=this.toSpecificTagName(t);if("?"===e)return t;let r=t;t.tag.kind===gt.Scalar&&(r=fn().canonicalFormat(t));const n=this.tags.find((t=>t?.tag===e));if(void 0===n)throw new ur(`Tag "${e}" was not recognized.`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:xt(t.tag.position),node:t.clone()});if(!n.test(r))throw new ur(`Node couldn't be resolved against the tag "${e}"`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:xt(t.tag.position),nodeCanonicalContent:r.content,node:t.clone()});return n.resolve(r)}}}),vn=e()(pn,{statics:{uri:"tag:yaml.org,2002:bool"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^(true|false)$/.test(t.content),resolve(t){const e="true"===t.content,r=t.clone();return r.content=e,r}}}),mn=e()(pn,{statics:{uri:"tag:yaml.org,2002:float"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?$/.test(t.content),resolve(t){const e=parseFloat(t.content),r=t.clone();return r.content=e,r}}}),bn=e()(pn,{statics:{uri:"tag:yaml.org,2002:int"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)$/.test(t.content),resolve(t){const e=parseInt(t.content,10),r=t.clone();return r.content=e,r}}}),Sn=e()(pn,{statics:{uri:"tag:yaml.org,2002:null"},init(t,{stamp:e}){this.tag=e.uri},methods:{test:t=>/^null$/.test(t.content),resolve(t){const e=t.clone();return e.content=null,e}}}),xn=e()(dn,{init(){this.registerTag(vn(),!0),this.registerTag(mn(),!0),this.registerTag(bn(),!0),this.registerTag(Sn(),!0)},methods:{toSpecificTagName(t){let e=dn.compose.methods.toSpecificTagName.call(this,t);if("?"===e)if(t.tag.vkind===gt.Sequence)e=hn.uri;else if(t.tag.kind===gt.Mapping)e=yn.uri;else if(t.tag.kind===gt.Scalar){const r=this.tags.find((e=>e.test(t)));e=r?.tag||"?"}return e}}}),wn=e()(o,{statics:{type:"literal"},props:{value:null},init({value:t=null}={}){this.value=t}}),On=e()({statics:{type:"point"},props:{type:"point",row:null,column:null,char:null},init({row:t=null,column:e=null,char:r=null}={}){this.row=t,this.column=e,this.char=r}}),jn=e()({statics:{type:"position"},props:{type:"position",start:null,end:null},init({start:t=null,end:e=null}={}){this.start=t,this.end=e}}),An=e()(o,{statics:{type:"error"},props:{value:null,isUnexpected:!1},init({value:t=null,isUnexpected:e=!1}={}){this.value=t,this.isUnexpected=e}}),En=e()(o,{statics:{type:"parseResult"},methods:{get rootNode(){return f(this.children)}}}),Tn=(t,e,r)=>{const n=t[e];if(null!=n){if(!r&&"function"==typeof n)return n;const t=r?n.leave:n.enter;if("function"==typeof t)return t}else{const n=r?t.leave:t.enter;if(null!=n){if("function"==typeof n)return n;const t=n[e];if("function"==typeof t)return t}}return null},Pn={},kn=t=>t?.type,Nn=t=>"string"==typeof kn(t),Mn=t=>Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),Cn=(t,{visitFnGetter:e=Tn,nodeTypeGetter:r=kn}={})=>{const n=new Array(t.length).fill(null);return{enter(o,...i){for(let s=0;s<t.length;s+=1)if(null===n[s]){const c=e(t[s],r(o),!1);if("function"==typeof c){const e=c.call(t[s],o,...i);if(!1===e)n[s]=o;else if(e===Pn)n[s]=Pn;else if(void 0!==e)return e}}},leave(o,...i){for(let s=0;s<t.length;s+=1)if(null===n[s]){const c=e(t[s],r(o),!0);if("function"==typeof c){const e=c.call(t[s],o,...i);if(e===Pn)n[s]=Pn;else if(void 0!==e&&!1!==e)return e}}else n[s]===o&&(n[s]=null)}}},Fn=(t,e,{keyMap:r=null,state:n={},breakSymbol:o=Pn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=Tn,nodeTypeGetter:u=kn,nodePredicate:a=Nn,nodeCloneFn:l=Mn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const S=[],x=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===x.length?void 0:S.pop(),b=h,h=x.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;S.push(r)}if(x.includes(b))continue;let O;if(!Array.isArray(b)){if(!a(b))throw new sr(`Invalid AST Node: ${String(b)}`,{node:b});if(f&&x.includes(b)){S.pop();continue}const i=c(e,u(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;O=i.call(e,b,r,h,S,x)}if(O===o)break;if(O===s){if(!t){S.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!a(O)){S.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[u(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&x.push(h),h=b)}while(void 0!==y);return 0!==m.length?m.at(-1)[1]:t};Fn[Symbol.for("nodejs.util.promisify.custom")]=async(t,e,{keyMap:r=null,state:n={},breakSymbol:o=Pn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=Tn,nodeTypeGetter:u=kn,nodePredicate:a=Nn,nodeCloneFn:l=Mn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const S=[],x=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===x.length?void 0:S.pop(),b=h,h=x.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;S.push(r)}let O;if(!Array.isArray(b)){if(!a(b))throw new sr(`Invalid AST Node: ${String(b)}`,{node:b});if(f&&x.includes(b)){S.pop();continue}const i=c(e,u(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;O=await i.call(e,b,r,h,S,x)}if(O===o)break;if(O===s){if(!t){S.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!a(O)){S.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[u(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&x.push(h),h=b)}while(void 0!==y);return 0!==m.length?m.at(-1)[1]:t}})(),n})()));
|
package/es/traversal/visitor.mjs
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { ApiDOMStructuredError } from '@swagger-api/apidom-error';
|
2
2
|
|
3
3
|
/**
|
4
4
|
* SPDX-FileCopyrightText: Copyright (c) GraphQL Contributors
|
@@ -268,7 +268,9 @@ visitor, {
|
|
268
268
|
let result;
|
269
269
|
if (!Array.isArray(node)) {
|
270
270
|
if (!nodePredicate(node)) {
|
271
|
-
throw new
|
271
|
+
throw new ApiDOMStructuredError(`Invalid AST Node: ${String(node)}`, {
|
272
|
+
node
|
273
|
+
});
|
272
274
|
}
|
273
275
|
|
274
276
|
// cycle detected; skipping over a sub-tree to avoid recursion
|
@@ -417,7 +419,9 @@ visitor, {
|
|
417
419
|
let result;
|
418
420
|
if (!Array.isArray(node)) {
|
419
421
|
if (!nodePredicate(node)) {
|
420
|
-
throw new
|
422
|
+
throw new ApiDOMStructuredError(`Invalid AST Node: ${String(node)}`, {
|
423
|
+
node
|
424
|
+
});
|
421
425
|
}
|
422
426
|
|
423
427
|
// cycle detected; skipping over a sub-tree to avoid recursion
|
@@ -82,7 +82,8 @@ const FailsafeSchema = stampit({
|
|
82
82
|
specificTagName,
|
83
83
|
explicitTagName: node.tag.explicitName,
|
84
84
|
tagKind: node.tag.kind,
|
85
|
-
tagPosition: clone(node.tag.position)
|
85
|
+
tagPosition: clone(node.tag.position),
|
86
|
+
node: node.clone()
|
86
87
|
});
|
87
88
|
}
|
88
89
|
|
@@ -93,7 +94,8 @@ const FailsafeSchema = stampit({
|
|
93
94
|
explicitTagName: node.tag.explicitName,
|
94
95
|
tagKind: node.tag.kind,
|
95
96
|
tagPosition: clone(node.tag.position),
|
96
|
-
nodeCanonicalContent: canonicalNode.content
|
97
|
+
nodeCanonicalContent: canonicalNode.content,
|
98
|
+
node: node.clone()
|
97
99
|
});
|
98
100
|
}
|
99
101
|
return tag.resolve(canonicalNode);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@swagger-api/apidom-ast",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.80.0",
|
4
4
|
"description": "Tools necessary for parsing stage of ApiDOM, specifically for syntactic analysis.",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
"homepage": "https://github.com/swagger-api/apidom#readme",
|
43
43
|
"dependencies": {
|
44
44
|
"@babel/runtime-corejs3": "^7.20.7",
|
45
|
-
"@swagger-api/apidom-error": "^0.
|
45
|
+
"@swagger-api/apidom-error": "^0.80.0",
|
46
46
|
"@types/ramda": "~0.29.6",
|
47
47
|
"ramda": "~0.29.0",
|
48
48
|
"ramda-adjunct": "^4.1.1",
|
@@ -59,5 +59,5 @@
|
|
59
59
|
"README.md",
|
60
60
|
"CHANGELOG.md"
|
61
61
|
],
|
62
|
-
"gitHead": "
|
62
|
+
"gitHead": "c959dedb5900d9d6ec2ba64aebc30a999d61b696"
|
63
63
|
}
|
package/types/dist.d.ts
CHANGED
@@ -217,12 +217,13 @@ declare const isDirective: (node: any) => boolean;
|
|
217
217
|
declare class YamlSchemaError extends ApiDOMStructuredError {
|
218
218
|
}
|
219
219
|
|
220
|
-
interface YamlTagErrorOptions extends ApiDOMErrorOptions {
|
220
|
+
interface YamlTagErrorOptions<T extends Node$1 = Node$1> extends ApiDOMErrorOptions {
|
221
221
|
readonly specificTagName: string;
|
222
222
|
readonly explicitTagName: string;
|
223
223
|
readonly tagKind: string;
|
224
224
|
readonly tagPosition?: Position;
|
225
225
|
readonly nodeCanonicalContent?: string;
|
226
|
+
readonly node?: T;
|
226
227
|
}
|
227
228
|
declare class YamlTagError extends YamlSchemaError {
|
228
229
|
readonly specificTagName: string;
|
@@ -230,6 +231,7 @@ declare class YamlTagError extends YamlSchemaError {
|
|
230
231
|
readonly tagKind: string;
|
231
232
|
readonly tagPosition?: Position;
|
232
233
|
readonly nodeCanonicalContent?: string;
|
234
|
+
readonly node?: unknown;
|
233
235
|
constructor(message?: string, structuredOptions?: YamlTagErrorOptions);
|
234
236
|
}
|
235
237
|
|