@swagger-api/apidom-ast 0.76.1 → 0.77.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/cjs/Error.cjs +2 -3
  3. package/cjs/Literal.cjs +2 -3
  4. package/cjs/Node.cjs +2 -3
  5. package/cjs/ParseResult.cjs +2 -3
  6. package/cjs/Position.cjs +3 -5
  7. package/cjs/index.cjs +4 -4
  8. package/cjs/json/nodes/JsonArray.cjs +2 -3
  9. package/cjs/json/nodes/JsonDocument.cjs +2 -3
  10. package/cjs/json/nodes/JsonEscapeSequence.cjs +2 -3
  11. package/cjs/json/nodes/JsonFalse.cjs +2 -3
  12. package/cjs/json/nodes/JsonKey.cjs +2 -3
  13. package/cjs/json/nodes/JsonNode.cjs +2 -3
  14. package/cjs/json/nodes/JsonNull.cjs +2 -3
  15. package/cjs/json/nodes/JsonNumber.cjs +2 -3
  16. package/cjs/json/nodes/JsonObject.cjs +2 -3
  17. package/cjs/json/nodes/JsonProperty.cjs +2 -3
  18. package/cjs/json/nodes/JsonString.cjs +2 -3
  19. package/cjs/json/nodes/JsonStringContent.cjs +2 -3
  20. package/cjs/json/nodes/JsonTrue.cjs +2 -3
  21. package/cjs/json/nodes/JsonValue.cjs +2 -3
  22. package/cjs/json/nodes/predicates.cjs +12 -24
  23. package/cjs/predicates.cjs +4 -8
  24. package/cjs/traversal/visitor.cjs +92 -89
  25. package/cjs/yaml/errors/YamlSchemaError.cjs +1 -2
  26. package/cjs/yaml/errors/YamlTagError.cjs +2 -3
  27. package/cjs/yaml/nodes/YamlAlias.cjs +2 -3
  28. package/cjs/yaml/nodes/YamlAnchor.cjs +2 -3
  29. package/cjs/yaml/nodes/YamlCollection.cjs +2 -3
  30. package/cjs/yaml/nodes/YamlComment.cjs +2 -3
  31. package/cjs/yaml/nodes/YamlDirective.cjs +2 -3
  32. package/cjs/yaml/nodes/YamlDocument.cjs +2 -3
  33. package/cjs/yaml/nodes/YamlKeyValuePair.cjs +2 -3
  34. package/cjs/yaml/nodes/YamlMapping.cjs +2 -3
  35. package/cjs/yaml/nodes/YamlNode.cjs +2 -3
  36. package/cjs/yaml/nodes/YamlScalar.cjs +2 -3
  37. package/cjs/yaml/nodes/YamlSequence.cjs +2 -3
  38. package/cjs/yaml/nodes/YamlStream.cjs +2 -3
  39. package/cjs/yaml/nodes/YamlStyle.cjs +4 -7
  40. package/cjs/yaml/nodes/YamlTag.cjs +3 -5
  41. package/cjs/yaml/nodes/predicates.cjs +10 -20
  42. package/cjs/yaml/schemas/ScalarTag.cjs +2 -3
  43. package/cjs/yaml/schemas/Tag.cjs +2 -3
  44. package/cjs/yaml/schemas/canonical-format.cjs +4 -6
  45. package/cjs/yaml/schemas/failsafe/GenericMapping.cjs +2 -3
  46. package/cjs/yaml/schemas/failsafe/GenericSequence.cjs +2 -3
  47. package/cjs/yaml/schemas/failsafe/GenericString.cjs +2 -3
  48. package/cjs/yaml/schemas/failsafe/index.cjs +2 -3
  49. package/cjs/yaml/schemas/json/Boolean.cjs +2 -3
  50. package/cjs/yaml/schemas/json/FloatingPoint.cjs +2 -3
  51. package/cjs/yaml/schemas/json/Integer.cjs +2 -3
  52. package/cjs/yaml/schemas/json/Null.cjs +2 -3
  53. package/cjs/yaml/schemas/json/index.cjs +2 -3
  54. package/dist/apidom-ast.browser.js +371 -2118
  55. package/dist/apidom-ast.browser.min.js +1 -1
  56. package/es/{Error.js → Error.mjs} +1 -1
  57. package/es/{Literal.js → Literal.mjs} +1 -1
  58. package/es/{ParseResult.js → ParseResult.mjs} +1 -1
  59. package/es/{index.js → index.mjs} +40 -40
  60. package/es/json/nodes/{JsonArray.js → JsonArray.mjs} +2 -2
  61. package/es/json/nodes/{JsonDocument.js → JsonDocument.mjs} +1 -1
  62. package/es/json/nodes/{JsonEscapeSequence.js → JsonEscapeSequence.mjs} +1 -1
  63. package/es/json/nodes/{JsonFalse.js → JsonFalse.mjs} +1 -1
  64. package/es/json/nodes/{JsonKey.js → JsonKey.mjs} +1 -1
  65. package/es/json/nodes/{JsonNode.js → JsonNode.mjs} +1 -1
  66. package/es/json/nodes/{JsonNull.js → JsonNull.mjs} +1 -1
  67. package/es/json/nodes/{JsonNumber.js → JsonNumber.mjs} +1 -1
  68. package/es/json/nodes/{JsonObject.js → JsonObject.mjs} +2 -2
  69. package/es/json/nodes/{JsonProperty.js → JsonProperty.mjs} +2 -2
  70. package/es/json/nodes/{JsonString.js → JsonString.mjs} +2 -2
  71. package/es/json/nodes/{JsonStringContent.js → JsonStringContent.mjs} +1 -1
  72. package/es/json/nodes/{JsonTrue.js → JsonTrue.mjs} +1 -1
  73. package/es/json/nodes/{JsonValue.js → JsonValue.mjs} +1 -1
  74. package/es/json/nodes/{predicates.js → predicates.mjs} +1 -1
  75. package/es/traversal/{visitor.js → visitor.mjs} +88 -85
  76. package/es/yaml/errors/{YamlTagError.js → YamlTagError.mjs} +1 -7
  77. package/es/yaml/nodes/{YamlAlias.js → YamlAlias.mjs} +1 -1
  78. package/es/yaml/nodes/{YamlAnchor.js → YamlAnchor.mjs} +1 -1
  79. package/es/yaml/nodes/{YamlCollection.js → YamlCollection.mjs} +1 -1
  80. package/es/yaml/nodes/{YamlComment.js → YamlComment.mjs} +1 -1
  81. package/es/yaml/nodes/{YamlDirective.js → YamlDirective.mjs} +1 -1
  82. package/es/yaml/nodes/{YamlDocument.js → YamlDocument.mjs} +1 -1
  83. package/es/yaml/nodes/{YamlKeyValuePair.js → YamlKeyValuePair.mjs} +3 -3
  84. package/es/yaml/nodes/{YamlMapping.js → YamlMapping.mjs} +2 -2
  85. package/es/yaml/nodes/{YamlNode.js → YamlNode.mjs} +1 -1
  86. package/es/yaml/nodes/{YamlScalar.js → YamlScalar.mjs} +1 -1
  87. package/es/yaml/nodes/{YamlSequence.js → YamlSequence.mjs} +2 -2
  88. package/es/yaml/nodes/{YamlStream.js → YamlStream.mjs} +2 -2
  89. package/es/yaml/nodes/{YamlTag.js → YamlTag.mjs} +1 -1
  90. package/es/yaml/nodes/{predicates.js → predicates.mjs} +1 -1
  91. package/es/yaml/schemas/{ScalarTag.js → ScalarTag.mjs} +3 -3
  92. package/es/yaml/schemas/{Tag.js → Tag.mjs} +1 -1
  93. package/es/yaml/schemas/failsafe/{GenericMapping.js → GenericMapping.mjs} +2 -2
  94. package/es/yaml/schemas/failsafe/{GenericSequence.js → GenericSequence.mjs} +2 -2
  95. package/es/yaml/schemas/failsafe/{GenericString.js → GenericString.mjs} +1 -1
  96. package/es/yaml/schemas/failsafe/{index.js → index.mjs} +6 -6
  97. package/es/yaml/schemas/json/{Boolean.js → Boolean.mjs} +1 -1
  98. package/es/yaml/schemas/json/{FloatingPoint.js → FloatingPoint.mjs} +1 -1
  99. package/es/yaml/schemas/json/{Integer.js → Integer.mjs} +1 -1
  100. package/es/yaml/schemas/json/{Null.js → Null.mjs} +1 -1
  101. package/es/yaml/schemas/json/{index.js → index.mjs} +8 -8
  102. package/package.json +6 -6
  103. package/types/dist.d.ts +4 -2
  104. /package/es/{Node.js → Node.mjs} +0 -0
  105. /package/es/{Position.js → Position.mjs} +0 -0
  106. /package/es/{predicates.js → predicates.mjs} +0 -0
  107. /package/es/yaml/errors/{YamlSchemaError.js → YamlSchemaError.mjs} +0 -0
  108. /package/es/yaml/nodes/{YamlStyle.js → YamlStyle.mjs} +0 -0
  109. /package/es/yaml/schemas/{canonical-format.js → canonical-format.mjs} +0 -0
@@ -1 +1 @@
1
- !function(t,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define([],r):"object"==typeof exports?exports.apidomAST=r():t.apidomAST=r()}(self,(()=>(()=>{var t={42:(t,r,e)=>{var n=e(5846);t.exports=n},5271:(t,r,e)=>{var n=e(7820);t.exports=n},9821:(t,r,e)=>{var n=e(2285);e(7148),e(9031),e(1875),t.exports=n},8008:(t,r,e)=>{var n=e(8535);t.exports=n},164:(t,r,e)=>{var n=e(6042);t.exports=n},6791:(t,r,e)=>{e(4339),e(4242),e(4016),e(8939),e(5454);var n=e(7545);t.exports=n.AggregateError},3512:(t,r,e)=>{e(297);var n=e(7545).Object,o=t.exports=function(t,r,e){return n.defineProperty(t,r,e)};n.defineProperty.sham&&(o.sham=!0)},5008:(t,r,e)=>{e(9106),e(6663),e(6187),e(9781),e(492),e(6681),e(9594),e(3665),e(9017),e(1250),e(9786),e(503),e(6565),e(9322),e(3610),e(6886),e(3514),e(8671),e(8556),e(1367);var n=e(7545);t.exports=n.Symbol},994:(t,r,e)=>{e(8939),e(6663),e(5454),e(3665);var n=e(9207);t.exports=n.f("iterator")},290:(t,r,e)=>{e(2432),e(3610);var n=e(9207);t.exports=n.f("toPrimitive")},6762:(t,r,e)=>{t.exports=e(3028)},3028:(t,r,e)=>{e(2752);var n=e(42);t.exports=n},229:(t,r,e)=>{var n=e(5271);t.exports=n},2185:(t,r,e)=>{var n=e(9821);e(177),e(3346),e(3520),e(6658),e(8658),e(2725),e(1806),e(4212),e(4592),e(6680),t.exports=n},9982:(t,r,e)=>{var n=e(8008);t.exports=n},8241:(t,r,e)=>{var n=e(164);t.exports=n},6235:(t,r,e)=>{var n=e(6447),o=e(9288),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a function")}},7757:(t,r,e)=>{var n=e(6447),o=String,i=TypeError;t.exports=function(t){if("object"==typeof t||n(t))return t;throw i("Can't set "+o(t)+" as a prototype")}},7423:t=>{t.exports=function(){}},1138:(t,r,e)=>{var n=e(5744),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not an object")}},8180:(t,r,e)=>{var n=e(101),o=e(7739),i=e(4104),a=function(t){return function(r,e,a){var c,s=n(r),u=i(s),l=o(a,u);if(t&&e!=e){for(;u>l;)if((c=s[l++])!=c)return!0}else for(;u>l;l++)if((t||l in s)&&s[l]===e)return t||l||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},454:(t,r,e)=>{var n=e(8043),o=e(4120),i=e(2202),a=e(1795),c=e(4104),s=e(1321),u=o([].push),l=function(t){var r=1==t,e=2==t,o=3==t,l=4==t,f=6==t,p=7==t,y=5==t||f;return function(h,g,d,v){for(var m,b,S=a(h),x=i(S),O=n(g,d),w=c(x),j=0,A=v||s,E=r?A(h,w):e||p?A(h,0):void 0;w>j;j++)if((y||j in x)&&(b=O(m=x[j],j,S),t))if(r)E[j]=b;else if(b)switch(t){case 3:return!0;case 5:return m;case 6:return j;case 2:u(E,m)}else switch(t){case 4:return!1;case 7:u(E,m)}return f?-1:o||l?l:E}};t.exports={forEach:l(0),map:l(1),filter:l(2),some:l(3),every:l(4),find:l(5),findIndex:l(6),filterReject:l(7)}},242:(t,r,e)=>{var n=e(6192),o=e(8182),i=e(4218),a=o("species");t.exports=function(t){return i>=51||!n((function(){var r=[];return(r.constructor={})[a]=function(){return{foo:1}},1!==r[t](Boolean).foo}))}},1923:(t,r,e)=>{var n=e(7739),o=e(4104),i=e(9361),a=Array,c=Math.max;t.exports=function(t,r,e){for(var s=o(t),u=n(r,s),l=n(void 0===e?s:e,s),f=a(c(l-u,0)),p=0;u<l;u++,p++)i(f,p,t[u]);return f.length=p,f}},3096:(t,r,e)=>{var n=e(4120);t.exports=n([].slice)},3712:(t,r,e)=>{var n=e(4770),o=e(2091),i=e(5744),a=e(8182)("species"),c=Array;t.exports=function(t){var r;return n(t)&&(r=t.constructor,(o(r)&&(r===c||n(r.prototype))||i(r)&&null===(r=r[a]))&&(r=void 0)),void 0===r?c:r}},1321:(t,r,e)=>{var n=e(3712);t.exports=function(t,r){return new(n(t))(0===r?0:r)}},9272:(t,r,e)=>{var n=e(4120),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},4696:(t,r,e)=>{var n=e(3471),o=e(6447),i=e(9272),a=e(8182)("toStringTag"),c=Object,s="Arguments"==i(function(){return arguments}());t.exports=n?i:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(t){}}(r=c(t),a))?e:s?i(r):"Object"==(n=i(r))&&o(r.callee)?"Arguments":n}},7987:(t,r,e)=>{var n=e(4500),o=e(3011),i=e(5141),a=e(2760);t.exports=function(t,r,e){for(var c=o(r),s=a.f,u=i.f,l=0;l<c.length;l++){var f=c[l];n(t,f)||e&&n(e,f)||s(t,f,u(r,f))}}},4635:(t,r,e)=>{var n=e(6192);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},7271:t=>{t.exports=function(t,r){return{value:t,done:r}}},8711:(t,r,e)=>{var n=e(69),o=e(2760),i=e(774);t.exports=n?function(t,r,e){return o.f(t,r,i(1,e))}:function(t,r,e){return t[r]=e,t}},774:t=>{t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},9361:(t,r,e)=>{"use strict";var n=e(77),o=e(2760),i=e(774);t.exports=function(t,r,e){var a=n(r);a in t?o.f(t,a,i(0,e)):t[a]=e}},2807:(t,r,e)=>{var n=e(2760);t.exports=function(t,r,e){return n.f(t,r,e)}},9362:(t,r,e)=>{var n=e(8711);t.exports=function(t,r,e,o){return o&&o.enumerable?t[r]=e:n(t,r,e),t}},5098:(t,r,e)=>{var n=e(8576),o=Object.defineProperty;t.exports=function(t,r){try{o(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},69:(t,r,e)=>{var n=e(6192);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},8382:t=>{var r="object"==typeof document&&document.all,e=void 0===r&&void 0!==r;t.exports={all:r,IS_HTMLDDA:e}},7449:(t,r,e)=>{var n=e(8576),o=e(5744),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},9425:t=>{var r=TypeError;t.exports=function(t){if(t>9007199254740991)throw r("Maximum allowed index exceeded");return t}},7365:t=>{t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8989:t=>{t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4218:(t,r,e)=>{var n,o,i=e(8576),a=e(8989),c=i.process,s=i.Deno,u=c&&c.versions||s&&s.version,l=u&&u.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},2952:t=>{t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},4503:(t,r,e)=>{var n=e(4120),o=Error,i=n("".replace),a=String(o("zxcasd").stack),c=/\n\s*at [^:]*:[^\n]*/,s=c.test(a);t.exports=function(t,r){if(s&&"string"==typeof t&&!o.prepareStackTrace)for(;r--;)t=i(t,c,"");return t}},8266:(t,r,e)=>{var n=e(8711),o=e(4503),i=e(274),a=Error.captureStackTrace;t.exports=function(t,r,e,c){i&&(a?a(t,r):n(t,"stack",o(e,c)))}},274:(t,r,e)=>{var n=e(6192),o=e(774);t.exports=!n((function(){var t=Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},3085:(t,r,e)=>{"use strict";var n=e(8576),o=e(6298),i=e(4914),a=e(6447),c=e(5141).f,s=e(9245),u=e(7545),l=e(8043),f=e(8711),p=e(4500),y=function(t){var r=function(e,n,i){if(this instanceof r){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return o(t,this,arguments)};return r.prototype=t.prototype,r};t.exports=function(t,r){var e,o,h,g,d,v,m,b,S,x=t.target,O=t.global,w=t.stat,j=t.proto,A=O?n:w?n[x]:(n[x]||{}).prototype,E=O?u:u[x]||f(u,x,{})[x],T=E.prototype;for(g in r)o=!(e=s(O?g:x+(w?".":"#")+g,t.forced))&&A&&p(A,g),v=E[g],o&&(m=t.dontCallGetSet?(S=c(A,g))&&S.value:A[g]),d=o&&m?m:r[g],o&&typeof v==typeof d||(b=t.bind&&o?l(d,n):t.wrap&&o?y(d):j&&a(d)?i(d):d,(t.sham||d&&d.sham||v&&v.sham)&&f(b,"sham",!0),f(E,g,b),j&&(p(u,h=x+"Prototype")||f(u,h,{}),f(u[h],g,d),t.real&&T&&(e||!T[g])&&f(T,g,d)))}},6192:t=>{t.exports=function(t){try{return!!t()}catch(t){return!0}}},6298:(t,r,e)=>{var n=e(2784),o=Function.prototype,i=o.apply,a=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?a.bind(i):function(){return a.apply(i,arguments)})},8043:(t,r,e)=>{var n=e(4914),o=e(6235),i=e(2784),a=n(n.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?a(t,r):function(){return t.apply(r,arguments)}}},2784:(t,r,e)=>{var n=e(6192);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},8922:(t,r,e)=>{var n=e(2784),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},2282:(t,r,e)=>{var n=e(69),o=e(4500),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),s=c&&"something"===function(){}.name,u=c&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:c,PROPER:s,CONFIGURABLE:u}},6419:(t,r,e)=>{var n=e(4120),o=e(6235);t.exports=function(t,r,e){try{return n(o(Object.getOwnPropertyDescriptor(t,r)[e]))}catch(t){}}},4914:(t,r,e)=>{var n=e(9272),o=e(4120);t.exports=function(t){if("Function"===n(t))return o(t)}},4120:(t,r,e)=>{var n=e(2784),o=Function.prototype,i=o.call,a=n&&o.bind.bind(i,i);t.exports=n?a:function(t){return function(){return i.apply(t,arguments)}}},150:(t,r,e)=>{var n=e(7545),o=e(8576),i=e(6447),a=function(t){return i(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?a(n[t])||a(o[t]):n[t]&&n[t][r]||o[t]&&o[t][r]}},8703:(t,r,e)=>{var n=e(4696),o=e(5037),i=e(5646),a=e(7771),c=e(8182)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||a[n(t)]}},1669:(t,r,e)=>{var n=e(8922),o=e(6235),i=e(1138),a=e(9288),c=e(8703),s=TypeError;t.exports=function(t,r){var e=arguments.length<2?c(t):r;if(o(e))return i(n(e,t));throw s(a(t)+" is not iterable")}},9202:(t,r,e)=>{var n=e(4120),o=e(4770),i=e(6447),a=e(9272),c=e(4845),s=n([].push);t.exports=function(t){if(i(t))return t;if(o(t)){for(var r=t.length,e=[],n=0;n<r;n++){var u=t[n];"string"==typeof u?s(e,u):"number"!=typeof u&&"Number"!=a(u)&&"String"!=a(u)||s(e,c(u))}var l=e.length,f=!0;return function(t,r){if(f)return f=!1,r;if(o(this))return r;for(var n=0;n<l;n++)if(e[n]===t)return r}}}},5037:(t,r,e)=>{var n=e(6235),o=e(5646);t.exports=function(t,r){var e=t[r];return o(e)?void 0:n(e)}},8576:function(t,r,e){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 e.g&&e.g)||function(){return this}()||this||Function("return this")()},4500:(t,r,e)=>{var n=e(4120),o=e(1795),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},4535:t=>{t.exports={}},7403:(t,r,e)=>{var n=e(150);t.exports=n("document","documentElement")},188:(t,r,e)=>{var n=e(69),o=e(6192),i=e(7449);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},2202:(t,r,e)=>{var n=e(4120),o=e(6192),i=e(9272),a=Object,c=n("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?c(t,""):a(t)}:a},2643:(t,r,e)=>{var n=e(6447),o=e(5744),i=e(4469);t.exports=function(t,r,e){var a,c;return i&&n(a=r.constructor)&&a!==e&&o(c=a.prototype)&&c!==e.prototype&&i(t,c),t}},9516:(t,r,e)=>{var n=e(4120),o=e(6447),i=e(6434),a=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return a(t)}),t.exports=i.inspectSource},273:(t,r,e)=>{var n=e(5744),o=e(8711);t.exports=function(t,r){n(r)&&"cause"in r&&o(t,"cause",r.cause)}},3326:(t,r,e)=>{var n,o,i,a=e(5278),c=e(8576),s=e(5744),u=e(8711),l=e(4500),f=e(6434),p=e(9766),y=e(4535),h="Object already initialized",g=c.TypeError,d=c.WeakMap;if(a||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,r){if(v.has(t))throw g(h);return r.facade=t,v.set(t,r),r},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,r){if(l(t,m))throw g(h);return r.facade=t,u(t,m,r),r},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(r){var e;if(!s(r)||(e=o(r)).type!==t)throw g("Incompatible receiver, "+t+" required");return e}}}},6109:(t,r,e)=>{var n=e(8182),o=e(7771),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},4770:(t,r,e)=>{var n=e(9272);t.exports=Array.isArray||function(t){return"Array"==n(t)}},6447:(t,r,e)=>{var n=e(8382),o=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===o}:function(t){return"function"==typeof t}},2091:(t,r,e)=>{var n=e(4120),o=e(6192),i=e(6447),a=e(4696),c=e(150),s=e(9516),u=function(){},l=[],f=c("Reflect","construct"),p=/^\s*(?:class|function)\b/,y=n(p.exec),h=!p.exec(u),g=function(t){if(!i(t))return!1;try{return f(u,l,t),!0}catch(t){return!1}},d=function(t){if(!i(t))return!1;switch(a(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return h||!!y(p,s(t))}catch(t){return!0}};d.sham=!0,t.exports=!f||o((function(){var t;return g(g.call)||!g(Object)||!g((function(){t=!0}))||t}))?d:g},9245:(t,r,e)=>{var n=e(6192),o=e(6447),i=/#|\.prototype\./,a=function(t,r){var e=s[c(t)];return e==l||e!=u&&(o(r)?n(r):!!r)},c=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},s=a.data={},u=a.NATIVE="N",l=a.POLYFILL="P";t.exports=a},5646:t=>{t.exports=function(t){return null==t}},5744:(t,r,e)=>{var n=e(6447),o=e(8382),i=o.all;t.exports=o.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:n(t)||t===i}:function(t){return"object"==typeof t?null!==t:n(t)}},5546:t=>{t.exports=!0},3236:(t,r,e)=>{var n=e(150),o=e(6447),i=e(8902),a=e(615),c=Object;t.exports=a?function(t){return"symbol"==typeof t}:function(t){var r=n("Symbol");return o(r)&&i(r.prototype,c(t))}},3442:(t,r,e)=>{var n=e(8043),o=e(8922),i=e(1138),a=e(9288),c=e(6109),s=e(4104),u=e(8902),l=e(1669),f=e(8703),p=e(6639),y=TypeError,h=function(t,r){this.stopped=t,this.result=r},g=h.prototype;t.exports=function(t,r,e){var d,v,m,b,S,x,O,w=e&&e.that,j=!(!e||!e.AS_ENTRIES),A=!(!e||!e.IS_RECORD),E=!(!e||!e.IS_ITERATOR),T=!(!e||!e.INTERRUPTED),P=n(r,w),k=function(t){return d&&p(d,"normal",t),new h(!0,t)},N=function(t){return j?(i(t),T?P(t[0],t[1],k):P(t[0],t[1])):T?P(t,k):P(t)};if(A)d=t.iterator;else if(E)d=t;else{if(!(v=f(t)))throw y(a(t)+" is not iterable");if(c(v)){for(m=0,b=s(t);b>m;m++)if((S=N(t[m]))&&u(g,S))return S;return new h(!1)}d=l(t,v)}for(x=A?t.next:d.next;!(O=o(x,d)).done;){try{S=N(O.value)}catch(t){p(d,"throw",t)}if("object"==typeof S&&S&&u(g,S))return S}return new h(!1)}},6639:(t,r,e)=>{var n=e(8922),o=e(1138),i=e(5037);t.exports=function(t,r,e){var a,c;o(t);try{if(!(a=i(t,"return"))){if("throw"===r)throw e;return e}a=n(a,t)}catch(t){c=!0,a=t}if("throw"===r)throw e;if(c)throw a;return o(a),e}},5695:(t,r,e)=>{"use strict";var n=e(4413).IteratorPrototype,o=e(2853),i=e(774),a=e(1284),c=e(7771),s=function(){return this};t.exports=function(t,r,e,u){var l=r+" Iterator";return t.prototype=o(n,{next:i(+!u,e)}),a(t,l,!1,!0),c[l]=s,t}},5297:(t,r,e)=>{"use strict";var n=e(3085),o=e(8922),i=e(5546),a=e(2282),c=e(6447),s=e(5695),u=e(9341),l=e(4469),f=e(1284),p=e(8711),y=e(9362),h=e(8182),g=e(7771),d=e(4413),v=a.PROPER,m=a.CONFIGURABLE,b=d.IteratorPrototype,S=d.BUGGY_SAFARI_ITERATORS,x=h("iterator"),O="keys",w="values",j="entries",A=function(){return this};t.exports=function(t,r,e,a,h,d,E){s(e,r,a);var T,P,k,N=function(t){if(t===h&&I)return I;if(!S&&t in M)return M[t];switch(t){case O:case w:case j:return function(){return new e(this,t)}}return function(){return new e(this)}},F=r+" Iterator",C=!1,M=t.prototype,D=M[x]||M["@@iterator"]||h&&M[h],I=!S&&D||N(h),R="Array"==r&&M.entries||D;if(R&&(T=u(R.call(new t)))!==Object.prototype&&T.next&&(i||u(T)===b||(l?l(T,b):c(T[x])||y(T,x,A)),f(T,F,!0,!0),i&&(g[F]=A)),v&&h==w&&D&&D.name!==w&&(!i&&m?p(M,"name",w):(C=!0,I=function(){return o(D,this)})),h)if(P={values:N(w),keys:d?I:N(O),entries:N(j)},E)for(k in P)(S||C||!(k in M))&&y(M,k,P[k]);else n({target:r,proto:!0,forced:S||C},P);return i&&!E||M[x]===I||y(M,x,I,{name:h}),g[r]=I,P}},4413:(t,r,e)=>{"use strict";var n,o,i,a=e(6192),c=e(6447),s=e(5744),u=e(2853),l=e(9341),f=e(9362),p=e(8182),y=e(5546),h=p("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=l(l(i)))!==Object.prototype&&(n=o):g=!0),!s(n)||a((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}},7771:t=>{t.exports={}},4104:(t,r,e)=>{var n=e(8445);t.exports=function(t){return n(t.length)}},7679:t=>{var r=Math.ceil,e=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?e:r)(n)}},6016:(t,r,e)=>{var n=e(4845);t.exports=function(t,r){return void 0===t?arguments.length<2?"":r:n(t)}},2853:(t,r,e)=>{var n,o=e(1138),i=e(1187),a=e(2952),c=e(4535),s=e(7403),u=e(7449),l=e(9766),f="prototype",p="script",y=l("IE_PROTO"),h=function(){},g=function(t){return"<"+p+">"+t+"</"+p+">"},d=function(t){t.write(g("")),t.close();var r=t.parentWindow.Object;return t=null,r},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,r,e;v="undefined"!=typeof document?document.domain&&n?d(n):(r=u("iframe"),e="java"+p+":",r.style.display="none",s.appendChild(r),r.src=String(e),(t=r.contentWindow.document).open(),t.write(g("document.F=Object")),t.close(),t.F):d(n);for(var o=a.length;o--;)delete v[f][a[o]];return v()};c[y]=!0,t.exports=Object.create||function(t,r){var e;return null!==t?(h[f]=o(t),e=new h,h[f]=null,e[y]=t):e=v(),void 0===r?e:i.f(e,r)}},1187:(t,r,e)=>{var n=e(69),o=e(9600),i=e(2760),a=e(1138),c=e(101),s=e(7653);r.f=n&&!o?Object.defineProperties:function(t,r){a(t);for(var e,n=c(r),o=s(r),u=o.length,l=0;u>l;)i.f(t,e=o[l++],n[e]);return t}},2760:(t,r,e)=>{var n=e(69),o=e(188),i=e(9600),a=e(1138),c=e(77),s=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",y="writable";r.f=n?i?function(t,r,e){if(a(t),r=c(r),a(e),"function"==typeof t&&"prototype"===r&&"value"in e&&y in e&&!e[y]){var n=l(t,r);n&&n[y]&&(t[r]=e.value,e={configurable:p in e?e[p]:n[p],enumerable:f in e?e[f]:n[f],writable:!1})}return u(t,r,e)}:u:function(t,r,e){if(a(t),r=c(r),a(e),o)try{return u(t,r,e)}catch(t){}if("get"in e||"set"in e)throw s("Accessors not supported");return"value"in e&&(t[r]=e.value),t}},5141:(t,r,e)=>{var n=e(69),o=e(8922),i=e(6007),a=e(774),c=e(101),s=e(77),u=e(4500),l=e(188),f=Object.getOwnPropertyDescriptor;r.f=n?f:function(t,r){if(t=c(t),r=s(r),l)try{return f(t,r)}catch(t){}if(u(t,r))return a(!o(i.f,t,r),t[r])}},4052:(t,r,e)=>{var n=e(9272),o=e(101),i=e(2092).f,a=e(1923),c="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return c&&"Window"==n(t)?function(t){try{return i(t)}catch(t){return a(c)}}(t):i(o(t))}},2092:(t,r,e)=>{var n=e(7934),o=e(2952).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},4750:(t,r)=>{r.f=Object.getOwnPropertySymbols},9341:(t,r,e)=>{var n=e(4500),o=e(6447),i=e(1795),a=e(9766),c=e(4635),s=a("IE_PROTO"),u=Object,l=u.prototype;t.exports=c?u.getPrototypeOf:function(t){var r=i(t);if(n(r,s))return r[s];var e=r.constructor;return o(e)&&r instanceof e?e.prototype:r instanceof u?l:null}},8902:(t,r,e)=>{var n=e(4120);t.exports=n({}.isPrototypeOf)},7934:(t,r,e)=>{var n=e(4120),o=e(4500),i=e(101),a=e(8180).indexOf,c=e(4535),s=n([].push);t.exports=function(t,r){var e,n=i(t),u=0,l=[];for(e in n)!o(c,e)&&o(n,e)&&s(l,e);for(;r.length>u;)o(n,e=r[u++])&&(~a(l,e)||s(l,e));return l}},7653:(t,r,e)=>{var n=e(7934),o=e(2952);t.exports=Object.keys||function(t){return n(t,o)}},6007:(t,r)=>{"use strict";var e={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!e.call({1:2},1);r.f=o?function(t){var r=n(this,t);return!!r&&r.enumerable}:e},4469:(t,r,e)=>{var n=e(6419),o=e(1138),i=e(7757);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=n(Object.prototype,"__proto__","set"))(e,[]),r=e instanceof Array}catch(t){}return function(e,n){return o(e),i(n),r?t(e,n):e.__proto__=n,e}}():void 0)},158:(t,r,e)=>{"use strict";var n=e(3471),o=e(4696);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},380:(t,r,e)=>{var n=e(8922),o=e(6447),i=e(5744),a=TypeError;t.exports=function(t,r){var e,c;if("string"===r&&o(e=t.toString)&&!i(c=n(e,t)))return c;if(o(e=t.valueOf)&&!i(c=n(e,t)))return c;if("string"!==r&&o(e=t.toString)&&!i(c=n(e,t)))return c;throw a("Can't convert object to primitive value")}},3011:(t,r,e)=>{var n=e(150),o=e(4120),i=e(2092),a=e(4750),c=e(1138),s=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var r=i.f(c(t)),e=a.f;return e?s(r,e(t)):r}},7545:t=>{t.exports={}},7656:(t,r,e)=>{var n=e(2760).f;t.exports=function(t,r,e){e in t||n(t,e,{configurable:!0,get:function(){return r[e]},set:function(t){r[e]=t}})}},3209:(t,r,e)=>{var n=e(5646),o=TypeError;t.exports=function(t){if(n(t))throw o("Can't call method on "+t);return t}},1284:(t,r,e)=>{var n=e(3471),o=e(2760).f,i=e(8711),a=e(4500),c=e(158),s=e(8182)("toStringTag");t.exports=function(t,r,e,u){if(t){var l=e?t:t.prototype;a(l,s)||o(l,s,{configurable:!0,value:r}),u&&!n&&i(l,"toString",c)}}},9766:(t,r,e)=>{var n=e(8717),o=e(2759),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},6434:(t,r,e)=>{var n=e(8576),o=e(5098),i="__core-js_shared__",a=n[i]||o(i,{});t.exports=a},8717:(t,r,e)=>{var n=e(5546),o=e(6434);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.31.1",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.31.1/LICENSE",source:"https://github.com/zloirock/core-js"})},863:(t,r,e)=>{var n=e(4120),o=e(1941),i=e(4845),a=e(3209),c=n("".charAt),s=n("".charCodeAt),u=n("".slice),l=function(t){return function(r,e){var n,l,f=i(a(r)),p=o(e),y=f.length;return p<0||p>=y?t?"":void 0:(n=s(f,p))<55296||n>56319||p+1===y||(l=s(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)}},6770:(t,r,e)=>{var n=e(4218),o=e(6192),i=e(8576).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},3407:(t,r,e)=>{var n=e(8922),o=e(150),i=e(8182),a=e(9362);t.exports=function(){var t=o("Symbol"),r=t&&t.prototype,e=r&&r.valueOf,c=i("toPrimitive");r&&!r[c]&&a(r,c,(function(t){return n(e,this)}),{arity:1})}},8743:(t,r,e)=>{var n=e(150),o=e(4120),i=n("Symbol"),a=i.keyFor,c=o(i.prototype.valueOf);t.exports=i.isRegisteredSymbol||function(t){try{return void 0!==a(c(t))}catch(t){return!1}}},5128:(t,r,e)=>{for(var n=e(8717),o=e(150),i=e(4120),a=e(3236),c=e(8182),s=o("Symbol"),u=s.isWellKnownSymbol,l=o("Object","getOwnPropertyNames"),f=i(s.prototype.valueOf),p=n("wks"),y=0,h=l(s),g=h.length;y<g;y++)try{var d=h[y];a(s[d])&&c(d)}catch(t){}t.exports=function(t){if(u&&u(t))return!0;try{for(var r=f(t),e=0,n=l(p),o=n.length;e<o;e++)if(p[n[e]]==r)return!0}catch(t){}return!1}},31:(t,r,e)=>{var n=e(6770);t.exports=n&&!!Symbol.for&&!!Symbol.keyFor},7739:(t,r,e)=>{var n=e(1941),o=Math.max,i=Math.min;t.exports=function(t,r){var e=n(t);return e<0?o(e+r,0):i(e,r)}},101:(t,r,e)=>{var n=e(2202),o=e(3209);t.exports=function(t){return n(o(t))}},1941:(t,r,e)=>{var n=e(7679);t.exports=function(t){var r=+t;return r!=r||0===r?0:n(r)}},8445:(t,r,e)=>{var n=e(1941),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},1795:(t,r,e)=>{var n=e(3209),o=Object;t.exports=function(t){return o(n(t))}},7888:(t,r,e)=>{var n=e(8922),o=e(5744),i=e(3236),a=e(5037),c=e(380),s=e(8182),u=TypeError,l=s("toPrimitive");t.exports=function(t,r){if(!o(t)||i(t))return t;var e,s=a(t,l);if(s){if(void 0===r&&(r="default"),e=n(s,t,r),!o(e)||i(e))return e;throw u("Can't convert object to primitive value")}return void 0===r&&(r="number"),c(t,r)}},77:(t,r,e)=>{var n=e(7888),o=e(3236);t.exports=function(t){var r=n(t,"string");return o(r)?r:r+""}},3471:(t,r,e)=>{var n={};n[e(8182)("toStringTag")]="z",t.exports="[object z]"===String(n)},4845:(t,r,e)=>{var n=e(4696),o=String;t.exports=function(t){if("Symbol"===n(t))throw TypeError("Cannot convert a Symbol value to a string");return o(t)}},9288:t=>{var r=String;t.exports=function(t){try{return r(t)}catch(t){return"Object"}}},2759:(t,r,e)=>{var n=e(4120),o=0,i=Math.random(),a=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},615:(t,r,e)=>{var n=e(6770);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},9600:(t,r,e)=>{var n=e(69),o=e(6192);t.exports=n&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5278:(t,r,e)=>{var n=e(8576),o=e(6447),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},8332:(t,r,e)=>{var n=e(7545),o=e(4500),i=e(9207),a=e(2760).f;t.exports=function(t){var r=n.Symbol||(n.Symbol={});o(r,t)||a(r,t,{value:i.f(t)})}},9207:(t,r,e)=>{var n=e(8182);r.f=n},8182:(t,r,e)=>{var n=e(8576),o=e(8717),i=e(4500),a=e(2759),c=e(6770),s=e(615),u=n.Symbol,l=o("wks"),f=s?u.for||u:u&&u.withoutSetter||a;t.exports=function(t){return i(l,t)||(l[t]=c&&i(u,t)?u[t]:f("Symbol."+t)),l[t]}},426:(t,r,e)=>{"use strict";var n=e(150),o=e(4500),i=e(8711),a=e(8902),c=e(4469),s=e(7987),u=e(7656),l=e(2643),f=e(6016),p=e(273),y=e(8266),h=e(69),g=e(5546);t.exports=function(t,r,e,d){var v="stackTraceLimit",m=d?2:1,b=t.split("."),S=b[b.length-1],x=n.apply(null,b);if(x){var O=x.prototype;if(!g&&o(O,"cause")&&delete O.cause,!e)return x;var w=n("Error"),j=r((function(t,r){var e=f(d?r:t,void 0),n=d?new x(t):new x;return void 0!==e&&i(n,"message",e),y(n,j,n.stack,2),this&&a(O,this)&&l(n,this,j),arguments.length>m&&p(n,arguments[m]),n}));if(j.prototype=O,"Error"!==S?c?c(j,w):s(j,w,{name:!0}):h&&v in x&&(u(j,x,v),u(j,x,"prepareStackTrace")),s(j,x),!g)try{O.name!==S&&i(O,"name",S),O.constructor=j}catch(t){}return j}}},4016:(t,r,e)=>{var n=e(3085),o=e(150),i=e(6298),a=e(6192),c=e(426),s="AggregateError",u=o(s),l=!a((function(){return 1!==u([1]).errors[0]}))&&a((function(){return 7!==u([1],s,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:c(s,(function(t){return function(r,e){return i(t,this,arguments)}}),l,!0)})},3820:(t,r,e)=>{"use strict";var n=e(3085),o=e(8902),i=e(9341),a=e(4469),c=e(7987),s=e(2853),u=e(8711),l=e(774),f=e(273),p=e(8266),y=e(3442),h=e(6016),g=e(8182)("toStringTag"),d=Error,v=[].push,m=function(t,r){var e,n=o(b,this);a?e=a(d(),n?i(this):b):(e=n?this:s(b),u(e,g,"Error")),void 0!==r&&u(e,"message",h(r)),p(e,m,e.stack,1),arguments.length>2&&f(e,arguments[2]);var c=[];return y(t,v,{that:c}),u(e,"errors",c),e};a?a(m,d):c(m,d,{name:!0});var b=m.prototype=s(d.prototype,{constructor:l(1,m),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:m})},4242:(t,r,e)=>{e(3820)},9106:(t,r,e)=>{"use strict";var n=e(3085),o=e(6192),i=e(4770),a=e(5744),c=e(1795),s=e(4104),u=e(9425),l=e(9361),f=e(1321),p=e(242),y=e(8182),h=e(4218),g=y("isConcatSpreadable"),d=h>=51||!o((function(){var t=[];return t[g]=!1,t.concat()[0]!==t})),v=function(t){if(!a(t))return!1;var r=t[g];return void 0!==r?!!r:i(t)};n({target:"Array",proto:!0,arity:1,forced:!d||!p("concat")},{concat:function(t){var r,e,n,o,i,a=c(this),p=f(a,0),y=0;for(r=-1,n=arguments.length;r<n;r++)if(v(i=-1===r?a:arguments[r]))for(o=s(i),u(y+o),e=0;e<o;e++,y++)e in i&&l(p,y,i[e]);else u(y+1),l(p,y++,i);return p.length=y,p}})},8939:(t,r,e)=>{"use strict";var n=e(101),o=e(7423),i=e(7771),a=e(3326),c=e(2760).f,s=e(5297),u=e(7271),l=e(5546),f=e(69),p="Array Iterator",y=a.set,h=a.getterFor(p);t.exports=s(Array,"Array",(function(t,r){y(this,{type:p,target:n(t),index:0,kind:r})}),(function(){var t=h(this),r=t.target,e=t.kind,n=t.index++;return!r||n>=r.length?(t.target=void 0,u(void 0,!0)):u("keys"==e?n:"values"==e?r[n]:[n,r[n]],!1)}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!l&&f&&"values"!==g.name)try{c(g,"name",{value:"values"})}catch(t){}},2432:()=>{},4339:(t,r,e)=>{var n=e(3085),o=e(8576),i=e(6298),a=e(426),c="WebAssembly",s=o[c],u=7!==Error("e",{cause:7}).cause,l=function(t,r){var e={};e[t]=a(t,r,u),n({global:!0,constructor:!0,arity:1,forced:u},e)},f=function(t,r){if(s&&s[t]){var e={};e[t]=a(c+"."+t,r,u),n({target:c,stat:!0,constructor:!0,arity:1,forced:u},e)}};l("Error",(function(t){return function(r){return i(t,this,arguments)}})),l("EvalError",(function(t){return function(r){return i(t,this,arguments)}})),l("RangeError",(function(t){return function(r){return i(t,this,arguments)}})),l("ReferenceError",(function(t){return function(r){return i(t,this,arguments)}})),l("SyntaxError",(function(t){return function(r){return i(t,this,arguments)}})),l("TypeError",(function(t){return function(r){return i(t,this,arguments)}})),l("URIError",(function(t){return function(r){return i(t,this,arguments)}})),f("CompileError",(function(t){return function(r){return i(t,this,arguments)}})),f("LinkError",(function(t){return function(r){return i(t,this,arguments)}})),f("RuntimeError",(function(t){return function(r){return i(t,this,arguments)}}))},9704:(t,r,e)=>{var n=e(3085),o=e(150),i=e(6298),a=e(8922),c=e(4120),s=e(6192),u=e(6447),l=e(3236),f=e(3096),p=e(9202),y=e(6770),h=String,g=o("JSON","stringify"),d=c(/./.exec),v=c("".charAt),m=c("".charCodeAt),b=c("".replace),S=c(1..toString),x=/[\uD800-\uDFFF]/g,O=/^[\uD800-\uDBFF]$/,w=/^[\uDC00-\uDFFF]$/,j=!y||s((function(){var t=o("Symbol")();return"[null]"!=g([t])||"{}"!=g({a:t})||"{}"!=g(Object(t))})),A=s((function(){return'"\\udf06\\ud834"'!==g("\udf06\ud834")||'"\\udead"'!==g("\udead")})),E=function(t,r){var e=f(arguments),n=p(r);if(u(n)||void 0!==t&&!l(t))return e[1]=function(t,r){if(u(n)&&(r=a(n,this,h(t),r)),!l(r))return r},i(g,null,e)},T=function(t,r,e){var n=v(e,r-1),o=v(e,r+1);return d(O,t)&&!d(w,o)||d(w,t)&&!d(O,n)?"\\u"+S(m(t,0),16):t};g&&n({target:"JSON",stat:!0,arity:3,forced:j||A},{stringify:function(t,r,e){var n=f(arguments),o=i(j?E:g,null,n);return A&&"string"==typeof o?b(o,x,T):o}})},8671:(t,r,e)=>{var n=e(8576);e(1284)(n.JSON,"JSON",!0)},8556:()=>{},297:(t,r,e)=>{var n=e(3085),o=e(69),i=e(2760).f;n({target:"Object",stat:!0,forced:Object.defineProperty!==i,sham:!o},{defineProperty:i})},7895:(t,r,e)=>{var n=e(3085),o=e(6770),i=e(6192),a=e(4750),c=e(1795);n({target:"Object",stat:!0,forced:!o||i((function(){a.f(1)}))},{getOwnPropertySymbols:function(t){var r=a.f;return r?r(c(t)):[]}})},6663:()=>{},1367:()=>{},5454:(t,r,e)=>{"use strict";var n=e(863).charAt,o=e(4845),i=e(3326),a=e(5297),c=e(7271),s="String Iterator",u=i.set,l=i.getterFor(s);a(String,"String",(function(t){u(this,{type:s,string:o(t),index:0})}),(function(){var t,r=l(this),e=r.string,o=r.index;return o>=e.length?c(void 0,!0):(t=n(e,o),r.index+=t.length,c(t,!1))}))},9781:(t,r,e)=>{e(8332)("asyncIterator")},9351:(t,r,e)=>{"use strict";var n=e(3085),o=e(8576),i=e(8922),a=e(4120),c=e(5546),s=e(69),u=e(6770),l=e(6192),f=e(4500),p=e(8902),y=e(1138),h=e(101),g=e(77),d=e(4845),v=e(774),m=e(2853),b=e(7653),S=e(2092),x=e(4052),O=e(4750),w=e(5141),j=e(2760),A=e(1187),E=e(6007),T=e(9362),P=e(2807),k=e(8717),N=e(9766),F=e(4535),C=e(2759),M=e(8182),D=e(9207),I=e(8332),R=e(3407),L=e(1284),_=e(3326),U=e(454).forEach,q=N("hidden"),J="Symbol",Y="prototype",G=_.set,$=_.getterFor(J),B=Object[Y],K=o.Symbol,V=K&&K[Y],z=o.TypeError,W=o.QObject,H=w.f,Q=j.f,X=x.f,Z=E.f,tt=a([].push),rt=k("symbols"),et=k("op-symbols"),nt=k("wks"),ot=!W||!W[Y]||!W[Y].findChild,it=s&&l((function(){return 7!=m(Q({},"a",{get:function(){return Q(this,"a",{value:7}).a}})).a}))?function(t,r,e){var n=H(B,r);n&&delete B[r],Q(t,r,e),n&&t!==B&&Q(B,r,n)}:Q,at=function(t,r){var e=rt[t]=m(V);return G(e,{type:J,tag:t,description:r}),s||(e.description=r),e},ct=function(t,r,e){t===B&&ct(et,r,e),y(t);var n=g(r);return y(e),f(rt,n)?(e.enumerable?(f(t,q)&&t[q][n]&&(t[q][n]=!1),e=m(e,{enumerable:v(0,!1)})):(f(t,q)||Q(t,q,v(1,{})),t[q][n]=!0),it(t,n,e)):Q(t,n,e)},st=function(t,r){y(t);var e=h(r),n=b(e).concat(pt(e));return U(n,(function(r){s&&!i(ut,e,r)||ct(t,r,e[r])})),t},ut=function(t){var r=g(t),e=i(Z,this,r);return!(this===B&&f(rt,r)&&!f(et,r))&&(!(e||!f(this,r)||!f(rt,r)||f(this,q)&&this[q][r])||e)},lt=function(t,r){var e=h(t),n=g(r);if(e!==B||!f(rt,n)||f(et,n)){var o=H(e,n);return!o||!f(rt,n)||f(e,q)&&e[q][n]||(o.enumerable=!0),o}},ft=function(t){var r=X(h(t)),e=[];return U(r,(function(t){f(rt,t)||f(F,t)||tt(e,t)})),e},pt=function(t){var r=t===B,e=X(r?et:h(t)),n=[];return U(e,(function(t){!f(rt,t)||r&&!f(B,t)||tt(n,rt[t])})),n};u||(T(V=(K=function(){if(p(V,this))throw z("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?d(arguments[0]):void 0,r=C(t),e=function(t){this===B&&i(e,et,t),f(this,q)&&f(this[q],r)&&(this[q][r]=!1),it(this,r,v(1,t))};return s&&ot&&it(B,r,{configurable:!0,set:e}),at(r,t)})[Y],"toString",(function(){return $(this).tag})),T(K,"withoutSetter",(function(t){return at(C(t),t)})),E.f=ut,j.f=ct,A.f=st,w.f=lt,S.f=x.f=ft,O.f=pt,D.f=function(t){return at(M(t),t)},s&&(P(V,"description",{configurable:!0,get:function(){return $(this).description}}),c||T(B,"propertyIsEnumerable",ut,{unsafe:!0}))),n({global:!0,constructor:!0,wrap:!0,forced:!u,sham:!u},{Symbol:K}),U(b(nt),(function(t){I(t)})),n({target:J,stat:!0,forced:!u},{useSetter:function(){ot=!0},useSimple:function(){ot=!1}}),n({target:"Object",stat:!0,forced:!u,sham:!s},{create:function(t,r){return void 0===r?m(t):st(m(t),r)},defineProperty:ct,defineProperties:st,getOwnPropertyDescriptor:lt}),n({target:"Object",stat:!0,forced:!u},{getOwnPropertyNames:ft}),R(),L(K,J),F[q]=!0},492:()=>{},9148:(t,r,e)=>{var n=e(3085),o=e(150),i=e(4500),a=e(4845),c=e(8717),s=e(31),u=c("string-to-symbol-registry"),l=c("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!s},{for:function(t){var r=a(t);if(i(u,r))return u[r];var e=o("Symbol")(r);return u[r]=e,l[e]=r,e}})},6681:(t,r,e)=>{e(8332)("hasInstance")},9594:(t,r,e)=>{e(8332)("isConcatSpreadable")},3665:(t,r,e)=>{e(8332)("iterator")},6187:(t,r,e)=>{e(9351),e(9148),e(5991),e(9704),e(7895)},5991:(t,r,e)=>{var n=e(3085),o=e(4500),i=e(3236),a=e(9288),c=e(8717),s=e(31),u=c("symbol-to-string-registry");n({target:"Symbol",stat:!0,forced:!s},{keyFor:function(t){if(!i(t))throw TypeError(a(t)+" is not a symbol");if(o(u,t))return u[t]}})},1250:(t,r,e)=>{e(8332)("matchAll")},9017:(t,r,e)=>{e(8332)("match")},9786:(t,r,e)=>{e(8332)("replace")},503:(t,r,e)=>{e(8332)("search")},6565:(t,r,e)=>{e(8332)("species")},9322:(t,r,e)=>{e(8332)("split")},3610:(t,r,e)=>{var n=e(8332),o=e(3407);n("toPrimitive"),o()},6886:(t,r,e)=>{var n=e(150),o=e(8332),i=e(1284);o("toStringTag"),i(n("Symbol"),"Symbol")},3514:(t,r,e)=>{e(8332)("unscopables")},2752:(t,r,e)=>{e(4242)},7148:(t,r,e)=>{var n=e(8182),o=e(2760).f,i=n("metadata"),a=Function.prototype;void 0===a[i]&&o(a,i,{value:null})},177:(t,r,e)=>{e(8332)("asyncDispose")},9031:(t,r,e)=>{e(8332)("dispose")},3346:(t,r,e)=>{e(3085)({target:"Symbol",stat:!0},{isRegisteredSymbol:e(8743)})},2725:(t,r,e)=>{e(3085)({target:"Symbol",stat:!0,name:"isRegisteredSymbol"},{isRegistered:e(8743)})},3520:(t,r,e)=>{e(3085)({target:"Symbol",stat:!0,forced:!0},{isWellKnownSymbol:e(5128)})},1806:(t,r,e)=>{e(3085)({target:"Symbol",stat:!0,name:"isWellKnownSymbol",forced:!0},{isWellKnown:e(5128)})},6658:(t,r,e)=>{e(8332)("matcher")},4212:(t,r,e)=>{e(8332)("metadataKey")},1875:(t,r,e)=>{e(8332)("metadata")},8658:(t,r,e)=>{e(8332)("observable")},4592:(t,r,e)=>{e(8332)("patternMatch")},6680:(t,r,e)=>{e(8332)("replaceAll")},162:(t,r,e)=>{e(8939);var n=e(7365),o=e(8576),i=e(4696),a=e(8711),c=e(7771),s=e(8182)("toStringTag");for(var u in n){var l=o[u],f=l&&l.prototype;f&&i(f)!==s&&a(f,s,u),c[u]=c.Array}},5846:(t,r,e)=>{e(2752);var n=e(6791);e(162),t.exports=n},7820:(t,r,e)=>{var n=e(3512);t.exports=n},2285:(t,r,e)=>{var n=e(5008);e(162),t.exports=n},8535:(t,r,e)=>{var n=e(994);e(162),t.exports=n},6042:(t,r,e)=>{var n=e(290);t.exports=n},6591:t=>{!function(){"use strict";var r,e,n,o,i,a="properties",c="deepProperties",s="propertyDescriptors",u="staticProperties",l="staticDeepProperties",f="staticPropertyDescriptors",p="configuration",y="deepConfiguration",h="deepProps",g="deepStatics",d="deepConf",v="initializers",m="methods",b="composers",S="compose";function x(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t):[])}function O(t,r){return Array.prototype.slice.call(arguments,2).reduce(t,r)}var w=O.bind(0,(function(t,r){if(r)for(var e=x(r),n=0;n<e.length;n+=1)Object.defineProperty(t,e[n],Object.getOwnPropertyDescriptor(r,e[n]));return t}));function j(t){return"function"==typeof t}function A(t){return t&&"object"==typeof t||j(t)}function E(t){return t&&"object"==typeof t&&t.__proto__==Object.prototype}var T=O.bind(0,(function t(e,n){if(n===r)return e;if(Array.isArray(n))return(Array.isArray(e)?e:[]).concat(n);if(!E(n))return n;for(var o,i,a=x(n),c=0;c<a.length;)o=a[c++],(i=Object.getOwnPropertyDescriptor(n,o)).hasOwnProperty("value")?i.value!==r&&(e[o]=t(E(e[o])||Array.isArray(n[o])?e[o]:{},n[o])):Object.defineProperty(e,o,i);return e}));function P(){return(e=Array.prototype.concat.apply([],arguments).filter((function(t,r,e){return j(t)&&e.indexOf(t)===r}))).length?e:r}function k(t,r){function n(e,n){A(r[e])&&(A(t[e])||(t[e]={}),(n||w)(t[e],r[e]))}function o(n){(e=P(t[n],r[n]))&&(t[n]=e)}return r&&A(r=r[S]||r)&&(n(m),n(a),n(c,T),n(s),n(u),n(l,T),n(f),n(p),n(y,T),o(v),o(b)),t}function N(){return function(t){return e=function t(e){var n,o,i=t[S]||{},u={__proto__:i[m]},l=i[v],f=Array.prototype.slice.apply(arguments),p=i[c];if(p&&T(u,p),(p=i[a])&&w(u,p),(p=i[s])&&Object.defineProperties(u,p),!l||!l.length)return u;for(e===r&&(e={}),i=0;i<l.length;)j(n=l[i++])&&(u=(o=n.call(u,e,{instance:u,stamp:t,args:f}))===r?u:o);return u},(n=t[l])&&T(e,n),(n=t[u])&&w(e,n),(n=t[f])&&Object.defineProperties(e,n),n=j(e[S])?e[S]:N,w(e[S]=function(){return n.apply(this,arguments)},t),e}(Array.prototype.concat.apply([this],arguments).reduce(k,{}))}function F(t){return j(t)&&j(t[S])}var C={};function M(t,i){return function(){return(o={})[t]=i.apply(r,Array.prototype.concat.apply([{}],arguments)),((e=this)&&e[S]||n).call(e,o)}}C[m]=M(m,w),C[a]=C.props=M(a,w),C[v]=C.init=M(v,P),C[b]=M(b,P),C[c]=C[h]=M(c,T),C[u]=C.statics=M(u,w),C[l]=C[g]=M(l,T),C[p]=C.conf=M(p,w),C[y]=C[d]=M(y,T),C[s]=M(s,w),C[f]=M(f,w),n=C[S]=w((function(){for(var t,x,O=0,j=[],E=arguments,k=this;O<E.length;)A(t=E[O++])&&j.push(F(t)?t:((o={})[m]=(x=t)[m]||r,n=x.props,o[a]=A((e=x[a])||n)?w({},n,e):r,o[v]=P(x.init,x[v]),o[b]=P(x[b]),n=x[h],o[c]=A((e=x[c])||n)?T({},n,e):r,o[s]=x[s],n=x.statics,o[u]=A((e=x[u])||n)?w({},n,e):r,n=x[g],o[l]=A((e=x[l])||n)?T({},n,e):r,e=x[f],o[f]=A((n=x.name&&{name:{value:x.name}})||e)?w({},e,n):r,n=x.conf,o[p]=A((e=x[p])||n)?w({},n,e):r,n=x[d],o[y]=A((e=x[y])||n)?T({},n,e):r,o));if(t=N.apply(k||i,j),k&&j.unshift(k),Array.isArray(E=t[S][b]))for(O=0;O<E.length;)t=F(k=E[O++]({stamp:t,composables:j}))?k:t;return t}),C),C.create=function(){return this.apply(r,arguments)},(o={})[u]=C,i=N(o),n[S]=n.bind(),n.version="4.3.2","object"!=typeof r?t.exports=n:self.stampit=n}()},2396:(t,r)=>{"use strict";var e;Object.defineProperty(r,"__esModule",{value:!0}),r.errorMessages=r.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"}(e=r.ErrorType||(r.ErrorType={})),r.errorMessages=new Map([[e.MalformedUnicode,"malformed Unicode character escape sequence"],[e.MalformedHexadecimal,"malformed hexadecimal character escape sequence"],[e.CodePointLimit,"Unicode codepoint must not be greater than 0x10FFFF in escape sequence"],[e.OctalDeprecation,'"0"-prefixed octal literals and octal escape sequences are deprecated; for octal literals use the "0o" prefix instead'],[e.EndOfString,"malformed escape sequence at end of string"]])},2770:(t,r,e)=>{"use strict";r.S6=void 0;const n=e(2396);function o(t,r,e){const o=function(t){return t.match(/[^a-f0-9]/i)?NaN:parseInt(t,16)}(t);if(Number.isNaN(o)||void 0!==e&&e!==t.length)throw new SyntaxError(n.errorMessages.get(r));return o}function i(t,r){const e=o(t,n.ErrorType.MalformedUnicode,4);if(void 0!==r){const t=o(r,n.ErrorType.MalformedUnicode,4);return String.fromCharCode(e,t)}return String.fromCharCode(e)}const a=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 s(t,r=!1){return t.replace(c,(function(t,e,c,s,u,l,f,p,y){if(void 0!==e)return"\\";if(void 0!==c)return function(t){const r=o(t,n.ErrorType.MalformedHexadecimal,2);return String.fromCharCode(r)}(c);if(void 0!==s)return function(t){if("{"!==(r=t).charAt(0)||"}"!==r.charAt(r.length-1))throw new SyntaxError(n.errorMessages.get(n.ErrorType.MalformedUnicode));var r;const e=o(t.slice(1,-1),n.ErrorType.MalformedUnicode);try{return String.fromCodePoint(e)}catch(t){throw t instanceof RangeError?new SyntaxError(n.errorMessages.get(n.ErrorType.CodePointLimit)):t}}(s);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,r=!1){if(r)throw new SyntaxError(n.errorMessages.get(n.ErrorType.OctalDeprecation));const e=parseInt(t,8);return String.fromCharCode(e)}(p,!r);if(void 0!==y)return h=y,a.get(h)||h;var h;throw new SyntaxError(n.errorMessages.get(n.ErrorType.EndOfString))}))}r.S6=s},1427:(t,r,e)=>{t.exports=e(6762)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var i=r[n]={exports:{}};return t[n].call(i.exports,i,i.exports,e),i.exports}e.n=t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},e.d=(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=(t,r)=>Object.prototype.hasOwnProperty.call(t,r),e.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";e.r(n),e.d(n,{BREAK:()=>_n,Error:()=>In,JsonArray:()=>kr,JsonDocument:()=>ur,JsonEscapeSequence:()=>Dr,JsonFalse:()=>Lr,JsonKey:()=>Cr,JsonNode:()=>i,JsonNull:()=>_r,JsonNumber:()=>Ir,JsonObject:()=>Tr,JsonProperty:()=>Pr,JsonString:()=>Fr,JsonStringContent:()=>Mr,JsonTrue:()=>Rr,JsonValue:()=>Nr,Literal:()=>Cn,ParseResult:()=>Rn,Point:()=>Mn,Position:()=>Dn,YamlAlias:()=>Ur,YamlAnchor:()=>fe,YamlCollection:()=>Jr,YamlComment:()=>Yr,YamlDirective:()=>Gr,YamlDocument:()=>$r,YamlFailsafeSchema:()=>En,YamlJsonSchema:()=>Fn,YamlKeyValuePair:()=>oe,YamlMapping:()=>ie,YamlNode:()=>qr,YamlNodeKind:()=>ue,YamlScalar:()=>ae,YamlSchemaError:()=>Re,YamlSequence:()=>ce,YamlStream:()=>se,YamlStyle:()=>Br,YamlStyleGroup:()=>Kr,YamlTag:()=>le,YamlTagError:()=>Le,getNodeType:()=>Un,getVisitFn:()=>Ln,isJsonArray:()=>xr,isJsonDocument:()=>gr,isJsonEscapeSequence:()=>jr,isJsonFalse:()=>vr,isJsonKey:()=>Er,isJsonNull:()=>br,isJsonNumber:()=>Sr,isJsonObject:()=>Or,isJsonProperty:()=>Ar,isJsonString:()=>dr,isJsonStringContent:()=>wr,isJsonTrue:()=>mr,isLiteral:()=>fr,isNode:()=>qn,isParseResult:()=>hr,isPoint:()=>yr,isPosition:()=>pr,isYamlAlias:()=>re,isYamlDirective:()=>ee,isYamlDocument:()=>Wr,isYamlKeyValuePair:()=>Xr,isYamlMapping:()=>Hr,isYamlScalar:()=>te,isYamlSequence:()=>Qr,isYamlStream:()=>zr,isYamlTag:()=>Zr,mergeAllVisitors:()=>Jn,visit:()=>Yn});var t=e(6591),r=e.n(t);const o=r()({props:{type:null,position:null,children:[]},init({children:t=[],position:r=null,isMissing:e=!1}={},{stamp:n={}}){this.type=n.type,this.isMissing=e,this.children=t,this.position=r},methods:{clone(){const t=Object.create(Object.getPrototypeOf(this));return Object.getOwnPropertyNames(this).forEach((r=>{const e=Object.getOwnPropertyDescriptor(this,r);Object.defineProperty(t,r,e)})),t}}}),i=r()(o),a=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};function c(t,r,e){return function(){if(0===arguments.length)return e();var n=arguments[arguments.length-1];if(!a(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 r.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return e.apply(this,arguments)}}const s=function(){return this.xf["@@transducer/init"]()},u=function(t){return this.xf["@@transducer/result"](t)};function l(t){return null!=t&&"object"==typeof t&&!0===t["@@functional/placeholder"]}function f(t){return function r(e){return 0===arguments.length||l(e)?r:t.apply(this,arguments)}}function p(t){return function r(e,n){switch(arguments.length){case 0:return r;case 1:return l(e)?r:f((function(r){return t(e,r)}));default:return l(e)&&l(n)?r:l(e)?f((function(r){return t(r,n)})):l(n)?f((function(r){return t(e,r)})):t(e,n)}}}function y(t){for(var r,e=[];!(r=t.next()).done;)e.push(r.value);return e}function h(t,r,e){for(var n=0,o=e.length;n<o;){if(t(r,e[n]))return!0;n+=1}return!1}function g(t,r){return Object.prototype.hasOwnProperty.call(r,t)}const d="function"==typeof Object.is?Object.is:function(t,r){return t===r?0!==t||1/t==1/r:t!=t&&r!=r};var v=Object.prototype.toString;const m=function(){return"[object Arguments]"===v.call(arguments)?function(t){return"[object Arguments]"===v.call(t)}:function(t){return g("callee",t)}}();var b=!{toString:null}.propertyIsEnumerable("toString"),S=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],x=function(){return arguments.propertyIsEnumerable("length")}(),O=function(t,r){for(var e=0;e<t.length;){if(t[e]===r)return!0;e+=1}return!1};const w="function"!=typeof Object.keys||x?f((function(t){if(Object(t)!==t)return[];var r,e,n=[],o=x&&m(t);for(r in t)!g(r,t)||o&&"length"===r||(n[n.length]=r);if(b)for(e=S.length-1;e>=0;)g(r=S[e],t)&&!O(n,r)&&(n[n.length]=r),e-=1;return n})):f((function(t){return Object(t)!==t?[]:Object.keys(t)}));const j=f((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));function A(t,r,e,n){var o=y(t);function i(t,r){return E(t,r,e.slice(),n.slice())}return!h((function(t,r){return!h(i,r,t)}),y(r),o)}function E(t,r,e,n){if(d(t,r))return!0;var o,i,a=j(t);if(a!==j(r))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof r["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](r)&&"function"==typeof r["fantasy-land/equals"]&&r["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof r.equals)return"function"==typeof t.equals&&t.equals(r)&&"function"==typeof r.equals&&r.equals(t);switch(a){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===r;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof r||!d(t.valueOf(),r.valueOf()))return!1;break;case"Date":if(!d(t.valueOf(),r.valueOf()))return!1;break;case"Error":return t.name===r.name&&t.message===r.message;case"RegExp":if(t.source!==r.source||t.global!==r.global||t.ignoreCase!==r.ignoreCase||t.multiline!==r.multiline||t.sticky!==r.sticky||t.unicode!==r.unicode)return!1}for(var c=e.length-1;c>=0;){if(e[c]===t)return n[c]===r;c-=1}switch(a){case"Map":return t.size===r.size&&A(t.entries(),r.entries(),e.concat([t]),n.concat([r]));case"Set":return t.size===r.size&&A(t.values(),r.values(),e.concat([t]),n.concat([r]));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 s=w(t);if(s.length!==w(r).length)return!1;var u=e.concat([t]),l=n.concat([r]);for(c=s.length-1;c>=0;){var f=s[c];if(!g(f,r)||!E(r[f],t[f],u,l))return!1;c-=1}return!0}const T=p((function(t,r){return E(t,r,[],[])}));function P(t,r){return function(t,r,e){var n,o;if("function"==typeof t.indexOf)switch(typeof r){case"number":if(0===r){for(n=1/r;e<t.length;){if(0===(o=t[e])&&1/o===n)return e;e+=1}return-1}if(r!=r){for(;e<t.length;){if("number"==typeof(o=t[e])&&o!=o)return e;e+=1}return-1}return t.indexOf(r,e);case"string":case"boolean":case"function":case"undefined":return t.indexOf(r,e);case"object":if(null===r)return t.indexOf(r,e)}for(;e<t.length;){if(T(t[e],r))return e;e+=1}return-1}(r,t,0)>=0}function k(t,r){for(var e=0,n=r.length,o=Array(n);e<n;)o[e]=t(r[e]),e+=1;return o}function N(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 F=function(t){return(t<10?"0":"")+t};const C="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+F(t.getUTCMonth()+1)+"-"+F(t.getUTCDate())+"T"+F(t.getUTCHours())+":"+F(t.getUTCMinutes())+":"+F(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function M(t,r,e){for(var n=0,o=e.length;n<o;)r=t(r,e[n]),n+=1;return r}var D=function(){function t(t,r){this.xf=r,this.f=t}return t.prototype["@@transducer/init"]=s,t.prototype["@@transducer/result"]=u,t.prototype["@@transducer/step"]=function(t,r){return this.f(r)?this.xf["@@transducer/step"](t,r):t},t}();function I(t){return function(r){return new D(t,r)}}const R=p(c(["fantasy-land/filter","filter"],I,(function(t,r){return e=r,"[object Object]"===Object.prototype.toString.call(e)?M((function(e,n){return t(r[n])&&(e[n]=r[n]),e}),{},w(r)):function(t,r){for(var e=0,n=r.length,o=[];e<n;)t(r[e])&&(o[o.length]=r[e]),e+=1;return o}(t,r);var e})));const L=p((function(t,r){return R((e=t,function(){return!e.apply(this,arguments)}),r);var e}));function _(t,r){var e=function(e){var n=r.concat([t]);return P(e,n)?"<Circular>":_(e,n)},n=function(t,r){return k((function(r){return N(r)+": "+e(t[r])}),r.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+k(e,t).join(", ")+"))";case"[object Array]":return"["+k(e,t).concat(n(t,L((function(t){return/^\d+$/.test(t)}),w(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+e(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?e(NaN):N(C(t)))+")";case"[object Map]":return"new Map("+e(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+e(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+e(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+e(t.valueOf())+")":N(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,w(t)).join(", ")+"}"}}const U=f((function(t){return _(t,[])}));const q=p((function(t,r){if(t===r)return r;function e(t,r){if(t>r!=r>t)return r>t?r:t}var n=e(t,r);if(void 0!==n)return n;var o=e(typeof t,typeof r);if(void 0!==o)return o===typeof t?t:r;var i=U(t),a=e(i,U(r));return void 0!==a&&a===i?t:r}));var J=function(){function t(t,r){this.xf=r,this.f=t}return t.prototype["@@transducer/init"]=s,t.prototype["@@transducer/result"]=u,t.prototype["@@transducer/step"]=function(t,r){return this.xf["@@transducer/step"](t,this.f(r))},t}();const Y=function(t){return function(r){return new J(t,r)}};function G(t,r){switch(t){case 0:return function(){return r.apply(this,arguments)};case 1:return function(t){return r.apply(this,arguments)};case 2:return function(t,e){return r.apply(this,arguments)};case 3:return function(t,e,n){return r.apply(this,arguments)};case 4:return function(t,e,n,o){return r.apply(this,arguments)};case 5:return function(t,e,n,o,i){return r.apply(this,arguments)};case 6:return function(t,e,n,o,i,a){return r.apply(this,arguments)};case 7:return function(t,e,n,o,i,a,c){return r.apply(this,arguments)};case 8:return function(t,e,n,o,i,a,c,s){return r.apply(this,arguments)};case 9:return function(t,e,n,o,i,a,c,s,u){return r.apply(this,arguments)};case 10:return function(t,e,n,o,i,a,c,s,u,l){return r.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function $(t,r,e){return function(){for(var n=[],o=0,i=t,a=0;a<r.length||o<arguments.length;){var c;a<r.length&&(!l(r[a])||o>=arguments.length)?c=r[a]:(c=arguments[o],o+=1),n[a]=c,l(c)||(i-=1),a+=1}return i<=0?e.apply(this,n):G(i,$(t,n,e))}}const B=p((function(t,r){return 1===t?f(r):G(t,$(t,[],r))}));const K=p(c(["fantasy-land/map","map"],Y,(function(t,r){switch(Object.prototype.toString.call(r)){case"[object Function]":return B(r.length,(function(){return t.call(this,r.apply(this,arguments))}));case"[object Object]":return M((function(e,n){return e[n]=t(r[n]),e}),{},w(r));default:return k(t,r)}}))),V=Number.isInteger||function(t){return t<<0===t};function z(t){return"[object String]"===Object.prototype.toString.call(t)}const W=p((function(t,r){var e=t<0?r.length+t:t;return z(r)?r.charAt(e):r[e]}));const H=p((function(t,r){if(null!=r)return V(t)?W(t,r):r[t]}));const Q=p((function(t,r){return K(H(t),r)}));function X(t){return function r(e,n,o){switch(arguments.length){case 0:return r;case 1:return l(e)?r:p((function(r,n){return t(e,r,n)}));case 2:return l(e)&&l(n)?r:l(e)?p((function(r,e){return t(r,n,e)})):l(n)?p((function(r,n){return t(e,r,n)})):f((function(r){return t(e,n,r)}));default:return l(e)&&l(n)&&l(o)?r:l(e)&&l(n)?p((function(r,e){return t(r,e,o)})):l(e)&&l(o)?p((function(r,e){return t(r,n,e)})):l(n)&&l(o)?p((function(r,n){return t(e,r,n)})):l(e)?f((function(r){return t(r,n,o)})):l(n)?f((function(r){return t(e,r,o)})):l(o)?f((function(r){return t(e,n,r)})):t(e,n,o)}}}const Z=f((function(t){return!!a(t)||!!t&&("object"==typeof t&&(!z(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var tt="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function rt(t,r,e){return function(n,o,i){if(Z(i))return t(n,o,i);if(null==i)return o;if("function"==typeof i["fantasy-land/reduce"])return r(n,o,i,"fantasy-land/reduce");if(null!=i[tt])return e(n,o,i[tt]());if("function"==typeof i.next)return e(n,o,i);if("function"==typeof i.reduce)return r(n,o,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function et(t,r,e){for(var n=0,o=e.length;n<o;){if((r=t["@@transducer/step"](r,e[n]))&&r["@@transducer/reduced"]){r=r["@@transducer/value"];break}n+=1}return t["@@transducer/result"](r)}const nt=p((function(t,r){return G(t.length,(function(){return t.apply(r,arguments)}))}));function ot(t,r,e){for(var n=e.next();!n.done;){if((r=t["@@transducer/step"](r,n.value))&&r["@@transducer/reduced"]){r=r["@@transducer/value"];break}n=e.next()}return t["@@transducer/result"](r)}function it(t,r,e,n){return t["@@transducer/result"](e[n](nt(t["@@transducer/step"],t),r))}const at=rt(et,it,ot);var ct=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,r){return this.f(t,r)},t}();function st(t){return new ct(t)}const ut=X((function(t,r,e){return at("function"==typeof t?st(t):t,r,e)}));const lt=f((function(t){return function(){return t}}));const ft=f((function(t){return B(ut(q,0,Q("length",t)),(function(){for(var r=0,e=t.length;r<e;){if(t[r].apply(this,arguments))return!0;r+=1}return!1}))}));function pt(t,r,e){for(var n=e.next();!n.done;)r=t(r,n.value),n=e.next();return r}function yt(t,r,e,n){return e[n](t,r)}const ht=rt(M,yt,pt);const gt=p((function(t,r){return"function"==typeof r["fantasy-land/ap"]?r["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(r):"function"==typeof t?function(e){return t(e)(r(e))}:ht((function(t,e){return function(t,r){var e;r=r||[];var n=(t=t||[]).length,o=r.length,i=[];for(e=0;e<n;)i[i.length]=t[e],e+=1;for(e=0;e<o;)i[i.length]=r[e],e+=1;return i}(t,K(e,r))}),[],t)}));function dt(t){var r=Object.prototype.toString.call(t);return"[object Function]"===r||"[object AsyncFunction]"===r||"[object GeneratorFunction]"===r||"[object AsyncGeneratorFunction]"===r}const vt=p((function(t,r){return t&&r}));const mt=p((function(t,r){var e=B(t,r);return B(t,(function(){return M(gt,K(e,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const bt=f((function(t){return mt(t.length,t)}));const St=p((function(t,r){return dt(t)?function(){return t.apply(this,arguments)&&r.apply(this,arguments)}:bt(vt)(t,r)}));function xt(t,r,e){if(e||(e=new Ot),function(t){var r=typeof t;return null==t||"object"!=r&&"function"!=r}(t))return t;var n,o=function(n){var o=e.get(t);if(o)return o;for(var i in e.set(t,n),t)Object.prototype.hasOwnProperty.call(t,i)&&(n[i]=r?xt(t[i],!0,e):t[i]);return n};switch(j(t)){case"Object":return o(Object.create(Object.getPrototypeOf(t)));case"Array":return o([]);case"Date":return new Date(t.valueOf());case"RegExp":return n=t,new RegExp(n.source,n.flags?n.flags:(n.global?"g":"")+(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.sticky?"y":"")+(n.unicode?"u":"")+(n.dotAll?"s":""));case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":return t.slice();default:return t}}var Ot=function(){function t(){this.map={},this.length=0}return t.prototype.set=function(t,r){const e=this.hash(t);let n=this.map[e];n||(this.map[e]=n=[]),n.push([t,r]),this.length+=1},t.prototype.hash=function(t){let r=[];for(var e in t)r.push(Object.prototype.toString.call(t[e]));return r.join()},t.prototype.get=function(t){if(this.length<=180){for(const r in this.map){const e=this.map[r];for(let r=0;r<e.length;r+=1){const n=e[r];if(n[0]===t)return n[1]}}return}const r=this.hash(t),e=this.map[r];if(e)for(let r=0;r<e.length;r+=1){const n=e[r];if(n[0]===t)return n[1]}},t}();const wt=f((function(t){return null!=t&&"function"==typeof t.clone?t.clone():xt(t,!0)}));const jt=bt(f((function(t){return!t})));function At(t,r){return function(){return r.call(this,t.apply(this,arguments))}}function Et(t,r){return function(){var e=arguments.length;if(0===e)return r();var n=arguments[e-1];return a(n)||"function"!=typeof n[t]?r.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,e-1))}}const Tt=X(Et("slice",(function(t,r,e){return Array.prototype.slice.call(e,t,r)})));const Pt=f(Et("tail",Tt(1,1/0)));function kt(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return G(arguments[0].length,ut(At,arguments[0],Pt(arguments)))}const Nt=f((function(t){return z(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()}));function Ft(){if(0===arguments.length)throw new Error("compose requires at least one argument");return kt.apply(this,Nt(arguments))}const Ct=p((function(t,r){if(a(t)){if(a(r))return t.concat(r);throw new TypeError(U(r)+" is not an array")}if(z(t)){if(z(r))return t+r;throw new TypeError(U(r)+" is not a string")}if(null!=t&&dt(t["fantasy-land/concat"]))return t["fantasy-land/concat"](r);if(null!=t&&dt(t.concat))return t.concat(r);throw new TypeError(U(t)+' does not have a method named "concat" or "fantasy-land/concat"')}));const Mt=p((function(t,r){return B(ut(q,0,Q("length",r)),(function(){var e=arguments,n=this;return t.apply(n,k((function(t){return t.apply(n,e)}),r))}))}));const Dt=f((function(t){return B(t.length,t)}));var It=function(){function t(t,r){this.xf=r,this.f=t}return t.prototype["@@transducer/init"]=s,t.prototype["@@transducer/result"]=u,t.prototype["@@transducer/step"]=function(t,r){if(this.f){if(this.f(r))return t;this.f=null}return this.xf["@@transducer/step"](t,r)},t}();function Rt(t){return function(r){return new It(t,r)}}const Lt=p(c(["dropWhile"],Rt,(function(t,r){for(var e=0,n=r.length;e<n&&t(r[e]);)e+=1;return Tt(e,1/0,r)})));const _t=f((function(t){return B(t.length,(function(r,e){var n=Array.prototype.slice.call(arguments,0);return n[0]=e,n[1]=r,t.apply(this,n)}))}));const Ut=p((function(t,r){return t>r}));const qt=f((function(t){return null==t}));const Jt=p((function(t,r){return!qt(r)&&t in r}));const Yt=W(0);var Gt=function(t,r){switch(arguments.length){case 0:return Gt;case 1:return function r(e){return 0===arguments.length?r:d(t,e)};default:return d(t,r)}};const $t=Gt;function Bt(t){return t}const Kt=f(Bt);const Vt=p(P);const zt="function"==typeof Object.assign?Object.assign:function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var r=Object(t),e=1,n=arguments.length;e<n;){var o=arguments[e];if(null!=o)for(var i in o)g(i,o)&&(r[i]=o[i]);e+=1}return r};const Wt=p((function(t,r){return B(t+1,(function(){var e=arguments[t];if(null!=e&&dt(e[r]))return e[r].apply(e,Array.prototype.slice.call(arguments,0,t));throw new TypeError(U(e)+' does not have a method named "'+r+'"')}))}));const Ht=Wt(1,"join");const Qt=p((function(t,r){return t.map((function(t){for(var e,n=r,o=0;o<t.length;){if(null==n)return;e=t[o],n=V(e)?W(e,n):n[e],o+=1}return n}))}));const Xt=p((function(t,r){return Qt([t],r)[0]}));const Zt=p((function(t,r){return zt({},t,r)}));const tr=p((function(t,r){for(var e={},n={},o=0,i=t.length;o<i;)n[t[o]]=1,o+=1;for(var a in r)n.hasOwnProperty(a)||(e[a]=r[a]);return e}));const rr=p((function(t,r){return null==r||r!=r?t:r}));const er=X((function(t,r,e){return rr(t,Xt(r,e))}));const nr=X((function(t,r,e){return t(Xt(r,e))}));const or=X((function(t,r,e){return e.replace(t,r)}));const ir=Wt(1,"split");const ar=B(4,(function(t,r,e,n){return at(t("function"==typeof r?st(r):r),e,n)}));var cr="\t\n\v\f\r                 \u2028\u2029\ufeff";const sr=f("function"==typeof String.prototype.trim&&!cr.trim()&&"​".trim()?function(t){return t.trim()}:function(t){var r=new RegExp("^["+cr+"]["+cr+"]*"),e=new RegExp("["+cr+"]["+cr+"]*$");return t.replace(r,"").replace(e,"")});const ur=r()(i,{statics:{type:"document"},methods:{get child(){return Yt(this.children)}}}),lr=(t,r)=>r?.type===t,fr=lr.bind(void 0,"literal"),pr=lr.bind(void 0,"position"),yr=lr.bind(void 0,"point"),hr=lr.bind(void 0,"parseResult"),gr=lr.bind(void 0,"document"),dr=lr.bind(void 0,"string"),vr=lr.bind(void 0,"false"),mr=lr.bind(void 0,"true"),br=lr.bind(void 0,"null"),Sr=lr.bind(void 0,"number"),xr=lr.bind(void 0,"array"),Or=lr.bind(void 0,"object"),wr=lr.bind(void 0,"stringContent"),jr=lr.bind(void 0,"escapeSequence"),Ar=lr.bind(void 0,"property"),Er=lr.bind(void 0,"key"),Tr=r()(i,{statics:{type:"object"},methods:{get properties(){return this.children.filter(Ar)}}}),Pr=r()(i,{statics:{type:"property"},methods:{get key(){return this.children.find(Er)},get value(){return this.children.find((t=>vr(t)||mr(t)||br(t)||Sr(t)||dr(t)||xr(t)||Or(t)))}}}),kr=r()(i,{statics:{type:"array"},methods:{get items(){return this.children.filter((t=>vr(t)||mr(t)||br(t)||Sr(t)||dr(t)||xr(t)||Or))}}}),Nr=r()(i,{statics:{type:"value"},props:{value:null},init({value:t=null}={}){this.value=t}}),Fr=r()(i,{statics:{type:"string"},methods:{get value(){return 1===this.children.length?this.children[0].value:this.children.filter((t=>wr(t)||jr(t))).reduce(((t,r)=>t+r.value),"")}}}),Cr=r()(Fr,{statics:{type:"key"}}),Mr=r()(Nr,{statics:{type:"stringContent"}}),Dr=r()(Nr,{statics:{type:"escapeSequence"}}),Ir=r()(Nr,{statics:{type:"number"}}),Rr=r()(Nr,{statics:{type:"true"}}),Lr=r()(Nr,{statics:{type:"false"}}),_r=r()(Nr,{statics:{type:"null"}}),Ur=r()(o,{statics:{type:"alias"},props:{content:null},init({content:t=null}={}){this.content=t}}),qr=r()(o,{props:{anchor:null,tag:null,style:null,styleGroup:null},init({anchor:t=null,tag:r=null,style:e=null,styleGroup:n=null}={}){this.anchor=t,this.tag=r,this.style=e,this.styleGroup=n}}),Jr=r()(qr,{}),Yr=r()(o,{statics:{type:"comment"},props:{content:null},init({content:t=null}={}){this.content=t}}),Gr=r()(o,{statics:{type:"directive"},props:{name:null,parameters:null},init({name:t=null,parameters:r={}}={}){this.name=t,this.parameters=Zt({version:null,handle:null,prefix:null},r)}}),$r=r()(o,{statics:{type:"document"}});let Br=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}({}),Kr=function(t){return t.Flow="Flow",t.Block="Block",t}({});const Vr=r()({props:{styleGroup:null,style:null}}),zr=lr.bind(void 0,"stream"),Wr=lr.bind(void 0,"document"),Hr=lr.bind(void 0,"mapping"),Qr=lr.bind(void 0,"sequence"),Xr=lr.bind(void 0,"keyValuePair"),Zr=lr.bind(void 0,"tag"),te=lr.bind(void 0,"scalar"),re=lr.bind(void 0,"alias"),ee=lr.bind(void 0,"directive"),ne=lr.bind(void 0,"comment"),oe=r()(o,Vr,{statics:{type:"keyValuePair"},propertyDescriptors:{key:{get(){return this.children.filter((t=>te(t)||Hr(t)||Qr(t)))[0]},enumerable:!0},value:{get(){const{key:t,children:r}=this;return r.filter((r=>(r=>r!==t)(r)&&(t=>te(t)||Hr(t)||Qr(t)||re(t))(r)))[0]},enumerable:!0}}}),ie=r()(Jr,{statics:{type:"mapping"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter(Xr):[]},enumerable:!0}}}),ae=r()(qr,{statics:{type:"scalar"},props:{content:""},init({content:t}={}){this.content=t}}),ce=r()(Jr,{statics:{type:"sequence"},propertyDescriptors:{content:{get(){const{children:t}=this;return Array.isArray(t)?t.filter((t=>Qr(t)||Hr(t)||te(t)||re(t))):[]},enumerable:!0}}}),se=r()(o,{statics:{type:"stream"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter((t=>Wr(t)||ne(t))):[]},enumerable:!0}}});let ue=function(t){return t.Scalar="Scalar",t.Sequence="Sequence",t.Mapping="Mapping",t}({});const le=r()(o,{statics:{type:"tag"},props:{explicitName:"",kind:null},init({explicitName:t,kind:r}={}){this.explicitName=t,this.kind=r}}),fe=r()(o,{statics:{type:"anchor"},props:{name:null},init({name:t=null}={}){this.name=t}});var pe=e(229),ye=e(2185),he=e(9982);function ge(t){return ge="function"==typeof ye&&"symbol"==typeof he?function(t){return typeof t}:function(t){return t&&"function"==typeof ye&&t.constructor===ye&&t!==ye.prototype?"symbol":typeof t},ge(t)}var de=e(8241);function ve(t){var r=function(t,r){if("object"!==ge(t)||null===t)return t;var e=t[de];if(void 0!==e){var n=e.call(t,r||"default");if("object"!==ge(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}(t,"string");return"symbol"===ge(r)?r:String(r)}function me(t,r,e){return(r=ve(r))in t?pe(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[r]=e,t}const be=T(null);var Se=jt(be);function xe(t){return xe="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},xe(t)}const Oe=B(1,St(Se,(function(t){return"object"===xe(t)})));const we=B(1,kt(j,$t("GeneratorFunction")));const je=B(1,kt(j,$t("AsyncFunction")));const Ae=ft([kt(j,$t("Function")),we,je]);var Ee=kt(j,$t("Object")),Te=nr(St(Ae,kt(U,T(U(Object)))),["constructor"]);const Pe=B(1,(function(t){if(!Oe(t)||!Ee(t))return!1;var r=Object.getPrototypeOf(t);return!!be(r)||Te(r)}));var ke,Ne=e(1427);const Fe=null!==(ke=globalThis.AggregateError)&&void 0!==ke?ke:Ne;const Ce=class extends Fe{constructor(t,r,e){if(super(t,r,e),this.name=this.constructor.name,"string"==typeof r&&(this.message=r),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(r).stack,Pe(e)&&Jt("cause",e)&&!Jt("cause",this)){const{cause:t}=e;this.cause=t,t instanceof Error&&Jt("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}};class Me extends Error{static[Symbol.hasInstance](t){return Function.prototype[Symbol.hasInstance].call(Me,t)||Function.prototype[Symbol.hasInstance].call(Ce,t)}constructor(t,r){if(super(t,r),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,Pe(r)&&Jt("cause",r)&&!Jt("cause",this)){const{cause:t}=r;this.cause=t,t instanceof Error&&Jt("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}}const De=Me;const Ie=class extends De{constructor(t,r){super(t,r),void 0!==r&&Object.assign(this,tr(["cause"],r))}};const Re=class extends Ie{};const Le=class extends Re{constructor(t,r){super(t,r),me(this,"specificTagName",void 0),me(this,"explicitTagName",void 0),me(this,"tagKind",void 0),me(this,"tagPosition",void 0),me(this,"nodeCanonicalContent",void 0),void 0!==r&&(this.specificTagName=r.specificTagName,this.explicitTagName=r.explicitTagName,this.tagKind=r.tagKind,this.tagPosition=r.tagPosition,this.nodeCanonicalContent=r.nodeCanonicalContent)}};const _e=T("");const Ue=B(1,kt(j,$t("Number")));var qe=St(Ue,isFinite);var Je=B(1,qe);const Ye=Ae(Number.isFinite)?B(1,nt(Number.isFinite,Number)):Je;var Ge=St(Ye,Mt(T,[Math.floor,Kt]));var $e=B(1,Ge);const Be=Ae(Number.isInteger)?B(1,nt(Number.isInteger,Number)):$e;const Ke=jt(Ye);const Ve=B(1,St(Ue,Ut(0)));const ze=function(t,r){var e=Number(r);if(e!==r&&(e=0),Ve(e))throw new RangeError("repeat count must be non-negative");if(Ke(e))throw new RangeError("repeat count must be less than infinity");if(e=Math.floor(e),0===t.length||0===e)return"";if(t.length*e>=1<<28)throw new RangeError("repeat count must not overflow maximum string size");var n=t.length*e;e=Math.floor(Math.log(e)/Math.log(2));for(var o=t;e;)o+=t,e-=1;return o+=o.substring(0,n-o.length)};var We=Dt(ze),He=_t(Wt(1,"repeat"));const Qe=Ae(String.prototype.repeat)?He:We;var Xe=lt(void 0);const Ze=T(Xe());var tn=or(/[\s\uFEFF\xA0]+$/,""),rn=Wt(0,"trimEnd");const en=Ae(String.prototype.trimEnd)?rn:tn;var nn=or(/^[\s\uFEFF\xA0]+/,""),on=Wt(0,"trimStart");const an=Ae(String.prototype.trimStart)?on:nn;const cn=_t(Vt);const sn=Dt((function(t,r){return kt(ir(""),Lt(cn(t)),Ht(""))(r)}));const un=_t(Ct);var ln=e(2770);const fn=/^(?<style>[|>])(?<chomping>[+-]?)(?<indentation>[0-9]*)\s/,pn=t=>{const r=(t=>{const r=t.match(fn),e=er("",["groups","indentation"],r);return _e(e)?void 0:parseInt(e,10)})(t);if(Be(r))return Qe(" ",r);const e=er("",[1],t.split("\n")),n=er(0,["groups","indentation","length"],e.match(/^(?<indentation>[ ]*)/));return Qe(" ",n)},yn=t=>{const r=t.match(fn),e=er("",["groups","chomping"],r);return _e(e)?void 0:e},hn=(t,r)=>Ze(t)?`${en(r)}\n`:"-"===t?en(r):r,gn=t=>t.replace(/\r\n/g,"\n"),dn=t=>t.replace(/(\n)?\n([^\n]+)/g,((t,r,e)=>r?t:` ${e.trimStart()}`)).replace(/[\n]{2}/g,"\n"),vn=Dt(((t,r)=>r.replace(new RegExp(`^${t}`),"").replace(new RegExp(`${t}$`),""))),mn=kt(gn,sr,dn,ir("\n"),K(an),Ht("\n")),bn=kt(gn,sr,vn("'"),dn,ir("\n"),K(an),Ht("\n")),Sn=kt(gn,sr,vn('"'),(t=>t.replace(/\\\n\s*/g,"")),dn,ln.S6,ir("\n"),K(an),Ht("\n")),xn=r()({methods:{test:t=>t.tag.kind===ue.Scalar&&"string"==typeof t.content,canonicalFormat(t){let r=t.content;const e=t.clone();return t.style===Br.Plain?r=mn(t.content):t.style===Br.SingleQuoted?r=bn(t.content):t.style===Br.DoubleQuoted?r=Sn(t.content):t.style===Br.Literal?r=(t=>{const r=pn(t),e=yn(t),n=gn(t),o=Pt(n.split("\n")),i=Ft(K(sn(r)),K(un("\n"))),a=ar(i,Ct,"",o);return hn(e,a)})(t.content):t.style===Br.Folded&&(r=(t=>{const r=pn(t),e=yn(t),n=gn(t),o=Pt(n.split("\n")),i=Ft(K(sn(r)),K(un("\n"))),a=ar(i,Ct,"",o),c=dn(a);return hn(e,c)})(t.content)),e.content=r,e},resolve:t=>t}}),On=r()(xn,{props:{tag:""}}),wn=r()(On,{statics:{uri:"tag:yaml.org,2002:map"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>t.tag.kind===ue.Mapping,resolve:t=>t}}),jn=r()(On,{statics:{uri:"tag:yaml.org,2002:seq"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>t.tag.kind===ue.Sequence,resolve:t=>t}}),An=r()(On,{statics:{uri:"tag:yaml.org,2002:str"},init(t,{stamp:r}){this.tag=r.uri},methods:{resolve:t=>t}}),En=r()({props:{tags:[],tagDirectives:[]},init(){this.tags=[],this.tagDirectives=[],this.registerTag(wn()),this.registerTag(jn()),this.registerTag(An())},methods:{toSpecificTagName(t){let r=t.tag.explicitName;return"!"===t.tag.explicitName?t.tag.kind===ue.Scalar?r=An.uri:t.tag.kind===ue.Sequence?r=jn.uri:t.tag.kind===ue.Mapping&&(r=wn.uri):t.tag.explicitName.startsWith("!<")?r=t.tag.explicitName.replace(/^!</,"").replace(/>$/,""):t.tag.explicitName.startsWith("!!")&&(r=`tag:yaml.org,2002:${t.tag.explicitName.replace(/^!!/,"")}`),r},registerTagDirective(t){this.tagDirectives.push({handle:t.parameters.handle,prefix:t.parameters.prefix})},registerTag(t,r=!1){return r?this.tags.unshift(t):this.tags.push(t),this},overrideTag(t){return this.tags=this.tags.filter((r=>r.tag===t.tag)),this.tags.push(t),this},resolve(t){const r=this.toSpecificTagName(t);if("?"===r)return t;let e=t;t.tag.kind===ue.Scalar&&(e=xn().canonicalFormat(t));const n=this.tags.find((t=>t?.tag===r));if(void 0===n)throw new Le(`Tag "${r}" was not recognized.`,{specificTagName:r,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:wt(t.tag.position)});if(!n.test(e))throw new Le(`Node couldn't be resolved against the tag "${r}"`,{specificTagName:r,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:wt(t.tag.position),nodeCanonicalContent:e.content});return n.resolve(e)}}}),Tn=r()(On,{statics:{uri:"tag:yaml.org,2002:bool"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^(true|false)$/.test(t.content),resolve(t){const r="true"===t.content,e=t.clone();return e.content=r,e}}}),Pn=r()(On,{statics:{uri:"tag:yaml.org,2002:float"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?$/.test(t.content),resolve(t){const r=parseFloat(t.content),e=t.clone();return e.content=r,e}}}),kn=r()(On,{statics:{uri:"tag:yaml.org,2002:int"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)$/.test(t.content),resolve(t){const r=parseInt(t.content,10),e=t.clone();return e.content=r,e}}}),Nn=r()(On,{statics:{uri:"tag:yaml.org,2002:null"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^null$/.test(t.content),resolve(t){const r=t.clone();return r.content=null,r}}}),Fn=r()(En,{init(){this.registerTag(Tn(),!0),this.registerTag(Pn(),!0),this.registerTag(kn(),!0),this.registerTag(Nn(),!0)},methods:{toSpecificTagName(t){let r=En.compose.methods.toSpecificTagName.call(this,t);if("?"===r)if(t.tag.vkind===ue.Sequence)r=jn.uri;else if(t.tag.kind===ue.Mapping)r=wn.uri;else if(t.tag.kind===ue.Scalar){const e=this.tags.find((r=>r.test(t)));r=e?.tag||"?"}return r}}}),Cn=r()(o,{statics:{type:"literal"},props:{value:null},init({value:t=null}={}){this.value=t}}),Mn=r()({statics:{type:"point"},props:{type:"point",row:null,column:null,char:null},init({row:t=null,column:r=null,char:e=null}={}){this.row=t,this.column=r,this.char=e}}),Dn=r()({statics:{type:"position"},props:{type:"position",start:null,end:null},init({start:t=null,end:r=null}={}){this.start=t,this.end=r}}),In=r()(o,{statics:{type:"error"},props:{value:null,isUnexpected:!1},init({value:t=null,isUnexpected:r=!1}={}){this.value=t,this.isUnexpected=r}}),Rn=r()(o,{statics:{type:"parseResult"},methods:{get rootNode(){return Yt(this.children)}}}),Ln=(t,r,e)=>{const n=t[r];if(null!=n){if(!e&&"function"==typeof n)return n;const t=e?n.leave:n.enter;if("function"==typeof t)return t}else{const n=e?t.leave:t.enter;if(null!=n){if("function"==typeof n)return n;const t=n[r];if("function"==typeof t)return t}}return null},_n={},Un=t=>t?.type,qn=t=>"string"==typeof Un(t),Jn=(t,{visitFnGetter:r=Ln,nodeTypeGetter:e=Un}={})=>{const n=new Array(t.length);return{enter(o,...i){for(let a=0;a<t.length;a+=1)if(null==n[a]){const c=r(t[a],e(o),!1);if("function"==typeof c){const r=c.call(t[a],o,...i);if(!1===r)n[a]=o;else if(r===_n)n[a]=_n;else if(void 0!==r)return r}}},leave(o,...i){for(let a=0;a<t.length;a+=1)if(null==n[a]){const c=r(t[a],e(o),!0);if("function"==typeof c){const r=c.call(t[a],o,...i);if(r===_n)n[a]=_n;else if(void 0!==r&&!1!==r)return r}}else n[a]===o&&(n[a]=null)}}},Yn=(t,r,{keyMap:e=null,state:n={},breakSymbol:o=_n,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:a=!1,visitFnGetter:c=Ln,nodeTypeGetter:s=Un,nodePredicate:u=qn,detectCycles:l=!0}={})=>{const f=e||{};let p,y,h=Array.isArray(t),g=[t],d=-1,v=[];const m=[],b=[];let S=t;do{d+=1;const t=d===g.length;let e,x;const O=t&&0!==v.length;if(t){if(e=0===b.length?void 0:m.pop(),x=y,y=b.pop(),O){x=h?x.slice():Object.create(Object.getPrototypeOf(x),Object.getOwnPropertyDescriptors(x));let t=0;for(let r=0;r<v.length;r+=1){let e=v[r][0];const n=v[r][1];h&&(e-=t),h&&n===i?(x.splice(e,1),t+=1):x[e]=n}}d=p.index,g=p.keys,v=p.edits,h=p.inArray,p=p.prev}else{if(e=y?h?d:g[d]:void 0,x=y?y[e]:S,x===i||void 0===x)continue;y&&m.push(e)}if(b.includes(x))continue;let w;if(!Array.isArray(x)){if(!u(x))throw new De(`Invalid AST Node: ${JSON.stringify(x)}`);if(l&&b.includes(x)){m.pop();continue}const i=c(r,s(x),t);if(i){for(const[t,e]of Object.entries(n))r[t]=e;if(w=i.call(r,x,e,y,m,b),w===o)break;if(w===a){if(!t){m.pop();continue}}else if(void 0!==w&&(v.push([e,w]),!t)){if(!u(w)){m.pop();continue}x=w}}}void 0===w&&O&&v.push([e,x]),t||(p={inArray:h,index:d,keys:g,edits:v,prev:p},h=Array.isArray(x),g=h?x:f[s(x)]||[],d=-1,v=[],y&&b.push(y),y=x)}while(void 0!==p);return 0!==v.length&&([,S]=v[v.length-1]),S};Yn[Symbol.for("nodejs.util.promisify.custom")]=async(t,r,{keyMap:e=null,state:n={},breakSymbol:o=_n,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:a=!1,visitFnGetter:c=Ln,nodeTypeGetter:s=Un,nodePredicate:u=qn,detectCycles:l=!0}={})=>{const f=e||{};let p,y,h=Array.isArray(t),g=[t],d=-1,v=[];const m=[],b=[];let S=t;do{d+=1;const t=d===g.length;let e,x;const O=t&&0!==v.length;if(t){if(e=0===b.length?void 0:m.pop(),x=y,y=b.pop(),O){x=h?x.slice():Object.create(Object.getPrototypeOf(x),Object.getOwnPropertyDescriptors(x));let t=0;for(let r=0;r<v.length;r+=1){let e=v[r][0];const n=v[r][1];h&&(e-=t),h&&n===i?(x.splice(e,1),t+=1):x[e]=n}}d=p.index,g=p.keys,v=p.edits,h=p.inArray,p=p.prev}else{if(e=y?h?d:g[d]:void 0,x=y?y[e]:S,x===i||void 0===x)continue;y&&m.push(e)}let w;if(!Array.isArray(x)){if(!u(x))throw new De(`Invalid AST Node: ${JSON.stringify(x)}`);if(l&&b.includes(x)){m.pop();continue}const i=c(r,s(x),t);if(i){for(const[t,e]of Object.entries(n))r[t]=e;if(w=await i.call(r,x,e,y,m,b),w===o)break;if(w===a){if(!t){m.pop();continue}}else if(void 0!==w&&(v.push([e,w]),!t)){if(!u(w)){m.pop();continue}x=w}}}void 0===w&&O&&v.push([e,x]),t||(p={inArray:h,index:d,keys:g,edits:v,prev:p},h=Array.isArray(x),g=h?x:f[s(x)]||[],d=-1,v=[],y&&b.push(y),y=x)}while(void 0!==p);return 0!==v.length&&([,S]=v[v.length-1]),S}})(),n})()));
1
+ !function(t,r){"object"==typeof exports&&"object"==typeof module?module.exports=r():"function"==typeof define&&define.amd?define([],r):"object"==typeof exports?exports.apidomAST=r():t.apidomAST=r()}(self,(()=>(()=>{var t={42:(t,r,e)=>{var n=e(5846);t.exports=n},6791:(t,r,e)=>{e(4339),e(4242),e(4016),e(8939),e(5454);var n=e(7545);t.exports=n.AggregateError},6762:(t,r,e)=>{t.exports=e(3028)},3028:(t,r,e)=>{e(2752);var n=e(42);t.exports=n},6235:(t,r,e)=>{var n=e(6447),o=e(9288),i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not a function")}},7757:(t,r,e)=>{var n=e(6447),o=String,i=TypeError;t.exports=function(t){if("object"==typeof t||n(t))return t;throw i("Can't set "+o(t)+" as a prototype")}},7423:t=>{t.exports=function(){}},1138:(t,r,e)=>{var n=e(5744),o=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw i(o(t)+" is not an object")}},8180:(t,r,e)=>{var n=e(101),o=e(7739),i=e(4104),a=function(t){return function(r,e,a){var c,s=n(r),u=i(s),l=o(a,u);if(t&&e!=e){for(;u>l;)if((c=s[l++])!=c)return!0}else for(;u>l;l++)if((t||l in s)&&s[l]===e)return t||l||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},9272:(t,r,e)=>{var n=e(4120),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},4696:(t,r,e)=>{var n=e(3471),o=e(6447),i=e(9272),a=e(8182)("toStringTag"),c=Object,s="Arguments"==i(function(){return arguments}());t.exports=n?i:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(t){}}(r=c(t),a))?e:s?i(r):"Object"==(n=i(r))&&o(r.callee)?"Arguments":n}},7987:(t,r,e)=>{var n=e(4500),o=e(3011),i=e(5141),a=e(2760);t.exports=function(t,r,e){for(var c=o(r),s=a.f,u=i.f,l=0;l<c.length;l++){var f=c[l];n(t,f)||e&&n(e,f)||s(t,f,u(r,f))}}},4635:(t,r,e)=>{var n=e(6192);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},7271:t=>{t.exports=function(t,r){return{value:t,done:r}}},8711:(t,r,e)=>{var n=e(69),o=e(2760),i=e(774);t.exports=n?function(t,r,e){return o.f(t,r,i(1,e))}:function(t,r,e){return t[r]=e,t}},774:t=>{t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},9362:(t,r,e)=>{var n=e(8711);t.exports=function(t,r,e,o){return o&&o.enumerable?t[r]=e:n(t,r,e),t}},5098:(t,r,e)=>{var n=e(8576),o=Object.defineProperty;t.exports=function(t,r){try{o(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},69:(t,r,e)=>{var n=e(6192);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},8382:t=>{var r="object"==typeof document&&document.all,e=void 0===r&&void 0!==r;t.exports={all:r,IS_HTMLDDA:e}},7449:(t,r,e)=>{var n=e(8576),o=e(5744),i=n.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},7365:t=>{t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8989:t=>{t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4218:(t,r,e)=>{var n,o,i=e(8576),a=e(8989),c=i.process,s=i.Deno,u=c&&c.versions||s&&s.version,l=u&&u.v8;l&&(o=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},2952:t=>{t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},4503:(t,r,e)=>{var n=e(4120),o=Error,i=n("".replace),a=String(o("zxcasd").stack),c=/\n\s*at [^:]*:[^\n]*/,s=c.test(a);t.exports=function(t,r){if(s&&"string"==typeof t&&!o.prepareStackTrace)for(;r--;)t=i(t,c,"");return t}},8266:(t,r,e)=>{var n=e(8711),o=e(4503),i=e(274),a=Error.captureStackTrace;t.exports=function(t,r,e,c){i&&(a?a(t,r):n(t,"stack",o(e,c)))}},274:(t,r,e)=>{var n=e(6192),o=e(774);t.exports=!n((function(){var t=Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},3085:(t,r,e)=>{"use strict";var n=e(8576),o=e(6298),i=e(4914),a=e(6447),c=e(5141).f,s=e(9245),u=e(7545),l=e(8043),f=e(8711),p=e(4500),y=function(t){var r=function(e,n,i){if(this instanceof r){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,i)}return o(t,this,arguments)};return r.prototype=t.prototype,r};t.exports=function(t,r){var e,o,h,g,d,v,m,b,S,x=t.target,O=t.global,w=t.stat,j=t.proto,A=O?n:w?n[x]:(n[x]||{}).prototype,E=O?u:u[x]||f(u,x,{})[x],T=E.prototype;for(g in r)o=!(e=s(O?g:x+(w?".":"#")+g,t.forced))&&A&&p(A,g),v=E[g],o&&(m=t.dontCallGetSet?(S=c(A,g))&&S.value:A[g]),d=o&&m?m:r[g],o&&typeof v==typeof d||(b=t.bind&&o?l(d,n):t.wrap&&o?y(d):j&&a(d)?i(d):d,(t.sham||d&&d.sham||v&&v.sham)&&f(b,"sham",!0),f(E,g,b),j&&(p(u,h=x+"Prototype")||f(u,h,{}),f(u[h],g,d),t.real&&T&&(e||!T[g])&&f(T,g,d)))}},6192:t=>{t.exports=function(t){try{return!!t()}catch(t){return!0}}},6298:(t,r,e)=>{var n=e(2784),o=Function.prototype,i=o.apply,a=o.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?a.bind(i):function(){return a.apply(i,arguments)})},8043:(t,r,e)=>{var n=e(4914),o=e(6235),i=e(2784),a=n(n.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?a(t,r):function(){return t.apply(r,arguments)}}},2784:(t,r,e)=>{var n=e(6192);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},8922:(t,r,e)=>{var n=e(2784),o=Function.prototype.call;t.exports=n?o.bind(o):function(){return o.apply(o,arguments)}},2282:(t,r,e)=>{var n=e(69),o=e(4500),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),s=c&&"something"===function(){}.name,u=c&&(!n||n&&a(i,"name").configurable);t.exports={EXISTS:c,PROPER:s,CONFIGURABLE:u}},6419:(t,r,e)=>{var n=e(4120),o=e(6235);t.exports=function(t,r,e){try{return n(o(Object.getOwnPropertyDescriptor(t,r)[e]))}catch(t){}}},4914:(t,r,e)=>{var n=e(9272),o=e(4120);t.exports=function(t){if("Function"===n(t))return o(t)}},4120:(t,r,e)=>{var n=e(2784),o=Function.prototype,i=o.call,a=n&&o.bind.bind(i,i);t.exports=n?a:function(t){return function(){return i.apply(t,arguments)}}},150:(t,r,e)=>{var n=e(7545),o=e(8576),i=e(6447),a=function(t){return i(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?a(n[t])||a(o[t]):n[t]&&n[t][r]||o[t]&&o[t][r]}},8703:(t,r,e)=>{var n=e(4696),o=e(5037),i=e(5646),a=e(7771),c=e(8182)("iterator");t.exports=function(t){if(!i(t))return o(t,c)||o(t,"@@iterator")||a[n(t)]}},1669:(t,r,e)=>{var n=e(8922),o=e(6235),i=e(1138),a=e(9288),c=e(8703),s=TypeError;t.exports=function(t,r){var e=arguments.length<2?c(t):r;if(o(e))return i(n(e,t));throw s(a(t)+" is not iterable")}},5037:(t,r,e)=>{var n=e(6235),o=e(5646);t.exports=function(t,r){var e=t[r];return o(e)?void 0:n(e)}},8576:function(t,r,e){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 e.g&&e.g)||function(){return this}()||this||Function("return this")()},4500:(t,r,e)=>{var n=e(4120),o=e(1795),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},4535:t=>{t.exports={}},7403:(t,r,e)=>{var n=e(150);t.exports=n("document","documentElement")},188:(t,r,e)=>{var n=e(69),o=e(6192),i=e(7449);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},2202:(t,r,e)=>{var n=e(4120),o=e(6192),i=e(9272),a=Object,c=n("".split);t.exports=o((function(){return!a("z").propertyIsEnumerable(0)}))?function(t){return"String"==i(t)?c(t,""):a(t)}:a},2643:(t,r,e)=>{var n=e(6447),o=e(5744),i=e(4469);t.exports=function(t,r,e){var a,c;return i&&n(a=r.constructor)&&a!==e&&o(c=a.prototype)&&c!==e.prototype&&i(t,c),t}},273:(t,r,e)=>{var n=e(5744),o=e(8711);t.exports=function(t,r){n(r)&&"cause"in r&&o(t,"cause",r.cause)}},3326:(t,r,e)=>{var n,o,i,a=e(5278),c=e(8576),s=e(5744),u=e(8711),l=e(4500),f=e(6434),p=e(9766),y=e(4535),h="Object already initialized",g=c.TypeError,d=c.WeakMap;if(a||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,r){if(v.has(t))throw g(h);return r.facade=t,v.set(t,r),r},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,r){if(l(t,m))throw g(h);return r.facade=t,u(t,m,r),r},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(r){var e;if(!s(r)||(e=o(r)).type!==t)throw g("Incompatible receiver, "+t+" required");return e}}}},6109:(t,r,e)=>{var n=e(8182),o=e(7771),i=n("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},6447:(t,r,e)=>{var n=e(8382),o=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===o}:function(t){return"function"==typeof t}},9245:(t,r,e)=>{var n=e(6192),o=e(6447),i=/#|\.prototype\./,a=function(t,r){var e=s[c(t)];return e==l||e!=u&&(o(r)?n(r):!!r)},c=a.normalize=function(t){return String(t).replace(i,".").toLowerCase()},s=a.data={},u=a.NATIVE="N",l=a.POLYFILL="P";t.exports=a},5646:t=>{t.exports=function(t){return null==t}},5744:(t,r,e)=>{var n=e(6447),o=e(8382),i=o.all;t.exports=o.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:n(t)||t===i}:function(t){return"object"==typeof t?null!==t:n(t)}},5546:t=>{t.exports=!0},3236:(t,r,e)=>{var n=e(150),o=e(6447),i=e(8902),a=e(615),c=Object;t.exports=a?function(t){return"symbol"==typeof t}:function(t){var r=n("Symbol");return o(r)&&i(r.prototype,c(t))}},3442:(t,r,e)=>{var n=e(8043),o=e(8922),i=e(1138),a=e(9288),c=e(6109),s=e(4104),u=e(8902),l=e(1669),f=e(8703),p=e(6639),y=TypeError,h=function(t,r){this.stopped=t,this.result=r},g=h.prototype;t.exports=function(t,r,e){var d,v,m,b,S,x,O,w=e&&e.that,j=!(!e||!e.AS_ENTRIES),A=!(!e||!e.IS_RECORD),E=!(!e||!e.IS_ITERATOR),T=!(!e||!e.INTERRUPTED),P=n(r,w),k=function(t){return d&&p(d,"normal",t),new h(!0,t)},N=function(t){return j?(i(t),T?P(t[0],t[1],k):P(t[0],t[1])):T?P(t,k):P(t)};if(A)d=t.iterator;else if(E)d=t;else{if(!(v=f(t)))throw y(a(t)+" is not iterable");if(c(v)){for(m=0,b=s(t);b>m;m++)if((S=N(t[m]))&&u(g,S))return S;return new h(!1)}d=l(t,v)}for(x=A?t.next:d.next;!(O=o(x,d)).done;){try{S=N(O.value)}catch(t){p(d,"throw",t)}if("object"==typeof S&&S&&u(g,S))return S}return new h(!1)}},6639:(t,r,e)=>{var n=e(8922),o=e(1138),i=e(5037);t.exports=function(t,r,e){var a,c;o(t);try{if(!(a=i(t,"return"))){if("throw"===r)throw e;return e}a=n(a,t)}catch(t){c=!0,a=t}if("throw"===r)throw e;if(c)throw a;return o(a),e}},5695:(t,r,e)=>{"use strict";var n=e(4413).IteratorPrototype,o=e(2853),i=e(774),a=e(1284),c=e(7771),s=function(){return this};t.exports=function(t,r,e,u){var l=r+" Iterator";return t.prototype=o(n,{next:i(+!u,e)}),a(t,l,!1,!0),c[l]=s,t}},5297:(t,r,e)=>{"use strict";var n=e(3085),o=e(8922),i=e(5546),a=e(2282),c=e(6447),s=e(5695),u=e(9341),l=e(4469),f=e(1284),p=e(8711),y=e(9362),h=e(8182),g=e(7771),d=e(4413),v=a.PROPER,m=a.CONFIGURABLE,b=d.IteratorPrototype,S=d.BUGGY_SAFARI_ITERATORS,x=h("iterator"),O="keys",w="values",j="entries",A=function(){return this};t.exports=function(t,r,e,a,h,d,E){s(e,r,a);var T,P,k,N=function(t){if(t===h&&D)return D;if(!S&&t in F)return F[t];switch(t){case O:case w:case j:return function(){return new e(this,t)}}return function(){return new e(this)}},M=r+" Iterator",C=!1,F=t.prototype,I=F[x]||F["@@iterator"]||h&&F[h],D=!S&&I||N(h),L="Array"==r&&F.entries||I;if(L&&(T=u(L.call(new t)))!==Object.prototype&&T.next&&(i||u(T)===b||(l?l(T,b):c(T[x])||y(T,x,A)),f(T,M,!0,!0),i&&(g[M]=A)),v&&h==w&&I&&I.name!==w&&(!i&&m?p(F,"name",w):(C=!0,D=function(){return o(I,this)})),h)if(P={values:N(w),keys:d?D:N(O),entries:N(j)},E)for(k in P)(S||C||!(k in F))&&y(F,k,P[k]);else n({target:r,proto:!0,forced:S||C},P);return i&&!E||F[x]===D||y(F,x,D,{name:h}),g[r]=D,P}},4413:(t,r,e)=>{"use strict";var n,o,i,a=e(6192),c=e(6447),s=e(5744),u=e(2853),l=e(9341),f=e(9362),p=e(8182),y=e(5546),h=p("iterator"),g=!1;[].keys&&("next"in(i=[].keys())?(o=l(l(i)))!==Object.prototype&&(n=o):g=!0),!s(n)||a((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}},7771:t=>{t.exports={}},4104:(t,r,e)=>{var n=e(8445);t.exports=function(t){return n(t.length)}},7679:t=>{var r=Math.ceil,e=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?e:r)(n)}},6016:(t,r,e)=>{var n=e(4845);t.exports=function(t,r){return void 0===t?arguments.length<2?"":r:n(t)}},2853:(t,r,e)=>{var n,o=e(1138),i=e(1187),a=e(2952),c=e(4535),s=e(7403),u=e(7449),l=e(9766),f="prototype",p="script",y=l("IE_PROTO"),h=function(){},g=function(t){return"<"+p+">"+t+"</"+p+">"},d=function(t){t.write(g("")),t.close();var r=t.parentWindow.Object;return t=null,r},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,r,e;v="undefined"!=typeof document?document.domain&&n?d(n):(r=u("iframe"),e="java"+p+":",r.style.display="none",s.appendChild(r),r.src=String(e),(t=r.contentWindow.document).open(),t.write(g("document.F=Object")),t.close(),t.F):d(n);for(var o=a.length;o--;)delete v[f][a[o]];return v()};c[y]=!0,t.exports=Object.create||function(t,r){var e;return null!==t?(h[f]=o(t),e=new h,h[f]=null,e[y]=t):e=v(),void 0===r?e:i.f(e,r)}},1187:(t,r,e)=>{var n=e(69),o=e(9600),i=e(2760),a=e(1138),c=e(101),s=e(7653);r.f=n&&!o?Object.defineProperties:function(t,r){a(t);for(var e,n=c(r),o=s(r),u=o.length,l=0;u>l;)i.f(t,e=o[l++],n[e]);return t}},2760:(t,r,e)=>{var n=e(69),o=e(188),i=e(9600),a=e(1138),c=e(77),s=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",y="writable";r.f=n?i?function(t,r,e){if(a(t),r=c(r),a(e),"function"==typeof t&&"prototype"===r&&"value"in e&&y in e&&!e[y]){var n=l(t,r);n&&n[y]&&(t[r]=e.value,e={configurable:p in e?e[p]:n[p],enumerable:f in e?e[f]:n[f],writable:!1})}return u(t,r,e)}:u:function(t,r,e){if(a(t),r=c(r),a(e),o)try{return u(t,r,e)}catch(t){}if("get"in e||"set"in e)throw s("Accessors not supported");return"value"in e&&(t[r]=e.value),t}},5141:(t,r,e)=>{var n=e(69),o=e(8922),i=e(6007),a=e(774),c=e(101),s=e(77),u=e(4500),l=e(188),f=Object.getOwnPropertyDescriptor;r.f=n?f:function(t,r){if(t=c(t),r=s(r),l)try{return f(t,r)}catch(t){}if(u(t,r))return a(!o(i.f,t,r),t[r])}},2092:(t,r,e)=>{var n=e(7934),o=e(2952).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},4750:(t,r)=>{r.f=Object.getOwnPropertySymbols},9341:(t,r,e)=>{var n=e(4500),o=e(6447),i=e(1795),a=e(9766),c=e(4635),s=a("IE_PROTO"),u=Object,l=u.prototype;t.exports=c?u.getPrototypeOf:function(t){var r=i(t);if(n(r,s))return r[s];var e=r.constructor;return o(e)&&r instanceof e?e.prototype:r instanceof u?l:null}},8902:(t,r,e)=>{var n=e(4120);t.exports=n({}.isPrototypeOf)},7934:(t,r,e)=>{var n=e(4120),o=e(4500),i=e(101),a=e(8180).indexOf,c=e(4535),s=n([].push);t.exports=function(t,r){var e,n=i(t),u=0,l=[];for(e in n)!o(c,e)&&o(n,e)&&s(l,e);for(;r.length>u;)o(n,e=r[u++])&&(~a(l,e)||s(l,e));return l}},7653:(t,r,e)=>{var n=e(7934),o=e(2952);t.exports=Object.keys||function(t){return n(t,o)}},6007:(t,r)=>{"use strict";var e={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!e.call({1:2},1);r.f=o?function(t){var r=n(this,t);return!!r&&r.enumerable}:e},4469:(t,r,e)=>{var n=e(6419),o=e(1138),i=e(7757);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=n(Object.prototype,"__proto__","set"))(e,[]),r=e instanceof Array}catch(t){}return function(e,n){return o(e),i(n),r?t(e,n):e.__proto__=n,e}}():void 0)},158:(t,r,e)=>{"use strict";var n=e(3471),o=e(4696);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},380:(t,r,e)=>{var n=e(8922),o=e(6447),i=e(5744),a=TypeError;t.exports=function(t,r){var e,c;if("string"===r&&o(e=t.toString)&&!i(c=n(e,t)))return c;if(o(e=t.valueOf)&&!i(c=n(e,t)))return c;if("string"!==r&&o(e=t.toString)&&!i(c=n(e,t)))return c;throw a("Can't convert object to primitive value")}},3011:(t,r,e)=>{var n=e(150),o=e(4120),i=e(2092),a=e(4750),c=e(1138),s=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var r=i.f(c(t)),e=a.f;return e?s(r,e(t)):r}},7545:t=>{t.exports={}},7656:(t,r,e)=>{var n=e(2760).f;t.exports=function(t,r,e){e in t||n(t,e,{configurable:!0,get:function(){return r[e]},set:function(t){r[e]=t}})}},3209:(t,r,e)=>{var n=e(5646),o=TypeError;t.exports=function(t){if(n(t))throw o("Can't call method on "+t);return t}},1284:(t,r,e)=>{var n=e(3471),o=e(2760).f,i=e(8711),a=e(4500),c=e(158),s=e(8182)("toStringTag");t.exports=function(t,r,e,u){if(t){var l=e?t:t.prototype;a(l,s)||o(l,s,{configurable:!0,value:r}),u&&!n&&i(l,"toString",c)}}},9766:(t,r,e)=>{var n=e(8717),o=e(2759),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},6434:(t,r,e)=>{var n=e(8576),o=e(5098),i="__core-js_shared__",a=n[i]||o(i,{});t.exports=a},8717:(t,r,e)=>{var n=e(5546),o=e(6434);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.31.1",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.31.1/LICENSE",source:"https://github.com/zloirock/core-js"})},863:(t,r,e)=>{var n=e(4120),o=e(1941),i=e(4845),a=e(3209),c=n("".charAt),s=n("".charCodeAt),u=n("".slice),l=function(t){return function(r,e){var n,l,f=i(a(r)),p=o(e),y=f.length;return p<0||p>=y?t?"":void 0:(n=s(f,p))<55296||n>56319||p+1===y||(l=s(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)}},6770:(t,r,e)=>{var n=e(4218),o=e(6192),i=e(8576).String;t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},7739:(t,r,e)=>{var n=e(1941),o=Math.max,i=Math.min;t.exports=function(t,r){var e=n(t);return e<0?o(e+r,0):i(e,r)}},101:(t,r,e)=>{var n=e(2202),o=e(3209);t.exports=function(t){return n(o(t))}},1941:(t,r,e)=>{var n=e(7679);t.exports=function(t){var r=+t;return r!=r||0===r?0:n(r)}},8445:(t,r,e)=>{var n=e(1941),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},1795:(t,r,e)=>{var n=e(3209),o=Object;t.exports=function(t){return o(n(t))}},7888:(t,r,e)=>{var n=e(8922),o=e(5744),i=e(3236),a=e(5037),c=e(380),s=e(8182),u=TypeError,l=s("toPrimitive");t.exports=function(t,r){if(!o(t)||i(t))return t;var e,s=a(t,l);if(s){if(void 0===r&&(r="default"),e=n(s,t,r),!o(e)||i(e))return e;throw u("Can't convert object to primitive value")}return void 0===r&&(r="number"),c(t,r)}},77:(t,r,e)=>{var n=e(7888),o=e(3236);t.exports=function(t){var r=n(t,"string");return o(r)?r:r+""}},3471:(t,r,e)=>{var n={};n[e(8182)("toStringTag")]="z",t.exports="[object z]"===String(n)},4845:(t,r,e)=>{var n=e(4696),o=String;t.exports=function(t){if("Symbol"===n(t))throw TypeError("Cannot convert a Symbol value to a string");return o(t)}},9288:t=>{var r=String;t.exports=function(t){try{return r(t)}catch(t){return"Object"}}},2759:(t,r,e)=>{var n=e(4120),o=0,i=Math.random(),a=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+a(++o+i,36)}},615:(t,r,e)=>{var n=e(6770);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},9600:(t,r,e)=>{var n=e(69),o=e(6192);t.exports=n&&o((function(){return 42!=Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5278:(t,r,e)=>{var n=e(8576),o=e(6447),i=n.WeakMap;t.exports=o(i)&&/native code/.test(String(i))},8182:(t,r,e)=>{var n=e(8576),o=e(8717),i=e(4500),a=e(2759),c=e(6770),s=e(615),u=n.Symbol,l=o("wks"),f=s?u.for||u:u&&u.withoutSetter||a;t.exports=function(t){return i(l,t)||(l[t]=c&&i(u,t)?u[t]:f("Symbol."+t)),l[t]}},426:(t,r,e)=>{"use strict";var n=e(150),o=e(4500),i=e(8711),a=e(8902),c=e(4469),s=e(7987),u=e(7656),l=e(2643),f=e(6016),p=e(273),y=e(8266),h=e(69),g=e(5546);t.exports=function(t,r,e,d){var v="stackTraceLimit",m=d?2:1,b=t.split("."),S=b[b.length-1],x=n.apply(null,b);if(x){var O=x.prototype;if(!g&&o(O,"cause")&&delete O.cause,!e)return x;var w=n("Error"),j=r((function(t,r){var e=f(d?r:t,void 0),n=d?new x(t):new x;return void 0!==e&&i(n,"message",e),y(n,j,n.stack,2),this&&a(O,this)&&l(n,this,j),arguments.length>m&&p(n,arguments[m]),n}));if(j.prototype=O,"Error"!==S?c?c(j,w):s(j,w,{name:!0}):h&&v in x&&(u(j,x,v),u(j,x,"prepareStackTrace")),s(j,x),!g)try{O.name!==S&&i(O,"name",S),O.constructor=j}catch(t){}return j}}},4016:(t,r,e)=>{var n=e(3085),o=e(150),i=e(6298),a=e(6192),c=e(426),s="AggregateError",u=o(s),l=!a((function(){return 1!==u([1]).errors[0]}))&&a((function(){return 7!==u([1],s,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:c(s,(function(t){return function(r,e){return i(t,this,arguments)}}),l,!0)})},3820:(t,r,e)=>{"use strict";var n=e(3085),o=e(8902),i=e(9341),a=e(4469),c=e(7987),s=e(2853),u=e(8711),l=e(774),f=e(273),p=e(8266),y=e(3442),h=e(6016),g=e(8182)("toStringTag"),d=Error,v=[].push,m=function(t,r){var e,n=o(b,this);a?e=a(d(),n?i(this):b):(e=n?this:s(b),u(e,g,"Error")),void 0!==r&&u(e,"message",h(r)),p(e,m,e.stack,1),arguments.length>2&&f(e,arguments[2]);var c=[];return y(t,v,{that:c}),u(e,"errors",c),e};a?a(m,d):c(m,d,{name:!0});var b=m.prototype=s(d.prototype,{constructor:l(1,m),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:m})},4242:(t,r,e)=>{e(3820)},8939:(t,r,e)=>{"use strict";var n=e(101),o=e(7423),i=e(7771),a=e(3326),c=e(2760).f,s=e(5297),u=e(7271),l=e(5546),f=e(69),p="Array Iterator",y=a.set,h=a.getterFor(p);t.exports=s(Array,"Array",(function(t,r){y(this,{type:p,target:n(t),index:0,kind:r})}),(function(){var t=h(this),r=t.target,e=t.kind,n=t.index++;return!r||n>=r.length?(t.target=void 0,u(void 0,!0)):u("keys"==e?n:"values"==e?r[n]:[n,r[n]],!1)}),"values");var g=i.Arguments=i.Array;if(o("keys"),o("values"),o("entries"),!l&&f&&"values"!==g.name)try{c(g,"name",{value:"values"})}catch(t){}},4339:(t,r,e)=>{var n=e(3085),o=e(8576),i=e(6298),a=e(426),c="WebAssembly",s=o[c],u=7!==Error("e",{cause:7}).cause,l=function(t,r){var e={};e[t]=a(t,r,u),n({global:!0,constructor:!0,arity:1,forced:u},e)},f=function(t,r){if(s&&s[t]){var e={};e[t]=a(c+"."+t,r,u),n({target:c,stat:!0,constructor:!0,arity:1,forced:u},e)}};l("Error",(function(t){return function(r){return i(t,this,arguments)}})),l("EvalError",(function(t){return function(r){return i(t,this,arguments)}})),l("RangeError",(function(t){return function(r){return i(t,this,arguments)}})),l("ReferenceError",(function(t){return function(r){return i(t,this,arguments)}})),l("SyntaxError",(function(t){return function(r){return i(t,this,arguments)}})),l("TypeError",(function(t){return function(r){return i(t,this,arguments)}})),l("URIError",(function(t){return function(r){return i(t,this,arguments)}})),f("CompileError",(function(t){return function(r){return i(t,this,arguments)}})),f("LinkError",(function(t){return function(r){return i(t,this,arguments)}})),f("RuntimeError",(function(t){return function(r){return i(t,this,arguments)}}))},5454:(t,r,e)=>{"use strict";var n=e(863).charAt,o=e(4845),i=e(3326),a=e(5297),c=e(7271),s="String Iterator",u=i.set,l=i.getterFor(s);a(String,"String",(function(t){u(this,{type:s,string:o(t),index:0})}),(function(){var t,r=l(this),e=r.string,o=r.index;return o>=e.length?c(void 0,!0):(t=n(e,o),r.index+=t.length,c(t,!1))}))},2752:(t,r,e)=>{e(4242)},162:(t,r,e)=>{e(8939);var n=e(7365),o=e(8576),i=e(4696),a=e(8711),c=e(7771),s=e(8182)("toStringTag");for(var u in n){var l=o[u],f=l&&l.prototype;f&&i(f)!==s&&a(f,s,u),c[u]=c.Array}},5846:(t,r,e)=>{e(2752);var n=e(6791);e(162),t.exports=n},6591:t=>{!function(){"use strict";var r,e,n,o,i,a="properties",c="deepProperties",s="propertyDescriptors",u="staticProperties",l="staticDeepProperties",f="staticPropertyDescriptors",p="configuration",y="deepConfiguration",h="deepProps",g="deepStatics",d="deepConf",v="initializers",m="methods",b="composers",S="compose";function x(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t):[])}function O(t,r){return Array.prototype.slice.call(arguments,2).reduce(t,r)}var w=O.bind(0,(function(t,r){if(r)for(var e=x(r),n=0;n<e.length;n+=1)Object.defineProperty(t,e[n],Object.getOwnPropertyDescriptor(r,e[n]));return t}));function j(t){return"function"==typeof t}function A(t){return t&&"object"==typeof t||j(t)}function E(t){return t&&"object"==typeof t&&t.__proto__==Object.prototype}var T=O.bind(0,(function t(e,n){if(n===r)return e;if(Array.isArray(n))return(Array.isArray(e)?e:[]).concat(n);if(!E(n))return n;for(var o,i,a=x(n),c=0;c<a.length;)o=a[c++],(i=Object.getOwnPropertyDescriptor(n,o)).hasOwnProperty("value")?i.value!==r&&(e[o]=t(E(e[o])||Array.isArray(n[o])?e[o]:{},n[o])):Object.defineProperty(e,o,i);return e}));function P(){return(e=Array.prototype.concat.apply([],arguments).filter((function(t,r,e){return j(t)&&e.indexOf(t)===r}))).length?e:r}function k(t,r){function n(e,n){A(r[e])&&(A(t[e])||(t[e]={}),(n||w)(t[e],r[e]))}function o(n){(e=P(t[n],r[n]))&&(t[n]=e)}return r&&A(r=r[S]||r)&&(n(m),n(a),n(c,T),n(s),n(u),n(l,T),n(f),n(p),n(y,T),o(v),o(b)),t}function N(){return function(t){return e=function t(e){var n,o,i=t[S]||{},u={__proto__:i[m]},l=i[v],f=Array.prototype.slice.apply(arguments),p=i[c];if(p&&T(u,p),(p=i[a])&&w(u,p),(p=i[s])&&Object.defineProperties(u,p),!l||!l.length)return u;for(e===r&&(e={}),i=0;i<l.length;)j(n=l[i++])&&(u=(o=n.call(u,e,{instance:u,stamp:t,args:f}))===r?u:o);return u},(n=t[l])&&T(e,n),(n=t[u])&&w(e,n),(n=t[f])&&Object.defineProperties(e,n),n=j(e[S])?e[S]:N,w(e[S]=function(){return n.apply(this,arguments)},t),e}(Array.prototype.concat.apply([this],arguments).reduce(k,{}))}function M(t){return j(t)&&j(t[S])}var C={};function F(t,i){return function(){return(o={})[t]=i.apply(r,Array.prototype.concat.apply([{}],arguments)),((e=this)&&e[S]||n).call(e,o)}}C[m]=F(m,w),C[a]=C.props=F(a,w),C[v]=C.init=F(v,P),C[b]=F(b,P),C[c]=C[h]=F(c,T),C[u]=C.statics=F(u,w),C[l]=C[g]=F(l,T),C[p]=C.conf=F(p,w),C[y]=C[d]=F(y,T),C[s]=F(s,w),C[f]=F(f,w),n=C[S]=w((function(){for(var t,x,O=0,j=[],E=arguments,k=this;O<E.length;)A(t=E[O++])&&j.push(M(t)?t:((o={})[m]=(x=t)[m]||r,n=x.props,o[a]=A((e=x[a])||n)?w({},n,e):r,o[v]=P(x.init,x[v]),o[b]=P(x[b]),n=x[h],o[c]=A((e=x[c])||n)?T({},n,e):r,o[s]=x[s],n=x.statics,o[u]=A((e=x[u])||n)?w({},n,e):r,n=x[g],o[l]=A((e=x[l])||n)?T({},n,e):r,e=x[f],o[f]=A((n=x.name&&{name:{value:x.name}})||e)?w({},e,n):r,n=x.conf,o[p]=A((e=x[p])||n)?w({},n,e):r,n=x[d],o[y]=A((e=x[y])||n)?T({},n,e):r,o));if(t=N.apply(k||i,j),k&&j.unshift(k),Array.isArray(E=t[S][b]))for(O=0;O<E.length;)t=M(k=E[O++]({stamp:t,composables:j}))?k:t;return t}),C),C.create=function(){return this.apply(r,arguments)},(o={})[u]=C,i=N(o),n[S]=n.bind(),n.version="4.3.2","object"!=typeof r?t.exports=n:self.stampit=n}()},2396:(t,r)=>{"use strict";var e;Object.defineProperty(r,"__esModule",{value:!0}),r.errorMessages=r.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"}(e=r.ErrorType||(r.ErrorType={})),r.errorMessages=new Map([[e.MalformedUnicode,"malformed Unicode character escape sequence"],[e.MalformedHexadecimal,"malformed hexadecimal character escape sequence"],[e.CodePointLimit,"Unicode codepoint must not be greater than 0x10FFFF in escape sequence"],[e.OctalDeprecation,'"0"-prefixed octal literals and octal escape sequences are deprecated; for octal literals use the "0o" prefix instead'],[e.EndOfString,"malformed escape sequence at end of string"]])},2770:(t,r,e)=>{"use strict";r.S6=void 0;const n=e(2396);function o(t,r,e){const o=function(t){return t.match(/[^a-f0-9]/i)?NaN:parseInt(t,16)}(t);if(Number.isNaN(o)||void 0!==e&&e!==t.length)throw new SyntaxError(n.errorMessages.get(r));return o}function i(t,r){const e=o(t,n.ErrorType.MalformedUnicode,4);if(void 0!==r){const t=o(r,n.ErrorType.MalformedUnicode,4);return String.fromCharCode(e,t)}return String.fromCharCode(e)}const a=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 s(t,r=!1){return t.replace(c,(function(t,e,c,s,u,l,f,p,y){if(void 0!==e)return"\\";if(void 0!==c)return function(t){const r=o(t,n.ErrorType.MalformedHexadecimal,2);return String.fromCharCode(r)}(c);if(void 0!==s)return function(t){if("{"!==(r=t).charAt(0)||"}"!==r.charAt(r.length-1))throw new SyntaxError(n.errorMessages.get(n.ErrorType.MalformedUnicode));var r;const e=o(t.slice(1,-1),n.ErrorType.MalformedUnicode);try{return String.fromCodePoint(e)}catch(t){throw t instanceof RangeError?new SyntaxError(n.errorMessages.get(n.ErrorType.CodePointLimit)):t}}(s);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,r=!1){if(r)throw new SyntaxError(n.errorMessages.get(n.ErrorType.OctalDeprecation));const e=parseInt(t,8);return String.fromCharCode(e)}(p,!r);if(void 0!==y)return h=y,a.get(h)||h;var h;throw new SyntaxError(n.errorMessages.get(n.ErrorType.EndOfString))}))}r.S6=s},1427:(t,r,e)=>{t.exports=e(6762)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var i=r[n]={exports:{}};return t[n].call(i.exports,i,i.exports,e),i.exports}e.n=t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},e.d=(t,r)=>{for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=(t,r)=>Object.prototype.hasOwnProperty.call(t,r),e.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";e.r(n),e.d(n,{BREAK:()=>kn,Error:()=>En,JsonArray:()=>kr,JsonDocument:()=>ur,JsonEscapeSequence:()=>Ir,JsonFalse:()=>Rr,JsonKey:()=>Cr,JsonNode:()=>i,JsonNull:()=>_r,JsonNumber:()=>Dr,JsonObject:()=>Tr,JsonProperty:()=>Pr,JsonString:()=>Mr,JsonStringContent:()=>Fr,JsonTrue:()=>Lr,JsonValue:()=>Nr,Literal:()=>wn,ParseResult:()=>Tn,Point:()=>jn,Position:()=>An,YamlAlias:()=>Ur,YamlAnchor:()=>fe,YamlCollection:()=>Yr,YamlComment:()=>Jr,YamlDirective:()=>Gr,YamlDocument:()=>$r,YamlFailsafeSchema:()=>vn,YamlJsonSchema:()=>On,YamlKeyValuePair:()=>oe,YamlMapping:()=>ie,YamlNode:()=>qr,YamlNodeKind:()=>ue,YamlScalar:()=>ae,YamlSchemaError:()=>Te,YamlSequence:()=>ce,YamlStream:()=>se,YamlStyle:()=>Vr,YamlStyleGroup:()=>zr,YamlTag:()=>le,YamlTagError:()=>Pe,cloneNode:()=>Cn,getNodeType:()=>Nn,getVisitFn:()=>Pn,isJsonArray:()=>xr,isJsonDocument:()=>gr,isJsonEscapeSequence:()=>jr,isJsonFalse:()=>vr,isJsonKey:()=>Er,isJsonNull:()=>br,isJsonNumber:()=>Sr,isJsonObject:()=>Or,isJsonProperty:()=>Ar,isJsonString:()=>dr,isJsonStringContent:()=>wr,isJsonTrue:()=>mr,isLiteral:()=>fr,isNode:()=>Mn,isParseResult:()=>hr,isPoint:()=>yr,isPosition:()=>pr,isYamlAlias:()=>re,isYamlDirective:()=>ee,isYamlDocument:()=>Kr,isYamlKeyValuePair:()=>Xr,isYamlMapping:()=>Wr,isYamlScalar:()=>te,isYamlSequence:()=>Qr,isYamlStream:()=>Hr,isYamlTag:()=>Zr,mergeAllVisitors:()=>Fn,visit:()=>In});var t=e(6591),r=e.n(t);const o=r()({props:{type:null,position:null,children:[]},init({children:t=[],position:r=null,isMissing:e=!1}={},{stamp:n={}}){this.type=n.type,this.isMissing=e,this.children=t,this.position=r},methods:{clone(){const t=Object.create(Object.getPrototypeOf(this));return Object.getOwnPropertyNames(this).forEach((r=>{const e=Object.getOwnPropertyDescriptor(this,r);Object.defineProperty(t,r,e)})),t}}}),i=r()(o),a=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};function c(t,r,e){return function(){if(0===arguments.length)return e();var n=arguments[arguments.length-1];if(!a(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 r.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return e.apply(this,arguments)}}const s=function(){return this.xf["@@transducer/init"]()},u=function(t){return this.xf["@@transducer/result"](t)};function l(t){return null!=t&&"object"==typeof t&&!0===t["@@functional/placeholder"]}function f(t){return function r(e){return 0===arguments.length||l(e)?r:t.apply(this,arguments)}}function p(t){return function r(e,n){switch(arguments.length){case 0:return r;case 1:return l(e)?r:f((function(r){return t(e,r)}));default:return l(e)&&l(n)?r:l(e)?f((function(r){return t(r,n)})):l(n)?f((function(r){return t(e,r)})):t(e,n)}}}function y(t){for(var r,e=[];!(r=t.next()).done;)e.push(r.value);return e}function h(t,r,e){for(var n=0,o=e.length;n<o;){if(t(r,e[n]))return!0;n+=1}return!1}function g(t,r){return Object.prototype.hasOwnProperty.call(r,t)}const d="function"==typeof Object.is?Object.is:function(t,r){return t===r?0!==t||1/t==1/r:t!=t&&r!=r};var v=Object.prototype.toString;const m=function(){return"[object Arguments]"===v.call(arguments)?function(t){return"[object Arguments]"===v.call(t)}:function(t){return g("callee",t)}}();var b=!{toString:null}.propertyIsEnumerable("toString"),S=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],x=function(){return arguments.propertyIsEnumerable("length")}(),O=function(t,r){for(var e=0;e<t.length;){if(t[e]===r)return!0;e+=1}return!1};const w="function"!=typeof Object.keys||x?f((function(t){if(Object(t)!==t)return[];var r,e,n=[],o=x&&m(t);for(r in t)!g(r,t)||o&&"length"===r||(n[n.length]=r);if(b)for(e=S.length-1;e>=0;)g(r=S[e],t)&&!O(n,r)&&(n[n.length]=r),e-=1;return n})):f((function(t){return Object(t)!==t?[]:Object.keys(t)}));const j=f((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));function A(t,r,e,n){var o=y(t);function i(t,r){return E(t,r,e.slice(),n.slice())}return!h((function(t,r){return!h(i,r,t)}),y(r),o)}function E(t,r,e,n){if(d(t,r))return!0;var o,i,a=j(t);if(a!==j(r))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof r["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](r)&&"function"==typeof r["fantasy-land/equals"]&&r["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof r.equals)return"function"==typeof t.equals&&t.equals(r)&&"function"==typeof r.equals&&r.equals(t);switch(a){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===r;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof r||!d(t.valueOf(),r.valueOf()))return!1;break;case"Date":if(!d(t.valueOf(),r.valueOf()))return!1;break;case"Error":return t.name===r.name&&t.message===r.message;case"RegExp":if(t.source!==r.source||t.global!==r.global||t.ignoreCase!==r.ignoreCase||t.multiline!==r.multiline||t.sticky!==r.sticky||t.unicode!==r.unicode)return!1}for(var c=e.length-1;c>=0;){if(e[c]===t)return n[c]===r;c-=1}switch(a){case"Map":return t.size===r.size&&A(t.entries(),r.entries(),e.concat([t]),n.concat([r]));case"Set":return t.size===r.size&&A(t.values(),r.values(),e.concat([t]),n.concat([r]));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 s=w(t);if(s.length!==w(r).length)return!1;var u=e.concat([t]),l=n.concat([r]);for(c=s.length-1;c>=0;){var f=s[c];if(!g(f,r)||!E(r[f],t[f],u,l))return!1;c-=1}return!0}const T=p((function(t,r){return E(t,r,[],[])}));function P(t,r){return function(t,r,e){var n,o;if("function"==typeof t.indexOf)switch(typeof r){case"number":if(0===r){for(n=1/r;e<t.length;){if(0===(o=t[e])&&1/o===n)return e;e+=1}return-1}if(r!=r){for(;e<t.length;){if("number"==typeof(o=t[e])&&o!=o)return e;e+=1}return-1}return t.indexOf(r,e);case"string":case"boolean":case"function":case"undefined":return t.indexOf(r,e);case"object":if(null===r)return t.indexOf(r,e)}for(;e<t.length;){if(T(t[e],r))return e;e+=1}return-1}(r,t,0)>=0}function k(t,r){for(var e=0,n=r.length,o=Array(n);e<n;)o[e]=t(r[e]),e+=1;return o}function N(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 M=function(t){return(t<10?"0":"")+t};const C="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+M(t.getUTCMonth()+1)+"-"+M(t.getUTCDate())+"T"+M(t.getUTCHours())+":"+M(t.getUTCMinutes())+":"+M(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function F(t,r,e){for(var n=0,o=e.length;n<o;)r=t(r,e[n]),n+=1;return r}var I=function(){function t(t,r){this.xf=r,this.f=t}return t.prototype["@@transducer/init"]=s,t.prototype["@@transducer/result"]=u,t.prototype["@@transducer/step"]=function(t,r){return this.f(r)?this.xf["@@transducer/step"](t,r):t},t}();function D(t){return function(r){return new I(t,r)}}const L=p(c(["fantasy-land/filter","filter"],D,(function(t,r){return e=r,"[object Object]"===Object.prototype.toString.call(e)?F((function(e,n){return t(r[n])&&(e[n]=r[n]),e}),{},w(r)):function(t,r){for(var e=0,n=r.length,o=[];e<n;)t(r[e])&&(o[o.length]=r[e]),e+=1;return o}(t,r);var e})));const R=p((function(t,r){return L((e=t,function(){return!e.apply(this,arguments)}),r);var e}));function _(t,r){var e=function(e){var n=r.concat([t]);return P(e,n)?"<Circular>":_(e,n)},n=function(t,r){return k((function(r){return N(r)+": "+e(t[r])}),r.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+k(e,t).join(", ")+"))";case"[object Array]":return"["+k(e,t).concat(n(t,R((function(t){return/^\d+$/.test(t)}),w(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+e(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?e(NaN):N(C(t)))+")";case"[object Map]":return"new Map("+e(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+e(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+e(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+e(t.valueOf())+")":N(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,w(t)).join(", ")+"}"}}const U=f((function(t){return _(t,[])}));const q=p((function(t,r){if(t===r)return r;function e(t,r){if(t>r!=r>t)return r>t?r:t}var n=e(t,r);if(void 0!==n)return n;var o=e(typeof t,typeof r);if(void 0!==o)return o===typeof t?t:r;var i=U(t),a=e(i,U(r));return void 0!==a&&a===i?t:r}));var Y=function(){function t(t,r){this.xf=r,this.f=t}return t.prototype["@@transducer/init"]=s,t.prototype["@@transducer/result"]=u,t.prototype["@@transducer/step"]=function(t,r){return this.xf["@@transducer/step"](t,this.f(r))},t}();const J=function(t){return function(r){return new Y(t,r)}};function G(t,r){switch(t){case 0:return function(){return r.apply(this,arguments)};case 1:return function(t){return r.apply(this,arguments)};case 2:return function(t,e){return r.apply(this,arguments)};case 3:return function(t,e,n){return r.apply(this,arguments)};case 4:return function(t,e,n,o){return r.apply(this,arguments)};case 5:return function(t,e,n,o,i){return r.apply(this,arguments)};case 6:return function(t,e,n,o,i,a){return r.apply(this,arguments)};case 7:return function(t,e,n,o,i,a,c){return r.apply(this,arguments)};case 8:return function(t,e,n,o,i,a,c,s){return r.apply(this,arguments)};case 9:return function(t,e,n,o,i,a,c,s,u){return r.apply(this,arguments)};case 10:return function(t,e,n,o,i,a,c,s,u,l){return r.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function $(t,r,e){return function(){for(var n=[],o=0,i=t,a=0;a<r.length||o<arguments.length;){var c;a<r.length&&(!l(r[a])||o>=arguments.length)?c=r[a]:(c=arguments[o],o+=1),n[a]=c,l(c)||(i-=1),a+=1}return i<=0?e.apply(this,n):G(i,$(t,n,e))}}const V=p((function(t,r){return 1===t?f(r):G(t,$(t,[],r))}));const z=p(c(["fantasy-land/map","map"],J,(function(t,r){switch(Object.prototype.toString.call(r)){case"[object Function]":return V(r.length,(function(){return t.call(this,r.apply(this,arguments))}));case"[object Object]":return F((function(e,n){return e[n]=t(r[n]),e}),{},w(r));default:return k(t,r)}}))),B=Number.isInteger||function(t){return t<<0===t};function H(t){return"[object String]"===Object.prototype.toString.call(t)}const K=p((function(t,r){var e=t<0?r.length+t:t;return H(r)?r.charAt(e):r[e]}));const W=p((function(t,r){if(null!=r)return B(t)?K(t,r):r[t]}));const Q=p((function(t,r){return z(W(t),r)}));function X(t){return function r(e,n,o){switch(arguments.length){case 0:return r;case 1:return l(e)?r:p((function(r,n){return t(e,r,n)}));case 2:return l(e)&&l(n)?r:l(e)?p((function(r,e){return t(r,n,e)})):l(n)?p((function(r,n){return t(e,r,n)})):f((function(r){return t(e,n,r)}));default:return l(e)&&l(n)&&l(o)?r:l(e)&&l(n)?p((function(r,e){return t(r,e,o)})):l(e)&&l(o)?p((function(r,e){return t(r,n,e)})):l(n)&&l(o)?p((function(r,n){return t(e,r,n)})):l(e)?f((function(r){return t(r,n,o)})):l(n)?f((function(r){return t(e,r,o)})):l(o)?f((function(r){return t(e,n,r)})):t(e,n,o)}}}const Z=f((function(t){return!!a(t)||!!t&&("object"==typeof t&&(!H(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var tt="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function rt(t,r,e){return function(n,o,i){if(Z(i))return t(n,o,i);if(null==i)return o;if("function"==typeof i["fantasy-land/reduce"])return r(n,o,i,"fantasy-land/reduce");if(null!=i[tt])return e(n,o,i[tt]());if("function"==typeof i.next)return e(n,o,i);if("function"==typeof i.reduce)return r(n,o,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function et(t,r,e){for(var n=0,o=e.length;n<o;){if((r=t["@@transducer/step"](r,e[n]))&&r["@@transducer/reduced"]){r=r["@@transducer/value"];break}n+=1}return t["@@transducer/result"](r)}const nt=p((function(t,r){return G(t.length,(function(){return t.apply(r,arguments)}))}));function ot(t,r,e){for(var n=e.next();!n.done;){if((r=t["@@transducer/step"](r,n.value))&&r["@@transducer/reduced"]){r=r["@@transducer/value"];break}n=e.next()}return t["@@transducer/result"](r)}function it(t,r,e,n){return t["@@transducer/result"](e[n](nt(t["@@transducer/step"],t),r))}const at=rt(et,it,ot);var ct=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,r){return this.f(t,r)},t}();function st(t){return new ct(t)}const ut=X((function(t,r,e){return at("function"==typeof t?st(t):t,r,e)}));const lt=f((function(t){return function(){return t}}));const ft=f((function(t){return V(ut(q,0,Q("length",t)),(function(){for(var r=0,e=t.length;r<e;){if(t[r].apply(this,arguments))return!0;r+=1}return!1}))}));function pt(t,r,e){for(var n=e.next();!n.done;)r=t(r,n.value),n=e.next();return r}function yt(t,r,e,n){return e[n](t,r)}const ht=rt(F,yt,pt);const gt=p((function(t,r){return"function"==typeof r["fantasy-land/ap"]?r["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(r):"function"==typeof t?function(e){return t(e)(r(e))}:ht((function(t,e){return function(t,r){var e;r=r||[];var n=(t=t||[]).length,o=r.length,i=[];for(e=0;e<n;)i[i.length]=t[e],e+=1;for(e=0;e<o;)i[i.length]=r[e],e+=1;return i}(t,z(e,r))}),[],t)}));function dt(t){var r=Object.prototype.toString.call(t);return"[object Function]"===r||"[object AsyncFunction]"===r||"[object GeneratorFunction]"===r||"[object AsyncGeneratorFunction]"===r}const vt=p((function(t,r){return t&&r}));const mt=p((function(t,r){var e=V(t,r);return V(t,(function(){return F(gt,z(e,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const bt=f((function(t){return mt(t.length,t)}));const St=p((function(t,r){return dt(t)?function(){return t.apply(this,arguments)&&r.apply(this,arguments)}:bt(vt)(t,r)}));function xt(t,r,e){if(e||(e=new Ot),function(t){var r=typeof t;return null==t||"object"!=r&&"function"!=r}(t))return t;var n,o=function(n){var o=e.get(t);if(o)return o;for(var i in e.set(t,n),t)Object.prototype.hasOwnProperty.call(t,i)&&(n[i]=r?xt(t[i],!0,e):t[i]);return n};switch(j(t)){case"Object":return o(Object.create(Object.getPrototypeOf(t)));case"Array":return o([]);case"Date":return new Date(t.valueOf());case"RegExp":return n=t,new RegExp(n.source,n.flags?n.flags:(n.global?"g":"")+(n.ignoreCase?"i":"")+(n.multiline?"m":"")+(n.sticky?"y":"")+(n.unicode?"u":"")+(n.dotAll?"s":""));case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"BigInt64Array":case"BigUint64Array":return t.slice();default:return t}}var Ot=function(){function t(){this.map={},this.length=0}return t.prototype.set=function(t,r){const e=this.hash(t);let n=this.map[e];n||(this.map[e]=n=[]),n.push([t,r]),this.length+=1},t.prototype.hash=function(t){let r=[];for(var e in t)r.push(Object.prototype.toString.call(t[e]));return r.join()},t.prototype.get=function(t){if(this.length<=180){for(const r in this.map){const e=this.map[r];for(let r=0;r<e.length;r+=1){const n=e[r];if(n[0]===t)return n[1]}}return}const r=this.hash(t),e=this.map[r];if(e)for(let r=0;r<e.length;r+=1){const n=e[r];if(n[0]===t)return n[1]}},t}();const wt=f((function(t){return null!=t&&"function"==typeof t.clone?t.clone():xt(t,!0)}));const jt=bt(f((function(t){return!t})));function At(t,r){return function(){return r.call(this,t.apply(this,arguments))}}function Et(t,r){return function(){var e=arguments.length;if(0===e)return r();var n=arguments[e-1];return a(n)||"function"!=typeof n[t]?r.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,e-1))}}const Tt=X(Et("slice",(function(t,r,e){return Array.prototype.slice.call(e,t,r)})));const Pt=f(Et("tail",Tt(1,1/0)));function kt(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return G(arguments[0].length,ut(At,arguments[0],Pt(arguments)))}const Nt=f((function(t){return H(t)?t.split("").reverse().join(""):Array.prototype.slice.call(t,0).reverse()}));function Mt(){if(0===arguments.length)throw new Error("compose requires at least one argument");return kt.apply(this,Nt(arguments))}const Ct=p((function(t,r){if(a(t)){if(a(r))return t.concat(r);throw new TypeError(U(r)+" is not an array")}if(H(t)){if(H(r))return t+r;throw new TypeError(U(r)+" is not a string")}if(null!=t&&dt(t["fantasy-land/concat"]))return t["fantasy-land/concat"](r);if(null!=t&&dt(t.concat))return t.concat(r);throw new TypeError(U(t)+' does not have a method named "concat" or "fantasy-land/concat"')}));const Ft=p((function(t,r){return V(ut(q,0,Q("length",r)),(function(){var e=arguments,n=this;return t.apply(n,k((function(t){return t.apply(n,e)}),r))}))}));const It=f((function(t){return V(t.length,t)}));var Dt=function(){function t(t,r){this.xf=r,this.f=t}return t.prototype["@@transducer/init"]=s,t.prototype["@@transducer/result"]=u,t.prototype["@@transducer/step"]=function(t,r){if(this.f){if(this.f(r))return t;this.f=null}return this.xf["@@transducer/step"](t,r)},t}();function Lt(t){return function(r){return new Dt(t,r)}}const Rt=p(c(["dropWhile"],Lt,(function(t,r){for(var e=0,n=r.length;e<n&&t(r[e]);)e+=1;return Tt(e,1/0,r)})));const _t=f((function(t){return V(t.length,(function(r,e){var n=Array.prototype.slice.call(arguments,0);return n[0]=e,n[1]=r,t.apply(this,n)}))}));const Ut=p((function(t,r){return t>r}));const qt=f((function(t){return null==t}));const Yt=p((function(t,r){return!qt(r)&&t in r}));const Jt=K(0);var Gt=function(t,r){switch(arguments.length){case 0:return Gt;case 1:return function r(e){return 0===arguments.length?r:d(t,e)};default:return d(t,r)}};const $t=Gt;function Vt(t){return t}const zt=f(Vt);const Bt=p(P);const Ht="function"==typeof Object.assign?Object.assign:function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var r=Object(t),e=1,n=arguments.length;e<n;){var o=arguments[e];if(null!=o)for(var i in o)g(i,o)&&(r[i]=o[i]);e+=1}return r};const Kt=p((function(t,r){return V(t+1,(function(){var e=arguments[t];if(null!=e&&dt(e[r]))return e[r].apply(e,Array.prototype.slice.call(arguments,0,t));throw new TypeError(U(e)+' does not have a method named "'+r+'"')}))}));const Wt=Kt(1,"join");const Qt=p((function(t,r){return t.map((function(t){for(var e,n=r,o=0;o<t.length;){if(null==n)return;e=t[o],n=B(e)?K(e,n):n[e],o+=1}return n}))}));const Xt=p((function(t,r){return Qt([t],r)[0]}));const Zt=p((function(t,r){return Ht({},t,r)}));const tr=p((function(t,r){for(var e={},n={},o=0,i=t.length;o<i;)n[t[o]]=1,o+=1;for(var a in r)n.hasOwnProperty(a)||(e[a]=r[a]);return e}));const rr=p((function(t,r){return null==r||r!=r?t:r}));const er=X((function(t,r,e){return rr(t,Xt(r,e))}));const nr=X((function(t,r,e){return t(Xt(r,e))}));const or=X((function(t,r,e){return e.replace(t,r)}));const ir=Kt(1,"split");const ar=V(4,(function(t,r,e,n){return at(t("function"==typeof r?st(r):r),e,n)}));var cr="\t\n\v\f\r                 \u2028\u2029\ufeff";const sr=f("function"==typeof String.prototype.trim&&!cr.trim()&&"​".trim()?function(t){return t.trim()}:function(t){var r=new RegExp("^["+cr+"]["+cr+"]*"),e=new RegExp("["+cr+"]["+cr+"]*$");return t.replace(r,"").replace(e,"")});const ur=r()(i,{statics:{type:"document"},methods:{get child(){return Jt(this.children)}}}),lr=(t,r)=>r?.type===t,fr=lr.bind(void 0,"literal"),pr=lr.bind(void 0,"position"),yr=lr.bind(void 0,"point"),hr=lr.bind(void 0,"parseResult"),gr=lr.bind(void 0,"document"),dr=lr.bind(void 0,"string"),vr=lr.bind(void 0,"false"),mr=lr.bind(void 0,"true"),br=lr.bind(void 0,"null"),Sr=lr.bind(void 0,"number"),xr=lr.bind(void 0,"array"),Or=lr.bind(void 0,"object"),wr=lr.bind(void 0,"stringContent"),jr=lr.bind(void 0,"escapeSequence"),Ar=lr.bind(void 0,"property"),Er=lr.bind(void 0,"key"),Tr=r()(i,{statics:{type:"object"},methods:{get properties(){return this.children.filter(Ar)}}}),Pr=r()(i,{statics:{type:"property"},methods:{get key(){return this.children.find(Er)},get value(){return this.children.find((t=>vr(t)||mr(t)||br(t)||Sr(t)||dr(t)||xr(t)||Or(t)))}}}),kr=r()(i,{statics:{type:"array"},methods:{get items(){return this.children.filter((t=>vr(t)||mr(t)||br(t)||Sr(t)||dr(t)||xr(t)||Or))}}}),Nr=r()(i,{statics:{type:"value"},props:{value:null},init({value:t=null}={}){this.value=t}}),Mr=r()(i,{statics:{type:"string"},methods:{get value(){return 1===this.children.length?this.children[0].value:this.children.filter((t=>wr(t)||jr(t))).reduce(((t,r)=>t+r.value),"")}}}),Cr=r()(Mr,{statics:{type:"key"}}),Fr=r()(Nr,{statics:{type:"stringContent"}}),Ir=r()(Nr,{statics:{type:"escapeSequence"}}),Dr=r()(Nr,{statics:{type:"number"}}),Lr=r()(Nr,{statics:{type:"true"}}),Rr=r()(Nr,{statics:{type:"false"}}),_r=r()(Nr,{statics:{type:"null"}}),Ur=r()(o,{statics:{type:"alias"},props:{content:null},init({content:t=null}={}){this.content=t}}),qr=r()(o,{props:{anchor:null,tag:null,style:null,styleGroup:null},init({anchor:t=null,tag:r=null,style:e=null,styleGroup:n=null}={}){this.anchor=t,this.tag=r,this.style=e,this.styleGroup=n}}),Yr=r()(qr,{}),Jr=r()(o,{statics:{type:"comment"},props:{content:null},init({content:t=null}={}){this.content=t}}),Gr=r()(o,{statics:{type:"directive"},props:{name:null,parameters:null},init({name:t=null,parameters:r={}}={}){this.name=t,this.parameters=Zt({version:null,handle:null,prefix:null},r)}}),$r=r()(o,{statics:{type:"document"}});let Vr=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}({}),zr=function(t){return t.Flow="Flow",t.Block="Block",t}({});const Br=r()({props:{styleGroup:null,style:null}}),Hr=lr.bind(void 0,"stream"),Kr=lr.bind(void 0,"document"),Wr=lr.bind(void 0,"mapping"),Qr=lr.bind(void 0,"sequence"),Xr=lr.bind(void 0,"keyValuePair"),Zr=lr.bind(void 0,"tag"),te=lr.bind(void 0,"scalar"),re=lr.bind(void 0,"alias"),ee=lr.bind(void 0,"directive"),ne=lr.bind(void 0,"comment"),oe=r()(o,Br,{statics:{type:"keyValuePair"},propertyDescriptors:{key:{get(){return this.children.filter((t=>te(t)||Wr(t)||Qr(t)))[0]},enumerable:!0},value:{get(){const{key:t,children:r}=this;return r.filter((r=>(r=>r!==t)(r)&&(t=>te(t)||Wr(t)||Qr(t)||re(t))(r)))[0]},enumerable:!0}}}),ie=r()(Yr,{statics:{type:"mapping"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter(Xr):[]},enumerable:!0}}}),ae=r()(qr,{statics:{type:"scalar"},props:{content:""},init({content:t}={}){this.content=t}}),ce=r()(Yr,{statics:{type:"sequence"},propertyDescriptors:{content:{get(){const{children:t}=this;return Array.isArray(t)?t.filter((t=>Qr(t)||Wr(t)||te(t)||re(t))):[]},enumerable:!0}}}),se=r()(o,{statics:{type:"stream"},propertyDescriptors:{content:{get(){return Array.isArray(this.children)?this.children.filter((t=>Kr(t)||ne(t))):[]},enumerable:!0}}});let ue=function(t){return t.Scalar="Scalar",t.Sequence="Sequence",t.Mapping="Mapping",t}({});const le=r()(o,{statics:{type:"tag"},props:{explicitName:"",kind:null},init({explicitName:t,kind:r}={}){this.explicitName=t,this.kind=r}}),fe=r()(o,{statics:{type:"anchor"},props:{name:null},init({name:t=null}={}){this.name=t}});const pe=T(null);var ye=jt(pe);function he(t){return he="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},he(t)}const ge=V(1,St(ye,(function(t){return"object"===he(t)})));const de=V(1,kt(j,$t("GeneratorFunction")));const ve=V(1,kt(j,$t("AsyncFunction")));const me=ft([kt(j,$t("Function")),de,ve]);var be=kt(j,$t("Object")),Se=nr(St(me,kt(U,T(U(Object)))),["constructor"]);const xe=V(1,(function(t){if(!ge(t)||!be(t))return!1;var r=Object.getPrototypeOf(t);return!!pe(r)||Se(r)}));var Oe=e(1427);const we=class extends Oe{constructor(t,r,e){if(super(t,r,e),this.name=this.constructor.name,"string"==typeof r&&(this.message=r),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(r).stack,xe(e)&&Yt("cause",e)&&!Yt("cause",this)){const{cause:t}=e;this.cause=t,t instanceof Error&&Yt("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}};class je extends Error{static[Symbol.hasInstance](t){return super[Symbol.hasInstance](t)||Function.prototype[Symbol.hasInstance].call(we,t)}constructor(t,r){if(super(t,r),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,xe(r)&&Yt("cause",r)&&!Yt("cause",this)){const{cause:t}=r;this.cause=t,t instanceof Error&&Yt("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}}const Ae=je;const Ee=class extends Ae{constructor(t,r){super(t,r),void 0!==r&&Object.assign(this,tr(["cause"],r))}};const Te=class extends Ee{};const Pe=class extends Te{constructor(t,r){super(t,r),void 0!==r&&(this.specificTagName=r.specificTagName,this.explicitTagName=r.explicitTagName,this.tagKind=r.tagKind,this.tagPosition=r.tagPosition,this.nodeCanonicalContent=r.nodeCanonicalContent)}};const ke=T("");const Ne=V(1,kt(j,$t("Number")));var Me=St(Ne,isFinite);var Ce=V(1,Me);const Fe=me(Number.isFinite)?V(1,nt(Number.isFinite,Number)):Ce;var Ie=St(Fe,Ft(T,[Math.floor,zt]));var De=V(1,Ie);const Le=me(Number.isInteger)?V(1,nt(Number.isInteger,Number)):De;const Re=jt(Fe);const _e=V(1,St(Ne,Ut(0)));const Ue=function(t,r){var e=Number(r);if(e!==r&&(e=0),_e(e))throw new RangeError("repeat count must be non-negative");if(Re(e))throw new RangeError("repeat count must be less than infinity");if(e=Math.floor(e),0===t.length||0===e)return"";if(t.length*e>=1<<28)throw new RangeError("repeat count must not overflow maximum string size");var n=t.length*e;e=Math.floor(Math.log(e)/Math.log(2));for(var o=t;e;)o+=t,e-=1;return o+=o.substring(0,n-o.length)};var qe=It(Ue),Ye=_t(Kt(1,"repeat"));const Je=me(String.prototype.repeat)?Ye:qe;var Ge=lt(void 0);const $e=T(Ge());var Ve=or(/[\s\uFEFF\xA0]+$/,""),ze=Kt(0,"trimEnd");const Be=me(String.prototype.trimEnd)?ze:Ve;var He=or(/^[\s\uFEFF\xA0]+/,""),Ke=Kt(0,"trimStart");const We=me(String.prototype.trimStart)?Ke:He;const Qe=_t(Bt);const Xe=It((function(t,r){return kt(ir(""),Rt(Qe(t)),Wt(""))(r)}));const Ze=_t(Ct);var tn=e(2770);const rn=/^(?<style>[|>])(?<chomping>[+-]?)(?<indentation>[0-9]*)\s/,en=t=>{const r=(t=>{const r=t.match(rn),e=er("",["groups","indentation"],r);return ke(e)?void 0:parseInt(e,10)})(t);if(Le(r))return Je(" ",r);const e=er("",[1],t.split("\n")),n=er(0,["groups","indentation","length"],e.match(/^(?<indentation>[ ]*)/));return Je(" ",n)},nn=t=>{const r=t.match(rn),e=er("",["groups","chomping"],r);return ke(e)?void 0:e},on=(t,r)=>$e(t)?`${Be(r)}\n`:"-"===t?Be(r):r,an=t=>t.replace(/\r\n/g,"\n"),cn=t=>t.replace(/(\n)?\n([^\n]+)/g,((t,r,e)=>r?t:` ${e.trimStart()}`)).replace(/[\n]{2}/g,"\n"),sn=It(((t,r)=>r.replace(new RegExp(`^${t}`),"").replace(new RegExp(`${t}$`),""))),un=kt(an,sr,cn,ir("\n"),z(We),Wt("\n")),ln=kt(an,sr,sn("'"),cn,ir("\n"),z(We),Wt("\n")),fn=kt(an,sr,sn('"'),(t=>t.replace(/\\\n\s*/g,"")),cn,tn.S6,ir("\n"),z(We),Wt("\n")),pn=r()({methods:{test:t=>t.tag.kind===ue.Scalar&&"string"==typeof t.content,canonicalFormat(t){let r=t.content;const e=t.clone();return t.style===Vr.Plain?r=un(t.content):t.style===Vr.SingleQuoted?r=ln(t.content):t.style===Vr.DoubleQuoted?r=fn(t.content):t.style===Vr.Literal?r=(t=>{const r=en(t),e=nn(t),n=an(t),o=Pt(n.split("\n")),i=Mt(z(Xe(r)),z(Ze("\n"))),a=ar(i,Ct,"",o);return on(e,a)})(t.content):t.style===Vr.Folded&&(r=(t=>{const r=en(t),e=nn(t),n=an(t),o=Pt(n.split("\n")),i=Mt(z(Xe(r)),z(Ze("\n"))),a=ar(i,Ct,"",o),c=cn(a);return on(e,c)})(t.content)),e.content=r,e},resolve:t=>t}}),yn=r()(pn,{props:{tag:""}}),hn=r()(yn,{statics:{uri:"tag:yaml.org,2002:map"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>t.tag.kind===ue.Mapping,resolve:t=>t}}),gn=r()(yn,{statics:{uri:"tag:yaml.org,2002:seq"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>t.tag.kind===ue.Sequence,resolve:t=>t}}),dn=r()(yn,{statics:{uri:"tag:yaml.org,2002:str"},init(t,{stamp:r}){this.tag=r.uri},methods:{resolve:t=>t}}),vn=r()({props:{tags:[],tagDirectives:[]},init(){this.tags=[],this.tagDirectives=[],this.registerTag(hn()),this.registerTag(gn()),this.registerTag(dn())},methods:{toSpecificTagName(t){let r=t.tag.explicitName;return"!"===t.tag.explicitName?t.tag.kind===ue.Scalar?r=dn.uri:t.tag.kind===ue.Sequence?r=gn.uri:t.tag.kind===ue.Mapping&&(r=hn.uri):t.tag.explicitName.startsWith("!<")?r=t.tag.explicitName.replace(/^!</,"").replace(/>$/,""):t.tag.explicitName.startsWith("!!")&&(r=`tag:yaml.org,2002:${t.tag.explicitName.replace(/^!!/,"")}`),r},registerTagDirective(t){this.tagDirectives.push({handle:t.parameters.handle,prefix:t.parameters.prefix})},registerTag(t,r=!1){return r?this.tags.unshift(t):this.tags.push(t),this},overrideTag(t){return this.tags=this.tags.filter((r=>r.tag===t.tag)),this.tags.push(t),this},resolve(t){const r=this.toSpecificTagName(t);if("?"===r)return t;let e=t;t.tag.kind===ue.Scalar&&(e=pn().canonicalFormat(t));const n=this.tags.find((t=>t?.tag===r));if(void 0===n)throw new Pe(`Tag "${r}" was not recognized.`,{specificTagName:r,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:wt(t.tag.position)});if(!n.test(e))throw new Pe(`Node couldn't be resolved against the tag "${r}"`,{specificTagName:r,explicitTagName:t.tag.explicitName,tagKind:t.tag.kind,tagPosition:wt(t.tag.position),nodeCanonicalContent:e.content});return n.resolve(e)}}}),mn=r()(yn,{statics:{uri:"tag:yaml.org,2002:bool"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^(true|false)$/.test(t.content),resolve(t){const r="true"===t.content,e=t.clone();return e.content=r,e}}}),bn=r()(yn,{statics:{uri:"tag:yaml.org,2002:float"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)(\.[0-9]*)?([eE][-+]?[0-9]+)?$/.test(t.content),resolve(t){const r=parseFloat(t.content),e=t.clone();return e.content=r,e}}}),Sn=r()(yn,{statics:{uri:"tag:yaml.org,2002:int"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^-?(0|[1-9][0-9]*)$/.test(t.content),resolve(t){const r=parseInt(t.content,10),e=t.clone();return e.content=r,e}}}),xn=r()(yn,{statics:{uri:"tag:yaml.org,2002:null"},init(t,{stamp:r}){this.tag=r.uri},methods:{test:t=>/^null$/.test(t.content),resolve(t){const r=t.clone();return r.content=null,r}}}),On=r()(vn,{init(){this.registerTag(mn(),!0),this.registerTag(bn(),!0),this.registerTag(Sn(),!0),this.registerTag(xn(),!0)},methods:{toSpecificTagName(t){let r=vn.compose.methods.toSpecificTagName.call(this,t);if("?"===r)if(t.tag.vkind===ue.Sequence)r=gn.uri;else if(t.tag.kind===ue.Mapping)r=hn.uri;else if(t.tag.kind===ue.Scalar){const e=this.tags.find((r=>r.test(t)));r=e?.tag||"?"}return r}}}),wn=r()(o,{statics:{type:"literal"},props:{value:null},init({value:t=null}={}){this.value=t}}),jn=r()({statics:{type:"point"},props:{type:"point",row:null,column:null,char:null},init({row:t=null,column:r=null,char:e=null}={}){this.row=t,this.column=r,this.char=e}}),An=r()({statics:{type:"position"},props:{type:"position",start:null,end:null},init({start:t=null,end:r=null}={}){this.start=t,this.end=r}}),En=r()(o,{statics:{type:"error"},props:{value:null,isUnexpected:!1},init({value:t=null,isUnexpected:r=!1}={}){this.value=t,this.isUnexpected=r}}),Tn=r()(o,{statics:{type:"parseResult"},methods:{get rootNode(){return Jt(this.children)}}}),Pn=(t,r,e)=>{const n=t[r];if(null!=n){if(!e&&"function"==typeof n)return n;const t=e?n.leave:n.enter;if("function"==typeof t)return t}else{const n=e?t.leave:t.enter;if(null!=n){if("function"==typeof n)return n;const t=n[r];if("function"==typeof t)return t}}return null},kn={},Nn=t=>t?.type,Mn=t=>"string"==typeof Nn(t),Cn=t=>Object.create(Object.getPrototypeOf(t),Object.getOwnPropertyDescriptors(t)),Fn=(t,{visitFnGetter:r=Pn,nodeTypeGetter:e=Nn}={})=>{const n=new Array(t.length).fill(null);return{enter(o,...i){for(let a=0;a<t.length;a+=1)if(null===n[a]){const c=r(t[a],e(o),!1);if("function"==typeof c){const r=c.call(t[a],o,...i);if(!1===r)n[a]=o;else if(r===kn)n[a]=kn;else if(void 0!==r)return r}}},leave(o,...i){for(let a=0;a<t.length;a+=1)if(null===n[a]){const c=r(t[a],e(o),!0);if("function"==typeof c){const r=c.call(t[a],o,...i);if(r===kn)n[a]=kn;else if(void 0!==r&&!1!==r)return r}}else n[a]===o&&(n[a]=null)}}},In=(t,r,{keyMap:e=null,state:n={},breakSymbol:o=kn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:a=!1,visitFnGetter:c=Pn,nodeTypeGetter:s=Nn,nodePredicate:u=Mn,nodeCloneFn:l=Cn,detectCycles:f=!0}={})=>{const p=e||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const S=[],x=[];do{v+=1;const t=v===d.length;let e;const O=t&&0!==m.length;if(t){if(e=0===x.length?void 0:S.pop(),b=h,h=x.pop(),O)if(g){b=b.slice();let t=0;for(const[r,e]of m){const n=r-t;e===i?(b.splice(n,1),t+=1):b[n]=e}}else{b=l(b);for(const[t,r]of m)b[t]=r}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(e=g?v:d[v],b=h[e],b===i||void 0===b)continue;S.push(e)}if(x.includes(b))continue;let w;if(!Array.isArray(b)){if(!u(b))throw new Ae(`Invalid AST Node: ${JSON.stringify(b)}`);if(f&&x.includes(b)){S.pop();continue}const i=c(r,s(b),t);if(i){for(const[t,e]of Object.entries(n))r[t]=e;w=i.call(r,b,e,h,S,x)}if(w===o)break;if(w===a){if(!t){S.pop();continue}}else if(void 0!==w&&(m.push([e,w]),!t)){if(!u(w)){S.pop();continue}b=w}}void 0===w&&O&&m.push([e,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[s(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&x.push(h),h=b)}while(void 0!==y);return 0!==m.length?m.at(-1)[1]:t};In[Symbol.for("nodejs.util.promisify.custom")]=async(t,r,{keyMap:e=null,state:n={},breakSymbol:o=kn,deleteNodeSymbol:i=null,skipVisitingNodeSymbol:a=!1,visitFnGetter:c=Pn,nodeTypeGetter:s=Nn,nodePredicate:u=Mn,nodeCloneFn:l=Cn,detectCycles:f=!0}={})=>{const p=e||{};let y,h,g=Array.isArray(t),d=[t],v=-1,m=[],b=t;const S=[],x=[];do{v+=1;const t=v===d.length;let e;const O=t&&0!==m.length;if(t){if(e=0===x.length?void 0:S.pop(),b=h,h=x.pop(),O)if(g){b=b.slice();let t=0;for(const[r,e]of m){const n=r-t;e===i?(b.splice(n,1),t+=1):b[n]=e}}else{b=l(b);for(const[t,r]of m)b[t]=r}v=y.index,d=y.keys,m=y.edits,g=y.inArray,y=y.prev}else if(h!==i&&void 0!==h){if(e=g?v:d[v],b=h[e],b===i||void 0===b)continue;S.push(e)}let w;if(!Array.isArray(b)){if(!u(b))throw new Ae(`Invalid AST Node: ${JSON.stringify(b)}`);if(f&&x.includes(b)){S.pop();continue}const i=c(r,s(b),t);if(i){for(const[t,e]of Object.entries(n))r[t]=e;w=await i.call(r,b,e,h,S,x)}if(w===o)break;if(w===a){if(!t){S.pop();continue}}else if(void 0!==w&&(m.push([e,w]),!t)){if(!u(w)){S.pop();continue}b=w}}void 0===w&&O&&m.push([e,b]),t||(y={inArray:g,index:v,keys:d,edits:m,prev:y},g=Array.isArray(b),d=g?b:p[s(b)]??[],v=-1,m=[],h!==i&&void 0!==h&&x.push(h),h=b)}while(void 0!==y);return 0!==m.length?m.at(-1)[1]:t}})(),n})()));
@@ -1,5 +1,5 @@
1
1
  import stampit from 'stampit';
2
- import Node from "./Node.js";
2
+ import Node from "./Node.mjs";
3
3
  const Error = stampit(Node, {
4
4
  statics: {
5
5
  type: 'error'
@@ -1,5 +1,5 @@
1
1
  import stampit from 'stampit';
2
- import Node from "./Node.js";
2
+ import Node from "./Node.mjs";
3
3
  const Literal = stampit(Node, {
4
4
  statics: {
5
5
  type: 'literal'
@@ -1,6 +1,6 @@
1
1
  import stampit from 'stampit';
2
2
  import { head } from 'ramda';
3
- import Node from "./Node.js";
3
+ import Node from "./Node.mjs";
4
4
  const ParseResult = stampit(Node, {
5
5
  statics: {
6
6
  type: 'parseResult'
@@ -1,42 +1,42 @@
1
1
  // JSON AST related exports
2
- export { default as JsonNode } from "./json/nodes/JsonNode.js";
3
- export { default as JsonDocument } from "./json/nodes/JsonDocument.js";
4
- export { default as JsonObject } from "./json/nodes/JsonObject.js";
5
- export { default as JsonProperty } from "./json/nodes/JsonProperty.js";
6
- export { default as JsonArray } from "./json/nodes/JsonArray.js";
7
- export { default as JsonValue } from "./json/nodes/JsonValue.js";
8
- export { default as JsonKey } from "./json/nodes/JsonKey.js";
9
- export { default as JsonString } from "./json/nodes/JsonString.js";
10
- export { default as JsonStringContent } from "./json/nodes/JsonStringContent.js";
11
- export { default as JsonEscapeSequence } from "./json/nodes/JsonEscapeSequence.js";
12
- export { default as JsonNumber } from "./json/nodes/JsonNumber.js";
13
- export { default as JsonTrue } from "./json/nodes/JsonTrue.js";
14
- export { default as JsonFalse } from "./json/nodes/JsonFalse.js";
15
- export { default as JsonNull } from "./json/nodes/JsonNull.js";
16
- export { isDocument as isJsonDocument, isFalse as isJsonFalse, isProperty as isJsonProperty, isStringContent as isJsonStringContent, isEscapeSequence as isJsonEscapeSequence, isArray as isJsonArray, isKey as isJsonKey, isNull as isJsonNull, isNumber as isJsonNumber, isObject as isJsonObject, isString as isJsonString, isTrue as isJsonTrue } from "./json/nodes/predicates.js"; // YAML AST related exports
17
- export { default as YamlAlias } from "./yaml/nodes/YamlAlias.js";
18
- export { default as YamlCollection } from "./yaml/nodes/YamlCollection.js";
19
- export { default as YamlComment } from "./yaml/nodes/YamlComment.js";
20
- export { default as YamlDirective } from "./yaml/nodes/YamlDirective.js";
21
- export { default as YamlDocument } from "./yaml/nodes/YamlDocument.js";
22
- export { default as YamlKeyValuePair } from "./yaml/nodes/YamlKeyValuePair.js";
23
- export { default as YamlMapping } from "./yaml/nodes/YamlMapping.js";
24
- export { default as YamlNode } from "./yaml/nodes/YamlNode.js";
25
- export { default as YamlScalar } from "./yaml/nodes/YamlScalar.js";
26
- export { default as YamlSequence } from "./yaml/nodes/YamlSequence.js";
27
- export { default as YamlStream } from "./yaml/nodes/YamlStream.js";
28
- export { default as YamlTag, YamlNodeKind } from "./yaml/nodes/YamlTag.js";
29
- export { default as YamlAnchor } from "./yaml/nodes/YamlAnchor.js";
30
- export { YamlStyle, YamlStyleGroup } from "./yaml/nodes/YamlStyle.js";
31
- export { default as YamlFailsafeSchema } from "./yaml/schemas/failsafe/index.js";
32
- export { default as YamlJsonSchema } from "./yaml/schemas/json/index.js";
33
- export { isAlias as isYamlAlias, isKeyValuePair as isYamlKeyValuePair, isDirective as isYamlDirective, isDocument as isYamlDocument, isMapping as isYamlMapping, isScalar as isYamlScalar, isSequence as isYamlSequence, isStream as isYamlStream, isTag as isYamlTag } from "./yaml/nodes/predicates.js";
34
- export { default as YamlSchemaError } from "./yaml/errors/YamlSchemaError.js";
35
- export { default as YamlTagError } from "./yaml/errors/YamlTagError.js";
2
+ export { default as JsonNode } from "./json/nodes/JsonNode.mjs";
3
+ export { default as JsonDocument } from "./json/nodes/JsonDocument.mjs";
4
+ export { default as JsonObject } from "./json/nodes/JsonObject.mjs";
5
+ export { default as JsonProperty } from "./json/nodes/JsonProperty.mjs";
6
+ export { default as JsonArray } from "./json/nodes/JsonArray.mjs";
7
+ export { default as JsonValue } from "./json/nodes/JsonValue.mjs";
8
+ export { default as JsonKey } from "./json/nodes/JsonKey.mjs";
9
+ export { default as JsonString } from "./json/nodes/JsonString.mjs";
10
+ export { default as JsonStringContent } from "./json/nodes/JsonStringContent.mjs";
11
+ export { default as JsonEscapeSequence } from "./json/nodes/JsonEscapeSequence.mjs";
12
+ export { default as JsonNumber } from "./json/nodes/JsonNumber.mjs";
13
+ export { default as JsonTrue } from "./json/nodes/JsonTrue.mjs";
14
+ export { default as JsonFalse } from "./json/nodes/JsonFalse.mjs";
15
+ export { default as JsonNull } from "./json/nodes/JsonNull.mjs";
16
+ export { isDocument as isJsonDocument, isFalse as isJsonFalse, isProperty as isJsonProperty, isStringContent as isJsonStringContent, isEscapeSequence as isJsonEscapeSequence, isArray as isJsonArray, isKey as isJsonKey, isNull as isJsonNull, isNumber as isJsonNumber, isObject as isJsonObject, isString as isJsonString, isTrue as isJsonTrue } from "./json/nodes/predicates.mjs"; // YAML AST related exports
17
+ export { default as YamlAlias } from "./yaml/nodes/YamlAlias.mjs";
18
+ export { default as YamlCollection } from "./yaml/nodes/YamlCollection.mjs";
19
+ export { default as YamlComment } from "./yaml/nodes/YamlComment.mjs";
20
+ export { default as YamlDirective } from "./yaml/nodes/YamlDirective.mjs";
21
+ export { default as YamlDocument } from "./yaml/nodes/YamlDocument.mjs";
22
+ export { default as YamlKeyValuePair } from "./yaml/nodes/YamlKeyValuePair.mjs";
23
+ export { default as YamlMapping } from "./yaml/nodes/YamlMapping.mjs";
24
+ export { default as YamlNode } from "./yaml/nodes/YamlNode.mjs";
25
+ export { default as YamlScalar } from "./yaml/nodes/YamlScalar.mjs";
26
+ export { default as YamlSequence } from "./yaml/nodes/YamlSequence.mjs";
27
+ export { default as YamlStream } from "./yaml/nodes/YamlStream.mjs";
28
+ export { default as YamlTag, YamlNodeKind } from "./yaml/nodes/YamlTag.mjs";
29
+ export { default as YamlAnchor } from "./yaml/nodes/YamlAnchor.mjs";
30
+ export { YamlStyle, YamlStyleGroup } from "./yaml/nodes/YamlStyle.mjs";
31
+ export { default as YamlFailsafeSchema } from "./yaml/schemas/failsafe/index.mjs";
32
+ export { default as YamlJsonSchema } from "./yaml/schemas/json/index.mjs";
33
+ export { isAlias as isYamlAlias, isKeyValuePair as isYamlKeyValuePair, isDirective as isYamlDirective, isDocument as isYamlDocument, isMapping as isYamlMapping, isScalar as isYamlScalar, isSequence as isYamlSequence, isStream as isYamlStream, isTag as isYamlTag } from "./yaml/nodes/predicates.mjs";
34
+ export { default as YamlSchemaError } from "./yaml/errors/YamlSchemaError.mjs";
35
+ export { default as YamlTagError } from "./yaml/errors/YamlTagError.mjs";
36
36
  // generic AST related exports
37
- export { default as Literal } from "./Literal.js";
38
- export { Point, default as Position } from "./Position.js";
39
- export { default as Error } from "./Error.js";
40
- export { default as ParseResult } from "./ParseResult.js";
41
- export { isParseResult, isLiteral, isPoint, isPosition } from "./predicates.js"; // AST traversal related exports
42
- export { getVisitFn, BREAK, mergeAll as mergeAllVisitors, visit, getNodeType, isNode } from "./traversal/visitor.js";
37
+ export { default as Literal } from "./Literal.mjs";
38
+ export { Point, default as Position } from "./Position.mjs";
39
+ export { default as Error } from "./Error.mjs";
40
+ export { default as ParseResult } from "./ParseResult.mjs";
41
+ export { isParseResult, isLiteral, isPoint, isPosition } from "./predicates.mjs"; // AST traversal related exports
42
+ export { getVisitFn, BREAK, mergeAll as mergeAllVisitors, visit, getNodeType, isNode, cloneNode } from "./traversal/visitor.mjs";
@@ -1,6 +1,6 @@
1
1
  import stampit from 'stampit';
2
- import JsonNode from "./JsonNode.js";
3
- import { isFalse, isTrue, isNull, isNumber, isString, isArray, isObject } from "./predicates.js";
2
+ import JsonNode from "./JsonNode.mjs";
3
+ import { isFalse, isTrue, isNull, isNumber, isString, isArray, isObject } from "./predicates.mjs";
4
4
  const JsonArray = stampit(JsonNode, {
5
5
  statics: {
6
6
  type: 'array'
@@ -1,6 +1,6 @@
1
1
  import stampit from 'stampit';
2
2
  import { head } from 'ramda';
3
- import JsonNode from "./JsonNode.js";
3
+ import JsonNode from "./JsonNode.mjs";
4
4
  const JsonDocument = stampit(JsonNode, {
5
5
  statics: {
6
6
  type: 'document'
@@ -1,5 +1,5 @@
1
1
  import stampit from 'stampit';
2
- import JsonValue from "./JsonValue.js";
2
+ import JsonValue from "./JsonValue.mjs";
3
3
  const JsonEscapeSequence = stampit(JsonValue, {
4
4
  statics: {
5
5
  type: 'escapeSequence'
@@ -1,5 +1,5 @@
1
1
  import stampit from 'stampit';
2
- import JsonValue from "./JsonValue.js";
2
+ import JsonValue from "./JsonValue.mjs";
3
3
  const JsonFalse = stampit(JsonValue, {
4
4
  statics: {
5
5
  type: 'false'
@@ -1,5 +1,5 @@
1
1
  import stampit from 'stampit';
2
- import JsonString from "./JsonString.js";
2
+ import JsonString from "./JsonString.mjs";
3
3
  const JsonKey = stampit(JsonString, {
4
4
  statics: {
5
5
  type: 'key'
@@ -1,4 +1,4 @@
1
1
  import stampit from 'stampit';
2
- import Node from "../../Node.js";
2
+ import Node from "../../Node.mjs";
3
3
  const JsonNode = stampit(Node);
4
4
  export default JsonNode;
@@ -1,5 +1,5 @@
1
1
  import stampit from 'stampit';
2
- import JsonValue from "./JsonValue.js";
2
+ import JsonValue from "./JsonValue.mjs";
3
3
  const JsonNull = stampit(JsonValue, {
4
4
  statics: {
5
5
  type: 'null'
@@ -1,5 +1,5 @@
1
1
  import stampit from 'stampit';
2
- import JsonValue from "./JsonValue.js";
2
+ import JsonValue from "./JsonValue.mjs";
3
3
  const JsonNumber = stampit(JsonValue, {
4
4
  statics: {
5
5
  type: 'number'
@@ -1,6 +1,6 @@
1
1
  import stampit from 'stampit';
2
- import JsonNode from "./JsonNode.js";
3
- import { isProperty } from "./predicates.js";
2
+ import JsonNode from "./JsonNode.mjs";
3
+ import { isProperty } from "./predicates.mjs";
4
4
  const JsonObject = stampit(JsonNode, {
5
5
  statics: {
6
6
  type: 'object'
@@ -1,6 +1,6 @@
1
1
  import stampit from 'stampit';
2
- import JsonNode from "./JsonNode.js";
3
- import { isArray, isFalse, isKey, isNull, isNumber, isObject, isString, isTrue } from "./predicates.js";
2
+ import JsonNode from "./JsonNode.mjs";
3
+ import { isArray, isFalse, isKey, isNull, isNumber, isObject, isString, isTrue } from "./predicates.mjs";
4
4
  const JsonProperty = stampit(JsonNode, {
5
5
  statics: {
6
6
  type: 'property'