@swagger-api/apidom-ns-openapi-2 0.98.0 → 0.99.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 CHANGED
@@ -3,6 +3,10 @@
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.99.0](https://github.com/swagger-api/apidom/compare/v0.98.3...v0.99.0) (2024-04-03)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-ns-openapi-2
9
+
6
10
  # [0.98.0](https://github.com/swagger-api/apidom/compare/v0.97.1...v0.98.0) (2024-03-21)
7
11
 
8
12
  **Note:** Version bump only for package @swagger-api/apidom-ns-openapi-2
@@ -2337,7 +2337,7 @@ __webpack_require__.r(__webpack_exports__);
2337
2337
  /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(88326);
2338
2338
  /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(27155);
2339
2339
  /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(35956);
2340
- /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(88945);
2340
+ /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(49915);
2341
2341
  /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(14864);
2342
2342
  /* harmony import */ var _specification__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27715);
2343
2343
  /* harmony import */ var _traversal_visitor__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(80192);
@@ -2368,7 +2368,7 @@ const refract = (value, {
2368
2368
  /**
2369
2369
  * Running plugins visitors means extra single traversal === performance hit.
2370
2370
  */
2371
- return (0,_swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__.dispatchPlugins)(rootVisitor.element, plugins, {
2371
+ return (0,_swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__.dispatchPluginsSync)(rootVisitor.element, plugins, {
2372
2372
  toolboxCreator: _toolbox__WEBPACK_IMPORTED_MODULE_6__["default"],
2373
2373
  visitorOptions: {
2374
2374
  keyMap: _traversal_visitor__WEBPACK_IMPORTED_MODULE_7__.keyMap,
@@ -21270,6 +21270,7 @@ const cloneNode = node => Object.create(Object.getPrototypeOf(node), Object.getO
21270
21270
  * If a prior visitor edits a node, no following visitors will see that node.
21271
21271
  * `exposeEdits=true` can be used to exoise the edited node from the previous visitors.
21272
21272
  */
21273
+
21273
21274
  const mergeAll = (visitors, {
21274
21275
  visitFnGetter = getVisitFn,
21275
21276
  nodeTypeGetter = getNodeType,
@@ -21328,6 +21329,67 @@ const mergeAll = (visitors, {
21328
21329
  }
21329
21330
  };
21330
21331
  };
21332
+ const mergeAllAsync = (visitors, {
21333
+ visitFnGetter = getVisitFn,
21334
+ nodeTypeGetter = getNodeType,
21335
+ breakSymbol = BREAK,
21336
+ deleteNodeSymbol = null,
21337
+ skipVisitingNodeSymbol = false,
21338
+ exposeEdits = false
21339
+ } = {}) => {
21340
+ const skipSymbol = Symbol('skip');
21341
+ const skipping = new Array(visitors.length).fill(skipSymbol);
21342
+ return {
21343
+ async enter(node, ...rest) {
21344
+ let currentNode = node;
21345
+ let hasChanged = false;
21346
+ for (let i = 0; i < visitors.length; i += 1) {
21347
+ if (skipping[i] === skipSymbol) {
21348
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), false);
21349
+ if (typeof visitFn === 'function') {
21350
+ // eslint-disable-next-line no-await-in-loop
21351
+ const result = await visitFn.call(visitors[i], currentNode, ...rest);
21352
+ if (result === skipVisitingNodeSymbol) {
21353
+ skipping[i] = node;
21354
+ } else if (result === breakSymbol) {
21355
+ skipping[i] = breakSymbol;
21356
+ } else if (result === deleteNodeSymbol) {
21357
+ return result;
21358
+ } else if (result !== undefined) {
21359
+ if (exposeEdits) {
21360
+ currentNode = result;
21361
+ hasChanged = true;
21362
+ } else {
21363
+ return result;
21364
+ }
21365
+ }
21366
+ }
21367
+ }
21368
+ }
21369
+ return hasChanged ? currentNode : undefined;
21370
+ },
21371
+ async leave(node, ...rest) {
21372
+ for (let i = 0; i < visitors.length; i += 1) {
21373
+ if (skipping[i] === skipSymbol) {
21374
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(node), true);
21375
+ if (typeof visitFn === 'function') {
21376
+ // eslint-disable-next-line no-await-in-loop
21377
+ const result = await visitFn.call(visitors[i], node, ...rest);
21378
+ if (result === breakSymbol) {
21379
+ skipping[i] = breakSymbol;
21380
+ } else if (result !== undefined && result !== skipVisitingNodeSymbol) {
21381
+ return result;
21382
+ }
21383
+ }
21384
+ } else if (skipping[i] === node) {
21385
+ skipping[i] = skipSymbol;
21386
+ }
21387
+ }
21388
+ return undefined;
21389
+ }
21390
+ };
21391
+ };
21392
+ mergeAll[Symbol.for('nodejs.util.promisify.custom')] = mergeAllAsync;
21331
21393
 
21332
21394
  /* eslint-disable no-continue, no-param-reassign */
21333
21395
  /**
@@ -22474,7 +22536,7 @@ __webpack_require__.r(__webpack_exports__);
22474
22536
  /* harmony export */ createRefractor: () => (/* binding */ createRefractor),
22475
22537
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
22476
22538
  /* harmony export */ });
22477
- /* harmony import */ var _plugins_utils_index_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(88945);
22539
+ /* harmony import */ var _plugins_dispatcher_index_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(49915);
22478
22540
  /* harmony import */ var _traversal_visitor_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(35956);
22479
22541
  /* harmony import */ var _clone_index_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(14831);
22480
22542
  /* harmony import */ var _predicates_index_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(70060);
@@ -22507,7 +22569,7 @@ const refract = (value, {
22507
22569
  * Run plugins only when necessary.
22508
22570
  * Running plugins visitors means extra single traversal === performance hit.
22509
22571
  */
22510
- return (0,_plugins_utils_index_mjs__WEBPACK_IMPORTED_MODULE_2__.dispatchPlugins)(element, plugins, {
22572
+ return (0,_plugins_dispatcher_index_mjs__WEBPACK_IMPORTED_MODULE_2__.dispatchPluginsSync)(element, plugins, {
22511
22573
  toolboxCreator: _toolbox_mjs__WEBPACK_IMPORTED_MODULE_3__["default"],
22512
22574
  visitorOptions: {
22513
22575
  nodeTypeGetter: _traversal_visitor_mjs__WEBPACK_IMPORTED_MODULE_4__.getNodeType
@@ -22522,13 +22584,14 @@ const createRefractor = Type => (value, options = {}) => refract(value, {
22522
22584
 
22523
22585
  /***/ }),
22524
22586
 
22525
- /***/ 88945:
22587
+ /***/ 49915:
22526
22588
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
22527
22589
 
22528
22590
  "use strict";
22529
22591
  __webpack_require__.r(__webpack_exports__);
22530
22592
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
22531
- /* harmony export */ dispatchPlugins: () => (/* binding */ dispatchPlugins)
22593
+ /* harmony export */ dispatchPluginsAsync: () => (/* binding */ dispatchPluginsAsync),
22594
+ /* harmony export */ dispatchPluginsSync: () => (/* binding */ dispatchPluginsSync)
22532
22595
  /* harmony export */ });
22533
22596
  /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(81515);
22534
22597
  /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(85379);
@@ -22547,9 +22610,7 @@ const defaultDispatchPluginsOptions = {
22547
22610
  exposeEdits: true
22548
22611
  }
22549
22612
  };
22550
-
22551
- // eslint-disable-next-line import/prefer-default-export
22552
- const dispatchPlugins = (element, plugins, options = {}) => {
22613
+ const dispatchPluginsSync = (element, plugins, options = {}) => {
22553
22614
  if (plugins.length === 0) return element;
22554
22615
  const mergedOptions = (0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])(defaultDispatchPluginsOptions, options);
22555
22616
  const {
@@ -22566,6 +22627,26 @@ const dispatchPlugins = (element, plugins, options = {}) => {
22566
22627
  pluginsSpecs.forEach((0,ramda_adjunct__WEBPACK_IMPORTED_MODULE_5__["default"])(['post'], []));
22567
22628
  return newElement;
22568
22629
  };
22630
+ const dispatchPluginsAsync = async (element, plugins, options = {}) => {
22631
+ if (plugins.length === 0) return element;
22632
+ const mergedOptions = (0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])(defaultDispatchPluginsOptions, options);
22633
+ const {
22634
+ toolboxCreator,
22635
+ visitorOptions
22636
+ } = mergedOptions;
22637
+ const toolbox = toolboxCreator();
22638
+ const pluginsSpecs = plugins.map(plugin => plugin(toolbox));
22639
+ const mergeAllVisitorsAsync = _traversal_visitor_mjs__WEBPACK_IMPORTED_MODULE_3__.mergeAll[Symbol.for('nodejs.util.promisify.custom')];
22640
+ const visitAsync = _traversal_visitor_mjs__WEBPACK_IMPORTED_MODULE_1__.visit[Symbol.for('nodejs.util.promisify.custom')];
22641
+ const mergedPluginsVisitor = mergeAllVisitorsAsync(pluginsSpecs.map((0,ramda__WEBPACK_IMPORTED_MODULE_4__["default"])({}, 'visitor')), {
22642
+ ...visitorOptions
22643
+ });
22644
+ await Promise.allSettled(pluginsSpecs.map((0,ramda_adjunct__WEBPACK_IMPORTED_MODULE_5__["default"])(['pre'], [])));
22645
+ const newElement = await visitAsync(element, mergedPluginsVisitor, visitorOptions);
22646
+ await Promise.allSettled(pluginsSpecs.map((0,ramda_adjunct__WEBPACK_IMPORTED_MODULE_5__["default"])(['post'], [])));
22647
+ return newElement;
22648
+ };
22649
+ dispatchPluginsSync[Symbol.for('nodejs.util.promisify.custom')] = dispatchPluginsAsync;
22569
22650
 
22570
22651
  /***/ }),
22571
22652
 
@@ -23709,7 +23790,7 @@ __webpack_require__.r(__webpack_exports__);
23709
23790
  /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(88326);
23710
23791
  /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(27155);
23711
23792
  /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(35956);
23712
- /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(88945);
23793
+ /* harmony import */ var _swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(49915);
23713
23794
  /* harmony import */ var _specification_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(53785);
23714
23795
  /* harmony import */ var _traversal_visitor_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(13720);
23715
23796
  /* harmony import */ var _toolbox_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(20363);
@@ -23742,7 +23823,7 @@ const refract = (value, {
23742
23823
  /**
23743
23824
  * Running plugins visitors means extra single traversal === performance hit.
23744
23825
  */
23745
- return (0,_swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__.dispatchPlugins)(rootVisitor.element, plugins, {
23826
+ return (0,_swagger_api_apidom_core__WEBPACK_IMPORTED_MODULE_5__.dispatchPluginsSync)(rootVisitor.element, plugins, {
23746
23827
  toolboxCreator: _toolbox_mjs__WEBPACK_IMPORTED_MODULE_6__["default"],
23747
23828
  visitorOptions: {
23748
23829
  keyMap: _traversal_visitor_mjs__WEBPACK_IMPORTED_MODULE_7__.keyMap,
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.apidomNsOpenApi2=t():e.apidomNsOpenApi2=t()}(self,(()=>(()=>{var e={3103:(e,t,n)=>{var r=n(4715)(n(8942),"DataView");e.exports=r},5098:(e,t,n)=>{var r=n(3305),s=n(9361),i=n(1112),o=n(5276),a=n(5071);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,e.exports=c},1386:(e,t,n)=>{var r=n(2393),s=n(2049),i=n(7144),o=n(7452),a=n(3964);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,e.exports=c},9770:(e,t,n)=>{var r=n(4715)(n(8942),"Map");e.exports=r},8250:(e,t,n)=>{var r=n(9753),s=n(5681),i=n(88),o=n(4732),a=n(9068);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,e.exports=c},9413:(e,t,n)=>{var r=n(4715)(n(8942),"Promise");e.exports=r},4512:(e,t,n)=>{var r=n(4715)(n(8942),"Set");e.exports=r},3212:(e,t,n)=>{var r=n(8250),s=n(1877),i=n(8006);function o(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new r;++t<n;)this.add(e[t])}o.prototype.add=o.prototype.push=s,o.prototype.has=i,e.exports=o},1340:(e,t,n)=>{var r=n(1386),s=n(4103),i=n(1779),o=n(4162),a=n(7462),c=n(6638);function u(e){var t=this.__data__=new r(e);this.size=t.size}u.prototype.clear=s,u.prototype.delete=i,u.prototype.get=o,u.prototype.has=a,u.prototype.set=c,e.exports=u},5650:(e,t,n)=>{var r=n(8942).Symbol;e.exports=r},1623:(e,t,n)=>{var r=n(8942).Uint8Array;e.exports=r},9270:(e,t,n)=>{var r=n(4715)(n(8942),"WeakMap");e.exports=r},9847:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length,s=0,i=[];++n<r;){var o=e[n];t(o,n,e)&&(i[s++]=o)}return i}},358:(e,t,n)=>{var r=n(6137),s=n(3283),i=n(3142),o=n(5853),a=n(9632),c=n(8666),u=Object.prototype.hasOwnProperty;e.exports=function(e,t){var n=i(e),l=!n&&s(e),p=!n&&!l&&o(e),h=!n&&!l&&!p&&c(e),m=n||l||p||h,f=m?r(e.length,String):[],d=f.length;for(var y in e)!t&&!u.call(e,y)||m&&("length"==y||p&&("offset"==y||"parent"==y)||h&&("buffer"==y||"byteLength"==y||"byteOffset"==y)||a(y,d))||f.push(y);return f}},1129:e=>{e.exports=function(e,t){for(var n=-1,r=t.length,s=e.length;++n<r;)e[s+n]=t[n];return e}},6465:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}},7034:(e,t,n)=>{var r=n(6285);e.exports=function(e,t){for(var n=e.length;n--;)if(r(e[n][0],t))return n;return-1}},8244:(e,t,n)=>{var r=n(1129),s=n(3142);e.exports=function(e,t,n){var i=t(e);return s(e)?i:r(i,n(e))}},7379:(e,t,n)=>{var r=n(5650),s=n(8870),i=n(9005),o=r?r.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":o&&o in Object(e)?s(e):i(e)}},6027:(e,t,n)=>{var r=n(7379),s=n(547);e.exports=function(e){return s(e)&&"[object Arguments]"==r(e)}},4687:(e,t,n)=>{var r=n(353),s=n(547);e.exports=function e(t,n,i,o,a){return t===n||(null==t||null==n||!s(t)&&!s(n)?t!=t&&n!=n:r(t,n,i,o,e,a))}},353:(e,t,n)=>{var r=n(1340),s=n(3934),i=n(8861),o=n(1182),a=n(8486),c=n(3142),u=n(5853),l=n(8666),p="[object Arguments]",h="[object Array]",m="[object Object]",f=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,d,y,g){var v=c(e),b=c(t),w=v?h:a(e),E=b?h:a(t),x=(w=w==p?m:w)==m,j=(E=E==p?m:E)==m,O=w==E;if(O&&u(e)){if(!u(t))return!1;v=!0,x=!1}if(O&&!x)return g||(g=new r),v||l(e)?s(e,t,n,d,y,g):i(e,t,w,n,d,y,g);if(!(1&n)){var S=x&&f.call(e,"__wrapped__"),P=j&&f.call(t,"__wrapped__");if(S||P){var A=S?e.value():e,_=P?t.value():t;return g||(g=new r),y(A,_,n,d,g)}}return!!O&&(g||(g=new r),o(e,t,n,d,y,g))}},9624:(e,t,n)=>{var r=n(3655),s=n(4759),i=n(1580),o=n(4066),a=/^\[object .+?Constructor\]$/,c=Function.prototype,u=Object.prototype,l=c.toString,p=u.hasOwnProperty,h=RegExp("^"+l.call(p).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!i(e)||s(e))&&(r(e)?h:a).test(o(e))}},674:(e,t,n)=>{var r=n(7379),s=n(5387),i=n(547),o={};o["[object Float32Array]"]=o["[object Float64Array]"]=o["[object Int8Array]"]=o["[object Int16Array]"]=o["[object Int32Array]"]=o["[object Uint8Array]"]=o["[object Uint8ClampedArray]"]=o["[object Uint16Array]"]=o["[object Uint32Array]"]=!0,o["[object Arguments]"]=o["[object Array]"]=o["[object ArrayBuffer]"]=o["[object Boolean]"]=o["[object DataView]"]=o["[object Date]"]=o["[object Error]"]=o["[object Function]"]=o["[object Map]"]=o["[object Number]"]=o["[object Object]"]=o["[object RegExp]"]=o["[object Set]"]=o["[object String]"]=o["[object WeakMap]"]=!1,e.exports=function(e){return i(e)&&s(e.length)&&!!o[r(e)]}},195:(e,t,n)=>{var r=n(4882),s=n(8121),i=Object.prototype.hasOwnProperty;e.exports=function(e){if(!r(e))return s(e);var t=[];for(var n in Object(e))i.call(e,n)&&"constructor"!=n&&t.push(n);return t}},6137:e=>{e.exports=function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}},9460:e=>{e.exports=function(e){return function(t){return e(t)}}},5568:e=>{e.exports=function(e,t){return e.has(t)}},1950:(e,t,n)=>{var r=n(8942)["__core-js_shared__"];e.exports=r},3934:(e,t,n)=>{var r=n(3212),s=n(6465),i=n(5568);e.exports=function(e,t,n,o,a,c){var u=1&n,l=e.length,p=t.length;if(l!=p&&!(u&&p>l))return!1;var h=c.get(e),m=c.get(t);if(h&&m)return h==t&&m==e;var f=-1,d=!0,y=2&n?new r:void 0;for(c.set(e,t),c.set(t,e);++f<l;){var g=e[f],v=t[f];if(o)var b=u?o(v,g,f,t,e,c):o(g,v,f,e,t,c);if(void 0!==b){if(b)continue;d=!1;break}if(y){if(!s(t,(function(e,t){if(!i(y,t)&&(g===e||a(g,e,n,o,c)))return y.push(t)}))){d=!1;break}}else if(g!==v&&!a(g,v,n,o,c)){d=!1;break}}return c.delete(e),c.delete(t),d}},8861:(e,t,n)=>{var r=n(5650),s=n(1623),i=n(6285),o=n(3934),a=n(5894),c=n(9828),u=r?r.prototype:void 0,l=u?u.valueOf:void 0;e.exports=function(e,t,n,r,u,p,h){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!p(new s(e),new s(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return i(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var m=a;case"[object Set]":var f=1&r;if(m||(m=c),e.size!=t.size&&!f)return!1;var d=h.get(e);if(d)return d==t;r|=2,h.set(e,t);var y=o(m(e),m(t),r,u,p,h);return h.delete(e),y;case"[object Symbol]":if(l)return l.call(e)==l.call(t)}return!1}},1182:(e,t,n)=>{var r=n(393),s=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,i,o,a){var c=1&n,u=r(e),l=u.length;if(l!=r(t).length&&!c)return!1;for(var p=l;p--;){var h=u[p];if(!(c?h in t:s.call(t,h)))return!1}var m=a.get(e),f=a.get(t);if(m&&f)return m==t&&f==e;var d=!0;a.set(e,t),a.set(t,e);for(var y=c;++p<l;){var g=e[h=u[p]],v=t[h];if(i)var b=c?i(v,g,h,t,e,a):i(g,v,h,e,t,a);if(!(void 0===b?g===v||o(g,v,n,i,a):b)){d=!1;break}y||(y="constructor"==h)}if(d&&!y){var w=e.constructor,E=t.constructor;w==E||!("constructor"in e)||!("constructor"in t)||"function"==typeof w&&w instanceof w&&"function"==typeof E&&E instanceof E||(d=!1)}return a.delete(e),a.delete(t),d}},4967:(e,t,n)=>{var r="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g;e.exports=r},393:(e,t,n)=>{var r=n(8244),s=n(7979),i=n(1211);e.exports=function(e){return r(e,i,s)}},4700:(e,t,n)=>{var r=n(9067);e.exports=function(e,t){var n=e.__data__;return r(t)?n["string"==typeof t?"string":"hash"]:n.map}},4715:(e,t,n)=>{var r=n(9624),s=n(155);e.exports=function(e,t){var n=s(e,t);return r(n)?n:void 0}},8870:(e,t,n)=>{var r=n(5650),s=Object.prototype,i=s.hasOwnProperty,o=s.toString,a=r?r.toStringTag:void 0;e.exports=function(e){var t=i.call(e,a),n=e[a];try{e[a]=void 0;var r=!0}catch(e){}var s=o.call(e);return r&&(t?e[a]=n:delete e[a]),s}},7979:(e,t,n)=>{var r=n(9847),s=n(9306),i=Object.prototype.propertyIsEnumerable,o=Object.getOwnPropertySymbols,a=o?function(e){return null==e?[]:(e=Object(e),r(o(e),(function(t){return i.call(e,t)})))}:s;e.exports=a},8486:(e,t,n)=>{var r=n(3103),s=n(9770),i=n(9413),o=n(4512),a=n(9270),c=n(7379),u=n(4066),l="[object Map]",p="[object Promise]",h="[object Set]",m="[object WeakMap]",f="[object DataView]",d=u(r),y=u(s),g=u(i),v=u(o),b=u(a),w=c;(r&&w(new r(new ArrayBuffer(1)))!=f||s&&w(new s)!=l||i&&w(i.resolve())!=p||o&&w(new o)!=h||a&&w(new a)!=m)&&(w=function(e){var t=c(e),n="[object Object]"==t?e.constructor:void 0,r=n?u(n):"";if(r)switch(r){case d:return f;case y:return l;case g:return p;case v:return h;case b:return m}return t}),e.exports=w},155:e=>{e.exports=function(e,t){return null==e?void 0:e[t]}},3305:(e,t,n)=>{var r=n(4497);e.exports=function(){this.__data__=r?r(null):{},this.size=0}},9361:e=>{e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},1112:(e,t,n)=>{var r=n(4497),s=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(r){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return s.call(t,e)?t[e]:void 0}},5276:(e,t,n)=>{var r=n(4497),s=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return r?void 0!==t[e]:s.call(t,e)}},5071:(e,t,n)=>{var r=n(4497);e.exports=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=r&&void 0===t?"__lodash_hash_undefined__":t,this}},9632:e=>{var t=/^(?:0|[1-9]\d*)$/;e.exports=function(e,n){var r=typeof e;return!!(n=null==n?9007199254740991:n)&&("number"==r||"symbol"!=r&&t.test(e))&&e>-1&&e%1==0&&e<n}},9067:e=>{e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},4759:(e,t,n)=>{var r,s=n(1950),i=(r=/[^.]+$/.exec(s&&s.keys&&s.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"";e.exports=function(e){return!!i&&i in e}},4882:e=>{var t=Object.prototype;e.exports=function(e){var n=e&&e.constructor;return e===("function"==typeof n&&n.prototype||t)}},2393:e=>{e.exports=function(){this.__data__=[],this.size=0}},2049:(e,t,n)=>{var r=n(7034),s=Array.prototype.splice;e.exports=function(e){var t=this.__data__,n=r(t,e);return!(n<0)&&(n==t.length-1?t.pop():s.call(t,n,1),--this.size,!0)}},7144:(e,t,n)=>{var r=n(7034);e.exports=function(e){var t=this.__data__,n=r(t,e);return n<0?void 0:t[n][1]}},7452:(e,t,n)=>{var r=n(7034);e.exports=function(e){return r(this.__data__,e)>-1}},3964:(e,t,n)=>{var r=n(7034);e.exports=function(e,t){var n=this.__data__,s=r(n,e);return s<0?(++this.size,n.push([e,t])):n[s][1]=t,this}},9753:(e,t,n)=>{var r=n(5098),s=n(1386),i=n(9770);e.exports=function(){this.size=0,this.__data__={hash:new r,map:new(i||s),string:new r}}},5681:(e,t,n)=>{var r=n(4700);e.exports=function(e){var t=r(this,e).delete(e);return this.size-=t?1:0,t}},88:(e,t,n)=>{var r=n(4700);e.exports=function(e){return r(this,e).get(e)}},4732:(e,t,n)=>{var r=n(4700);e.exports=function(e){return r(this,e).has(e)}},9068:(e,t,n)=>{var r=n(4700);e.exports=function(e,t){var n=r(this,e),s=n.size;return n.set(e,t),this.size+=n.size==s?0:1,this}},5894:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}},4497:(e,t,n)=>{var r=n(4715)(Object,"create");e.exports=r},8121:(e,t,n)=>{var r=n(3766)(Object.keys,Object);e.exports=r},2306:(e,t,n)=>{e=n.nmd(e);var r=n(4967),s=t&&!t.nodeType&&t,i=s&&e&&!e.nodeType&&e,o=i&&i.exports===s&&r.process,a=function(){try{var e=i&&i.require&&i.require("util").types;return e||o&&o.binding&&o.binding("util")}catch(e){}}();e.exports=a},9005:e=>{var t=Object.prototype.toString;e.exports=function(e){return t.call(e)}},3766:e=>{e.exports=function(e,t){return function(n){return e(t(n))}}},8942:(e,t,n)=>{var r=n(4967),s="object"==typeof self&&self&&self.Object===Object&&self,i=r||s||Function("return this")();e.exports=i},1877:e=>{e.exports=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this}},8006:e=>{e.exports=function(e){return this.__data__.has(e)}},9828:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n}},4103:(e,t,n)=>{var r=n(1386);e.exports=function(){this.__data__=new r,this.size=0}},1779:e=>{e.exports=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}},4162:e=>{e.exports=function(e){return this.__data__.get(e)}},7462:e=>{e.exports=function(e){return this.__data__.has(e)}},6638:(e,t,n)=>{var r=n(1386),s=n(9770),i=n(8250);e.exports=function(e,t){var n=this.__data__;if(n instanceof r){var o=n.__data__;if(!s||o.length<199)return o.push([e,t]),this.size=++n.size,this;n=this.__data__=new i(o)}return n.set(e,t),this.size=n.size,this}},4066:e=>{var t=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return t.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},6285:e=>{e.exports=function(e,t){return e===t||e!=e&&t!=t}},3283:(e,t,n)=>{var r=n(6027),s=n(547),i=Object.prototype,o=i.hasOwnProperty,a=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(e){return s(e)&&o.call(e,"callee")&&!a.call(e,"callee")};e.exports=c},3142:e=>{var t=Array.isArray;e.exports=t},6529:(e,t,n)=>{var r=n(3655),s=n(5387);e.exports=function(e){return null!=e&&s(e.length)&&!r(e)}},2563:(e,t,n)=>{var r=n(7379),s=n(547);e.exports=function(e){return!0===e||!1===e||s(e)&&"[object Boolean]"==r(e)}},5853:(e,t,n)=>{e=n.nmd(e);var r=n(8942),s=n(4772),i=t&&!t.nodeType&&t,o=i&&e&&!e.nodeType&&e,a=o&&o.exports===i?r.Buffer:void 0,c=(a?a.isBuffer:void 0)||s;e.exports=c},6343:(e,t,n)=>{var r=n(4687);e.exports=function(e,t){return r(e,t)}},3655:(e,t,n)=>{var r=n(7379),s=n(1580);e.exports=function(e){if(!s(e))return!1;var t=r(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},5387:e=>{e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},9310:e=>{e.exports=function(e){return null===e}},986:(e,t,n)=>{var r=n(7379),s=n(547);e.exports=function(e){return"number"==typeof e||s(e)&&"[object Number]"==r(e)}},1580:e=>{e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},547:e=>{e.exports=function(e){return null!=e&&"object"==typeof e}},8138:(e,t,n)=>{var r=n(7379),s=n(3142),i=n(547);e.exports=function(e){return"string"==typeof e||!s(e)&&i(e)&&"[object String]"==r(e)}},8666:(e,t,n)=>{var r=n(674),s=n(9460),i=n(2306),o=i&&i.isTypedArray,a=o?s(o):r;e.exports=a},1211:(e,t,n)=>{var r=n(358),s=n(195),i=n(6529);e.exports=function(e){return i(e)?r(e):s(e)}},1517:e=>{e.exports=function(e){if("function"!=typeof e)throw new TypeError("Expected a function");return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}},9306:e=>{e.exports=function(){return[]}},4772:e=>{e.exports=function(){return!1}},4123:(e,t,n)=>{const r=n(1517);function s(e){return"string"==typeof e?t=>t.element===e:e.constructor&&e.extend?t=>t instanceof e:e}class i{constructor(e){this.elements=e||[]}toValue(){return this.elements.map((e=>e.toValue()))}map(e,t){return this.elements.map(e,t)}flatMap(e,t){return this.map(e,t).reduce(((e,t)=>e.concat(t)),[])}compactMap(e,t){const n=[];return this.forEach((r=>{const s=e.bind(t)(r);s&&n.push(s)})),n}filter(e,t){return e=s(e),new i(this.elements.filter(e,t))}reject(e,t){return e=s(e),new i(this.elements.filter(r(e),t))}find(e,t){return e=s(e),this.elements.find(e,t)}forEach(e,t){this.elements.forEach(e,t)}reduce(e,t){return this.elements.reduce(e,t)}includes(e){return this.elements.some((t=>t.equals(e)))}shift(){return this.elements.shift()}unshift(e){this.elements.unshift(this.refract(e))}push(e){return this.elements.push(this.refract(e)),this}add(e){this.push(e)}get(e){return this.elements[e]}getValue(e){const t=this.elements[e];if(t)return t.toValue()}get length(){return this.elements.length}get isEmpty(){return 0===this.elements.length}get first(){return this.elements[0]}}"undefined"!=typeof Symbol&&(i.prototype[Symbol.iterator]=function(){return this.elements[Symbol.iterator]()}),e.exports=i},2322:e=>{class t{constructor(e,t){this.key=e,this.value=t}clone(){const e=new t;return this.key&&(e.key=this.key.clone()),this.value&&(e.value=this.value.clone()),e}}e.exports=t},5735:(e,t,n)=>{const r=n(9310),s=n(8138),i=n(986),o=n(2563),a=n(1580),c=n(394),u=n(7547);class l{constructor(e){this.elementMap={},this.elementDetection=[],this.Element=u.Element,this.KeyValuePair=u.KeyValuePair,e&&e.noDefault||this.useDefault(),this._attributeElementKeys=[],this._attributeElementArrayKeys=[]}use(e){return e.namespace&&e.namespace({base:this}),e.load&&e.load({base:this}),this}useDefault(){return this.register("null",u.NullElement).register("string",u.StringElement).register("number",u.NumberElement).register("boolean",u.BooleanElement).register("array",u.ArrayElement).register("object",u.ObjectElement).register("member",u.MemberElement).register("ref",u.RefElement).register("link",u.LinkElement),this.detect(r,u.NullElement,!1).detect(s,u.StringElement,!1).detect(i,u.NumberElement,!1).detect(o,u.BooleanElement,!1).detect(Array.isArray,u.ArrayElement,!1).detect(a,u.ObjectElement,!1),this}register(e,t){return this._elements=void 0,this.elementMap[e]=t,this}unregister(e){return this._elements=void 0,delete this.elementMap[e],this}detect(e,t,n){return void 0===n||n?this.elementDetection.unshift([e,t]):this.elementDetection.push([e,t]),this}toElement(e){if(e instanceof this.Element)return e;let t;for(let n=0;n<this.elementDetection.length;n+=1){const r=this.elementDetection[n][0],s=this.elementDetection[n][1];if(r(e)){t=new s(e);break}}return t}getElementClass(e){const t=this.elementMap[e];return void 0===t?this.Element:t}fromRefract(e){return this.serialiser.deserialise(e)}toRefract(e){return this.serialiser.serialise(e)}get elements(){return void 0===this._elements&&(this._elements={Element:this.Element},Object.keys(this.elementMap).forEach((e=>{const t=e[0].toUpperCase()+e.substr(1);this._elements[t]=this.elementMap[e]}))),this._elements}get serialiser(){return new c(this)}}c.prototype.Namespace=l,e.exports=l},3311:(e,t,n)=>{const r=n(1517),s=n(4123);class i extends s{map(e,t){return this.elements.map((n=>e.bind(t)(n.value,n.key,n)))}filter(e,t){return new i(this.elements.filter((n=>e.bind(t)(n.value,n.key,n))))}reject(e,t){return this.filter(r(e.bind(t)))}forEach(e,t){return this.elements.forEach(((n,r)=>{e.bind(t)(n.value,n.key,n,r)}))}keys(){return this.map(((e,t)=>t.toValue()))}values(){return this.map((e=>e.toValue()))}}e.exports=i},7547:(e,t,n)=>{const r=n(8631),s=n(3004),i=n(8712),o=n(2536),a=n(2555),c=n(9796),u=n(7309),l=n(5642),p=n(9620),h=n(593),m=n(4123),f=n(3311),d=n(2322);function y(e){if(e instanceof r)return e;if("string"==typeof e)return new i(e);if("number"==typeof e)return new o(e);if("boolean"==typeof e)return new a(e);if(null===e)return new s;if(Array.isArray(e))return new c(e.map(y));if("object"==typeof e){return new l(e)}return e}r.prototype.ObjectElement=l,r.prototype.RefElement=h,r.prototype.MemberElement=u,r.prototype.refract=y,m.prototype.refract=y,e.exports={Element:r,NullElement:s,StringElement:i,NumberElement:o,BooleanElement:a,ArrayElement:c,MemberElement:u,ObjectElement:l,LinkElement:p,RefElement:h,refract:y,ArraySlice:m,ObjectSlice:f,KeyValuePair:d}},9620:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e||[],t,n),this.element="link"}get relation(){return this.attributes.get("relation")}set relation(e){this.attributes.set("relation",e)}get href(){return this.attributes.get("href")}set href(e){this.attributes.set("href",e)}}},593:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e||[],t,n),this.element="ref",this.path||(this.path="element")}get path(){return this.attributes.get("path")}set path(e){this.attributes.set("path",e)}}},8326:(e,t,n)=>{const r=n(5735),s=n(7547);t.g$=r,t.KeyValuePair=n(2322),t.G6=s.ArraySlice,t.ot=s.ObjectSlice,t.Hg=s.Element,t.Om=s.StringElement,t.kT=s.NumberElement,t.bd=s.BooleanElement,t.Os=s.NullElement,t.wE=s.ArrayElement,t.Sh=s.ObjectElement,t.Pr=s.MemberElement,t.sI=s.RefElement,t.Ft=s.LinkElement,t.e=s.refract,n(394),n(3148)},9796:(e,t,n)=>{const r=n(1517),s=n(8631),i=n(4123);class o extends s{constructor(e,t,n){super(e||[],t,n),this.element="array"}primitive(){return"array"}get(e){return this.content[e]}getValue(e){const t=this.get(e);if(t)return t.toValue()}getIndex(e){return this.content[e]}set(e,t){return this.content[e]=this.refract(t),this}remove(e){const t=this.content.splice(e,1);return t.length?t[0]:null}map(e,t){return this.content.map(e,t)}flatMap(e,t){return this.map(e,t).reduce(((e,t)=>e.concat(t)),[])}compactMap(e,t){const n=[];return this.forEach((r=>{const s=e.bind(t)(r);s&&n.push(s)})),n}filter(e,t){return new i(this.content.filter(e,t))}reject(e,t){return this.filter(r(e),t)}reduce(e,t){let n,r;void 0!==t?(n=0,r=this.refract(t)):(n=1,r="object"===this.primitive()?this.first.value:this.first);for(let t=n;t<this.length;t+=1){const n=this.content[t];r="object"===this.primitive()?this.refract(e(r,n.value,n.key,n,this)):this.refract(e(r,n,t,this))}return r}forEach(e,t){this.content.forEach(((n,r)=>{e.bind(t)(n,this.refract(r))}))}shift(){return this.content.shift()}unshift(e){this.content.unshift(this.refract(e))}push(e){return this.content.push(this.refract(e)),this}add(e){this.push(e)}findElements(e,t){const n=t||{},r=!!n.recursive,s=void 0===n.results?[]:n.results;return this.forEach(((t,n,i)=>{r&&void 0!==t.findElements&&t.findElements(e,{results:s,recursive:r}),e(t,n,i)&&s.push(t)})),s}find(e){return new i(this.findElements(e,{recursive:!0}))}findByElement(e){return this.find((t=>t.element===e))}findByClass(e){return this.find((t=>t.classes.includes(e)))}getById(e){return this.find((t=>t.id.toValue()===e)).first}includes(e){return this.content.some((t=>t.equals(e)))}contains(e){return this.includes(e)}empty(){return new this.constructor([])}"fantasy-land/empty"(){return this.empty()}concat(e){return new this.constructor(this.content.concat(e.content))}"fantasy-land/concat"(e){return this.concat(e)}"fantasy-land/map"(e){return new this.constructor(this.map(e))}"fantasy-land/chain"(e){return this.map((t=>e(t)),this).reduce(((e,t)=>e.concat(t)),this.empty())}"fantasy-land/filter"(e){return new this.constructor(this.content.filter(e))}"fantasy-land/reduce"(e,t){return this.content.reduce(e,t)}get length(){return this.content.length}get isEmpty(){return 0===this.content.length}get first(){return this.getIndex(0)}get second(){return this.getIndex(1)}get last(){return this.getIndex(this.length-1)}}o.empty=function(){return new this},o["fantasy-land/empty"]=o.empty,"undefined"!=typeof Symbol&&(o.prototype[Symbol.iterator]=function(){return this.content[Symbol.iterator]()}),e.exports=o},2555:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e,t,n),this.element="boolean"}primitive(){return"boolean"}}},8631:(e,t,n)=>{const r=n(6343),s=n(2322),i=n(4123);class o{constructor(e,t,n){t&&(this.meta=t),n&&(this.attributes=n),this.content=e}freeze(){Object.isFrozen(this)||(this._meta&&(this.meta.parent=this,this.meta.freeze()),this._attributes&&(this.attributes.parent=this,this.attributes.freeze()),this.children.forEach((e=>{e.parent=this,e.freeze()}),this),this.content&&Array.isArray(this.content)&&Object.freeze(this.content),Object.freeze(this))}primitive(){}clone(){const e=new this.constructor;return e.element=this.element,this.meta.length&&(e._meta=this.meta.clone()),this.attributes.length&&(e._attributes=this.attributes.clone()),this.content?this.content.clone?e.content=this.content.clone():Array.isArray(this.content)?e.content=this.content.map((e=>e.clone())):e.content=this.content:e.content=this.content,e}toValue(){return this.content instanceof o?this.content.toValue():this.content instanceof s?{key:this.content.key.toValue(),value:this.content.value?this.content.value.toValue():void 0}:this.content&&this.content.map?this.content.map((e=>e.toValue()),this):this.content}toRef(e){if(""===this.id.toValue())throw Error("Cannot create reference to an element that does not contain an ID");const t=new this.RefElement(this.id.toValue());return e&&(t.path=e),t}findRecursive(...e){if(arguments.length>1&&!this.isFrozen)throw new Error("Cannot find recursive with multiple element names without first freezing the element. Call `element.freeze()`");const t=e.pop();let n=new i;const r=(e,t)=>(e.push(t),e),o=(e,n)=>{n.element===t&&e.push(n);const i=n.findRecursive(t);return i&&i.reduce(r,e),n.content instanceof s&&(n.content.key&&o(e,n.content.key),n.content.value&&o(e,n.content.value)),e};return this.content&&(this.content.element&&o(n,this.content),Array.isArray(this.content)&&this.content.reduce(o,n)),e.isEmpty||(n=n.filter((t=>{let n=t.parents.map((e=>e.element));for(const t in e){const r=e[t],s=n.indexOf(r);if(-1===s)return!1;n=n.splice(0,s)}return!0}))),n}set(e){return this.content=e,this}equals(e){return r(this.toValue(),e)}getMetaProperty(e,t){if(!this.meta.hasKey(e)){if(this.isFrozen){const e=this.refract(t);return e.freeze(),e}this.meta.set(e,t)}return this.meta.get(e)}setMetaProperty(e,t){this.meta.set(e,t)}get element(){return this._storedElement||"element"}set element(e){this._storedElement=e}get content(){return this._content}set content(e){if(e instanceof o)this._content=e;else if(e instanceof i)this.content=e.elements;else if("string"==typeof e||"number"==typeof e||"boolean"==typeof e||"null"===e||null==e)this._content=e;else if(e instanceof s)this._content=e;else if(Array.isArray(e))this._content=e.map(this.refract);else{if("object"!=typeof e)throw new Error("Cannot set content to given value");this._content=Object.keys(e).map((t=>new this.MemberElement(t,e[t])))}}get meta(){if(!this._meta){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._meta=new this.ObjectElement}return this._meta}set meta(e){e instanceof this.ObjectElement?this._meta=e:this.meta.set(e||{})}get attributes(){if(!this._attributes){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._attributes=new this.ObjectElement}return this._attributes}set attributes(e){e instanceof this.ObjectElement?this._attributes=e:this.attributes.set(e||{})}get id(){return this.getMetaProperty("id","")}set id(e){this.setMetaProperty("id",e)}get classes(){return this.getMetaProperty("classes",[])}set classes(e){this.setMetaProperty("classes",e)}get title(){return this.getMetaProperty("title","")}set title(e){this.setMetaProperty("title",e)}get description(){return this.getMetaProperty("description","")}set description(e){this.setMetaProperty("description",e)}get links(){return this.getMetaProperty("links",[])}set links(e){this.setMetaProperty("links",e)}get isFrozen(){return Object.isFrozen(this)}get parents(){let{parent:e}=this;const t=new i;for(;e;)t.push(e),e=e.parent;return t}get children(){if(Array.isArray(this.content))return new i(this.content);if(this.content instanceof s){const e=new i([this.content.key]);return this.content.value&&e.push(this.content.value),e}return this.content instanceof o?new i([this.content]):new i}get recursiveChildren(){const e=new i;return this.children.forEach((t=>{e.push(t),t.recursiveChildren.forEach((t=>{e.push(t)}))})),e}}e.exports=o},7309:(e,t,n)=>{const r=n(2322),s=n(8631);e.exports=class extends s{constructor(e,t,n,s){super(new r,n,s),this.element="member",this.key=e,this.value=t}get key(){return this.content.key}set key(e){this.content.key=this.refract(e)}get value(){return this.content.value}set value(e){this.content.value=this.refract(e)}}},3004:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e||null,t,n),this.element="null"}primitive(){return"null"}set(){return new Error("Cannot set the value of null")}}},2536:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e,t,n),this.element="number"}primitive(){return"number"}}},5642:(e,t,n)=>{const r=n(1517),s=n(1580),i=n(9796),o=n(7309),a=n(3311);e.exports=class extends i{constructor(e,t,n){super(e||[],t,n),this.element="object"}primitive(){return"object"}toValue(){return this.content.reduce(((e,t)=>(e[t.key.toValue()]=t.value?t.value.toValue():void 0,e)),{})}get(e){const t=this.getMember(e);if(t)return t.value}getMember(e){if(void 0!==e)return this.content.find((t=>t.key.toValue()===e))}remove(e){let t=null;return this.content=this.content.filter((n=>n.key.toValue()!==e||(t=n,!1))),t}getKey(e){const t=this.getMember(e);if(t)return t.key}set(e,t){if(s(e))return Object.keys(e).forEach((t=>{this.set(t,e[t])})),this;const n=e,r=this.getMember(n);return r?r.value=t:this.content.push(new o(n,t)),this}keys(){return this.content.map((e=>e.key.toValue()))}values(){return this.content.map((e=>e.value.toValue()))}hasKey(e){return this.content.some((t=>t.key.equals(e)))}items(){return this.content.map((e=>[e.key.toValue(),e.value.toValue()]))}map(e,t){return this.content.map((n=>e.bind(t)(n.value,n.key,n)))}compactMap(e,t){const n=[];return this.forEach(((r,s,i)=>{const o=e.bind(t)(r,s,i);o&&n.push(o)})),n}filter(e,t){return new a(this.content).filter(e,t)}reject(e,t){return this.filter(r(e),t)}forEach(e,t){return this.content.forEach((n=>e.bind(t)(n.value,n.key,n)))}}},8712:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e,t,n),this.element="string"}primitive(){return"string"}get length(){return this.content.length}}},3148:(e,t,n)=>{const r=n(394);e.exports=class extends r{serialise(e){if(!(e instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${e}\` is not an Element instance`);let t;e._attributes&&e.attributes.get("variable")&&(t=e.attributes.get("variable"));const n={element:e.element};e._meta&&e._meta.length>0&&(n.meta=this.serialiseObject(e.meta));const r="enum"===e.element||-1!==e.attributes.keys().indexOf("enumerations");if(r){const t=this.enumSerialiseAttributes(e);t&&(n.attributes=t)}else if(e._attributes&&e._attributes.length>0){let{attributes:r}=e;r.get("metadata")&&(r=r.clone(),r.set("meta",r.get("metadata")),r.remove("metadata")),"member"===e.element&&t&&(r=r.clone(),r.remove("variable")),r.length>0&&(n.attributes=this.serialiseObject(r))}if(r)n.content=this.enumSerialiseContent(e,n);else if(this[`${e.element}SerialiseContent`])n.content=this[`${e.element}SerialiseContent`](e,n);else if(void 0!==e.content){let r;t&&e.content.key?(r=e.content.clone(),r.key.attributes.set("variable",t),r=this.serialiseContent(r)):r=this.serialiseContent(e.content),this.shouldSerialiseContent(e,r)&&(n.content=r)}else this.shouldSerialiseContent(e,e.content)&&e instanceof this.namespace.elements.Array&&(n.content=[]);return n}shouldSerialiseContent(e,t){return"parseResult"===e.element||"httpRequest"===e.element||"httpResponse"===e.element||"category"===e.element||"link"===e.element||void 0!==t&&(!Array.isArray(t)||0!==t.length)}refSerialiseContent(e,t){return delete t.attributes,{href:e.toValue(),path:e.path.toValue()}}sourceMapSerialiseContent(e){return e.toValue()}dataStructureSerialiseContent(e){return[this.serialiseContent(e.content)]}enumSerialiseAttributes(e){const t=e.attributes.clone(),n=t.remove("enumerations")||new this.namespace.elements.Array([]),r=t.get("default");let s=t.get("samples")||new this.namespace.elements.Array([]);if(r&&r.content&&(r.content.attributes&&r.content.attributes.remove("typeAttributes"),t.set("default",new this.namespace.elements.Array([r.content]))),s.forEach((e=>{e.content&&e.content.element&&e.content.attributes.remove("typeAttributes")})),e.content&&0!==n.length&&s.unshift(e.content),s=s.map((e=>e instanceof this.namespace.elements.Array?[e]:new this.namespace.elements.Array([e.content]))),s.length&&t.set("samples",s),t.length>0)return this.serialiseObject(t)}enumSerialiseContent(e){if(e._attributes){const t=e.attributes.get("enumerations");if(t&&t.length>0)return t.content.map((e=>{const t=e.clone();return t.attributes.remove("typeAttributes"),this.serialise(t)}))}if(e.content){const t=e.content.clone();return t.attributes.remove("typeAttributes"),[this.serialise(t)]}return[]}deserialise(e){if("string"==typeof e)return new this.namespace.elements.String(e);if("number"==typeof e)return new this.namespace.elements.Number(e);if("boolean"==typeof e)return new this.namespace.elements.Boolean(e);if(null===e)return new this.namespace.elements.Null;if(Array.isArray(e))return new this.namespace.elements.Array(e.map(this.deserialise,this));const t=this.namespace.getElementClass(e.element),n=new t;n.element!==e.element&&(n.element=e.element),e.meta&&this.deserialiseObject(e.meta,n.meta),e.attributes&&this.deserialiseObject(e.attributes,n.attributes);const r=this.deserialiseContent(e.content);if(void 0===r&&null!==n.content||(n.content=r),"enum"===n.element){n.content&&n.attributes.set("enumerations",n.content);let e=n.attributes.get("samples");if(n.attributes.remove("samples"),e){const r=e;e=new this.namespace.elements.Array,r.forEach((r=>{r.forEach((r=>{const s=new t(r);s.element=n.element,e.push(s)}))}));const s=e.shift();n.content=s?s.content:void 0,n.attributes.set("samples",e)}else n.content=void 0;let r=n.attributes.get("default");if(r&&r.length>0){r=r.get(0);const e=new t(r);e.element=n.element,n.attributes.set("default",e)}}else if("dataStructure"===n.element&&Array.isArray(n.content))[n.content]=n.content;else if("category"===n.element){const e=n.attributes.get("meta");e&&(n.attributes.set("metadata",e),n.attributes.remove("meta"))}else"member"===n.element&&n.key&&n.key._attributes&&n.key._attributes.getValue("variable")&&(n.attributes.set("variable",n.key.attributes.get("variable")),n.key.attributes.remove("variable"));return n}serialiseContent(e){if(e instanceof this.namespace.elements.Element)return this.serialise(e);if(e instanceof this.namespace.KeyValuePair){const t={key:this.serialise(e.key)};return e.value&&(t.value=this.serialise(e.value)),t}return e&&e.map?e.map(this.serialise,this):e}deserialiseContent(e){if(e){if(e.element)return this.deserialise(e);if(e.key){const t=new this.namespace.KeyValuePair(this.deserialise(e.key));return e.value&&(t.value=this.deserialise(e.value)),t}if(e.map)return e.map(this.deserialise,this)}return e}shouldRefract(e){return!!(e._attributes&&e.attributes.keys().length||e._meta&&e.meta.keys().length)||"enum"!==e.element&&(e.element!==e.primitive()||"member"===e.element)}convertKeyToRefract(e,t){return this.shouldRefract(t)?this.serialise(t):"enum"===t.element?this.serialiseEnum(t):"array"===t.element?t.map((t=>this.shouldRefract(t)||"default"===e?this.serialise(t):"array"===t.element||"object"===t.element||"enum"===t.element?t.children.map((e=>this.serialise(e))):t.toValue())):"object"===t.element?(t.content||[]).map(this.serialise,this):t.toValue()}serialiseEnum(e){return e.children.map((e=>this.serialise(e)))}serialiseObject(e){const t={};return e.forEach(((e,n)=>{if(e){const r=n.toValue();t[r]=this.convertKeyToRefract(r,e)}})),t}deserialiseObject(e,t){Object.keys(e).forEach((n=>{t.set(n,this.deserialise(e[n]))}))}}},394:e=>{e.exports=class{constructor(e){this.namespace=e||new this.Namespace}serialise(e){if(!(e instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${e}\` is not an Element instance`);const t={element:e.element};e._meta&&e._meta.length>0&&(t.meta=this.serialiseObject(e.meta)),e._attributes&&e._attributes.length>0&&(t.attributes=this.serialiseObject(e.attributes));const n=this.serialiseContent(e.content);return void 0!==n&&(t.content=n),t}deserialise(e){if(!e.element)throw new Error("Given value is not an object containing an element name");const t=new(this.namespace.getElementClass(e.element));t.element!==e.element&&(t.element=e.element),e.meta&&this.deserialiseObject(e.meta,t.meta),e.attributes&&this.deserialiseObject(e.attributes,t.attributes);const n=this.deserialiseContent(e.content);return void 0===n&&null!==t.content||(t.content=n),t}serialiseContent(e){if(e instanceof this.namespace.elements.Element)return this.serialise(e);if(e instanceof this.namespace.KeyValuePair){const t={key:this.serialise(e.key)};return e.value&&(t.value=this.serialise(e.value)),t}if(e&&e.map){if(0===e.length)return;return e.map(this.serialise,this)}return e}deserialiseContent(e){if(e){if(e.element)return this.deserialise(e);if(e.key){const t=new this.namespace.KeyValuePair(this.deserialise(e.key));return e.value&&(t.value=this.deserialise(e.value)),t}if(e.map)return e.map(this.deserialise,this)}return e}serialiseObject(e){const t={};if(e.forEach(((e,n)=>{e&&(t[n.toValue()]=this.serialise(e))})),0!==Object.keys(t).length)return t}deserialiseObject(e,t){Object.keys(e).forEach((n=>{t.set(n,this.deserialise(e[n]))}))}}},8357:e=>{!function(){"use strict";var t,n,r,s,i,o="properties",a="deepProperties",c="propertyDescriptors",u="staticProperties",l="staticDeepProperties",p="staticPropertyDescriptors",h="configuration",m="deepConfiguration",f="deepProps",d="deepStatics",y="deepConf",g="initializers",v="methods",b="composers",w="compose";function E(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e):[])}function x(e,t){return Array.prototype.slice.call(arguments,2).reduce(e,t)}var j=x.bind(0,(function(e,t){if(t)for(var n=E(t),r=0;r<n.length;r+=1)Object.defineProperty(e,n[r],Object.getOwnPropertyDescriptor(t,n[r]));return e}));function O(e){return"function"==typeof e}function S(e){return e&&"object"==typeof e||O(e)}function P(e){return e&&"object"==typeof e&&e.__proto__==Object.prototype}var A=x.bind(0,(function e(n,r){if(r===t)return n;if(Array.isArray(r))return(Array.isArray(n)?n:[]).concat(r);if(!P(r))return r;for(var s,i,o=E(r),a=0;a<o.length;)s=o[a++],(i=Object.getOwnPropertyDescriptor(r,s)).hasOwnProperty("value")?i.value!==t&&(n[s]=e(P(n[s])||Array.isArray(r[s])?n[s]:{},r[s])):Object.defineProperty(n,s,i);return n}));function _(){return(n=Array.prototype.concat.apply([],arguments).filter((function(e,t,n){return O(e)&&n.indexOf(e)===t}))).length?n:t}function k(e,t){function r(n,r){S(t[n])&&(S(e[n])||(e[n]={}),(r||j)(e[n],t[n]))}function s(r){(n=_(e[r],t[r]))&&(e[r]=n)}return t&&S(t=t[w]||t)&&(r(v),r(o),r(a,A),r(c),r(u),r(l,A),r(p),r(h),r(m,A),s(g),s(b)),e}function M(){return function(e){return n=function e(n){var r,s,i=e[w]||{},u={__proto__:i[v]},l=i[g],p=Array.prototype.slice.apply(arguments),h=i[a];if(h&&A(u,h),(h=i[o])&&j(u,h),(h=i[c])&&Object.defineProperties(u,h),!l||!l.length)return u;for(n===t&&(n={}),i=0;i<l.length;)O(r=l[i++])&&(u=(s=r.call(u,n,{instance:u,stamp:e,args:p}))===t?u:s);return u},(r=e[l])&&A(n,r),(r=e[u])&&j(n,r),(r=e[p])&&Object.defineProperties(n,r),r=O(n[w])?n[w]:M,j(n[w]=function(){return r.apply(this,arguments)},e),n}(Array.prototype.concat.apply([this],arguments).reduce(k,{}))}function I(e){return O(e)&&O(e[w])}var T={};function $(e,i){return function(){return(s={})[e]=i.apply(t,Array.prototype.concat.apply([{}],arguments)),((n=this)&&n[w]||r).call(n,s)}}T[v]=$(v,j),T[o]=T.props=$(o,j),T[g]=T.init=$(g,_),T[b]=$(b,_),T[a]=T[f]=$(a,A),T[u]=T.statics=$(u,j),T[l]=T[d]=$(l,A),T[h]=T.conf=$(h,j),T[m]=T[y]=$(m,A),T[c]=$(c,j),T[p]=$(p,j),r=T[w]=j((function(){for(var e,E,x=0,O=[],P=arguments,k=this;x<P.length;)S(e=P[x++])&&O.push(I(e)?e:((s={})[v]=(E=e)[v]||t,r=E.props,s[o]=S((n=E[o])||r)?j({},r,n):t,s[g]=_(E.init,E[g]),s[b]=_(E[b]),r=E[f],s[a]=S((n=E[a])||r)?A({},r,n):t,s[c]=E[c],r=E.statics,s[u]=S((n=E[u])||r)?j({},r,n):t,r=E[d],s[l]=S((n=E[l])||r)?A({},r,n):t,n=E[p],s[p]=S((r=E.name&&{name:{value:E.name}})||n)?j({},n,r):t,r=E.conf,s[h]=S((n=E[h])||r)?j({},r,n):t,r=E[y],s[m]=S((n=E[m])||r)?A({},r,n):t,s));if(e=M.apply(k||i,O),k&&O.unshift(k),Array.isArray(P=e[w][b]))for(x=0;x<P.length;)e=I(k=P[x++]({stamp:e,composables:O}))?k:e;return e}),T),T.create=function(){return this.apply(t,arguments)},(s={})[u]=T,i=M(s),r[w]=r.bind(),r.version="4.3.2","object"!=typeof t?e.exports=r:self.stampit=r}()},1212:(e,t,n)=>{e.exports=n(8411)},7202:(e,t,n)=>{"use strict";var r=n(239);e.exports=r},6656:(e,t,n)=>{"use strict";n(484),n(5695),n(6138),n(7447),n(3832);var r=n(8099);e.exports=r.AggregateError},8411:(e,t,n)=>{"use strict";e.exports=n(8337)},8337:(e,t,n)=>{"use strict";n(5442);var r=n(7202);e.exports=r},814:(e,t,n)=>{"use strict";var r=n(2769),s=n(459),i=TypeError;e.exports=function(e){if(r(e))return e;throw new i(s(e)+" is not a function")}},1966:(e,t,n)=>{"use strict";var r=n(2937),s=String,i=TypeError;e.exports=function(e){if(r(e))return e;throw new i("Can't set "+s(e)+" as a prototype")}},8137:e=>{"use strict";e.exports=function(){}},7235:(e,t,n)=>{"use strict";var r=n(262),s=String,i=TypeError;e.exports=function(e){if(r(e))return e;throw new i(s(e)+" is not an object")}},1005:(e,t,n)=>{"use strict";var r=n(3273),s=n(4574),i=n(8130),o=function(e){return function(t,n,o){var a,c=r(t),u=i(c),l=s(o,u);if(e&&n!=n){for(;u>l;)if((a=c[l++])!=a)return!0}else for(;u>l;l++)if((e||l in c)&&c[l]===n)return e||l||0;return!e&&-1}};e.exports={includes:o(!0),indexOf:o(!1)}},9932:(e,t,n)=>{"use strict";var r=n(6100),s=r({}.toString),i=r("".slice);e.exports=function(e){return i(s(e),8,-1)}},8407:(e,t,n)=>{"use strict";var r=n(4904),s=n(2769),i=n(9932),o=n(8655)("toStringTag"),a=Object,c="Arguments"===i(function(){return arguments}());e.exports=r?i:function(e){var t,n,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=a(e),o))?n:c?i(t):"Object"===(r=i(t))&&s(t.callee)?"Arguments":r}},7464:(e,t,n)=>{"use strict";var r=n(701),s=n(5691),i=n(4543),o=n(9989);e.exports=function(e,t,n){for(var a=s(t),c=o.f,u=i.f,l=0;l<a.length;l++){var p=a[l];r(e,p)||n&&r(n,p)||c(e,p,u(t,p))}}},2871:(e,t,n)=>{"use strict";var r=n(1203);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},877:e=>{"use strict";e.exports=function(e,t){return{value:e,done:t}}},3999:(e,t,n)=>{"use strict";var r=n(5024),s=n(9989),i=n(480);e.exports=r?function(e,t,n){return s.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},480:e=>{"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},3508:(e,t,n)=>{"use strict";var r=n(3999);e.exports=function(e,t,n,s){return s&&s.enumerable?e[t]=n:r(e,t,n),e}},7525:(e,t,n)=>{"use strict";var r=n(1063),s=Object.defineProperty;e.exports=function(e,t){try{s(r,e,{value:t,configurable:!0,writable:!0})}catch(n){r[e]=t}return t}},5024:(e,t,n)=>{"use strict";var r=n(1203);e.exports=!r((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},9619:(e,t,n)=>{"use strict";var r=n(1063),s=n(262),i=r.document,o=s(i)&&s(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},1100:e=>{"use strict";e.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}},7868:e=>{"use strict";e.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4432:(e,t,n)=>{"use strict";var r,s,i=n(1063),o=n(7868),a=i.process,c=i.Deno,u=a&&a.versions||c&&c.version,l=u&&u.v8;l&&(s=(r=l.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!s&&o&&(!(r=o.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=o.match(/Chrome\/(\d+)/))&&(s=+r[1]),e.exports=s},9683:e=>{"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},3885:(e,t,n)=>{"use strict";var r=n(6100),s=Error,i=r("".replace),o=String(new s("zxcasd").stack),a=/\n\s*at [^:]*:[^\n]*/,c=a.test(o);e.exports=function(e,t){if(c&&"string"==typeof e&&!s.prepareStackTrace)for(;t--;)e=i(e,a,"");return e}},4279:(e,t,n)=>{"use strict";var r=n(3999),s=n(3885),i=n(5791),o=Error.captureStackTrace;e.exports=function(e,t,n,a){i&&(o?o(e,t):r(e,"stack",s(n,a)))}},5791:(e,t,n)=>{"use strict";var r=n(1203),s=n(480);e.exports=!r((function(){var e=new Error("a");return!("stack"in e)||(Object.defineProperty(e,"stack",s(1,7)),7!==e.stack)}))},9098:(e,t,n)=>{"use strict";var r=n(1063),s=n(7013),i=n(9344),o=n(2769),a=n(4543).f,c=n(8696),u=n(8099),l=n(4572),p=n(3999),h=n(701),m=function(e){var t=function(n,r,i){if(this instanceof t){switch(arguments.length){case 0:return new e;case 1:return new e(n);case 2:return new e(n,r)}return new e(n,r,i)}return s(e,this,arguments)};return t.prototype=e.prototype,t};e.exports=function(e,t){var n,s,f,d,y,g,v,b,w,E=e.target,x=e.global,j=e.stat,O=e.proto,S=x?r:j?r[E]:r[E]&&r[E].prototype,P=x?u:u[E]||p(u,E,{})[E],A=P.prototype;for(d in t)s=!(n=c(x?d:E+(j?".":"#")+d,e.forced))&&S&&h(S,d),g=P[d],s&&(v=e.dontCallGetSet?(w=a(S,d))&&w.value:S[d]),y=s&&v?v:t[d],(n||O||typeof g!=typeof y)&&(b=e.bind&&s?l(y,r):e.wrap&&s?m(y):O&&o(y)?i(y):y,(e.sham||y&&y.sham||g&&g.sham)&&p(b,"sham",!0),p(P,d,b),O&&(h(u,f=E+"Prototype")||p(u,f,{}),p(u[f],d,y),e.real&&A&&(n||!A[d])&&p(A,d,y)))}},1203:e=>{"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},7013:(e,t,n)=>{"use strict";var r=n(1780),s=Function.prototype,i=s.apply,o=s.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(i):function(){return o.apply(i,arguments)})},4572:(e,t,n)=>{"use strict";var r=n(9344),s=n(814),i=n(1780),o=r(r.bind);e.exports=function(e,t){return s(e),void 0===t?e:i?o(e,t):function(){return e.apply(t,arguments)}}},1780:(e,t,n)=>{"use strict";var r=n(1203);e.exports=!r((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},4713:(e,t,n)=>{"use strict";var r=n(1780),s=Function.prototype.call;e.exports=r?s.bind(s):function(){return s.apply(s,arguments)}},3410:(e,t,n)=>{"use strict";var r=n(5024),s=n(701),i=Function.prototype,o=r&&Object.getOwnPropertyDescriptor,a=s(i,"name"),c=a&&"something"===function(){}.name,u=a&&(!r||r&&o(i,"name").configurable);e.exports={EXISTS:a,PROPER:c,CONFIGURABLE:u}},3574:(e,t,n)=>{"use strict";var r=n(6100),s=n(814);e.exports=function(e,t,n){try{return r(s(Object.getOwnPropertyDescriptor(e,t)[n]))}catch(e){}}},9344:(e,t,n)=>{"use strict";var r=n(9932),s=n(6100);e.exports=function(e){if("Function"===r(e))return s(e)}},6100:(e,t,n)=>{"use strict";var r=n(1780),s=Function.prototype,i=s.call,o=r&&s.bind.bind(i,i);e.exports=r?o:function(e){return function(){return i.apply(e,arguments)}}},1003:(e,t,n)=>{"use strict";var r=n(8099),s=n(1063),i=n(2769),o=function(e){return i(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?o(r[e])||o(s[e]):r[e]&&r[e][t]||s[e]&&s[e][t]}},967:(e,t,n)=>{"use strict";var r=n(8407),s=n(4674),i=n(3057),o=n(6625),a=n(8655)("iterator");e.exports=function(e){if(!i(e))return s(e,a)||s(e,"@@iterator")||o[r(e)]}},1613:(e,t,n)=>{"use strict";var r=n(4713),s=n(814),i=n(7235),o=n(459),a=n(967),c=TypeError;e.exports=function(e,t){var n=arguments.length<2?a(e):t;if(s(n))return i(r(n,e));throw new c(o(e)+" is not iterable")}},4674:(e,t,n)=>{"use strict";var r=n(814),s=n(3057);e.exports=function(e,t){var n=e[t];return s(n)?void 0:r(n)}},1063:function(e,t,n){"use strict";var r=function(e){return e&&e.Math===Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||r("object"==typeof this&&this)||function(){return this}()||Function("return this")()},701:(e,t,n)=>{"use strict";var r=n(6100),s=n(2137),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(s(e),t)}},5241:e=>{"use strict";e.exports={}},3489:(e,t,n)=>{"use strict";var r=n(1003);e.exports=r("document","documentElement")},9665:(e,t,n)=>{"use strict";var r=n(5024),s=n(1203),i=n(9619);e.exports=!r&&!s((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},1395:(e,t,n)=>{"use strict";var r=n(6100),s=n(1203),i=n(9932),o=Object,a=r("".split);e.exports=s((function(){return!o("z").propertyIsEnumerable(0)}))?function(e){return"String"===i(e)?a(e,""):o(e)}:o},3507:(e,t,n)=>{"use strict";var r=n(2769),s=n(262),i=n(3491);e.exports=function(e,t,n){var o,a;return i&&r(o=t.constructor)&&o!==n&&s(a=o.prototype)&&a!==n.prototype&&i(e,a),e}},8148:(e,t,n)=>{"use strict";var r=n(262),s=n(3999);e.exports=function(e,t){r(t)&&"cause"in t&&s(e,"cause",t.cause)}},8417:(e,t,n)=>{"use strict";var r,s,i,o=n(1314),a=n(1063),c=n(262),u=n(3999),l=n(701),p=n(3753),h=n(4275),m=n(5241),f="Object already initialized",d=a.TypeError,y=a.WeakMap;if(o||p.state){var g=p.state||(p.state=new y);g.get=g.get,g.has=g.has,g.set=g.set,r=function(e,t){if(g.has(e))throw new d(f);return t.facade=e,g.set(e,t),t},s=function(e){return g.get(e)||{}},i=function(e){return g.has(e)}}else{var v=h("state");m[v]=!0,r=function(e,t){if(l(e,v))throw new d(f);return t.facade=e,u(e,v,t),t},s=function(e){return l(e,v)?e[v]:{}},i=function(e){return l(e,v)}}e.exports={set:r,get:s,has:i,enforce:function(e){return i(e)?s(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!c(t)||(n=s(t)).type!==e)throw new d("Incompatible receiver, "+e+" required");return n}}}},2877:(e,t,n)=>{"use strict";var r=n(8655),s=n(6625),i=r("iterator"),o=Array.prototype;e.exports=function(e){return void 0!==e&&(s.Array===e||o[i]===e)}},2769:e=>{"use strict";var t="object"==typeof document&&document.all;e.exports=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},8696:(e,t,n)=>{"use strict";var r=n(1203),s=n(2769),i=/#|\.prototype\./,o=function(e,t){var n=c[a(e)];return n===l||n!==u&&(s(t)?r(t):!!t)},a=o.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=o.data={},u=o.NATIVE="N",l=o.POLYFILL="P";e.exports=o},3057:e=>{"use strict";e.exports=function(e){return null==e}},262:(e,t,n)=>{"use strict";var r=n(2769);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},2937:(e,t,n)=>{"use strict";var r=n(262);e.exports=function(e){return r(e)||null===e}},4871:e=>{"use strict";e.exports=!0},6281:(e,t,n)=>{"use strict";var r=n(1003),s=n(2769),i=n(4317),o=n(7460),a=Object;e.exports=o?function(e){return"symbol"==typeof e}:function(e){var t=r("Symbol");return s(t)&&i(t.prototype,a(e))}},208:(e,t,n)=>{"use strict";var r=n(4572),s=n(4713),i=n(7235),o=n(459),a=n(2877),c=n(8130),u=n(4317),l=n(1613),p=n(967),h=n(1743),m=TypeError,f=function(e,t){this.stopped=e,this.result=t},d=f.prototype;e.exports=function(e,t,n){var y,g,v,b,w,E,x,j=n&&n.that,O=!(!n||!n.AS_ENTRIES),S=!(!n||!n.IS_RECORD),P=!(!n||!n.IS_ITERATOR),A=!(!n||!n.INTERRUPTED),_=r(t,j),k=function(e){return y&&h(y,"normal",e),new f(!0,e)},M=function(e){return O?(i(e),A?_(e[0],e[1],k):_(e[0],e[1])):A?_(e,k):_(e)};if(S)y=e.iterator;else if(P)y=e;else{if(!(g=p(e)))throw new m(o(e)+" is not iterable");if(a(g)){for(v=0,b=c(e);b>v;v++)if((w=M(e[v]))&&u(d,w))return w;return new f(!1)}y=l(e,g)}for(E=S?e.next:y.next;!(x=s(E,y)).done;){try{w=M(x.value)}catch(e){h(y,"throw",e)}if("object"==typeof w&&w&&u(d,w))return w}return new f(!1)}},1743:(e,t,n)=>{"use strict";var r=n(4713),s=n(7235),i=n(4674);e.exports=function(e,t,n){var o,a;s(e);try{if(!(o=i(e,"return"))){if("throw"===t)throw n;return n}o=r(o,e)}catch(e){a=!0,o=e}if("throw"===t)throw n;if(a)throw o;return s(o),n}},1926:(e,t,n)=>{"use strict";var r=n(2621).IteratorPrototype,s=n(5780),i=n(480),o=n(1811),a=n(6625),c=function(){return this};e.exports=function(e,t,n,u){var l=t+" Iterator";return e.prototype=s(r,{next:i(+!u,n)}),o(e,l,!1,!0),a[l]=c,e}},164:(e,t,n)=>{"use strict";var r=n(9098),s=n(4713),i=n(4871),o=n(3410),a=n(2769),c=n(1926),u=n(3671),l=n(3491),p=n(1811),h=n(3999),m=n(3508),f=n(8655),d=n(6625),y=n(2621),g=o.PROPER,v=o.CONFIGURABLE,b=y.IteratorPrototype,w=y.BUGGY_SAFARI_ITERATORS,E=f("iterator"),x="keys",j="values",O="entries",S=function(){return this};e.exports=function(e,t,n,o,f,y,P){c(n,t,o);var A,_,k,M=function(e){if(e===f&&F)return F;if(!w&&e&&e in $)return $[e];switch(e){case x:case j:case O:return function(){return new n(this,e)}}return function(){return new n(this)}},I=t+" Iterator",T=!1,$=e.prototype,R=$[E]||$["@@iterator"]||f&&$[f],F=!w&&R||M(f),D="Array"===t&&$.entries||R;if(D&&(A=u(D.call(new e)))!==Object.prototype&&A.next&&(i||u(A)===b||(l?l(A,b):a(A[E])||m(A,E,S)),p(A,I,!0,!0),i&&(d[I]=S)),g&&f===j&&R&&R.name!==j&&(!i&&v?h($,"name",j):(T=!0,F=function(){return s(R,this)})),f)if(_={values:M(j),keys:y?F:M(x),entries:M(O)},P)for(k in _)(w||T||!(k in $))&&m($,k,_[k]);else r({target:t,proto:!0,forced:w||T},_);return i&&!P||$[E]===F||m($,E,F,{name:f}),d[t]=F,_}},2621:(e,t,n)=>{"use strict";var r,s,i,o=n(1203),a=n(2769),c=n(262),u=n(5780),l=n(3671),p=n(3508),h=n(8655),m=n(4871),f=h("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(s=l(l(i)))!==Object.prototype&&(r=s):d=!0),!c(r)||o((function(){var e={};return r[f].call(e)!==e}))?r={}:m&&(r=u(r)),a(r[f])||p(r,f,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:d}},6625:e=>{"use strict";e.exports={}},8130:(e,t,n)=>{"use strict";var r=n(8146);e.exports=function(e){return r(e.length)}},5777:e=>{"use strict";var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var r=+e;return(r>0?n:t)(r)}},4879:(e,t,n)=>{"use strict";var r=n(1139);e.exports=function(e,t){return void 0===e?arguments.length<2?"":t:r(e)}},5780:(e,t,n)=>{"use strict";var r,s=n(7235),i=n(7389),o=n(9683),a=n(5241),c=n(3489),u=n(9619),l=n(4275),p="prototype",h="script",m=l("IE_PROTO"),f=function(){},d=function(e){return"<"+h+">"+e+"</"+h+">"},y=function(e){e.write(d("")),e.close();var t=e.parentWindow.Object;return e=null,t},g=function(){try{r=new ActiveXObject("htmlfile")}catch(e){}var e,t,n;g="undefined"!=typeof document?document.domain&&r?y(r):(t=u("iframe"),n="java"+h+":",t.style.display="none",c.appendChild(t),t.src=String(n),(e=t.contentWindow.document).open(),e.write(d("document.F=Object")),e.close(),e.F):y(r);for(var s=o.length;s--;)delete g[p][o[s]];return g()};a[m]=!0,e.exports=Object.create||function(e,t){var n;return null!==e?(f[p]=s(e),n=new f,f[p]=null,n[m]=e):n=g(),void 0===t?n:i.f(n,t)}},7389:(e,t,n)=>{"use strict";var r=n(5024),s=n(1330),i=n(9989),o=n(7235),a=n(3273),c=n(8364);t.f=r&&!s?Object.defineProperties:function(e,t){o(e);for(var n,r=a(t),s=c(t),u=s.length,l=0;u>l;)i.f(e,n=s[l++],r[n]);return e}},9989:(e,t,n)=>{"use strict";var r=n(5024),s=n(9665),i=n(1330),o=n(7235),a=n(5341),c=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,p="enumerable",h="configurable",m="writable";t.f=r?i?function(e,t,n){if(o(e),t=a(t),o(n),"function"==typeof e&&"prototype"===t&&"value"in n&&m in n&&!n[m]){var r=l(e,t);r&&r[m]&&(e[t]=n.value,n={configurable:h in n?n[h]:r[h],enumerable:p in n?n[p]:r[p],writable:!1})}return u(e,t,n)}:u:function(e,t,n){if(o(e),t=a(t),o(n),s)try{return u(e,t,n)}catch(e){}if("get"in n||"set"in n)throw new c("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},4543:(e,t,n)=>{"use strict";var r=n(5024),s=n(4713),i=n(7161),o=n(480),a=n(3273),c=n(5341),u=n(701),l=n(9665),p=Object.getOwnPropertyDescriptor;t.f=r?p:function(e,t){if(e=a(e),t=c(t),l)try{return p(e,t)}catch(e){}if(u(e,t))return o(!s(i.f,e,t),e[t])}},5116:(e,t,n)=>{"use strict";var r=n(8600),s=n(9683).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,s)}},7313:(e,t)=>{"use strict";t.f=Object.getOwnPropertySymbols},3671:(e,t,n)=>{"use strict";var r=n(701),s=n(2769),i=n(2137),o=n(4275),a=n(2871),c=o("IE_PROTO"),u=Object,l=u.prototype;e.exports=a?u.getPrototypeOf:function(e){var t=i(e);if(r(t,c))return t[c];var n=t.constructor;return s(n)&&t instanceof n?n.prototype:t instanceof u?l:null}},4317:(e,t,n)=>{"use strict";var r=n(6100);e.exports=r({}.isPrototypeOf)},8600:(e,t,n)=>{"use strict";var r=n(6100),s=n(701),i=n(3273),o=n(1005).indexOf,a=n(5241),c=r([].push);e.exports=function(e,t){var n,r=i(e),u=0,l=[];for(n in r)!s(a,n)&&s(r,n)&&c(l,n);for(;t.length>u;)s(r,n=t[u++])&&(~o(l,n)||c(l,n));return l}},8364:(e,t,n)=>{"use strict";var r=n(8600),s=n(9683);e.exports=Object.keys||function(e){return r(e,s)}},7161:(e,t)=>{"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,s=r&&!n.call({1:2},1);t.f=s?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},3491:(e,t,n)=>{"use strict";var r=n(3574),s=n(7235),i=n(1966);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,n={};try{(e=r(Object.prototype,"__proto__","set"))(n,[]),t=n instanceof Array}catch(e){}return function(n,r){return s(n),i(r),t?e(n,r):n.__proto__=r,n}}():void 0)},9559:(e,t,n)=>{"use strict";var r=n(4904),s=n(8407);e.exports=r?{}.toString:function(){return"[object "+s(this)+"]"}},9258:(e,t,n)=>{"use strict";var r=n(4713),s=n(2769),i=n(262),o=TypeError;e.exports=function(e,t){var n,a;if("string"===t&&s(n=e.toString)&&!i(a=r(n,e)))return a;if(s(n=e.valueOf)&&!i(a=r(n,e)))return a;if("string"!==t&&s(n=e.toString)&&!i(a=r(n,e)))return a;throw new o("Can't convert object to primitive value")}},5691:(e,t,n)=>{"use strict";var r=n(1003),s=n(6100),i=n(5116),o=n(7313),a=n(7235),c=s([].concat);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(a(e)),n=o.f;return n?c(t,n(e)):t}},8099:e=>{"use strict";e.exports={}},5516:(e,t,n)=>{"use strict";var r=n(9989).f;e.exports=function(e,t,n){n in e||r(e,n,{configurable:!0,get:function(){return t[n]},set:function(e){t[n]=e}})}},5426:(e,t,n)=>{"use strict";var r=n(3057),s=TypeError;e.exports=function(e){if(r(e))throw new s("Can't call method on "+e);return e}},1811:(e,t,n)=>{"use strict";var r=n(4904),s=n(9989).f,i=n(3999),o=n(701),a=n(9559),c=n(8655)("toStringTag");e.exports=function(e,t,n,u){var l=n?e:e&&e.prototype;l&&(o(l,c)||s(l,c,{configurable:!0,value:t}),u&&!r&&i(l,"toString",a))}},4275:(e,t,n)=>{"use strict";var r=n(8141),s=n(1268),i=r("keys");e.exports=function(e){return i[e]||(i[e]=s(e))}},3753:(e,t,n)=>{"use strict";var r=n(1063),s=n(7525),i="__core-js_shared__",o=r[i]||s(i,{});e.exports=o},8141:(e,t,n)=>{"use strict";var r=n(4871),s=n(3753);(e.exports=function(e,t){return s[e]||(s[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.35.1",mode:r?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE",source:"https://github.com/zloirock/core-js"})},5571:(e,t,n)=>{"use strict";var r=n(6100),s=n(9903),i=n(1139),o=n(5426),a=r("".charAt),c=r("".charCodeAt),u=r("".slice),l=function(e){return function(t,n){var r,l,p=i(o(t)),h=s(n),m=p.length;return h<0||h>=m?e?"":void 0:(r=c(p,h))<55296||r>56319||h+1===m||(l=c(p,h+1))<56320||l>57343?e?a(p,h):r:e?u(p,h,h+2):l-56320+(r-55296<<10)+65536}};e.exports={codeAt:l(!1),charAt:l(!0)}},4603:(e,t,n)=>{"use strict";var r=n(4432),s=n(1203),i=n(1063).String;e.exports=!!Object.getOwnPropertySymbols&&!s((function(){var e=Symbol("symbol detection");return!i(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},4574:(e,t,n)=>{"use strict";var r=n(9903),s=Math.max,i=Math.min;e.exports=function(e,t){var n=r(e);return n<0?s(n+t,0):i(n,t)}},3273:(e,t,n)=>{"use strict";var r=n(1395),s=n(5426);e.exports=function(e){return r(s(e))}},9903:(e,t,n)=>{"use strict";var r=n(5777);e.exports=function(e){var t=+e;return t!=t||0===t?0:r(t)}},8146:(e,t,n)=>{"use strict";var r=n(9903),s=Math.min;e.exports=function(e){var t=r(e);return t>0?s(t,9007199254740991):0}},2137:(e,t,n)=>{"use strict";var r=n(5426),s=Object;e.exports=function(e){return s(r(e))}},493:(e,t,n)=>{"use strict";var r=n(4713),s=n(262),i=n(6281),o=n(4674),a=n(9258),c=n(8655),u=TypeError,l=c("toPrimitive");e.exports=function(e,t){if(!s(e)||i(e))return e;var n,c=o(e,l);if(c){if(void 0===t&&(t="default"),n=r(c,e,t),!s(n)||i(n))return n;throw new u("Can't convert object to primitive value")}return void 0===t&&(t="number"),a(e,t)}},5341:(e,t,n)=>{"use strict";var r=n(493),s=n(6281);e.exports=function(e){var t=r(e,"string");return s(t)?t:t+""}},4904:(e,t,n)=>{"use strict";var r={};r[n(8655)("toStringTag")]="z",e.exports="[object z]"===String(r)},1139:(e,t,n)=>{"use strict";var r=n(8407),s=String;e.exports=function(e){if("Symbol"===r(e))throw new TypeError("Cannot convert a Symbol value to a string");return s(e)}},459:e=>{"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},1268:(e,t,n)=>{"use strict";var r=n(6100),s=0,i=Math.random(),o=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+o(++s+i,36)}},7460:(e,t,n)=>{"use strict";var r=n(4603);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},1330:(e,t,n)=>{"use strict";var r=n(5024),s=n(1203);e.exports=r&&s((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},1314:(e,t,n)=>{"use strict";var r=n(1063),s=n(2769),i=r.WeakMap;e.exports=s(i)&&/native code/.test(String(i))},8655:(e,t,n)=>{"use strict";var r=n(1063),s=n(8141),i=n(701),o=n(1268),a=n(4603),c=n(7460),u=r.Symbol,l=s("wks"),p=c?u.for||u:u&&u.withoutSetter||o;e.exports=function(e){return i(l,e)||(l[e]=a&&i(u,e)?u[e]:p("Symbol."+e)),l[e]}},6453:(e,t,n)=>{"use strict";var r=n(1003),s=n(701),i=n(3999),o=n(4317),a=n(3491),c=n(7464),u=n(5516),l=n(3507),p=n(4879),h=n(8148),m=n(4279),f=n(5024),d=n(4871);e.exports=function(e,t,n,y){var g="stackTraceLimit",v=y?2:1,b=e.split("."),w=b[b.length-1],E=r.apply(null,b);if(E){var x=E.prototype;if(!d&&s(x,"cause")&&delete x.cause,!n)return E;var j=r("Error"),O=t((function(e,t){var n=p(y?t:e,void 0),r=y?new E(e):new E;return void 0!==n&&i(r,"message",n),m(r,O,r.stack,2),this&&o(x,this)&&l(r,this,O),arguments.length>v&&h(r,arguments[v]),r}));if(O.prototype=x,"Error"!==w?a?a(O,j):c(O,j,{name:!0}):f&&g in E&&(u(O,E,g),u(O,E,"prepareStackTrace")),c(O,E),!d)try{x.name!==w&&i(x,"name",w),x.constructor=O}catch(e){}return O}}},6138:(e,t,n)=>{"use strict";var r=n(9098),s=n(1003),i=n(7013),o=n(1203),a=n(6453),c="AggregateError",u=s(c),l=!o((function(){return 1!==u([1]).errors[0]}))&&o((function(){return 7!==u([1],c,{cause:7}).cause}));r({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:a(c,(function(e){return function(t,n){return i(e,this,arguments)}}),l,!0)})},3085:(e,t,n)=>{"use strict";var r=n(9098),s=n(4317),i=n(3671),o=n(3491),a=n(7464),c=n(5780),u=n(3999),l=n(480),p=n(8148),h=n(4279),m=n(208),f=n(4879),d=n(8655)("toStringTag"),y=Error,g=[].push,v=function(e,t){var n,r=s(b,this);o?n=o(new y,r?i(this):b):(n=r?this:c(b),u(n,d,"Error")),void 0!==t&&u(n,"message",f(t)),h(n,v,n.stack,1),arguments.length>2&&p(n,arguments[2]);var a=[];return m(e,g,{that:a}),u(n,"errors",a),n};o?o(v,y):a(v,y,{name:!0});var b=v.prototype=c(y.prototype,{constructor:l(1,v),message:l(1,""),name:l(1,"AggregateError")});r({global:!0,constructor:!0,arity:2},{AggregateError:v})},5695:(e,t,n)=>{"use strict";n(3085)},7447:(e,t,n)=>{"use strict";var r=n(3273),s=n(8137),i=n(6625),o=n(8417),a=n(9989).f,c=n(164),u=n(877),l=n(4871),p=n(5024),h="Array Iterator",m=o.set,f=o.getterFor(h);e.exports=c(Array,"Array",(function(e,t){m(this,{type:h,target:r(e),index:0,kind:t})}),(function(){var e=f(this),t=e.target,n=e.index++;if(!t||n>=t.length)return e.target=void 0,u(void 0,!0);switch(e.kind){case"keys":return u(n,!1);case"values":return u(t[n],!1)}return u([n,t[n]],!1)}),"values");var d=i.Arguments=i.Array;if(s("keys"),s("values"),s("entries"),!l&&p&&"values"!==d.name)try{a(d,"name",{value:"values"})}catch(e){}},484:(e,t,n)=>{"use strict";var r=n(9098),s=n(1063),i=n(7013),o=n(6453),a="WebAssembly",c=s[a],u=7!==new Error("e",{cause:7}).cause,l=function(e,t){var n={};n[e]=o(e,t,u),r({global:!0,constructor:!0,arity:1,forced:u},n)},p=function(e,t){if(c&&c[e]){var n={};n[e]=o(a+"."+e,t,u),r({target:a,stat:!0,constructor:!0,arity:1,forced:u},n)}};l("Error",(function(e){return function(t){return i(e,this,arguments)}})),l("EvalError",(function(e){return function(t){return i(e,this,arguments)}})),l("RangeError",(function(e){return function(t){return i(e,this,arguments)}})),l("ReferenceError",(function(e){return function(t){return i(e,this,arguments)}})),l("SyntaxError",(function(e){return function(t){return i(e,this,arguments)}})),l("TypeError",(function(e){return function(t){return i(e,this,arguments)}})),l("URIError",(function(e){return function(t){return i(e,this,arguments)}})),p("CompileError",(function(e){return function(t){return i(e,this,arguments)}})),p("LinkError",(function(e){return function(t){return i(e,this,arguments)}})),p("RuntimeError",(function(e){return function(t){return i(e,this,arguments)}}))},3832:(e,t,n)=>{"use strict";var r=n(5571).charAt,s=n(1139),i=n(8417),o=n(164),a=n(877),c="String Iterator",u=i.set,l=i.getterFor(c);o(String,"String",(function(e){u(this,{type:c,string:s(e),index:0})}),(function(){var e,t=l(this),n=t.string,s=t.index;return s>=n.length?a(void 0,!0):(e=r(n,s),t.index+=e.length,a(e,!1))}))},5442:(e,t,n)=>{"use strict";n(5695)},85:(e,t,n)=>{"use strict";n(7447);var r=n(1100),s=n(1063),i=n(1811),o=n(6625);for(var a in r)i(s[a],a),o[a]=o.Array},239:(e,t,n)=>{"use strict";n(5442);var r=n(6656);n(85),e.exports=r}},t={};function n(r){var s=t[r];if(void 0!==s)return s.exports;var i=t[r]={id:r,loaded:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.loaded=!0,i.exports}n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nmd=e=>(e.paths=[],e.children||(e.children=[]),e);var r={};return(()=>{"use strict";n.r(r),n.d(r,{AlternatingVisitor:()=>dc,ContactElement:()=>Us,DefinitionsElement:()=>xi,ExampleElement:()=>oi,ExternalDocumentationElement:()=>ni,FallbackVisitor:()=>ho,FixedFieldsVisitor:()=>Lo,HeaderElement:()=>mi,HeadersElement:()=>hi,InfoElement:()=>zs,ItemsElement:()=>si,JSONReferenceElement:()=>_n,LicenseElement:()=>Ks,MapVisitor:()=>wc,MixedFieldsVisitor:()=>hc,OpenAPIMediaTypes:()=>Cs,OperationConsumesElement:()=>Ci,OperationElement:()=>ei,OperationParametersElement:()=>qi,OperationProducesElement:()=>Li,OperationSchemesElement:()=>Hi,OperationSecurityElement:()=>Ji,OperationTagsElement:()=>Gi,ParameterElement:()=>ri,ParametersDefinitionsElement:()=>Oi,PathItemElement:()=>Zs,PathItemParametersElement:()=>Xi,PathsElement:()=>Ws,PatternedFieldsVisitor:()=>ca,ReferenceElement:()=>wi,ResponseElement:()=>li,ResponsesDefinitionsElement:()=>Pi,ResponsesElement:()=>ci,SchemaElement:()=>yi,ScopesElement:()=>Ti,SecurityDefinitionsElement:()=>_i,SecurityRequirementElement:()=>Ri,SecuritySchemeElement:()=>Mi,SpecificationVisitor:()=>Ro,SwaggerConsumesElement:()=>Qi,SwaggerElement:()=>Vs,SwaggerProducesElement:()=>to,SwaggerSchemesElement:()=>Yi,SwaggerSecurityElement:()=>ro,SwaggerTagsElement:()=>io,SwaggerVersionElement:()=>Bs,TagElement:()=>di,Visitor:()=>po,XmlElement:()=>vi,createRefractor:()=>uu,default:()=>Fi,getNodeType:()=>oo,isArrayElement:()=>ue,isBooleanElement:()=>ae,isContactElement:()=>ma,isDefinitionsElement:()=>Ia,isElement:()=>re,isExampleElement:()=>ja,isExternalDocumentationElement:()=>ga,isHeaderElement:()=>Oa,isHeadersElement:()=>xa,isInfoElement:()=>pa,isItemsElement:()=>ba,isJSONReferenceElement:()=>Rn,isJSONReferenceLikeElement:()=>Cn,isLicenseElement:()=>ha,isLinkPrimitiveElement:()=>pe,isMemberElement:()=>le,isNullElement:()=>oe,isNumberElement:()=>ie,isObjectElement:()=>ce,isOperationElement:()=>ya,isParameterElement:()=>va,isParametersDefinitionsElement:()=>Ta,isPathItemElement:()=>da,isPathsElement:()=>fa,isRefElement:()=>he,isReferenceElement:()=>Pa,isReferenceLikeElement:()=>Vo,isResponseElement:()=>Ea,isResponsesDefinitionsElement:()=>ka,isResponsesElement:()=>wa,isSchemaElement:()=>Aa,isScopesElement:()=>Ra,isSecurityDefinitionsElement:()=>Ma,isSecurityRequirementElement:()=>Fa,isSecuritySchemeElement:()=>$a,isStringElement:()=>se,isSwaggerElement:()=>ua,isSwaggerExtension:()=>qo,isSwaggerVersionElement:()=>la,isTagElement:()=>Sa,isXmlElement:()=>_a,keyMap:()=>ao,mediaTypes:()=>Ns,refract:()=>lu,refractorPluginReplaceEmptyElement:()=>lo,specificationObj:()=>ou});var e={};n.r(e),n.d(e,{hasElementSourceMap:()=>ve,includesClasses:()=>we,includesSymbols:()=>be,isAnnotationElement:()=>me,isArrayElement:()=>ue,isBooleanElement:()=>ae,isCommentElement:()=>fe,isElement:()=>re,isLinkElement:()=>pe,isMemberElement:()=>le,isNullElement:()=>oe,isNumberElement:()=>ie,isObjectElement:()=>ce,isParseResultElement:()=>de,isPrimitiveElement:()=>ge,isRefElement:()=>he,isSourceMapElement:()=>ye,isStringElement:()=>se});var t={};n.r(t),n.d(t,{isJSONReferenceElement:()=>Rn,isJSONSchemaElement:()=>$n,isLinkDescriptionElement:()=>Dn,isMediaElement:()=>Fn});var s={};n.r(s),n.d(s,{isReferenceLikeElement:()=>Vo,isSwaggerExtension:()=>qo});var i={};n.r(i),n.d(i,{isContactElement:()=>ma,isDefinitionsElement:()=>Ia,isExampleElement:()=>ja,isExternalDocumentationElement:()=>ga,isHeaderElement:()=>Oa,isHeadersElement:()=>xa,isInfoElement:()=>pa,isItemsElement:()=>ba,isLicenseElement:()=>ha,isOperationElement:()=>ya,isParameterElement:()=>va,isParametersDefinitionsElement:()=>Ta,isPathItemElement:()=>da,isPathsElement:()=>fa,isReferenceElement:()=>Pa,isResponseElement:()=>Ea,isResponsesDefinitionsElement:()=>ka,isResponsesElement:()=>wa,isSchemaElement:()=>Aa,isScopesElement:()=>Ra,isSecurityDefinitionsElement:()=>Ma,isSecurityRequirementElement:()=>Fa,isSecuritySchemeElement:()=>$a,isSwaggerElement:()=>ua,isSwaggerVersionElement:()=>la,isTagElement:()=>Sa,isXmlElement:()=>_a});var o=n(8326);function a(e){return null!=e&&"object"==typeof e&&!0===e["@@functional/placeholder"]}function c(e){return function t(n){return 0===arguments.length||a(n)?t:e.apply(this,arguments)}}function u(e){return function t(n,r){switch(arguments.length){case 0:return t;case 1:return a(n)?t:c((function(t){return e(n,t)}));default:return a(n)&&a(r)?t:a(n)?c((function(t){return e(t,r)})):a(r)?c((function(t){return e(n,t)})):e(n,r)}}}const l=Array.isArray||function(e){return null!=e&&e.length>=0&&"[object Array]"===Object.prototype.toString.call(e)};function p(e,t,n){return function(){if(0===arguments.length)return n();var r=arguments[arguments.length-1];if(!l(r)){for(var s=0;s<e.length;){if("function"==typeof r[e[s]])return r[e[s]].apply(r,Array.prototype.slice.call(arguments,0,-1));s+=1}if(function(e){return null!=e&&"function"==typeof e["@@transducer/step"]}(r))return t.apply(null,Array.prototype.slice.call(arguments,0,-1))(r)}return n.apply(this,arguments)}}function h(e){return e&&e["@@transducer/reduced"]?e:{"@@transducer/value":e,"@@transducer/reduced":!0}}const m=function(){return this.xf["@@transducer/init"]()},f=function(e){return this.xf["@@transducer/result"](e)};var d=function(){function e(e,t){this.xf=t,this.f=e,this.all=!0}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=function(e){return this.all&&(e=this.xf["@@transducer/step"](e,!0)),this.xf["@@transducer/result"](e)},e.prototype["@@transducer/step"]=function(e,t){return this.f(t)||(this.all=!1,e=h(this.xf["@@transducer/step"](e,!1))),e},e}();function y(e){return function(t){return new d(e,t)}}const g=u(p(["all"],y,(function(e,t){for(var n=0;n<t.length;){if(!e(t[n]))return!1;n+=1}return!0})));function v(e,t){switch(e){case 0:return function(){return t.apply(this,arguments)};case 1:return function(e){return t.apply(this,arguments)};case 2:return function(e,n){return t.apply(this,arguments)};case 3:return function(e,n,r){return t.apply(this,arguments)};case 4:return function(e,n,r,s){return t.apply(this,arguments)};case 5:return function(e,n,r,s,i){return t.apply(this,arguments)};case 6:return function(e,n,r,s,i,o){return t.apply(this,arguments)};case 7:return function(e,n,r,s,i,o,a){return t.apply(this,arguments)};case 8:return function(e,n,r,s,i,o,a,c){return t.apply(this,arguments)};case 9:return function(e,n,r,s,i,o,a,c,u){return t.apply(this,arguments)};case 10:return function(e,n,r,s,i,o,a,c,u,l){return t.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function b(e,t,n){return function(){for(var r=[],s=0,i=e,o=0,c=!1;o<t.length||s<arguments.length;){var u;o<t.length&&(!a(t[o])||s>=arguments.length)?u=t[o]:(u=arguments[s],s+=1),r[o]=u,a(u)?c=!0:i-=1,o+=1}return!c&&i<=0?n.apply(this,r):v(Math.max(0,i),b(e,r,n))}}const w=u((function(e,t){return 1===e?c(t):v(e,b(e,[],t))}));const E=c((function(e){return w(e.length,(function(t,n){var r=Array.prototype.slice.call(arguments,0);return r[0]=n,r[1]=t,e.apply(this,r)}))}));function x(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}function j(e,t,n){for(var r=0,s=n.length;r<s;){if(e(t,n[r]))return!0;r+=1}return!1}function O(e,t){return Object.prototype.hasOwnProperty.call(t,e)}const S="function"==typeof Object.is?Object.is:function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t};var P=Object.prototype.toString;const A=function(){return"[object Arguments]"===P.call(arguments)?function(e){return"[object Arguments]"===P.call(e)}:function(e){return O("callee",e)}}();var _=!{toString:null}.propertyIsEnumerable("toString"),k=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],M=function(){return arguments.propertyIsEnumerable("length")}(),I=function(e,t){for(var n=0;n<e.length;){if(e[n]===t)return!0;n+=1}return!1},T="function"!=typeof Object.keys||M?c((function(e){if(Object(e)!==e)return[];var t,n,r=[],s=M&&A(e);for(t in e)!O(t,e)||s&&"length"===t||(r[r.length]=t);if(_)for(n=k.length-1;n>=0;)O(t=k[n],e)&&!I(r,t)&&(r[r.length]=t),n-=1;return r})):c((function(e){return Object(e)!==e?[]:Object.keys(e)}));const $=T;const R=c((function(e){return null===e?"Null":void 0===e?"Undefined":Object.prototype.toString.call(e).slice(8,-1)}));function F(e,t,n,r){var s=x(e);function i(e,t){return D(e,t,n.slice(),r.slice())}return!j((function(e,t){return!j(i,t,e)}),x(t),s)}function D(e,t,n,r){if(S(e,t))return!0;var s,i,o=R(e);if(o!==R(t))return!1;if("function"==typeof e["fantasy-land/equals"]||"function"==typeof t["fantasy-land/equals"])return"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t)&&"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e);if("function"==typeof e.equals||"function"==typeof t.equals)return"function"==typeof e.equals&&e.equals(t)&&"function"==typeof t.equals&&t.equals(e);switch(o){case"Arguments":case"Array":case"Object":if("function"==typeof e.constructor&&"Promise"===(s=e.constructor,null==(i=String(s).match(/^function (\w*)/))?"":i[1]))return e===t;break;case"Boolean":case"Number":case"String":if(typeof e!=typeof t||!S(e.valueOf(),t.valueOf()))return!1;break;case"Date":if(!S(e.valueOf(),t.valueOf()))return!1;break;case"Error":return e.name===t.name&&e.message===t.message;case"RegExp":if(e.source!==t.source||e.global!==t.global||e.ignoreCase!==t.ignoreCase||e.multiline!==t.multiline||e.sticky!==t.sticky||e.unicode!==t.unicode)return!1}for(var a=n.length-1;a>=0;){if(n[a]===e)return r[a]===t;a-=1}switch(o){case"Map":return e.size===t.size&&F(e.entries(),t.entries(),n.concat([e]),r.concat([t]));case"Set":return e.size===t.size&&F(e.values(),t.values(),n.concat([e]),r.concat([t]));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 c=$(e);if(c.length!==$(t).length)return!1;var u=n.concat([e]),l=r.concat([t]);for(a=c.length-1;a>=0;){var p=c[a];if(!O(p,t)||!D(t[p],e[p],u,l))return!1;a-=1}return!0}const C=u((function(e,t){return D(e,t,[],[])}));function N(e,t){return function(e,t,n){var r,s;if("function"==typeof e.indexOf)switch(typeof t){case"number":if(0===t){for(r=1/t;n<e.length;){if(0===(s=e[n])&&1/s===r)return n;n+=1}return-1}if(t!=t){for(;n<e.length;){if("number"==typeof(s=e[n])&&s!=s)return n;n+=1}return-1}return e.indexOf(t,n);case"string":case"boolean":case"function":case"undefined":return e.indexOf(t,n);case"object":if(null===t)return e.indexOf(t,n)}for(;n<e.length;){if(C(e[n],t))return n;n+=1}return-1}(t,e,0)>=0}const q=E(u(N));class V extends o.Om{constructor(e,t,n){super(e,t,n),this.element="annotation"}get code(){return this.attributes.get("code")}set code(e){this.attributes.set("code",e)}}const L=V;class B extends o.Om{constructor(e,t,n){super(e,t,n),this.element="comment"}}const H=B;const z=c((function(e){return function(){return e}}));const J=z(void 0);const U=C(J());class G extends o.wE{constructor(e,t,n){super(e,t,n),this.element="parseResult"}get api(){return this.children.filter((e=>e.classes.contains("api"))).first}get results(){return this.children.filter((e=>e.classes.contains("result")))}get result(){return this.results.first}get annotations(){return this.children.filter((e=>"annotation"===e.element))}get warnings(){return this.children.filter((e=>"annotation"===e.element&&e.classes.contains("warning")))}get errors(){return this.children.filter((e=>"annotation"===e.element&&e.classes.contains("error")))}get isEmpty(){return this.children.reject((e=>"annotation"===e.element)).isEmpty}replaceResult(e){const{result:t}=this;if(U(t))return!1;const n=this.content.findIndex((e=>e===t));return-1!==n&&(this.content[n]=e,!0)}}const K=G;class X extends o.wE{constructor(e,t,n){super(e,t,n),this.element="sourceMap"}get positionStart(){return this.children.filter((e=>e.classes.contains("position"))).get(0)}get positionEnd(){return this.children.filter((e=>e.classes.contains("position"))).get(1)}set position(e){if(void 0===e)return;const t=new o.wE([e.start.row,e.start.column,e.start.char]),n=new o.wE([e.end.row,e.end.column,e.end.char]);t.classes.push("position"),n.classes.push("position"),this.push(t).push(n)}}const W=X,Y=(e,t)=>"object"==typeof t&&null!==t&&e in t&&"function"==typeof t[e],Z=e=>"object"==typeof e&&null!=e&&"_storedElement"in e&&"string"==typeof e._storedElement&&"_content"in e,Q=(e,t)=>"object"==typeof t&&null!==t&&"primitive"in t&&("function"==typeof t.primitive&&t.primitive()===e),ee=(e,t)=>"object"==typeof t&&null!==t&&"classes"in t&&(Array.isArray(t.classes)||t.classes instanceof o.wE)&&t.classes.includes(e),te=(e,t)=>"object"==typeof t&&null!==t&&"element"in t&&t.element===e,ne=e=>e({hasMethod:Y,hasBasicElementProps:Z,primitiveEq:Q,isElementType:te,hasClass:ee}),re=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.Hg||e(n)&&t(void 0,n))),se=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.Om||e(n)&&t("string",n))),ie=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.kT||e(n)&&t("number",n))),oe=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.Os||e(n)&&t("null",n))),ae=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.bd||e(n)&&t("boolean",n))),ce=ne((({hasBasicElementProps:e,primitiveEq:t,hasMethod:n})=>r=>r instanceof o.Sh||e(r)&&t("object",r)&&n("keys",r)&&n("values",r)&&n("items",r))),ue=ne((({hasBasicElementProps:e,primitiveEq:t,hasMethod:n})=>r=>r instanceof o.wE&&!(r instanceof o.Sh)||e(r)&&t("array",r)&&n("push",r)&&n("unshift",r)&&n("map",r)&&n("reduce",r))),le=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof o.Pr||e(r)&&t("member",r)&&n(void 0,r))),pe=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof o.Ft||e(r)&&t("link",r)&&n(void 0,r))),he=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof o.sI||e(r)&&t("ref",r)&&n(void 0,r))),me=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof L||e(r)&&t("annotation",r)&&n("array",r))),fe=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof H||e(r)&&t("comment",r)&&n("string",r))),de=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof K||e(r)&&t("parseResult",r)&&n("array",r))),ye=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof W||e(r)&&t("sourceMap",r)&&n("array",r))),ge=e=>te("object",e)||te("array",e)||te("boolean",e)||te("number",e)||te("string",e)||te("null",e)||te("member",e),ve=e=>ye(e.meta.get("sourceMap")),be=(e,t)=>{if(0===e.length)return!0;const n=t.attributes.get("symbols");return!!ue(n)&&g(q(n.toValue()),e)},we=(e,t)=>0===e.length||g(q(t.classes.toValue()),e);function Ee(e){return function t(n,r,s){switch(arguments.length){case 0:return t;case 1:return a(n)?t:u((function(t,r){return e(n,t,r)}));case 2:return a(n)&&a(r)?t:a(n)?u((function(t,n){return e(t,r,n)})):a(r)?u((function(t,r){return e(n,t,r)})):c((function(t){return e(n,r,t)}));default:return a(n)&&a(r)&&a(s)?t:a(n)&&a(r)?u((function(t,n){return e(t,n,s)})):a(n)&&a(s)?u((function(t,n){return e(t,r,n)})):a(r)&&a(s)?u((function(t,r){return e(n,t,r)})):a(n)?c((function(t){return e(t,r,s)})):a(r)?c((function(t){return e(n,t,s)})):a(s)?c((function(t){return e(n,r,t)})):e(n,r,s)}}}function xe(e){return"[object Object]"===Object.prototype.toString.call(e)}const je=Ee((function(e,t,n){var r,s={};for(r in n=n||{},t=t||{})O(r,t)&&(s[r]=O(r,n)?e(r,t[r],n[r]):t[r]);for(r in n)O(r,n)&&!O(r,s)&&(s[r]=n[r]);return s}));const Oe=Ee((function e(t,n,r){return je((function(n,r,s){return xe(r)&&xe(s)?e(t,r,s):t(n,r,s)}),n,r)}));const Se=u((function(e,t){return Oe((function(e,t,n){return n}),e,t)}));const Pe=u((function(e,t){return null==t||t!=t?e:t})),Ae=Number.isInteger||function(e){return e<<0===e};function _e(e){return"[object String]"===Object.prototype.toString.call(e)}const ke=u((function(e,t){var n=e<0?t.length+e:e;return _e(t)?t.charAt(n):t[n]}));const Me=u((function(e,t){if(null!=t)return Ae(e)?ke(e,t):t[e]}));const Ie=Ee((function(e,t,n){return Pe(e,Me(t,n))}));const Te=u((function(e,t){return e.map((function(e){for(var n,r=t,s=0;s<e.length;){if(null==r)return;n=e[s],r=Ae(n)?ke(n,r):r[n],s+=1}return r}))}));const $e=u((function(e,t){return Te([e],t)[0]}));function Re(e,t){return function(){var n=arguments.length;if(0===n)return t();var r=arguments[n-1];return l(r)||"function"!=typeof r[e]?t.apply(this,arguments):r[e].apply(r,Array.prototype.slice.call(arguments,0,n-1))}}const Fe=Ee(Re("slice",(function(e,t,n){return Array.prototype.slice.call(n,e,t)})));const De=Fe(0,-1);const Ce=u((function(e,t){return v(e.length,(function(){return e.apply(t,arguments)}))}));const Ne=u((function(e,t){return e.apply(this,t)}));function qe(e,t,n){for(var r=0,s=n.length;r<s;)t=e(t,n[r]),r+=1;return t}const Ve=c((function(e){return!!l(e)||!!e&&("object"==typeof e&&(!_e(e)&&(0===e.length||e.length>0&&(e.hasOwnProperty(0)&&e.hasOwnProperty(e.length-1)))))}));var Le="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Be(e,t,n){return function(r,s,i){if(Ve(i))return e(r,s,i);if(null==i)return s;if("function"==typeof i["fantasy-land/reduce"])return t(r,s,i,"fantasy-land/reduce");if(null!=i[Le])return n(r,s,i[Le]());if("function"==typeof i.next)return n(r,s,i);if("function"==typeof i.reduce)return t(r,s,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function He(e,t,n){for(var r=n.next();!r.done;)t=e(t,r.value),r=n.next();return t}function ze(e,t,n,r){return n[r](e,t)}const Je=Be(qe,ze,He);function Ue(e,t){for(var n=0,r=t.length,s=Array(r);n<r;)s[n]=e(t[n]),n+=1;return s}var Ge=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){return this.xf["@@transducer/step"](e,this.f(t))},e}();const Ke=u(p(["fantasy-land/map","map"],(function(e){return function(t){return new Ge(e,t)}}),(function(e,t){switch(Object.prototype.toString.call(t)){case"[object Function]":return w(t.length,(function(){return e.call(this,t.apply(this,arguments))}));case"[object Object]":return qe((function(n,r){return n[r]=e(t[r]),n}),{},$(t));default:return Ue(e,t)}})));const Xe=u((function(e,t){return"function"==typeof t["fantasy-land/ap"]?t["fantasy-land/ap"](e):"function"==typeof e.ap?e.ap(t):"function"==typeof e?function(n){return e(n)(t(n))}:Je((function(e,n){return function(e,t){var n;t=t||[];var r=(e=e||[]).length,s=t.length,i=[];for(n=0;n<r;)i[i.length]=e[n],n+=1;for(n=0;n<s;)i[i.length]=t[n],n+=1;return i}(e,Ke(n,t))}),[],e)}));const We=u((function(e,t){var n=w(e,t);return w(e,(function(){return qe(Xe,Ke(n,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const Ye=c((function(e){return We(e.length,e)}));const Ze=Ye(c((function(e){return!e})));function Qe(e){return'"'+e.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 et=function(e){return(e<10?"0":"")+e};const tt="function"==typeof Date.prototype.toISOString?function(e){return e.toISOString()}:function(e){return e.getUTCFullYear()+"-"+et(e.getUTCMonth()+1)+"-"+et(e.getUTCDate())+"T"+et(e.getUTCHours())+":"+et(e.getUTCMinutes())+":"+et(e.getUTCSeconds())+"."+(e.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};var nt=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){return this.f(t)?this.xf["@@transducer/step"](e,t):e},e}();function rt(e){return function(t){return new nt(e,t)}}const st=u(p(["fantasy-land/filter","filter"],rt,(function(e,t){return xe(t)?qe((function(n,r){return e(t[r])&&(n[r]=t[r]),n}),{},$(t)):function(e,t){for(var n=0,r=t.length,s=[];n<r;)e(t[n])&&(s[s.length]=t[n]),n+=1;return s}(e,t)})));const it=u((function(e,t){return st((n=e,function(){return!n.apply(this,arguments)}),t);var n}));function ot(e,t){var n=function(n){var r=t.concat([e]);return N(n,r)?"<Circular>":ot(n,r)},r=function(e,t){return Ue((function(t){return Qe(t)+": "+n(e[t])}),t.slice().sort())};switch(Object.prototype.toString.call(e)){case"[object Arguments]":return"(function() { return arguments; }("+Ue(n,e).join(", ")+"))";case"[object Array]":return"["+Ue(n,e).concat(r(e,it((function(e){return/^\d+$/.test(e)}),$(e)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof e?"new Boolean("+n(e.valueOf())+")":e.toString();case"[object Date]":return"new Date("+(isNaN(e.valueOf())?n(NaN):Qe(tt(e)))+")";case"[object Map]":return"new Map("+n(Array.from(e))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof e?"new Number("+n(e.valueOf())+")":1/e==-1/0?"-0":e.toString(10);case"[object Set]":return"new Set("+n(Array.from(e).sort())+")";case"[object String]":return"object"==typeof e?"new String("+n(e.valueOf())+")":Qe(e);case"[object Undefined]":return"undefined";default:if("function"==typeof e.toString){var s=e.toString();if("[object Object]"!==s)return s}return"{"+r(e,$(e)).join(", ")+"}"}}const at=c((function(e){return ot(e,[])}));const ct=u((function(e,t){if(e===t)return t;function n(e,t){if(e>t!=t>e)return t>e?t:e}var r=n(e,t);if(void 0!==r)return r;var s=n(typeof e,typeof t);if(void 0!==s)return s===typeof e?e:t;var i=at(e),o=n(i,at(t));return void 0!==o&&o===i?e:t}));const ut=u((function(e,t){return Ke(Me(e),t)}));function lt(e,t,n){for(var r=0,s=n.length;r<s;){if((t=e["@@transducer/step"](t,n[r]))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}r+=1}return e["@@transducer/result"](t)}function pt(e,t,n){for(var r=n.next();!r.done;){if((t=e["@@transducer/step"](t,r.value))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}r=n.next()}return e["@@transducer/result"](t)}function ht(e,t,n,r){return e["@@transducer/result"](n[r](Ce(e["@@transducer/step"],e),t))}const mt=Be(lt,ht,pt);var ft=function(){function e(e){this.f=e}return e.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},e.prototype["@@transducer/result"]=function(e){return e},e.prototype["@@transducer/step"]=function(e,t){return this.f(e,t)},e}();const dt=Ee((function(e,t,n){return mt("function"==typeof e?new ft(e):e,t,n)}));const yt=c((function(e){return w(dt(ct,0,ut("length",e)),(function(){for(var t=0,n=e.length;t<n;){if(e[t].apply(this,arguments))return!0;t+=1}return!1}))}));function gt(e,t){return function(){return t.call(this,e.apply(this,arguments))}}const vt=c(Re("tail",Fe(1,1/0)));function bt(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return v(arguments[0].length,dt(gt,arguments[0],vt(arguments)))}var wt=function(e,t){switch(arguments.length){case 0:return wt;case 1:return function t(n){return 0===arguments.length?t:S(e,n)};default:return S(e,t)}};const Et=wt;const xt=w(1,bt(R,Et("GeneratorFunction")));const jt=w(1,bt(R,Et("AsyncFunction")));const Ot=yt([bt(R,Et("Function")),xt,jt]);const St=Ze(Ot);function Pt(e){var t=Object.prototype.toString.call(e);return"[object Function]"===t||"[object AsyncFunction]"===t||"[object GeneratorFunction]"===t||"[object AsyncGeneratorFunction]"===t}const At=u((function(e,t){return e&&t}));const _t=u((function(e,t){return Pt(e)?function(){return e.apply(this,arguments)&&t.apply(this,arguments)}:Ye(At)(e,t)}));var kt=c((function(e){return null!=e&&"function"==typeof e["fantasy-land/empty"]?e["fantasy-land/empty"]():null!=e&&null!=e.constructor&&"function"==typeof e.constructor["fantasy-land/empty"]?e.constructor["fantasy-land/empty"]():null!=e&&"function"==typeof e.empty?e.empty():null!=e&&null!=e.constructor&&"function"==typeof e.constructor.empty?e.constructor.empty():l(e)?[]:_e(e)?"":xe(e)?{}:A(e)?function(){return arguments}():function(e){var t=Object.prototype.toString.call(e);return"[object Uint8ClampedArray]"===t||"[object Int8Array]"===t||"[object Uint8Array]"===t||"[object Int16Array]"===t||"[object Uint16Array]"===t||"[object Int32Array]"===t||"[object Uint32Array]"===t||"[object Float32Array]"===t||"[object Float64Array]"===t||"[object BigInt64Array]"===t||"[object BigUint64Array]"===t}(e)?e.constructor.from(""):void 0}));const Mt=kt;const It=c((function(e){return null!=e&&C(e,Mt(e))}));const Tt=w(1,Ot(Array.isArray)?Array.isArray:bt(R,Et("Array")));const $t=_t(Tt,It);const Rt=w(3,(function(e,t,n){var r=$e(e,n),s=$e(De(e),n);if(!St(r)&&!$t(e)){var i=Ce(r,s);return Ne(i,t)}}));const Ft=Ee((function(e,t,n){return e($e(t,n))}));const Dt=C(null);const Ct=Ze(Dt);function Nt(e){return Nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Nt(e)}const qt=function(e){return"object"===Nt(e)};const Vt=w(1,_t(Ct,qt));var Lt=bt(R,Et("Object")),Bt=bt(at,C(at(Object))),Ht=Ft(_t(Ot,Bt),["constructor"]);const zt=w(1,(function(e){if(!Vt(e)||!Lt(e))return!1;var t=Object.getPrototypeOf(e);return!!Dt(t)||Ht(t)}));class Jt extends o.g${constructor(){super(),this.register("annotation",L),this.register("comment",H),this.register("parseResult",K),this.register("sourceMap",W)}}const Ut=new Jt,Gt=e=>{const t=new Jt;return zt(e)&&t.use(e),t},Kt=Ut,Xt=()=>({predicates:{...e},namespace:Kt});const Wt=w(1,bt(R,Et("String")));var Yt=n(1212);const Zt=class extends Yt{constructor(e,t,n){if(super(e,t,n),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,null!=n&&"object"==typeof n&&Object.hasOwn(n,"cause")&&!("cause"in this)){const{cause:e}=n;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}}};class Qt extends Error{static[Symbol.hasInstance](e){return super[Symbol.hasInstance](e)||Function.prototype[Symbol.hasInstance].call(Zt,e)}constructor(e,t){if(super(e,t),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,null!=t&&"object"==typeof t&&Object.hasOwn(t,"cause")&&!("cause"in this)){const{cause:e}=t;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}}}const en=Qt;const tn=class extends en{constructor(e,t){if(super(e,t),null!=t&&"object"==typeof t){const{cause:e,...n}=t;Object.assign(this,n)}}},nn=(e,t,n)=>{const r=e[t];if(null!=r){if(!n&&"function"==typeof r)return r;const e=n?r.leave:r.enter;if("function"==typeof e)return e}else{const r=n?e.leave:e.enter;if(null!=r){if("function"==typeof r)return r;const e=r[t];if("function"==typeof e)return e}}return null},rn={},sn=e=>null==e?void 0:e.type,on=e=>"string"==typeof sn(e),an=e=>Object.create(Object.getPrototypeOf(e),Object.getOwnPropertyDescriptors(e)),cn=(e,t,{keyMap:n=null,state:r={},breakSymbol:s=rn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:o=!1,visitFnGetter:a=nn,nodeTypeGetter:c=sn,nodePredicate:u=on,nodeCloneFn:l=an,detectCycles:p=!0}={})=>{const h=n||{};let m,f,d=Array.isArray(e),y=[e],g=-1,v=[],b=e;const w=[],E=[];do{g+=1;const e=g===y.length;let n;const j=e&&0!==v.length;if(e){if(n=0===E.length?void 0:w.pop(),b=f,f=E.pop(),j)if(d){b=b.slice();let e=0;for(const[t,n]of v){const r=t-e;n===i?(b.splice(r,1),e+=1):b[r]=n}}else{b=l(b);for(const[e,t]of v)b[e]=t}g=m.index,y=m.keys,v=m.edits,d=m.inArray,m=m.prev}else if(f!==i&&void 0!==f){if(n=d?g:y[g],b=f[n],b===i||void 0===b)continue;w.push(n)}let O;if(!Array.isArray(b)){if(!u(b))throw new tn(`Invalid AST Node: ${String(b)}`,{node:b});if(p&&E.includes(b)){w.pop();continue}const i=a(t,c(b),e);if(i){for(const[e,n]of Object.entries(r))t[e]=n;O=i.call(t,b,n,f,w,E)}if(O===s)break;if(O===o){if(!e){w.pop();continue}}else if(void 0!==O&&(v.push([n,O]),!e)){if(!u(O)){w.pop();continue}b=O}}var x;if(void 0===O&&j&&v.push([n,b]),!e)m={inArray:d,index:g,keys:y,edits:v,prev:m},d=Array.isArray(b),y=d?b:null!==(x=h[c(b)])&&void 0!==x?x:[],g=-1,v=[],f!==i&&void 0!==f&&E.push(f),f=b}while(void 0!==m);return 0!==v.length?v[v.length-1][1]:e};cn[Symbol.for("nodejs.util.promisify.custom")]=async(e,t,{keyMap:n=null,state:r={},breakSymbol:s=rn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:o=!1,visitFnGetter:a=nn,nodeTypeGetter:c=sn,nodePredicate:u=on,nodeCloneFn:l=an,detectCycles:p=!0}={})=>{const h=n||{};let m,f,d=Array.isArray(e),y=[e],g=-1,v=[],b=e;const w=[],E=[];do{g+=1;const e=g===y.length;let n;const j=e&&0!==v.length;if(e){if(n=0===E.length?void 0:w.pop(),b=f,f=E.pop(),j)if(d){b=b.slice();let e=0;for(const[t,n]of v){const r=t-e;n===i?(b.splice(r,1),e+=1):b[r]=n}}else{b=l(b);for(const[e,t]of v)b[e]=t}g=m.index,y=m.keys,v=m.edits,d=m.inArray,m=m.prev}else if(f!==i&&void 0!==f){if(n=d?g:y[g],b=f[n],b===i||void 0===b)continue;w.push(n)}let O;if(!Array.isArray(b)){if(!u(b))throw new tn(`Invalid AST Node: ${String(b)}`,{node:b});if(p&&E.includes(b)){w.pop();continue}const i=a(t,c(b),e);if(i){for(const[e,n]of Object.entries(r))t[e]=n;O=await i.call(t,b,n,f,w,E)}if(O===s)break;if(O===o){if(!e){w.pop();continue}}else if(void 0!==O&&(v.push([n,O]),!e)){if(!u(O)){w.pop();continue}b=O}}var x;if(void 0===O&&j&&v.push([n,b]),!e)m={inArray:d,index:g,keys:y,edits:v,prev:m},d=Array.isArray(b),y=d?b:null!==(x=h[c(b)])&&void 0!==x?x:[],g=-1,v=[],f!==i&&void 0!==f&&E.push(f),f=b}while(void 0!==m);return 0!==v.length?v[v.length-1][1]:e};const un=class extends tn{value;constructor(e,t){super(e,t),void 0!==t&&(this.value=t.value)}};const ln=class extends un{};const pn=class extends un{},hn=(e,t={})=>{const{visited:n=new WeakMap}=t,r={...t,visited:n};if(n.has(e))return n.get(e);if(e instanceof o.KeyValuePair){const{key:t,value:s}=e,i=re(t)?hn(t,r):t,a=re(s)?hn(s,r):s,c=new o.KeyValuePair(i,a);return n.set(e,c),c}if(e instanceof o.ot){const t=e=>hn(e,r),s=[...e].map(t),i=new o.ot(s);return n.set(e,i),i}if(e instanceof o.G6){const t=e=>hn(e,r),s=[...e].map(t),i=new o.G6(s);return n.set(e,i),i}if(re(e)){const t=dn(e);if(n.set(e,t),e.content)if(re(e.content))t.content=hn(e.content,r);else if(e.content instanceof o.KeyValuePair)t.content=hn(e.content,r);else if(Array.isArray(e.content)){const n=e=>hn(e,r);t.content=e.content.map(n)}else t.content=e.content;else t.content=e.content;return t}throw new ln("Value provided to cloneDeep function couldn't be cloned",{value:e})};hn.safe=e=>{try{return hn(e)}catch{return e}};const mn=e=>{const{key:t,value:n}=e;return new o.KeyValuePair(t,n)},fn=e=>{const t=new e.constructor;if(t.element=e.element,e.meta.length>0&&(t._meta=hn(e.meta)),e.attributes.length>0&&(t._attributes=hn(e.attributes)),re(e.content)){const n=e.content;t.content=fn(n)}else Array.isArray(e.content)?t.content=[...e.content]:e.content instanceof o.KeyValuePair?t.content=mn(e.content):t.content=e.content;return t},dn=e=>{if(e instanceof o.KeyValuePair)return mn(e);if(e instanceof o.ot)return(e=>{const t=[...e];return new o.ot(t)})(e);if(e instanceof o.G6)return(e=>{const t=[...e];return new o.G6(t)})(e);if(re(e))return fn(e);throw new pn("Value provided to cloneShallow function couldn't be cloned",{value:e})};dn.safe=e=>{try{return dn(e)}catch{return e}};const yn=e=>ce(e)?"ObjectElement":ue(e)?"ArrayElement":le(e)?"MemberElement":se(e)?"StringElement":ae(e)?"BooleanElement":ie(e)?"NumberElement":oe(e)?"NullElement":pe(e)?"LinkElement":he(e)?"RefElement":void 0,gn=e=>re(e)?dn(e):an(e),vn=bt(yn,Wt),bn={ObjectElement:["content"],ArrayElement:["content"],MemberElement:["key","value"],StringElement:[],BooleanElement:[],NumberElement:[],NullElement:[],RefElement:[],LinkElement:[],Annotation:[],Comment:[],ParseResultElement:["content"],SourceMap:["content"]};const wn=(e,t,{keyMap:n=bn,...r}={})=>cn(e,t,{keyMap:n,nodeTypeGetter:yn,nodePredicate:vn,nodeCloneFn:gn,...r});wn[Symbol.for("nodejs.util.promisify.custom")]=async(e,t,{keyMap:n=bn,...r}={})=>cn[Symbol.for("nodejs.util.promisify.custom")](e,t,{keyMap:n,nodeTypeGetter:yn,nodePredicate:vn,nodeCloneFn:gn,...r});const En={toolboxCreator:Xt,visitorOptions:{nodeTypeGetter:yn,exposeEdits:!0}},xn=(e,t,n={})=>{if(0===t.length)return e;const r=Se(En,n),{toolboxCreator:s,visitorOptions:i}=r,o=s(),a=t.map((e=>e(o))),c=((e,{visitFnGetter:t=nn,nodeTypeGetter:n=sn,breakSymbol:r=rn,deleteNodeSymbol:s=null,skipVisitingNodeSymbol:i=!1,exposeEdits:o=!1}={})=>{const a=Symbol("skip"),c=new Array(e.length).fill(a);return{enter(u,...l){let p=u,h=!1;for(let m=0;m<e.length;m+=1)if(c[m]===a){const a=t(e[m],n(p),!1);if("function"==typeof a){const t=a.call(e[m],p,...l);if(t===i)c[m]=u;else if(t===r)c[m]=r;else{if(t===s)return t;if(void 0!==t){if(!o)return t;p=t,h=!0}}}}return h?p:void 0},leave(s,...o){for(let u=0;u<e.length;u+=1)if(c[u]===a){const a=t(e[u],n(s),!0);if("function"==typeof a){const t=a.call(e[u],s,...o);if(t===r)c[u]=r;else if(void 0!==t&&t!==i)return t}}else c[u]===s&&(c[u]=a)}}})(a.map(Ie({},"visitor")),{...i});a.forEach(Rt(["pre"],[]));const u=wn(e,c,i);return a.forEach(Rt(["post"],[])),u},jn=(e,{Type:t,plugins:n=[]})=>{const r=new t(e);return re(e)&&(e.meta.length>0&&(r.meta=hn(e.meta)),e.attributes.length>0&&(r.attributes=hn(e.attributes))),xn(r,n,{toolboxCreator:Xt,visitorOptions:{nodeTypeGetter:yn}})},On=e=>(t,n={})=>jn(t,{...n,Type:e});o.Sh.refract=On(o.Sh),o.wE.refract=On(o.wE),o.Om.refract=On(o.Om),o.bd.refract=On(o.bd),o.Os.refract=On(o.Os),o.kT.refract=On(o.kT),o.Ft.refract=On(o.Ft),o.sI.refract=On(o.sI),L.refract=On(L),H.refract=On(H),K.refract=On(K),W.refract=On(W);class Sn extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="JSONSchemaDraft4"}get idProp(){return this.get("id")}set idProp(e){this.set("id",e)}get $schema(){return this.get("$schema")}set $schema(e){this.set("$schema",e)}get multipleOf(){return this.get("multipleOf")}set multipleOf(e){this.set("multipleOf",e)}get maximum(){return this.get("maximum")}set maximum(e){this.set("maximum",e)}get exclusiveMaximum(){return this.get("exclusiveMaximum")}set exclusiveMaximum(e){this.set("exclusiveMaximum",e)}get minimum(){return this.get("minimum")}set minimum(e){this.set("minimum",e)}get exclusiveMinimum(){return this.get("exclusiveMinimum")}set exclusiveMinimum(e){this.set("exclusiveMinimum",e)}get maxLength(){return this.get("maxLength")}set maxLength(e){this.set("maxLength",e)}get minLength(){return this.get("minLength")}set minLength(e){this.set("minLength",e)}get pattern(){return this.get("pattern")}set pattern(e){this.set("pattern",e)}get additionalItems(){return this.get("additionalItems")}set additionalItems(e){this.set("additionalItems",e)}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxItems(){return this.get("maxItems")}set maxItems(e){this.set("maxItems",e)}get minItems(){return this.get("minItems")}set minItems(e){this.set("minItems",e)}get uniqueItems(){return this.get("uniqueItems")}set uniqueItems(e){this.set("uniqueItems",e)}get maxProperties(){return this.get("maxProperties")}set maxProperties(e){this.set("maxProperties",e)}get minProperties(){return this.get("minProperties")}set minProperties(e){this.set("minProperties",e)}get required(){return this.get("required")}set required(e){this.set("required",e)}get properties(){return this.get("properties")}set properties(e){this.set("properties",e)}get additionalProperties(){return this.get("additionalProperties")}set additionalProperties(e){this.set("additionalProperties",e)}get patternProperties(){return this.get("patternProperties")}set patternProperties(e){this.set("patternProperties",e)}get dependencies(){return this.get("dependencies")}set dependencies(e){this.set("dependencies",e)}get enum(){return this.get("enum")}set enum(e){this.set("enum",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){return this.get("allOf")}set allOf(e){this.set("allOf",e)}get anyOf(){return this.get("anyOf")}set anyOf(e){this.set("anyOf",e)}get oneOf(){return this.get("oneOf")}set oneOf(e){this.set("oneOf",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get definitions(){return this.get("definitions")}set definitions(e){this.set("definitions",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get default(){return this.get("default")}set default(e){this.set("default",e)}get format(){return this.get("format")}set format(e){this.set("format",e)}get base(){return this.get("base")}set base(e){this.set("base",e)}get links(){return this.get("links")}set links(e){this.set("links",e)}get media(){return this.get("media")}set media(e){this.set("media",e)}get readOnly(){return this.get("readOnly")}set readOnly(e){this.set("readOnly",e)}}const Pn=Sn;class An extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="JSONReference",this.classes.push("json-reference")}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}}const _n=An;class kn extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="media"}get binaryEncoding(){return this.get("binaryEncoding")}set binaryEncoding(e){this.set("binaryEncoding",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}}const Mn=kn;class In extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="linkDescription"}get href(){return this.get("href")}set href(e){this.set("href",e)}get rel(){return this.get("rel")}set rel(e){this.set("rel",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get mediaType(){return this.get("mediaType")}set mediaType(e){this.set("mediaType",e)}get method(){return this.get("method")}set method(e){this.set("method",e)}get encType(){return this.get("encType")}set encType(e){this.set("encType",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}}const Tn=In,$n=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Pn||e(r)&&t("JSONSchemaDraft4",r)&&n("object",r))),Rn=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof _n||e(r)&&t("JSONReference",r)&&n("object",r))),Fn=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Mn||e(r)&&t("media",r)&&n("object",r))),Dn=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Tn||e(r)&&t("linkDescription",r)&&n("object",r))),Cn=e=>ce(e)&&e.hasKey("$ref");const Nn=u((function(e,t){return qe((function(n,r){return n[r]=e(t[r],r,t),n}),{},$(t))}));const qn=c((function(e){return null==e}));const Vn=u((function(e,t){if(0===e.length||qn(t))return!1;for(var n=t,r=0;r<e.length;){if(qn(n)||!O(e[r],n))return!1;n=n[e[r]],r+=1}return!0}));var Ln=u((function(e,t){return Vn([e],t)}));const Bn=Ln;const Hn=Ee((function(e,t,n){return e(Me(t,n))}));const zn=c((function(e){return w(e.length,e)}));const Jn=u((function(e,t){return w(e+1,(function(){var n=arguments[e];if(null!=n&&Pt(n[t]))return n[t].apply(n,Array.prototype.slice.call(arguments,0,e));throw new TypeError(at(n)+' does not have a method named "'+t+'"')}))}));const Un=Jn(1,"split");var Gn=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){if(this.f){if(this.f(t))return e;this.f=null}return this.xf["@@transducer/step"](e,t)},e}();function Kn(e){return function(t){return new Gn(e,t)}}const Xn=u(p(["dropWhile"],Kn,(function(e,t){for(var n=0,r=t.length;n<r&&e(t[n]);)n+=1;return Fe(n,1/0,t)})));const Wn=Jn(1,"join");const Yn=zn((function(e,t){return bt(Un(""),Xn(q(e)),Wn(""))(t)})),Zn=(e,t)=>{const n=Pe(e,t);return Nn((e=>{if(zt(e)&&Bn("$ref",e)&&Hn(Wt,"$ref",e)){const t=$e(["$ref"],e),r=Yn("#/",t);return $e(r.split("/"),n)}return zt(e)?Zn(e,n):e}),e)};var Qn=n(8357);const er=function(){return!0},tr=e=>"string"==typeof(null==e?void 0:e.type)?e.type:yn(e),nr={EphemeralObject:["content"],EphemeralArray:["content"],...bn},rr=(e,t,{keyMap:n=nr,...r}={})=>wn(e,t,{keyMap:n,nodeTypeGetter:tr,nodePredicate:er,detectCycles:!1,deleteNodeSymbol:Symbol.for("delete-node"),skipVisitingNodeSymbol:Symbol.for("skip-visiting-node"),...r});rr[Symbol.for("nodejs.util.promisify.custom")]=async(e,{keyMap:t=nr,...n}={})=>wn[Symbol.for("nodejs.util.promisify.custom")](e,visitor,{keyMap:t,nodeTypeGetter:tr,nodePredicate:er,detectCycles:!1,deleteNodeSymbol:Symbol.for("delete-node"),skipVisitingNodeSymbol:Symbol.for("skip-visiting-node"),...n});const sr=class{type="EphemeralArray";content=[];reference=void 0;constructor(e){this.content=e,this.reference=[]}toReference(){return this.reference}toArray(){return this.reference.push(...this.content),this.reference}};const ir=class{type="EphemeralObject";content=[];reference=void 0;constructor(e){this.content=e,this.reference={}}toReference(){return this.reference}toObject(){return Object.assign(this.reference,Object.fromEntries(this.content))}};class or{ObjectElement={enter:e=>{if(this.references.has(e))return this.references.get(e).toReference();const t=new ir(e.content);return this.references.set(e,t),t}};EphemeralObject={leave:e=>e.toObject()};MemberElement={enter:e=>[e.key,e.value]};ArrayElement={enter:e=>{if(this.references.has(e))return this.references.get(e).toReference();const t=new sr(e.content);return this.references.set(e,t),t}};EphemeralArray={leave:e=>e.toArray()};references=new WeakMap;BooleanElement(e){return e.toValue()}NumberElement(e){return e.toValue()}StringElement(e){return e.toValue()}NullElement(){return null}RefElement(e,...t){var n;const r=t[3];return"EphemeralObject"===(null===(n=r[r.length-1])||void 0===n?void 0:n.type)?Symbol.for("delete-node"):String(e.toValue())}LinkElement(e){return se(e.href)?e.href.toValue():""}}const ar=e=>re(e)?se(e)||ie(e)||ae(e)||oe(e)?e.toValue():rr(e,new or):e,cr=e=>{const t=e.meta.length>0?hn(e.meta):void 0,n=e.attributes.length>0?hn(e.attributes):void 0;return new e.constructor(void 0,t,n)},ur=(e,t)=>t.clone&&t.isMergeableElement(e)?mr(cr(e),e,t):e,lr=e=>"function"!=typeof e.customMetaMerge?e=>hn(e):e.customMetaMerge,pr=e=>"function"!=typeof e.customAttributesMerge?e=>hn(e):e.customAttributesMerge,hr={clone:!0,isMergeableElement:e=>ce(e)||ue(e),arrayElementMerge:(e,t,n)=>e.concat(t)["fantasy-land/map"]((e=>ur(e,n))),objectElementMerge:(e,t,n)=>{const r=ce(e)?cr(e):cr(t);return ce(e)&&e.forEach(((e,t,s)=>{const i=dn(s);i.value=ur(e,n),r.content.push(i)})),t.forEach(((t,s,i)=>{const o=ar(s);let a;if(ce(e)&&e.hasKey(o)&&n.isMergeableElement(t)){const r=e.get(o);a=dn(i),a.value=((e,t)=>{if("function"!=typeof t.customMerge)return mr;const n=t.customMerge(e,t);return"function"==typeof n?n:mr})(s,n)(r,t)}else a=dn(i),a.value=ur(t,n);r.remove(o),r.content.push(a)})),r},customMerge:void 0,customMetaMerge:void 0,customAttributesMerge:void 0};function mr(e,t,n){var r,s,i;const o={...hr,...n};o.isMergeableElement=null!==(r=o.isMergeableElement)&&void 0!==r?r:hr.isMergeableElement,o.arrayElementMerge=null!==(s=o.arrayElementMerge)&&void 0!==s?s:hr.arrayElementMerge,o.objectElementMerge=null!==(i=o.objectElementMerge)&&void 0!==i?i:hr.objectElementMerge;const a=ue(t);if(!(a===ue(e)))return ur(t,o);const c=a&&"function"==typeof o.arrayElementMerge?o.arrayElementMerge(e,t,o):o.objectElementMerge(e,t,o);return c.meta=lr(o)(e.meta,t.meta),c.attributes=pr(o)(e.attributes,t.attributes),c}mr.all=(e,t)=>{if(!Array.isArray(e))throw new TypeError("First argument of deepmerge should be an array.");return 0===e.length?new o.Sh:e.reduce(((e,n)=>mr(e,n,t)),cr(e[0]))};const fr=Qn({props:{element:null},methods:{copyMetaAndAttributes(e,t){(e.meta.length>0||t.meta.length>0)&&(t.meta=mr(t.meta,e.meta),ve(e)&&t.meta.set("sourceMap",e.meta.get("sourceMap"))),(e.attributes.length>0||e.meta.length>0)&&(t.attributes=mr(t.attributes,e.attributes))}}}),dr=Qn(fr,{methods:{enter(e){return this.element=hn(e),rn}}});const yr=z(J());const gr=u((function(e,t){for(var n={},r=0;r<e.length;)e[r]in t&&(n[e[r]]=t[e[r]]),r+=1;return n})),vr=Qn(fr,{props:{specObj:null,passingOptionsNames:["specObj"]},init({specObj:e=this.specObj}){this.specObj=e},methods:{retrievePassingOptions(){return gr(this.passingOptionsNames,this)},retrieveFixedFields(e){const t=$e(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]},retrieveVisitor(e){return Ft(Ot,["visitors",...e],this.specObj)?$e(["visitors",...e],this.specObj):$e(["visitors",...e,"$visitor"],this.specObj)},retrieveVisitorInstance(e,t={}){const n=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...n,...t})},toRefractedElement(e,t,n={}){const r=this.retrieveVisitorInstance(e,n),s=Object.getPrototypeOf(r);return U(this.fallbackVisitorPrototype)&&(this.fallbackVisitorPrototype=Object.getPrototypeOf(this.retrieveVisitorInstance(["value"]))),this.fallbackVisitorPrototype===s?hn(t):(wn(t,r,n),r.element)}}}),br=Qn(vr,{props:{specPath:yr,ignoredFields:[]},init({specPath:e=this.specPath,ignoredFields:t=this.ignoredFields}={}){this.specPath=e,this.ignoredFields=t},methods:{ObjectElement(e){const t=this.specPath(e),n=this.retrieveFixedFields(t);return e.forEach(((e,r,s)=>{if(se(r)&&n.includes(ar(r))&&!this.ignoredFields.includes(ar(r))){const n=this.toRefractedElement([...t,"fixedFields",ar(r)],e),i=new o.Pr(hn(r),n);this.copyMetaAndAttributes(s,i),i.classes.push("fixed-field"),this.element.content.push(i)}else this.ignoredFields.includes(ar(r))||this.element.content.push(hn(s))})),this.copyMetaAndAttributes(e,this.element),rn}}}),wr=Qn(br,dr,{props:{specPath:z(["document","objects","JSONSchema"])},init(){this.element=new Pn}}),Er=dr,xr=dr,jr=dr,Or=dr,Sr=dr,Pr=dr,Ar=dr,_r=dr,kr=dr,Mr=dr,Ir=Qn({props:{parent:null},init({parent:e=this.parent}){this.parent=e,this.passingOptionsNames=[...this.passingOptionsNames,"parent"]}}),Tr=Qn(vr,Ir,dr,{methods:{ObjectElement(e){const t=Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"];return this.element=this.toRefractedElement(t,e),rn},ArrayElement(e){return this.element=new o.wE,this.element.classes.push("json-schema-items"),e.forEach((e=>{const t=Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),$r=dr,Rr=dr,Fr=dr,Dr=dr,Cr=dr,Nr=Qn(dr,{methods:{ArrayElement(e){return this.element=hn(e),this.element.classes.push("json-schema-required"),rn}}});const qr=c((function(e){return w(dt(ct,0,ut("length",e)),(function(){for(var t=0,n=e.length;t<n;){if(!e[t].apply(this,arguments))return!1;t+=1}return!0}))}));const Vr=u((function(e,t){return e||t}));const Lr=Ze(w(1,_t(Ct,u((function(e,t){return Pt(e)?function(){return e.apply(this,arguments)||t.apply(this,arguments)}:Ye(Vr)(e,t)}))(qt,Ot))));const Br=Ze(It);const Hr=qr([Wt,Lr,Br]);const zr=function(){return!1},Jr=Qn(vr,{props:{fieldPatternPredicate:zr,specPath:yr,ignoredFields:[]},init({specPath:e=this.specPath,ignoredFields:t=this.ignoredFields}={}){this.specPath=e,this.ignoredFields=t},methods:{ObjectElement(e){return e.forEach(((e,t,n)=>{if(!this.ignoredFields.includes(ar(t))&&this.fieldPatternPredicate(ar(t))){const r=this.specPath(e),s=this.toRefractedElement(r,e),i=new o.Pr(hn(t),s);this.copyMetaAndAttributes(n,i),i.classes.push("patterned-field"),this.element.content.push(i)}else this.ignoredFields.includes(ar(t))||this.element.content.push(hn(n))})),this.copyMetaAndAttributes(e,this.element),rn}}}),Ur=Qn(Jr,{props:{fieldPatternPredicate:Hr}}),Gr=Qn(Ur,Ir,dr,{props:{specPath:e=>Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-properties")}}),Kr=Qn(Ur,Ir,dr,{props:{specPath:e=>Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-patternProperties")}}),Xr=Qn(Ur,Ir,dr,{props:{specPath:e=>Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-dependencies")}}),Wr=Qn(dr,{methods:{ArrayElement(e){return this.element=hn(e),this.element.classes.push("json-schema-enum"),rn}}}),Yr=Qn(dr,{methods:{StringElement(e){return this.element=hn(e),this.element.classes.push("json-schema-type"),rn},ArrayElement(e){return this.element=hn(e),this.element.classes.push("json-schema-type"),rn}}}),Zr=Qn(vr,Ir,dr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-allOf")},methods:{ArrayElement(e){return e.forEach((e=>{const t=Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),Qr=Qn(vr,Ir,dr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-anyOf")},methods:{ArrayElement(e){return e.forEach((e=>{const t=Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),es=Qn(vr,Ir,dr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-oneOf")},methods:{ArrayElement(e){return e.forEach((e=>{const t=Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),ts=Qn(Ur,Ir,dr,{props:{specPath:e=>Cn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-definitions")}}),ns=dr,rs=dr,ss=dr,is=dr,os=dr,as=Qn(vr,Ir,dr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-links")},methods:{ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","LinkDescription"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}}),cs=dr,us=Qn(br,dr,{props:{specPath:z(["document","objects","JSONReference"])},init(){this.element=new _n},methods:{ObjectElement(e){const t=br.compose.methods.ObjectElement.call(this,e);return se(this.element.$ref)&&this.element.classes.push("reference-element"),t}}}),ls=Qn(dr,{methods:{StringElement(e){return this.element=hn(e),this.element.classes.push("reference-value"),rn}}});const ps=Ee((function(e,t,n){return w(Math.max(e.length,t.length,n.length),(function(){return e.apply(this,arguments)?t.apply(this,arguments):n.apply(this,arguments)}))}));const hs=c((function(e){return function(t,n){return e(t,n)?-1:e(n,t)?1:0}}));var ms=u((function(e,t){return Array.prototype.slice.call(t,0).sort(e)}));const fs=ms;const ds=ke(0);const ys=c(h);const gs=Ze(qn);const vs=_t(Tt,Br);function bs(e){return function(e){if(Array.isArray(e))return ws(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return ws(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ws(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ws(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Es=bt(fs(hs((function(e,t){return e.length>t.length}))),ds,Me("length")),xs=zn((function(e,t,n){var r=n.apply(void 0,bs(e));return gs(r)?ys(r):t}));const js=ps(vs,(function(e){var t=Es(e);return w(t,(function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return dt(xs(n),void 0,e)}))}),J),Os=Qn(vr,{props:{alternator:[]},methods:{enter(e){const t=this.alternator.map((({predicate:e,specPath:t})=>ps(e,z(t),J))),n=js(t)(e);return this.element=this.toRefractedElement(n,e),rn}}}),Ss=Qn(Os,{props:{alternator:[{predicate:Cn,specPath:["document","objects","JSONReference"]},{predicate:er,specPath:["document","objects","JSONSchema"]}]}}),Ps={visitors:{value:dr,JSONSchemaOrJSONReferenceVisitor:Ss,document:{objects:{JSONSchema:{$visitor:wr,fixedFields:{id:Er,$schema:xr,multipleOf:jr,maximum:Or,exclusiveMaximum:Sr,minimum:Pr,exclusiveMinimum:Ar,maxLength:_r,minLength:kr,pattern:Mr,additionalItems:Ss,items:Tr,maxItems:$r,minItems:Rr,uniqueItems:Fr,maxProperties:Dr,minProperties:Cr,required:Nr,properties:Gr,additionalProperties:Ss,patternProperties:Kr,dependencies:Xr,enum:Wr,type:Yr,allOf:Zr,anyOf:Qr,oneOf:es,not:Ss,definitions:ts,title:ns,description:rs,default:ss,format:is,base:os,links:as,media:{$ref:"#/visitors/document/objects/Media"},readOnly:cs}},JSONReference:{$visitor:us,fixedFields:{$ref:ls}},Media:{$visitor:Qn(br,dr,{props:{specPath:z(["document","objects","Media"])},init(){this.element=new Mn}}),fixedFields:{binaryEncoding:dr,type:dr}},LinkDescription:{$visitor:Qn(br,dr,{props:{specPath:z(["document","objects","LinkDescription"])},init(){this.element=new Tn}}),fixedFields:{href:dr,rel:dr,title:dr,targetSchema:Ss,mediaType:dr,method:dr,encType:dr,schema:Ss}}}}}},As=e=>{if(re(e))return`${e.element.charAt(0).toUpperCase()+e.element.slice(1)}Element`},_s={JSONSchemaDraft4Element:["content"],JSONReferenceElement:["content"],MediaElement:["content"],LinkDescriptionElement:["content"],...bn},ks={namespace:e=>{const{base:t}=e;return t.register("jSONSchemaDraft4",Pn),t.register("jSONReference",_n),t.register("media",Mn),t.register("linkDescription",Tn),t}},Ms=()=>{const e=Gt(ks);return{predicates:{...t,isStringElement:se},namespace:e}},Is=(e,{specPath:t=["visitors","document","objects","JSONSchema","$visitor"],plugins:n=[],specificationObj:r=Ps}={})=>{const s=(0,o.e)(e),i=Zn(r),a=Rt(t,[],i);return wn(s,a,{state:{specObj:i}}),xn(a.element,n,{toolboxCreator:Ms,visitorOptions:{keyMap:_s,nodeTypeGetter:As}})},Ts=e=>(t,n={})=>Is(t,{specPath:e,...n});Pn.refract=Ts(["visitors","document","objects","JSONSchema","$visitor"]),_n.refract=Ts(["visitors","document","objects","JSONReference","$visitor"]),Mn.refract=Ts(["visitors","document","objects","Media","$visitor"]),Tn.refract=Ts(["visitors","document","objects","LinkDescription","$visitor"]);const $s=ke(-1);const Rs=class extends en{};const Fs=class extends Rs{};const Ds=class extends Array{unknownMediaType="application/octet-stream";filterByFormat(){throw new Fs("filterByFormat method in MediaTypes class is not yet implemented.")}findBy(){throw new Fs("findBy method in MediaTypes class is not yet implemented.")}latest(){throw new Fs("latest method in MediaTypes class is not yet implemented.")}};class Cs extends Ds{filterByFormat(e="generic"){const t="generic"===e?"openapi;version":e;return this.filter((e=>e.includes(t)))}findBy(e="2.0",t="generic"){const n="generic"===t?`vnd.oai.openapi;version=${e}`:`vnd.oai.openapi+${t};version=${e}`;return this.find((e=>e.includes(n)))||this.unknownMediaType}latest(e="generic"){return $s(this.filterByFormat(e))}}const Ns=new Cs("application/vnd.oai.openapi;version=2.0","application/vnd.oai.openapi+json;version=2.0","application/vnd.oai.openapi+yaml;version=2.0");class qs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="swagger",this.classes.push("api")}get swagger(){return this.get("swagger")}set swagger(e){this.set("swagger",e)}get info(){return this.get("info")}set info(e){this.set("info",e)}get host(){return this.get("host")}set host(e){this.set("host",e)}get basePath(){return this.get("basePath")}set basePath(e){this.set("basePath",e)}get schemes(){return this.get("schemes")}set schemes(e){this.set("schemes",e)}get consumes(){return this.get("consumes")}set consumes(e){this.set("consumes",e)}get produces(){return this.get("produces")}set produces(e){this.set("produces",e)}get paths(){return this.get("paths")}set paths(e){this.set("paths",e)}get definitions(){return this.get("definitions")}set definitions(e){this.set("definitions",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get responses(){return this.get("responses")}set responses(e){this.set("responses",e)}get securityDefinitions(){return this.get("securityDefinitions")}set securityDefinitions(e){this.set("securityDefinitions",e)}get security(){return this.get("security")}set security(e){this.set("security",e)}get tags(){return this.get("tags")}set tags(e){this.set("tags",e)}get externalDocs(){return this.get("externalDocs")}set externalDocs(e){this.set("externalDocs",e)}}const Vs=qs;class Ls extends o.Om{constructor(e,t,n){super(e,t,n),this.element="swaggerVersion",this.classes.push("spec-version"),this.classes.push("version")}}const Bs=Ls;class Hs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="info",this.classes.push("info")}get title(){return this.get("title")}set title(e){this.set("title",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get termsOfService(){return this.get("termsOfService")}set termsOfService(e){this.set("termsOfService",e)}get contact(){return this.get("contact")}set contact(e){this.set("contact",e)}get license(){return this.get("license")}set license(e){this.set("license",e)}get version(){return this.get("version")}set version(e){this.set("version",e)}}const zs=Hs;class Js extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="contact"}get name(){return this.get("name")}set name(e){this.set("name",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}get email(){return this.get("email")}set email(e){this.set("email",e)}}const Us=Js;class Gs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="license"}get name(){return this.get("name")}set name(e){this.set("name",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}}const Ks=Gs;class Xs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="paths"}}const Ws=Xs;class Ys extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="pathItem"}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}get GET(){return this.get("get")}set GET(e){this.set("GET",e)}get PUT(){return this.get("put")}set PUT(e){this.set("PUT",e)}get POST(){return this.get("post")}set POST(e){this.set("POST",e)}get DELETE(){return this.get("delete")}set DELETE(e){this.set("DELETE",e)}get OPTIONS(){return this.get("options")}set OPTIONS(e){this.set("OPTIONS",e)}get HEAD(){return this.get("head")}set HEAD(e){this.set("HEAD",e)}get PATCH(){return this.get("patch")}set PATCH(e){this.set("PATCH",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}}const Zs=Ys;class Qs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="operation"}get tags(){return this.get("tags")}set tags(e){this.set("tags",e)}get summary(){return this.get("summary")}set summary(e){this.set("summary",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}set externalDocs(e){this.set("externalDocs",e)}get externalDocs(){return this.get("externalDocs")}get operationId(){return this.get("operationId")}set operationId(e){this.set("operationId",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get responses(){return this.get("responses")}set responses(e){this.set("responses",e)}get schemes(){return this.get("schemes")}set schemes(e){this.set("schemes",e)}get deprecated(){return this.hasKey("deprecated")?this.get("deprecated"):new o.bd(!1)}set deprecated(e){this.set("deprecated",e)}get security(){return this.get("security")}set security(e){this.set("security",e)}}const ei=Qs;class ti extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="externalDocumentation"}get description(){return this.get("description")}set description(e){this.set("description",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}}const ni=ti;const ri=class extends Pn{constructor(e,t,n){super(e,t,n),this.element="parameter",this.classes.push("json-schema-draft-4")}get idProp(){throw new Rs("idProp getter in Parameter class is not not supported.")}set idProp(e){throw new Rs("idProp setter in Parameter class is not not supported.")}get $schema(){throw new Rs("$schema getter in Parameter class is not not supported.")}set $schema(e){throw new Rs("$schema setter in Parameter class is not not supported.")}get additionalItems(){throw new Rs("additionalItems getter in Parameter class is not not supported.")}set additionalItems(e){throw new Rs("additionalItems setter in Parameter class is not not supported.")}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxProperties(){throw new Rs("maxProperties getter in Parameter class is not not supported.")}set maxProperties(e){throw new Rs("maxProperties setter in Parameter class is not not supported.")}get minProperties(){throw new Rs("minProperties getter in Parameter class is not not supported.")}set minProperties(e){throw new Rs("minProperties setter in Parameter class is not not supported.")}get required(){return this.get("required")}set required(e){this.set("required",e)}get properties(){throw new Rs("properties getter in Parameter class is not not supported.")}set properties(e){throw new Rs("properties setter in Parameter class is not not supported.")}get additionalProperties(){throw new Rs("additionalProperties getter in Parameter class is not not supported.")}set additionalProperties(e){throw new Rs("additionalProperties setter in Parameter class is not not supported.")}get patternProperties(){throw new Rs("patternProperties getter in Parameter class is not not supported.")}set patternProperties(e){throw new Rs("patternProperties setter in Parameter class is not not supported.")}get dependencies(){throw new Rs("dependencies getter in Parameter class is not not supported.")}set dependencies(e){throw new Rs("dependencies setter in Parameter class is not not supported.")}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){throw new Rs("allOf getter in Parameter class is not not supported.")}set allOf(e){throw new Rs("allOf setter in Parameter class is not not supported.")}get anyOf(){throw new Rs("anyOf getter in Parameter class is not not supported.")}set anyOf(e){throw new Rs("anyOf setter in Parameter class is not not supported.")}get oneOf(){throw new Rs("oneOf getter in Parameter class is not not supported.")}set oneOf(e){throw new Rs("oneOf setter in Parameter class is not not supported.")}get not(){throw new Rs("not getter in Parameter class is not not supported.")}set not(e){throw new Rs("not setter in Parameter class is not not supported.")}get definitions(){throw new Rs("definitions getter in Parameter class is not not supported.")}set definitions(e){throw new Rs("definitions setter in Parameter class is not not supported.")}get title(){throw new Rs("title getter in Parameter class is not not supported.")}set title(e){throw new Rs("title setter in Parameter class is not not supported.")}get description(){return this.get("description")}set description(e){this.set("description,",e)}get format(){return this.get("format")}set format(e){this.set("format",e)}get base(){throw new Rs("base getter in Parameter class is not not supported.")}set base(e){throw new Rs("base setter in Parameter class is not not supported.")}get links(){throw new Rs("links getter in Parameter class is not not supported.")}set links(e){throw new Rs("links setter in Parameter class is not not supported.")}get media(){throw new Rs("media getter in Parameter class is not not supported.")}set media(e){throw new Rs("media setter in Parameter class is not not supported.")}get readOnly(){throw new Rs("readOnly getter in Parameter class is not not supported.")}set readOnly(e){throw new Rs("readOnly setter in Parameter class is not not supported.")}get name(){return this.get("name")}set name(e){this.set("name",e)}get in(){return this.get("in")}set in(e){this.set("in",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}};const si=class extends Pn{constructor(e,t,n){super(e,t,n),this.element="items",this.classes.push("json-schema-draft-4")}get idProp(){throw new Rs("idProp getter in Items class is not not supported.")}set idProp(e){throw new Rs("idProp setter in Items class is not not supported.")}get $schema(){throw new Rs("$schema getter in Items class is not not supported.")}set $schema(e){throw new Rs("$schema setter in Items class is not not supported.")}get additionalItems(){throw new Rs("additionalItems getter in Items class is not not supported.")}set additionalItems(e){throw new Rs("additionalItems setter in Items class is not not supported.")}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxProperties(){throw new Rs("maxProperties getter in Items class is not not supported.")}set maxProperties(e){throw new Rs("maxProperties setter in Items class is not not supported.")}get minProperties(){throw new Rs("minProperties getter in Items class is not not supported.")}set minProperties(e){throw new Rs("minProperties setter in Items class is not not supported.")}get required(){throw new Rs("required getter in Items class is not not supported.")}set required(e){throw new Rs("required setter in Items class is not not supported.")}get properties(){throw new Rs("properties getter in Items class is not not supported.")}set properties(e){throw new Rs("properties setter in Items class is not not supported.")}get additionalProperties(){throw new Rs("additionalProperties getter in Items class is not not supported.")}set additionalProperties(e){throw new Rs("additionalProperties setter in Items class is not not supported.")}get patternProperties(){throw new Rs("patternProperties getter in Items class is not not supported.")}set patternProperties(e){throw new Rs("patternProperties setter in Items class is not not supported.")}get dependencies(){throw new Rs("dependencies getter in Items class is not not supported.")}set dependencies(e){throw new Rs("dependencies setter in Items class is not not supported.")}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){throw new Rs("allOf getter in Items class is not not supported.")}set allOf(e){throw new Rs("allOf setter in Items class is not not supported.")}get anyOf(){throw new Rs("anyOf getter in Items class is not not supported.")}set anyOf(e){throw new Rs("anyOf setter in Items class is not not supported.")}get oneOf(){throw new Rs("oneOf getter in Items class is not not supported.")}set oneOf(e){throw new Rs("oneOf setter in Items class is not not supported.")}get not(){throw new Rs("not getter in Items class is not not supported.")}set not(e){throw new Rs("not setter in Items class is not not supported.")}get definitions(){throw new Rs("definitions getter in Items class is not not supported.")}set definitions(e){throw new Rs("definitions setter in Items class is not not supported.")}get title(){throw new Rs("title getter in Items class is not not supported.")}set title(e){throw new Rs("title setter in Items class is not not supported.")}get description(){throw new Rs("description getter in Items class is not not supported.")}set description(e){throw new Rs("description setter in Items class is not not supported.")}get base(){throw new Rs("base getter in Items class is not not supported.")}set base(e){throw new Rs("base setter in Items class is not not supported.")}get links(){throw new Rs("links getter in Items class is not not supported.")}set links(e){throw new Rs("links setter in Items class is not not supported.")}get media(){throw new Rs("media getter in Items class is not not supported.")}set media(e){throw new Rs("media setter in Items class is not not supported.")}get readOnly(){throw new Rs("readOnly getter in Items class is not not supported.")}set readOnly(e){throw new Rs("readOnly setter in Items class is not not supported.")}};class ii extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="example"}}const oi=ii;class ai extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="responses"}get default(){return this.get("default")}set default(e){this.set("default",e)}}const ci=ai;class ui extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="response"}get description(){return this.get("description")}set description(e){this.set("description",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}get headers(){return this.get("headers")}set headers(e){this.set("headers",e)}get examples(){return this.get("examples")}set examples(e){this.set("examples",e)}}const li=ui;class pi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="headers"}}const hi=pi;const mi=class extends Pn{constructor(e,t,n){super(e,t,n),this.element="header",this.classes.push("json-schema-draft-4")}get idProp(){throw new Rs("idProp getter in Header class is not not supported.")}set idProp(e){throw new Rs("idProp setter in Header class is not not supported.")}get $schema(){throw new Rs("$schema getter in Header class is not not supported.")}set $schema(e){throw new Rs("$schema setter in Header class is not not supported.")}get additionalItems(){throw new Rs("additionalItems getter in Header class is not not supported.")}set additionalItems(e){throw new Rs("additionalItems setter in Header class is not not supported.")}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxProperties(){throw new Rs("maxProperties getter in Header class is not not supported.")}set maxProperties(e){throw new Rs("maxProperties setter in Header class is not not supported.")}get minProperties(){throw new Rs("minProperties getter in Header class is not not supported.")}set minProperties(e){throw new Rs("minProperties setter in Header class is not not supported.")}get required(){throw new Rs("required getter in Header class is not not supported.")}set required(e){throw new Rs("required setter in Header class is not not supported.")}get properties(){throw new Rs("properties getter in Header class is not not supported.")}set properties(e){throw new Rs("properties setter in Header class is not not supported.")}get additionalProperties(){throw new Rs("additionalProperties getter in Header class is not not supported.")}set additionalProperties(e){throw new Rs("additionalProperties setter in Header class is not not supported.")}get patternProperties(){throw new Rs("patternProperties getter in Header class is not not supported.")}set patternProperties(e){throw new Rs("patternProperties setter in Header class is not not supported.")}get dependencies(){throw new Rs("dependencies getter in Header class is not not supported.")}set dependencies(e){throw new Rs("dependencies setter in Header class is not not supported.")}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){throw new Rs("allOf getter in Header class is not not supported.")}set allOf(e){throw new Rs("allOf setter in Header class is not not supported.")}get anyOf(){throw new Rs("anyOf getter in Header class is not not supported.")}set anyOf(e){throw new Rs("anyOf setter in Header class is not not supported.")}get oneOf(){throw new Rs("oneOf getter in Header class is not not supported.")}set oneOf(e){throw new Rs("oneOf setter in Header class is not not supported.")}get not(){throw new Rs("not getter in Header class is not not supported.")}set not(e){throw new Rs("not setter in Header class is not not supported.")}get definitions(){throw new Rs("definitions getter in Header class is not not supported.")}set definitions(e){throw new Rs("definitions setter in Header class is not not supported.")}get title(){throw new Rs("title getter in Header class is not not supported.")}set title(e){throw new Rs("title setter in Header class is not not supported.")}get base(){throw new Rs("base getter in Header class is not not supported.")}set base(e){throw new Rs("base setter in Header class is not not supported.")}get links(){throw new Rs("links getter in Header class is not not supported.")}set links(e){throw new Rs("links setter in Header class is not not supported.")}get media(){throw new Rs("media getter in Header class is not not supported.")}set media(e){throw new Rs("media setter in Header class is not not supported.")}get readOnly(){throw new Rs("readOnly getter in Header class is not not supported.")}set readOnly(e){throw new Rs("readOnly setter in Header class is not not supported.")}};class fi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="tag"}get name(){return this.get("name")}set name(e){this.set("name",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get externalDocs(){return this.get("externalDocs")}set externalDocs(e){this.set("externalDocs",e)}}const di=fi;const yi=class extends Pn{constructor(e,t,n){super(e,t,n),this.element="schema",this.classes.push("json-schema-draft-4")}get idProp(){throw new Rs("idProp getter in Schema class is not not supported.")}set idProp(e){throw new Rs("idProp setter in Schema class is not not supported.")}get $schema(){throw new Rs("$schema getter in Schema class is not not supported.")}set $schema(e){throw new Rs("$schema setter in Schema class is not not supported.")}get additionalItems(){throw new Rs("additionalItems getter in Schema class is not not supported.")}set additionalItems(e){throw new Rs("additionalItems setter in Schema class is not not supported.")}get patternProperties(){throw new Rs("patternProperties getter in Schema class is not not supported.")}set patternProperties(e){throw new Rs("patternProperties setter in Schema class is not not supported.")}get dependencies(){throw new Rs("dependencies getter in Schema class is not not supported.")}set dependencies(e){throw new Rs("dependencies setter in Schema class is not not supported.")}get anyOf(){throw new Rs("anyOf getter in Schema class is not not supported.")}set anyOf(e){throw new Rs("anyOf setter in Schema class is not not supported.")}get oneOf(){throw new Rs("oneOf getter in Schema class is not not supported.")}set oneOf(e){throw new Rs("oneOf setter in Schema class is not not supported.")}get not(){throw new Rs("not getter in Schema class is not not supported.")}set not(e){throw new Rs("not setter in Schema class is not not supported.")}get definitions(){throw new Rs("definitions getter in Schema class is not not supported.")}set definitions(e){throw new Rs("definitions setter in Schema class is not not supported.")}get base(){throw new Rs("base getter in Schema class is not not supported.")}set base(e){throw new Rs("base setter in Schema class is not not supported.")}get links(){throw new Rs("links getter in Schema class is not not supported.")}set links(e){throw new Rs("links setter in Schema class is not not supported.")}get media(){throw new Rs("media getter in Schema class is not not supported.")}set media(e){throw new Rs("media setter in Schema class is not not supported.")}};class gi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="xml"}get name(){return this.get("name")}set name(e){this.set("name",e)}get namespace(){return this.get("namespace")}set namespace(e){this.set("namespace",e)}get prefix(){return this.get("prefix")}set prefix(e){this.set("prefix",e)}get attribute(){return this.get("attribute")}set attribute(e){this.set("attribute",e)}get wrapped(){return this.get("wrapped")}set wrapped(e){this.set("wrapped",e)}}const vi=gi;class bi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="reference",this.classes.push("openapi-reference")}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}}const wi=bi;class Ei extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="definitions"}}const xi=Ei;class ji extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="parametersDefinitions"}}const Oi=ji;class Si extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="responsesDefinitions"}}const Pi=Si;class Ai extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="securityDefinitions"}}const _i=Ai;class ki extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="securityScheme"}get type(){return this.get("type")}set type(e){this.set("type",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get name(){return this.get("name")}set name(e){this.set("name",e)}get in(){return this.get("in")}set in(e){this.set("in",e)}get flow(){return this.get("flow")}set flow(e){this.set("flow",e)}get authorizationUrl(){return this.get("authorizationUrl")}set authorizationUrl(e){this.set("authorizationUrl",e)}get tokenUrl(){return this.get("tokenUrl")}set tokenUrl(e){this.set("tokenUrl",e)}get scopes(){return this.get("scopes")}set scopes(e){this.set("scopes",e)}}const Mi=ki;class Ii extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="scopes"}}const Ti=Ii;class $i extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="securityRequirement"}}const Ri=$i,Fi={namespace:e=>{const{base:t}=e;return t.register("swagger",Vs),t.register("swaggerVersion",Bs),t.register("info",zs),t.register("contact",Us),t.register("license",Ks),t.register("paths",Ws),t.register("pathItem",Zs),t.register("operation",ei),t.register("externalDocumentation",ni),t.register("parameter",ri),t.register("items",si),t.register("responses",ci),t.register("response",li),t.register("headers",hi),t.register("example",oi),t.register("header",mi),t.register("tag",di),t.register("reference",wi),t.register("schema",yi),t.register("xml",vi),t.register("definitions",xi),t.register("parametersDefinitions",Oi),t.register("responsesDefinitions",Pi),t.register("securityDefinitions",_i),t.register("securityScheme",Mi),t.register("scopes",Ti),t.register("securityRequirement",Ri),t}};class Di extends o.wE{static primaryClass="operation-consumes";constructor(e,t,n){super(e,t,n),this.classes.push(Di.primaryClass)}}const Ci=Di;class Ni extends o.wE{static primaryClass="operation-parameters";constructor(e,t,n){super(e,t,n),this.classes.push(Ni.primaryClass),this.classes.push("parameters")}}const qi=Ni;class Vi extends o.wE{static primaryClass="operation-produces";constructor(e,t,n){super(e,t,n),this.classes.push(Vi.primaryClass)}}const Li=Vi;class Bi extends o.wE{static primaryClass="operation-schemes";constructor(e,t,n){super(e,t,n),this.classes.push(Bi.primaryClass)}}const Hi=Bi;class zi extends o.wE{static primaryClass="operation-security";constructor(e,t,n){super(e,t,n),this.classes.push(zi.primaryClass),this.classes.push("security")}}const Ji=zi;class Ui extends o.wE{static primaryClass="operation-tags";constructor(e,t,n){super(e,t,n),this.classes.push(Ui.primaryClass),this.classes.push("tags")}}const Gi=Ui;class Ki extends o.wE{static primaryClass="path-item-parameters";constructor(e,t,n){super(e,t,n),this.classes.push(Ki.primaryClass),this.classes.push("parameters")}}const Xi=Ki;class Wi extends o.wE{static primaryClass="swagger-schemes";constructor(e,t,n){super(e,t,n),this.classes.push(Wi.primaryClass)}}const Yi=Wi;class Zi extends o.wE{static primaryClass="swagger-consumes";constructor(e,t,n){super(e,t,n),this.classes.push(Zi.primaryClass)}}const Qi=Zi;class eo extends o.wE{static primaryClass="swagger-produces";constructor(e,t,n){super(e,t,n),this.classes.push(eo.primaryClass)}}const to=eo;class no extends o.wE{static primaryClass="swagger-security";constructor(e,t,n){super(e,t,n),this.classes.push(no.primaryClass),this.classes.push("security")}}const ro=no;class so extends o.wE{static primaryClass="swagger-tags";constructor(e,t,n){super(e,t,n),this.classes.push(so.primaryClass)}}const io=so,oo=e=>{if(re(e))return`${e.element.charAt(0).toUpperCase()+e.element.slice(1)}Element`},ao={SwaggerElement:["content"],InfoElement:["content"],ContactElement:["content"],LicenseElement:["content"],PathsElement:["content"],PathItemElement:["content"],OperationElement:["content"],ExternalDocumentationElement:["content"],ParameterElement:["content"],ItemsElement:["content"],ExampleElement:["content"],ResponsesElement:["content"],ResponseElement:["content"],HeadersElement:["content"],HeaderElement:["content"],TagElement:["content"],ReferenceElement:["content"],JSONReferenceElement:["content"],SchemaElement:["content"],XmlElement:["content"],DefinitionsElement:["content"],ParametersDefinitionsElement:["content"],ResponsesDefinitionsElement:["content"],SecurityDefinitionsElement:["content"],SecuritySchemeElement:["content"],ScopesElement:["content"],SecurityRequirementElement:["content"],...bn},co={SwaggerElement:{info:(...e)=>new zs(...e),schemes:(...e)=>new Yi(...e),consumes:(...e)=>new Qi(...e),produces:(...e)=>new to(...e),paths:(...e)=>new Ws(...e),definitions:(...e)=>new xi(...e),parameters:(...e)=>new Oi(...e),responses:(...e)=>new Pi(...e),securityDefinitions:(...e)=>new _i(...e),security:(...e)=>new ro(...e),tags:(...e)=>new io(...e),externalDocs:(...e)=>new ni(...e)},InfoElement:{contact:(...e)=>new Us(...e),license:(...e)=>new Ks(...e)},PathsElement:{"[key: *]":function(...e){return new Zs(...e)}},PathItemElement:{get:(...e)=>new ei(...e),put:(...e)=>new ei(...e),post:(...e)=>new ei(...e),delete:(...e)=>new ei(...e),options:(...e)=>new ei(...e),head:(...e)=>new ei(...e),patch:(...e)=>new ei(...e),parameters:(...e)=>new Xi(...e)},OperationElement:{tags:(...e)=>new Gi(...e),externalDocs:(...e)=>new ni(...e),consumes:(...e)=>new Ci(...e),produces:(...e)=>new Li(...e),parameters:(...e)=>new qi(...e),responses:(...e)=>new ci(...e),schemes:(...e)=>new Hi(...e),security:(...e)=>new Ji(...e)},ParameterElement:{schema:(...e)=>new yi(...e),items:(...e)=>new si(...e)},ItemsElement:{items:(...e)=>new si(...e)},ResponsesElement:{"[key: *]":function(...e){return new li(...e)}},ResponseElement:{schema:(...e)=>new yi(...e),headers:(...e)=>new hi(...e),examples:(...e)=>new oi(...e)},HeadersElement:{"[key: *]":function(...e){return new mi(...e)}},HeaderElement:{items:(...e)=>new si(...e)},TagElement:{externalDocs:(...e)=>new ni(...e)},SchemaElement:{items:(...e)=>new yi(...e),allOf(...e){const t=new o.wE(...e);return t.classes.push("json-schema-allOf"),t},properties(...e){const t=new o.Sh(...e);return t.classes.push("json-schema-properties"),t},additionalProperties:(...e)=>new yi(...e),xml:(...e)=>new vi(...e),externalDocs:(...e)=>new ni(...e)},DefinitionsElement:{"[key: *]":function(...e){return new yi(...e)}},ParametersDefinitionsElement:{"[key: *]":function(...e){return new ri(...e)}},ResponsesDefinitionsElement:{"[key: *]":function(...e){return new li(...e)}},SecurityDefinitionsElement:{"[key: *]":function(...e){return new Mi(...e)}},SecuritySchemeElement:{scopes:(...e)=>new Ti(...e)},SecurityRequirementElement:{"[key: *]":function(...e){return new o.wE(...e)}},[qi.primaryClass]:{"<*>":function(...e){return new ri(...e)}},[Ji.primaryClass]:{"<*>":function(...e){return new Ri(...e)}},[Xi.primaryClass]:{"<*>":function(...e){return new ri(...e)}},[ro.primaryClass]:{"<*>":function(...e){return new Ri(...e)}},[io.primaryClass]:{"<*>":function(...e){return new di(...e)}},"json-schema-properties":{"[key: *]":function(...e){return new yi(...e)}},"json-schema-allOf":{"<*>":function(...e){return new yi(...e)}}},uo=(e,t)=>{const n=oo(e),r=co[n]||co[ar(e.classes.first)];return void 0===r?void 0:Object.prototype.hasOwnProperty.call(r,"[key: *]")?r["[key: *]"]:r[t]},lo=()=>()=>({visitor:{StringElement(e,t,n,r,s){if(!(e=>se(e)&&we(["yaml-e-node","yaml-e-scalar"],e))(e))return;const i=[...s,n].filter(re),o=i[i.length-1];let a,c;return ue(o)?(c=e,a=uo(o,"<*>")):le(o)&&(c=i[i.length-2],a=uo(c,ar(o.key))),"function"==typeof a?a.call({context:c},void 0,hn(e.meta),hn(e.attributes)):void 0}}});const po=class{element;constructor(e={}){Object.assign(this,e)}copyMetaAndAttributes(e,t){(e.meta.length>0||t.meta.length>0)&&(t.meta=mr(t.meta,e.meta),ve(e)&&t.meta.set("sourceMap",e.meta.get("sourceMap"))),(e.attributes.length>0||e.meta.length>0)&&(t.attributes=mr(t.attributes,e.attributes))}};const ho=class extends po{enter(e){return this.element=hn(e),rn}},mo=(e,t,n=[])=>{const r=Object.getOwnPropertyDescriptors(t);for(let e of n)delete r[e];Object.defineProperties(e,r)},fo=(e,t=[e])=>{const n=Object.getPrototypeOf(e);return null===n?t:fo(n,[...t,n])},yo=(e,t,n=[])=>{var r;const s=null!==(r=((...e)=>{if(0===e.length)return;let t;const n=e.map((e=>fo(e)));for(;n.every((e=>e.length>0));){const e=n.map((e=>e.pop())),r=e[0];if(!e.every((e=>e===r)))break;t=r}return t})(...e))&&void 0!==r?r:Object.prototype,i=Object.create(s),o=fo(s);for(let t of e){let e=fo(t);for(let t=e.length-1;t>=0;t--){let r=e[t];-1===o.indexOf(r)&&(mo(i,r,["constructor",...n]),o.push(r))}}return i.constructor=t,i},go=e=>e.filter(((t,n)=>e.indexOf(t)==n)),vo=(e,t)=>{const n=t.map((e=>fo(e)));let r=0,s=!0;for(;s;){s=!1;for(let i=t.length-1;i>=0;i--){const t=n[i][r];if(null!=t&&(s=!0,null!=Object.getOwnPropertyDescriptor(t,e)))return n[i][0]}r++}},bo=(e,t=Object.prototype)=>new Proxy({},{getPrototypeOf:()=>t,setPrototypeOf(){throw Error("Cannot set prototype of Proxies created by ts-mixer")},getOwnPropertyDescriptor:(t,n)=>Object.getOwnPropertyDescriptor(vo(n,e)||{},n),defineProperty(){throw new Error("Cannot define new properties on Proxies created by ts-mixer")},has:(n,r)=>void 0!==vo(r,e)||void 0!==t[r],get:(n,r)=>(vo(r,e)||t)[r],set(t,n,r){const s=vo(n,e);if(void 0===s)throw new Error("Cannot set new properties on Proxies created by ts-mixer");return s[n]=r,!0},deleteProperty(){throw new Error("Cannot delete properties on Proxies created by ts-mixer")},ownKeys:()=>e.map(Object.getOwnPropertyNames).reduce(((e,t)=>t.concat(e.filter((e=>t.indexOf(e)<0)))))}),wo=null,Eo="copy",xo="copy",jo="deep",Oo=new WeakMap,So=e=>Oo.get(e),Po=(e,t)=>{var n,r;const s=go([...Object.getOwnPropertyNames(e),...Object.getOwnPropertyNames(t)]),i={};for(let o of s)i[o]=go([...null!==(n=null==e?void 0:e[o])&&void 0!==n?n:[],...null!==(r=null==t?void 0:t[o])&&void 0!==r?r:[]]);return i},Ao=(e,t)=>{var n,r,s,i;return{property:Po(null!==(n=null==e?void 0:e.property)&&void 0!==n?n:{},null!==(r=null==t?void 0:t.property)&&void 0!==r?r:{}),method:Po(null!==(s=null==e?void 0:e.method)&&void 0!==s?s:{},null!==(i=null==t?void 0:t.method)&&void 0!==i?i:{})}},_o=(e,t)=>{var n,r,s,i,o,a;return{class:go([...null!==(n=null==e?void 0:e.class)&&void 0!==n?n:[],...null!==(r=null==t?void 0:t.class)&&void 0!==r?r:[]]),static:Ao(null!==(s=null==e?void 0:e.static)&&void 0!==s?s:{},null!==(i=null==t?void 0:t.static)&&void 0!==i?i:{}),instance:Ao(null!==(o=null==e?void 0:e.instance)&&void 0!==o?o:{},null!==(a=null==t?void 0:t.instance)&&void 0!==a?a:{})}},ko=new Map,Mo=(...e)=>{const t=((...e)=>{var t;const n=new Set,r=new Set([...e]);for(;r.size>0;)for(let e of r){const s=[...fo(e.prototype).map((e=>e.constructor)),...null!==(t=So(e))&&void 0!==t?t:[]].filter((e=>!n.has(e)));for(let e of s)r.add(e);n.add(e),r.delete(e)}return[...n]})(...e).map((e=>ko.get(e))).filter((e=>!!e));return 0==t.length?{}:1==t.length?t[0]:t.reduce(((e,t)=>_o(e,t)))},Io=e=>{let t=ko.get(e);return t||(t={},ko.set(e,t)),t};function To(...e){var t,n,r;const s=e.map((e=>e.prototype)),i=wo;if(null!==i){const e=s.map((e=>e[i])).filter((e=>"function"==typeof e)),t={[i]:function(...t){for(let n of e)n.apply(this,t)}};s.push(t)}function o(...t){for(const n of e)mo(this,new n(...t));null!==i&&"function"==typeof this[i]&&this[i].apply(this,t)}var a,c;o.prototype="copy"===xo?yo(s,o):(a=s,c=o,bo([...a,{constructor:c}])),Object.setPrototypeOf(o,"copy"===Eo?yo(e,null,["prototype"]):bo(e,Function.prototype));let u=o;if("none"!==jo){const s="deep"===jo?Mo(...e):((...e)=>{const t=e.map((e=>Io(e)));return 0===t.length?{}:1===t.length?t[0]:t.reduce(((e,t)=>_o(e,t)))})(...e);for(let e of null!==(t=null==s?void 0:s.class)&&void 0!==t?t:[]){const t=e(u);t&&(u=t)}$o(null!==(n=null==s?void 0:s.static)&&void 0!==n?n:{},u),$o(null!==(r=null==s?void 0:s.instance)&&void 0!==r?r:{},u.prototype)}var l,p;return l=u,p=e,Oo.set(l,p),u}const $o=(e,t)=>{const n=e.property,r=e.method;if(n)for(let e in n)for(let r of n[e])r(t,e);if(r)for(let e in r)for(let n of r[e])n(t,e,Object.getOwnPropertyDescriptor(t,e))};const Ro=class extends po{specObj;passingOptionsNames=["specObj"];constructor({specObj:e,...t}){super({...t}),this.specObj=e}retrievePassingOptions(){return gr(this.passingOptionsNames,this)}retrieveFixedFields(e){const t=$e(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]}retrieveVisitor(e){return Ft(Ot,["visitors",...e],this.specObj)?$e(["visitors",...e],this.specObj):$e(["visitors",...e,"$visitor"],this.specObj)}retrieveVisitorInstance(e,t={}){const n=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...n,...t})}toRefractedElement(e,t,n={}){const r=this.retrieveVisitorInstance(e,n);return r instanceof ho&&r?.constructor===ho?hn(t):(wn(t,r,n),r.element)}};var Fo=function(){function e(e,t){this.xf=t,this.n=e,this.i=0}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){this.i+=1;var n=0===this.n?e:this.xf["@@transducer/step"](e,t);return this.n>=0&&this.i>=this.n?h(n):n},e}();function Do(e){return function(t){return new Fo(e,t)}}const Co=u(p(["take"],Do,(function(e,t){return Fe(0,e<0?1/0:e,t)})));const No=u((function(e,t){return C(Co(e.length,t),e)})),qo=e=>se(e.key)&&No("x-",ar(e.key)),Vo=e=>ce(e)&&e.hasKey("$ref");const Lo=class extends Ro{specPath;ignoredFields;canSupportSpecificationExtensions=!0;specificationExtensionPredicate=qo;constructor({specPath:e,ignoredFields:t,canSupportSpecificationExtensions:n,specificationExtensionPredicate:r,...s}){super({...s}),this.specPath=e,this.ignoredFields=t||[],"boolean"==typeof n&&(this.canSupportSpecificationExtensions=n),"function"==typeof r&&(this.specificationExtensionPredicate=r)}ObjectElement(e){const t=this.specPath(e),n=this.retrieveFixedFields(t);return e.forEach(((e,r,s)=>{if(se(r)&&n.includes(ar(r))&&!this.ignoredFields.includes(ar(r))){const n=this.toRefractedElement([...t,"fixedFields",ar(r)],e),i=new o.Pr(hn(r),n);this.copyMetaAndAttributes(s,i),i.classes.push("fixed-field"),this.element.content.push(i)}else if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(s)){const e=this.toRefractedElement(["document","extension"],s);this.element.content.push(e)}else this.ignoredFields.includes(ar(r))||this.element.content.push(hn(s))})),this.copyMetaAndAttributes(e,this.element),rn}};class Bo extends(To(Lo,ho)){constructor(e){super(e),this.element=new Vs,this.specPath=z(["document","objects","Swagger"]),this.canSupportSpecificationExtensions=!0}}const Ho=Bo;class zo extends(To(Ro,ho)){StringElement(e){const t=new Bs(ar(e));return this.copyMetaAndAttributes(e,t),this.element=t,rn}}const Jo=zo;const Uo=class extends ho{StringElement(e){const t=super.enter(e);return this.element.classes.push("swagger-host"),t}};const Go=class extends ho{StringElement(e){const t=super.enter(e);return this.element.classes.push("swagger-base-path"),t}};const Ko=class extends ho{constructor(e){super(e),this.element=new Yi}ArrayElement(e){return this.element=this.element.concat(hn(e)),rn}};const Xo=class extends ho{constructor(e){super(e),this.element=new Qi}ArrayElement(e){return this.element=this.element.concat(hn(e)),rn}};const Wo=class extends ho{constructor(e){super(e),this.element=new to}ArrayElement(e){return this.element=this.element.concat(hn(e)),rn}};class Yo extends(To(Ro,ho)){constructor(e){super(e),this.element=new ro}ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","SecurityRequirement"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}const Zo=Yo;class Qo extends(To(Ro,ho)){constructor(e){super(e),this.element=new io}ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","Tag"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}const ea=Qo;class ta extends(To(Lo,ho)){constructor(e){super(e),this.element=new zs,this.specPath=z(["document","objects","Info"]),this.canSupportSpecificationExtensions=!0}}const na=ta;const ra=class extends ho{StringElement(e){const t=super.enter(e);return this.element.classes.push("api-version"),this.element.classes.push("version"),t}};class sa extends(To(Lo,ho)){constructor(e){super(e),this.element=new Us,this.specPath=z(["document","objects","Contact"]),this.canSupportSpecificationExtensions=!0}}const ia=sa;class oa extends(To(Lo,ho)){constructor(e){super(e),this.element=new Ks,this.specPath=z(["document","objects","License"]),this.canSupportSpecificationExtensions=!0}}const aa=oa;const ca=class extends Ro{specPath;ignoredFields;fieldPatternPredicate=zr;canSupportSpecificationExtensions=!1;specificationExtensionPredicate=qo;constructor({specPath:e,ignoredFields:t,fieldPatternPredicate:n,canSupportSpecificationExtensions:r,specificationExtensionPredicate:s,...i}){super({...i}),this.specPath=e,this.ignoredFields=t||[],"function"==typeof n&&(this.fieldPatternPredicate=n),"boolean"==typeof r&&(this.canSupportSpecificationExtensions=r),"function"==typeof s&&(this.specificationExtensionPredicate=s)}ObjectElement(e){return e.forEach(((e,t,n)=>{if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(n)){const e=this.toRefractedElement(["document","extension"],n);this.element.content.push(e)}else if(!this.ignoredFields.includes(ar(t))&&this.fieldPatternPredicate(ar(t))){const r=this.specPath(e),s=this.toRefractedElement(r,e),i=new o.Pr(hn(t),s);this.copyMetaAndAttributes(n,i),i.classes.push("patterned-field"),this.element.content.push(i)}else this.ignoredFields.includes(ar(t))||this.element.content.push(hn(n))})),this.copyMetaAndAttributes(e,this.element),rn}},ua=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Vs||e(r)&&t("swagger",r)&&n("object",r))),la=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Bs||e(r)&&t("swaggerVersion",r)&&n("string",r))),pa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof zs||e(r)&&t("info",r)&&n("object",r))),ha=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ks||e(r)&&t("license",r)&&n("object",r))),ma=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Us||e(r)&&t("contact",r)&&n("object",r))),fa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ws||e(r)&&t("paths",r)&&n("object",r))),da=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Zs||e(r)&&t("pathItem",r)&&n("object",r))),ya=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ei||e(r)&&t("operation",r)&&n("object",r))),ga=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ni||e(r)&&t("externalDocumentation",r)&&n("object",r))),va=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ri||e(r)&&t("parameter",r)&&n("object",r))),ba=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof si||e(r)&&t("items",r)&&n("object",r))),wa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ci||e(r)&&t("responses",r)&&n("object",r))),Ea=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof li||e(r)&&t("response",r)&&n("object",r))),xa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof hi||e(r)&&t("headers",r)&&n("object",r))),ja=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof oi||e(r)&&t("example",r)&&n("object",r))),Oa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof mi||e(r)&&t("header",r)&&n("object",r))),Sa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof di||e(r)&&t("tag",r)&&n("object",r))),Pa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof wi||e(r)&&t("reference",r)&&n("object",r))),Aa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof yi||e(r)&&t("schema",r)&&n("object",r))),_a=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof vi||e(r)&&t("xml",r)&&n("object",r))),ka=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Pi||e(r)&&t("responsesDefinitions",r)&&n("object",r))),Ma=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof _i||e(r)&&t("securityDefinitions",r)&&n("object",r))),Ia=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof xi||e(r)&&t("definitions",r)&&n("object",r))),Ta=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Oi||e(r)&&t("parametersDefinitions",r)&&n("object",r))),$a=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Mi||e(r)&&t("securityScheme",r)&&n("object",r))),Ra=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ti||e(r)&&t("scopes",r)&&n("object",r))),Fa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ri||e(r)&&t("securityRequirement",r)&&n("object",r)));class Da extends(To(ca,ho)){element;constructor(e){super(e),this.element=new Ws,this.specPath=z(["document","objects","PathItem"]),this.canSupportSpecificationExtensions=!0,this.fieldPatternPredicate=er}ObjectElement(e){const t=ca.prototype.ObjectElement.call(this,e);return this.element.filter(da).forEach(((e,t)=>{t.classes.push("openapi-path-template"),t.classes.push("path-template"),e.setMetaProperty("path",hn(t))})),t}}const Ca=Da;class Na extends(To(Lo,ho)){constructor(e){super(e),this.element=new Zs,this.specPath=z(["document","objects","PathItem"])}ObjectElement(e){const t=Lo.prototype.ObjectElement.call(this,e);return this.element.filter(ya).forEach(((e,t)=>{const n=hn(t);n.content=ar(n).toUpperCase(),e.setMetaProperty("http-method",n)})),se(this.element.$ref)&&this.element.classes.push("reference-element"),t}}const qa=Na;const Va=class extends ho{StringElement(e){const t=super.enter(e);return this.element.classes.push("reference-value"),t}};class La extends(To(Ro,ho)){constructor(e){super(e),this.element=new Xi}ArrayElement(e){return e.forEach((e=>{const t=Vo(e)?["document","objects","Reference"]:["document","objects","Parameter"],n=this.toRefractedElement(t,e);Pa(n)&&n.setMetaProperty("referenced-element","parameter"),this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}const Ba=La;class Ha extends(To(Lo,ho)){constructor(e){super(e),this.element=new ei,this.specPath=z(["document","objects","Operation"])}}const za=Ha;const Ja=class extends ho{constructor(e){super(e),this.element=new Gi}ArrayElement(e){return this.element=this.element.concat(hn(e)),rn}};const Ua=class extends ho{constructor(e){super(e),this.element=new Ci}ArrayElement(e){return this.element=this.element.concat(hn(e)),rn}};const Ga=class extends ho{constructor(e){super(e),this.element=new Li}ArrayElement(e){return this.element=this.element.concat(hn(e)),rn}};class Ka extends(To(Ro,ho)){constructor(e){super(e),this.element=new qi}ArrayElement(e){return e.forEach((e=>{const t=Vo(e)?["document","objects","Reference"]:["document","objects","Parameter"],n=this.toRefractedElement(t,e);Pa(n)&&n.setMetaProperty("referenced-element","parameter"),this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}const Xa=Ka;const Wa=class extends ho{constructor(e){super(e),this.element=new Hi}ArrayElement(e){return this.element=this.element.concat(hn(e)),rn}};class Ya extends(To(Ro,ho)){constructor(e){super(e),this.element=new Ji}ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","SecurityRequirement"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}const Za=Ya;class Qa extends(To(Lo,ho)){constructor(e){super(e),this.element=new ni,this.specPath=z(["document","objects","ExternalDocumentation"]),this.canSupportSpecificationExtensions=!0}}const ec=Qa;class tc extends(To(Lo,ho)){constructor(e){super(e),this.element=new ri,this.specPath=z(["document","objects","Parameter"]),this.canSupportSpecificationExtensions=!0}}const nc=tc;class rc extends(To(Lo,ho)){specPath;canSupportSpecificationExtensions;constructor(e){super(e),this.element=new si,this.specPath=z(["document","objects","Items"]),this.canSupportSpecificationExtensions=!0}}const sc=rc;const ic=u((function(e,t){if(n=e,"[object RegExp]"!==Object.prototype.toString.call(n))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+at(e));var n;return function(e){return new RegExp(e.source,e.flags?e.flags:(e.global?"g":"")+(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.sticky?"y":"")+(e.unicode?"u":"")+(e.dotAll?"s":""))}(e).test(t)}));function oc(e){return"[object Number]"===Object.prototype.toString.call(e)}const ac=u((function(e,t){if(!oc(e)||!oc(t))throw new TypeError("Both arguments to range must be numbers");for(var n=[],r=e;r<t;)n.push(r),r+=1;return n}));function cc(e,t,n){var r,s=typeof e;switch(s){case"string":case"number":return 0===e&&1/e==-1/0?!!n._items["-0"]||(t&&(n._items["-0"]=!0),!1):null!==n._nativeSet?t?(r=n._nativeSet.size,n._nativeSet.add(e),n._nativeSet.size===r):n._nativeSet.has(e):s in n._items?e in n._items[s]||(t&&(n._items[s][e]=!0),!1):(t&&(n._items[s]={},n._items[s][e]=!0),!1);case"boolean":if(s in n._items){var i=e?1:0;return!!n._items[s][i]||(t&&(n._items[s][i]=!0),!1)}return t&&(n._items[s]=e?[!1,!0]:[!0,!1]),!1;case"function":return null!==n._nativeSet?t?(r=n._nativeSet.size,n._nativeSet.add(e),n._nativeSet.size===r):n._nativeSet.has(e):s in n._items?!!N(e,n._items[s])||(t&&n._items[s].push(e),!1):(t&&(n._items[s]=[e]),!1);case"undefined":return!!n._items[s]||(t&&(n._items[s]=!0),!1);case"object":if(null===e)return!!n._items.null||(t&&(n._items.null=!0),!1);default:return(s=Object.prototype.toString.call(e))in n._items?!!N(e,n._items[s])||(t&&n._items[s].push(e),!1):(t&&(n._items[s]=[e]),!1)}}const uc=function(){function e(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}return e.prototype.add=function(e){return!cc(e,!0,this)},e.prototype.has=function(e){return cc(e,!1,this)},e}();const lc=u((function(e,t){for(var n=[],r=0,s=e.length,i=t.length,o=new uc,a=0;a<i;a+=1)o.add(t[a]);for(;r<s;)o.add(e[r])&&(n[n.length]=e[r]),r+=1;return n}));class pc extends(To(Lo,ca)){specPathFixedFields;specPathPatternedFields;constructor({specPathFixedFields:e,specPathPatternedFields:t,...n}){super({...n}),this.specPathFixedFields=e,this.specPathPatternedFields=t}ObjectElement(e){const{specPath:t,ignoredFields:n}=this;try{this.specPath=this.specPathFixedFields;const t=this.retrieveFixedFields(this.specPath(e));this.ignoredFields=[...n,...lc(e.keys(),t)],Lo.prototype.ObjectElement.call(this,e),this.specPath=this.specPathPatternedFields,this.ignoredFields=t,ca.prototype.ObjectElement.call(this,e)}catch(e){throw this.specPath=t,e}return rn}}const hc=pc;class mc extends(To(hc,ho)){constructor(e){super(e),this.element=new ci,this.specPathFixedFields=z(["document","objects","Responses"]),this.canSupportSpecificationExtensions=!0,this.specPathPatternedFields=e=>Vo(e)?["document","objects","Reference"]:["document","objects","Response"],this.fieldPatternPredicate=ic(new RegExp(`^(1XX|2XX|3XX|4XX|5XX|${ac(100,600).join("|")})$`))}ObjectElement(e){const t=hc.prototype.ObjectElement.call(this,e);return this.element.filter(Pa).forEach((e=>{e.setMetaProperty("referenced-element","response")})),this.element.filter(Ea).forEach(((e,t)=>{const n=hn(t);this.fieldPatternPredicate(ar(n))&&e.setMetaProperty("http-status-code",n)})),t}}const fc=mc;const dc=class extends Ro{alternator;constructor({alternator:e,...t}){super({...t}),this.alternator=e||[]}enter(e){const t=this.alternator.map((({predicate:e,specPath:t})=>ps(e,z(t),J))),n=js(t)(e);return this.element=this.toRefractedElement(n,e),rn}};class yc extends(To(dc,ho)){constructor(e){super(e),this.alternator=[{predicate:Vo,specPath:["document","objects","Reference"]},{predicate:er,specPath:["document","objects","Response"]}]}ObjectElement(e){const t=dc.prototype.enter.call(this,e);return Pa(this.element)?this.element.setMetaProperty("referenced-element","response"):Ea(this.element)&&this.element.setMetaProperty("http-status-code","default"),t}}const gc=yc;class vc extends(To(Lo,ho)){constructor(e){super(e),this.element=new li,this.specPath=z(["document","objects","Response"]),this.canSupportSpecificationExtensions=!0}}const bc=vc;const wc=class extends ca{constructor(e){super(e),this.fieldPatternPredicate=Hr}};class Ec extends(To(wc,ho)){constructor(e){super(e),this.element=new hi,this.specPath=z(["document","objects","Header"]),this.canSupportSpecificationExtensions=!1}}const xc=Ec;class jc extends(To(wc,ho)){constructor(e){super(e),this.element=new oi,this.specPath=z(["value"]),this.canSupportSpecificationExtensions=!1}}const Oc=jc;class Sc extends(To(Lo,ho)){constructor(e){super(e),this.element=new mi,this.specPath=z(["document","objects","Header"]),this.canSupportSpecificationExtensions=!0}}const Pc=Sc;class Ac extends(To(Lo,ho)){constructor(e){super(e),this.element=new di,this.specPath=z(["document","objects","Tag"]),this.canSupportSpecificationExtensions=!0}}const _c=Ac;class kc extends(To(Lo,ho)){constructor(e){super(e),this.element=new wi,this.specPath=z(["document","objects","Reference"]),this.canSupportSpecificationExtensions=!1}ObjectElement(e){const t=Lo.prototype.ObjectElement.call(this,e);return se(this.element.$ref)&&this.element.classes.push("reference-element"),t}}const Mc=kc;const Ic=class extends ho{StringElement(e){const t=super.enter(e);return this.element.classes.push("reference-value"),t}};class Tc extends(To(Lo,ho)){constructor(e){super(e),this.element=new yi,this.specPath=z(["document","objects","Schema"]),this.canSupportSpecificationExtensions=!0}}const $c=Tc,{allOf:Rc}=Ps.visitors.document.objects.JSONSchema.fixedFields,Fc=Rc.compose({methods:{ArrayElement(e){const t=Rc.compose.methods.ArrayElement.call(this,e);return this.element.filter(Rn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}}),{items:Dc}=Ps.visitors.document.objects.JSONSchema.fixedFields,Cc=Dc.compose({methods:{ObjectElement(e){const t=Dc.compose.methods.ObjectElement.call(this,e);return Rn(this.element)&&this.element.setMetaProperty("referenced-element","schema"),t},ArrayElement(e){const t=Dc.compose.methods.ArrayElement.call(this,e);return this.element.filter(Rn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}}),{properties:Nc}=Ps.visitors.document.objects.JSONSchema.fixedFields,qc=Nc.compose({methods:{ObjectElement(e){const t=Nc.compose.methods.ObjectElement.call(this,e);return this.element.filter(Rn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}}),{JSONSchemaOrJSONReferenceVisitor:Vc}=Ps.visitors,Lc=Vc.compose({methods:{ObjectElement(e){const t=Vc.compose.methods.enter.call(this,e);return Rn(this.element)&&this.element.setMetaProperty("referenced-element","schema"),t}}});class Bc extends(To(Lo,ho)){constructor(e){super(e),this.element=new vi,this.specPath=z(["document","objects","XML"]),this.canSupportSpecificationExtensions=!0}}const Hc=Bc;class zc extends(To(wc,ho)){constructor(e){super(e),this.element=new xi,this.specPath=e=>Cn(e)?["document","objects","JSONReference"]:["document","objects","Schema"]}ObjectElement(e){const t=wc.prototype.ObjectElement.call(this,e);return this.element.filter(Rn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}const Jc=zc;class Uc extends(To(wc,ho)){constructor(e){super(e),this.element=new Pi,this.specPath=z(["document","objects","Response"])}}const Gc=Uc;class Kc extends(To(wc,ho)){constructor(e){super(e),this.element=new Oi,this.specPath=z(["document","objects","Parameter"])}}const Xc=Kc;class Wc extends(To(wc,ho)){element;constructor(e){super(e),this.element=new _i,this.specPath=z(["document","objects","SecurityScheme"])}}const Yc=Wc;class Zc extends(To(Lo,ho)){constructor(e){super(e),this.element=new Mi,this.specPath=z(["document","objects","SecurityScheme"]),this.canSupportSpecificationExtensions=!0}}const Qc=Zc;class eu extends(To(wc,ho)){constructor(e){super(e),this.element=new Ti,this.specPath=z(["value"]),this.canSupportSpecificationExtensions=!0}}const tu=eu;class nu extends(To(wc,ho)){constructor(e){super(e),this.element=new Ri,this.specPath=z(["value"])}}const ru=nu;const su=class extends Ro{MemberElement(e){return this.element=hn(e),this.element.classes.push("specification-extension"),rn}},{fixedFields:iu}=Ps.visitors.document.objects.JSONSchema,ou={visitors:{value:ho,document:{objects:{JSONReference:Ps.visitors.document.objects.JSONReference,JSONSchema:{$ref:"#/visitors/document/objects/Schema"},Swagger:{$visitor:Ho,fixedFields:{swagger:Jo,info:{$ref:"#/visitors/document/objects/Info"},host:Uo,basePath:Go,schemes:Ko,consumes:Xo,produces:Wo,paths:{$ref:"#/visitors/document/objects/Paths"},definitions:{$ref:"#/visitors/document/objects/Definitions"},parameters:{$ref:"#/visitors/document/objects/ParametersDefinitions"},responses:{$ref:"#/visitors/document/objects/ResponsesDefinitions"},securityDefinitions:{$ref:"#/visitors/document/objects/SecurityDefinitions"},security:Zo,tags:ea,externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"}}},Info:{$visitor:na,fixedFields:{title:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},termsOfService:{$ref:"#/visitors/value"},contact:{$ref:"#/visitors/document/objects/Contact"},license:{$ref:"#/visitors/document/objects/License"},version:ra}},Contact:{$visitor:ia,fixedFields:{name:{$ref:"#/visitors/value"},url:{$ref:"#/visitors/value"},email:{$ref:"#/visitors/value"}}},License:{$visitor:aa,fixedFields:{name:{$ref:"#/visitors/value"},url:{$ref:"#/visitors/value"}}},Paths:{$visitor:Ca},PathItem:{$visitor:qa,fixedFields:{$ref:Va,get:{$ref:"#/visitors/document/objects/Operation"},put:{$ref:"#/visitors/document/objects/Operation"},post:{$ref:"#/visitors/document/objects/Operation"},delete:{$ref:"#/visitors/document/objects/Operation"},options:{$ref:"#/visitors/document/objects/Operation"},head:{$ref:"#/visitors/document/objects/Operation"},patch:{$ref:"#/visitors/document/objects/Operation"},parameters:Ba}},Operation:{$visitor:za,fixedFields:{tags:Ja,summary:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"},operationId:{$ref:"#/visitors/value"},consumes:Ua,produces:Ga,parameters:Xa,responses:{$ref:"#/visitors/document/objects/Responses"},schemes:Wa,deprecated:{$ref:"#/visitors/value"},security:Za}},ExternalDocumentation:{$visitor:ec,fixedFields:{description:{$ref:"#/visitors/value"},url:{$ref:"#/visitors/value"}}},Parameter:{$visitor:nc,fixedFields:{name:{$ref:"#/visitors/value"},in:{$ref:"#/visitors/value"},description:iu.description,required:iu.required,schema:Lc,type:iu.type,format:iu.format,items:{$ref:"#/visitors/document/objects/Items"},collectionFormat:{$ref:"#/visitors/value"},default:iu.default,maximum:iu.maximum,exclusiveMaximum:iu.exclusiveMaximum,minimum:iu.minimum,exclusiveMinimum:iu.exclusiveMinimum,maxLength:iu.maxLength,minLength:iu.minLength,pattern:iu.pattern,maxItems:iu.maxItems,minItems:iu.minItems,uniqueItems:iu.uniqueItems,enum:iu.enum,multipleOf:iu.multipleOf}},Items:{$visitor:sc,fixedFields:{type:iu.type,format:iu.format,items:{$ref:"#/visitors/document/objects/Items"},collectionFormat:{$ref:"#/visitors/value"},default:iu.default,maximum:iu.maximum,exclusiveMaximum:iu.exclusiveMaximum,minimum:iu.minimum,exclusiveMinimum:iu.exclusiveMinimum,maxLength:iu.maxLength,minLength:iu.minLength,pattern:iu.pattern,maxItems:iu.maxItems,minItems:iu.minItems,uniqueItems:iu.uniqueItems,enum:iu.enum,multipleOf:iu.multipleOf}},Responses:{$visitor:fc,fixedFields:{default:gc}},Response:{$visitor:bc,fixedFields:{description:{$ref:"#/visitors/value"},schema:Lc,headers:{$ref:"#/visitors/document/objects/Headers"},examples:{$ref:"#/visitors/document/objects/Example"}}},Headers:{$visitor:xc},Example:{$visitor:Oc},Header:{$visitor:Pc,fixedFields:{description:iu.description,type:iu.type,format:iu.format,items:{$ref:"#/visitors/document/objects/Items"},collectionFormat:{$ref:"#/visitors/value"},default:iu.default,maximum:iu.maximum,exclusiveMaximum:iu.exclusiveMaximum,minimum:iu.minimum,exclusiveMinimum:iu.exclusiveMinimum,maxLength:iu.maxLength,minLength:iu.minLength,pattern:iu.pattern,maxItems:iu.maxItems,minItems:iu.minItems,uniqueItems:iu.uniqueItems,enum:iu.enum,multipleOf:iu.multipleOf}},Tag:{$visitor:_c,fixedFields:{name:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"}}},Reference:{$visitor:Mc,fixedFields:{$ref:Ic}},Schema:{$visitor:$c,fixedFields:{format:iu.format,title:iu.title,description:iu.description,default:iu.default,multipleOf:iu.multipleOf,maximum:iu.maximum,exclusiveMaximum:iu.exclusiveMaximum,minimum:iu.minimum,exclusiveMinimum:iu.exclusiveMinimum,maxLength:iu.maxLength,minLength:iu.minLength,pattern:iu.pattern,maxItems:iu.maxItems,minItems:iu.minItems,uniqueItems:iu.uniqueItems,maxProperties:iu.maxProperties,minProperties:iu.minProperties,required:iu.required,enum:iu.enum,type:iu.type,readOnly:iu.readOnly,items:Cc,allOf:Fc,properties:qc,additionalProperties:Lc,discriminator:{$ref:"#/visitors/value"},xml:{$ref:"#/visitors/document/objects/XML"},externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"},example:{$ref:"#/visitors/value"}}},XML:{$visitor:Hc,fixedFields:{name:{$ref:"#/visitors/value"},namespace:{$ref:"#/visitors/value"},prefix:{$ref:"#/visitors/value"},attribute:{$ref:"#/visitors/value"},wrapped:{$ref:"#/visitors/value"}}},Definitions:{$visitor:Jc},ParametersDefinitions:{$visitor:Xc},ResponsesDefinitions:{$visitor:Gc},SecurityDefinitions:{$visitor:Yc},SecurityScheme:{$visitor:Qc,fixedFields:{type:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},name:{$ref:"#/visitors/value"},in:{$ref:"#/visitors/value"},flow:{$ref:"#/visitors/value"},authorizationUrl:{$ref:"#/visitors/value"},token:{$ref:"#/visitors/value"},scopes:{$ref:"#/visitors/document/objects/Scopes"}}},Scopes:{$visitor:tu},SecurityRequirement:{$visitor:ru}},extension:{$visitor:su}}}},au=()=>{const e=Gt(Fi);return{predicates:{...s,...i,isStringElement:se},namespace:e}},cu=(e,{specPath:t=["visitors","document","objects","Swagger","$visitor"],plugins:n=[]}={})=>{const r=(0,o.e)(e),s=Zn(ou),i=new($e(t,s))({specObj:s});return wn(r,i),xn(i.element,n,{toolboxCreator:au,visitorOptions:{keyMap:ao,nodeTypeGetter:oo}})},uu=e=>(t,n={})=>cu(t,{specPath:e,...n}),lu=cu})(),r})()));
1
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.apidomNsOpenApi2=t():e.apidomNsOpenApi2=t()}(self,(()=>(()=>{var e={3103:(e,t,n)=>{var r=n(4715)(n(8942),"DataView");e.exports=r},5098:(e,t,n)=>{var r=n(3305),s=n(9361),i=n(1112),o=n(5276),a=n(5071);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,e.exports=c},1386:(e,t,n)=>{var r=n(2393),s=n(2049),i=n(7144),o=n(7452),a=n(3964);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,e.exports=c},9770:(e,t,n)=>{var r=n(4715)(n(8942),"Map");e.exports=r},8250:(e,t,n)=>{var r=n(9753),s=n(5681),i=n(88),o=n(4732),a=n(9068);function c(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}c.prototype.clear=r,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,e.exports=c},9413:(e,t,n)=>{var r=n(4715)(n(8942),"Promise");e.exports=r},4512:(e,t,n)=>{var r=n(4715)(n(8942),"Set");e.exports=r},3212:(e,t,n)=>{var r=n(8250),s=n(1877),i=n(8006);function o(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new r;++t<n;)this.add(e[t])}o.prototype.add=o.prototype.push=s,o.prototype.has=i,e.exports=o},1340:(e,t,n)=>{var r=n(1386),s=n(4103),i=n(1779),o=n(4162),a=n(7462),c=n(6638);function u(e){var t=this.__data__=new r(e);this.size=t.size}u.prototype.clear=s,u.prototype.delete=i,u.prototype.get=o,u.prototype.has=a,u.prototype.set=c,e.exports=u},5650:(e,t,n)=>{var r=n(8942).Symbol;e.exports=r},1623:(e,t,n)=>{var r=n(8942).Uint8Array;e.exports=r},9270:(e,t,n)=>{var r=n(4715)(n(8942),"WeakMap");e.exports=r},9847:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length,s=0,i=[];++n<r;){var o=e[n];t(o,n,e)&&(i[s++]=o)}return i}},358:(e,t,n)=>{var r=n(6137),s=n(3283),i=n(3142),o=n(5853),a=n(9632),c=n(8666),u=Object.prototype.hasOwnProperty;e.exports=function(e,t){var n=i(e),l=!n&&s(e),p=!n&&!l&&o(e),h=!n&&!l&&!p&&c(e),m=n||l||p||h,f=m?r(e.length,String):[],d=f.length;for(var y in e)!t&&!u.call(e,y)||m&&("length"==y||p&&("offset"==y||"parent"==y)||h&&("buffer"==y||"byteLength"==y||"byteOffset"==y)||a(y,d))||f.push(y);return f}},1129:e=>{e.exports=function(e,t){for(var n=-1,r=t.length,s=e.length;++n<r;)e[s+n]=t[n];return e}},6465:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}},7034:(e,t,n)=>{var r=n(6285);e.exports=function(e,t){for(var n=e.length;n--;)if(r(e[n][0],t))return n;return-1}},8244:(e,t,n)=>{var r=n(1129),s=n(3142);e.exports=function(e,t,n){var i=t(e);return s(e)?i:r(i,n(e))}},7379:(e,t,n)=>{var r=n(5650),s=n(8870),i=n(9005),o=r?r.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":o&&o in Object(e)?s(e):i(e)}},6027:(e,t,n)=>{var r=n(7379),s=n(547);e.exports=function(e){return s(e)&&"[object Arguments]"==r(e)}},4687:(e,t,n)=>{var r=n(353),s=n(547);e.exports=function e(t,n,i,o,a){return t===n||(null==t||null==n||!s(t)&&!s(n)?t!=t&&n!=n:r(t,n,i,o,e,a))}},353:(e,t,n)=>{var r=n(1340),s=n(3934),i=n(8861),o=n(1182),a=n(8486),c=n(3142),u=n(5853),l=n(8666),p="[object Arguments]",h="[object Array]",m="[object Object]",f=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,d,y,g){var v=c(e),b=c(t),w=v?h:a(e),E=b?h:a(t),x=(w=w==p?m:w)==m,j=(E=E==p?m:E)==m,O=w==E;if(O&&u(e)){if(!u(t))return!1;v=!0,x=!1}if(O&&!x)return g||(g=new r),v||l(e)?s(e,t,n,d,y,g):i(e,t,w,n,d,y,g);if(!(1&n)){var S=x&&f.call(e,"__wrapped__"),P=j&&f.call(t,"__wrapped__");if(S||P){var A=S?e.value():e,_=P?t.value():t;return g||(g=new r),y(A,_,n,d,g)}}return!!O&&(g||(g=new r),o(e,t,n,d,y,g))}},9624:(e,t,n)=>{var r=n(3655),s=n(4759),i=n(1580),o=n(4066),a=/^\[object .+?Constructor\]$/,c=Function.prototype,u=Object.prototype,l=c.toString,p=u.hasOwnProperty,h=RegExp("^"+l.call(p).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!i(e)||s(e))&&(r(e)?h:a).test(o(e))}},674:(e,t,n)=>{var r=n(7379),s=n(5387),i=n(547),o={};o["[object Float32Array]"]=o["[object Float64Array]"]=o["[object Int8Array]"]=o["[object Int16Array]"]=o["[object Int32Array]"]=o["[object Uint8Array]"]=o["[object Uint8ClampedArray]"]=o["[object Uint16Array]"]=o["[object Uint32Array]"]=!0,o["[object Arguments]"]=o["[object Array]"]=o["[object ArrayBuffer]"]=o["[object Boolean]"]=o["[object DataView]"]=o["[object Date]"]=o["[object Error]"]=o["[object Function]"]=o["[object Map]"]=o["[object Number]"]=o["[object Object]"]=o["[object RegExp]"]=o["[object Set]"]=o["[object String]"]=o["[object WeakMap]"]=!1,e.exports=function(e){return i(e)&&s(e.length)&&!!o[r(e)]}},195:(e,t,n)=>{var r=n(4882),s=n(8121),i=Object.prototype.hasOwnProperty;e.exports=function(e){if(!r(e))return s(e);var t=[];for(var n in Object(e))i.call(e,n)&&"constructor"!=n&&t.push(n);return t}},6137:e=>{e.exports=function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}},9460:e=>{e.exports=function(e){return function(t){return e(t)}}},5568:e=>{e.exports=function(e,t){return e.has(t)}},1950:(e,t,n)=>{var r=n(8942)["__core-js_shared__"];e.exports=r},3934:(e,t,n)=>{var r=n(3212),s=n(6465),i=n(5568);e.exports=function(e,t,n,o,a,c){var u=1&n,l=e.length,p=t.length;if(l!=p&&!(u&&p>l))return!1;var h=c.get(e),m=c.get(t);if(h&&m)return h==t&&m==e;var f=-1,d=!0,y=2&n?new r:void 0;for(c.set(e,t),c.set(t,e);++f<l;){var g=e[f],v=t[f];if(o)var b=u?o(v,g,f,t,e,c):o(g,v,f,e,t,c);if(void 0!==b){if(b)continue;d=!1;break}if(y){if(!s(t,(function(e,t){if(!i(y,t)&&(g===e||a(g,e,n,o,c)))return y.push(t)}))){d=!1;break}}else if(g!==v&&!a(g,v,n,o,c)){d=!1;break}}return c.delete(e),c.delete(t),d}},8861:(e,t,n)=>{var r=n(5650),s=n(1623),i=n(6285),o=n(3934),a=n(5894),c=n(9828),u=r?r.prototype:void 0,l=u?u.valueOf:void 0;e.exports=function(e,t,n,r,u,p,h){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!p(new s(e),new s(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return i(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var m=a;case"[object Set]":var f=1&r;if(m||(m=c),e.size!=t.size&&!f)return!1;var d=h.get(e);if(d)return d==t;r|=2,h.set(e,t);var y=o(m(e),m(t),r,u,p,h);return h.delete(e),y;case"[object Symbol]":if(l)return l.call(e)==l.call(t)}return!1}},1182:(e,t,n)=>{var r=n(393),s=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,i,o,a){var c=1&n,u=r(e),l=u.length;if(l!=r(t).length&&!c)return!1;for(var p=l;p--;){var h=u[p];if(!(c?h in t:s.call(t,h)))return!1}var m=a.get(e),f=a.get(t);if(m&&f)return m==t&&f==e;var d=!0;a.set(e,t),a.set(t,e);for(var y=c;++p<l;){var g=e[h=u[p]],v=t[h];if(i)var b=c?i(v,g,h,t,e,a):i(g,v,h,e,t,a);if(!(void 0===b?g===v||o(g,v,n,i,a):b)){d=!1;break}y||(y="constructor"==h)}if(d&&!y){var w=e.constructor,E=t.constructor;w==E||!("constructor"in e)||!("constructor"in t)||"function"==typeof w&&w instanceof w&&"function"==typeof E&&E instanceof E||(d=!1)}return a.delete(e),a.delete(t),d}},4967:(e,t,n)=>{var r="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g;e.exports=r},393:(e,t,n)=>{var r=n(8244),s=n(7979),i=n(1211);e.exports=function(e){return r(e,i,s)}},4700:(e,t,n)=>{var r=n(9067);e.exports=function(e,t){var n=e.__data__;return r(t)?n["string"==typeof t?"string":"hash"]:n.map}},4715:(e,t,n)=>{var r=n(9624),s=n(155);e.exports=function(e,t){var n=s(e,t);return r(n)?n:void 0}},8870:(e,t,n)=>{var r=n(5650),s=Object.prototype,i=s.hasOwnProperty,o=s.toString,a=r?r.toStringTag:void 0;e.exports=function(e){var t=i.call(e,a),n=e[a];try{e[a]=void 0;var r=!0}catch(e){}var s=o.call(e);return r&&(t?e[a]=n:delete e[a]),s}},7979:(e,t,n)=>{var r=n(9847),s=n(9306),i=Object.prototype.propertyIsEnumerable,o=Object.getOwnPropertySymbols,a=o?function(e){return null==e?[]:(e=Object(e),r(o(e),(function(t){return i.call(e,t)})))}:s;e.exports=a},8486:(e,t,n)=>{var r=n(3103),s=n(9770),i=n(9413),o=n(4512),a=n(9270),c=n(7379),u=n(4066),l="[object Map]",p="[object Promise]",h="[object Set]",m="[object WeakMap]",f="[object DataView]",d=u(r),y=u(s),g=u(i),v=u(o),b=u(a),w=c;(r&&w(new r(new ArrayBuffer(1)))!=f||s&&w(new s)!=l||i&&w(i.resolve())!=p||o&&w(new o)!=h||a&&w(new a)!=m)&&(w=function(e){var t=c(e),n="[object Object]"==t?e.constructor:void 0,r=n?u(n):"";if(r)switch(r){case d:return f;case y:return l;case g:return p;case v:return h;case b:return m}return t}),e.exports=w},155:e=>{e.exports=function(e,t){return null==e?void 0:e[t]}},3305:(e,t,n)=>{var r=n(4497);e.exports=function(){this.__data__=r?r(null):{},this.size=0}},9361:e=>{e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},1112:(e,t,n)=>{var r=n(4497),s=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(r){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return s.call(t,e)?t[e]:void 0}},5276:(e,t,n)=>{var r=n(4497),s=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return r?void 0!==t[e]:s.call(t,e)}},5071:(e,t,n)=>{var r=n(4497);e.exports=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=r&&void 0===t?"__lodash_hash_undefined__":t,this}},9632:e=>{var t=/^(?:0|[1-9]\d*)$/;e.exports=function(e,n){var r=typeof e;return!!(n=null==n?9007199254740991:n)&&("number"==r||"symbol"!=r&&t.test(e))&&e>-1&&e%1==0&&e<n}},9067:e=>{e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},4759:(e,t,n)=>{var r,s=n(1950),i=(r=/[^.]+$/.exec(s&&s.keys&&s.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"";e.exports=function(e){return!!i&&i in e}},4882:e=>{var t=Object.prototype;e.exports=function(e){var n=e&&e.constructor;return e===("function"==typeof n&&n.prototype||t)}},2393:e=>{e.exports=function(){this.__data__=[],this.size=0}},2049:(e,t,n)=>{var r=n(7034),s=Array.prototype.splice;e.exports=function(e){var t=this.__data__,n=r(t,e);return!(n<0)&&(n==t.length-1?t.pop():s.call(t,n,1),--this.size,!0)}},7144:(e,t,n)=>{var r=n(7034);e.exports=function(e){var t=this.__data__,n=r(t,e);return n<0?void 0:t[n][1]}},7452:(e,t,n)=>{var r=n(7034);e.exports=function(e){return r(this.__data__,e)>-1}},3964:(e,t,n)=>{var r=n(7034);e.exports=function(e,t){var n=this.__data__,s=r(n,e);return s<0?(++this.size,n.push([e,t])):n[s][1]=t,this}},9753:(e,t,n)=>{var r=n(5098),s=n(1386),i=n(9770);e.exports=function(){this.size=0,this.__data__={hash:new r,map:new(i||s),string:new r}}},5681:(e,t,n)=>{var r=n(4700);e.exports=function(e){var t=r(this,e).delete(e);return this.size-=t?1:0,t}},88:(e,t,n)=>{var r=n(4700);e.exports=function(e){return r(this,e).get(e)}},4732:(e,t,n)=>{var r=n(4700);e.exports=function(e){return r(this,e).has(e)}},9068:(e,t,n)=>{var r=n(4700);e.exports=function(e,t){var n=r(this,e),s=n.size;return n.set(e,t),this.size+=n.size==s?0:1,this}},5894:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}},4497:(e,t,n)=>{var r=n(4715)(Object,"create");e.exports=r},8121:(e,t,n)=>{var r=n(3766)(Object.keys,Object);e.exports=r},2306:(e,t,n)=>{e=n.nmd(e);var r=n(4967),s=t&&!t.nodeType&&t,i=s&&e&&!e.nodeType&&e,o=i&&i.exports===s&&r.process,a=function(){try{var e=i&&i.require&&i.require("util").types;return e||o&&o.binding&&o.binding("util")}catch(e){}}();e.exports=a},9005:e=>{var t=Object.prototype.toString;e.exports=function(e){return t.call(e)}},3766:e=>{e.exports=function(e,t){return function(n){return e(t(n))}}},8942:(e,t,n)=>{var r=n(4967),s="object"==typeof self&&self&&self.Object===Object&&self,i=r||s||Function("return this")();e.exports=i},1877:e=>{e.exports=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this}},8006:e=>{e.exports=function(e){return this.__data__.has(e)}},9828:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n}},4103:(e,t,n)=>{var r=n(1386);e.exports=function(){this.__data__=new r,this.size=0}},1779:e=>{e.exports=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}},4162:e=>{e.exports=function(e){return this.__data__.get(e)}},7462:e=>{e.exports=function(e){return this.__data__.has(e)}},6638:(e,t,n)=>{var r=n(1386),s=n(9770),i=n(8250);e.exports=function(e,t){var n=this.__data__;if(n instanceof r){var o=n.__data__;if(!s||o.length<199)return o.push([e,t]),this.size=++n.size,this;n=this.__data__=new i(o)}return n.set(e,t),this.size=n.size,this}},4066:e=>{var t=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return t.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},6285:e=>{e.exports=function(e,t){return e===t||e!=e&&t!=t}},3283:(e,t,n)=>{var r=n(6027),s=n(547),i=Object.prototype,o=i.hasOwnProperty,a=i.propertyIsEnumerable,c=r(function(){return arguments}())?r:function(e){return s(e)&&o.call(e,"callee")&&!a.call(e,"callee")};e.exports=c},3142:e=>{var t=Array.isArray;e.exports=t},6529:(e,t,n)=>{var r=n(3655),s=n(5387);e.exports=function(e){return null!=e&&s(e.length)&&!r(e)}},2563:(e,t,n)=>{var r=n(7379),s=n(547);e.exports=function(e){return!0===e||!1===e||s(e)&&"[object Boolean]"==r(e)}},5853:(e,t,n)=>{e=n.nmd(e);var r=n(8942),s=n(4772),i=t&&!t.nodeType&&t,o=i&&e&&!e.nodeType&&e,a=o&&o.exports===i?r.Buffer:void 0,c=(a?a.isBuffer:void 0)||s;e.exports=c},6343:(e,t,n)=>{var r=n(4687);e.exports=function(e,t){return r(e,t)}},3655:(e,t,n)=>{var r=n(7379),s=n(1580);e.exports=function(e){if(!s(e))return!1;var t=r(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},5387:e=>{e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},9310:e=>{e.exports=function(e){return null===e}},986:(e,t,n)=>{var r=n(7379),s=n(547);e.exports=function(e){return"number"==typeof e||s(e)&&"[object Number]"==r(e)}},1580:e=>{e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},547:e=>{e.exports=function(e){return null!=e&&"object"==typeof e}},8138:(e,t,n)=>{var r=n(7379),s=n(3142),i=n(547);e.exports=function(e){return"string"==typeof e||!s(e)&&i(e)&&"[object String]"==r(e)}},8666:(e,t,n)=>{var r=n(674),s=n(9460),i=n(2306),o=i&&i.isTypedArray,a=o?s(o):r;e.exports=a},1211:(e,t,n)=>{var r=n(358),s=n(195),i=n(6529);e.exports=function(e){return i(e)?r(e):s(e)}},1517:e=>{e.exports=function(e){if("function"!=typeof e)throw new TypeError("Expected a function");return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}},9306:e=>{e.exports=function(){return[]}},4772:e=>{e.exports=function(){return!1}},4123:(e,t,n)=>{const r=n(1517);function s(e){return"string"==typeof e?t=>t.element===e:e.constructor&&e.extend?t=>t instanceof e:e}class i{constructor(e){this.elements=e||[]}toValue(){return this.elements.map((e=>e.toValue()))}map(e,t){return this.elements.map(e,t)}flatMap(e,t){return this.map(e,t).reduce(((e,t)=>e.concat(t)),[])}compactMap(e,t){const n=[];return this.forEach((r=>{const s=e.bind(t)(r);s&&n.push(s)})),n}filter(e,t){return e=s(e),new i(this.elements.filter(e,t))}reject(e,t){return e=s(e),new i(this.elements.filter(r(e),t))}find(e,t){return e=s(e),this.elements.find(e,t)}forEach(e,t){this.elements.forEach(e,t)}reduce(e,t){return this.elements.reduce(e,t)}includes(e){return this.elements.some((t=>t.equals(e)))}shift(){return this.elements.shift()}unshift(e){this.elements.unshift(this.refract(e))}push(e){return this.elements.push(this.refract(e)),this}add(e){this.push(e)}get(e){return this.elements[e]}getValue(e){const t=this.elements[e];if(t)return t.toValue()}get length(){return this.elements.length}get isEmpty(){return 0===this.elements.length}get first(){return this.elements[0]}}"undefined"!=typeof Symbol&&(i.prototype[Symbol.iterator]=function(){return this.elements[Symbol.iterator]()}),e.exports=i},2322:e=>{class t{constructor(e,t){this.key=e,this.value=t}clone(){const e=new t;return this.key&&(e.key=this.key.clone()),this.value&&(e.value=this.value.clone()),e}}e.exports=t},5735:(e,t,n)=>{const r=n(9310),s=n(8138),i=n(986),o=n(2563),a=n(1580),c=n(394),u=n(7547);class l{constructor(e){this.elementMap={},this.elementDetection=[],this.Element=u.Element,this.KeyValuePair=u.KeyValuePair,e&&e.noDefault||this.useDefault(),this._attributeElementKeys=[],this._attributeElementArrayKeys=[]}use(e){return e.namespace&&e.namespace({base:this}),e.load&&e.load({base:this}),this}useDefault(){return this.register("null",u.NullElement).register("string",u.StringElement).register("number",u.NumberElement).register("boolean",u.BooleanElement).register("array",u.ArrayElement).register("object",u.ObjectElement).register("member",u.MemberElement).register("ref",u.RefElement).register("link",u.LinkElement),this.detect(r,u.NullElement,!1).detect(s,u.StringElement,!1).detect(i,u.NumberElement,!1).detect(o,u.BooleanElement,!1).detect(Array.isArray,u.ArrayElement,!1).detect(a,u.ObjectElement,!1),this}register(e,t){return this._elements=void 0,this.elementMap[e]=t,this}unregister(e){return this._elements=void 0,delete this.elementMap[e],this}detect(e,t,n){return void 0===n||n?this.elementDetection.unshift([e,t]):this.elementDetection.push([e,t]),this}toElement(e){if(e instanceof this.Element)return e;let t;for(let n=0;n<this.elementDetection.length;n+=1){const r=this.elementDetection[n][0],s=this.elementDetection[n][1];if(r(e)){t=new s(e);break}}return t}getElementClass(e){const t=this.elementMap[e];return void 0===t?this.Element:t}fromRefract(e){return this.serialiser.deserialise(e)}toRefract(e){return this.serialiser.serialise(e)}get elements(){return void 0===this._elements&&(this._elements={Element:this.Element},Object.keys(this.elementMap).forEach((e=>{const t=e[0].toUpperCase()+e.substr(1);this._elements[t]=this.elementMap[e]}))),this._elements}get serialiser(){return new c(this)}}c.prototype.Namespace=l,e.exports=l},3311:(e,t,n)=>{const r=n(1517),s=n(4123);class i extends s{map(e,t){return this.elements.map((n=>e.bind(t)(n.value,n.key,n)))}filter(e,t){return new i(this.elements.filter((n=>e.bind(t)(n.value,n.key,n))))}reject(e,t){return this.filter(r(e.bind(t)))}forEach(e,t){return this.elements.forEach(((n,r)=>{e.bind(t)(n.value,n.key,n,r)}))}keys(){return this.map(((e,t)=>t.toValue()))}values(){return this.map((e=>e.toValue()))}}e.exports=i},7547:(e,t,n)=>{const r=n(8631),s=n(3004),i=n(8712),o=n(2536),a=n(2555),c=n(9796),u=n(7309),l=n(5642),p=n(9620),h=n(593),m=n(4123),f=n(3311),d=n(2322);function y(e){if(e instanceof r)return e;if("string"==typeof e)return new i(e);if("number"==typeof e)return new o(e);if("boolean"==typeof e)return new a(e);if(null===e)return new s;if(Array.isArray(e))return new c(e.map(y));if("object"==typeof e){return new l(e)}return e}r.prototype.ObjectElement=l,r.prototype.RefElement=h,r.prototype.MemberElement=u,r.prototype.refract=y,m.prototype.refract=y,e.exports={Element:r,NullElement:s,StringElement:i,NumberElement:o,BooleanElement:a,ArrayElement:c,MemberElement:u,ObjectElement:l,LinkElement:p,RefElement:h,refract:y,ArraySlice:m,ObjectSlice:f,KeyValuePair:d}},9620:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e||[],t,n),this.element="link"}get relation(){return this.attributes.get("relation")}set relation(e){this.attributes.set("relation",e)}get href(){return this.attributes.get("href")}set href(e){this.attributes.set("href",e)}}},593:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e||[],t,n),this.element="ref",this.path||(this.path="element")}get path(){return this.attributes.get("path")}set path(e){this.attributes.set("path",e)}}},8326:(e,t,n)=>{const r=n(5735),s=n(7547);t.g$=r,t.KeyValuePair=n(2322),t.G6=s.ArraySlice,t.ot=s.ObjectSlice,t.Hg=s.Element,t.Om=s.StringElement,t.kT=s.NumberElement,t.bd=s.BooleanElement,t.Os=s.NullElement,t.wE=s.ArrayElement,t.Sh=s.ObjectElement,t.Pr=s.MemberElement,t.sI=s.RefElement,t.Ft=s.LinkElement,t.e=s.refract,n(394),n(3148)},9796:(e,t,n)=>{const r=n(1517),s=n(8631),i=n(4123);class o extends s{constructor(e,t,n){super(e||[],t,n),this.element="array"}primitive(){return"array"}get(e){return this.content[e]}getValue(e){const t=this.get(e);if(t)return t.toValue()}getIndex(e){return this.content[e]}set(e,t){return this.content[e]=this.refract(t),this}remove(e){const t=this.content.splice(e,1);return t.length?t[0]:null}map(e,t){return this.content.map(e,t)}flatMap(e,t){return this.map(e,t).reduce(((e,t)=>e.concat(t)),[])}compactMap(e,t){const n=[];return this.forEach((r=>{const s=e.bind(t)(r);s&&n.push(s)})),n}filter(e,t){return new i(this.content.filter(e,t))}reject(e,t){return this.filter(r(e),t)}reduce(e,t){let n,r;void 0!==t?(n=0,r=this.refract(t)):(n=1,r="object"===this.primitive()?this.first.value:this.first);for(let t=n;t<this.length;t+=1){const n=this.content[t];r="object"===this.primitive()?this.refract(e(r,n.value,n.key,n,this)):this.refract(e(r,n,t,this))}return r}forEach(e,t){this.content.forEach(((n,r)=>{e.bind(t)(n,this.refract(r))}))}shift(){return this.content.shift()}unshift(e){this.content.unshift(this.refract(e))}push(e){return this.content.push(this.refract(e)),this}add(e){this.push(e)}findElements(e,t){const n=t||{},r=!!n.recursive,s=void 0===n.results?[]:n.results;return this.forEach(((t,n,i)=>{r&&void 0!==t.findElements&&t.findElements(e,{results:s,recursive:r}),e(t,n,i)&&s.push(t)})),s}find(e){return new i(this.findElements(e,{recursive:!0}))}findByElement(e){return this.find((t=>t.element===e))}findByClass(e){return this.find((t=>t.classes.includes(e)))}getById(e){return this.find((t=>t.id.toValue()===e)).first}includes(e){return this.content.some((t=>t.equals(e)))}contains(e){return this.includes(e)}empty(){return new this.constructor([])}"fantasy-land/empty"(){return this.empty()}concat(e){return new this.constructor(this.content.concat(e.content))}"fantasy-land/concat"(e){return this.concat(e)}"fantasy-land/map"(e){return new this.constructor(this.map(e))}"fantasy-land/chain"(e){return this.map((t=>e(t)),this).reduce(((e,t)=>e.concat(t)),this.empty())}"fantasy-land/filter"(e){return new this.constructor(this.content.filter(e))}"fantasy-land/reduce"(e,t){return this.content.reduce(e,t)}get length(){return this.content.length}get isEmpty(){return 0===this.content.length}get first(){return this.getIndex(0)}get second(){return this.getIndex(1)}get last(){return this.getIndex(this.length-1)}}o.empty=function(){return new this},o["fantasy-land/empty"]=o.empty,"undefined"!=typeof Symbol&&(o.prototype[Symbol.iterator]=function(){return this.content[Symbol.iterator]()}),e.exports=o},2555:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e,t,n),this.element="boolean"}primitive(){return"boolean"}}},8631:(e,t,n)=>{const r=n(6343),s=n(2322),i=n(4123);class o{constructor(e,t,n){t&&(this.meta=t),n&&(this.attributes=n),this.content=e}freeze(){Object.isFrozen(this)||(this._meta&&(this.meta.parent=this,this.meta.freeze()),this._attributes&&(this.attributes.parent=this,this.attributes.freeze()),this.children.forEach((e=>{e.parent=this,e.freeze()}),this),this.content&&Array.isArray(this.content)&&Object.freeze(this.content),Object.freeze(this))}primitive(){}clone(){const e=new this.constructor;return e.element=this.element,this.meta.length&&(e._meta=this.meta.clone()),this.attributes.length&&(e._attributes=this.attributes.clone()),this.content?this.content.clone?e.content=this.content.clone():Array.isArray(this.content)?e.content=this.content.map((e=>e.clone())):e.content=this.content:e.content=this.content,e}toValue(){return this.content instanceof o?this.content.toValue():this.content instanceof s?{key:this.content.key.toValue(),value:this.content.value?this.content.value.toValue():void 0}:this.content&&this.content.map?this.content.map((e=>e.toValue()),this):this.content}toRef(e){if(""===this.id.toValue())throw Error("Cannot create reference to an element that does not contain an ID");const t=new this.RefElement(this.id.toValue());return e&&(t.path=e),t}findRecursive(...e){if(arguments.length>1&&!this.isFrozen)throw new Error("Cannot find recursive with multiple element names without first freezing the element. Call `element.freeze()`");const t=e.pop();let n=new i;const r=(e,t)=>(e.push(t),e),o=(e,n)=>{n.element===t&&e.push(n);const i=n.findRecursive(t);return i&&i.reduce(r,e),n.content instanceof s&&(n.content.key&&o(e,n.content.key),n.content.value&&o(e,n.content.value)),e};return this.content&&(this.content.element&&o(n,this.content),Array.isArray(this.content)&&this.content.reduce(o,n)),e.isEmpty||(n=n.filter((t=>{let n=t.parents.map((e=>e.element));for(const t in e){const r=e[t],s=n.indexOf(r);if(-1===s)return!1;n=n.splice(0,s)}return!0}))),n}set(e){return this.content=e,this}equals(e){return r(this.toValue(),e)}getMetaProperty(e,t){if(!this.meta.hasKey(e)){if(this.isFrozen){const e=this.refract(t);return e.freeze(),e}this.meta.set(e,t)}return this.meta.get(e)}setMetaProperty(e,t){this.meta.set(e,t)}get element(){return this._storedElement||"element"}set element(e){this._storedElement=e}get content(){return this._content}set content(e){if(e instanceof o)this._content=e;else if(e instanceof i)this.content=e.elements;else if("string"==typeof e||"number"==typeof e||"boolean"==typeof e||"null"===e||null==e)this._content=e;else if(e instanceof s)this._content=e;else if(Array.isArray(e))this._content=e.map(this.refract);else{if("object"!=typeof e)throw new Error("Cannot set content to given value");this._content=Object.keys(e).map((t=>new this.MemberElement(t,e[t])))}}get meta(){if(!this._meta){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._meta=new this.ObjectElement}return this._meta}set meta(e){e instanceof this.ObjectElement?this._meta=e:this.meta.set(e||{})}get attributes(){if(!this._attributes){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._attributes=new this.ObjectElement}return this._attributes}set attributes(e){e instanceof this.ObjectElement?this._attributes=e:this.attributes.set(e||{})}get id(){return this.getMetaProperty("id","")}set id(e){this.setMetaProperty("id",e)}get classes(){return this.getMetaProperty("classes",[])}set classes(e){this.setMetaProperty("classes",e)}get title(){return this.getMetaProperty("title","")}set title(e){this.setMetaProperty("title",e)}get description(){return this.getMetaProperty("description","")}set description(e){this.setMetaProperty("description",e)}get links(){return this.getMetaProperty("links",[])}set links(e){this.setMetaProperty("links",e)}get isFrozen(){return Object.isFrozen(this)}get parents(){let{parent:e}=this;const t=new i;for(;e;)t.push(e),e=e.parent;return t}get children(){if(Array.isArray(this.content))return new i(this.content);if(this.content instanceof s){const e=new i([this.content.key]);return this.content.value&&e.push(this.content.value),e}return this.content instanceof o?new i([this.content]):new i}get recursiveChildren(){const e=new i;return this.children.forEach((t=>{e.push(t),t.recursiveChildren.forEach((t=>{e.push(t)}))})),e}}e.exports=o},7309:(e,t,n)=>{const r=n(2322),s=n(8631);e.exports=class extends s{constructor(e,t,n,s){super(new r,n,s),this.element="member",this.key=e,this.value=t}get key(){return this.content.key}set key(e){this.content.key=this.refract(e)}get value(){return this.content.value}set value(e){this.content.value=this.refract(e)}}},3004:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e||null,t,n),this.element="null"}primitive(){return"null"}set(){return new Error("Cannot set the value of null")}}},2536:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e,t,n),this.element="number"}primitive(){return"number"}}},5642:(e,t,n)=>{const r=n(1517),s=n(1580),i=n(9796),o=n(7309),a=n(3311);e.exports=class extends i{constructor(e,t,n){super(e||[],t,n),this.element="object"}primitive(){return"object"}toValue(){return this.content.reduce(((e,t)=>(e[t.key.toValue()]=t.value?t.value.toValue():void 0,e)),{})}get(e){const t=this.getMember(e);if(t)return t.value}getMember(e){if(void 0!==e)return this.content.find((t=>t.key.toValue()===e))}remove(e){let t=null;return this.content=this.content.filter((n=>n.key.toValue()!==e||(t=n,!1))),t}getKey(e){const t=this.getMember(e);if(t)return t.key}set(e,t){if(s(e))return Object.keys(e).forEach((t=>{this.set(t,e[t])})),this;const n=e,r=this.getMember(n);return r?r.value=t:this.content.push(new o(n,t)),this}keys(){return this.content.map((e=>e.key.toValue()))}values(){return this.content.map((e=>e.value.toValue()))}hasKey(e){return this.content.some((t=>t.key.equals(e)))}items(){return this.content.map((e=>[e.key.toValue(),e.value.toValue()]))}map(e,t){return this.content.map((n=>e.bind(t)(n.value,n.key,n)))}compactMap(e,t){const n=[];return this.forEach(((r,s,i)=>{const o=e.bind(t)(r,s,i);o&&n.push(o)})),n}filter(e,t){return new a(this.content).filter(e,t)}reject(e,t){return this.filter(r(e),t)}forEach(e,t){return this.content.forEach((n=>e.bind(t)(n.value,n.key,n)))}}},8712:(e,t,n)=>{const r=n(8631);e.exports=class extends r{constructor(e,t,n){super(e,t,n),this.element="string"}primitive(){return"string"}get length(){return this.content.length}}},3148:(e,t,n)=>{const r=n(394);e.exports=class extends r{serialise(e){if(!(e instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${e}\` is not an Element instance`);let t;e._attributes&&e.attributes.get("variable")&&(t=e.attributes.get("variable"));const n={element:e.element};e._meta&&e._meta.length>0&&(n.meta=this.serialiseObject(e.meta));const r="enum"===e.element||-1!==e.attributes.keys().indexOf("enumerations");if(r){const t=this.enumSerialiseAttributes(e);t&&(n.attributes=t)}else if(e._attributes&&e._attributes.length>0){let{attributes:r}=e;r.get("metadata")&&(r=r.clone(),r.set("meta",r.get("metadata")),r.remove("metadata")),"member"===e.element&&t&&(r=r.clone(),r.remove("variable")),r.length>0&&(n.attributes=this.serialiseObject(r))}if(r)n.content=this.enumSerialiseContent(e,n);else if(this[`${e.element}SerialiseContent`])n.content=this[`${e.element}SerialiseContent`](e,n);else if(void 0!==e.content){let r;t&&e.content.key?(r=e.content.clone(),r.key.attributes.set("variable",t),r=this.serialiseContent(r)):r=this.serialiseContent(e.content),this.shouldSerialiseContent(e,r)&&(n.content=r)}else this.shouldSerialiseContent(e,e.content)&&e instanceof this.namespace.elements.Array&&(n.content=[]);return n}shouldSerialiseContent(e,t){return"parseResult"===e.element||"httpRequest"===e.element||"httpResponse"===e.element||"category"===e.element||"link"===e.element||void 0!==t&&(!Array.isArray(t)||0!==t.length)}refSerialiseContent(e,t){return delete t.attributes,{href:e.toValue(),path:e.path.toValue()}}sourceMapSerialiseContent(e){return e.toValue()}dataStructureSerialiseContent(e){return[this.serialiseContent(e.content)]}enumSerialiseAttributes(e){const t=e.attributes.clone(),n=t.remove("enumerations")||new this.namespace.elements.Array([]),r=t.get("default");let s=t.get("samples")||new this.namespace.elements.Array([]);if(r&&r.content&&(r.content.attributes&&r.content.attributes.remove("typeAttributes"),t.set("default",new this.namespace.elements.Array([r.content]))),s.forEach((e=>{e.content&&e.content.element&&e.content.attributes.remove("typeAttributes")})),e.content&&0!==n.length&&s.unshift(e.content),s=s.map((e=>e instanceof this.namespace.elements.Array?[e]:new this.namespace.elements.Array([e.content]))),s.length&&t.set("samples",s),t.length>0)return this.serialiseObject(t)}enumSerialiseContent(e){if(e._attributes){const t=e.attributes.get("enumerations");if(t&&t.length>0)return t.content.map((e=>{const t=e.clone();return t.attributes.remove("typeAttributes"),this.serialise(t)}))}if(e.content){const t=e.content.clone();return t.attributes.remove("typeAttributes"),[this.serialise(t)]}return[]}deserialise(e){if("string"==typeof e)return new this.namespace.elements.String(e);if("number"==typeof e)return new this.namespace.elements.Number(e);if("boolean"==typeof e)return new this.namespace.elements.Boolean(e);if(null===e)return new this.namespace.elements.Null;if(Array.isArray(e))return new this.namespace.elements.Array(e.map(this.deserialise,this));const t=this.namespace.getElementClass(e.element),n=new t;n.element!==e.element&&(n.element=e.element),e.meta&&this.deserialiseObject(e.meta,n.meta),e.attributes&&this.deserialiseObject(e.attributes,n.attributes);const r=this.deserialiseContent(e.content);if(void 0===r&&null!==n.content||(n.content=r),"enum"===n.element){n.content&&n.attributes.set("enumerations",n.content);let e=n.attributes.get("samples");if(n.attributes.remove("samples"),e){const r=e;e=new this.namespace.elements.Array,r.forEach((r=>{r.forEach((r=>{const s=new t(r);s.element=n.element,e.push(s)}))}));const s=e.shift();n.content=s?s.content:void 0,n.attributes.set("samples",e)}else n.content=void 0;let r=n.attributes.get("default");if(r&&r.length>0){r=r.get(0);const e=new t(r);e.element=n.element,n.attributes.set("default",e)}}else if("dataStructure"===n.element&&Array.isArray(n.content))[n.content]=n.content;else if("category"===n.element){const e=n.attributes.get("meta");e&&(n.attributes.set("metadata",e),n.attributes.remove("meta"))}else"member"===n.element&&n.key&&n.key._attributes&&n.key._attributes.getValue("variable")&&(n.attributes.set("variable",n.key.attributes.get("variable")),n.key.attributes.remove("variable"));return n}serialiseContent(e){if(e instanceof this.namespace.elements.Element)return this.serialise(e);if(e instanceof this.namespace.KeyValuePair){const t={key:this.serialise(e.key)};return e.value&&(t.value=this.serialise(e.value)),t}return e&&e.map?e.map(this.serialise,this):e}deserialiseContent(e){if(e){if(e.element)return this.deserialise(e);if(e.key){const t=new this.namespace.KeyValuePair(this.deserialise(e.key));return e.value&&(t.value=this.deserialise(e.value)),t}if(e.map)return e.map(this.deserialise,this)}return e}shouldRefract(e){return!!(e._attributes&&e.attributes.keys().length||e._meta&&e.meta.keys().length)||"enum"!==e.element&&(e.element!==e.primitive()||"member"===e.element)}convertKeyToRefract(e,t){return this.shouldRefract(t)?this.serialise(t):"enum"===t.element?this.serialiseEnum(t):"array"===t.element?t.map((t=>this.shouldRefract(t)||"default"===e?this.serialise(t):"array"===t.element||"object"===t.element||"enum"===t.element?t.children.map((e=>this.serialise(e))):t.toValue())):"object"===t.element?(t.content||[]).map(this.serialise,this):t.toValue()}serialiseEnum(e){return e.children.map((e=>this.serialise(e)))}serialiseObject(e){const t={};return e.forEach(((e,n)=>{if(e){const r=n.toValue();t[r]=this.convertKeyToRefract(r,e)}})),t}deserialiseObject(e,t){Object.keys(e).forEach((n=>{t.set(n,this.deserialise(e[n]))}))}}},394:e=>{e.exports=class{constructor(e){this.namespace=e||new this.Namespace}serialise(e){if(!(e instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${e}\` is not an Element instance`);const t={element:e.element};e._meta&&e._meta.length>0&&(t.meta=this.serialiseObject(e.meta)),e._attributes&&e._attributes.length>0&&(t.attributes=this.serialiseObject(e.attributes));const n=this.serialiseContent(e.content);return void 0!==n&&(t.content=n),t}deserialise(e){if(!e.element)throw new Error("Given value is not an object containing an element name");const t=new(this.namespace.getElementClass(e.element));t.element!==e.element&&(t.element=e.element),e.meta&&this.deserialiseObject(e.meta,t.meta),e.attributes&&this.deserialiseObject(e.attributes,t.attributes);const n=this.deserialiseContent(e.content);return void 0===n&&null!==t.content||(t.content=n),t}serialiseContent(e){if(e instanceof this.namespace.elements.Element)return this.serialise(e);if(e instanceof this.namespace.KeyValuePair){const t={key:this.serialise(e.key)};return e.value&&(t.value=this.serialise(e.value)),t}if(e&&e.map){if(0===e.length)return;return e.map(this.serialise,this)}return e}deserialiseContent(e){if(e){if(e.element)return this.deserialise(e);if(e.key){const t=new this.namespace.KeyValuePair(this.deserialise(e.key));return e.value&&(t.value=this.deserialise(e.value)),t}if(e.map)return e.map(this.deserialise,this)}return e}serialiseObject(e){const t={};if(e.forEach(((e,n)=>{e&&(t[n.toValue()]=this.serialise(e))})),0!==Object.keys(t).length)return t}deserialiseObject(e,t){Object.keys(e).forEach((n=>{t.set(n,this.deserialise(e[n]))}))}}},8357:e=>{!function(){"use strict";var t,n,r,s,i,o="properties",a="deepProperties",c="propertyDescriptors",u="staticProperties",l="staticDeepProperties",p="staticPropertyDescriptors",h="configuration",m="deepConfiguration",f="deepProps",d="deepStatics",y="deepConf",g="initializers",v="methods",b="composers",w="compose";function E(e){return Object.getOwnPropertyNames(e).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e):[])}function x(e,t){return Array.prototype.slice.call(arguments,2).reduce(e,t)}var j=x.bind(0,(function(e,t){if(t)for(var n=E(t),r=0;r<n.length;r+=1)Object.defineProperty(e,n[r],Object.getOwnPropertyDescriptor(t,n[r]));return e}));function O(e){return"function"==typeof e}function S(e){return e&&"object"==typeof e||O(e)}function P(e){return e&&"object"==typeof e&&e.__proto__==Object.prototype}var A=x.bind(0,(function e(n,r){if(r===t)return n;if(Array.isArray(r))return(Array.isArray(n)?n:[]).concat(r);if(!P(r))return r;for(var s,i,o=E(r),a=0;a<o.length;)s=o[a++],(i=Object.getOwnPropertyDescriptor(r,s)).hasOwnProperty("value")?i.value!==t&&(n[s]=e(P(n[s])||Array.isArray(r[s])?n[s]:{},r[s])):Object.defineProperty(n,s,i);return n}));function _(){return(n=Array.prototype.concat.apply([],arguments).filter((function(e,t,n){return O(e)&&n.indexOf(e)===t}))).length?n:t}function k(e,t){function r(n,r){S(t[n])&&(S(e[n])||(e[n]={}),(r||j)(e[n],t[n]))}function s(r){(n=_(e[r],t[r]))&&(e[r]=n)}return t&&S(t=t[w]||t)&&(r(v),r(o),r(a,A),r(c),r(u),r(l,A),r(p),r(h),r(m,A),s(g),s(b)),e}function M(){return function(e){return n=function e(n){var r,s,i=e[w]||{},u={__proto__:i[v]},l=i[g],p=Array.prototype.slice.apply(arguments),h=i[a];if(h&&A(u,h),(h=i[o])&&j(u,h),(h=i[c])&&Object.defineProperties(u,h),!l||!l.length)return u;for(n===t&&(n={}),i=0;i<l.length;)O(r=l[i++])&&(u=(s=r.call(u,n,{instance:u,stamp:e,args:p}))===t?u:s);return u},(r=e[l])&&A(n,r),(r=e[u])&&j(n,r),(r=e[p])&&Object.defineProperties(n,r),r=O(n[w])?n[w]:M,j(n[w]=function(){return r.apply(this,arguments)},e),n}(Array.prototype.concat.apply([this],arguments).reduce(k,{}))}function I(e){return O(e)&&O(e[w])}var T={};function $(e,i){return function(){return(s={})[e]=i.apply(t,Array.prototype.concat.apply([{}],arguments)),((n=this)&&n[w]||r).call(n,s)}}T[v]=$(v,j),T[o]=T.props=$(o,j),T[g]=T.init=$(g,_),T[b]=$(b,_),T[a]=T[f]=$(a,A),T[u]=T.statics=$(u,j),T[l]=T[d]=$(l,A),T[h]=T.conf=$(h,j),T[m]=T[y]=$(m,A),T[c]=$(c,j),T[p]=$(p,j),r=T[w]=j((function(){for(var e,E,x=0,O=[],P=arguments,k=this;x<P.length;)S(e=P[x++])&&O.push(I(e)?e:((s={})[v]=(E=e)[v]||t,r=E.props,s[o]=S((n=E[o])||r)?j({},r,n):t,s[g]=_(E.init,E[g]),s[b]=_(E[b]),r=E[f],s[a]=S((n=E[a])||r)?A({},r,n):t,s[c]=E[c],r=E.statics,s[u]=S((n=E[u])||r)?j({},r,n):t,r=E[d],s[l]=S((n=E[l])||r)?A({},r,n):t,n=E[p],s[p]=S((r=E.name&&{name:{value:E.name}})||n)?j({},n,r):t,r=E.conf,s[h]=S((n=E[h])||r)?j({},r,n):t,r=E[y],s[m]=S((n=E[m])||r)?A({},r,n):t,s));if(e=M.apply(k||i,O),k&&O.unshift(k),Array.isArray(P=e[w][b]))for(x=0;x<P.length;)e=I(k=P[x++]({stamp:e,composables:O}))?k:e;return e}),T),T.create=function(){return this.apply(t,arguments)},(s={})[u]=T,i=M(s),r[w]=r.bind(),r.version="4.3.2","object"!=typeof t?e.exports=r:self.stampit=r}()},1212:(e,t,n)=>{e.exports=n(8411)},7202:(e,t,n)=>{"use strict";var r=n(239);e.exports=r},6656:(e,t,n)=>{"use strict";n(484),n(5695),n(6138),n(7447),n(3832);var r=n(8099);e.exports=r.AggregateError},8411:(e,t,n)=>{"use strict";e.exports=n(8337)},8337:(e,t,n)=>{"use strict";n(5442);var r=n(7202);e.exports=r},814:(e,t,n)=>{"use strict";var r=n(2769),s=n(459),i=TypeError;e.exports=function(e){if(r(e))return e;throw new i(s(e)+" is not a function")}},1966:(e,t,n)=>{"use strict";var r=n(2937),s=String,i=TypeError;e.exports=function(e){if(r(e))return e;throw new i("Can't set "+s(e)+" as a prototype")}},8137:e=>{"use strict";e.exports=function(){}},7235:(e,t,n)=>{"use strict";var r=n(262),s=String,i=TypeError;e.exports=function(e){if(r(e))return e;throw new i(s(e)+" is not an object")}},1005:(e,t,n)=>{"use strict";var r=n(3273),s=n(4574),i=n(8130),o=function(e){return function(t,n,o){var a,c=r(t),u=i(c),l=s(o,u);if(e&&n!=n){for(;u>l;)if((a=c[l++])!=a)return!0}else for(;u>l;l++)if((e||l in c)&&c[l]===n)return e||l||0;return!e&&-1}};e.exports={includes:o(!0),indexOf:o(!1)}},9932:(e,t,n)=>{"use strict";var r=n(6100),s=r({}.toString),i=r("".slice);e.exports=function(e){return i(s(e),8,-1)}},8407:(e,t,n)=>{"use strict";var r=n(4904),s=n(2769),i=n(9932),o=n(8655)("toStringTag"),a=Object,c="Arguments"===i(function(){return arguments}());e.exports=r?i:function(e){var t,n,r;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=a(e),o))?n:c?i(t):"Object"===(r=i(t))&&s(t.callee)?"Arguments":r}},7464:(e,t,n)=>{"use strict";var r=n(701),s=n(5691),i=n(4543),o=n(9989);e.exports=function(e,t,n){for(var a=s(t),c=o.f,u=i.f,l=0;l<a.length;l++){var p=a[l];r(e,p)||n&&r(n,p)||c(e,p,u(t,p))}}},2871:(e,t,n)=>{"use strict";var r=n(1203);e.exports=!r((function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype}))},877:e=>{"use strict";e.exports=function(e,t){return{value:e,done:t}}},3999:(e,t,n)=>{"use strict";var r=n(5024),s=n(9989),i=n(480);e.exports=r?function(e,t,n){return s.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},480:e=>{"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},3508:(e,t,n)=>{"use strict";var r=n(3999);e.exports=function(e,t,n,s){return s&&s.enumerable?e[t]=n:r(e,t,n),e}},7525:(e,t,n)=>{"use strict";var r=n(1063),s=Object.defineProperty;e.exports=function(e,t){try{s(r,e,{value:t,configurable:!0,writable:!0})}catch(n){r[e]=t}return t}},5024:(e,t,n)=>{"use strict";var r=n(1203);e.exports=!r((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},9619:(e,t,n)=>{"use strict";var r=n(1063),s=n(262),i=r.document,o=s(i)&&s(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},1100:e=>{"use strict";e.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}},7868:e=>{"use strict";e.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4432:(e,t,n)=>{"use strict";var r,s,i=n(1063),o=n(7868),a=i.process,c=i.Deno,u=a&&a.versions||c&&c.version,l=u&&u.v8;l&&(s=(r=l.split("."))[0]>0&&r[0]<4?1:+(r[0]+r[1])),!s&&o&&(!(r=o.match(/Edge\/(\d+)/))||r[1]>=74)&&(r=o.match(/Chrome\/(\d+)/))&&(s=+r[1]),e.exports=s},9683:e=>{"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},3885:(e,t,n)=>{"use strict";var r=n(6100),s=Error,i=r("".replace),o=String(new s("zxcasd").stack),a=/\n\s*at [^:]*:[^\n]*/,c=a.test(o);e.exports=function(e,t){if(c&&"string"==typeof e&&!s.prepareStackTrace)for(;t--;)e=i(e,a,"");return e}},4279:(e,t,n)=>{"use strict";var r=n(3999),s=n(3885),i=n(5791),o=Error.captureStackTrace;e.exports=function(e,t,n,a){i&&(o?o(e,t):r(e,"stack",s(n,a)))}},5791:(e,t,n)=>{"use strict";var r=n(1203),s=n(480);e.exports=!r((function(){var e=new Error("a");return!("stack"in e)||(Object.defineProperty(e,"stack",s(1,7)),7!==e.stack)}))},9098:(e,t,n)=>{"use strict";var r=n(1063),s=n(7013),i=n(9344),o=n(2769),a=n(4543).f,c=n(8696),u=n(8099),l=n(4572),p=n(3999),h=n(701),m=function(e){var t=function(n,r,i){if(this instanceof t){switch(arguments.length){case 0:return new e;case 1:return new e(n);case 2:return new e(n,r)}return new e(n,r,i)}return s(e,this,arguments)};return t.prototype=e.prototype,t};e.exports=function(e,t){var n,s,f,d,y,g,v,b,w,E=e.target,x=e.global,j=e.stat,O=e.proto,S=x?r:j?r[E]:r[E]&&r[E].prototype,P=x?u:u[E]||p(u,E,{})[E],A=P.prototype;for(d in t)s=!(n=c(x?d:E+(j?".":"#")+d,e.forced))&&S&&h(S,d),g=P[d],s&&(v=e.dontCallGetSet?(w=a(S,d))&&w.value:S[d]),y=s&&v?v:t[d],(n||O||typeof g!=typeof y)&&(b=e.bind&&s?l(y,r):e.wrap&&s?m(y):O&&o(y)?i(y):y,(e.sham||y&&y.sham||g&&g.sham)&&p(b,"sham",!0),p(P,d,b),O&&(h(u,f=E+"Prototype")||p(u,f,{}),p(u[f],d,y),e.real&&A&&(n||!A[d])&&p(A,d,y)))}},1203:e=>{"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},7013:(e,t,n)=>{"use strict";var r=n(1780),s=Function.prototype,i=s.apply,o=s.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?o.bind(i):function(){return o.apply(i,arguments)})},4572:(e,t,n)=>{"use strict";var r=n(9344),s=n(814),i=n(1780),o=r(r.bind);e.exports=function(e,t){return s(e),void 0===t?e:i?o(e,t):function(){return e.apply(t,arguments)}}},1780:(e,t,n)=>{"use strict";var r=n(1203);e.exports=!r((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},4713:(e,t,n)=>{"use strict";var r=n(1780),s=Function.prototype.call;e.exports=r?s.bind(s):function(){return s.apply(s,arguments)}},3410:(e,t,n)=>{"use strict";var r=n(5024),s=n(701),i=Function.prototype,o=r&&Object.getOwnPropertyDescriptor,a=s(i,"name"),c=a&&"something"===function(){}.name,u=a&&(!r||r&&o(i,"name").configurable);e.exports={EXISTS:a,PROPER:c,CONFIGURABLE:u}},3574:(e,t,n)=>{"use strict";var r=n(6100),s=n(814);e.exports=function(e,t,n){try{return r(s(Object.getOwnPropertyDescriptor(e,t)[n]))}catch(e){}}},9344:(e,t,n)=>{"use strict";var r=n(9932),s=n(6100);e.exports=function(e){if("Function"===r(e))return s(e)}},6100:(e,t,n)=>{"use strict";var r=n(1780),s=Function.prototype,i=s.call,o=r&&s.bind.bind(i,i);e.exports=r?o:function(e){return function(){return i.apply(e,arguments)}}},1003:(e,t,n)=>{"use strict";var r=n(8099),s=n(1063),i=n(2769),o=function(e){return i(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?o(r[e])||o(s[e]):r[e]&&r[e][t]||s[e]&&s[e][t]}},967:(e,t,n)=>{"use strict";var r=n(8407),s=n(4674),i=n(3057),o=n(6625),a=n(8655)("iterator");e.exports=function(e){if(!i(e))return s(e,a)||s(e,"@@iterator")||o[r(e)]}},1613:(e,t,n)=>{"use strict";var r=n(4713),s=n(814),i=n(7235),o=n(459),a=n(967),c=TypeError;e.exports=function(e,t){var n=arguments.length<2?a(e):t;if(s(n))return i(r(n,e));throw new c(o(e)+" is not iterable")}},4674:(e,t,n)=>{"use strict";var r=n(814),s=n(3057);e.exports=function(e,t){var n=e[t];return s(n)?void 0:r(n)}},1063:function(e,t,n){"use strict";var r=function(e){return e&&e.Math===Math&&e};e.exports=r("object"==typeof globalThis&&globalThis)||r("object"==typeof window&&window)||r("object"==typeof self&&self)||r("object"==typeof n.g&&n.g)||r("object"==typeof this&&this)||function(){return this}()||Function("return this")()},701:(e,t,n)=>{"use strict";var r=n(6100),s=n(2137),i=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(s(e),t)}},5241:e=>{"use strict";e.exports={}},3489:(e,t,n)=>{"use strict";var r=n(1003);e.exports=r("document","documentElement")},9665:(e,t,n)=>{"use strict";var r=n(5024),s=n(1203),i=n(9619);e.exports=!r&&!s((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},1395:(e,t,n)=>{"use strict";var r=n(6100),s=n(1203),i=n(9932),o=Object,a=r("".split);e.exports=s((function(){return!o("z").propertyIsEnumerable(0)}))?function(e){return"String"===i(e)?a(e,""):o(e)}:o},3507:(e,t,n)=>{"use strict";var r=n(2769),s=n(262),i=n(3491);e.exports=function(e,t,n){var o,a;return i&&r(o=t.constructor)&&o!==n&&s(a=o.prototype)&&a!==n.prototype&&i(e,a),e}},8148:(e,t,n)=>{"use strict";var r=n(262),s=n(3999);e.exports=function(e,t){r(t)&&"cause"in t&&s(e,"cause",t.cause)}},8417:(e,t,n)=>{"use strict";var r,s,i,o=n(1314),a=n(1063),c=n(262),u=n(3999),l=n(701),p=n(3753),h=n(4275),m=n(5241),f="Object already initialized",d=a.TypeError,y=a.WeakMap;if(o||p.state){var g=p.state||(p.state=new y);g.get=g.get,g.has=g.has,g.set=g.set,r=function(e,t){if(g.has(e))throw new d(f);return t.facade=e,g.set(e,t),t},s=function(e){return g.get(e)||{}},i=function(e){return g.has(e)}}else{var v=h("state");m[v]=!0,r=function(e,t){if(l(e,v))throw new d(f);return t.facade=e,u(e,v,t),t},s=function(e){return l(e,v)?e[v]:{}},i=function(e){return l(e,v)}}e.exports={set:r,get:s,has:i,enforce:function(e){return i(e)?s(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!c(t)||(n=s(t)).type!==e)throw new d("Incompatible receiver, "+e+" required");return n}}}},2877:(e,t,n)=>{"use strict";var r=n(8655),s=n(6625),i=r("iterator"),o=Array.prototype;e.exports=function(e){return void 0!==e&&(s.Array===e||o[i]===e)}},2769:e=>{"use strict";var t="object"==typeof document&&document.all;e.exports=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},8696:(e,t,n)=>{"use strict";var r=n(1203),s=n(2769),i=/#|\.prototype\./,o=function(e,t){var n=c[a(e)];return n===l||n!==u&&(s(t)?r(t):!!t)},a=o.normalize=function(e){return String(e).replace(i,".").toLowerCase()},c=o.data={},u=o.NATIVE="N",l=o.POLYFILL="P";e.exports=o},3057:e=>{"use strict";e.exports=function(e){return null==e}},262:(e,t,n)=>{"use strict";var r=n(2769);e.exports=function(e){return"object"==typeof e?null!==e:r(e)}},2937:(e,t,n)=>{"use strict";var r=n(262);e.exports=function(e){return r(e)||null===e}},4871:e=>{"use strict";e.exports=!0},6281:(e,t,n)=>{"use strict";var r=n(1003),s=n(2769),i=n(4317),o=n(7460),a=Object;e.exports=o?function(e){return"symbol"==typeof e}:function(e){var t=r("Symbol");return s(t)&&i(t.prototype,a(e))}},208:(e,t,n)=>{"use strict";var r=n(4572),s=n(4713),i=n(7235),o=n(459),a=n(2877),c=n(8130),u=n(4317),l=n(1613),p=n(967),h=n(1743),m=TypeError,f=function(e,t){this.stopped=e,this.result=t},d=f.prototype;e.exports=function(e,t,n){var y,g,v,b,w,E,x,j=n&&n.that,O=!(!n||!n.AS_ENTRIES),S=!(!n||!n.IS_RECORD),P=!(!n||!n.IS_ITERATOR),A=!(!n||!n.INTERRUPTED),_=r(t,j),k=function(e){return y&&h(y,"normal",e),new f(!0,e)},M=function(e){return O?(i(e),A?_(e[0],e[1],k):_(e[0],e[1])):A?_(e,k):_(e)};if(S)y=e.iterator;else if(P)y=e;else{if(!(g=p(e)))throw new m(o(e)+" is not iterable");if(a(g)){for(v=0,b=c(e);b>v;v++)if((w=M(e[v]))&&u(d,w))return w;return new f(!1)}y=l(e,g)}for(E=S?e.next:y.next;!(x=s(E,y)).done;){try{w=M(x.value)}catch(e){h(y,"throw",e)}if("object"==typeof w&&w&&u(d,w))return w}return new f(!1)}},1743:(e,t,n)=>{"use strict";var r=n(4713),s=n(7235),i=n(4674);e.exports=function(e,t,n){var o,a;s(e);try{if(!(o=i(e,"return"))){if("throw"===t)throw n;return n}o=r(o,e)}catch(e){a=!0,o=e}if("throw"===t)throw n;if(a)throw o;return s(o),n}},1926:(e,t,n)=>{"use strict";var r=n(2621).IteratorPrototype,s=n(5780),i=n(480),o=n(1811),a=n(6625),c=function(){return this};e.exports=function(e,t,n,u){var l=t+" Iterator";return e.prototype=s(r,{next:i(+!u,n)}),o(e,l,!1,!0),a[l]=c,e}},164:(e,t,n)=>{"use strict";var r=n(9098),s=n(4713),i=n(4871),o=n(3410),a=n(2769),c=n(1926),u=n(3671),l=n(3491),p=n(1811),h=n(3999),m=n(3508),f=n(8655),d=n(6625),y=n(2621),g=o.PROPER,v=o.CONFIGURABLE,b=y.IteratorPrototype,w=y.BUGGY_SAFARI_ITERATORS,E=f("iterator"),x="keys",j="values",O="entries",S=function(){return this};e.exports=function(e,t,n,o,f,y,P){c(n,t,o);var A,_,k,M=function(e){if(e===f&&F)return F;if(!w&&e&&e in $)return $[e];switch(e){case x:case j:case O:return function(){return new n(this,e)}}return function(){return new n(this)}},I=t+" Iterator",T=!1,$=e.prototype,R=$[E]||$["@@iterator"]||f&&$[f],F=!w&&R||M(f),D="Array"===t&&$.entries||R;if(D&&(A=u(D.call(new e)))!==Object.prototype&&A.next&&(i||u(A)===b||(l?l(A,b):a(A[E])||m(A,E,S)),p(A,I,!0,!0),i&&(d[I]=S)),g&&f===j&&R&&R.name!==j&&(!i&&v?h($,"name",j):(T=!0,F=function(){return s(R,this)})),f)if(_={values:M(j),keys:y?F:M(x),entries:M(O)},P)for(k in _)(w||T||!(k in $))&&m($,k,_[k]);else r({target:t,proto:!0,forced:w||T},_);return i&&!P||$[E]===F||m($,E,F,{name:f}),d[t]=F,_}},2621:(e,t,n)=>{"use strict";var r,s,i,o=n(1203),a=n(2769),c=n(262),u=n(5780),l=n(3671),p=n(3508),h=n(8655),m=n(4871),f=h("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(s=l(l(i)))!==Object.prototype&&(r=s):d=!0),!c(r)||o((function(){var e={};return r[f].call(e)!==e}))?r={}:m&&(r=u(r)),a(r[f])||p(r,f,(function(){return this})),e.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:d}},6625:e=>{"use strict";e.exports={}},8130:(e,t,n)=>{"use strict";var r=n(8146);e.exports=function(e){return r(e.length)}},5777:e=>{"use strict";var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var r=+e;return(r>0?n:t)(r)}},4879:(e,t,n)=>{"use strict";var r=n(1139);e.exports=function(e,t){return void 0===e?arguments.length<2?"":t:r(e)}},5780:(e,t,n)=>{"use strict";var r,s=n(7235),i=n(7389),o=n(9683),a=n(5241),c=n(3489),u=n(9619),l=n(4275),p="prototype",h="script",m=l("IE_PROTO"),f=function(){},d=function(e){return"<"+h+">"+e+"</"+h+">"},y=function(e){e.write(d("")),e.close();var t=e.parentWindow.Object;return e=null,t},g=function(){try{r=new ActiveXObject("htmlfile")}catch(e){}var e,t,n;g="undefined"!=typeof document?document.domain&&r?y(r):(t=u("iframe"),n="java"+h+":",t.style.display="none",c.appendChild(t),t.src=String(n),(e=t.contentWindow.document).open(),e.write(d("document.F=Object")),e.close(),e.F):y(r);for(var s=o.length;s--;)delete g[p][o[s]];return g()};a[m]=!0,e.exports=Object.create||function(e,t){var n;return null!==e?(f[p]=s(e),n=new f,f[p]=null,n[m]=e):n=g(),void 0===t?n:i.f(n,t)}},7389:(e,t,n)=>{"use strict";var r=n(5024),s=n(1330),i=n(9989),o=n(7235),a=n(3273),c=n(8364);t.f=r&&!s?Object.defineProperties:function(e,t){o(e);for(var n,r=a(t),s=c(t),u=s.length,l=0;u>l;)i.f(e,n=s[l++],r[n]);return e}},9989:(e,t,n)=>{"use strict";var r=n(5024),s=n(9665),i=n(1330),o=n(7235),a=n(5341),c=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,p="enumerable",h="configurable",m="writable";t.f=r?i?function(e,t,n){if(o(e),t=a(t),o(n),"function"==typeof e&&"prototype"===t&&"value"in n&&m in n&&!n[m]){var r=l(e,t);r&&r[m]&&(e[t]=n.value,n={configurable:h in n?n[h]:r[h],enumerable:p in n?n[p]:r[p],writable:!1})}return u(e,t,n)}:u:function(e,t,n){if(o(e),t=a(t),o(n),s)try{return u(e,t,n)}catch(e){}if("get"in n||"set"in n)throw new c("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},4543:(e,t,n)=>{"use strict";var r=n(5024),s=n(4713),i=n(7161),o=n(480),a=n(3273),c=n(5341),u=n(701),l=n(9665),p=Object.getOwnPropertyDescriptor;t.f=r?p:function(e,t){if(e=a(e),t=c(t),l)try{return p(e,t)}catch(e){}if(u(e,t))return o(!s(i.f,e,t),e[t])}},5116:(e,t,n)=>{"use strict";var r=n(8600),s=n(9683).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,s)}},7313:(e,t)=>{"use strict";t.f=Object.getOwnPropertySymbols},3671:(e,t,n)=>{"use strict";var r=n(701),s=n(2769),i=n(2137),o=n(4275),a=n(2871),c=o("IE_PROTO"),u=Object,l=u.prototype;e.exports=a?u.getPrototypeOf:function(e){var t=i(e);if(r(t,c))return t[c];var n=t.constructor;return s(n)&&t instanceof n?n.prototype:t instanceof u?l:null}},4317:(e,t,n)=>{"use strict";var r=n(6100);e.exports=r({}.isPrototypeOf)},8600:(e,t,n)=>{"use strict";var r=n(6100),s=n(701),i=n(3273),o=n(1005).indexOf,a=n(5241),c=r([].push);e.exports=function(e,t){var n,r=i(e),u=0,l=[];for(n in r)!s(a,n)&&s(r,n)&&c(l,n);for(;t.length>u;)s(r,n=t[u++])&&(~o(l,n)||c(l,n));return l}},8364:(e,t,n)=>{"use strict";var r=n(8600),s=n(9683);e.exports=Object.keys||function(e){return r(e,s)}},7161:(e,t)=>{"use strict";var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor,s=r&&!n.call({1:2},1);t.f=s?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},3491:(e,t,n)=>{"use strict";var r=n(3574),s=n(7235),i=n(1966);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,n={};try{(e=r(Object.prototype,"__proto__","set"))(n,[]),t=n instanceof Array}catch(e){}return function(n,r){return s(n),i(r),t?e(n,r):n.__proto__=r,n}}():void 0)},9559:(e,t,n)=>{"use strict";var r=n(4904),s=n(8407);e.exports=r?{}.toString:function(){return"[object "+s(this)+"]"}},9258:(e,t,n)=>{"use strict";var r=n(4713),s=n(2769),i=n(262),o=TypeError;e.exports=function(e,t){var n,a;if("string"===t&&s(n=e.toString)&&!i(a=r(n,e)))return a;if(s(n=e.valueOf)&&!i(a=r(n,e)))return a;if("string"!==t&&s(n=e.toString)&&!i(a=r(n,e)))return a;throw new o("Can't convert object to primitive value")}},5691:(e,t,n)=>{"use strict";var r=n(1003),s=n(6100),i=n(5116),o=n(7313),a=n(7235),c=s([].concat);e.exports=r("Reflect","ownKeys")||function(e){var t=i.f(a(e)),n=o.f;return n?c(t,n(e)):t}},8099:e=>{"use strict";e.exports={}},5516:(e,t,n)=>{"use strict";var r=n(9989).f;e.exports=function(e,t,n){n in e||r(e,n,{configurable:!0,get:function(){return t[n]},set:function(e){t[n]=e}})}},5426:(e,t,n)=>{"use strict";var r=n(3057),s=TypeError;e.exports=function(e){if(r(e))throw new s("Can't call method on "+e);return e}},1811:(e,t,n)=>{"use strict";var r=n(4904),s=n(9989).f,i=n(3999),o=n(701),a=n(9559),c=n(8655)("toStringTag");e.exports=function(e,t,n,u){var l=n?e:e&&e.prototype;l&&(o(l,c)||s(l,c,{configurable:!0,value:t}),u&&!r&&i(l,"toString",a))}},4275:(e,t,n)=>{"use strict";var r=n(8141),s=n(1268),i=r("keys");e.exports=function(e){return i[e]||(i[e]=s(e))}},3753:(e,t,n)=>{"use strict";var r=n(1063),s=n(7525),i="__core-js_shared__",o=r[i]||s(i,{});e.exports=o},8141:(e,t,n)=>{"use strict";var r=n(4871),s=n(3753);(e.exports=function(e,t){return s[e]||(s[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.35.1",mode:r?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE",source:"https://github.com/zloirock/core-js"})},5571:(e,t,n)=>{"use strict";var r=n(6100),s=n(9903),i=n(1139),o=n(5426),a=r("".charAt),c=r("".charCodeAt),u=r("".slice),l=function(e){return function(t,n){var r,l,p=i(o(t)),h=s(n),m=p.length;return h<0||h>=m?e?"":void 0:(r=c(p,h))<55296||r>56319||h+1===m||(l=c(p,h+1))<56320||l>57343?e?a(p,h):r:e?u(p,h,h+2):l-56320+(r-55296<<10)+65536}};e.exports={codeAt:l(!1),charAt:l(!0)}},4603:(e,t,n)=>{"use strict";var r=n(4432),s=n(1203),i=n(1063).String;e.exports=!!Object.getOwnPropertySymbols&&!s((function(){var e=Symbol("symbol detection");return!i(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41}))},4574:(e,t,n)=>{"use strict";var r=n(9903),s=Math.max,i=Math.min;e.exports=function(e,t){var n=r(e);return n<0?s(n+t,0):i(n,t)}},3273:(e,t,n)=>{"use strict";var r=n(1395),s=n(5426);e.exports=function(e){return r(s(e))}},9903:(e,t,n)=>{"use strict";var r=n(5777);e.exports=function(e){var t=+e;return t!=t||0===t?0:r(t)}},8146:(e,t,n)=>{"use strict";var r=n(9903),s=Math.min;e.exports=function(e){var t=r(e);return t>0?s(t,9007199254740991):0}},2137:(e,t,n)=>{"use strict";var r=n(5426),s=Object;e.exports=function(e){return s(r(e))}},493:(e,t,n)=>{"use strict";var r=n(4713),s=n(262),i=n(6281),o=n(4674),a=n(9258),c=n(8655),u=TypeError,l=c("toPrimitive");e.exports=function(e,t){if(!s(e)||i(e))return e;var n,c=o(e,l);if(c){if(void 0===t&&(t="default"),n=r(c,e,t),!s(n)||i(n))return n;throw new u("Can't convert object to primitive value")}return void 0===t&&(t="number"),a(e,t)}},5341:(e,t,n)=>{"use strict";var r=n(493),s=n(6281);e.exports=function(e){var t=r(e,"string");return s(t)?t:t+""}},4904:(e,t,n)=>{"use strict";var r={};r[n(8655)("toStringTag")]="z",e.exports="[object z]"===String(r)},1139:(e,t,n)=>{"use strict";var r=n(8407),s=String;e.exports=function(e){if("Symbol"===r(e))throw new TypeError("Cannot convert a Symbol value to a string");return s(e)}},459:e=>{"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},1268:(e,t,n)=>{"use strict";var r=n(6100),s=0,i=Math.random(),o=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+o(++s+i,36)}},7460:(e,t,n)=>{"use strict";var r=n(4603);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},1330:(e,t,n)=>{"use strict";var r=n(5024),s=n(1203);e.exports=r&&s((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},1314:(e,t,n)=>{"use strict";var r=n(1063),s=n(2769),i=r.WeakMap;e.exports=s(i)&&/native code/.test(String(i))},8655:(e,t,n)=>{"use strict";var r=n(1063),s=n(8141),i=n(701),o=n(1268),a=n(4603),c=n(7460),u=r.Symbol,l=s("wks"),p=c?u.for||u:u&&u.withoutSetter||o;e.exports=function(e){return i(l,e)||(l[e]=a&&i(u,e)?u[e]:p("Symbol."+e)),l[e]}},6453:(e,t,n)=>{"use strict";var r=n(1003),s=n(701),i=n(3999),o=n(4317),a=n(3491),c=n(7464),u=n(5516),l=n(3507),p=n(4879),h=n(8148),m=n(4279),f=n(5024),d=n(4871);e.exports=function(e,t,n,y){var g="stackTraceLimit",v=y?2:1,b=e.split("."),w=b[b.length-1],E=r.apply(null,b);if(E){var x=E.prototype;if(!d&&s(x,"cause")&&delete x.cause,!n)return E;var j=r("Error"),O=t((function(e,t){var n=p(y?t:e,void 0),r=y?new E(e):new E;return void 0!==n&&i(r,"message",n),m(r,O,r.stack,2),this&&o(x,this)&&l(r,this,O),arguments.length>v&&h(r,arguments[v]),r}));if(O.prototype=x,"Error"!==w?a?a(O,j):c(O,j,{name:!0}):f&&g in E&&(u(O,E,g),u(O,E,"prepareStackTrace")),c(O,E),!d)try{x.name!==w&&i(x,"name",w),x.constructor=O}catch(e){}return O}}},6138:(e,t,n)=>{"use strict";var r=n(9098),s=n(1003),i=n(7013),o=n(1203),a=n(6453),c="AggregateError",u=s(c),l=!o((function(){return 1!==u([1]).errors[0]}))&&o((function(){return 7!==u([1],c,{cause:7}).cause}));r({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:a(c,(function(e){return function(t,n){return i(e,this,arguments)}}),l,!0)})},3085:(e,t,n)=>{"use strict";var r=n(9098),s=n(4317),i=n(3671),o=n(3491),a=n(7464),c=n(5780),u=n(3999),l=n(480),p=n(8148),h=n(4279),m=n(208),f=n(4879),d=n(8655)("toStringTag"),y=Error,g=[].push,v=function(e,t){var n,r=s(b,this);o?n=o(new y,r?i(this):b):(n=r?this:c(b),u(n,d,"Error")),void 0!==t&&u(n,"message",f(t)),h(n,v,n.stack,1),arguments.length>2&&p(n,arguments[2]);var a=[];return m(e,g,{that:a}),u(n,"errors",a),n};o?o(v,y):a(v,y,{name:!0});var b=v.prototype=c(y.prototype,{constructor:l(1,v),message:l(1,""),name:l(1,"AggregateError")});r({global:!0,constructor:!0,arity:2},{AggregateError:v})},5695:(e,t,n)=>{"use strict";n(3085)},7447:(e,t,n)=>{"use strict";var r=n(3273),s=n(8137),i=n(6625),o=n(8417),a=n(9989).f,c=n(164),u=n(877),l=n(4871),p=n(5024),h="Array Iterator",m=o.set,f=o.getterFor(h);e.exports=c(Array,"Array",(function(e,t){m(this,{type:h,target:r(e),index:0,kind:t})}),(function(){var e=f(this),t=e.target,n=e.index++;if(!t||n>=t.length)return e.target=void 0,u(void 0,!0);switch(e.kind){case"keys":return u(n,!1);case"values":return u(t[n],!1)}return u([n,t[n]],!1)}),"values");var d=i.Arguments=i.Array;if(s("keys"),s("values"),s("entries"),!l&&p&&"values"!==d.name)try{a(d,"name",{value:"values"})}catch(e){}},484:(e,t,n)=>{"use strict";var r=n(9098),s=n(1063),i=n(7013),o=n(6453),a="WebAssembly",c=s[a],u=7!==new Error("e",{cause:7}).cause,l=function(e,t){var n={};n[e]=o(e,t,u),r({global:!0,constructor:!0,arity:1,forced:u},n)},p=function(e,t){if(c&&c[e]){var n={};n[e]=o(a+"."+e,t,u),r({target:a,stat:!0,constructor:!0,arity:1,forced:u},n)}};l("Error",(function(e){return function(t){return i(e,this,arguments)}})),l("EvalError",(function(e){return function(t){return i(e,this,arguments)}})),l("RangeError",(function(e){return function(t){return i(e,this,arguments)}})),l("ReferenceError",(function(e){return function(t){return i(e,this,arguments)}})),l("SyntaxError",(function(e){return function(t){return i(e,this,arguments)}})),l("TypeError",(function(e){return function(t){return i(e,this,arguments)}})),l("URIError",(function(e){return function(t){return i(e,this,arguments)}})),p("CompileError",(function(e){return function(t){return i(e,this,arguments)}})),p("LinkError",(function(e){return function(t){return i(e,this,arguments)}})),p("RuntimeError",(function(e){return function(t){return i(e,this,arguments)}}))},3832:(e,t,n)=>{"use strict";var r=n(5571).charAt,s=n(1139),i=n(8417),o=n(164),a=n(877),c="String Iterator",u=i.set,l=i.getterFor(c);o(String,"String",(function(e){u(this,{type:c,string:s(e),index:0})}),(function(){var e,t=l(this),n=t.string,s=t.index;return s>=n.length?a(void 0,!0):(e=r(n,s),t.index+=e.length,a(e,!1))}))},5442:(e,t,n)=>{"use strict";n(5695)},85:(e,t,n)=>{"use strict";n(7447);var r=n(1100),s=n(1063),i=n(1811),o=n(6625);for(var a in r)i(s[a],a),o[a]=o.Array},239:(e,t,n)=>{"use strict";n(5442);var r=n(6656);n(85),e.exports=r}},t={};function n(r){var s=t[r];if(void 0!==s)return s.exports;var i=t[r]={id:r,loaded:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.loaded=!0,i.exports}n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nmd=e=>(e.paths=[],e.children||(e.children=[]),e);var r={};return(()=>{"use strict";n.r(r),n.d(r,{AlternatingVisitor:()=>yc,ContactElement:()=>Gs,DefinitionsElement:()=>ji,ExampleElement:()=>ai,ExternalDocumentationElement:()=>ri,FallbackVisitor:()=>mo,FixedFieldsVisitor:()=>Bo,HeaderElement:()=>fi,HeadersElement:()=>mi,InfoElement:()=>Js,ItemsElement:()=>ii,JSONReferenceElement:()=>kn,LicenseElement:()=>Xs,MapVisitor:()=>Ec,MixedFieldsVisitor:()=>mc,OpenAPIMediaTypes:()=>Ns,OperationConsumesElement:()=>Ni,OperationElement:()=>ti,OperationParametersElement:()=>Vi,OperationProducesElement:()=>Bi,OperationSchemesElement:()=>zi,OperationSecurityElement:()=>Ui,OperationTagsElement:()=>Ki,ParameterElement:()=>si,ParametersDefinitionsElement:()=>Si,PathItemElement:()=>Qs,PathItemParametersElement:()=>Wi,PathsElement:()=>Ys,PatternedFieldsVisitor:()=>ua,ReferenceElement:()=>Ei,ResponseElement:()=>pi,ResponsesDefinitionsElement:()=>Ai,ResponsesElement:()=>ui,SchemaElement:()=>gi,ScopesElement:()=>$i,SecurityDefinitionsElement:()=>ki,SecurityRequirementElement:()=>Fi,SecuritySchemeElement:()=>Ii,SpecificationVisitor:()=>Fo,SwaggerConsumesElement:()=>eo,SwaggerElement:()=>Ls,SwaggerProducesElement:()=>no,SwaggerSchemesElement:()=>Zi,SwaggerSecurityElement:()=>so,SwaggerTagsElement:()=>oo,SwaggerVersionElement:()=>Hs,TagElement:()=>yi,Visitor:()=>ho,XmlElement:()=>bi,createRefractor:()=>lu,default:()=>Di,getNodeType:()=>ao,isArrayElement:()=>ue,isBooleanElement:()=>ae,isContactElement:()=>fa,isDefinitionsElement:()=>Ta,isElement:()=>re,isExampleElement:()=>Oa,isExternalDocumentationElement:()=>va,isHeaderElement:()=>Sa,isHeadersElement:()=>ja,isInfoElement:()=>ha,isItemsElement:()=>wa,isJSONReferenceElement:()=>Fn,isJSONReferenceLikeElement:()=>Nn,isLicenseElement:()=>ma,isLinkPrimitiveElement:()=>pe,isMemberElement:()=>le,isNullElement:()=>oe,isNumberElement:()=>ie,isObjectElement:()=>ce,isOperationElement:()=>ga,isParameterElement:()=>ba,isParametersDefinitionsElement:()=>$a,isPathItemElement:()=>ya,isPathsElement:()=>da,isRefElement:()=>he,isReferenceElement:()=>Aa,isReferenceLikeElement:()=>Lo,isResponseElement:()=>xa,isResponsesDefinitionsElement:()=>Ma,isResponsesElement:()=>Ea,isSchemaElement:()=>_a,isScopesElement:()=>Fa,isSecurityDefinitionsElement:()=>Ia,isSecurityRequirementElement:()=>Da,isSecuritySchemeElement:()=>Ra,isStringElement:()=>se,isSwaggerElement:()=>la,isSwaggerExtension:()=>Vo,isSwaggerVersionElement:()=>pa,isTagElement:()=>Pa,isXmlElement:()=>ka,keyMap:()=>co,mediaTypes:()=>qs,refract:()=>pu,refractorPluginReplaceEmptyElement:()=>po,specificationObj:()=>au});var e={};n.r(e),n.d(e,{hasElementSourceMap:()=>ve,includesClasses:()=>we,includesSymbols:()=>be,isAnnotationElement:()=>me,isArrayElement:()=>ue,isBooleanElement:()=>ae,isCommentElement:()=>fe,isElement:()=>re,isLinkElement:()=>pe,isMemberElement:()=>le,isNullElement:()=>oe,isNumberElement:()=>ie,isObjectElement:()=>ce,isParseResultElement:()=>de,isPrimitiveElement:()=>ge,isRefElement:()=>he,isSourceMapElement:()=>ye,isStringElement:()=>se});var t={};n.r(t),n.d(t,{isJSONReferenceElement:()=>Fn,isJSONSchemaElement:()=>Rn,isLinkDescriptionElement:()=>Cn,isMediaElement:()=>Dn});var s={};n.r(s),n.d(s,{isReferenceLikeElement:()=>Lo,isSwaggerExtension:()=>Vo});var i={};n.r(i),n.d(i,{isContactElement:()=>fa,isDefinitionsElement:()=>Ta,isExampleElement:()=>Oa,isExternalDocumentationElement:()=>va,isHeaderElement:()=>Sa,isHeadersElement:()=>ja,isInfoElement:()=>ha,isItemsElement:()=>wa,isLicenseElement:()=>ma,isOperationElement:()=>ga,isParameterElement:()=>ba,isParametersDefinitionsElement:()=>$a,isPathItemElement:()=>ya,isPathsElement:()=>da,isReferenceElement:()=>Aa,isResponseElement:()=>xa,isResponsesDefinitionsElement:()=>Ma,isResponsesElement:()=>Ea,isSchemaElement:()=>_a,isScopesElement:()=>Fa,isSecurityDefinitionsElement:()=>Ia,isSecurityRequirementElement:()=>Da,isSecuritySchemeElement:()=>Ra,isSwaggerElement:()=>la,isSwaggerVersionElement:()=>pa,isTagElement:()=>Pa,isXmlElement:()=>ka});var o=n(8326);function a(e){return null!=e&&"object"==typeof e&&!0===e["@@functional/placeholder"]}function c(e){return function t(n){return 0===arguments.length||a(n)?t:e.apply(this,arguments)}}function u(e){return function t(n,r){switch(arguments.length){case 0:return t;case 1:return a(n)?t:c((function(t){return e(n,t)}));default:return a(n)&&a(r)?t:a(n)?c((function(t){return e(t,r)})):a(r)?c((function(t){return e(n,t)})):e(n,r)}}}const l=Array.isArray||function(e){return null!=e&&e.length>=0&&"[object Array]"===Object.prototype.toString.call(e)};function p(e,t,n){return function(){if(0===arguments.length)return n();var r=arguments[arguments.length-1];if(!l(r)){for(var s=0;s<e.length;){if("function"==typeof r[e[s]])return r[e[s]].apply(r,Array.prototype.slice.call(arguments,0,-1));s+=1}if(function(e){return null!=e&&"function"==typeof e["@@transducer/step"]}(r))return t.apply(null,Array.prototype.slice.call(arguments,0,-1))(r)}return n.apply(this,arguments)}}function h(e){return e&&e["@@transducer/reduced"]?e:{"@@transducer/value":e,"@@transducer/reduced":!0}}const m=function(){return this.xf["@@transducer/init"]()},f=function(e){return this.xf["@@transducer/result"](e)};var d=function(){function e(e,t){this.xf=t,this.f=e,this.all=!0}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=function(e){return this.all&&(e=this.xf["@@transducer/step"](e,!0)),this.xf["@@transducer/result"](e)},e.prototype["@@transducer/step"]=function(e,t){return this.f(t)||(this.all=!1,e=h(this.xf["@@transducer/step"](e,!1))),e},e}();function y(e){return function(t){return new d(e,t)}}const g=u(p(["all"],y,(function(e,t){for(var n=0;n<t.length;){if(!e(t[n]))return!1;n+=1}return!0})));function v(e,t){switch(e){case 0:return function(){return t.apply(this,arguments)};case 1:return function(e){return t.apply(this,arguments)};case 2:return function(e,n){return t.apply(this,arguments)};case 3:return function(e,n,r){return t.apply(this,arguments)};case 4:return function(e,n,r,s){return t.apply(this,arguments)};case 5:return function(e,n,r,s,i){return t.apply(this,arguments)};case 6:return function(e,n,r,s,i,o){return t.apply(this,arguments)};case 7:return function(e,n,r,s,i,o,a){return t.apply(this,arguments)};case 8:return function(e,n,r,s,i,o,a,c){return t.apply(this,arguments)};case 9:return function(e,n,r,s,i,o,a,c,u){return t.apply(this,arguments)};case 10:return function(e,n,r,s,i,o,a,c,u,l){return t.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function b(e,t,n){return function(){for(var r=[],s=0,i=e,o=0,c=!1;o<t.length||s<arguments.length;){var u;o<t.length&&(!a(t[o])||s>=arguments.length)?u=t[o]:(u=arguments[s],s+=1),r[o]=u,a(u)?c=!0:i-=1,o+=1}return!c&&i<=0?n.apply(this,r):v(Math.max(0,i),b(e,r,n))}}const w=u((function(e,t){return 1===e?c(t):v(e,b(e,[],t))}));const E=c((function(e){return w(e.length,(function(t,n){var r=Array.prototype.slice.call(arguments,0);return r[0]=n,r[1]=t,e.apply(this,r)}))}));function x(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}function j(e,t,n){for(var r=0,s=n.length;r<s;){if(e(t,n[r]))return!0;r+=1}return!1}function O(e,t){return Object.prototype.hasOwnProperty.call(t,e)}const S="function"==typeof Object.is?Object.is:function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t};var P=Object.prototype.toString;const A=function(){return"[object Arguments]"===P.call(arguments)?function(e){return"[object Arguments]"===P.call(e)}:function(e){return O("callee",e)}}();var _=!{toString:null}.propertyIsEnumerable("toString"),k=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],M=function(){return arguments.propertyIsEnumerable("length")}(),I=function(e,t){for(var n=0;n<e.length;){if(e[n]===t)return!0;n+=1}return!1},T="function"!=typeof Object.keys||M?c((function(e){if(Object(e)!==e)return[];var t,n,r=[],s=M&&A(e);for(t in e)!O(t,e)||s&&"length"===t||(r[r.length]=t);if(_)for(n=k.length-1;n>=0;)O(t=k[n],e)&&!I(r,t)&&(r[r.length]=t),n-=1;return r})):c((function(e){return Object(e)!==e?[]:Object.keys(e)}));const $=T;const R=c((function(e){return null===e?"Null":void 0===e?"Undefined":Object.prototype.toString.call(e).slice(8,-1)}));function F(e,t,n,r){var s=x(e);function i(e,t){return D(e,t,n.slice(),r.slice())}return!j((function(e,t){return!j(i,t,e)}),x(t),s)}function D(e,t,n,r){if(S(e,t))return!0;var s,i,o=R(e);if(o!==R(t))return!1;if("function"==typeof e["fantasy-land/equals"]||"function"==typeof t["fantasy-land/equals"])return"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t)&&"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e);if("function"==typeof e.equals||"function"==typeof t.equals)return"function"==typeof e.equals&&e.equals(t)&&"function"==typeof t.equals&&t.equals(e);switch(o){case"Arguments":case"Array":case"Object":if("function"==typeof e.constructor&&"Promise"===(s=e.constructor,null==(i=String(s).match(/^function (\w*)/))?"":i[1]))return e===t;break;case"Boolean":case"Number":case"String":if(typeof e!=typeof t||!S(e.valueOf(),t.valueOf()))return!1;break;case"Date":if(!S(e.valueOf(),t.valueOf()))return!1;break;case"Error":return e.name===t.name&&e.message===t.message;case"RegExp":if(e.source!==t.source||e.global!==t.global||e.ignoreCase!==t.ignoreCase||e.multiline!==t.multiline||e.sticky!==t.sticky||e.unicode!==t.unicode)return!1}for(var a=n.length-1;a>=0;){if(n[a]===e)return r[a]===t;a-=1}switch(o){case"Map":return e.size===t.size&&F(e.entries(),t.entries(),n.concat([e]),r.concat([t]));case"Set":return e.size===t.size&&F(e.values(),t.values(),n.concat([e]),r.concat([t]));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 c=$(e);if(c.length!==$(t).length)return!1;var u=n.concat([e]),l=r.concat([t]);for(a=c.length-1;a>=0;){var p=c[a];if(!O(p,t)||!D(t[p],e[p],u,l))return!1;a-=1}return!0}const C=u((function(e,t){return D(e,t,[],[])}));function N(e,t){return function(e,t,n){var r,s;if("function"==typeof e.indexOf)switch(typeof t){case"number":if(0===t){for(r=1/t;n<e.length;){if(0===(s=e[n])&&1/s===r)return n;n+=1}return-1}if(t!=t){for(;n<e.length;){if("number"==typeof(s=e[n])&&s!=s)return n;n+=1}return-1}return e.indexOf(t,n);case"string":case"boolean":case"function":case"undefined":return e.indexOf(t,n);case"object":if(null===t)return e.indexOf(t,n)}for(;n<e.length;){if(C(e[n],t))return n;n+=1}return-1}(t,e,0)>=0}const q=E(u(N));class V extends o.Om{constructor(e,t,n){super(e,t,n),this.element="annotation"}get code(){return this.attributes.get("code")}set code(e){this.attributes.set("code",e)}}const L=V;class B extends o.Om{constructor(e,t,n){super(e,t,n),this.element="comment"}}const H=B;const z=c((function(e){return function(){return e}}));const J=z(void 0);const U=C(J());class G extends o.wE{constructor(e,t,n){super(e,t,n),this.element="parseResult"}get api(){return this.children.filter((e=>e.classes.contains("api"))).first}get results(){return this.children.filter((e=>e.classes.contains("result")))}get result(){return this.results.first}get annotations(){return this.children.filter((e=>"annotation"===e.element))}get warnings(){return this.children.filter((e=>"annotation"===e.element&&e.classes.contains("warning")))}get errors(){return this.children.filter((e=>"annotation"===e.element&&e.classes.contains("error")))}get isEmpty(){return this.children.reject((e=>"annotation"===e.element)).isEmpty}replaceResult(e){const{result:t}=this;if(U(t))return!1;const n=this.content.findIndex((e=>e===t));return-1!==n&&(this.content[n]=e,!0)}}const K=G;class X extends o.wE{constructor(e,t,n){super(e,t,n),this.element="sourceMap"}get positionStart(){return this.children.filter((e=>e.classes.contains("position"))).get(0)}get positionEnd(){return this.children.filter((e=>e.classes.contains("position"))).get(1)}set position(e){if(void 0===e)return;const t=new o.wE([e.start.row,e.start.column,e.start.char]),n=new o.wE([e.end.row,e.end.column,e.end.char]);t.classes.push("position"),n.classes.push("position"),this.push(t).push(n)}}const W=X,Y=(e,t)=>"object"==typeof t&&null!==t&&e in t&&"function"==typeof t[e],Z=e=>"object"==typeof e&&null!=e&&"_storedElement"in e&&"string"==typeof e._storedElement&&"_content"in e,Q=(e,t)=>"object"==typeof t&&null!==t&&"primitive"in t&&("function"==typeof t.primitive&&t.primitive()===e),ee=(e,t)=>"object"==typeof t&&null!==t&&"classes"in t&&(Array.isArray(t.classes)||t.classes instanceof o.wE)&&t.classes.includes(e),te=(e,t)=>"object"==typeof t&&null!==t&&"element"in t&&t.element===e,ne=e=>e({hasMethod:Y,hasBasicElementProps:Z,primitiveEq:Q,isElementType:te,hasClass:ee}),re=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.Hg||e(n)&&t(void 0,n))),se=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.Om||e(n)&&t("string",n))),ie=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.kT||e(n)&&t("number",n))),oe=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.Os||e(n)&&t("null",n))),ae=ne((({hasBasicElementProps:e,primitiveEq:t})=>n=>n instanceof o.bd||e(n)&&t("boolean",n))),ce=ne((({hasBasicElementProps:e,primitiveEq:t,hasMethod:n})=>r=>r instanceof o.Sh||e(r)&&t("object",r)&&n("keys",r)&&n("values",r)&&n("items",r))),ue=ne((({hasBasicElementProps:e,primitiveEq:t,hasMethod:n})=>r=>r instanceof o.wE&&!(r instanceof o.Sh)||e(r)&&t("array",r)&&n("push",r)&&n("unshift",r)&&n("map",r)&&n("reduce",r))),le=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof o.Pr||e(r)&&t("member",r)&&n(void 0,r))),pe=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof o.Ft||e(r)&&t("link",r)&&n(void 0,r))),he=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof o.sI||e(r)&&t("ref",r)&&n(void 0,r))),me=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof L||e(r)&&t("annotation",r)&&n("array",r))),fe=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof H||e(r)&&t("comment",r)&&n("string",r))),de=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof K||e(r)&&t("parseResult",r)&&n("array",r))),ye=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof W||e(r)&&t("sourceMap",r)&&n("array",r))),ge=e=>te("object",e)||te("array",e)||te("boolean",e)||te("number",e)||te("string",e)||te("null",e)||te("member",e),ve=e=>ye(e.meta.get("sourceMap")),be=(e,t)=>{if(0===e.length)return!0;const n=t.attributes.get("symbols");return!!ue(n)&&g(q(n.toValue()),e)},we=(e,t)=>0===e.length||g(q(t.classes.toValue()),e);function Ee(e){return function t(n,r,s){switch(arguments.length){case 0:return t;case 1:return a(n)?t:u((function(t,r){return e(n,t,r)}));case 2:return a(n)&&a(r)?t:a(n)?u((function(t,n){return e(t,r,n)})):a(r)?u((function(t,r){return e(n,t,r)})):c((function(t){return e(n,r,t)}));default:return a(n)&&a(r)&&a(s)?t:a(n)&&a(r)?u((function(t,n){return e(t,n,s)})):a(n)&&a(s)?u((function(t,n){return e(t,r,n)})):a(r)&&a(s)?u((function(t,r){return e(n,t,r)})):a(n)?c((function(t){return e(t,r,s)})):a(r)?c((function(t){return e(n,t,s)})):a(s)?c((function(t){return e(n,r,t)})):e(n,r,s)}}}function xe(e){return"[object Object]"===Object.prototype.toString.call(e)}const je=Ee((function(e,t,n){var r,s={};for(r in n=n||{},t=t||{})O(r,t)&&(s[r]=O(r,n)?e(r,t[r],n[r]):t[r]);for(r in n)O(r,n)&&!O(r,s)&&(s[r]=n[r]);return s}));const Oe=Ee((function e(t,n,r){return je((function(n,r,s){return xe(r)&&xe(s)?e(t,r,s):t(n,r,s)}),n,r)}));const Se=u((function(e,t){return Oe((function(e,t,n){return n}),e,t)}));const Pe=u((function(e,t){return null==t||t!=t?e:t})),Ae=Number.isInteger||function(e){return e<<0===e};function _e(e){return"[object String]"===Object.prototype.toString.call(e)}const ke=u((function(e,t){var n=e<0?t.length+e:e;return _e(t)?t.charAt(n):t[n]}));const Me=u((function(e,t){if(null!=t)return Ae(e)?ke(e,t):t[e]}));const Ie=Ee((function(e,t,n){return Pe(e,Me(t,n))}));const Te=u((function(e,t){return e.map((function(e){for(var n,r=t,s=0;s<e.length;){if(null==r)return;n=e[s],r=Ae(n)?ke(n,r):r[n],s+=1}return r}))}));const $e=u((function(e,t){return Te([e],t)[0]}));function Re(e,t){return function(){var n=arguments.length;if(0===n)return t();var r=arguments[n-1];return l(r)||"function"!=typeof r[e]?t.apply(this,arguments):r[e].apply(r,Array.prototype.slice.call(arguments,0,n-1))}}const Fe=Ee(Re("slice",(function(e,t,n){return Array.prototype.slice.call(n,e,t)})));const De=Fe(0,-1);const Ce=u((function(e,t){return v(e.length,(function(){return e.apply(t,arguments)}))}));const Ne=u((function(e,t){return e.apply(this,t)}));function qe(e,t,n){for(var r=0,s=n.length;r<s;)t=e(t,n[r]),r+=1;return t}const Ve=c((function(e){return!!l(e)||!!e&&("object"==typeof e&&(!_e(e)&&(0===e.length||e.length>0&&(e.hasOwnProperty(0)&&e.hasOwnProperty(e.length-1)))))}));var Le="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Be(e,t,n){return function(r,s,i){if(Ve(i))return e(r,s,i);if(null==i)return s;if("function"==typeof i["fantasy-land/reduce"])return t(r,s,i,"fantasy-land/reduce");if(null!=i[Le])return n(r,s,i[Le]());if("function"==typeof i.next)return n(r,s,i);if("function"==typeof i.reduce)return t(r,s,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function He(e,t,n){for(var r=n.next();!r.done;)t=e(t,r.value),r=n.next();return t}function ze(e,t,n,r){return n[r](e,t)}const Je=Be(qe,ze,He);function Ue(e,t){for(var n=0,r=t.length,s=Array(r);n<r;)s[n]=e(t[n]),n+=1;return s}var Ge=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){return this.xf["@@transducer/step"](e,this.f(t))},e}();const Ke=u(p(["fantasy-land/map","map"],(function(e){return function(t){return new Ge(e,t)}}),(function(e,t){switch(Object.prototype.toString.call(t)){case"[object Function]":return w(t.length,(function(){return e.call(this,t.apply(this,arguments))}));case"[object Object]":return qe((function(n,r){return n[r]=e(t[r]),n}),{},$(t));default:return Ue(e,t)}})));const Xe=u((function(e,t){return"function"==typeof t["fantasy-land/ap"]?t["fantasy-land/ap"](e):"function"==typeof e.ap?e.ap(t):"function"==typeof e?function(n){return e(n)(t(n))}:Je((function(e,n){return function(e,t){var n;t=t||[];var r=(e=e||[]).length,s=t.length,i=[];for(n=0;n<r;)i[i.length]=e[n],n+=1;for(n=0;n<s;)i[i.length]=t[n],n+=1;return i}(e,Ke(n,t))}),[],e)}));const We=u((function(e,t){var n=w(e,t);return w(e,(function(){return qe(Xe,Ke(n,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const Ye=c((function(e){return We(e.length,e)}));const Ze=Ye(c((function(e){return!e})));function Qe(e){return'"'+e.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 et=function(e){return(e<10?"0":"")+e};const tt="function"==typeof Date.prototype.toISOString?function(e){return e.toISOString()}:function(e){return e.getUTCFullYear()+"-"+et(e.getUTCMonth()+1)+"-"+et(e.getUTCDate())+"T"+et(e.getUTCHours())+":"+et(e.getUTCMinutes())+":"+et(e.getUTCSeconds())+"."+(e.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};var nt=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){return this.f(t)?this.xf["@@transducer/step"](e,t):e},e}();function rt(e){return function(t){return new nt(e,t)}}const st=u(p(["fantasy-land/filter","filter"],rt,(function(e,t){return xe(t)?qe((function(n,r){return e(t[r])&&(n[r]=t[r]),n}),{},$(t)):function(e,t){for(var n=0,r=t.length,s=[];n<r;)e(t[n])&&(s[s.length]=t[n]),n+=1;return s}(e,t)})));const it=u((function(e,t){return st((n=e,function(){return!n.apply(this,arguments)}),t);var n}));function ot(e,t){var n=function(n){var r=t.concat([e]);return N(n,r)?"<Circular>":ot(n,r)},r=function(e,t){return Ue((function(t){return Qe(t)+": "+n(e[t])}),t.slice().sort())};switch(Object.prototype.toString.call(e)){case"[object Arguments]":return"(function() { return arguments; }("+Ue(n,e).join(", ")+"))";case"[object Array]":return"["+Ue(n,e).concat(r(e,it((function(e){return/^\d+$/.test(e)}),$(e)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof e?"new Boolean("+n(e.valueOf())+")":e.toString();case"[object Date]":return"new Date("+(isNaN(e.valueOf())?n(NaN):Qe(tt(e)))+")";case"[object Map]":return"new Map("+n(Array.from(e))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof e?"new Number("+n(e.valueOf())+")":1/e==-1/0?"-0":e.toString(10);case"[object Set]":return"new Set("+n(Array.from(e).sort())+")";case"[object String]":return"object"==typeof e?"new String("+n(e.valueOf())+")":Qe(e);case"[object Undefined]":return"undefined";default:if("function"==typeof e.toString){var s=e.toString();if("[object Object]"!==s)return s}return"{"+r(e,$(e)).join(", ")+"}"}}const at=c((function(e){return ot(e,[])}));const ct=u((function(e,t){if(e===t)return t;function n(e,t){if(e>t!=t>e)return t>e?t:e}var r=n(e,t);if(void 0!==r)return r;var s=n(typeof e,typeof t);if(void 0!==s)return s===typeof e?e:t;var i=at(e),o=n(i,at(t));return void 0!==o&&o===i?e:t}));const ut=u((function(e,t){return Ke(Me(e),t)}));function lt(e,t,n){for(var r=0,s=n.length;r<s;){if((t=e["@@transducer/step"](t,n[r]))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}r+=1}return e["@@transducer/result"](t)}function pt(e,t,n){for(var r=n.next();!r.done;){if((t=e["@@transducer/step"](t,r.value))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}r=n.next()}return e["@@transducer/result"](t)}function ht(e,t,n,r){return e["@@transducer/result"](n[r](Ce(e["@@transducer/step"],e),t))}const mt=Be(lt,ht,pt);var ft=function(){function e(e){this.f=e}return e.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},e.prototype["@@transducer/result"]=function(e){return e},e.prototype["@@transducer/step"]=function(e,t){return this.f(e,t)},e}();const dt=Ee((function(e,t,n){return mt("function"==typeof e?new ft(e):e,t,n)}));const yt=c((function(e){return w(dt(ct,0,ut("length",e)),(function(){for(var t=0,n=e.length;t<n;){if(e[t].apply(this,arguments))return!0;t+=1}return!1}))}));function gt(e,t){return function(){return t.call(this,e.apply(this,arguments))}}const vt=c(Re("tail",Fe(1,1/0)));function bt(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return v(arguments[0].length,dt(gt,arguments[0],vt(arguments)))}var wt=function(e,t){switch(arguments.length){case 0:return wt;case 1:return function t(n){return 0===arguments.length?t:S(e,n)};default:return S(e,t)}};const Et=wt;const xt=w(1,bt(R,Et("GeneratorFunction")));const jt=w(1,bt(R,Et("AsyncFunction")));const Ot=yt([bt(R,Et("Function")),xt,jt]);const St=Ze(Ot);function Pt(e){var t=Object.prototype.toString.call(e);return"[object Function]"===t||"[object AsyncFunction]"===t||"[object GeneratorFunction]"===t||"[object AsyncGeneratorFunction]"===t}const At=u((function(e,t){return e&&t}));const _t=u((function(e,t){return Pt(e)?function(){return e.apply(this,arguments)&&t.apply(this,arguments)}:Ye(At)(e,t)}));var kt=c((function(e){return null!=e&&"function"==typeof e["fantasy-land/empty"]?e["fantasy-land/empty"]():null!=e&&null!=e.constructor&&"function"==typeof e.constructor["fantasy-land/empty"]?e.constructor["fantasy-land/empty"]():null!=e&&"function"==typeof e.empty?e.empty():null!=e&&null!=e.constructor&&"function"==typeof e.constructor.empty?e.constructor.empty():l(e)?[]:_e(e)?"":xe(e)?{}:A(e)?function(){return arguments}():function(e){var t=Object.prototype.toString.call(e);return"[object Uint8ClampedArray]"===t||"[object Int8Array]"===t||"[object Uint8Array]"===t||"[object Int16Array]"===t||"[object Uint16Array]"===t||"[object Int32Array]"===t||"[object Uint32Array]"===t||"[object Float32Array]"===t||"[object Float64Array]"===t||"[object BigInt64Array]"===t||"[object BigUint64Array]"===t}(e)?e.constructor.from(""):void 0}));const Mt=kt;const It=c((function(e){return null!=e&&C(e,Mt(e))}));const Tt=w(1,Ot(Array.isArray)?Array.isArray:bt(R,Et("Array")));const $t=_t(Tt,It);const Rt=w(3,(function(e,t,n){var r=$e(e,n),s=$e(De(e),n);if(!St(r)&&!$t(e)){var i=Ce(r,s);return Ne(i,t)}}));const Ft=Ee((function(e,t,n){return e($e(t,n))}));const Dt=C(null);const Ct=Ze(Dt);function Nt(e){return Nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Nt(e)}const qt=function(e){return"object"===Nt(e)};const Vt=w(1,_t(Ct,qt));var Lt=bt(R,Et("Object")),Bt=bt(at,C(at(Object))),Ht=Ft(_t(Ot,Bt),["constructor"]);const zt=w(1,(function(e){if(!Vt(e)||!Lt(e))return!1;var t=Object.getPrototypeOf(e);return!!Dt(t)||Ht(t)}));class Jt extends o.g${constructor(){super(),this.register("annotation",L),this.register("comment",H),this.register("parseResult",K),this.register("sourceMap",W)}}const Ut=new Jt,Gt=e=>{const t=new Jt;return zt(e)&&t.use(e),t},Kt=Ut,Xt=()=>({predicates:{...e},namespace:Kt});const Wt=w(1,bt(R,Et("String")));var Yt=n(1212);const Zt=class extends Yt{constructor(e,t,n){if(super(e,t,n),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,null!=n&&"object"==typeof n&&Object.hasOwn(n,"cause")&&!("cause"in this)){const{cause:e}=n;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}}};class Qt extends Error{static[Symbol.hasInstance](e){return super[Symbol.hasInstance](e)||Function.prototype[Symbol.hasInstance].call(Zt,e)}constructor(e,t){if(super(e,t),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,null!=t&&"object"==typeof t&&Object.hasOwn(t,"cause")&&!("cause"in this)){const{cause:e}=t;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}}}const en=Qt;const tn=class extends en{constructor(e,t){if(super(e,t),null!=t&&"object"==typeof t){const{cause:e,...n}=t;Object.assign(this,n)}}},nn=(e,t,n)=>{const r=e[t];if(null!=r){if(!n&&"function"==typeof r)return r;const e=n?r.leave:r.enter;if("function"==typeof e)return e}else{const r=n?e.leave:e.enter;if(null!=r){if("function"==typeof r)return r;const e=r[t];if("function"==typeof e)return e}}return null},rn={},sn=e=>null==e?void 0:e.type,on=e=>"string"==typeof sn(e),an=e=>Object.create(Object.getPrototypeOf(e),Object.getOwnPropertyDescriptors(e)),cn=(e,{visitFnGetter:t=nn,nodeTypeGetter:n=sn,breakSymbol:r=rn,deleteNodeSymbol:s=null,skipVisitingNodeSymbol:i=!1,exposeEdits:o=!1}={})=>{const a=Symbol("skip"),c=new Array(e.length).fill(a);return{enter(u,...l){let p=u,h=!1;for(let m=0;m<e.length;m+=1)if(c[m]===a){const a=t(e[m],n(p),!1);if("function"==typeof a){const t=a.call(e[m],p,...l);if(t===i)c[m]=u;else if(t===r)c[m]=r;else{if(t===s)return t;if(void 0!==t){if(!o)return t;p=t,h=!0}}}}return h?p:void 0},leave(s,...o){for(let u=0;u<e.length;u+=1)if(c[u]===a){const a=t(e[u],n(s),!0);if("function"==typeof a){const t=a.call(e[u],s,...o);if(t===r)c[u]=r;else if(void 0!==t&&t!==i)return t}}else c[u]===s&&(c[u]=a)}}};cn[Symbol.for("nodejs.util.promisify.custom")]=(e,{visitFnGetter:t=nn,nodeTypeGetter:n=sn,breakSymbol:r=rn,deleteNodeSymbol:s=null,skipVisitingNodeSymbol:i=!1,exposeEdits:o=!1}={})=>{const a=Symbol("skip"),c=new Array(e.length).fill(a);return{async enter(u,...l){let p=u,h=!1;for(let m=0;m<e.length;m+=1)if(c[m]===a){const a=t(e[m],n(p),!1);if("function"==typeof a){const t=await a.call(e[m],p,...l);if(t===i)c[m]=u;else if(t===r)c[m]=r;else{if(t===s)return t;if(void 0!==t){if(!o)return t;p=t,h=!0}}}}return h?p:void 0},async leave(s,...o){for(let u=0;u<e.length;u+=1)if(c[u]===a){const a=t(e[u],n(s),!0);if("function"==typeof a){const t=await a.call(e[u],s,...o);if(t===r)c[u]=r;else if(void 0!==t&&t!==i)return t}}else c[u]===s&&(c[u]=a)}}};const un=(e,t,{keyMap:n=null,state:r={},breakSymbol:s=rn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:o=!1,visitFnGetter:a=nn,nodeTypeGetter:c=sn,nodePredicate:u=on,nodeCloneFn:l=an,detectCycles:p=!0}={})=>{const h=n||{};let m,f,d=Array.isArray(e),y=[e],g=-1,v=[],b=e;const w=[],E=[];do{g+=1;const e=g===y.length;let n;const j=e&&0!==v.length;if(e){if(n=0===E.length?void 0:w.pop(),b=f,f=E.pop(),j)if(d){b=b.slice();let e=0;for(const[t,n]of v){const r=t-e;n===i?(b.splice(r,1),e+=1):b[r]=n}}else{b=l(b);for(const[e,t]of v)b[e]=t}g=m.index,y=m.keys,v=m.edits,d=m.inArray,m=m.prev}else if(f!==i&&void 0!==f){if(n=d?g:y[g],b=f[n],b===i||void 0===b)continue;w.push(n)}let O;if(!Array.isArray(b)){if(!u(b))throw new tn(`Invalid AST Node: ${String(b)}`,{node:b});if(p&&E.includes(b)){w.pop();continue}const i=a(t,c(b),e);if(i){for(const[e,n]of Object.entries(r))t[e]=n;O=i.call(t,b,n,f,w,E)}if(O===s)break;if(O===o){if(!e){w.pop();continue}}else if(void 0!==O&&(v.push([n,O]),!e)){if(!u(O)){w.pop();continue}b=O}}var x;if(void 0===O&&j&&v.push([n,b]),!e)m={inArray:d,index:g,keys:y,edits:v,prev:m},d=Array.isArray(b),y=d?b:null!==(x=h[c(b)])&&void 0!==x?x:[],g=-1,v=[],f!==i&&void 0!==f&&E.push(f),f=b}while(void 0!==m);return 0!==v.length?v[v.length-1][1]:e};un[Symbol.for("nodejs.util.promisify.custom")]=async(e,t,{keyMap:n=null,state:r={},breakSymbol:s=rn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:o=!1,visitFnGetter:a=nn,nodeTypeGetter:c=sn,nodePredicate:u=on,nodeCloneFn:l=an,detectCycles:p=!0}={})=>{const h=n||{};let m,f,d=Array.isArray(e),y=[e],g=-1,v=[],b=e;const w=[],E=[];do{g+=1;const e=g===y.length;let n;const j=e&&0!==v.length;if(e){if(n=0===E.length?void 0:w.pop(),b=f,f=E.pop(),j)if(d){b=b.slice();let e=0;for(const[t,n]of v){const r=t-e;n===i?(b.splice(r,1),e+=1):b[r]=n}}else{b=l(b);for(const[e,t]of v)b[e]=t}g=m.index,y=m.keys,v=m.edits,d=m.inArray,m=m.prev}else if(f!==i&&void 0!==f){if(n=d?g:y[g],b=f[n],b===i||void 0===b)continue;w.push(n)}let O;if(!Array.isArray(b)){if(!u(b))throw new tn(`Invalid AST Node: ${String(b)}`,{node:b});if(p&&E.includes(b)){w.pop();continue}const i=a(t,c(b),e);if(i){for(const[e,n]of Object.entries(r))t[e]=n;O=await i.call(t,b,n,f,w,E)}if(O===s)break;if(O===o){if(!e){w.pop();continue}}else if(void 0!==O&&(v.push([n,O]),!e)){if(!u(O)){w.pop();continue}b=O}}var x;if(void 0===O&&j&&v.push([n,b]),!e)m={inArray:d,index:g,keys:y,edits:v,prev:m},d=Array.isArray(b),y=d?b:null!==(x=h[c(b)])&&void 0!==x?x:[],g=-1,v=[],f!==i&&void 0!==f&&E.push(f),f=b}while(void 0!==m);return 0!==v.length?v[v.length-1][1]:e};const ln=class extends tn{value;constructor(e,t){super(e,t),void 0!==t&&(this.value=t.value)}};const pn=class extends ln{};const hn=class extends ln{},mn=(e,t={})=>{const{visited:n=new WeakMap}=t,r={...t,visited:n};if(n.has(e))return n.get(e);if(e instanceof o.KeyValuePair){const{key:t,value:s}=e,i=re(t)?mn(t,r):t,a=re(s)?mn(s,r):s,c=new o.KeyValuePair(i,a);return n.set(e,c),c}if(e instanceof o.ot){const t=e=>mn(e,r),s=[...e].map(t),i=new o.ot(s);return n.set(e,i),i}if(e instanceof o.G6){const t=e=>mn(e,r),s=[...e].map(t),i=new o.G6(s);return n.set(e,i),i}if(re(e)){const t=yn(e);if(n.set(e,t),e.content)if(re(e.content))t.content=mn(e.content,r);else if(e.content instanceof o.KeyValuePair)t.content=mn(e.content,r);else if(Array.isArray(e.content)){const n=e=>mn(e,r);t.content=e.content.map(n)}else t.content=e.content;else t.content=e.content;return t}throw new pn("Value provided to cloneDeep function couldn't be cloned",{value:e})};mn.safe=e=>{try{return mn(e)}catch{return e}};const fn=e=>{const{key:t,value:n}=e;return new o.KeyValuePair(t,n)},dn=e=>{const t=new e.constructor;if(t.element=e.element,e.meta.length>0&&(t._meta=mn(e.meta)),e.attributes.length>0&&(t._attributes=mn(e.attributes)),re(e.content)){const n=e.content;t.content=dn(n)}else Array.isArray(e.content)?t.content=[...e.content]:e.content instanceof o.KeyValuePair?t.content=fn(e.content):t.content=e.content;return t},yn=e=>{if(e instanceof o.KeyValuePair)return fn(e);if(e instanceof o.ot)return(e=>{const t=[...e];return new o.ot(t)})(e);if(e instanceof o.G6)return(e=>{const t=[...e];return new o.G6(t)})(e);if(re(e))return dn(e);throw new hn("Value provided to cloneShallow function couldn't be cloned",{value:e})};yn.safe=e=>{try{return yn(e)}catch{return e}};const gn=e=>ce(e)?"ObjectElement":ue(e)?"ArrayElement":le(e)?"MemberElement":se(e)?"StringElement":ae(e)?"BooleanElement":ie(e)?"NumberElement":oe(e)?"NullElement":pe(e)?"LinkElement":he(e)?"RefElement":void 0,vn=e=>re(e)?yn(e):an(e),bn=bt(gn,Wt),wn={ObjectElement:["content"],ArrayElement:["content"],MemberElement:["key","value"],StringElement:[],BooleanElement:[],NumberElement:[],NullElement:[],RefElement:[],LinkElement:[],Annotation:[],Comment:[],ParseResultElement:["content"],SourceMap:["content"]};const En=(e,t,{keyMap:n=wn,...r}={})=>un(e,t,{keyMap:n,nodeTypeGetter:gn,nodePredicate:bn,nodeCloneFn:vn,...r});En[Symbol.for("nodejs.util.promisify.custom")]=async(e,t,{keyMap:n=wn,...r}={})=>un[Symbol.for("nodejs.util.promisify.custom")](e,t,{keyMap:n,nodeTypeGetter:gn,nodePredicate:bn,nodeCloneFn:vn,...r});const xn={toolboxCreator:Xt,visitorOptions:{nodeTypeGetter:gn,exposeEdits:!0}},jn=(e,t,n={})=>{if(0===t.length)return e;const r=Se(xn,n),{toolboxCreator:s,visitorOptions:i}=r,o=s(),a=t.map((e=>e(o))),c=cn(a.map(Ie({},"visitor")),{...i});a.forEach(Rt(["pre"],[]));const u=En(e,c,i);return a.forEach(Rt(["post"],[])),u};jn[Symbol.for("nodejs.util.promisify.custom")]=async(e,t,n={})=>{if(0===t.length)return e;const r=Se(xn,n),{toolboxCreator:s,visitorOptions:i}=r,o=s(),a=t.map((e=>e(o))),c=cn[Symbol.for("nodejs.util.promisify.custom")],u=En[Symbol.for("nodejs.util.promisify.custom")],l=c(a.map(Ie({},"visitor")),{...i});await Promise.allSettled(a.map(Rt(["pre"],[])));const p=await u(e,l,i);return await Promise.allSettled(a.map(Rt(["post"],[]))),p};const On=(e,{Type:t,plugins:n=[]})=>{const r=new t(e);return re(e)&&(e.meta.length>0&&(r.meta=mn(e.meta)),e.attributes.length>0&&(r.attributes=mn(e.attributes))),jn(r,n,{toolboxCreator:Xt,visitorOptions:{nodeTypeGetter:gn}})},Sn=e=>(t,n={})=>On(t,{...n,Type:e});o.Sh.refract=Sn(o.Sh),o.wE.refract=Sn(o.wE),o.Om.refract=Sn(o.Om),o.bd.refract=Sn(o.bd),o.Os.refract=Sn(o.Os),o.kT.refract=Sn(o.kT),o.Ft.refract=Sn(o.Ft),o.sI.refract=Sn(o.sI),L.refract=Sn(L),H.refract=Sn(H),K.refract=Sn(K),W.refract=Sn(W);class Pn extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="JSONSchemaDraft4"}get idProp(){return this.get("id")}set idProp(e){this.set("id",e)}get $schema(){return this.get("$schema")}set $schema(e){this.set("$schema",e)}get multipleOf(){return this.get("multipleOf")}set multipleOf(e){this.set("multipleOf",e)}get maximum(){return this.get("maximum")}set maximum(e){this.set("maximum",e)}get exclusiveMaximum(){return this.get("exclusiveMaximum")}set exclusiveMaximum(e){this.set("exclusiveMaximum",e)}get minimum(){return this.get("minimum")}set minimum(e){this.set("minimum",e)}get exclusiveMinimum(){return this.get("exclusiveMinimum")}set exclusiveMinimum(e){this.set("exclusiveMinimum",e)}get maxLength(){return this.get("maxLength")}set maxLength(e){this.set("maxLength",e)}get minLength(){return this.get("minLength")}set minLength(e){this.set("minLength",e)}get pattern(){return this.get("pattern")}set pattern(e){this.set("pattern",e)}get additionalItems(){return this.get("additionalItems")}set additionalItems(e){this.set("additionalItems",e)}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxItems(){return this.get("maxItems")}set maxItems(e){this.set("maxItems",e)}get minItems(){return this.get("minItems")}set minItems(e){this.set("minItems",e)}get uniqueItems(){return this.get("uniqueItems")}set uniqueItems(e){this.set("uniqueItems",e)}get maxProperties(){return this.get("maxProperties")}set maxProperties(e){this.set("maxProperties",e)}get minProperties(){return this.get("minProperties")}set minProperties(e){this.set("minProperties",e)}get required(){return this.get("required")}set required(e){this.set("required",e)}get properties(){return this.get("properties")}set properties(e){this.set("properties",e)}get additionalProperties(){return this.get("additionalProperties")}set additionalProperties(e){this.set("additionalProperties",e)}get patternProperties(){return this.get("patternProperties")}set patternProperties(e){this.set("patternProperties",e)}get dependencies(){return this.get("dependencies")}set dependencies(e){this.set("dependencies",e)}get enum(){return this.get("enum")}set enum(e){this.set("enum",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){return this.get("allOf")}set allOf(e){this.set("allOf",e)}get anyOf(){return this.get("anyOf")}set anyOf(e){this.set("anyOf",e)}get oneOf(){return this.get("oneOf")}set oneOf(e){this.set("oneOf",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get definitions(){return this.get("definitions")}set definitions(e){this.set("definitions",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get default(){return this.get("default")}set default(e){this.set("default",e)}get format(){return this.get("format")}set format(e){this.set("format",e)}get base(){return this.get("base")}set base(e){this.set("base",e)}get links(){return this.get("links")}set links(e){this.set("links",e)}get media(){return this.get("media")}set media(e){this.set("media",e)}get readOnly(){return this.get("readOnly")}set readOnly(e){this.set("readOnly",e)}}const An=Pn;class _n extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="JSONReference",this.classes.push("json-reference")}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}}const kn=_n;class Mn extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="media"}get binaryEncoding(){return this.get("binaryEncoding")}set binaryEncoding(e){this.set("binaryEncoding",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}}const In=Mn;class Tn extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="linkDescription"}get href(){return this.get("href")}set href(e){this.set("href",e)}get rel(){return this.get("rel")}set rel(e){this.set("rel",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get mediaType(){return this.get("mediaType")}set mediaType(e){this.set("mediaType",e)}get method(){return this.get("method")}set method(e){this.set("method",e)}get encType(){return this.get("encType")}set encType(e){this.set("encType",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}}const $n=Tn,Rn=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof An||e(r)&&t("JSONSchemaDraft4",r)&&n("object",r))),Fn=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof kn||e(r)&&t("JSONReference",r)&&n("object",r))),Dn=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof In||e(r)&&t("media",r)&&n("object",r))),Cn=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof $n||e(r)&&t("linkDescription",r)&&n("object",r))),Nn=e=>ce(e)&&e.hasKey("$ref");const qn=u((function(e,t){return qe((function(n,r){return n[r]=e(t[r],r,t),n}),{},$(t))}));const Vn=c((function(e){return null==e}));const Ln=u((function(e,t){if(0===e.length||Vn(t))return!1;for(var n=t,r=0;r<e.length;){if(Vn(n)||!O(e[r],n))return!1;n=n[e[r]],r+=1}return!0}));var Bn=u((function(e,t){return Ln([e],t)}));const Hn=Bn;const zn=Ee((function(e,t,n){return e(Me(t,n))}));const Jn=c((function(e){return w(e.length,e)}));const Un=u((function(e,t){return w(e+1,(function(){var n=arguments[e];if(null!=n&&Pt(n[t]))return n[t].apply(n,Array.prototype.slice.call(arguments,0,e));throw new TypeError(at(n)+' does not have a method named "'+t+'"')}))}));const Gn=Un(1,"split");var Kn=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){if(this.f){if(this.f(t))return e;this.f=null}return this.xf["@@transducer/step"](e,t)},e}();function Xn(e){return function(t){return new Kn(e,t)}}const Wn=u(p(["dropWhile"],Xn,(function(e,t){for(var n=0,r=t.length;n<r&&e(t[n]);)n+=1;return Fe(n,1/0,t)})));const Yn=Un(1,"join");const Zn=Jn((function(e,t){return bt(Gn(""),Wn(q(e)),Yn(""))(t)})),Qn=(e,t)=>{const n=Pe(e,t);return qn((e=>{if(zt(e)&&Hn("$ref",e)&&zn(Wt,"$ref",e)){const t=$e(["$ref"],e),r=Zn("#/",t);return $e(r.split("/"),n)}return zt(e)?Qn(e,n):e}),e)};var er=n(8357);const tr=function(){return!0},nr=e=>"string"==typeof(null==e?void 0:e.type)?e.type:gn(e),rr={EphemeralObject:["content"],EphemeralArray:["content"],...wn},sr=(e,t,{keyMap:n=rr,...r}={})=>En(e,t,{keyMap:n,nodeTypeGetter:nr,nodePredicate:tr,detectCycles:!1,deleteNodeSymbol:Symbol.for("delete-node"),skipVisitingNodeSymbol:Symbol.for("skip-visiting-node"),...r});sr[Symbol.for("nodejs.util.promisify.custom")]=async(e,{keyMap:t=rr,...n}={})=>En[Symbol.for("nodejs.util.promisify.custom")](e,visitor,{keyMap:t,nodeTypeGetter:nr,nodePredicate:tr,detectCycles:!1,deleteNodeSymbol:Symbol.for("delete-node"),skipVisitingNodeSymbol:Symbol.for("skip-visiting-node"),...n});const ir=class{type="EphemeralArray";content=[];reference=void 0;constructor(e){this.content=e,this.reference=[]}toReference(){return this.reference}toArray(){return this.reference.push(...this.content),this.reference}};const or=class{type="EphemeralObject";content=[];reference=void 0;constructor(e){this.content=e,this.reference={}}toReference(){return this.reference}toObject(){return Object.assign(this.reference,Object.fromEntries(this.content))}};class ar{ObjectElement={enter:e=>{if(this.references.has(e))return this.references.get(e).toReference();const t=new or(e.content);return this.references.set(e,t),t}};EphemeralObject={leave:e=>e.toObject()};MemberElement={enter:e=>[e.key,e.value]};ArrayElement={enter:e=>{if(this.references.has(e))return this.references.get(e).toReference();const t=new ir(e.content);return this.references.set(e,t),t}};EphemeralArray={leave:e=>e.toArray()};references=new WeakMap;BooleanElement(e){return e.toValue()}NumberElement(e){return e.toValue()}StringElement(e){return e.toValue()}NullElement(){return null}RefElement(e,...t){var n;const r=t[3];return"EphemeralObject"===(null===(n=r[r.length-1])||void 0===n?void 0:n.type)?Symbol.for("delete-node"):String(e.toValue())}LinkElement(e){return se(e.href)?e.href.toValue():""}}const cr=e=>re(e)?se(e)||ie(e)||ae(e)||oe(e)?e.toValue():sr(e,new ar):e,ur=e=>{const t=e.meta.length>0?mn(e.meta):void 0,n=e.attributes.length>0?mn(e.attributes):void 0;return new e.constructor(void 0,t,n)},lr=(e,t)=>t.clone&&t.isMergeableElement(e)?fr(ur(e),e,t):e,pr=e=>"function"!=typeof e.customMetaMerge?e=>mn(e):e.customMetaMerge,hr=e=>"function"!=typeof e.customAttributesMerge?e=>mn(e):e.customAttributesMerge,mr={clone:!0,isMergeableElement:e=>ce(e)||ue(e),arrayElementMerge:(e,t,n)=>e.concat(t)["fantasy-land/map"]((e=>lr(e,n))),objectElementMerge:(e,t,n)=>{const r=ce(e)?ur(e):ur(t);return ce(e)&&e.forEach(((e,t,s)=>{const i=yn(s);i.value=lr(e,n),r.content.push(i)})),t.forEach(((t,s,i)=>{const o=cr(s);let a;if(ce(e)&&e.hasKey(o)&&n.isMergeableElement(t)){const r=e.get(o);a=yn(i),a.value=((e,t)=>{if("function"!=typeof t.customMerge)return fr;const n=t.customMerge(e,t);return"function"==typeof n?n:fr})(s,n)(r,t)}else a=yn(i),a.value=lr(t,n);r.remove(o),r.content.push(a)})),r},customMerge:void 0,customMetaMerge:void 0,customAttributesMerge:void 0};function fr(e,t,n){var r,s,i;const o={...mr,...n};o.isMergeableElement=null!==(r=o.isMergeableElement)&&void 0!==r?r:mr.isMergeableElement,o.arrayElementMerge=null!==(s=o.arrayElementMerge)&&void 0!==s?s:mr.arrayElementMerge,o.objectElementMerge=null!==(i=o.objectElementMerge)&&void 0!==i?i:mr.objectElementMerge;const a=ue(t);if(!(a===ue(e)))return lr(t,o);const c=a&&"function"==typeof o.arrayElementMerge?o.arrayElementMerge(e,t,o):o.objectElementMerge(e,t,o);return c.meta=pr(o)(e.meta,t.meta),c.attributes=hr(o)(e.attributes,t.attributes),c}fr.all=(e,t)=>{if(!Array.isArray(e))throw new TypeError("First argument of deepmerge should be an array.");return 0===e.length?new o.Sh:e.reduce(((e,n)=>fr(e,n,t)),ur(e[0]))};const dr=er({props:{element:null},methods:{copyMetaAndAttributes(e,t){(e.meta.length>0||t.meta.length>0)&&(t.meta=fr(t.meta,e.meta),ve(e)&&t.meta.set("sourceMap",e.meta.get("sourceMap"))),(e.attributes.length>0||e.meta.length>0)&&(t.attributes=fr(t.attributes,e.attributes))}}}),yr=er(dr,{methods:{enter(e){return this.element=mn(e),rn}}});const gr=z(J());const vr=u((function(e,t){for(var n={},r=0;r<e.length;)e[r]in t&&(n[e[r]]=t[e[r]]),r+=1;return n})),br=er(dr,{props:{specObj:null,passingOptionsNames:["specObj"]},init({specObj:e=this.specObj}){this.specObj=e},methods:{retrievePassingOptions(){return vr(this.passingOptionsNames,this)},retrieveFixedFields(e){const t=$e(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]},retrieveVisitor(e){return Ft(Ot,["visitors",...e],this.specObj)?$e(["visitors",...e],this.specObj):$e(["visitors",...e,"$visitor"],this.specObj)},retrieveVisitorInstance(e,t={}){const n=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...n,...t})},toRefractedElement(e,t,n={}){const r=this.retrieveVisitorInstance(e,n),s=Object.getPrototypeOf(r);return U(this.fallbackVisitorPrototype)&&(this.fallbackVisitorPrototype=Object.getPrototypeOf(this.retrieveVisitorInstance(["value"]))),this.fallbackVisitorPrototype===s?mn(t):(En(t,r,n),r.element)}}}),wr=er(br,{props:{specPath:gr,ignoredFields:[]},init({specPath:e=this.specPath,ignoredFields:t=this.ignoredFields}={}){this.specPath=e,this.ignoredFields=t},methods:{ObjectElement(e){const t=this.specPath(e),n=this.retrieveFixedFields(t);return e.forEach(((e,r,s)=>{if(se(r)&&n.includes(cr(r))&&!this.ignoredFields.includes(cr(r))){const n=this.toRefractedElement([...t,"fixedFields",cr(r)],e),i=new o.Pr(mn(r),n);this.copyMetaAndAttributes(s,i),i.classes.push("fixed-field"),this.element.content.push(i)}else this.ignoredFields.includes(cr(r))||this.element.content.push(mn(s))})),this.copyMetaAndAttributes(e,this.element),rn}}}),Er=er(wr,yr,{props:{specPath:z(["document","objects","JSONSchema"])},init(){this.element=new An}}),xr=yr,jr=yr,Or=yr,Sr=yr,Pr=yr,Ar=yr,_r=yr,kr=yr,Mr=yr,Ir=yr,Tr=er({props:{parent:null},init({parent:e=this.parent}){this.parent=e,this.passingOptionsNames=[...this.passingOptionsNames,"parent"]}}),$r=er(br,Tr,yr,{methods:{ObjectElement(e){const t=Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"];return this.element=this.toRefractedElement(t,e),rn},ArrayElement(e){return this.element=new o.wE,this.element.classes.push("json-schema-items"),e.forEach((e=>{const t=Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),Rr=yr,Fr=yr,Dr=yr,Cr=yr,Nr=yr,qr=er(yr,{methods:{ArrayElement(e){return this.element=mn(e),this.element.classes.push("json-schema-required"),rn}}});const Vr=c((function(e){return w(dt(ct,0,ut("length",e)),(function(){for(var t=0,n=e.length;t<n;){if(!e[t].apply(this,arguments))return!1;t+=1}return!0}))}));const Lr=u((function(e,t){return e||t}));const Br=Ze(w(1,_t(Ct,u((function(e,t){return Pt(e)?function(){return e.apply(this,arguments)||t.apply(this,arguments)}:Ye(Lr)(e,t)}))(qt,Ot))));const Hr=Ze(It);const zr=Vr([Wt,Br,Hr]);const Jr=function(){return!1},Ur=er(br,{props:{fieldPatternPredicate:Jr,specPath:gr,ignoredFields:[]},init({specPath:e=this.specPath,ignoredFields:t=this.ignoredFields}={}){this.specPath=e,this.ignoredFields=t},methods:{ObjectElement(e){return e.forEach(((e,t,n)=>{if(!this.ignoredFields.includes(cr(t))&&this.fieldPatternPredicate(cr(t))){const r=this.specPath(e),s=this.toRefractedElement(r,e),i=new o.Pr(mn(t),s);this.copyMetaAndAttributes(n,i),i.classes.push("patterned-field"),this.element.content.push(i)}else this.ignoredFields.includes(cr(t))||this.element.content.push(mn(n))})),this.copyMetaAndAttributes(e,this.element),rn}}}),Gr=er(Ur,{props:{fieldPatternPredicate:zr}}),Kr=er(Gr,Tr,yr,{props:{specPath:e=>Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-properties")}}),Xr=er(Gr,Tr,yr,{props:{specPath:e=>Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-patternProperties")}}),Wr=er(Gr,Tr,yr,{props:{specPath:e=>Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-dependencies")}}),Yr=er(yr,{methods:{ArrayElement(e){return this.element=mn(e),this.element.classes.push("json-schema-enum"),rn}}}),Zr=er(yr,{methods:{StringElement(e){return this.element=mn(e),this.element.classes.push("json-schema-type"),rn},ArrayElement(e){return this.element=mn(e),this.element.classes.push("json-schema-type"),rn}}}),Qr=er(br,Tr,yr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-allOf")},methods:{ArrayElement(e){return e.forEach((e=>{const t=Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),es=er(br,Tr,yr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-anyOf")},methods:{ArrayElement(e){return e.forEach((e=>{const t=Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),ts=er(br,Tr,yr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-oneOf")},methods:{ArrayElement(e){return e.forEach((e=>{const t=Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],n=this.toRefractedElement(t,e);this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}}),ns=er(Gr,Tr,yr,{props:{specPath:e=>Nn(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]},init(){this.element=new o.Sh,this.element.classes.push("json-schema-definitions")}}),rs=yr,ss=yr,is=yr,os=yr,as=yr,cs=er(br,Tr,yr,{init(){this.element=new o.wE,this.element.classes.push("json-schema-links")},methods:{ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","LinkDescription"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}}),us=yr,ls=er(wr,yr,{props:{specPath:z(["document","objects","JSONReference"])},init(){this.element=new kn},methods:{ObjectElement(e){const t=wr.compose.methods.ObjectElement.call(this,e);return se(this.element.$ref)&&this.element.classes.push("reference-element"),t}}}),ps=er(yr,{methods:{StringElement(e){return this.element=mn(e),this.element.classes.push("reference-value"),rn}}});const hs=Ee((function(e,t,n){return w(Math.max(e.length,t.length,n.length),(function(){return e.apply(this,arguments)?t.apply(this,arguments):n.apply(this,arguments)}))}));const ms=c((function(e){return function(t,n){return e(t,n)?-1:e(n,t)?1:0}}));var fs=u((function(e,t){return Array.prototype.slice.call(t,0).sort(e)}));const ds=fs;const ys=ke(0);const gs=c(h);const vs=Ze(Vn);const bs=_t(Tt,Hr);function ws(e){return function(e){if(Array.isArray(e))return Es(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return Es(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Es(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Es(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var xs=bt(ds(ms((function(e,t){return e.length>t.length}))),ys,Me("length")),js=Jn((function(e,t,n){var r=n.apply(void 0,ws(e));return vs(r)?gs(r):t}));const Os=hs(bs,(function(e){var t=xs(e);return w(t,(function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return dt(js(n),void 0,e)}))}),J),Ss=er(br,{props:{alternator:[]},methods:{enter(e){const t=this.alternator.map((({predicate:e,specPath:t})=>hs(e,z(t),J))),n=Os(t)(e);return this.element=this.toRefractedElement(n,e),rn}}}),Ps=er(Ss,{props:{alternator:[{predicate:Nn,specPath:["document","objects","JSONReference"]},{predicate:tr,specPath:["document","objects","JSONSchema"]}]}}),As={visitors:{value:yr,JSONSchemaOrJSONReferenceVisitor:Ps,document:{objects:{JSONSchema:{$visitor:Er,fixedFields:{id:xr,$schema:jr,multipleOf:Or,maximum:Sr,exclusiveMaximum:Pr,minimum:Ar,exclusiveMinimum:_r,maxLength:kr,minLength:Mr,pattern:Ir,additionalItems:Ps,items:$r,maxItems:Rr,minItems:Fr,uniqueItems:Dr,maxProperties:Cr,minProperties:Nr,required:qr,properties:Kr,additionalProperties:Ps,patternProperties:Xr,dependencies:Wr,enum:Yr,type:Zr,allOf:Qr,anyOf:es,oneOf:ts,not:Ps,definitions:ns,title:rs,description:ss,default:is,format:os,base:as,links:cs,media:{$ref:"#/visitors/document/objects/Media"},readOnly:us}},JSONReference:{$visitor:ls,fixedFields:{$ref:ps}},Media:{$visitor:er(wr,yr,{props:{specPath:z(["document","objects","Media"])},init(){this.element=new In}}),fixedFields:{binaryEncoding:yr,type:yr}},LinkDescription:{$visitor:er(wr,yr,{props:{specPath:z(["document","objects","LinkDescription"])},init(){this.element=new $n}}),fixedFields:{href:yr,rel:yr,title:yr,targetSchema:Ps,mediaType:yr,method:yr,encType:yr,schema:Ps}}}}}},_s=e=>{if(re(e))return`${e.element.charAt(0).toUpperCase()+e.element.slice(1)}Element`},ks={JSONSchemaDraft4Element:["content"],JSONReferenceElement:["content"],MediaElement:["content"],LinkDescriptionElement:["content"],...wn},Ms={namespace:e=>{const{base:t}=e;return t.register("jSONSchemaDraft4",An),t.register("jSONReference",kn),t.register("media",In),t.register("linkDescription",$n),t}},Is=()=>{const e=Gt(Ms);return{predicates:{...t,isStringElement:se},namespace:e}},Ts=(e,{specPath:t=["visitors","document","objects","JSONSchema","$visitor"],plugins:n=[],specificationObj:r=As}={})=>{const s=(0,o.e)(e),i=Qn(r),a=Rt(t,[],i);return En(s,a,{state:{specObj:i}}),jn(a.element,n,{toolboxCreator:Is,visitorOptions:{keyMap:ks,nodeTypeGetter:_s}})},$s=e=>(t,n={})=>Ts(t,{specPath:e,...n});An.refract=$s(["visitors","document","objects","JSONSchema","$visitor"]),kn.refract=$s(["visitors","document","objects","JSONReference","$visitor"]),In.refract=$s(["visitors","document","objects","Media","$visitor"]),$n.refract=$s(["visitors","document","objects","LinkDescription","$visitor"]);const Rs=ke(-1);const Fs=class extends en{};const Ds=class extends Fs{};const Cs=class extends Array{unknownMediaType="application/octet-stream";filterByFormat(){throw new Ds("filterByFormat method in MediaTypes class is not yet implemented.")}findBy(){throw new Ds("findBy method in MediaTypes class is not yet implemented.")}latest(){throw new Ds("latest method in MediaTypes class is not yet implemented.")}};class Ns extends Cs{filterByFormat(e="generic"){const t="generic"===e?"openapi;version":e;return this.filter((e=>e.includes(t)))}findBy(e="2.0",t="generic"){const n="generic"===t?`vnd.oai.openapi;version=${e}`:`vnd.oai.openapi+${t};version=${e}`;return this.find((e=>e.includes(n)))||this.unknownMediaType}latest(e="generic"){return Rs(this.filterByFormat(e))}}const qs=new Ns("application/vnd.oai.openapi;version=2.0","application/vnd.oai.openapi+json;version=2.0","application/vnd.oai.openapi+yaml;version=2.0");class Vs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="swagger",this.classes.push("api")}get swagger(){return this.get("swagger")}set swagger(e){this.set("swagger",e)}get info(){return this.get("info")}set info(e){this.set("info",e)}get host(){return this.get("host")}set host(e){this.set("host",e)}get basePath(){return this.get("basePath")}set basePath(e){this.set("basePath",e)}get schemes(){return this.get("schemes")}set schemes(e){this.set("schemes",e)}get consumes(){return this.get("consumes")}set consumes(e){this.set("consumes",e)}get produces(){return this.get("produces")}set produces(e){this.set("produces",e)}get paths(){return this.get("paths")}set paths(e){this.set("paths",e)}get definitions(){return this.get("definitions")}set definitions(e){this.set("definitions",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get responses(){return this.get("responses")}set responses(e){this.set("responses",e)}get securityDefinitions(){return this.get("securityDefinitions")}set securityDefinitions(e){this.set("securityDefinitions",e)}get security(){return this.get("security")}set security(e){this.set("security",e)}get tags(){return this.get("tags")}set tags(e){this.set("tags",e)}get externalDocs(){return this.get("externalDocs")}set externalDocs(e){this.set("externalDocs",e)}}const Ls=Vs;class Bs extends o.Om{constructor(e,t,n){super(e,t,n),this.element="swaggerVersion",this.classes.push("spec-version"),this.classes.push("version")}}const Hs=Bs;class zs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="info",this.classes.push("info")}get title(){return this.get("title")}set title(e){this.set("title",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get termsOfService(){return this.get("termsOfService")}set termsOfService(e){this.set("termsOfService",e)}get contact(){return this.get("contact")}set contact(e){this.set("contact",e)}get license(){return this.get("license")}set license(e){this.set("license",e)}get version(){return this.get("version")}set version(e){this.set("version",e)}}const Js=zs;class Us extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="contact"}get name(){return this.get("name")}set name(e){this.set("name",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}get email(){return this.get("email")}set email(e){this.set("email",e)}}const Gs=Us;class Ks extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="license"}get name(){return this.get("name")}set name(e){this.set("name",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}}const Xs=Ks;class Ws extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="paths"}}const Ys=Ws;class Zs extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="pathItem"}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}get GET(){return this.get("get")}set GET(e){this.set("GET",e)}get PUT(){return this.get("put")}set PUT(e){this.set("PUT",e)}get POST(){return this.get("post")}set POST(e){this.set("POST",e)}get DELETE(){return this.get("delete")}set DELETE(e){this.set("DELETE",e)}get OPTIONS(){return this.get("options")}set OPTIONS(e){this.set("OPTIONS",e)}get HEAD(){return this.get("head")}set HEAD(e){this.set("HEAD",e)}get PATCH(){return this.get("patch")}set PATCH(e){this.set("PATCH",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}}const Qs=Zs;class ei extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="operation"}get tags(){return this.get("tags")}set tags(e){this.set("tags",e)}get summary(){return this.get("summary")}set summary(e){this.set("summary",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}set externalDocs(e){this.set("externalDocs",e)}get externalDocs(){return this.get("externalDocs")}get operationId(){return this.get("operationId")}set operationId(e){this.set("operationId",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get responses(){return this.get("responses")}set responses(e){this.set("responses",e)}get schemes(){return this.get("schemes")}set schemes(e){this.set("schemes",e)}get deprecated(){return this.hasKey("deprecated")?this.get("deprecated"):new o.bd(!1)}set deprecated(e){this.set("deprecated",e)}get security(){return this.get("security")}set security(e){this.set("security",e)}}const ti=ei;class ni extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="externalDocumentation"}get description(){return this.get("description")}set description(e){this.set("description",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}}const ri=ni;const si=class extends An{constructor(e,t,n){super(e,t,n),this.element="parameter",this.classes.push("json-schema-draft-4")}get idProp(){throw new Fs("idProp getter in Parameter class is not not supported.")}set idProp(e){throw new Fs("idProp setter in Parameter class is not not supported.")}get $schema(){throw new Fs("$schema getter in Parameter class is not not supported.")}set $schema(e){throw new Fs("$schema setter in Parameter class is not not supported.")}get additionalItems(){throw new Fs("additionalItems getter in Parameter class is not not supported.")}set additionalItems(e){throw new Fs("additionalItems setter in Parameter class is not not supported.")}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxProperties(){throw new Fs("maxProperties getter in Parameter class is not not supported.")}set maxProperties(e){throw new Fs("maxProperties setter in Parameter class is not not supported.")}get minProperties(){throw new Fs("minProperties getter in Parameter class is not not supported.")}set minProperties(e){throw new Fs("minProperties setter in Parameter class is not not supported.")}get required(){return this.get("required")}set required(e){this.set("required",e)}get properties(){throw new Fs("properties getter in Parameter class is not not supported.")}set properties(e){throw new Fs("properties setter in Parameter class is not not supported.")}get additionalProperties(){throw new Fs("additionalProperties getter in Parameter class is not not supported.")}set additionalProperties(e){throw new Fs("additionalProperties setter in Parameter class is not not supported.")}get patternProperties(){throw new Fs("patternProperties getter in Parameter class is not not supported.")}set patternProperties(e){throw new Fs("patternProperties setter in Parameter class is not not supported.")}get dependencies(){throw new Fs("dependencies getter in Parameter class is not not supported.")}set dependencies(e){throw new Fs("dependencies setter in Parameter class is not not supported.")}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){throw new Fs("allOf getter in Parameter class is not not supported.")}set allOf(e){throw new Fs("allOf setter in Parameter class is not not supported.")}get anyOf(){throw new Fs("anyOf getter in Parameter class is not not supported.")}set anyOf(e){throw new Fs("anyOf setter in Parameter class is not not supported.")}get oneOf(){throw new Fs("oneOf getter in Parameter class is not not supported.")}set oneOf(e){throw new Fs("oneOf setter in Parameter class is not not supported.")}get not(){throw new Fs("not getter in Parameter class is not not supported.")}set not(e){throw new Fs("not setter in Parameter class is not not supported.")}get definitions(){throw new Fs("definitions getter in Parameter class is not not supported.")}set definitions(e){throw new Fs("definitions setter in Parameter class is not not supported.")}get title(){throw new Fs("title getter in Parameter class is not not supported.")}set title(e){throw new Fs("title setter in Parameter class is not not supported.")}get description(){return this.get("description")}set description(e){this.set("description,",e)}get format(){return this.get("format")}set format(e){this.set("format",e)}get base(){throw new Fs("base getter in Parameter class is not not supported.")}set base(e){throw new Fs("base setter in Parameter class is not not supported.")}get links(){throw new Fs("links getter in Parameter class is not not supported.")}set links(e){throw new Fs("links setter in Parameter class is not not supported.")}get media(){throw new Fs("media getter in Parameter class is not not supported.")}set media(e){throw new Fs("media setter in Parameter class is not not supported.")}get readOnly(){throw new Fs("readOnly getter in Parameter class is not not supported.")}set readOnly(e){throw new Fs("readOnly setter in Parameter class is not not supported.")}get name(){return this.get("name")}set name(e){this.set("name",e)}get in(){return this.get("in")}set in(e){this.set("in",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}};const ii=class extends An{constructor(e,t,n){super(e,t,n),this.element="items",this.classes.push("json-schema-draft-4")}get idProp(){throw new Fs("idProp getter in Items class is not not supported.")}set idProp(e){throw new Fs("idProp setter in Items class is not not supported.")}get $schema(){throw new Fs("$schema getter in Items class is not not supported.")}set $schema(e){throw new Fs("$schema setter in Items class is not not supported.")}get additionalItems(){throw new Fs("additionalItems getter in Items class is not not supported.")}set additionalItems(e){throw new Fs("additionalItems setter in Items class is not not supported.")}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxProperties(){throw new Fs("maxProperties getter in Items class is not not supported.")}set maxProperties(e){throw new Fs("maxProperties setter in Items class is not not supported.")}get minProperties(){throw new Fs("minProperties getter in Items class is not not supported.")}set minProperties(e){throw new Fs("minProperties setter in Items class is not not supported.")}get required(){throw new Fs("required getter in Items class is not not supported.")}set required(e){throw new Fs("required setter in Items class is not not supported.")}get properties(){throw new Fs("properties getter in Items class is not not supported.")}set properties(e){throw new Fs("properties setter in Items class is not not supported.")}get additionalProperties(){throw new Fs("additionalProperties getter in Items class is not not supported.")}set additionalProperties(e){throw new Fs("additionalProperties setter in Items class is not not supported.")}get patternProperties(){throw new Fs("patternProperties getter in Items class is not not supported.")}set patternProperties(e){throw new Fs("patternProperties setter in Items class is not not supported.")}get dependencies(){throw new Fs("dependencies getter in Items class is not not supported.")}set dependencies(e){throw new Fs("dependencies setter in Items class is not not supported.")}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){throw new Fs("allOf getter in Items class is not not supported.")}set allOf(e){throw new Fs("allOf setter in Items class is not not supported.")}get anyOf(){throw new Fs("anyOf getter in Items class is not not supported.")}set anyOf(e){throw new Fs("anyOf setter in Items class is not not supported.")}get oneOf(){throw new Fs("oneOf getter in Items class is not not supported.")}set oneOf(e){throw new Fs("oneOf setter in Items class is not not supported.")}get not(){throw new Fs("not getter in Items class is not not supported.")}set not(e){throw new Fs("not setter in Items class is not not supported.")}get definitions(){throw new Fs("definitions getter in Items class is not not supported.")}set definitions(e){throw new Fs("definitions setter in Items class is not not supported.")}get title(){throw new Fs("title getter in Items class is not not supported.")}set title(e){throw new Fs("title setter in Items class is not not supported.")}get description(){throw new Fs("description getter in Items class is not not supported.")}set description(e){throw new Fs("description setter in Items class is not not supported.")}get base(){throw new Fs("base getter in Items class is not not supported.")}set base(e){throw new Fs("base setter in Items class is not not supported.")}get links(){throw new Fs("links getter in Items class is not not supported.")}set links(e){throw new Fs("links setter in Items class is not not supported.")}get media(){throw new Fs("media getter in Items class is not not supported.")}set media(e){throw new Fs("media setter in Items class is not not supported.")}get readOnly(){throw new Fs("readOnly getter in Items class is not not supported.")}set readOnly(e){throw new Fs("readOnly setter in Items class is not not supported.")}};class oi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="example"}}const ai=oi;class ci extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="responses"}get default(){return this.get("default")}set default(e){this.set("default",e)}}const ui=ci;class li extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="response"}get description(){return this.get("description")}set description(e){this.set("description",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}get headers(){return this.get("headers")}set headers(e){this.set("headers",e)}get examples(){return this.get("examples")}set examples(e){this.set("examples",e)}}const pi=li;class hi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="headers"}}const mi=hi;const fi=class extends An{constructor(e,t,n){super(e,t,n),this.element="header",this.classes.push("json-schema-draft-4")}get idProp(){throw new Fs("idProp getter in Header class is not not supported.")}set idProp(e){throw new Fs("idProp setter in Header class is not not supported.")}get $schema(){throw new Fs("$schema getter in Header class is not not supported.")}set $schema(e){throw new Fs("$schema setter in Header class is not not supported.")}get additionalItems(){throw new Fs("additionalItems getter in Header class is not not supported.")}set additionalItems(e){throw new Fs("additionalItems setter in Header class is not not supported.")}get items(){return this.get("items")}set items(e){this.set("items",e)}get maxProperties(){throw new Fs("maxProperties getter in Header class is not not supported.")}set maxProperties(e){throw new Fs("maxProperties setter in Header class is not not supported.")}get minProperties(){throw new Fs("minProperties getter in Header class is not not supported.")}set minProperties(e){throw new Fs("minProperties setter in Header class is not not supported.")}get required(){throw new Fs("required getter in Header class is not not supported.")}set required(e){throw new Fs("required setter in Header class is not not supported.")}get properties(){throw new Fs("properties getter in Header class is not not supported.")}set properties(e){throw new Fs("properties setter in Header class is not not supported.")}get additionalProperties(){throw new Fs("additionalProperties getter in Header class is not not supported.")}set additionalProperties(e){throw new Fs("additionalProperties setter in Header class is not not supported.")}get patternProperties(){throw new Fs("patternProperties getter in Header class is not not supported.")}set patternProperties(e){throw new Fs("patternProperties setter in Header class is not not supported.")}get dependencies(){throw new Fs("dependencies getter in Header class is not not supported.")}set dependencies(e){throw new Fs("dependencies setter in Header class is not not supported.")}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){throw new Fs("allOf getter in Header class is not not supported.")}set allOf(e){throw new Fs("allOf setter in Header class is not not supported.")}get anyOf(){throw new Fs("anyOf getter in Header class is not not supported.")}set anyOf(e){throw new Fs("anyOf setter in Header class is not not supported.")}get oneOf(){throw new Fs("oneOf getter in Header class is not not supported.")}set oneOf(e){throw new Fs("oneOf setter in Header class is not not supported.")}get not(){throw new Fs("not getter in Header class is not not supported.")}set not(e){throw new Fs("not setter in Header class is not not supported.")}get definitions(){throw new Fs("definitions getter in Header class is not not supported.")}set definitions(e){throw new Fs("definitions setter in Header class is not not supported.")}get title(){throw new Fs("title getter in Header class is not not supported.")}set title(e){throw new Fs("title setter in Header class is not not supported.")}get base(){throw new Fs("base getter in Header class is not not supported.")}set base(e){throw new Fs("base setter in Header class is not not supported.")}get links(){throw new Fs("links getter in Header class is not not supported.")}set links(e){throw new Fs("links setter in Header class is not not supported.")}get media(){throw new Fs("media getter in Header class is not not supported.")}set media(e){throw new Fs("media setter in Header class is not not supported.")}get readOnly(){throw new Fs("readOnly getter in Header class is not not supported.")}set readOnly(e){throw new Fs("readOnly setter in Header class is not not supported.")}};class di extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="tag"}get name(){return this.get("name")}set name(e){this.set("name",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get externalDocs(){return this.get("externalDocs")}set externalDocs(e){this.set("externalDocs",e)}}const yi=di;const gi=class extends An{constructor(e,t,n){super(e,t,n),this.element="schema",this.classes.push("json-schema-draft-4")}get idProp(){throw new Fs("idProp getter in Schema class is not not supported.")}set idProp(e){throw new Fs("idProp setter in Schema class is not not supported.")}get $schema(){throw new Fs("$schema getter in Schema class is not not supported.")}set $schema(e){throw new Fs("$schema setter in Schema class is not not supported.")}get additionalItems(){throw new Fs("additionalItems getter in Schema class is not not supported.")}set additionalItems(e){throw new Fs("additionalItems setter in Schema class is not not supported.")}get patternProperties(){throw new Fs("patternProperties getter in Schema class is not not supported.")}set patternProperties(e){throw new Fs("patternProperties setter in Schema class is not not supported.")}get dependencies(){throw new Fs("dependencies getter in Schema class is not not supported.")}set dependencies(e){throw new Fs("dependencies setter in Schema class is not not supported.")}get anyOf(){throw new Fs("anyOf getter in Schema class is not not supported.")}set anyOf(e){throw new Fs("anyOf setter in Schema class is not not supported.")}get oneOf(){throw new Fs("oneOf getter in Schema class is not not supported.")}set oneOf(e){throw new Fs("oneOf setter in Schema class is not not supported.")}get not(){throw new Fs("not getter in Schema class is not not supported.")}set not(e){throw new Fs("not setter in Schema class is not not supported.")}get definitions(){throw new Fs("definitions getter in Schema class is not not supported.")}set definitions(e){throw new Fs("definitions setter in Schema class is not not supported.")}get base(){throw new Fs("base getter in Schema class is not not supported.")}set base(e){throw new Fs("base setter in Schema class is not not supported.")}get links(){throw new Fs("links getter in Schema class is not not supported.")}set links(e){throw new Fs("links setter in Schema class is not not supported.")}get media(){throw new Fs("media getter in Schema class is not not supported.")}set media(e){throw new Fs("media setter in Schema class is not not supported.")}};class vi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="xml"}get name(){return this.get("name")}set name(e){this.set("name",e)}get namespace(){return this.get("namespace")}set namespace(e){this.set("namespace",e)}get prefix(){return this.get("prefix")}set prefix(e){this.set("prefix",e)}get attribute(){return this.get("attribute")}set attribute(e){this.set("attribute",e)}get wrapped(){return this.get("wrapped")}set wrapped(e){this.set("wrapped",e)}}const bi=vi;class wi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="reference",this.classes.push("openapi-reference")}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}}const Ei=wi;class xi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="definitions"}}const ji=xi;class Oi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="parametersDefinitions"}}const Si=Oi;class Pi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="responsesDefinitions"}}const Ai=Pi;class _i extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="securityDefinitions"}}const ki=_i;class Mi extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="securityScheme"}get type(){return this.get("type")}set type(e){this.set("type",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get name(){return this.get("name")}set name(e){this.set("name",e)}get in(){return this.get("in")}set in(e){this.set("in",e)}get flow(){return this.get("flow")}set flow(e){this.set("flow",e)}get authorizationUrl(){return this.get("authorizationUrl")}set authorizationUrl(e){this.set("authorizationUrl",e)}get tokenUrl(){return this.get("tokenUrl")}set tokenUrl(e){this.set("tokenUrl",e)}get scopes(){return this.get("scopes")}set scopes(e){this.set("scopes",e)}}const Ii=Mi;class Ti extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="scopes"}}const $i=Ti;class Ri extends o.Sh{constructor(e,t,n){super(e,t,n),this.element="securityRequirement"}}const Fi=Ri,Di={namespace:e=>{const{base:t}=e;return t.register("swagger",Ls),t.register("swaggerVersion",Hs),t.register("info",Js),t.register("contact",Gs),t.register("license",Xs),t.register("paths",Ys),t.register("pathItem",Qs),t.register("operation",ti),t.register("externalDocumentation",ri),t.register("parameter",si),t.register("items",ii),t.register("responses",ui),t.register("response",pi),t.register("headers",mi),t.register("example",ai),t.register("header",fi),t.register("tag",yi),t.register("reference",Ei),t.register("schema",gi),t.register("xml",bi),t.register("definitions",ji),t.register("parametersDefinitions",Si),t.register("responsesDefinitions",Ai),t.register("securityDefinitions",ki),t.register("securityScheme",Ii),t.register("scopes",$i),t.register("securityRequirement",Fi),t}};class Ci extends o.wE{static primaryClass="operation-consumes";constructor(e,t,n){super(e,t,n),this.classes.push(Ci.primaryClass)}}const Ni=Ci;class qi extends o.wE{static primaryClass="operation-parameters";constructor(e,t,n){super(e,t,n),this.classes.push(qi.primaryClass),this.classes.push("parameters")}}const Vi=qi;class Li extends o.wE{static primaryClass="operation-produces";constructor(e,t,n){super(e,t,n),this.classes.push(Li.primaryClass)}}const Bi=Li;class Hi extends o.wE{static primaryClass="operation-schemes";constructor(e,t,n){super(e,t,n),this.classes.push(Hi.primaryClass)}}const zi=Hi;class Ji extends o.wE{static primaryClass="operation-security";constructor(e,t,n){super(e,t,n),this.classes.push(Ji.primaryClass),this.classes.push("security")}}const Ui=Ji;class Gi extends o.wE{static primaryClass="operation-tags";constructor(e,t,n){super(e,t,n),this.classes.push(Gi.primaryClass),this.classes.push("tags")}}const Ki=Gi;class Xi extends o.wE{static primaryClass="path-item-parameters";constructor(e,t,n){super(e,t,n),this.classes.push(Xi.primaryClass),this.classes.push("parameters")}}const Wi=Xi;class Yi extends o.wE{static primaryClass="swagger-schemes";constructor(e,t,n){super(e,t,n),this.classes.push(Yi.primaryClass)}}const Zi=Yi;class Qi extends o.wE{static primaryClass="swagger-consumes";constructor(e,t,n){super(e,t,n),this.classes.push(Qi.primaryClass)}}const eo=Qi;class to extends o.wE{static primaryClass="swagger-produces";constructor(e,t,n){super(e,t,n),this.classes.push(to.primaryClass)}}const no=to;class ro extends o.wE{static primaryClass="swagger-security";constructor(e,t,n){super(e,t,n),this.classes.push(ro.primaryClass),this.classes.push("security")}}const so=ro;class io extends o.wE{static primaryClass="swagger-tags";constructor(e,t,n){super(e,t,n),this.classes.push(io.primaryClass)}}const oo=io,ao=e=>{if(re(e))return`${e.element.charAt(0).toUpperCase()+e.element.slice(1)}Element`},co={SwaggerElement:["content"],InfoElement:["content"],ContactElement:["content"],LicenseElement:["content"],PathsElement:["content"],PathItemElement:["content"],OperationElement:["content"],ExternalDocumentationElement:["content"],ParameterElement:["content"],ItemsElement:["content"],ExampleElement:["content"],ResponsesElement:["content"],ResponseElement:["content"],HeadersElement:["content"],HeaderElement:["content"],TagElement:["content"],ReferenceElement:["content"],JSONReferenceElement:["content"],SchemaElement:["content"],XmlElement:["content"],DefinitionsElement:["content"],ParametersDefinitionsElement:["content"],ResponsesDefinitionsElement:["content"],SecurityDefinitionsElement:["content"],SecuritySchemeElement:["content"],ScopesElement:["content"],SecurityRequirementElement:["content"],...wn},uo={SwaggerElement:{info:(...e)=>new Js(...e),schemes:(...e)=>new Zi(...e),consumes:(...e)=>new eo(...e),produces:(...e)=>new no(...e),paths:(...e)=>new Ys(...e),definitions:(...e)=>new ji(...e),parameters:(...e)=>new Si(...e),responses:(...e)=>new Ai(...e),securityDefinitions:(...e)=>new ki(...e),security:(...e)=>new so(...e),tags:(...e)=>new oo(...e),externalDocs:(...e)=>new ri(...e)},InfoElement:{contact:(...e)=>new Gs(...e),license:(...e)=>new Xs(...e)},PathsElement:{"[key: *]":function(...e){return new Qs(...e)}},PathItemElement:{get:(...e)=>new ti(...e),put:(...e)=>new ti(...e),post:(...e)=>new ti(...e),delete:(...e)=>new ti(...e),options:(...e)=>new ti(...e),head:(...e)=>new ti(...e),patch:(...e)=>new ti(...e),parameters:(...e)=>new Wi(...e)},OperationElement:{tags:(...e)=>new Ki(...e),externalDocs:(...e)=>new ri(...e),consumes:(...e)=>new Ni(...e),produces:(...e)=>new Bi(...e),parameters:(...e)=>new Vi(...e),responses:(...e)=>new ui(...e),schemes:(...e)=>new zi(...e),security:(...e)=>new Ui(...e)},ParameterElement:{schema:(...e)=>new gi(...e),items:(...e)=>new ii(...e)},ItemsElement:{items:(...e)=>new ii(...e)},ResponsesElement:{"[key: *]":function(...e){return new pi(...e)}},ResponseElement:{schema:(...e)=>new gi(...e),headers:(...e)=>new mi(...e),examples:(...e)=>new ai(...e)},HeadersElement:{"[key: *]":function(...e){return new fi(...e)}},HeaderElement:{items:(...e)=>new ii(...e)},TagElement:{externalDocs:(...e)=>new ri(...e)},SchemaElement:{items:(...e)=>new gi(...e),allOf(...e){const t=new o.wE(...e);return t.classes.push("json-schema-allOf"),t},properties(...e){const t=new o.Sh(...e);return t.classes.push("json-schema-properties"),t},additionalProperties:(...e)=>new gi(...e),xml:(...e)=>new bi(...e),externalDocs:(...e)=>new ri(...e)},DefinitionsElement:{"[key: *]":function(...e){return new gi(...e)}},ParametersDefinitionsElement:{"[key: *]":function(...e){return new si(...e)}},ResponsesDefinitionsElement:{"[key: *]":function(...e){return new pi(...e)}},SecurityDefinitionsElement:{"[key: *]":function(...e){return new Ii(...e)}},SecuritySchemeElement:{scopes:(...e)=>new $i(...e)},SecurityRequirementElement:{"[key: *]":function(...e){return new o.wE(...e)}},[Vi.primaryClass]:{"<*>":function(...e){return new si(...e)}},[Ui.primaryClass]:{"<*>":function(...e){return new Fi(...e)}},[Wi.primaryClass]:{"<*>":function(...e){return new si(...e)}},[so.primaryClass]:{"<*>":function(...e){return new Fi(...e)}},[oo.primaryClass]:{"<*>":function(...e){return new yi(...e)}},"json-schema-properties":{"[key: *]":function(...e){return new gi(...e)}},"json-schema-allOf":{"<*>":function(...e){return new gi(...e)}}},lo=(e,t)=>{const n=ao(e),r=uo[n]||uo[cr(e.classes.first)];return void 0===r?void 0:Object.prototype.hasOwnProperty.call(r,"[key: *]")?r["[key: *]"]:r[t]},po=()=>()=>({visitor:{StringElement(e,t,n,r,s){if(!(e=>se(e)&&we(["yaml-e-node","yaml-e-scalar"],e))(e))return;const i=[...s,n].filter(re),o=i[i.length-1];let a,c;return ue(o)?(c=e,a=lo(o,"<*>")):le(o)&&(c=i[i.length-2],a=lo(c,cr(o.key))),"function"==typeof a?a.call({context:c},void 0,mn(e.meta),mn(e.attributes)):void 0}}});const ho=class{element;constructor(e={}){Object.assign(this,e)}copyMetaAndAttributes(e,t){(e.meta.length>0||t.meta.length>0)&&(t.meta=fr(t.meta,e.meta),ve(e)&&t.meta.set("sourceMap",e.meta.get("sourceMap"))),(e.attributes.length>0||e.meta.length>0)&&(t.attributes=fr(t.attributes,e.attributes))}};const mo=class extends ho{enter(e){return this.element=mn(e),rn}},fo=(e,t,n=[])=>{const r=Object.getOwnPropertyDescriptors(t);for(let e of n)delete r[e];Object.defineProperties(e,r)},yo=(e,t=[e])=>{const n=Object.getPrototypeOf(e);return null===n?t:yo(n,[...t,n])},go=(e,t,n=[])=>{var r;const s=null!==(r=((...e)=>{if(0===e.length)return;let t;const n=e.map((e=>yo(e)));for(;n.every((e=>e.length>0));){const e=n.map((e=>e.pop())),r=e[0];if(!e.every((e=>e===r)))break;t=r}return t})(...e))&&void 0!==r?r:Object.prototype,i=Object.create(s),o=yo(s);for(let t of e){let e=yo(t);for(let t=e.length-1;t>=0;t--){let r=e[t];-1===o.indexOf(r)&&(fo(i,r,["constructor",...n]),o.push(r))}}return i.constructor=t,i},vo=e=>e.filter(((t,n)=>e.indexOf(t)==n)),bo=(e,t)=>{const n=t.map((e=>yo(e)));let r=0,s=!0;for(;s;){s=!1;for(let i=t.length-1;i>=0;i--){const t=n[i][r];if(null!=t&&(s=!0,null!=Object.getOwnPropertyDescriptor(t,e)))return n[i][0]}r++}},wo=(e,t=Object.prototype)=>new Proxy({},{getPrototypeOf:()=>t,setPrototypeOf(){throw Error("Cannot set prototype of Proxies created by ts-mixer")},getOwnPropertyDescriptor:(t,n)=>Object.getOwnPropertyDescriptor(bo(n,e)||{},n),defineProperty(){throw new Error("Cannot define new properties on Proxies created by ts-mixer")},has:(n,r)=>void 0!==bo(r,e)||void 0!==t[r],get:(n,r)=>(bo(r,e)||t)[r],set(t,n,r){const s=bo(n,e);if(void 0===s)throw new Error("Cannot set new properties on Proxies created by ts-mixer");return s[n]=r,!0},deleteProperty(){throw new Error("Cannot delete properties on Proxies created by ts-mixer")},ownKeys:()=>e.map(Object.getOwnPropertyNames).reduce(((e,t)=>t.concat(e.filter((e=>t.indexOf(e)<0)))))}),Eo=null,xo="copy",jo="copy",Oo="deep",So=new WeakMap,Po=e=>So.get(e),Ao=(e,t)=>{var n,r;const s=vo([...Object.getOwnPropertyNames(e),...Object.getOwnPropertyNames(t)]),i={};for(let o of s)i[o]=vo([...null!==(n=null==e?void 0:e[o])&&void 0!==n?n:[],...null!==(r=null==t?void 0:t[o])&&void 0!==r?r:[]]);return i},_o=(e,t)=>{var n,r,s,i;return{property:Ao(null!==(n=null==e?void 0:e.property)&&void 0!==n?n:{},null!==(r=null==t?void 0:t.property)&&void 0!==r?r:{}),method:Ao(null!==(s=null==e?void 0:e.method)&&void 0!==s?s:{},null!==(i=null==t?void 0:t.method)&&void 0!==i?i:{})}},ko=(e,t)=>{var n,r,s,i,o,a;return{class:vo([...null!==(n=null==e?void 0:e.class)&&void 0!==n?n:[],...null!==(r=null==t?void 0:t.class)&&void 0!==r?r:[]]),static:_o(null!==(s=null==e?void 0:e.static)&&void 0!==s?s:{},null!==(i=null==t?void 0:t.static)&&void 0!==i?i:{}),instance:_o(null!==(o=null==e?void 0:e.instance)&&void 0!==o?o:{},null!==(a=null==t?void 0:t.instance)&&void 0!==a?a:{})}},Mo=new Map,Io=(...e)=>{const t=((...e)=>{var t;const n=new Set,r=new Set([...e]);for(;r.size>0;)for(let e of r){const s=[...yo(e.prototype).map((e=>e.constructor)),...null!==(t=Po(e))&&void 0!==t?t:[]].filter((e=>!n.has(e)));for(let e of s)r.add(e);n.add(e),r.delete(e)}return[...n]})(...e).map((e=>Mo.get(e))).filter((e=>!!e));return 0==t.length?{}:1==t.length?t[0]:t.reduce(((e,t)=>ko(e,t)))},To=e=>{let t=Mo.get(e);return t||(t={},Mo.set(e,t)),t};function $o(...e){var t,n,r;const s=e.map((e=>e.prototype)),i=Eo;if(null!==i){const e=s.map((e=>e[i])).filter((e=>"function"==typeof e)),t={[i]:function(...t){for(let n of e)n.apply(this,t)}};s.push(t)}function o(...t){for(const n of e)fo(this,new n(...t));null!==i&&"function"==typeof this[i]&&this[i].apply(this,t)}var a,c;o.prototype="copy"===jo?go(s,o):(a=s,c=o,wo([...a,{constructor:c}])),Object.setPrototypeOf(o,"copy"===xo?go(e,null,["prototype"]):wo(e,Function.prototype));let u=o;if("none"!==Oo){const s="deep"===Oo?Io(...e):((...e)=>{const t=e.map((e=>To(e)));return 0===t.length?{}:1===t.length?t[0]:t.reduce(((e,t)=>ko(e,t)))})(...e);for(let e of null!==(t=null==s?void 0:s.class)&&void 0!==t?t:[]){const t=e(u);t&&(u=t)}Ro(null!==(n=null==s?void 0:s.static)&&void 0!==n?n:{},u),Ro(null!==(r=null==s?void 0:s.instance)&&void 0!==r?r:{},u.prototype)}var l,p;return l=u,p=e,So.set(l,p),u}const Ro=(e,t)=>{const n=e.property,r=e.method;if(n)for(let e in n)for(let r of n[e])r(t,e);if(r)for(let e in r)for(let n of r[e])n(t,e,Object.getOwnPropertyDescriptor(t,e))};const Fo=class extends ho{specObj;passingOptionsNames=["specObj"];constructor({specObj:e,...t}){super({...t}),this.specObj=e}retrievePassingOptions(){return vr(this.passingOptionsNames,this)}retrieveFixedFields(e){const t=$e(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]}retrieveVisitor(e){return Ft(Ot,["visitors",...e],this.specObj)?$e(["visitors",...e],this.specObj):$e(["visitors",...e,"$visitor"],this.specObj)}retrieveVisitorInstance(e,t={}){const n=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...n,...t})}toRefractedElement(e,t,n={}){const r=this.retrieveVisitorInstance(e,n);return r instanceof mo&&r?.constructor===mo?mn(t):(En(t,r,n),r.element)}};var Do=function(){function e(e,t){this.xf=t,this.n=e,this.i=0}return e.prototype["@@transducer/init"]=m,e.prototype["@@transducer/result"]=f,e.prototype["@@transducer/step"]=function(e,t){this.i+=1;var n=0===this.n?e:this.xf["@@transducer/step"](e,t);return this.n>=0&&this.i>=this.n?h(n):n},e}();function Co(e){return function(t){return new Do(e,t)}}const No=u(p(["take"],Co,(function(e,t){return Fe(0,e<0?1/0:e,t)})));const qo=u((function(e,t){return C(No(e.length,t),e)})),Vo=e=>se(e.key)&&qo("x-",cr(e.key)),Lo=e=>ce(e)&&e.hasKey("$ref");const Bo=class extends Fo{specPath;ignoredFields;canSupportSpecificationExtensions=!0;specificationExtensionPredicate=Vo;constructor({specPath:e,ignoredFields:t,canSupportSpecificationExtensions:n,specificationExtensionPredicate:r,...s}){super({...s}),this.specPath=e,this.ignoredFields=t||[],"boolean"==typeof n&&(this.canSupportSpecificationExtensions=n),"function"==typeof r&&(this.specificationExtensionPredicate=r)}ObjectElement(e){const t=this.specPath(e),n=this.retrieveFixedFields(t);return e.forEach(((e,r,s)=>{if(se(r)&&n.includes(cr(r))&&!this.ignoredFields.includes(cr(r))){const n=this.toRefractedElement([...t,"fixedFields",cr(r)],e),i=new o.Pr(mn(r),n);this.copyMetaAndAttributes(s,i),i.classes.push("fixed-field"),this.element.content.push(i)}else if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(s)){const e=this.toRefractedElement(["document","extension"],s);this.element.content.push(e)}else this.ignoredFields.includes(cr(r))||this.element.content.push(mn(s))})),this.copyMetaAndAttributes(e,this.element),rn}};class Ho extends($o(Bo,mo)){constructor(e){super(e),this.element=new Ls,this.specPath=z(["document","objects","Swagger"]),this.canSupportSpecificationExtensions=!0}}const zo=Ho;class Jo extends($o(Fo,mo)){StringElement(e){const t=new Hs(cr(e));return this.copyMetaAndAttributes(e,t),this.element=t,rn}}const Uo=Jo;const Go=class extends mo{StringElement(e){const t=super.enter(e);return this.element.classes.push("swagger-host"),t}};const Ko=class extends mo{StringElement(e){const t=super.enter(e);return this.element.classes.push("swagger-base-path"),t}};const Xo=class extends mo{constructor(e){super(e),this.element=new Zi}ArrayElement(e){return this.element=this.element.concat(mn(e)),rn}};const Wo=class extends mo{constructor(e){super(e),this.element=new eo}ArrayElement(e){return this.element=this.element.concat(mn(e)),rn}};const Yo=class extends mo{constructor(e){super(e),this.element=new no}ArrayElement(e){return this.element=this.element.concat(mn(e)),rn}};class Zo extends($o(Fo,mo)){constructor(e){super(e),this.element=new so}ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","SecurityRequirement"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}const Qo=Zo;class ea extends($o(Fo,mo)){constructor(e){super(e),this.element=new oo}ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","Tag"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}const ta=ea;class na extends($o(Bo,mo)){constructor(e){super(e),this.element=new Js,this.specPath=z(["document","objects","Info"]),this.canSupportSpecificationExtensions=!0}}const ra=na;const sa=class extends mo{StringElement(e){const t=super.enter(e);return this.element.classes.push("api-version"),this.element.classes.push("version"),t}};class ia extends($o(Bo,mo)){constructor(e){super(e),this.element=new Gs,this.specPath=z(["document","objects","Contact"]),this.canSupportSpecificationExtensions=!0}}const oa=ia;class aa extends($o(Bo,mo)){constructor(e){super(e),this.element=new Xs,this.specPath=z(["document","objects","License"]),this.canSupportSpecificationExtensions=!0}}const ca=aa;const ua=class extends Fo{specPath;ignoredFields;fieldPatternPredicate=Jr;canSupportSpecificationExtensions=!1;specificationExtensionPredicate=Vo;constructor({specPath:e,ignoredFields:t,fieldPatternPredicate:n,canSupportSpecificationExtensions:r,specificationExtensionPredicate:s,...i}){super({...i}),this.specPath=e,this.ignoredFields=t||[],"function"==typeof n&&(this.fieldPatternPredicate=n),"boolean"==typeof r&&(this.canSupportSpecificationExtensions=r),"function"==typeof s&&(this.specificationExtensionPredicate=s)}ObjectElement(e){return e.forEach(((e,t,n)=>{if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(n)){const e=this.toRefractedElement(["document","extension"],n);this.element.content.push(e)}else if(!this.ignoredFields.includes(cr(t))&&this.fieldPatternPredicate(cr(t))){const r=this.specPath(e),s=this.toRefractedElement(r,e),i=new o.Pr(mn(t),s);this.copyMetaAndAttributes(n,i),i.classes.push("patterned-field"),this.element.content.push(i)}else this.ignoredFields.includes(cr(t))||this.element.content.push(mn(n))})),this.copyMetaAndAttributes(e,this.element),rn}},la=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ls||e(r)&&t("swagger",r)&&n("object",r))),pa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Hs||e(r)&&t("swaggerVersion",r)&&n("string",r))),ha=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Js||e(r)&&t("info",r)&&n("object",r))),ma=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Xs||e(r)&&t("license",r)&&n("object",r))),fa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Gs||e(r)&&t("contact",r)&&n("object",r))),da=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ys||e(r)&&t("paths",r)&&n("object",r))),ya=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Qs||e(r)&&t("pathItem",r)&&n("object",r))),ga=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ti||e(r)&&t("operation",r)&&n("object",r))),va=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ri||e(r)&&t("externalDocumentation",r)&&n("object",r))),ba=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof si||e(r)&&t("parameter",r)&&n("object",r))),wa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ii||e(r)&&t("items",r)&&n("object",r))),Ea=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ui||e(r)&&t("responses",r)&&n("object",r))),xa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof pi||e(r)&&t("response",r)&&n("object",r))),ja=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof mi||e(r)&&t("headers",r)&&n("object",r))),Oa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ai||e(r)&&t("example",r)&&n("object",r))),Sa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof fi||e(r)&&t("header",r)&&n("object",r))),Pa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof yi||e(r)&&t("tag",r)&&n("object",r))),Aa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ei||e(r)&&t("reference",r)&&n("object",r))),_a=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof gi||e(r)&&t("schema",r)&&n("object",r))),ka=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof bi||e(r)&&t("xml",r)&&n("object",r))),Ma=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ai||e(r)&&t("responsesDefinitions",r)&&n("object",r))),Ia=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ki||e(r)&&t("securityDefinitions",r)&&n("object",r))),Ta=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof ji||e(r)&&t("definitions",r)&&n("object",r))),$a=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Si||e(r)&&t("parametersDefinitions",r)&&n("object",r))),Ra=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Ii||e(r)&&t("securityScheme",r)&&n("object",r))),Fa=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof $i||e(r)&&t("scopes",r)&&n("object",r))),Da=ne((({hasBasicElementProps:e,isElementType:t,primitiveEq:n})=>r=>r instanceof Fi||e(r)&&t("securityRequirement",r)&&n("object",r)));class Ca extends($o(ua,mo)){element;constructor(e){super(e),this.element=new Ys,this.specPath=z(["document","objects","PathItem"]),this.canSupportSpecificationExtensions=!0,this.fieldPatternPredicate=tr}ObjectElement(e){const t=ua.prototype.ObjectElement.call(this,e);return this.element.filter(ya).forEach(((e,t)=>{t.classes.push("openapi-path-template"),t.classes.push("path-template"),e.setMetaProperty("path",mn(t))})),t}}const Na=Ca;class qa extends($o(Bo,mo)){constructor(e){super(e),this.element=new Qs,this.specPath=z(["document","objects","PathItem"])}ObjectElement(e){const t=Bo.prototype.ObjectElement.call(this,e);return this.element.filter(ga).forEach(((e,t)=>{const n=mn(t);n.content=cr(n).toUpperCase(),e.setMetaProperty("http-method",n)})),se(this.element.$ref)&&this.element.classes.push("reference-element"),t}}const Va=qa;const La=class extends mo{StringElement(e){const t=super.enter(e);return this.element.classes.push("reference-value"),t}};class Ba extends($o(Fo,mo)){constructor(e){super(e),this.element=new Wi}ArrayElement(e){return e.forEach((e=>{const t=Lo(e)?["document","objects","Reference"]:["document","objects","Parameter"],n=this.toRefractedElement(t,e);Aa(n)&&n.setMetaProperty("referenced-element","parameter"),this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}const Ha=Ba;class za extends($o(Bo,mo)){constructor(e){super(e),this.element=new ti,this.specPath=z(["document","objects","Operation"])}}const Ja=za;const Ua=class extends mo{constructor(e){super(e),this.element=new Ki}ArrayElement(e){return this.element=this.element.concat(mn(e)),rn}};const Ga=class extends mo{constructor(e){super(e),this.element=new Ni}ArrayElement(e){return this.element=this.element.concat(mn(e)),rn}};const Ka=class extends mo{constructor(e){super(e),this.element=new Bi}ArrayElement(e){return this.element=this.element.concat(mn(e)),rn}};class Xa extends($o(Fo,mo)){constructor(e){super(e),this.element=new Vi}ArrayElement(e){return e.forEach((e=>{const t=Lo(e)?["document","objects","Reference"]:["document","objects","Parameter"],n=this.toRefractedElement(t,e);Aa(n)&&n.setMetaProperty("referenced-element","parameter"),this.element.push(n)})),this.copyMetaAndAttributes(e,this.element),rn}}const Wa=Xa;const Ya=class extends mo{constructor(e){super(e),this.element=new zi}ArrayElement(e){return this.element=this.element.concat(mn(e)),rn}};class Za extends($o(Fo,mo)){constructor(e){super(e),this.element=new Ui}ArrayElement(e){return e.forEach((e=>{const t=this.toRefractedElement(["document","objects","SecurityRequirement"],e);this.element.push(t)})),this.copyMetaAndAttributes(e,this.element),rn}}const Qa=Za;class ec extends($o(Bo,mo)){constructor(e){super(e),this.element=new ri,this.specPath=z(["document","objects","ExternalDocumentation"]),this.canSupportSpecificationExtensions=!0}}const tc=ec;class nc extends($o(Bo,mo)){constructor(e){super(e),this.element=new si,this.specPath=z(["document","objects","Parameter"]),this.canSupportSpecificationExtensions=!0}}const rc=nc;class sc extends($o(Bo,mo)){specPath;canSupportSpecificationExtensions;constructor(e){super(e),this.element=new ii,this.specPath=z(["document","objects","Items"]),this.canSupportSpecificationExtensions=!0}}const ic=sc;const oc=u((function(e,t){if(n=e,"[object RegExp]"!==Object.prototype.toString.call(n))throw new TypeError("‘test’ requires a value of type RegExp as its first argument; received "+at(e));var n;return function(e){return new RegExp(e.source,e.flags?e.flags:(e.global?"g":"")+(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.sticky?"y":"")+(e.unicode?"u":"")+(e.dotAll?"s":""))}(e).test(t)}));function ac(e){return"[object Number]"===Object.prototype.toString.call(e)}const cc=u((function(e,t){if(!ac(e)||!ac(t))throw new TypeError("Both arguments to range must be numbers");for(var n=[],r=e;r<t;)n.push(r),r+=1;return n}));function uc(e,t,n){var r,s=typeof e;switch(s){case"string":case"number":return 0===e&&1/e==-1/0?!!n._items["-0"]||(t&&(n._items["-0"]=!0),!1):null!==n._nativeSet?t?(r=n._nativeSet.size,n._nativeSet.add(e),n._nativeSet.size===r):n._nativeSet.has(e):s in n._items?e in n._items[s]||(t&&(n._items[s][e]=!0),!1):(t&&(n._items[s]={},n._items[s][e]=!0),!1);case"boolean":if(s in n._items){var i=e?1:0;return!!n._items[s][i]||(t&&(n._items[s][i]=!0),!1)}return t&&(n._items[s]=e?[!1,!0]:[!0,!1]),!1;case"function":return null!==n._nativeSet?t?(r=n._nativeSet.size,n._nativeSet.add(e),n._nativeSet.size===r):n._nativeSet.has(e):s in n._items?!!N(e,n._items[s])||(t&&n._items[s].push(e),!1):(t&&(n._items[s]=[e]),!1);case"undefined":return!!n._items[s]||(t&&(n._items[s]=!0),!1);case"object":if(null===e)return!!n._items.null||(t&&(n._items.null=!0),!1);default:return(s=Object.prototype.toString.call(e))in n._items?!!N(e,n._items[s])||(t&&n._items[s].push(e),!1):(t&&(n._items[s]=[e]),!1)}}const lc=function(){function e(){this._nativeSet="function"==typeof Set?new Set:null,this._items={}}return e.prototype.add=function(e){return!uc(e,!0,this)},e.prototype.has=function(e){return uc(e,!1,this)},e}();const pc=u((function(e,t){for(var n=[],r=0,s=e.length,i=t.length,o=new lc,a=0;a<i;a+=1)o.add(t[a]);for(;r<s;)o.add(e[r])&&(n[n.length]=e[r]),r+=1;return n}));class hc extends($o(Bo,ua)){specPathFixedFields;specPathPatternedFields;constructor({specPathFixedFields:e,specPathPatternedFields:t,...n}){super({...n}),this.specPathFixedFields=e,this.specPathPatternedFields=t}ObjectElement(e){const{specPath:t,ignoredFields:n}=this;try{this.specPath=this.specPathFixedFields;const t=this.retrieveFixedFields(this.specPath(e));this.ignoredFields=[...n,...pc(e.keys(),t)],Bo.prototype.ObjectElement.call(this,e),this.specPath=this.specPathPatternedFields,this.ignoredFields=t,ua.prototype.ObjectElement.call(this,e)}catch(e){throw this.specPath=t,e}return rn}}const mc=hc;class fc extends($o(mc,mo)){constructor(e){super(e),this.element=new ui,this.specPathFixedFields=z(["document","objects","Responses"]),this.canSupportSpecificationExtensions=!0,this.specPathPatternedFields=e=>Lo(e)?["document","objects","Reference"]:["document","objects","Response"],this.fieldPatternPredicate=oc(new RegExp(`^(1XX|2XX|3XX|4XX|5XX|${cc(100,600).join("|")})$`))}ObjectElement(e){const t=mc.prototype.ObjectElement.call(this,e);return this.element.filter(Aa).forEach((e=>{e.setMetaProperty("referenced-element","response")})),this.element.filter(xa).forEach(((e,t)=>{const n=mn(t);this.fieldPatternPredicate(cr(n))&&e.setMetaProperty("http-status-code",n)})),t}}const dc=fc;const yc=class extends Fo{alternator;constructor({alternator:e,...t}){super({...t}),this.alternator=e||[]}enter(e){const t=this.alternator.map((({predicate:e,specPath:t})=>hs(e,z(t),J))),n=Os(t)(e);return this.element=this.toRefractedElement(n,e),rn}};class gc extends($o(yc,mo)){constructor(e){super(e),this.alternator=[{predicate:Lo,specPath:["document","objects","Reference"]},{predicate:tr,specPath:["document","objects","Response"]}]}ObjectElement(e){const t=yc.prototype.enter.call(this,e);return Aa(this.element)?this.element.setMetaProperty("referenced-element","response"):xa(this.element)&&this.element.setMetaProperty("http-status-code","default"),t}}const vc=gc;class bc extends($o(Bo,mo)){constructor(e){super(e),this.element=new pi,this.specPath=z(["document","objects","Response"]),this.canSupportSpecificationExtensions=!0}}const wc=bc;const Ec=class extends ua{constructor(e){super(e),this.fieldPatternPredicate=zr}};class xc extends($o(Ec,mo)){constructor(e){super(e),this.element=new mi,this.specPath=z(["document","objects","Header"]),this.canSupportSpecificationExtensions=!1}}const jc=xc;class Oc extends($o(Ec,mo)){constructor(e){super(e),this.element=new ai,this.specPath=z(["value"]),this.canSupportSpecificationExtensions=!1}}const Sc=Oc;class Pc extends($o(Bo,mo)){constructor(e){super(e),this.element=new fi,this.specPath=z(["document","objects","Header"]),this.canSupportSpecificationExtensions=!0}}const Ac=Pc;class _c extends($o(Bo,mo)){constructor(e){super(e),this.element=new yi,this.specPath=z(["document","objects","Tag"]),this.canSupportSpecificationExtensions=!0}}const kc=_c;class Mc extends($o(Bo,mo)){constructor(e){super(e),this.element=new Ei,this.specPath=z(["document","objects","Reference"]),this.canSupportSpecificationExtensions=!1}ObjectElement(e){const t=Bo.prototype.ObjectElement.call(this,e);return se(this.element.$ref)&&this.element.classes.push("reference-element"),t}}const Ic=Mc;const Tc=class extends mo{StringElement(e){const t=super.enter(e);return this.element.classes.push("reference-value"),t}};class $c extends($o(Bo,mo)){constructor(e){super(e),this.element=new gi,this.specPath=z(["document","objects","Schema"]),this.canSupportSpecificationExtensions=!0}}const Rc=$c,{allOf:Fc}=As.visitors.document.objects.JSONSchema.fixedFields,Dc=Fc.compose({methods:{ArrayElement(e){const t=Fc.compose.methods.ArrayElement.call(this,e);return this.element.filter(Fn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}}),{items:Cc}=As.visitors.document.objects.JSONSchema.fixedFields,Nc=Cc.compose({methods:{ObjectElement(e){const t=Cc.compose.methods.ObjectElement.call(this,e);return Fn(this.element)&&this.element.setMetaProperty("referenced-element","schema"),t},ArrayElement(e){const t=Cc.compose.methods.ArrayElement.call(this,e);return this.element.filter(Fn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}}),{properties:qc}=As.visitors.document.objects.JSONSchema.fixedFields,Vc=qc.compose({methods:{ObjectElement(e){const t=qc.compose.methods.ObjectElement.call(this,e);return this.element.filter(Fn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}}),{JSONSchemaOrJSONReferenceVisitor:Lc}=As.visitors,Bc=Lc.compose({methods:{ObjectElement(e){const t=Lc.compose.methods.enter.call(this,e);return Fn(this.element)&&this.element.setMetaProperty("referenced-element","schema"),t}}});class Hc extends($o(Bo,mo)){constructor(e){super(e),this.element=new bi,this.specPath=z(["document","objects","XML"]),this.canSupportSpecificationExtensions=!0}}const zc=Hc;class Jc extends($o(Ec,mo)){constructor(e){super(e),this.element=new ji,this.specPath=e=>Nn(e)?["document","objects","JSONReference"]:["document","objects","Schema"]}ObjectElement(e){const t=Ec.prototype.ObjectElement.call(this,e);return this.element.filter(Fn).forEach((e=>{e.setMetaProperty("referenced-element","schema")})),t}}const Uc=Jc;class Gc extends($o(Ec,mo)){constructor(e){super(e),this.element=new Ai,this.specPath=z(["document","objects","Response"])}}const Kc=Gc;class Xc extends($o(Ec,mo)){constructor(e){super(e),this.element=new Si,this.specPath=z(["document","objects","Parameter"])}}const Wc=Xc;class Yc extends($o(Ec,mo)){element;constructor(e){super(e),this.element=new ki,this.specPath=z(["document","objects","SecurityScheme"])}}const Zc=Yc;class Qc extends($o(Bo,mo)){constructor(e){super(e),this.element=new Ii,this.specPath=z(["document","objects","SecurityScheme"]),this.canSupportSpecificationExtensions=!0}}const eu=Qc;class tu extends($o(Ec,mo)){constructor(e){super(e),this.element=new $i,this.specPath=z(["value"]),this.canSupportSpecificationExtensions=!0}}const nu=tu;class ru extends($o(Ec,mo)){constructor(e){super(e),this.element=new Fi,this.specPath=z(["value"])}}const su=ru;const iu=class extends Fo{MemberElement(e){return this.element=mn(e),this.element.classes.push("specification-extension"),rn}},{fixedFields:ou}=As.visitors.document.objects.JSONSchema,au={visitors:{value:mo,document:{objects:{JSONReference:As.visitors.document.objects.JSONReference,JSONSchema:{$ref:"#/visitors/document/objects/Schema"},Swagger:{$visitor:zo,fixedFields:{swagger:Uo,info:{$ref:"#/visitors/document/objects/Info"},host:Go,basePath:Ko,schemes:Xo,consumes:Wo,produces:Yo,paths:{$ref:"#/visitors/document/objects/Paths"},definitions:{$ref:"#/visitors/document/objects/Definitions"},parameters:{$ref:"#/visitors/document/objects/ParametersDefinitions"},responses:{$ref:"#/visitors/document/objects/ResponsesDefinitions"},securityDefinitions:{$ref:"#/visitors/document/objects/SecurityDefinitions"},security:Qo,tags:ta,externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"}}},Info:{$visitor:ra,fixedFields:{title:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},termsOfService:{$ref:"#/visitors/value"},contact:{$ref:"#/visitors/document/objects/Contact"},license:{$ref:"#/visitors/document/objects/License"},version:sa}},Contact:{$visitor:oa,fixedFields:{name:{$ref:"#/visitors/value"},url:{$ref:"#/visitors/value"},email:{$ref:"#/visitors/value"}}},License:{$visitor:ca,fixedFields:{name:{$ref:"#/visitors/value"},url:{$ref:"#/visitors/value"}}},Paths:{$visitor:Na},PathItem:{$visitor:Va,fixedFields:{$ref:La,get:{$ref:"#/visitors/document/objects/Operation"},put:{$ref:"#/visitors/document/objects/Operation"},post:{$ref:"#/visitors/document/objects/Operation"},delete:{$ref:"#/visitors/document/objects/Operation"},options:{$ref:"#/visitors/document/objects/Operation"},head:{$ref:"#/visitors/document/objects/Operation"},patch:{$ref:"#/visitors/document/objects/Operation"},parameters:Ha}},Operation:{$visitor:Ja,fixedFields:{tags:Ua,summary:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"},operationId:{$ref:"#/visitors/value"},consumes:Ga,produces:Ka,parameters:Wa,responses:{$ref:"#/visitors/document/objects/Responses"},schemes:Ya,deprecated:{$ref:"#/visitors/value"},security:Qa}},ExternalDocumentation:{$visitor:tc,fixedFields:{description:{$ref:"#/visitors/value"},url:{$ref:"#/visitors/value"}}},Parameter:{$visitor:rc,fixedFields:{name:{$ref:"#/visitors/value"},in:{$ref:"#/visitors/value"},description:ou.description,required:ou.required,schema:Bc,type:ou.type,format:ou.format,items:{$ref:"#/visitors/document/objects/Items"},collectionFormat:{$ref:"#/visitors/value"},default:ou.default,maximum:ou.maximum,exclusiveMaximum:ou.exclusiveMaximum,minimum:ou.minimum,exclusiveMinimum:ou.exclusiveMinimum,maxLength:ou.maxLength,minLength:ou.minLength,pattern:ou.pattern,maxItems:ou.maxItems,minItems:ou.minItems,uniqueItems:ou.uniqueItems,enum:ou.enum,multipleOf:ou.multipleOf}},Items:{$visitor:ic,fixedFields:{type:ou.type,format:ou.format,items:{$ref:"#/visitors/document/objects/Items"},collectionFormat:{$ref:"#/visitors/value"},default:ou.default,maximum:ou.maximum,exclusiveMaximum:ou.exclusiveMaximum,minimum:ou.minimum,exclusiveMinimum:ou.exclusiveMinimum,maxLength:ou.maxLength,minLength:ou.minLength,pattern:ou.pattern,maxItems:ou.maxItems,minItems:ou.minItems,uniqueItems:ou.uniqueItems,enum:ou.enum,multipleOf:ou.multipleOf}},Responses:{$visitor:dc,fixedFields:{default:vc}},Response:{$visitor:wc,fixedFields:{description:{$ref:"#/visitors/value"},schema:Bc,headers:{$ref:"#/visitors/document/objects/Headers"},examples:{$ref:"#/visitors/document/objects/Example"}}},Headers:{$visitor:jc},Example:{$visitor:Sc},Header:{$visitor:Ac,fixedFields:{description:ou.description,type:ou.type,format:ou.format,items:{$ref:"#/visitors/document/objects/Items"},collectionFormat:{$ref:"#/visitors/value"},default:ou.default,maximum:ou.maximum,exclusiveMaximum:ou.exclusiveMaximum,minimum:ou.minimum,exclusiveMinimum:ou.exclusiveMinimum,maxLength:ou.maxLength,minLength:ou.minLength,pattern:ou.pattern,maxItems:ou.maxItems,minItems:ou.minItems,uniqueItems:ou.uniqueItems,enum:ou.enum,multipleOf:ou.multipleOf}},Tag:{$visitor:kc,fixedFields:{name:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"}}},Reference:{$visitor:Ic,fixedFields:{$ref:Tc}},Schema:{$visitor:Rc,fixedFields:{format:ou.format,title:ou.title,description:ou.description,default:ou.default,multipleOf:ou.multipleOf,maximum:ou.maximum,exclusiveMaximum:ou.exclusiveMaximum,minimum:ou.minimum,exclusiveMinimum:ou.exclusiveMinimum,maxLength:ou.maxLength,minLength:ou.minLength,pattern:ou.pattern,maxItems:ou.maxItems,minItems:ou.minItems,uniqueItems:ou.uniqueItems,maxProperties:ou.maxProperties,minProperties:ou.minProperties,required:ou.required,enum:ou.enum,type:ou.type,readOnly:ou.readOnly,items:Nc,allOf:Dc,properties:Vc,additionalProperties:Bc,discriminator:{$ref:"#/visitors/value"},xml:{$ref:"#/visitors/document/objects/XML"},externalDocs:{$ref:"#/visitors/document/objects/ExternalDocumentation"},example:{$ref:"#/visitors/value"}}},XML:{$visitor:zc,fixedFields:{name:{$ref:"#/visitors/value"},namespace:{$ref:"#/visitors/value"},prefix:{$ref:"#/visitors/value"},attribute:{$ref:"#/visitors/value"},wrapped:{$ref:"#/visitors/value"}}},Definitions:{$visitor:Uc},ParametersDefinitions:{$visitor:Wc},ResponsesDefinitions:{$visitor:Kc},SecurityDefinitions:{$visitor:Zc},SecurityScheme:{$visitor:eu,fixedFields:{type:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},name:{$ref:"#/visitors/value"},in:{$ref:"#/visitors/value"},flow:{$ref:"#/visitors/value"},authorizationUrl:{$ref:"#/visitors/value"},token:{$ref:"#/visitors/value"},scopes:{$ref:"#/visitors/document/objects/Scopes"}}},Scopes:{$visitor:nu},SecurityRequirement:{$visitor:su}},extension:{$visitor:iu}}}},cu=()=>{const e=Gt(Di);return{predicates:{...s,...i,isStringElement:se},namespace:e}},uu=(e,{specPath:t=["visitors","document","objects","Swagger","$visitor"],plugins:n=[]}={})=>{const r=(0,o.e)(e),s=Qn(au),i=new($e(t,s))({specObj:s});return En(r,i),jn(i.element,n,{toolboxCreator:cu,visitorOptions:{keyMap:co,nodeTypeGetter:ao}})},lu=e=>(t,n={})=>uu(t,{specPath:e,...n}),pu=uu})(),r})()));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swagger-api/apidom-ns-openapi-2",
3
- "version": "0.98.0",
3
+ "version": "0.99.0",
4
4
  "description": "OpenAPI 2.0 namespace for ApiDOM.",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -42,9 +42,9 @@
42
42
  "license": "Apache-2.0",
43
43
  "dependencies": {
44
44
  "@babel/runtime-corejs3": "^7.20.7",
45
- "@swagger-api/apidom-core": "^0.98.0",
46
- "@swagger-api/apidom-error": "^0.98.0",
47
- "@swagger-api/apidom-ns-json-schema-draft-4": "^0.98.0",
45
+ "@swagger-api/apidom-core": "^0.99.0",
46
+ "@swagger-api/apidom-error": "^0.99.0",
47
+ "@swagger-api/apidom-ns-json-schema-draft-4": "^0.99.0",
48
48
  "@types/ramda": "~0.29.6",
49
49
  "ramda": "~0.29.1",
50
50
  "ramda-adjunct": "^4.1.1",
@@ -60,5 +60,5 @@
60
60
  "README.md",
61
61
  "CHANGELOG.md"
62
62
  ],
63
- "gitHead": "1ab373182c91e23f960e01b8722d3381b2dfa936"
63
+ "gitHead": "e3c5ac3e738d561a0eb6d9d0f729e0d6bf20b00f"
64
64
  }