@speclynx/apidom-ns-arazzo-1 2.10.3 → 2.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.11.0](https://github.com/speclynx/apidom/compare/v2.10.3...v2.11.0) (2026-02-12)
7
+
8
+ **Note:** Version bump only for package @speclynx/apidom-ns-arazzo-1
9
+
6
10
  ## [2.10.3](https://github.com/speclynx/apidom/compare/v2.10.2...v2.10.3) (2026-02-10)
7
11
 
8
12
  ### Bug Fixes
@@ -22121,7 +22121,13 @@ class Element {
22121
22121
 
22122
22122
  /** Unique identifier for this element. */
22123
22123
  get id() {
22124
- return this.getMetaProperty('id', '');
22124
+ if (this.isFrozen) {
22125
+ return this.getMetaProperty('id', '');
22126
+ }
22127
+ if (!this.hasMetaProperty('id')) {
22128
+ this.setMetaProperty('id', '');
22129
+ }
22130
+ return this.meta.get('id');
22125
22131
  }
22126
22132
  set id(value) {
22127
22133
  this.setMetaProperty('id', value);
@@ -22129,7 +22135,13 @@ class Element {
22129
22135
 
22130
22136
  /** CSS-like class names. */
22131
22137
  get classes() {
22132
- return this.getMetaProperty('classes', []);
22138
+ if (this.isFrozen) {
22139
+ return this.getMetaProperty('classes', []);
22140
+ }
22141
+ if (!this.hasMetaProperty('classes')) {
22142
+ this.setMetaProperty('classes', []);
22143
+ }
22144
+ return this.meta.get('classes');
22133
22145
  }
22134
22146
  set classes(value) {
22135
22147
  this.setMetaProperty('classes', value);
@@ -22137,7 +22149,13 @@ class Element {
22137
22149
 
22138
22150
  /** Hyperlinks associated with this element. */
22139
22151
  get links() {
22140
- return this.getMetaProperty('links', []);
22152
+ if (this.isFrozen) {
22153
+ return this.getMetaProperty('links', []);
22154
+ }
22155
+ if (!this.hasMetaProperty('links')) {
22156
+ this.setMetaProperty('links', []);
22157
+ }
22158
+ return this.meta.get('links');
22141
22159
  }
22142
22160
  set links(value) {
22143
22161
  this.setMetaProperty('links', value);
@@ -22288,16 +22306,26 @@ class Element {
22288
22306
  }
22289
22307
 
22290
22308
  /**
22291
- * Gets a meta property, creating it with default value if not present.
22309
+ * Gets a meta property.
22310
+ *
22311
+ * When the property doesn't exist:
22312
+ * - With defaultValue: returns a new refracted element instance (not cached)
22313
+ * - Without defaultValue: returns undefined
22314
+ *
22315
+ * Note: Each call with a default creates a new instance. Use setMetaProperty
22316
+ * first if you need reference equality across multiple accesses.
22292
22317
  */
22318
+
22293
22319
  getMetaProperty(name, defaultValue) {
22294
- if (!this.meta.hasKey(name)) {
22295
- if (this.isFrozen) {
22296
- const element = this.refract(defaultValue);
22320
+ if (!this.hasMetaProperty(name)) {
22321
+ if (defaultValue === undefined) {
22322
+ return undefined;
22323
+ }
22324
+ const element = this.refract(defaultValue);
22325
+ if (element && this.isFrozen) {
22297
22326
  element.freeze();
22298
- return element;
22299
22327
  }
22300
- this.meta.set(name, defaultValue);
22328
+ return element;
22301
22329
  }
22302
22330
  return this.meta.get(name);
22303
22331
  }
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.apidomNsArazzo1=t():e.apidomNsArazzo1=t()}(self,()=>(()=>{"use strict";var e={d:(t,s)=>{for(var n in s)e.o(s,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:s[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{ArazzoElement:()=>J,ArazzoMediaTypes:()=>f,ArazzoSpecification1Element:()=>V,BaseFixedFieldsFallbackVisitor:()=>dc,BaseMapFallbackVisitor:()=>mc,BaseSpecificationFallbackVisitor:()=>hc,ComponentsElement:()=>U,ComponentsFailureActionsElement:()=>Rc,ComponentsInputsElement:()=>Lc,ComponentsParametersElement:()=>qc,ComponentsSuccessActionsElement:()=>zc,CriterionElement:()=>G,CriterionExpressionTypeElement:()=>W,FailureActionCriteriaElement:()=>Vc,FailureActionElement:()=>X,FallbackVisitor:()=>tc,FixedFieldsVisitor:()=>lc,InfoElement:()=>K,JSONSchemaElement:()=>fo,MapVisitor:()=>pc,ParameterElement:()=>yo,PatternedFieldsVisitor:()=>uc,PayloadReplacementElement:()=>go,RequestBodyElement:()=>xo,RequestBodyReplacementsElement:()=>Gc,ReusableElement:()=>bo,SourceDescriptionElement:()=>vo,SourceDescriptionsElement:()=>xc,SpecificationExtensionVisitor:()=>Fl,SpecificationVisitor:()=>sc,StepDependsOnElement:()=>Xc,StepElement:()=>So,StepOnFailureElement:()=>Yc,StepOnSuccessElement:()=>Zc,StepOutputsElement:()=>ta,StepParametersElement:()=>na,StepSuccessCriteriaElement:()=>ia,SuccessActionCriteriaElement:()=>ca,SuccessActionElement:()=>wo,Visitor:()=>ec,WorkflowDependsOnElement:()=>Ic,WorkflowElement:()=>Eo,WorkflowFailureActionsElement:()=>la,WorkflowOutputsElement:()=>pa,WorkflowParametersElement:()=>da,WorkflowStepsElement:()=>Mc,WorkflowSuccessActionsElement:()=>$c,WorkflowsElement:()=>Sc,default:()=>Oo,isArazzoElement:()=>ya,isArazzoSpecification1Element:()=>ga,isArazzoSpecificationExtension:()=>cc,isBooleanJSONSchemaElement:()=>fa,isComponentsElement:()=>xa,isComponentsFailureActionsElement:()=>Ca,isComponentsInputsElement:()=>Ma,isComponentsParametersElement:()=>Ta,isComponentsSuccessActionsElement:()=>Na,isCriterionElement:()=>ba,isCriterionExpressionTypeElement:()=>va,isFailureActionCriteriaElement:()=>$a,isFailureActionElement:()=>Sa,isInfoElement:()=>wa,isJSONSchemaElement:()=>ma,isParameterElement:()=>Ea,isPayloadReplacementElement:()=>Oa,isRequestBodyElement:()=>ka,isRequestBodyReplacementsElement:()=>Da,isReusableElement:()=>Aa,isSourceDescriptionElement:()=>ja,isSourceDescriptionsElement:()=>Ra,isStepDependsOnElement:()=>Ba,isStepElement:()=>Fa,isStepOnFailureElement:()=>La,isStepOnSuccessElement:()=>Ja,isStepOutputsElement:()=>qa,isStepParametersElement:()=>_a,isStepSuccessCriteriaElement:()=>za,isSuccessActionCriteriaElement:()=>Ha,isSuccessActionElement:()=>Ia,isWorkflowDependsOnElement:()=>Va,isWorkflowElement:()=>Pa,isWorkflowFailureActionsElement:()=>Ua,isWorkflowOutputsElement:()=>Ga,isWorkflowParametersElement:()=>Wa,isWorkflowStepsElement:()=>Ka,isWorkflowSuccessActionsElement:()=>Ya,isWorkflowsElement:()=>Xa,mediaTypes:()=>y,refract:()=>Xl,refractArazzo:()=>Tl,refractArazzoSpecification1:()=>Nl,refractComponents:()=>$l,refractCriterion:()=>Dl,refractCriterionExpressionType:()=>Rl,refractFailureAction:()=>Bl,refractInfo:()=>Ll,refractJSONSchema:()=>Jl,refractParameter:()=>ql,refractPayloadReplacement:()=>_l,refractRequestBody:()=>zl,refractReusable:()=>Hl,refractSourceDescription:()=>Vl,refractStep:()=>Ul,refractSuccessAction:()=>Gl,refractWorkflow:()=>Wl,refractorPluginReplaceEmptyElement:()=>jo,specificationObj:()=>Pl});var s={};e.r(s),e.d(s,{isArazzoSpecificationExtension:()=>cc,isReusableLikeElement:()=>ac});var n={};function r(e){return null!=e&&"object"==typeof e&&!0===e["@@functional/placeholder"]}function i(e){return function t(s){return 0===arguments.length||r(s)?t:e.apply(this,arguments)}}function o(e,t){return t[e<0?t.length+e:e]}e.r(n),e.d(n,{isArazzoElement:()=>ya,isArazzoSpecification1Element:()=>ga,isBooleanJSONSchemaElement:()=>fa,isComponentsElement:()=>xa,isComponentsFailureActionsElement:()=>Ca,isComponentsInputsElement:()=>Ma,isComponentsParametersElement:()=>Ta,isComponentsSuccessActionsElement:()=>Na,isCriterionElement:()=>ba,isCriterionExpressionTypeElement:()=>va,isFailureActionCriteriaElement:()=>$a,isFailureActionElement:()=>Sa,isInfoElement:()=>wa,isJSONSchemaElement:()=>ma,isParameterElement:()=>Ea,isPayloadReplacementElement:()=>Oa,isRequestBodyElement:()=>ka,isRequestBodyReplacementsElement:()=>Da,isReusableElement:()=>Aa,isSourceDescriptionElement:()=>ja,isSourceDescriptionsElement:()=>Ra,isStepDependsOnElement:()=>Ba,isStepElement:()=>Fa,isStepOnFailureElement:()=>La,isStepOnSuccessElement:()=>Ja,isStepOutputsElement:()=>qa,isStepParametersElement:()=>_a,isStepSuccessCriteriaElement:()=>za,isSuccessActionCriteriaElement:()=>Ha,isSuccessActionElement:()=>Ia,isWorkflowDependsOnElement:()=>Va,isWorkflowElement:()=>Pa,isWorkflowFailureActionsElement:()=>Ua,isWorkflowOutputsElement:()=>Ga,isWorkflowParametersElement:()=>Wa,isWorkflowStepsElement:()=>Ka,isWorkflowSuccessActionsElement:()=>Ya,isWorkflowsElement:()=>Xa});const c=i(function(e){return o(-1,e)});class a extends AggregateError{constructor(e,t,s){super(e,t,s),this.name=this.constructor.name,"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}}const l=a;class u extends Error{static[Symbol.hasInstance](e){return super[Symbol.hasInstance](e)||Function.prototype[Symbol.hasInstance].call(l,e)}constructor(e,t){super(e,t),this.name=this.constructor.name,"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}}const p=u;const h=class extends p{};const d=class extends h{};const m=class extends Array{unknownMediaType="application/octet-stream";filterByFormat(){throw new d("filterByFormat method in MediaTypes class is not yet implemented.")}findBy(){throw new d("findBy method in MediaTypes class is not yet implemented.")}latest(){throw new d("latest method in MediaTypes class is not yet implemented.")}};class f extends m{filterByFormat(e="generic"){const t="generic"===e?"workflows;version":e;return this.filter(e=>e.includes(t))}findBy(e="1.0.1",t="generic"){const s="generic"===t?`vnd.oai.workflows;version=${e}`:`vnd.oai.workflows+${t};version=${e}`;return this.find(e=>e.includes(s))||this.unknownMediaType}latest(e="generic"){return c(this.filterByFormat(e))}}const y=new f("application/vnd.oai.workflows;version=1.0.0","application/vnd.oai.workflows+json;version=1.0.0","application/vnd.oai.workflows+yaml;version=1.0.0","application/vnd.oai.workflows;version=1.0.1","application/vnd.oai.workflows+json;version=1.0.1","application/vnd.oai.workflows+yaml;version=1.0.1");function g(e){return function t(s,n){switch(arguments.length){case 0:return t;case 1:return r(s)?t:i(function(t){return e(s,t)});default:return r(s)&&r(n)?t:r(s)?i(function(t){return e(t,n)}):r(n)?i(function(t){return e(s,t)}):e(s,n)}}}function x(e){for(var t,s=[];!(t=e.next()).done;)s.push(t.value);return s}function b(e,t,s){for(var n=0,r=s.length;n<r;){if(e(t,s[n]))return!0;n+=1}return!1}function v(e,t){return Object.prototype.hasOwnProperty.call(t,e)}const S="function"==typeof Object.is?Object.is:function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t};var w=Object.prototype.toString;const E=function(){return"[object Arguments]"===w.call(arguments)?function(e){return"[object Arguments]"===w.call(e)}:function(e){return v("callee",e)}}();var O=!{toString:null}.propertyIsEnumerable("toString"),k=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],A=function(){return arguments.propertyIsEnumerable("length")}(),j=function(e,t){for(var s=0;s<e.length;){if(e[s]===t)return!0;s+=1}return!1},F="function"!=typeof Object.keys||A?i(function(e){if(Object(e)!==e)return[];var t,s,n=[],r=A&&E(e);for(t in e)!v(t,e)||r&&"length"===t||(n[n.length]=t);if(O)for(s=k.length-1;s>=0;)v(t=k[s],e)&&!j(n,t)&&(n[n.length]=t),s-=1;return n}):i(function(e){return Object(e)!==e?[]:Object.keys(e)});const I=F;const P=i(function(e){return null===e?"Null":void 0===e?"Undefined":Object.prototype.toString.call(e).slice(8,-1)});function C(e,t,s,n){var r=x(e);function i(e,t){return M(e,t,s.slice(),n.slice())}return!b(function(e,t){return!b(i,t,e)},x(t),r)}function M(e,t,s,n){if(S(e,t))return!0;var r=P(e);if(r!==P(t))return!1;if("function"==typeof e["fantasy-land/equals"]||"function"==typeof t["fantasy-land/equals"])return"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t)&&"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e);if("function"==typeof e.equals||"function"==typeof t.equals)return"function"==typeof e.equals&&e.equals(t)&&"function"==typeof t.equals&&t.equals(e);switch(r){case"Arguments":case"Array":case"Object":if("function"==typeof e.constructor&&"Promise"===function(e){var t=String(e).match(/^function (\w*)/);return null==t?"":t[1]}(e.constructor))return e===t;break;case"Boolean":case"Number":case"String":if(typeof e!=typeof t||!S(e.valueOf(),t.valueOf()))return!1;break;case"Date":if(!S(e.valueOf(),t.valueOf()))return!1;break;case"Error":return e.name===t.name&&e.message===t.message;case"RegExp":if(e.source!==t.source||e.global!==t.global||e.ignoreCase!==t.ignoreCase||e.multiline!==t.multiline||e.sticky!==t.sticky||e.unicode!==t.unicode)return!1}for(var i=s.length-1;i>=0;){if(s[i]===e)return n[i]===t;i-=1}switch(r){case"Map":return e.size===t.size&&C(e.entries(),t.entries(),s.concat([e]),n.concat([t]));case"Set":return e.size===t.size&&C(e.values(),t.values(),s.concat([e]),n.concat([t]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var o=I(e);if(o.length!==I(t).length)return!1;var c=s.concat([e]),a=n.concat([t]);for(i=o.length-1;i>=0;){var l=o[i];if(!v(l,t)||!M(t[l],e[l],c,a))return!1;i-=1}return!0}const T=g(function(e,t){return M(e,t,[],[])});const N=class{key;value;constructor(e,t){this.key=e,this.value=t}toValue(){return{key:this.key?.toValue(),value:this.value?.toValue()}}};class ${elements;constructor(e){this.elements=e??[]}toValue(){return this.elements.map(e=>({key:e.key?.toValue(),value:e.value?.toValue()}))}map(e,t){return this.elements.map(s=>{const n=s.value,r=s.key;if(void 0===n||void 0===r)throw new Error("MemberElement must have both key and value");return void 0!==t?e.call(t,n,r,s):e(n,r,s)})}filter(e,t){const s=this.elements.filter(s=>{const n=s.value,r=s.key;return void 0!==n&&void 0!==r&&(void 0!==t?e.call(t,n,r,s):e(n,r,s))});return new $(s)}reject(e,t){const s=[];for(const n of this.elements){const r=n.value,i=n.key;void 0!==r&&void 0!==i&&(e.call(t,r,i,n)||s.push(n))}return new $(s)}forEach(e,t){this.elements.forEach((s,n)=>{const r=s.value,i=s.key;void 0!==r&&void 0!==i&&(void 0!==t?e.call(t,r,i,s,n):e(r,i,s,n))})}find(e,t){return this.elements.find(s=>{const n=s.value,r=s.key;return void 0!==n&&void 0!==r&&(void 0!==t?e.call(t,n,r,s):e(n,r,s))})}keys(){return this.elements.map(e=>e.key?.toValue()).filter(e=>void 0!==e)}values(){return this.elements.map(e=>e.value?.toValue()).filter(e=>void 0!==e)}get length(){return this.elements.length}get isEmpty(){return 0===this.length}get first(){return this.elements[0]}get(e){return this.elements[e]}push(e){return this.elements.push(e),this}includesKey(e){return this.elements.some(t=>t.key?.equals(e))}[Symbol.iterator](){return this.elements[Symbol.iterator]()}}const D=$;class R{parent;startLine;startCharacter;startOffset;endLine;endCharacter;endOffset;_storedElement="element";_content;_meta;_attributes;constructor(e,t,s){void 0!==t&&(this.meta=t),void 0!==s&&(this.attributes=s),void 0!==e&&(this.content=e)}get element(){return this._storedElement}set element(e){this._storedElement=e}get content(){return this._content}set content(e){if(e instanceof R)this._content=e;else if(null!=e&&"string"!=typeof e&&"number"!=typeof e&&"boolean"!=typeof e&&"bigint"!=typeof e&&"symbol"!=typeof e)if(e instanceof N)this._content=e;else if(e instanceof D)this._content=e.elements;else if(Array.isArray(e))this._content=e.map(e=>this.refract(e));else{if("object"!=typeof e)throw new Error("Cannot set content to value of type "+typeof e);this._content=Object.entries(e).map(([e,t])=>new this.MemberElement(e,t))}else this._content=e}get meta(){if(!this._meta){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._meta=new this.ObjectElement}return this._meta}set meta(e){e instanceof R?this._meta=e:this.meta.set(e??{})}get attributes(){if(!this._attributes){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._attributes=new this.ObjectElement}return this._attributes}set attributes(e){e instanceof R?this._attributes=e:this.attributes.set(e??{})}get id(){return this.getMetaProperty("id","")}set id(e){this.setMetaProperty("id",e)}get classes(){return this.getMetaProperty("classes",[])}set classes(e){this.setMetaProperty("classes",e)}get links(){return this.getMetaProperty("links",[])}set links(e){this.setMetaProperty("links",e)}get children(){const{_content:e}=this;if(Array.isArray(e))return e;if(e instanceof N){const t=[];return e.key&&t.push(e.key),e.value&&t.push(e.value),t}return e instanceof R?[e]:[]}get isFrozen(){return Object.isFrozen(this)}freeze(){if(!this.isFrozen){this._meta&&(this._meta.parent=this,this._meta.freeze()),this._attributes&&(this._attributes.parent=this,this._attributes.freeze());for(const e of this.children)e.parent=this,e.freeze();Array.isArray(this._content)&&Object.freeze(this._content),Object.freeze(this)}}toValue(){const{_content:e}=this;return e instanceof R||e instanceof N?e.toValue():Array.isArray(e)?e.map(e=>e.toValue()):e}equals(e){const t=e instanceof R?e.toValue():e;return T(this.toValue(),t)}primitive(){}set(e){return this.content=e,this}toRef(e){const t=this.id.toValue();if(""===t)throw new Error("Cannot create reference to an element without an ID");const s=new this.RefElement(t);return"string"==typeof e&&(s.path=this.refract(e)),s}getMetaProperty(e,t){if(!this.meta.hasKey(e)){if(this.isFrozen){const e=this.refract(t);return e.freeze(),e}this.meta.set(e,t)}return this.meta.get(e)}setMetaProperty(e,t){this.meta.set(e,t)}hasMetaProperty(e){return!this.isMetaEmpty&&this.meta.hasKey(e)}get isMetaEmpty(){return void 0===this._meta||this.meta.isEmpty}getAttributesProperty(e,t){if(!this.hasAttributesProperty(e)){if(this.isFrozen){const e=this.refract(t);return e.freeze(),e}this.attributes.set(e,t)}return this.attributes.get(e)}setAttributesProperty(e,t){this.attributes.set(e,t)}hasAttributesProperty(e){return!this.isAttributesEmpty&&this.attributes.hasKey(e)}get isAttributesEmpty(){return void 0===this._attributes||this.attributes.isEmpty}}const B=R;const L=class extends B{constructor(e,t,s){super(e,t,s),this.element="string"}primitive(){return"string"}get length(){return this.content?.length??0}};const J=class extends L{constructor(e,t,s){super(e,t,s),this.element="arazzo",this.classes.push("spec-version"),this.classes.push("version")}};class q extends B{constructor(e,t,s){super(e||[],t,s)}get length(){return this._content.length}get isEmpty(){return 0===this.length}get first(){return this._content[0]}get second(){return this._content[1]}get last(){return this._content.at(-1)}push(...e){for(const t of e)this._content.push(this.refract(t));return this}shift(){return this._content.shift()}unshift(e){this._content.unshift(this.refract(e))}includes(e){return this._content.some(t=>t.equals(e))}findElements(e,t){const s=t||{},n=!!s.recursive,r=void 0===s.results?[]:s.results;for(let t=0;t<this._content.length;t+=1){const s=this._content[t],i=s;n&&"function"==typeof i.findElements&&i.findElements(e,{results:r,recursive:n}),e(s,t,void 0)&&r.push(s)}return r}find(e){const t=this.findElements(e,{recursive:!0});return new this.ArrayElement(t)}findByElement(e){return this.find(t=>t.element===e)}findByClass(e){return this.find(t=>{const s=t.classes;return"function"==typeof s.includes&&s.includes(e)})}getById(e){return this.find(t=>t.id.toValue()===e).first}concat(e){return new(0,this.constructor)(this._content.concat(e._content))}[Symbol.iterator](){return this._content[Symbol.iterator]()}}const _=q;const z=class extends B{constructor(e,t,s,n){super(new N,s,n),this.element="member",void 0!==e&&(this.key=e),arguments.length>=2&&(this.value=t)}primitive(){return"member"}get key(){return this._content.key}set key(e){this._content.key=this.refract(e)}get value(){return this._content.value}set value(e){this._content.value=void 0===e?void 0:this.refract(e)}};const H=class extends _{constructor(e,t,s){super(e||[],t,s),this.element="object"}primitive(){return"object"}toValue(){return this._content.reduce((e,t)=>(e[t.key.toValue()]=t.value?t.value.toValue():void 0,e),{})}get(e){const t=this.getMember(e);if(t)return t.value}getValue(e){const t=this.get(e);if(t)return t.toValue()}getMember(e){if(void 0!==e)return this._content.find(t=>t.key.toValue()===e)}remove(e){let t=null;return this.content=this._content.filter(s=>s.key.toValue()!==e||(t=s,!1)),t}getKey(e){const t=this.getMember(e);if(t)return t.key}set(e,t){if("string"==typeof e){const s=this.getMember(e);s?s.value=t:this._content.push(new z(e,t))}else if("object"==typeof e&&!Array.isArray(e))for(const t of Object.keys(e))this.set(t,e[t]);return this}keys(){return this._content.map(e=>e.key.toValue())}values(){return this._content.map(e=>e.value.toValue())}hasKey(e){return this._content.some(t=>t.key.equals(e))}items(){return this._content.map(e=>[e.key.toValue(),e.value.toValue()])}map(e,t){return this._content.map(s=>e.call(t,s.value,s.key,s))}compactMap(e,t){const s=[];return this.forEach((n,r,i)=>{const o=e.call(t,n,r,i);o&&s.push(o)}),s}filter(e,t){return new D(this._content).filter(e,t)}reject(e,t){const s=[];for(const n of this._content)e.call(t,n.value,n.key,n)||s.push(n);return new D(s)}forEach(e,t){this._content.forEach(s=>e.call(t,s.value,s.key,s))}reduce(e,t){let s,n;void 0!==t?(s=0,n=this.refract(t)):(s=1,n=this._content[0]?.value);for(let t=s;t<this._content.length;t+=1){const s=this._content[t],r=e(n,s.value,s.key,s,this);n=void 0===r?r:this.refract(r)}return n}empty(){return new this.constructor([])}};const V=class extends H{constructor(e,t,s){super(e,t,s),this.element="arazzoSpecification1",this.classes.push("api")}get arazzo(){return this.get("arazzo")}set arazzo(e){this.set("arazzo",e)}get info(){return this.get("info")}set info(e){this.set("info",e)}get sourceDescriptions(){return this.get("sourceDescriptions")}set sourceDescriptions(e){this.set("sourceDescriptions",e)}get workflows(){return this.get("workflows")}set workflows(e){this.set("workflows",e)}get components(){return this.get("components")}set components(e){this.set("components",e)}};const U=class extends H{constructor(e,t,s){super(e,t,s),this.element="components"}get inputs(){return this.get("inputs")}set inputs(e){this.set("inputs",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get successActions(){return this.get("successActions")}set successActions(e){this.set("successActions",e)}get failureActions(){return this.get("failureActions")}set failureActions(e){this.set("failureActions",e)}};const G=class extends H{constructor(e,t,s){super(e,t,s),this.element="criterion"}get context(){return this.get("context")}set context(e){this.set("context",e)}get condition(){return this.get("condition")}set condition(e){this.set("condition",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}};const W=class extends H{constructor(e,t,s){super(e,t,s),this.element="criterionExpressionType"}get type(){return this.get("type")}set type(e){this.set("type",e)}get version(){return this.get("version")}set version(e){this.set("version",e)}};const X=class extends H{constructor(e,t,s){super(e,t,s),this.element="failureAction"}get name(){return this.get("name")}set name(e){this.set("name",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get stepId(){return this.get("stepId")}set stepId(e){this.set("stepId",e)}get retryAfter(){return this.get("retryAfter")}set retryAfter(e){this.set("retryAfter",e)}get retryLimit(){return this.get("retryLimit")}set retryLimit(e){this.set("retryLimit",e)}get criteria(){return this.get("criteria")}set criteria(e){this.set("criteria",e)}};const K=class extends H{constructor(e,t,s){super(e,t,s),this.element="info",this.classes.push("info")}get title(){return this.get("title")}set title(e){this.set("title",e)}get summary(){return this.get("summary")}set summary(e){this.set("summary",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get version(){return this.get("version")}set version(e){this.set("version",e)}};function Y(e,t,s){for(var n=0,r=s.length;n<r;)t=e(t,s[n]),n+=1;return t}var Q=g(function(e,t){return Y(function(s,n){return s[n]=e(t[n],n,t),s},{},I(t))});const Z=Q;const ee=i(function(e){return null==e});var te=g(function(e,t){if(0===e.length||ee(t))return!1;for(var s=t,n=0;n<e.length;){if(ee(s)||!v(e[n],s))return!1;s=s[e[n]],n+=1}return!0});const se=te;var ne=g(function(e,t){return se([e],t)});const re=ne;function ie(e){return function t(s,n,o){switch(arguments.length){case 0:return t;case 1:return r(s)?t:g(function(t,n){return e(s,t,n)});case 2:return r(s)&&r(n)?t:r(s)?g(function(t,s){return e(t,n,s)}):r(n)?g(function(t,n){return e(s,t,n)}):i(function(t){return e(s,n,t)});default:return r(s)&&r(n)&&r(o)?t:r(s)&&r(n)?g(function(t,s){return e(t,s,o)}):r(s)&&r(o)?g(function(t,s){return e(t,n,s)}):r(n)&&r(o)?g(function(t,n){return e(s,t,n)}):r(s)?i(function(t){return e(t,n,o)}):r(n)?i(function(t){return e(s,t,o)}):r(o)?i(function(t){return e(s,n,t)}):e(s,n,o)}}}const oe=Number.isInteger||function(e){return(e|0)===e};const ce=function(e,t){if(null!=t)return oe(e)?o(e,t):t[e]};const ae=g(ce);const le=ie(function(e,t,s){return e(ae(t,s))});function ue(e,t){for(var s=t,n=0;n<e.length;n+=1){if(null==s)return;var r=e[n];s=oe(r)?o(r,s):s[r]}return s}const pe=g(ue);function he(e,t){switch(e){case 0:return function(){return t.apply(this,arguments)};case 1:return function(e){return t.apply(this,arguments)};case 2:return function(e,s){return t.apply(this,arguments)};case 3:return function(e,s,n){return t.apply(this,arguments)};case 4:return function(e,s,n,r){return t.apply(this,arguments)};case 5:return function(e,s,n,r,i){return t.apply(this,arguments)};case 6:return function(e,s,n,r,i,o){return t.apply(this,arguments)};case 7:return function(e,s,n,r,i,o,c){return t.apply(this,arguments)};case 8:return function(e,s,n,r,i,o,c,a){return t.apply(this,arguments)};case 9:return function(e,s,n,r,i,o,c,a,l){return t.apply(this,arguments)};case 10:return function(e,s,n,r,i,o,c,a,l,u){return t.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function de(e,t){return function(){return t.call(this,e.apply(this,arguments))}}const me=Array.isArray||function(e){return null!=e&&e.length>=0&&"[object Array]"===Object.prototype.toString.call(e)};function fe(e){return"[object String]"===Object.prototype.toString.call(e)}const ye=i(function(e){return!!me(e)||!!e&&("object"==typeof e&&(!fe(e)&&(0===e.length||e.length>0&&(e.hasOwnProperty(0)&&e.hasOwnProperty(e.length-1)))))});var ge="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function xe(e,t,s){return function(n,r,i){if(ye(i))return e(n,r,i);if(null==i)return r;if("function"==typeof i["fantasy-land/reduce"])return t(n,r,i,"fantasy-land/reduce");if(null!=i[ge])return s(n,r,i[ge]());if("function"==typeof i.next)return s(n,r,i);if("function"==typeof i.reduce)return t(n,r,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function be(e,t,s){for(var n=0,r=s.length;n<r;){if((t=e["@@transducer/step"](t,s[n]))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}n+=1}return e["@@transducer/result"](t)}var ve=g(function(e,t){return he(e.length,function(){return e.apply(t,arguments)})});const Se=ve;function we(e,t,s){for(var n=s.next();!n.done;){if((t=e["@@transducer/step"](t,n.value))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}n=s.next()}return e["@@transducer/result"](t)}function Ee(e,t,s,n){return e["@@transducer/result"](s[n](Se(e["@@transducer/step"],e),t))}const Oe=xe(be,Ee,we);var ke=function(){function e(e){this.f=e}return e.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},e.prototype["@@transducer/result"]=function(e){return e},e.prototype["@@transducer/step"]=function(e,t){return this.f(e,t)},e}();const Ae=ie(function(e,t,s){return Oe("function"==typeof e?new ke(e):e,t,s)});function je(e,t){return function(){var s=arguments.length;if(0===s)return t();var n=arguments[s-1];return me(n)||"function"!=typeof n[e]?t.apply(this,arguments):n[e].apply(n,Array.prototype.slice.call(arguments,0,s-1))}}const Fe=ie(je("slice",function(e,t,s){return Array.prototype.slice.call(s,e,t)}));const Ie=i(je("tail",Fe(1,1/0)));function Pe(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return he(arguments[0].length,Ae(de,arguments[0],Ie(arguments)))}var Ce=function(e,t){switch(arguments.length){case 0:return Ce;case 1:return function t(s){return 0===arguments.length?t:S(e,s)};default:return S(e,t)}};const Me=Ce;function Te(e,t){return function(e,t,s){var n,r;if("function"==typeof e.indexOf)switch(typeof t){case"number":if(0===t){for(n=1/t;s<e.length;){if(0===(r=e[s])&&1/r===n)return s;s+=1}return-1}if(t!=t){for(;s<e.length;){if("number"==typeof(r=e[s])&&r!=r)return s;s+=1}return-1}return e.indexOf(t,s);case"string":case"boolean":case"function":case"undefined":return e.indexOf(t,s);case"object":if(null===t)return e.indexOf(t,s)}for(;s<e.length;){if(T(e[s],t))return s;s+=1}return-1}(t,e,0)>=0}function Ne(e,t){for(var s=0,n=t.length,r=Array(n);s<n;)r[s]=e(t[s]),s+=1;return r}function $e(e){return'"'+e.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var De=function(e){return(e<10?"0":"")+e};const Re="function"==typeof Date.prototype.toISOString?function(e){return e.toISOString()}:function(e){return e.getUTCFullYear()+"-"+De(e.getUTCMonth()+1)+"-"+De(e.getUTCDate())+"T"+De(e.getUTCHours())+":"+De(e.getUTCMinutes())+":"+De(e.getUTCSeconds())+"."+(e.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function Be(e,t,s){return function(){if(0===arguments.length)return s();var n=arguments[arguments.length-1];if(!me(n)){for(var r=0;r<e.length;){if("function"==typeof n[e[r]])return n[e[r]].apply(n,Array.prototype.slice.call(arguments,0,-1));r+=1}if(function(e){return null!=e&&"function"==typeof e["@@transducer/step"]}(n))return t.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return s.apply(this,arguments)}}function Le(e){return"[object Object]"===Object.prototype.toString.call(e)}const Je=function(){return this.xf["@@transducer/init"]()},qe=function(e){return this.xf["@@transducer/result"](e)};var _e=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){return this.f(t)?this.xf["@@transducer/step"](e,t):e},e}();function ze(e){return function(t){return new _e(e,t)}}var He=g(Be(["fantasy-land/filter","filter"],ze,function(e,t){return Le(t)?Y(function(s,n){return e(t[n])&&(s[n]=t[n]),s},{},I(t)):(s=t,"[object Map]"===Object.prototype.toString.call(s)?function(e,t){for(var s=new Map,n=t.entries(),r=n.next();!r.done;)e(r.value[1])&&s.set(r.value[0],r.value[1]),r=n.next();return s}(e,t):function(e,t){for(var s=0,n=t.length,r=[];s<n;)e(t[s])&&(r[r.length]=t[s]),s+=1;return r}(e,t));var s}));const Ve=He;const Ue=g(function(e,t){return Ve((s=e,function(){return!s.apply(this,arguments)}),t);var s});function Ge(e,t){var s=function(s){var n=t.concat([e]);return Te(s,n)?"<Circular>":Ge(s,n)},n=function(e,t){return Ne(function(t){return $e(t)+": "+s(e[t])},t.slice().sort())};switch(Object.prototype.toString.call(e)){case"[object Arguments]":return"(function() { return arguments; }("+Ne(s,e).join(", ")+"))";case"[object Array]":return"["+Ne(s,e).concat(n(e,Ue(function(e){return/^\d+$/.test(e)},I(e)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof e?"new Boolean("+s(e.valueOf())+")":e.toString();case"[object Date]":return"new Date("+(isNaN(e.valueOf())?s(NaN):$e(Re(e)))+")";case"[object Map]":return"new Map("+s(Array.from(e))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof e?"new Number("+s(e.valueOf())+")":1/e==-1/0?"-0":e.toString(10);case"[object Set]":return"new Set("+s(Array.from(e).sort())+")";case"[object String]":return"object"==typeof e?"new String("+s(e.valueOf())+")":$e(e);case"[object Undefined]":return"undefined";default:if("function"==typeof e.toString){var r=e.toString();if("[object Object]"!==r)return r}return"{"+n(e,I(e)).join(", ")+"}"}}const We=i(function(e){return Ge(e,[])});const Xe=ie(function(e,t,s){return e(ue(t,s))});function Ke(e){var t=Object.prototype.toString.call(e);return"[object Function]"===t||"[object AsyncFunction]"===t||"[object GeneratorFunction]"===t||"[object AsyncGeneratorFunction]"===t}const Ye=g(function(e,t){return e&&t});function Qe(e,t,s){for(var n=s.next();!n.done;)t=e(t,n.value),n=s.next();return t}function Ze(e,t,s,n){return s[n](e,t)}const et=xe(Y,Ze,Qe);var tt=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){return this.xf["@@transducer/step"](e,this.f(t))},e}();const st=function(e){return function(t){return new tt(e,t)}};function nt(e,t,s){return function(){for(var n=[],i=0,o=e,c=0,a=!1;c<t.length||i<arguments.length;){var l;c<t.length&&(!r(t[c])||i>=arguments.length)?l=t[c]:(l=arguments[i],i+=1),n[c]=l,r(l)?a=!0:o-=1,c+=1}return!a&&o<=0?s.apply(this,n):he(Math.max(0,o),nt(e,n,s))}}var rt=g(function(e,t){return 1===e?i(t):he(e,nt(e,[],t))});const it=rt;var ot=g(Be(["fantasy-land/map","map"],st,function(e,t){switch(Object.prototype.toString.call(t)){case"[object Function]":return it(t.length,function(){return e.call(this,t.apply(this,arguments))});case"[object Object]":return Y(function(s,n){return s[n]=e(t[n]),s},{},I(t));default:return Ne(e,t)}}));const ct=ot;const at=g(function(e,t){return"function"==typeof t["fantasy-land/ap"]?t["fantasy-land/ap"](e):"function"==typeof e.ap?e.ap(t):"function"==typeof e?function(s){return e(s)(t(s))}:et(function(e,s){return function(e,t){var s;t=t||[];var n=(e=e||[]).length,r=t.length,i=[];for(s=0;s<n;)i[i.length]=e[s],s+=1;for(s=0;s<r;)i[i.length]=t[s],s+=1;return i}(e,ct(s,t))},[],e)});var lt=g(function(e,t){var s=it(e,t);return it(e,function(){return Y(at,ct(s,arguments[0]),Array.prototype.slice.call(arguments,1))})});const ut=lt;var pt=i(function(e){return ut(e.length,e)});const ht=pt;const dt=g(function(e,t){return Ke(e)?function(){return e.apply(this,arguments)&&t.apply(this,arguments)}:ht(Ye)(e,t)});const mt=T(null);const ft=ht(i(function(e){return!e}));const yt=ft(mt);function gt(e){return gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},gt(e)}const xt=function(e){return"object"===gt(e)};const bt=it(1,dt(yt,xt));const vt=g(function(e,t){if(e===t)return t;function s(e,t){if(e>t!=t>e)return t>e?t:e}var n=s(e,t);if(void 0!==n)return n;var r=s(typeof e,typeof t);if(void 0!==r)return r===typeof e?e:t;var i=We(e),o=s(i,We(t));return void 0!==o&&o===i?e:t});const St=g(function(e,t){return ct(ae(e),t)});const wt=i(function(e){return it(Ae(vt,0,St("length",e)),function(){for(var t=0,s=e.length;t<s;){if(e[t].apply(this,arguments))return!0;t+=1}return!1})});const Et=it(1,Pe(P,Me("GeneratorFunction")));const Ot=it(1,Pe(P,Me("AsyncFunction")));const kt=wt([Pe(P,Me("Function")),Et,Ot]);var At=Pe(P,Me("Object")),jt=Pe(We,T(We(Object))),Ft=Xe(dt(kt,jt),["constructor"]);const It=it(1,function(e){if(!bt(e)||!At(e))return!1;var t=Object.getPrototypeOf(e);return!!mt(t)||Ft(t)});const Pt=it(1,Pe(P,Me("String")));var Ct=i(function(e){return it(e.length,e)});const Mt=Ct;const Tt=g(function(e,t){return it(e+1,function(){var s=arguments[e];if(null!=s&&Ke(s[t]))return s[t].apply(s,Array.prototype.slice.call(arguments,0,e));throw new TypeError(We(s)+' does not have a method named "'+t+'"')})});const Nt=Tt(1,"split");var $t=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){if(this.f){if(this.f(t))return e;this.f=null}return this.xf["@@transducer/step"](e,t)},e}();function Dt(e){return function(t){return new $t(e,t)}}const Rt=g(Be(["dropWhile"],Dt,function(e,t){for(var s=0,n=t.length;s<n&&e(t[s]);)s+=1;return Fe(s,1/0,t)}));const Bt=Tt(1,"join");var Lt=i(function(e){return it(e.length,function(t,s){var n=Array.prototype.slice.call(arguments,0);return n[0]=s,n[1]=t,e.apply(this,n)})});const Jt=Lt(g(Te));const qt=Mt(function(e,t){return Pe(Nt(""),Rt(Jt(e)),Bt(""))(t)}),_t=new WeakMap,zt=e=>{if(_t.has(e))return _t.get(e);const t={},s=(e,n,r)=>("string"==typeof e.element&&(t[e.element]=e.$visitor?[...r,"$visitor"]:r),Z((e,t)=>{const i=[...r,t];if(It(e)&&re("$ref",e)&&le(Pt,"$ref",e)){const t=pe(["$ref"],e),s=qt("#/",t);return pe(s.split("/"),n)}return It(e)?s(e,n,i):e},e)),n=s(e,e,[]);return n.elementMap=t,_t.set(e,n),n};const Ht=class extends H{constructor(e,t,s){super(e,t,s),this.element="JSONSchemaDraft4"}get idField(){return this.get("id")}set idField(e){this.set("id",e)}get $schema(){return this.get("$schema")}set $schema(e){this.set("$schema",e)}get multipleOf(){return this.get("multipleOf")}set multipleOf(e){this.set("multipleOf",e)}get maximum(){return this.get("maximum")}set maximum(e){this.set("maximum",e)}get exclusiveMaximum(){return this.get("exclusiveMaximum")}set exclusiveMaximum(e){this.set("exclusiveMaximum",e)}get minimum(){return this.get("minimum")}set minimum(e){this.set("minimum",e)}get exclusiveMinimum(){return this.get("exclusiveMinimum")}set exclusiveMinimum(e){this.set("exclusiveMinimum",e)}get maxLength(){return this.get("maxLength")}set maxLength(e){this.set("maxLength",e)}get minLength(){return this.get("minLength")}set minLength(e){this.set("minLength",e)}get pattern(){return this.get("pattern")}set pattern(e){this.set("pattern",e)}get additionalItems(){return this.get("additionalItems")}set additionalItems(e){this.set("additionalItems",e)}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get maxItems(){return this.get("maxItems")}set maxItems(e){this.set("maxItems",e)}get minItems(){return this.get("minItems")}set minItems(e){this.set("minItems",e)}get uniqueItems(){return this.get("uniqueItems")}set uniqueItems(e){this.set("uniqueItems",e)}get maxProperties(){return this.get("maxProperties")}set maxProperties(e){this.set("maxProperties",e)}get minProperties(){return this.get("minProperties")}set minProperties(e){this.set("minProperties",e)}get required(){return this.get("required")}set required(e){this.set("required",e)}get properties(){return this.get("properties")}set properties(e){this.set("properties",e)}get additionalProperties(){return this.get("additionalProperties")}set additionalProperties(e){this.set("additionalProperties",e)}get patternProperties(){return this.get("patternProperties")}set patternProperties(e){this.set("patternProperties",e)}get dependencies(){return this.get("dependencies")}set dependencies(e){this.set("dependencies",e)}get enum(){return this.get("enum")}set enum(e){this.set("enum",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){return this.get("allOf")}set allOf(e){this.set("allOf",e)}get anyOf(){return this.get("anyOf")}set anyOf(e){this.set("anyOf",e)}get oneOf(){return this.get("oneOf")}set oneOf(e){this.set("oneOf",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get definitions(){return this.get("definitions")}set definitions(e){this.set("definitions",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get default(){return this.get("default")}set default(e){this.set("default",e)}get format(){return this.get("format")}set format(e){this.set("format",e)}get base(){return this.get("base")}set base(e){this.set("base",e)}get linksField(){return this.get("links")}set linksField(e){this.set("links",e)}get media(){return this.get("media")}set media(e){this.set("media",e)}get readOnly(){return this.get("readOnly")}set readOnly(e){this.set("readOnly",e)}};const Vt=class extends H{constructor(e,t,s){super(e,t,s),this.element="JSONReference",this.classes.push("json-reference")}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}};const Ut=class extends H{constructor(e,t,s){super(e,t,s),this.element="media"}get binaryEncoding(){return this.get("binaryEncoding")}set binaryEncoding(e){this.set("binaryEncoding",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}};const Gt=class extends H{constructor(e,t,s){super(e,t,s),this.element="linkDescription"}get href(){return this.get("href")}set href(e){this.set("href",e)}get rel(){return this.get("rel")}set rel(e){this.set("rel",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get mediaType(){return this.get("mediaType")}set mediaType(e){this.set("mediaType",e)}get method(){return this.get("method")}set method(e){this.set("method",e)}get encType(){return this.get("encType")}set encType(e){this.set("encType",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}};const Wt=class extends B{constructor(e,t,s){super(e,t,s),this.element="number"}primitive(){return"number"}};const Xt=class extends B{constructor(e,t,s){super(e??null,t,s),this.element="null"}primitive(){return"null"}set(e){throw new Error("Cannot set the value of null")}};const Kt=class extends B{constructor(e,t,s){super(e,t,s),this.element="boolean"}primitive(){return"boolean"}};const Yt=class extends _{constructor(e,t,s){super(e||[],t,s),this.element="array"}primitive(){return"array"}get(e){return this._content[e]}getValue(e){const t=this.get(e);if(t)return t.toValue()}set(e,t){return"number"==typeof e&&void 0!==t?this._content[e]=this.refract(t):this.content=e,this}remove(e){return this._content.splice(e,1)[0]??null}map(e,t){return this._content.map(e,t)}flatMap(e,t){return this._content.flatMap(e,t)}compactMap(e,t){const s=[];for(const n of this._content){const r=e.call(t,n);r&&s.push(r)}return s}filter(e,t){const s=this._content.filter(e,t);return new this.constructor(s)}reject(e,t){const s=[];for(const n of this._content)e.call(t,n)||s.push(n);return new this.constructor(s)}reduce(e,t){let s,n;void 0!==t?(s=0,n=this.refract(t)):(s=1,n=this.first);for(let t=s;t<this.length;t+=1){const s=e(n,this._content[t],t,this);n=void 0===s?s:this.refract(s)}return n}forEach(e,t){this._content.forEach((s,n)=>{e.call(t,s,n)})}empty(){return new this.constructor([])}},Qt=e=>e instanceof B,Zt=e=>e instanceof L,es=e=>e instanceof Wt,ts=e=>e instanceof Xt,ss=e=>e instanceof Kt,ns=e=>e instanceof Yt,rs=e=>e instanceof H,is=e=>e instanceof z,os=e=>"number"==typeof e.startLine&&"number"==typeof e.startCharacter&&"number"==typeof e.startOffset&&"number"==typeof e.endLine&&"number"==typeof e.endCharacter&&"number"==typeof e.endOffset,cs=(e,t)=>0===t.length||!!Qt(e)&&(!e.isMetaEmpty&&(!!e.hasMetaProperty("classes")&&t.every(t=>e.classes.includes(t))));class as extends L{constructor(e,t,s){super(e,t,s),this.element="sourceMap"}static transfer(e,t){t.startLine=e.startLine,t.startCharacter=e.startCharacter,t.startOffset=e.startOffset,t.endLine=e.endLine,t.endCharacter=e.endCharacter,t.endOffset=e.endOffset}static from(e){const{startLine:t,startCharacter:s,startOffset:n,endLine:r,endCharacter:i,endOffset:o}=e;if("number"!=typeof t||"number"!=typeof s||"number"!=typeof n||"number"!=typeof r||"number"!=typeof i||"number"!=typeof o)return;const c="sm1:"+[t,s,n,r,i,o].map(us).join("");const a=new as(c);return a.startLine=t,a.startCharacter=s,a.startOffset=n,a.endLine=r,a.endCharacter=i,a.endOffset=o,a}applyTo(e){this.content&&([e.startLine,e.startCharacter,e.startOffset,e.endLine,e.endCharacter,e.endOffset]=function(e){const t=e.startsWith("sm1:")?e.slice(4):e,s=[];let n=0;for(let e=0;e<6;e++){const e=ps(t,n);s.push(e.value),n=e.next}return s}(this.content))}}const ls="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";function us(e){let t=e>>>0,s="";do{let e=31&t;t>>>=5,0!==t&&(e|=32),s+=ls[e]}while(0!==t);return s}function ps(e,t=0){let s=0,n=0,r=t;for(;;){const t=e[r++],i=ls.indexOf(t);if(-1===i)throw new Error(`Invalid Base64 VLQ char: ${t}`);if(s|=(31&i)<<n,n+=5,!!!(32&i))break}return{value:s>>>0,next:r}}const hs=as;const ds=class extends p{constructor(e,t){if(super(e,t),null!=t&&"object"==typeof t){const{cause:e,...s}=t;Object.assign(this,s)}}};const ms=class extends ds{value;constructor(e,t){super(e,t),void 0!==t&&(this.value=t.value)}};const fs=class extends ms{};const ys=class extends ms{},gs=(e,t)=>{const{visited:s=new WeakMap}=t,n={...t,visited:s};if(s.has(e))return s.get(e);const r=Ss(e);s.set(e,r);const{content:i}=e;return Array.isArray(i)?r.content=i.map(e=>gs(e,n)):Qt(i)?r.content=gs(i,n):r.content=i instanceof N?xs(i,n):i,r},xs=(e,t)=>{const{visited:s=new WeakMap}=t,n={...t,visited:s};if(s.has(e))return s.get(e);const{key:r,value:i}=e,o=void 0!==r?gs(r,n):void 0,c=void 0!==i?gs(i,n):void 0,a=new N(o,c);return s.set(e,a),a},bs=(e,t={})=>{if(e instanceof N)return xs(e,t);if(e instanceof D)return((e,t)=>{const{visited:s=new WeakMap}=t,n={...t,visited:s};if(s.has(e))return s.get(e);const r=[...e].map(e=>gs(e,n)),i=new D(r);return s.set(e,i),i})(e,t);if(Qt(e))return gs(e,t);throw new fs("Value provided to cloneDeep function couldn't be cloned",{value:e})};bs.safe=e=>{try{return bs(e)}catch{return e}};const vs=e=>{const{key:t,value:s}=e;return new N(t,s)},Ss=e=>{const t=new(0,e.constructor);t.element=e.element,e.isMetaEmpty||(t.meta=bs(e.meta)),e.isAttributesEmpty||(t.attributes=bs(e.attributes)),os(e)&&hs.transfer(e,t);const{content:s}=e;return Qt(s)?t.content=Ss(s):Array.isArray(s)?t.content=[...s]:t.content=s instanceof N?vs(s):s,t},ws=e=>{if(e instanceof N)return vs(e);if(e instanceof D)return(e=>{const t=[...e];return new D(t)})(e);if(Qt(e))return Ss(e);throw new ys("Value provided to cloneShallow function couldn't be cloned",{value:e})};ws.safe=e=>{try{return ws(e)}catch{return e}};const Es=class extends B{constructor(e,t,s){super(e||[],t,s),this.element="link"}get relation(){if(this.hasAttributesProperty("relation"))return this.attributes.get("relation")}set relation(e){this.attributes.set("relation",e)}get href(){if(this.hasAttributesProperty("href"))return this.attributes.get("href")}set href(e){this.attributes.set("href",e)}};const Os=class extends B{constructor(e,t,s){super(e||[],t,s),this.element="ref",this.path||(this.path="element")}get path(){if(this.hasAttributesProperty("path"))return this.attributes.get("path")}set path(e){this.attributes.set("path",e)}};const ks=class extends L{constructor(e,t,s){super(e,t,s),this.element="annotation"}get code(){if(this.hasAttributesProperty("code"))return this.attributes.get("code")}set code(e){this.attributes.set("code",e)}};const As=class extends L{constructor(e,t,s){super(e,t,s),this.element="comment"}};const js=class extends Yt{constructor(e,t,s){super(e,t,s),this.element="parseResult"}get api(){return this.filter(e=>cs(e,["api"])).first}get results(){return this.filter(e=>cs(e,["result"]))}get result(){return this.results.first}get annotations(){return this.filter(e=>"annotation"===e.element)}get warnings(){return this.filter(e=>"annotation"===e.element&&cs(e,["warning"]))}get errors(){return this.filter(e=>"annotation"===e.element&&cs(e,["error"]))}get isEmpty(){return 0===this.reject(e=>"annotation"===e.element).length}replaceResult(e){const{result:t}=this;if(void 0===t)return!1;const s=this._content,n=s.findIndex(e=>e===t);return-1!==n&&(s[n]=e,!0)}},Fs=e=>e instanceof Es,Is=e=>e instanceof Os,Ps=e=>{if(!Qt(e))return e;if(Zt(e)||es(e)||ss(e)||ts(e))return e.toValue();const t=new WeakMap,s=e=>{if(!Qt(e))return e;if(rs(e)){if(t.has(e))return t.get(e);const n={};return t.set(e,n),e.forEach((e,t)=>{const r=s(t),i=s(e);"string"==typeof r&&(n[r]=i)}),n}if(ns(e)){if(t.has(e))return t.get(e);const n=[];return t.set(e,n),e.forEach(e=>n.push(s(e))),n}return Is(e)?String(e.toValue()):Fs(e)?Zt(e.href)?e.href.toValue():"":e.toValue()};return s(e)},Cs=e=>{const t=e.isMetaEmpty?void 0:bs(e.meta),s=e.isAttributesEmpty?void 0:bs(e.attributes);return new e.constructor(void 0,t,s)},Ms=(e,t)=>t.clone&&t.isMergeableElement(e)?Ns(Cs(e),e,t):e,Ts={clone:!0,isMergeableElement:e=>rs(e)||ns(e),arrayElementMerge:(e,t,s)=>new(0,e.constructor)(e.concat(t).map(e=>Ms(e,s))),objectElementMerge:(e,t,s)=>{const n=rs(e)?Cs(e):Cs(t);return rs(e)&&e.forEach((e,t,r)=>{const i=ws(r);i.value=Ms(e,s),n.content.push(i)}),t.forEach((t,r,i)=>{const o=Ps(r);let c;if(rs(e)&&e.hasKey(o)&&s.isMergeableElement(t)){const n=e.get(o);c=ws(i),c.value=((e,t)=>{if("function"!=typeof t.customMerge)return Ns;const s=t.customMerge(e,t);return"function"==typeof s?s:Ns})(r,s)(n,t,s)}else c=ws(i),c.value=Ms(t,s);n.remove(o),n.content.push(c)}),n},customMerge:void 0,customMetaMerge:void 0,customAttributesMerge:void 0},Ns=(e,t,s)=>{const n={...Ts,...s};n.isMergeableElement=n.isMergeableElement??Ts.isMergeableElement,n.arrayElementMerge=n.arrayElementMerge??Ts.arrayElementMerge,n.objectElementMerge=n.objectElementMerge??Ts.objectElementMerge;const r=ns(t);if(!(r===ns(e)))return Ms(t,n);const i=r&&"function"==typeof n.arrayElementMerge?n.arrayElementMerge(e,t,n):n.objectElementMerge(e,t,n);return i.meta=(e=>"function"!=typeof e.customMetaMerge?e=>bs(e):e.customMetaMerge)(n)(e.meta,t.meta),i.attributes=(e=>"function"!=typeof e.customAttributesMerge?e=>bs(e):e.customAttributesMerge)(n)(e.attributes,t.attributes),i};Ns.all=(e,t)=>{if(!Array.isArray(e))throw new TypeError("First argument of deepmerge should be an array.");return 0===e.length?new H:e.reduce((e,s)=>Ns(e,s,t),Cs(e[0]))};const $s=Ns;const Ds=class{element;constructor(e){Object.assign(this,e)}copyMetaAndAttributes(e,t){if(!e.isMetaEmpty||!t.isMetaEmpty){const s=t.isMetaEmpty?new H:t.meta,n=e.isMetaEmpty?new H:e.meta;t.meta=$s(s,n)}if(!e.isAttributesEmpty||!t.isAttributesEmpty){const s=t.isAttributesEmpty?new H:t.attributes,n=e.isAttributesEmpty?new H:e.attributes;t.attributes=$s(s,n)}hs.transfer(e,t)}};const Rs=class extends Ds{enter(e){this.element=bs(e.node),e.stop()}};const Bs=i(function(e){return function(){return e}});const Ls=g(function(e,t){return null==t||t!=t?e:t});const Js=Bs(void 0);const qs=T(Js());const _s=i(function(e){return it(Ae(vt,0,St("length",e)),function(){for(var t=0,s=e.length;t<s;){if(!e[t].apply(this,arguments))return!1;t+=1}return!0})});var zs=i(function(e){return null!=e&&"function"==typeof e["fantasy-land/empty"]?e["fantasy-land/empty"]():null!=e&&null!=e.constructor&&"function"==typeof e.constructor["fantasy-land/empty"]?e.constructor["fantasy-land/empty"]():null!=e&&"function"==typeof e.empty?e.empty():null!=e&&null!=e.constructor&&"function"==typeof e.constructor.empty?e.constructor.empty():e==Set||e instanceof Set?new Set:e==Map||e instanceof Map?new Map:me(e)?[]:fe(e)?"":Le(e)?{}:E(e)?function(){return arguments}():function(e){var t=Object.prototype.toString.call(e);return"[object Uint8ClampedArray]"===t||"[object Int8Array]"===t||"[object Uint8Array]"===t||"[object Int16Array]"===t||"[object Uint16Array]"===t||"[object Int32Array]"===t||"[object Uint32Array]"===t||"[object Float32Array]"===t||"[object Float64Array]"===t||"[object BigInt64Array]"===t||"[object BigUint64Array]"===t}(e)?e.constructor.from(""):void 0});const Hs=zs;const Vs=i(function(e){return null!=e&&T(e,Hs(e))});const Us=i(function(e){return!Vs(e)});const Gs=g(function(e,t){return e||t});const Ws=it(1,dt(yt,g(function(e,t){return Ke(e)?function(){return e.apply(this,arguments)||t.apply(this,arguments)}:ht(Gs)(e,t)})(xt,kt)));var Xs=ft(Ws);const Ks=_s([Pt,Xs,Us]);const Ys=g(function(e,t){for(var s={},n=0;n<e.length;)e[n]in t&&(s[e[n]]=t[e[n]]),n+=1;return s}),Qs=function(){const e=en,t=Zs,s=this,n="parser.js: Parser(): ";s.ast=void 0,s.stats=void 0,s.trace=void 0,s.callbacks=[];let r,i,o,c,a,l,u,p=0,h=0,d=0,m=0,f=0,y=new function(){this.state=e.ACTIVE,this.phraseLength=0,this.refresh=()=>{this.state=e.ACTIVE,this.phraseLength=0}};s.parse=(g,x,v,S)=>{const w=`${n}parse(): `;p=0,h=0,d=0,m=0,f=0,r=void 0,i=void 0,o=void 0,c=void 0,y.refresh(),a=void 0,l=void 0,u=void 0,c=t.stringToChars(v),r=g.rules,i=g.udts;const E=x.toLowerCase();let O;for(const e in r)if(r.hasOwnProperty(e)&&E===r[e].lower){O=r[e].index;break}if(void 0===O)throw new Error(`${w}start rule name '${startRule}' not recognized`);(()=>{const e=`${n}initializeCallbacks(): `;let t,o;for(a=[],l=[],t=0;t<r.length;t+=1)a[t]=void 0;for(t=0;t<i.length;t+=1)l[t]=void 0;const c=[];for(t=0;t<r.length;t+=1)c.push(r[t].lower);for(t=0;t<i.length;t+=1)c.push(i[t].lower);for(const n in s.callbacks)if(s.callbacks.hasOwnProperty(n)){if(t=c.indexOf(n.toLowerCase()),t<0)throw new Error(`${e}syntax callback '${n}' not a rule or udt name`);if(o=s.callbacks[n]?s.callbacks[n]:void 0,"function"!=typeof o&&void 0!==o)throw new Error(`${e}syntax callback[${n}] must be function reference or falsy)`);t<r.length?a[t]=o:l[t-r.length]=o}})(),s.trace&&s.trace.init(r,i,c),s.stats&&s.stats.init(r,i),s.ast&&s.ast.init(r,i,c),u=S,o=[{type:e.RNM,index:O}],b(0,0),o=void 0;let k=!1;switch(y.state){case e.ACTIVE:throw new Error(`${w}final state should never be 'ACTIVE'`);case e.NOMATCH:k=!1;break;case e.EMPTY:case e.MATCH:k=y.phraseLength===c.length;break;default:throw new Error("unrecognized state")}return{success:k,state:y.state,stateName:e.idName(y.state),length:c.length,matched:y.phraseLength,maxMatched:f,maxTreeDepth:d,nodeHits:m}};const g=(t,s,r,i)=>{if(s.phraseLength>r){let e=`${n}opRNM(${t.name}): callback function error: `;throw e+=`sysData.phraseLength: ${s.phraseLength}`,e+=` must be <= remaining chars: ${r}`,new Error(e)}switch(s.state){case e.ACTIVE:if(!i)throw new Error(`${n}opRNM(${t.name}): callback function return error. ACTIVE state not allowed.`);break;case e.EMPTY:s.phraseLength=0;break;case e.MATCH:0===s.phraseLength&&(s.state=e.EMPTY);break;case e.NOMATCH:s.phraseLength=0;break;default:throw new Error(`${n}opRNM(${t.name}): callback function return error. Unrecognized return state: ${s.state}`)}},x=(t,a)=>{let h,d,m;const f=o[t],g=i[f.index];y.UdtIndex=g.index,p||(m=s.ast&&s.ast.udtDefined(f.index),m&&(d=r.length+f.index,h=s.ast.getLength(),s.ast.down(d,g.name)));const x=c.length-a;l[f.index](y,c,a,u),((t,s,r)=>{if(s.phraseLength>r){let e=`${n}opUDT(${t.name}): callback function error: `;throw e+=`sysData.phraseLength: ${s.phraseLength}`,e+=` must be <= remaining chars: ${r}`,new Error(e)}switch(s.state){case e.ACTIVE:throw new Error(`${n}opUDT(${t.name}) ACTIVE state return not allowed.`);case e.EMPTY:if(!t.empty)throw new Error(`${n}opUDT(${t.name}) may not return EMPTY.`);s.phraseLength=0;break;case e.MATCH:if(0===s.phraseLength){if(!t.empty)throw new Error(`${n}opUDT(${t.name}) may not return EMPTY.`);s.state=e.EMPTY}break;case e.NOMATCH:s.phraseLength=0;break;default:throw new Error(`${n}opUDT(${t.name}): callback function return error. Unrecognized return state: ${s.state}`)}})(g,y,x),p||m&&(y.state===e.NOMATCH?s.ast.setLength(h):s.ast.up(d,g.name,a,y.phraseLength))},b=(t,i)=>{const l=`${n}opExecute(): `,v=o[t];switch(m+=1,h>d&&(d=h),h+=1,y.refresh(),s.trace&&s.trace.down(v,i),v.type){case e.ALT:((t,s)=>{const n=o[t];for(let t=0;t<n.children.length&&(b(n.children[t],s),y.state===e.NOMATCH);t+=1);})(t,i);break;case e.CAT:((t,n)=>{let r,i,c,a;const l=o[t];s.ast&&(i=s.ast.getLength()),r=!0,c=n,a=0;for(let t=0;t<l.children.length;t+=1){if(b(l.children[t],c),y.state===e.NOMATCH){r=!1;break}c+=y.phraseLength,a+=y.phraseLength}r?(y.state=0===a?e.EMPTY:e.MATCH,y.phraseLength=a):(y.state=e.NOMATCH,y.phraseLength=0,s.ast&&s.ast.setLength(i))})(t,i);break;case e.REP:((t,n)=>{let r,i,a,l;const u=o[t];if(0===u.max)return y.state=e.EMPTY,void(y.phraseLength=0);for(i=n,a=0,l=0,s.ast&&(r=s.ast.getLength());!(i>=c.length)&&(b(t+1,i),y.state!==e.NOMATCH)&&y.state!==e.EMPTY&&(l+=1,a+=y.phraseLength,i+=y.phraseLength,l!==u.max););y.state===e.EMPTY||l>=u.min?(y.state=0===a?e.EMPTY:e.MATCH,y.phraseLength=a):(y.state=e.NOMATCH,y.phraseLength=0,s.ast&&s.ast.setLength(r))})(t,i);break;case e.RNM:((t,n)=>{let i,l,h;const d=o[t],m=r[d.index],f=a[m.index];if(p||(l=s.ast&&s.ast.ruleDefined(d.index),l&&(i=s.ast.getLength(),s.ast.down(d.index,r[d.index].name))),f){const t=c.length-n;f(y,c,n,u),g(m,y,t,!0),y.state===e.ACTIVE&&(h=o,o=m.opcodes,b(0,n),o=h,f(y,c,n,u),g(m,y,t,!1))}else h=o,o=m.opcodes,b(0,n,y),o=h;p||l&&(y.state===e.NOMATCH?s.ast.setLength(i):s.ast.up(d.index,m.name,n,y.phraseLength))})(t,i);break;case e.TRG:((t,s)=>{const n=o[t];y.state=e.NOMATCH,s<c.length&&n.min<=c[s]&&c[s]<=n.max&&(y.state=e.MATCH,y.phraseLength=1)})(t,i);break;case e.TBS:((t,s)=>{const n=o[t],r=n.string.length;if(y.state=e.NOMATCH,s+r<=c.length){for(let e=0;e<r;e+=1)if(c[s+e]!==n.string[e])return;y.state=e.MATCH,y.phraseLength=r}})(t,i);break;case e.TLS:((t,s)=>{let n;const r=o[t];y.state=e.NOMATCH;const i=r.string.length;if(0!==i){if(s+i<=c.length){for(let e=0;e<i;e+=1)if(n=c[s+e],n>=65&&n<=90&&(n+=32),n!==r.string[e])return;y.state=e.MATCH,y.phraseLength=i}}else y.state=e.EMPTY})(t,i);break;case e.UDT:x(t,i);break;case e.AND:((t,s)=>{switch(p+=1,b(t+1,s),p-=1,y.phraseLength=0,y.state){case e.EMPTY:case e.MATCH:y.state=e.EMPTY;break;case e.NOMATCH:y.state=e.NOMATCH;break;default:throw new Error(`opAND: invalid state ${y.state}`)}})(t,i);break;case e.NOT:((t,s)=>{switch(p+=1,b(t+1,s),p-=1,y.phraseLength=0,y.state){case e.EMPTY:case e.MATCH:y.state=e.NOMATCH;break;case e.NOMATCH:y.state=e.EMPTY;break;default:throw new Error(`opNOT: invalid state ${y.state}`)}})(t,i);break;default:throw new Error(`${l}unrecognized operator`)}p||i+y.phraseLength>f&&(f=i+y.phraseLength),s.stats&&s.stats.collect(v,y),s.trace&&s.trace.up(v,y.state,i,y.phraseLength),h-=1}},Zs={stringToChars:e=>[...e].map(e=>e.codePointAt(0)),charsToString:(e,t,s)=>{let n=e;for(;!(void 0===t||t<0);){if(void 0===s){n=e.slice(t);break}if(s<=0)return"";n=e.slice(t,t+s);break}return String.fromCodePoint(...n)}},en={ALT:1,CAT:2,REP:3,RNM:4,TRG:5,TBS:6,TLS:7,UDT:11,AND:12,NOT:13,ACTIVE:100,MATCH:101,EMPTY:102,NOMATCH:103,SEM_PRE:200,SEM_POST:201,SEM_OK:300,idName:e=>{switch(e){case en.ALT:return"ALT";case en.CAT:return"CAT";case en.REP:return"REP";case en.RNM:return"RNM";case en.TRG:return"TRG";case en.TBS:return"TBS";case en.TLS:return"TLS";case en.UDT:return"UDT";case en.AND:return"AND";case en.NOT:return"NOT";case en.ACTIVE:return"ACTIVE";case en.EMPTY:return"EMPTY";case en.MATCH:return"MATCH";case en.NOMATCH:return"NOMATCH";case en.SEM_PRE:return"SEM_PRE";case en.SEM_POST:return"SEM_POST";case en.SEM_OK:return"SEM_OK";default:return"UNRECOGNIZED STATE"}}};function tn(){this.grammarObject="grammarObject",this.rules=[],this.rules[0]={name:"json-pointer",lower:"json-pointer",index:0,isBkr:!1},this.rules[1]={name:"reference-token",lower:"reference-token",index:1,isBkr:!1},this.rules[2]={name:"unescaped",lower:"unescaped",index:2,isBkr:!1},this.rules[3]={name:"escaped",lower:"escaped",index:3,isBkr:!1},this.rules[4]={name:"array-location",lower:"array-location",index:4,isBkr:!1},this.rules[5]={name:"array-index",lower:"array-index",index:5,isBkr:!1},this.rules[6]={name:"array-dash",lower:"array-dash",index:6,isBkr:!1},this.rules[7]={name:"slash",lower:"slash",index:7,isBkr:!1},this.udts=[],this.rules[0].opcodes=[],this.rules[0].opcodes[0]={type:3,min:0,max:1/0},this.rules[0].opcodes[1]={type:2,children:[2,3]},this.rules[0].opcodes[2]={type:4,index:7},this.rules[0].opcodes[3]={type:4,index:1},this.rules[1].opcodes=[],this.rules[1].opcodes[0]={type:3,min:0,max:1/0},this.rules[1].opcodes[1]={type:1,children:[2,3]},this.rules[1].opcodes[2]={type:4,index:2},this.rules[1].opcodes[3]={type:4,index:3},this.rules[2].opcodes=[],this.rules[2].opcodes[0]={type:1,children:[1,2,3]},this.rules[2].opcodes[1]={type:5,min:0,max:46},this.rules[2].opcodes[2]={type:5,min:48,max:125},this.rules[2].opcodes[3]={type:5,min:127,max:1114111},this.rules[3].opcodes=[],this.rules[3].opcodes[0]={type:2,children:[1,2]},this.rules[3].opcodes[1]={type:7,string:[126]},this.rules[3].opcodes[2]={type:1,children:[3,4]},this.rules[3].opcodes[3]={type:7,string:[48]},this.rules[3].opcodes[4]={type:7,string:[49]},this.rules[4].opcodes=[],this.rules[4].opcodes[0]={type:1,children:[1,2]},this.rules[4].opcodes[1]={type:4,index:5},this.rules[4].opcodes[2]={type:4,index:6},this.rules[5].opcodes=[],this.rules[5].opcodes[0]={type:1,children:[1,2]},this.rules[5].opcodes[1]={type:6,string:[48]},this.rules[5].opcodes[2]={type:2,children:[3,4]},this.rules[5].opcodes[3]={type:5,min:49,max:57},this.rules[5].opcodes[4]={type:3,min:0,max:1/0},this.rules[5].opcodes[5]={type:5,min:48,max:57},this.rules[6].opcodes=[],this.rules[6].opcodes[0]={type:7,string:[45]},this.rules[7].opcodes=[],this.rules[7].opcodes[0]={type:7,string:[47]},this.toString=function(){let e="";return e+="; JavaScript Object Notation (JSON) Pointer ABNF syntax\n",e+="; https://datatracker.ietf.org/doc/html/rfc6901\n",e+="json-pointer = *( slash reference-token ) ; MODIFICATION: surrogate text rule used\n",e+="reference-token = *( unescaped / escaped )\n",e+="unescaped = %x00-2E / %x30-7D / %x7F-10FFFF\n",e+=" ; %x2F ('/') and %x7E ('~') are excluded from 'unescaped'\n",e+='escaped = "~" ( "0" / "1" )\n',e+=" ; representing '~' and '/', respectively\n",e+="\n",e+="; https://datatracker.ietf.org/doc/html/rfc6901#section-4\n",e+="array-location = array-index / array-dash\n",e+="array-index = %x30 / ( %x31-39 *(%x30-39) )\n",e+=' ; "0", or digits without a leading "0"\n',e+='array-dash = "-"\n',e+="\n",e+="; Surrogate named rules\n",e+='slash = "/"\n','; JavaScript Object Notation (JSON) Pointer ABNF syntax\n; https://datatracker.ietf.org/doc/html/rfc6901\njson-pointer = *( slash reference-token ) ; MODIFICATION: surrogate text rule used\nreference-token = *( unescaped / escaped )\nunescaped = %x00-2E / %x30-7D / %x7F-10FFFF\n ; %x2F (\'/\') and %x7E (\'~\') are excluded from \'unescaped\'\nescaped = "~" ( "0" / "1" )\n ; representing \'~\' and \'/\', respectively\n\n; https://datatracker.ietf.org/doc/html/rfc6901#section-4\narray-location = array-index / array-dash\narray-index = %x30 / ( %x31-39 *(%x30-39) )\n ; "0", or digits without a leading "0"\narray-dash = "-"\n\n; Surrogate named rules\nslash = "/"\n'}}class sn extends Error{constructor(e,t=void 0){if(super(e,t),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,null!=t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,"cause")&&!("cause"in this)){const{cause:e}=t;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}if(null!=t&&"object"==typeof t){const{cause:e,...s}=t;Object.assign(this,s)}}}const nn=sn;new tn;new tn,new Qs,new tn,new Qs,new tn,new Qs,new tn,new Qs;const rn=e=>{if("string"!=typeof e&&"number"!=typeof e)throw new TypeError("Reference token must be a string or number");return String(e).replace(/~/g,"~0").replace(/\//g,"~1")};const on=class extends nn{},cn=e=>{if(!Array.isArray(e))throw new TypeError("Reference tokens must be a list of strings or numbers");try{return 0===e.length?"":`/${e.map(e=>{if("string"!=typeof e&&"number"!=typeof e)throw new TypeError("Reference token must be a string or number");return rn(String(e))}).join("/")}`}catch(t){throw new on("Unexpected error during JSON Pointer compilation",{cause:t,referenceTokens:e})}};class an extends Error{constructor(e,t=void 0){if(super(e,t),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,null!=t&&"object"==typeof t&&Object.hasOwn(t,"cause")&&!("cause"in this)){const{cause:e}=t;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}if(null!=t&&"object"==typeof t){const{cause:e,...s}=t;Object.assign(this,s)}}}const ln=an;new function(){this.grammarObject="grammarObject",this.rules=[],this.rules[0]={name:"jsonpath-query",lower:"jsonpath-query",index:0,isBkr:!1},this.rules[1]={name:"segments",lower:"segments",index:1,isBkr:!1},this.rules[2]={name:"B",lower:"b",index:2,isBkr:!1},this.rules[3]={name:"S",lower:"s",index:3,isBkr:!1},this.rules[4]={name:"root-identifier",lower:"root-identifier",index:4,isBkr:!1},this.rules[5]={name:"selector",lower:"selector",index:5,isBkr:!1},this.rules[6]={name:"name-selector",lower:"name-selector",index:6,isBkr:!1},this.rules[7]={name:"string-literal",lower:"string-literal",index:7,isBkr:!1},this.rules[8]={name:"double-quoted",lower:"double-quoted",index:8,isBkr:!1},this.rules[9]={name:"single-quoted",lower:"single-quoted",index:9,isBkr:!1},this.rules[10]={name:"ESC",lower:"esc",index:10,isBkr:!1},this.rules[11]={name:"unescaped",lower:"unescaped",index:11,isBkr:!1},this.rules[12]={name:"escapable",lower:"escapable",index:12,isBkr:!1},this.rules[13]={name:"hexchar",lower:"hexchar",index:13,isBkr:!1},this.rules[14]={name:"non-surrogate",lower:"non-surrogate",index:14,isBkr:!1},this.rules[15]={name:"high-surrogate",lower:"high-surrogate",index:15,isBkr:!1},this.rules[16]={name:"low-surrogate",lower:"low-surrogate",index:16,isBkr:!1},this.rules[17]={name:"HEXDIG",lower:"hexdig",index:17,isBkr:!1},this.rules[18]={name:"wildcard-selector",lower:"wildcard-selector",index:18,isBkr:!1},this.rules[19]={name:"index-selector",lower:"index-selector",index:19,isBkr:!1},this.rules[20]={name:"int",lower:"int",index:20,isBkr:!1},this.rules[21]={name:"DIGIT1",lower:"digit1",index:21,isBkr:!1},this.rules[22]={name:"slice-selector",lower:"slice-selector",index:22,isBkr:!1},this.rules[23]={name:"start",lower:"start",index:23,isBkr:!1},this.rules[24]={name:"end",lower:"end",index:24,isBkr:!1},this.rules[25]={name:"step",lower:"step",index:25,isBkr:!1},this.rules[26]={name:"filter-selector",lower:"filter-selector",index:26,isBkr:!1},this.rules[27]={name:"logical-expr",lower:"logical-expr",index:27,isBkr:!1},this.rules[28]={name:"logical-or-expr",lower:"logical-or-expr",index:28,isBkr:!1},this.rules[29]={name:"logical-and-expr",lower:"logical-and-expr",index:29,isBkr:!1},this.rules[30]={name:"basic-expr",lower:"basic-expr",index:30,isBkr:!1},this.rules[31]={name:"paren-expr",lower:"paren-expr",index:31,isBkr:!1},this.rules[32]={name:"logical-not-op",lower:"logical-not-op",index:32,isBkr:!1},this.rules[33]={name:"test-expr",lower:"test-expr",index:33,isBkr:!1},this.rules[34]={name:"filter-query",lower:"filter-query",index:34,isBkr:!1},this.rules[35]={name:"rel-query",lower:"rel-query",index:35,isBkr:!1},this.rules[36]={name:"current-node-identifier",lower:"current-node-identifier",index:36,isBkr:!1},this.rules[37]={name:"comparison-expr",lower:"comparison-expr",index:37,isBkr:!1},this.rules[38]={name:"literal",lower:"literal",index:38,isBkr:!1},this.rules[39]={name:"comparable",lower:"comparable",index:39,isBkr:!1},this.rules[40]={name:"comparison-op",lower:"comparison-op",index:40,isBkr:!1},this.rules[41]={name:"singular-query",lower:"singular-query",index:41,isBkr:!1},this.rules[42]={name:"rel-singular-query",lower:"rel-singular-query",index:42,isBkr:!1},this.rules[43]={name:"abs-singular-query",lower:"abs-singular-query",index:43,isBkr:!1},this.rules[44]={name:"singular-query-segments",lower:"singular-query-segments",index:44,isBkr:!1},this.rules[45]={name:"name-segment",lower:"name-segment",index:45,isBkr:!1},this.rules[46]={name:"index-segment",lower:"index-segment",index:46,isBkr:!1},this.rules[47]={name:"number",lower:"number",index:47,isBkr:!1},this.rules[48]={name:"frac",lower:"frac",index:48,isBkr:!1},this.rules[49]={name:"exp",lower:"exp",index:49,isBkr:!1},this.rules[50]={name:"true",lower:"true",index:50,isBkr:!1},this.rules[51]={name:"false",lower:"false",index:51,isBkr:!1},this.rules[52]={name:"null",lower:"null",index:52,isBkr:!1},this.rules[53]={name:"function-name",lower:"function-name",index:53,isBkr:!1},this.rules[54]={name:"function-name-first",lower:"function-name-first",index:54,isBkr:!1},this.rules[55]={name:"function-name-char",lower:"function-name-char",index:55,isBkr:!1},this.rules[56]={name:"LCALPHA",lower:"lcalpha",index:56,isBkr:!1},this.rules[57]={name:"function-expr",lower:"function-expr",index:57,isBkr:!1},this.rules[58]={name:"function-argument",lower:"function-argument",index:58,isBkr:!1},this.rules[59]={name:"segment",lower:"segment",index:59,isBkr:!1},this.rules[60]={name:"child-segment",lower:"child-segment",index:60,isBkr:!1},this.rules[61]={name:"bracketed-selection",lower:"bracketed-selection",index:61,isBkr:!1},this.rules[62]={name:"member-name-shorthand",lower:"member-name-shorthand",index:62,isBkr:!1},this.rules[63]={name:"name-first",lower:"name-first",index:63,isBkr:!1},this.rules[64]={name:"name-char",lower:"name-char",index:64,isBkr:!1},this.rules[65]={name:"DIGIT",lower:"digit",index:65,isBkr:!1},this.rules[66]={name:"ALPHA",lower:"alpha",index:66,isBkr:!1},this.rules[67]={name:"descendant-segment",lower:"descendant-segment",index:67,isBkr:!1},this.rules[68]={name:"normalized-path",lower:"normalized-path",index:68,isBkr:!1},this.rules[69]={name:"normal-index-segment",lower:"normal-index-segment",index:69,isBkr:!1},this.rules[70]={name:"normal-selector",lower:"normal-selector",index:70,isBkr:!1},this.rules[71]={name:"normal-name-selector",lower:"normal-name-selector",index:71,isBkr:!1},this.rules[72]={name:"normal-single-quoted",lower:"normal-single-quoted",index:72,isBkr:!1},this.rules[73]={name:"normal-unescaped",lower:"normal-unescaped",index:73,isBkr:!1},this.rules[74]={name:"normal-escapable",lower:"normal-escapable",index:74,isBkr:!1},this.rules[75]={name:"normal-hexchar",lower:"normal-hexchar",index:75,isBkr:!1},this.rules[76]={name:"normal-HEXDIG",lower:"normal-hexdig",index:76,isBkr:!1},this.rules[77]={name:"normal-index-selector",lower:"normal-index-selector",index:77,isBkr:!1},this.rules[78]={name:"dot-prefix",lower:"dot-prefix",index:78,isBkr:!1},this.rules[79]={name:"double-dot-prefix",lower:"double-dot-prefix",index:79,isBkr:!1},this.rules[80]={name:"left-bracket",lower:"left-bracket",index:80,isBkr:!1},this.rules[81]={name:"right-bracket",lower:"right-bracket",index:81,isBkr:!1},this.rules[82]={name:"left-paren",lower:"left-paren",index:82,isBkr:!1},this.rules[83]={name:"right-paren",lower:"right-paren",index:83,isBkr:!1},this.rules[84]={name:"comma",lower:"comma",index:84,isBkr:!1},this.rules[85]={name:"colon",lower:"colon",index:85,isBkr:!1},this.rules[86]={name:"dquote",lower:"dquote",index:86,isBkr:!1},this.rules[87]={name:"squote",lower:"squote",index:87,isBkr:!1},this.rules[88]={name:"questionmark",lower:"questionmark",index:88,isBkr:!1},this.rules[89]={name:"disjunction",lower:"disjunction",index:89,isBkr:!1},this.rules[90]={name:"conjunction",lower:"conjunction",index:90,isBkr:!1},this.udts=[],this.rules[0].opcodes=[],this.rules[0].opcodes[0]={type:2,children:[1,2]},this.rules[0].opcodes[1]={type:4,index:4},this.rules[0].opcodes[2]={type:4,index:1},this.rules[1].opcodes=[],this.rules[1].opcodes[0]={type:3,min:0,max:1/0},this.rules[1].opcodes[1]={type:2,children:[2,3]},this.rules[1].opcodes[2]={type:4,index:3},this.rules[1].opcodes[3]={type:4,index:59},this.rules[2].opcodes=[],this.rules[2].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[2].opcodes[1]={type:6,string:[32]},this.rules[2].opcodes[2]={type:6,string:[9]},this.rules[2].opcodes[3]={type:6,string:[10]},this.rules[2].opcodes[4]={type:6,string:[13]},this.rules[3].opcodes=[],this.rules[3].opcodes[0]={type:3,min:0,max:1/0},this.rules[3].opcodes[1]={type:4,index:2},this.rules[4].opcodes=[],this.rules[4].opcodes[0]={type:7,string:[36]},this.rules[5].opcodes=[],this.rules[5].opcodes[0]={type:1,children:[1,2,3,4,5]},this.rules[5].opcodes[1]={type:4,index:6},this.rules[5].opcodes[2]={type:4,index:18},this.rules[5].opcodes[3]={type:4,index:22},this.rules[5].opcodes[4]={type:4,index:19},this.rules[5].opcodes[5]={type:4,index:26},this.rules[6].opcodes=[],this.rules[6].opcodes[0]={type:4,index:7},this.rules[7].opcodes=[],this.rules[7].opcodes[0]={type:1,children:[1,6]},this.rules[7].opcodes[1]={type:2,children:[2,3,5]},this.rules[7].opcodes[2]={type:4,index:86},this.rules[7].opcodes[3]={type:3,min:0,max:1/0},this.rules[7].opcodes[4]={type:4,index:8},this.rules[7].opcodes[5]={type:4,index:86},this.rules[7].opcodes[6]={type:2,children:[7,8,10]},this.rules[7].opcodes[7]={type:4,index:87},this.rules[7].opcodes[8]={type:3,min:0,max:1/0},this.rules[7].opcodes[9]={type:4,index:9},this.rules[7].opcodes[10]={type:4,index:87},this.rules[8].opcodes=[],this.rules[8].opcodes[0]={type:1,children:[1,2,3,6]},this.rules[8].opcodes[1]={type:4,index:11},this.rules[8].opcodes[2]={type:6,string:[39]},this.rules[8].opcodes[3]={type:2,children:[4,5]},this.rules[8].opcodes[4]={type:4,index:10},this.rules[8].opcodes[5]={type:6,string:[34]},this.rules[8].opcodes[6]={type:2,children:[7,8]},this.rules[8].opcodes[7]={type:4,index:10},this.rules[8].opcodes[8]={type:4,index:12},this.rules[9].opcodes=[],this.rules[9].opcodes[0]={type:1,children:[1,2,3,6]},this.rules[9].opcodes[1]={type:4,index:11},this.rules[9].opcodes[2]={type:6,string:[34]},this.rules[9].opcodes[3]={type:2,children:[4,5]},this.rules[9].opcodes[4]={type:4,index:10},this.rules[9].opcodes[5]={type:6,string:[39]},this.rules[9].opcodes[6]={type:2,children:[7,8]},this.rules[9].opcodes[7]={type:4,index:10},this.rules[9].opcodes[8]={type:4,index:12},this.rules[10].opcodes=[],this.rules[10].opcodes[0]={type:6,string:[92]},this.rules[11].opcodes=[],this.rules[11].opcodes[0]={type:1,children:[1,2,3,4,5]},this.rules[11].opcodes[1]={type:5,min:32,max:33},this.rules[11].opcodes[2]={type:5,min:35,max:38},this.rules[11].opcodes[3]={type:5,min:40,max:91},this.rules[11].opcodes[4]={type:5,min:93,max:55295},this.rules[11].opcodes[5]={type:5,min:57344,max:1114111},this.rules[12].opcodes=[],this.rules[12].opcodes[0]={type:1,children:[1,2,3,4,5,6,7,8]},this.rules[12].opcodes[1]={type:6,string:[98]},this.rules[12].opcodes[2]={type:6,string:[102]},this.rules[12].opcodes[3]={type:6,string:[110]},this.rules[12].opcodes[4]={type:6,string:[114]},this.rules[12].opcodes[5]={type:6,string:[116]},this.rules[12].opcodes[6]={type:7,string:[47]},this.rules[12].opcodes[7]={type:7,string:[92]},this.rules[12].opcodes[8]={type:2,children:[9,10]},this.rules[12].opcodes[9]={type:6,string:[117]},this.rules[12].opcodes[10]={type:4,index:13},this.rules[13].opcodes=[],this.rules[13].opcodes[0]={type:1,children:[1,2]},this.rules[13].opcodes[1]={type:4,index:14},this.rules[13].opcodes[2]={type:2,children:[3,4,5,6]},this.rules[13].opcodes[3]={type:4,index:15},this.rules[13].opcodes[4]={type:7,string:[92]},this.rules[13].opcodes[5]={type:6,string:[117]},this.rules[13].opcodes[6]={type:4,index:16},this.rules[14].opcodes=[],this.rules[14].opcodes[0]={type:1,children:[1,11]},this.rules[14].opcodes[1]={type:2,children:[2,9]},this.rules[14].opcodes[2]={type:1,children:[3,4,5,6,7,8]},this.rules[14].opcodes[3]={type:4,index:65},this.rules[14].opcodes[4]={type:7,string:[97]},this.rules[14].opcodes[5]={type:7,string:[98]},this.rules[14].opcodes[6]={type:7,string:[99]},this.rules[14].opcodes[7]={type:7,string:[101]},this.rules[14].opcodes[8]={type:7,string:[102]},this.rules[14].opcodes[9]={type:3,min:3,max:3},this.rules[14].opcodes[10]={type:4,index:17},this.rules[14].opcodes[11]={type:2,children:[12,13,14]},this.rules[14].opcodes[12]={type:7,string:[100]},this.rules[14].opcodes[13]={type:5,min:48,max:55},this.rules[14].opcodes[14]={type:3,min:2,max:2},this.rules[14].opcodes[15]={type:4,index:17},this.rules[15].opcodes=[],this.rules[15].opcodes[0]={type:2,children:[1,2,7]},this.rules[15].opcodes[1]={type:7,string:[100]},this.rules[15].opcodes[2]={type:1,children:[3,4,5,6]},this.rules[15].opcodes[3]={type:7,string:[56]},this.rules[15].opcodes[4]={type:7,string:[57]},this.rules[15].opcodes[5]={type:7,string:[97]},this.rules[15].opcodes[6]={type:7,string:[98]},this.rules[15].opcodes[7]={type:3,min:2,max:2},this.rules[15].opcodes[8]={type:4,index:17},this.rules[16].opcodes=[],this.rules[16].opcodes[0]={type:2,children:[1,2,7]},this.rules[16].opcodes[1]={type:7,string:[100]},this.rules[16].opcodes[2]={type:1,children:[3,4,5,6]},this.rules[16].opcodes[3]={type:7,string:[99]},this.rules[16].opcodes[4]={type:7,string:[100]},this.rules[16].opcodes[5]={type:7,string:[101]},this.rules[16].opcodes[6]={type:7,string:[102]},this.rules[16].opcodes[7]={type:3,min:2,max:2},this.rules[16].opcodes[8]={type:4,index:17},this.rules[17].opcodes=[],this.rules[17].opcodes[0]={type:1,children:[1,2,3,4,5,6,7]},this.rules[17].opcodes[1]={type:4,index:65},this.rules[17].opcodes[2]={type:7,string:[97]},this.rules[17].opcodes[3]={type:7,string:[98]},this.rules[17].opcodes[4]={type:7,string:[99]},this.rules[17].opcodes[5]={type:7,string:[100]},this.rules[17].opcodes[6]={type:7,string:[101]},this.rules[17].opcodes[7]={type:7,string:[102]},this.rules[18].opcodes=[],this.rules[18].opcodes[0]={type:7,string:[42]},this.rules[19].opcodes=[],this.rules[19].opcodes[0]={type:4,index:20},this.rules[20].opcodes=[],this.rules[20].opcodes[0]={type:1,children:[1,2]},this.rules[20].opcodes[1]={type:7,string:[48]},this.rules[20].opcodes[2]={type:2,children:[3,5,6]},this.rules[20].opcodes[3]={type:3,min:0,max:1},this.rules[20].opcodes[4]={type:7,string:[45]},this.rules[20].opcodes[5]={type:4,index:21},this.rules[20].opcodes[6]={type:3,min:0,max:1/0},this.rules[20].opcodes[7]={type:4,index:65},this.rules[21].opcodes=[],this.rules[21].opcodes[0]={type:5,min:49,max:57},this.rules[22].opcodes=[],this.rules[22].opcodes[0]={type:2,children:[1,5,6,7,11]},this.rules[22].opcodes[1]={type:3,min:0,max:1},this.rules[22].opcodes[2]={type:2,children:[3,4]},this.rules[22].opcodes[3]={type:4,index:23},this.rules[22].opcodes[4]={type:4,index:3},this.rules[22].opcodes[5]={type:4,index:85},this.rules[22].opcodes[6]={type:4,index:3},this.rules[22].opcodes[7]={type:3,min:0,max:1},this.rules[22].opcodes[8]={type:2,children:[9,10]},this.rules[22].opcodes[9]={type:4,index:24},this.rules[22].opcodes[10]={type:4,index:3},this.rules[22].opcodes[11]={type:3,min:0,max:1},this.rules[22].opcodes[12]={type:2,children:[13,14]},this.rules[22].opcodes[13]={type:4,index:85},this.rules[22].opcodes[14]={type:3,min:0,max:1},this.rules[22].opcodes[15]={type:2,children:[16,17]},this.rules[22].opcodes[16]={type:4,index:3},this.rules[22].opcodes[17]={type:4,index:25},this.rules[23].opcodes=[],this.rules[23].opcodes[0]={type:4,index:20},this.rules[24].opcodes=[],this.rules[24].opcodes[0]={type:4,index:20},this.rules[25].opcodes=[],this.rules[25].opcodes[0]={type:4,index:20},this.rules[26].opcodes=[],this.rules[26].opcodes[0]={type:2,children:[1,2,3]},this.rules[26].opcodes[1]={type:4,index:88},this.rules[26].opcodes[2]={type:4,index:3},this.rules[26].opcodes[3]={type:4,index:27},this.rules[27].opcodes=[],this.rules[27].opcodes[0]={type:4,index:28},this.rules[28].opcodes=[],this.rules[28].opcodes[0]={type:2,children:[1,2]},this.rules[28].opcodes[1]={type:4,index:29},this.rules[28].opcodes[2]={type:3,min:0,max:1/0},this.rules[28].opcodes[3]={type:2,children:[4,5,6,7]},this.rules[28].opcodes[4]={type:4,index:3},this.rules[28].opcodes[5]={type:4,index:89},this.rules[28].opcodes[6]={type:4,index:3},this.rules[28].opcodes[7]={type:4,index:29},this.rules[29].opcodes=[],this.rules[29].opcodes[0]={type:2,children:[1,2]},this.rules[29].opcodes[1]={type:4,index:30},this.rules[29].opcodes[2]={type:3,min:0,max:1/0},this.rules[29].opcodes[3]={type:2,children:[4,5,6,7]},this.rules[29].opcodes[4]={type:4,index:3},this.rules[29].opcodes[5]={type:4,index:90},this.rules[29].opcodes[6]={type:4,index:3},this.rules[29].opcodes[7]={type:4,index:30},this.rules[30].opcodes=[],this.rules[30].opcodes[0]={type:1,children:[1,2,3]},this.rules[30].opcodes[1]={type:4,index:31},this.rules[30].opcodes[2]={type:4,index:37},this.rules[30].opcodes[3]={type:4,index:33},this.rules[31].opcodes=[],this.rules[31].opcodes[0]={type:2,children:[1,5,6,7,8,9]},this.rules[31].opcodes[1]={type:3,min:0,max:1},this.rules[31].opcodes[2]={type:2,children:[3,4]},this.rules[31].opcodes[3]={type:4,index:32},this.rules[31].opcodes[4]={type:4,index:3},this.rules[31].opcodes[5]={type:4,index:82},this.rules[31].opcodes[6]={type:4,index:3},this.rules[31].opcodes[7]={type:4,index:27},this.rules[31].opcodes[8]={type:4,index:3},this.rules[31].opcodes[9]={type:4,index:83},this.rules[32].opcodes=[],this.rules[32].opcodes[0]={type:7,string:[33]},this.rules[33].opcodes=[],this.rules[33].opcodes[0]={type:2,children:[1,5]},this.rules[33].opcodes[1]={type:3,min:0,max:1},this.rules[33].opcodes[2]={type:2,children:[3,4]},this.rules[33].opcodes[3]={type:4,index:32},this.rules[33].opcodes[4]={type:4,index:3},this.rules[33].opcodes[5]={type:1,children:[6,7]},this.rules[33].opcodes[6]={type:4,index:34},this.rules[33].opcodes[7]={type:4,index:57},this.rules[34].opcodes=[],this.rules[34].opcodes[0]={type:1,children:[1,2]},this.rules[34].opcodes[1]={type:4,index:35},this.rules[34].opcodes[2]={type:4,index:0},this.rules[35].opcodes=[],this.rules[35].opcodes[0]={type:2,children:[1,2]},this.rules[35].opcodes[1]={type:4,index:36},this.rules[35].opcodes[2]={type:4,index:1},this.rules[36].opcodes=[],this.rules[36].opcodes[0]={type:7,string:[64]},this.rules[37].opcodes=[],this.rules[37].opcodes[0]={type:2,children:[1,2,3,4,5]},this.rules[37].opcodes[1]={type:4,index:39},this.rules[37].opcodes[2]={type:4,index:3},this.rules[37].opcodes[3]={type:4,index:40},this.rules[37].opcodes[4]={type:4,index:3},this.rules[37].opcodes[5]={type:4,index:39},this.rules[38].opcodes=[],this.rules[38].opcodes[0]={type:1,children:[1,2,3,4,5]},this.rules[38].opcodes[1]={type:4,index:47},this.rules[38].opcodes[2]={type:4,index:7},this.rules[38].opcodes[3]={type:4,index:50},this.rules[38].opcodes[4]={type:4,index:51},this.rules[38].opcodes[5]={type:4,index:52},this.rules[39].opcodes=[],this.rules[39].opcodes[0]={type:1,children:[1,2,3]},this.rules[39].opcodes[1]={type:4,index:41},this.rules[39].opcodes[2]={type:4,index:57},this.rules[39].opcodes[3]={type:4,index:38},this.rules[40].opcodes=[],this.rules[40].opcodes[0]={type:1,children:[1,2,3,4,5,6]},this.rules[40].opcodes[1]={type:7,string:[61,61]},this.rules[40].opcodes[2]={type:7,string:[33,61]},this.rules[40].opcodes[3]={type:7,string:[60,61]},this.rules[40].opcodes[4]={type:7,string:[62,61]},this.rules[40].opcodes[5]={type:7,string:[60]},this.rules[40].opcodes[6]={type:7,string:[62]},this.rules[41].opcodes=[],this.rules[41].opcodes[0]={type:1,children:[1,2]},this.rules[41].opcodes[1]={type:4,index:42},this.rules[41].opcodes[2]={type:4,index:43},this.rules[42].opcodes=[],this.rules[42].opcodes[0]={type:2,children:[1,2]},this.rules[42].opcodes[1]={type:4,index:36},this.rules[42].opcodes[2]={type:4,index:44},this.rules[43].opcodes=[],this.rules[43].opcodes[0]={type:2,children:[1,2]},this.rules[43].opcodes[1]={type:4,index:4},this.rules[43].opcodes[2]={type:4,index:44},this.rules[44].opcodes=[],this.rules[44].opcodes[0]={type:3,min:0,max:1/0},this.rules[44].opcodes[1]={type:2,children:[2,3]},this.rules[44].opcodes[2]={type:4,index:3},this.rules[44].opcodes[3]={type:1,children:[4,5]},this.rules[44].opcodes[4]={type:4,index:45},this.rules[44].opcodes[5]={type:4,index:46},this.rules[45].opcodes=[],this.rules[45].opcodes[0]={type:1,children:[1,5]},this.rules[45].opcodes[1]={type:2,children:[2,3,4]},this.rules[45].opcodes[2]={type:4,index:80},this.rules[45].opcodes[3]={type:4,index:6},this.rules[45].opcodes[4]={type:4,index:81},this.rules[45].opcodes[5]={type:2,children:[6,7]},this.rules[45].opcodes[6]={type:4,index:78},this.rules[45].opcodes[7]={type:4,index:62},this.rules[46].opcodes=[],this.rules[46].opcodes[0]={type:2,children:[1,2,3]},this.rules[46].opcodes[1]={type:4,index:80},this.rules[46].opcodes[2]={type:4,index:19},this.rules[46].opcodes[3]={type:4,index:81},this.rules[47].opcodes=[],this.rules[47].opcodes[0]={type:2,children:[1,4,6]},this.rules[47].opcodes[1]={type:1,children:[2,3]},this.rules[47].opcodes[2]={type:4,index:20},this.rules[47].opcodes[3]={type:7,string:[45,48]},this.rules[47].opcodes[4]={type:3,min:0,max:1},this.rules[47].opcodes[5]={type:4,index:48},this.rules[47].opcodes[6]={type:3,min:0,max:1},this.rules[47].opcodes[7]={type:4,index:49},this.rules[48].opcodes=[],this.rules[48].opcodes[0]={type:2,children:[1,2]},this.rules[48].opcodes[1]={type:7,string:[46]},this.rules[48].opcodes[2]={type:3,min:1,max:1/0},this.rules[48].opcodes[3]={type:4,index:65},this.rules[49].opcodes=[],this.rules[49].opcodes[0]={type:2,children:[1,2,6]},this.rules[49].opcodes[1]={type:7,string:[101]},this.rules[49].opcodes[2]={type:3,min:0,max:1},this.rules[49].opcodes[3]={type:1,children:[4,5]},this.rules[49].opcodes[4]={type:7,string:[45]},this.rules[49].opcodes[5]={type:7,string:[43]},this.rules[49].opcodes[6]={type:3,min:1,max:1/0},this.rules[49].opcodes[7]={type:4,index:65},this.rules[50].opcodes=[],this.rules[50].opcodes[0]={type:6,string:[116,114,117,101]},this.rules[51].opcodes=[],this.rules[51].opcodes[0]={type:6,string:[102,97,108,115,101]},this.rules[52].opcodes=[],this.rules[52].opcodes[0]={type:6,string:[110,117,108,108]},this.rules[53].opcodes=[],this.rules[53].opcodes[0]={type:2,children:[1,2]},this.rules[53].opcodes[1]={type:4,index:54},this.rules[53].opcodes[2]={type:3,min:0,max:1/0},this.rules[53].opcodes[3]={type:4,index:55},this.rules[54].opcodes=[],this.rules[54].opcodes[0]={type:4,index:56},this.rules[55].opcodes=[],this.rules[55].opcodes[0]={type:1,children:[1,2,3]},this.rules[55].opcodes[1]={type:4,index:54},this.rules[55].opcodes[2]={type:7,string:[95]},this.rules[55].opcodes[3]={type:4,index:65},this.rules[56].opcodes=[],this.rules[56].opcodes[0]={type:5,min:97,max:122},this.rules[57].opcodes=[],this.rules[57].opcodes[0]={type:2,children:[1,2,3,4,13,14]},this.rules[57].opcodes[1]={type:4,index:53},this.rules[57].opcodes[2]={type:4,index:82},this.rules[57].opcodes[3]={type:4,index:3},this.rules[57].opcodes[4]={type:3,min:0,max:1},this.rules[57].opcodes[5]={type:2,children:[6,7]},this.rules[57].opcodes[6]={type:4,index:58},this.rules[57].opcodes[7]={type:3,min:0,max:1/0},this.rules[57].opcodes[8]={type:2,children:[9,10,11,12]},this.rules[57].opcodes[9]={type:4,index:3},this.rules[57].opcodes[10]={type:4,index:84},this.rules[57].opcodes[11]={type:4,index:3},this.rules[57].opcodes[12]={type:4,index:58},this.rules[57].opcodes[13]={type:4,index:3},this.rules[57].opcodes[14]={type:4,index:83},this.rules[58].opcodes=[],this.rules[58].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[58].opcodes[1]={type:4,index:27},this.rules[58].opcodes[2]={type:4,index:34},this.rules[58].opcodes[3]={type:4,index:57},this.rules[58].opcodes[4]={type:4,index:38},this.rules[59].opcodes=[],this.rules[59].opcodes[0]={type:1,children:[1,2]},this.rules[59].opcodes[1]={type:4,index:60},this.rules[59].opcodes[2]={type:4,index:67},this.rules[60].opcodes=[],this.rules[60].opcodes[0]={type:1,children:[1,2]},this.rules[60].opcodes[1]={type:4,index:61},this.rules[60].opcodes[2]={type:2,children:[3,4]},this.rules[60].opcodes[3]={type:4,index:78},this.rules[60].opcodes[4]={type:1,children:[5,6]},this.rules[60].opcodes[5]={type:4,index:18},this.rules[60].opcodes[6]={type:4,index:62},this.rules[61].opcodes=[],this.rules[61].opcodes[0]={type:2,children:[1,2,3,4,10,11]},this.rules[61].opcodes[1]={type:4,index:80},this.rules[61].opcodes[2]={type:4,index:3},this.rules[61].opcodes[3]={type:4,index:5},this.rules[61].opcodes[4]={type:3,min:0,max:1/0},this.rules[61].opcodes[5]={type:2,children:[6,7,8,9]},this.rules[61].opcodes[6]={type:4,index:3},this.rules[61].opcodes[7]={type:4,index:84},this.rules[61].opcodes[8]={type:4,index:3},this.rules[61].opcodes[9]={type:4,index:5},this.rules[61].opcodes[10]={type:4,index:3},this.rules[61].opcodes[11]={type:4,index:81},this.rules[62].opcodes=[],this.rules[62].opcodes[0]={type:2,children:[1,2]},this.rules[62].opcodes[1]={type:4,index:63},this.rules[62].opcodes[2]={type:3,min:0,max:1/0},this.rules[62].opcodes[3]={type:4,index:64},this.rules[63].opcodes=[],this.rules[63].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[63].opcodes[1]={type:4,index:66},this.rules[63].opcodes[2]={type:7,string:[95]},this.rules[63].opcodes[3]={type:5,min:128,max:55295},this.rules[63].opcodes[4]={type:5,min:57344,max:1114111},this.rules[64].opcodes=[],this.rules[64].opcodes[0]={type:1,children:[1,2]},this.rules[64].opcodes[1]={type:4,index:63},this.rules[64].opcodes[2]={type:4,index:65},this.rules[65].opcodes=[],this.rules[65].opcodes[0]={type:5,min:48,max:57},this.rules[66].opcodes=[],this.rules[66].opcodes[0]={type:1,children:[1,2]},this.rules[66].opcodes[1]={type:5,min:65,max:90},this.rules[66].opcodes[2]={type:5,min:97,max:122},this.rules[67].opcodes=[],this.rules[67].opcodes[0]={type:2,children:[1,2]},this.rules[67].opcodes[1]={type:4,index:79},this.rules[67].opcodes[2]={type:1,children:[3,4,5]},this.rules[67].opcodes[3]={type:4,index:61},this.rules[67].opcodes[4]={type:4,index:18},this.rules[67].opcodes[5]={type:4,index:62},this.rules[68].opcodes=[],this.rules[68].opcodes[0]={type:2,children:[1,2]},this.rules[68].opcodes[1]={type:4,index:4},this.rules[68].opcodes[2]={type:3,min:0,max:1/0},this.rules[68].opcodes[3]={type:4,index:69},this.rules[69].opcodes=[],this.rules[69].opcodes[0]={type:2,children:[1,2,3]},this.rules[69].opcodes[1]={type:4,index:80},this.rules[69].opcodes[2]={type:4,index:70},this.rules[69].opcodes[3]={type:4,index:81},this.rules[70].opcodes=[],this.rules[70].opcodes[0]={type:1,children:[1,2]},this.rules[70].opcodes[1]={type:4,index:71},this.rules[70].opcodes[2]={type:4,index:77},this.rules[71].opcodes=[],this.rules[71].opcodes[0]={type:2,children:[1,2,4]},this.rules[71].opcodes[1]={type:4,index:87},this.rules[71].opcodes[2]={type:3,min:0,max:1/0},this.rules[71].opcodes[3]={type:4,index:72},this.rules[71].opcodes[4]={type:4,index:87},this.rules[72].opcodes=[],this.rules[72].opcodes[0]={type:1,children:[1,2]},this.rules[72].opcodes[1]={type:4,index:73},this.rules[72].opcodes[2]={type:2,children:[3,4]},this.rules[72].opcodes[3]={type:4,index:10},this.rules[72].opcodes[4]={type:4,index:74},this.rules[73].opcodes=[],this.rules[73].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[73].opcodes[1]={type:5,min:32,max:38},this.rules[73].opcodes[2]={type:5,min:40,max:91},this.rules[73].opcodes[3]={type:5,min:93,max:55295},this.rules[73].opcodes[4]={type:5,min:57344,max:1114111},this.rules[74].opcodes=[],this.rules[74].opcodes[0]={type:1,children:[1,2,3,4,5,6,7,8]},this.rules[74].opcodes[1]={type:6,string:[98]},this.rules[74].opcodes[2]={type:6,string:[102]},this.rules[74].opcodes[3]={type:6,string:[110]},this.rules[74].opcodes[4]={type:6,string:[114]},this.rules[74].opcodes[5]={type:6,string:[116]},this.rules[74].opcodes[6]={type:7,string:[39]},this.rules[74].opcodes[7]={type:7,string:[92]},this.rules[74].opcodes[8]={type:2,children:[9,10]},this.rules[74].opcodes[9]={type:6,string:[117]},this.rules[74].opcodes[10]={type:4,index:75},this.rules[75].opcodes=[],this.rules[75].opcodes[0]={type:2,children:[1,2,3]},this.rules[75].opcodes[1]={type:7,string:[48]},this.rules[75].opcodes[2]={type:7,string:[48]},this.rules[75].opcodes[3]={type:1,children:[4,7,10,13]},this.rules[75].opcodes[4]={type:2,children:[5,6]},this.rules[75].opcodes[5]={type:7,string:[48]},this.rules[75].opcodes[6]={type:5,min:48,max:55},this.rules[75].opcodes[7]={type:2,children:[8,9]},this.rules[75].opcodes[8]={type:7,string:[48]},this.rules[75].opcodes[9]={type:6,string:[98]},this.rules[75].opcodes[10]={type:2,children:[11,12]},this.rules[75].opcodes[11]={type:7,string:[48]},this.rules[75].opcodes[12]={type:5,min:101,max:102},this.rules[75].opcodes[13]={type:2,children:[14,15]},this.rules[75].opcodes[14]={type:7,string:[49]},this.rules[75].opcodes[15]={type:4,index:76},this.rules[76].opcodes=[],this.rules[76].opcodes[0]={type:1,children:[1,2]},this.rules[76].opcodes[1]={type:4,index:65},this.rules[76].opcodes[2]={type:5,min:97,max:102},this.rules[77].opcodes=[],this.rules[77].opcodes[0]={type:1,children:[1,2]},this.rules[77].opcodes[1]={type:7,string:[48]},this.rules[77].opcodes[2]={type:2,children:[3,4]},this.rules[77].opcodes[3]={type:4,index:21},this.rules[77].opcodes[4]={type:3,min:0,max:1/0},this.rules[77].opcodes[5]={type:4,index:65},this.rules[78].opcodes=[],this.rules[78].opcodes[0]={type:7,string:[46]},this.rules[79].opcodes=[],this.rules[79].opcodes[0]={type:7,string:[46,46]},this.rules[80].opcodes=[],this.rules[80].opcodes[0]={type:7,string:[91]},this.rules[81].opcodes=[],this.rules[81].opcodes[0]={type:7,string:[93]},this.rules[82].opcodes=[],this.rules[82].opcodes[0]={type:7,string:[40]},this.rules[83].opcodes=[],this.rules[83].opcodes[0]={type:7,string:[41]},this.rules[84].opcodes=[],this.rules[84].opcodes[0]={type:7,string:[44]},this.rules[85].opcodes=[],this.rules[85].opcodes[0]={type:7,string:[58]},this.rules[86].opcodes=[],this.rules[86].opcodes[0]={type:6,string:[34]},this.rules[87].opcodes=[],this.rules[87].opcodes[0]={type:6,string:[39]},this.rules[88].opcodes=[],this.rules[88].opcodes[0]={type:7,string:[63]},this.rules[89].opcodes=[],this.rules[89].opcodes[0]={type:7,string:[124,124]},this.rules[90].opcodes=[],this.rules[90].opcodes[0]={type:7,string:[38,38]},this.toString=function(){let e="";return e+="; JSONPath: Query Expressions for JSON\n",e+="; https://www.rfc-editor.org/rfc/rfc9535\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.1.1\n",e+="jsonpath-query = root-identifier segments\n",e+="segments = *(S segment)\n",e+="\n",e+="B = %x20 / ; Space\n",e+=" %x09 / ; Horizontal tab\n",e+=" %x0A / ; Line feed or New line\n",e+=" %x0D ; Carriage return\n",e+="S = *B ; optional blank space\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.2.1\n",e+='root-identifier = "$"\n',e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3\n",e+="selector = name-selector /\n",e+=" wildcard-selector /\n",e+=" slice-selector /\n",e+=" index-selector /\n",e+=" filter-selector\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.1.1\n",e+="name-selector = string-literal\n",e+="\n",e+='string-literal = dquote *double-quoted dquote / ; "string", MODIFICATION: surrogate text rule used\n',e+=" squote *single-quoted squote ; 'string', MODIFICATION: surrogate text rule used\n",e+="\n",e+="double-quoted = unescaped /\n",e+=" %x27 / ; '\n",e+=' ESC %x22 / ; \\"\n',e+=" ESC escapable\n",e+="\n",e+="single-quoted = unescaped /\n",e+=' %x22 / ; "\n',e+=" ESC %x27 / ; \\'\n",e+=" ESC escapable\n",e+="\n",e+="ESC = %x5C ; \\ backslash\n",e+="\n",e+="unescaped = %x20-21 / ; see RFC 8259\n",e+=' ; omit 0x22 "\n',e+=" %x23-26 /\n",e+=" ; omit 0x27 '\n",e+=" %x28-5B /\n",e+=" ; omit 0x5C \\\n",e+=" %x5D-D7FF /\n",e+=" ; skip surrogate code points\n",e+=" %xE000-10FFFF\n",e+="\n",e+="escapable = %x62 / ; b BS backspace U+0008\n",e+=" %x66 / ; f FF form feed U+000C\n",e+=" %x6E / ; n LF line feed U+000A\n",e+=" %x72 / ; r CR carriage return U+000D\n",e+=" %x74 / ; t HT horizontal tab U+0009\n",e+=' "/" / ; / slash (solidus) U+002F\n',e+=' "\\" / ; \\ backslash (reverse solidus) U+005C\n',e+=" (%x75 hexchar) ; uXXXX U+XXXX\n",e+="\n",e+="hexchar = non-surrogate /\n",e+=' (high-surrogate "\\" %x75 low-surrogate)\n',e+='non-surrogate = ((DIGIT / "A"/"B"/"C" / "E"/"F") 3HEXDIG) /\n',e+=' ("D" %x30-37 2HEXDIG )\n',e+='high-surrogate = "D" ("8"/"9"/"A"/"B") 2HEXDIG\n',e+='low-surrogate = "D" ("C"/"D"/"E"/"F") 2HEXDIG\n',e+="\n",e+='HEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"\n',e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.2.1\n",e+='wildcard-selector = "*"\n',e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.3.1\n",e+="index-selector = int ; decimal integer\n",e+="\n",e+='int = "0" /\n',e+=' (["-"] DIGIT1 *DIGIT) ; - optional\n',e+="DIGIT1 = %x31-39 ; 1-9 non-zero digit\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.4.1\n",e+="slice-selector = [start S] colon S [end S] [colon [S step ]] ; MODIFICATION: surrogate text rule used\n",e+="\n",e+="start = int ; included in selection\n",e+="end = int ; not included in selection\n",e+="step = int ; default: 1\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.5.1\n",e+="filter-selector = questionmark S logical-expr ; MODIFICATION: surrogate text rule used\n",e+="\n",e+="logical-expr = logical-or-expr\n",e+="logical-or-expr = logical-and-expr *(S disjunction S logical-and-expr) ; MODIFICATION: surrogate text rule used\n",e+=" ; disjunction\n",e+=" ; binds less tightly than conjunction\n",e+="logical-and-expr = basic-expr *(S conjunction S basic-expr) ; MODIFICATION: surrogate text rule used\n",e+=" ; conjunction\n",e+=" ; binds more tightly than disjunction\n",e+="\n",e+="basic-expr = paren-expr /\n",e+=" comparison-expr /\n",e+=" test-expr\n",e+="\n",e+="paren-expr = [logical-not-op S] left-paren S logical-expr S right-paren ; MODIFICATION: surrogate text rule used\n",e+=" ; parenthesized expression\n",e+='logical-not-op = "!" ; logical NOT operator\n',e+="\n",e+="test-expr = [logical-not-op S]\n",e+=" (filter-query / ; existence/non-existence\n",e+=" function-expr) ; LogicalType or NodesType\n",e+="filter-query = rel-query / jsonpath-query\n",e+="rel-query = current-node-identifier segments\n",e+='current-node-identifier = "@"\n',e+="\n",e+="comparison-expr = comparable S comparison-op S comparable\n",e+="literal = number / string-literal /\n",e+=" true / false / null\n",e+="comparable = singular-query / ; singular query value\n",e+=" function-expr / ; ValueType\n",e+=" literal\n",e+=" ; MODIFICATION: https://www.rfc-editor.org/errata/eid8352\n",e+='comparison-op = "==" / "!=" /\n',e+=' "<=" / ">=" /\n',e+=' "<" / ">"\n',e+="\n",e+="singular-query = rel-singular-query / abs-singular-query\n",e+="rel-singular-query = current-node-identifier singular-query-segments\n",e+="abs-singular-query = root-identifier singular-query-segments\n",e+="singular-query-segments = *(S (name-segment / index-segment))\n",e+="name-segment = (left-bracket name-selector right-bracket) / ; MODIFICATION: surrogate text rule used\n",e+=" (dot-prefix member-name-shorthand) ; MODIFICATION: surrogate text rule used\n",e+="index-segment = left-bracket index-selector right-bracket ; MODIFICATION: surrogate text rule used\n",e+="\n",e+='number = (int / "-0") [ frac ] [ exp ] ; decimal number\n',e+='frac = "." 1*DIGIT ; decimal fraction\n',e+='exp = "e" [ "-" / "+" ] 1*DIGIT ; decimal exponent\n',e+="true = %x74.72.75.65 ; true\n",e+="false = %x66.61.6c.73.65 ; false\n",e+="null = %x6e.75.6c.6c ; null\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.4\n",e+="function-name = function-name-first *function-name-char\n",e+="function-name-first = LCALPHA\n",e+='function-name-char = function-name-first / "_" / DIGIT\n',e+='LCALPHA = %x61-7A ; "a".."z"\n',e+="\n",e+="function-expr = function-name left-paren S [function-argument ; MODIFICATION: surrogate text rule used\n",e+=" *(S comma S function-argument)] S right-paren ; MODIFICATION: surrogate text rule used\n",e+="function-argument = logical-expr / ; MODIFICATION: https://www.rfc-editor.org/errata/eid8343\n",e+=" filter-query / ; (includes singular-query)\n",e+=" function-expr /\n",e+=" literal\n",e+="\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.5\n",e+="segment = child-segment / descendant-segment\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.1.1\n",e+="child-segment = bracketed-selection /\n",e+=" (dot-prefix ; MODIFICATION: surrogate text rule used\n",e+=" (wildcard-selector /\n",e+=" member-name-shorthand))\n",e+="\n",e+="bracketed-selection = left-bracket S selector *(S comma S selector) S right-bracket\n",e+=" ; MODIFICATION: surrogate text rule used\n",e+="\n",e+="member-name-shorthand = name-first *name-char\n",e+="name-first = ALPHA /\n",e+=' "_" /\n',e+=" %x80-D7FF /\n",e+=" ; skip surrogate code points\n",e+=" %xE000-10FFFF\n",e+="name-char = name-first / DIGIT\n",e+="\n",e+="DIGIT = %x30-39 ; 0-9\n",e+="ALPHA = %x41-5A / %x61-7A ; A-Z / a-z\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.2.1\n",e+="descendant-segment = double-dot-prefix (bracketed-selection / ; MODIFICATION: surrogate text rule used\n",e+=" wildcard-selector /\n",e+=" member-name-shorthand)\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#name-normalized-paths\n",e+="normalized-path = root-identifier *(normal-index-segment)\n",e+="normal-index-segment = left-bracket normal-selector right-bracket ; MODIFICATION: surrogate text rule used\n",e+="normal-selector = normal-name-selector / normal-index-selector\n",e+="normal-name-selector = squote *normal-single-quoted squote ; 'string', MODIFICATION: surrogate text rule used\n",e+="normal-single-quoted = normal-unescaped /\n",e+=" ESC normal-escapable\n",e+="normal-unescaped = ; omit %x0-1F control codes\n",e+=" %x20-26 /\n",e+=" ; omit 0x27 '\n",e+=" %x28-5B /\n",e+=" ; omit 0x5C \\\n",e+=" %x5D-D7FF /\n",e+=" ; skip surrogate code points\n",e+=" %xE000-10FFFF\n",e+="\n",e+="normal-escapable = %x62 / ; b BS backspace U+0008\n",e+=" %x66 / ; f FF form feed U+000C\n",e+=" %x6E / ; n LF line feed U+000A\n",e+=" %x72 / ; r CR carriage return U+000D\n",e+=" %x74 / ; t HT horizontal tab U+0009\n",e+=" \"'\" / ; ' apostrophe U+0027\n",e+=' "\\" / ; \\ backslash (reverse solidus) U+005C\n',e+=" (%x75 normal-hexchar)\n",e+=" ; certain values u00xx U+00XX\n",e+='normal-hexchar = "0" "0"\n',e+=" (\n",e+=' ("0" %x30-37) / ; "00"-"07"\n',e+=" ; omit U+0008-U+000A BS HT LF\n",e+=' ("0" %x62) / ; "0b"\n',e+=" ; omit U+000C-U+000D FF CR\n",e+=' ("0" %x65-66) / ; "0e"-"0f"\n',e+=' ("1" normal-HEXDIG)\n',e+=" )\n",e+='normal-HEXDIG = DIGIT / %x61-66 ; "0"-"9", "a"-"f"\n',e+='normal-index-selector = "0" / (DIGIT1 *DIGIT)\n',e+=" ; non-negative decimal integer\n",e+="\n",e+="; Surrogate named rules\n",e+='dot-prefix = "."\n',e+='double-dot-prefix = ".."\n',e+='left-bracket = "["\n',e+='right-bracket = "]"\n',e+='left-paren = "("\n',e+='right-paren = ")"\n',e+='comma = ","\n',e+='colon = ":"\n',e+='dquote = %x22 ; "\n',e+="squote = %x27 ; '\n",e+='questionmark = "?"\n',e+='disjunction = "||"\n',e+='conjunction = "&&"\n','; JSONPath: Query Expressions for JSON\n; https://www.rfc-editor.org/rfc/rfc9535\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.1.1\njsonpath-query = root-identifier segments\nsegments = *(S segment)\n\nB = %x20 / ; Space\n %x09 / ; Horizontal tab\n %x0A / ; Line feed or New line\n %x0D ; Carriage return\nS = *B ; optional blank space\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.2.1\nroot-identifier = "$"\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3\nselector = name-selector /\n wildcard-selector /\n slice-selector /\n index-selector /\n filter-selector\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.1.1\nname-selector = string-literal\n\nstring-literal = dquote *double-quoted dquote / ; "string", MODIFICATION: surrogate text rule used\n squote *single-quoted squote ; \'string\', MODIFICATION: surrogate text rule used\n\ndouble-quoted = unescaped /\n %x27 / ; \'\n ESC %x22 / ; \\"\n ESC escapable\n\nsingle-quoted = unescaped /\n %x22 / ; "\n ESC %x27 / ; \\\'\n ESC escapable\n\nESC = %x5C ; \\ backslash\n\nunescaped = %x20-21 / ; see RFC 8259\n ; omit 0x22 "\n %x23-26 /\n ; omit 0x27 \'\n %x28-5B /\n ; omit 0x5C \\\n %x5D-D7FF /\n ; skip surrogate code points\n %xE000-10FFFF\n\nescapable = %x62 / ; b BS backspace U+0008\n %x66 / ; f FF form feed U+000C\n %x6E / ; n LF line feed U+000A\n %x72 / ; r CR carriage return U+000D\n %x74 / ; t HT horizontal tab U+0009\n "/" / ; / slash (solidus) U+002F\n "\\" / ; \\ backslash (reverse solidus) U+005C\n (%x75 hexchar) ; uXXXX U+XXXX\n\nhexchar = non-surrogate /\n (high-surrogate "\\" %x75 low-surrogate)\nnon-surrogate = ((DIGIT / "A"/"B"/"C" / "E"/"F") 3HEXDIG) /\n ("D" %x30-37 2HEXDIG )\nhigh-surrogate = "D" ("8"/"9"/"A"/"B") 2HEXDIG\nlow-surrogate = "D" ("C"/"D"/"E"/"F") 2HEXDIG\n\nHEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.2.1\nwildcard-selector = "*"\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.3.1\nindex-selector = int ; decimal integer\n\nint = "0" /\n (["-"] DIGIT1 *DIGIT) ; - optional\nDIGIT1 = %x31-39 ; 1-9 non-zero digit\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.4.1\nslice-selector = [start S] colon S [end S] [colon [S step ]] ; MODIFICATION: surrogate text rule used\n\nstart = int ; included in selection\nend = int ; not included in selection\nstep = int ; default: 1\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.5.1\nfilter-selector = questionmark S logical-expr ; MODIFICATION: surrogate text rule used\n\nlogical-expr = logical-or-expr\nlogical-or-expr = logical-and-expr *(S disjunction S logical-and-expr) ; MODIFICATION: surrogate text rule used\n ; disjunction\n ; binds less tightly than conjunction\nlogical-and-expr = basic-expr *(S conjunction S basic-expr) ; MODIFICATION: surrogate text rule used\n ; conjunction\n ; binds more tightly than disjunction\n\nbasic-expr = paren-expr /\n comparison-expr /\n test-expr\n\nparen-expr = [logical-not-op S] left-paren S logical-expr S right-paren ; MODIFICATION: surrogate text rule used\n ; parenthesized expression\nlogical-not-op = "!" ; logical NOT operator\n\ntest-expr = [logical-not-op S]\n (filter-query / ; existence/non-existence\n function-expr) ; LogicalType or NodesType\nfilter-query = rel-query / jsonpath-query\nrel-query = current-node-identifier segments\ncurrent-node-identifier = "@"\n\ncomparison-expr = comparable S comparison-op S comparable\nliteral = number / string-literal /\n true / false / null\ncomparable = singular-query / ; singular query value\n function-expr / ; ValueType\n literal\n ; MODIFICATION: https://www.rfc-editor.org/errata/eid8352\ncomparison-op = "==" / "!=" /\n "<=" / ">=" /\n "<" / ">"\n\nsingular-query = rel-singular-query / abs-singular-query\nrel-singular-query = current-node-identifier singular-query-segments\nabs-singular-query = root-identifier singular-query-segments\nsingular-query-segments = *(S (name-segment / index-segment))\nname-segment = (left-bracket name-selector right-bracket) / ; MODIFICATION: surrogate text rule used\n (dot-prefix member-name-shorthand) ; MODIFICATION: surrogate text rule used\nindex-segment = left-bracket index-selector right-bracket ; MODIFICATION: surrogate text rule used\n\nnumber = (int / "-0") [ frac ] [ exp ] ; decimal number\nfrac = "." 1*DIGIT ; decimal fraction\nexp = "e" [ "-" / "+" ] 1*DIGIT ; decimal exponent\ntrue = %x74.72.75.65 ; true\nfalse = %x66.61.6c.73.65 ; false\nnull = %x6e.75.6c.6c ; null\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.4\nfunction-name = function-name-first *function-name-char\nfunction-name-first = LCALPHA\nfunction-name-char = function-name-first / "_" / DIGIT\nLCALPHA = %x61-7A ; "a".."z"\n\nfunction-expr = function-name left-paren S [function-argument ; MODIFICATION: surrogate text rule used\n *(S comma S function-argument)] S right-paren ; MODIFICATION: surrogate text rule used\nfunction-argument = logical-expr / ; MODIFICATION: https://www.rfc-editor.org/errata/eid8343\n filter-query / ; (includes singular-query)\n function-expr /\n literal\n\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.5\nsegment = child-segment / descendant-segment\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.1.1\nchild-segment = bracketed-selection /\n (dot-prefix ; MODIFICATION: surrogate text rule used\n (wildcard-selector /\n member-name-shorthand))\n\nbracketed-selection = left-bracket S selector *(S comma S selector) S right-bracket\n ; MODIFICATION: surrogate text rule used\n\nmember-name-shorthand = name-first *name-char\nname-first = ALPHA /\n "_" /\n %x80-D7FF /\n ; skip surrogate code points\n %xE000-10FFFF\nname-char = name-first / DIGIT\n\nDIGIT = %x30-39 ; 0-9\nALPHA = %x41-5A / %x61-7A ; A-Z / a-z\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.2.1\ndescendant-segment = double-dot-prefix (bracketed-selection / ; MODIFICATION: surrogate text rule used\n wildcard-selector /\n member-name-shorthand)\n\n; https://www.rfc-editor.org/rfc/rfc9535#name-normalized-paths\nnormalized-path = root-identifier *(normal-index-segment)\nnormal-index-segment = left-bracket normal-selector right-bracket ; MODIFICATION: surrogate text rule used\nnormal-selector = normal-name-selector / normal-index-selector\nnormal-name-selector = squote *normal-single-quoted squote ; \'string\', MODIFICATION: surrogate text rule used\nnormal-single-quoted = normal-unescaped /\n ESC normal-escapable\nnormal-unescaped = ; omit %x0-1F control codes\n %x20-26 /\n ; omit 0x27 \'\n %x28-5B /\n ; omit 0x5C \\\n %x5D-D7FF /\n ; skip surrogate code points\n %xE000-10FFFF\n\nnormal-escapable = %x62 / ; b BS backspace U+0008\n %x66 / ; f FF form feed U+000C\n %x6E / ; n LF line feed U+000A\n %x72 / ; r CR carriage return U+000D\n %x74 / ; t HT horizontal tab U+0009\n "\'" / ; \' apostrophe U+0027\n "\\" / ; \\ backslash (reverse solidus) U+005C\n (%x75 normal-hexchar)\n ; certain values u00xx U+00XX\nnormal-hexchar = "0" "0"\n (\n ("0" %x30-37) / ; "00"-"07"\n ; omit U+0008-U+000A BS HT LF\n ("0" %x62) / ; "0b"\n ; omit U+000C-U+000D FF CR\n ("0" %x65-66) / ; "0e"-"0f"\n ("1" normal-HEXDIG)\n )\nnormal-HEXDIG = DIGIT / %x61-66 ; "0"-"9", "a"-"f"\nnormal-index-selector = "0" / (DIGIT1 *DIGIT)\n ; non-negative decimal integer\n\n; Surrogate named rules\ndot-prefix = "."\ndouble-dot-prefix = ".."\nleft-bracket = "["\nright-bracket = "]"\nleft-paren = "("\nright-paren = ")"\ncomma = ","\ncolon = ":"\ndquote = %x22 ; "\nsquote = %x27 ; \'\nquestionmark = "?"\ndisjunction = "||"\nconjunction = "&&"\n'}};const un=class extends ln{},pn=e=>{if(!Array.isArray(e))throw new un("Selectors must be an array, got: "+typeof e,{selectors:e});try{return`$${e.map(e=>{if("string"==typeof e)return`['${(e=>{if("string"!=typeof e)throw new TypeError("Selector must be a string");let t="";for(const s of e){const e=s.codePointAt(0);switch(e){case 8:t+="\\b";break;case 9:t+="\\t";break;case 10:t+="\\n";break;case 12:t+="\\f";break;case 13:t+="\\r";break;case 39:t+="\\'";break;case 92:t+="\\\\";break;default:t+=e<=31?`\\u${e.toString(16).padStart(4,"0")}`:s}}return t})(e)}']`;if("number"==typeof e){if(!Number.isSafeInteger(e)||e<0)throw new TypeError(`Index selector must be a non-negative safe integer, got: ${e}`);return`[${e}]`}throw new TypeError("Selector must be a string or non-negative integer, got: "+typeof e)}).join("")}`}catch(t){throw new un("Failed to compile normalized JSONPath",{cause:t,selectors:e})}},hn=(e,t,s,n)=>{const{realm:r}=e,{value:i}=s;if(r.isObject(t)&&r.hasProperty(t,i)){n(r.getProperty(t,i),i)}},dn=(e,t,s,n)=>{const{realm:r}=e,{value:i}=s;if(!r.isArray(t))return;const o=r.getLength(t),c=((e,t)=>e>=0?e:t+e)(i,o);if(c>=0&&c<o){n(r.getElement(t,c),c)}},mn=(e,t,s,n)=>{const{realm:r}=e;for(const[e,s]of r.entries(t))n(s,e)},fn=(e,t)=>e>=0?Math.min(e,t):Math.max(t+e,0),yn=(e,t,s,n)=>{const{realm:r}=e,{start:i,end:o,step:c}=s;if(!r.isArray(t))return;const a=((e,t,s,n)=>{const r=s??1;if(0===r)return null;let i,o;if(r>0){const s=0,r=n,c=null!==e?fn(e,n):s,a=null!==t?fn(t,n):r;i=Math.max(c,0),o=Math.min(a,n)}else{const s=n-1,r=-n-1,c=null!==e?e>=0?Math.min(e,n-1):Math.max(n+e,-1):s,a=null!==t?t>=0?Math.min(t,n-1):Math.max(n+t,-1):r;o=Math.min(c,n-1),i=Math.max(a,-1)}return{lower:i,upper:o,step:r}})(i,o,c,r.getLength(t));if(null===a)return;const{lower:l,upper:u,step:p}=a;if(p>0)for(let e=l;e<u;e+=p){n(r.getElement(t,e),e)}else for(let e=u;e>l;e+=p){n(r.getElement(t,e),e)}},gn=(e,t,s,n)=>n.value,xn=(e,t,s)=>{const{realm:n}=e,{selector:r}=s;switch(r.type){case"NameSelector":{const{value:e}=r;return n.isObject(t)&&n.hasProperty(t,e)?n.getProperty(t,e):void 0}case"IndexSelector":{const{value:e}=r;if(!n.isArray(t))return;const s=n.getLength(t),i=e>=0?e:s+e;return i>=0&&i<s?n.getElement(t,i):void 0}default:return}},bn=(e,t,s,n)=>{const{selectors:r}=s;for(const s of r)Cn(e,t,s,n)},vn=(e,t,s)=>{const n=[],r=e=>{n.push(e)},{selector:i}=s;switch(i.type){case"BracketedSelection":bn(e,t,i,r);break;case"NameSelector":case"WildcardSelector":case"IndexSelector":case"SliceSelector":case"FilterSelector":Cn(e,t,i,r)}return n},Sn=(e,t,s,n)=>{let r=s;for(const t of n){const s=[];if("DescendantSegment"===t.type){const n=r=>{const{realm:i}=e,o=vn(e,r,t);s.push(...o);for(const[,e]of i.entries(r))n(e)};for(const e of r)n(e)}else for(const n of r){const r=vn(e,n,t);s.push(...r)}r=s}return r},wn=(e,t,s,n)=>{const{query:r}=n;let i;switch(r.type){case"RelQuery":i=((e,t,s,n)=>{const{segments:r}=n;return 0===r.length?[s]:Sn(e,0,[s],r)})(e,0,s,r);break;case"JsonPathQuery":i=((e,t,s,n)=>{const{segments:r}=n;return 0===r.length?[t]:Sn(e,0,[t],r)})(e,t,0,r);break;default:i=[]}return o=i,Object.defineProperty(o,"_isNodelist",{value:!0,enumerable:!1,writable:!1}),o;var o};let En;const On=(e,t,s,n)=>{const{name:r,arguments:i}=n,o=e.functions[r];if("function"!=typeof o)return;const c=i.map(n=>((e,t,s,n)=>{switch(n.type){case"Literal":case"RelSingularQuery":case"AbsSingularQuery":case"FunctionExpr":return kn(e,t,s,n);case"FilterQuery":return wn(e,t,s,n);case"TestExpr":return"FilterQuery"===n.expression.type?wn(e,t,s,n.expression):"FunctionExpr"===n.expression.type?kn(e,t,s,n.expression):En(e,t,s,n);case"LogicalOrExpr":case"LogicalAndExpr":case"LogicalNotExpr":case"ComparisonExpr":return En(e,t,s,n);default:return}})(e,t,s,n));return o(e.realm,...c)},kn=(e,t,s,n)=>{switch(n.type){case"Literal":return gn(e,t,s,n);case"RelSingularQuery":return((e,t,s,n)=>{let r=s;for(const t of n.segments)if(r=xn(e,r,t),void 0===r)return;return r})(e,0,s,n);case"AbsSingularQuery":return((e,t,s,n)=>{let r=t;for(const t of n.segments)if(r=xn(e,r,t),void 0===r)return;return r})(e,t,0,n);case"FunctionExpr":return On(e,t,s,n);default:return}},An=(e,t,s,n)=>{const{left:r,op:i,right:o}=n,c=kn(e,t,s,r),a=kn(e,t,s,o);return e.realm.compare(c,i,a)},jn=e=>Array.isArray(e),Fn=(e,t,s,n)=>{switch(n.type){case"LogicalOrExpr":return!!Fn(e,t,s,n.left)||Fn(e,t,s,n.right);case"LogicalAndExpr":return!!Fn(e,t,s,n.left)&&Fn(e,t,s,n.right);case"LogicalNotExpr":return!Fn(e,t,s,n.expression);case"TestExpr":{const{expression:r}=n;if("FilterQuery"===r.type){return wn(e,t,s,r).length>0}if("FunctionExpr"===r.type){const n=On(e,t,s,r);return"boolean"==typeof n?n:void 0!==n&&(jn(n)?n.length>0:Boolean(n))}return!1}case"ComparisonExpr":return An(e,t,s,n);default:return!1}};En=Fn;const In=Fn,Pn=(e,t,s,n)=>{const{realm:r,root:i}=e,{expression:o}=s;for(const[s,c]of r.entries(t)){In(e,i,c,o)&&n(c,s)}},Cn=(e,t,s,n)=>{switch(s.type){case"NameSelector":hn(e,t,s,n);break;case"IndexSelector":dn(e,t,s,n);break;case"WildcardSelector":mn(e,t,s,n);break;case"SliceSelector":yn(e,t,s,n);break;case"FilterSelector":Pn(e,t,s,n)}};new Map;class Mn{node;key;index;parent;parentPath;inList;#e=!1;#t=!1;#s=!1;#n=!1;#r;#i=!1;constructor(e,t,s,n,r){this.node=e,this.parent=t,this.parentPath=s,this.key=n,this.index=r&&"number"==typeof n?n:void 0,this.inList=r}get shouldSkip(){return this.#e}get shouldStop(){return this.#t}get removed(){return this.#s}isRoot(){return null===this.parentPath}get depth(){let e=0,t=this.parentPath;for(;null!==t;)e+=1,t=t.parentPath;return e}getAncestry(){const e=[];let t=this.parentPath;for(;null!==t;)e.push(t),t=t.parentPath;return e}getAncestorNodes(){return this.getAncestry().map(e=>e.node)}getPathKeys(){const e=[];let t=this;for(;null!==t&&void 0!==t.key;){const{key:s,parent:n,parentPath:r}=t;if(is(n)&&"value"===s){if(!Zt(n.key))throw new TypeError("MemberElement.key must be a StringElement");e.unshift(n.key.toValue())}else ns(r?.node)&&"number"==typeof s&&e.unshift(s);t=t.parentPath}return e}formatPath(e="jsonpointer"){const t=this.getPathKeys();return 0===t.length?"jsonpath"===e?"$":"":"jsonpath"===e?pn(t):cn(t)}findParent(e){let t=this.parentPath;for(;null!==t;){if(e(t))return t;t=t.parentPath}return null}find(e){return e(this)?this:this.findParent(e)}skip(){this.#e=!0}stop(){this.#t=!0}replaceWith(e){this.#i&&console.warn("Warning: replaceWith() called on a stale Path. This path belongs to a node whose visit has already completed. The replacement will have no effect. To replace a parent node, do so from the parent's own visitor."),this.#n=!0,this.#r=e,this.node=e}remove(){this.#i&&console.warn("Warning: remove() called on a stale Path. This path belongs to a node whose visit has already completed. The removal will have no effect. To remove a parent node, do so from the parent's own visitor."),this.#s=!0}_getReplacementNode(){return this.#r}_wasReplaced(){return this.#n}_reset(){this.#e=!1,this.#t=!1,this.#s=!1,this.#n=!1,this.#r=void 0}_markStale(){this.#i=!0}}const Tn=it(1,dt(Ws,Pe(We,T("[object Promise]")))),Nn=e=>{const t=e?.element;return void 0===t||"element"===t?"Element":`${t.charAt(0).toUpperCase()}${t.slice(1)}Element`},$n=e=>Qt(e),Dn=e=>ws(e),Rn=(e,t,s)=>{is(e)?e.value=s:Array.isArray(e)?e[t]=null===s?void 0:s:null===s?delete e[t]:e[t]=s},Bn=e=>is(e)?["key","value"]:ns(e)||rs(e)?["content"]:[],Ln=(e,t)=>{if(void 0!==e[t])return e[t];const s=t.length;for(const n in e){if(!n.includes("|"))continue;const r=n.indexOf(t);if(-1===r)continue;const i=0===r||"|"===n[r-1],o=r+s===n.length||"|"===n[r+s];if(i&&o)return e[n]}},Jn=(e,t,s)=>{if(void 0===t)return null;const n=e,r=s?"leave":"enter",i=Ln(n,t);if(!s&&"function"==typeof i)return i;if(null!=i){const e=i[r];if("function"==typeof e)return e}const o=n[r];if("function"==typeof o)return o;if(null!=o){const e=Ln(o,t);if("function"==typeof e)return e}return null},qn=(e,t={})=>{const{visitFnGetter:s=Jn,nodeTypeGetter:n=Nn,exposeEdits:r=!1}=t,i=Symbol("internal-skip"),o=Symbol("break"),c=new Array(e.length).fill(i);return{enter(t){let a=t.node,l=!1;for(let u=0;u<e.length;u+=1)if(c[u]===i){const i=s(e[u],n(a),!1);if("function"==typeof i){const s=zn(t,a),n=i.call(e[u],s);if(Tn(n))throw new ds("Async visitor not supported in sync mode",{visitor:e[u],visitFn:i});if(s.shouldStop){c[u]=o;break}if(s.shouldSkip&&(c[u]=a),s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();if(!r)return t.replaceWith(e),e;a=e,l=!0}else if(void 0!==n){if(!r)return t.replaceWith(n),n;a=n,l=!0}}}if(l)return t.replaceWith(a),a},leave(t){const r=t.node;for(let a=0;a<e.length;a+=1)if(c[a]===i){const i=s(e[a],n(r),!0);if("function"==typeof i){const s=zn(t,r),n=i.call(e[a],s);if(Tn(n))throw new ds("Async visitor not supported in sync mode",{visitor:e[a],visitFn:i});if(s.shouldStop){c[a]=o;break}if(s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();return t.replaceWith(e),e}if(void 0!==n)return t.replaceWith(n),n}}else c[a]===r&&(c[a]=i)}}},_n=(e,t={})=>{const{visitFnGetter:s=Jn,nodeTypeGetter:n=Nn,exposeEdits:r=!1}=t,i=Symbol("internal-skip"),o=Symbol("break"),c=new Array(e.length).fill(i);return{async enter(t){let a=t.node,l=!1;for(let u=0;u<e.length;u+=1)if(c[u]===i){const i=s(e[u],n(a),!1);if("function"==typeof i){const s=zn(t,a),n=await i.call(e[u],s);if(s.shouldStop){c[u]=o;break}if(s.shouldSkip&&(c[u]=a),s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();if(!r)return t.replaceWith(e),e;a=e,l=!0}else if(void 0!==n){if(!r)return t.replaceWith(n),n;a=n,l=!0}}}if(l)return t.replaceWith(a),a},async leave(t){const r=t.node;for(let a=0;a<e.length;a+=1)if(c[a]===i){const i=s(e[a],n(r),!0);if("function"==typeof i){const s=zn(t,r),n=await i.call(e[a],s);if(s.shouldStop){c[a]=o;break}if(s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();return t.replaceWith(e),e}if(void 0!==n)return t.replaceWith(n),n}}else c[a]===r&&(c[a]=i)}}};function zn(e,t){return new Mn(t,e.parent,e.parentPath,e.key,e.inList)}function*Hn(e,t,s){const{keyMap:n,state:r,nodeTypeGetter:i,nodePredicate:o,nodeCloneFn:c,detectCycles:a,mutable:l,mutationFn:u}=s,p="function"==typeof n;let h,d,m=Array.isArray(e),f=[e],y=-1,g=[],x=e,b=null,v=null;const S=[];do{y+=1;const e=y===f.length;let s;const w=e&&0!==g.length;if(e){if(s=0===S.length?void 0:b?.key,x=d,d=S.pop(),v=b?.parentPath?.parentPath??null,w)if(l)for(const[e,t]of g)u(x,e,t);else if(m){x=x.slice();let e=0;for(const[t,s]of g){const n=t-e;null===s?(x.splice(n,1),e+=1):x[n]=s}}else{x=c(x);for(const[e,t]of g)x[e]=t}if(void 0!==h){y=h.index,f=h.keys,g=h.edits;const e=h.inArray;if(v=h.parentPath,h=h.prev,w&&!l){const t=e?y:f[y];g.push([t,x])}m=e}}else if(void 0!==d&&(s=m?y:f[y],x=d[s],void 0===x))continue;if(!Array.isArray(x)){if(!o(x))throw new ds(`Invalid AST Node: ${String(x)}`,{node:x});if(a&&S.includes(x))continue;b=new Mn(x,d,v,s,m);const n=Jn(t,i(x),e);if(n){for(const[e,s]of Object.entries(r))t[e]=s;const i=yield{visitFn:n,path:b,isLeaving:e};if(b.shouldStop)break;if(b.shouldSkip&&!e)continue;if(b.removed){if(g.push([s,null]),!e)continue}else if(b._wasReplaced()){const t=b._getReplacementNode();if(g.push([s,t]),!e){if(!o(t))continue;x=t}}else if(void 0!==i&&(g.push([s,i]),!e)){if(!o(i))continue;x=i}b._markStale()}}if(!e){if(h={inArray:m,index:y,keys:f,edits:g,parentPath:v,prev:h},m=Array.isArray(x),m)f=x;else if(p)f=n(x);else{const e=i(x);f=void 0!==e?n[e]??[]:[]}y=-1,g=[],void 0!==d&&S.push(d),d=x,v=b}}while(void 0!==h);return 0!==g.length?g.at(-1)[1]:e}qn[Symbol.for("nodejs.util.promisify.custom")]=_n;const Vn=(e,t,s={})=>{const n=Hn(e,t,{keyMap:s.keyMap??Bn,state:s.state??{},nodeTypeGetter:s.nodeTypeGetter??Nn,nodePredicate:s.nodePredicate??$n,nodeCloneFn:s.nodeCloneFn??Dn,detectCycles:s.detectCycles??!0,mutable:s.mutable??!1,mutationFn:s.mutationFn??Rn});let r=n.next();for(;!r.done;){const e=r.value,s=e.visitFn.call(t,e.path);if(Tn(s))throw new ds("Async visitor not supported in sync mode",{visitor:t,visitFn:e.visitFn});r=n.next(s)}return r.value},Un=async(e,t,s={})=>{const n=Hn(e,t,{keyMap:s.keyMap??Bn,state:s.state??{},nodeTypeGetter:s.nodeTypeGetter??Nn,nodePredicate:s.nodePredicate??$n,nodeCloneFn:s.nodeCloneFn??Dn,detectCycles:s.detectCycles??!0,mutable:s.mutable??!1,mutationFn:s.mutationFn??Rn});let r=n.next();for(;!r.done;){const e=r.value,s=await e.visitFn.call(t,e.path);r=n.next(s)}return r.value};Vn[Symbol.for("nodejs.util.promisify.custom")]=Un,Mn.prototype.traverse=function(e,t){return Vn(this.node,e,t)},Mn.prototype.traverseAsync=function(e,t){return Un(this.node,e,t)};const Gn=class extends Ds{specObj;passingOptionsNames=["specObj","parent"];constructor({specObj:e,...t}){super({...t}),this.specObj=e}retrievePassingOptions(){return Ys(this.passingOptionsNames,this)}retrieveFixedFields(e){const t=pe(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]}retrieveVisitor(e){return Xe(kt,["visitors",...e],this.specObj)?pe(["visitors",...e],this.specObj):pe(["visitors",...e,"$visitor"],this.specObj)}retrieveVisitorInstance(e,t={}){const s=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...s,...t})}toRefractedElement(e,t,s={}){const n=this.retrieveVisitorInstance(e,s);return n instanceof Rs&&n?.constructor===Rs?bs(t):(Vn(t,n,s),n.element)}};const Wn=class extends Gn{specPath;ignoredFields;constructor({specPath:e,ignoredFields:t,...s}){super({...s}),this.specPath=e,this.ignoredFields=t||[]}ObjectElement(e){const t=e.node,s=this.specPath(t),n=this.retrieveFixedFields(s);t.forEach((e,t,r)=>{const i=Ps(t);if(Zt(t)&&n.includes(i)&&!this.ignoredFields.includes(i)){const n=this.toRefractedElement([...s,"fixedFields",i],e),o=new z(bs(t),n);this.copyMetaAndAttributes(r,o),o.classes.push("fixed-field"),this.element.content.push(o)}else this.ignoredFields.includes(i)||this.element.content.push(bs(r))}),this.copyMetaAndAttributes(t,this.element),e.stop()}},Xn=(e,t,s=[])=>{const n=Object.getOwnPropertyDescriptors(t);for(let e of s)delete n[e];Object.defineProperties(e,n)},Kn=(e,t=[e])=>{const s=Object.getPrototypeOf(e);return null===s?t:Kn(s,[...t,s])},Yn=(e,t,s=[])=>{var n;const r=null!==(n=((...e)=>{if(0===e.length)return;let t;const s=e.map(e=>Kn(e));for(;s.every(e=>e.length>0);){const e=s.map(e=>e.pop()),n=e[0];if(!e.every(e=>e===n))break;t=n}return t})(...e))&&void 0!==n?n:Object.prototype,i=Object.create(r),o=Kn(r);for(let t of e){let e=Kn(t);for(let t=e.length-1;t>=0;t--){let n=e[t];-1===o.indexOf(n)&&(Xn(i,n,["constructor",...s]),o.push(n))}}return i.constructor=t,i},Qn=e=>e.filter((t,s)=>e.indexOf(t)==s),Zn=(e,t)=>{const s=t.map(e=>Kn(e));let n=0,r=!0;for(;r;){r=!1;for(let i=t.length-1;i>=0;i--){const t=s[i][n];if(null!=t&&(r=!0,null!=Object.getOwnPropertyDescriptor(t,e)))return s[i][0]}n++}},er=(e,t=Object.prototype)=>new Proxy({},{getPrototypeOf:()=>t,setPrototypeOf(){throw Error("Cannot set prototype of Proxies created by ts-mixer")},getOwnPropertyDescriptor:(t,s)=>Object.getOwnPropertyDescriptor(Zn(s,e)||{},s),defineProperty(){throw new Error("Cannot define new properties on Proxies created by ts-mixer")},has:(s,n)=>void 0!==Zn(n,e)||void 0!==t[n],get:(s,n)=>(Zn(n,e)||t)[n],set(t,s,n){const r=Zn(s,e);if(void 0===r)throw new Error("Cannot set new properties on Proxies created by ts-mixer");return r[s]=n,!0},deleteProperty(){throw new Error("Cannot delete properties on Proxies created by ts-mixer")},ownKeys:()=>e.map(Object.getOwnPropertyNames).reduce((e,t)=>t.concat(e.filter(e=>t.indexOf(e)<0)))}),tr=null,sr="copy",nr="copy",rr="deep",ir=new WeakMap,or=e=>ir.get(e),cr=(e,t)=>{var s,n;const r=Qn([...Object.getOwnPropertyNames(e),...Object.getOwnPropertyNames(t)]),i={};for(let o of r)i[o]=Qn([...null!==(s=null==e?void 0:e[o])&&void 0!==s?s:[],...null!==(n=null==t?void 0:t[o])&&void 0!==n?n:[]]);return i},ar=(e,t)=>{var s,n,r,i;return{property:cr(null!==(s=null==e?void 0:e.property)&&void 0!==s?s:{},null!==(n=null==t?void 0:t.property)&&void 0!==n?n:{}),method:cr(null!==(r=null==e?void 0:e.method)&&void 0!==r?r:{},null!==(i=null==t?void 0:t.method)&&void 0!==i?i:{})}},lr=(e,t)=>{var s,n,r,i,o,c;return{class:Qn([...null!==(s=null==e?void 0:e.class)&&void 0!==s?s:[],...null!==(n=null==t?void 0:t.class)&&void 0!==n?n:[]]),static:ar(null!==(r=null==e?void 0:e.static)&&void 0!==r?r:{},null!==(i=null==t?void 0:t.static)&&void 0!==i?i:{}),instance:ar(null!==(o=null==e?void 0:e.instance)&&void 0!==o?o:{},null!==(c=null==t?void 0:t.instance)&&void 0!==c?c:{})}},ur=new Map,pr=(...e)=>{const t=((...e)=>{var t;const s=new Set,n=new Set([...e]);for(;n.size>0;)for(let e of n){const r=[...Kn(e.prototype).map(e=>e.constructor),...null!==(t=or(e))&&void 0!==t?t:[]].filter(e=>!s.has(e));for(let e of r)n.add(e);s.add(e),n.delete(e)}return[...s]})(...e).map(e=>ur.get(e)).filter(e=>!!e);return 0==t.length?{}:1==t.length?t[0]:t.reduce((e,t)=>lr(e,t))},hr=e=>{let t=ur.get(e);return t||(t={},ur.set(e,t)),t};function dr(...e){var t,s,n;const r=e.map(e=>e.prototype),i=tr;if(null!==i){const e=r.map(e=>e[i]).filter(e=>"function"==typeof e),t=function(...t){for(let s of e)s.apply(this,t)},s={[i]:t};r.push(s)}function o(...t){for(const s of e)Xn(this,new s(...t));null!==i&&"function"==typeof this[i]&&this[i].apply(this,t)}var c,a;o.prototype="copy"===nr?Yn(r,o):(c=r,a=o,er([...c,{constructor:a}])),Object.setPrototypeOf(o,"copy"===sr?Yn(e,null,["prototype"]):er(e,Function.prototype));let l=o;if("none"!==rr){const r="deep"===rr?pr(...e):((...e)=>{const t=e.map(e=>hr(e));return 0===t.length?{}:1===t.length?t[0]:t.reduce((e,t)=>lr(e,t))})(...e);for(let e of null!==(t=null==r?void 0:r.class)&&void 0!==t?t:[]){const t=e(l);t&&(l=t)}mr(null!==(s=null==r?void 0:r.static)&&void 0!==s?s:{},l),mr(null!==(n=null==r?void 0:r.instance)&&void 0!==n?n:{},l.prototype)}var u,p;return u=l,p=e,ir.set(u,p),l}const mr=(e,t)=>{const s=e.property,n=e.method;if(s)for(let e in s)for(let n of s[e])n(t,e);if(n)for(let e in n)for(let s of n[e])s(t,e,Object.getOwnPropertyDescriptor(t,e))};const fr=function(){return!1};const yr=class extends Gn{specPath;ignoredFields;fieldPatternPredicate=fr;constructor({specPath:e,ignoredFields:t,fieldPatternPredicate:s,...n}){super({...n}),this.specPath=e,this.ignoredFields=t||[],"function"==typeof s&&(this.fieldPatternPredicate=s)}ObjectElement(e){const t=e.node;t.forEach((e,t,s)=>{const n=Ps(t);if(!this.ignoredFields.includes(n)&&this.fieldPatternPredicate(n)){const n=this.specPath(e),r=this.toRefractedElement(n,e),i=new z(bs(t),r);this.copyMetaAndAttributes(s,i),i.classes.push("patterned-field"),this.element.content.push(i)}else this.ignoredFields.includes(n)||this.element.content.push(bs(s))}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const gr=class extends yr{constructor(e){super(e),this.fieldPatternPredicate=Ks}};const xr=class{parent;constructor({parent:e}){this.parent=e}},br=dr(Wn,xr,Rs),vr=dr(Wn,Rs),Sr=dr(Wn,Rs),wr=dr(Wn,Rs),Er=dr(Gn,xr,Rs),Or=dr(Gn,xr,Rs),kr=dr(Gn,xr,Rs),Ar=dr(Gn,xr,Rs),jr=dr(Gn,xr,Rs),Fr=dr(gr,xr,Rs),Ir=dr(gr,xr,Rs),Pr=dr(gr,xr,Rs),Cr=dr(gr,xr,Rs);const Mr=class extends br{constructor(e){super(e),this.element=new Ht,this.specPath=Bs(["document","objects","JSONSchema"])}get defaultDialectIdentifier(){return"http://json-schema.org/draft-04/schema#"}ObjectElement(e){const t=e.node;return this.handleDialectIdentifier(t),this.handleSchemaIdentifier(t),this.parent=this.element,Wn.prototype.ObjectElement.call(this,e)}handleDialectIdentifier(e){if(qs(this.parent)&&!Zt(e.get("$schema")))this.element.meta.set("inheritedDialectIdentifier",this.defaultDialectIdentifier);else if(this.parent instanceof Ht&&!Zt(e.get("$schema"))){const e=Ls(Ps(this.parent.meta.get("inheritedDialectIdentifier")),Ps(this.parent.$schema));this.element.meta.set("inheritedDialectIdentifier",e)}}handleSchemaIdentifier(e,t="id"){const s=void 0!==this.parent?bs(this.parent.meta.get("ancestorsSchemaIdentifiers")??new Yt):new Yt,n=Ps(e.get(t));Ks(n)&&s.push(n),this.element.meta.set("ancestorsSchemaIdentifiers",s)}},Tr=e=>rs(e)&&e.hasKey("$ref");const Nr=class extends Ar{ObjectElement(e){const t=e.node,s=Tr(t)?["document","objects","JSONReference"]:["document","objects","JSONSchema"];this.element=this.toRefractedElement(s,t),e.stop()}ArrayElement(e){const t=e.node;this.element=new Yt,this.element.classes.push("json-schema-items"),t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const $r=class extends Rs{ArrayElement(e){super.enter(e),this.element.classes.push("json-schema-required")}};const Dr=class extends Cr{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-properties"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Rr=class extends Pr{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-patternProperties"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Br=class extends Ir{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-dependencies"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Lr=class extends Rs{ArrayElement(e){super.enter(e),this.element.classes.push("json-schema-enum")}};const Jr=class extends Rs{StringElement(e){super.enter(e),this.element.classes.push("json-schema-type")}ArrayElement(e){super.enter(e),this.element.classes.push("json-schema-type")}};const qr=class extends Er{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-allOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const _r=class extends Or{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-anyOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const zr=class extends kr{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-oneOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Hr=class extends Fr{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-definitions"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Vr=class extends jr{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-links")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","LinkDescription"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Ur=class extends vr{constructor(e){super(e),this.element=new Vt,this.specPath=Bs(["document","objects","JSONReference"])}ObjectElement(e){Wn.prototype.ObjectElement.call(this,e),Zt(this.element.$ref)&&this.element.classes.push("reference-element")}};const Gr=class extends Rs{StringElement(e){super.enter(e),this.element.classes.push("reference-value")}};const Wr=function(){return!0};const Xr=ie(function(e,t,s){return it(Math.max(e.length,t.length,s.length),function(){return e.apply(this,arguments)?t.apply(this,arguments):s.apply(this,arguments)})});const Kr=i(function(e){return function(t,s){return e(t,s)?-1:e(s,t)?1:0}});var Yr=g(function(e,t){return Array.prototype.slice.call(t,0).sort(e)});const Qr=Yr;const Zr=i(function(e){return o(0,e)});function ei(e){return e&&e["@@transducer/reduced"]?e:{"@@transducer/value":e,"@@transducer/reduced":!0}}const ti=i(ei);const si=ft(ee);const ni=it(1,kt(Array.isArray)?Array.isArray:Pe(P,Me("Array")));const ri=dt(ni,Us);function ii(e){return function(e){if(Array.isArray(e))return oi(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return oi(e,t);var s={}.toString.call(e).slice(8,-1);return"Object"===s&&e.constructor&&(s=e.constructor.name),"Map"===s||"Set"===s?Array.from(e):"Arguments"===s||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s)?oi(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oi(e,t){(null==t||t>e.length)&&(t=e.length);for(var s=0,n=Array(t);s<t;s++)n[s]=e[s];return n}var ci=Pe(Qr(Kr(function(e,t){return e.length>t.length})),Zr,ae("length")),ai=Mt(function(e,t,s){var n=s.apply(void 0,ii(e));return si(n)?ti(n):t});const li=Xr(ri,function(e){var t=ci(e);return it(t,function(){for(var t=arguments.length,s=new Array(t),n=0;n<t;n++)s[n]=arguments[n];return Ae(ai(s),void 0,e)})},Js);const ui=class extends Gn{alternator;constructor({alternator:e,...t}){super({...t}),this.alternator=e}enter(e){const t=e.node,s=this.alternator.map(({predicate:e,specPath:t})=>Xr(e,Bs(t),Js)),n=li(s)(t);this.element=this.toRefractedElement(n,t),e.stop()}};const pi=class extends ui{constructor(e){super(e),this.alternator=[{predicate:Tr,specPath:["document","objects","JSONReference"]},{predicate:Wr,specPath:["document","objects","JSONSchema"]}]}};const hi=class extends wr{constructor(e){super(e),this.element=new Ut,this.specPath=Bs(["document","objects","Media"])}};const di=class extends Sr{constructor(e){super(e),this.element=new Gt,this.specPath=Bs(["document","objects","LinkDescription"])}},mi={visitors:{value:Rs,JSONSchemaOrJSONReferenceVisitor:pi,document:{objects:{JSONSchema:{element:"jSONSchemaDraft4",$visitor:Mr,fixedFields:{id:{$visitor:Rs,alias:"idField"},$schema:{$ref:"#/visitors/value"},multipleOf:{$ref:"#/visitors/value"},maximum:{$ref:"#/visitors/value"},exclusiveMaximum:{$ref:"#/visitors/value"},minimum:{$ref:"#/visitors/value"},exclusiveMinimum:{$ref:"#/visitors/value"},maxLength:{$ref:"#/visitors/value"},minLength:{$ref:"#/visitors/value"},pattern:{$ref:"#/visitors/value"},additionalItems:pi,items:{$visitor:Nr,alias:"itemsField"},maxItems:{$ref:"#/visitors/value"},minItems:{$ref:"#/visitors/value"},uniqueItems:{$ref:"#/visitors/value"},maxProperties:{$ref:"#/visitors/value"},minProperties:{$ref:"#/visitors/value"},required:$r,properties:Dr,additionalProperties:pi,patternProperties:Rr,dependencies:Br,enum:Lr,type:Jr,allOf:qr,anyOf:_r,oneOf:zr,not:pi,definitions:Hr,title:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},default:{$ref:"#/visitors/value"},format:{$ref:"#/visitors/value"},base:{$ref:"#/visitors/value"},links:{$visitor:Vr,alias:"linksField"},media:{$ref:"#/visitors/document/objects/Media"},readOnly:{$ref:"#/visitors/value"}}},JSONReference:{element:"jSONReference",$visitor:Ur,fixedFields:{$ref:Gr}},Media:{element:"media",$visitor:hi,fixedFields:{binaryEncoding:{$ref:"#/visitors/value"},type:{$ref:"#/visitors/value"}}},LinkDescription:{element:"linkDescription",$visitor:di,fixedFields:{href:{$ref:"#/visitors/value"},rel:{$ref:"#/visitors/value"},title:{$ref:"#/visitors/value"},targetSchema:pi,mediaType:{$ref:"#/visitors/value"},method:{$ref:"#/visitors/value"},encType:{$ref:"#/visitors/value"},schema:pi}}}}}},fi=zt(mi),yi=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(Ht,"fixedFields",{get:()=>yi(fi.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(Vt,"fixedFields",{get:()=>yi(fi.visitors.document.objects.JSONReference.fixedFields),enumerable:!0}),Object.defineProperty(Ut,"fixedFields",{get:()=>yi(fi.visitors.document.objects.Media.fixedFields),enumerable:!0}),Object.defineProperty(Gt,"fixedFields",{get:()=>yi(fi.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const gi=class extends Ht{constructor(e,t,s){super(e,t,s),this.element="JSONSchemaDraft6"}get idField(){throw new h("id keyword from Core vocabulary has been renamed to $id.")}set idField(e){throw new h("id keyword from Core vocabulary has been renamed to $id.")}get $id(){return this.get("$id")}set $id(e){this.set("$id",e)}get exclusiveMaximum(){return this.get("exclusiveMaximum")}set exclusiveMaximum(e){this.set("exclusiveMaximum",e)}get exclusiveMinimum(){return this.get("exclusiveMinimum")}set exclusiveMinimum(e){this.set("exclusiveMinimum",e)}get containsField(){return this.get("contains")}set containsField(e){this.set("contains",e)}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get propertyNames(){return this.get("propertyNames")}set propertyNames(e){this.set("propertyNames",e)}get const(){return this.get("const")}set const(e){this.set("const",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get examples(){return this.get("examples")}set examples(e){this.set("examples",e)}};const xi=class extends Gt{get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get schema(){throw new h("schema keyword from Hyper-Schema vocabulary has been renamed to submissionSchema.")}set schema(e){throw new h("schema keyword from Hyper-Schema vocabulary has been renamed to submissionSchema.")}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}get method(){throw new h("method keyword from Hyper-Schema vocabulary has been removed.")}set method(e){throw new h("method keyword from Hyper-Schema vocabulary has been removed.")}get encType(){throw new h("encType keyword from Hyper-Schema vocabulary has been renamed to submissionEncType.")}set encType(e){throw new h("encType keyword from Hyper-Schema vocabulary has been renamed to submissionEncType.")}get submissionEncType(){return this.get("submissionEncType")}set submissionEncType(e){this.set("submissionEncType",e)}};var bi=ie(function e(t,s,n){if(0===t.length)return s;var r=t[0];if(t.length>1){var i=ce(r,n);(ee(i)||"object"!=typeof i)&&(i=oe(t[1])?[]:{}),s=e(Array.prototype.slice.call(t,1),s,i)}return function(e,t,s){if(oe(e)&&me(s)){var n=e<0?s.length+e:e,r=[].concat(s);return r[n]=t,r}var i={};for(var o in s)i[o]=s[o];return i[e]=t,i}(r,s,n)});const vi=bi;const Si=ie(function(e,t,s){var n=Array.prototype.slice.call(s,0);return n.splice(e,t),n});var wi=ie(function(e,t,s){return vi([e],t,s)});const Ei=wi;var Oi=g(function e(t,s){if(null==s)return s;switch(t.length){case 0:return s;case 1:return function(e,t){if(null==t)return t;if(oe(e)&&me(t))return Si(e,1,t);var s={};for(var n in t)s[n]=t[n];return delete s[e],s}(t[0],s);default:var n=t[0],r=Array.prototype.slice.call(t,1);return null==s[n]?function(e,t){if(oe(e)&&me(t))return[].concat(t);var s={};for(var n in t)s[n]=t[n];return s}(n,s):Ei(n,e(r,s[n]),s)}});const ki=Oi;const Ai=class extends Mr{constructor(e){super(e),this.element=new gi}get defaultDialectIdentifier(){return"http://json-schema.org/draft-06/schema#"}BooleanElement(e){this.enter(e),this.element.classes.push("boolean-json-schema")}handleSchemaIdentifier(e,t="$id"){return super.handleSchemaIdentifier(e,t)}};const ji=class extends Nr{BooleanElement(e){this.element=this.toRefractedElement(["document","objects","JSONSchema"],e.node),e.stop()}};const Fi=class extends Rs{ArrayElement(e){this.enter(e),this.element.classes.push("json-schema-examples")}};const Ii=class extends di{constructor(e){super(e),this.element=new xi}},Pi=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchemaDraft6"),vi(["visitors","document","objects","JSONSchema","$visitor"],Ai),ki(["visitors","document","objects","JSONSchema","fixedFields","id"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$id"],{$ref:"#/visitors/value"}),vi(["visitors","document","objects","JSONSchema","fixedFields","contains"],{$visitor:mi.visitors.JSONSchemaOrJSONReferenceVisitor,alias:"containsField"}),vi(["visitors","document","objects","JSONSchema","fixedFields","items"],{$visitor:ji,alias:"itemsField"}),vi(["visitors","document","objects","JSONSchema","fixedFields","propertyNames"],mi.visitors.JSONSchemaOrJSONReferenceVisitor),vi(["visitors","document","objects","JSONSchema","fixedFields","const"],{$ref:"#/visitors/value"}),vi(["visitors","document","objects","JSONSchema","fixedFields","examples"],Fi),vi(["visitors","document","objects","LinkDescription","$visitor"],Ii),vi(["visitors","document","objects","LinkDescription","fixedFields","hrefSchema"],mi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","LinkDescription","fixedFields","schema"]),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionSchema"],mi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","LinkDescription","fixedFields","method"]),ki(["visitors","document","objects","LinkDescription","fixedFields","encType"]),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionEncType"],{$ref:"#/visitors/value"}))(mi),Ci=zt(Pi),Mi=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(gi,"fixedFields",{get:()=>Mi(Ci.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(xi,"fixedFields",{get:()=>Mi(Ci.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const Ti=class extends gi{constructor(e,t,s){super(e,t,s),this.element="JSONSchemaDraft7"}get $comment(){return this.get("$comment")}set $comment(e){this.set("$comment",e)}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get if(){return this.get("if")}set if(e){this.set("if",e)}get then(){return this.get("then")}set then(e){this.set("then",e)}get else(){return this.get("else")}set else(e){this.set("else",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get contentEncoding(){return this.get("contentEncoding")}set contentEncoding(e){this.set("contentEncoding",e)}get contentMediaType(){return this.get("contentMediaType")}set contentMediaType(e){this.set("contentMediaType",e)}get media(){throw new h('media keyword from Hyper-Schema vocabulary has been moved to validation vocabulary as "contentMediaType" / "contentEncoding"')}set media(e){throw new h('media keyword from Hyper-Schema vocabulary has been moved to validation vocabulary as "contentMediaType" / "contentEncoding"')}get writeOnly(){return this.get("writeOnly")}set writeOnly(e){this.set("writeOnly",e)}};const Ni=class extends xi{get anchor(){return this.get("anchor")}set anchor(e){this.set("anchor",e)}get anchorPointer(){return this.get("anchorPointer")}set anchorPointer(e){this.set("anchorPointer",e)}get templatePointers(){return this.get("templatePointers")}set templatePointers(e){this.set("templatePointers",e)}get templateRequired(){return this.get("templateRequired")}set templateRequired(e){this.set("templateRequired",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get mediaType(){throw new h("mediaType keyword from Hyper-Schema vocabulary has been renamed to targetMediaType.")}set mediaType(e){throw new h("mediaType keyword from Hyper-Schema vocabulary has been renamed to targetMediaType.")}get targetMediaType(){return this.get("targetMediaType")}set targetMediaType(e){this.set("targetMediaType",e)}get targetHints(){return this.get("targetHints")}set targetHints(e){this.set("targetHints",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get $comment(){return this.get("$comment")}set $comment(e){this.set("$comment",e)}get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get headerSchema(){return this.get("headerSchema")}set headerSchema(e){this.set("headerSchema",e)}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}get submissionEncType(){throw new h("submissionEncType keyword from Hyper-Schema vocabulary has been renamed to submissionMediaType.")}set submissionEncType(e){throw new h("submissionEncType keyword from Hyper-Schema vocabulary has been renamed to submissionMediaType.")}get submissionMediaType(){return this.get("submissionMediaType")}set submissionMediaType(e){this.set("submissionMediaType",e)}};const $i=class extends Ai{constructor(e){super(e),this.element=new Ti}get defaultDialectIdentifier(){return"http://json-schema.org/draft-07/schema#"}};const Di=class extends Ii{constructor(e){super(e),this.element=new Ni}},Ri=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchemaDraft7"),vi(["visitors","document","objects","JSONSchema","$visitor"],$i),vi(["visitors","document","objects","JSONSchema","fixedFields","$comment"],Pi.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","if"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),vi(["visitors","document","objects","JSONSchema","fixedFields","then"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),vi(["visitors","document","objects","JSONSchema","fixedFields","else"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","JSONSchema","fixedFields","media"]),vi(["visitors","document","objects","JSONSchema","fixedFields","contentEncoding"],Pi.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","contentMediaType"],Pi.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","writeOnly"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","$visitor"],Di),vi(["visitors","document","objects","LinkDescription","fixedFields","anchor"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","anchorPointer"],Pi.visitors.value),ki(["visitors","document","objects","LinkDescription","fixedFields","mediaType"]),vi(["visitors","document","objects","LinkDescription","fixedFields","targetMediaType"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","targetHints"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","description"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","$comment"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","headerSchema"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","LinkDescription","fixedFields","submissionEncType"]),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionMediaType"],Pi.visitors.value))(Pi),Bi=zt(Ri),Li=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(Ti,"fixedFields",{get:()=>Li(Bi.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(Ni,"fixedFields",{get:()=>Li(Bi.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const Ji=class extends Ti{constructor(e,t,s){super(e,t,s),this.element="JSONSchema201909"}get $vocabulary(){return this.get("$vocabulary")}set $vocabulary(e){this.set("$vocabulary",e)}get $anchor(){return this.get("$anchor")}set $anchor(e){this.set("$anchor",e)}get $recursiveAnchor(){return this.get("$recursiveAnchor")}set $recursiveAnchor(e){this.set("$recursiveAnchor",e)}get $recursiveRef(){return this.get("$recursiveRef")}set $recursiveRef(e){this.set("$recursiveRef",e)}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}get $defs(){return this.get("$defs")}set $defs(e){this.set("$defs",e)}get definitions(){throw new h("definitions keyword from Validation vocabulary has been renamed to $defs.")}set definitions(e){throw new h("definitions keyword from Validation vocabulary has been renamed to $defs.")}get not(){return this.get("not")}set not(e){this.set("not",e)}get if(){return this.get("if")}set if(e){this.set("if",e)}get then(){return this.get("then")}set then(e){this.set("then",e)}get else(){return this.get("else")}set else(e){this.set("else",e)}get dependentSchemas(){return this.get("dependentSchemas")}set dependentSchemas(e){this.set("dependentSchemas",e)}get dependencies(){throw new h("dependencies keyword from Validation vocabulary has been renamed to dependentSchemas.")}set dependencies(e){throw new h("dependencies keyword from Validation vocabulary has been renamed to dependentSchemas.")}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get contains(){return this.get("contains")}set contains(e){this.set("contains",e)}get additionalProperties(){return this.get("additionalProperties")}set additionalProperties(e){this.set("additionalProperties",e)}get additionalItems(){return this.get("additionalItems")}set additionalItems(e){this.set("additionalItems",e)}get propertyNames(){return this.get("propertyNames")}set propertyNames(e){this.set("propertyNames",e)}get unevaluatedItems(){return this.get("unevaluatedItems")}set unevaluatedItems(e){this.set("unevaluatedItems",e)}get unevaluatedProperties(){return this.get("unevaluatedProperties")}set unevaluatedProperties(e){this.set("unevaluatedProperties",e)}get maxContains(){return this.get("maxContains")}set maxContains(e){this.set("maxContains",e)}get minContains(){return this.get("minContains")}set minContains(e){this.set("minContains",e)}get dependentRequired(){return this.get("dependentRequired")}set dependentRequired(e){this.set("dependentRequired",e)}get deprecated(){return this.get("deprecated")}set deprecated(e){this.set("deprecated",e)}get contentSchema(){return this.get("contentSchema")}set contentSchema(e){this.set("contentSchema",e)}};const qi=class extends Ni{constructor(e,t,s){super(e,t,s),this.element="linkDescription"}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get headerSchema(){return this.get("headerSchema")}set headerSchema(e){this.set("headerSchema",e)}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}};const _i=class extends $i{constructor(e){super(e),this.element=new Ji}get defaultDialectIdentifier(){return"https://json-schema.org/draft/2019-09/schema"}ObjectElement(e){const t=e.node;this.handleDialectIdentifier(t),this.handleSchemaIdentifier(t),this.parent=this.element,Wn.prototype.ObjectElement.call(this,e),Zt(this.element.$ref)&&(this.element.classes.push("reference-element"),this.element.meta.set("referenced-element","schema"))}};const zi=class extends Rs{ObjectElement(e){this.enter(e),this.element.classes.push("json-schema-$vocabulary")}};const Hi=class extends Rs{StringElement(e){this.enter(e),this.element.classes.push("reference-value")}},Vi=dr(Gn,xr,Rs),Ui=dr(gr,xr,Rs);const Gi=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-$defs"),this.specPath=Bs(["document","objects","JSONSchema"])}};const Wi=class extends Vi{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-allOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Xi=class extends Vi{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-anyOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Ki=class extends Vi{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-oneOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Yi=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-dependentSchemas"),this.specPath=Bs(["document","objects","JSONSchema"])}};const Qi=class extends Vi{ObjectElement(e){this.element=this.toRefractedElement(["document","objects","JSONSchema"],e.node),e.stop()}ArrayElement(e){const t=e.node;this.element=new Yt,this.element.classes.push("json-schema-items"),t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}BooleanElement(e){this.element=this.toRefractedElement(["document","objects","JSONSchema"],e.node),e.stop()}};const Zi=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-properties"),this.specPath=Bs(["document","objects","JSONSchema"])}};const eo=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-patternProperties"),this.specPath=Bs(["document","objects","JSONSchema"])}};const to=class extends Rs{ObjectElement(e){this.enter(e),this.element.classes.push("json-schema-dependentRequired")}};const so=class extends Di{constructor(e){super(e),this.element=new qi}},no=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchema201909"),vi(["visitors","document","objects","JSONSchema","$visitor"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","$vocabulary"],zi),vi(["visitors","document","objects","JSONSchema","fixedFields","$anchor"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","$recursiveAnchor"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","$recursiveRef"],Ri.visitors.value),ki(["visitors","document","objects","JSONReference","$visitor"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$ref"],Hi),ki(["visitors","document","objects","JSONSchema","fixedFields","definitions"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$defs"],Gi),vi(["visitors","document","objects","JSONSchema","fixedFields","allOf"],Wi),vi(["visitors","document","objects","JSONSchema","fixedFields","anyOf"],Xi),vi(["visitors","document","objects","JSONSchema","fixedFields","oneOf"],Ki),vi(["visitors","document","objects","JSONSchema","fixedFields","not"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","if"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","then"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","else"],_i),ki(["visitors","document","objects","JSONSchema","fixedFields","dependencies"]),vi(["visitors","document","objects","JSONSchema","fixedFields","dependentSchemas"],Yi),vi(["visitors","document","objects","JSONSchema","fixedFields","items"],{$visitor:Qi,alias:"itemsField"}),vi(["visitors","document","objects","JSONSchema","fixedFields","contains"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","properties"],Zi),vi(["visitors","document","objects","JSONSchema","fixedFields","patternProperties"],eo),vi(["visitors","document","objects","JSONSchema","fixedFields","additionalProperties"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","additionalItems"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","propertyNames"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedItems"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedProperties"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","maxContains"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","minContains"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","dependentRequired"],to),vi(["visitors","document","objects","JSONSchema","fixedFields","deprecated"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","contentSchema"],_i),vi(["visitors","document","objects","LinkDescription","element"],"linkDescription"),vi(["visitors","document","objects","LinkDescription","$visitor"],so),vi(["visitors","document","objects","LinkDescription","fixedFields","targetSchema"],_i),vi(["visitors","document","objects","LinkDescription","fixedFields","hrefSchema"],_i),vi(["visitors","document","objects","LinkDescription","fixedFields","headerSchema"],_i),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionSchema"],_i))(Ri),ro=zt(no),io=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(Ji,"fixedFields",{get:()=>io(ro.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(qi,"fixedFields",{get:()=>io(ro.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const oo=class extends Ji{constructor(e,t,s){super(e,t,s),this.element="JSONSchema202012"}get $dynamicAnchor(){return this.get("$dynamicAnchor")}set $dynamicAnchor(e){this.set("$dynamicAnchor",e)}get $recursiveAnchor(){throw new h("$recursiveAnchor keyword from Core vocabulary has been renamed to $dynamicAnchor.")}set $recursiveAnchor(e){throw new h("$recursiveAnchor keyword from Core vocabulary has been renamed to $dynamicAnchor.")}get $dynamicRef(){return this.get("$dynamicRef")}set $dynamicRef(e){this.set("$dynamicRef",e)}get $recursiveRef(){throw new h("$recursiveRef keyword from Core vocabulary has been renamed to $dynamicRef.")}set $recursiveRef(e){throw new h("$recursiveRef keyword from Core vocabulary has been renamed to $dynamicRef.")}get prefixItems(){return this.get("prefixItems")}set prefixItems(e){this.set("prefixItems",e)}};const co=class extends qi{get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get headerSchema(){return this.get("headerSchema")}set headerSchema(e){this.set("headerSchema",e)}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}};const ao=class extends _i{constructor(e){super(e),this.element=new oo}get defaultDialectIdentifier(){return"https://json-schema.org/draft/2020-12/schema"}};const lo=class extends Vi{constructor(e){super(e),this.element=new Yt,this.element.classes.push("json-schema-prefixItems")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const uo=class extends so{constructor(e){super(e),this.element=new co}},po=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchema202012"),vi(["visitors","document","objects","JSONSchema","$visitor"],ao),ki(["visitors","document","objects","JSONSchema","fixedFields","$recursiveAnchor"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$dynamicAnchor"],no.visitors.value),ki(["visitors","document","objects","JSONSchema","fixedFields","$recursiveRef"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$dynamicRef"],no.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","not"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","if"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","then"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","else"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","prefixItems"],lo),vi(["visitors","document","objects","JSONSchema","fixedFields","items"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","contains"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","additionalProperties"],ao),ki(["visitors","document","objects","JSONSchema","fixedFields","additionalItems"]),vi(["visitors","document","objects","JSONSchema","fixedFields","propertyNames"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedItems"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedProperties"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","contentSchema"],ao),vi(["visitors","document","objects","LinkDescription","element"],"linkDescription"),vi(["visitors","document","objects","LinkDescription","$visitor"],uo),vi(["visitors","document","objects","LinkDescription","fixedFields","targetSchema"],ao),vi(["visitors","document","objects","LinkDescription","fixedFields","hrefSchema"],ao),vi(["visitors","document","objects","LinkDescription","fixedFields","headerSchema"],ao),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionSchema"],ao))(no),ho=zt(po),mo=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(oo,"fixedFields",{get:()=>mo(ho.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(co,"fixedFields",{get:()=>mo(ho.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const fo=class extends oo{constructor(e,t,s){super(e,t,s),this.element="jSONSchema"}};const yo=class extends H{constructor(e,t,s){super(e,t,s),this.element="parameter"}get name(){return this.get("name")}set name(e){this.set("name",e)}get in(){return this.get("in")}set in(e){this.set("in",e)}get value(){return this.get("value")}set value(e){this.set("value",e)}};const go=class extends H{constructor(e,t,s){super(e,t,s),this.element="payloadReplacement"}get target(){return this.get("target")}set target(e){this.set("target",e)}get value(){return this.get("value")}set value(e){this.set("value",e)}};const xo=class extends H{constructor(e,t,s){super(e,t,s),this.element="requestBody"}get contentType(){return this.get("contentType")}set contentType(e){this.set("contentType",e)}get payload(){return this.get("payload")}set payload(e){this.set("payload",e)}get replacements(){return this.get("replacements")}set replacements(e){this.set("replacements",e)}};const bo=class extends H{constructor(e,t,s){super(e,t,s),this.element="reusable",this.classes.push("arazzo-reference")}get reference(){return this.get("reference")}set reference(e){this.set("reference",e)}get value(){return this.get("value")}set value(e){this.set("value",e)}};const vo=class extends H{constructor(e,t,s){super(e,t,s),this.element="sourceDescription"}get name(){return this.get("name")}set name(e){this.set("name",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}};const So=class extends H{constructor(e,t,s){super(e,t,s),this.element="step"}get description(){return this.get("description")}set description(e){this.set("description",e)}get stepId(){return this.get("stepId")}set stepId(e){this.set("stepId",e)}get operationId(){return this.get("operationId")}set operationId(e){this.set("operationId",e)}get operationPath(){return this.get("operationPath")}set operationPath(e){this.set("operationPath",e)}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get requestBody(){return this.get("requestBody")}set requestBody(e){this.set("requestBody",e)}get successCriteria(){return this.get("successCriteria")}set successCriteria(e){this.set("successCriteria",e)}get onSuccess(){return this.get("onSuccess")}set onSuccess(e){this.set("onSuccess",e)}get onFailure(){return this.get("onFailure")}set onFailure(e){this.set("onFailure",e)}get outputs(){return this.get("outputs")}set outputs(e){this.set("outputs",e)}};const wo=class extends H{constructor(e,t,s){super(e,t,s),this.element="successAction"}get name(){return this.get("name")}set name(e){this.set("name",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get stepId(){return this.get("stepId")}set stepId(e){this.set("stepId",e)}get criteria(){return this.get("criteria")}set criteria(e){this.set("criteria",e)}};const Eo=class extends H{constructor(e,t,s){super(e,t,s),this.element="workflow"}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get summary(){return this.get("summary")}set summary(e){this.set("summary",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get inputs(){return this.get("inputs")}set inputs(e){this.set("inputs",e)}get dependsOn(){return this.get("dependsOn")}set dependsOn(e){this.set("dependsOn",e)}get steps(){return this.get("steps")}set steps(e){this.set("steps",e)}get successActions(){return this.get("successActions")}set successActions(e){this.set("successActions",e)}get failureActions(){return this.get("failureActions")}set failureActions(e){this.set("failureActions",e)}get outputs(){return this.get("outputs")}set outputs(e){this.set("outputs",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}},Oo={namespace:e=>{const{base:t}=e;return t.register("arazzo",J),t.register("arazzoSpecification1",V),t.register("components",U),t.register("criterion",G),t.register("criterionExpressionType",W),t.register("failureAction",X),t.register("info",K),t.register("parameter",yo),t.register("payloadReplacement",go),t.register("requestBody",xo),t.register("reusable",bo),t.register("sourceDescription",vo),t.register("step",So),t.register("successAction",wo),t.register("workflow",Eo),t.register("jSONSchema",fo),t}},ko={ArazzoSpecification1Element:{info:(e,t,s)=>new K(e,t,s)}},Ao=(e,t)=>{const s=Nn(e),n=ko[s]||ko[Ps(e.classes.first)];if(void 0!==n)return Object.hasOwn(n,"[key: *]")?n["[key: *]"]:n[t]},jo=()=>()=>({visitor:{StringElement(e){const t=e.node;if(!(e=>Zt(e)&&cs(e,["yaml-e-node","yaml-e-scalar"]))(t))return;const s=e.getAncestorNodes().filter(Qt),n=s.at(0);let r,i;if(ns(n)?(i=t,r=Ao(n,"<*>")):is(n)&&(i=s.at(1),r=Ao(i,Ps(n.key))),"function"!=typeof r)return;const o=r(void 0,bs(t.meta),bs(t.attributes));hs.transfer(t,o),e.replaceWith(o)}}});var Fo=ie(function(e,t,s){var n,r={};for(n in s=s||{},t=t||{})v(n,t)&&(r[n]=v(n,s)?e(n,t[n],s[n]):t[n]);for(n in s)v(n,s)&&!v(n,r)&&(r[n]=s[n]);return r});const Io=Fo;var Po=ie(function e(t,s,n){return Io(function(s,n,r){return Le(n)&&Le(r)?e(t,n,r):t(s,n,r)},s,n)});const Co=Po;const Mo=g(function(e,t){return Co(function(e,t,s){return s},e,t)});const To=ie(function(e,t,s){return Ls(e,ae(t,s))});const No=Fe(0,-1);var $o=g(function(e,t){return e.apply(this,t)});const Do=$o;const Ro=ft(kt);const Bo=dt(ni,Vs);const Lo=it(3,function(e,t,s){var n=pe(e,s),r=pe(No(e),s);if(!Ro(n)&&!Bo(e)){var i=Se(n,r);return Do(i,t)}});const Jo=class{namespace;constructor(e){this.namespace=e||new this.Namespace}serialise(e){if(!(e instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${e}\` is not an Element instance`);const t={element:e.element};if(e.isMetaEmpty||(t.meta=this.serialiseObject(e.meta)),e.isAttributesEmpty||(t.attributes=this.serialiseObject(e.attributes)),!(e instanceof hs)){const s=hs.from(e);s&&(t.meta||(t.meta={}),t.meta.__mappings__=this.serialise(s))}const s=this.serialiseContent(e.content);return void 0!==s&&(t.content=s),t}deserialise(e){if(!e.element)throw new Error("Given value is not an object containing an element name");const t=new(this.namespace.getElementClass(e.element));let s;t.element!==e.element&&(t.element=e.element);let n=e.meta;if(e.meta?.__mappings__){const{__mappings__:t,...r}=e.meta;s=t,n=Object.keys(r).length>0?r:void 0}if(n&&this.deserialiseObject(n,t.meta),s){this.deserialise(s).applyTo(t)}e.attributes&&this.deserialiseObject(e.attributes,t.attributes);const r=this.deserialiseContent(e.content);return void 0===r&&null!==t.content||(t.content=r),t}serialiseContent(e){if(e instanceof this.namespace.elements.Element)return this.serialise(e);if(e instanceof this.namespace.KeyValuePair){const t=e,s={key:this.serialise(t.key)};return t.value&&(s.value=this.serialise(t.value)),s}if(e&&Array.isArray(e)){if(0===e.length)return;return e.map(e=>this.serialise(e))}return e}deserialiseContent(e){if(e){if(e.element)return this.deserialise(e);if(e.key){const t=new this.namespace.KeyValuePair(this.deserialise(e.key));return e.value&&(t.value=this.deserialise(e.value)),t}if(Array.isArray(e))return e.map(e=>this.deserialise(e))}return e}serialiseObject(e){const t={};if(e.forEach((e,s)=>{e&&(t[s.toValue()]=this.serialise(e))}),0!==Object.keys(t).length)return t}deserialiseObject(e,t){Object.keys(e).forEach(s=>{t.set(s,this.deserialise(e[s]))})}},qo=e=>null===e,_o=e=>"string"==typeof e,zo=e=>"number"==typeof e,Ho=e=>"boolean"==typeof e,Vo=e=>null!==e&&"object"==typeof e;class Uo{elementMap={};elementDetection=[];Element;KeyValuePair;_elements;_attributeElementKeys=[];_attributeElementArrayKeys=[];constructor(e){this.Element=B,this.KeyValuePair=N,e&&e.noDefault||this.useDefault()}use(e){return e.namespace&&e.namespace({base:this}),e.load&&e.load({base:this}),this}useDefault(){return this.register("null",Xt).register("string",L).register("number",Wt).register("boolean",Kt).register("array",Yt).register("object",H).register("member",z).register("ref",Os).register("link",Es).register("sourceMap",hs),this.detect(qo,Xt,!1).detect(_o,L,!1).detect(zo,Wt,!1).detect(Ho,Kt,!1).detect(Array.isArray,Yt,!1).detect(Vo,H,!1),this}register(e,t){return this._elements=void 0,this.elementMap[e]=t,this}unregister(e){return this._elements=void 0,delete this.elementMap[e],this}detect(e,t,s){return void 0===s||s?this.elementDetection.unshift([e,t]):this.elementDetection.push([e,t]),this}toElement(e){if(e instanceof this.Element)return e;let t;for(const[s,n]of this.elementDetection)if(s(e)){t=new n(e);break}return t}getElementClass(e){const t=this.elementMap[e];return void 0===t?this.Element:t}fromRefract(e){return this.serialiser.deserialise(e)}toRefract(e){return this.serialiser.serialise(e)}get elements(){return void 0===this._elements&&(this._elements={Element:this.Element},Object.keys(this.elementMap).forEach(e=>{const t=e[0].toUpperCase()+e.substring(1);this._elements[t]=this.elementMap[e]})),this._elements}get serialiser(){return new Jo(this)}}Jo.prototype.Namespace=Uo;const Go=Uo,Wo=new Go,Xo={isElement:Qt,isStringElement:Zt,isNumberElement:es,isNullElement:ts,isBooleanElement:ss,isArrayElement:ns,isObjectElement:rs,isMemberElement:is,isPrimitiveElement:e=>rs(e)&&"object"===e.element||ns(e)&&"array"===e.element||ss(e)&&"boolean"===e.element||es(e)&&"number"===e.element||Zt(e)&&"string"===e.element||ts(e)&&"null"===e.element||is(e)&&"member"===e.element,isLinkElement:Fs,isRefElement:Is,isAnnotationElement:e=>e instanceof ks,isCommentElement:e=>e instanceof As,isParseResultElement:e=>e instanceof js,isSourceMapElement:e=>e instanceof hs,hasElementSourceMap:os,includesSymbols:(e,t)=>{if(0===t.length)return!0;if(!e.hasAttributesProperty("symbols"))return!1;const s=e.attributes.get("symbols");return!!ns(s)&&t.every(e=>s.includes(e))},includesClasses:cs},Ko={toolboxCreator:()=>({predicates:Xo,namespace:Wo}),visitorOptions:{exposeEdits:!0}},Yo=(e,t,s={})=>{if(0===t.length)return e;const n=Mo(Ko,s),{toolboxCreator:r,visitorOptions:i}=n,o=r(),c=t.map(e=>e(o)),a=qn(c.map(To({},"visitor")),i);c.forEach(Lo(["pre"],[]));const l=Vn(e,a);return c.forEach(Lo(["post"],[])),l};function Qo(e){return void 0===e?new Xt:Zo(e)}function Zo(e){if(e instanceof B)return e;if("string"==typeof e)return new L(e);if("number"==typeof e)return new Wt(e);if("boolean"==typeof e)return new Kt(e);if(null===e)return new Xt;if(Array.isArray(e))return new Yt(e.map(Qo));if("object"==typeof e)return new H(e);throw new Error("Cannot refract value of type "+typeof e)}Yo[Symbol.for("nodejs.util.promisify.custom")]=async(e,t,s={})=>{if(0===t.length)return e;const n=Mo(Ko,s),{toolboxCreator:r,visitorOptions:i}=n,o=r(),c=t.map(e=>e(o)),a=_n(c.map(To({},"visitor")),i);await Promise.allSettled(c.map(Lo(["pre"],[])));const l=await Un(e,a);return await Promise.allSettled(c.map(Lo(["post"],[]))),l},B.prototype.ObjectElement=H,B.prototype.ArrayElement=Yt,B.prototype.RefElement=Os,B.prototype.MemberElement=z,B.prototype.refract=Zo;const ec=class{element;constructor(e={}){Object.assign(this,e)}copyMetaAndAttributes(e,t){if(!e.isMetaEmpty||!t.isMetaEmpty){const s=t.isMetaEmpty?new H:t.meta,n=e.isMetaEmpty?new H:e.meta;t.meta=$s(s,n)}if(!e.isAttributesEmpty||!t.isAttributesEmpty){const s=t.isAttributesEmpty?new H:t.attributes,n=e.isAttributesEmpty?new H:e.attributes;t.attributes=$s(s,n)}hs.transfer(e,t)}};const tc=class extends ec{enter(e){this.element=bs(e.node),e.stop()}};const sc=class extends ec{specObj;passingOptionsNames=["specObj"];constructor({specObj:e,...t}){super({...t}),this.specObj=e}retrievePassingOptions(){return Ys(this.passingOptionsNames,this)}retrieveFixedFields(e){const t=pe(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]}retrieveVisitor(e){return Xe(kt,["visitors",...e],this.specObj)?pe(["visitors",...e],this.specObj):pe(["visitors",...e,"$visitor"],this.specObj)}retrieveVisitorInstance(e,t={}){const s=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...s,...t})}toRefractedElement(e,t,s={}){const n=this.retrieveVisitorInstance(e,s);return n instanceof tc&&n?.constructor===tc?bs(t):(Vn(t,n,s),n.element)}};var nc=function(){function e(e,t){this.xf=t,this.n=e,this.i=0}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){this.i+=1;var s=0===this.n?e:this.xf["@@transducer/step"](e,t);return this.n>=0&&this.i>=this.n?ei(s):s},e}();function rc(e){return function(t){return new nc(e,t)}}const ic=g(Be(["take"],rc,function(e,t){return Fe(0,e<0?1/0:e,t)}));const oc=g(function(e,t){return T(ic(e.length,t),e)}),cc=e=>Zt(e.key)&&oc("x-",Ps(e.key)),ac=e=>rs(e)&&e.hasKey("reference");const lc=class extends sc{specPath;ignoredFields;canSupportSpecificationExtensions=!0;specificationExtensionPredicate=cc;constructor({specPath:e,ignoredFields:t,canSupportSpecificationExtensions:s,specificationExtensionPredicate:n,...r}){super({...r}),this.specPath=e,this.ignoredFields=t||[],"boolean"==typeof s&&(this.canSupportSpecificationExtensions=s),"function"==typeof n&&(this.specificationExtensionPredicate=n)}ObjectElement(e){const t=e.node,s=this.specPath(t),n=this.retrieveFixedFields(s);t.forEach((e,t,r)=>{if(Zt(t)&&n.includes(Ps(t))&&!this.ignoredFields.includes(Ps(t))){const n=this.toRefractedElement([...s,"fixedFields",Ps(t)],e),i=new z(bs(t),n);this.copyMetaAndAttributes(r,i),i.classes.push("fixed-field"),this.element.push(i)}else if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(r)){const e=this.toRefractedElement(["document","extension"],r);this.element.push(e)}else this.ignoredFields.includes(Ps(t))||this.element.push(bs(r))}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const uc=class extends sc{specPath;ignoredFields;fieldPatternPredicate=fr;canSupportSpecificationExtensions=!1;specificationExtensionPredicate=cc;constructor({specPath:e,ignoredFields:t,fieldPatternPredicate:s,canSupportSpecificationExtensions:n,specificationExtensionPredicate:r,...i}){super({...i}),this.specPath=e,this.ignoredFields=t||[],"function"==typeof s&&(this.fieldPatternPredicate=s),"boolean"==typeof n&&(this.canSupportSpecificationExtensions=n),"function"==typeof r&&(this.specificationExtensionPredicate=r)}ObjectElement(e){const t=e.node;t.forEach((e,t,s)=>{if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(s)){const e=this.toRefractedElement(["document","extension"],s);this.element.push(e)}else if(!this.ignoredFields.includes(Ps(t))&&this.fieldPatternPredicate(Ps(t))){const n=this.specPath(e),r=this.toRefractedElement(n,e),i=new z(bs(t),r);this.copyMetaAndAttributes(s,i),i.classes.push("patterned-field"),this.element.push(i)}else this.ignoredFields.includes(Ps(t))||this.element.push(bs(s))}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const pc=class extends uc{constructor(e){super(e),this.fieldPatternPredicate=Ks}},hc=dr(sc,tc),dc=dr(lc,tc),mc=dr(pc,tc);const fc=class extends dc{element;specPath;canSupportSpecificationExtensions;constructor(e){super(e),this.element=new V,this.specPath=Bs(["document","objects","ArazzoSpecification"]),this.canSupportSpecificationExtensions=!0}ObjectElement(e){return lc.prototype.ObjectElement.call(this,e)}};const yc=class extends hc{StringElement(e){const t=e.node,s=new J(Ps(t));this.copyMetaAndAttributes(t,s),this.element=s,e.stop()}};class gc extends Yt{static primaryClass="source-descriptions";constructor(e,t,s){super(e,t,s),this.classes.push(gc.primaryClass)}}const xc=gc;const bc=class extends hc{element;constructor(e){super(e),this.element=new xc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","SourceDescription"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};class vc extends Yt{static primaryClass="workflows";constructor(e,t,s){super(e,t,s),this.classes.push(vc.primaryClass)}}const Sc=vc;const wc=class extends hc{element;constructor(e){super(e),this.element=new Sc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Workflow"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Ec=class extends dc{constructor(e){super(e),this.element=new K,this.specPath=Bs(["document","objects","Info"]),this.canSupportSpecificationExtensions=!0}};const Oc=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("arazzo-version"),this.element.classes.push("version")}};const kc=class extends dc{constructor(e){super(e),this.element=new vo,this.specPath=Bs(["document","objects","SourceDescription"]),this.canSupportSpecificationExtensions=!0}};const Ac=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("source-description-url")}};const jc=class extends dc{constructor(e){super(e),this.element=new Eo,this.specPath=Bs(["document","objects","Workflow"]),this.canSupportSpecificationExtensions=!0}};class Fc extends Yt{static primaryClass="workflow-depends-on";constructor(e,t,s){super(e,t,s),this.classes.push(Fc.primaryClass)}}const Ic=Fc;const Pc=class extends hc{element;constructor(e){super(e),this.element=new Ic}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["value"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};class Cc extends Yt{static primaryClass="workflow-steps";constructor(e,t,s){super(e,t,s),this.classes.push(Cc.primaryClass)}}const Mc=Cc;const Tc=class extends hc{constructor(e){super(e),this.element=new Mc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Step"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};class Nc extends Yt{static primaryClass="workflow-success-actions";constructor(e,t,s){super(e,t,s),this.classes.push(Nc.primaryClass)}}const $c=Nc;class Dc extends H{static primaryClass="components-failure-actions";constructor(e,t,s){super(e,t,s),this.classes.push(Dc.primaryClass)}}const Rc=Dc;class Bc extends H{static primaryClass="components-inputs";constructor(e,t,s){super(e,t,s),this.classes.push(Bc.primaryClass)}}const Lc=Bc;class Jc extends H{static primaryClass="components-parameters";constructor(e,t,s){super(e,t,s),this.classes.push(Jc.primaryClass),this.classes.push("parameters")}}const qc=Jc;class _c extends H{static primaryClass="components-success-actions";constructor(e,t,s){super(e,t,s),this.classes.push(_c.primaryClass)}}const zc=_c;class Hc extends Yt{static primaryClass="failure-action-criteria";constructor(e,t,s){super(e,t,s),this.classes.push(Hc.primaryClass),this.classes.push("criteria")}}const Vc=Hc;class Uc extends Yt{static primaryClass="request-body-replacements";constructor(e,t,s){super(e,t,s),this.classes.push(Uc.primaryClass)}}const Gc=Uc;class Wc extends Yt{static primaryClass="step-depends-on";constructor(e,t,s){super(e,t,s),this.classes.push(Wc.primaryClass)}}const Xc=Wc;class Kc extends Yt{static primaryClass="step-on-failure";constructor(e,t,s){super(e,t,s),this.classes.push(Kc.primaryClass)}}const Yc=Kc;class Qc extends Yt{static primaryClass="step-on-success";constructor(e,t,s){super(e,t,s),this.classes.push(Qc.primaryClass)}}const Zc=Qc;class ea extends H{static primaryClass="step-outputs";constructor(e,t,s){super(e,t,s),this.classes.push(ea.primaryClass)}}const ta=ea;class sa extends Yt{static primaryClass="step-parameters";constructor(e,t,s){super(e,t,s),this.classes.push(sa.primaryClass),this.classes.push("parameters")}}const na=sa;class ra extends Yt{static primaryClass="step-success-criteria";constructor(e,t,s){super(e,t,s),this.classes.push(ra.primaryClass),this.classes.push("criteria")}}const ia=ra;class oa extends Yt{static primaryClass="success-action-criteria";constructor(e,t,s){super(e,t,s),this.classes.push(oa.primaryClass),this.classes.push("criteria")}}const ca=oa;class aa extends Yt{static primaryClass="workflow-failure-actions";constructor(e,t,s){super(e,t,s),this.classes.push(aa.primaryClass)}}const la=aa;class ua extends H{static primaryClass="workflow-outputs";constructor(e,t,s){super(e,t,s),this.classes.push(ua.primaryClass)}}const pa=ua;class ha extends Yt{static primaryClass="workflow-parameters";constructor(e,t,s){super(e,t,s),this.classes.push(ha.primaryClass),this.classes.push("parameters")}}const da=ha;const ma=e=>e instanceof oo;const fa=e=>ss(e)&&cs(e,["boolean-json-schema"]),ya=e=>e instanceof J,ga=e=>e instanceof V,xa=e=>e instanceof U,ba=e=>e instanceof G,va=e=>e instanceof W,Sa=e=>e instanceof X,wa=e=>e instanceof K,Ea=e=>e instanceof yo,Oa=e=>e instanceof go,ka=e=>e instanceof xo,Aa=e=>e instanceof bo,ja=e=>e instanceof vo,Fa=e=>e instanceof So,Ia=e=>e instanceof wo,Pa=e=>e instanceof Eo,Ca=e=>e instanceof Rc,Ma=e=>e instanceof Lc,Ta=e=>e instanceof qc,Na=e=>e instanceof zc,$a=e=>e instanceof Vc,Da=e=>e instanceof Gc,Ra=e=>e instanceof xc,Ba=e=>e instanceof Xc,La=e=>e instanceof Yc,Ja=e=>e instanceof Zc,qa=e=>e instanceof ta,_a=e=>e instanceof na,za=e=>e instanceof ia,Ha=e=>e instanceof ca,Va=e=>e instanceof Ic,Ua=e=>e instanceof la,Ga=e=>e instanceof pa,Wa=e=>e instanceof da,Xa=e=>e instanceof Sc,Ka=e=>e instanceof Mc,Ya=e=>e instanceof $c;const Qa=class extends hc{constructor(e){super(e),this.element=new $c}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","SuccessAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","successAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Za=class extends hc{constructor(e){super(e),this.element=new la}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","FailureAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","failureAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const el=class extends mc{constructor(e){super(e),this.element=new pa,this.specPath=Bs(["value"])}};const tl=class extends hc{constructor(e){super(e),this.element=new da}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","Parameter"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","parameter"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const sl=class extends dc{constructor(e){super(e),this.element=new So,this.specPath=Bs(["document","objects","Step"]),this.canSupportSpecificationExtensions=!0}};const nl=class extends hc{constructor(e){super(e),this.element=new na}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","Parameter"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","parameter"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const rl=class extends hc{constructor(e){super(e),this.element=new ia}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Criterion"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const il=class extends hc{constructor(e){super(e),this.element=new Zc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","SuccessAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","successAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const ol=class extends hc{constructor(e){super(e),this.element=new Yc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","FailureAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","failureAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const cl=class extends mc{constructor(e){super(e),this.element=new ta,this.specPath=Bs(["value"])}};const al=class extends dc{constructor(e){super(e),this.element=new yo,this.specPath=Bs(["document","objects","Parameter"]),this.canSupportSpecificationExtensions=!0}};const ll=class extends dc{constructor(e){super(e),this.element=new wo,this.specPath=Bs(["document","objects","SuccessAction"]),this.canSupportSpecificationExtensions=!0}};const ul=class extends hc{element;constructor(e){super(e),this.element=new ca}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Criterion"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const pl=class extends dc{constructor(e){super(e),this.element=new X,this.specPath=Bs(["document","objects","FailureAction"]),this.canSupportSpecificationExtensions=!0}};const hl=class extends hc{element;constructor(e){super(e),this.element=new Vc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Criterion"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const dl=class extends dc{constructor(e){super(e),this.element=new U,this.specPath=Bs(["document","objects","Components"]),this.canSupportSpecificationExtensions=!0}};const ml=class extends mc{constructor(e){super(e),this.element=new Lc,this.specPath=Bs(["document","objects","JSONSchema"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const fl=class extends mc{constructor(e){super(e),this.element=new qc,this.specPath=Bs(["document","objects","Parameter"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const yl=class extends mc{constructor(e){super(e),this.element=new zc,this.specPath=Bs(["document","objects","SuccessAction"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const gl=class extends mc{constructor(e){super(e),this.element=new Rc,this.specPath=Bs(["document","objects","FailureAction"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const xl=class extends dc{constructor(e){super(e),this.element=new bo,this.specPath=Bs(["document","objects","Reusable"]),this.canSupportSpecificationExtensions=!1}ObjectElement(e){const t=lc.prototype.ObjectElement.call(this,e);return Zt(this.element.reference)&&this.element.classes.push("reference-element"),t}};const bl=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("reference-value")}};const vl=class extends dc{constructor(e){super(e),this.element=new G,this.specPath=Bs(["document","objects","Criterion"]),this.canSupportSpecificationExtensions=!0}};const Sl=class extends hc{ObjectElement(e){const t=e.node;return this.toRefractedElement(["document","objects","CriterionExpressionType"],t)}};const wl=class extends dc{constructor(e){super(e),this.element=new W,this.specPath=Bs(["document","objects","CriterionExpressionType"]),this.canSupportSpecificationExtensions=!0}};const El=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("version")}};const Ol=class extends dc{constructor(e){super(e),this.element=new xo,this.specPath=Bs(["document","objects","RequestBody"]),this.canSupportSpecificationExtensions=!0}};const kl=class extends hc{element;constructor(e){super(e),this.element=new Gc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","PayloadReplacement"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Al=class extends dc{constructor(e){super(e),this.element=new go,this.specPath=Bs(["document","objects","PayloadReplacement"]),this.canSupportSpecificationExtensions=!0}};const jl=class extends ao{constructor(e){super(e),this.element=new fo}};const Fl=class extends sc{MemberElement(e){const t=e.node;this.element=bs(t),this.element.classes.push("specification-extension"),e.stop()}},{JSONSchema:{fixedFields:Il}}=po.visitors.document.objects,Pl={visitors:{value:tc,document:{objects:{ArazzoSpecification:{element:"arazzoSpecification1",$visitor:fc,fixedFields:{arazzo:{element:"arazzo",$visitor:yc},info:{$ref:"#/visitors/document/objects/Info"},sourceDescriptions:bc,workflows:wc,components:{$ref:"#/visitors/document/objects/Components"}}},Info:{element:"info",$visitor:Ec,fixedFields:{title:{$ref:"#/visitors/value"},summary:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},version:Oc}},SourceDescription:{element:"sourceDescription",$visitor:kc,fixedFields:{name:{$ref:"#/visitors/value"},url:Ac,type:{$ref:"#/visitors/value"}}},Workflow:{element:"workflow",$visitor:jc,fixedFields:{workflowId:{$ref:"#/visitors/value"},summary:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},inputs:jl,dependsOn:Pc,steps:Tc,successActions:Qa,failureActions:Za,outputs:el,parameters:tl}},Step:{element:"step",$visitor:sl,fixedFields:{description:{$ref:"#/visitors/value"},stepId:{$ref:"#/visitors/value"},operationId:{$ref:"#/visitors/value"},operationPath:{$ref:"#/visitors/value"},workflowId:{$ref:"#/visitors/value"},parameters:nl,requestBody:{$ref:"#/visitors/document/objects/RequestBody"},successCriteria:rl,onSuccess:il,onFailure:ol,outputs:cl}},Parameter:{element:"parameter",$visitor:al,fixedFields:{name:{$ref:"#/visitors/value"},in:{$ref:"#/visitors/value"},value:{$ref:"#/visitors/value"}}},SuccessAction:{element:"successAction",$visitor:ll,fixedFields:{name:{$ref:"#/visitors/value"},type:{$ref:"#/visitors/value"},workflowId:{$ref:"#/visitors/value"},stepId:{$ref:"#/visitors/value"},criteria:ul}},FailureAction:{element:"failureAction",$visitor:pl,fixedFields:{name:{$ref:"#/visitors/value"},type:{$ref:"#/visitors/value"},workflowId:{$ref:"#/visitors/value"},stepId:{$ref:"#/visitors/value"},retryAfter:{$ref:"#/visitors/value"},retryLimit:{$ref:"#/visitors/value"},criteria:hl}},Components:{element:"components",$visitor:dl,fixedFields:{inputs:ml,parameters:fl,successActions:yl,failureActions:gl}},Reusable:{element:"reusable",$visitor:xl,fixedFields:{reference:bl,value:{$ref:"#/visitors/value"}}},Criterion:{element:"criterion",$visitor:vl,fixedFields:{context:{$ref:"#/visitors/value"},condition:{$ref:"#/visitors/value"},type:Sl}},CriterionExpressionType:{element:"criterionExpressionType",$visitor:wl,fixedFields:{type:{$ref:"#/visitors/value"},version:El}},RequestBody:{element:"requestBody",$visitor:Ol,fixedFields:{contentType:{$ref:"#/visitors/value"},payload:{$ref:"#/visitors/value"},replacements:kl}},PayloadReplacement:{element:"payloadReplacement",$visitor:Al,fixedFields:{target:{$ref:"#/visitors/value"},value:{$ref:"#/visitors/value"}}},JSONSchema:{element:"jSONSchema",$visitor:jl,fixedFields:{...Il}}},extension:{$visitor:Fl}}}},Cl=()=>{const e=new Go,t={...s,...n,isStringElement:Zt};return e.use(Oo),{predicates:t,namespace:e}},Ml=(e,{element:t="arazzoSpecification1",plugins:s=[],specificationObj:n=Pl}={})=>{const r=Zo(e),i=zt(n),o=i.elementMap[t];if(!o)throw new Error(`Unknown element type: "${t}"`);const c=new(pe(o,i))({specObj:i});return Vn(r,c),Yo(c.element,s,{toolboxCreator:Cl})},Tl=(e,t={})=>Ml(e,{...t,element:"arazzo"}),Nl=(e,t={})=>Ml(e,{...t,element:"arazzoSpecification1"}),$l=(e,t={})=>Ml(e,{...t,element:"components"}),Dl=(e,t={})=>Ml(e,{...t,element:"criterion"}),Rl=(e,t={})=>Ml(e,{...t,element:"criterionExpressionType"}),Bl=(e,t={})=>Ml(e,{...t,element:"failureAction"}),Ll=(e,t={})=>Ml(e,{...t,element:"info"}),Jl=(e,t={})=>Ml(e,{...t,element:"jSONSchema"}),ql=(e,t={})=>Ml(e,{...t,element:"parameter"}),_l=(e,t={})=>Ml(e,{...t,element:"payloadReplacement"}),zl=(e,t={})=>Ml(e,{...t,element:"requestBody"}),Hl=(e,t={})=>Ml(e,{...t,element:"reusable"}),Vl=(e,t={})=>Ml(e,{...t,element:"sourceDescription"}),Ul=(e,t={})=>Ml(e,{...t,element:"step"}),Gl=(e,t={})=>Ml(e,{...t,element:"successAction"}),Wl=(e,t={})=>Ml(e,{...t,element:"workflow"}),Xl=Ml;return t})());
1
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.apidomNsArazzo1=t():e.apidomNsArazzo1=t()}(self,()=>(()=>{"use strict";var e={d:(t,s)=>{for(var n in s)e.o(s,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:s[n]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{ArazzoElement:()=>J,ArazzoMediaTypes:()=>f,ArazzoSpecification1Element:()=>V,BaseFixedFieldsFallbackVisitor:()=>dc,BaseMapFallbackVisitor:()=>mc,BaseSpecificationFallbackVisitor:()=>hc,ComponentsElement:()=>U,ComponentsFailureActionsElement:()=>Rc,ComponentsInputsElement:()=>Lc,ComponentsParametersElement:()=>qc,ComponentsSuccessActionsElement:()=>zc,CriterionElement:()=>G,CriterionExpressionTypeElement:()=>W,FailureActionCriteriaElement:()=>Vc,FailureActionElement:()=>X,FallbackVisitor:()=>tc,FixedFieldsVisitor:()=>lc,InfoElement:()=>Y,JSONSchemaElement:()=>fo,MapVisitor:()=>pc,ParameterElement:()=>yo,PatternedFieldsVisitor:()=>uc,PayloadReplacementElement:()=>go,RequestBodyElement:()=>xo,RequestBodyReplacementsElement:()=>Gc,ReusableElement:()=>bo,SourceDescriptionElement:()=>vo,SourceDescriptionsElement:()=>xc,SpecificationExtensionVisitor:()=>Fl,SpecificationVisitor:()=>sc,StepDependsOnElement:()=>Xc,StepElement:()=>So,StepOnFailureElement:()=>Kc,StepOnSuccessElement:()=>Zc,StepOutputsElement:()=>ta,StepParametersElement:()=>na,StepSuccessCriteriaElement:()=>ia,SuccessActionCriteriaElement:()=>ca,SuccessActionElement:()=>wo,Visitor:()=>ec,WorkflowDependsOnElement:()=>Ic,WorkflowElement:()=>Eo,WorkflowFailureActionsElement:()=>la,WorkflowOutputsElement:()=>pa,WorkflowParametersElement:()=>da,WorkflowStepsElement:()=>Cc,WorkflowSuccessActionsElement:()=>$c,WorkflowsElement:()=>Sc,default:()=>Oo,isArazzoElement:()=>ya,isArazzoSpecification1Element:()=>ga,isArazzoSpecificationExtension:()=>cc,isBooleanJSONSchemaElement:()=>fa,isComponentsElement:()=>xa,isComponentsFailureActionsElement:()=>Ma,isComponentsInputsElement:()=>Ca,isComponentsParametersElement:()=>Ta,isComponentsSuccessActionsElement:()=>Na,isCriterionElement:()=>ba,isCriterionExpressionTypeElement:()=>va,isFailureActionCriteriaElement:()=>$a,isFailureActionElement:()=>Sa,isInfoElement:()=>wa,isJSONSchemaElement:()=>ma,isParameterElement:()=>Ea,isPayloadReplacementElement:()=>Oa,isRequestBodyElement:()=>ka,isRequestBodyReplacementsElement:()=>Da,isReusableElement:()=>Aa,isSourceDescriptionElement:()=>ja,isSourceDescriptionsElement:()=>Ra,isStepDependsOnElement:()=>Ba,isStepElement:()=>Fa,isStepOnFailureElement:()=>La,isStepOnSuccessElement:()=>Ja,isStepOutputsElement:()=>qa,isStepParametersElement:()=>_a,isStepSuccessCriteriaElement:()=>za,isSuccessActionCriteriaElement:()=>Ha,isSuccessActionElement:()=>Ia,isWorkflowDependsOnElement:()=>Va,isWorkflowElement:()=>Pa,isWorkflowFailureActionsElement:()=>Ua,isWorkflowOutputsElement:()=>Ga,isWorkflowParametersElement:()=>Wa,isWorkflowStepsElement:()=>Ya,isWorkflowSuccessActionsElement:()=>Ka,isWorkflowsElement:()=>Xa,mediaTypes:()=>y,refract:()=>Xl,refractArazzo:()=>Tl,refractArazzoSpecification1:()=>Nl,refractComponents:()=>$l,refractCriterion:()=>Dl,refractCriterionExpressionType:()=>Rl,refractFailureAction:()=>Bl,refractInfo:()=>Ll,refractJSONSchema:()=>Jl,refractParameter:()=>ql,refractPayloadReplacement:()=>_l,refractRequestBody:()=>zl,refractReusable:()=>Hl,refractSourceDescription:()=>Vl,refractStep:()=>Ul,refractSuccessAction:()=>Gl,refractWorkflow:()=>Wl,refractorPluginReplaceEmptyElement:()=>jo,specificationObj:()=>Pl});var s={};e.r(s),e.d(s,{isArazzoSpecificationExtension:()=>cc,isReusableLikeElement:()=>ac});var n={};function r(e){return null!=e&&"object"==typeof e&&!0===e["@@functional/placeholder"]}function i(e){return function t(s){return 0===arguments.length||r(s)?t:e.apply(this,arguments)}}function o(e,t){return t[e<0?t.length+e:e]}e.r(n),e.d(n,{isArazzoElement:()=>ya,isArazzoSpecification1Element:()=>ga,isBooleanJSONSchemaElement:()=>fa,isComponentsElement:()=>xa,isComponentsFailureActionsElement:()=>Ma,isComponentsInputsElement:()=>Ca,isComponentsParametersElement:()=>Ta,isComponentsSuccessActionsElement:()=>Na,isCriterionElement:()=>ba,isCriterionExpressionTypeElement:()=>va,isFailureActionCriteriaElement:()=>$a,isFailureActionElement:()=>Sa,isInfoElement:()=>wa,isJSONSchemaElement:()=>ma,isParameterElement:()=>Ea,isPayloadReplacementElement:()=>Oa,isRequestBodyElement:()=>ka,isRequestBodyReplacementsElement:()=>Da,isReusableElement:()=>Aa,isSourceDescriptionElement:()=>ja,isSourceDescriptionsElement:()=>Ra,isStepDependsOnElement:()=>Ba,isStepElement:()=>Fa,isStepOnFailureElement:()=>La,isStepOnSuccessElement:()=>Ja,isStepOutputsElement:()=>qa,isStepParametersElement:()=>_a,isStepSuccessCriteriaElement:()=>za,isSuccessActionCriteriaElement:()=>Ha,isSuccessActionElement:()=>Ia,isWorkflowDependsOnElement:()=>Va,isWorkflowElement:()=>Pa,isWorkflowFailureActionsElement:()=>Ua,isWorkflowOutputsElement:()=>Ga,isWorkflowParametersElement:()=>Wa,isWorkflowStepsElement:()=>Ya,isWorkflowSuccessActionsElement:()=>Ka,isWorkflowsElement:()=>Xa});const c=i(function(e){return o(-1,e)});class a extends AggregateError{constructor(e,t,s){super(e,t,s),this.name=this.constructor.name,"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}}const l=a;class u extends Error{static[Symbol.hasInstance](e){return super[Symbol.hasInstance](e)||Function.prototype[Symbol.hasInstance].call(l,e)}constructor(e,t){super(e,t),this.name=this.constructor.name,"function"==typeof Error.captureStackTrace&&Error.captureStackTrace(this,this.constructor)}}const p=u;const h=class extends p{};const d=class extends h{};const m=class extends Array{unknownMediaType="application/octet-stream";filterByFormat(){throw new d("filterByFormat method in MediaTypes class is not yet implemented.")}findBy(){throw new d("findBy method in MediaTypes class is not yet implemented.")}latest(){throw new d("latest method in MediaTypes class is not yet implemented.")}};class f extends m{filterByFormat(e="generic"){const t="generic"===e?"workflows;version":e;return this.filter(e=>e.includes(t))}findBy(e="1.0.1",t="generic"){const s="generic"===t?`vnd.oai.workflows;version=${e}`:`vnd.oai.workflows+${t};version=${e}`;return this.find(e=>e.includes(s))||this.unknownMediaType}latest(e="generic"){return c(this.filterByFormat(e))}}const y=new f("application/vnd.oai.workflows;version=1.0.0","application/vnd.oai.workflows+json;version=1.0.0","application/vnd.oai.workflows+yaml;version=1.0.0","application/vnd.oai.workflows;version=1.0.1","application/vnd.oai.workflows+json;version=1.0.1","application/vnd.oai.workflows+yaml;version=1.0.1");function g(e){return function t(s,n){switch(arguments.length){case 0:return t;case 1:return r(s)?t:i(function(t){return e(s,t)});default:return r(s)&&r(n)?t:r(s)?i(function(t){return e(t,n)}):r(n)?i(function(t){return e(s,t)}):e(s,n)}}}function x(e){for(var t,s=[];!(t=e.next()).done;)s.push(t.value);return s}function b(e,t,s){for(var n=0,r=s.length;n<r;){if(e(t,s[n]))return!0;n+=1}return!1}function v(e,t){return Object.prototype.hasOwnProperty.call(t,e)}const S="function"==typeof Object.is?Object.is:function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t};var w=Object.prototype.toString;const E=function(){return"[object Arguments]"===w.call(arguments)?function(e){return"[object Arguments]"===w.call(e)}:function(e){return v("callee",e)}}();var O=!{toString:null}.propertyIsEnumerable("toString"),k=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],A=function(){return arguments.propertyIsEnumerable("length")}(),j=function(e,t){for(var s=0;s<e.length;){if(e[s]===t)return!0;s+=1}return!1},F="function"!=typeof Object.keys||A?i(function(e){if(Object(e)!==e)return[];var t,s,n=[],r=A&&E(e);for(t in e)!v(t,e)||r&&"length"===t||(n[n.length]=t);if(O)for(s=k.length-1;s>=0;)v(t=k[s],e)&&!j(n,t)&&(n[n.length]=t),s-=1;return n}):i(function(e){return Object(e)!==e?[]:Object.keys(e)});const I=F;const P=i(function(e){return null===e?"Null":void 0===e?"Undefined":Object.prototype.toString.call(e).slice(8,-1)});function M(e,t,s,n){var r=x(e);function i(e,t){return C(e,t,s.slice(),n.slice())}return!b(function(e,t){return!b(i,t,e)},x(t),r)}function C(e,t,s,n){if(S(e,t))return!0;var r=P(e);if(r!==P(t))return!1;if("function"==typeof e["fantasy-land/equals"]||"function"==typeof t["fantasy-land/equals"])return"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t)&&"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e);if("function"==typeof e.equals||"function"==typeof t.equals)return"function"==typeof e.equals&&e.equals(t)&&"function"==typeof t.equals&&t.equals(e);switch(r){case"Arguments":case"Array":case"Object":if("function"==typeof e.constructor&&"Promise"===function(e){var t=String(e).match(/^function (\w*)/);return null==t?"":t[1]}(e.constructor))return e===t;break;case"Boolean":case"Number":case"String":if(typeof e!=typeof t||!S(e.valueOf(),t.valueOf()))return!1;break;case"Date":if(!S(e.valueOf(),t.valueOf()))return!1;break;case"Error":return e.name===t.name&&e.message===t.message;case"RegExp":if(e.source!==t.source||e.global!==t.global||e.ignoreCase!==t.ignoreCase||e.multiline!==t.multiline||e.sticky!==t.sticky||e.unicode!==t.unicode)return!1}for(var i=s.length-1;i>=0;){if(s[i]===e)return n[i]===t;i-=1}switch(r){case"Map":return e.size===t.size&&M(e.entries(),t.entries(),s.concat([e]),n.concat([t]));case"Set":return e.size===t.size&&M(e.values(),t.values(),s.concat([e]),n.concat([t]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var o=I(e);if(o.length!==I(t).length)return!1;var c=s.concat([e]),a=n.concat([t]);for(i=o.length-1;i>=0;){var l=o[i];if(!v(l,t)||!C(t[l],e[l],c,a))return!1;i-=1}return!0}const T=g(function(e,t){return C(e,t,[],[])});const N=class{key;value;constructor(e,t){this.key=e,this.value=t}toValue(){return{key:this.key?.toValue(),value:this.value?.toValue()}}};class ${elements;constructor(e){this.elements=e??[]}toValue(){return this.elements.map(e=>({key:e.key?.toValue(),value:e.value?.toValue()}))}map(e,t){return this.elements.map(s=>{const n=s.value,r=s.key;if(void 0===n||void 0===r)throw new Error("MemberElement must have both key and value");return void 0!==t?e.call(t,n,r,s):e(n,r,s)})}filter(e,t){const s=this.elements.filter(s=>{const n=s.value,r=s.key;return void 0!==n&&void 0!==r&&(void 0!==t?e.call(t,n,r,s):e(n,r,s))});return new $(s)}reject(e,t){const s=[];for(const n of this.elements){const r=n.value,i=n.key;void 0!==r&&void 0!==i&&(e.call(t,r,i,n)||s.push(n))}return new $(s)}forEach(e,t){this.elements.forEach((s,n)=>{const r=s.value,i=s.key;void 0!==r&&void 0!==i&&(void 0!==t?e.call(t,r,i,s,n):e(r,i,s,n))})}find(e,t){return this.elements.find(s=>{const n=s.value,r=s.key;return void 0!==n&&void 0!==r&&(void 0!==t?e.call(t,n,r,s):e(n,r,s))})}keys(){return this.elements.map(e=>e.key?.toValue()).filter(e=>void 0!==e)}values(){return this.elements.map(e=>e.value?.toValue()).filter(e=>void 0!==e)}get length(){return this.elements.length}get isEmpty(){return 0===this.length}get first(){return this.elements[0]}get(e){return this.elements[e]}push(e){return this.elements.push(e),this}includesKey(e){return this.elements.some(t=>t.key?.equals(e))}[Symbol.iterator](){return this.elements[Symbol.iterator]()}}const D=$;class R{parent;startLine;startCharacter;startOffset;endLine;endCharacter;endOffset;_storedElement="element";_content;_meta;_attributes;constructor(e,t,s){void 0!==t&&(this.meta=t),void 0!==s&&(this.attributes=s),void 0!==e&&(this.content=e)}get element(){return this._storedElement}set element(e){this._storedElement=e}get content(){return this._content}set content(e){if(e instanceof R)this._content=e;else if(null!=e&&"string"!=typeof e&&"number"!=typeof e&&"boolean"!=typeof e&&"bigint"!=typeof e&&"symbol"!=typeof e)if(e instanceof N)this._content=e;else if(e instanceof D)this._content=e.elements;else if(Array.isArray(e))this._content=e.map(e=>this.refract(e));else{if("object"!=typeof e)throw new Error("Cannot set content to value of type "+typeof e);this._content=Object.entries(e).map(([e,t])=>new this.MemberElement(e,t))}else this._content=e}get meta(){if(!this._meta){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._meta=new this.ObjectElement}return this._meta}set meta(e){e instanceof R?this._meta=e:this.meta.set(e??{})}get attributes(){if(!this._attributes){if(this.isFrozen){const e=new this.ObjectElement;return e.freeze(),e}this._attributes=new this.ObjectElement}return this._attributes}set attributes(e){e instanceof R?this._attributes=e:this.attributes.set(e??{})}get id(){return this.isFrozen?this.getMetaProperty("id",""):(this.hasMetaProperty("id")||this.setMetaProperty("id",""),this.meta.get("id"))}set id(e){this.setMetaProperty("id",e)}get classes(){return this.isFrozen?this.getMetaProperty("classes",[]):(this.hasMetaProperty("classes")||this.setMetaProperty("classes",[]),this.meta.get("classes"))}set classes(e){this.setMetaProperty("classes",e)}get links(){return this.isFrozen?this.getMetaProperty("links",[]):(this.hasMetaProperty("links")||this.setMetaProperty("links",[]),this.meta.get("links"))}set links(e){this.setMetaProperty("links",e)}get children(){const{_content:e}=this;if(Array.isArray(e))return e;if(e instanceof N){const t=[];return e.key&&t.push(e.key),e.value&&t.push(e.value),t}return e instanceof R?[e]:[]}get isFrozen(){return Object.isFrozen(this)}freeze(){if(!this.isFrozen){this._meta&&(this._meta.parent=this,this._meta.freeze()),this._attributes&&(this._attributes.parent=this,this._attributes.freeze());for(const e of this.children)e.parent=this,e.freeze();Array.isArray(this._content)&&Object.freeze(this._content),Object.freeze(this)}}toValue(){const{_content:e}=this;return e instanceof R||e instanceof N?e.toValue():Array.isArray(e)?e.map(e=>e.toValue()):e}equals(e){const t=e instanceof R?e.toValue():e;return T(this.toValue(),t)}primitive(){}set(e){return this.content=e,this}toRef(e){const t=this.id.toValue();if(""===t)throw new Error("Cannot create reference to an element without an ID");const s=new this.RefElement(t);return"string"==typeof e&&(s.path=this.refract(e)),s}getMetaProperty(e,t){if(!this.hasMetaProperty(e)){if(void 0===t)return;const e=this.refract(t);return e&&this.isFrozen&&e.freeze(),e}return this.meta.get(e)}setMetaProperty(e,t){this.meta.set(e,t)}hasMetaProperty(e){return!this.isMetaEmpty&&this.meta.hasKey(e)}get isMetaEmpty(){return void 0===this._meta||this.meta.isEmpty}getAttributesProperty(e,t){if(!this.hasAttributesProperty(e)){if(this.isFrozen){const e=this.refract(t);return e.freeze(),e}this.attributes.set(e,t)}return this.attributes.get(e)}setAttributesProperty(e,t){this.attributes.set(e,t)}hasAttributesProperty(e){return!this.isAttributesEmpty&&this.attributes.hasKey(e)}get isAttributesEmpty(){return void 0===this._attributes||this.attributes.isEmpty}}const B=R;const L=class extends B{constructor(e,t,s){super(e,t,s),this.element="string"}primitive(){return"string"}get length(){return this.content?.length??0}};const J=class extends L{constructor(e,t,s){super(e,t,s),this.element="arazzo",this.classes.push("spec-version"),this.classes.push("version")}};class q extends B{constructor(e,t,s){super(e||[],t,s)}get length(){return this._content.length}get isEmpty(){return 0===this.length}get first(){return this._content[0]}get second(){return this._content[1]}get last(){return this._content.at(-1)}push(...e){for(const t of e)this._content.push(this.refract(t));return this}shift(){return this._content.shift()}unshift(e){this._content.unshift(this.refract(e))}includes(e){return this._content.some(t=>t.equals(e))}findElements(e,t){const s=t||{},n=!!s.recursive,r=void 0===s.results?[]:s.results;for(let t=0;t<this._content.length;t+=1){const s=this._content[t],i=s;n&&"function"==typeof i.findElements&&i.findElements(e,{results:r,recursive:n}),e(s,t,void 0)&&r.push(s)}return r}find(e){const t=this.findElements(e,{recursive:!0});return new this.ArrayElement(t)}findByElement(e){return this.find(t=>t.element===e)}findByClass(e){return this.find(t=>{const s=t.classes;return"function"==typeof s.includes&&s.includes(e)})}getById(e){return this.find(t=>t.id.toValue()===e).first}concat(e){return new(0,this.constructor)(this._content.concat(e._content))}[Symbol.iterator](){return this._content[Symbol.iterator]()}}const _=q;const z=class extends B{constructor(e,t,s,n){super(new N,s,n),this.element="member",void 0!==e&&(this.key=e),arguments.length>=2&&(this.value=t)}primitive(){return"member"}get key(){return this._content.key}set key(e){this._content.key=this.refract(e)}get value(){return this._content.value}set value(e){this._content.value=void 0===e?void 0:this.refract(e)}};const H=class extends _{constructor(e,t,s){super(e||[],t,s),this.element="object"}primitive(){return"object"}toValue(){return this._content.reduce((e,t)=>(e[t.key.toValue()]=t.value?t.value.toValue():void 0,e),{})}get(e){const t=this.getMember(e);if(t)return t.value}getValue(e){const t=this.get(e);if(t)return t.toValue()}getMember(e){if(void 0!==e)return this._content.find(t=>t.key.toValue()===e)}remove(e){let t=null;return this.content=this._content.filter(s=>s.key.toValue()!==e||(t=s,!1)),t}getKey(e){const t=this.getMember(e);if(t)return t.key}set(e,t){if("string"==typeof e){const s=this.getMember(e);s?s.value=t:this._content.push(new z(e,t))}else if("object"==typeof e&&!Array.isArray(e))for(const t of Object.keys(e))this.set(t,e[t]);return this}keys(){return this._content.map(e=>e.key.toValue())}values(){return this._content.map(e=>e.value.toValue())}hasKey(e){return this._content.some(t=>t.key.equals(e))}items(){return this._content.map(e=>[e.key.toValue(),e.value.toValue()])}map(e,t){return this._content.map(s=>e.call(t,s.value,s.key,s))}compactMap(e,t){const s=[];return this.forEach((n,r,i)=>{const o=e.call(t,n,r,i);o&&s.push(o)}),s}filter(e,t){return new D(this._content).filter(e,t)}reject(e,t){const s=[];for(const n of this._content)e.call(t,n.value,n.key,n)||s.push(n);return new D(s)}forEach(e,t){this._content.forEach(s=>e.call(t,s.value,s.key,s))}reduce(e,t){let s,n;void 0!==t?(s=0,n=this.refract(t)):(s=1,n=this._content[0]?.value);for(let t=s;t<this._content.length;t+=1){const s=this._content[t],r=e(n,s.value,s.key,s,this);n=void 0===r?r:this.refract(r)}return n}empty(){return new this.constructor([])}};const V=class extends H{constructor(e,t,s){super(e,t,s),this.element="arazzoSpecification1",this.classes.push("api")}get arazzo(){return this.get("arazzo")}set arazzo(e){this.set("arazzo",e)}get info(){return this.get("info")}set info(e){this.set("info",e)}get sourceDescriptions(){return this.get("sourceDescriptions")}set sourceDescriptions(e){this.set("sourceDescriptions",e)}get workflows(){return this.get("workflows")}set workflows(e){this.set("workflows",e)}get components(){return this.get("components")}set components(e){this.set("components",e)}};const U=class extends H{constructor(e,t,s){super(e,t,s),this.element="components"}get inputs(){return this.get("inputs")}set inputs(e){this.set("inputs",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get successActions(){return this.get("successActions")}set successActions(e){this.set("successActions",e)}get failureActions(){return this.get("failureActions")}set failureActions(e){this.set("failureActions",e)}};const G=class extends H{constructor(e,t,s){super(e,t,s),this.element="criterion"}get context(){return this.get("context")}set context(e){this.set("context",e)}get condition(){return this.get("condition")}set condition(e){this.set("condition",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}};const W=class extends H{constructor(e,t,s){super(e,t,s),this.element="criterionExpressionType"}get type(){return this.get("type")}set type(e){this.set("type",e)}get version(){return this.get("version")}set version(e){this.set("version",e)}};const X=class extends H{constructor(e,t,s){super(e,t,s),this.element="failureAction"}get name(){return this.get("name")}set name(e){this.set("name",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get stepId(){return this.get("stepId")}set stepId(e){this.set("stepId",e)}get retryAfter(){return this.get("retryAfter")}set retryAfter(e){this.set("retryAfter",e)}get retryLimit(){return this.get("retryLimit")}set retryLimit(e){this.set("retryLimit",e)}get criteria(){return this.get("criteria")}set criteria(e){this.set("criteria",e)}};const Y=class extends H{constructor(e,t,s){super(e,t,s),this.element="info",this.classes.push("info")}get title(){return this.get("title")}set title(e){this.set("title",e)}get summary(){return this.get("summary")}set summary(e){this.set("summary",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get version(){return this.get("version")}set version(e){this.set("version",e)}};function K(e,t,s){for(var n=0,r=s.length;n<r;)t=e(t,s[n]),n+=1;return t}var Q=g(function(e,t){return K(function(s,n){return s[n]=e(t[n],n,t),s},{},I(t))});const Z=Q;const ee=i(function(e){return null==e});var te=g(function(e,t){if(0===e.length||ee(t))return!1;for(var s=t,n=0;n<e.length;){if(ee(s)||!v(e[n],s))return!1;s=s[e[n]],n+=1}return!0});const se=te;var ne=g(function(e,t){return se([e],t)});const re=ne;function ie(e){return function t(s,n,o){switch(arguments.length){case 0:return t;case 1:return r(s)?t:g(function(t,n){return e(s,t,n)});case 2:return r(s)&&r(n)?t:r(s)?g(function(t,s){return e(t,n,s)}):r(n)?g(function(t,n){return e(s,t,n)}):i(function(t){return e(s,n,t)});default:return r(s)&&r(n)&&r(o)?t:r(s)&&r(n)?g(function(t,s){return e(t,s,o)}):r(s)&&r(o)?g(function(t,s){return e(t,n,s)}):r(n)&&r(o)?g(function(t,n){return e(s,t,n)}):r(s)?i(function(t){return e(t,n,o)}):r(n)?i(function(t){return e(s,t,o)}):r(o)?i(function(t){return e(s,n,t)}):e(s,n,o)}}}const oe=Number.isInteger||function(e){return(e|0)===e};const ce=function(e,t){if(null!=t)return oe(e)?o(e,t):t[e]};const ae=g(ce);const le=ie(function(e,t,s){return e(ae(t,s))});function ue(e,t){for(var s=t,n=0;n<e.length;n+=1){if(null==s)return;var r=e[n];s=oe(r)?o(r,s):s[r]}return s}const pe=g(ue);function he(e,t){switch(e){case 0:return function(){return t.apply(this,arguments)};case 1:return function(e){return t.apply(this,arguments)};case 2:return function(e,s){return t.apply(this,arguments)};case 3:return function(e,s,n){return t.apply(this,arguments)};case 4:return function(e,s,n,r){return t.apply(this,arguments)};case 5:return function(e,s,n,r,i){return t.apply(this,arguments)};case 6:return function(e,s,n,r,i,o){return t.apply(this,arguments)};case 7:return function(e,s,n,r,i,o,c){return t.apply(this,arguments)};case 8:return function(e,s,n,r,i,o,c,a){return t.apply(this,arguments)};case 9:return function(e,s,n,r,i,o,c,a,l){return t.apply(this,arguments)};case 10:return function(e,s,n,r,i,o,c,a,l,u){return t.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function de(e,t){return function(){return t.call(this,e.apply(this,arguments))}}const me=Array.isArray||function(e){return null!=e&&e.length>=0&&"[object Array]"===Object.prototype.toString.call(e)};function fe(e){return"[object String]"===Object.prototype.toString.call(e)}const ye=i(function(e){return!!me(e)||!!e&&("object"==typeof e&&(!fe(e)&&(0===e.length||e.length>0&&(e.hasOwnProperty(0)&&e.hasOwnProperty(e.length-1)))))});var ge="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function xe(e,t,s){return function(n,r,i){if(ye(i))return e(n,r,i);if(null==i)return r;if("function"==typeof i["fantasy-land/reduce"])return t(n,r,i,"fantasy-land/reduce");if(null!=i[ge])return s(n,r,i[ge]());if("function"==typeof i.next)return s(n,r,i);if("function"==typeof i.reduce)return t(n,r,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function be(e,t,s){for(var n=0,r=s.length;n<r;){if((t=e["@@transducer/step"](t,s[n]))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}n+=1}return e["@@transducer/result"](t)}var ve=g(function(e,t){return he(e.length,function(){return e.apply(t,arguments)})});const Se=ve;function we(e,t,s){for(var n=s.next();!n.done;){if((t=e["@@transducer/step"](t,n.value))&&t["@@transducer/reduced"]){t=t["@@transducer/value"];break}n=s.next()}return e["@@transducer/result"](t)}function Ee(e,t,s,n){return e["@@transducer/result"](s[n](Se(e["@@transducer/step"],e),t))}const Oe=xe(be,Ee,we);var ke=function(){function e(e){this.f=e}return e.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},e.prototype["@@transducer/result"]=function(e){return e},e.prototype["@@transducer/step"]=function(e,t){return this.f(e,t)},e}();const Ae=ie(function(e,t,s){return Oe("function"==typeof e?new ke(e):e,t,s)});function je(e,t){return function(){var s=arguments.length;if(0===s)return t();var n=arguments[s-1];return me(n)||"function"!=typeof n[e]?t.apply(this,arguments):n[e].apply(n,Array.prototype.slice.call(arguments,0,s-1))}}const Fe=ie(je("slice",function(e,t,s){return Array.prototype.slice.call(s,e,t)}));const Ie=i(je("tail",Fe(1,1/0)));function Pe(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return he(arguments[0].length,Ae(de,arguments[0],Ie(arguments)))}var Me=function(e,t){switch(arguments.length){case 0:return Me;case 1:return function t(s){return 0===arguments.length?t:S(e,s)};default:return S(e,t)}};const Ce=Me;function Te(e,t){return function(e,t,s){var n,r;if("function"==typeof e.indexOf)switch(typeof t){case"number":if(0===t){for(n=1/t;s<e.length;){if(0===(r=e[s])&&1/r===n)return s;s+=1}return-1}if(t!=t){for(;s<e.length;){if("number"==typeof(r=e[s])&&r!=r)return s;s+=1}return-1}return e.indexOf(t,s);case"string":case"boolean":case"function":case"undefined":return e.indexOf(t,s);case"object":if(null===t)return e.indexOf(t,s)}for(;s<e.length;){if(T(e[s],t))return s;s+=1}return-1}(t,e,0)>=0}function Ne(e,t){for(var s=0,n=t.length,r=Array(n);s<n;)r[s]=e(t[s]),s+=1;return r}function $e(e){return'"'+e.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var De=function(e){return(e<10?"0":"")+e};const Re="function"==typeof Date.prototype.toISOString?function(e){return e.toISOString()}:function(e){return e.getUTCFullYear()+"-"+De(e.getUTCMonth()+1)+"-"+De(e.getUTCDate())+"T"+De(e.getUTCHours())+":"+De(e.getUTCMinutes())+":"+De(e.getUTCSeconds())+"."+(e.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function Be(e,t,s){return function(){if(0===arguments.length)return s();var n=arguments[arguments.length-1];if(!me(n)){for(var r=0;r<e.length;){if("function"==typeof n[e[r]])return n[e[r]].apply(n,Array.prototype.slice.call(arguments,0,-1));r+=1}if(function(e){return null!=e&&"function"==typeof e["@@transducer/step"]}(n))return t.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return s.apply(this,arguments)}}function Le(e){return"[object Object]"===Object.prototype.toString.call(e)}const Je=function(){return this.xf["@@transducer/init"]()},qe=function(e){return this.xf["@@transducer/result"](e)};var _e=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){return this.f(t)?this.xf["@@transducer/step"](e,t):e},e}();function ze(e){return function(t){return new _e(e,t)}}var He=g(Be(["fantasy-land/filter","filter"],ze,function(e,t){return Le(t)?K(function(s,n){return e(t[n])&&(s[n]=t[n]),s},{},I(t)):(s=t,"[object Map]"===Object.prototype.toString.call(s)?function(e,t){for(var s=new Map,n=t.entries(),r=n.next();!r.done;)e(r.value[1])&&s.set(r.value[0],r.value[1]),r=n.next();return s}(e,t):function(e,t){for(var s=0,n=t.length,r=[];s<n;)e(t[s])&&(r[r.length]=t[s]),s+=1;return r}(e,t));var s}));const Ve=He;const Ue=g(function(e,t){return Ve((s=e,function(){return!s.apply(this,arguments)}),t);var s});function Ge(e,t){var s=function(s){var n=t.concat([e]);return Te(s,n)?"<Circular>":Ge(s,n)},n=function(e,t){return Ne(function(t){return $e(t)+": "+s(e[t])},t.slice().sort())};switch(Object.prototype.toString.call(e)){case"[object Arguments]":return"(function() { return arguments; }("+Ne(s,e).join(", ")+"))";case"[object Array]":return"["+Ne(s,e).concat(n(e,Ue(function(e){return/^\d+$/.test(e)},I(e)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof e?"new Boolean("+s(e.valueOf())+")":e.toString();case"[object Date]":return"new Date("+(isNaN(e.valueOf())?s(NaN):$e(Re(e)))+")";case"[object Map]":return"new Map("+s(Array.from(e))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof e?"new Number("+s(e.valueOf())+")":1/e==-1/0?"-0":e.toString(10);case"[object Set]":return"new Set("+s(Array.from(e).sort())+")";case"[object String]":return"object"==typeof e?"new String("+s(e.valueOf())+")":$e(e);case"[object Undefined]":return"undefined";default:if("function"==typeof e.toString){var r=e.toString();if("[object Object]"!==r)return r}return"{"+n(e,I(e)).join(", ")+"}"}}const We=i(function(e){return Ge(e,[])});const Xe=ie(function(e,t,s){return e(ue(t,s))});function Ye(e){var t=Object.prototype.toString.call(e);return"[object Function]"===t||"[object AsyncFunction]"===t||"[object GeneratorFunction]"===t||"[object AsyncGeneratorFunction]"===t}const Ke=g(function(e,t){return e&&t});function Qe(e,t,s){for(var n=s.next();!n.done;)t=e(t,n.value),n=s.next();return t}function Ze(e,t,s,n){return s[n](e,t)}const et=xe(K,Ze,Qe);var tt=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){return this.xf["@@transducer/step"](e,this.f(t))},e}();const st=function(e){return function(t){return new tt(e,t)}};function nt(e,t,s){return function(){for(var n=[],i=0,o=e,c=0,a=!1;c<t.length||i<arguments.length;){var l;c<t.length&&(!r(t[c])||i>=arguments.length)?l=t[c]:(l=arguments[i],i+=1),n[c]=l,r(l)?a=!0:o-=1,c+=1}return!a&&o<=0?s.apply(this,n):he(Math.max(0,o),nt(e,n,s))}}var rt=g(function(e,t){return 1===e?i(t):he(e,nt(e,[],t))});const it=rt;var ot=g(Be(["fantasy-land/map","map"],st,function(e,t){switch(Object.prototype.toString.call(t)){case"[object Function]":return it(t.length,function(){return e.call(this,t.apply(this,arguments))});case"[object Object]":return K(function(s,n){return s[n]=e(t[n]),s},{},I(t));default:return Ne(e,t)}}));const ct=ot;const at=g(function(e,t){return"function"==typeof t["fantasy-land/ap"]?t["fantasy-land/ap"](e):"function"==typeof e.ap?e.ap(t):"function"==typeof e?function(s){return e(s)(t(s))}:et(function(e,s){return function(e,t){var s;t=t||[];var n=(e=e||[]).length,r=t.length,i=[];for(s=0;s<n;)i[i.length]=e[s],s+=1;for(s=0;s<r;)i[i.length]=t[s],s+=1;return i}(e,ct(s,t))},[],e)});var lt=g(function(e,t){var s=it(e,t);return it(e,function(){return K(at,ct(s,arguments[0]),Array.prototype.slice.call(arguments,1))})});const ut=lt;var pt=i(function(e){return ut(e.length,e)});const ht=pt;const dt=g(function(e,t){return Ye(e)?function(){return e.apply(this,arguments)&&t.apply(this,arguments)}:ht(Ke)(e,t)});const mt=T(null);const ft=ht(i(function(e){return!e}));const yt=ft(mt);function gt(e){return gt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},gt(e)}const xt=function(e){return"object"===gt(e)};const bt=it(1,dt(yt,xt));const vt=g(function(e,t){if(e===t)return t;function s(e,t){if(e>t!=t>e)return t>e?t:e}var n=s(e,t);if(void 0!==n)return n;var r=s(typeof e,typeof t);if(void 0!==r)return r===typeof e?e:t;var i=We(e),o=s(i,We(t));return void 0!==o&&o===i?e:t});const St=g(function(e,t){return ct(ae(e),t)});const wt=i(function(e){return it(Ae(vt,0,St("length",e)),function(){for(var t=0,s=e.length;t<s;){if(e[t].apply(this,arguments))return!0;t+=1}return!1})});const Et=it(1,Pe(P,Ce("GeneratorFunction")));const Ot=it(1,Pe(P,Ce("AsyncFunction")));const kt=wt([Pe(P,Ce("Function")),Et,Ot]);var At=Pe(P,Ce("Object")),jt=Pe(We,T(We(Object))),Ft=Xe(dt(kt,jt),["constructor"]);const It=it(1,function(e){if(!bt(e)||!At(e))return!1;var t=Object.getPrototypeOf(e);return!!mt(t)||Ft(t)});const Pt=it(1,Pe(P,Ce("String")));var Mt=i(function(e){return it(e.length,e)});const Ct=Mt;const Tt=g(function(e,t){return it(e+1,function(){var s=arguments[e];if(null!=s&&Ye(s[t]))return s[t].apply(s,Array.prototype.slice.call(arguments,0,e));throw new TypeError(We(s)+' does not have a method named "'+t+'"')})});const Nt=Tt(1,"split");var $t=function(){function e(e,t){this.xf=t,this.f=e}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){if(this.f){if(this.f(t))return e;this.f=null}return this.xf["@@transducer/step"](e,t)},e}();function Dt(e){return function(t){return new $t(e,t)}}const Rt=g(Be(["dropWhile"],Dt,function(e,t){for(var s=0,n=t.length;s<n&&e(t[s]);)s+=1;return Fe(s,1/0,t)}));const Bt=Tt(1,"join");var Lt=i(function(e){return it(e.length,function(t,s){var n=Array.prototype.slice.call(arguments,0);return n[0]=s,n[1]=t,e.apply(this,n)})});const Jt=Lt(g(Te));const qt=Ct(function(e,t){return Pe(Nt(""),Rt(Jt(e)),Bt(""))(t)}),_t=new WeakMap,zt=e=>{if(_t.has(e))return _t.get(e);const t={},s=(e,n,r)=>("string"==typeof e.element&&(t[e.element]=e.$visitor?[...r,"$visitor"]:r),Z((e,t)=>{const i=[...r,t];if(It(e)&&re("$ref",e)&&le(Pt,"$ref",e)){const t=pe(["$ref"],e),s=qt("#/",t);return pe(s.split("/"),n)}return It(e)?s(e,n,i):e},e)),n=s(e,e,[]);return n.elementMap=t,_t.set(e,n),n};const Ht=class extends H{constructor(e,t,s){super(e,t,s),this.element="JSONSchemaDraft4"}get idField(){return this.get("id")}set idField(e){this.set("id",e)}get $schema(){return this.get("$schema")}set $schema(e){this.set("$schema",e)}get multipleOf(){return this.get("multipleOf")}set multipleOf(e){this.set("multipleOf",e)}get maximum(){return this.get("maximum")}set maximum(e){this.set("maximum",e)}get exclusiveMaximum(){return this.get("exclusiveMaximum")}set exclusiveMaximum(e){this.set("exclusiveMaximum",e)}get minimum(){return this.get("minimum")}set minimum(e){this.set("minimum",e)}get exclusiveMinimum(){return this.get("exclusiveMinimum")}set exclusiveMinimum(e){this.set("exclusiveMinimum",e)}get maxLength(){return this.get("maxLength")}set maxLength(e){this.set("maxLength",e)}get minLength(){return this.get("minLength")}set minLength(e){this.set("minLength",e)}get pattern(){return this.get("pattern")}set pattern(e){this.set("pattern",e)}get additionalItems(){return this.get("additionalItems")}set additionalItems(e){this.set("additionalItems",e)}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get maxItems(){return this.get("maxItems")}set maxItems(e){this.set("maxItems",e)}get minItems(){return this.get("minItems")}set minItems(e){this.set("minItems",e)}get uniqueItems(){return this.get("uniqueItems")}set uniqueItems(e){this.set("uniqueItems",e)}get maxProperties(){return this.get("maxProperties")}set maxProperties(e){this.set("maxProperties",e)}get minProperties(){return this.get("minProperties")}set minProperties(e){this.set("minProperties",e)}get required(){return this.get("required")}set required(e){this.set("required",e)}get properties(){return this.get("properties")}set properties(e){this.set("properties",e)}get additionalProperties(){return this.get("additionalProperties")}set additionalProperties(e){this.set("additionalProperties",e)}get patternProperties(){return this.get("patternProperties")}set patternProperties(e){this.set("patternProperties",e)}get dependencies(){return this.get("dependencies")}set dependencies(e){this.set("dependencies",e)}get enum(){return this.get("enum")}set enum(e){this.set("enum",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get allOf(){return this.get("allOf")}set allOf(e){this.set("allOf",e)}get anyOf(){return this.get("anyOf")}set anyOf(e){this.set("anyOf",e)}get oneOf(){return this.get("oneOf")}set oneOf(e){this.set("oneOf",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get definitions(){return this.get("definitions")}set definitions(e){this.set("definitions",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get default(){return this.get("default")}set default(e){this.set("default",e)}get format(){return this.get("format")}set format(e){this.set("format",e)}get base(){return this.get("base")}set base(e){this.set("base",e)}get linksField(){return this.get("links")}set linksField(e){this.set("links",e)}get media(){return this.get("media")}set media(e){this.set("media",e)}get readOnly(){return this.get("readOnly")}set readOnly(e){this.set("readOnly",e)}};const Vt=class extends H{constructor(e,t,s){super(e,t,s),this.element="JSONReference",this.classes.push("json-reference")}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}};const Ut=class extends H{constructor(e,t,s){super(e,t,s),this.element="media"}get binaryEncoding(){return this.get("binaryEncoding")}set binaryEncoding(e){this.set("binaryEncoding",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}};const Gt=class extends H{constructor(e,t,s){super(e,t,s),this.element="linkDescription"}get href(){return this.get("href")}set href(e){this.set("href",e)}get rel(){return this.get("rel")}set rel(e){this.set("rel",e)}get title(){return this.get("title")}set title(e){this.set("title",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get mediaType(){return this.get("mediaType")}set mediaType(e){this.set("mediaType",e)}get method(){return this.get("method")}set method(e){this.set("method",e)}get encType(){return this.get("encType")}set encType(e){this.set("encType",e)}get schema(){return this.get("schema")}set schema(e){this.set("schema",e)}};const Wt=class extends B{constructor(e,t,s){super(e,t,s),this.element="number"}primitive(){return"number"}};const Xt=class extends B{constructor(e,t,s){super(e??null,t,s),this.element="null"}primitive(){return"null"}set(e){throw new Error("Cannot set the value of null")}};const Yt=class extends B{constructor(e,t,s){super(e,t,s),this.element="boolean"}primitive(){return"boolean"}};const Kt=class extends _{constructor(e,t,s){super(e||[],t,s),this.element="array"}primitive(){return"array"}get(e){return this._content[e]}getValue(e){const t=this.get(e);if(t)return t.toValue()}set(e,t){return"number"==typeof e&&void 0!==t?this._content[e]=this.refract(t):this.content=e,this}remove(e){return this._content.splice(e,1)[0]??null}map(e,t){return this._content.map(e,t)}flatMap(e,t){return this._content.flatMap(e,t)}compactMap(e,t){const s=[];for(const n of this._content){const r=e.call(t,n);r&&s.push(r)}return s}filter(e,t){const s=this._content.filter(e,t);return new this.constructor(s)}reject(e,t){const s=[];for(const n of this._content)e.call(t,n)||s.push(n);return new this.constructor(s)}reduce(e,t){let s,n;void 0!==t?(s=0,n=this.refract(t)):(s=1,n=this.first);for(let t=s;t<this.length;t+=1){const s=e(n,this._content[t],t,this);n=void 0===s?s:this.refract(s)}return n}forEach(e,t){this._content.forEach((s,n)=>{e.call(t,s,n)})}empty(){return new this.constructor([])}},Qt=e=>e instanceof B,Zt=e=>e instanceof L,es=e=>e instanceof Wt,ts=e=>e instanceof Xt,ss=e=>e instanceof Yt,ns=e=>e instanceof Kt,rs=e=>e instanceof H,is=e=>e instanceof z,os=e=>"number"==typeof e.startLine&&"number"==typeof e.startCharacter&&"number"==typeof e.startOffset&&"number"==typeof e.endLine&&"number"==typeof e.endCharacter&&"number"==typeof e.endOffset,cs=(e,t)=>0===t.length||!!Qt(e)&&(!e.isMetaEmpty&&(!!e.hasMetaProperty("classes")&&t.every(t=>e.classes.includes(t))));class as extends L{constructor(e,t,s){super(e,t,s),this.element="sourceMap"}static transfer(e,t){t.startLine=e.startLine,t.startCharacter=e.startCharacter,t.startOffset=e.startOffset,t.endLine=e.endLine,t.endCharacter=e.endCharacter,t.endOffset=e.endOffset}static from(e){const{startLine:t,startCharacter:s,startOffset:n,endLine:r,endCharacter:i,endOffset:o}=e;if("number"!=typeof t||"number"!=typeof s||"number"!=typeof n||"number"!=typeof r||"number"!=typeof i||"number"!=typeof o)return;const c="sm1:"+[t,s,n,r,i,o].map(us).join("");const a=new as(c);return a.startLine=t,a.startCharacter=s,a.startOffset=n,a.endLine=r,a.endCharacter=i,a.endOffset=o,a}applyTo(e){this.content&&([e.startLine,e.startCharacter,e.startOffset,e.endLine,e.endCharacter,e.endOffset]=function(e){const t=e.startsWith("sm1:")?e.slice(4):e,s=[];let n=0;for(let e=0;e<6;e++){const e=ps(t,n);s.push(e.value),n=e.next}return s}(this.content))}}const ls="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";function us(e){let t=e>>>0,s="";do{let e=31&t;t>>>=5,0!==t&&(e|=32),s+=ls[e]}while(0!==t);return s}function ps(e,t=0){let s=0,n=0,r=t;for(;;){const t=e[r++],i=ls.indexOf(t);if(-1===i)throw new Error(`Invalid Base64 VLQ char: ${t}`);if(s|=(31&i)<<n,n+=5,!!!(32&i))break}return{value:s>>>0,next:r}}const hs=as;const ds=class extends p{constructor(e,t){if(super(e,t),null!=t&&"object"==typeof t){const{cause:e,...s}=t;Object.assign(this,s)}}};const ms=class extends ds{value;constructor(e,t){super(e,t),void 0!==t&&(this.value=t.value)}};const fs=class extends ms{};const ys=class extends ms{},gs=(e,t)=>{const{visited:s=new WeakMap}=t,n={...t,visited:s};if(s.has(e))return s.get(e);const r=Ss(e);s.set(e,r);const{content:i}=e;return Array.isArray(i)?r.content=i.map(e=>gs(e,n)):Qt(i)?r.content=gs(i,n):r.content=i instanceof N?xs(i,n):i,r},xs=(e,t)=>{const{visited:s=new WeakMap}=t,n={...t,visited:s};if(s.has(e))return s.get(e);const{key:r,value:i}=e,o=void 0!==r?gs(r,n):void 0,c=void 0!==i?gs(i,n):void 0,a=new N(o,c);return s.set(e,a),a},bs=(e,t={})=>{if(e instanceof N)return xs(e,t);if(e instanceof D)return((e,t)=>{const{visited:s=new WeakMap}=t,n={...t,visited:s};if(s.has(e))return s.get(e);const r=[...e].map(e=>gs(e,n)),i=new D(r);return s.set(e,i),i})(e,t);if(Qt(e))return gs(e,t);throw new fs("Value provided to cloneDeep function couldn't be cloned",{value:e})};bs.safe=e=>{try{return bs(e)}catch{return e}};const vs=e=>{const{key:t,value:s}=e;return new N(t,s)},Ss=e=>{const t=new(0,e.constructor);t.element=e.element,e.isMetaEmpty||(t.meta=bs(e.meta)),e.isAttributesEmpty||(t.attributes=bs(e.attributes)),os(e)&&hs.transfer(e,t);const{content:s}=e;return Qt(s)?t.content=Ss(s):Array.isArray(s)?t.content=[...s]:t.content=s instanceof N?vs(s):s,t},ws=e=>{if(e instanceof N)return vs(e);if(e instanceof D)return(e=>{const t=[...e];return new D(t)})(e);if(Qt(e))return Ss(e);throw new ys("Value provided to cloneShallow function couldn't be cloned",{value:e})};ws.safe=e=>{try{return ws(e)}catch{return e}};const Es=class extends B{constructor(e,t,s){super(e||[],t,s),this.element="link"}get relation(){if(this.hasAttributesProperty("relation"))return this.attributes.get("relation")}set relation(e){this.attributes.set("relation",e)}get href(){if(this.hasAttributesProperty("href"))return this.attributes.get("href")}set href(e){this.attributes.set("href",e)}};const Os=class extends B{constructor(e,t,s){super(e||[],t,s),this.element="ref",this.path||(this.path="element")}get path(){if(this.hasAttributesProperty("path"))return this.attributes.get("path")}set path(e){this.attributes.set("path",e)}};const ks=class extends L{constructor(e,t,s){super(e,t,s),this.element="annotation"}get code(){if(this.hasAttributesProperty("code"))return this.attributes.get("code")}set code(e){this.attributes.set("code",e)}};const As=class extends L{constructor(e,t,s){super(e,t,s),this.element="comment"}};const js=class extends Kt{constructor(e,t,s){super(e,t,s),this.element="parseResult"}get api(){return this.filter(e=>cs(e,["api"])).first}get results(){return this.filter(e=>cs(e,["result"]))}get result(){return this.results.first}get annotations(){return this.filter(e=>"annotation"===e.element)}get warnings(){return this.filter(e=>"annotation"===e.element&&cs(e,["warning"]))}get errors(){return this.filter(e=>"annotation"===e.element&&cs(e,["error"]))}get isEmpty(){return 0===this.reject(e=>"annotation"===e.element).length}replaceResult(e){const{result:t}=this;if(void 0===t)return!1;const s=this._content,n=s.findIndex(e=>e===t);return-1!==n&&(s[n]=e,!0)}},Fs=e=>e instanceof Es,Is=e=>e instanceof Os,Ps=e=>{if(!Qt(e))return e;if(Zt(e)||es(e)||ss(e)||ts(e))return e.toValue();const t=new WeakMap,s=e=>{if(!Qt(e))return e;if(rs(e)){if(t.has(e))return t.get(e);const n={};return t.set(e,n),e.forEach((e,t)=>{const r=s(t),i=s(e);"string"==typeof r&&(n[r]=i)}),n}if(ns(e)){if(t.has(e))return t.get(e);const n=[];return t.set(e,n),e.forEach(e=>n.push(s(e))),n}return Is(e)?String(e.toValue()):Fs(e)?Zt(e.href)?e.href.toValue():"":e.toValue()};return s(e)},Ms=e=>{const t=e.isMetaEmpty?void 0:bs(e.meta),s=e.isAttributesEmpty?void 0:bs(e.attributes);return new e.constructor(void 0,t,s)},Cs=(e,t)=>t.clone&&t.isMergeableElement(e)?Ns(Ms(e),e,t):e,Ts={clone:!0,isMergeableElement:e=>rs(e)||ns(e),arrayElementMerge:(e,t,s)=>new(0,e.constructor)(e.concat(t).map(e=>Cs(e,s))),objectElementMerge:(e,t,s)=>{const n=rs(e)?Ms(e):Ms(t);return rs(e)&&e.forEach((e,t,r)=>{const i=ws(r);i.value=Cs(e,s),n.content.push(i)}),t.forEach((t,r,i)=>{const o=Ps(r);let c;if(rs(e)&&e.hasKey(o)&&s.isMergeableElement(t)){const n=e.get(o);c=ws(i),c.value=((e,t)=>{if("function"!=typeof t.customMerge)return Ns;const s=t.customMerge(e,t);return"function"==typeof s?s:Ns})(r,s)(n,t,s)}else c=ws(i),c.value=Cs(t,s);n.remove(o),n.content.push(c)}),n},customMerge:void 0,customMetaMerge:void 0,customAttributesMerge:void 0},Ns=(e,t,s)=>{const n={...Ts,...s};n.isMergeableElement=n.isMergeableElement??Ts.isMergeableElement,n.arrayElementMerge=n.arrayElementMerge??Ts.arrayElementMerge,n.objectElementMerge=n.objectElementMerge??Ts.objectElementMerge;const r=ns(t);if(!(r===ns(e)))return Cs(t,n);const i=r&&"function"==typeof n.arrayElementMerge?n.arrayElementMerge(e,t,n):n.objectElementMerge(e,t,n);return i.meta=(e=>"function"!=typeof e.customMetaMerge?e=>bs(e):e.customMetaMerge)(n)(e.meta,t.meta),i.attributes=(e=>"function"!=typeof e.customAttributesMerge?e=>bs(e):e.customAttributesMerge)(n)(e.attributes,t.attributes),i};Ns.all=(e,t)=>{if(!Array.isArray(e))throw new TypeError("First argument of deepmerge should be an array.");return 0===e.length?new H:e.reduce((e,s)=>Ns(e,s,t),Ms(e[0]))};const $s=Ns;const Ds=class{element;constructor(e){Object.assign(this,e)}copyMetaAndAttributes(e,t){if(!e.isMetaEmpty||!t.isMetaEmpty){const s=t.isMetaEmpty?new H:t.meta,n=e.isMetaEmpty?new H:e.meta;t.meta=$s(s,n)}if(!e.isAttributesEmpty||!t.isAttributesEmpty){const s=t.isAttributesEmpty?new H:t.attributes,n=e.isAttributesEmpty?new H:e.attributes;t.attributes=$s(s,n)}hs.transfer(e,t)}};const Rs=class extends Ds{enter(e){this.element=bs(e.node),e.stop()}};const Bs=i(function(e){return function(){return e}});const Ls=g(function(e,t){return null==t||t!=t?e:t});const Js=Bs(void 0);const qs=T(Js());const _s=i(function(e){return it(Ae(vt,0,St("length",e)),function(){for(var t=0,s=e.length;t<s;){if(!e[t].apply(this,arguments))return!1;t+=1}return!0})});var zs=i(function(e){return null!=e&&"function"==typeof e["fantasy-land/empty"]?e["fantasy-land/empty"]():null!=e&&null!=e.constructor&&"function"==typeof e.constructor["fantasy-land/empty"]?e.constructor["fantasy-land/empty"]():null!=e&&"function"==typeof e.empty?e.empty():null!=e&&null!=e.constructor&&"function"==typeof e.constructor.empty?e.constructor.empty():e==Set||e instanceof Set?new Set:e==Map||e instanceof Map?new Map:me(e)?[]:fe(e)?"":Le(e)?{}:E(e)?function(){return arguments}():function(e){var t=Object.prototype.toString.call(e);return"[object Uint8ClampedArray]"===t||"[object Int8Array]"===t||"[object Uint8Array]"===t||"[object Int16Array]"===t||"[object Uint16Array]"===t||"[object Int32Array]"===t||"[object Uint32Array]"===t||"[object Float32Array]"===t||"[object Float64Array]"===t||"[object BigInt64Array]"===t||"[object BigUint64Array]"===t}(e)?e.constructor.from(""):void 0});const Hs=zs;const Vs=i(function(e){return null!=e&&T(e,Hs(e))});const Us=i(function(e){return!Vs(e)});const Gs=g(function(e,t){return e||t});const Ws=it(1,dt(yt,g(function(e,t){return Ye(e)?function(){return e.apply(this,arguments)||t.apply(this,arguments)}:ht(Gs)(e,t)})(xt,kt)));var Xs=ft(Ws);const Ys=_s([Pt,Xs,Us]);const Ks=g(function(e,t){for(var s={},n=0;n<e.length;)e[n]in t&&(s[e[n]]=t[e[n]]),n+=1;return s}),Qs=function(){const e=en,t=Zs,s=this,n="parser.js: Parser(): ";s.ast=void 0,s.stats=void 0,s.trace=void 0,s.callbacks=[];let r,i,o,c,a,l,u,p=0,h=0,d=0,m=0,f=0,y=new function(){this.state=e.ACTIVE,this.phraseLength=0,this.refresh=()=>{this.state=e.ACTIVE,this.phraseLength=0}};s.parse=(g,x,v,S)=>{const w=`${n}parse(): `;p=0,h=0,d=0,m=0,f=0,r=void 0,i=void 0,o=void 0,c=void 0,y.refresh(),a=void 0,l=void 0,u=void 0,c=t.stringToChars(v),r=g.rules,i=g.udts;const E=x.toLowerCase();let O;for(const e in r)if(r.hasOwnProperty(e)&&E===r[e].lower){O=r[e].index;break}if(void 0===O)throw new Error(`${w}start rule name '${startRule}' not recognized`);(()=>{const e=`${n}initializeCallbacks(): `;let t,o;for(a=[],l=[],t=0;t<r.length;t+=1)a[t]=void 0;for(t=0;t<i.length;t+=1)l[t]=void 0;const c=[];for(t=0;t<r.length;t+=1)c.push(r[t].lower);for(t=0;t<i.length;t+=1)c.push(i[t].lower);for(const n in s.callbacks)if(s.callbacks.hasOwnProperty(n)){if(t=c.indexOf(n.toLowerCase()),t<0)throw new Error(`${e}syntax callback '${n}' not a rule or udt name`);if(o=s.callbacks[n]?s.callbacks[n]:void 0,"function"!=typeof o&&void 0!==o)throw new Error(`${e}syntax callback[${n}] must be function reference or falsy)`);t<r.length?a[t]=o:l[t-r.length]=o}})(),s.trace&&s.trace.init(r,i,c),s.stats&&s.stats.init(r,i),s.ast&&s.ast.init(r,i,c),u=S,o=[{type:e.RNM,index:O}],b(0,0),o=void 0;let k=!1;switch(y.state){case e.ACTIVE:throw new Error(`${w}final state should never be 'ACTIVE'`);case e.NOMATCH:k=!1;break;case e.EMPTY:case e.MATCH:k=y.phraseLength===c.length;break;default:throw new Error("unrecognized state")}return{success:k,state:y.state,stateName:e.idName(y.state),length:c.length,matched:y.phraseLength,maxMatched:f,maxTreeDepth:d,nodeHits:m}};const g=(t,s,r,i)=>{if(s.phraseLength>r){let e=`${n}opRNM(${t.name}): callback function error: `;throw e+=`sysData.phraseLength: ${s.phraseLength}`,e+=` must be <= remaining chars: ${r}`,new Error(e)}switch(s.state){case e.ACTIVE:if(!i)throw new Error(`${n}opRNM(${t.name}): callback function return error. ACTIVE state not allowed.`);break;case e.EMPTY:s.phraseLength=0;break;case e.MATCH:0===s.phraseLength&&(s.state=e.EMPTY);break;case e.NOMATCH:s.phraseLength=0;break;default:throw new Error(`${n}opRNM(${t.name}): callback function return error. Unrecognized return state: ${s.state}`)}},x=(t,a)=>{let h,d,m;const f=o[t],g=i[f.index];y.UdtIndex=g.index,p||(m=s.ast&&s.ast.udtDefined(f.index),m&&(d=r.length+f.index,h=s.ast.getLength(),s.ast.down(d,g.name)));const x=c.length-a;l[f.index](y,c,a,u),((t,s,r)=>{if(s.phraseLength>r){let e=`${n}opUDT(${t.name}): callback function error: `;throw e+=`sysData.phraseLength: ${s.phraseLength}`,e+=` must be <= remaining chars: ${r}`,new Error(e)}switch(s.state){case e.ACTIVE:throw new Error(`${n}opUDT(${t.name}) ACTIVE state return not allowed.`);case e.EMPTY:if(!t.empty)throw new Error(`${n}opUDT(${t.name}) may not return EMPTY.`);s.phraseLength=0;break;case e.MATCH:if(0===s.phraseLength){if(!t.empty)throw new Error(`${n}opUDT(${t.name}) may not return EMPTY.`);s.state=e.EMPTY}break;case e.NOMATCH:s.phraseLength=0;break;default:throw new Error(`${n}opUDT(${t.name}): callback function return error. Unrecognized return state: ${s.state}`)}})(g,y,x),p||m&&(y.state===e.NOMATCH?s.ast.setLength(h):s.ast.up(d,g.name,a,y.phraseLength))},b=(t,i)=>{const l=`${n}opExecute(): `,v=o[t];switch(m+=1,h>d&&(d=h),h+=1,y.refresh(),s.trace&&s.trace.down(v,i),v.type){case e.ALT:((t,s)=>{const n=o[t];for(let t=0;t<n.children.length&&(b(n.children[t],s),y.state===e.NOMATCH);t+=1);})(t,i);break;case e.CAT:((t,n)=>{let r,i,c,a;const l=o[t];s.ast&&(i=s.ast.getLength()),r=!0,c=n,a=0;for(let t=0;t<l.children.length;t+=1){if(b(l.children[t],c),y.state===e.NOMATCH){r=!1;break}c+=y.phraseLength,a+=y.phraseLength}r?(y.state=0===a?e.EMPTY:e.MATCH,y.phraseLength=a):(y.state=e.NOMATCH,y.phraseLength=0,s.ast&&s.ast.setLength(i))})(t,i);break;case e.REP:((t,n)=>{let r,i,a,l;const u=o[t];if(0===u.max)return y.state=e.EMPTY,void(y.phraseLength=0);for(i=n,a=0,l=0,s.ast&&(r=s.ast.getLength());!(i>=c.length)&&(b(t+1,i),y.state!==e.NOMATCH)&&y.state!==e.EMPTY&&(l+=1,a+=y.phraseLength,i+=y.phraseLength,l!==u.max););y.state===e.EMPTY||l>=u.min?(y.state=0===a?e.EMPTY:e.MATCH,y.phraseLength=a):(y.state=e.NOMATCH,y.phraseLength=0,s.ast&&s.ast.setLength(r))})(t,i);break;case e.RNM:((t,n)=>{let i,l,h;const d=o[t],m=r[d.index],f=a[m.index];if(p||(l=s.ast&&s.ast.ruleDefined(d.index),l&&(i=s.ast.getLength(),s.ast.down(d.index,r[d.index].name))),f){const t=c.length-n;f(y,c,n,u),g(m,y,t,!0),y.state===e.ACTIVE&&(h=o,o=m.opcodes,b(0,n),o=h,f(y,c,n,u),g(m,y,t,!1))}else h=o,o=m.opcodes,b(0,n,y),o=h;p||l&&(y.state===e.NOMATCH?s.ast.setLength(i):s.ast.up(d.index,m.name,n,y.phraseLength))})(t,i);break;case e.TRG:((t,s)=>{const n=o[t];y.state=e.NOMATCH,s<c.length&&n.min<=c[s]&&c[s]<=n.max&&(y.state=e.MATCH,y.phraseLength=1)})(t,i);break;case e.TBS:((t,s)=>{const n=o[t],r=n.string.length;if(y.state=e.NOMATCH,s+r<=c.length){for(let e=0;e<r;e+=1)if(c[s+e]!==n.string[e])return;y.state=e.MATCH,y.phraseLength=r}})(t,i);break;case e.TLS:((t,s)=>{let n;const r=o[t];y.state=e.NOMATCH;const i=r.string.length;if(0!==i){if(s+i<=c.length){for(let e=0;e<i;e+=1)if(n=c[s+e],n>=65&&n<=90&&(n+=32),n!==r.string[e])return;y.state=e.MATCH,y.phraseLength=i}}else y.state=e.EMPTY})(t,i);break;case e.UDT:x(t,i);break;case e.AND:((t,s)=>{switch(p+=1,b(t+1,s),p-=1,y.phraseLength=0,y.state){case e.EMPTY:case e.MATCH:y.state=e.EMPTY;break;case e.NOMATCH:y.state=e.NOMATCH;break;default:throw new Error(`opAND: invalid state ${y.state}`)}})(t,i);break;case e.NOT:((t,s)=>{switch(p+=1,b(t+1,s),p-=1,y.phraseLength=0,y.state){case e.EMPTY:case e.MATCH:y.state=e.NOMATCH;break;case e.NOMATCH:y.state=e.EMPTY;break;default:throw new Error(`opNOT: invalid state ${y.state}`)}})(t,i);break;default:throw new Error(`${l}unrecognized operator`)}p||i+y.phraseLength>f&&(f=i+y.phraseLength),s.stats&&s.stats.collect(v,y),s.trace&&s.trace.up(v,y.state,i,y.phraseLength),h-=1}},Zs={stringToChars:e=>[...e].map(e=>e.codePointAt(0)),charsToString:(e,t,s)=>{let n=e;for(;!(void 0===t||t<0);){if(void 0===s){n=e.slice(t);break}if(s<=0)return"";n=e.slice(t,t+s);break}return String.fromCodePoint(...n)}},en={ALT:1,CAT:2,REP:3,RNM:4,TRG:5,TBS:6,TLS:7,UDT:11,AND:12,NOT:13,ACTIVE:100,MATCH:101,EMPTY:102,NOMATCH:103,SEM_PRE:200,SEM_POST:201,SEM_OK:300,idName:e=>{switch(e){case en.ALT:return"ALT";case en.CAT:return"CAT";case en.REP:return"REP";case en.RNM:return"RNM";case en.TRG:return"TRG";case en.TBS:return"TBS";case en.TLS:return"TLS";case en.UDT:return"UDT";case en.AND:return"AND";case en.NOT:return"NOT";case en.ACTIVE:return"ACTIVE";case en.EMPTY:return"EMPTY";case en.MATCH:return"MATCH";case en.NOMATCH:return"NOMATCH";case en.SEM_PRE:return"SEM_PRE";case en.SEM_POST:return"SEM_POST";case en.SEM_OK:return"SEM_OK";default:return"UNRECOGNIZED STATE"}}};function tn(){this.grammarObject="grammarObject",this.rules=[],this.rules[0]={name:"json-pointer",lower:"json-pointer",index:0,isBkr:!1},this.rules[1]={name:"reference-token",lower:"reference-token",index:1,isBkr:!1},this.rules[2]={name:"unescaped",lower:"unescaped",index:2,isBkr:!1},this.rules[3]={name:"escaped",lower:"escaped",index:3,isBkr:!1},this.rules[4]={name:"array-location",lower:"array-location",index:4,isBkr:!1},this.rules[5]={name:"array-index",lower:"array-index",index:5,isBkr:!1},this.rules[6]={name:"array-dash",lower:"array-dash",index:6,isBkr:!1},this.rules[7]={name:"slash",lower:"slash",index:7,isBkr:!1},this.udts=[],this.rules[0].opcodes=[],this.rules[0].opcodes[0]={type:3,min:0,max:1/0},this.rules[0].opcodes[1]={type:2,children:[2,3]},this.rules[0].opcodes[2]={type:4,index:7},this.rules[0].opcodes[3]={type:4,index:1},this.rules[1].opcodes=[],this.rules[1].opcodes[0]={type:3,min:0,max:1/0},this.rules[1].opcodes[1]={type:1,children:[2,3]},this.rules[1].opcodes[2]={type:4,index:2},this.rules[1].opcodes[3]={type:4,index:3},this.rules[2].opcodes=[],this.rules[2].opcodes[0]={type:1,children:[1,2,3]},this.rules[2].opcodes[1]={type:5,min:0,max:46},this.rules[2].opcodes[2]={type:5,min:48,max:125},this.rules[2].opcodes[3]={type:5,min:127,max:1114111},this.rules[3].opcodes=[],this.rules[3].opcodes[0]={type:2,children:[1,2]},this.rules[3].opcodes[1]={type:7,string:[126]},this.rules[3].opcodes[2]={type:1,children:[3,4]},this.rules[3].opcodes[3]={type:7,string:[48]},this.rules[3].opcodes[4]={type:7,string:[49]},this.rules[4].opcodes=[],this.rules[4].opcodes[0]={type:1,children:[1,2]},this.rules[4].opcodes[1]={type:4,index:5},this.rules[4].opcodes[2]={type:4,index:6},this.rules[5].opcodes=[],this.rules[5].opcodes[0]={type:1,children:[1,2]},this.rules[5].opcodes[1]={type:6,string:[48]},this.rules[5].opcodes[2]={type:2,children:[3,4]},this.rules[5].opcodes[3]={type:5,min:49,max:57},this.rules[5].opcodes[4]={type:3,min:0,max:1/0},this.rules[5].opcodes[5]={type:5,min:48,max:57},this.rules[6].opcodes=[],this.rules[6].opcodes[0]={type:7,string:[45]},this.rules[7].opcodes=[],this.rules[7].opcodes[0]={type:7,string:[47]},this.toString=function(){let e="";return e+="; JavaScript Object Notation (JSON) Pointer ABNF syntax\n",e+="; https://datatracker.ietf.org/doc/html/rfc6901\n",e+="json-pointer = *( slash reference-token ) ; MODIFICATION: surrogate text rule used\n",e+="reference-token = *( unescaped / escaped )\n",e+="unescaped = %x00-2E / %x30-7D / %x7F-10FFFF\n",e+=" ; %x2F ('/') and %x7E ('~') are excluded from 'unescaped'\n",e+='escaped = "~" ( "0" / "1" )\n',e+=" ; representing '~' and '/', respectively\n",e+="\n",e+="; https://datatracker.ietf.org/doc/html/rfc6901#section-4\n",e+="array-location = array-index / array-dash\n",e+="array-index = %x30 / ( %x31-39 *(%x30-39) )\n",e+=' ; "0", or digits without a leading "0"\n',e+='array-dash = "-"\n',e+="\n",e+="; Surrogate named rules\n",e+='slash = "/"\n','; JavaScript Object Notation (JSON) Pointer ABNF syntax\n; https://datatracker.ietf.org/doc/html/rfc6901\njson-pointer = *( slash reference-token ) ; MODIFICATION: surrogate text rule used\nreference-token = *( unescaped / escaped )\nunescaped = %x00-2E / %x30-7D / %x7F-10FFFF\n ; %x2F (\'/\') and %x7E (\'~\') are excluded from \'unescaped\'\nescaped = "~" ( "0" / "1" )\n ; representing \'~\' and \'/\', respectively\n\n; https://datatracker.ietf.org/doc/html/rfc6901#section-4\narray-location = array-index / array-dash\narray-index = %x30 / ( %x31-39 *(%x30-39) )\n ; "0", or digits without a leading "0"\narray-dash = "-"\n\n; Surrogate named rules\nslash = "/"\n'}}class sn extends Error{constructor(e,t=void 0){if(super(e,t),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,null!=t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,"cause")&&!("cause"in this)){const{cause:e}=t;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}if(null!=t&&"object"==typeof t){const{cause:e,...s}=t;Object.assign(this,s)}}}const nn=sn;new tn;new tn,new Qs,new tn,new Qs,new tn,new Qs,new tn,new Qs;const rn=e=>{if("string"!=typeof e&&"number"!=typeof e)throw new TypeError("Reference token must be a string or number");return String(e).replace(/~/g,"~0").replace(/\//g,"~1")};const on=class extends nn{},cn=e=>{if(!Array.isArray(e))throw new TypeError("Reference tokens must be a list of strings or numbers");try{return 0===e.length?"":`/${e.map(e=>{if("string"!=typeof e&&"number"!=typeof e)throw new TypeError("Reference token must be a string or number");return rn(String(e))}).join("/")}`}catch(t){throw new on("Unexpected error during JSON Pointer compilation",{cause:t,referenceTokens:e})}};class an extends Error{constructor(e,t=void 0){if(super(e,t),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,null!=t&&"object"==typeof t&&Object.hasOwn(t,"cause")&&!("cause"in this)){const{cause:e}=t;this.cause=e,e instanceof Error&&"stack"in e&&(this.stack=`${this.stack}\nCAUSE: ${e.stack}`)}if(null!=t&&"object"==typeof t){const{cause:e,...s}=t;Object.assign(this,s)}}}const ln=an;new function(){this.grammarObject="grammarObject",this.rules=[],this.rules[0]={name:"jsonpath-query",lower:"jsonpath-query",index:0,isBkr:!1},this.rules[1]={name:"segments",lower:"segments",index:1,isBkr:!1},this.rules[2]={name:"B",lower:"b",index:2,isBkr:!1},this.rules[3]={name:"S",lower:"s",index:3,isBkr:!1},this.rules[4]={name:"root-identifier",lower:"root-identifier",index:4,isBkr:!1},this.rules[5]={name:"selector",lower:"selector",index:5,isBkr:!1},this.rules[6]={name:"name-selector",lower:"name-selector",index:6,isBkr:!1},this.rules[7]={name:"string-literal",lower:"string-literal",index:7,isBkr:!1},this.rules[8]={name:"double-quoted",lower:"double-quoted",index:8,isBkr:!1},this.rules[9]={name:"single-quoted",lower:"single-quoted",index:9,isBkr:!1},this.rules[10]={name:"ESC",lower:"esc",index:10,isBkr:!1},this.rules[11]={name:"unescaped",lower:"unescaped",index:11,isBkr:!1},this.rules[12]={name:"escapable",lower:"escapable",index:12,isBkr:!1},this.rules[13]={name:"hexchar",lower:"hexchar",index:13,isBkr:!1},this.rules[14]={name:"non-surrogate",lower:"non-surrogate",index:14,isBkr:!1},this.rules[15]={name:"high-surrogate",lower:"high-surrogate",index:15,isBkr:!1},this.rules[16]={name:"low-surrogate",lower:"low-surrogate",index:16,isBkr:!1},this.rules[17]={name:"HEXDIG",lower:"hexdig",index:17,isBkr:!1},this.rules[18]={name:"wildcard-selector",lower:"wildcard-selector",index:18,isBkr:!1},this.rules[19]={name:"index-selector",lower:"index-selector",index:19,isBkr:!1},this.rules[20]={name:"int",lower:"int",index:20,isBkr:!1},this.rules[21]={name:"DIGIT1",lower:"digit1",index:21,isBkr:!1},this.rules[22]={name:"slice-selector",lower:"slice-selector",index:22,isBkr:!1},this.rules[23]={name:"start",lower:"start",index:23,isBkr:!1},this.rules[24]={name:"end",lower:"end",index:24,isBkr:!1},this.rules[25]={name:"step",lower:"step",index:25,isBkr:!1},this.rules[26]={name:"filter-selector",lower:"filter-selector",index:26,isBkr:!1},this.rules[27]={name:"logical-expr",lower:"logical-expr",index:27,isBkr:!1},this.rules[28]={name:"logical-or-expr",lower:"logical-or-expr",index:28,isBkr:!1},this.rules[29]={name:"logical-and-expr",lower:"logical-and-expr",index:29,isBkr:!1},this.rules[30]={name:"basic-expr",lower:"basic-expr",index:30,isBkr:!1},this.rules[31]={name:"paren-expr",lower:"paren-expr",index:31,isBkr:!1},this.rules[32]={name:"logical-not-op",lower:"logical-not-op",index:32,isBkr:!1},this.rules[33]={name:"test-expr",lower:"test-expr",index:33,isBkr:!1},this.rules[34]={name:"filter-query",lower:"filter-query",index:34,isBkr:!1},this.rules[35]={name:"rel-query",lower:"rel-query",index:35,isBkr:!1},this.rules[36]={name:"current-node-identifier",lower:"current-node-identifier",index:36,isBkr:!1},this.rules[37]={name:"comparison-expr",lower:"comparison-expr",index:37,isBkr:!1},this.rules[38]={name:"literal",lower:"literal",index:38,isBkr:!1},this.rules[39]={name:"comparable",lower:"comparable",index:39,isBkr:!1},this.rules[40]={name:"comparison-op",lower:"comparison-op",index:40,isBkr:!1},this.rules[41]={name:"singular-query",lower:"singular-query",index:41,isBkr:!1},this.rules[42]={name:"rel-singular-query",lower:"rel-singular-query",index:42,isBkr:!1},this.rules[43]={name:"abs-singular-query",lower:"abs-singular-query",index:43,isBkr:!1},this.rules[44]={name:"singular-query-segments",lower:"singular-query-segments",index:44,isBkr:!1},this.rules[45]={name:"name-segment",lower:"name-segment",index:45,isBkr:!1},this.rules[46]={name:"index-segment",lower:"index-segment",index:46,isBkr:!1},this.rules[47]={name:"number",lower:"number",index:47,isBkr:!1},this.rules[48]={name:"frac",lower:"frac",index:48,isBkr:!1},this.rules[49]={name:"exp",lower:"exp",index:49,isBkr:!1},this.rules[50]={name:"true",lower:"true",index:50,isBkr:!1},this.rules[51]={name:"false",lower:"false",index:51,isBkr:!1},this.rules[52]={name:"null",lower:"null",index:52,isBkr:!1},this.rules[53]={name:"function-name",lower:"function-name",index:53,isBkr:!1},this.rules[54]={name:"function-name-first",lower:"function-name-first",index:54,isBkr:!1},this.rules[55]={name:"function-name-char",lower:"function-name-char",index:55,isBkr:!1},this.rules[56]={name:"LCALPHA",lower:"lcalpha",index:56,isBkr:!1},this.rules[57]={name:"function-expr",lower:"function-expr",index:57,isBkr:!1},this.rules[58]={name:"function-argument",lower:"function-argument",index:58,isBkr:!1},this.rules[59]={name:"segment",lower:"segment",index:59,isBkr:!1},this.rules[60]={name:"child-segment",lower:"child-segment",index:60,isBkr:!1},this.rules[61]={name:"bracketed-selection",lower:"bracketed-selection",index:61,isBkr:!1},this.rules[62]={name:"member-name-shorthand",lower:"member-name-shorthand",index:62,isBkr:!1},this.rules[63]={name:"name-first",lower:"name-first",index:63,isBkr:!1},this.rules[64]={name:"name-char",lower:"name-char",index:64,isBkr:!1},this.rules[65]={name:"DIGIT",lower:"digit",index:65,isBkr:!1},this.rules[66]={name:"ALPHA",lower:"alpha",index:66,isBkr:!1},this.rules[67]={name:"descendant-segment",lower:"descendant-segment",index:67,isBkr:!1},this.rules[68]={name:"normalized-path",lower:"normalized-path",index:68,isBkr:!1},this.rules[69]={name:"normal-index-segment",lower:"normal-index-segment",index:69,isBkr:!1},this.rules[70]={name:"normal-selector",lower:"normal-selector",index:70,isBkr:!1},this.rules[71]={name:"normal-name-selector",lower:"normal-name-selector",index:71,isBkr:!1},this.rules[72]={name:"normal-single-quoted",lower:"normal-single-quoted",index:72,isBkr:!1},this.rules[73]={name:"normal-unescaped",lower:"normal-unescaped",index:73,isBkr:!1},this.rules[74]={name:"normal-escapable",lower:"normal-escapable",index:74,isBkr:!1},this.rules[75]={name:"normal-hexchar",lower:"normal-hexchar",index:75,isBkr:!1},this.rules[76]={name:"normal-HEXDIG",lower:"normal-hexdig",index:76,isBkr:!1},this.rules[77]={name:"normal-index-selector",lower:"normal-index-selector",index:77,isBkr:!1},this.rules[78]={name:"dot-prefix",lower:"dot-prefix",index:78,isBkr:!1},this.rules[79]={name:"double-dot-prefix",lower:"double-dot-prefix",index:79,isBkr:!1},this.rules[80]={name:"left-bracket",lower:"left-bracket",index:80,isBkr:!1},this.rules[81]={name:"right-bracket",lower:"right-bracket",index:81,isBkr:!1},this.rules[82]={name:"left-paren",lower:"left-paren",index:82,isBkr:!1},this.rules[83]={name:"right-paren",lower:"right-paren",index:83,isBkr:!1},this.rules[84]={name:"comma",lower:"comma",index:84,isBkr:!1},this.rules[85]={name:"colon",lower:"colon",index:85,isBkr:!1},this.rules[86]={name:"dquote",lower:"dquote",index:86,isBkr:!1},this.rules[87]={name:"squote",lower:"squote",index:87,isBkr:!1},this.rules[88]={name:"questionmark",lower:"questionmark",index:88,isBkr:!1},this.rules[89]={name:"disjunction",lower:"disjunction",index:89,isBkr:!1},this.rules[90]={name:"conjunction",lower:"conjunction",index:90,isBkr:!1},this.udts=[],this.rules[0].opcodes=[],this.rules[0].opcodes[0]={type:2,children:[1,2]},this.rules[0].opcodes[1]={type:4,index:4},this.rules[0].opcodes[2]={type:4,index:1},this.rules[1].opcodes=[],this.rules[1].opcodes[0]={type:3,min:0,max:1/0},this.rules[1].opcodes[1]={type:2,children:[2,3]},this.rules[1].opcodes[2]={type:4,index:3},this.rules[1].opcodes[3]={type:4,index:59},this.rules[2].opcodes=[],this.rules[2].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[2].opcodes[1]={type:6,string:[32]},this.rules[2].opcodes[2]={type:6,string:[9]},this.rules[2].opcodes[3]={type:6,string:[10]},this.rules[2].opcodes[4]={type:6,string:[13]},this.rules[3].opcodes=[],this.rules[3].opcodes[0]={type:3,min:0,max:1/0},this.rules[3].opcodes[1]={type:4,index:2},this.rules[4].opcodes=[],this.rules[4].opcodes[0]={type:7,string:[36]},this.rules[5].opcodes=[],this.rules[5].opcodes[0]={type:1,children:[1,2,3,4,5]},this.rules[5].opcodes[1]={type:4,index:6},this.rules[5].opcodes[2]={type:4,index:18},this.rules[5].opcodes[3]={type:4,index:22},this.rules[5].opcodes[4]={type:4,index:19},this.rules[5].opcodes[5]={type:4,index:26},this.rules[6].opcodes=[],this.rules[6].opcodes[0]={type:4,index:7},this.rules[7].opcodes=[],this.rules[7].opcodes[0]={type:1,children:[1,6]},this.rules[7].opcodes[1]={type:2,children:[2,3,5]},this.rules[7].opcodes[2]={type:4,index:86},this.rules[7].opcodes[3]={type:3,min:0,max:1/0},this.rules[7].opcodes[4]={type:4,index:8},this.rules[7].opcodes[5]={type:4,index:86},this.rules[7].opcodes[6]={type:2,children:[7,8,10]},this.rules[7].opcodes[7]={type:4,index:87},this.rules[7].opcodes[8]={type:3,min:0,max:1/0},this.rules[7].opcodes[9]={type:4,index:9},this.rules[7].opcodes[10]={type:4,index:87},this.rules[8].opcodes=[],this.rules[8].opcodes[0]={type:1,children:[1,2,3,6]},this.rules[8].opcodes[1]={type:4,index:11},this.rules[8].opcodes[2]={type:6,string:[39]},this.rules[8].opcodes[3]={type:2,children:[4,5]},this.rules[8].opcodes[4]={type:4,index:10},this.rules[8].opcodes[5]={type:6,string:[34]},this.rules[8].opcodes[6]={type:2,children:[7,8]},this.rules[8].opcodes[7]={type:4,index:10},this.rules[8].opcodes[8]={type:4,index:12},this.rules[9].opcodes=[],this.rules[9].opcodes[0]={type:1,children:[1,2,3,6]},this.rules[9].opcodes[1]={type:4,index:11},this.rules[9].opcodes[2]={type:6,string:[34]},this.rules[9].opcodes[3]={type:2,children:[4,5]},this.rules[9].opcodes[4]={type:4,index:10},this.rules[9].opcodes[5]={type:6,string:[39]},this.rules[9].opcodes[6]={type:2,children:[7,8]},this.rules[9].opcodes[7]={type:4,index:10},this.rules[9].opcodes[8]={type:4,index:12},this.rules[10].opcodes=[],this.rules[10].opcodes[0]={type:6,string:[92]},this.rules[11].opcodes=[],this.rules[11].opcodes[0]={type:1,children:[1,2,3,4,5]},this.rules[11].opcodes[1]={type:5,min:32,max:33},this.rules[11].opcodes[2]={type:5,min:35,max:38},this.rules[11].opcodes[3]={type:5,min:40,max:91},this.rules[11].opcodes[4]={type:5,min:93,max:55295},this.rules[11].opcodes[5]={type:5,min:57344,max:1114111},this.rules[12].opcodes=[],this.rules[12].opcodes[0]={type:1,children:[1,2,3,4,5,6,7,8]},this.rules[12].opcodes[1]={type:6,string:[98]},this.rules[12].opcodes[2]={type:6,string:[102]},this.rules[12].opcodes[3]={type:6,string:[110]},this.rules[12].opcodes[4]={type:6,string:[114]},this.rules[12].opcodes[5]={type:6,string:[116]},this.rules[12].opcodes[6]={type:7,string:[47]},this.rules[12].opcodes[7]={type:7,string:[92]},this.rules[12].opcodes[8]={type:2,children:[9,10]},this.rules[12].opcodes[9]={type:6,string:[117]},this.rules[12].opcodes[10]={type:4,index:13},this.rules[13].opcodes=[],this.rules[13].opcodes[0]={type:1,children:[1,2]},this.rules[13].opcodes[1]={type:4,index:14},this.rules[13].opcodes[2]={type:2,children:[3,4,5,6]},this.rules[13].opcodes[3]={type:4,index:15},this.rules[13].opcodes[4]={type:7,string:[92]},this.rules[13].opcodes[5]={type:6,string:[117]},this.rules[13].opcodes[6]={type:4,index:16},this.rules[14].opcodes=[],this.rules[14].opcodes[0]={type:1,children:[1,11]},this.rules[14].opcodes[1]={type:2,children:[2,9]},this.rules[14].opcodes[2]={type:1,children:[3,4,5,6,7,8]},this.rules[14].opcodes[3]={type:4,index:65},this.rules[14].opcodes[4]={type:7,string:[97]},this.rules[14].opcodes[5]={type:7,string:[98]},this.rules[14].opcodes[6]={type:7,string:[99]},this.rules[14].opcodes[7]={type:7,string:[101]},this.rules[14].opcodes[8]={type:7,string:[102]},this.rules[14].opcodes[9]={type:3,min:3,max:3},this.rules[14].opcodes[10]={type:4,index:17},this.rules[14].opcodes[11]={type:2,children:[12,13,14]},this.rules[14].opcodes[12]={type:7,string:[100]},this.rules[14].opcodes[13]={type:5,min:48,max:55},this.rules[14].opcodes[14]={type:3,min:2,max:2},this.rules[14].opcodes[15]={type:4,index:17},this.rules[15].opcodes=[],this.rules[15].opcodes[0]={type:2,children:[1,2,7]},this.rules[15].opcodes[1]={type:7,string:[100]},this.rules[15].opcodes[2]={type:1,children:[3,4,5,6]},this.rules[15].opcodes[3]={type:7,string:[56]},this.rules[15].opcodes[4]={type:7,string:[57]},this.rules[15].opcodes[5]={type:7,string:[97]},this.rules[15].opcodes[6]={type:7,string:[98]},this.rules[15].opcodes[7]={type:3,min:2,max:2},this.rules[15].opcodes[8]={type:4,index:17},this.rules[16].opcodes=[],this.rules[16].opcodes[0]={type:2,children:[1,2,7]},this.rules[16].opcodes[1]={type:7,string:[100]},this.rules[16].opcodes[2]={type:1,children:[3,4,5,6]},this.rules[16].opcodes[3]={type:7,string:[99]},this.rules[16].opcodes[4]={type:7,string:[100]},this.rules[16].opcodes[5]={type:7,string:[101]},this.rules[16].opcodes[6]={type:7,string:[102]},this.rules[16].opcodes[7]={type:3,min:2,max:2},this.rules[16].opcodes[8]={type:4,index:17},this.rules[17].opcodes=[],this.rules[17].opcodes[0]={type:1,children:[1,2,3,4,5,6,7]},this.rules[17].opcodes[1]={type:4,index:65},this.rules[17].opcodes[2]={type:7,string:[97]},this.rules[17].opcodes[3]={type:7,string:[98]},this.rules[17].opcodes[4]={type:7,string:[99]},this.rules[17].opcodes[5]={type:7,string:[100]},this.rules[17].opcodes[6]={type:7,string:[101]},this.rules[17].opcodes[7]={type:7,string:[102]},this.rules[18].opcodes=[],this.rules[18].opcodes[0]={type:7,string:[42]},this.rules[19].opcodes=[],this.rules[19].opcodes[0]={type:4,index:20},this.rules[20].opcodes=[],this.rules[20].opcodes[0]={type:1,children:[1,2]},this.rules[20].opcodes[1]={type:7,string:[48]},this.rules[20].opcodes[2]={type:2,children:[3,5,6]},this.rules[20].opcodes[3]={type:3,min:0,max:1},this.rules[20].opcodes[4]={type:7,string:[45]},this.rules[20].opcodes[5]={type:4,index:21},this.rules[20].opcodes[6]={type:3,min:0,max:1/0},this.rules[20].opcodes[7]={type:4,index:65},this.rules[21].opcodes=[],this.rules[21].opcodes[0]={type:5,min:49,max:57},this.rules[22].opcodes=[],this.rules[22].opcodes[0]={type:2,children:[1,5,6,7,11]},this.rules[22].opcodes[1]={type:3,min:0,max:1},this.rules[22].opcodes[2]={type:2,children:[3,4]},this.rules[22].opcodes[3]={type:4,index:23},this.rules[22].opcodes[4]={type:4,index:3},this.rules[22].opcodes[5]={type:4,index:85},this.rules[22].opcodes[6]={type:4,index:3},this.rules[22].opcodes[7]={type:3,min:0,max:1},this.rules[22].opcodes[8]={type:2,children:[9,10]},this.rules[22].opcodes[9]={type:4,index:24},this.rules[22].opcodes[10]={type:4,index:3},this.rules[22].opcodes[11]={type:3,min:0,max:1},this.rules[22].opcodes[12]={type:2,children:[13,14]},this.rules[22].opcodes[13]={type:4,index:85},this.rules[22].opcodes[14]={type:3,min:0,max:1},this.rules[22].opcodes[15]={type:2,children:[16,17]},this.rules[22].opcodes[16]={type:4,index:3},this.rules[22].opcodes[17]={type:4,index:25},this.rules[23].opcodes=[],this.rules[23].opcodes[0]={type:4,index:20},this.rules[24].opcodes=[],this.rules[24].opcodes[0]={type:4,index:20},this.rules[25].opcodes=[],this.rules[25].opcodes[0]={type:4,index:20},this.rules[26].opcodes=[],this.rules[26].opcodes[0]={type:2,children:[1,2,3]},this.rules[26].opcodes[1]={type:4,index:88},this.rules[26].opcodes[2]={type:4,index:3},this.rules[26].opcodes[3]={type:4,index:27},this.rules[27].opcodes=[],this.rules[27].opcodes[0]={type:4,index:28},this.rules[28].opcodes=[],this.rules[28].opcodes[0]={type:2,children:[1,2]},this.rules[28].opcodes[1]={type:4,index:29},this.rules[28].opcodes[2]={type:3,min:0,max:1/0},this.rules[28].opcodes[3]={type:2,children:[4,5,6,7]},this.rules[28].opcodes[4]={type:4,index:3},this.rules[28].opcodes[5]={type:4,index:89},this.rules[28].opcodes[6]={type:4,index:3},this.rules[28].opcodes[7]={type:4,index:29},this.rules[29].opcodes=[],this.rules[29].opcodes[0]={type:2,children:[1,2]},this.rules[29].opcodes[1]={type:4,index:30},this.rules[29].opcodes[2]={type:3,min:0,max:1/0},this.rules[29].opcodes[3]={type:2,children:[4,5,6,7]},this.rules[29].opcodes[4]={type:4,index:3},this.rules[29].opcodes[5]={type:4,index:90},this.rules[29].opcodes[6]={type:4,index:3},this.rules[29].opcodes[7]={type:4,index:30},this.rules[30].opcodes=[],this.rules[30].opcodes[0]={type:1,children:[1,2,3]},this.rules[30].opcodes[1]={type:4,index:31},this.rules[30].opcodes[2]={type:4,index:37},this.rules[30].opcodes[3]={type:4,index:33},this.rules[31].opcodes=[],this.rules[31].opcodes[0]={type:2,children:[1,5,6,7,8,9]},this.rules[31].opcodes[1]={type:3,min:0,max:1},this.rules[31].opcodes[2]={type:2,children:[3,4]},this.rules[31].opcodes[3]={type:4,index:32},this.rules[31].opcodes[4]={type:4,index:3},this.rules[31].opcodes[5]={type:4,index:82},this.rules[31].opcodes[6]={type:4,index:3},this.rules[31].opcodes[7]={type:4,index:27},this.rules[31].opcodes[8]={type:4,index:3},this.rules[31].opcodes[9]={type:4,index:83},this.rules[32].opcodes=[],this.rules[32].opcodes[0]={type:7,string:[33]},this.rules[33].opcodes=[],this.rules[33].opcodes[0]={type:2,children:[1,5]},this.rules[33].opcodes[1]={type:3,min:0,max:1},this.rules[33].opcodes[2]={type:2,children:[3,4]},this.rules[33].opcodes[3]={type:4,index:32},this.rules[33].opcodes[4]={type:4,index:3},this.rules[33].opcodes[5]={type:1,children:[6,7]},this.rules[33].opcodes[6]={type:4,index:34},this.rules[33].opcodes[7]={type:4,index:57},this.rules[34].opcodes=[],this.rules[34].opcodes[0]={type:1,children:[1,2]},this.rules[34].opcodes[1]={type:4,index:35},this.rules[34].opcodes[2]={type:4,index:0},this.rules[35].opcodes=[],this.rules[35].opcodes[0]={type:2,children:[1,2]},this.rules[35].opcodes[1]={type:4,index:36},this.rules[35].opcodes[2]={type:4,index:1},this.rules[36].opcodes=[],this.rules[36].opcodes[0]={type:7,string:[64]},this.rules[37].opcodes=[],this.rules[37].opcodes[0]={type:2,children:[1,2,3,4,5]},this.rules[37].opcodes[1]={type:4,index:39},this.rules[37].opcodes[2]={type:4,index:3},this.rules[37].opcodes[3]={type:4,index:40},this.rules[37].opcodes[4]={type:4,index:3},this.rules[37].opcodes[5]={type:4,index:39},this.rules[38].opcodes=[],this.rules[38].opcodes[0]={type:1,children:[1,2,3,4,5]},this.rules[38].opcodes[1]={type:4,index:47},this.rules[38].opcodes[2]={type:4,index:7},this.rules[38].opcodes[3]={type:4,index:50},this.rules[38].opcodes[4]={type:4,index:51},this.rules[38].opcodes[5]={type:4,index:52},this.rules[39].opcodes=[],this.rules[39].opcodes[0]={type:1,children:[1,2,3]},this.rules[39].opcodes[1]={type:4,index:41},this.rules[39].opcodes[2]={type:4,index:57},this.rules[39].opcodes[3]={type:4,index:38},this.rules[40].opcodes=[],this.rules[40].opcodes[0]={type:1,children:[1,2,3,4,5,6]},this.rules[40].opcodes[1]={type:7,string:[61,61]},this.rules[40].opcodes[2]={type:7,string:[33,61]},this.rules[40].opcodes[3]={type:7,string:[60,61]},this.rules[40].opcodes[4]={type:7,string:[62,61]},this.rules[40].opcodes[5]={type:7,string:[60]},this.rules[40].opcodes[6]={type:7,string:[62]},this.rules[41].opcodes=[],this.rules[41].opcodes[0]={type:1,children:[1,2]},this.rules[41].opcodes[1]={type:4,index:42},this.rules[41].opcodes[2]={type:4,index:43},this.rules[42].opcodes=[],this.rules[42].opcodes[0]={type:2,children:[1,2]},this.rules[42].opcodes[1]={type:4,index:36},this.rules[42].opcodes[2]={type:4,index:44},this.rules[43].opcodes=[],this.rules[43].opcodes[0]={type:2,children:[1,2]},this.rules[43].opcodes[1]={type:4,index:4},this.rules[43].opcodes[2]={type:4,index:44},this.rules[44].opcodes=[],this.rules[44].opcodes[0]={type:3,min:0,max:1/0},this.rules[44].opcodes[1]={type:2,children:[2,3]},this.rules[44].opcodes[2]={type:4,index:3},this.rules[44].opcodes[3]={type:1,children:[4,5]},this.rules[44].opcodes[4]={type:4,index:45},this.rules[44].opcodes[5]={type:4,index:46},this.rules[45].opcodes=[],this.rules[45].opcodes[0]={type:1,children:[1,5]},this.rules[45].opcodes[1]={type:2,children:[2,3,4]},this.rules[45].opcodes[2]={type:4,index:80},this.rules[45].opcodes[3]={type:4,index:6},this.rules[45].opcodes[4]={type:4,index:81},this.rules[45].opcodes[5]={type:2,children:[6,7]},this.rules[45].opcodes[6]={type:4,index:78},this.rules[45].opcodes[7]={type:4,index:62},this.rules[46].opcodes=[],this.rules[46].opcodes[0]={type:2,children:[1,2,3]},this.rules[46].opcodes[1]={type:4,index:80},this.rules[46].opcodes[2]={type:4,index:19},this.rules[46].opcodes[3]={type:4,index:81},this.rules[47].opcodes=[],this.rules[47].opcodes[0]={type:2,children:[1,4,6]},this.rules[47].opcodes[1]={type:1,children:[2,3]},this.rules[47].opcodes[2]={type:4,index:20},this.rules[47].opcodes[3]={type:7,string:[45,48]},this.rules[47].opcodes[4]={type:3,min:0,max:1},this.rules[47].opcodes[5]={type:4,index:48},this.rules[47].opcodes[6]={type:3,min:0,max:1},this.rules[47].opcodes[7]={type:4,index:49},this.rules[48].opcodes=[],this.rules[48].opcodes[0]={type:2,children:[1,2]},this.rules[48].opcodes[1]={type:7,string:[46]},this.rules[48].opcodes[2]={type:3,min:1,max:1/0},this.rules[48].opcodes[3]={type:4,index:65},this.rules[49].opcodes=[],this.rules[49].opcodes[0]={type:2,children:[1,2,6]},this.rules[49].opcodes[1]={type:7,string:[101]},this.rules[49].opcodes[2]={type:3,min:0,max:1},this.rules[49].opcodes[3]={type:1,children:[4,5]},this.rules[49].opcodes[4]={type:7,string:[45]},this.rules[49].opcodes[5]={type:7,string:[43]},this.rules[49].opcodes[6]={type:3,min:1,max:1/0},this.rules[49].opcodes[7]={type:4,index:65},this.rules[50].opcodes=[],this.rules[50].opcodes[0]={type:6,string:[116,114,117,101]},this.rules[51].opcodes=[],this.rules[51].opcodes[0]={type:6,string:[102,97,108,115,101]},this.rules[52].opcodes=[],this.rules[52].opcodes[0]={type:6,string:[110,117,108,108]},this.rules[53].opcodes=[],this.rules[53].opcodes[0]={type:2,children:[1,2]},this.rules[53].opcodes[1]={type:4,index:54},this.rules[53].opcodes[2]={type:3,min:0,max:1/0},this.rules[53].opcodes[3]={type:4,index:55},this.rules[54].opcodes=[],this.rules[54].opcodes[0]={type:4,index:56},this.rules[55].opcodes=[],this.rules[55].opcodes[0]={type:1,children:[1,2,3]},this.rules[55].opcodes[1]={type:4,index:54},this.rules[55].opcodes[2]={type:7,string:[95]},this.rules[55].opcodes[3]={type:4,index:65},this.rules[56].opcodes=[],this.rules[56].opcodes[0]={type:5,min:97,max:122},this.rules[57].opcodes=[],this.rules[57].opcodes[0]={type:2,children:[1,2,3,4,13,14]},this.rules[57].opcodes[1]={type:4,index:53},this.rules[57].opcodes[2]={type:4,index:82},this.rules[57].opcodes[3]={type:4,index:3},this.rules[57].opcodes[4]={type:3,min:0,max:1},this.rules[57].opcodes[5]={type:2,children:[6,7]},this.rules[57].opcodes[6]={type:4,index:58},this.rules[57].opcodes[7]={type:3,min:0,max:1/0},this.rules[57].opcodes[8]={type:2,children:[9,10,11,12]},this.rules[57].opcodes[9]={type:4,index:3},this.rules[57].opcodes[10]={type:4,index:84},this.rules[57].opcodes[11]={type:4,index:3},this.rules[57].opcodes[12]={type:4,index:58},this.rules[57].opcodes[13]={type:4,index:3},this.rules[57].opcodes[14]={type:4,index:83},this.rules[58].opcodes=[],this.rules[58].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[58].opcodes[1]={type:4,index:27},this.rules[58].opcodes[2]={type:4,index:34},this.rules[58].opcodes[3]={type:4,index:57},this.rules[58].opcodes[4]={type:4,index:38},this.rules[59].opcodes=[],this.rules[59].opcodes[0]={type:1,children:[1,2]},this.rules[59].opcodes[1]={type:4,index:60},this.rules[59].opcodes[2]={type:4,index:67},this.rules[60].opcodes=[],this.rules[60].opcodes[0]={type:1,children:[1,2]},this.rules[60].opcodes[1]={type:4,index:61},this.rules[60].opcodes[2]={type:2,children:[3,4]},this.rules[60].opcodes[3]={type:4,index:78},this.rules[60].opcodes[4]={type:1,children:[5,6]},this.rules[60].opcodes[5]={type:4,index:18},this.rules[60].opcodes[6]={type:4,index:62},this.rules[61].opcodes=[],this.rules[61].opcodes[0]={type:2,children:[1,2,3,4,10,11]},this.rules[61].opcodes[1]={type:4,index:80},this.rules[61].opcodes[2]={type:4,index:3},this.rules[61].opcodes[3]={type:4,index:5},this.rules[61].opcodes[4]={type:3,min:0,max:1/0},this.rules[61].opcodes[5]={type:2,children:[6,7,8,9]},this.rules[61].opcodes[6]={type:4,index:3},this.rules[61].opcodes[7]={type:4,index:84},this.rules[61].opcodes[8]={type:4,index:3},this.rules[61].opcodes[9]={type:4,index:5},this.rules[61].opcodes[10]={type:4,index:3},this.rules[61].opcodes[11]={type:4,index:81},this.rules[62].opcodes=[],this.rules[62].opcodes[0]={type:2,children:[1,2]},this.rules[62].opcodes[1]={type:4,index:63},this.rules[62].opcodes[2]={type:3,min:0,max:1/0},this.rules[62].opcodes[3]={type:4,index:64},this.rules[63].opcodes=[],this.rules[63].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[63].opcodes[1]={type:4,index:66},this.rules[63].opcodes[2]={type:7,string:[95]},this.rules[63].opcodes[3]={type:5,min:128,max:55295},this.rules[63].opcodes[4]={type:5,min:57344,max:1114111},this.rules[64].opcodes=[],this.rules[64].opcodes[0]={type:1,children:[1,2]},this.rules[64].opcodes[1]={type:4,index:63},this.rules[64].opcodes[2]={type:4,index:65},this.rules[65].opcodes=[],this.rules[65].opcodes[0]={type:5,min:48,max:57},this.rules[66].opcodes=[],this.rules[66].opcodes[0]={type:1,children:[1,2]},this.rules[66].opcodes[1]={type:5,min:65,max:90},this.rules[66].opcodes[2]={type:5,min:97,max:122},this.rules[67].opcodes=[],this.rules[67].opcodes[0]={type:2,children:[1,2]},this.rules[67].opcodes[1]={type:4,index:79},this.rules[67].opcodes[2]={type:1,children:[3,4,5]},this.rules[67].opcodes[3]={type:4,index:61},this.rules[67].opcodes[4]={type:4,index:18},this.rules[67].opcodes[5]={type:4,index:62},this.rules[68].opcodes=[],this.rules[68].opcodes[0]={type:2,children:[1,2]},this.rules[68].opcodes[1]={type:4,index:4},this.rules[68].opcodes[2]={type:3,min:0,max:1/0},this.rules[68].opcodes[3]={type:4,index:69},this.rules[69].opcodes=[],this.rules[69].opcodes[0]={type:2,children:[1,2,3]},this.rules[69].opcodes[1]={type:4,index:80},this.rules[69].opcodes[2]={type:4,index:70},this.rules[69].opcodes[3]={type:4,index:81},this.rules[70].opcodes=[],this.rules[70].opcodes[0]={type:1,children:[1,2]},this.rules[70].opcodes[1]={type:4,index:71},this.rules[70].opcodes[2]={type:4,index:77},this.rules[71].opcodes=[],this.rules[71].opcodes[0]={type:2,children:[1,2,4]},this.rules[71].opcodes[1]={type:4,index:87},this.rules[71].opcodes[2]={type:3,min:0,max:1/0},this.rules[71].opcodes[3]={type:4,index:72},this.rules[71].opcodes[4]={type:4,index:87},this.rules[72].opcodes=[],this.rules[72].opcodes[0]={type:1,children:[1,2]},this.rules[72].opcodes[1]={type:4,index:73},this.rules[72].opcodes[2]={type:2,children:[3,4]},this.rules[72].opcodes[3]={type:4,index:10},this.rules[72].opcodes[4]={type:4,index:74},this.rules[73].opcodes=[],this.rules[73].opcodes[0]={type:1,children:[1,2,3,4]},this.rules[73].opcodes[1]={type:5,min:32,max:38},this.rules[73].opcodes[2]={type:5,min:40,max:91},this.rules[73].opcodes[3]={type:5,min:93,max:55295},this.rules[73].opcodes[4]={type:5,min:57344,max:1114111},this.rules[74].opcodes=[],this.rules[74].opcodes[0]={type:1,children:[1,2,3,4,5,6,7,8]},this.rules[74].opcodes[1]={type:6,string:[98]},this.rules[74].opcodes[2]={type:6,string:[102]},this.rules[74].opcodes[3]={type:6,string:[110]},this.rules[74].opcodes[4]={type:6,string:[114]},this.rules[74].opcodes[5]={type:6,string:[116]},this.rules[74].opcodes[6]={type:7,string:[39]},this.rules[74].opcodes[7]={type:7,string:[92]},this.rules[74].opcodes[8]={type:2,children:[9,10]},this.rules[74].opcodes[9]={type:6,string:[117]},this.rules[74].opcodes[10]={type:4,index:75},this.rules[75].opcodes=[],this.rules[75].opcodes[0]={type:2,children:[1,2,3]},this.rules[75].opcodes[1]={type:7,string:[48]},this.rules[75].opcodes[2]={type:7,string:[48]},this.rules[75].opcodes[3]={type:1,children:[4,7,10,13]},this.rules[75].opcodes[4]={type:2,children:[5,6]},this.rules[75].opcodes[5]={type:7,string:[48]},this.rules[75].opcodes[6]={type:5,min:48,max:55},this.rules[75].opcodes[7]={type:2,children:[8,9]},this.rules[75].opcodes[8]={type:7,string:[48]},this.rules[75].opcodes[9]={type:6,string:[98]},this.rules[75].opcodes[10]={type:2,children:[11,12]},this.rules[75].opcodes[11]={type:7,string:[48]},this.rules[75].opcodes[12]={type:5,min:101,max:102},this.rules[75].opcodes[13]={type:2,children:[14,15]},this.rules[75].opcodes[14]={type:7,string:[49]},this.rules[75].opcodes[15]={type:4,index:76},this.rules[76].opcodes=[],this.rules[76].opcodes[0]={type:1,children:[1,2]},this.rules[76].opcodes[1]={type:4,index:65},this.rules[76].opcodes[2]={type:5,min:97,max:102},this.rules[77].opcodes=[],this.rules[77].opcodes[0]={type:1,children:[1,2]},this.rules[77].opcodes[1]={type:7,string:[48]},this.rules[77].opcodes[2]={type:2,children:[3,4]},this.rules[77].opcodes[3]={type:4,index:21},this.rules[77].opcodes[4]={type:3,min:0,max:1/0},this.rules[77].opcodes[5]={type:4,index:65},this.rules[78].opcodes=[],this.rules[78].opcodes[0]={type:7,string:[46]},this.rules[79].opcodes=[],this.rules[79].opcodes[0]={type:7,string:[46,46]},this.rules[80].opcodes=[],this.rules[80].opcodes[0]={type:7,string:[91]},this.rules[81].opcodes=[],this.rules[81].opcodes[0]={type:7,string:[93]},this.rules[82].opcodes=[],this.rules[82].opcodes[0]={type:7,string:[40]},this.rules[83].opcodes=[],this.rules[83].opcodes[0]={type:7,string:[41]},this.rules[84].opcodes=[],this.rules[84].opcodes[0]={type:7,string:[44]},this.rules[85].opcodes=[],this.rules[85].opcodes[0]={type:7,string:[58]},this.rules[86].opcodes=[],this.rules[86].opcodes[0]={type:6,string:[34]},this.rules[87].opcodes=[],this.rules[87].opcodes[0]={type:6,string:[39]},this.rules[88].opcodes=[],this.rules[88].opcodes[0]={type:7,string:[63]},this.rules[89].opcodes=[],this.rules[89].opcodes[0]={type:7,string:[124,124]},this.rules[90].opcodes=[],this.rules[90].opcodes[0]={type:7,string:[38,38]},this.toString=function(){let e="";return e+="; JSONPath: Query Expressions for JSON\n",e+="; https://www.rfc-editor.org/rfc/rfc9535\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.1.1\n",e+="jsonpath-query = root-identifier segments\n",e+="segments = *(S segment)\n",e+="\n",e+="B = %x20 / ; Space\n",e+=" %x09 / ; Horizontal tab\n",e+=" %x0A / ; Line feed or New line\n",e+=" %x0D ; Carriage return\n",e+="S = *B ; optional blank space\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.2.1\n",e+='root-identifier = "$"\n',e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3\n",e+="selector = name-selector /\n",e+=" wildcard-selector /\n",e+=" slice-selector /\n",e+=" index-selector /\n",e+=" filter-selector\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.1.1\n",e+="name-selector = string-literal\n",e+="\n",e+='string-literal = dquote *double-quoted dquote / ; "string", MODIFICATION: surrogate text rule used\n',e+=" squote *single-quoted squote ; 'string', MODIFICATION: surrogate text rule used\n",e+="\n",e+="double-quoted = unescaped /\n",e+=" %x27 / ; '\n",e+=' ESC %x22 / ; \\"\n',e+=" ESC escapable\n",e+="\n",e+="single-quoted = unescaped /\n",e+=' %x22 / ; "\n',e+=" ESC %x27 / ; \\'\n",e+=" ESC escapable\n",e+="\n",e+="ESC = %x5C ; \\ backslash\n",e+="\n",e+="unescaped = %x20-21 / ; see RFC 8259\n",e+=' ; omit 0x22 "\n',e+=" %x23-26 /\n",e+=" ; omit 0x27 '\n",e+=" %x28-5B /\n",e+=" ; omit 0x5C \\\n",e+=" %x5D-D7FF /\n",e+=" ; skip surrogate code points\n",e+=" %xE000-10FFFF\n",e+="\n",e+="escapable = %x62 / ; b BS backspace U+0008\n",e+=" %x66 / ; f FF form feed U+000C\n",e+=" %x6E / ; n LF line feed U+000A\n",e+=" %x72 / ; r CR carriage return U+000D\n",e+=" %x74 / ; t HT horizontal tab U+0009\n",e+=' "/" / ; / slash (solidus) U+002F\n',e+=' "\\" / ; \\ backslash (reverse solidus) U+005C\n',e+=" (%x75 hexchar) ; uXXXX U+XXXX\n",e+="\n",e+="hexchar = non-surrogate /\n",e+=' (high-surrogate "\\" %x75 low-surrogate)\n',e+='non-surrogate = ((DIGIT / "A"/"B"/"C" / "E"/"F") 3HEXDIG) /\n',e+=' ("D" %x30-37 2HEXDIG )\n',e+='high-surrogate = "D" ("8"/"9"/"A"/"B") 2HEXDIG\n',e+='low-surrogate = "D" ("C"/"D"/"E"/"F") 2HEXDIG\n',e+="\n",e+='HEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"\n',e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.2.1\n",e+='wildcard-selector = "*"\n',e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.3.1\n",e+="index-selector = int ; decimal integer\n",e+="\n",e+='int = "0" /\n',e+=' (["-"] DIGIT1 *DIGIT) ; - optional\n',e+="DIGIT1 = %x31-39 ; 1-9 non-zero digit\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.4.1\n",e+="slice-selector = [start S] colon S [end S] [colon [S step ]] ; MODIFICATION: surrogate text rule used\n",e+="\n",e+="start = int ; included in selection\n",e+="end = int ; not included in selection\n",e+="step = int ; default: 1\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.5.1\n",e+="filter-selector = questionmark S logical-expr ; MODIFICATION: surrogate text rule used\n",e+="\n",e+="logical-expr = logical-or-expr\n",e+="logical-or-expr = logical-and-expr *(S disjunction S logical-and-expr) ; MODIFICATION: surrogate text rule used\n",e+=" ; disjunction\n",e+=" ; binds less tightly than conjunction\n",e+="logical-and-expr = basic-expr *(S conjunction S basic-expr) ; MODIFICATION: surrogate text rule used\n",e+=" ; conjunction\n",e+=" ; binds more tightly than disjunction\n",e+="\n",e+="basic-expr = paren-expr /\n",e+=" comparison-expr /\n",e+=" test-expr\n",e+="\n",e+="paren-expr = [logical-not-op S] left-paren S logical-expr S right-paren ; MODIFICATION: surrogate text rule used\n",e+=" ; parenthesized expression\n",e+='logical-not-op = "!" ; logical NOT operator\n',e+="\n",e+="test-expr = [logical-not-op S]\n",e+=" (filter-query / ; existence/non-existence\n",e+=" function-expr) ; LogicalType or NodesType\n",e+="filter-query = rel-query / jsonpath-query\n",e+="rel-query = current-node-identifier segments\n",e+='current-node-identifier = "@"\n',e+="\n",e+="comparison-expr = comparable S comparison-op S comparable\n",e+="literal = number / string-literal /\n",e+=" true / false / null\n",e+="comparable = singular-query / ; singular query value\n",e+=" function-expr / ; ValueType\n",e+=" literal\n",e+=" ; MODIFICATION: https://www.rfc-editor.org/errata/eid8352\n",e+='comparison-op = "==" / "!=" /\n',e+=' "<=" / ">=" /\n',e+=' "<" / ">"\n',e+="\n",e+="singular-query = rel-singular-query / abs-singular-query\n",e+="rel-singular-query = current-node-identifier singular-query-segments\n",e+="abs-singular-query = root-identifier singular-query-segments\n",e+="singular-query-segments = *(S (name-segment / index-segment))\n",e+="name-segment = (left-bracket name-selector right-bracket) / ; MODIFICATION: surrogate text rule used\n",e+=" (dot-prefix member-name-shorthand) ; MODIFICATION: surrogate text rule used\n",e+="index-segment = left-bracket index-selector right-bracket ; MODIFICATION: surrogate text rule used\n",e+="\n",e+='number = (int / "-0") [ frac ] [ exp ] ; decimal number\n',e+='frac = "." 1*DIGIT ; decimal fraction\n',e+='exp = "e" [ "-" / "+" ] 1*DIGIT ; decimal exponent\n',e+="true = %x74.72.75.65 ; true\n",e+="false = %x66.61.6c.73.65 ; false\n",e+="null = %x6e.75.6c.6c ; null\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.4\n",e+="function-name = function-name-first *function-name-char\n",e+="function-name-first = LCALPHA\n",e+='function-name-char = function-name-first / "_" / DIGIT\n',e+='LCALPHA = %x61-7A ; "a".."z"\n',e+="\n",e+="function-expr = function-name left-paren S [function-argument ; MODIFICATION: surrogate text rule used\n",e+=" *(S comma S function-argument)] S right-paren ; MODIFICATION: surrogate text rule used\n",e+="function-argument = logical-expr / ; MODIFICATION: https://www.rfc-editor.org/errata/eid8343\n",e+=" filter-query / ; (includes singular-query)\n",e+=" function-expr /\n",e+=" literal\n",e+="\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.5\n",e+="segment = child-segment / descendant-segment\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.1.1\n",e+="child-segment = bracketed-selection /\n",e+=" (dot-prefix ; MODIFICATION: surrogate text rule used\n",e+=" (wildcard-selector /\n",e+=" member-name-shorthand))\n",e+="\n",e+="bracketed-selection = left-bracket S selector *(S comma S selector) S right-bracket\n",e+=" ; MODIFICATION: surrogate text rule used\n",e+="\n",e+="member-name-shorthand = name-first *name-char\n",e+="name-first = ALPHA /\n",e+=' "_" /\n',e+=" %x80-D7FF /\n",e+=" ; skip surrogate code points\n",e+=" %xE000-10FFFF\n",e+="name-char = name-first / DIGIT\n",e+="\n",e+="DIGIT = %x30-39 ; 0-9\n",e+="ALPHA = %x41-5A / %x61-7A ; A-Z / a-z\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.2.1\n",e+="descendant-segment = double-dot-prefix (bracketed-selection / ; MODIFICATION: surrogate text rule used\n",e+=" wildcard-selector /\n",e+=" member-name-shorthand)\n",e+="\n",e+="; https://www.rfc-editor.org/rfc/rfc9535#name-normalized-paths\n",e+="normalized-path = root-identifier *(normal-index-segment)\n",e+="normal-index-segment = left-bracket normal-selector right-bracket ; MODIFICATION: surrogate text rule used\n",e+="normal-selector = normal-name-selector / normal-index-selector\n",e+="normal-name-selector = squote *normal-single-quoted squote ; 'string', MODIFICATION: surrogate text rule used\n",e+="normal-single-quoted = normal-unescaped /\n",e+=" ESC normal-escapable\n",e+="normal-unescaped = ; omit %x0-1F control codes\n",e+=" %x20-26 /\n",e+=" ; omit 0x27 '\n",e+=" %x28-5B /\n",e+=" ; omit 0x5C \\\n",e+=" %x5D-D7FF /\n",e+=" ; skip surrogate code points\n",e+=" %xE000-10FFFF\n",e+="\n",e+="normal-escapable = %x62 / ; b BS backspace U+0008\n",e+=" %x66 / ; f FF form feed U+000C\n",e+=" %x6E / ; n LF line feed U+000A\n",e+=" %x72 / ; r CR carriage return U+000D\n",e+=" %x74 / ; t HT horizontal tab U+0009\n",e+=" \"'\" / ; ' apostrophe U+0027\n",e+=' "\\" / ; \\ backslash (reverse solidus) U+005C\n',e+=" (%x75 normal-hexchar)\n",e+=" ; certain values u00xx U+00XX\n",e+='normal-hexchar = "0" "0"\n',e+=" (\n",e+=' ("0" %x30-37) / ; "00"-"07"\n',e+=" ; omit U+0008-U+000A BS HT LF\n",e+=' ("0" %x62) / ; "0b"\n',e+=" ; omit U+000C-U+000D FF CR\n",e+=' ("0" %x65-66) / ; "0e"-"0f"\n',e+=' ("1" normal-HEXDIG)\n',e+=" )\n",e+='normal-HEXDIG = DIGIT / %x61-66 ; "0"-"9", "a"-"f"\n',e+='normal-index-selector = "0" / (DIGIT1 *DIGIT)\n',e+=" ; non-negative decimal integer\n",e+="\n",e+="; Surrogate named rules\n",e+='dot-prefix = "."\n',e+='double-dot-prefix = ".."\n',e+='left-bracket = "["\n',e+='right-bracket = "]"\n',e+='left-paren = "("\n',e+='right-paren = ")"\n',e+='comma = ","\n',e+='colon = ":"\n',e+='dquote = %x22 ; "\n',e+="squote = %x27 ; '\n",e+='questionmark = "?"\n',e+='disjunction = "||"\n',e+='conjunction = "&&"\n','; JSONPath: Query Expressions for JSON\n; https://www.rfc-editor.org/rfc/rfc9535\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.1.1\njsonpath-query = root-identifier segments\nsegments = *(S segment)\n\nB = %x20 / ; Space\n %x09 / ; Horizontal tab\n %x0A / ; Line feed or New line\n %x0D ; Carriage return\nS = *B ; optional blank space\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.2.1\nroot-identifier = "$"\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3\nselector = name-selector /\n wildcard-selector /\n slice-selector /\n index-selector /\n filter-selector\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.1.1\nname-selector = string-literal\n\nstring-literal = dquote *double-quoted dquote / ; "string", MODIFICATION: surrogate text rule used\n squote *single-quoted squote ; \'string\', MODIFICATION: surrogate text rule used\n\ndouble-quoted = unescaped /\n %x27 / ; \'\n ESC %x22 / ; \\"\n ESC escapable\n\nsingle-quoted = unescaped /\n %x22 / ; "\n ESC %x27 / ; \\\'\n ESC escapable\n\nESC = %x5C ; \\ backslash\n\nunescaped = %x20-21 / ; see RFC 8259\n ; omit 0x22 "\n %x23-26 /\n ; omit 0x27 \'\n %x28-5B /\n ; omit 0x5C \\\n %x5D-D7FF /\n ; skip surrogate code points\n %xE000-10FFFF\n\nescapable = %x62 / ; b BS backspace U+0008\n %x66 / ; f FF form feed U+000C\n %x6E / ; n LF line feed U+000A\n %x72 / ; r CR carriage return U+000D\n %x74 / ; t HT horizontal tab U+0009\n "/" / ; / slash (solidus) U+002F\n "\\" / ; \\ backslash (reverse solidus) U+005C\n (%x75 hexchar) ; uXXXX U+XXXX\n\nhexchar = non-surrogate /\n (high-surrogate "\\" %x75 low-surrogate)\nnon-surrogate = ((DIGIT / "A"/"B"/"C" / "E"/"F") 3HEXDIG) /\n ("D" %x30-37 2HEXDIG )\nhigh-surrogate = "D" ("8"/"9"/"A"/"B") 2HEXDIG\nlow-surrogate = "D" ("C"/"D"/"E"/"F") 2HEXDIG\n\nHEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.2.1\nwildcard-selector = "*"\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.3.1\nindex-selector = int ; decimal integer\n\nint = "0" /\n (["-"] DIGIT1 *DIGIT) ; - optional\nDIGIT1 = %x31-39 ; 1-9 non-zero digit\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.4.1\nslice-selector = [start S] colon S [end S] [colon [S step ]] ; MODIFICATION: surrogate text rule used\n\nstart = int ; included in selection\nend = int ; not included in selection\nstep = int ; default: 1\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.3.5.1\nfilter-selector = questionmark S logical-expr ; MODIFICATION: surrogate text rule used\n\nlogical-expr = logical-or-expr\nlogical-or-expr = logical-and-expr *(S disjunction S logical-and-expr) ; MODIFICATION: surrogate text rule used\n ; disjunction\n ; binds less tightly than conjunction\nlogical-and-expr = basic-expr *(S conjunction S basic-expr) ; MODIFICATION: surrogate text rule used\n ; conjunction\n ; binds more tightly than disjunction\n\nbasic-expr = paren-expr /\n comparison-expr /\n test-expr\n\nparen-expr = [logical-not-op S] left-paren S logical-expr S right-paren ; MODIFICATION: surrogate text rule used\n ; parenthesized expression\nlogical-not-op = "!" ; logical NOT operator\n\ntest-expr = [logical-not-op S]\n (filter-query / ; existence/non-existence\n function-expr) ; LogicalType or NodesType\nfilter-query = rel-query / jsonpath-query\nrel-query = current-node-identifier segments\ncurrent-node-identifier = "@"\n\ncomparison-expr = comparable S comparison-op S comparable\nliteral = number / string-literal /\n true / false / null\ncomparable = singular-query / ; singular query value\n function-expr / ; ValueType\n literal\n ; MODIFICATION: https://www.rfc-editor.org/errata/eid8352\ncomparison-op = "==" / "!=" /\n "<=" / ">=" /\n "<" / ">"\n\nsingular-query = rel-singular-query / abs-singular-query\nrel-singular-query = current-node-identifier singular-query-segments\nabs-singular-query = root-identifier singular-query-segments\nsingular-query-segments = *(S (name-segment / index-segment))\nname-segment = (left-bracket name-selector right-bracket) / ; MODIFICATION: surrogate text rule used\n (dot-prefix member-name-shorthand) ; MODIFICATION: surrogate text rule used\nindex-segment = left-bracket index-selector right-bracket ; MODIFICATION: surrogate text rule used\n\nnumber = (int / "-0") [ frac ] [ exp ] ; decimal number\nfrac = "." 1*DIGIT ; decimal fraction\nexp = "e" [ "-" / "+" ] 1*DIGIT ; decimal exponent\ntrue = %x74.72.75.65 ; true\nfalse = %x66.61.6c.73.65 ; false\nnull = %x6e.75.6c.6c ; null\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.4\nfunction-name = function-name-first *function-name-char\nfunction-name-first = LCALPHA\nfunction-name-char = function-name-first / "_" / DIGIT\nLCALPHA = %x61-7A ; "a".."z"\n\nfunction-expr = function-name left-paren S [function-argument ; MODIFICATION: surrogate text rule used\n *(S comma S function-argument)] S right-paren ; MODIFICATION: surrogate text rule used\nfunction-argument = logical-expr / ; MODIFICATION: https://www.rfc-editor.org/errata/eid8343\n filter-query / ; (includes singular-query)\n function-expr /\n literal\n\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.5\nsegment = child-segment / descendant-segment\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.1.1\nchild-segment = bracketed-selection /\n (dot-prefix ; MODIFICATION: surrogate text rule used\n (wildcard-selector /\n member-name-shorthand))\n\nbracketed-selection = left-bracket S selector *(S comma S selector) S right-bracket\n ; MODIFICATION: surrogate text rule used\n\nmember-name-shorthand = name-first *name-char\nname-first = ALPHA /\n "_" /\n %x80-D7FF /\n ; skip surrogate code points\n %xE000-10FFFF\nname-char = name-first / DIGIT\n\nDIGIT = %x30-39 ; 0-9\nALPHA = %x41-5A / %x61-7A ; A-Z / a-z\n\n; https://www.rfc-editor.org/rfc/rfc9535#section-2.5.2.1\ndescendant-segment = double-dot-prefix (bracketed-selection / ; MODIFICATION: surrogate text rule used\n wildcard-selector /\n member-name-shorthand)\n\n; https://www.rfc-editor.org/rfc/rfc9535#name-normalized-paths\nnormalized-path = root-identifier *(normal-index-segment)\nnormal-index-segment = left-bracket normal-selector right-bracket ; MODIFICATION: surrogate text rule used\nnormal-selector = normal-name-selector / normal-index-selector\nnormal-name-selector = squote *normal-single-quoted squote ; \'string\', MODIFICATION: surrogate text rule used\nnormal-single-quoted = normal-unescaped /\n ESC normal-escapable\nnormal-unescaped = ; omit %x0-1F control codes\n %x20-26 /\n ; omit 0x27 \'\n %x28-5B /\n ; omit 0x5C \\\n %x5D-D7FF /\n ; skip surrogate code points\n %xE000-10FFFF\n\nnormal-escapable = %x62 / ; b BS backspace U+0008\n %x66 / ; f FF form feed U+000C\n %x6E / ; n LF line feed U+000A\n %x72 / ; r CR carriage return U+000D\n %x74 / ; t HT horizontal tab U+0009\n "\'" / ; \' apostrophe U+0027\n "\\" / ; \\ backslash (reverse solidus) U+005C\n (%x75 normal-hexchar)\n ; certain values u00xx U+00XX\nnormal-hexchar = "0" "0"\n (\n ("0" %x30-37) / ; "00"-"07"\n ; omit U+0008-U+000A BS HT LF\n ("0" %x62) / ; "0b"\n ; omit U+000C-U+000D FF CR\n ("0" %x65-66) / ; "0e"-"0f"\n ("1" normal-HEXDIG)\n )\nnormal-HEXDIG = DIGIT / %x61-66 ; "0"-"9", "a"-"f"\nnormal-index-selector = "0" / (DIGIT1 *DIGIT)\n ; non-negative decimal integer\n\n; Surrogate named rules\ndot-prefix = "."\ndouble-dot-prefix = ".."\nleft-bracket = "["\nright-bracket = "]"\nleft-paren = "("\nright-paren = ")"\ncomma = ","\ncolon = ":"\ndquote = %x22 ; "\nsquote = %x27 ; \'\nquestionmark = "?"\ndisjunction = "||"\nconjunction = "&&"\n'}};const un=class extends ln{},pn=e=>{if(!Array.isArray(e))throw new un("Selectors must be an array, got: "+typeof e,{selectors:e});try{return`$${e.map(e=>{if("string"==typeof e)return`['${(e=>{if("string"!=typeof e)throw new TypeError("Selector must be a string");let t="";for(const s of e){const e=s.codePointAt(0);switch(e){case 8:t+="\\b";break;case 9:t+="\\t";break;case 10:t+="\\n";break;case 12:t+="\\f";break;case 13:t+="\\r";break;case 39:t+="\\'";break;case 92:t+="\\\\";break;default:t+=e<=31?`\\u${e.toString(16).padStart(4,"0")}`:s}}return t})(e)}']`;if("number"==typeof e){if(!Number.isSafeInteger(e)||e<0)throw new TypeError(`Index selector must be a non-negative safe integer, got: ${e}`);return`[${e}]`}throw new TypeError("Selector must be a string or non-negative integer, got: "+typeof e)}).join("")}`}catch(t){throw new un("Failed to compile normalized JSONPath",{cause:t,selectors:e})}},hn=(e,t,s,n)=>{const{realm:r}=e,{value:i}=s;if(r.isObject(t)&&r.hasProperty(t,i)){n(r.getProperty(t,i),i)}},dn=(e,t,s,n)=>{const{realm:r}=e,{value:i}=s;if(!r.isArray(t))return;const o=r.getLength(t),c=((e,t)=>e>=0?e:t+e)(i,o);if(c>=0&&c<o){n(r.getElement(t,c),c)}},mn=(e,t,s,n)=>{const{realm:r}=e;for(const[e,s]of r.entries(t))n(s,e)},fn=(e,t)=>e>=0?Math.min(e,t):Math.max(t+e,0),yn=(e,t,s,n)=>{const{realm:r}=e,{start:i,end:o,step:c}=s;if(!r.isArray(t))return;const a=((e,t,s,n)=>{const r=s??1;if(0===r)return null;let i,o;if(r>0){const s=0,r=n,c=null!==e?fn(e,n):s,a=null!==t?fn(t,n):r;i=Math.max(c,0),o=Math.min(a,n)}else{const s=n-1,r=-n-1,c=null!==e?e>=0?Math.min(e,n-1):Math.max(n+e,-1):s,a=null!==t?t>=0?Math.min(t,n-1):Math.max(n+t,-1):r;o=Math.min(c,n-1),i=Math.max(a,-1)}return{lower:i,upper:o,step:r}})(i,o,c,r.getLength(t));if(null===a)return;const{lower:l,upper:u,step:p}=a;if(p>0)for(let e=l;e<u;e+=p){n(r.getElement(t,e),e)}else for(let e=u;e>l;e+=p){n(r.getElement(t,e),e)}},gn=(e,t,s,n)=>n.value,xn=(e,t,s)=>{const{realm:n}=e,{selector:r}=s;switch(r.type){case"NameSelector":{const{value:e}=r;return n.isObject(t)&&n.hasProperty(t,e)?n.getProperty(t,e):void 0}case"IndexSelector":{const{value:e}=r;if(!n.isArray(t))return;const s=n.getLength(t),i=e>=0?e:s+e;return i>=0&&i<s?n.getElement(t,i):void 0}default:return}},bn=(e,t,s,n)=>{const{selectors:r}=s;for(const s of r)Mn(e,t,s,n)},vn=(e,t,s)=>{const n=[],r=e=>{n.push(e)},{selector:i}=s;switch(i.type){case"BracketedSelection":bn(e,t,i,r);break;case"NameSelector":case"WildcardSelector":case"IndexSelector":case"SliceSelector":case"FilterSelector":Mn(e,t,i,r)}return n},Sn=(e,t,s,n)=>{let r=s;for(const t of n){const s=[];if("DescendantSegment"===t.type){const n=r=>{const{realm:i}=e,o=vn(e,r,t);s.push(...o);for(const[,e]of i.entries(r))n(e)};for(const e of r)n(e)}else for(const n of r){const r=vn(e,n,t);s.push(...r)}r=s}return r},wn=(e,t,s,n)=>{const{query:r}=n;let i;switch(r.type){case"RelQuery":i=((e,t,s,n)=>{const{segments:r}=n;return 0===r.length?[s]:Sn(e,0,[s],r)})(e,0,s,r);break;case"JsonPathQuery":i=((e,t,s,n)=>{const{segments:r}=n;return 0===r.length?[t]:Sn(e,0,[t],r)})(e,t,0,r);break;default:i=[]}return o=i,Object.defineProperty(o,"_isNodelist",{value:!0,enumerable:!1,writable:!1}),o;var o};let En;const On=(e,t,s,n)=>{const{name:r,arguments:i}=n,o=e.functions[r];if("function"!=typeof o)return;const c=i.map(n=>((e,t,s,n)=>{switch(n.type){case"Literal":case"RelSingularQuery":case"AbsSingularQuery":case"FunctionExpr":return kn(e,t,s,n);case"FilterQuery":return wn(e,t,s,n);case"TestExpr":return"FilterQuery"===n.expression.type?wn(e,t,s,n.expression):"FunctionExpr"===n.expression.type?kn(e,t,s,n.expression):En(e,t,s,n);case"LogicalOrExpr":case"LogicalAndExpr":case"LogicalNotExpr":case"ComparisonExpr":return En(e,t,s,n);default:return}})(e,t,s,n));return o(e.realm,...c)},kn=(e,t,s,n)=>{switch(n.type){case"Literal":return gn(e,t,s,n);case"RelSingularQuery":return((e,t,s,n)=>{let r=s;for(const t of n.segments)if(r=xn(e,r,t),void 0===r)return;return r})(e,0,s,n);case"AbsSingularQuery":return((e,t,s,n)=>{let r=t;for(const t of n.segments)if(r=xn(e,r,t),void 0===r)return;return r})(e,t,0,n);case"FunctionExpr":return On(e,t,s,n);default:return}},An=(e,t,s,n)=>{const{left:r,op:i,right:o}=n,c=kn(e,t,s,r),a=kn(e,t,s,o);return e.realm.compare(c,i,a)},jn=e=>Array.isArray(e),Fn=(e,t,s,n)=>{switch(n.type){case"LogicalOrExpr":return!!Fn(e,t,s,n.left)||Fn(e,t,s,n.right);case"LogicalAndExpr":return!!Fn(e,t,s,n.left)&&Fn(e,t,s,n.right);case"LogicalNotExpr":return!Fn(e,t,s,n.expression);case"TestExpr":{const{expression:r}=n;if("FilterQuery"===r.type){return wn(e,t,s,r).length>0}if("FunctionExpr"===r.type){const n=On(e,t,s,r);return"boolean"==typeof n?n:void 0!==n&&(jn(n)?n.length>0:Boolean(n))}return!1}case"ComparisonExpr":return An(e,t,s,n);default:return!1}};En=Fn;const In=Fn,Pn=(e,t,s,n)=>{const{realm:r,root:i}=e,{expression:o}=s;for(const[s,c]of r.entries(t)){In(e,i,c,o)&&n(c,s)}},Mn=(e,t,s,n)=>{switch(s.type){case"NameSelector":hn(e,t,s,n);break;case"IndexSelector":dn(e,t,s,n);break;case"WildcardSelector":mn(e,t,s,n);break;case"SliceSelector":yn(e,t,s,n);break;case"FilterSelector":Pn(e,t,s,n)}};new Map;class Cn{node;key;index;parent;parentPath;inList;#e=!1;#t=!1;#s=!1;#n=!1;#r;#i=!1;constructor(e,t,s,n,r){this.node=e,this.parent=t,this.parentPath=s,this.key=n,this.index=r&&"number"==typeof n?n:void 0,this.inList=r}get shouldSkip(){return this.#e}get shouldStop(){return this.#t}get removed(){return this.#s}isRoot(){return null===this.parentPath}get depth(){let e=0,t=this.parentPath;for(;null!==t;)e+=1,t=t.parentPath;return e}getAncestry(){const e=[];let t=this.parentPath;for(;null!==t;)e.push(t),t=t.parentPath;return e}getAncestorNodes(){return this.getAncestry().map(e=>e.node)}getPathKeys(){const e=[];let t=this;for(;null!==t&&void 0!==t.key;){const{key:s,parent:n,parentPath:r}=t;if(is(n)&&"value"===s){if(!Zt(n.key))throw new TypeError("MemberElement.key must be a StringElement");e.unshift(n.key.toValue())}else ns(r?.node)&&"number"==typeof s&&e.unshift(s);t=t.parentPath}return e}formatPath(e="jsonpointer"){const t=this.getPathKeys();return 0===t.length?"jsonpath"===e?"$":"":"jsonpath"===e?pn(t):cn(t)}findParent(e){let t=this.parentPath;for(;null!==t;){if(e(t))return t;t=t.parentPath}return null}find(e){return e(this)?this:this.findParent(e)}skip(){this.#e=!0}stop(){this.#t=!0}replaceWith(e){this.#i&&console.warn("Warning: replaceWith() called on a stale Path. This path belongs to a node whose visit has already completed. The replacement will have no effect. To replace a parent node, do so from the parent's own visitor."),this.#n=!0,this.#r=e,this.node=e}remove(){this.#i&&console.warn("Warning: remove() called on a stale Path. This path belongs to a node whose visit has already completed. The removal will have no effect. To remove a parent node, do so from the parent's own visitor."),this.#s=!0}_getReplacementNode(){return this.#r}_wasReplaced(){return this.#n}_reset(){this.#e=!1,this.#t=!1,this.#s=!1,this.#n=!1,this.#r=void 0}_markStale(){this.#i=!0}}const Tn=it(1,dt(Ws,Pe(We,T("[object Promise]")))),Nn=e=>{const t=e?.element;return void 0===t||"element"===t?"Element":`${t.charAt(0).toUpperCase()}${t.slice(1)}Element`},$n=e=>Qt(e),Dn=e=>ws(e),Rn=(e,t,s)=>{is(e)?e.value=s:Array.isArray(e)?e[t]=null===s?void 0:s:null===s?delete e[t]:e[t]=s},Bn=e=>is(e)?["key","value"]:ns(e)||rs(e)?["content"]:[],Ln=(e,t)=>{if(void 0!==e[t])return e[t];const s=t.length;for(const n in e){if(!n.includes("|"))continue;const r=n.indexOf(t);if(-1===r)continue;const i=0===r||"|"===n[r-1],o=r+s===n.length||"|"===n[r+s];if(i&&o)return e[n]}},Jn=(e,t,s)=>{if(void 0===t)return null;const n=e,r=s?"leave":"enter",i=Ln(n,t);if(!s&&"function"==typeof i)return i;if(null!=i){const e=i[r];if("function"==typeof e)return e}const o=n[r];if("function"==typeof o)return o;if(null!=o){const e=Ln(o,t);if("function"==typeof e)return e}return null},qn=(e,t={})=>{const{visitFnGetter:s=Jn,nodeTypeGetter:n=Nn,exposeEdits:r=!1}=t,i=Symbol("internal-skip"),o=Symbol("break"),c=new Array(e.length).fill(i);return{enter(t){let a=t.node,l=!1;for(let u=0;u<e.length;u+=1)if(c[u]===i){const i=s(e[u],n(a),!1);if("function"==typeof i){const s=zn(t,a),n=i.call(e[u],s);if(Tn(n))throw new ds("Async visitor not supported in sync mode",{visitor:e[u],visitFn:i});if(s.shouldStop){c[u]=o;break}if(s.shouldSkip&&(c[u]=a),s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();if(!r)return t.replaceWith(e),e;a=e,l=!0}else if(void 0!==n){if(!r)return t.replaceWith(n),n;a=n,l=!0}}}if(l)return t.replaceWith(a),a},leave(t){const r=t.node;for(let a=0;a<e.length;a+=1)if(c[a]===i){const i=s(e[a],n(r),!0);if("function"==typeof i){const s=zn(t,r),n=i.call(e[a],s);if(Tn(n))throw new ds("Async visitor not supported in sync mode",{visitor:e[a],visitFn:i});if(s.shouldStop){c[a]=o;break}if(s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();return t.replaceWith(e),e}if(void 0!==n)return t.replaceWith(n),n}}else c[a]===r&&(c[a]=i)}}},_n=(e,t={})=>{const{visitFnGetter:s=Jn,nodeTypeGetter:n=Nn,exposeEdits:r=!1}=t,i=Symbol("internal-skip"),o=Symbol("break"),c=new Array(e.length).fill(i);return{async enter(t){let a=t.node,l=!1;for(let u=0;u<e.length;u+=1)if(c[u]===i){const i=s(e[u],n(a),!1);if("function"==typeof i){const s=zn(t,a),n=await i.call(e[u],s);if(s.shouldStop){c[u]=o;break}if(s.shouldSkip&&(c[u]=a),s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();if(!r)return t.replaceWith(e),e;a=e,l=!0}else if(void 0!==n){if(!r)return t.replaceWith(n),n;a=n,l=!0}}}if(l)return t.replaceWith(a),a},async leave(t){const r=t.node;for(let a=0;a<e.length;a+=1)if(c[a]===i){const i=s(e[a],n(r),!0);if("function"==typeof i){const s=zn(t,r),n=await i.call(e[a],s);if(s.shouldStop){c[a]=o;break}if(s.removed)return void t.remove();if(s._wasReplaced()){const e=s._getReplacementNode();return t.replaceWith(e),e}if(void 0!==n)return t.replaceWith(n),n}}else c[a]===r&&(c[a]=i)}}};function zn(e,t){return new Cn(t,e.parent,e.parentPath,e.key,e.inList)}function*Hn(e,t,s){const{keyMap:n,state:r,nodeTypeGetter:i,nodePredicate:o,nodeCloneFn:c,detectCycles:a,mutable:l,mutationFn:u}=s,p="function"==typeof n;let h,d,m=Array.isArray(e),f=[e],y=-1,g=[],x=e,b=null,v=null;const S=[];do{y+=1;const e=y===f.length;let s;const w=e&&0!==g.length;if(e){if(s=0===S.length?void 0:b?.key,x=d,d=S.pop(),v=b?.parentPath?.parentPath??null,w)if(l)for(const[e,t]of g)u(x,e,t);else if(m){x=x.slice();let e=0;for(const[t,s]of g){const n=t-e;null===s?(x.splice(n,1),e+=1):x[n]=s}}else{x=c(x);for(const[e,t]of g)x[e]=t}if(void 0!==h){y=h.index,f=h.keys,g=h.edits;const e=h.inArray;if(v=h.parentPath,h=h.prev,w&&!l){const t=e?y:f[y];g.push([t,x])}m=e}}else if(void 0!==d&&(s=m?y:f[y],x=d[s],void 0===x))continue;if(!Array.isArray(x)){if(!o(x))throw new ds(`Invalid AST Node: ${String(x)}`,{node:x});if(a&&S.includes(x))continue;b=new Cn(x,d,v,s,m);const n=Jn(t,i(x),e);if(n){for(const[e,s]of Object.entries(r))t[e]=s;const i=yield{visitFn:n,path:b,isLeaving:e};if(b.shouldStop)break;if(b.shouldSkip&&!e)continue;if(b.removed){if(g.push([s,null]),!e)continue}else if(b._wasReplaced()){const t=b._getReplacementNode();if(g.push([s,t]),!e){if(!o(t))continue;x=t}}else if(void 0!==i&&(g.push([s,i]),!e)){if(!o(i))continue;x=i}b._markStale()}}if(!e){if(h={inArray:m,index:y,keys:f,edits:g,parentPath:v,prev:h},m=Array.isArray(x),m)f=x;else if(p)f=n(x);else{const e=i(x);f=void 0!==e?n[e]??[]:[]}y=-1,g=[],void 0!==d&&S.push(d),d=x,v=b}}while(void 0!==h);return 0!==g.length?g.at(-1)[1]:e}qn[Symbol.for("nodejs.util.promisify.custom")]=_n;const Vn=(e,t,s={})=>{const n=Hn(e,t,{keyMap:s.keyMap??Bn,state:s.state??{},nodeTypeGetter:s.nodeTypeGetter??Nn,nodePredicate:s.nodePredicate??$n,nodeCloneFn:s.nodeCloneFn??Dn,detectCycles:s.detectCycles??!0,mutable:s.mutable??!1,mutationFn:s.mutationFn??Rn});let r=n.next();for(;!r.done;){const e=r.value,s=e.visitFn.call(t,e.path);if(Tn(s))throw new ds("Async visitor not supported in sync mode",{visitor:t,visitFn:e.visitFn});r=n.next(s)}return r.value},Un=async(e,t,s={})=>{const n=Hn(e,t,{keyMap:s.keyMap??Bn,state:s.state??{},nodeTypeGetter:s.nodeTypeGetter??Nn,nodePredicate:s.nodePredicate??$n,nodeCloneFn:s.nodeCloneFn??Dn,detectCycles:s.detectCycles??!0,mutable:s.mutable??!1,mutationFn:s.mutationFn??Rn});let r=n.next();for(;!r.done;){const e=r.value,s=await e.visitFn.call(t,e.path);r=n.next(s)}return r.value};Vn[Symbol.for("nodejs.util.promisify.custom")]=Un,Cn.prototype.traverse=function(e,t){return Vn(this.node,e,t)},Cn.prototype.traverseAsync=function(e,t){return Un(this.node,e,t)};const Gn=class extends Ds{specObj;passingOptionsNames=["specObj","parent"];constructor({specObj:e,...t}){super({...t}),this.specObj=e}retrievePassingOptions(){return Ks(this.passingOptionsNames,this)}retrieveFixedFields(e){const t=pe(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]}retrieveVisitor(e){return Xe(kt,["visitors",...e],this.specObj)?pe(["visitors",...e],this.specObj):pe(["visitors",...e,"$visitor"],this.specObj)}retrieveVisitorInstance(e,t={}){const s=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...s,...t})}toRefractedElement(e,t,s={}){const n=this.retrieveVisitorInstance(e,s);return n instanceof Rs&&n?.constructor===Rs?bs(t):(Vn(t,n,s),n.element)}};const Wn=class extends Gn{specPath;ignoredFields;constructor({specPath:e,ignoredFields:t,...s}){super({...s}),this.specPath=e,this.ignoredFields=t||[]}ObjectElement(e){const t=e.node,s=this.specPath(t),n=this.retrieveFixedFields(s);t.forEach((e,t,r)=>{const i=Ps(t);if(Zt(t)&&n.includes(i)&&!this.ignoredFields.includes(i)){const n=this.toRefractedElement([...s,"fixedFields",i],e),o=new z(bs(t),n);this.copyMetaAndAttributes(r,o),o.classes.push("fixed-field"),this.element.content.push(o)}else this.ignoredFields.includes(i)||this.element.content.push(bs(r))}),this.copyMetaAndAttributes(t,this.element),e.stop()}},Xn=(e,t,s=[])=>{const n=Object.getOwnPropertyDescriptors(t);for(let e of s)delete n[e];Object.defineProperties(e,n)},Yn=(e,t=[e])=>{const s=Object.getPrototypeOf(e);return null===s?t:Yn(s,[...t,s])},Kn=(e,t,s=[])=>{var n;const r=null!==(n=((...e)=>{if(0===e.length)return;let t;const s=e.map(e=>Yn(e));for(;s.every(e=>e.length>0);){const e=s.map(e=>e.pop()),n=e[0];if(!e.every(e=>e===n))break;t=n}return t})(...e))&&void 0!==n?n:Object.prototype,i=Object.create(r),o=Yn(r);for(let t of e){let e=Yn(t);for(let t=e.length-1;t>=0;t--){let n=e[t];-1===o.indexOf(n)&&(Xn(i,n,["constructor",...s]),o.push(n))}}return i.constructor=t,i},Qn=e=>e.filter((t,s)=>e.indexOf(t)==s),Zn=(e,t)=>{const s=t.map(e=>Yn(e));let n=0,r=!0;for(;r;){r=!1;for(let i=t.length-1;i>=0;i--){const t=s[i][n];if(null!=t&&(r=!0,null!=Object.getOwnPropertyDescriptor(t,e)))return s[i][0]}n++}},er=(e,t=Object.prototype)=>new Proxy({},{getPrototypeOf:()=>t,setPrototypeOf(){throw Error("Cannot set prototype of Proxies created by ts-mixer")},getOwnPropertyDescriptor:(t,s)=>Object.getOwnPropertyDescriptor(Zn(s,e)||{},s),defineProperty(){throw new Error("Cannot define new properties on Proxies created by ts-mixer")},has:(s,n)=>void 0!==Zn(n,e)||void 0!==t[n],get:(s,n)=>(Zn(n,e)||t)[n],set(t,s,n){const r=Zn(s,e);if(void 0===r)throw new Error("Cannot set new properties on Proxies created by ts-mixer");return r[s]=n,!0},deleteProperty(){throw new Error("Cannot delete properties on Proxies created by ts-mixer")},ownKeys:()=>e.map(Object.getOwnPropertyNames).reduce((e,t)=>t.concat(e.filter(e=>t.indexOf(e)<0)))}),tr=null,sr="copy",nr="copy",rr="deep",ir=new WeakMap,or=e=>ir.get(e),cr=(e,t)=>{var s,n;const r=Qn([...Object.getOwnPropertyNames(e),...Object.getOwnPropertyNames(t)]),i={};for(let o of r)i[o]=Qn([...null!==(s=null==e?void 0:e[o])&&void 0!==s?s:[],...null!==(n=null==t?void 0:t[o])&&void 0!==n?n:[]]);return i},ar=(e,t)=>{var s,n,r,i;return{property:cr(null!==(s=null==e?void 0:e.property)&&void 0!==s?s:{},null!==(n=null==t?void 0:t.property)&&void 0!==n?n:{}),method:cr(null!==(r=null==e?void 0:e.method)&&void 0!==r?r:{},null!==(i=null==t?void 0:t.method)&&void 0!==i?i:{})}},lr=(e,t)=>{var s,n,r,i,o,c;return{class:Qn([...null!==(s=null==e?void 0:e.class)&&void 0!==s?s:[],...null!==(n=null==t?void 0:t.class)&&void 0!==n?n:[]]),static:ar(null!==(r=null==e?void 0:e.static)&&void 0!==r?r:{},null!==(i=null==t?void 0:t.static)&&void 0!==i?i:{}),instance:ar(null!==(o=null==e?void 0:e.instance)&&void 0!==o?o:{},null!==(c=null==t?void 0:t.instance)&&void 0!==c?c:{})}},ur=new Map,pr=(...e)=>{const t=((...e)=>{var t;const s=new Set,n=new Set([...e]);for(;n.size>0;)for(let e of n){const r=[...Yn(e.prototype).map(e=>e.constructor),...null!==(t=or(e))&&void 0!==t?t:[]].filter(e=>!s.has(e));for(let e of r)n.add(e);s.add(e),n.delete(e)}return[...s]})(...e).map(e=>ur.get(e)).filter(e=>!!e);return 0==t.length?{}:1==t.length?t[0]:t.reduce((e,t)=>lr(e,t))},hr=e=>{let t=ur.get(e);return t||(t={},ur.set(e,t)),t};function dr(...e){var t,s,n;const r=e.map(e=>e.prototype),i=tr;if(null!==i){const e=r.map(e=>e[i]).filter(e=>"function"==typeof e),t=function(...t){for(let s of e)s.apply(this,t)},s={[i]:t};r.push(s)}function o(...t){for(const s of e)Xn(this,new s(...t));null!==i&&"function"==typeof this[i]&&this[i].apply(this,t)}var c,a;o.prototype="copy"===nr?Kn(r,o):(c=r,a=o,er([...c,{constructor:a}])),Object.setPrototypeOf(o,"copy"===sr?Kn(e,null,["prototype"]):er(e,Function.prototype));let l=o;if("none"!==rr){const r="deep"===rr?pr(...e):((...e)=>{const t=e.map(e=>hr(e));return 0===t.length?{}:1===t.length?t[0]:t.reduce((e,t)=>lr(e,t))})(...e);for(let e of null!==(t=null==r?void 0:r.class)&&void 0!==t?t:[]){const t=e(l);t&&(l=t)}mr(null!==(s=null==r?void 0:r.static)&&void 0!==s?s:{},l),mr(null!==(n=null==r?void 0:r.instance)&&void 0!==n?n:{},l.prototype)}var u,p;return u=l,p=e,ir.set(u,p),l}const mr=(e,t)=>{const s=e.property,n=e.method;if(s)for(let e in s)for(let n of s[e])n(t,e);if(n)for(let e in n)for(let s of n[e])s(t,e,Object.getOwnPropertyDescriptor(t,e))};const fr=function(){return!1};const yr=class extends Gn{specPath;ignoredFields;fieldPatternPredicate=fr;constructor({specPath:e,ignoredFields:t,fieldPatternPredicate:s,...n}){super({...n}),this.specPath=e,this.ignoredFields=t||[],"function"==typeof s&&(this.fieldPatternPredicate=s)}ObjectElement(e){const t=e.node;t.forEach((e,t,s)=>{const n=Ps(t);if(!this.ignoredFields.includes(n)&&this.fieldPatternPredicate(n)){const n=this.specPath(e),r=this.toRefractedElement(n,e),i=new z(bs(t),r);this.copyMetaAndAttributes(s,i),i.classes.push("patterned-field"),this.element.content.push(i)}else this.ignoredFields.includes(n)||this.element.content.push(bs(s))}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const gr=class extends yr{constructor(e){super(e),this.fieldPatternPredicate=Ys}};const xr=class{parent;constructor({parent:e}){this.parent=e}},br=dr(Wn,xr,Rs),vr=dr(Wn,Rs),Sr=dr(Wn,Rs),wr=dr(Wn,Rs),Er=dr(Gn,xr,Rs),Or=dr(Gn,xr,Rs),kr=dr(Gn,xr,Rs),Ar=dr(Gn,xr,Rs),jr=dr(Gn,xr,Rs),Fr=dr(gr,xr,Rs),Ir=dr(gr,xr,Rs),Pr=dr(gr,xr,Rs),Mr=dr(gr,xr,Rs);const Cr=class extends br{constructor(e){super(e),this.element=new Ht,this.specPath=Bs(["document","objects","JSONSchema"])}get defaultDialectIdentifier(){return"http://json-schema.org/draft-04/schema#"}ObjectElement(e){const t=e.node;return this.handleDialectIdentifier(t),this.handleSchemaIdentifier(t),this.parent=this.element,Wn.prototype.ObjectElement.call(this,e)}handleDialectIdentifier(e){if(qs(this.parent)&&!Zt(e.get("$schema")))this.element.meta.set("inheritedDialectIdentifier",this.defaultDialectIdentifier);else if(this.parent instanceof Ht&&!Zt(e.get("$schema"))){const e=Ls(Ps(this.parent.meta.get("inheritedDialectIdentifier")),Ps(this.parent.$schema));this.element.meta.set("inheritedDialectIdentifier",e)}}handleSchemaIdentifier(e,t="id"){const s=void 0!==this.parent?bs(this.parent.meta.get("ancestorsSchemaIdentifiers")??new Kt):new Kt,n=Ps(e.get(t));Ys(n)&&s.push(n),this.element.meta.set("ancestorsSchemaIdentifiers",s)}},Tr=e=>rs(e)&&e.hasKey("$ref");const Nr=class extends Ar{ObjectElement(e){const t=e.node,s=Tr(t)?["document","objects","JSONReference"]:["document","objects","JSONSchema"];this.element=this.toRefractedElement(s,t),e.stop()}ArrayElement(e){const t=e.node;this.element=new Kt,this.element.classes.push("json-schema-items"),t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const $r=class extends Rs{ArrayElement(e){super.enter(e),this.element.classes.push("json-schema-required")}};const Dr=class extends Mr{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-properties"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Rr=class extends Pr{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-patternProperties"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Br=class extends Ir{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-dependencies"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Lr=class extends Rs{ArrayElement(e){super.enter(e),this.element.classes.push("json-schema-enum")}};const Jr=class extends Rs{StringElement(e){super.enter(e),this.element.classes.push("json-schema-type")}ArrayElement(e){super.enter(e),this.element.classes.push("json-schema-type")}};const qr=class extends Er{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-allOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const _r=class extends Or{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-anyOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const zr=class extends kr{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-oneOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"],s=this.toRefractedElement(t,e);this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Hr=class extends Fr{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-definitions"),this.specPath=e=>Tr(e)?["document","objects","JSONReference"]:["document","objects","JSONSchema"]}};const Vr=class extends jr{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-links")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","LinkDescription"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Ur=class extends vr{constructor(e){super(e),this.element=new Vt,this.specPath=Bs(["document","objects","JSONReference"])}ObjectElement(e){Wn.prototype.ObjectElement.call(this,e),Zt(this.element.$ref)&&this.element.classes.push("reference-element")}};const Gr=class extends Rs{StringElement(e){super.enter(e),this.element.classes.push("reference-value")}};const Wr=function(){return!0};const Xr=ie(function(e,t,s){return it(Math.max(e.length,t.length,s.length),function(){return e.apply(this,arguments)?t.apply(this,arguments):s.apply(this,arguments)})});const Yr=i(function(e){return function(t,s){return e(t,s)?-1:e(s,t)?1:0}});var Kr=g(function(e,t){return Array.prototype.slice.call(t,0).sort(e)});const Qr=Kr;const Zr=i(function(e){return o(0,e)});function ei(e){return e&&e["@@transducer/reduced"]?e:{"@@transducer/value":e,"@@transducer/reduced":!0}}const ti=i(ei);const si=ft(ee);const ni=it(1,kt(Array.isArray)?Array.isArray:Pe(P,Ce("Array")));const ri=dt(ni,Us);function ii(e){return function(e){if(Array.isArray(e))return oi(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return oi(e,t);var s={}.toString.call(e).slice(8,-1);return"Object"===s&&e.constructor&&(s=e.constructor.name),"Map"===s||"Set"===s?Array.from(e):"Arguments"===s||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s)?oi(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oi(e,t){(null==t||t>e.length)&&(t=e.length);for(var s=0,n=Array(t);s<t;s++)n[s]=e[s];return n}var ci=Pe(Qr(Yr(function(e,t){return e.length>t.length})),Zr,ae("length")),ai=Ct(function(e,t,s){var n=s.apply(void 0,ii(e));return si(n)?ti(n):t});const li=Xr(ri,function(e){var t=ci(e);return it(t,function(){for(var t=arguments.length,s=new Array(t),n=0;n<t;n++)s[n]=arguments[n];return Ae(ai(s),void 0,e)})},Js);const ui=class extends Gn{alternator;constructor({alternator:e,...t}){super({...t}),this.alternator=e}enter(e){const t=e.node,s=this.alternator.map(({predicate:e,specPath:t})=>Xr(e,Bs(t),Js)),n=li(s)(t);this.element=this.toRefractedElement(n,t),e.stop()}};const pi=class extends ui{constructor(e){super(e),this.alternator=[{predicate:Tr,specPath:["document","objects","JSONReference"]},{predicate:Wr,specPath:["document","objects","JSONSchema"]}]}};const hi=class extends wr{constructor(e){super(e),this.element=new Ut,this.specPath=Bs(["document","objects","Media"])}};const di=class extends Sr{constructor(e){super(e),this.element=new Gt,this.specPath=Bs(["document","objects","LinkDescription"])}},mi={visitors:{value:Rs,JSONSchemaOrJSONReferenceVisitor:pi,document:{objects:{JSONSchema:{element:"jSONSchemaDraft4",$visitor:Cr,fixedFields:{id:{$visitor:Rs,alias:"idField"},$schema:{$ref:"#/visitors/value"},multipleOf:{$ref:"#/visitors/value"},maximum:{$ref:"#/visitors/value"},exclusiveMaximum:{$ref:"#/visitors/value"},minimum:{$ref:"#/visitors/value"},exclusiveMinimum:{$ref:"#/visitors/value"},maxLength:{$ref:"#/visitors/value"},minLength:{$ref:"#/visitors/value"},pattern:{$ref:"#/visitors/value"},additionalItems:pi,items:{$visitor:Nr,alias:"itemsField"},maxItems:{$ref:"#/visitors/value"},minItems:{$ref:"#/visitors/value"},uniqueItems:{$ref:"#/visitors/value"},maxProperties:{$ref:"#/visitors/value"},minProperties:{$ref:"#/visitors/value"},required:$r,properties:Dr,additionalProperties:pi,patternProperties:Rr,dependencies:Br,enum:Lr,type:Jr,allOf:qr,anyOf:_r,oneOf:zr,not:pi,definitions:Hr,title:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},default:{$ref:"#/visitors/value"},format:{$ref:"#/visitors/value"},base:{$ref:"#/visitors/value"},links:{$visitor:Vr,alias:"linksField"},media:{$ref:"#/visitors/document/objects/Media"},readOnly:{$ref:"#/visitors/value"}}},JSONReference:{element:"jSONReference",$visitor:Ur,fixedFields:{$ref:Gr}},Media:{element:"media",$visitor:hi,fixedFields:{binaryEncoding:{$ref:"#/visitors/value"},type:{$ref:"#/visitors/value"}}},LinkDescription:{element:"linkDescription",$visitor:di,fixedFields:{href:{$ref:"#/visitors/value"},rel:{$ref:"#/visitors/value"},title:{$ref:"#/visitors/value"},targetSchema:pi,mediaType:{$ref:"#/visitors/value"},method:{$ref:"#/visitors/value"},encType:{$ref:"#/visitors/value"},schema:pi}}}}}},fi=zt(mi),yi=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(Ht,"fixedFields",{get:()=>yi(fi.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(Vt,"fixedFields",{get:()=>yi(fi.visitors.document.objects.JSONReference.fixedFields),enumerable:!0}),Object.defineProperty(Ut,"fixedFields",{get:()=>yi(fi.visitors.document.objects.Media.fixedFields),enumerable:!0}),Object.defineProperty(Gt,"fixedFields",{get:()=>yi(fi.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const gi=class extends Ht{constructor(e,t,s){super(e,t,s),this.element="JSONSchemaDraft6"}get idField(){throw new h("id keyword from Core vocabulary has been renamed to $id.")}set idField(e){throw new h("id keyword from Core vocabulary has been renamed to $id.")}get $id(){return this.get("$id")}set $id(e){this.set("$id",e)}get exclusiveMaximum(){return this.get("exclusiveMaximum")}set exclusiveMaximum(e){this.set("exclusiveMaximum",e)}get exclusiveMinimum(){return this.get("exclusiveMinimum")}set exclusiveMinimum(e){this.set("exclusiveMinimum",e)}get containsField(){return this.get("contains")}set containsField(e){this.set("contains",e)}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get propertyNames(){return this.get("propertyNames")}set propertyNames(e){this.set("propertyNames",e)}get const(){return this.get("const")}set const(e){this.set("const",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get examples(){return this.get("examples")}set examples(e){this.set("examples",e)}};const xi=class extends Gt{get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get schema(){throw new h("schema keyword from Hyper-Schema vocabulary has been renamed to submissionSchema.")}set schema(e){throw new h("schema keyword from Hyper-Schema vocabulary has been renamed to submissionSchema.")}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}get method(){throw new h("method keyword from Hyper-Schema vocabulary has been removed.")}set method(e){throw new h("method keyword from Hyper-Schema vocabulary has been removed.")}get encType(){throw new h("encType keyword from Hyper-Schema vocabulary has been renamed to submissionEncType.")}set encType(e){throw new h("encType keyword from Hyper-Schema vocabulary has been renamed to submissionEncType.")}get submissionEncType(){return this.get("submissionEncType")}set submissionEncType(e){this.set("submissionEncType",e)}};var bi=ie(function e(t,s,n){if(0===t.length)return s;var r=t[0];if(t.length>1){var i=ce(r,n);(ee(i)||"object"!=typeof i)&&(i=oe(t[1])?[]:{}),s=e(Array.prototype.slice.call(t,1),s,i)}return function(e,t,s){if(oe(e)&&me(s)){var n=e<0?s.length+e:e,r=[].concat(s);return r[n]=t,r}var i={};for(var o in s)i[o]=s[o];return i[e]=t,i}(r,s,n)});const vi=bi;const Si=ie(function(e,t,s){var n=Array.prototype.slice.call(s,0);return n.splice(e,t),n});var wi=ie(function(e,t,s){return vi([e],t,s)});const Ei=wi;var Oi=g(function e(t,s){if(null==s)return s;switch(t.length){case 0:return s;case 1:return function(e,t){if(null==t)return t;if(oe(e)&&me(t))return Si(e,1,t);var s={};for(var n in t)s[n]=t[n];return delete s[e],s}(t[0],s);default:var n=t[0],r=Array.prototype.slice.call(t,1);return null==s[n]?function(e,t){if(oe(e)&&me(t))return[].concat(t);var s={};for(var n in t)s[n]=t[n];return s}(n,s):Ei(n,e(r,s[n]),s)}});const ki=Oi;const Ai=class extends Cr{constructor(e){super(e),this.element=new gi}get defaultDialectIdentifier(){return"http://json-schema.org/draft-06/schema#"}BooleanElement(e){this.enter(e),this.element.classes.push("boolean-json-schema")}handleSchemaIdentifier(e,t="$id"){return super.handleSchemaIdentifier(e,t)}};const ji=class extends Nr{BooleanElement(e){this.element=this.toRefractedElement(["document","objects","JSONSchema"],e.node),e.stop()}};const Fi=class extends Rs{ArrayElement(e){this.enter(e),this.element.classes.push("json-schema-examples")}};const Ii=class extends di{constructor(e){super(e),this.element=new xi}},Pi=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchemaDraft6"),vi(["visitors","document","objects","JSONSchema","$visitor"],Ai),ki(["visitors","document","objects","JSONSchema","fixedFields","id"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$id"],{$ref:"#/visitors/value"}),vi(["visitors","document","objects","JSONSchema","fixedFields","contains"],{$visitor:mi.visitors.JSONSchemaOrJSONReferenceVisitor,alias:"containsField"}),vi(["visitors","document","objects","JSONSchema","fixedFields","items"],{$visitor:ji,alias:"itemsField"}),vi(["visitors","document","objects","JSONSchema","fixedFields","propertyNames"],mi.visitors.JSONSchemaOrJSONReferenceVisitor),vi(["visitors","document","objects","JSONSchema","fixedFields","const"],{$ref:"#/visitors/value"}),vi(["visitors","document","objects","JSONSchema","fixedFields","examples"],Fi),vi(["visitors","document","objects","LinkDescription","$visitor"],Ii),vi(["visitors","document","objects","LinkDescription","fixedFields","hrefSchema"],mi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","LinkDescription","fixedFields","schema"]),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionSchema"],mi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","LinkDescription","fixedFields","method"]),ki(["visitors","document","objects","LinkDescription","fixedFields","encType"]),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionEncType"],{$ref:"#/visitors/value"}))(mi),Mi=zt(Pi),Ci=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(gi,"fixedFields",{get:()=>Ci(Mi.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(xi,"fixedFields",{get:()=>Ci(Mi.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const Ti=class extends gi{constructor(e,t,s){super(e,t,s),this.element="JSONSchemaDraft7"}get $comment(){return this.get("$comment")}set $comment(e){this.set("$comment",e)}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get if(){return this.get("if")}set if(e){this.set("if",e)}get then(){return this.get("then")}set then(e){this.set("then",e)}get else(){return this.get("else")}set else(e){this.set("else",e)}get not(){return this.get("not")}set not(e){this.set("not",e)}get contentEncoding(){return this.get("contentEncoding")}set contentEncoding(e){this.set("contentEncoding",e)}get contentMediaType(){return this.get("contentMediaType")}set contentMediaType(e){this.set("contentMediaType",e)}get media(){throw new h('media keyword from Hyper-Schema vocabulary has been moved to validation vocabulary as "contentMediaType" / "contentEncoding"')}set media(e){throw new h('media keyword from Hyper-Schema vocabulary has been moved to validation vocabulary as "contentMediaType" / "contentEncoding"')}get writeOnly(){return this.get("writeOnly")}set writeOnly(e){this.set("writeOnly",e)}};const Ni=class extends xi{get anchor(){return this.get("anchor")}set anchor(e){this.set("anchor",e)}get anchorPointer(){return this.get("anchorPointer")}set anchorPointer(e){this.set("anchorPointer",e)}get templatePointers(){return this.get("templatePointers")}set templatePointers(e){this.set("templatePointers",e)}get templateRequired(){return this.get("templateRequired")}set templateRequired(e){this.set("templateRequired",e)}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get mediaType(){throw new h("mediaType keyword from Hyper-Schema vocabulary has been renamed to targetMediaType.")}set mediaType(e){throw new h("mediaType keyword from Hyper-Schema vocabulary has been renamed to targetMediaType.")}get targetMediaType(){return this.get("targetMediaType")}set targetMediaType(e){this.set("targetMediaType",e)}get targetHints(){return this.get("targetHints")}set targetHints(e){this.set("targetHints",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get $comment(){return this.get("$comment")}set $comment(e){this.set("$comment",e)}get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get headerSchema(){return this.get("headerSchema")}set headerSchema(e){this.set("headerSchema",e)}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}get submissionEncType(){throw new h("submissionEncType keyword from Hyper-Schema vocabulary has been renamed to submissionMediaType.")}set submissionEncType(e){throw new h("submissionEncType keyword from Hyper-Schema vocabulary has been renamed to submissionMediaType.")}get submissionMediaType(){return this.get("submissionMediaType")}set submissionMediaType(e){this.set("submissionMediaType",e)}};const $i=class extends Ai{constructor(e){super(e),this.element=new Ti}get defaultDialectIdentifier(){return"http://json-schema.org/draft-07/schema#"}};const Di=class extends Ii{constructor(e){super(e),this.element=new Ni}},Ri=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchemaDraft7"),vi(["visitors","document","objects","JSONSchema","$visitor"],$i),vi(["visitors","document","objects","JSONSchema","fixedFields","$comment"],Pi.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","if"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),vi(["visitors","document","objects","JSONSchema","fixedFields","then"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),vi(["visitors","document","objects","JSONSchema","fixedFields","else"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","JSONSchema","fixedFields","media"]),vi(["visitors","document","objects","JSONSchema","fixedFields","contentEncoding"],Pi.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","contentMediaType"],Pi.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","writeOnly"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","$visitor"],Di),vi(["visitors","document","objects","LinkDescription","fixedFields","anchor"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","anchorPointer"],Pi.visitors.value),ki(["visitors","document","objects","LinkDescription","fixedFields","mediaType"]),vi(["visitors","document","objects","LinkDescription","fixedFields","targetMediaType"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","targetHints"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","description"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","$comment"],Pi.visitors.value),vi(["visitors","document","objects","LinkDescription","fixedFields","headerSchema"],Pi.visitors.JSONSchemaOrJSONReferenceVisitor),ki(["visitors","document","objects","LinkDescription","fixedFields","submissionEncType"]),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionMediaType"],Pi.visitors.value))(Pi),Bi=zt(Ri),Li=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(Ti,"fixedFields",{get:()=>Li(Bi.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(Ni,"fixedFields",{get:()=>Li(Bi.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const Ji=class extends Ti{constructor(e,t,s){super(e,t,s),this.element="JSONSchema201909"}get $vocabulary(){return this.get("$vocabulary")}set $vocabulary(e){this.set("$vocabulary",e)}get $anchor(){return this.get("$anchor")}set $anchor(e){this.set("$anchor",e)}get $recursiveAnchor(){return this.get("$recursiveAnchor")}set $recursiveAnchor(e){this.set("$recursiveAnchor",e)}get $recursiveRef(){return this.get("$recursiveRef")}set $recursiveRef(e){this.set("$recursiveRef",e)}get $ref(){return this.get("$ref")}set $ref(e){this.set("$ref",e)}get $defs(){return this.get("$defs")}set $defs(e){this.set("$defs",e)}get definitions(){throw new h("definitions keyword from Validation vocabulary has been renamed to $defs.")}set definitions(e){throw new h("definitions keyword from Validation vocabulary has been renamed to $defs.")}get not(){return this.get("not")}set not(e){this.set("not",e)}get if(){return this.get("if")}set if(e){this.set("if",e)}get then(){return this.get("then")}set then(e){this.set("then",e)}get else(){return this.get("else")}set else(e){this.set("else",e)}get dependentSchemas(){return this.get("dependentSchemas")}set dependentSchemas(e){this.set("dependentSchemas",e)}get dependencies(){throw new h("dependencies keyword from Validation vocabulary has been renamed to dependentSchemas.")}set dependencies(e){throw new h("dependencies keyword from Validation vocabulary has been renamed to dependentSchemas.")}get itemsField(){return this.get("items")}set itemsField(e){this.set("items",e)}get contains(){return this.get("contains")}set contains(e){this.set("contains",e)}get additionalProperties(){return this.get("additionalProperties")}set additionalProperties(e){this.set("additionalProperties",e)}get additionalItems(){return this.get("additionalItems")}set additionalItems(e){this.set("additionalItems",e)}get propertyNames(){return this.get("propertyNames")}set propertyNames(e){this.set("propertyNames",e)}get unevaluatedItems(){return this.get("unevaluatedItems")}set unevaluatedItems(e){this.set("unevaluatedItems",e)}get unevaluatedProperties(){return this.get("unevaluatedProperties")}set unevaluatedProperties(e){this.set("unevaluatedProperties",e)}get maxContains(){return this.get("maxContains")}set maxContains(e){this.set("maxContains",e)}get minContains(){return this.get("minContains")}set minContains(e){this.set("minContains",e)}get dependentRequired(){return this.get("dependentRequired")}set dependentRequired(e){this.set("dependentRequired",e)}get deprecated(){return this.get("deprecated")}set deprecated(e){this.set("deprecated",e)}get contentSchema(){return this.get("contentSchema")}set contentSchema(e){this.set("contentSchema",e)}};const qi=class extends Ni{constructor(e,t,s){super(e,t,s),this.element="linkDescription"}get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get headerSchema(){return this.get("headerSchema")}set headerSchema(e){this.set("headerSchema",e)}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}};const _i=class extends $i{constructor(e){super(e),this.element=new Ji}get defaultDialectIdentifier(){return"https://json-schema.org/draft/2019-09/schema"}ObjectElement(e){const t=e.node;this.handleDialectIdentifier(t),this.handleSchemaIdentifier(t),this.parent=this.element,Wn.prototype.ObjectElement.call(this,e),Zt(this.element.$ref)&&(this.element.classes.push("reference-element"),this.element.meta.set("referenced-element","schema"))}};const zi=class extends Rs{ObjectElement(e){this.enter(e),this.element.classes.push("json-schema-$vocabulary")}};const Hi=class extends Rs{StringElement(e){this.enter(e),this.element.classes.push("reference-value")}},Vi=dr(Gn,xr,Rs),Ui=dr(gr,xr,Rs);const Gi=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-$defs"),this.specPath=Bs(["document","objects","JSONSchema"])}};const Wi=class extends Vi{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-allOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Xi=class extends Vi{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-anyOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Yi=class extends Vi{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-oneOf")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Ki=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-dependentSchemas"),this.specPath=Bs(["document","objects","JSONSchema"])}};const Qi=class extends Vi{ObjectElement(e){this.element=this.toRefractedElement(["document","objects","JSONSchema"],e.node),e.stop()}ArrayElement(e){const t=e.node;this.element=new Kt,this.element.classes.push("json-schema-items"),t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}BooleanElement(e){this.element=this.toRefractedElement(["document","objects","JSONSchema"],e.node),e.stop()}};const Zi=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-properties"),this.specPath=Bs(["document","objects","JSONSchema"])}};const eo=class extends Ui{constructor(e){super(e),this.element=new H,this.element.classes.push("json-schema-patternProperties"),this.specPath=Bs(["document","objects","JSONSchema"])}};const to=class extends Rs{ObjectElement(e){this.enter(e),this.element.classes.push("json-schema-dependentRequired")}};const so=class extends Di{constructor(e){super(e),this.element=new qi}},no=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchema201909"),vi(["visitors","document","objects","JSONSchema","$visitor"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","$vocabulary"],zi),vi(["visitors","document","objects","JSONSchema","fixedFields","$anchor"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","$recursiveAnchor"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","$recursiveRef"],Ri.visitors.value),ki(["visitors","document","objects","JSONReference","$visitor"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$ref"],Hi),ki(["visitors","document","objects","JSONSchema","fixedFields","definitions"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$defs"],Gi),vi(["visitors","document","objects","JSONSchema","fixedFields","allOf"],Wi),vi(["visitors","document","objects","JSONSchema","fixedFields","anyOf"],Xi),vi(["visitors","document","objects","JSONSchema","fixedFields","oneOf"],Yi),vi(["visitors","document","objects","JSONSchema","fixedFields","not"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","if"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","then"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","else"],_i),ki(["visitors","document","objects","JSONSchema","fixedFields","dependencies"]),vi(["visitors","document","objects","JSONSchema","fixedFields","dependentSchemas"],Ki),vi(["visitors","document","objects","JSONSchema","fixedFields","items"],{$visitor:Qi,alias:"itemsField"}),vi(["visitors","document","objects","JSONSchema","fixedFields","contains"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","properties"],Zi),vi(["visitors","document","objects","JSONSchema","fixedFields","patternProperties"],eo),vi(["visitors","document","objects","JSONSchema","fixedFields","additionalProperties"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","additionalItems"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","propertyNames"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedItems"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedProperties"],_i),vi(["visitors","document","objects","JSONSchema","fixedFields","maxContains"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","minContains"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","dependentRequired"],to),vi(["visitors","document","objects","JSONSchema","fixedFields","deprecated"],Ri.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","contentSchema"],_i),vi(["visitors","document","objects","LinkDescription","element"],"linkDescription"),vi(["visitors","document","objects","LinkDescription","$visitor"],so),vi(["visitors","document","objects","LinkDescription","fixedFields","targetSchema"],_i),vi(["visitors","document","objects","LinkDescription","fixedFields","hrefSchema"],_i),vi(["visitors","document","objects","LinkDescription","fixedFields","headerSchema"],_i),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionSchema"],_i))(Ri),ro=zt(no),io=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(Ji,"fixedFields",{get:()=>io(ro.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(qi,"fixedFields",{get:()=>io(ro.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const oo=class extends Ji{constructor(e,t,s){super(e,t,s),this.element="JSONSchema202012"}get $dynamicAnchor(){return this.get("$dynamicAnchor")}set $dynamicAnchor(e){this.set("$dynamicAnchor",e)}get $recursiveAnchor(){throw new h("$recursiveAnchor keyword from Core vocabulary has been renamed to $dynamicAnchor.")}set $recursiveAnchor(e){throw new h("$recursiveAnchor keyword from Core vocabulary has been renamed to $dynamicAnchor.")}get $dynamicRef(){return this.get("$dynamicRef")}set $dynamicRef(e){this.set("$dynamicRef",e)}get $recursiveRef(){throw new h("$recursiveRef keyword from Core vocabulary has been renamed to $dynamicRef.")}set $recursiveRef(e){throw new h("$recursiveRef keyword from Core vocabulary has been renamed to $dynamicRef.")}get prefixItems(){return this.get("prefixItems")}set prefixItems(e){this.set("prefixItems",e)}};const co=class extends qi{get targetSchema(){return this.get("targetSchema")}set targetSchema(e){this.set("targetSchema",e)}get hrefSchema(){return this.get("hrefSchema")}set hrefSchema(e){this.set("hrefSchema",e)}get headerSchema(){return this.get("headerSchema")}set headerSchema(e){this.set("headerSchema",e)}get submissionSchema(){return this.get("submissionSchema")}set submissionSchema(e){this.set("submissionSchema",e)}};const ao=class extends _i{constructor(e){super(e),this.element=new oo}get defaultDialectIdentifier(){return"https://json-schema.org/draft/2020-12/schema"}};const lo=class extends Vi{constructor(e){super(e),this.element=new Kt,this.element.classes.push("json-schema-prefixItems")}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","JSONSchema"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const uo=class extends so{constructor(e){super(e),this.element=new co}},po=Pe(vi(["visitors","document","objects","JSONSchema","element"],"jSONSchema202012"),vi(["visitors","document","objects","JSONSchema","$visitor"],ao),ki(["visitors","document","objects","JSONSchema","fixedFields","$recursiveAnchor"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$dynamicAnchor"],no.visitors.value),ki(["visitors","document","objects","JSONSchema","fixedFields","$recursiveRef"]),vi(["visitors","document","objects","JSONSchema","fixedFields","$dynamicRef"],no.visitors.value),vi(["visitors","document","objects","JSONSchema","fixedFields","not"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","if"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","then"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","else"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","prefixItems"],lo),vi(["visitors","document","objects","JSONSchema","fixedFields","items"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","contains"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","additionalProperties"],ao),ki(["visitors","document","objects","JSONSchema","fixedFields","additionalItems"]),vi(["visitors","document","objects","JSONSchema","fixedFields","propertyNames"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedItems"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","unevaluatedProperties"],ao),vi(["visitors","document","objects","JSONSchema","fixedFields","contentSchema"],ao),vi(["visitors","document","objects","LinkDescription","element"],"linkDescription"),vi(["visitors","document","objects","LinkDescription","$visitor"],uo),vi(["visitors","document","objects","LinkDescription","fixedFields","targetSchema"],ao),vi(["visitors","document","objects","LinkDescription","fixedFields","hrefSchema"],ao),vi(["visitors","document","objects","LinkDescription","fixedFields","headerSchema"],ao),vi(["visitors","document","objects","LinkDescription","fixedFields","submissionSchema"],ao))(no),ho=zt(po),mo=e=>Object.entries(e).map(([e,t])=>It(t)?{name:e,...t}:{name:e,$visitor:t});Object.defineProperty(oo,"fixedFields",{get:()=>mo(ho.visitors.document.objects.JSONSchema.fixedFields),enumerable:!0}),Object.defineProperty(co,"fixedFields",{get:()=>mo(ho.visitors.document.objects.LinkDescription.fixedFields),enumerable:!0});const fo=class extends oo{constructor(e,t,s){super(e,t,s),this.element="jSONSchema"}};const yo=class extends H{constructor(e,t,s){super(e,t,s),this.element="parameter"}get name(){return this.get("name")}set name(e){this.set("name",e)}get in(){return this.get("in")}set in(e){this.set("in",e)}get value(){return this.get("value")}set value(e){this.set("value",e)}};const go=class extends H{constructor(e,t,s){super(e,t,s),this.element="payloadReplacement"}get target(){return this.get("target")}set target(e){this.set("target",e)}get value(){return this.get("value")}set value(e){this.set("value",e)}};const xo=class extends H{constructor(e,t,s){super(e,t,s),this.element="requestBody"}get contentType(){return this.get("contentType")}set contentType(e){this.set("contentType",e)}get payload(){return this.get("payload")}set payload(e){this.set("payload",e)}get replacements(){return this.get("replacements")}set replacements(e){this.set("replacements",e)}};const bo=class extends H{constructor(e,t,s){super(e,t,s),this.element="reusable",this.classes.push("arazzo-reference")}get reference(){return this.get("reference")}set reference(e){this.set("reference",e)}get value(){return this.get("value")}set value(e){this.set("value",e)}};const vo=class extends H{constructor(e,t,s){super(e,t,s),this.element="sourceDescription"}get name(){return this.get("name")}set name(e){this.set("name",e)}get url(){return this.get("url")}set url(e){this.set("url",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}};const So=class extends H{constructor(e,t,s){super(e,t,s),this.element="step"}get description(){return this.get("description")}set description(e){this.set("description",e)}get stepId(){return this.get("stepId")}set stepId(e){this.set("stepId",e)}get operationId(){return this.get("operationId")}set operationId(e){this.set("operationId",e)}get operationPath(){return this.get("operationPath")}set operationPath(e){this.set("operationPath",e)}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}get requestBody(){return this.get("requestBody")}set requestBody(e){this.set("requestBody",e)}get successCriteria(){return this.get("successCriteria")}set successCriteria(e){this.set("successCriteria",e)}get onSuccess(){return this.get("onSuccess")}set onSuccess(e){this.set("onSuccess",e)}get onFailure(){return this.get("onFailure")}set onFailure(e){this.set("onFailure",e)}get outputs(){return this.get("outputs")}set outputs(e){this.set("outputs",e)}};const wo=class extends H{constructor(e,t,s){super(e,t,s),this.element="successAction"}get name(){return this.get("name")}set name(e){this.set("name",e)}get type(){return this.get("type")}set type(e){this.set("type",e)}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get stepId(){return this.get("stepId")}set stepId(e){this.set("stepId",e)}get criteria(){return this.get("criteria")}set criteria(e){this.set("criteria",e)}};const Eo=class extends H{constructor(e,t,s){super(e,t,s),this.element="workflow"}get workflowId(){return this.get("workflowId")}set workflowId(e){this.set("workflowId",e)}get summary(){return this.get("summary")}set summary(e){this.set("summary",e)}get description(){return this.get("description")}set description(e){this.set("description",e)}get inputs(){return this.get("inputs")}set inputs(e){this.set("inputs",e)}get dependsOn(){return this.get("dependsOn")}set dependsOn(e){this.set("dependsOn",e)}get steps(){return this.get("steps")}set steps(e){this.set("steps",e)}get successActions(){return this.get("successActions")}set successActions(e){this.set("successActions",e)}get failureActions(){return this.get("failureActions")}set failureActions(e){this.set("failureActions",e)}get outputs(){return this.get("outputs")}set outputs(e){this.set("outputs",e)}get parameters(){return this.get("parameters")}set parameters(e){this.set("parameters",e)}},Oo={namespace:e=>{const{base:t}=e;return t.register("arazzo",J),t.register("arazzoSpecification1",V),t.register("components",U),t.register("criterion",G),t.register("criterionExpressionType",W),t.register("failureAction",X),t.register("info",Y),t.register("parameter",yo),t.register("payloadReplacement",go),t.register("requestBody",xo),t.register("reusable",bo),t.register("sourceDescription",vo),t.register("step",So),t.register("successAction",wo),t.register("workflow",Eo),t.register("jSONSchema",fo),t}},ko={ArazzoSpecification1Element:{info:(e,t,s)=>new Y(e,t,s)}},Ao=(e,t)=>{const s=Nn(e),n=ko[s]||ko[Ps(e.classes.first)];if(void 0!==n)return Object.hasOwn(n,"[key: *]")?n["[key: *]"]:n[t]},jo=()=>()=>({visitor:{StringElement(e){const t=e.node;if(!(e=>Zt(e)&&cs(e,["yaml-e-node","yaml-e-scalar"]))(t))return;const s=e.getAncestorNodes().filter(Qt),n=s.at(0);let r,i;if(ns(n)?(i=t,r=Ao(n,"<*>")):is(n)&&(i=s.at(1),r=Ao(i,Ps(n.key))),"function"!=typeof r)return;const o=r(void 0,bs(t.meta),bs(t.attributes));hs.transfer(t,o),e.replaceWith(o)}}});var Fo=ie(function(e,t,s){var n,r={};for(n in s=s||{},t=t||{})v(n,t)&&(r[n]=v(n,s)?e(n,t[n],s[n]):t[n]);for(n in s)v(n,s)&&!v(n,r)&&(r[n]=s[n]);return r});const Io=Fo;var Po=ie(function e(t,s,n){return Io(function(s,n,r){return Le(n)&&Le(r)?e(t,n,r):t(s,n,r)},s,n)});const Mo=Po;const Co=g(function(e,t){return Mo(function(e,t,s){return s},e,t)});const To=ie(function(e,t,s){return Ls(e,ae(t,s))});const No=Fe(0,-1);var $o=g(function(e,t){return e.apply(this,t)});const Do=$o;const Ro=ft(kt);const Bo=dt(ni,Vs);const Lo=it(3,function(e,t,s){var n=pe(e,s),r=pe(No(e),s);if(!Ro(n)&&!Bo(e)){var i=Se(n,r);return Do(i,t)}});const Jo=class{namespace;constructor(e){this.namespace=e||new this.Namespace}serialise(e){if(!(e instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${e}\` is not an Element instance`);const t={element:e.element};if(e.isMetaEmpty||(t.meta=this.serialiseObject(e.meta)),e.isAttributesEmpty||(t.attributes=this.serialiseObject(e.attributes)),!(e instanceof hs)){const s=hs.from(e);s&&(t.meta||(t.meta={}),t.meta.__mappings__=this.serialise(s))}const s=this.serialiseContent(e.content);return void 0!==s&&(t.content=s),t}deserialise(e){if(!e.element)throw new Error("Given value is not an object containing an element name");const t=new(this.namespace.getElementClass(e.element));let s;t.element!==e.element&&(t.element=e.element);let n=e.meta;if(e.meta?.__mappings__){const{__mappings__:t,...r}=e.meta;s=t,n=Object.keys(r).length>0?r:void 0}if(n&&this.deserialiseObject(n,t.meta),s){this.deserialise(s).applyTo(t)}e.attributes&&this.deserialiseObject(e.attributes,t.attributes);const r=this.deserialiseContent(e.content);return void 0===r&&null!==t.content||(t.content=r),t}serialiseContent(e){if(e instanceof this.namespace.elements.Element)return this.serialise(e);if(e instanceof this.namespace.KeyValuePair){const t=e,s={key:this.serialise(t.key)};return t.value&&(s.value=this.serialise(t.value)),s}if(e&&Array.isArray(e)){if(0===e.length)return;return e.map(e=>this.serialise(e))}return e}deserialiseContent(e){if(e){if(e.element)return this.deserialise(e);if(e.key){const t=new this.namespace.KeyValuePair(this.deserialise(e.key));return e.value&&(t.value=this.deserialise(e.value)),t}if(Array.isArray(e))return e.map(e=>this.deserialise(e))}return e}serialiseObject(e){const t={};if(e.forEach((e,s)=>{e&&(t[s.toValue()]=this.serialise(e))}),0!==Object.keys(t).length)return t}deserialiseObject(e,t){Object.keys(e).forEach(s=>{t.set(s,this.deserialise(e[s]))})}},qo=e=>null===e,_o=e=>"string"==typeof e,zo=e=>"number"==typeof e,Ho=e=>"boolean"==typeof e,Vo=e=>null!==e&&"object"==typeof e;class Uo{elementMap={};elementDetection=[];Element;KeyValuePair;_elements;_attributeElementKeys=[];_attributeElementArrayKeys=[];constructor(e){this.Element=B,this.KeyValuePair=N,e&&e.noDefault||this.useDefault()}use(e){return e.namespace&&e.namespace({base:this}),e.load&&e.load({base:this}),this}useDefault(){return this.register("null",Xt).register("string",L).register("number",Wt).register("boolean",Yt).register("array",Kt).register("object",H).register("member",z).register("ref",Os).register("link",Es).register("sourceMap",hs),this.detect(qo,Xt,!1).detect(_o,L,!1).detect(zo,Wt,!1).detect(Ho,Yt,!1).detect(Array.isArray,Kt,!1).detect(Vo,H,!1),this}register(e,t){return this._elements=void 0,this.elementMap[e]=t,this}unregister(e){return this._elements=void 0,delete this.elementMap[e],this}detect(e,t,s){return void 0===s||s?this.elementDetection.unshift([e,t]):this.elementDetection.push([e,t]),this}toElement(e){if(e instanceof this.Element)return e;let t;for(const[s,n]of this.elementDetection)if(s(e)){t=new n(e);break}return t}getElementClass(e){const t=this.elementMap[e];return void 0===t?this.Element:t}fromRefract(e){return this.serialiser.deserialise(e)}toRefract(e){return this.serialiser.serialise(e)}get elements(){return void 0===this._elements&&(this._elements={Element:this.Element},Object.keys(this.elementMap).forEach(e=>{const t=e[0].toUpperCase()+e.substring(1);this._elements[t]=this.elementMap[e]})),this._elements}get serialiser(){return new Jo(this)}}Jo.prototype.Namespace=Uo;const Go=Uo,Wo=new Go,Xo={isElement:Qt,isStringElement:Zt,isNumberElement:es,isNullElement:ts,isBooleanElement:ss,isArrayElement:ns,isObjectElement:rs,isMemberElement:is,isPrimitiveElement:e=>rs(e)&&"object"===e.element||ns(e)&&"array"===e.element||ss(e)&&"boolean"===e.element||es(e)&&"number"===e.element||Zt(e)&&"string"===e.element||ts(e)&&"null"===e.element||is(e)&&"member"===e.element,isLinkElement:Fs,isRefElement:Is,isAnnotationElement:e=>e instanceof ks,isCommentElement:e=>e instanceof As,isParseResultElement:e=>e instanceof js,isSourceMapElement:e=>e instanceof hs,hasElementSourceMap:os,includesSymbols:(e,t)=>{if(0===t.length)return!0;if(!e.hasAttributesProperty("symbols"))return!1;const s=e.attributes.get("symbols");return!!ns(s)&&t.every(e=>s.includes(e))},includesClasses:cs},Yo={toolboxCreator:()=>({predicates:Xo,namespace:Wo}),visitorOptions:{exposeEdits:!0}},Ko=(e,t,s={})=>{if(0===t.length)return e;const n=Co(Yo,s),{toolboxCreator:r,visitorOptions:i}=n,o=r(),c=t.map(e=>e(o)),a=qn(c.map(To({},"visitor")),i);c.forEach(Lo(["pre"],[]));const l=Vn(e,a);return c.forEach(Lo(["post"],[])),l};function Qo(e){return void 0===e?new Xt:Zo(e)}function Zo(e){if(e instanceof B)return e;if("string"==typeof e)return new L(e);if("number"==typeof e)return new Wt(e);if("boolean"==typeof e)return new Yt(e);if(null===e)return new Xt;if(Array.isArray(e))return new Kt(e.map(Qo));if("object"==typeof e)return new H(e);throw new Error("Cannot refract value of type "+typeof e)}Ko[Symbol.for("nodejs.util.promisify.custom")]=async(e,t,s={})=>{if(0===t.length)return e;const n=Co(Yo,s),{toolboxCreator:r,visitorOptions:i}=n,o=r(),c=t.map(e=>e(o)),a=_n(c.map(To({},"visitor")),i);await Promise.allSettled(c.map(Lo(["pre"],[])));const l=await Un(e,a);return await Promise.allSettled(c.map(Lo(["post"],[]))),l},B.prototype.ObjectElement=H,B.prototype.ArrayElement=Kt,B.prototype.RefElement=Os,B.prototype.MemberElement=z,B.prototype.refract=Zo;const ec=class{element;constructor(e={}){Object.assign(this,e)}copyMetaAndAttributes(e,t){if(!e.isMetaEmpty||!t.isMetaEmpty){const s=t.isMetaEmpty?new H:t.meta,n=e.isMetaEmpty?new H:e.meta;t.meta=$s(s,n)}if(!e.isAttributesEmpty||!t.isAttributesEmpty){const s=t.isAttributesEmpty?new H:t.attributes,n=e.isAttributesEmpty?new H:e.attributes;t.attributes=$s(s,n)}hs.transfer(e,t)}};const tc=class extends ec{enter(e){this.element=bs(e.node),e.stop()}};const sc=class extends ec{specObj;passingOptionsNames=["specObj"];constructor({specObj:e,...t}){super({...t}),this.specObj=e}retrievePassingOptions(){return Ks(this.passingOptionsNames,this)}retrieveFixedFields(e){const t=pe(["visitors",...e,"fixedFields"],this.specObj);return"object"==typeof t&&null!==t?Object.keys(t):[]}retrieveVisitor(e){return Xe(kt,["visitors",...e],this.specObj)?pe(["visitors",...e],this.specObj):pe(["visitors",...e,"$visitor"],this.specObj)}retrieveVisitorInstance(e,t={}){const s=this.retrievePassingOptions();return new(this.retrieveVisitor(e))({...s,...t})}toRefractedElement(e,t,s={}){const n=this.retrieveVisitorInstance(e,s);return n instanceof tc&&n?.constructor===tc?bs(t):(Vn(t,n,s),n.element)}};var nc=function(){function e(e,t){this.xf=t,this.n=e,this.i=0}return e.prototype["@@transducer/init"]=Je,e.prototype["@@transducer/result"]=qe,e.prototype["@@transducer/step"]=function(e,t){this.i+=1;var s=0===this.n?e:this.xf["@@transducer/step"](e,t);return this.n>=0&&this.i>=this.n?ei(s):s},e}();function rc(e){return function(t){return new nc(e,t)}}const ic=g(Be(["take"],rc,function(e,t){return Fe(0,e<0?1/0:e,t)}));const oc=g(function(e,t){return T(ic(e.length,t),e)}),cc=e=>Zt(e.key)&&oc("x-",Ps(e.key)),ac=e=>rs(e)&&e.hasKey("reference");const lc=class extends sc{specPath;ignoredFields;canSupportSpecificationExtensions=!0;specificationExtensionPredicate=cc;constructor({specPath:e,ignoredFields:t,canSupportSpecificationExtensions:s,specificationExtensionPredicate:n,...r}){super({...r}),this.specPath=e,this.ignoredFields=t||[],"boolean"==typeof s&&(this.canSupportSpecificationExtensions=s),"function"==typeof n&&(this.specificationExtensionPredicate=n)}ObjectElement(e){const t=e.node,s=this.specPath(t),n=this.retrieveFixedFields(s);t.forEach((e,t,r)=>{if(Zt(t)&&n.includes(Ps(t))&&!this.ignoredFields.includes(Ps(t))){const n=this.toRefractedElement([...s,"fixedFields",Ps(t)],e),i=new z(bs(t),n);this.copyMetaAndAttributes(r,i),i.classes.push("fixed-field"),this.element.push(i)}else if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(r)){const e=this.toRefractedElement(["document","extension"],r);this.element.push(e)}else this.ignoredFields.includes(Ps(t))||this.element.push(bs(r))}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const uc=class extends sc{specPath;ignoredFields;fieldPatternPredicate=fr;canSupportSpecificationExtensions=!1;specificationExtensionPredicate=cc;constructor({specPath:e,ignoredFields:t,fieldPatternPredicate:s,canSupportSpecificationExtensions:n,specificationExtensionPredicate:r,...i}){super({...i}),this.specPath=e,this.ignoredFields=t||[],"function"==typeof s&&(this.fieldPatternPredicate=s),"boolean"==typeof n&&(this.canSupportSpecificationExtensions=n),"function"==typeof r&&(this.specificationExtensionPredicate=r)}ObjectElement(e){const t=e.node;t.forEach((e,t,s)=>{if(this.canSupportSpecificationExtensions&&this.specificationExtensionPredicate(s)){const e=this.toRefractedElement(["document","extension"],s);this.element.push(e)}else if(!this.ignoredFields.includes(Ps(t))&&this.fieldPatternPredicate(Ps(t))){const n=this.specPath(e),r=this.toRefractedElement(n,e),i=new z(bs(t),r);this.copyMetaAndAttributes(s,i),i.classes.push("patterned-field"),this.element.push(i)}else this.ignoredFields.includes(Ps(t))||this.element.push(bs(s))}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const pc=class extends uc{constructor(e){super(e),this.fieldPatternPredicate=Ys}},hc=dr(sc,tc),dc=dr(lc,tc),mc=dr(pc,tc);const fc=class extends dc{element;specPath;canSupportSpecificationExtensions;constructor(e){super(e),this.element=new V,this.specPath=Bs(["document","objects","ArazzoSpecification"]),this.canSupportSpecificationExtensions=!0}ObjectElement(e){return lc.prototype.ObjectElement.call(this,e)}};const yc=class extends hc{StringElement(e){const t=e.node,s=new J(Ps(t));this.copyMetaAndAttributes(t,s),this.element=s,e.stop()}};class gc extends Kt{static primaryClass="source-descriptions";constructor(e,t,s){super(e,t,s),this.classes.push(gc.primaryClass)}}const xc=gc;const bc=class extends hc{element;constructor(e){super(e),this.element=new xc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","SourceDescription"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};class vc extends Kt{static primaryClass="workflows";constructor(e,t,s){super(e,t,s),this.classes.push(vc.primaryClass)}}const Sc=vc;const wc=class extends hc{element;constructor(e){super(e),this.element=new Sc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Workflow"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Ec=class extends dc{constructor(e){super(e),this.element=new Y,this.specPath=Bs(["document","objects","Info"]),this.canSupportSpecificationExtensions=!0}};const Oc=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("arazzo-version"),this.element.classes.push("version")}};const kc=class extends dc{constructor(e){super(e),this.element=new vo,this.specPath=Bs(["document","objects","SourceDescription"]),this.canSupportSpecificationExtensions=!0}};const Ac=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("source-description-url")}};const jc=class extends dc{constructor(e){super(e),this.element=new Eo,this.specPath=Bs(["document","objects","Workflow"]),this.canSupportSpecificationExtensions=!0}};class Fc extends Kt{static primaryClass="workflow-depends-on";constructor(e,t,s){super(e,t,s),this.classes.push(Fc.primaryClass)}}const Ic=Fc;const Pc=class extends hc{element;constructor(e){super(e),this.element=new Ic}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["value"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};class Mc extends Kt{static primaryClass="workflow-steps";constructor(e,t,s){super(e,t,s),this.classes.push(Mc.primaryClass)}}const Cc=Mc;const Tc=class extends hc{constructor(e){super(e),this.element=new Cc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Step"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};class Nc extends Kt{static primaryClass="workflow-success-actions";constructor(e,t,s){super(e,t,s),this.classes.push(Nc.primaryClass)}}const $c=Nc;class Dc extends H{static primaryClass="components-failure-actions";constructor(e,t,s){super(e,t,s),this.classes.push(Dc.primaryClass)}}const Rc=Dc;class Bc extends H{static primaryClass="components-inputs";constructor(e,t,s){super(e,t,s),this.classes.push(Bc.primaryClass)}}const Lc=Bc;class Jc extends H{static primaryClass="components-parameters";constructor(e,t,s){super(e,t,s),this.classes.push(Jc.primaryClass),this.classes.push("parameters")}}const qc=Jc;class _c extends H{static primaryClass="components-success-actions";constructor(e,t,s){super(e,t,s),this.classes.push(_c.primaryClass)}}const zc=_c;class Hc extends Kt{static primaryClass="failure-action-criteria";constructor(e,t,s){super(e,t,s),this.classes.push(Hc.primaryClass),this.classes.push("criteria")}}const Vc=Hc;class Uc extends Kt{static primaryClass="request-body-replacements";constructor(e,t,s){super(e,t,s),this.classes.push(Uc.primaryClass)}}const Gc=Uc;class Wc extends Kt{static primaryClass="step-depends-on";constructor(e,t,s){super(e,t,s),this.classes.push(Wc.primaryClass)}}const Xc=Wc;class Yc extends Kt{static primaryClass="step-on-failure";constructor(e,t,s){super(e,t,s),this.classes.push(Yc.primaryClass)}}const Kc=Yc;class Qc extends Kt{static primaryClass="step-on-success";constructor(e,t,s){super(e,t,s),this.classes.push(Qc.primaryClass)}}const Zc=Qc;class ea extends H{static primaryClass="step-outputs";constructor(e,t,s){super(e,t,s),this.classes.push(ea.primaryClass)}}const ta=ea;class sa extends Kt{static primaryClass="step-parameters";constructor(e,t,s){super(e,t,s),this.classes.push(sa.primaryClass),this.classes.push("parameters")}}const na=sa;class ra extends Kt{static primaryClass="step-success-criteria";constructor(e,t,s){super(e,t,s),this.classes.push(ra.primaryClass),this.classes.push("criteria")}}const ia=ra;class oa extends Kt{static primaryClass="success-action-criteria";constructor(e,t,s){super(e,t,s),this.classes.push(oa.primaryClass),this.classes.push("criteria")}}const ca=oa;class aa extends Kt{static primaryClass="workflow-failure-actions";constructor(e,t,s){super(e,t,s),this.classes.push(aa.primaryClass)}}const la=aa;class ua extends H{static primaryClass="workflow-outputs";constructor(e,t,s){super(e,t,s),this.classes.push(ua.primaryClass)}}const pa=ua;class ha extends Kt{static primaryClass="workflow-parameters";constructor(e,t,s){super(e,t,s),this.classes.push(ha.primaryClass),this.classes.push("parameters")}}const da=ha;const ma=e=>e instanceof oo;const fa=e=>ss(e)&&cs(e,["boolean-json-schema"]),ya=e=>e instanceof J,ga=e=>e instanceof V,xa=e=>e instanceof U,ba=e=>e instanceof G,va=e=>e instanceof W,Sa=e=>e instanceof X,wa=e=>e instanceof Y,Ea=e=>e instanceof yo,Oa=e=>e instanceof go,ka=e=>e instanceof xo,Aa=e=>e instanceof bo,ja=e=>e instanceof vo,Fa=e=>e instanceof So,Ia=e=>e instanceof wo,Pa=e=>e instanceof Eo,Ma=e=>e instanceof Rc,Ca=e=>e instanceof Lc,Ta=e=>e instanceof qc,Na=e=>e instanceof zc,$a=e=>e instanceof Vc,Da=e=>e instanceof Gc,Ra=e=>e instanceof xc,Ba=e=>e instanceof Xc,La=e=>e instanceof Kc,Ja=e=>e instanceof Zc,qa=e=>e instanceof ta,_a=e=>e instanceof na,za=e=>e instanceof ia,Ha=e=>e instanceof ca,Va=e=>e instanceof Ic,Ua=e=>e instanceof la,Ga=e=>e instanceof pa,Wa=e=>e instanceof da,Xa=e=>e instanceof Sc,Ya=e=>e instanceof Cc,Ka=e=>e instanceof $c;const Qa=class extends hc{constructor(e){super(e),this.element=new $c}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","SuccessAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","successAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Za=class extends hc{constructor(e){super(e),this.element=new la}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","FailureAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","failureAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const el=class extends mc{constructor(e){super(e),this.element=new pa,this.specPath=Bs(["value"])}};const tl=class extends hc{constructor(e){super(e),this.element=new da}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","Parameter"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","parameter"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const sl=class extends dc{constructor(e){super(e),this.element=new So,this.specPath=Bs(["document","objects","Step"]),this.canSupportSpecificationExtensions=!0}};const nl=class extends hc{constructor(e){super(e),this.element=new na}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","Parameter"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","parameter"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const rl=class extends hc{constructor(e){super(e),this.element=new ia}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Criterion"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const il=class extends hc{constructor(e){super(e),this.element=new Zc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","SuccessAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","successAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const ol=class extends hc{constructor(e){super(e),this.element=new Kc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=ac(e)?["document","objects","Reusable"]:["document","objects","FailureAction"],s=this.toRefractedElement(t,e);Aa(s)&&s.meta.set("referenced-element","failureAction"),this.element.push(s)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const cl=class extends mc{constructor(e){super(e),this.element=new ta,this.specPath=Bs(["value"])}};const al=class extends dc{constructor(e){super(e),this.element=new yo,this.specPath=Bs(["document","objects","Parameter"]),this.canSupportSpecificationExtensions=!0}};const ll=class extends dc{constructor(e){super(e),this.element=new wo,this.specPath=Bs(["document","objects","SuccessAction"]),this.canSupportSpecificationExtensions=!0}};const ul=class extends hc{element;constructor(e){super(e),this.element=new ca}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Criterion"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const pl=class extends dc{constructor(e){super(e),this.element=new X,this.specPath=Bs(["document","objects","FailureAction"]),this.canSupportSpecificationExtensions=!0}};const hl=class extends hc{element;constructor(e){super(e),this.element=new Vc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","Criterion"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const dl=class extends dc{constructor(e){super(e),this.element=new U,this.specPath=Bs(["document","objects","Components"]),this.canSupportSpecificationExtensions=!0}};const ml=class extends mc{constructor(e){super(e),this.element=new Lc,this.specPath=Bs(["document","objects","JSONSchema"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const fl=class extends mc{constructor(e){super(e),this.element=new qc,this.specPath=Bs(["document","objects","Parameter"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const yl=class extends mc{constructor(e){super(e),this.element=new zc,this.specPath=Bs(["document","objects","SuccessAction"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const gl=class extends mc{constructor(e){super(e),this.element=new Rc,this.specPath=Bs(["document","objects","FailureAction"]),this.fieldPatternPredicate=e=>/^[a-zA-Z0-9.\-_]+$/.test(String(e))}};const xl=class extends dc{constructor(e){super(e),this.element=new bo,this.specPath=Bs(["document","objects","Reusable"]),this.canSupportSpecificationExtensions=!1}ObjectElement(e){const t=lc.prototype.ObjectElement.call(this,e);return Zt(this.element.reference)&&this.element.classes.push("reference-element"),t}};const bl=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("reference-value")}};const vl=class extends dc{constructor(e){super(e),this.element=new G,this.specPath=Bs(["document","objects","Criterion"]),this.canSupportSpecificationExtensions=!0}};const Sl=class extends hc{ObjectElement(e){const t=e.node;return this.toRefractedElement(["document","objects","CriterionExpressionType"],t)}};const wl=class extends dc{constructor(e){super(e),this.element=new W,this.specPath=Bs(["document","objects","CriterionExpressionType"]),this.canSupportSpecificationExtensions=!0}};const El=class extends tc{StringElement(e){super.enter(e),this.element.classes.push("version")}};const Ol=class extends dc{constructor(e){super(e),this.element=new xo,this.specPath=Bs(["document","objects","RequestBody"]),this.canSupportSpecificationExtensions=!0}};const kl=class extends hc{element;constructor(e){super(e),this.element=new Gc}ArrayElement(e){const t=e.node;t.forEach(e=>{const t=this.toRefractedElement(["document","objects","PayloadReplacement"],e);this.element.push(t)}),this.copyMetaAndAttributes(t,this.element),e.stop()}};const Al=class extends dc{constructor(e){super(e),this.element=new go,this.specPath=Bs(["document","objects","PayloadReplacement"]),this.canSupportSpecificationExtensions=!0}};const jl=class extends ao{constructor(e){super(e),this.element=new fo}};const Fl=class extends sc{MemberElement(e){const t=e.node;this.element=bs(t),this.element.classes.push("specification-extension"),e.stop()}},{JSONSchema:{fixedFields:Il}}=po.visitors.document.objects,Pl={visitors:{value:tc,document:{objects:{ArazzoSpecification:{element:"arazzoSpecification1",$visitor:fc,fixedFields:{arazzo:{element:"arazzo",$visitor:yc},info:{$ref:"#/visitors/document/objects/Info"},sourceDescriptions:bc,workflows:wc,components:{$ref:"#/visitors/document/objects/Components"}}},Info:{element:"info",$visitor:Ec,fixedFields:{title:{$ref:"#/visitors/value"},summary:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},version:Oc}},SourceDescription:{element:"sourceDescription",$visitor:kc,fixedFields:{name:{$ref:"#/visitors/value"},url:Ac,type:{$ref:"#/visitors/value"}}},Workflow:{element:"workflow",$visitor:jc,fixedFields:{workflowId:{$ref:"#/visitors/value"},summary:{$ref:"#/visitors/value"},description:{$ref:"#/visitors/value"},inputs:jl,dependsOn:Pc,steps:Tc,successActions:Qa,failureActions:Za,outputs:el,parameters:tl}},Step:{element:"step",$visitor:sl,fixedFields:{description:{$ref:"#/visitors/value"},stepId:{$ref:"#/visitors/value"},operationId:{$ref:"#/visitors/value"},operationPath:{$ref:"#/visitors/value"},workflowId:{$ref:"#/visitors/value"},parameters:nl,requestBody:{$ref:"#/visitors/document/objects/RequestBody"},successCriteria:rl,onSuccess:il,onFailure:ol,outputs:cl}},Parameter:{element:"parameter",$visitor:al,fixedFields:{name:{$ref:"#/visitors/value"},in:{$ref:"#/visitors/value"},value:{$ref:"#/visitors/value"}}},SuccessAction:{element:"successAction",$visitor:ll,fixedFields:{name:{$ref:"#/visitors/value"},type:{$ref:"#/visitors/value"},workflowId:{$ref:"#/visitors/value"},stepId:{$ref:"#/visitors/value"},criteria:ul}},FailureAction:{element:"failureAction",$visitor:pl,fixedFields:{name:{$ref:"#/visitors/value"},type:{$ref:"#/visitors/value"},workflowId:{$ref:"#/visitors/value"},stepId:{$ref:"#/visitors/value"},retryAfter:{$ref:"#/visitors/value"},retryLimit:{$ref:"#/visitors/value"},criteria:hl}},Components:{element:"components",$visitor:dl,fixedFields:{inputs:ml,parameters:fl,successActions:yl,failureActions:gl}},Reusable:{element:"reusable",$visitor:xl,fixedFields:{reference:bl,value:{$ref:"#/visitors/value"}}},Criterion:{element:"criterion",$visitor:vl,fixedFields:{context:{$ref:"#/visitors/value"},condition:{$ref:"#/visitors/value"},type:Sl}},CriterionExpressionType:{element:"criterionExpressionType",$visitor:wl,fixedFields:{type:{$ref:"#/visitors/value"},version:El}},RequestBody:{element:"requestBody",$visitor:Ol,fixedFields:{contentType:{$ref:"#/visitors/value"},payload:{$ref:"#/visitors/value"},replacements:kl}},PayloadReplacement:{element:"payloadReplacement",$visitor:Al,fixedFields:{target:{$ref:"#/visitors/value"},value:{$ref:"#/visitors/value"}}},JSONSchema:{element:"jSONSchema",$visitor:jl,fixedFields:{...Il}}},extension:{$visitor:Fl}}}},Ml=()=>{const e=new Go,t={...s,...n,isStringElement:Zt};return e.use(Oo),{predicates:t,namespace:e}},Cl=(e,{element:t="arazzoSpecification1",plugins:s=[],specificationObj:n=Pl}={})=>{const r=Zo(e),i=zt(n),o=i.elementMap[t];if(!o)throw new Error(`Unknown element type: "${t}"`);const c=new(pe(o,i))({specObj:i});return Vn(r,c),Ko(c.element,s,{toolboxCreator:Ml})},Tl=(e,t={})=>Cl(e,{...t,element:"arazzo"}),Nl=(e,t={})=>Cl(e,{...t,element:"arazzoSpecification1"}),$l=(e,t={})=>Cl(e,{...t,element:"components"}),Dl=(e,t={})=>Cl(e,{...t,element:"criterion"}),Rl=(e,t={})=>Cl(e,{...t,element:"criterionExpressionType"}),Bl=(e,t={})=>Cl(e,{...t,element:"failureAction"}),Ll=(e,t={})=>Cl(e,{...t,element:"info"}),Jl=(e,t={})=>Cl(e,{...t,element:"jSONSchema"}),ql=(e,t={})=>Cl(e,{...t,element:"parameter"}),_l=(e,t={})=>Cl(e,{...t,element:"payloadReplacement"}),zl=(e,t={})=>Cl(e,{...t,element:"requestBody"}),Hl=(e,t={})=>Cl(e,{...t,element:"reusable"}),Vl=(e,t={})=>Cl(e,{...t,element:"sourceDescription"}),Ul=(e,t={})=>Cl(e,{...t,element:"step"}),Gl=(e,t={})=>Cl(e,{...t,element:"successAction"}),Wl=(e,t={})=>Cl(e,{...t,element:"workflow"}),Xl=Cl;return t})());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speclynx/apidom-ns-arazzo-1",
3
- "version": "2.10.3",
3
+ "version": "2.11.0",
4
4
  "description": "Arazzo Specification 1.0.1 namespace for ApiDOM.",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -43,10 +43,10 @@
43
43
  "license": "Apache-2.0",
44
44
  "dependencies": {
45
45
  "@babel/runtime-corejs3": "^7.28.4",
46
- "@speclynx/apidom-core": "^2.10.3",
47
- "@speclynx/apidom-datamodel": "^2.10.3",
48
- "@speclynx/apidom-ns-json-schema-2020-12": "^2.10.3",
49
- "@speclynx/apidom-traverse": "^2.10.3",
46
+ "@speclynx/apidom-core": "^2.11.0",
47
+ "@speclynx/apidom-datamodel": "^2.11.0",
48
+ "@speclynx/apidom-ns-json-schema-2020-12": "^2.11.0",
49
+ "@speclynx/apidom-traverse": "^2.11.0",
50
50
  "ramda": "~0.32.0",
51
51
  "ramda-adjunct": "^6.0.0",
52
52
  "ts-mixer": "^6.0.4"
@@ -61,5 +61,5 @@
61
61
  "README.md",
62
62
  "CHANGELOG.md"
63
63
  ],
64
- "gitHead": "d4801d19a42266df43ce85d07990fbf25a1548ad"
64
+ "gitHead": "ee7e9488621be61f5dc1b098b8af135dc83c9ac1"
65
65
  }