@swagger-api/apidom-ast 1.0.0-alpha.1 → 1.0.0-alpha.3

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,18 @@
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
+ # [1.0.0-alpha.3](https://github.com/swagger-api/apidom/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-05-21)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **ast:** fix visitor merging when performing node replacements ([#4124](https://github.com/swagger-api/apidom/issues/4124)) ([c89cbad](https://github.com/swagger-api/apidom/commit/c89cbadb00a0dadb08daf39f5be949bff67457f8)), closes [#4120](https://github.com/swagger-api/apidom/issues/4120)
11
+
12
+ # [1.0.0-alpha.2](https://github.com/swagger-api/apidom/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2024-05-20)
13
+
14
+ ### Features
15
+
16
+ - **ast:** add support for mutable node replacements ([#4121](https://github.com/swagger-api/apidom/issues/4121)) ([b37ecd2](https://github.com/swagger-api/apidom/commit/b37ecd2dba83aaa3813bb539ae64e98b290f0292)), closes [#4120](https://github.com/swagger-api/apidom/issues/4120)
17
+
6
18
  # [1.0.0-alpha.1](https://github.com/swagger-api/apidom/compare/v1.0.0-alpha.0...v1.0.0-alpha.1) (2024-05-15)
7
19
 
8
20
  **Note:** Version bump only for package @swagger-api/apidom-ast
@@ -57,7 +57,7 @@ const cloneNode = node => Object.create(Object.getPrototypeOf(node), Object.getO
57
57
  * parallel. Each visitor will be visited for each node before moving on.
58
58
  *
59
59
  * If a prior visitor edits a node, no following visitors will see that node.
60
- * `exposeEdits=true` can be used to exoise the edited node from the previous visitors.
60
+ * `exposeEdits=true` can be used to expose the edited node from the previous visitors.
61
61
  */
62
62
  exports.cloneNode = cloneNode;
63
63
  const mergeAll = (visitors, {
@@ -71,14 +71,21 @@ const mergeAll = (visitors, {
71
71
  const skipSymbol = Symbol('skip');
72
72
  const skipping = new Array(visitors.length).fill(skipSymbol);
73
73
  return {
74
- enter(node, ...rest) {
74
+ enter(node, key, parent, path, ancestors, link) {
75
75
  let currentNode = node;
76
76
  let hasChanged = false;
77
+ const linkProxy = {
78
+ ...link,
79
+ replaceWith(newNode, replacer) {
80
+ link.replaceWith(newNode, replacer);
81
+ currentNode = newNode;
82
+ }
83
+ };
77
84
  for (let i = 0; i < visitors.length; i += 1) {
78
85
  if (skipping[i] === skipSymbol) {
79
86
  const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), false);
80
87
  if (typeof visitFn === 'function') {
81
- const result = visitFn.call(visitors[i], currentNode, ...rest);
88
+ const result = visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
82
89
 
83
90
  // check if the visitor is async
84
91
  if (typeof (result == null ? void 0 : result.then) === 'function') {
@@ -88,7 +95,7 @@ const mergeAll = (visitors, {
88
95
  });
89
96
  }
90
97
  if (result === skipVisitingNodeSymbol) {
91
- skipping[i] = node;
98
+ skipping[i] = currentNode;
92
99
  } else if (result === breakSymbol) {
93
100
  skipping[i] = breakSymbol;
94
101
  } else if (result === deleteNodeSymbol) {
@@ -106,12 +113,20 @@ const mergeAll = (visitors, {
106
113
  }
107
114
  return hasChanged ? currentNode : undefined;
108
115
  },
109
- leave(node, ...rest) {
116
+ leave(node, key, parent, path, ancestors, link) {
117
+ let currentNode = node;
118
+ const linkProxy = {
119
+ ...link,
120
+ replaceWith(newNode, replacer) {
121
+ link.replaceWith(newNode, replacer);
122
+ currentNode = newNode;
123
+ }
124
+ };
110
125
  for (let i = 0; i < visitors.length; i += 1) {
111
126
  if (skipping[i] === skipSymbol) {
112
- const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(node), true);
127
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), true);
113
128
  if (typeof visitFn === 'function') {
114
- const result = visitFn.call(visitors[i], node, ...rest);
129
+ const result = visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
115
130
 
116
131
  // check if the visitor is async
117
132
  if (typeof (result == null ? void 0 : result.then) === 'function') {
@@ -126,7 +141,7 @@ const mergeAll = (visitors, {
126
141
  return result;
127
142
  }
128
143
  }
129
- } else if (skipping[i] === node) {
144
+ } else if (skipping[i] === currentNode) {
130
145
  skipping[i] = skipSymbol;
131
146
  }
132
147
  }
@@ -146,17 +161,24 @@ const mergeAllAsync = (visitors, {
146
161
  const skipSymbol = Symbol('skip');
147
162
  const skipping = new Array(visitors.length).fill(skipSymbol);
148
163
  return {
149
- async enter(node, ...rest) {
164
+ async enter(node, key, parent, path, ancestors, link) {
150
165
  let currentNode = node;
151
166
  let hasChanged = false;
167
+ const linkProxy = {
168
+ ...link,
169
+ replaceWith(newNode, replacer) {
170
+ link.replaceWith(newNode, replacer);
171
+ currentNode = newNode;
172
+ }
173
+ };
152
174
  for (let i = 0; i < visitors.length; i += 1) {
153
175
  if (skipping[i] === skipSymbol) {
154
176
  const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), false);
155
177
  if (typeof visitFn === 'function') {
156
178
  // eslint-disable-next-line no-await-in-loop
157
- const result = await visitFn.call(visitors[i], currentNode, ...rest);
179
+ const result = await visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
158
180
  if (result === skipVisitingNodeSymbol) {
159
- skipping[i] = node;
181
+ skipping[i] = currentNode;
160
182
  } else if (result === breakSymbol) {
161
183
  skipping[i] = breakSymbol;
162
184
  } else if (result === deleteNodeSymbol) {
@@ -174,20 +196,28 @@ const mergeAllAsync = (visitors, {
174
196
  }
175
197
  return hasChanged ? currentNode : undefined;
176
198
  },
177
- async leave(node, ...rest) {
199
+ async leave(node, key, parent, path, ancestors, link) {
200
+ let currentNode = node;
201
+ const linkProxy = {
202
+ ...link,
203
+ replaceWith(newNode, replacer) {
204
+ link.replaceWith(newNode, replacer);
205
+ currentNode = newNode;
206
+ }
207
+ };
178
208
  for (let i = 0; i < visitors.length; i += 1) {
179
209
  if (skipping[i] === skipSymbol) {
180
- const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(node), true);
210
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), true);
181
211
  if (typeof visitFn === 'function') {
182
212
  // eslint-disable-next-line no-await-in-loop
183
- const result = await visitFn.call(visitors[i], node, ...rest);
213
+ const result = await visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
184
214
  if (result === breakSymbol) {
185
215
  skipping[i] = breakSymbol;
186
216
  } else if (result !== undefined && result !== skipVisitingNodeSymbol) {
187
217
  return result;
188
218
  }
189
219
  }
190
- } else if (skipping[i] === node) {
220
+ } else if (skipping[i] === currentNode) {
191
221
  skipping[i] = skipSymbol;
192
222
  }
193
223
  }
@@ -383,8 +413,22 @@ visitor, {
383
413
  for (const [stateKey, stateValue] of Object.entries(state)) {
384
414
  visitor[stateKey] = stateValue;
385
415
  }
416
+ const link = {
417
+ // eslint-disable-next-line @typescript-eslint/no-loop-func
418
+ replaceWith(newNode, replacer) {
419
+ if (typeof replacer === 'function') {
420
+ replacer(newNode, node, key, parent, path, ancestors);
421
+ } else if (parent) {
422
+ parent[key] = newNode;
423
+ }
424
+ if (!isLeaving) {
425
+ node = newNode;
426
+ }
427
+ }
428
+ };
429
+
386
430
  // retrieve result
387
- result = visitFn.call(visitor, node, key, parent, path, ancestors);
431
+ result = visitFn.call(visitor, node, key, parent, path, ancestors, link);
388
432
  }
389
433
 
390
434
  // check if the visitor is async
@@ -542,9 +586,22 @@ visitor, {
542
586
  for (const [stateKey, stateValue] of Object.entries(state)) {
543
587
  visitor[stateKey] = stateValue;
544
588
  }
589
+ const link = {
590
+ // eslint-disable-next-line @typescript-eslint/no-loop-func
591
+ replaceWith(newNode, replacer) {
592
+ if (typeof replacer === 'function') {
593
+ replacer(newNode, node, key, parent, path, ancestors);
594
+ } else if (parent) {
595
+ parent[key] = newNode;
596
+ }
597
+ if (!isLeaving) {
598
+ node = newNode;
599
+ }
600
+ }
601
+ };
545
602
 
546
603
  // retrieve result
547
- result = await visitFn.call(visitor, node, key, parent, path, ancestors); // eslint-disable-line no-await-in-loop
604
+ result = await visitFn.call(visitor, node, key, parent, path, ancestors, link); // eslint-disable-line no-await-in-loop
548
605
  }
549
606
  if (result === breakSymbol) {
550
607
  break;
@@ -581,7 +581,7 @@ const cloneNode = node => Object.create(Object.getPrototypeOf(node), Object.getO
581
581
  * parallel. Each visitor will be visited for each node before moving on.
582
582
  *
583
583
  * If a prior visitor edits a node, no following visitors will see that node.
584
- * `exposeEdits=true` can be used to exoise the edited node from the previous visitors.
584
+ * `exposeEdits=true` can be used to expose the edited node from the previous visitors.
585
585
  */
586
586
 
587
587
  const mergeAll = (visitors, {
@@ -595,14 +595,21 @@ const mergeAll = (visitors, {
595
595
  const skipSymbol = Symbol('skip');
596
596
  const skipping = new Array(visitors.length).fill(skipSymbol);
597
597
  return {
598
- enter(node, ...rest) {
598
+ enter(node, key, parent, path, ancestors, link) {
599
599
  let currentNode = node;
600
600
  let hasChanged = false;
601
+ const linkProxy = {
602
+ ...link,
603
+ replaceWith(newNode, replacer) {
604
+ link.replaceWith(newNode, replacer);
605
+ currentNode = newNode;
606
+ }
607
+ };
601
608
  for (let i = 0; i < visitors.length; i += 1) {
602
609
  if (skipping[i] === skipSymbol) {
603
610
  const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), false);
604
611
  if (typeof visitFn === 'function') {
605
- const result = visitFn.call(visitors[i], currentNode, ...rest);
612
+ const result = visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
606
613
 
607
614
  // check if the visitor is async
608
615
  if (typeof result?.then === 'function') {
@@ -612,7 +619,7 @@ const mergeAll = (visitors, {
612
619
  });
613
620
  }
614
621
  if (result === skipVisitingNodeSymbol) {
615
- skipping[i] = node;
622
+ skipping[i] = currentNode;
616
623
  } else if (result === breakSymbol) {
617
624
  skipping[i] = breakSymbol;
618
625
  } else if (result === deleteNodeSymbol) {
@@ -630,12 +637,20 @@ const mergeAll = (visitors, {
630
637
  }
631
638
  return hasChanged ? currentNode : undefined;
632
639
  },
633
- leave(node, ...rest) {
640
+ leave(node, key, parent, path, ancestors, link) {
641
+ let currentNode = node;
642
+ const linkProxy = {
643
+ ...link,
644
+ replaceWith(newNode, replacer) {
645
+ link.replaceWith(newNode, replacer);
646
+ currentNode = newNode;
647
+ }
648
+ };
634
649
  for (let i = 0; i < visitors.length; i += 1) {
635
650
  if (skipping[i] === skipSymbol) {
636
- const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(node), true);
651
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), true);
637
652
  if (typeof visitFn === 'function') {
638
- const result = visitFn.call(visitors[i], node, ...rest);
653
+ const result = visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
639
654
 
640
655
  // check if the visitor is async
641
656
  if (typeof result?.then === 'function') {
@@ -650,7 +665,7 @@ const mergeAll = (visitors, {
650
665
  return result;
651
666
  }
652
667
  }
653
- } else if (skipping[i] === node) {
668
+ } else if (skipping[i] === currentNode) {
654
669
  skipping[i] = skipSymbol;
655
670
  }
656
671
  }
@@ -669,17 +684,24 @@ const mergeAllAsync = (visitors, {
669
684
  const skipSymbol = Symbol('skip');
670
685
  const skipping = new Array(visitors.length).fill(skipSymbol);
671
686
  return {
672
- async enter(node, ...rest) {
687
+ async enter(node, key, parent, path, ancestors, link) {
673
688
  let currentNode = node;
674
689
  let hasChanged = false;
690
+ const linkProxy = {
691
+ ...link,
692
+ replaceWith(newNode, replacer) {
693
+ link.replaceWith(newNode, replacer);
694
+ currentNode = newNode;
695
+ }
696
+ };
675
697
  for (let i = 0; i < visitors.length; i += 1) {
676
698
  if (skipping[i] === skipSymbol) {
677
699
  const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), false);
678
700
  if (typeof visitFn === 'function') {
679
701
  // eslint-disable-next-line no-await-in-loop
680
- const result = await visitFn.call(visitors[i], currentNode, ...rest);
702
+ const result = await visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
681
703
  if (result === skipVisitingNodeSymbol) {
682
- skipping[i] = node;
704
+ skipping[i] = currentNode;
683
705
  } else if (result === breakSymbol) {
684
706
  skipping[i] = breakSymbol;
685
707
  } else if (result === deleteNodeSymbol) {
@@ -697,20 +719,28 @@ const mergeAllAsync = (visitors, {
697
719
  }
698
720
  return hasChanged ? currentNode : undefined;
699
721
  },
700
- async leave(node, ...rest) {
722
+ async leave(node, key, parent, path, ancestors, link) {
723
+ let currentNode = node;
724
+ const linkProxy = {
725
+ ...link,
726
+ replaceWith(newNode, replacer) {
727
+ link.replaceWith(newNode, replacer);
728
+ currentNode = newNode;
729
+ }
730
+ };
701
731
  for (let i = 0; i < visitors.length; i += 1) {
702
732
  if (skipping[i] === skipSymbol) {
703
- const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(node), true);
733
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), true);
704
734
  if (typeof visitFn === 'function') {
705
735
  // eslint-disable-next-line no-await-in-loop
706
- const result = await visitFn.call(visitors[i], node, ...rest);
736
+ const result = await visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
707
737
  if (result === breakSymbol) {
708
738
  skipping[i] = breakSymbol;
709
739
  } else if (result !== undefined && result !== skipVisitingNodeSymbol) {
710
740
  return result;
711
741
  }
712
742
  }
713
- } else if (skipping[i] === node) {
743
+ } else if (skipping[i] === currentNode) {
714
744
  skipping[i] = skipSymbol;
715
745
  }
716
746
  }
@@ -905,8 +935,22 @@ visitor, {
905
935
  for (const [stateKey, stateValue] of Object.entries(state)) {
906
936
  visitor[stateKey] = stateValue;
907
937
  }
938
+ const link = {
939
+ // eslint-disable-next-line @typescript-eslint/no-loop-func
940
+ replaceWith(newNode, replacer) {
941
+ if (typeof replacer === 'function') {
942
+ replacer(newNode, node, key, parent, path, ancestors);
943
+ } else if (parent) {
944
+ parent[key] = newNode;
945
+ }
946
+ if (!isLeaving) {
947
+ node = newNode;
948
+ }
949
+ }
950
+ };
951
+
908
952
  // retrieve result
909
- result = visitFn.call(visitor, node, key, parent, path, ancestors);
953
+ result = visitFn.call(visitor, node, key, parent, path, ancestors, link);
910
954
  }
911
955
 
912
956
  // check if the visitor is async
@@ -1062,9 +1106,22 @@ visitor, {
1062
1106
  for (const [stateKey, stateValue] of Object.entries(state)) {
1063
1107
  visitor[stateKey] = stateValue;
1064
1108
  }
1109
+ const link = {
1110
+ // eslint-disable-next-line @typescript-eslint/no-loop-func
1111
+ replaceWith(newNode, replacer) {
1112
+ if (typeof replacer === 'function') {
1113
+ replacer(newNode, node, key, parent, path, ancestors);
1114
+ } else if (parent) {
1115
+ parent[key] = newNode;
1116
+ }
1117
+ if (!isLeaving) {
1118
+ node = newNode;
1119
+ }
1120
+ }
1121
+ };
1065
1122
 
1066
1123
  // retrieve result
1067
- result = await visitFn.call(visitor, node, key, parent, path, ancestors); // eslint-disable-line no-await-in-loop
1124
+ result = await visitFn.call(visitor, node, key, parent, path, ancestors, link); // eslint-disable-line no-await-in-loop
1068
1125
  }
1069
1126
  if (result === breakSymbol) {
1070
1127
  break;
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.apidomAST=e():t.apidomAST=e()}(self,(()=>(()=>{var t={8583:(t,e)=>{"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),e.errorMessages=e.ErrorType=void 0,function(t){t.MalformedUnicode="MALFORMED_UNICODE",t.MalformedHexadecimal="MALFORMED_HEXADECIMAL",t.CodePointLimit="CODE_POINT_LIMIT",t.OctalDeprecation="OCTAL_DEPRECATION",t.EndOfString="END_OF_STRING"}(r=e.ErrorType||(e.ErrorType={})),e.errorMessages=new Map([[r.MalformedUnicode,"malformed Unicode character escape sequence"],[r.MalformedHexadecimal,"malformed hexadecimal character escape sequence"],[r.CodePointLimit,"Unicode codepoint must not be greater than 0x10FFFF in escape sequence"],[r.OctalDeprecation,'"0"-prefixed octal literals and octal escape sequences are deprecated; for octal literals use the "0o" prefix instead'],[r.EndOfString,"malformed escape sequence at end of string"]])},6850:(t,e,r)=>{"use strict";e.MH=void 0;const n=r(8583);function o(t,e,r){const o=function(t){return t.match(/[^a-f0-9]/i)?NaN:parseInt(t,16)}(t);if(Number.isNaN(o)||void 0!==r&&r!==t.length)throw new SyntaxError(n.errorMessages.get(e));return o}function i(t,e){const r=o(t,n.ErrorType.MalformedUnicode,4);if(void 0!==e){const t=o(e,n.ErrorType.MalformedUnicode,4);return String.fromCharCode(r,t)}return String.fromCharCode(r)}const s=new Map([["b","\b"],["f","\f"],["n","\n"],["r","\r"],["t","\t"],["v","\v"],["0","\0"]]);const c=/\\(?:(\\)|x([\s\S]{0,2})|u(\{[^}]*\}?)|u([\s\S]{4})\\u([^{][\s\S]{0,3})|u([\s\S]{0,4})|([0-3]?[0-7]{1,2})|([\s\S])|$)/g;function a(t,e=!1){return t.replace(c,(function(t,r,c,a,u,l,f,p,y){if(void 0!==r)return"\\";if(void 0!==c)return function(t){const e=o(t,n.ErrorType.MalformedHexadecimal,2);return String.fromCharCode(e)}(c);if(void 0!==a)return function(t){if("{"!==(e=t).charAt(0)||"}"!==e.charAt(e.length-1))throw new SyntaxError(n.errorMessages.get(n.ErrorType.MalformedUnicode));var e;const r=o(t.slice(1,-1),n.ErrorType.MalformedUnicode);try{return String.fromCodePoint(r)}catch(t){throw t instanceof RangeError?new SyntaxError(n.errorMessages.get(n.ErrorType.CodePointLimit)):t}}(a);if(void 0!==u)return i(u,l);if(void 0!==f)return i(f);if("0"===p)return"\0";if(void 0!==p)return function(t,e=!1){if(e)throw new SyntaxError(n.errorMessages.get(n.ErrorType.OctalDeprecation));const r=parseInt(t,8);return String.fromCharCode(r)}(p,!e);if(void 0!==y)return h=y,s.get(h)||h;var h;throw new SyntaxError(n.errorMessages.get(n.ErrorType.EndOfString))}))}e.MH=a},1212:(t,e,r)=>{t.exports=r(8411)},7202:(t,e,r)=>{"use strict";var n=r(239);t.exports=n},6656:(t,e,r)=>{"use strict";r(484),r(5695),r(6138),r(9828),r(3832);var n=r(8099);t.exports=n.AggregateError},8411:(t,e,r)=>{"use strict";t.exports=r(8337)},8337:(t,e,r)=>{"use strict";r(5442);var n=r(7202);t.exports=n},814:(t,e,r)=>{"use strict";var n=r(2769),o=r(459),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},1966:(t,e,r)=>{"use strict";var n=r(2937),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},8137:t=>{"use strict";t.exports=function(){}},7235:(t,e,r)=>{"use strict";var n=r(262),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},1005:(t,e,r)=>{"use strict";var n=r(3273),o=r(4574),i=r(8130),s=function(t){return function(e,r,s){var c,a=n(e),u=i(a),l=o(s,u);if(t&&r!=r){for(;u>l;)if((c=a[l++])!=c)return!0}else for(;u>l;l++)if((t||l in a)&&a[l]===r)return t||l||0;return!t&&-1}};t.exports={includes:s(!0),indexOf:s(!1)}},9932:(t,e,r)=>{"use strict";var n=r(6100),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},8407:(t,e,r)=>{"use strict";var n=r(4904),o=r(2769),i=r(9932),s=r(8655)("toStringTag"),c=Object,a="Arguments"===i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=c(t),s))?r:a?i(e):"Object"===(n=i(e))&&o(e.callee)?"Arguments":n}},7464:(t,e,r)=>{"use strict";var n=r(701),o=r(5691),i=r(4543),s=r(9989);t.exports=function(t,e,r){for(var c=o(e),a=s.f,u=i.f,l=0;l<c.length;l++){var f=c[l];n(t,f)||r&&n(r,f)||a(t,f,u(e,f))}}},2871:(t,e,r)=>{"use strict";var n=r(1203);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},877:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},3999:(t,e,r)=>{"use strict";var n=r(5024),o=r(9989),i=r(480);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},480:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},3508:(t,e,r)=>{"use strict";var n=r(3999);t.exports=function(t,e,r,o){return o&&o.enumerable?t[e]=r:n(t,e,r),t}},7525:(t,e,r)=>{"use strict";var n=r(1063),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},5024:(t,e,r)=>{"use strict";var n=r(1203);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},9619:(t,e,r)=>{"use strict";var n=r(1063),o=r(262),i=n.document,s=o(i)&&o(i.createElement);t.exports=function(t){return s?i.createElement(t):{}}},1100:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},7868:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4432:(t,e,r)=>{"use strict";var n,o,i=r(1063),s=r(7868),c=i.process,a=i.Deno,u=c&&c.versions||a&&a.version,l=u&&u.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&s&&(!(n=s.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=s.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},9683:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},3885:(t,e,r)=>{"use strict";var n=r(6100),o=Error,i=n("".replace),s=String(new o("zxcasd").stack),c=/\n\s*at [^:]*:[^\n]*/,a=c.test(s);t.exports=function(t,e){if(a&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,c,"");return t}},4279:(t,e,r)=>{"use strict";var n=r(3999),o=r(3885),i=r(5791),s=Error.captureStackTrace;t.exports=function(t,e,r,c){i&&(s?s(t,e):n(t,"stack",o(r,c)))}},5791:(t,e,r)=>{"use strict";var n=r(1203),o=r(480);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},9098:(t,e,r)=>{"use strict";var n=r(1063),o=r(7013),i=r(9344),s=r(2769),c=r(4543).f,a=r(8696),u=r(8099),l=r(4572),f=r(3999),p=r(701),y=function(t){var e=function(r,n,i){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,n)}return new t(r,n,i)}return o(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var r,o,h,g,d,v,m,b,x,S=t.target,w=t.global,O=t.stat,j=t.proto,E=w?n:O?n[S]:n[S]&&n[S].prototype,A=w?u:u[S]||f(u,S,{})[S],T=A.prototype;for(g in e)o=!(r=a(w?g:S+(O?".":"#")+g,t.forced))&&E&&p(E,g),v=A[g],o&&(m=t.dontCallGetSet?(x=c(E,g))&&x.value:E[g]),d=o&&m?m:e[g],(r||j||typeof v!=typeof d)&&(b=t.bind&&o?l(d,n):t.wrap&&o?y(d):j&&s(d)?i(d):d,(t.sham||d&&d.sham||v&&v.sham)&&f(b,"sham",!0),f(A,g,b),j&&(p(u,h=S+"Prototype")||f(u,h,{}),f(u[h],g,d),t.real&&T&&(r||!T[g])&&f(T,g,d)))}},1203:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},7013:(t,e,r)=>{"use strict";var n=r(1780),o=Function.prototype,i=o.apply,s=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?s.bind(i):function(){return s.apply(i,arguments)})},4572:(t,e,r)=>{"use strict";var n=r(9344),o=r(814),i=r(1780),s=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?s(t,e):function(){return t.apply(e,arguments)}}},1780:(t,e,r)=>{"use strict";var n=r(1203);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},4713:(t,e,r)=>{"use strict";var n=r(1780),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},3410:(t,e,r)=>{"use strict";var n=r(5024),o=r(701),i=Function.prototype,s=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),a=c&&"something"===function(){}.name,u=c&&(!n||n&&s(i,"name").configurable);t.exports={EXISTS:c,PROPER:a,CONFIGURABLE:u}},3574:(t,e,r)=>{"use strict";var n=r(6100),o=r(814);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},9344:(t,e,r)=>{"use strict";var n=r(9932),o=r(6100);t.exports=function(t){if("Function"===n(t))return o(t)}},6100:(t,e,r)=>{"use strict";var n=r(1780),o=Function.prototype,i=o.call,s=n&&o.bind.bind(i,i);t.exports=n?s:function(t){return function(){return i.apply(t,arguments)}}},1003:(t,e,r)=>{"use strict";var n=r(8099),o=r(1063),i=r(2769),s=function(t){return i(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?s(n[t])||s(o[t]):n[t]&&n[t][e]||o[t]&&o[t][e]}},967:(t,e,r)=>{"use strict";var n=r(8407),o=r(4674),i=r(3057),s=r(6625),c=r(8655)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||s[n(t)]}},1613:(t,e,r)=>{"use strict";var n=r(4713),o=r(814),i=r(7235),s=r(459),c=r(967),a=TypeError;t.exports=function(t,e){var r=arguments.length<2?c(t):e;if(o(r))return i(n(r,t));throw new a(s(t)+" is not iterable")}},4674:(t,e,r)=>{"use strict";var n=r(814),o=r(3057);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},1063:function(t,e,r){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()},701:(t,e,r)=>{"use strict";var n=r(6100),o=r(2137),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},5241:t=>{"use strict";t.exports={}},3489:(t,e,r)=>{"use strict";var n=r(1003);t.exports=n("document","documentElement")},9665:(t,e,r)=>{"use strict";var n=r(5024),o=r(1203),i=r(9619);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},1395:(t,e,r)=>{"use strict";var n=r(6100),o=r(1203),i=r(9932),s=Object,c=n("".split);t.exports=o((function(){return!s("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?c(t,""):s(t)}:s},3507:(t,e,r)=>{"use strict";var n=r(2769),o=r(262),i=r(3491);t.exports=function(t,e,r){var s,c;return i&&n(s=e.constructor)&&s!==r&&o(c=s.prototype)&&c!==r.prototype&&i(t,c),t}},8148:(t,e,r)=>{"use strict";var n=r(262),o=r(3999);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},8417:(t,e,r)=>{"use strict";var n,o,i,s=r(1314),c=r(1063),a=r(262),u=r(3999),l=r(701),f=r(3753),p=r(4275),y=r(5241),h="Object already initialized",g=c.TypeError,d=c.WeakMap;if(s||f.state){var v=f.state||(f.state=new d);v.get=v.get,v.has=v.has,v.set=v.set,n=function(t,e){if(v.has(t))throw new g(h);return e.facade=t,v.set(t,e),e},o=function(t){return v.get(t)||{}},i=function(t){return v.has(t)}}else{var m=p("state");y[m]=!0,n=function(t,e){if(l(t,m))throw new g(h);return e.facade=t,u(t,m,e),e},o=function(t){return l(t,m)?t[m]:{}},i=function(t){return l(t,m)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!a(e)||(r=o(e)).type!==t)throw new g("Incompatible receiver, "+t+" required");return r}}}},2877:(t,e,r)=>{"use strict";var n=r(8655),o=r(6625),i=n("iterator"),s=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||s[i]===t)}},2769:t=>{"use strict";var e="object"==typeof document&&document.all;t.exports=void 0===e&&void 0!==e?function(t){return"function"==typeof t||t===e}:function(t){return"function"==typeof t}},8696:(t,e,r)=>{"use strict";var n=r(1203),o=r(2769),i=/#|\.prototype\./,s=function(t,e){var r=a[c(t)];return r===l||r!==u&&(o(e)?n(e):!!e)},c=s.normalize=function(t){return String(t).replace(i,".").toLowerCase()},a=s.data={},u=s.NATIVE="N",l=s.POLYFILL="P";t.exports=s},3057:t=>{"use strict";t.exports=function(t){return null==t}},262:(t,e,r)=>{"use strict";var n=r(2769);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},2937:(t,e,r)=>{"use strict";var n=r(262);t.exports=function(t){return n(t)||null===t}},4871:t=>{"use strict";t.exports=!0},6281:(t,e,r)=>{"use strict";var n=r(1003),o=r(2769),i=r(4317),s=r(7460),c=Object;t.exports=s?function(t){return"symbol"==typeof t}:function(t){var e=n("Symbol");return o(e)&&i(e.prototype,c(t))}},208:(t,e,r)=>{"use strict";var n=r(4572),o=r(4713),i=r(7235),s=r(459),c=r(2877),a=r(8130),u=r(4317),l=r(1613),f=r(967),p=r(1743),y=TypeError,h=function(t,e){this.stopped=t,this.result=e},g=h.prototype;t.exports=function(t,e,r){var d,v,m,b,x,S,w,O=r&&r.that,j=!(!r||!r.AS_ENTRIES),E=!(!r||!r.IS_RECORD),A=!(!r||!r.IS_ITERATOR),T=!(!r||!r.INTERRUPTED),k=n(e,O),P=function(t){return d&&p(d,"normal",t),new h(!0,t)},N=function(t){return j?(i(t),T?k(t[0],t[1],P):k(t[0],t[1])):T?k(t,P):k(t)};if(E)d=t.iterator;else if(A)d=t;else{if(!(v=f(t)))throw new y(s(t)+" is not iterable");if(c(v)){for(m=0,b=a(t);b>m;m++)if((x=N(t[m]))&&u(g,x))return x;return new h(!1)}d=l(t,v)}for(S=E?t.next:d.next;!(w=o(S,d)).done;){try{x=N(w.value)}catch(t){p(d,"throw",t)}if("object"==typeof x&&x&&u(g,x))return x}return new h(!1)}},1743:(t,e,r)=>{"use strict";var n=r(4713),o=r(7235),i=r(4674);t.exports=function(t,e,r){var s,c;o(t);try{if(!(s=i(t,"return"))){if("throw"===e)throw r;return r}s=n(s,t)}catch(t){c=!0,s=t}if("throw"===e)throw r;if(c)throw s;return o(s),r}},1926:(t,e,r)=>{"use strict";var n=r(2621).IteratorPrototype,o=r(5780),i=r(480),s=r(1811),c=r(6625),a=function(){return this};t.exports=function(t,e,r,u){var l=e+" Iterator";return t.prototype=o(n,{next:i(+!u,r)}),s(t,l,!1,!0),c[l]=a,t}},164:(t,e,r)=>{"use strict";var n=r(9098),o=r(4713),i=r(4871),s=r(3410),c=r(2769),a=r(1926),u=r(3671),l=r(3491),f=r(1811),p=r(3999),y=r(3508),h=r(8655),g=r(6625),d=r(2621),v=s.PROPER,m=s.CONFIGURABLE,b=d.IteratorPrototype,x=d.BUGGY_SAFARI_ITERATORS,S=h("iterator"),w="keys",O="values",j="entries",E=function(){return this};t.exports=function(t,e,r,s,h,d,A){a(r,e,s);var T,k,P,N=function(t){if(t===h&&L)return L;if(!x&&t&&t in F)return F[t];switch(t){case w:case O:case j:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",C=!1,F=t.prototype,I=F[S]||F["@@iterator"]||h&&F[h],L=!x&&I||N(h),R="Array"===e&&F.entries||I;if(R&&(T=u(R.call(new t)))!==Object.prototype&&T.next&&(i||u(T)===b||(l?l(T,b):c(T[S])||y(T,S,E)),f(T,M,!0,!0),i&&(g[M]=E)),v&&h===O&&I&&I.name!==O&&(!i&&m?p(F,"name",O):(C=!0,L=function(){return o(I,this)})),h)if(k={values:N(O),keys:d?L:N(w),entries:N(j)},A)for(P in k)(x||C||!(P in F))&&y(F,P,k[P]);else n({target:e,proto:!0,forced:x||C},k);return i&&!A||F[S]===L||y(F,S,L,{name:h}),g[e]=L,k}},2621:(t,e,r)=>{"use strict";var n,o,i,s=r(1203),c=r(2769),a=r(262),u=r(5780),l=r(3671),f=r(3508),p=r(8655),y=r(4871),h=p("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=l(l(i)))!==Object.prototype&&(n=o):g=!0),!a(n)||s((function(){var t={};return n[h].call(t)!==t}))?n={}:y&&(n=u(n)),c(n[h])||f(n,h,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:g}},6625:t=>{"use strict";t.exports={}},8130:(t,e,r)=>{"use strict";var n=r(8146);t.exports=function(t){return n(t.length)}},5777:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},4879:(t,e,r)=>{"use strict";var n=r(1139);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},5780:(t,e,r)=>{"use strict";var n,o=r(7235),i=r(7389),s=r(9683),c=r(5241),a=r(3489),u=r(9619),l=r(4275),f="prototype",p="script",y=l("IE_PROTO"),h=function(){},g=function(t){return"<"+p+">"+t+"</"+p+">"},d=function(t){t.write(g("")),t.close();var e=t.parentWindow.Object;return t=null,e},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;v="undefined"!=typeof document?document.domain&&n?d(n):(e=u("iframe"),r="java"+p+":",e.style.display="none",a.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(g("document.F=Object")),t.close(),t.F):d(n);for(var o=s.length;o--;)delete v[f][s[o]];return v()};c[y]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(h[f]=o(t),r=new h,h[f]=null,r[y]=t):r=v(),void 0===e?r:i.f(r,e)}},7389:(t,e,r)=>{"use strict";var n=r(5024),o=r(1330),i=r(9989),s=r(7235),c=r(3273),a=r(8364);e.f=n&&!o?Object.defineProperties:function(t,e){s(t);for(var r,n=c(e),o=a(e),u=o.length,l=0;u>l;)i.f(t,r=o[l++],n[r]);return t}},9989:(t,e,r)=>{"use strict";var n=r(5024),o=r(9665),i=r(1330),s=r(7235),c=r(5341),a=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",y="writable";e.f=n?i?function(t,e,r){if(s(t),e=c(e),s(r),"function"==typeof t&&"prototype"===e&&"value"in r&&y in r&&!r[y]){var n=l(t,e);n&&n[y]&&(t[e]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return u(t,e,r)}:u:function(t,e,r){if(s(t),e=c(e),s(r),o)try{return u(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new a("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},4543:(t,e,r)=>{"use strict";var n=r(5024),o=r(4713),i=r(7161),s=r(480),c=r(3273),a=r(5341),u=r(701),l=r(9665),f=Object.getOwnPropertyDescriptor;e.f=n?f:function(t,e){if(t=c(t),e=a(e),l)try{return f(t,e)}catch(t){}if(u(t,e))return s(!o(i.f,t,e),t[e])}},5116:(t,e,r)=>{"use strict";var n=r(8600),o=r(9683).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},7313:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},3671:(t,e,r)=>{"use strict";var n=r(701),o=r(2769),i=r(2137),s=r(4275),c=r(2871),a=s("IE_PROTO"),u=Object,l=u.prototype;t.exports=c?u.getPrototypeOf:function(t){var e=i(t);if(n(e,a))return e[a];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof u?l:null}},4317:(t,e,r)=>{"use strict";var n=r(6100);t.exports=n({}.isPrototypeOf)},8600:(t,e,r)=>{"use strict";var n=r(6100),o=r(701),i=r(3273),s=r(1005).indexOf,c=r(5241),a=n([].push);t.exports=function(t,e){var r,n=i(t),u=0,l=[];for(r in n)!o(c,r)&&o(n,r)&&a(l,r);for(;e.length>u;)o(n,r=e[u++])&&(~s(l,r)||a(l,r));return l}},8364:(t,e,r)=>{"use strict";var n=r(8600),o=r(9683);t.exports=Object.keys||function(t){return n(t,o)}},7161:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},3491:(t,e,r)=>{"use strict";var n=r(3574),o=r(7235),i=r(1966);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return o(r),i(n),e?t(r,n):r.__proto__=n,r}}():void 0)},9559:(t,e,r)=>{"use strict";var n=r(4904),o=r(8407);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},9258:(t,e,r)=>{"use strict";var n=r(4713),o=r(2769),i=r(262),s=TypeError;t.exports=function(t,e){var r,c;if("string"===e&&o(r=t.toString)&&!i(c=n(r,t)))return c;if(o(r=t.valueOf)&&!i(c=n(r,t)))return c;if("string"!==e&&o(r=t.toString)&&!i(c=n(r,t)))return c;throw new s("Can't convert object to primitive value")}},5691:(t,e,r)=>{"use strict";var n=r(1003),o=r(6100),i=r(5116),s=r(7313),c=r(7235),a=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(c(t)),r=s.f;return r?a(e,r(t)):e}},8099:t=>{"use strict";t.exports={}},5516:(t,e,r)=>{"use strict";var n=r(9989).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},5426:(t,e,r)=>{"use strict";var n=r(3057),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},1811:(t,e,r)=>{"use strict";var n=r(4904),o=r(9989).f,i=r(3999),s=r(701),c=r(9559),a=r(8655)("toStringTag");t.exports=function(t,e,r,u){var l=r?t:t&&t.prototype;l&&(s(l,a)||o(l,a,{configurable:!0,value:e}),u&&!n&&i(l,"toString",c))}},4275:(t,e,r)=>{"use strict";var n=r(8141),o=r(1268),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},3753:(t,e,r)=>{"use strict";var n=r(1063),o=r(7525),i="__core-js_shared__",s=n[i]||o(i,{});t.exports=s},8141:(t,e,r)=>{"use strict";var n=r(4871),o=r(3753);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.35.1",mode:n?"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:(t,e,r)=>{"use strict";var n=r(6100),o=r(9903),i=r(1139),s=r(5426),c=n("".charAt),a=n("".charCodeAt),u=n("".slice),l=function(t){return function(e,r){var n,l,f=i(s(e)),p=o(r),y=f.length;return p<0||p>=y?t?"":void 0:(n=a(f,p))<55296||n>56319||p+1===y||(l=a(f,p+1))<56320||l>57343?t?c(f,p):n:t?u(f,p,p+2):l-56320+(n-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},4603:(t,e,r)=>{"use strict";var n=r(4432),o=r(1203),i=r(1063).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},4574:(t,e,r)=>{"use strict";var n=r(9903),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},3273:(t,e,r)=>{"use strict";var n=r(1395),o=r(5426);t.exports=function(t){return n(o(t))}},9903:(t,e,r)=>{"use strict";var n=r(5777);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},8146:(t,e,r)=>{"use strict";var n=r(9903),o=Math.min;t.exports=function(t){var e=n(t);return e>0?o(e,9007199254740991):0}},2137:(t,e,r)=>{"use strict";var n=r(5426),o=Object;t.exports=function(t){return o(n(t))}},493:(t,e,r)=>{"use strict";var n=r(4713),o=r(262),i=r(6281),s=r(4674),c=r(9258),a=r(8655),u=TypeError,l=a("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,a=s(t,l);if(a){if(void 0===e&&(e="default"),r=n(a,t,e),!o(r)||i(r))return r;throw new u("Can't convert object to primitive value")}return void 0===e&&(e="number"),c(t,e)}},5341:(t,e,r)=>{"use strict";var n=r(493),o=r(6281);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},4904:(t,e,r)=>{"use strict";var n={};n[r(8655)("toStringTag")]="z",t.exports="[object z]"===String(n)},1139:(t,e,r)=>{"use strict";var n=r(8407),o=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},459:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},1268:(t,e,r)=>{"use strict";var n=r(6100),o=0,i=Math.random(),s=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+s(++o+i,36)}},7460:(t,e,r)=>{"use strict";var n=r(4603);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},1330:(t,e,r)=>{"use strict";var n=r(5024),o=r(1203);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},1314:(t,e,r)=>{"use strict";var n=r(1063),o=r(2769),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},8655:(t,e,r)=>{"use strict";var n=r(1063),o=r(8141),i=r(701),s=r(1268),c=r(4603),a=r(7460),u=n.Symbol,l=o("wks"),f=a?u.for||u:u&&u.withoutSetter||s;t.exports=function(t){return i(l,t)||(l[t]=c&&i(u,t)?u[t]:f("Symbol."+t)),l[t]}},6453:(t,e,r)=>{"use strict";var n=r(1003),o=r(701),i=r(3999),s=r(4317),c=r(3491),a=r(7464),u=r(5516),l=r(3507),f=r(4879),p=r(8148),y=r(4279),h=r(5024),g=r(4871);t.exports=function(t,e,r,d){var v="stackTraceLimit",m=d?2:1,b=t.split("."),x=b[b.length-1],S=n.apply(null,b);if(S){var w=S.prototype;if(!g&&o(w,"cause")&&delete w.cause,!r)return S;var O=n("Error"),j=e((function(t,e){var r=f(d?e:t,void 0),n=d?new S(t):new S;return void 0!==r&&i(n,"message",r),y(n,j,n.stack,2),this&&s(w,this)&&l(n,this,j),arguments.length>m&&p(n,arguments[m]),n}));if(j.prototype=w,"Error"!==x?c?c(j,O):a(j,O,{name:!0}):h&&v in S&&(u(j,S,v),u(j,S,"prepareStackTrace")),a(j,S),!g)try{w.name!==x&&i(w,"name",x),w.constructor=j}catch(t){}return j}}},6138:(t,e,r)=>{"use strict";var n=r(9098),o=r(1003),i=r(7013),s=r(1203),c=r(6453),a="AggregateError",u=o(a),l=!s((function(){return 1!==u([1]).errors[0]}))&&s((function(){return 7!==u([1],a,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:c(a,(function(t){return function(e,r){return i(t,this,arguments)}}),l,!0)})},3085:(t,e,r)=>{"use strict";var n=r(9098),o=r(4317),i=r(3671),s=r(3491),c=r(7464),a=r(5780),u=r(3999),l=r(480),f=r(8148),p=r(4279),y=r(208),h=r(4879),g=r(8655)("toStringTag"),d=Error,v=[].push,m=function(t,e){var r,n=o(b,this);s?r=s(new d,n?i(this):b):(r=n?this:a(b),u(r,g,"Error")),void 0!==e&&u(r,"message",h(e)),p(r,m,r.stack,1),arguments.length>2&&f(r,arguments[2]);var c=[];return y(t,v,{that:c}),u(r,"errors",c),r};s?s(m,d):c(m,d,{name:!0});var b=m.prototype=a(d.prototype,{constructor:l(1,m),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:m})},5695:(t,e,r)=>{"use strict";r(3085)},9828:(t,e,r)=>{"use strict";var n=r(3273),o=r(8137),i=r(6625),s=r(8417),c=r(9989).f,a=r(164),u=r(877),l=r(4871),f=r(5024),p="Array Iterator",y=s.set,h=s.getterFor(p);t.exports=a(Array,"Array",(function(t,e){y(this,{type:p,target:n(t),index:0,kind:e})}),(function(){var t=h(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=void 0,u(void 0,!0);switch(t.kind){case"keys":return u(r,!1);case"values":return u(e[r],!1)}return u([r,e[r]],!1)}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!l&&f&&"values"!==g.name)try{c(g,"name",{value:"values"})}catch(t){}},484:(t,e,r)=>{"use strict";var n=r(9098),o=r(1063),i=r(7013),s=r(6453),c="WebAssembly",a=o[c],u=7!==new Error("e",{cause:7}).cause,l=function(t,e){var r={};r[t]=s(t,e,u),n({global:!0,constructor:!0,arity:1,forced:u},r)},f=function(t,e){if(a&&a[t]){var r={};r[t]=s(c+"."+t,e,u),n({target:c,stat:!0,constructor:!0,arity:1,forced:u},r)}};l("Error",(function(t){return function(e){return i(t,this,arguments)}})),l("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),l("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),l("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),l("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),l("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),l("URIError",(function(t){return function(e){return i(t,this,arguments)}})),f("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),f("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),f("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},3832:(t,e,r)=>{"use strict";var n=r(5571).charAt,o=r(1139),i=r(8417),s=r(164),c=r(877),a="String Iterator",u=i.set,l=i.getterFor(a);s(String,"String",(function(t){u(this,{type:a,string:o(t),index:0})}),(function(){var t,e=l(this),r=e.string,o=e.index;return o>=r.length?c(void 0,!0):(t=n(r,o),e.index+=t.length,c(t,!1))}))},5442:(t,e,r)=>{"use strict";r(5695)},85:(t,e,r)=>{"use strict";r(9828);var n=r(1100),o=r(1063),i=r(1811),s=r(6625);for(var c in n)i(o[c],c),s[c]=s.Array},239:(t,e,r)=>{"use strict";r(5442);var n=r(6656);r(85),t.exports=n}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n].call(i.exports,i,i.exports,r),i.exports}r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};return(()=>{"use strict";r.r(n),r.d(n,{BREAK:()=>mn,Error:()=>gn,JsonArray:()=>N,JsonDocument:()=>l,JsonEscapeSequence:()=>L,JsonFalse:()=>Y,JsonKey:()=>F,JsonNode:()=>e,JsonNull:()=>U,JsonNumber:()=>R,JsonObject:()=>k,JsonProperty:()=>P,JsonString:()=>C,JsonStringContent:()=>I,JsonTrue:()=>D,JsonValue:()=>M,Literal:()=>fn,ParseResult:()=>dn,Point:()=>pn,Position:()=>hn,YamlAlias:()=>_,YamlAnchor:()=>mt,YamlCollection:()=>G,YamlComment:()=>J,YamlDirective:()=>H,YamlDocument:()=>K,YamlError:()=>Nt,YamlFailsafeSchema:()=>rn,YamlJsonSchema:()=>an,YamlKeyValuePair:()=>at,YamlMapping:()=>lt,YamlNode:()=>q,YamlNodeKind:()=>dt,YamlReferenceError:()=>un,YamlReferenceManager:()=>ln,YamlScalar:()=>ft,YamlSchemaError:()=>Mt,YamlSequence:()=>yt,YamlStream:()=>gt,YamlStyle:()=>bt,YamlStyleGroup:()=>xt,YamlTag:()=>vt,YamlTagError:()=>Ct,cloneNode:()=>Sn,getNodeType:()=>bn,getVisitFn:()=>vn,isJsonArray:()=>w,isJsonDocument:()=>d,isJsonEscapeSequence:()=>E,isJsonFalse:()=>m,isJsonKey:()=>T,isJsonNull:()=>x,isJsonNumber:()=>S,isJsonObject:()=>O,isJsonProperty:()=>A,isJsonString:()=>v,isJsonStringContent:()=>j,isJsonTrue:()=>b,isLiteral:()=>p,isNode:()=>xn,isParseResult:()=>g,isPoint:()=>h,isPosition:()=>y,isYamlAlias:()=>ot,isYamlAnchor:()=>rt,isYamlComment:()=>st,isYamlDirective:()=>it,isYamlDocument:()=>Q,isYamlKeyValuePair:()=>tt,isYamlMapping:()=>X,isYamlScalar:()=>nt,isYamlSequence:()=>Z,isYamlStream:()=>W,isYamlTag:()=>et,mergeAllVisitors:()=>wn,visit:()=>On});const t=class{static type="node";type="node";isMissing;children;position;constructor({children:t=[],position:e,isMissing:r=!1}={}){this.type=this.constructor.type,this.isMissing=r,this.children=t,this.position=e}clone(){const t=Object.create(Object.getPrototypeOf(this));return Object.getOwnPropertyNames(this).forEach((e=>{const r=Object.getOwnPropertyDescriptor(this,e);Object.defineProperty(t,e,r)})),t}};const e=class extends t{},o={"@@functional/placeholder":!0};function i(t){return t===o}function s(t){return function e(r){return 0===arguments.length||i(r)?e:t.apply(this,arguments)}}function c(t){return"[object String]"===Object.prototype.toString.call(t)}function a(t,e){var r=t<0?e.length+t:t;return c(e)?e.charAt(r):e[r]}const u=s((function(t){return a(0,t)}));const l=class extends e{static type="document";get child(){return u(this.children)}},f=(t,e)=>null!=e&&"object"==typeof e&&"type"in e&&e.type===t,p=t=>f("literal",t),y=t=>f("position",t),h=t=>f("point",t),g=t=>f("parseResult",t),d=t=>f("document",t),v=t=>f("string",t),m=t=>f("false",t),b=t=>f("true",t),x=t=>f("null",t),S=t=>f("number",t),w=t=>f("array",t),O=t=>f("object",t),j=t=>f("stringContent",t),E=t=>f("escapeSequence",t),A=t=>f("property",t),T=t=>f("key",t);const k=class extends e{static type="object";get properties(){return this.children.filter(A)}};const P=class extends e{static type="property";get key(){return this.children.find(T)}get value(){return this.children.find((t=>m(t)||b(t)||x(t)||S(t)||v(t)||w(t)||O(t)))}};const N=class extends e{static type="array";get items(){return this.children.filter((t=>m(t)||b(t)||x(t)||S(t)||v(t)||w(t)||O))}};const M=class extends e{static type="value";value;constructor({value:t,...e}){super({...e}),this.value=t}};const C=class extends e{static type="string";get value(){if(1===this.children.length){return this.children[0].value}return this.children.filter((t=>j(t)||E(t))).reduce(((t,e)=>t+e.value),"")}};const F=class extends C{static type="key"};const I=class extends M{static type="stringContent"};const L=class extends M{static type="escapeSequence"};const R=class extends M{static type="number"};const D=class extends M{static type="true"};const Y=class extends M{static type="false"};const U=class extends M{static type="null"};const _=class extends t{static type="alias";content;constructor({content:t,...e}){super({...e}),this.content=t}};const q=class extends t{anchor;tag;style;styleGroup;constructor({anchor:t,tag:e,style:r,styleGroup:n,...o}){super({...o}),this.anchor=t,this.tag=e,this.style=r,this.styleGroup=n}};const G=class extends q{};const J=class extends t{static type="comment";content;constructor({content:t,...e}){super({...e}),this.content=t}};function $(t,e){return Object.prototype.hasOwnProperty.call(e,t)}const V="function"==typeof Object.assign?Object.assign:function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1,n=arguments.length;r<n;){var o=arguments[r];if(null!=o)for(var i in o)$(i,o)&&(e[i]=o[i]);r+=1}return e};function z(t){return function e(r,n){switch(arguments.length){case 0:return e;case 1:return i(r)?e:s((function(e){return t(r,e)}));default:return i(r)&&i(n)?e:i(r)?s((function(e){return t(e,n)})):i(n)?s((function(e){return t(r,e)})):t(r,n)}}}const B=z((function(t,e){return V({},t,e)}));const H=class extends t{static type="directive";name;parameters;constructor({name:t,parameters:e,...r}){super({...r}),this.name=t,this.parameters=B({version:void 0,handle:void 0,prefix:void 0},e)}};const K=class extends t{static type="document"},W=t=>f("stream",t),Q=t=>f("document",t),X=t=>f("mapping",t),Z=t=>f("sequence",t),tt=t=>f("keyValuePair",t),et=t=>f("tag",t),rt=t=>f("anchor",t),nt=t=>f("scalar",t),ot=t=>f("alias",t),it=t=>f("directive",t),st=t=>f("comment",t);class ct extends t{static type="keyValuePair";styleGroup;constructor({styleGroup:t,...e}){super({...e}),this.styleGroup=t}}Object.defineProperties(ct.prototype,{key:{get(){return this.children.filter((t=>nt(t)||X(t)||Z(t)))[0]},enumerable:!0},value:{get(){const{key:t,children:e}=this;return e.filter((e=>(e=>e!==t)(e)&&(t=>nt(t)||X(t)||Z(t)||ot(t))(e)))[0]},enumerable:!0}});const at=ct;class ut extends G{static type="mapping"}Object.defineProperty(ut.prototype,"content",{get(){return Array.isArray(this.children)?this.children.filter(tt):[]},enumerable:!0});const lt=ut;const ft=class extends q{static type="scalar";content;constructor({content:t,...e}){super({...e}),this.content=t}};class pt extends G{static type="sequence"}Object.defineProperty(pt.prototype,"content",{get(){const{children:t}=this;return Array.isArray(t)?t.filter((t=>Z(t)||X(t)||nt(t)||ot(t))):[]},enumerable:!0});const yt=pt;class ht extends t{static type="stream"}Object.defineProperty(ht.prototype,"content",{get(){return Array.isArray(this.children)?this.children.filter((t=>Q(t)||st(t))):[]},enumerable:!0});const gt=ht;let dt=function(t){return t.Scalar="Scalar",t.Sequence="Sequence",t.Mapping="Mapping",t}({});const vt=class extends t{static type="tag";explicitName;kind;constructor({explicitName:t,kind:e,...r}){super({...r}),this.explicitName=t,this.kind=e}};const mt=class extends t{static type="anchor";name;constructor({name:t,...e}){super({...e}),this.name=t}};let bt=function(t){return t.Plain="Plain",t.SingleQuoted="SingleQuoted",t.DoubleQuoted="DoubleQuoted",t.Literal="Literal",t.Folded="Folded",t.Explicit="Explicit",t.SinglePair="SinglePair",t.NextLine="NextLine",t.InLine="InLine",t}({}),xt=function(t){return t.Flow="Flow",t.Block="Block",t}({});const St=s((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));function wt(t,e,r){if(r||(r=new Ot),function(t){var e=typeof t;return null==t||"object"!=e&&"function"!=e}(t))return t;var n,o=function(n){var o=r.get(t);if(o)return o;for(var i in r.set(t,n),t)Object.prototype.hasOwnProperty.call(t,i)&&(n[i]=e?wt(t[i],!0,r):t[i]);return n};switch(St(t)){case"Object":return o(Object.create(Object.getPrototypeOf(t)));case"Array":return o(Array(t.length));case"Date":return new Date(t.valueOf());case"RegExp":return n=t,new RegExp(n.source,n.flags?n.flags:(n.global?"g":"")+(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.sticky?"y":"")+(n.unicode?"u":"")+(n.dotAll?"s":""));case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":return t.slice();default:return t}}var Ot=function(){function t(){this.map={},this.length=0}return t.prototype.set=function(t,e){var r=this.hash(t),n=this.map[r];n||(this.map[r]=n=[]),n.push([t,e]),this.length+=1},t.prototype.hash=function(t){var e=[];for(var r in t)e.push(Object.prototype.toString.call(t[r]));return e.join()},t.prototype.get=function(t){if(this.length<=180)for(var e in this.map)for(var r=this.map[e],n=0;n<r.length;n+=1){if((i=r[n])[0]===t)return i[1]}else{var o=this.hash(t);if(r=this.map[o])for(n=0;n<r.length;n+=1){var i;if((i=r[n])[0]===t)return i[1]}}},t}();const jt=s((function(t){return null!=t&&"function"==typeof t.clone?t.clone():wt(t,!0)}));var Et=r(1212);const At=class extends Et{constructor(t,e,r){if(super(t,e,r),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,null!=r&&"object"==typeof r&&Object.hasOwn(r,"cause")&&!("cause"in this)){const{cause:t}=r;this.cause=t,t instanceof Error&&"stack"in t&&(this.stack=`${this.stack}\nCAUSE: ${t.stack}`)}}};class Tt extends Error{static[Symbol.hasInstance](t){return super[Symbol.hasInstance](t)||Function.prototype[Symbol.hasInstance].call(At,t)}constructor(t,e){if(super(t,e),this.name=this.constructor.name,"string"==typeof t&&(this.message=t),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(t).stack,null!=e&&"object"==typeof e&&Object.hasOwn(e,"cause")&&!("cause"in this)){const{cause:t}=e;this.cause=t,t instanceof Error&&"stack"in t&&(this.stack=`${this.stack}\nCAUSE: ${t.stack}`)}}}const kt=Tt;const Pt=class extends kt{constructor(t,e){if(super(t,e),null!=e&&"object"==typeof e){const{cause:t,...r}=e;Object.assign(this,r)}}};const Nt=class extends Pt{};const Mt=class extends Nt{};const Ct=class extends Mt{specificTagName;explicitTagName;tagKind;tagPosition;nodeCanonicalContent;node;constructor(t,e){super(t,e),void 0!==e&&(this.specificTagName=e.specificTagName,this.explicitTagName=e.explicitTagName,this.tagKind=e.tagKind,this.tagPosition=e.tagPosition,this.nodeCanonicalContent=e.nodeCanonicalContent,this.node=e.node)}};const Ft=class{static uri="";tag="";constructor(){this.tag=this.constructor.uri}test(t){return!0}resolve(t){return t}};const It=class extends Ft{static uri="tag:yaml.org,2002:map";test(t){return t.tag.kind===dt.Mapping}};const Lt=class extends Ft{static uri="tag:yaml.org,2002:seq";test(t){return t.tag.kind===dt.Sequence}};const Rt=class extends Ft{static uri="tag:yaml.org,2002:str"};function Dt(t){return function e(r,n,o){switch(arguments.length){case 0:return e;case 1:return i(r)?e:z((function(e,n){return t(r,e,n)}));case 2:return i(r)&&i(n)?e:i(r)?z((function(e,r){return t(e,n,r)})):i(n)?z((function(e,n){return t(r,e,n)})):s((function(e){return t(r,n,e)}));default:return i(r)&&i(n)&&i(o)?e:i(r)&&i(n)?z((function(e,r){return t(e,r,o)})):i(r)&&i(o)?z((function(e,r){return t(e,n,r)})):i(n)&&i(o)?z((function(e,n){return t(r,e,n)})):i(r)?s((function(e){return t(e,n,o)})):i(n)?s((function(e){return t(r,e,o)})):i(o)?s((function(e){return t(r,n,e)})):t(r,n,o)}}}const Yt=Number.isInteger||function(t){return t<<0===t};const Ut=z((function(t,e){return null==e||e!=e?t:e}));const _t=Dt((function(t,e,r){return Ut(t,function(t,e){for(var r=e,n=0;n<t.length;n+=1){if(null==r)return;var o=t[n];r=Yt(o)?a(o,r):r[o]}return r}(e,r))}));function qt(t,e){switch(t){case 0:return function(){return e.apply(this,arguments)};case 1:return function(t){return e.apply(this,arguments)};case 2:return function(t,r){return e.apply(this,arguments)};case 3:return function(t,r,n){return e.apply(this,arguments)};case 4:return function(t,r,n,o){return e.apply(this,arguments)};case 5:return function(t,r,n,o,i){return e.apply(this,arguments)};case 6:return function(t,r,n,o,i,s){return e.apply(this,arguments)};case 7:return function(t,r,n,o,i,s,c){return e.apply(this,arguments)};case 8:return function(t,r,n,o,i,s,c,a){return e.apply(this,arguments)};case 9:return function(t,r,n,o,i,s,c,a,u){return e.apply(this,arguments)};case 10:return function(t,r,n,o,i,s,c,a,u,l){return e.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function Gt(t,e,r){return function(){for(var n=[],o=0,s=t,c=0,a=!1;c<e.length||o<arguments.length;){var u;c<e.length&&(!i(e[c])||o>=arguments.length)?u=e[c]:(u=arguments[o],o+=1),n[c]=u,i(u)?a=!0:s-=1,c+=1}return!a&&s<=0?r.apply(this,n):qt(Math.max(0,s),Gt(t,n,r))}}const Jt=z((function(t,e){return 1===t?s(e):qt(t,Gt(t,[],e))}));const $t=s((function(t){return Jt(t.length,t)}));function Vt(t,e){return function(){return e.call(this,t.apply(this,arguments))}}const zt=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};const Bt=s((function(t){return!!zt(t)||!!t&&("object"==typeof t&&(!c(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var Ht="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Kt(t,e,r){return function(n,o,i){if(Bt(i))return t(n,o,i);if(null==i)return o;if("function"==typeof i["fantasy-land/reduce"])return e(n,o,i,"fantasy-land/reduce");if(null!=i[Ht])return r(n,o,i[Ht]());if("function"==typeof i.next)return r(n,o,i);if("function"==typeof i.reduce)return e(n,o,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function Wt(t,e,r){for(var n=0,o=r.length;n<o;){if((e=t["@@transducer/step"](e,r[n]))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n+=1}return t["@@transducer/result"](e)}const Qt=z((function(t,e){return qt(t.length,(function(){return t.apply(e,arguments)}))}));function Xt(t,e,r){for(var n=r.next();!n.done;){if((e=t["@@transducer/step"](e,n.value))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n=r.next()}return t["@@transducer/result"](e)}function Zt(t,e,r,n){return t["@@transducer/result"](r[n](Qt(t["@@transducer/step"],t),e))}const te=Kt(Wt,Zt,Xt);var ee=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,e){return this.f(t,e)},t}();function re(t){return new ee(t)}const ne=Dt((function(t,e,r){return te("function"==typeof t?re(t):t,e,r)}));function oe(t,e){return function(){var r=arguments.length;if(0===r)return e();var n=arguments[r-1];return zt(n)||"function"!=typeof n[t]?e.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,r-1))}}const ie=Dt(oe("slice",(function(t,e,r){return Array.prototype.slice.call(r,t,e)})));const se=s(oe("tail",ie(1,1/0)));function ce(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return qt(arguments[0].length,ne(Vt,arguments[0],se(arguments)))}var ae="\t\n\v\f\r                 \u2028\u2029\ufeff";const ue=s("function"==typeof String.prototype.trim&&!ae.trim()&&"​".trim()?function(t){return t.trim()}:function(t){var e=new RegExp("^["+ae+"]["+ae+"]*"),r=new RegExp("["+ae+"]["+ae+"]*$");return t.replace(e,"").replace(r,"")});function le(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e||"[object AsyncFunction]"===e||"[object GeneratorFunction]"===e||"[object AsyncGeneratorFunction]"===e}function fe(t){for(var e,r=[];!(e=t.next()).done;)r.push(e.value);return r}function pe(t,e,r){for(var n=0,o=r.length;n<o;){if(t(e,r[n]))return!0;n+=1}return!1}const ye="function"==typeof Object.is?Object.is:function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};var he=Object.prototype.toString;const ge=function(){return"[object Arguments]"===he.call(arguments)?function(t){return"[object Arguments]"===he.call(t)}:function(t){return $("callee",t)}}();var de=!{toString:null}.propertyIsEnumerable("toString"),ve=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],me=function(){return arguments.propertyIsEnumerable("length")}(),be=function(t,e){for(var r=0;r<t.length;){if(t[r]===e)return!0;r+=1}return!1},xe="function"!=typeof Object.keys||me?s((function(t){if(Object(t)!==t)return[];var e,r,n=[],o=me&&ge(t);for(e in t)!$(e,t)||o&&"length"===e||(n[n.length]=e);if(de)for(r=ve.length-1;r>=0;)$(e=ve[r],t)&&!be(n,e)&&(n[n.length]=e),r-=1;return n})):s((function(t){return Object(t)!==t?[]:Object.keys(t)}));const Se=xe;function we(t,e,r,n){var o=fe(t);function i(t,e){return Oe(t,e,r.slice(),n.slice())}return!pe((function(t,e){return!pe(i,e,t)}),fe(e),o)}function Oe(t,e,r,n){if(ye(t,e))return!0;var o,i,s=St(t);if(s!==St(e))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof e["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e)&&"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof e.equals)return"function"==typeof t.equals&&t.equals(e)&&"function"==typeof e.equals&&e.equals(t);switch(s){case"Arguments":case"Array":case"Object":if("function"==typeof t.constructor&&"Promise"===(o=t.constructor,null==(i=String(o).match(/^function (\w*)/))?"":i[1]))return t===e;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof e||!ye(t.valueOf(),e.valueOf()))return!1;break;case"Date":if(!ye(t.valueOf(),e.valueOf()))return!1;break;case"Error":return t.name===e.name&&t.message===e.message;case"RegExp":if(t.source!==e.source||t.global!==e.global||t.ignoreCase!==e.ignoreCase||t.multiline!==e.multiline||t.sticky!==e.sticky||t.unicode!==e.unicode)return!1}for(var c=r.length-1;c>=0;){if(r[c]===t)return n[c]===e;c-=1}switch(s){case"Map":return t.size===e.size&&we(t.entries(),e.entries(),r.concat([t]),n.concat([e]));case"Set":return t.size===e.size&&we(t.values(),e.values(),r.concat([t]),n.concat([e]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var a=Se(t);if(a.length!==Se(e).length)return!1;var u=r.concat([t]),l=n.concat([e]);for(c=a.length-1;c>=0;){var f=a[c];if(!$(f,e)||!Oe(e[f],t[f],u,l))return!1;c-=1}return!0}const je=z((function(t,e){return Oe(t,e,[],[])}));function Ee(t,e){return function(t,e,r){var n,o;if("function"==typeof t.indexOf)switch(typeof e){case"number":if(0===e){for(n=1/e;r<t.length;){if(0===(o=t[r])&&1/o===n)return r;r+=1}return-1}if(e!=e){for(;r<t.length;){if("number"==typeof(o=t[r])&&o!=o)return r;r+=1}return-1}return t.indexOf(e,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(e,r);case"object":if(null===e)return t.indexOf(e,r)}for(;r<t.length;){if(je(t[r],e))return r;r+=1}return-1}(e,t,0)>=0}function Ae(t,e){for(var r=0,n=e.length,o=Array(n);r<n;)o[r]=t(e[r]),r+=1;return o}function Te(t){return'"'+t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var ke=function(t){return(t<10?"0":"")+t};const Pe="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+ke(t.getUTCMonth()+1)+"-"+ke(t.getUTCDate())+"T"+ke(t.getUTCHours())+":"+ke(t.getUTCMinutes())+":"+ke(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function Ne(t,e,r){for(var n=0,o=r.length;n<o;)e=t(e,r[n]),n+=1;return e}function Me(t,e,r){return function(){if(0===arguments.length)return r();var n=arguments[arguments.length-1];if(!zt(n)){for(var o=0;o<t.length;){if("function"==typeof n[t[o]])return n[t[o]].apply(n,Array.prototype.slice.call(arguments,0,-1));o+=1}if(function(t){return null!=t&&"function"==typeof t["@@transducer/step"]}(n))return e.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return r.apply(this,arguments)}}const Ce=function(){return this.xf["@@transducer/init"]()},Fe=function(t){return this.xf["@@transducer/result"](t)};var Ie=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Ce,t.prototype["@@transducer/result"]=Fe,t.prototype["@@transducer/step"]=function(t,e){return this.f(e)?this.xf["@@transducer/step"](t,e):t},t}();function Le(t){return function(e){return new Ie(t,e)}}const Re=z(Me(["fantasy-land/filter","filter"],Le,(function(t,e){return r=e,"[object Object]"===Object.prototype.toString.call(r)?Ne((function(r,n){return t(e[n])&&(r[n]=e[n]),r}),{},Se(e)):function(t,e){for(var r=0,n=e.length,o=[];r<n;)t(e[r])&&(o[o.length]=e[r]),r+=1;return o}(t,e);var r})));const De=z((function(t,e){return Re((r=t,function(){return!r.apply(this,arguments)}),e);var r}));function Ye(t,e){var r=function(r){var n=e.concat([t]);return Ee(r,n)?"<Circular>":Ye(r,n)},n=function(t,e){return Ae((function(e){return Te(e)+": "+r(t[e])}),e.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+Ae(r,t).join(", ")+"))";case"[object Array]":return"["+Ae(r,t).concat(n(t,De((function(t){return/^\d+$/.test(t)}),Se(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+r(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?r(NaN):Te(Pe(t)))+")";case"[object Map]":return"new Map("+r(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+r(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+r(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+r(t.valueOf())+")":Te(t);case"[object Undefined]":return"undefined";default:if("function"==typeof t.toString){var o=t.toString();if("[object Object]"!==o)return o}return"{"+n(t,Se(t)).join(", ")+"}"}}const Ue=s((function(t){return Ye(t,[])}));const _e=z((function(t,e){return Jt(t+1,(function(){var r=arguments[t];if(null!=r&&le(r[e]))return r[e].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(Ue(r)+' does not have a method named "'+e+'"')}))}));const qe=_e(1,"split");var Ge=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Ce,t.prototype["@@transducer/result"]=Fe,t.prototype["@@transducer/step"]=function(t,e){return this.xf["@@transducer/step"](t,this.f(e))},t}();const Je=z(Me(["fantasy-land/map","map"],(function(t){return function(e){return new Ge(t,e)}}),(function(t,e){switch(Object.prototype.toString.call(e)){case"[object Function]":return Jt(e.length,(function(){return t.call(this,e.apply(this,arguments))}));case"[object Object]":return Ne((function(r,n){return r[n]=t(e[n]),r}),{},Se(e));default:return Ae(t,e)}})));const $e=_e(1,"join");const Ve=s((function(t){return c(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()}));function ze(){if(0===arguments.length)throw new Error("compose requires at least one argument");return ce.apply(this,Ve(arguments))}const Be=Jt(4,(function(t,e,r,n){return te(t("function"==typeof e?re(e):e),r,n)}));const He=z((function(t,e){if(zt(t)){if(zt(e))return t.concat(e);throw new TypeError(Ue(e)+" is not an array")}if(c(t)){if(c(e))return t+e;throw new TypeError(Ue(e)+" is not a string")}if(null!=t&&le(t["fantasy-land/concat"]))return t["fantasy-land/concat"](e);if(null!=t&&le(t.concat))return t.concat(e);throw new TypeError(Ue(t)+' does not have a method named "concat" or "fantasy-land/concat"')}));const Ke=je("");const We=z((function(t,e){if(t===e)return e;function r(t,e){if(t>e!=e>t)return e>t?e:t}var n=r(t,e);if(void 0!==n)return n;var o=r(typeof t,typeof e);if(void 0!==o)return o===typeof t?t:e;var i=Ue(t),s=r(i,Ue(e));return void 0!==s&&s===i?t:e}));const Qe=z((function(t,e){if(null!=e)return Yt(t)?a(t,e):e[t]}));const Xe=z((function(t,e){return Je(Qe(t),e)}));const Ze=s((function(t){return Jt(ne(We,0,Xe("length",t)),(function(){for(var e=0,r=t.length;e<r;){if(t[e].apply(this,arguments))return!0;e+=1}return!1}))}));var tr=function(t,e){switch(arguments.length){case 0:return tr;case 1:return function e(r){return 0===arguments.length?e:ye(t,r)};default:return ye(t,e)}};const er=tr;const rr=Jt(1,ce(St,er("GeneratorFunction")));const nr=Jt(1,ce(St,er("AsyncFunction")));const or=Ze([ce(St,er("Function")),rr,nr]);const ir=z((function(t,e){return t&&e}));function sr(t,e,r){for(var n=r.next();!n.done;)e=t(e,n.value),n=r.next();return e}function cr(t,e,r,n){return r[n](t,e)}const ar=Kt(Ne,cr,sr);const ur=z((function(t,e){return"function"==typeof e["fantasy-land/ap"]?e["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(e):"function"==typeof t?function(r){return t(r)(e(r))}:ar((function(t,r){return function(t,e){var r;e=e||[];var n=(t=t||[]).length,o=e.length,i=[];for(r=0;r<n;)i[i.length]=t[r],r+=1;for(r=0;r<o;)i[i.length]=e[r],r+=1;return i}(t,Je(r,e))}),[],t)}));const lr=z((function(t,e){var r=Jt(t,e);return Jt(t,(function(){return Ne(ur,Je(r,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const fr=s((function(t){return lr(t.length,t)}));const pr=z((function(t,e){return le(t)?function(){return t.apply(this,arguments)&&e.apply(this,arguments)}:fr(ir)(t,e)}));const yr=z((function(t,e){return Jt(ne(We,0,Xe("length",e)),(function(){var r=arguments,n=this;return t.apply(n,Ae((function(t){return t.apply(n,r)}),e))}))}));function hr(t){return t}const gr=s(hr);const dr=Jt(1,ce(St,er("Number")));var vr=pr(dr,isFinite);var mr=Jt(1,vr);const br=or(Number.isFinite)?Jt(1,Qt(Number.isFinite,Number)):mr;var xr=pr(br,yr(je,[Math.floor,gr]));var Sr=Jt(1,xr);const wr=or(Number.isInteger)?Jt(1,Qt(Number.isInteger,Number)):Sr;const Or=s((function(t){return Jt(t.length,(function(e,r){var n=Array.prototype.slice.call(arguments,0);return n[0]=r,n[1]=e,t.apply(this,n)}))}));const jr=fr(s((function(t){return!t})))(br);const Er=Jt(1,pr(dr,z((function(t,e){return t>e}))(0)));var Ar=$t((function(t,e){var r=Number(e);if(r!==e&&(r=0),Er(r))throw new RangeError("repeat count must be non-negative");if(jr(r))throw new RangeError("repeat count must be less than infinity");if(r=Math.floor(r),0===t.length||0===r)return"";if(t.length*r>=1<<28)throw new RangeError("repeat count must not overflow maximum string size");var n=t.length*r;r=Math.floor(Math.log(r)/Math.log(2));for(var o=t;r;)o+=t,r-=1;return o+=o.substring(0,n-o.length)})),Tr=Or(_e(1,"repeat"));const kr=or(String.prototype.repeat)?Tr:Ar;var Pr=s((function(t){return function(){return t}}))(void 0);const Nr=je(Pr());const Mr=Dt((function(t,e,r){return r.replace(t,e)}));var Cr=Mr(/[\s\uFEFF\xA0]+$/,""),Fr=_e(0,"trimEnd");const Ir=or(String.prototype.trimEnd)?Fr:Cr;var Lr=Mr(/^[\s\uFEFF\xA0]+/,""),Rr=_e(0,"trimStart");const Dr=or(String.prototype.trimStart)?Rr:Lr;var Yr=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Ce,t.prototype["@@transducer/result"]=Fe,t.prototype["@@transducer/step"]=function(t,e){if(this.f){if(this.f(e))return t;this.f=null}return this.xf["@@transducer/step"](t,e)},t}();function Ur(t){return function(e){return new Yr(t,e)}}const _r=z(Me(["dropWhile"],Ur,(function(t,e){for(var r=0,n=e.length;r<n&&t(e[r]);)r+=1;return ie(r,1/0,e)})));const qr=Or(z(Ee));const Gr=$t((function(t,e){return ce(qe(""),_r(qr(t)),$e(""))(e)}));const Jr=Or(He);var $r=r(6850);const Vr=/^(?<style>[|>])(?<chomping>[+-]?)(?<indentation>[0-9]*)\s/,zr=t=>{const e=(t=>{const e=t.match(Vr),r=_t("",["groups","indentation"],e);return Ke(r)?void 0:parseInt(r,10)})(t);if(wr(e))return kr(" ",e);const r=_t("",[1],t.split("\n")),n=_t(0,["groups","indentation","length"],r.match(/^(?<indentation>[ ]*)/));return kr(" ",n)},Br=t=>{const e=t.match(Vr),r=_t("",["groups","chomping"],e);return Ke(r)?void 0:r},Hr=(t,e)=>Nr(t)?`${Ir(e)}\n`:"-"===t?Ir(e):e,Kr=t=>t.replace(/\r\n/g,"\n"),Wr=t=>t.replace(/(\n)?\n([^\n]+)/g,((t,e,r)=>e?t:` ${r.trimStart()}`)).replace(/[\n]{2}/g,"\n"),Qr=$t(((t,e)=>e.replace(new RegExp(`^${t}`),"").replace(new RegExp(`${t}$`),""))),Xr=ce(Kr,ue,Wr,qe("\n"),Je(Dr),$e("\n")),Zr=ce(Kr,ue,Wr,qe("\n"),Je(Dr),$e("\n"),Qr("'")),tn=ce(Kr,ue,(t=>t.replace(/\\\n\s*/g,"")),Wr,$r.MH,qe("\n"),Je(Dr),$e("\n"),Qr('"'));const en=class{static test(t){return t.tag.kind===dt.Scalar&&"string"==typeof t.content}static canonicalFormat(t){let e=t.content;const r=t.clone();return t.style===bt.Plain?e=Xr(t.content):t.style===bt.SingleQuoted?e=Zr(t.content):t.style===bt.DoubleQuoted?e=tn(t.content):t.style===bt.Literal?e=(t=>{const e=zr(t),r=Br(t),n=Kr(t),o=se(n.split("\n")),i=ze(Je(Gr(e)),Je(Jr("\n"))),s=Be(i,He,"",o);return Hr(r,s)})(t.content):t.style===bt.Folded&&(e=(t=>{const e=zr(t),r=Br(t),n=Kr(t),o=se(n.split("\n")),i=ze(Je(Gr(e)),Je(Jr("\n"))),s=Be(i,He,"",o),c=Wr(s);return Hr(r,c)})(t.content)),r.content=e,r}static resolve(t){return t}};const rn=class{tags;tagDirectives;constructor(){this.tags=[],this.tagDirectives=[],this.registerTag(new It),this.registerTag(new Lt),this.registerTag(new Rt)}toSpecificTagName(t){let e=t.tag.explicitName;return"!"===t.tag.explicitName?t.tag.kind===dt.Scalar?e=Rt.uri:t.tag.kind===dt.Sequence?e=Lt.uri:t.tag.kind===dt.Mapping&&(e=It.uri):t.tag.explicitName.startsWith("!<")?e=t.tag.explicitName.replace(/^!</,"").replace(/>$/,""):t.tag.explicitName.startsWith("!!")&&(e=`tag:yaml.org,2002:${t.tag.explicitName.replace(/^!!/,"")}`),e}registerTagDirective(t){this.tagDirectives.push({handle:t.parameters.handle,prefix:t.parameters.prefix})}registerTag(t,e=!1){return e?this.tags.unshift(t):this.tags.push(t),this}overrideTag(t){return this.tags=this.tags.filter((e=>e.tag===t.tag)),this.tags.push(t),this}resolve(t){const e=this.toSpecificTagName(t);if("?"===e)return t;let r=t;en.test(t)&&(r=en.canonicalFormat(t));const n=this.tags.find((t=>t?.tag===e));if(void 0===n)throw new Ct(`Tag "${e}" was not recognized.`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:jt(t.tag.position),node:t.clone()});if(!n.test(r))throw new Ct(`Node couldn't be resolved against the tag "${e}"`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:jt(t.tag.position),nodeCanonicalContent:r.content,node:t.clone()});return n.resolve(r)}};const nn=class extends Ft{static uri="tag:yaml.org,2002:bool";test(t){return/^(true|false)$/.test(t.content)}resolve(t){const e="true"===t.content,r=t.clone();return r.content=e,r}};const on=class extends Ft{static uri="tag:yaml.org,2002:float";test(t){return/^-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?$/.test(t.content)}resolve(t){const e=parseFloat(t.content),r=t.clone();return r.content=e,r}};const sn=class extends Ft{static uri="tag:yaml.org,2002:int";test(t){return/^-?(0|[1-9][0-9]*)$/.test(t.content)}resolve(t){const e=parseInt(t.content,10),r=t.clone();return r.content=e,r}};const cn=class extends Ft{static uri="tag:yaml.org,2002:null";test(t){return/^null$/.test(t.content)}resolve(t){const e=t.clone();return e.content=null,e}};const an=class extends rn{constructor(){super(),this.registerTag(new nn,!0),this.registerTag(new on,!0),this.registerTag(new sn,!0),this.registerTag(new cn,!0)}toSpecificTagName(t){let e=super.toSpecificTagName(t);if("?"===e)if(t.tag.vkind===dt.Sequence)e=Lt.uri;else if(t.tag.kind===dt.Mapping)e=It.uri;else if(t.tag.kind===dt.Scalar){const r=this.tags.find((e=>e.test(t)));e=r?.tag||"?"}return e}};const un=class extends Nt{};const ln=class{addAnchor(t){if(!rt(t.anchor))throw new un("Expected YAML anchor to be attached the the YAML AST node.",{node:t})}resolveAlias(t){return new ft({content:t.content,style:bt.Plain,styleGroup:xt.Flow})}};const fn=class extends t{static type="literal";value;constructor({value:t,...e}={}){super({...e}),this.value=t}};class pn{static type="point";type=pn.type;row;column;char;constructor({row:t,column:e,char:r}){this.row=t,this.column=e,this.char=r}}class yn{static type="position";type=yn.type;start;end;constructor({start:t,end:e}){this.start=t,this.end=e}}const hn=yn;const gn=class extends t{static type="error";value;isUnexpected;constructor({value:t,isUnexpected:e=!1,...r}={}){super({...r}),this.value=t,this.isUnexpected=e}};const dn=class extends t{static type="parseResult";get rootNode(){return u(this.children)}},vn=(t,e,r)=>{const n=t[e];if(null!=n){if(!r&&"function"==typeof n)return n;const t=r?n.leave:n.enter;if("function"==typeof t)return t}else{const n=r?t.leave:t.enter;if(null!=n){if("function"==typeof n)return n;const t=n[e];if("function"==typeof t)return t}}return null},mn={},bn=t=>t?.type,xn=t=>"string"==typeof bn(t),Sn=t=>Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),wn=(t,{visitFnGetter:e=vn,nodeTypeGetter:r=bn,breakSymbol:n=mn,deleteNodeSymbol:o=null,skipVisitingNodeSymbol:i=!1,exposeEdits:s=!1}={})=>{const c=Symbol("skip"),a=new Array(t.length).fill(c);return{enter(u,...l){let f=u,p=!1;for(let y=0;y<t.length;y+=1)if(a[y]===c){const c=e(t[y],r(f),!1);if("function"==typeof c){const e=c.call(t[y],f,...l);if("function"==typeof e?.then)throw new Pt("Async visitor not supported in sync mode",{visitor:t[y],visitFn:c});if(e===i)a[y]=u;else if(e===n)a[y]=n;else{if(e===o)return e;if(void 0!==e){if(!s)return e;f=e,p=!0}}}}return p?f:void 0},leave(o,...s){for(let u=0;u<t.length;u+=1)if(a[u]===c){const c=e(t[u],r(o),!0);if("function"==typeof c){const e=c.call(t[u],o,...s);if("function"==typeof e?.then)throw new Pt("Async visitor not supported in sync mode",{visitor:t[u],visitFn:c});if(e===n)a[u]=n;else if(void 0!==e&&e!==i)return e}}else a[u]===o&&(a[u]=c)}}};wn[Symbol.for("nodejs.util.promisify.custom")]=(t,{visitFnGetter:e=vn,nodeTypeGetter:r=bn,breakSymbol:n=mn,deleteNodeSymbol:o=null,skipVisitingNodeSymbol:i=!1,exposeEdits:s=!1}={})=>{const c=Symbol("skip"),a=new Array(t.length).fill(c);return{async enter(u,...l){let f=u,p=!1;for(let y=0;y<t.length;y+=1)if(a[y]===c){const c=e(t[y],r(f),!1);if("function"==typeof c){const e=await c.call(t[y],f,...l);if(e===i)a[y]=u;else if(e===n)a[y]=n;else{if(e===o)return e;if(void 0!==e){if(!s)return e;f=e,p=!0}}}}return p?f:void 0},async leave(o,...s){for(let u=0;u<t.length;u+=1)if(a[u]===c){const c=e(t[u],r(o),!0);if("function"==typeof c){const e=await c.call(t[u],o,...s);if(e===n)a[u]=n;else if(void 0!==e&&e!==i)return e}}else a[u]===o&&(a[u]=c)}}};const On=(t,e,{keyMap:r=null,state:n={},breakSymbol:o=mn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=vn,nodeTypeGetter:a=bn,nodePredicate:u=xn,nodeCloneFn:l=Sn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const x=[],S=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===S.length?void 0:x.pop(),b=h,h=S.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;x.push(r)}let O;if(!Array.isArray(b)){if(!u(b))throw new Pt(`Invalid AST Node: ${String(b)}`,{node:b});if(f&&S.includes(b)){x.pop();continue}const i=c(e,a(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;O=i.call(e,b,r,h,x,S)}if("function"==typeof O?.then)throw new Pt("Async visitor not supported in sync mode",{visitor:e,visitFn:i});if(O===o)break;if(O===s){if(!t){x.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!u(O)){x.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[a(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&S.push(h),h=b)}while(void 0!==y);return 0!==m.length?m[m.length-1][1]:t};On[Symbol.for("nodejs.util.promisify.custom")]=async(t,e,{keyMap:r=null,state:n={},breakSymbol:o=mn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=vn,nodeTypeGetter:a=bn,nodePredicate:u=xn,nodeCloneFn:l=Sn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const x=[],S=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===S.length?void 0:x.pop(),b=h,h=S.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;x.push(r)}let O;if(!Array.isArray(b)){if(!u(b))throw new Pt(`Invalid AST Node: ${String(b)}`,{node:b});if(f&&S.includes(b)){x.pop();continue}const i=c(e,a(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;O=await i.call(e,b,r,h,x,S)}if(O===o)break;if(O===s){if(!t){x.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!u(O)){x.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[a(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&S.push(h),h=b)}while(void 0!==y);return 0!==m.length?m[m.length-1][1]:t}})(),n})()));
1
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.apidomAST=e():t.apidomAST=e()}(self,(()=>(()=>{var t={8583:(t,e)=>{"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),e.errorMessages=e.ErrorType=void 0,function(t){t.MalformedUnicode="MALFORMED_UNICODE",t.MalformedHexadecimal="MALFORMED_HEXADECIMAL",t.CodePointLimit="CODE_POINT_LIMIT",t.OctalDeprecation="OCTAL_DEPRECATION",t.EndOfString="END_OF_STRING"}(r=e.ErrorType||(e.ErrorType={})),e.errorMessages=new Map([[r.MalformedUnicode,"malformed Unicode character escape sequence"],[r.MalformedHexadecimal,"malformed hexadecimal character escape sequence"],[r.CodePointLimit,"Unicode codepoint must not be greater than 0x10FFFF in escape sequence"],[r.OctalDeprecation,'"0"-prefixed octal literals and octal escape sequences are deprecated; for octal literals use the "0o" prefix instead'],[r.EndOfString,"malformed escape sequence at end of string"]])},6850:(t,e,r)=>{"use strict";e.MH=void 0;const n=r(8583);function o(t,e,r){const o=function(t){return t.match(/[^a-f0-9]/i)?NaN:parseInt(t,16)}(t);if(Number.isNaN(o)||void 0!==r&&r!==t.length)throw new SyntaxError(n.errorMessages.get(e));return o}function i(t,e){const r=o(t,n.ErrorType.MalformedUnicode,4);if(void 0!==e){const t=o(e,n.ErrorType.MalformedUnicode,4);return String.fromCharCode(r,t)}return String.fromCharCode(r)}const s=new Map([["b","\b"],["f","\f"],["n","\n"],["r","\r"],["t","\t"],["v","\v"],["0","\0"]]);const c=/\\(?:(\\)|x([\s\S]{0,2})|u(\{[^}]*\}?)|u([\s\S]{4})\\u([^{][\s\S]{0,3})|u([\s\S]{0,4})|([0-3]?[0-7]{1,2})|([\s\S])|$)/g;function a(t,e=!1){return t.replace(c,(function(t,r,c,a,u,l,f,p,y){if(void 0!==r)return"\\";if(void 0!==c)return function(t){const e=o(t,n.ErrorType.MalformedHexadecimal,2);return String.fromCharCode(e)}(c);if(void 0!==a)return function(t){if("{"!==(e=t).charAt(0)||"}"!==e.charAt(e.length-1))throw new SyntaxError(n.errorMessages.get(n.ErrorType.MalformedUnicode));var e;const r=o(t.slice(1,-1),n.ErrorType.MalformedUnicode);try{return String.fromCodePoint(r)}catch(t){throw t instanceof RangeError?new SyntaxError(n.errorMessages.get(n.ErrorType.CodePointLimit)):t}}(a);if(void 0!==u)return i(u,l);if(void 0!==f)return i(f);if("0"===p)return"\0";if(void 0!==p)return function(t,e=!1){if(e)throw new SyntaxError(n.errorMessages.get(n.ErrorType.OctalDeprecation));const r=parseInt(t,8);return String.fromCharCode(r)}(p,!e);if(void 0!==y)return h=y,s.get(h)||h;var h;throw new SyntaxError(n.errorMessages.get(n.ErrorType.EndOfString))}))}e.MH=a},1212:(t,e,r)=>{t.exports=r(8411)},7202:(t,e,r)=>{"use strict";var n=r(239);t.exports=n},6656:(t,e,r)=>{"use strict";r(484),r(5695),r(6138),r(9828),r(3832);var n=r(8099);t.exports=n.AggregateError},8411:(t,e,r)=>{"use strict";t.exports=r(8337)},8337:(t,e,r)=>{"use strict";r(5442);var n=r(7202);t.exports=n},814:(t,e,r)=>{"use strict";var n=r(2769),o=r(459),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not a function")}},1966:(t,e,r)=>{"use strict";var n=r(2937),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i("Can't set "+o(t)+" as a prototype")}},8137:t=>{"use strict";t.exports=function(){}},7235:(t,e,r)=>{"use strict";var n=r(262),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(o(t)+" is not an object")}},1005:(t,e,r)=>{"use strict";var n=r(3273),o=r(4574),i=r(8130),s=function(t){return function(e,r,s){var c,a=n(e),u=i(a),l=o(s,u);if(t&&r!=r){for(;u>l;)if((c=a[l++])!=c)return!0}else for(;u>l;l++)if((t||l in a)&&a[l]===r)return t||l||0;return!t&&-1}};t.exports={includes:s(!0),indexOf:s(!1)}},9932:(t,e,r)=>{"use strict";var n=r(6100),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},8407:(t,e,r)=>{"use strict";var n=r(4904),o=r(2769),i=r(9932),s=r(8655)("toStringTag"),c=Object,a="Arguments"===i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=c(t),s))?r:a?i(e):"Object"===(n=i(e))&&o(e.callee)?"Arguments":n}},7464:(t,e,r)=>{"use strict";var n=r(701),o=r(5691),i=r(4543),s=r(9989);t.exports=function(t,e,r){for(var c=o(e),a=s.f,u=i.f,l=0;l<c.length;l++){var f=c[l];n(t,f)||r&&n(r,f)||a(t,f,u(e,f))}}},2871:(t,e,r)=>{"use strict";var n=r(1203);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},877:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},3999:(t,e,r)=>{"use strict";var n=r(5024),o=r(9989),i=r(480);t.exports=n?function(t,e,r){return o.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},480:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},3508:(t,e,r)=>{"use strict";var n=r(3999);t.exports=function(t,e,r,o){return o&&o.enumerable?t[e]=r:n(t,e,r),t}},7525:(t,e,r)=>{"use strict";var n=r(1063),o=Object.defineProperty;t.exports=function(t,e){try{o(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},5024:(t,e,r)=>{"use strict";var n=r(1203);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},9619:(t,e,r)=>{"use strict";var n=r(1063),o=r(262),i=n.document,s=o(i)&&o(i.createElement);t.exports=function(t){return s?i.createElement(t):{}}},1100:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},7868:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4432:(t,e,r)=>{"use strict";var n,o,i=r(1063),s=r(7868),c=i.process,a=i.Deno,u=c&&c.versions||a&&a.version,l=u&&u.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&s&&(!(n=s.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=s.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},9683:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},3885:(t,e,r)=>{"use strict";var n=r(6100),o=Error,i=n("".replace),s=String(new o("zxcasd").stack),c=/\n\s*at [^:]*:[^\n]*/,a=c.test(s);t.exports=function(t,e){if(a&&"string"==typeof t&&!o.prepareStackTrace)for(;e--;)t=i(t,c,"");return t}},4279:(t,e,r)=>{"use strict";var n=r(3999),o=r(3885),i=r(5791),s=Error.captureStackTrace;t.exports=function(t,e,r,c){i&&(s?s(t,e):n(t,"stack",o(r,c)))}},5791:(t,e,r)=>{"use strict";var n=r(1203),o=r(480);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},9098:(t,e,r)=>{"use strict";var n=r(1063),o=r(7013),i=r(9344),s=r(2769),c=r(4543).f,a=r(8696),u=r(8099),l=r(4572),f=r(3999),p=r(701),y=function(t){var e=function(r,n,i){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,n)}return new t(r,n,i)}return o(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var r,o,h,g,d,v,m,b,x,S=t.target,w=t.global,O=t.stat,j=t.proto,E=w?n:O?n[S]:n[S]&&n[S].prototype,A=w?u:u[S]||f(u,S,{})[S],T=A.prototype;for(g in e)o=!(r=a(w?g:S+(O?".":"#")+g,t.forced))&&E&&p(E,g),v=A[g],o&&(m=t.dontCallGetSet?(x=c(E,g))&&x.value:E[g]),d=o&&m?m:e[g],(r||j||typeof v!=typeof d)&&(b=t.bind&&o?l(d,n):t.wrap&&o?y(d):j&&s(d)?i(d):d,(t.sham||d&&d.sham||v&&v.sham)&&f(b,"sham",!0),f(A,g,b),j&&(p(u,h=S+"Prototype")||f(u,h,{}),f(u[h],g,d),t.real&&T&&(r||!T[g])&&f(T,g,d)))}},1203:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},7013:(t,e,r)=>{"use strict";var n=r(1780),o=Function.prototype,i=o.apply,s=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?s.bind(i):function(){return s.apply(i,arguments)})},4572:(t,e,r)=>{"use strict";var n=r(9344),o=r(814),i=r(1780),s=n(n.bind);t.exports=function(t,e){return o(t),void 0===e?t:i?s(t,e):function(){return t.apply(e,arguments)}}},1780:(t,e,r)=>{"use strict";var n=r(1203);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},4713:(t,e,r)=>{"use strict";var n=r(1780),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},3410:(t,e,r)=>{"use strict";var n=r(5024),o=r(701),i=Function.prototype,s=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),a=c&&"something"===function(){}.name,u=c&&(!n||n&&s(i,"name").configurable);t.exports={EXISTS:c,PROPER:a,CONFIGURABLE:u}},3574:(t,e,r)=>{"use strict";var n=r(6100),o=r(814);t.exports=function(t,e,r){try{return n(o(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},9344:(t,e,r)=>{"use strict";var n=r(9932),o=r(6100);t.exports=function(t){if("Function"===n(t))return o(t)}},6100:(t,e,r)=>{"use strict";var n=r(1780),o=Function.prototype,i=o.call,s=n&&o.bind.bind(i,i);t.exports=n?s:function(t){return function(){return i.apply(t,arguments)}}},1003:(t,e,r)=>{"use strict";var n=r(8099),o=r(1063),i=r(2769),s=function(t){return i(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?s(n[t])||s(o[t]):n[t]&&n[t][e]||o[t]&&o[t][e]}},967:(t,e,r)=>{"use strict";var n=r(8407),o=r(4674),i=r(3057),s=r(6625),c=r(8655)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||s[n(t)]}},1613:(t,e,r)=>{"use strict";var n=r(4713),o=r(814),i=r(7235),s=r(459),c=r(967),a=TypeError;t.exports=function(t,e){var r=arguments.length<2?c(t):e;if(o(r))return i(n(r,t));throw new a(s(t)+" is not iterable")}},4674:(t,e,r)=>{"use strict";var n=r(814),o=r(3057);t.exports=function(t,e){var r=t[e];return o(r)?void 0:n(r)}},1063:function(t,e,r){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()},701:(t,e,r)=>{"use strict";var n=r(6100),o=r(2137),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(o(t),e)}},5241:t=>{"use strict";t.exports={}},3489:(t,e,r)=>{"use strict";var n=r(1003);t.exports=n("document","documentElement")},9665:(t,e,r)=>{"use strict";var n=r(5024),o=r(1203),i=r(9619);t.exports=!n&&!o((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},1395:(t,e,r)=>{"use strict";var n=r(6100),o=r(1203),i=r(9932),s=Object,c=n("".split);t.exports=o((function(){return!s("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?c(t,""):s(t)}:s},3507:(t,e,r)=>{"use strict";var n=r(2769),o=r(262),i=r(3491);t.exports=function(t,e,r){var s,c;return i&&n(s=e.constructor)&&s!==r&&o(c=s.prototype)&&c!==r.prototype&&i(t,c),t}},8148:(t,e,r)=>{"use strict";var n=r(262),o=r(3999);t.exports=function(t,e){n(e)&&"cause"in e&&o(t,"cause",e.cause)}},8417:(t,e,r)=>{"use strict";var n,o,i,s=r(1314),c=r(1063),a=r(262),u=r(3999),l=r(701),f=r(3753),p=r(4275),y=r(5241),h="Object already initialized",g=c.TypeError,d=c.WeakMap;if(s||f.state){var v=f.state||(f.state=new d);v.get=v.get,v.has=v.has,v.set=v.set,n=function(t,e){if(v.has(t))throw new g(h);return e.facade=t,v.set(t,e),e},o=function(t){return v.get(t)||{}},i=function(t){return v.has(t)}}else{var m=p("state");y[m]=!0,n=function(t,e){if(l(t,m))throw new g(h);return e.facade=t,u(t,m,e),e},o=function(t){return l(t,m)?t[m]:{}},i=function(t){return l(t,m)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!a(e)||(r=o(e)).type!==t)throw new g("Incompatible receiver, "+t+" required");return r}}}},2877:(t,e,r)=>{"use strict";var n=r(8655),o=r(6625),i=n("iterator"),s=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||s[i]===t)}},2769:t=>{"use strict";var e="object"==typeof document&&document.all;t.exports=void 0===e&&void 0!==e?function(t){return"function"==typeof t||t===e}:function(t){return"function"==typeof t}},8696:(t,e,r)=>{"use strict";var n=r(1203),o=r(2769),i=/#|\.prototype\./,s=function(t,e){var r=a[c(t)];return r===l||r!==u&&(o(e)?n(e):!!e)},c=s.normalize=function(t){return String(t).replace(i,".").toLowerCase()},a=s.data={},u=s.NATIVE="N",l=s.POLYFILL="P";t.exports=s},3057:t=>{"use strict";t.exports=function(t){return null==t}},262:(t,e,r)=>{"use strict";var n=r(2769);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},2937:(t,e,r)=>{"use strict";var n=r(262);t.exports=function(t){return n(t)||null===t}},4871:t=>{"use strict";t.exports=!0},6281:(t,e,r)=>{"use strict";var n=r(1003),o=r(2769),i=r(4317),s=r(7460),c=Object;t.exports=s?function(t){return"symbol"==typeof t}:function(t){var e=n("Symbol");return o(e)&&i(e.prototype,c(t))}},208:(t,e,r)=>{"use strict";var n=r(4572),o=r(4713),i=r(7235),s=r(459),c=r(2877),a=r(8130),u=r(4317),l=r(1613),f=r(967),p=r(1743),y=TypeError,h=function(t,e){this.stopped=t,this.result=e},g=h.prototype;t.exports=function(t,e,r){var d,v,m,b,x,S,w,O=r&&r.that,j=!(!r||!r.AS_ENTRIES),E=!(!r||!r.IS_RECORD),A=!(!r||!r.IS_ITERATOR),T=!(!r||!r.INTERRUPTED),k=n(e,O),P=function(t){return d&&p(d,"normal",t),new h(!0,t)},N=function(t){return j?(i(t),T?k(t[0],t[1],P):k(t[0],t[1])):T?k(t,P):k(t)};if(E)d=t.iterator;else if(A)d=t;else{if(!(v=f(t)))throw new y(s(t)+" is not iterable");if(c(v)){for(m=0,b=a(t);b>m;m++)if((x=N(t[m]))&&u(g,x))return x;return new h(!1)}d=l(t,v)}for(S=E?t.next:d.next;!(w=o(S,d)).done;){try{x=N(w.value)}catch(t){p(d,"throw",t)}if("object"==typeof x&&x&&u(g,x))return x}return new h(!1)}},1743:(t,e,r)=>{"use strict";var n=r(4713),o=r(7235),i=r(4674);t.exports=function(t,e,r){var s,c;o(t);try{if(!(s=i(t,"return"))){if("throw"===e)throw r;return r}s=n(s,t)}catch(t){c=!0,s=t}if("throw"===e)throw r;if(c)throw s;return o(s),r}},1926:(t,e,r)=>{"use strict";var n=r(2621).IteratorPrototype,o=r(5780),i=r(480),s=r(1811),c=r(6625),a=function(){return this};t.exports=function(t,e,r,u){var l=e+" Iterator";return t.prototype=o(n,{next:i(+!u,r)}),s(t,l,!1,!0),c[l]=a,t}},164:(t,e,r)=>{"use strict";var n=r(9098),o=r(4713),i=r(4871),s=r(3410),c=r(2769),a=r(1926),u=r(3671),l=r(3491),f=r(1811),p=r(3999),y=r(3508),h=r(8655),g=r(6625),d=r(2621),v=s.PROPER,m=s.CONFIGURABLE,b=d.IteratorPrototype,x=d.BUGGY_SAFARI_ITERATORS,S=h("iterator"),w="keys",O="values",j="entries",E=function(){return this};t.exports=function(t,e,r,s,h,d,A){a(r,e,s);var T,k,P,N=function(t){if(t===h&&L)return L;if(!x&&t&&t in F)return F[t];switch(t){case w:case O:case j:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",C=!1,F=t.prototype,I=F[S]||F["@@iterator"]||h&&F[h],L=!x&&I||N(h),R="Array"===e&&F.entries||I;if(R&&(T=u(R.call(new t)))!==Object.prototype&&T.next&&(i||u(T)===b||(l?l(T,b):c(T[S])||y(T,S,E)),f(T,M,!0,!0),i&&(g[M]=E)),v&&h===O&&I&&I.name!==O&&(!i&&m?p(F,"name",O):(C=!0,L=function(){return o(I,this)})),h)if(k={values:N(O),keys:d?L:N(w),entries:N(j)},A)for(P in k)(x||C||!(P in F))&&y(F,P,k[P]);else n({target:e,proto:!0,forced:x||C},k);return i&&!A||F[S]===L||y(F,S,L,{name:h}),g[e]=L,k}},2621:(t,e,r)=>{"use strict";var n,o,i,s=r(1203),c=r(2769),a=r(262),u=r(5780),l=r(3671),f=r(3508),p=r(8655),y=r(4871),h=p("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=l(l(i)))!==Object.prototype&&(n=o):g=!0),!a(n)||s((function(){var t={};return n[h].call(t)!==t}))?n={}:y&&(n=u(n)),c(n[h])||f(n,h,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:g}},6625:t=>{"use strict";t.exports={}},8130:(t,e,r)=>{"use strict";var n=r(8146);t.exports=function(t){return n(t.length)}},5777:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},4879:(t,e,r)=>{"use strict";var n=r(1139);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},5780:(t,e,r)=>{"use strict";var n,o=r(7235),i=r(7389),s=r(9683),c=r(5241),a=r(3489),u=r(9619),l=r(4275),f="prototype",p="script",y=l("IE_PROTO"),h=function(){},g=function(t){return"<"+p+">"+t+"</"+p+">"},d=function(t){t.write(g("")),t.close();var e=t.parentWindow.Object;return t=null,e},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;v="undefined"!=typeof document?document.domain&&n?d(n):(e=u("iframe"),r="java"+p+":",e.style.display="none",a.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(g("document.F=Object")),t.close(),t.F):d(n);for(var o=s.length;o--;)delete v[f][s[o]];return v()};c[y]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(h[f]=o(t),r=new h,h[f]=null,r[y]=t):r=v(),void 0===e?r:i.f(r,e)}},7389:(t,e,r)=>{"use strict";var n=r(5024),o=r(1330),i=r(9989),s=r(7235),c=r(3273),a=r(8364);e.f=n&&!o?Object.defineProperties:function(t,e){s(t);for(var r,n=c(e),o=a(e),u=o.length,l=0;u>l;)i.f(t,r=o[l++],n[r]);return t}},9989:(t,e,r)=>{"use strict";var n=r(5024),o=r(9665),i=r(1330),s=r(7235),c=r(5341),a=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",y="writable";e.f=n?i?function(t,e,r){if(s(t),e=c(e),s(r),"function"==typeof t&&"prototype"===e&&"value"in r&&y in r&&!r[y]){var n=l(t,e);n&&n[y]&&(t[e]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return u(t,e,r)}:u:function(t,e,r){if(s(t),e=c(e),s(r),o)try{return u(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new a("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},4543:(t,e,r)=>{"use strict";var n=r(5024),o=r(4713),i=r(7161),s=r(480),c=r(3273),a=r(5341),u=r(701),l=r(9665),f=Object.getOwnPropertyDescriptor;e.f=n?f:function(t,e){if(t=c(t),e=a(e),l)try{return f(t,e)}catch(t){}if(u(t,e))return s(!o(i.f,t,e),t[e])}},5116:(t,e,r)=>{"use strict";var n=r(8600),o=r(9683).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},7313:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},3671:(t,e,r)=>{"use strict";var n=r(701),o=r(2769),i=r(2137),s=r(4275),c=r(2871),a=s("IE_PROTO"),u=Object,l=u.prototype;t.exports=c?u.getPrototypeOf:function(t){var e=i(t);if(n(e,a))return e[a];var r=e.constructor;return o(r)&&e instanceof r?r.prototype:e instanceof u?l:null}},4317:(t,e,r)=>{"use strict";var n=r(6100);t.exports=n({}.isPrototypeOf)},8600:(t,e,r)=>{"use strict";var n=r(6100),o=r(701),i=r(3273),s=r(1005).indexOf,c=r(5241),a=n([].push);t.exports=function(t,e){var r,n=i(t),u=0,l=[];for(r in n)!o(c,r)&&o(n,r)&&a(l,r);for(;e.length>u;)o(n,r=e[u++])&&(~s(l,r)||a(l,r));return l}},8364:(t,e,r)=>{"use strict";var n=r(8600),o=r(9683);t.exports=Object.keys||function(t){return n(t,o)}},7161:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);e.f=o?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},3491:(t,e,r)=>{"use strict";var n=r(3574),o=r(7235),i=r(1966);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return o(r),i(n),e?t(r,n):r.__proto__=n,r}}():void 0)},9559:(t,e,r)=>{"use strict";var n=r(4904),o=r(8407);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},9258:(t,e,r)=>{"use strict";var n=r(4713),o=r(2769),i=r(262),s=TypeError;t.exports=function(t,e){var r,c;if("string"===e&&o(r=t.toString)&&!i(c=n(r,t)))return c;if(o(r=t.valueOf)&&!i(c=n(r,t)))return c;if("string"!==e&&o(r=t.toString)&&!i(c=n(r,t)))return c;throw new s("Can't convert object to primitive value")}},5691:(t,e,r)=>{"use strict";var n=r(1003),o=r(6100),i=r(5116),s=r(7313),c=r(7235),a=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(c(t)),r=s.f;return r?a(e,r(t)):e}},8099:t=>{"use strict";t.exports={}},5516:(t,e,r)=>{"use strict";var n=r(9989).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},5426:(t,e,r)=>{"use strict";var n=r(3057),o=TypeError;t.exports=function(t){if(n(t))throw new o("Can't call method on "+t);return t}},1811:(t,e,r)=>{"use strict";var n=r(4904),o=r(9989).f,i=r(3999),s=r(701),c=r(9559),a=r(8655)("toStringTag");t.exports=function(t,e,r,u){var l=r?t:t&&t.prototype;l&&(s(l,a)||o(l,a,{configurable:!0,value:e}),u&&!n&&i(l,"toString",c))}},4275:(t,e,r)=>{"use strict";var n=r(8141),o=r(1268),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},3753:(t,e,r)=>{"use strict";var n=r(1063),o=r(7525),i="__core-js_shared__",s=n[i]||o(i,{});t.exports=s},8141:(t,e,r)=>{"use strict";var n=r(4871),o=r(3753);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.35.1",mode:n?"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:(t,e,r)=>{"use strict";var n=r(6100),o=r(9903),i=r(1139),s=r(5426),c=n("".charAt),a=n("".charCodeAt),u=n("".slice),l=function(t){return function(e,r){var n,l,f=i(s(e)),p=o(r),y=f.length;return p<0||p>=y?t?"":void 0:(n=a(f,p))<55296||n>56319||p+1===y||(l=a(f,p+1))<56320||l>57343?t?c(f,p):n:t?u(f,p,p+2):l-56320+(n-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},4603:(t,e,r)=>{"use strict";var n=r(4432),o=r(1203),i=r(1063).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},4574:(t,e,r)=>{"use strict";var n=r(9903),o=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?o(r+e,0):i(r,e)}},3273:(t,e,r)=>{"use strict";var n=r(1395),o=r(5426);t.exports=function(t){return n(o(t))}},9903:(t,e,r)=>{"use strict";var n=r(5777);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},8146:(t,e,r)=>{"use strict";var n=r(9903),o=Math.min;t.exports=function(t){var e=n(t);return e>0?o(e,9007199254740991):0}},2137:(t,e,r)=>{"use strict";var n=r(5426),o=Object;t.exports=function(t){return o(n(t))}},493:(t,e,r)=>{"use strict";var n=r(4713),o=r(262),i=r(6281),s=r(4674),c=r(9258),a=r(8655),u=TypeError,l=a("toPrimitive");t.exports=function(t,e){if(!o(t)||i(t))return t;var r,a=s(t,l);if(a){if(void 0===e&&(e="default"),r=n(a,t,e),!o(r)||i(r))return r;throw new u("Can't convert object to primitive value")}return void 0===e&&(e="number"),c(t,e)}},5341:(t,e,r)=>{"use strict";var n=r(493),o=r(6281);t.exports=function(t){var e=n(t,"string");return o(e)?e:e+""}},4904:(t,e,r)=>{"use strict";var n={};n[r(8655)("toStringTag")]="z",t.exports="[object z]"===String(n)},1139:(t,e,r)=>{"use strict";var n=r(8407),o=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return o(t)}},459:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},1268:(t,e,r)=>{"use strict";var n=r(6100),o=0,i=Math.random(),s=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+s(++o+i,36)}},7460:(t,e,r)=>{"use strict";var n=r(4603);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},1330:(t,e,r)=>{"use strict";var n=r(5024),o=r(1203);t.exports=n&&o((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},1314:(t,e,r)=>{"use strict";var n=r(1063),o=r(2769),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},8655:(t,e,r)=>{"use strict";var n=r(1063),o=r(8141),i=r(701),s=r(1268),c=r(4603),a=r(7460),u=n.Symbol,l=o("wks"),f=a?u.for||u:u&&u.withoutSetter||s;t.exports=function(t){return i(l,t)||(l[t]=c&&i(u,t)?u[t]:f("Symbol."+t)),l[t]}},6453:(t,e,r)=>{"use strict";var n=r(1003),o=r(701),i=r(3999),s=r(4317),c=r(3491),a=r(7464),u=r(5516),l=r(3507),f=r(4879),p=r(8148),y=r(4279),h=r(5024),g=r(4871);t.exports=function(t,e,r,d){var v="stackTraceLimit",m=d?2:1,b=t.split("."),x=b[b.length-1],S=n.apply(null,b);if(S){var w=S.prototype;if(!g&&o(w,"cause")&&delete w.cause,!r)return S;var O=n("Error"),j=e((function(t,e){var r=f(d?e:t,void 0),n=d?new S(t):new S;return void 0!==r&&i(n,"message",r),y(n,j,n.stack,2),this&&s(w,this)&&l(n,this,j),arguments.length>m&&p(n,arguments[m]),n}));if(j.prototype=w,"Error"!==x?c?c(j,O):a(j,O,{name:!0}):h&&v in S&&(u(j,S,v),u(j,S,"prepareStackTrace")),a(j,S),!g)try{w.name!==x&&i(w,"name",x),w.constructor=j}catch(t){}return j}}},6138:(t,e,r)=>{"use strict";var n=r(9098),o=r(1003),i=r(7013),s=r(1203),c=r(6453),a="AggregateError",u=o(a),l=!s((function(){return 1!==u([1]).errors[0]}))&&s((function(){return 7!==u([1],a,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:c(a,(function(t){return function(e,r){return i(t,this,arguments)}}),l,!0)})},3085:(t,e,r)=>{"use strict";var n=r(9098),o=r(4317),i=r(3671),s=r(3491),c=r(7464),a=r(5780),u=r(3999),l=r(480),f=r(8148),p=r(4279),y=r(208),h=r(4879),g=r(8655)("toStringTag"),d=Error,v=[].push,m=function(t,e){var r,n=o(b,this);s?r=s(new d,n?i(this):b):(r=n?this:a(b),u(r,g,"Error")),void 0!==e&&u(r,"message",h(e)),p(r,m,r.stack,1),arguments.length>2&&f(r,arguments[2]);var c=[];return y(t,v,{that:c}),u(r,"errors",c),r};s?s(m,d):c(m,d,{name:!0});var b=m.prototype=a(d.prototype,{constructor:l(1,m),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:m})},5695:(t,e,r)=>{"use strict";r(3085)},9828:(t,e,r)=>{"use strict";var n=r(3273),o=r(8137),i=r(6625),s=r(8417),c=r(9989).f,a=r(164),u=r(877),l=r(4871),f=r(5024),p="Array Iterator",y=s.set,h=s.getterFor(p);t.exports=a(Array,"Array",(function(t,e){y(this,{type:p,target:n(t),index:0,kind:e})}),(function(){var t=h(this),e=t.target,r=t.index++;if(!e||r>=e.length)return t.target=void 0,u(void 0,!0);switch(t.kind){case"keys":return u(r,!1);case"values":return u(e[r],!1)}return u([r,e[r]],!1)}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!l&&f&&"values"!==g.name)try{c(g,"name",{value:"values"})}catch(t){}},484:(t,e,r)=>{"use strict";var n=r(9098),o=r(1063),i=r(7013),s=r(6453),c="WebAssembly",a=o[c],u=7!==new Error("e",{cause:7}).cause,l=function(t,e){var r={};r[t]=s(t,e,u),n({global:!0,constructor:!0,arity:1,forced:u},r)},f=function(t,e){if(a&&a[t]){var r={};r[t]=s(c+"."+t,e,u),n({target:c,stat:!0,constructor:!0,arity:1,forced:u},r)}};l("Error",(function(t){return function(e){return i(t,this,arguments)}})),l("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),l("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),l("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),l("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),l("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),l("URIError",(function(t){return function(e){return i(t,this,arguments)}})),f("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),f("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),f("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},3832:(t,e,r)=>{"use strict";var n=r(5571).charAt,o=r(1139),i=r(8417),s=r(164),c=r(877),a="String Iterator",u=i.set,l=i.getterFor(a);s(String,"String",(function(t){u(this,{type:a,string:o(t),index:0})}),(function(){var t,e=l(this),r=e.string,o=e.index;return o>=r.length?c(void 0,!0):(t=n(r,o),e.index+=t.length,c(t,!1))}))},5442:(t,e,r)=>{"use strict";r(5695)},85:(t,e,r)=>{"use strict";r(9828);var n=r(1100),o=r(1063),i=r(1811),s=r(6625);for(var c in n)i(o[c],c),s[c]=s.Array},239:(t,e,r)=>{"use strict";r(5442);var n=r(6656);r(85),t.exports=n}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n].call(i.exports,i,i.exports,r),i.exports}r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var n={};return(()=>{"use strict";r.r(n),r.d(n,{BREAK:()=>mn,Error:()=>gn,JsonArray:()=>N,JsonDocument:()=>l,JsonEscapeSequence:()=>L,JsonFalse:()=>Y,JsonKey:()=>F,JsonNode:()=>e,JsonNull:()=>U,JsonNumber:()=>R,JsonObject:()=>k,JsonProperty:()=>P,JsonString:()=>C,JsonStringContent:()=>I,JsonTrue:()=>D,JsonValue:()=>M,Literal:()=>fn,ParseResult:()=>dn,Point:()=>pn,Position:()=>hn,YamlAlias:()=>_,YamlAnchor:()=>mt,YamlCollection:()=>G,YamlComment:()=>J,YamlDirective:()=>B,YamlDocument:()=>H,YamlError:()=>Nt,YamlFailsafeSchema:()=>rn,YamlJsonSchema:()=>an,YamlKeyValuePair:()=>at,YamlMapping:()=>lt,YamlNode:()=>q,YamlNodeKind:()=>dt,YamlReferenceError:()=>un,YamlReferenceManager:()=>ln,YamlScalar:()=>ft,YamlSchemaError:()=>Mt,YamlSequence:()=>yt,YamlStream:()=>gt,YamlStyle:()=>bt,YamlStyleGroup:()=>xt,YamlTag:()=>vt,YamlTagError:()=>Ct,cloneNode:()=>Sn,getNodeType:()=>bn,getVisitFn:()=>vn,isJsonArray:()=>w,isJsonDocument:()=>d,isJsonEscapeSequence:()=>E,isJsonFalse:()=>m,isJsonKey:()=>T,isJsonNull:()=>x,isJsonNumber:()=>S,isJsonObject:()=>O,isJsonProperty:()=>A,isJsonString:()=>v,isJsonStringContent:()=>j,isJsonTrue:()=>b,isLiteral:()=>p,isNode:()=>xn,isParseResult:()=>g,isPoint:()=>h,isPosition:()=>y,isYamlAlias:()=>ot,isYamlAnchor:()=>rt,isYamlComment:()=>st,isYamlDirective:()=>it,isYamlDocument:()=>Q,isYamlKeyValuePair:()=>tt,isYamlMapping:()=>X,isYamlScalar:()=>nt,isYamlSequence:()=>Z,isYamlStream:()=>K,isYamlTag:()=>et,mergeAllVisitors:()=>wn,visit:()=>On});const t=class{static type="node";type="node";isMissing;children;position;constructor({children:t=[],position:e,isMissing:r=!1}={}){this.type=this.constructor.type,this.isMissing=r,this.children=t,this.position=e}clone(){const t=Object.create(Object.getPrototypeOf(this));return Object.getOwnPropertyNames(this).forEach((e=>{const r=Object.getOwnPropertyDescriptor(this,e);Object.defineProperty(t,e,r)})),t}};const e=class extends t{},o={"@@functional/placeholder":!0};function i(t){return t===o}function s(t){return function e(r){return 0===arguments.length||i(r)?e:t.apply(this,arguments)}}function c(t){return"[object String]"===Object.prototype.toString.call(t)}function a(t,e){var r=t<0?e.length+t:t;return c(e)?e.charAt(r):e[r]}const u=s((function(t){return a(0,t)}));const l=class extends e{static type="document";get child(){return u(this.children)}},f=(t,e)=>null!=e&&"object"==typeof e&&"type"in e&&e.type===t,p=t=>f("literal",t),y=t=>f("position",t),h=t=>f("point",t),g=t=>f("parseResult",t),d=t=>f("document",t),v=t=>f("string",t),m=t=>f("false",t),b=t=>f("true",t),x=t=>f("null",t),S=t=>f("number",t),w=t=>f("array",t),O=t=>f("object",t),j=t=>f("stringContent",t),E=t=>f("escapeSequence",t),A=t=>f("property",t),T=t=>f("key",t);const k=class extends e{static type="object";get properties(){return this.children.filter(A)}};const P=class extends e{static type="property";get key(){return this.children.find(T)}get value(){return this.children.find((t=>m(t)||b(t)||x(t)||S(t)||v(t)||w(t)||O(t)))}};const N=class extends e{static type="array";get items(){return this.children.filter((t=>m(t)||b(t)||x(t)||S(t)||v(t)||w(t)||O))}};const M=class extends e{static type="value";value;constructor({value:t,...e}){super({...e}),this.value=t}};const C=class extends e{static type="string";get value(){if(1===this.children.length){return this.children[0].value}return this.children.filter((t=>j(t)||E(t))).reduce(((t,e)=>t+e.value),"")}};const F=class extends C{static type="key"};const I=class extends M{static type="stringContent"};const L=class extends M{static type="escapeSequence"};const R=class extends M{static type="number"};const D=class extends M{static type="true"};const Y=class extends M{static type="false"};const U=class extends M{static type="null"};const _=class extends t{static type="alias";content;constructor({content:t,...e}){super({...e}),this.content=t}};const q=class extends t{anchor;tag;style;styleGroup;constructor({anchor:t,tag:e,style:r,styleGroup:n,...o}){super({...o}),this.anchor=t,this.tag=e,this.style=r,this.styleGroup=n}};const G=class extends q{};const J=class extends t{static type="comment";content;constructor({content:t,...e}){super({...e}),this.content=t}};function $(t,e){return Object.prototype.hasOwnProperty.call(e,t)}const V="function"==typeof Object.assign?Object.assign:function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),r=1,n=arguments.length;r<n;){var o=arguments[r];if(null!=o)for(var i in o)$(i,o)&&(e[i]=o[i]);r+=1}return e};function W(t){return function e(r,n){switch(arguments.length){case 0:return e;case 1:return i(r)?e:s((function(e){return t(r,e)}));default:return i(r)&&i(n)?e:i(r)?s((function(e){return t(e,n)})):i(n)?s((function(e){return t(r,e)})):t(r,n)}}}const z=W((function(t,e){return V({},t,e)}));const B=class extends t{static type="directive";name;parameters;constructor({name:t,parameters:e,...r}){super({...r}),this.name=t,this.parameters=z({version:void 0,handle:void 0,prefix:void 0},e)}};const H=class extends t{static type="document"},K=t=>f("stream",t),Q=t=>f("document",t),X=t=>f("mapping",t),Z=t=>f("sequence",t),tt=t=>f("keyValuePair",t),et=t=>f("tag",t),rt=t=>f("anchor",t),nt=t=>f("scalar",t),ot=t=>f("alias",t),it=t=>f("directive",t),st=t=>f("comment",t);class ct extends t{static type="keyValuePair";styleGroup;constructor({styleGroup:t,...e}){super({...e}),this.styleGroup=t}}Object.defineProperties(ct.prototype,{key:{get(){return this.children.filter((t=>nt(t)||X(t)||Z(t)))[0]},enumerable:!0},value:{get(){const{key:t,children:e}=this;return e.filter((e=>(e=>e!==t)(e)&&(t=>nt(t)||X(t)||Z(t)||ot(t))(e)))[0]},enumerable:!0}});const at=ct;class ut extends G{static type="mapping"}Object.defineProperty(ut.prototype,"content",{get(){return Array.isArray(this.children)?this.children.filter(tt):[]},enumerable:!0});const lt=ut;const ft=class extends q{static type="scalar";content;constructor({content:t,...e}){super({...e}),this.content=t}};class pt extends G{static type="sequence"}Object.defineProperty(pt.prototype,"content",{get(){const{children:t}=this;return Array.isArray(t)?t.filter((t=>Z(t)||X(t)||nt(t)||ot(t))):[]},enumerable:!0});const yt=pt;class ht extends t{static type="stream"}Object.defineProperty(ht.prototype,"content",{get(){return Array.isArray(this.children)?this.children.filter((t=>Q(t)||st(t))):[]},enumerable:!0});const gt=ht;let dt=function(t){return t.Scalar="Scalar",t.Sequence="Sequence",t.Mapping="Mapping",t}({});const vt=class extends t{static type="tag";explicitName;kind;constructor({explicitName:t,kind:e,...r}){super({...r}),this.explicitName=t,this.kind=e}};const mt=class extends t{static type="anchor";name;constructor({name:t,...e}){super({...e}),this.name=t}};let bt=function(t){return t.Plain="Plain",t.SingleQuoted="SingleQuoted",t.DoubleQuoted="DoubleQuoted",t.Literal="Literal",t.Folded="Folded",t.Explicit="Explicit",t.SinglePair="SinglePair",t.NextLine="NextLine",t.InLine="InLine",t}({}),xt=function(t){return t.Flow="Flow",t.Block="Block",t}({});const St=s((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));function wt(t,e,r){if(r||(r=new Ot),function(t){var e=typeof t;return null==t||"object"!=e&&"function"!=e}(t))return t;var n,o=function(n){var o=r.get(t);if(o)return o;for(var i in r.set(t,n),t)Object.prototype.hasOwnProperty.call(t,i)&&(n[i]=e?wt(t[i],!0,r):t[i]);return n};switch(St(t)){case"Object":return o(Object.create(Object.getPrototypeOf(t)));case"Array":return o(Array(t.length));case"Date":return new Date(t.valueOf());case"RegExp":return n=t,new RegExp(n.source,n.flags?n.flags:(n.global?"g":"")+(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.sticky?"y":"")+(n.unicode?"u":"")+(n.dotAll?"s":""));case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":return t.slice();default:return t}}var Ot=function(){function t(){this.map={},this.length=0}return t.prototype.set=function(t,e){var r=this.hash(t),n=this.map[r];n||(this.map[r]=n=[]),n.push([t,e]),this.length+=1},t.prototype.hash=function(t){var e=[];for(var r in t)e.push(Object.prototype.toString.call(t[r]));return e.join()},t.prototype.get=function(t){if(this.length<=180)for(var e in this.map)for(var r=this.map[e],n=0;n<r.length;n+=1){if((i=r[n])[0]===t)return i[1]}else{var o=this.hash(t);if(r=this.map[o])for(n=0;n<r.length;n+=1){var i;if((i=r[n])[0]===t)return i[1]}}},t}();const jt=s((function(t){return null!=t&&"function"==typeof t.clone?t.clone():wt(t,!0)}));var Et=r(1212);const At=class extends Et{constructor(t,e,r){if(super(t,e,r),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,null!=r&&"object"==typeof r&&Object.hasOwn(r,"cause")&&!("cause"in this)){const{cause:t}=r;this.cause=t,t instanceof Error&&"stack"in t&&(this.stack=`${this.stack}\nCAUSE: ${t.stack}`)}}};class Tt extends Error{static[Symbol.hasInstance](t){return super[Symbol.hasInstance](t)||Function.prototype[Symbol.hasInstance].call(At,t)}constructor(t,e){if(super(t,e),this.name=this.constructor.name,"string"==typeof t&&(this.message=t),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(t).stack,null!=e&&"object"==typeof e&&Object.hasOwn(e,"cause")&&!("cause"in this)){const{cause:t}=e;this.cause=t,t instanceof Error&&"stack"in t&&(this.stack=`${this.stack}\nCAUSE: ${t.stack}`)}}}const kt=Tt;const Pt=class extends kt{constructor(t,e){if(super(t,e),null!=e&&"object"==typeof e){const{cause:t,...r}=e;Object.assign(this,r)}}};const Nt=class extends Pt{};const Mt=class extends Nt{};const Ct=class extends Mt{specificTagName;explicitTagName;tagKind;tagPosition;nodeCanonicalContent;node;constructor(t,e){super(t,e),void 0!==e&&(this.specificTagName=e.specificTagName,this.explicitTagName=e.explicitTagName,this.tagKind=e.tagKind,this.tagPosition=e.tagPosition,this.nodeCanonicalContent=e.nodeCanonicalContent,this.node=e.node)}};const Ft=class{static uri="";tag="";constructor(){this.tag=this.constructor.uri}test(t){return!0}resolve(t){return t}};const It=class extends Ft{static uri="tag:yaml.org,2002:map";test(t){return t.tag.kind===dt.Mapping}};const Lt=class extends Ft{static uri="tag:yaml.org,2002:seq";test(t){return t.tag.kind===dt.Sequence}};const Rt=class extends Ft{static uri="tag:yaml.org,2002:str"};function Dt(t){return function e(r,n,o){switch(arguments.length){case 0:return e;case 1:return i(r)?e:W((function(e,n){return t(r,e,n)}));case 2:return i(r)&&i(n)?e:i(r)?W((function(e,r){return t(e,n,r)})):i(n)?W((function(e,n){return t(r,e,n)})):s((function(e){return t(r,n,e)}));default:return i(r)&&i(n)&&i(o)?e:i(r)&&i(n)?W((function(e,r){return t(e,r,o)})):i(r)&&i(o)?W((function(e,r){return t(e,n,r)})):i(n)&&i(o)?W((function(e,n){return t(r,e,n)})):i(r)?s((function(e){return t(e,n,o)})):i(n)?s((function(e){return t(r,e,o)})):i(o)?s((function(e){return t(r,n,e)})):t(r,n,o)}}}const Yt=Number.isInteger||function(t){return t<<0===t};const Ut=W((function(t,e){return null==e||e!=e?t:e}));const _t=Dt((function(t,e,r){return Ut(t,function(t,e){for(var r=e,n=0;n<t.length;n+=1){if(null==r)return;var o=t[n];r=Yt(o)?a(o,r):r[o]}return r}(e,r))}));function qt(t,e){switch(t){case 0:return function(){return e.apply(this,arguments)};case 1:return function(t){return e.apply(this,arguments)};case 2:return function(t,r){return e.apply(this,arguments)};case 3:return function(t,r,n){return e.apply(this,arguments)};case 4:return function(t,r,n,o){return e.apply(this,arguments)};case 5:return function(t,r,n,o,i){return e.apply(this,arguments)};case 6:return function(t,r,n,o,i,s){return e.apply(this,arguments)};case 7:return function(t,r,n,o,i,s,c){return e.apply(this,arguments)};case 8:return function(t,r,n,o,i,s,c,a){return e.apply(this,arguments)};case 9:return function(t,r,n,o,i,s,c,a,u){return e.apply(this,arguments)};case 10:return function(t,r,n,o,i,s,c,a,u,l){return e.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function Gt(t,e,r){return function(){for(var n=[],o=0,s=t,c=0,a=!1;c<e.length||o<arguments.length;){var u;c<e.length&&(!i(e[c])||o>=arguments.length)?u=e[c]:(u=arguments[o],o+=1),n[c]=u,i(u)?a=!0:s-=1,c+=1}return!a&&s<=0?r.apply(this,n):qt(Math.max(0,s),Gt(t,n,r))}}const Jt=W((function(t,e){return 1===t?s(e):qt(t,Gt(t,[],e))}));const $t=s((function(t){return Jt(t.length,t)}));function Vt(t,e){return function(){return e.call(this,t.apply(this,arguments))}}const Wt=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};const zt=s((function(t){return!!Wt(t)||!!t&&("object"==typeof t&&(!c(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var Bt="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function Ht(t,e,r){return function(n,o,i){if(zt(i))return t(n,o,i);if(null==i)return o;if("function"==typeof i["fantasy-land/reduce"])return e(n,o,i,"fantasy-land/reduce");if(null!=i[Bt])return r(n,o,i[Bt]());if("function"==typeof i.next)return r(n,o,i);if("function"==typeof i.reduce)return e(n,o,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function Kt(t,e,r){for(var n=0,o=r.length;n<o;){if((e=t["@@transducer/step"](e,r[n]))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n+=1}return t["@@transducer/result"](e)}const Qt=W((function(t,e){return qt(t.length,(function(){return t.apply(e,arguments)}))}));function Xt(t,e,r){for(var n=r.next();!n.done;){if((e=t["@@transducer/step"](e,n.value))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n=r.next()}return t["@@transducer/result"](e)}function Zt(t,e,r,n){return t["@@transducer/result"](r[n](Qt(t["@@transducer/step"],t),e))}const te=Ht(Kt,Zt,Xt);var ee=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,e){return this.f(t,e)},t}();function re(t){return new ee(t)}const ne=Dt((function(t,e,r){return te("function"==typeof t?re(t):t,e,r)}));function oe(t,e){return function(){var r=arguments.length;if(0===r)return e();var n=arguments[r-1];return Wt(n)||"function"!=typeof n[t]?e.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,r-1))}}const ie=Dt(oe("slice",(function(t,e,r){return Array.prototype.slice.call(r,t,e)})));const se=s(oe("tail",ie(1,1/0)));function ce(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return qt(arguments[0].length,ne(Vt,arguments[0],se(arguments)))}var ae="\t\n\v\f\r                 \u2028\u2029\ufeff";const ue=s("function"==typeof String.prototype.trim&&!ae.trim()&&"​".trim()?function(t){return t.trim()}:function(t){var e=new RegExp("^["+ae+"]["+ae+"]*"),r=new RegExp("["+ae+"]["+ae+"]*$");return t.replace(e,"").replace(r,"")});function le(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e||"[object AsyncFunction]"===e||"[object GeneratorFunction]"===e||"[object AsyncGeneratorFunction]"===e}function fe(t){for(var e,r=[];!(e=t.next()).done;)r.push(e.value);return r}function pe(t,e,r){for(var n=0,o=r.length;n<o;){if(t(e,r[n]))return!0;n+=1}return!1}const ye="function"==typeof Object.is?Object.is:function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};var he=Object.prototype.toString;const ge=function(){return"[object Arguments]"===he.call(arguments)?function(t){return"[object Arguments]"===he.call(t)}:function(t){return $("callee",t)}}();var de=!{toString:null}.propertyIsEnumerable("toString"),ve=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],me=function(){return arguments.propertyIsEnumerable("length")}(),be=function(t,e){for(var r=0;r<t.length;){if(t[r]===e)return!0;r+=1}return!1},xe="function"!=typeof Object.keys||me?s((function(t){if(Object(t)!==t)return[];var e,r,n=[],o=me&&ge(t);for(e in t)!$(e,t)||o&&"length"===e||(n[n.length]=e);if(de)for(r=ve.length-1;r>=0;)$(e=ve[r],t)&&!be(n,e)&&(n[n.length]=e),r-=1;return n})):s((function(t){return Object(t)!==t?[]:Object.keys(t)}));const Se=xe;function we(t,e,r,n){var o=fe(t);function i(t,e){return Oe(t,e,r.slice(),n.slice())}return!pe((function(t,e){return!pe(i,e,t)}),fe(e),o)}function Oe(t,e,r,n){if(ye(t,e))return!0;var o,i,s=St(t);if(s!==St(e))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof e["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e)&&"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof e.equals)return"function"==typeof t.equals&&t.equals(e)&&"function"==typeof e.equals&&e.equals(t);switch(s){case"Arguments":case"Array":case"Object":if("function"==typeof t.constructor&&"Promise"===(o=t.constructor,null==(i=String(o).match(/^function (\w*)/))?"":i[1]))return t===e;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof e||!ye(t.valueOf(),e.valueOf()))return!1;break;case"Date":if(!ye(t.valueOf(),e.valueOf()))return!1;break;case"Error":return t.name===e.name&&t.message===e.message;case"RegExp":if(t.source!==e.source||t.global!==e.global||t.ignoreCase!==e.ignoreCase||t.multiline!==e.multiline||t.sticky!==e.sticky||t.unicode!==e.unicode)return!1}for(var c=r.length-1;c>=0;){if(r[c]===t)return n[c]===e;c-=1}switch(s){case"Map":return t.size===e.size&&we(t.entries(),e.entries(),r.concat([t]),n.concat([e]));case"Set":return t.size===e.size&&we(t.values(),e.values(),r.concat([t]),n.concat([e]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var a=Se(t);if(a.length!==Se(e).length)return!1;var u=r.concat([t]),l=n.concat([e]);for(c=a.length-1;c>=0;){var f=a[c];if(!$(f,e)||!Oe(e[f],t[f],u,l))return!1;c-=1}return!0}const je=W((function(t,e){return Oe(t,e,[],[])}));function Ee(t,e){return function(t,e,r){var n,o;if("function"==typeof t.indexOf)switch(typeof e){case"number":if(0===e){for(n=1/e;r<t.length;){if(0===(o=t[r])&&1/o===n)return r;r+=1}return-1}if(e!=e){for(;r<t.length;){if("number"==typeof(o=t[r])&&o!=o)return r;r+=1}return-1}return t.indexOf(e,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(e,r);case"object":if(null===e)return t.indexOf(e,r)}for(;r<t.length;){if(je(t[r],e))return r;r+=1}return-1}(e,t,0)>=0}function Ae(t,e){for(var r=0,n=e.length,o=Array(n);r<n;)o[r]=t(e[r]),r+=1;return o}function Te(t){return'"'+t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var ke=function(t){return(t<10?"0":"")+t};const Pe="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+ke(t.getUTCMonth()+1)+"-"+ke(t.getUTCDate())+"T"+ke(t.getUTCHours())+":"+ke(t.getUTCMinutes())+":"+ke(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function Ne(t,e,r){for(var n=0,o=r.length;n<o;)e=t(e,r[n]),n+=1;return e}function Me(t,e,r){return function(){if(0===arguments.length)return r();var n=arguments[arguments.length-1];if(!Wt(n)){for(var o=0;o<t.length;){if("function"==typeof n[t[o]])return n[t[o]].apply(n,Array.prototype.slice.call(arguments,0,-1));o+=1}if(function(t){return null!=t&&"function"==typeof t["@@transducer/step"]}(n))return e.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return r.apply(this,arguments)}}const Ce=function(){return this.xf["@@transducer/init"]()},Fe=function(t){return this.xf["@@transducer/result"](t)};var Ie=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Ce,t.prototype["@@transducer/result"]=Fe,t.prototype["@@transducer/step"]=function(t,e){return this.f(e)?this.xf["@@transducer/step"](t,e):t},t}();function Le(t){return function(e){return new Ie(t,e)}}const Re=W(Me(["fantasy-land/filter","filter"],Le,(function(t,e){return r=e,"[object Object]"===Object.prototype.toString.call(r)?Ne((function(r,n){return t(e[n])&&(r[n]=e[n]),r}),{},Se(e)):function(t,e){for(var r=0,n=e.length,o=[];r<n;)t(e[r])&&(o[o.length]=e[r]),r+=1;return o}(t,e);var r})));const De=W((function(t,e){return Re((r=t,function(){return!r.apply(this,arguments)}),e);var r}));function Ye(t,e){var r=function(r){var n=e.concat([t]);return Ee(r,n)?"<Circular>":Ye(r,n)},n=function(t,e){return Ae((function(e){return Te(e)+": "+r(t[e])}),e.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+Ae(r,t).join(", ")+"))";case"[object Array]":return"["+Ae(r,t).concat(n(t,De((function(t){return/^\d+$/.test(t)}),Se(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+r(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?r(NaN):Te(Pe(t)))+")";case"[object Map]":return"new Map("+r(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+r(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+r(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+r(t.valueOf())+")":Te(t);case"[object Undefined]":return"undefined";default:if("function"==typeof t.toString){var o=t.toString();if("[object Object]"!==o)return o}return"{"+n(t,Se(t)).join(", ")+"}"}}const Ue=s((function(t){return Ye(t,[])}));const _e=W((function(t,e){return Jt(t+1,(function(){var r=arguments[t];if(null!=r&&le(r[e]))return r[e].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(Ue(r)+' does not have a method named "'+e+'"')}))}));const qe=_e(1,"split");var Ge=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Ce,t.prototype["@@transducer/result"]=Fe,t.prototype["@@transducer/step"]=function(t,e){return this.xf["@@transducer/step"](t,this.f(e))},t}();const Je=W(Me(["fantasy-land/map","map"],(function(t){return function(e){return new Ge(t,e)}}),(function(t,e){switch(Object.prototype.toString.call(e)){case"[object Function]":return Jt(e.length,(function(){return t.call(this,e.apply(this,arguments))}));case"[object Object]":return Ne((function(r,n){return r[n]=t(e[n]),r}),{},Se(e));default:return Ae(t,e)}})));const $e=_e(1,"join");const Ve=s((function(t){return c(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()}));function We(){if(0===arguments.length)throw new Error("compose requires at least one argument");return ce.apply(this,Ve(arguments))}const ze=Jt(4,(function(t,e,r,n){return te(t("function"==typeof e?re(e):e),r,n)}));const Be=W((function(t,e){if(Wt(t)){if(Wt(e))return t.concat(e);throw new TypeError(Ue(e)+" is not an array")}if(c(t)){if(c(e))return t+e;throw new TypeError(Ue(e)+" is not a string")}if(null!=t&&le(t["fantasy-land/concat"]))return t["fantasy-land/concat"](e);if(null!=t&&le(t.concat))return t.concat(e);throw new TypeError(Ue(t)+' does not have a method named "concat" or "fantasy-land/concat"')}));const He=je("");const Ke=W((function(t,e){if(t===e)return e;function r(t,e){if(t>e!=e>t)return e>t?e:t}var n=r(t,e);if(void 0!==n)return n;var o=r(typeof t,typeof e);if(void 0!==o)return o===typeof t?t:e;var i=Ue(t),s=r(i,Ue(e));return void 0!==s&&s===i?t:e}));const Qe=W((function(t,e){if(null!=e)return Yt(t)?a(t,e):e[t]}));const Xe=W((function(t,e){return Je(Qe(t),e)}));const Ze=s((function(t){return Jt(ne(Ke,0,Xe("length",t)),(function(){for(var e=0,r=t.length;e<r;){if(t[e].apply(this,arguments))return!0;e+=1}return!1}))}));var tr=function(t,e){switch(arguments.length){case 0:return tr;case 1:return function e(r){return 0===arguments.length?e:ye(t,r)};default:return ye(t,e)}};const er=tr;const rr=Jt(1,ce(St,er("GeneratorFunction")));const nr=Jt(1,ce(St,er("AsyncFunction")));const or=Ze([ce(St,er("Function")),rr,nr]);const ir=W((function(t,e){return t&&e}));function sr(t,e,r){for(var n=r.next();!n.done;)e=t(e,n.value),n=r.next();return e}function cr(t,e,r,n){return r[n](t,e)}const ar=Ht(Ne,cr,sr);const ur=W((function(t,e){return"function"==typeof e["fantasy-land/ap"]?e["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(e):"function"==typeof t?function(r){return t(r)(e(r))}:ar((function(t,r){return function(t,e){var r;e=e||[];var n=(t=t||[]).length,o=e.length,i=[];for(r=0;r<n;)i[i.length]=t[r],r+=1;for(r=0;r<o;)i[i.length]=e[r],r+=1;return i}(t,Je(r,e))}),[],t)}));const lr=W((function(t,e){var r=Jt(t,e);return Jt(t,(function(){return Ne(ur,Je(r,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const fr=s((function(t){return lr(t.length,t)}));const pr=W((function(t,e){return le(t)?function(){return t.apply(this,arguments)&&e.apply(this,arguments)}:fr(ir)(t,e)}));const yr=W((function(t,e){return Jt(ne(Ke,0,Xe("length",e)),(function(){var r=arguments,n=this;return t.apply(n,Ae((function(t){return t.apply(n,r)}),e))}))}));function hr(t){return t}const gr=s(hr);const dr=Jt(1,ce(St,er("Number")));var vr=pr(dr,isFinite);var mr=Jt(1,vr);const br=or(Number.isFinite)?Jt(1,Qt(Number.isFinite,Number)):mr;var xr=pr(br,yr(je,[Math.floor,gr]));var Sr=Jt(1,xr);const wr=or(Number.isInteger)?Jt(1,Qt(Number.isInteger,Number)):Sr;const Or=s((function(t){return Jt(t.length,(function(e,r){var n=Array.prototype.slice.call(arguments,0);return n[0]=r,n[1]=e,t.apply(this,n)}))}));const jr=fr(s((function(t){return!t})))(br);const Er=Jt(1,pr(dr,W((function(t,e){return t>e}))(0)));var Ar=$t((function(t,e){var r=Number(e);if(r!==e&&(r=0),Er(r))throw new RangeError("repeat count must be non-negative");if(jr(r))throw new RangeError("repeat count must be less than infinity");if(r=Math.floor(r),0===t.length||0===r)return"";if(t.length*r>=1<<28)throw new RangeError("repeat count must not overflow maximum string size");var n=t.length*r;r=Math.floor(Math.log(r)/Math.log(2));for(var o=t;r;)o+=t,r-=1;return o+=o.substring(0,n-o.length)})),Tr=Or(_e(1,"repeat"));const kr=or(String.prototype.repeat)?Tr:Ar;var Pr=s((function(t){return function(){return t}}))(void 0);const Nr=je(Pr());const Mr=Dt((function(t,e,r){return r.replace(t,e)}));var Cr=Mr(/[\s\uFEFF\xA0]+$/,""),Fr=_e(0,"trimEnd");const Ir=or(String.prototype.trimEnd)?Fr:Cr;var Lr=Mr(/^[\s\uFEFF\xA0]+/,""),Rr=_e(0,"trimStart");const Dr=or(String.prototype.trimStart)?Rr:Lr;var Yr=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Ce,t.prototype["@@transducer/result"]=Fe,t.prototype["@@transducer/step"]=function(t,e){if(this.f){if(this.f(e))return t;this.f=null}return this.xf["@@transducer/step"](t,e)},t}();function Ur(t){return function(e){return new Yr(t,e)}}const _r=W(Me(["dropWhile"],Ur,(function(t,e){for(var r=0,n=e.length;r<n&&t(e[r]);)r+=1;return ie(r,1/0,e)})));const qr=Or(W(Ee));const Gr=$t((function(t,e){return ce(qe(""),_r(qr(t)),$e(""))(e)}));const Jr=Or(Be);var $r=r(6850);const Vr=/^(?<style>[|>])(?<chomping>[+-]?)(?<indentation>[0-9]*)\s/,Wr=t=>{const e=(t=>{const e=t.match(Vr),r=_t("",["groups","indentation"],e);return He(r)?void 0:parseInt(r,10)})(t);if(wr(e))return kr(" ",e);const r=_t("",[1],t.split("\n")),n=_t(0,["groups","indentation","length"],r.match(/^(?<indentation>[ ]*)/));return kr(" ",n)},zr=t=>{const e=t.match(Vr),r=_t("",["groups","chomping"],e);return He(r)?void 0:r},Br=(t,e)=>Nr(t)?`${Ir(e)}\n`:"-"===t?Ir(e):e,Hr=t=>t.replace(/\r\n/g,"\n"),Kr=t=>t.replace(/(\n)?\n([^\n]+)/g,((t,e,r)=>e?t:` ${r.trimStart()}`)).replace(/[\n]{2}/g,"\n"),Qr=$t(((t,e)=>e.replace(new RegExp(`^${t}`),"").replace(new RegExp(`${t}$`),""))),Xr=ce(Hr,ue,Kr,qe("\n"),Je(Dr),$e("\n")),Zr=ce(Hr,ue,Kr,qe("\n"),Je(Dr),$e("\n"),Qr("'")),tn=ce(Hr,ue,(t=>t.replace(/\\\n\s*/g,"")),Kr,$r.MH,qe("\n"),Je(Dr),$e("\n"),Qr('"'));const en=class{static test(t){return t.tag.kind===dt.Scalar&&"string"==typeof t.content}static canonicalFormat(t){let e=t.content;const r=t.clone();return t.style===bt.Plain?e=Xr(t.content):t.style===bt.SingleQuoted?e=Zr(t.content):t.style===bt.DoubleQuoted?e=tn(t.content):t.style===bt.Literal?e=(t=>{const e=Wr(t),r=zr(t),n=Hr(t),o=se(n.split("\n")),i=We(Je(Gr(e)),Je(Jr("\n"))),s=ze(i,Be,"",o);return Br(r,s)})(t.content):t.style===bt.Folded&&(e=(t=>{const e=Wr(t),r=zr(t),n=Hr(t),o=se(n.split("\n")),i=We(Je(Gr(e)),Je(Jr("\n"))),s=ze(i,Be,"",o),c=Kr(s);return Br(r,c)})(t.content)),r.content=e,r}static resolve(t){return t}};const rn=class{tags;tagDirectives;constructor(){this.tags=[],this.tagDirectives=[],this.registerTag(new It),this.registerTag(new Lt),this.registerTag(new Rt)}toSpecificTagName(t){let e=t.tag.explicitName;return"!"===t.tag.explicitName?t.tag.kind===dt.Scalar?e=Rt.uri:t.tag.kind===dt.Sequence?e=Lt.uri:t.tag.kind===dt.Mapping&&(e=It.uri):t.tag.explicitName.startsWith("!<")?e=t.tag.explicitName.replace(/^!</,"").replace(/>$/,""):t.tag.explicitName.startsWith("!!")&&(e=`tag:yaml.org,2002:${t.tag.explicitName.replace(/^!!/,"")}`),e}registerTagDirective(t){this.tagDirectives.push({handle:t.parameters.handle,prefix:t.parameters.prefix})}registerTag(t,e=!1){return e?this.tags.unshift(t):this.tags.push(t),this}overrideTag(t){return this.tags=this.tags.filter((e=>e.tag===t.tag)),this.tags.push(t),this}resolve(t){const e=this.toSpecificTagName(t);if("?"===e)return t;let r=t;en.test(t)&&(r=en.canonicalFormat(t));const n=this.tags.find((t=>t?.tag===e));if(void 0===n)throw new Ct(`Tag "${e}" was not recognized.`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:jt(t.tag.position),node:t.clone()});if(!n.test(r))throw new Ct(`Node couldn't be resolved against the tag "${e}"`,{specificTagName:e,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:jt(t.tag.position),nodeCanonicalContent:r.content,node:t.clone()});return n.resolve(r)}};const nn=class extends Ft{static uri="tag:yaml.org,2002:bool";test(t){return/^(true|false)$/.test(t.content)}resolve(t){const e="true"===t.content,r=t.clone();return r.content=e,r}};const on=class extends Ft{static uri="tag:yaml.org,2002:float";test(t){return/^-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?$/.test(t.content)}resolve(t){const e=parseFloat(t.content),r=t.clone();return r.content=e,r}};const sn=class extends Ft{static uri="tag:yaml.org,2002:int";test(t){return/^-?(0|[1-9][0-9]*)$/.test(t.content)}resolve(t){const e=parseInt(t.content,10),r=t.clone();return r.content=e,r}};const cn=class extends Ft{static uri="tag:yaml.org,2002:null";test(t){return/^null$/.test(t.content)}resolve(t){const e=t.clone();return e.content=null,e}};const an=class extends rn{constructor(){super(),this.registerTag(new nn,!0),this.registerTag(new on,!0),this.registerTag(new sn,!0),this.registerTag(new cn,!0)}toSpecificTagName(t){let e=super.toSpecificTagName(t);if("?"===e)if(t.tag.vkind===dt.Sequence)e=Lt.uri;else if(t.tag.kind===dt.Mapping)e=It.uri;else if(t.tag.kind===dt.Scalar){const r=this.tags.find((e=>e.test(t)));e=r?.tag||"?"}return e}};const un=class extends Nt{};const ln=class{addAnchor(t){if(!rt(t.anchor))throw new un("Expected YAML anchor to be attached the the YAML AST node.",{node:t})}resolveAlias(t){return new ft({content:t.content,style:bt.Plain,styleGroup:xt.Flow})}};const fn=class extends t{static type="literal";value;constructor({value:t,...e}={}){super({...e}),this.value=t}};class pn{static type="point";type=pn.type;row;column;char;constructor({row:t,column:e,char:r}){this.row=t,this.column=e,this.char=r}}class yn{static type="position";type=yn.type;start;end;constructor({start:t,end:e}){this.start=t,this.end=e}}const hn=yn;const gn=class extends t{static type="error";value;isUnexpected;constructor({value:t,isUnexpected:e=!1,...r}={}){super({...r}),this.value=t,this.isUnexpected=e}};const dn=class extends t{static type="parseResult";get rootNode(){return u(this.children)}},vn=(t,e,r)=>{const n=t[e];if(null!=n){if(!r&&"function"==typeof n)return n;const t=r?n.leave:n.enter;if("function"==typeof t)return t}else{const n=r?t.leave:t.enter;if(null!=n){if("function"==typeof n)return n;const t=n[e];if("function"==typeof t)return t}}return null},mn={},bn=t=>t?.type,xn=t=>"string"==typeof bn(t),Sn=t=>Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),wn=(t,{visitFnGetter:e=vn,nodeTypeGetter:r=bn,breakSymbol:n=mn,deleteNodeSymbol:o=null,skipVisitingNodeSymbol:i=!1,exposeEdits:s=!1}={})=>{const c=Symbol("skip"),a=new Array(t.length).fill(c);return{enter(u,l,f,p,y,h){let g=u,d=!1;const v={...h,replaceWith(t,e){h.replaceWith(t,e),g=t}};for(let u=0;u<t.length;u+=1)if(a[u]===c){const c=e(t[u],r(g),!1);if("function"==typeof c){const e=c.call(t[u],g,l,f,p,y,v);if("function"==typeof e?.then)throw new Pt("Async visitor not supported in sync mode",{visitor:t[u],visitFn:c});if(e===i)a[u]=g;else if(e===n)a[u]=n;else{if(e===o)return e;if(void 0!==e){if(!s)return e;g=e,d=!0}}}}return d?g:void 0},leave(o,s,u,l,f,p){let y=o;const h={...p,replaceWith(t,e){p.replaceWith(t,e),y=t}};for(let o=0;o<t.length;o+=1)if(a[o]===c){const c=e(t[o],r(y),!0);if("function"==typeof c){const e=c.call(t[o],y,s,u,l,f,h);if("function"==typeof e?.then)throw new Pt("Async visitor not supported in sync mode",{visitor:t[o],visitFn:c});if(e===n)a[o]=n;else if(void 0!==e&&e!==i)return e}}else a[o]===y&&(a[o]=c)}}};wn[Symbol.for("nodejs.util.promisify.custom")]=(t,{visitFnGetter:e=vn,nodeTypeGetter:r=bn,breakSymbol:n=mn,deleteNodeSymbol:o=null,skipVisitingNodeSymbol:i=!1,exposeEdits:s=!1}={})=>{const c=Symbol("skip"),a=new Array(t.length).fill(c);return{async enter(u,l,f,p,y,h){let g=u,d=!1;const v={...h,replaceWith(t,e){h.replaceWith(t,e),g=t}};for(let u=0;u<t.length;u+=1)if(a[u]===c){const c=e(t[u],r(g),!1);if("function"==typeof c){const e=await c.call(t[u],g,l,f,p,y,v);if(e===i)a[u]=g;else if(e===n)a[u]=n;else{if(e===o)return e;if(void 0!==e){if(!s)return e;g=e,d=!0}}}}return d?g:void 0},async leave(o,s,u,l,f,p){let y=o;const h={...p,replaceWith(t,e){p.replaceWith(t,e),y=t}};for(let o=0;o<t.length;o+=1)if(a[o]===c){const c=e(t[o],r(y),!0);if("function"==typeof c){const e=await c.call(t[o],y,s,u,l,f,h);if(e===n)a[o]=n;else if(void 0!==e&&e!==i)return e}}else a[o]===y&&(a[o]=c)}}};const On=(t,e,{keyMap:r=null,state:n={},breakSymbol:o=mn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=vn,nodeTypeGetter:a=bn,nodePredicate:u=xn,nodeCloneFn:l=Sn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const x=[],S=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===S.length?void 0:x.pop(),b=h,h=S.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;x.push(r)}let O;if(!Array.isArray(b)){if(!u(b))throw new Pt(`Invalid AST Node: ${String(b)}`,{node:b});if(f&&S.includes(b)){x.pop();continue}const i=c(e,a(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;const o={replaceWith(e,n){"function"==typeof n?n(e,b,r,h,x,S):h&&(h[r]=e),t||(b=e)}};O=i.call(e,b,r,h,x,S,o)}if("function"==typeof O?.then)throw new Pt("Async visitor not supported in sync mode",{visitor:e,visitFn:i});if(O===o)break;if(O===s){if(!t){x.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!u(O)){x.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[a(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&S.push(h),h=b)}while(void 0!==y);return 0!==m.length?m[m.length-1][1]:t};On[Symbol.for("nodejs.util.promisify.custom")]=async(t,e,{keyMap:r=null,state:n={},breakSymbol:o=mn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:s=!1,visitFnGetter:c=vn,nodeTypeGetter:a=bn,nodePredicate:u=xn,nodeCloneFn:l=Sn,detectCycles:f=!0}={})=>{const p=r||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const x=[],S=[];do{v+=1;const t=v===d.length;let r;const w=t&&0!==m.length;if(t){if(r=0===S.length?void 0:x.pop(),b=h,h=S.pop(),w)if(g){b=b.slice();let t=0;for(const[e,r]of m){const n=e-t;r===i?(b.splice(n,1),t+=1):b[n]=r}}else{b=l(b);for(const[t,e]of m)b[t]=e}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(r=g?v:d[v],b=h[r],b===i||void 0===b)continue;x.push(r)}let O;if(!Array.isArray(b)){if(!u(b))throw new Pt(`Invalid AST Node: ${String(b)}`,{node:b});if(f&&S.includes(b)){x.pop();continue}const i=c(e,a(b),t);if(i){for(const[t,r]of Object.entries(n))e[t]=r;const o={replaceWith(e,n){"function"==typeof n?n(e,b,r,h,x,S):h&&(h[r]=e),t||(b=e)}};O=await i.call(e,b,r,h,x,S,o)}if(O===o)break;if(O===s){if(!t){x.pop();continue}}else if(void 0!==O&&(m.push([r,O]),!t)){if(!u(O)){x.pop();continue}b=O}}void 0===O&&w&&m.push([r,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[a(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&S.push(h),h=b)}while(void 0!==y);return 0!==m.length?m[m.length-1][1]:t}})(),n})()));
@@ -51,7 +51,7 @@ export const cloneNode = node => Object.create(Object.getPrototypeOf(node), Obje
51
51
  * parallel. Each visitor will be visited for each node before moving on.
52
52
  *
53
53
  * If a prior visitor edits a node, no following visitors will see that node.
54
- * `exposeEdits=true` can be used to exoise the edited node from the previous visitors.
54
+ * `exposeEdits=true` can be used to expose the edited node from the previous visitors.
55
55
  */
56
56
 
57
57
  export const mergeAll = (visitors, {
@@ -65,14 +65,21 @@ export const mergeAll = (visitors, {
65
65
  const skipSymbol = Symbol('skip');
66
66
  const skipping = new Array(visitors.length).fill(skipSymbol);
67
67
  return {
68
- enter(node, ...rest) {
68
+ enter(node, key, parent, path, ancestors, link) {
69
69
  let currentNode = node;
70
70
  let hasChanged = false;
71
+ const linkProxy = {
72
+ ...link,
73
+ replaceWith(newNode, replacer) {
74
+ link.replaceWith(newNode, replacer);
75
+ currentNode = newNode;
76
+ }
77
+ };
71
78
  for (let i = 0; i < visitors.length; i += 1) {
72
79
  if (skipping[i] === skipSymbol) {
73
80
  const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), false);
74
81
  if (typeof visitFn === 'function') {
75
- const result = visitFn.call(visitors[i], currentNode, ...rest);
82
+ const result = visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
76
83
 
77
84
  // check if the visitor is async
78
85
  if (typeof (result === null || result === void 0 ? void 0 : result.then) === 'function') {
@@ -82,7 +89,7 @@ export const mergeAll = (visitors, {
82
89
  });
83
90
  }
84
91
  if (result === skipVisitingNodeSymbol) {
85
- skipping[i] = node;
92
+ skipping[i] = currentNode;
86
93
  } else if (result === breakSymbol) {
87
94
  skipping[i] = breakSymbol;
88
95
  } else if (result === deleteNodeSymbol) {
@@ -100,12 +107,20 @@ export const mergeAll = (visitors, {
100
107
  }
101
108
  return hasChanged ? currentNode : undefined;
102
109
  },
103
- leave(node, ...rest) {
110
+ leave(node, key, parent, path, ancestors, link) {
111
+ let currentNode = node;
112
+ const linkProxy = {
113
+ ...link,
114
+ replaceWith(newNode, replacer) {
115
+ link.replaceWith(newNode, replacer);
116
+ currentNode = newNode;
117
+ }
118
+ };
104
119
  for (let i = 0; i < visitors.length; i += 1) {
105
120
  if (skipping[i] === skipSymbol) {
106
- const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(node), true);
121
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), true);
107
122
  if (typeof visitFn === 'function') {
108
- const result = visitFn.call(visitors[i], node, ...rest);
123
+ const result = visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
109
124
 
110
125
  // check if the visitor is async
111
126
  if (typeof (result === null || result === void 0 ? void 0 : result.then) === 'function') {
@@ -120,7 +135,7 @@ export const mergeAll = (visitors, {
120
135
  return result;
121
136
  }
122
137
  }
123
- } else if (skipping[i] === node) {
138
+ } else if (skipping[i] === currentNode) {
124
139
  skipping[i] = skipSymbol;
125
140
  }
126
141
  }
@@ -139,17 +154,24 @@ const mergeAllAsync = (visitors, {
139
154
  const skipSymbol = Symbol('skip');
140
155
  const skipping = new Array(visitors.length).fill(skipSymbol);
141
156
  return {
142
- async enter(node, ...rest) {
157
+ async enter(node, key, parent, path, ancestors, link) {
143
158
  let currentNode = node;
144
159
  let hasChanged = false;
160
+ const linkProxy = {
161
+ ...link,
162
+ replaceWith(newNode, replacer) {
163
+ link.replaceWith(newNode, replacer);
164
+ currentNode = newNode;
165
+ }
166
+ };
145
167
  for (let i = 0; i < visitors.length; i += 1) {
146
168
  if (skipping[i] === skipSymbol) {
147
169
  const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), false);
148
170
  if (typeof visitFn === 'function') {
149
171
  // eslint-disable-next-line no-await-in-loop
150
- const result = await visitFn.call(visitors[i], currentNode, ...rest);
172
+ const result = await visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
151
173
  if (result === skipVisitingNodeSymbol) {
152
- skipping[i] = node;
174
+ skipping[i] = currentNode;
153
175
  } else if (result === breakSymbol) {
154
176
  skipping[i] = breakSymbol;
155
177
  } else if (result === deleteNodeSymbol) {
@@ -167,20 +189,28 @@ const mergeAllAsync = (visitors, {
167
189
  }
168
190
  return hasChanged ? currentNode : undefined;
169
191
  },
170
- async leave(node, ...rest) {
192
+ async leave(node, key, parent, path, ancestors, link) {
193
+ let currentNode = node;
194
+ const linkProxy = {
195
+ ...link,
196
+ replaceWith(newNode, replacer) {
197
+ link.replaceWith(newNode, replacer);
198
+ currentNode = newNode;
199
+ }
200
+ };
171
201
  for (let i = 0; i < visitors.length; i += 1) {
172
202
  if (skipping[i] === skipSymbol) {
173
- const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(node), true);
203
+ const visitFn = visitFnGetter(visitors[i], nodeTypeGetter(currentNode), true);
174
204
  if (typeof visitFn === 'function') {
175
205
  // eslint-disable-next-line no-await-in-loop
176
- const result = await visitFn.call(visitors[i], node, ...rest);
206
+ const result = await visitFn.call(visitors[i], currentNode, key, parent, path, ancestors, linkProxy);
177
207
  if (result === breakSymbol) {
178
208
  skipping[i] = breakSymbol;
179
209
  } else if (result !== undefined && result !== skipVisitingNodeSymbol) {
180
210
  return result;
181
211
  }
182
212
  }
183
- } else if (skipping[i] === node) {
213
+ } else if (skipping[i] === currentNode) {
184
214
  skipping[i] = skipSymbol;
185
215
  }
186
216
  }
@@ -376,8 +406,22 @@ visitor, {
376
406
  for (const [stateKey, stateValue] of Object.entries(state)) {
377
407
  visitor[stateKey] = stateValue;
378
408
  }
409
+ const link = {
410
+ // eslint-disable-next-line @typescript-eslint/no-loop-func
411
+ replaceWith(newNode, replacer) {
412
+ if (typeof replacer === 'function') {
413
+ replacer(newNode, node, key, parent, path, ancestors);
414
+ } else if (parent) {
415
+ parent[key] = newNode;
416
+ }
417
+ if (!isLeaving) {
418
+ node = newNode;
419
+ }
420
+ }
421
+ };
422
+
379
423
  // retrieve result
380
- result = visitFn.call(visitor, node, key, parent, path, ancestors);
424
+ result = visitFn.call(visitor, node, key, parent, path, ancestors, link);
381
425
  }
382
426
 
383
427
  // check if the visitor is async
@@ -534,9 +578,22 @@ visitor, {
534
578
  for (const [stateKey, stateValue] of Object.entries(state)) {
535
579
  visitor[stateKey] = stateValue;
536
580
  }
581
+ const link = {
582
+ // eslint-disable-next-line @typescript-eslint/no-loop-func
583
+ replaceWith(newNode, replacer) {
584
+ if (typeof replacer === 'function') {
585
+ replacer(newNode, node, key, parent, path, ancestors);
586
+ } else if (parent) {
587
+ parent[key] = newNode;
588
+ }
589
+ if (!isLeaving) {
590
+ node = newNode;
591
+ }
592
+ }
593
+ };
537
594
 
538
595
  // retrieve result
539
- result = await visitFn.call(visitor, node, key, parent, path, ancestors); // eslint-disable-line no-await-in-loop
596
+ result = await visitFn.call(visitor, node, key, parent, path, ancestors, link); // eslint-disable-line no-await-in-loop
540
597
  }
541
598
  if (result === breakSymbol) {
542
599
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swagger-api/apidom-ast",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.3",
4
4
  "description": "Tools necessary for parsing stage of ApiDOM, specifically for syntactic analysis.",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -58,5 +58,5 @@
58
58
  "README.md",
59
59
  "CHANGELOG.md"
60
60
  ],
61
- "gitHead": "88bfd76beb31327396133bf52076d9c89e0c99b9"
61
+ "gitHead": "6e63209f9bc1b2a51172ced05ba6dc53417c611a"
62
62
  }
package/types/dist.d.ts CHANGED
@@ -351,7 +351,7 @@ declare const cloneNode: (node: any) => any;
351
351
  * parallel. Each visitor will be visited for each node before moving on.
352
352
  *
353
353
  * If a prior visitor edits a node, no following visitors will see that node.
354
- * `exposeEdits=true` can be used to exoise the edited node from the previous visitors.
354
+ * `exposeEdits=true` can be used to expose the edited node from the previous visitors.
355
355
  */
356
356
  interface MergeAllSync {
357
357
  (visitors: any[], options?: {